/home/lnzliplg/www/header-footer-elementor.zip
PK���\}{^=��inc/js/counter.jsnu�[���/**
 * Counter Widget JavaScript
 * 
 * Handles the counter animation functionality
 */

(function($) {
    'use strict';

    var HfeCounter = {
        
        /**
         * Initialize the counter
         */
        init: function() {
            elementorFrontend.hooks.addAction('frontend/element_ready/hfe-counter.default', this.initCounter);
        },

        /**
         * Initialize counter for specific element
         */
        initCounter: function($scope) {
            var $counter = $scope.find('.hfe-counter-number');
            
            if ($counter.length) {
                HfeCounter.setupCounterAnimation($counter);
            }
        },

        /**
         * Setup counter animation
         */
        setupCounterAnimation: function($counter) {
            var startNumber = parseInt($counter.data('start')) || 0;
            var endNumber = parseInt($counter.data('end'));
            endNumber = isNaN(endNumber) ? 100 : endNumber;            
            var speed = parseInt($counter.data('speed')) || 3000;
            var separator = $counter.data('separator') || '';
            
            // Use Intersection Observer for better performance
            if ('IntersectionObserver' in window) {
                var observer = new IntersectionObserver(function(entries) {
                    entries.forEach(function(entry) {
                        if (entry.isIntersecting && !$counter.hasClass('hfe-counter-animated')) {
                            $counter.addClass('hfe-counter-animated');
                            HfeCounter.animateCounter($counter[0], startNumber, endNumber, speed, separator);
                            observer.unobserve(entry.target);
                        }
                    });
                }, {
                    threshold: 0.5
                });
                
                observer.observe($counter[0]);
            } else {
                // Fallback for older browsers
                $(window).on('scroll', function() {
                    if (HfeCounter.isElementInViewport($counter[0]) && !$counter.hasClass('hfe-counter-animated')) {
                        $counter.addClass('hfe-counter-animated');
                        HfeCounter.animateCounter($counter[0], startNumber, endNumber, speed, separator);
                    }
                });
            }
        },

        /**
         * Animate the counter
         */
        animateCounter: function(element, start, end, duration, separator) {
            var startTime = null;
            var $element = $(element);
            
            function animate(currentTime) {
                if (startTime === null) startTime = currentTime;
                var progress = Math.min((currentTime - startTime) / duration, 1);
                
                // Use easing function for smooth animation
                var easedProgress = HfeCounter.easeOutQuart(progress);
                var currentNumber = Math.floor(start + (end - start) * easedProgress);
                
                $element.text(HfeCounter.formatNumber(currentNumber, separator));
                
                if (progress < 1) {
                    requestAnimationFrame(animate);
                } else {
                    $element.text(HfeCounter.formatNumber(end, separator));
                }
            }
            
            requestAnimationFrame(animate);
        },

        /**
         * Format number with separator
         */
        formatNumber: function(number, separator) {
            if (!separator) {
                return number.toString();
            }
            
            return number.toString().replace(/\B(?=(\d{3})+(?!\d))/g, separator);
        },

        /**
         * Easing function for smooth animation
         */
        easeOutQuart: function(t) {
            return 1 - (--t) * t * t * t;
        },

        /**
         * Check if element is in viewport (fallback)
         */
        isElementInViewport: function(element) {
            var rect = element.getBoundingClientRect();
            return (
                rect.top >= 0 &&
                rect.left >= 0 &&
                rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
                rect.right <= (window.innerWidth || document.documentElement.clientWidth)
            );
        }
    };

    // Initialize when Elementor frontend is ready
    $(window).on('elementor/frontend/init', function() {
        HfeCounter.init();
    });

    // Fallback for when Elementor frontend is not available
    $(document).ready(function() {
        if (typeof elementorFrontend === 'undefined') {
            // Create a mock elementorFrontend for standalone use
            window.elementorFrontend = {
                hooks: {
                    addAction: function(event, callback) {
                        $(document).ready(callback);
                    }
                }
            };
        }
        HfeCounter.init();
    });

})(jQuery);PK���\�L�ssinc/js/woo-products.jsnu�[���/**
 * HFE Woo Products Widget JavaScript
 */
(function($) {
    'use strict';

    var HFEWooProducts = {
        init: function() {
            this.bindEvents();
        },

        bindEvents: function() {
            // Add any interactive functionality here
            $(document).on('click', '.hfe-product-add-to-cart .button', this.handleAddToCart);
        },

        handleAddToCart: function(e) {
            var $button = $(this);
            
            // Add loading state
            $button.addClass('loading');
            
            // Remove loading state after WooCommerce handles the request
            setTimeout(function() {
                $button.removeClass('loading');
            }, 2000);
        }
    };

    // Initialize when document is ready
    $(document).ready(function() {
        HFEWooProducts.init();
    });

    // Initialize for Elementor editor
    $(window).on('elementor/frontend/init', function() {
        elementorFrontend.hooks.addAction('frontend/element_ready/hfe-woo-product-grid.default', function($scope) {
            HFEWooProducts.init();
        });
    });

})(jQuery);
PK���\]�3�C{C{inc/js/frontend.jsnu�[���( function( $ ) {

	/**
	* Search widget JS
	*/

	var WidgethfeSearchButton = function( $scope, $ ){

		if ( 'undefined' == typeof $scope )
			return;

			var $input = $scope.find( "input.hfe-search-form__input" );
			var $clear = $scope.find( "button#clear" );
			var $clear_with_button = $scope.find( "button#clear-with-button" );
			var $search_button = $scope.find( ".hfe-search-submit" );
			var $toggle_search = $scope.find( ".hfe-search-icon-toggle input" );

		$scope.find( '.hfe-search-icon-toggle' ).on( 'click', function( ){
			$scope.find( ".hfe-search-form__input" ).trigger( 'focus' );						
		});	
		
		$scope.find( ".hfe-search-form__input" ).on( 'focus', function(){
			$scope.find( ".hfe-search-button-wrapper" ).addClass( "hfe-input-focus" );
		});

		$scope.find( ".hfe-search-form__input" ).blur( function() {
			$scope.find( ".hfe-search-button-wrapper" ).removeClass( "hfe-input-focus" );
		});
  		   

		$search_button.on( 'touchstart click', function(){
			$input.submit();
		});

		$toggle_search.css( 'padding-right', $toggle_search.next().outerWidth() + 'px' );

	
		$input.on( 'keyup', function(){
			$clear.style = (this.value.length) ? $clear.css('visibility','visible'): $clear.css('visibility','hidden');
			$clear_with_button.style = (this.value.length) ? $clear_with_button.css('visibility','visible'): $clear_with_button.css('visibility','hidden');
			$clear_with_button.css( 'right', $search_button.outerWidth() + 'px' );
		});

		$clear.on("click",function(){
			this.style = $clear.css('visibility','hidden');
			$input.value = "";
		});
		$clear_with_button.on("click",function(){
			this.style = $clear_with_button.css('visibility','hidden');
			$input.value = "";
		});
		
	};
		/**
	 * Nav Menu handler Function.
	 *
	 */
	var WidgethfeNavMenuHandler = function( $scope, $ ) {

		if ( 'undefined' == typeof $scope )
			return;
		
		var id = $scope.data( 'id' );
		var wrapper = $scope.find('.elementor-widget-hfe-nav-menu ');		
		var layout = $( '.elementor-element-' + id + ' .hfe-nav-menu' ).data( 'layout' );
		var flyout_data = $( '.elementor-element-' + id + ' .hfe-flyout-wrapper' ).data( 'flyout-class' );
		var last_item = $( '.elementor-element-' + id + ' .hfe-nav-menu' ).data( 'last-item' );
		var last_item_flyout = $( '.elementor-element-' + id + ' .hfe-flyout-wrapper' ).data( 'last-item' );

		var menu_items_links        = $( '.elementor-element-' + id + ' .hfe-nav-menu nav li a' );
		var menu_items_links_flyout = $( '.elementor-element-' + id + ' .hfe-flyout-wrapper li a' );
		if (menu_items_links.length > 0) {
			_handle_current_menu_item_class( menu_items_links );
		}

		if (menu_items_links_flyout.length > 0) {
			_handle_current_menu_item_class( menu_items_links_flyout );
		}

		$( 'div.hfe-has-submenu-container' ).removeClass( 'sub-menu-active' );

		_toggleClick( id );

		_handlePolylangSwitcher( $scope );

		_handleSinglePageMenu( id, layout );

		if( 'horizontal' !== layout ){

			_eventClick( id );
		}else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 767px )" ).matches ) {

			_eventClick( id );
		}else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 1024px )" ).matches ) {

			_eventClick( id );
		}

		$( '.elementor-element-' + id + ' .hfe-flyout-trigger .hfe-nav-menu-icon' ).off( 'click keyup' ).on( 'click keyup', function() {

			_openMenu( id );
		} );

		$( '.elementor-element-' + id + ' .hfe-flyout-close' ).off( 'click keyup' ).on( 'click keyup', function() {

			_closeMenu( id );
		} );

		$( '.elementor-element-' + id + ' .hfe-flyout-overlay' ).off( 'click' ).on( 'click', function() {

			_closeMenu( id );
		} );	


		$scope.find( '.sub-menu' ).each( function() {

			var parent = $( this ).closest( '.menu-item' );

			$scope.find( parent ).addClass( 'parent-has-child' );
			$scope.find( parent ).removeClass( 'parent-has-no-child' );
		});

		if( ( 'cta' == last_item || 'cta' == last_item_flyout ) && 'expandible' != layout ){
			$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).parent().addClass( 'hfe-button-wrapper elementor-widget-button' );
			$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).addClass( 'elementor-button' );			
		}

		_borderClass( id );	

		$( window ).on( 'resize', function(){ 

			if( 'horizontal' !== layout ) {

				_eventClick( id );
			}else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 767px )" ).matches ) {

				_eventClick( id );
			}else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 1024px )" ).matches ) {

				_eventClick( id );
			}

			if( 'horizontal' == layout && window.matchMedia( "( min-width: 977px )" ).matches){

				$( '.elementor-element-' + id + ' div.hfe-has-submenu-container' ).next().css( 'position', 'absolute');	
			}

			if( 'expandible' == layout || 'flyout' == layout ){

				_toggleClick( id );
			}else if ( 'vertical' == layout || 'horizontal' == layout ) {
				if( window.matchMedia( "( max-width: 767px )" ).matches && ($( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile'))){

					_toggleClick( id );					
				}else if ( window.matchMedia( "( max-width: 1024px )" ).matches && $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') ) {
					
					_toggleClick( id );
				}else{
					var $toggle = $( '.elementor-element-' + id + ' .hfe-nav-menu__toggle' );
                    var $nextElement= $toggle.next();
                    var width = $nextElement.parent().width();
                    if( $nextElement.length ){
						$nextElement.css( 'width', width + 'px' );
						$nextElement.css( 'left', '0' );
					}
				}
			}

			_borderClass( id );	

		});

        // Acessibility functions

  		$scope.find( '.parent-has-child .hfe-has-submenu-container a').attr( 'aria-haspopup', 'true' );
  		$scope.find( '.parent-has-child .hfe-has-submenu-container a').attr( 'aria-expanded', 'false' );

		var hef_navmenu_toggle = $scope.find( '.hfe-nav-menu__toggle' );
		hef_navmenu_toggle.attr( 'aria-haspopup', 'true' );
		hef_navmenu_toggle.attr( 'aria-expanded', 'false' );

		if ( window.matchMedia( "( max-width: 1024px )" ).matches && $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') ) {
			hef_navmenu_toggle.find('i').attr('aria-hidden', 'false');
		}
		if ( window.matchMedia( "( max-width: 768px )" ).matches && $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile') ) {
			hef_navmenu_toggle.find('i').attr('aria-hidden', 'false');
		}

  		// End of accessibility functions

		$( document ).trigger( 'hfe_nav_menu_init', id );

		// Add keyboard navigation for expandable menu
		if ( 'expandible' === layout ) {
			$( '.elementor-element-' + id + ' nav' ).on( 'keydown', function(e) {
				var $currentElement = $( document.activeElement );
				var $menuItems = $( this ).find( 'li > a:visible' );
				var currentIndex = $menuItems.index( $currentElement );

				switch( e.key ) {
					case 'Escape': // Escape key - close menu
						$( '.elementor-element-' + id + ' .hfe-nav-menu__toggle' ).trigger( 'click' );
						$( '.elementor-element-' + id + ' .hfe-nav-menu__toggle' ).focus();
						e.preventDefault();
						break;
					case 'ArrowDown': // Down arrow
						if ( currentIndex < $menuItems.length - 1 ) {
							$menuItems.eq( currentIndex + 1 ).focus();
						}
						e.preventDefault();
						break;
					case 'ArrowUp': // Up arrow
						if ( currentIndex > 0 ) {
							$menuItems.eq( currentIndex - 1 ).focus();
						}
						e.preventDefault();
						break;
					case 'Tab': // Tab key
						// Let default tab behavior work but close menu when tabbing out
						if ( e.shiftKey && currentIndex === 0 ) {
							// Shift+Tab on first item - close menu
							setTimeout(function() {
								if ( !$( '.elementor-element-' + id + ' nav' ).find( ':focus' ).length ) {
									$( '.elementor-element-' + id + ' .hfe-nav-menu__toggle' ).trigger( 'click' );
								}
							}, 10);
						} else if ( !e.shiftKey && currentIndex === $menuItems.length - 1 ) {
							// Tab on last item - close menu
							setTimeout(function() {
								if ( !$( '.elementor-element-' + id + ' nav' ).find( ':focus' ).length ) {
									$( '.elementor-element-' + id + ' .hfe-nav-menu__toggle' ).trigger( 'click' );
								}
							}, 10);
						}
						break;
				}
			});
		}

		$( '.elementor-element-' + id + ' div.hfe-has-submenu-container' ).on( 'keyup', function(e){

			var $this = $( this );

			// Handle Enter and Space keys for submenu toggle
			if ( e.key === 'Enter' || e.key === 'Space' ) {
				e.preventDefault();
				e.stopPropagation();
			} else {
				return; // Only handle Enter and Space keys
			}

		  	if( $this.parent().hasClass( 'menu-active' ) ) {

		  		$this.parent().removeClass( 'menu-active' );
		  		$this.attr( 'aria-expanded', 'false' );

		  		$this.parent().next().find('ul').css( { 'visibility': 'hidden', 'opacity': '0', 'height': '0' } );
		  		$this.parent().prev().find('ul').css( { 'visibility': 'hidden', 'opacity': '0', 'height': '0' } );

		  		$this.parent().next().find( 'div.hfe-has-submenu-container' ).removeClass( 'sub-menu-active' );
		  		$this.parent().prev().find( 'div.hfe-has-submenu-container' ).removeClass( 'sub-menu-active' );
			}else { 

				$this.parent().next().find('ul').css( { 'visibility': 'hidden', 'opacity': '0', 'height': '0' } );
		  		$this.parent().prev().find('ul').css( { 'visibility': 'hidden', 'opacity': '0', 'height': '0' } );

		  		$this.parent().next().find( 'div.hfe-has-submenu-container' ).removeClass( 'sub-menu-active' );
		  		$this.parent().prev().find( 'div.hfe-has-submenu-container' ).removeClass( 'sub-menu-active' );

				$this.parent().siblings().find( '.hfe-has-submenu-container a' ).attr( 'aria-expanded', 'false' );

				$this.parent().next().removeClass( 'menu-active' );
		  		$this.parent().prev().removeClass( 'menu-active' );

				event.preventDefault();

				$this.parent().addClass( 'menu-active' );

				if( 'horizontal' !== layout ){
					$this.addClass( 'sub-menu-active' );	
				}
				
				$this.find( 'a' ).attr( 'aria-expanded', 'true' );
				$this.attr( 'aria-expanded', 'true' );

				$this.next().css( { 'visibility': 'visible', 'opacity': '1', 'height': 'auto' } );

				if ( 'horizontal' !== layout ) {
						
		  			$this.next().css( 'position', 'relative');			
				} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 767px )" ).matches && ($( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile'))) {
										
  					$this.next().css( 'position', 'relative');		  					
				} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 1024px )" ).matches ) {
					
  					if ( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') ) {

  						$this.next().css( 'position', 'relative');	
  					} else if ( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-none') ) {
  						
  						$this.next().css( 'position', 'absolute');	
  					}
  				}		
			}
		});

		$( '.elementor-element-' + id + ' li.menu-item' ).on( 'keyup', function(e){
			var $this = $( this );

	 		$this.next().find( 'a' ).attr( 'aria-expanded', 'false' );
	 		$this.prev().find( 'a' ).attr( 'aria-expanded', 'false' );
	  		
	  		$this.next().find('ul').css( { 'visibility': 'hidden', 'opacity': '0', 'height': '0' } );
	  		$this.prev().find('ul').css( { 'visibility': 'hidden', 'opacity': '0', 'height': '0' } );
	  		
	  		$this.siblings().removeClass( 'menu-active' );
	  		$this.next().find( 'div.hfe-has-submenu-container' ).removeClass( 'sub-menu-active' );
		  	$this.prev().find( 'div.hfe-has-submenu-container' ).removeClass( 'sub-menu-active' );
		  		
		});
	};

	function _handle_current_menu_item_class( layout_links ) {
		layout_links.each(
			function () {
				var $this = $( this );
				if ($this.is( '[href*="#"]' )) {
					var menu_item_parent = $this.parent();
					menu_item_parent.removeClass( 'current-menu-item current-menu-ancestor' );
					$this.click(
						function () {
							var current_index  = menu_item_parent.index(),
								parent_element = $this.closest( 'ul' );
							parent_element.find( 'li' ).not( ':eq(' + current_index + ')' ).removeClass( 'current-menu-item current-menu-ancestor' );
							menu_item_parent.addClass( 'current-menu-item current-menu-ancestor' );
						}
					)
				}
			}
		);
	}

	function _openMenu( id ) {

		var flyout_content = $( '#hfe-flyout-content-id-' + id );
		var layout = $( '#hfe-flyout-content-id-' + id ).data( 'layout' );
		var layout_type = $( '#hfe-flyout-content-id-' + id ).data( 'flyout-type' );
		var wrap_width = flyout_content.width() + 'px';
		var container = $( '.elementor-element-' + id + ' .hfe-flyout-container .hfe-side.hfe-flyout-' + layout );

		$( '.elementor-element-' + id + ' .hfe-flyout-overlay' ).fadeIn( 100 );

		if( 'left' == layout ) {

			$( 'body' ).css( 'margin-left' , '0' );
			container.css( 'left', '0' );

			if( 'push' == layout_type ) {

				$( 'body' ).addClass( 'hfe-flyout-animating' ).css({ 
					position: 'absolute',
					width: '100%',
					'margin-left' : wrap_width,
					'margin-right' : 'auto'
				});
			}	

			container.addClass( 'hfe-flyout-show' );	
		} else {

			$( 'body' ).css( 'margin-right', '0' );
			container.css( 'right', '0' );

			if( 'push' == layout_type ) {

				$( 'body' ).addClass( 'hfe-flyout-animating' ).css({ 
					position: 'absolute',
					width: '100%',
					'margin-left' : '-' + wrap_width,
					'margin-right' : 'auto',
				});
			}

			container.addClass( 'hfe-flyout-show' );
		}		
	}

	function _closeMenu( id ) {

		var flyout_content = $( '#hfe-flyout-content-id-' + id );
		var layout    = $( '#hfe-flyout-content-id-' + id ).data( 'layout' );
		var wrap_width = flyout_content.width() + 'px';
		var layout_type = $( '#hfe-flyout-content-id-' + id ).data( 'flyout-type' );
		var container = $( '.elementor-element-' + id + ' .hfe-flyout-container .hfe-side.hfe-flyout-' + layout );

		$( '.elementor-element-' + id + ' .hfe-flyout-overlay' ).fadeOut( 100 );	

		if( 'left' == layout ) {

			container.css( 'left', '-' + wrap_width );

			if( 'push' == layout_type ) {

				$( 'body' ).css({ 
					position: '',
					'margin-left' : '',
					'margin-right' : '',
				});

				setTimeout( function() {
					$( 'body' ).removeClass( 'hfe-flyout-animating' ).css({ 
						width: '',
					});
				});
			}	

			container.removeClass( 'hfe-flyout-show' );					
		} else {
			container.css( 'right', '-' + wrap_width );
			
			if( 'push' == layout_type ) {

				$( 'body' ).css({
					position: '',
					'margin-right' : '',
					'margin-left' : '',
				});

				setTimeout( function() {
					$( 'body' ).removeClass( 'hfe-flyout-animating' ).css({ 
						width: '',
					});
				});
			}
			container.removeClass( 'hfe-flyout-show' );
		}	
	}

	function _eventClick( id ){

		var layout = $( '.elementor-element-' + id + ' .hfe-nav-menu' ).data( 'layout' );

		$( '.elementor-element-' + id + ' div.hfe-has-submenu-container' ).off( 'click' ).on( 'click', function( event ) {

			var $this = $( this );

			if( $( '.elementor-element-' + id ).hasClass( 'hfe-link-redirect-child' ) ) {

				if( $this.hasClass( 'sub-menu-active' ) ) {

					if( ! $this.next().hasClass( 'sub-menu-open' ) ) {

						$this.find( 'a' ).attr( 'aria-expanded', 'false' );

						if( 'horizontal' !== layout ){

							event.preventDefault();

							$this.next().css( 'position', 'relative' );	
						} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 767px )" ).matches && ($( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile'))) {
							
							event.preventDefault();

							$this.next().css( 'position', 'relative' );	
						} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 1024px )" ).matches && ( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile'))) {
							
							event.preventDefault();	

							$this.next().css( 'position', 'relative' );	
						}	
					
						$this.removeClass( 'sub-menu-active' );
						$this.nextAll('.sub-menu').removeClass( 'sub-menu-open' );
						$this.nextAll('.sub-menu').css( { 'visibility': 'hidden', 'opacity': '0', 'height': '0' } );
						$this.nextAll('.sub-menu').css( { 'transition': 'none'} );
					} else{

						$this.find( 'a' ).attr( 'aria-expanded', 'false' );
						
						$this.removeClass( 'sub-menu-active' );
						$this.nextAll('.sub-menu').removeClass( 'sub-menu-open' );
						$this.nextAll('.sub-menu').css( { 'visibility': 'hidden', 'opacity': '0', 'height': '0' } );
						$this.nextAll('.sub-menu').css( { 'transition': 'none'} );

						if ( 'horizontal' !== layout ){

							$this.next().css( 'position', 'relative' );
						} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 767px )" ).matches && ($( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile'))) {
							
							$this.next().css( 'position', 'relative' );	
							
						} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 1024px )" ).matches && ( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile'))) {
							
							$this.next().css( 'position', 'absolute' );				
						}	  								
					}		  											
				} else {

					$this.find( 'a' ).attr( 'aria-expanded', 'true' );
					if ( 'horizontal' !== layout ) {
						
						event.preventDefault();
						$this.next().css( 'position', 'relative');			
					} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 767px )" ).matches && ($( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile'))) {
						
						event.preventDefault();
						$this.next().css( 'position', 'relative');		  					
					} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 1024px )" ).matches ) {
						event.preventDefault();

						if ( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') ) {

							$this.next().css( 'position', 'relative');	
						} else if ( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-none') ) {
							
							$this.next().css( 'position', 'absolute');	
						}
					}	
							
					$this.addClass( 'sub-menu-active' );
					$this.nextAll('.sub-menu').addClass( 'sub-menu-open' );
					$this.nextAll('.sub-menu').css( { 'visibility': 'visible', 'opacity': '1', 'height': 'auto' } );
					$this.nextAll('.sub-menu').css( { 'transition': '0.3s ease'} );
				}
			}
		});

		$( '.elementor-element-' + id + ' .hfe-menu-toggle' ).off( 'click keyup' ).on( 'click keyup',function( event ) {

			var $this = $( this );

		  	if( $this.parent().parent().hasClass( 'menu-active' ) ) {

	  			event.preventDefault();

				$this.parent().parent().removeClass( 'menu-active' );
				$this.parent().parent().next().css( { 'visibility': 'hidden', 'opacity': '0', 'height': '0' } );

				if ( 'horizontal' !== layout ) {
						
		  			$this.parent().parent().next().css( 'position', 'relative');			
				} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 767px )" ).matches && ($( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile'))) {
										
  					$this.parent().parent().next().css( 'position', 'relative');		  					
				} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 1024px )" ).matches ) {
					
  					if ( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') ) {

  						$this.parent().parent().next().css( 'position', 'relative');	
  					} else if ( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-none') ) {
  						
  						$this.parent().parent().next().css( 'position', 'absolute');	
  					}
  				}
			}else { 

				event.preventDefault();

				$this.parent().parent().addClass( 'menu-active' );

				$this.parent().parent().next().css( { 'visibility': 'visible', 'opacity': '1', 'height': 'auto' } );

				if ( 'horizontal' !== layout ) {
						
		  			$this.parent().parent().next().css( 'position', 'relative');			
				} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 767px )" ).matches && ($( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile'))) {
										
  					$this.parent().parent().next().css( 'position', 'relative');		  					
				} else if ( 'horizontal' === layout && window.matchMedia( "( max-width: 1024px )" ).matches ) {
					
  					if ( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') ) {

  						$this.parent().parent().next().css( 'position', 'relative');	
  					} else if ( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-none') ) {
  						
  						$this.parent().parent().next().css( 'position', 'absolute');	
  					}
  				}		
			}
		});
	}

	function _borderClass( id ){

		var last_item = $( '.elementor-element-' + id + ' .hfe-nav-menu' ).data( 'last-item' );
		var last_item_flyout = $( '.elementor-element-' + id + ' .hfe-flyout-wrapper' ).data( 'last-item' );
		var layout = $( '.elementor-element-' + id + ' .hfe-nav-menu' ).data( 'layout' );

		$( '.elementor-element-' + id + ' nav').removeClass('hfe-dropdown');

		if ( window.matchMedia( "( max-width: 767px )" ).matches ) {

			if( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile') || $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet')){
				
				$( '.elementor-element-' + id + ' nav').addClass('hfe-dropdown');
				if( ( 'cta' == last_item || 'cta' == last_item_flyout ) && 'expandible' != layout ){
					$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).parent().removeClass( 'hfe-button-wrapper elementor-widget-button' );
					$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).removeClass( 'elementor-button' );	
				}	
			}else{
				
				$( '.elementor-element-' + id + ' nav').removeClass('hfe-dropdown');
				if( ( 'cta' == last_item || 'cta' == last_item_flyout ) && 'expandible' != layout ){
					$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).parent().addClass( 'hfe-button-wrapper elementor-widget-button' );
					$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).addClass( 'elementor-button' );	
				}
			}
		}else if ( window.matchMedia( "( max-width: 1024px )" ).matches ) {

			if( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') ) {
				
				$( '.elementor-element-' + id + ' nav').addClass('hfe-dropdown');
				if( ( 'cta' == last_item || 'cta' == last_item_flyout ) && 'expandible' != layout ){
					$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).parent().removeClass( 'hfe-button-wrapper elementor-widget-button' );
					$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).removeClass( 'elementor-button' );	
				}
			}else{
				
				$( '.elementor-element-' + id + ' nav').removeClass('hfe-dropdown');
				if( ( 'cta' == last_item || 'cta' == last_item_flyout ) && 'expandible' != layout ){
					$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).parent().addClass( 'hfe-button-wrapper elementor-widget-button' );
					$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).addClass( 'elementor-button' );
				}
			}
		}else {
			var $parent_element = $( '.elementor-element-' + id );
			$parent_element.find( 'nav').removeClass( 'hfe-dropdown' );
			if( ( 'cta' == last_item || 'cta' == last_item_flyout ) && 'expandible' != layout ){
				$parent_element.find( 'li.menu-item:last-child a.hfe-menu-item' ).parent().addClass( 'hfe-button-wrapper elementor-widget-button' );
				$parent_element.find( 'li.menu-item:last-child a.hfe-menu-item' ).addClass( 'elementor-button' );
			}
		}

		var layout = $( '.elementor-element-' + id + ' .hfe-nav-menu' ).data( 'layout' );
		if( 'expandible' == layout ){
			if( ( 'cta' == last_item || 'cta' == last_item_flyout ) && 'expandible' != layout ){
				$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).parent().removeClass( 'hfe-button-wrapper elementor-widget-button' );
				$( '.elementor-element-' + id + ' li.menu-item:last-child a.hfe-menu-item' ).removeClass( 'elementor-button' );			
			}			
		}
	}

	function _toggleClick( id ){

		if ( $( '.elementor-element-' + id + ' .hfe-nav-menu__toggle' ).hasClass( 'hfe-active-menu-full-width' ) ){

			var $toggle = $( '.elementor-element-' + id + ' .hfe-nav-menu__toggle' );
			var $nextElement= $toggle.next();

			if( $nextElement.length ){
				$nextElement.css( 'left', '0' );
				
				var $section = $( '.elementor-element-' + id ).closest('.elementor-section, .e-con-boxed.e-parent, .e-con-full.e-parent');
				if ( $section.length ) {
					var width = $section.outerWidth();
					var sec_pos = $section.offset().left - $toggle.next().offset().left;
					$nextElement.css( 'width', width + 'px' );
					$nextElement.css( 'left', sec_pos + 'px' );
				}
			}
		}

		$( '.elementor-element-' + id + ' .hfe-nav-menu__toggle' ).off( 'click keyup' ).on( 'click keyup', function( event ) {

			// Handle keyboard events properly
			if ( event.type === 'keyup' && event.key !== 'Enter' && event.key !== 'Space' ) {
				return; // Only handle Enter and Space keys
			}

			// Prevent default for keyboard events to avoid scrolling
			if ( event.type === 'keyup' ) {
				event.preventDefault();
			}

			var $this = $( this );
			var $selector = $this.next();

			if ( $this.hasClass( 'hfe-active-menu' ) ) {

				var layout = $( '.elementor-element-' + id + ' .hfe-nav-menu' ).data( 'layout' );
				var full_width = $selector.data( 'full-width' );
				var toggle_icon = $( '.elementor-element-' + id + ' nav' ).data( 'toggle-icon' );

				$( '.elementor-element-' + id).find( '.hfe-nav-menu-icon' ).html( toggle_icon );

				$this.removeClass( 'hfe-active-menu' );
				$this.attr( 'aria-expanded', 'false' );
				
				if ( 'yes' == full_width ){

					$this.removeClass( 'hfe-active-menu-full-width' );
				
					$selector.css( 'width', 'auto' );
					$selector.css( 'left', '0' );
					$selector.css( 'z-index', '0' );
				}				
			} else {

				var layout = $( '.elementor-element-' + id + ' .hfe-nav-menu' ).data( 'layout' );
				var full_width = $selector.data( 'full-width' );
				var close_icon = $( '.elementor-element-' + id + ' nav' ).data( 'close-icon' );

				$( '.elementor-element-' + id).find( '.hfe-nav-menu-icon' ).html( close_icon );
				
				$this.addClass( 'hfe-active-menu' );
				$this.attr( 'aria-expanded', 'true' );

				if ( 'yes' == full_width ){

					$this.addClass( 'hfe-active-menu-full-width' );

					var closestElement = $( '.elementor-element-' + id ).closest('.elementor-section, .e-con-boxed.e-parent, .e-con-full.e-parent');
					var width = closestElement.outerWidth();
					var sec_pos = closestElement.offset().left - $selector.offset().left;
				
					$selector.css( 'width', width + 'px' );
					$selector.css( 'left', sec_pos + 'px' );
					$selector.css( 'z-index', '9999' );
				}
			}

			if( $( '.elementor-element-' + id + ' nav' ).hasClass( 'menu-is-active' ) ) {

				$( '.elementor-element-' + id + ' nav' ).removeClass( 'menu-is-active' );
			}else {

				$( '.elementor-element-' + id + ' nav' ).addClass( 'menu-is-active' );
				
				// Focus on first menu item when menu opens
				if ( event.type === 'keyup' ) {
					setTimeout(function() {
						$selector.find('li:first-child > a').focus();
					}, 100);
				}
			}				
		} );
	}

	function _handleSinglePageMenu( id, layout ) {
		$( '.elementor-element-' + id + ' ul.hfe-nav-menu li a' ).on(
			'click',
			function ( event ) {
				var $this = $( this );
				var link  = $this.attr( 'href' );
				var linkValue = '';
				
				// Check if this is an anchor link
				if ( link && link.includes( '#' ) ) {
					// Get the hash value
					if ( link.charAt(0) === '#' ) {
						event.preventDefault();
						linkValue = link.slice( 1 );
					} else {
						var index = link.indexOf( '#' );
						if ( index !== -1 ) {
							linkValue = link.slice( index + 1 );
						}
					}
				}
				
				if ( linkValue.length > 0 ) {
					var targetSection = $( '#' + linkValue );

					if ( targetSection.length ) {	// Check if the target section exists.
						$('html, body').animate({
							scrollTop: targetSection.offset().top
						}, 800); 
					}

					// Close the menu after clicking anchor link
					setTimeout(function() {
						if ( 'expandible' == layout ) {
							// For expandible layout, trigger click on toggle if menu is open
							var $toggle = $( '.elementor-element-' + id + ' .hfe-nav-menu__toggle' );
							if ( $toggle.hasClass( 'hfe-active-menu' ) ) {
								$toggle.trigger( 'click' );
							}
						} else if ( 'flyout' == layout ) {
							// For flyout layout, use the close menu function
							_closeMenu( id );
						} else {
							// For horizontal and vertical layouts on mobile/tablet
							if ( window.matchMedia( '(max-width: 1024px)' ).matches ) {
								if ( $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-tablet') || 
									 $( '.elementor-element-' + id ).hasClass('hfe-nav-menu__breakpoint-mobile') ) {
									var $toggle = $( '.elementor-element-' + id + ' .hfe-nav-menu__toggle' );
									if ( $toggle.hasClass( 'hfe-active-menu' ) ) {
										$toggle.trigger( 'click' );
									}
								}
							}
						}
					}, 100); // Small delay to ensure smooth scrolling starts first
				}
			}
		);
	}

	/**
	 * This function handles polylang plugin's lang switcher if present in the menu.
	 *
	 * @param {Object} $scope The current element(hfe nav menu) wrapped with jQuery.
	 */
	function _handlePolylangSwitcher( $scope ) {
		var polylangSwitcher = $scope.find( '.hfe-nav-menu nav .pll-parent-menu-item a.hfe-menu-item' );
		var hrefProperty     = polylangSwitcher.prop( 'href' );
		if ( undefined !== hrefProperty && hrefProperty.includes( '#' ) ) {
			var index = hrefProperty.indexOf( '#' );
			var value = hrefProperty.slice( index );
			if ( value === '#pll_switcher' ) {
				polylangSwitcher.prop( 'href', '#' );
			}
		}
	}

	$( window ).on( 'elementor/frontend/init', function () {

		elementorFrontend.hooks.addAction( 'frontend/element_ready/navigation-menu.default', WidgethfeNavMenuHandler );
		elementorFrontend.hooks.addAction( 'frontend/element_ready/hfe-search-button.default', WidgethfeSearchButton );
	});
} )( jQuery );
PK���\�d���)inc/js/hfe-elementor-pro-compatibility.jsnu�[���(function($){

	EHF_EPRO_Compatibility = {

        /**
		 * Binds events for the Elementor Header Footer.
		 *
		 * @since 1.4.0
		 * @access private
		 * @method _bind
		 */
		init: function() {
			elementor.on( "document:loaded", function() {
                setTimeout( function() {
                    jQuery.each( elementorFrontend.documentsManager.documents, function ( index, document ) {
                        var $documentElement = document.$element;
                        var ids_array = JSON.parse( hfe_admin.ids_array );
                        ids_array.forEach( function( item, index ){
                        	var elementor_id = $documentElement.data( 'elementor-id' );
                        	if( elementor_id == ids_array[index].id ){
                        		$documentElement.find( '.elementor-document-handle__title' ).text( elementor.translate('edit_element', [ids_array[index].value] ) );
                        	}
                        } );
                    });
                }, 1000 );
            });

			/**
             * Scroll to Top.
             */
			elementor.on("panel:init", function() {

                function scrollToTop( changedValue ) {

                    var changedItem = Object.entries(this.model.changed)[0];
                    var attributes = this.model.attributes;
                    var scrolltop_data = {
                        'check': 'hfeMessage',
                        'changeValue': changedValue,
                        'changeItem': changedItem
                    };
                    if ('hfe_scroll_to_top_single_disable' != changedItem[0]) {
                        var data = {
                            'enable_global_hfe': attributes.hfe_scroll_to_top_global,
                            'media_type': attributes.hfe_scroll_to_top_media_type,
                            'icon': attributes.hfe_scroll_to_top_button_icon,
                            'image': attributes.hfe_scroll_to_top_button_image,
                            'text': attributes.hfe_scroll_to_top_button_text
                        };
                        scrolltop_data = Object.assign(scrolltop_data, data);
                    } else {
                        $e.run('document/save/update').then(_.debounce(function() {
                            elementor.reloadPreview();
                        }, 1500));
                    }
                    $("#elementor-preview-iframe")[0].contentWindow.postMessage(scrolltop_data);
                }

                var changeHandler = ["hfe_scroll_to_top_global", "hfe_scroll_to_top_media_type", "hfe_scroll_to_top_button_icon", "hfe_scroll_to_top_button_image", "hfe_scroll_to_top_button_text", "hfe_scroll_to_top_single_disable"];
                $.each(changeHandler, function(index, value) {
                    elementor.settings.page.addChangeCallback(value, scrollToTop);
                });
            });
		}
	};

	/**
	 * Initialize EHF_EPRO_Compatibility
	 */
	$(function(){
		EHF_EPRO_Compatibility.init();
	});

})(jQuery);
PK���\^��gg inc/js/permalink-clear-notice.jsnu�[���var ElementorEditorCheck = function() {
    var isNoticeClosed = function() {

        jQuery(document).on('click', '.uae-permalink-notice-close', function(e) {
            var $notice = jQuery('#uae-permalink-clear-notice');
            if ($notice.data('visible')) {
                $notice.remove();
                jQuery.ajax({
                    url: hfePermalinkClearNotice.ajaxurl,
                    type: 'POST',
                    data: {
                        action: 'update_permalink_notice_option',
                        nonce: hfePermalinkClearNotice.nonce,
                    },
                    success: function(response) {
                        if (response.success) {
                            console.log('Option updated successfully');
                        } else {
                            console.log('Error updating option: ' + response.data);
                        }
                    },
                    error: function(error) {
                        console.log('Error updating option');
                    }
                });
            }
        });
    }

    var isPermalinkFlushed = function() {

        jQuery(document).on('click', '.uae-permalink-flush-btn', function(e) {
            
            var $loader = jQuery('.uae-notice-loader');
            var $button = jQuery(this);
            var $buttonText = $button.find('.uae-btn-main-text');

            // Show loader and disable button
            $loader.show();
            $buttonText.text('Flushing...');
            $button.prop('disabled', true);
            
            jQuery.ajax({
                    url: hfePermalinkClearNotice.ajaxurl,
                    type: 'POST',
                    data: {
                        action: 'hfe_flush_permalink_notice',
                        nonce: hfePermalinkClearNotice.nonce,
                    },
                    success: function(response) {
                        // Hide the loader
                        $loader.hide();
                        $buttonText.text('Flushed Permalink');
                        if (response.success) {
                            console.log('Permalink refreshed successfully');
                            location.reload(true);
                        } else {
                            console.log('Error updating option: ' + response.data);
                        }
                    },
                    error: function(error) {
                         // Hide the loader
                        $loader.hide();
                        $buttonText.text('Flushed Permalink');
                        console.log('Error updating option');
                    }
                });
            });
    }


    var isElementorLoadedCheck = function() {
        if ( 'undefined' === typeof elementor ) {
            return false;
        }
        
        if ( ! elementor.loaded ) {
            return false;
        }

        if ( jQuery( '#elementor-loading' ).is( ':visible' ) ) {
            return false;
        }

        return true;
    };

    var permalinkNoticeCheck = function() {
        var $notice = jQuery( '#uae-permalink-clear-notice' );

        if ( isElementorLoadedCheck() ) {
            $notice.remove();
            return;
        }

        if ( ! $notice.data( 'visible' ) ) {
            $notice.show().data( 'visible', true );
        }

        // Re-check after 500ms.
        setTimeout( permalinkNoticeCheck, 500 );
    };

    var init = function() {
        setTimeout( permalinkNoticeCheck, 30000 );
        isNoticeClosed();
        isPermalinkFlushed();
    };

    init();
};

new ElementorEditorCheck();PK���\dD(��8�8inc/class-hfe-analytics.phpnu�[���<?php
/**
 * HFE Analytics.
 *
 * @package HFE
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * HFE Analytics.
 *
 * HFE Analytics. handler class is responsible for rolling back HFE to
 * previous version.
 *
 * @since 2.3.0
 */
if ( ! class_exists( 'HFE_Analytics' ) ) {

	class HFE_Analytics {

		/**
		 * HFE Analytics constructor.
		 *
		 * Initializing HFE Analytics.
		 *
		 * @since 2.3.0
		 * @access public
		 *
		 * @param array $args Optional. HFE Analytics arguments. Default is an empty array.
		 */
		public function __construct() {
			add_action( 'admin_init', [ $this, 'maybe_migrate_analytics_tracking' ] );

			// Load analytics events class.
			if ( ! class_exists( 'HFE_Analytics_Events' ) ) {
				require_once HFE_DIR . 'inc/class-hfe-analytics-events.php';
			}

			// BSF Analytics Tracker.
			if ( ! class_exists( 'BSF_Analytics_Loader' ) ) {
				require_once HFE_DIR . 'admin/bsf-analytics/class-bsf-analytics-loader.php';
			}

			$bsf_analytics = BSF_Analytics_Loader::get_instance();

			$bsf_analytics->set_entity(
				[
					'uae' => [
						'product_name'        => 'Ultimate Addons for Elementor',
						'path'                => HFE_DIR . 'admin/bsf-analytics',
						'author'              => 'Ultimate Addons for Elementor',
						'time_to_display'     => '+24 hours',
						'deactivation_survey' => [
							[
								'id'                => 'deactivation-survey-header-footer-elementor',
								'popup_logo'        => HFE_URL . 'assets/images/settings/logo.svg',
								'plugin_slug'       => 'header-footer-elementor',
								'plugin_version'    => HFE_VER,
								'popup_title'       => 'Quick Feedback',
								'support_url'       => 'https://ultimateelementor.com/contact/',
								'popup_description' => 'If you have a moment, please share why you are deactivating Ultimate Addons for Elementor:',
								'show_on_screens'   => [ 'plugins' ],
							],
						],
						'hide_optin_checkbox' => true,
					],
				]
			);

			add_filter( 'bsf_core_stats', [ $this, 'add_uae_analytics_data' ] );

			// Event tracking hooks.
			add_action( 'transition_post_status', [ $this, 'track_first_template_published' ], 10, 3 );
			if ( ! HFE_Analytics_Events::is_tracked( 'first_widget_used' ) ) {
				add_action( 'elementor/editor/after_save', [ $this, 'track_first_widget_on_save' ], 10, 2 );
			}

			// Detect state-based events only in admin context, throttled to once per day.
			if ( is_admin() && false === get_transient( 'hfe_state_events_checked' ) ) {
				$this->detect_state_events();
				set_transient( 'hfe_state_events_checked', 1, DAY_IN_SECONDS );
			}
		}

		/**
		 * Migrates analytics tracking option from 'bsf_usage_optin' to 'uae_usage_optin'.
		 *
		 * Checks if the old analytics tracking option ('bsf_usage_optin') is set to 'yes'
		 * and if the new option ('uae_usage_optin') is not already set.
		 * If so, updates the new tracking option to 'yes' to maintain user consent during migration.
		 *
		 * @since 2.3.2
		 * @access public
		 *
		 * @return void
		 */
		public function maybe_migrate_analytics_tracking() {
			// Skip if already migrated or new option already set.
			if ( false !== get_site_option( 'uae_usage_optin', false ) ) {
				return;
			}

			$old_tracking = get_site_option( 'bsf_usage_optin', false );
			if ( 'yes' === $old_tracking ) {
				update_site_option( 'uae_usage_optin', 'yes' );
				$time = get_site_option( 'bsf_usage_installed_time' );
				if ( false !== $time ) {
					update_site_option( 'uae_usage_installed_time', $time );
				}
			}
		}
        
        /**
         * Callback function to add specific analytics data.
         *
         * @param array $stats_data existing stats_data.
         * @since 2.3.0
         * @return array
         */
        public function add_uae_analytics_data( $stats_data ) {
			 // Check if $stats_data is empty or not an array.
			 if ( empty( $stats_data ) || ! is_array( $stats_data ) ) {
				$stats_data = []; // Initialize as an empty array.
			}
		
            $stats_data['plugin_data']['uae']		= [
                'free_version'  => HFE_VER,
                'pro_version' => ( defined( 'UAEL_VERSION' ) ? UAEL_VERSION : '' ),
                'site_language' => get_locale(),
                'elementor_version' => ( defined( 'ELEMENTOR_VERSION' ) ? ELEMENTOR_VERSION : '' ),
                'elementor_pro_version' => ( defined( 'ELEMENTOR_PRO_VERSION' ) ? ELEMENTOR_PRO_VERSION : '' ),
                'onboarding_triggered' => ( 'yes' === get_option( 'hfe_onboarding_triggered' ) ) ? 'yes' : 'no',
				'uaelite_subscription' => ( 'done' === get_option( 'uaelite_subscription' ) ) ? 'yes' : 'no',
				'active_theme'         => get_template(),
				'is_theme_supported'   => (bool) get_option( 'hfe_is_theme_supported', false ),
				'onboarding_analytics' => get_option( 'hfe_onboarding_analytics', [] ),
            ];

            $template_counts = wp_count_posts( 'elementor-hf' );
            $stats_data['plugin_data']['uae']['numeric_values'] = [
                'total_hfe_templates' => isset( $template_counts->publish ) ? (int) $template_counts->publish : 0,
            ];

			$widgets_usage = $this->hfe_get_widgets_usage();
			foreach ( $widgets_usage as $key => $value ) {
				$stats_data['plugin_data']['uae']['numeric_values'][ $key ] = $value;
			}

			$learn_progress = $this->get_learn_progress_analytics_data();
			if ( ! empty( $learn_progress ) ) {
				$stats_data['plugin_data']['uae']['learn_chapters_completed'] = $learn_progress;
			}

			// Add KPI tracking data.
			$kpi_data = $this->get_kpi_tracking_data();
			if ( ! empty( $kpi_data ) ) {
				$stats_data['plugin_data']['uae']['kpi_records'] = $kpi_data;
			}

			// Flush pending events into payload (only if any exist).
			$pending_events = HFE_Analytics_Events::flush_pending();
			if ( ! empty( $pending_events ) ) {
				$stats_data['plugin_data']['uae']['events_record'] = $pending_events;
			}

            return $stats_data;
        }

		/**
		 * Track first time a template is published.
		 *
		 * @param string   $new_status New post status.
		 * @param string   $old_status Old post status.
		 * @param \WP_Post $post       Post object.
		 * @since 2.8.6
		 * @return void
		 */
		public function track_first_template_published( $new_status, $old_status, $post ) {
			if ( 'publish' !== $new_status || 'publish' === $old_status || 'elementor-hf' !== $post->post_type ) {
				return;
			}

			$template_type      = get_post_meta( $post->ID, 'ehf_template_type', true );
			$install_time       = get_option( 'uae_usage_installed_time', 0 );
			$days_since_install = 0;
			if ( $install_time > 0 ) {
				$days_since_install = (int) floor( ( time() - (int) $install_time ) / DAY_IN_SECONDS );
			}

			HFE_Analytics_Events::track(
				'first_template_published',
				(string) $post->ID,
				[
					'template_type'      => ! empty( $template_type ) ? $template_type : 'unknown',
					'days_since_install' => (string) $days_since_install,
				]
			);
		}

		/**
		 * Track first HFE widget usage on Elementor post save.
		 *
		 * Fires on elementor/editor/after_save. Checks if the saved post
		 * contains any HFE widget and tracks the first_widget_used event
		 * immediately instead of waiting for the daily cron scan.
		 *
		 * @since 2.8.7
		 * @param int   $post_id Post ID.
		 * @param array $editor_data Elementor editor data.
		 * @return void
		 */
		public function track_first_widget_on_save( $post_id, $editor_data ) {
			// Skip if already tracked — zero overhead after first detection.
			if ( HFE_Analytics_Events::is_tracked( 'first_widget_used' ) ) {
				return;
			}

			$allowed_widgets = [
				'hfe-breadcrumbs-widget',
				'hfe-cart',
				'copyright',
				'navigation-menu',
				'page-title',
				'post-info-widget',
				'retina',
				'hfe-search-button',
				'site-logo',
				'hfe-site-tagline',
				'hfe-site-title',
				'hfe-infocard',
				'hfe-woo-product-grid',
				'hfe-basic-posts',
				'hfe-counter',
			];

			$elementor_data = get_post_meta( $post_id, '_elementor_data', true );
			if ( empty( $elementor_data ) ) {
				return;
			}

			$first_widget = '';
			foreach ( $allowed_widgets as $widget ) {
				if ( false !== strpos( $elementor_data, '"widgetType":"' . $widget . '"' ) ) {
					$first_widget = $widget;
					break;
				}
			}

			if ( empty( $first_widget ) ) {
				return;
			}

			$install_time       = get_option( 'uae_usage_installed_time', 0 );
			$days_since_install = 0;
			if ( $install_time > 0 ) {
				$days_since_install = (int) floor( ( time() - (int) $install_time ) / DAY_IN_SECONDS );
			}

			HFE_Analytics_Events::track(
				'first_widget_used',
				$first_widget,
				[
					'days_since_install' => (string) $days_since_install,
				]
			);
		}

		/**
		 * Detect state-based events that can't use direct hooks.
		 * Uses dedup in HFE_Analytics_Events::track() — safe to call repeatedly.
		 *
		 * @since 2.8.6
		 * @return void
		 */
		private function detect_state_events() {
			// Read pushed + pending once to avoid repeated get_option calls per event.
			$pushed  = get_option( 'hfe_usage_events_pushed', [] );
			$pushed  = is_array( $pushed ) ? $pushed : [];
			$pending = get_option( 'hfe_usage_events_pending', [] );
			$pending = is_array( $pending ) ? $pending : [];

			$tracked_names = array_merge( $pushed, array_column( $pending, 'event_name' ) );

			// onboarding_completed: detect completed or early-exit state from the analytics blob.
			if ( ! in_array( 'onboarding_completed', $tracked_names, true ) ) {
				$onboarding_analytics = get_option( 'hfe_onboarding_analytics', [] );
				$onboarding_done      = 'yes' === get_option( 'hfe_onboarding_triggered' );
				$onboarding_skipped   = ! empty( $onboarding_analytics['exited_early'] ) && empty( $onboarding_analytics['completed'] );

				if ( $onboarding_done || $onboarding_skipped ) {
					HFE_Analytics_Events::track(
						'onboarding_completed',
						$onboarding_skipped ? 'no' : 'yes',
						[ 'skipped' => (string) (int) $onboarding_skipped ]
					);
				}
			}

			// first_widget_used: tracked in real-time via elementor/editor/after_save hook.

			// post_duplicator_used: fires once when the post duplicator feature has been used.
			if ( ! in_array( 'post_duplicator_used', $tracked_names, true ) ) {
				if ( (int) get_option( 'uae_duplicator_count', 0 ) > 0 ) {
					$install_time       = get_option( 'uae_usage_installed_time', 0 );
					$days_since_install = 0;
					if ( $install_time > 0 ) {
						$days_since_install = (int) floor( ( time() - (int) $install_time ) / DAY_IN_SECONDS );
					}
					HFE_Analytics_Events::track(
						'post_duplicator_used',
						'yes',
						[ 'days_since_install' => (string) $days_since_install ]
					);
				}
			}
		}

		/**
		 * Fetch Elementor data.
		 */
		private function hfe_get_widgets_usage() {
			return get_option( 'uae_widgets_usage_data_option', [] );
		}

		/**
		 * Get UAE learn progress analytics data.
		 *
		 * @return array
		 */
		private function get_learn_progress_analytics_data() {
			global $wpdb;

			$results = $wpdb->get_results(
				$wpdb->prepare(
					"SELECT meta_value FROM {$wpdb->usermeta} WHERE meta_key = %s LIMIT 100",
					'hfe_learn_progress'
				),
				ARRAY_A
			);

			if ( empty( $results ) ) {
				return [];
			}

			if ( ! class_exists( '\HFE\API\HFE_Learn_API' ) ) {
				return [];
			}

			$chapters = \HFE\API\HFE_Learn_API::get_chapters_structure();

			$completed_chapters = [];

			foreach ( $results as $row ) {
				$progress_data = maybe_unserialize( $row['meta_value'] );

				// Guard against object injection — only accept arrays.
				if ( ! is_array( $progress_data ) || is_object( $progress_data ) ) {
					continue;
				}

				foreach ( $chapters as $chapter ) {

					$chapter_id = $chapter['id'];

					// Skip already counted.
					if ( in_array( $chapter_id, $completed_chapters, true ) ) {
						continue;
					}

					// Skip invalid chapters.
					if ( empty( $chapter['steps'] ) || ! is_array( $chapter['steps'] ) ) {
						continue;
					}

					// Skip if not present in user data.
					if ( empty( $progress_data[ $chapter_id ] ) || ! is_array( $progress_data[ $chapter_id ] ) ) {
						continue;
					}

					$all_steps_completed = true;

					foreach ( $chapter['steps'] as $step ) {
						$step_id = $step['id'];

						if (
							! isset( $progress_data[ $chapter_id ][ $step_id ] ) ||
							! $progress_data[ $chapter_id ][ $step_id ]
						) {
							$all_steps_completed = false;
							break;
						}
					}

					if ( $all_steps_completed ) {
						$completed_chapters[] = $chapter_id;
					}
				}
			}

			return array_values( array_unique( $completed_chapters ) );
		}

		/**
		 * Get KPI tracking data for the last 2 days (excluding today).
		 *
		 * Uses stored snapshots for state-based metrics (total_templates,
		 * widgets_count, total_widget_instances) and computes modified_templates
		 * fresh for each completed past day to ensure accurate counts.
		 *
		 * @since 2.8.4
		 * @return array KPI data organized by date.
		 */
		private function get_kpi_tracking_data() {
			$snapshots = get_option( 'hfe_kpi_daily_snapshots', [] );

			if ( empty( $snapshots ) || ! is_array( $snapshots ) ) {
				return [];
			}

			$kpi_data = [];
			$today    = current_time( 'Y-m-d' );

			// Only send data for dates that have actual per-day snapshots.
			for ( $i = 1; $i <= 2; $i++ ) {
				$date = wp_date( 'Y-m-d', strtotime( $today . ' -' . $i . ' days' ) );

				if ( ! isset( $snapshots[ $date ]['numeric_values'] ) ) {
					continue;
				}

				$kpi_data[ $date ] = [
					'numeric_values' => array_merge(
						$snapshots[ $date ]['numeric_values'],
						[ 'modified_templates' => $this->get_modified_template_count( $date ) ]
					),
				];
			}

			return $kpi_data;
		}

		/**
		 * Get count of HFE templates modified on a given date.
		 *
		 * @since 2.8.4
		 * @param string $date Date in Y-m-d format.
		 * @return int Modified template count for the date.
		 */
		private function get_modified_template_count( $date ) {
			$query = new WP_Query(
				[
					'post_type'      => 'elementor-hf',
					'post_status'    => 'publish',
					'posts_per_page' => 1,
					'no_found_rows'  => false,
					'fields'         => 'ids',
					'date_query'     => [
						[
							'column'    => 'post_modified',
							'after'     => $date . ' 00:00:00',
							'before'    => $date . ' 23:59:59',
							'inclusive' => true,
						],
					],
				]
			);

			return (int) $query->found_posts;
		}
	}
}
new HFE_Analytics();
PK���\�A̸y(y(inc/class-hfe-promotion.phpnu�[���<?php
/**
 * HFE Promotion Class
 * 
 * Promotes Ultimate Elementor extensions within Header Footer Elementor
 *
 * @package header-footer-elementor
 */

namespace HFE\Extensions;

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

use Elementor\Controls_Manager;

/**
 * Class HFE_Promotion
 */
class HFE_Promotion {

    /**
     * Constructor
     */
    public function __construct() {
        // Only show promotions if Ultimate Elementor Pro is not active
        if ( ! $this->is_ultimate_elementor_active() ) {
            $this->init_hooks();
        }
    }

    /**
     * Initialize hooks
     */
    private function init_hooks() {
        // Particles Extension - Add to section/column/container background sections
        add_action( 'elementor/element/section/section_background/after_section_end', [ $this, 'add_particles_promotion' ], 10 );
        add_action( 'elementor/element/column/section_style/after_section_end', [ $this, 'add_particles_promotion' ], 10 );
        add_action( 'elementor/element/container/section_background/after_section_end', [ $this, 'add_particles_promotion' ], 10 );
        
        // Display Conditions - Add to section/column/container advanced sections and common widgets
        add_action( 'elementor/element/section/section_advanced/after_section_end', [ $this, 'add_display_conditions_promotion' ], 10 );
        add_action( 'elementor/element/column/section_advanced/after_section_end', [ $this, 'add_display_conditions_promotion' ], 10 );
        add_action( 'elementor/element/container/section_layout/after_section_end', [ $this, 'add_display_conditions_promotion' ], 10 );
        add_action( 'elementor/element/common/_section_style/after_section_end', [ $this, 'add_display_conditions_promotion' ], 10 );
        
        // Party Propz Extension - Add to section/column/container advanced sections and common widgets
        add_action( 'elementor/element/section/section_advanced/after_section_end', [ $this, 'add_party_propz_promotion' ], 10 );
        add_action( 'elementor/element/column/section_advanced/after_section_end', [ $this, 'add_party_propz_promotion' ], 10 );
        add_action( 'elementor/element/container/section_layout/after_section_end', [ $this, 'add_party_propz_promotion' ], 10 );
        add_action( 'elementor/element/common/_section_style/after_section_end', [ $this, 'add_party_propz_promotion' ], 10 );
        
        // Sticky Header - Only for header templates (check if we're in header context)
        add_action( 'elementor/element/section/section_advanced/after_section_end', [ $this, 'add_sticky_header_promotion' ], 10 );
        add_action( 'elementor/element/container/section_layout/after_section_end', [ $this, 'add_sticky_header_promotion' ], 10 );
        
    }

    /**
     * Check if Ultimate Elementor Pro is active
     */
    private function is_ultimate_elementor_active() {
        return defined( 'UAEL_PRO' ) && UAEL_PRO;
    }

    /**
     * Check if we're editing a header template
     */
    private function is_header_template() {
        global $post;
        
        // Validate $post is an object and has ID property
        if ( ! is_object( $post ) || ! isset( $post->ID ) || ! is_numeric( $post->ID ) ) {
            return false;
        }
        
        // Sanitize post ID
        $post_id = absint( $post->ID );
        if ( ! $post_id ) {
            return false;
        }
        
        $post_type = get_post_type( $post_id );
        $template_type = get_post_meta( $post_id, 'ehf_template_type', true );
        
        // Sanitize template type
        $template_type = sanitize_text_field( $template_type );
        
        return ( 'elementor-hf' === $post_type && 'type_header' === $template_type );
    }

    /**
     * Generate promotional teaser template
     */
    private function get_teaser_template( $args ) {
        // Validate input is array
        if ( ! is_array( $args ) ) {
            $args = [];
        }
        
        $defaults = [
            'description' => '',
            'upgrade_text' => __( 'Upgrade Now', 'header-footer-elementor' ),
            'upgrade_url' => '',
        ];

        $args = wp_parse_args( $args, $defaults );
        
        // Additional sanitization
        $description = sanitize_text_field( $args['description'] );
        $upgrade_text = sanitize_text_field( $args['upgrade_text'] );
        $upgrade_url = esc_url_raw( $args['upgrade_url'] );
        
        // Validate URL
        if ( ! filter_var( $upgrade_url, FILTER_VALIDATE_URL ) ) {
            $upgrade_url = '#';
        }

        $html = '
        <div class="hfe-promotion-box">
            <div class="hfe-promo-content">
                <div class="hfe-promo-description">' . esc_html( $description ) . '</div>
                 <a href="' . esc_url( $upgrade_url ) . '" target="_blank" rel="noopener noreferrer" class="hfe-promo-button elementor-button e-accent dialog-button">
                    ' . esc_html( $upgrade_text ) . '
                </a>
            </div>
        </div>
        <style>
        .hfe-promo-description{
            line-height: 19.5px;
            font-size: 13px;
        }
        .hfe-promo-button{
            margin-top:10px;
        }
        .hfe-lock.eicon-lock:hover{
            color: #93003f;
        }
        </style>
        ';

        return $html;
    }

    /**
     * Get sanitized promotion label
     */
    private function get_promotion_label( $feature_name ) {
        $feature_name = sanitize_text_field( $feature_name );
        $lock_icon = '<i class="hfe-lock eicon-lock"></i>';
        
        // Using sprintf for better string formatting
        return sprintf(
            /* translators: %1$s: Feature name, %2$s: Lock icon */
            __( 'UAE - %1$s %2$s', 'header-footer-elementor' ),
            esc_html( $feature_name ),
            $lock_icon // This is safe as it's hardcoded HTML
        );
    }

    /**
     * Add Particles extension promotion
     */
    public function add_particles_promotion( $element ) {
        $element->start_controls_section(
            'hfe_particles_promo',
            [
                'label' => $this->get_promotion_label( __( 'Particle Backgrounds', 'header-footer-elementor' ) ),
                'tab' => Controls_Manager::TAB_STYLE,
            ]
        );

        $element->add_control(
            'hfe_particles_promo_content',
            [
                'type' => Controls_Manager::RAW_HTML,
                'raw' => $this->get_teaser_template([
                    'description' => __( 'Use Particle Backgrounds and other Pro features to extend your toolbox with more control and flexibility.', 'header-footer-elementor' ),
                    'upgrade_url' => 'https://ultimateelementor.com/pricing/?utm_source=plugin-editor&utm_medium=particle-background-promo&utm_campaign=uae-upgrade',
                ]),
            ]
        );

        $element->end_controls_section();
    }

    /**
     * Add Display Conditions extension promotion
     */
    public function add_display_conditions_promotion( $element ) {
        $element->start_controls_section(
            'hfe_display_conditions_promo',
            [
                'label' => $this->get_promotion_label( __( 'Display Conditions', 'header-footer-elementor' ) ),
                'tab' => Controls_Manager::TAB_ADVANCED,
            ]
        );

        $element->add_control(
            'hfe_display_conditions_promo_content',
            [
                'type' => Controls_Manager::RAW_HTML,
                'raw' => $this->get_teaser_template([
                    'description' => __( 'Use Advanced Display Condition and other Pro features to extend your toolbox with more control and flexibility.', 'header-footer-elementor' ),
                    'upgrade_url' => 'https://ultimateelementor.com/pricing/?utm_source=plugin-editor&utm_medium=display-conditions-promo&utm_campaign=uae-upgrade',
                ]),
            ]
        );

        $element->end_controls_section();
    }

    /**
     * Add Party Propz extension promotion
     */
    public function add_party_propz_promotion( $element ) {
        $element->start_controls_section(
            'hfe_party_propz_promo',
            [
                'label' => $this->get_promotion_label( __( 'Party Propz', 'header-footer-elementor' ) ),
                'tab' => Controls_Manager::TAB_ADVANCED,
            ]
        );

        $element->add_control(
            'hfe_party_propz_promo_content',
            [
                'type' => Controls_Manager::RAW_HTML,
                'raw' => $this->get_teaser_template([
                    'description' => __( 'Use Party Propz and other Pro features to extend your toolbox with more control and flexibility.', 'header-footer-elementor' ),
                    'upgrade_url' => 'https://ultimateelementor.com/pricing/?utm_source=plugin-editor&utm_medium=party-propz-promo&utm_campaign=uae-upgrade',
                ]),
            ]
        );

        $element->end_controls_section();
    }

    /**
     * Add Sticky Header extension promotion (only for header templates)
     */
    public function add_sticky_header_promotion( $element ) {
        // Only show for header templates
        if ( ! $this->is_header_template() ) {
            return;
        }

        $element->start_controls_section(
            'hfe_sticky_header_promo',
            [
                'label' => $this->get_promotion_label( __( 'Sticky Header', 'header-footer-elementor' ) ),
                'tab' => Controls_Manager::TAB_ADVANCED,
            ]
        );

        $element->add_control(
            'hfe_sticky_header_promo_content',
            [
                'type' => Controls_Manager::RAW_HTML,
                'raw' => $this->get_teaser_template([
                    'description' => __( 'Use Sticky Header and other Pro features to extend your toolbox with more control and flexibility.', 'header-footer-elementor' ),
                    'upgrade_url' => 'https://ultimateelementor.com/pricing/?utm_source=plugin-editor&utm_medium=sticky-header-promo&utm_campaign=uae-upgrade',
                ]),
            ]
        );

        $element->end_controls_section();
    }

}

// Initialize the promotion class
new HFE_Promotion();
PK���\;̕#(�(�inc/class-hfe-learn-api.phpnu�[���<?php
/**
 * HFE Learn API
 *
 * @package HFE
 * @since 2.8.4
 */

namespace HFE\API;

use WP_REST_Controller;
use WP_REST_Server;
use WP_REST_Response;
use WP_Error;

/**
 * Class HFE_Learn_API
 *
 * Handles the learn tab functionality including REST API endpoints and admin actions.
 *
 * @since 2.8.4
 */
class HFE_Learn_API extends WP_REST_Controller {
    
    /**
     * REST API namespace
     *
     * @since 2.8.4
     * @var string
     */
    protected $namespace = 'hfe/v1';
    
    /**
     * Constructor
     *
     * Initialize hooks and actions for the learn API.
     *
     * @since 2.8.4
     */
    public function __construct() {
        add_action( 'rest_api_init', array( $this, 'register_routes' ) );

        // Header.
        add_action( 'admin_post_uae_create_header_elementor', array( $this, 'uae_create_header_elementor' ) );
        add_action( 'admin_post_uae_edit_header_elementor', array( $this, 'uae_edit_header_elementor' ) );

        // Footer.
        add_action( 'admin_post_uae_create_footer_elementor', array( $this, 'uae_create_footer_elementor' ) );
        add_action( 'admin_post_uae_edit_footer_elementor', array( $this, 'uae_edit_footer_elementor' ) );

        // Page Builder.
        add_action( 'admin_post_uae_create_page_elementor', array( $this, 'uae_create_page_and_open_elementor' ) );

        add_action( 'admin_post_uae_open_extension', array( $this, 'uae_open_extension' ) );
        add_action( 'admin_post_uae_enable_duplicator', array( $this, 'uae_enable_duplicator' ) );
        add_action( 'elementor/editor/after_enqueue_scripts', array( $this, 'uae_auto_open_extension_tab' ) );
        add_action( 'elementor/editor/after_enqueue_scripts', array( $this, 'uae_elementor_widget_search' ) );
    }

    /**
     * Add Elementor widget search functionality.
     *
     * Enqueues inline JavaScript to handle widget search and auto-click in Elementor editor.
     *
     * @since 2.8.4
     * @return void
     */
    public function uae_elementor_widget_search() {
        wp_add_inline_script(
            'elementor-editor',
            "(function () {
                jQuery(window).on('elementor:init', function () {
                    const params = new URLSearchParams(window.location.search);
                    let keyword = params.get('uae_widgets');

                    if (!keyword) {
                        return;
                    }

                    const lowerKeyword = keyword.toLowerCase();
                    const skipClick = ( lowerKeyword === 'header' || lowerKeyword === 'footer' );

                    if ( skipClick ) {
                        keyword = 'uae';
                    }

                    let attempts = 0;
                    const maxAttempts = 40;

                    const interval = setInterval(function () {
                        attempts++;

                        const searchInput = document.querySelector(
                            '.elementor-panel input[type=\"search\"]'
                        );

                        if (!searchInput) {
                            if (attempts >= maxAttempts) {
                                clearInterval(interval);
                            }
                            return;
                        }

                        searchInput.value = keyword;
                        searchInput.dispatchEvent(
                            new Event('input', { bubbles: true })
                        );

                        if ( skipClick ) {
                            clearInterval(interval);
                            return;
                        }

                        setTimeout(function () {
                            const widgets = document.querySelectorAll(
                                '#elementor-panel-elements-wrapper .elementor-element'
                            );

                            for (const widget of widgets) {
                                const titleEl = widget.querySelector('.title');

                                if (
                                    titleEl &&
                                    titleEl.textContent
                                        .toLowerCase()
                                        .includes(lowerKeyword)
                                ) {
                                    widget.click();
                                    clearInterval(interval);
                                    return;
                                }
                            }
                        }, 300);

                        if (attempts >= maxAttempts) {
                            clearInterval(interval);
                        }
                    }, 250);
                });
            })();"
        );
    }

    /**
     * Handle header/footer template creation or editing.
     *
     * Creates or finds existing header/footer template and redirects to appropriate editor.
     *
     * @since 2.8.4
     * @param string $type Template type ('header' or 'footer').
     * @param bool   $open_elementor Whether to open in Elementor editor.
     * @return void
     */
    private function handle_hf_template( $type = 'header', $open_elementor = true ) {

        check_admin_referer( 'hfe_learn_action' );

        if ( ! current_user_can( 'manage_options' ) ) {
            wp_die( esc_html__( 'Permission denied.', 'header-footer-elementor' ) );
        }

        $title = ( 'footer' === $type )
            ? __( 'UAE Learn Footer', 'header-footer-elementor' )
            : __( 'UAE Learn Header', 'header-footer-elementor' );

        $existing = get_posts(
            array(
                'post_type'      => 'elementor-hf',
                'post_status'    => array( 'draft', 'publish' ),
                'posts_per_page' => 1,
                'fields'         => 'ids',
                'meta_query'     => array(
                    'relation' => 'AND',
                    array(
                        'key'   => 'uae_learn',
                        'value' => 'yes',
                    ),
                    array(
                        'key'   => 'ehf_template_type',
                        'value' => 'type_' . $type,
                    ),
                ),
            )
        );

        if ( ! empty( $existing ) ) {
            $post_id = $existing[0];
        } else {
            $post_id = wp_insert_post(
                array(
                    'post_type'   => 'elementor-hf',
                    'post_title'  => $title,
                    'post_status' => 'draft',
                )
            );
            $template_type = 'type_' . $type;
            update_post_meta( $post_id, '_elementor_edit_mode', 'builder' );
            update_post_meta( $post_id, '_wp_page_template', 'default' );
            update_post_meta( $post_id, 'ehf_template_type', $template_type );
            update_post_meta( $post_id, 'uae_learn', 'yes' );
        }

        if ( $open_elementor ) {
            wp_safe_redirect(
                admin_url(
                    'post.php?post=' . $post_id .
                    '&action=elementor' .
                    '&uae_widgets=' . $type
                )
            );
        } else {
            wp_safe_redirect(
                admin_url(
                    'post.php?post=' . $post_id .
                    '&action=edit&open_metabox=ehf-meta-box'
                )
            );
        }

        exit;
    }

    /**
     * Create Header and Redirect to Header screen.
     *
     * @since 2.8.4
     * @return void
     */
    public function uae_create_header_elementor() {
        $this->handle_hf_template( 'header', false );
    }

    /**
     * Create or check Header and Redirect to Elementor.
     *
     * @since 2.8.4
     * @return void
     */
    public function uae_edit_header_elementor() {
        $this->handle_hf_template( 'header', true );
    }

    /**
     * Create Footer and Redirect to Footer screen.
     *
     * @since 2.8.4
     * @return void
     */
    public function uae_create_footer_elementor() {
        $this->handle_hf_template( 'footer', false );
    }

    /**
     * Create or check Footer and Redirect to Elementor.
     *
     * @since 2.8.4
     * @return void
     */
    public function uae_edit_footer_elementor() {
        $this->handle_hf_template( 'footer', true );
    }
    
    /**
     * Create Page and Open Elementor showing UAE widgets.
     *
     * Creates or finds existing UAE learn page and opens it in Elementor editor
     * with optional widget search functionality.
     *
     * @since 2.8.4
     * @return void
     */
    public function uae_create_page_and_open_elementor() {
        check_admin_referer( 'hfe_learn_action' );

        if ( ! current_user_can( 'edit_pages' ) ) {
            wp_die( esc_html__( 'Permission denied.', 'header-footer-elementor' ) );
        }

        // Get keyword from request.
        $uae_widgets = isset( $_GET['uae_widgets'] )
            ? sanitize_text_field( wp_unslash( $_GET['uae_widgets'] ) )
            : '';

        $existing = get_posts(
            array(
                'post_type'      => 'page',
                'post_status'    => array( 'draft', 'publish', 'private' ),
                'meta_key'       => 'uae_learn',
                'meta_value'     => 'yes',
                'posts_per_page' => 1,
                'fields'         => 'ids',
            )
        );

        if ( ! empty( $existing ) ) {
            $page_id = $existing[0];

            wp_safe_redirect(
                admin_url(
                    'post.php?post=' . $page_id .
                    '&action=elementor' .
                    '&uae_widgets=' . rawurlencode( $uae_widgets )
                )
            );
            exit;
        }

        $page_id = wp_insert_post(
            array(
                'post_type'   => 'page',
                'post_title'  => __( 'UAE Learn Page', 'header-footer-elementor' ),
                'post_status' => 'draft',
            )
        );

        if ( is_wp_error( $page_id ) ) {
            wp_die( esc_html__( 'Page creation failed.', 'header-footer-elementor' ) );
        }

        update_post_meta( $page_id, '_elementor_edit_mode', 'builder' );
        update_post_meta( $page_id, '_wp_page_template', 'elementor_canvas' );
        update_post_meta( $page_id, 'uae_learn', 'yes' );

        wp_safe_redirect(
            admin_url(
                'post.php?post=' . $page_id .
                '&action=elementor' .
                '&uae_widgets=' . rawurlencode( $uae_widgets )
            )
        );
        exit;
    }

    /**
     * Fetch elementor kit id and Redirect to elementor site setting.
     *
     * Opens specific extension tab in Elementor site settings.
     *
     * @since 2.8.4
     * @return void
     */
    public function uae_open_extension() {
        check_admin_referer( 'hfe_learn_action' );

        if ( ! current_user_can( 'manage_options' ) ) {
            wp_die( esc_html__( 'Permission denied.', 'header-footer-elementor' ) );
        }

        $ext = isset( $_GET['ext'] )
            ? sanitize_key( $_GET['ext'] )
            : '';

        if ( empty( $ext ) ) {
            wp_die( esc_html__( 'Invalid extension.', 'header-footer-elementor' ) );
        }

        // Active Elementor Kit.
        $kit_id = get_option( 'elementor_active_kit' );

        if ( empty( $kit_id ) ) {
            wp_die( esc_html__( 'No active Elementor Kit found.', 'header-footer-elementor' ) );
        }

        wp_safe_redirect(
            admin_url(
                'post.php?post=' . absint( $kit_id ) .
                '&action=elementor' .
                '&open_ext=' . rawurlencode( $ext )
            )
        );

        exit;
    }

    /**
     * Enable UAE Duplicator and redirect to pages.
     *
     * Enables the post duplicator widget and redirects to the pages list.
     *
     * @since 2.8.4
     * @return void
     */
    public function uae_enable_duplicator() {
        check_admin_referer( 'hfe_learn_action' );

        if ( ! current_user_can( 'manage_options' ) ) {
            wp_die( esc_html__( 'Permission denied.', 'header-footer-elementor' ) );
        }

        // Get current enabled widgets.
        $enabled_widgets = get_option( '_hfe_widgets', array() );

        if ( ! is_array( $enabled_widgets ) ) {
            $enabled_widgets = array();
        }

        // Check if duplicator is already enabled.
        if ( ! isset( $enabled_widgets['Post_Duplicator'] ) || 'Post_Duplicator' !== $enabled_widgets['Post_Duplicator'] ) {
            // Enable the duplicator widget (set value to slug).
            $enabled_widgets['Post_Duplicator'] = 'Post_Duplicator';
            update_option( '_hfe_widgets', $enabled_widgets );
        }

        // Redirect to pages list.
        wp_safe_redirect( admin_url( 'edit.php?post_type=page' ) );
        exit;
    }

    /**
     * Auto open extension tab in Elementor.
     *
     * Adds JavaScript to automatically open specific extension tabs in Elementor kit.
     *
     * @since 2.8.4
     * @return void
     */
    public function uae_auto_open_extension_tab() {
        ?>
        <script>
        (function(){

            const MAP = {
                reading_progress : '.elementor-panel-menu-item-hfe-reading-progress-bar',
                scroll_to_top    : '.elementor-panel-menu-item-hfe-scroll-to-top-settings'
            };

            function tryOpen( selector ) {

                if ( ! window.elementor || ! elementor.config || ! elementor.config.document ) {
                    return;
                }

                if ( elementor.config.document.type !== 'kit' ) {
                    return;
                }

                const btn = document.querySelector( selector );

                if ( btn ) {
                    btn.click();
                    return;
                }

                setTimeout( function(){
                    tryOpen( selector );
                }, 200 );
            }

            window.addEventListener('elementor:init', function () {

                const params = new URLSearchParams( window.location.search );
                const ext = params.get('open_ext');

                if ( ! ext || ! MAP[ ext ] ) {
                    return;
                }

                tryOpen( MAP[ ext ] );

            });

        })();
        </script>
        <?php
    }



    /**
     * Register REST API routes
     *
     * Registers endpoints for learning chapters and progress tracking.
     *
     * @since 2.8.4
     * @return void
     */
    public function register_routes() {
        // GET endpoint - fetch chapters with progress.
        register_rest_route(
            $this->namespace,
            'get-learn-chapters',
            array(
                array(
                    'methods'             => WP_REST_Server::READABLE,
                    'callback'            => array( $this, 'get_learn_chapters' ),
                    'permission_callback' => array( $this, 'get_permissions_check' ),
                ),
            )
        );

        // POST endpoint - save progress.
        register_rest_route(
            $this->namespace,
            'update-learn-progress',
            array(
                array(
                    'methods'             => WP_REST_Server::CREATABLE,
                    'callback'            => array( $this, 'save_learn_progress' ),
                    'permission_callback' => array( $this, 'get_permissions_check' ),
                    'args'                => array(
                        'chapterId' => array(
                            'required'          => true,
                            'type'              => 'string',
                            'sanitize_callback' => 'sanitize_text_field',
                        ),
                        'stepId'    => array(
                            'required'          => true,
                            'type'              => 'string',
                            'sanitize_callback' => 'sanitize_text_field',
                        ),
                        'completed' => array(
                            'required' => true,
                            'type'     => 'boolean',
                        ),
                    ),
                ),
            )
        );
    }

    /**
	 * Get default learn chapters structure.
	 *
	 * Returns the complete structure of all available chapters and their steps.
	 * This serves as the source of truth for chapter definitions used across
	 * the theme for both frontend display and analytics validation.
	 *
	 * @return array Array of chapter objects with their steps.
	 * @since 2.8.4
	 */
	public static function get_chapters_structure() {
         // Define UAE learning chapters.
        $chapters = array(
            array(
                'id'          => 'create-header',
                'title'       => __( 'Create Your Header', 'header-footer-elementor' ),
                'description' => __( 'Build a stunning header that showcases your brand on every page.', 'header-footer-elementor' ),
                'steps'       => array(
                    array(
                        'id'          => 'setup-header',
                        'title'       => __( 'Set Up Header Under 5 Mins!', 'header-footer-elementor' ),
                        'description' => __( 'Create a branded header that appears on every page and keeps your navigation consistent.', 'header-footer-elementor' ),
                        'learn'       => array(
                            'type'    => 'dialog',
                            'content' => array(
                                'type' => 'image',
                                'data' => array(
                                    'src' => 'https://ultimateelementor.com/wp-content/uploads/2026/02/Learn-Tab-Create-Header.gif',
                                    'alt' => __( 'Add header in Elementor', 'header-footer-elementor' ),
                                ),
                            ),
                        ),
                        'action'      => array(
                            'label'      => __( 'Set Up Header', 'header-footer-elementor' ),
                            'url'        => add_query_arg( '_wpnonce', wp_create_nonce( 'hfe_learn_action' ), admin_url( 'admin-post.php?action=uae_create_header_elementor' ) ),
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                    ),

                    // STEP 2.
                    array(
                        'id'          => 'setup-display-conditions',
                        'title'       => __( 'Control Where Your Template Appears', 'header-footer-elementor' ),
                        'description' => __( 'Use Display Conditions to choose exactly where this template shows — entire site, specific pages, posts, or archives.', 'header-footer-elementor' ),
                        'learn'       => array(
                            'type'    => 'dialog',
                            'content' => array(
                                'type' => 'image',
                                'data' => array(
                                    'src' => 'https://ultimateelementor.com/wp-content/uploads/2026/02/Learn-Tab-Header-Display-Con.gif',
                                    'alt' => __( 'Add Display conditions to your header', 'header-footer-elementor' ),
                                ),
                            ),
                        ),
                        'action'      => array(
                            'label'      => __( 'Add Display Conditions', 'header-footer-elementor' ),
                            'url'        => add_query_arg( '_wpnonce', wp_create_nonce( 'hfe_learn_action' ), admin_url( 'admin-post.php?action=uae_create_header_elementor' ) ),
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                    ),


                    // STEP 3.
                    array(
                        'id'          => 'add-header-widgets',
                        'title'       => __( 'Add Your Favorite UAE Widgets and Make it Live', 'header-footer-elementor' ),
                        'description' => __( 'Include logo, menu, CTA, and contact access for a complete header.', 'header-footer-elementor' ),
                        'learn'       => array(
                            'type'    => 'dialog',
                            'content' => array(
                                'type' => 'image',
                                'data' => array(
                                    'src' => 'https://ultimateelementor.com/wp-content/uploads/2026/02/Learn-Tab-Edit-Header.gif',
                                    'alt' => __( 'Add UAE widgets to your header', 'header-footer-elementor' ),
                                ),
                            ),
                        ),
                        'action'      => array(
                            'label'      => __( 'Add Header Widgets', 'header-footer-elementor' ),
                            'url'        => add_query_arg( '_wpnonce', wp_create_nonce( 'hfe_learn_action' ), admin_url( 'admin-post.php?action=uae_edit_header_elementor' ) ),
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                    ),
                ),
            ),
            array(
                'id'          => 'create-footer',
                'title'       => __( 'Create Your Footer', 'header-footer-elementor' ),
                'description' => __( 'Design a professional footer that builds trust and improves site navigation.', 'header-footer-elementor' ),
                'steps'       => array(
                    // STEP 1.
                    array(
                        'id'          => 'setup-footer',
                        'title'       => __( 'Set Up Footer in less than 5 mins!', 'header-footer-elementor' ),
                        'description' => __( 'Add a global footer for consistent links, policies, and brand presence on every page.', 'header-footer-elementor' ),
                        'learn'       => array(
                            'type'    => 'dialog',
                            'content' => array(
                                'type' => 'image',
                                'data' => array(
                                    'src' => 'https://ultimateelementor.com/wp-content/uploads/2026/02/Learn-Tab-Create-Footer.gif',
                                    'alt' => __( 'Set Up Footer Template', 'header-footer-elementor' ),
                                ),
                            ),
                        ),
                        'action'      => array(
                            'label'      => __( 'Set Up Footer', 'header-footer-elementor' ),
                            'url'        => add_query_arg( '_wpnonce', wp_create_nonce( 'hfe_learn_action' ), admin_url( 'admin-post.php?action=uae_create_footer_elementor' ) ),
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                    ),

                    array(
                        'id'          => 'setup-display-conditions',
                        'title'       => __( 'Control Where Your Template Appears', 'header-footer-elementor' ),
                        'description' => __( 'Use Display Conditions to choose exactly where this template shows — entire site, specific pages, posts, or archives.', 'header-footer-elementor' ),
                        'learn'       => array(
                            'type'    => 'dialog',
                            'content' => array(
                                'type' => 'image',
                                'data' => array(
                                    'src' => 'https://ultimateelementor.com/wp-content/uploads/2026/02/Learn-Tab-Footer-Display-Con.gif',
                                    'alt' => __( 'Add display conditons to your footer', 'header-footer-elementor' ),
                                ),
                            ),
                        ),
                        'action'      => array(
                            'label'      => __( 'Add Display Conditions', 'header-footer-elementor' ),
                            'url'        => add_query_arg( '_wpnonce', wp_create_nonce( 'hfe_learn_action' ), admin_url( 'admin-post.php?action=uae_create_footer_elementor' ) ),
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                    ),


                    // STEP 3.
                    array(
                        'id'          => 'add-footer-widgets',
                        'title'       => __( 'Add Your Footer Widgets and Make it live.', 'header-footer-elementor' ),
                        'description' => __( 'Insert essential elements like Social Icons, Contact Info, Copyright Text, and Navigation Links for complete site credibility.', 'header-footer-elementor' ),
                        'learn'       => array(
                            'type'    => 'dialog',
                            'content' => array(
                                'type' => 'image',
                                'data' => array(
                                    'src' => 'https://ultimateelementor.com/wp-content/uploads/2026/02/Learn-Tab-Edit-Footer.gif',
                                    'alt' => __( 'Footer Widgets in Elementor', 'header-footer-elementor' ),
                                ),
                            ),
                        ),
                        'action'      => array(
                            'label'      => __( 'Add Footer Widgets', 'header-footer-elementor' ),
                            'url'        => add_query_arg( '_wpnonce', wp_create_nonce( 'hfe_learn_action' ), admin_url( 'admin-post.php?action=uae_edit_footer_elementor' ) ),
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                    ),
                ),
            ),
            array(
                'id'          => 'add-powerful-widgets',
                'title'       => __( 'Add More Powerful Widgets', 'header-footer-elementor' ),
                'description' => __( 'Supercharge your pages with UAE\'s most popular content widgets for better engagement.', 'header-footer-elementor' ),
                'steps'       => array(
                    // STEP 1.
                    array(
                        'id'          => 'add-info-card',
                        'title'       => __( 'Create Eye-Catching Info Cards', 'header-footer-elementor' ),
                        'description' => __( 'Display key features, services, or benefits with beautiful Info Card widgets that convert visitors into customers.', 'header-footer-elementor' ),
                        'learn'       => array(
                            'type'    => 'dialog',
                            'content' => array(
                                'type' => 'image',
                                'data' => array(
                                    'src' => 'https://ultimateelementor.com/wp-content/uploads/2026/02/Learn-Tab-Info-Card.gif',
                                    'alt' => __( 'Info Card Widget in Elementor', 'header-footer-elementor' ),
                                ),
                            ),
                        ),
                        'action'      => array(
                            'label'      => __( 'Add Info Card', 'header-footer-elementor' ),
                            'url'        => add_query_arg( '_wpnonce', wp_create_nonce( 'hfe_learn_action' ), admin_url( 'admin-post.php?action=uae_create_page_elementor&uae_widgets=info card' ) ),
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                    ),

                    // STEP 2.
                    array(
                        'id'          => 'add-posts-widget',
                        'title'       => __( 'Showcase Dynamic Content with Posts', 'header-footer-elementor' ),
                        'description' => __( 'Automatically display your latest blog posts, news, or updates with the Basic Posts widget for fresh, engaging content.', 'header-footer-elementor' ),
                        'learn'       => array(
                            'type'    => 'dialog',
                            'content' => array(
                                'type' => 'image',
                                'data' => array(
                                    'src' => 'https://ultimateelementor.com/wp-content/uploads/2026/02/Learn-Tab-Basic-Post.gif',
                                    'alt' => __( 'Basic Posts Widget in Elementor', 'header-footer-elementor' ),
                                ),
                            ),
                        ),
                        'action'      => array(
                            'label'      => __( 'Add Posts Widget', 'header-footer-elementor' ),
                            'url'        => add_query_arg( '_wpnonce', wp_create_nonce( 'hfe_learn_action' ), admin_url( 'admin-post.php?action=uae_create_page_elementor&uae_widgets=basic posts' ) ),
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                    ),

                ),
            ),
            array(
                'id'          => 'uae-power-extensions',
                'title'       => __( 'Power Extensions', 'header-footer-elementor' ),
                'description' => __( 'Enable time-saving features that streamline your workflow and enhance user experience.', 'header-footer-elementor' ),
                'steps'       => array(
                    // STEP 1.
                    array(
                        'id'          => 'enable-duplicator',
                        'title'       => __( 'Duplicate Pages in One Click', 'header-footer-elementor' ),
                        'description' => __( 'Save hours by cloning any page or post instantly with Post Duplicator - perfect for creating template variations.', 'header-footer-elementor' ),
                        'learn'       => array(
                            'type'    => 'dialog',
                            'content' => array(
                                'type' => 'image',
                                'data' => array(
                                    'src' => 'https://ultimateelementor.com/wp-content/uploads/2026/02/Learn-Tab-Duplicator.gif',
                                    'alt' => __( 'Post Duplicator Extension', 'header-footer-elementor' ),
                                ),
                            ),
                        ),
                        'action'      => array(
                            'label'      => __( 'Enable UAE Duplicator', 'header-footer-elementor' ),
                            'url'        => add_query_arg( '_wpnonce', wp_create_nonce( 'hfe_learn_action' ), admin_url( 'admin-post.php?action=uae_enable_duplicator' ) ),
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                    ),

                    // STEP 2.
                    array(
                        'id'          => 'enable-scroll-to-top',
                        'title'       => __( 'Add Scroll to Top Button', 'header-footer-elementor' ),
                        'description' => __( 'Improve navigation on long pages with a floating button that helps visitors jump back to the top effortlessly.', 'header-footer-elementor' ),
                        'learn'       => array(
                            'type'    => 'dialog',
                            'content' => array(
                                'type' => 'image',
                                'data' => array(
                                    'src' => 'https://ultimateelementor.com/wp-content/uploads/2026/02/Learn-Tab-Scroll-Button.gif',
                                    'alt' => __( 'Scroll To Top Setting', 'header-footer-elementor' ),
                                ),
                            ),
                        ),
                        'action'      => array(
                            'label'      => __( 'Enable Scroll Button', 'header-footer-elementor' ),
                            'url'        => add_query_arg( '_wpnonce', wp_create_nonce( 'hfe_learn_action' ), admin_url( 'admin-post.php?action=uae_open_extension&ext=scroll_to_top' ) ),
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                    ),
                    array(
                        'id'          => 'enable-reading-progres-bar',
                        'title'       => __( 'Add Reading Progress Bar', 'header-footer-elementor' ),
                        'description' => __( 'Improve navigation on long pages with a floating button that helps visitors jump back to the top effortlessly.', 'header-footer-elementor' ),
                        'learn'       => array(
                            'type'    => 'dialog',
                            'content' => array(
                                'type' => 'image',
                                'data' => array(
                                    'src' => 'https://ultimateelementor.com/wp-content/uploads/2026/02/Learn-Tab-Reading-Progress-Bar.gif',
                                    'alt' => __( 'Reading Progress Bar', 'header-footer-elementor' ),
                                ),
                            ),
                        ),
                        'action'      => array(
                            'label'      => __( 'Enable Reading Progress Bar', 'header-footer-elementor' ),
                            'url'        => add_query_arg( '_wpnonce', wp_create_nonce( 'hfe_learn_action' ), admin_url( 'admin-post.php?action=uae_open_extension&ext=reading_progress' ) ),
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                    ),

                ),
            ),
        );

        // Add Pro features chapter if not Pro.
        if ( ! defined( 'UAEL_PRO' ) ) {
            $chapters[] = array(
                'id'          => 'pro-features',
                'title'       => __( 'Pro Features', 'header-footer-elementor' ),
                'description' => __( 'Unlock advanced widgets and features with UAE Pro', 'header-footer-elementor' ),
                'steps'       => array(
                    array(
                        'id'          => 'explore-pro',
                        'title'       => __( 'Explore Pro Features', 'header-footer-elementor' ),
                        'description' => __( 'See what\'s available in the Pro version', 'header-footer-elementor' ),
                        'action'      => array(
                            'label'      => __( 'Upgrade to Pro', 'header-footer-elementor' ),
                            'url'        => 'https://ultimateelementor.com/pricing/?utm_source=hfe-learn&utm_medium=learn-tab&utm_campaign=upgrade',
                            'isExternal' => true,
                        ),
                        'completed'   => false,
                        'isPro'       => true,
                    ),
                ),
            );
        }


		/**
		 * Filter learn chapters structure.
		 *
		 * @param array $chapters Learn chapters data.
		 * @since 2.8.4
		 */
		return apply_filters( 'hfe_learn_chapters', $chapters );
	}
    
    /**
     * Get learn chapters with user progress
     *
     * Retrieves all learning chapters with user-specific progress data.
     *
     * @since 2.8.4
     * @param WP_REST_Request $request Request object.
     * @return WP_REST_Response|array
     */
    public function get_learn_chapters( $request ) {
        // Get saved progress from user meta.
        $user_id        = get_current_user_id();

        // Get chapters structure.
		$chapters = self::get_chapters_structure();

		// Get saved progress from user meta.
		$saved_progress = get_user_meta( $user_id, 'hfe_learn_progress', true );
		if ( ! is_array( $saved_progress ) ) {
			$saved_progress = array();
		}

		// Merge saved progress with chapters.
		foreach ( $chapters as &$chapter ) {
			// Validate chapter structure.
			if ( ! isset( $chapter['id'], $chapter['steps'] ) || ! is_array( $chapter['steps'] ) ) {
				continue;
			}

			$chapter_id = $chapter['id'];

			foreach ( $chapter['steps'] as &$step ) {
				if ( ! isset( $step['id'] ) ) {
					continue;
				}

				$step_id = $step['id'];
				if ( isset( $saved_progress[ $chapter_id ][ $step_id ] ) ) {
					$step['completed'] = $saved_progress[ $chapter_id ][ $step_id ];
				}
			}
		}

		return $chapters;
    }
    
    /**
     * Save learn progress
     *
     * Updates user progress for a specific learning step.
     *
     * @since 2.8.4
     * @param WP_REST_Request $request Request object.
     * @return WP_REST_Response
     */
    public function save_learn_progress( $request ) {
        $chapter_id = $request->get_param( 'chapterId' );
        $step_id    = $request->get_param( 'stepId' );
        $completed  = $request->get_param( 'completed' );

        // Get current progress.
        $user_id        = get_current_user_id();
        $saved_progress = get_user_meta( $user_id, 'hfe_learn_progress', true );
        if ( ! is_array( $saved_progress ) ) {
            $saved_progress = array();
        }

        // Initialize chapter array if it doesn't exist.
        if ( ! isset( $saved_progress[ $chapter_id ] ) || ! is_array( $saved_progress[ $chapter_id ] ) ) {
            $saved_progress[ $chapter_id ] = array();
        }

        // Update progress for this step.
        $saved_progress[ $chapter_id ][ $step_id ] = (bool) $completed;

        // Save to user meta.
        update_user_meta( $user_id, 'hfe_learn_progress', $saved_progress );

        // Track event when ALL learn chapters are fully completed.
        if ( (bool) $completed && class_exists( '\HFE_Analytics_Events' )
            && ! \HFE_Analytics_Events::is_tracked( 'learn_completed' )
        ) {
            $chapters     = self::get_chapters_structure();
            $all_complete = true;

            foreach ( $chapters as $chapter ) {
                if ( empty( $chapter['steps'] ) || ! is_array( $chapter['steps'] ) ) {
                    continue;
                }
                if ( empty( $saved_progress[ $chapter['id'] ] ) || ! is_array( $saved_progress[ $chapter['id'] ] ) ) {
                    $all_complete = false;
                    break;
                }
                foreach ( $chapter['steps'] as $step ) {
                    if ( empty( $saved_progress[ $chapter['id'] ][ $step['id'] ] ) ) {
                        $all_complete = false;
                        break 2;
                    }
                }
            }

            if ( $all_complete ) {
                $install_time       = get_option( 'uae_usage_installed_time', 0 );
                $days_since_install = 0;
                if ( $install_time > 0 ) {
                    $days_since_install = (int) floor( ( time() - (int) $install_time ) / DAY_IN_SECONDS );
                }
                \HFE_Analytics_Events::track(
                    'learn_completed',
                    (string) count( $chapters ),
                    [ 'days_since_install' => (string) $days_since_install ]
                );
            }
        }

        return new WP_REST_Response(
            array(
                'success' => true,
                'message' => __( 'Progress saved successfully.', 'header-footer-elementor' ),
            ),
            200
        );
    }
    
    /**
     * Permission check for API endpoints
     *
     * Checks if current user has permission to access learn API endpoints.
     *
     * @since 2.8.4
     * @param WP_REST_Request $request Request object.
     * @return bool|WP_Error
     */
    public function get_permissions_check( $request ) {
        if ( ! current_user_can( 'manage_options' ) ) {
            return new WP_Error(
                'rest_cannot_view',
                __( 'Sorry, you cannot access this resource.', 'header-footer-elementor' ),
                array( 'status' => rest_authorization_required_code() )
            );
        }
        return true;
    }
}

// Initialize the API
new HFE_Learn_API();
PK���\i�����inc/settings/settings-app.phpnu�[���<?php
/**
 * Single page settings page
 *
 * @package HeaderFooterElementor
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>

<div id="hfe-settings-app" class="hfe-settings-app">

</div>
PK���\dd��R R !inc/settings/hfe-settings-api.phpnu�[���<?php
/**
 * HFE Settings API.
 *
 * @package HFE
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use HFE\WidgetsManager\Base\HFE_Helper;

/**
 * Class HFE_Settings_Api.
 */
class HFE_Settings_Api {

	/**
	 * Instance.
	 *
	 * @access private
	 * @var object Class object.
	 * @since 2.2.1
	 */
	private static $instance;

	/**
	 * Get the singleton instance of the class.
	 *
	 * @return HFE_Settings_Api
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Initialize hooks.
	 *
	 * @since 2.2.1
	 * @return void
	 */
	private function __construct() {
		// Log an error message to check if the file is loading.

		add_action( 'rest_api_init', [ $this, 'register_routes' ] );
	}

	/**
	 * Register REST API routes.
	 *
	 * @since 2.2.1
	 * @return void
	 */
	public function register_routes() {

		register_rest_route(
			'hfe/v1',
			'/widgets',
			[
				'methods'             => 'GET',
				'callback'            => [ $this, 'get_hfe_widgets' ],
				'permission_callback' => [ $this, 'get_items_permissions_check' ],
			]
		);

		register_rest_route(
			'hfe/v1',
			'/plugins',
			[
				'methods'             => 'GET',
				'callback'            => [ $this, 'get_plugins_list' ],
				'permission_callback' => [ $this, 'get_items_permissions_check' ],
			]
		);

		register_rest_route(
			'hfe/v1',
			'/templates',
			[
				'methods'             => 'GET',
				'callback'            => [ $this, 'get_templates_status' ],
				'permission_callback' => [ $this, 'get_items_permissions_check' ],
			]
		);

		register_rest_route(
			'hfe/v1',
			'/email-webhook',
			[
				'methods'             => 'POST',
				'callback'            => [ $this, 'send_email_to_webhook_api' ],
				'permission_callback' => [ $this, 'get_items_permissions_check' ],
			]
		);

		register_rest_route(
			'hfe/v1',
			'/recommended-plugins',
			[
				'methods'             => 'GET',
				'callback'            => [ $this, 'get_recommended_plugins_list' ],
				'permission_callback' => [ $this, 'get_items_permissions_check' ],
			]
		);
	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @since 2.2.1
	 * @return WP_Error|boolean
	 */
	public function get_items_permissions_check() {

		if ( ! current_user_can( 'manage_options' ) ) {
			return new \WP_Error( 'uae_rest_not_allowed', __( 'Sorry, you are not authorized to perform this action.', 'header-footer-elementor' ), [ 'status' => 403 ] );
		}

		return true;
	}

	/**
	 * Get Starter Templates Status.
	 * 
	 * @param WP_REST_Request $request Request object.
	 */
	public function get_templates_status( WP_REST_Request $request ) {
		$nonce = $request->get_header( 'X-WP-Nonce' );

		if ( ! wp_verify_nonce( $nonce, 'wp_rest' ) ) {
			return new WP_Error( 'invalid_nonce', __( 'Invalid nonce', 'header-footer-elementor' ), [ 'status' => 403 ] );
		}

		$templates_status = HFE_Helper::starter_templates_status();

		$response_data = [
			'templates_status' => $templates_status,
		];
	
		if ( 'Activated' === $templates_status ) {
			$response_data['redirect_url'] = HFE_Helper::starter_templates_link();
		}

		return new WP_REST_Response( $response_data, 200 );
	}

	/**
	 * Callback function to return plugins list.
	 *
	 * @param WP_REST_Request $request Request object.
	 * @return WP_REST_Response
	 */
	public function get_plugins_list( $request ) {

		$nonce = $request->get_header( 'X-WP-Nonce' );

		if ( ! wp_verify_nonce( $nonce, 'wp_rest' ) ) {
			return new WP_Error( 'invalid_nonce', __( 'Invalid nonce', 'header-footer-elementor' ), [ 'status' => 403 ] );
		}

		// Fetch branding settings.
		$plugins_list = HFE_Helper::get_bsf_plugins_list();

		if ( ! is_array( $plugins_list ) ) {
			return new WP_REST_Response( [ 'message' => __( 'Plugins list not found', 'header-footer-elementor' ) ], 404 );
		}

		return new WP_REST_Response( $plugins_list, 200 );
		
	}

	/**
	 * 
	 * Callback function to return recommended plugins list.
	 * 
	 * @param WP_REST_Request $request Request object.
	 *
	 * @return WP_REST_Response
	 */
	public function get_recommended_plugins_list( $request ) {

		$nonce = $request->get_header( 'X-WP-Nonce' );

		if ( ! wp_verify_nonce( $nonce, 'wp_rest' ) ) {
			return new WP_Error( 'invalid_nonce', __( 'Invalid nonce', 'header-footer-elementor' ), [ 'status' => 403 ] );
		}

		// Fetch recommended plugins list.
		$recommended_plugins_list = HFE_Helper::get_recommended_bsf_plugins_list();

		if ( ! is_array( $recommended_plugins_list ) ) {
			return new WP_REST_Response( [ 'message' => __( 'Recommended plugins list not found', 'header-footer-elementor' ) ], 404 );
		}

		return new WP_REST_Response( $recommended_plugins_list, 200 );
		
	}

	/**
	 * 
	 * Callback function to return widgets list.
	 * 
	 * @param WP_REST_Request $request Request object.
	 *
	 * @return WP_REST_Response
	 */
	public function get_hfe_widgets( $request ) {

		$nonce = $request->get_header( 'X-WP-Nonce' );

		if ( ! wp_verify_nonce( $nonce, 'wp_rest' ) ) {
			return new WP_Error( 'invalid_nonce', __( 'Invalid nonce', 'header-footer-elementor' ), [ 'status' => 403 ] );
		}

		// Fetch widgets settings.
		$widgets_list = HFE_Helper::get_all_widgets_list();

		if ( ! is_array( $widgets_list ) ) {
			return new WP_REST_Response( [ 'message' => __( 'Widgets list not found', 'header-footer-elementor' ) ], 404 );
		}

		return new WP_REST_Response( $widgets_list, 200 );
		
	}

	/**
	 * Get the API URL.
	 *
	 * @since 2.3.1
	 * @return string
	 */
	public function get_api_domain() {
		return apply_filters( 'hfe_api_domain', 'https://websitedemos.net/' );
	}

	/**
	 * Send Email to Webhook.
	 * @param WP_REST_Request $request Request object.
	 * 
	 */
	public function send_email_to_webhook_api( WP_REST_Request $request ) {
		$nonce = $request->get_header( 'X-WP-Nonce' );
		if ( ! wp_verify_nonce( $nonce, 'wp_rest' ) ) {
			return new WP_Error( 'invalid_nonce', __( 'Invalid nonce', 'header-footer-elementor' ), [ 'status' => 403 ] );
		}

		$email = sanitize_email( $request->get_param( 'email' ) );
		$date  = sanitize_text_field( $request->get_param( 'date' ) );
		$fname  = sanitize_text_field( $request->get_param( 'fname' ) );
		$lname  = sanitize_text_field( $request->get_param( 'lname' ) );
		$isActive = sanitize_text_field( $request->get_param( 'isActive' ) );
		$domain = sanitize_text_field( $request->get_param( 'domain' ) );

		if ( ! empty( $domain ) && false === filter_var( $domain, FILTER_VALIDATE_URL ) ) {
			return new WP_Error( 'invalid_domain', __( 'Invalid domain provided.', 'header-footer-elementor' ), [ 'status' => 400 ] );
		}
		
		$api_domain = trailingslashit( $this->get_api_domain() );
		$api_domain_url = $api_domain . 'wp-json/uaelite/v1/subscribe/';
		$validation_url = esc_url_raw( get_site_url() . '/wp-json/hfe/v1/email-response/' );

		// Append session_id to track requests.
		$body = array(
			'email'          => $email,
			'date'           => $date,
			'fname'          => $fname,
			'lname'          => $lname,
			'isActive'       => $isActive,
			'domain'         => $domain
		);

		$args = array(
			'body'    => $body,
			'timeout' => 30,
		);

		$response = wp_remote_post( $api_domain_url, $args );

		if ( is_wp_error( $response ) ) {
			return new WP_Error( 'webhook_error', __( 'Error calling endpoint', 'header-footer-elementor' ), [ 'status' => 500 ] );
		}

		$response_code = wp_remote_retrieve_response_code( $response );
		$response_body = json_decode( wp_remote_retrieve_body( $response ), true );

		if ( ! in_array( $response_code, [ 200, 201, 204 ], true ) ) {
			error_log( 'HFE webhook API error: ' . ( isset( $response_body['message'] ) ? sanitize_text_field( $response_body['message'] ) : 'Unknown error' ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
			return new WP_Error( 'webhook_error', __( 'Failed to send email. Please try again later.', 'header-footer-elementor' ), [ 'status' => $response_code ] );
		}

		update_option( 'uaelite_subscription', 'done' );

		return new WP_REST_Response(
			[
				'message'    => 'success'
			],
			200
		);
	}
	
}

// Initialize the HFE_Settings_Api class.
HFE_Settings_Api::get_instance();
PK���\�L�_{{inc/settings/admin-base.phpnu�[���<?php
/**
 * Admin Base HTML.
 *
 * @package header-footer-elementor
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>
<div class="hfe-menu-page-wrapper">
	<div id="hfe-menu-page">
		<div class="hfe-menu-page-content hfe-clear">
			<?php
				do_action( 'hfe_render_admin_page_content', $menu_page_slug, $page_action );
			?>
		</div>
	</div>
</div>
PK���\�pM��2inc/compatibility/class-hfe-wpml-compatibility.phpnu�[���<?php
/**
 * WPML Compatibility for Header Footer Elementor.
 *
 * @package     HFE
 * @author      HFE
 * @copyright   Copyright (c) 2018, HFE
 * @link        http://brainstormforce.com/
 * @since       HFE 1.0.9
 */

defined( 'ABSPATH' ) || exit;

/**
 * Set up WPML Compatibiblity Class.
 */
class HFE_WPML_Compatibility {

	/**
	 * Instance of HFE_WPML_Compatibility.
	 *
	 * @since  1.0.9
	 * @var null
	 */
	private static $_instance = null;

	/**
	 * Get instance of HFE_WPML_Compatibility
	 *
	 * @since  1.0.9
	 * @return HFE_WPML_Compatibility
	 */
	public static function instance() {
		if ( ! isset( self::$_instance ) ) {
			self::$_instance = new self();
		}

		return self::$_instance;
	}

	/**
	 * Setup actions and filters.
	 *
	 * @since  1.0.9
	 */
	private function __construct() {
		add_filter( 'hfe_get_settings_type_header', [ $this, 'get_wpml_object' ] );
		add_filter( 'hfe_get_settings_type_footer', [ $this, 'get_wpml_object' ] );
		add_filter( 'hfe_get_settings_type_before_footer', [ $this, 'get_wpml_object' ] );
		add_filter( 'hfe_render_template_id', [ $this, 'get_wpml_object' ] );
	}

	/**
	 * Pass the final header and footer ID from the WPML's object filter to allow strings to be translated.
	 *
	 * @since  1.0.9
	 * @param  Int $id  Post ID of the template being rendered.
	 * @return Int $id  Post ID of the template being rendered, Passed through the `wpml_object_id` id.
	 */
	public function get_wpml_object( $id ) {
		$translated_id = apply_filters( 'wpml_object_id', $id );

		if ( defined( 'POLYLANG_BASENAME' ) ) {

			if ( null === $translated_id ) {

				// The current language is not defined yet or translation is not available.
				return $id;
			} else {

				// Return translated post ID.
				return $translated_id;
			}
		}

		if ( null === $translated_id ) {
			$translated_id = '';
		}

		return $translated_id;
	}
}

/**
 * Initiate the class.
 */
HFE_WPML_Compatibility::instance();
PK���\��$$"inc/class-hfe-analytics-events.phpnu�[���<?php
/**
 * HFE Analytics Events — thin static wrapper around BSF_Analytics_Events.
 *
 * Delegates to the shared library class while preserving HFE's existing
 * option keys (`hfe_usage_events_pending`, `hfe_usage_events_pushed`)
 * via the library's custom option resolver. This keeps all call sites
 * unchanged and avoids any data migration.
 *
 * @package header-footer-elementor
 * @since 2.8.6
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'HFE_Analytics_Events' ) ) {

	/**
	 * HFE Analytics Events Class.
	 *
	 * @since 2.8.6
	 */
	class HFE_Analytics_Events {

		/**
		 * Cached BSF_Analytics_Events instance.
		 *
		 * @var \BSF_Analytics_Events|null
		 */
		private static $instance = null;

		/**
		 * Get the underlying BSF_Analytics_Events instance with HFE's option resolver.
		 *
		 * Resolver maps library keys (`usage_events_pending`, `usage_events_pushed`)
		 * to HFE's existing option names (`hfe_usage_events_pending`, `hfe_usage_events_pushed`).
		 * The pushed dedup flag is autoloaded since it's read on every admin page load.
		 *
		 * @return \BSF_Analytics_Events|null Instance, or null if library is unavailable.
		 */
		private static function instance() {
			if ( null !== self::$instance ) {
				return self::$instance;
			}

			if ( ! class_exists( 'BSF_Analytics_Events' ) ) {
				$lib_path = defined( 'HFE_DIR' ) ? HFE_DIR . 'admin/bsf-analytics/class-bsf-analytics-events.php' : '';
				if ( '' !== $lib_path && file_exists( $lib_path ) ) {
					require_once $lib_path;
				}
			}

			if ( ! class_exists( 'BSF_Analytics_Events' ) ) {
				return null;
			}

			self::$instance = new \BSF_Analytics_Events(
				'hfe',
				[
					'get'    => static function ( $key, $default ) {
						return get_option( 'hfe_' . $key, $default );
					},
					'update' => static function ( $key, $value ) {
						$autoload = ( 'usage_events_pushed' === $key );
						update_option( 'hfe_' . $key, $value, $autoload );
					},
				]
			);

			return self::$instance;
		}

		/**
		 * Track an event. See BSF_Analytics_Events::track() for behavior.
		 *
		 * @param string $event_name  Event identifier.
		 * @param string $event_value Primary value (version, mode, etc.).
		 * @param array  $properties  Additional context as key-value pairs.
		 * @param bool   $force       When true, bypass pushed dedup and overwrite pending entry.
		 * @since 2.8.6
		 * @since 2.8.7 Added the $force parameter.
		 * @return void
		 */
		public static function track( $event_name, $event_value = '', $properties = [], $force = false ) {
			$events = self::instance();
			if ( null === $events ) {
				return;
			}
			$events->track( $event_name, $event_value, $properties, $force );
		}

		/**
		 * Flush pending events into payload, then clean up.
		 *
		 * @since 2.8.6
		 * @return array Pending events. Empty array if none or library unavailable.
		 */
		public static function flush_pending() {
			$events = self::instance();
			if ( null === $events ) {
				return [];
			}
			return $events->flush_pending();
		}

		/**
		 * Check if an event has already been tracked (sent or pending).
		 *
		 * @param string $event_name Event identifier.
		 * @since 2.8.6
		 * @return bool
		 */
		public static function is_tracked( $event_name ) {
			$events = self::instance();
			if ( null === $events ) {
				return false;
			}
			return $events->is_tracked( $event_name );
		}

		/**
		 * Remove specific event names from the pushed dedup flag, allowing them to be re-tracked.
		 * Empty array clears all pushed events.
		 *
		 * @param array<string> $event_names Event names to remove.
		 * @since 2.8.7
		 * @return void
		 */
		public static function flush_pushed( $event_names = [] ) {
			$events = self::instance();
			if ( null === $events ) {
				return;
			}
			$events->flush_pushed( $event_names );
		}
	}
}
PK���\E�*�>e>e%inc/class-header-footer-elementor.phpnu�[���<?php
/**
 * Entry point for the plugin. Checks if Elementor is installed and activated and loads it's own files and actions.
 *
 * @package header-footer-elementor
 */

defined( 'ABSPATH' ) || exit;

use HFE\Lib\Astra_Target_Rules_Fields;

/**
 * Class Header_Footer_Elementor
 */
class Header_Footer_Elementor {

	/**
	 * Current theme template
	 *
	 * @var string
	 */
	public $template;

	/**
	 * Instance of Elemenntor Frontend class.
	 *
	 * @var object \Elementor\Frontend()
	 */
	private static $elementor_instance;

	/**
	 * Instance of HFE_Admin
	 *
	 * @var Header_Footer_Elementor
	 */
	private static $_instance = null;

	/**
	 * Instance of Header_Footer_Elementor
	 *
	 * @return Header_Footer_Elementor Instance of Header_Footer_Elementor
	 */
	public static function instance() {
		if ( ! isset( self::$_instance ) ) {
			self::$_instance = new self();
		}

		return self::$_instance;
	}
	/**
	 * Constructor
	 */
	public function __construct() {
		$this->template = get_template();

		$is_elementor_callable = ( defined( 'ELEMENTOR_VERSION' ) && is_callable( 'Elementor\Plugin::instance' ) ) ? true : false;

		$required_elementor_version = '3.5.0';

		$is_elementor_outdated = ( $is_elementor_callable && ( ! version_compare( ELEMENTOR_VERSION, $required_elementor_version, '>=' ) ) ) ? true : false;

		if ( ( ! $is_elementor_callable ) || $is_elementor_outdated ) {
			$this->elementor_not_available( $is_elementor_callable, $is_elementor_outdated );
		}

		if ( $is_elementor_callable ) {
			self::$elementor_instance = Elementor\Plugin::instance();

			$this->includes();
			
			add_action( 'admin_init', [ $this, 'hfe_redirect_to_onboarding' ] );
			
			add_action( 'init', [ $this, 'load_hfe_textdomain' ] );

			add_filter(
				'elementor/admin-top-bar/is-active',
				function( $is_active, $current_screen ) {
					if ( strpos( $current_screen->id, 'elementor-hf' ) !== false ) {
						return false;
					}
					return $is_active;
				},
				10,
				2
			);
			

			add_action(
				'current_screen',
				function () {
					$current_screen = get_current_screen();
					if ( $current_screen && ( 'edit-elementor-hf' === $current_screen->id || 'elementor-hf' === $current_screen->id ) ) {
						add_action(
							'in_admin_header',
							function () {
								$this->render_admin_top_bar();
							} 
						);
					}
				} 
			);

			$is_theme_supported = true;

			if ( 'genesis' == $this->template ) {
				require HFE_DIR . 'themes/genesis/class-hfe-genesis-compat.php';
			} elseif ( 'astra' == $this->template ) {
				require HFE_DIR . 'themes/astra/class-hfe-astra-compat.php';
			} elseif ( 'bb-theme' == $this->template || 'beaver-builder-theme' == $this->template ) {
				$this->template = 'beaver-builder-theme';
				require HFE_DIR . 'themes/bb-theme/class-hfe-bb-theme-compat.php';
			} elseif ( 'generatepress' == $this->template ) {
				require HFE_DIR . 'themes/generatepress/class-hfe-generatepress-compat.php';
			} elseif ( 'oceanwp' == $this->template ) {
				require HFE_DIR . 'themes/oceanwp/class-hfe-oceanwp-compat.php';
			} elseif ( 'storefront' == $this->template ) {
				require HFE_DIR . 'themes/storefront/class-hfe-storefront-compat.php';
			} elseif ( 'hello-elementor' == $this->template ) {
				require HFE_DIR . 'themes/hello-elementor/class-hfe-hello-elementor-compat.php';
			} elseif ( 'kadence' == $this->template ) {
				require HFE_DIR . 'themes/kadence/class-hfe-kadence-compat.php';
			} elseif ( 'neve' == $this->template ) {
				require HFE_DIR . 'themes/neve/class-hfe-neve-compat.php';
			} elseif ( 'blocksy' == $this->template ) {
				require HFE_DIR . 'themes/blocksy/class-hfe-blocksy-compat.php';
			} else {
				$is_theme_supported = false;
				add_filter( 'hfe_settings_tabs', [ $this, 'setup_unsupported_theme' ] );
				add_action( 'init', [ $this, 'setup_fallback_support' ] );
			}

			update_option( 'hfe_is_theme_supported', $is_theme_supported );
			
			add_action( 'init', [ $this, 'setup_settings_page' ] );

			if ( 'yes' === get_option( 'uae_lite_is_activated' ) ) {
				add_action( 'admin_init', [ $this, 'get_plugin_version' ] );
			}

			// Filter to change Astra menu positon.
			add_filter( 'astra_menu_priority', [ $this, 'update_admin_menu_position' ] );
			// Scripts and styles.
			add_action( 'wp_enqueue_scripts', [ $this, 'enqueue_scripts' ] );

			add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_admin_scripts' ] );

			add_filter( 'body_class', [ $this, 'body_class' ] );
			add_action( 'switch_theme', [ $this, 'reset_unsupported_theme_notice' ] );

			add_shortcode( 'hfe_template', [ $this, 'render_template' ] );


			// Add Elementor preview notice
			add_action( 'wp_footer', [ $this, 'elementor_preview_notice' ] );

			require_once HFE_DIR . 'inc/class-hfe-analytics.php';
				 
		}
	}

	/**
	 * Update Astra's menu priority to show after Dashboard menu.
	 *
	 * @param int $menu_priority top level menu priority.
	 */
	public function update_admin_menu_position( $menu_priority ) {
		return 2.1;
	}

	/**
	 * Onboarding redirect function.
	 */
	public function hfe_redirect_to_onboarding() {
		if ( ! get_option( 'hfe_start_onboarding', false ) ) {
			return;
		}

		$is_old_user             = ( 'yes' === get_option( 'hfe_plugin_is_activated' ) ) ? true : false;
		$is_onboarding_triggered = ( 'yes' === get_option( 'hfe_onboarding_triggered' ) ) ? true : false;
		$is_uaepro_active        = ( defined( 'UAEL_PRO' ) && UAEL_PRO ) ? true : false;

		// IMPORTANT: Comment out this code before release - Show onboarding only for new users only once.
		if ( $is_old_user || $is_onboarding_triggered || $is_uaepro_active ) {
			return;
		}

		delete_option( 'hfe_start_onboarding' );

		if ( ! defined( 'WP_CLI' ) || ! WP_CLI ) {
			update_option( 'hfe_onboarding_triggered', 'yes' );
			wp_safe_redirect( admin_url( 'admin.php?page=hfe#onboarding' ) );
			exit();
		}
	}
	
	/*
	 * Render admin top bar
	 */
	private function render_admin_top_bar() {
		?>
		<div id="hfe-admin-top-bar-root">
		</div>
		<?php
	}

	/**
	 * Reset the Unsupported theme nnotice after a theme is switched.
	 *
	 * @since 1.0.16
	 *
	 * @return void
	 */
	public function reset_unsupported_theme_notice() {
		delete_user_meta( get_current_user_id(), 'unsupported-theme' );
	}

	/**
	 * Display Elementor preview notice in footer when in preview mode.
	 *
	 * @since 2.4.9
	 * @return void
	 */
	public function elementor_preview_notice() {
		// Show notice only for page post type in preview mode
		if ( ! $this->should_show_preview_notice() ) {
			return;
		}

		wp_enqueue_style( 'hfe-promo-notice', HFE_URL . 'assets/css/hfe-promo-notice.css', [], HFE_VER );
		wp_enqueue_script( 'hfe-promo-notice', HFE_URL . 'assets/js/hfe-promo-notice.js', [], HFE_VER, true );

		?>
			<div id="hfe-promo-notice" class="hfe-promo-notice">
				<div class="hfe-promo-notice-container">
					<div class="hfe-promo-notice-content">
						<div class="hfe-promo-notice-text">
							<div class="hfe-promo-notice-description">Psst… want to save hours? Get 300+ professionally built templates.</div>
						</div>
						<a href="https://ultimateelementor.com/pricing/?utm_source=preview&utm_medium=notice&utm_campaign=uae-lite"
						   target="_blank"
						   class="hfe-promo-notice-cta">
							Unlock Now
						</a>
					</div>
					<button class="hfe-promo-notice-close" onclick="hfePromoNotice.dismiss()">&times;</button>
				</div>
			</div>
			<?php
	}

	/**
	 * Check if preview notice should be shown for page post type only.
	 *
	 * @since 2.4.9
	 * @return bool
	 */
	private function should_show_preview_notice() {
		// Don't show if UAE Pro is already installed/activated
		if ( is_plugin_active( 'ultimate-elementor/ultimate-elementor.php' ) || 
			file_exists( WP_PLUGIN_DIR . '/ultimate-elementor/ultimate-elementor.php' ) ) {
			return false;
		}

		// Basic preview check
		if ( ! isset( $_GET['preview'] ) || sanitize_text_field( wp_unslash( $_GET['preview'] ) ) !== 'true' ) {
			return false;
		}

		// Must have preview_id
		if ( ! isset( $_GET['preview_id'] ) ) {
			return false;
		}

		$preview_id = intval( sanitize_text_field( wp_unslash( $_GET['preview_id'] ) ) );

		// Verify preview nonce for security.
		if ( ! isset( $_GET['preview_nonce'] ) ) {
			return false;
		}

		$preview_nonce = sanitize_text_field( wp_unslash( $_GET['preview_nonce'] ) );
		if ( ! wp_verify_nonce( $preview_nonce, 'post_preview_' . $preview_id ) ) {
			return false;
		}

		// Check if it's a page post type (not header/footer templates)
		$post_type = get_post_type( $preview_id );
		if ( $post_type !== 'page' ) {
			return false;
		}

		// Exclude header/footer templates from UAE
		$template_type = get_post_meta( $preview_id, 'ehf_template_type', true );
		if ( ! empty( $template_type ) ) {
			return false; // This is a header/footer template, don't show notice
		}

		// Optional: Check if page uses Elementor
		if ( ! $this->is_elementor_page( $preview_id ) ) {
			return false;
		}

		// Optional: Allow filtering for custom conditions
		return apply_filters( 'hfe_show_preview_notice', true, $preview_id );
	}

	/**
	 * Check if the page is built with Elementor.
	 *
	 * @since 2.4.9
	 * @param int $post_id Post ID to check.
	 * @return bool
	 */
	private function is_elementor_page( $post_id ) {
		if ( ! class_exists( '\Elementor\Plugin' ) ) {
			return false;
		}

		$elementor_data = get_post_meta( $post_id, '_elementor_data', true );
		return ! empty( $elementor_data );
	}

	/**
	 * Prints the admin notics when Elementor is not installed or activated or version outdated.
	 *
	 * @since 1.5.9
	 * @param  boolean $is_elementor_callable specifies if elementor is available.
	 * @param  boolean $is_elementor_outdated specifies if elementor version is old.
	 * @return void
	 */
	public function elementor_not_available( $is_elementor_callable, $is_elementor_outdated ) {

		if ( ( ! did_action( 'elementor/loaded' ) ) || ( ! $is_elementor_callable ) ) {
			add_action( 'admin_notices', [ $this, 'elementor_not_installed_activated' ] );
			add_action( 'network_admin_notices', [ $this, 'elementor_not_installed_activated' ] );
			return;
		}

		if ( $is_elementor_outdated ) {
			add_action( 'admin_notices', [ $this, 'elementor_outdated' ] );
			add_action( 'network_admin_notices', [ $this, 'elementor_outdated' ] );
			return;
		}
	}

	/**
	 * Prints the admin notics when Elementor is not installed or activated.
	 *
	 * @return void
	 */
	public function elementor_not_installed_activated() {

		$screen = get_current_screen();
		if ( isset( $screen->parent_file ) && 'plugins.php' === $screen->parent_file && 'update' === $screen->id ) {
			return;
		}

		if ( ! did_action( 'elementor/loaded' ) ) {
			// Check user capability.
			if ( ! ( current_user_can( 'activate_plugins' ) && current_user_can( 'install_plugins' ) ) ) {
				return;
			}

			/* TO DO */
			$class = 'notice notice-error';
			/* translators: %s: html tags */
			$message = sprintf( __( 'The %1$sUltimate Addons for Elementor%2$s plugin requires %1$sElementor%2$s plugin installed & activated.', 'header-footer-elementor' ), '<strong>', '</strong>' );

			$plugin = 'elementor/elementor.php';

			if ( _is_elementor_installed() ) {

				$action_url   = wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $plugin . '&amp;plugin_status=all&amp;paged=1&amp;s', 'activate-plugin_' . $plugin );
				$button_label = __( 'Activate Elementor', 'header-footer-elementor' );

			} else {

				$action_url   = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
				$button_label = __( 'Install Elementor', 'header-footer-elementor' );
			}

			$button = '<p><a href="' . esc_url( $action_url ) . '" class="button-primary">' . esc_html( $button_label ) . '</a></p><p></p>';

			printf( '<div class="%1$s"><p>%2$s</p>%3$s</div>', esc_attr( $class ), wp_kses_post( $message ), wp_kses_post( $button ) );
		}
	}

	/**
	 * Prints the admin notics when Elementor version is outdated.
	 *
	 * @return void
	 */
	public function elementor_outdated() {

		// Check user capability.
		if ( ! ( current_user_can( 'activate_plugins' ) && current_user_can( 'install_plugins' ) ) ) {
			return;
		}

		/* TO DO */
		$class = 'notice notice-error';
		/* translators: %s: html tags */
		$message = sprintf( __( 'The %1$sUltimate Addons for Elementor%2$s plugin has stopped working because you are using an older version of %1$sElementor%2$s plugin.', 'header-footer-elementor' ), '<strong>', '</strong>' );

		$plugin = 'elementor/elementor.php';

		if ( file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' ) ) {

			$action_url   = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&amp;plugin=' ) . $plugin . '&amp;', 'upgrade-plugin_' . $plugin );
			$button_label = __( 'Update Elementor', 'header-footer-elementor' );

		} else {

			$action_url   = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
			$button_label = __( 'Install Elementor', 'header-footer-elementor' );
		}

		$button = '<p><a href="' . esc_url( $action_url ) . '" class="button-primary">' . esc_html( $button_label ) . '</a></p><p></p>';

		printf( '<div class="%1$s"><p>%2$s</p>%3$s</div>', esc_attr( $class ), wp_kses_post( $message ), wp_kses_post( $button ) );
	}

	/**
	 * Plugin version tracking.
	 *
	 * @return void
	 */
	public function get_plugin_version() {

		$hfe_old_version = get_option( 'hfe_plugin_version' );
		$old_version     = $hfe_old_version ? $hfe_old_version : HFE_VER;
		$new_version     = HFE_VER;

		if ( ! $hfe_old_version || ( $old_version !== $new_version ) ) {
			// Store previous version.
			update_option( 'hfe_plugin_previous_version', $old_version );
			update_option( 'hfe_plugin_version', $new_version );
		}
	}

	/**
	 * Loads the globally required files for the plugin.
	 *
	 * @return void
	 */
	public function includes() {
		require_once HFE_DIR . 'admin/class-hfe-admin.php';

		require_once HFE_DIR . 'inc/hfe-functions.php';
		require_once HFE_DIR . 'inc/class-hfe-rollback.php';
		// Load Post Duplicator if enabled
		if ( function_exists( 'get_option' ) ) {
			$widgets = get_option( '_hfe_widgets', array() );
			if ( isset( $widgets['Post_Duplicator'] ) && 'disabled' !== $widgets['Post_Duplicator'] ) {
				require_once HFE_DIR . 'inc/class-hfe-post-duplicator.php';
			}
		}

		// Load Elementor Canvas Compatibility.
		require_once HFE_DIR . 'inc/class-hfe-elementor-canvas-compat.php';

		// Load WPML & Polylang Compatibility if WPML is installed and activated.
		if ( defined( 'ICL_SITEPRESS_VERSION' ) || defined( 'POLYLANG_BASENAME' ) ) {
			require_once HFE_DIR . 'inc/compatibility/class-hfe-wpml-compatibility.php';
		}

		// Load the Admin Notice Class.
		require_once HFE_DIR . 'inc/lib/astra-notices/class-astra-notices.php';

		// Load Target rules.
		require_once HFE_DIR . 'inc/lib/target-rule/class-astra-target-rules-fields.php';
		// Setup upgrade routines.
		require_once HFE_DIR . 'inc/class-hfe-update.php';

		// Load the widgets.
		require HFE_DIR . 'inc/widgets-manager/class-widgets-loader.php';

		// Load the extensions.
		require HFE_DIR . 'inc/widgets-manager/class-extensions-loader.php';

		require_once HFE_DIR . 'inc/settings/hfe-settings-api.php';

		// Load the NPS Survey library.
		if ( ! class_exists( 'Uae_Nps_Survey' ) ) {
			require_once HFE_DIR . 'inc/lib/class-uae-nps-survey.php';
		}

		// Load the Promotion system for Ultimate Elementor
		if ( ! class_exists( 'HFE_Promotion' ) ) {
			require_once HFE_DIR . 'inc/class-hfe-promotion.php';
		}
		
		// Load the Learn API
		require_once HFE_DIR . 'inc/class-hfe-learn-api.php';
	}

	/**
	 * Loads textdomain for the plugin.
	 *
	 * @return void
	 */
	public function load_hfe_textdomain() {
	
		// Default languages directory for "header-footer-elementor".
		$lang_dir = HFE_DIR . 'languages/';
	
		/**
		 * Filters the languages directory path to use for AffiliateWP.
		 *
		 * @param string $lang_dir The languages directory path.
		 */
		$lang_dir = apply_filters( 'hfe_languages_directory', $lang_dir );
	
		// Traditional WordPress plugin locale filter.
		global $wp_version;
	
		$get_locale = get_locale();
	
		if ( $wp_version >= 4.7 ) {
			$get_locale = get_user_locale();
		}
	
		/**
		 * Language Locale for Ultimate Elementor
		 *
		 * @var $get_locale The locale to use. Uses get_user_locale()` in WordPress 4.7 or greater,
		 *                  otherwise uses `get_locale()`.
		 */
		$locale = apply_filters( 'plugin_locale', $get_locale, 'header-footer-elementor' );
		$mofile = sprintf( '%1$s-%2$s.mo', 'header-footer-elementor', $locale );
	
		// Setup paths to current locale file.
		$mofile_local  = $lang_dir . $mofile;
		$mofile_global = WP_LANG_DIR . '/header-footer-elementor/' . $mofile;
	
		if ( file_exists( $mofile_global ) ) {
			// Look in global /wp-content/languages/header-footer-elementor/ folder.
			load_textdomain( 'header-footer-elementor', $mofile_global );
		} elseif ( file_exists( $mofile_local ) ) {
			// Look in local /wp-content/plugins/header-footer-elementor/languages/ folder.
			load_textdomain( 'header-footer-elementor', $mofile_local );
		} else {
			// Load the default language files.
			load_plugin_textdomain( 'header-footer-elementor', false, $lang_dir );
		}
	}

	/**
	 * Enqueue styles and scripts.
	 *
	 * @return void
	 */
	public function enqueue_scripts() {
		wp_enqueue_style( 'hfe-style', HFE_URL . 'assets/css/header-footer-elementor.css', [], HFE_VER );

		if ( class_exists( '\Elementor\Plugin' ) ) {
			$elementor = \Elementor\Plugin::instance();
			if ( method_exists( $elementor->frontend, 'enqueue_styles' ) ) {
				$elementor->frontend->enqueue_styles();
			}
		}

		if ( class_exists( '\ElementorPro\Plugin' ) ) {
			$elementor_pro = \ElementorPro\Plugin::instance();
			if ( method_exists( $elementor_pro, 'enqueue_styles' ) ) {
				$elementor_pro->enqueue_styles();
			}
		}

		if ( hfe_header_enabled() ) {
			if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
				$css_file = new \Elementor\Core\Files\CSS\Post( get_hfe_header_id() );
			} elseif ( class_exists( '\Elementor\Post_CSS_File' ) ) {
				$css_file = new \Elementor\Post_CSS_File( get_hfe_header_id() );
			}

			if ( isset( $css_file ) ) {
				$css_file->enqueue();
			}
		}

		if ( hfe_footer_enabled() ) {
			if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
				$css_file = new \Elementor\Core\Files\CSS\Post( get_hfe_footer_id() );
			} elseif ( class_exists( '\Elementor\Post_CSS_File' ) ) {
				$css_file = new \Elementor\Post_CSS_File( get_hfe_footer_id() );
			}

			if ( isset( $css_file ) ) {
				$css_file->enqueue();
			}
		}

		if ( hfe_is_before_footer_enabled() ) {
			if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
				$css_file = new \Elementor\Core\Files\CSS\Post( hfe_get_before_footer_id() );
			} elseif ( class_exists( '\Elementor\Post_CSS_File' ) ) {
				$css_file = new \Elementor\Post_CSS_File( hfe_get_before_footer_id() );
			}
			if ( isset( $css_file ) ) {
				$css_file->enqueue();
			}
		}
	}

	/**
	 * Load admin styles on header footer elementor edit screen.
	 *
	 * @return void
	 */
	public function enqueue_admin_scripts() {
		global $pagenow;
		$screen = get_current_screen();

		if ( ( 'elementor-hf' == $screen->id && ( 'post.php' == $pagenow || 'post-new.php' == $pagenow ) ) || ( 'edit.php' == $pagenow && 'edit-elementor-hf' == $screen->id ) ) {

			wp_enqueue_style( 'hfe-admin-style', HFE_URL . 'admin/assets/css/ehf-admin.css', [], HFE_VER );
			wp_enqueue_script( 'hfe-admin-script', HFE_URL . 'admin/assets/js/ehf-admin.js', [ 'jquery', 'updates' ], HFE_VER, true );

		}
	}

	/**
	 * Adds classes to the body tag conditionally.
	 *
	 * @param  array $classes array with class names for the body tag.
	 *
	 * @return array          array with class names for the body tag.
	 */
	public function body_class( $classes ) {
		if ( hfe_header_enabled() ) {
			$classes[] = 'ehf-header';
		}

		if ( hfe_footer_enabled() ) {
			$classes[] = 'ehf-footer';
		}

		$classes[] = 'ehf-template-' . $this->template;
		$classes[] = 'ehf-stylesheet-' . get_stylesheet();

		return $classes;
	}

	/**
	 * Display Settings Page options
	 *
	 * @since 1.6.0
	 * @return void
	 */
	public function setup_settings_page() {

		require_once HFE_DIR . 'inc/class-hfe-settings-page.php';
	}

	/**
	 * Display Unsupported theme notice if the current theme does add support for 'header-footer-elementor'
	 *
	 * @param array $hfe_settings_tabs settings array tabs.
	 * @since 1.0.3
	 * @return array
	 */
	public function setup_unsupported_theme( $hfe_settings_tabs = [] ) {

		if ( ! current_theme_supports( 'header-footer-elementor' ) ) {
			$hfe_settings_tabs['hfe_settings'] = [
				'name' => __( 'Theme Support', 'header-footer-elementor' ),
				'url'  => admin_url( 'themes.php?page=hfe-settings' ),
			];
		}
		return $hfe_settings_tabs;
	}

	/**
	 * Add support for theme if the current theme does add support for 'header-footer-elementor'
	 *
	 * @since  1.6.1
	 * @return void
	 */
	public function setup_fallback_support() {

		if ( ! current_theme_supports( 'header-footer-elementor' ) ) {
			$hfe_compatibility_option = get_option( 'hfe_compatibility_option', '1' );

			if ( '1' === $hfe_compatibility_option ) {
				if ( ! class_exists( 'HFE_Default_Compat' ) ) {
					require_once HFE_DIR . 'themes/default/class-hfe-default-compat.php';
				}
			} elseif ( '2' === $hfe_compatibility_option ) {
				require HFE_DIR . 'themes/default/class-global-theme-compatibility.php';
			}
		}
	}

	/**
	 * Prints the Header content.
	 *
	 * @return void
	 */
	public static function get_header_content() {
		$header_content = self::$elementor_instance->frontend->get_builder_content_for_display( get_hfe_header_id() );
		echo $header_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- If escaped output is not rendered on frontend.
	}

	/**
	 * Prints the Footer content.
	 *
	 * @return void
	 */
	public static function get_footer_content() {
		echo "<div class='footer-width-fixer'>";
		echo self::$elementor_instance->frontend->get_builder_content_for_display( get_hfe_footer_id() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- If escaped output is not rendered on frontend.
		echo '</div>';
	}

	/**
	 * Prints the Before Footer content.
	 *
	 * @return void
	 */
	public static function get_before_footer_content() {
		echo "<div class='footer-width-fixer'>";
		echo self::$elementor_instance->frontend->get_builder_content_for_display( hfe_get_before_footer_id() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- If escaped output is not rendered on frontend.
		echo '</div>';
	}

	/**
	 * Get option for the plugin settings
	 *
	 * @param  string $setting Option name.
	 * @param  string $default Default value to be received if the option value is not stored in the option.
	 *
	 * @return mixed | string
	 */
	public static function get_settings( $setting = '', $default = '' ) {
		if ( 'type_header' == $setting || 'type_footer' == $setting || 'type_before_footer' == $setting ) {
			$templates = self::get_template_id( $setting );

			$template = ! is_array( $templates ) ? $templates : $templates[0];

			$template = apply_filters( "hfe_get_settings_{$setting}", $template );

			return $template;
		}
	}

	/**
	 * Get header or footer template id based on the meta query.
	 *
	 * @param  String $type Type of the template header/footer.
	 *
	 * @return Mixed       Returns the header or footer template id if found, else returns string ''.
	 */
	public static function get_template_id( $type ) {
		$option = [
			'location'  => 'ehf_target_include_locations',
			'exclusion' => 'ehf_target_exclude_locations',
			'users'     => 'ehf_target_user_roles',
		];

		$hfe_templates = Astra_Target_Rules_Fields::get_instance()->get_posts_by_conditions( 'elementor-hf', $option );

		foreach ( $hfe_templates as $template ) {
			if ( get_post_meta( absint( $template['id'] ), 'ehf_template_type', true ) === $type ) {
				if ( function_exists( 'pll_current_language' ) ) {
					if ( pll_current_language( 'slug' ) == pll_get_post_language( $template['id'], 'slug' ) ) {
						return $template['id'];
					}
				} else {
					return $template['id'];
				}
			}
		}

		return '';
	}

	/**
	 * Callback to shortcode.
	 *
	 * @param array $atts attributes for shortcode.
	 * @return string
	 */
	public function render_template( $atts ) {
		$atts = shortcode_atts(
			[
				'id' => '',
			],
			$atts,
			'hfe_template'
		);

		$id = ! empty( $atts['id'] ) ? apply_filters( 'hfe_render_template_id', intval( $atts['id'] ) ) : '';

		if ( empty( $id ) ) {
			return '';
		}

		// Check if the current user has permission to edit posts.
		if ( ! current_user_can( 'edit_post', $id ) ) {
			$post_status = get_post_status( $id );
			// Prevent access to drafts, private, pending, and password-protected posts for unauthorized users.
			if ( in_array( $post_status, [ 'draft', 'private', 'pending' ], true ) || post_password_required( $id ) ) {
				return ''; // Prevent access to restricted posts.
			}
		}

		if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
			$css_file = new \Elementor\Core\Files\CSS\Post( $id );
		} elseif ( class_exists( '\Elementor\Post_CSS_File' ) ) {
			// Load elementor styles.
			$css_file = new \Elementor\Post_CSS_File( $id );
		}
			$css_file->enqueue();

		return self::$elementor_instance->frontend->get_builder_content_for_display( $id );
	}
}
/**
 * Is elementor plugin installed.
 */
if ( ! function_exists( '_is_elementor_installed' ) ) {

	/**
	 * Check if Elementor is installed
	 *
	 * @since 1.6.0
	 *
	 * @access public
	 * @return bool
	 */
	function _is_elementor_installed() {
		return ( file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' ) ) ? true : false;
	}
}
PK���\�Ѧ9��inc/class-hfe-rollback.phpnu�[���<?php
/**
 * HFE Rollback.
 *
 * @package HFE
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * HFE Rollback.
 *
 * HFE Rollback. handler class is responsible for rolling back HFE to
 * previous version.
 *
 * @since 2.2.1
 */
if ( ! class_exists( 'HFE_Rollback' ) ) {

	class HFE_Rollback {

		/**
		 * Package URL.
		 *
		 * Holds the package URL.
		 *
		 * @since 2.2.1
		 * @access protected
		 *
		 * @var string Package URL.
		 */
		protected $package_url;

		/**
		 * Version.
		 *
		 * Holds the version.
		 *
		 * @since 2.2.1
		 * @access protected
		 *
		 * @var string Package URL.
		 */
		protected $version;

		/**
		 * Plugin name.
		 *
		 * Holds the plugin name.
		 *
		 * @since 2.2.1
		 * @access protected
		 *
		 * @var string Plugin name.
		 */
		protected $plugin_name;

		/**
		 * Plugin slug.
		 *
		 * Holds the plugin slug.
		 *
		 * @since 2.2.1
		 * @access protected
		 *
		 * @var string Plugin slug.
		 */
		protected $plugin_slug;

		/**
		 * HFE Rollback constructor.
		 *
		 * Initializing HFE Rollback.
		 *
		 * @since 2.2.1
		 * @access public
		 *
		 * @param array $args Optional. HFE Rollback arguments. Default is an empty array.
		 */
		public function __construct( $args = [] ) {
			foreach ( $args as $key => $value ) {
				$this->{$key} = $value;
			}
		}

		/**
		 * Print inline style.
		 *
		 * Add an inline CSS to the HFE Rollback page.
		 *
		 * @since 2.2.1
		 * @access private
		 */
		private function print_inline_style() {
			?>
			<style>
				.wrap {
					overflow: hidden;
					max-width: 850px;
					margin: auto;
					font-family: Courier, monospace;
				}

				h1 {
					background: rgb(74, 0, 224);
					text-align: center;
					color: #fff !important;
					padding: 70px !important;
					text-transform: uppercase;
					letter-spacing: 1px;
				}

				h1 img {
					max-width: 300px;
					display: block;
					margin: auto auto 50px;
				}
			</style>
			<?php
		}

		/**
		 * Apply package.
		 *
		 * Change the plugin data when WordPress checks for updates. This method
		 * modifies package data to update the plugin from a specific URL containing
		 * the version package.
		 *
		 * @since 2.2.1
		 * @access protected
		 */
		protected function apply_package() {
			$update_plugins = get_site_transient( 'update_plugins' );
			if ( ! is_object( $update_plugins ) ) {
				$update_plugins = new \stdClass();
			}

			$plugin_info              = new \stdClass();
			$plugin_info->new_version = $this->version;
			$plugin_info->slug        = $this->plugin_slug;
			$plugin_info->package     = $this->package_url;
			$plugin_info->url         = 'https://wordpress.org/plugins/header-footer-elementor/';

			$update_plugins->response[ $this->plugin_name ] = $plugin_info;

			set_site_transient( 'update_plugins', $update_plugins );
		}

		/**
		 * Upgrade.
		 *
		 * Run WordPress upgrade to HFE Rollback to previous version.
		 *
		 * @since 2.2.1
		 * @access protected
		 */
		protected function upgrade() {

			require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';

			$upgrader_args = [
				'url'    => 'update.php?action=upgrade-plugin&plugin=' . rawurlencode( $this->plugin_name ),
				'plugin' => $this->plugin_name,
				'nonce'  => 'upgrade-plugin_' . $this->plugin_name,
				'title'  => __( 'Ultimate Addons for Elementor Lite <p>Rollback to Previous Version</p>', 'header-footer-elementor' ),
			];

			$this->print_inline_style();

			$upgrader = new \Plugin_Upgrader( new \Plugin_Upgrader_Skin( $upgrader_args ) );
			$upgrader->upgrade( $this->plugin_name );
		}

		/**
		 * Run.
		 *
		 * Rollback HFE to previous versions.
		 *
		 * @since 2.2.1
		 * @access public
		 */
		public function run() {
			$this->apply_package();
			$this->upgrade();
		}
	}
}
PK���\!��GDGDinc/widgets-css/frontend.cssnu�[���/* Counter Widget CSS */
.hfe-counter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Default alignments that will be overridden by controls */
.hfe-counter-wrapper[style*="flex-direction: column"] {
    align-items: center; /* horizontal alignment for column layouts */
    justify-content: center; /* vertical alignment for column layouts */
}

.hfe-counter-wrapper[style*="flex-direction: row"] {
    justify-content: center; /* horizontal alignment for row layouts */
    align-items: center; /* vertical alignment for row layouts */
}

.hfe-counter-content {
    display: flex;
    align-items: center;
    justify-content: center;
}


.hfe-counter-number {
    font-weight: bold;
    font-size: 48px;
    line-height: 1;
}

.hfe-counter-title {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.hfe-counter-prefix,
.hfe-counter-suffix {
    font-size: inherit;
    line-height: inherit;
}



/* Title styling - flex enabled for alignment controls */
.hfe-counter-title {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Ensure counter content doesn't shrink */
.hfe-counter-content {
    flex-shrink: 0;
}

/* Equal width distribution for horizontal layouts */
.hfe-counter-wrapper[style*="flex-direction: row"] .hfe-counter-title,
.hfe-counter-wrapper[style*="flex-direction: row"] .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

.hfe-counter-wrapper[style*="flex-direction: row-reverse"] .hfe-counter-title,
.hfe-counter-wrapper[style*="flex-direction: row-reverse"] .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

/* Alternative approach - apply to all potential horizontal layouts */
.hfe-counter-wrapper:not([style*="column"]) .hfe-counter-title,
.hfe-counter-wrapper:not([style*="column"]) .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

/* Ensure counter content maintains flex display in all layouts */
.hfe-counter-content {
    display: flex !important;
    align-items: center;
    justify-content: center;
}


/* Responsive equal width distribution */
@media (max-width: 1024px) {
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-title,
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-content {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-title,
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-content {
        flex: 1;
        min-width: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hfe-counter-number {
        font-size: 36px;
    }
    
    .hfe-counter-title {
        font-size: 16px;
    }
}

/* Navigation Menu CSS */

ul.hfe-nav-menu,
.hfe-nav-menu li,
.hfe-nav-menu ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.hfe-nav-menu li.menu-item {
    position: relative;
}

.hfe-flyout-container .hfe-nav-menu li.menu-item {
    position: relative;
    background: unset;
}

.hfe-nav-menu .sub-menu li.menu-item {
    position: relative;
    background: inherit;
}
.hfe-nav-menu__theme-icon-yes button.sub-menu-toggle {
    display: none;
}

div.hfe-nav-menu,
.elementor-widget-hfe-nav-menu .elementor-widget-container{
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.hfe-nav-menu__layout-horizontal,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.hfe-nav-menu .parent-has-no-child .hfe-menu-toggle {
    display: none;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu,
.hfe-submenu-action-hover .hfe-layout-vertical .hfe-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 16;
    visibility: hidden;
    opacity: 0;
    text-align: left;
    -webkit-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
    visibility: visible;
    opacity: 1;
}

.hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
    visibility: hidden;
    opacity: 0;
}

.hfe-nav-menu .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
}

.hfe-flyout-container .hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 0;
}

.hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 100%;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children.focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.hfe-nav-menu:before,
.hfe-nav-menu:after {
    content: '';
    display: table;
    clear: both;
}

/* Alignemnt CSS */
.hfe-nav-menu__align-right .hfe-nav-menu {
  margin-left: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          -webkit-justify-content: flex-end;
          -moz-box-pack: end;
          justify-content: flex-end; }

.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          -webkit-justify-content: flex-end;
          -moz-box-pack: end;
          justify-content: flex-end; }

.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper,
.rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: right;
}
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper,
.rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: left;
}
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: center;
}
.hfe-nav-menu__align-left .hfe-nav-menu {
  margin-right: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          -webkit-justify-content: flex-start;
          -moz-box-pack: start;
          justify-content: flex-start; }

.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          -webkit-justify-content: flex-start;
          -moz-box-pack: start;
          justify-content: flex-start; }

.hfe-nav-menu__align-center .hfe-nav-menu {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-pack: center;
          justify-content: center; }

.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-pack: center;
          justify-content: center; }

.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
}
.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    width: 100%; 
}
  .hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.menu-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            -webkit-flex-grow: 1;
            -moz-box-flex: 1;
            flex-grow: 1; }
    .hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              -webkit-justify-content: center;
              -moz-box-pack: center;
              justify-content: center; }

/* Alignment CSS ends */

.hfe-active-menu + nav li:not(:last-child) a.hfe-menu-item,
.hfe-active-menu + nav li:not(:last-child) a.hfe-sub-menu-item {
    border-bottom-width: 0;
}

/*  Horizontal Menu */

.hfe-nav-menu a.hfe-menu-item,
.hfe-nav-menu a.hfe-sub-menu-item {
    line-height: 1;
    text-decoration: none;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.hfe-nav-menu a.hfe-menu-item:hover,
.hfe-nav-menu a.hfe-sub-menu-item:hover {
    text-decoration: none;
}

.hfe-nav-menu .sub-menu {
    min-width: 220px;
    margin: 0;
    z-index: 9999;
}

.hfe-nav-menu__layout-horizontal {
    font-size: 0;
}

.hfe-nav-menu__layout-horizontal li.menu-item,
.hfe-nav-menu__layout-horizontal > li.menu-item {
    font-size: medium;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu{
    -webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
}

/* Icons CSS */
.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: '+'; 
}
.hfe-submenu-icon-none .hfe-nav-menu .parent-has-child .sub-arrow {
    display: none; 
}

.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before,.hfe-link-redirect-self_link.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: '-'; 
}
.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: ''; 
}

.rtl .hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.rtl .hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}
/* Icon CSS ends */

.hfe-nav-menu-icon {
    padding: 0.35em;
    border: 0 solid;
}

.hfe-nav-menu-icon svg {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 25px;
}

.hfe-nav-menu-icon i:focus {
    outline: 0;
}

.hfe-has-submenu-container a.hfe-menu-item:focus,
.hfe-has-submenu-container a.hfe-sub-menu-item:focus {
    outline: 0;
}
/* Submenus */

.hfe-nav-menu .menu-item-has-children:focus,
.hfe-nav-menu .menu-item-has-children .sub-menu:focus,
.hfe-nav-menu .menu-item-has-children-container:focus {
    outline: 0;
}
.hfe-nav-menu .menu-item-has-children-container {
    position: relative;
}

.hfe-nav-menu__layout-expandible .sub-menu,
.hfe-nav-menu__layout-vertical .sub-menu,
.hfe-flyout-wrapper .sub-menu {
    position: relative;
    height: 0;
}

.hfe-nav-menu__submenu-arrow .hfe-menu-toggle:before,
.hfe-nav-menu__submenu-plus .hfe-menu-toggle:before,
.hfe-nav-menu__submenu-classic .hfe-menu-toggle:before {
    font-family: 'Font Awesome 5 Free';
    z-index: 1;
    font-size: inherit;
    font-weight: inherit;
    line-height: 0;
}

.hfe-menu-item-center .hfe-nav-menu li a.hfe-menu-item,
.hfe-menu-item-center .hfe-nav-menu li a.hfe-sub-menu-item {
    margin-right: 0px;
}

.hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-menu-item,
.hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-sub-menu-item {
    margin-right: 0px;
}

.hfe-nav-menu__toggle-icon:before {
    content: '\f0c9';
    font-family: 'fontAwesome';
    z-index: 1;
    font-size: 24px;
    font-weight: inherit;
    font-style: normal;
    line-height: 0;
}

.hfe-active-menu .hfe-nav-menu__toggle-icon:before {
    content: '\f00d';
}

.hfe-nav-menu__layout-expandible {
    -webkit-transition-property: display;
    transition-property: display;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: cubic-bezier( 0, 1, 0.5, 1 );
    transition-timing-function: cubic-bezier( 0, 1, 0.5, 1 );
}

.hfe-nav-menu__layout-expandible {
    visibility: hidden;
    opacity: 0; 
}

.hfe-nav-menu__layout-expandible .sub-menu {
    visibility: hidden;
    opacity: 0; 
}

.hfe-active-menu + .hfe-nav-menu__layout-expandible {
    visibility: visible;
    opacity: 1; 
    height: auto;
}

.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-expandible,
.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
    position: absolute;
    top: 100%;
}

.hfe-nav-menu__layout-expandible .menu-item-has-children .menu-item-has-children .sub-menu,
.hfe-nav-menu__layout-vertical .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 0;
}

.hfe-layout-expandible nav {
    height: 0;
}

.hfe-nav-sub-menu-icon, .hfe-nav-menu__icon {
    display: inline-block;
    line-height: 1;
}

.hfe-nav-menu__toggle {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 22px;
    cursor: pointer;
    border: 0 solid;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #494c4f;
    position: relative;
    line-height: 1;
}

.hfe-nav-menu__toggle-icon {
    display: inline-block;
    font-size: inherit;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hfe-nav-menu .sub-arrow {
    font-size: 14px;
    line-height: 1;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    margin-top: -10px;
    margin-bottom: -10px;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
    margin-left: 10px;
}

.hfe-nav-menu__layout-vertical .hfe-nav-menu .sub-arrow,
.hfe-layout-expandible .sub-arrow,
.hfe-flyout-wrapper .sub-arrow
{
    padding: 10px;
}

.hfe-nav-menu .child-item,
.hfe-nav-menu__layout-vertical .hfe-nav-menu .child-item {
    font-size: 14px;
    line-height: 1;
    padding: 10px 0 10px 10px;
    margin-top: -10px;
    margin-bottom: -10px;
    position: absolute;
    right: 0;
    margin-right: 20px;
}

.hfe-layout-horizontal .hfe-nav-menu__toggle,
.hfe-layout-vertical .hfe-nav-menu__toggle {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.hfe-nav-menu-icon {
    display: inline-block;
    line-height: 1;
    text-align: center;
}

.hfe-nav-menu__layout-expandible .saved-content,
.hfe-nav-menu__layout-expandible .sub-menu,
.hfe-nav-menu__layout-expandible .child,
.hfe-nav-menu__layout-vertical .saved-content,
.hfe-nav-menu__layout-vertical .sub-menu,
.hfe-nav-menu__layout-vertical .child,
.hfe-flyout-container .saved-content,
.hfe-flyout-container .sub-menu,
.hfe-flyout-container .child {
    left: 0 !important;
    width: 100% !important; 
}

.hfe-flyout-container .hfe-nav-menu .sub-menu {
    background: unset;
}

.hfe-nav-menu__layout-vertical .hfe-menu-toggle:hover,
.hfe-nav-menu__layout-expandible .hfe-menu-toggle:hover,
.hfe-flyout-wrapper .hfe-menu-toggle:hover {
    border:1px dotted;
}

.hfe-nav-menu__layout-vertical .hfe-menu-toggle,
.hfe-nav-menu__layout-expandible .hfe-menu-toggle,
.hfe-flyout-wrapper .hfe-menu-toggle {
    border:1px dotted transparent;
}

/* Common Animation CSS */

.hfe-nav-menu .menu-item a:before,
.hfe-nav-menu .menu-item a:after {
  display: block;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
          transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1); }

.hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
  opacity: 0; }

.hfe-nav-menu .menu-item a.hfe-menu-item:hover:before,
.hfe-nav-menu .menu-item a.hfe-menu-item:hover:after,
.hfe-nav-menu .menu-item a.hfe-menu-item:focus:before,
.hfe-nav-menu .menu-item a.hfe-menu-item:focus:after,
.hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:before,
.hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:after,
.hfe-nav-menu .current-menu-item:before,
.hfe-nav-menu .current-menu-item:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/* Double Line / Underline / Overline Style */

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:after {
    height: 3px;
    width: 100%;
    left: 0;
    background-color: #55595c;
    z-index: 2;
}

.hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    height: 0;
    width: 0;
    left: 50%;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 10px;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: 10px;
}

.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: -10px;
}

.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: -10px;
}

.hfe-pointer__double-line.hfe-animation__none, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__underline.hfe-animation__none, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__overline.hfe-animation__none, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__double-line.hfe-animation__none:before, .hfe-pointer__double-line.hfe-animation__none:after, .hfe-pointer__double-line.hfe-animation__none:hover, .hfe-pointer__double-line.hfe-animation__none:focus, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__underline.hfe-animation__none:before, .hfe-pointer__underline.hfe-animation__none:after, .hfe-pointer__underline.hfe-animation__none:hover, .hfe-pointer__underline.hfe-animation__none:focus, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__overline.hfe-animation__none:before, .hfe-pointer__overline.hfe-animation__none:after, .hfe-pointer__overline.hfe-animation__none:hover, .hfe-pointer__overline.hfe-animation__none:focus, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before {
    content: '';
    top: 0;
}

.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    width: 10px;
    left: -20px;
}

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after {
    content: '';
    bottom: 0;
}

.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    width: 10px;
    left: -webkit-calc( 100% + 20px);
    left: calc( 100% + 20px);
}


/* Framed Style */

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:after {
    background: transparent;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: 3px solid #55595c;
}

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before {
    content: '';
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
}

.hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:before {
    -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
    transition: opacity 0.2s, -webkit-transform 0.4s;
    transition: opacity 0.2s, transform 0.4s;
    transition: opacity 0.2s, transform 0.4s, -webkit-transform 0.4s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
    width: 3px;
    height: 3px;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before {
    border-width: 0 0 3px 3px;
    -webkit-transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
    transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
    content: '';
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    border-width: 3px 3px 0 0;
    -webkit-transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
    transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
    width: 100%;
    height: 100%;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before {
    -webkit-transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
    transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
    -webkit-transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
    transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
    width: 3px;
    height: 3px;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before {
    border-width: 3px 0 0 3px;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
    content: '';
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    border-width: 0 3px 3px 0;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:after {
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.002s, width 0.4s, height 0.4s;
    transition: opacity 0.002s, width 0.4s, height 0.4s;
}

.hfe-pointer__framed.hfe-animation__none, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__framed.hfe-animation__none:before, .hfe-pointer__framed.hfe-animation__none:after, .hfe-pointer__framed.hfe-animation__none:hover, .hfe-pointer__framed.hfe-animation__none:focus, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

/* Background Style */

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:after {
    content: '';
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #55595c;
    z-index: -1;
}

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__background .menu-item.parent a.hfe-menu-item.highlighted, .hfe-pointer__background .current-menu-item {
    color: #fff;
}

.hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__grow .current-menu-item:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shrink .current-menu-item:before {
    -webkit-transition: opacity 0.15s, -webkit-transform 0.4s;
    transition: opacity 0.15s, -webkit-transform 0.4s;
    transition: opacity 0.15s, transform 0.4s;
    transition: opacity 0.15s, transform 0.4s, -webkit-transform 0.4s;
}

.hfe-pointer__background.hfe-animation__sweep-left .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    left: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-right .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    right: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-up .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-down .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    bottom: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-out-vertical .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    bottom: 50%;
    top: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-out-horizontal .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    right: 50%;
    left: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #55595c;
    z-index: -1;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:before {
    top: 0;
    bottom: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after {
    top: 100%;
    bottom: 0;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:before {
    bottom: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:after {
    top: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:before {
    right: 0;
    left: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
    right: 100%;
    left: 0;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:before {
    left: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:after {
    right: 50%;
}

.hfe-pointer__background.hfe-animation__none, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__background.hfe-animation__none:before, .hfe-pointer__background.hfe-animation__none:after, .hfe-pointer__background.hfe-animation__none:hover, .hfe-pointer__background.hfe-animation__none:focus, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

/* Text Style */

.hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: skew(-8deg);
    -ms-transform: skew(-8deg);
    transform: skew(-8deg);
}

.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
}

.hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
}

.hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    transform: rotate(6deg);
}

.hfe-pointer__text.hfe-animation__none, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__text.hfe-animation__none:before, .hfe-pointer__text.hfe-animation__none:after, .hfe-pointer__text.hfe-animation__none:hover, .hfe-pointer__text.hfe-animation__none:focus, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-flyout-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999998;
    background: rgba(0,0,0,.6);
    cursor: pointer;
    -webkit-backface-visibility: hidden;
}

/* No link hover effect to last menu item */

.hfe-pointer__underline .menu-item.parent a.hfe-menu-item.elementor-button:after,
.hfe-pointer__overline .menu-item.parent a.hfe-menu-item.elementor-button:before,
.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:after,
.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:before {
    height: 0px;
}

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:before,
.hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:after{
    border-width: 0px;
}

.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:hover,
.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:focus
{
    -webkit-transform: none;
    transform: none;
}

.hfe-flyout-close,
.hfe-flyout-close svg {
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px;
    width: 23px;
    height: 23px;
    line-height: 23px;
    font-size: 23px;
    display: block;
    cursor: pointer;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
    top: 0;
    bottom: 0;
    left: -100%;
    right: auto;
    height: 100%;
    /*height: 100vh;*/
    width: 300px;
    max-width: 100%;
    max-width: 100vw;
}

.hfe-flyout-wrapper .hfe-side {
    display: none;
    position: fixed;
    z-index: 999999;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-show {
    display: block;
}

.hfe-flyout-content.push {
    color: #ffffff;
}

.hfe-flyout-content ul li {
    color: #ffffff;
}

/* ===========================================================
 *  Flyout Location
 * ======================================================== */

.hfe-flyout-wrapper .hfe-side.hfe-flyout-right {
    top: 0;
    bottom: 0;
    left: auto;
    right: -100%; /* default */
    height: 100%;
    /*height: 100vh;*/
    width: 300px; /* default */
    max-width: 100%;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
    top: 0;
    bottom: 0;
    left: -100%; /* default */
    right: auto;
    height: 100%;
    /*height: 100vh;*/
    width: 300px; /* default */
    max-width: 100%;
    max-width: 100vw;
}

.hfe-flyout-wrapper .hfe-side.top {
    top: -100%; /* default */
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    width: 100vw;
    height: 300px; /* default */
    max-height: 100%;
}

.hfe-flyout-wrapper .hfe-side.bottom {
    top: auto;
    bottom: -100%; /* default */
    left: 0;
    right: 0;
    width: 100%;
    width: 100vw;
    height: 300px; /* default */
    max-height: 100%;
}

/* ===========================================================
 *  Flyout Container
 * ======================================================== */

.hfe-flyout-content {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.4em;
    color: #fff;
}
/* iOS fix */
@media (max-width:1024px) {
    .hfe-flyout-content {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.hfe-flyout-content::-webkit-scrollbar {
    display: none;
}

.admin-bar .hfe-side {
    margin-top: 32px;
}

/* Dropdown animation CSS */

.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {  
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:first-child,
.hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:last-child {
    overflow: visible !important;
}

.elementor-widget-navigation-menu:not(.hfe-nav-menu__align-justify):not(.hfe-menu-item-space-between) a.hfe-menu-item.elementor-button {
    display: inline-flex;
} 

.hfe-nav-menu li.hfe-button-wrapper {
    align-self: center;
}

/* Tablet */
@media only screen and ( max-width: 1024px ) {

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal li,
    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu{
        width: 100%;
        margin-right:0px;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle {
        display: block;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-vertical {
        visibility: visible;
        opacity: 1;
        height: auto;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        position: relative;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
        position: absolute;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
        top: 0;
        left: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle
    {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: none;
        transition: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle:hover {
        border:1px dotted;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle {
        border:1px dotted transparent;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
        top: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .saved-content,
    .hfe-nav-menu__breakpoint-tablet .sub-menu,
    .hfe-nav-menu__breakpoint-tablet .child {
        left: 0 !important;
        width:auto !important;  
    }

    .hfe-nav-menu .sub-menu {
        min-width: auto;
        margin: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
        padding: 10px;
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: '-'; 
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu .sub-menu{
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''
    }

    /* Effect 1: Fade in and scale up */
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    
    /*.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu ul.sub-menu ul.sub-menu li a{
        border-left: 16px solid transparent;
    }*/

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
         background-color: unset!important; 
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before{
        border: 0px!important;
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus{
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item,
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item,
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; 
    }
}

/* Mobile */
@media only screen and ( max-width: 767px ) {

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item 
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper { 
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal li.menu-item,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu {
        width: 100%
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle {
        display: inline-block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
        top: 0;
    }

    .hfe-nav-menu .sub-menu {
        min-width: auto;
        margin: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: none;
        transition: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle.hfe-active-menu {
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;  
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-mobile .hfe-layout-vertical .hfe-nav-menu__toggle
    {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-vertical {
        visibility: visible;
        opacity: 1;
        height: auto;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        position: relative;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
        position: absolute;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
        top: 0;
        left: 0;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: '-'; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle:hover{
        border:1px dotted;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle{
        border:1px dotted transparent;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu .sub-menu{
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* Effect 1: Fade in and scale up */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-1 .hfe-nav-menu {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
        padding: 10px;
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-1 .hfe-nav-menu {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    /* Effect 2: Slide from the right */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-2 .hfe-nav-menu {
        -webkit-transform: translateX(20%);
        -ms-transform: translateX(20%);
        transform: translateX(20%);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-2 .hfe-nav-menu {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    /* Effect 3: Slide from the bottom */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-3 .hfe-nav-menu {
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        transform: translateY(20%);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-3 .hfe-nav-menu {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    .hfe-nav-menu__breakpoint-mobile .saved-content,
    .hfe-nav-menu__breakpoint-mobile .sub-menu,
    .hfe-nav-menu__breakpoint-mobile .child,
    .hfe-nav-menu__breakpoint-tablet .saved-content,
    .hfe-nav-menu__breakpoint-tablet .sub-menu,
    .hfe-nav-menu__breakpoint-tablet .child{
        left: 0 !important;
        width: auto !important; 
    }

    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }   

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
        background-color: unset!important; 
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before{
        border: 0px!important;
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text .menu-item.parent a.hfe-menu-item:focus {
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
    }
}

.hfe-toggle-no .hfe-layout-expandible .hfe-nav-menu__toggle {
    display: none;
}

/* Icon common CSS */

.hfe-icon {
    display: inline-block;
    vertical-align: middle; /* Alignment of icon */
}

/* Icon Svg */
.hfe-icon svg {
    width: 1em;
    height: 1em;
}

/* Menu Cart CSS */

.hfe-cart-menu-wrap-custom {
    display: inline-block;
    line-height: 1;
}

.hfe-cart-menu-wrap-custom .hfe-cart-count, 
.hfe-cart-menu-wrap-custom .hfe-cart-count:after {
    border-color: #75c32c;
    color: #75c32c;
}

.hfe-cart-menu-wrap-custom .hfe-cart-count {
    font-weight: bold;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    min-width: 2.1em;
    min-height: 2.1em;
    font-size: 0.860em;
    line-height: 1.8;
    border-radius: 0.3em 0.3em 0.3em 0.3em;
    border-width: 2px;
    border-style: solid;
    padding: 12px 24px;
}

/* Default skin for cart*/
.hfe-cart-menu-wrap-default {
    display: inline-block;
    line-height: 1;
}

.hfe-cart-menu-wrap-default .hfe-cart-count, 
.hfe-cart-menu-wrap-default .hfe-cart-count:after {
    border-color: #75c32c;
    color: #75c32c;
}

.hfe-cart-menu-wrap-default .hfe-cart-count {
    font-weight: bold;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    min-width: 2.1em;
    min-height: 2.1em;
    font-size: 0.860em;
    line-height: 1.8;
    border-radius: 0em 0em 0.3em 0.3em;
    border-width: 2px;
    border-style: solid;
    padding: 0 .4em;
}

.hfe-cart-menu-wrap-default .hfe-cart-count:after {
    bottom: 100%;
    margin-bottom: 0;
    height: .8em;
    width: .8em;
    left: 50%;
    transform: translateX(-50%);
    top: -.6em;
    content: ' ';
    position: absolute;
    pointer-events: none;
    border-width: 2px;
    border-style: solid;
    border-top-left-radius: 10em;
    border-top-right-radius: 10em;
    border-bottom: 0;
}

.elementor-widget-hfe-cart:not(.hfe-menu-cart--show-subtotal-yes) .hfe-menu-cart__toggle .elementor-button-text {
    display: none; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-light .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e3'; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-medium .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e4'; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-solid .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e5'; 
}

.hfe-menu-cart__toggle .elementor-button {
    background: transparent;
    border-radius: 0;
    color: #818a91;
    border: 1px solid;
    border-color: inherit;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
}

.hfe-menu-cart__toggle .elementor-button-text {
    margin-right: 0.3em; 
}

.hfe-menu-cart__toggle .elementor-button-icon {
    position: relative;
    -webkit-transition: color 0.1s;
    -o-transition: color 0.1s;
    transition: color 0.1s; 
}

.hfe-menu-cart--items-indicator-bubble .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
    content: attr(data-counter);
    display: block;
    position: absolute;
    min-width: 1.6em;
    height: 1.6em;
    line-height: 1.5em;
    top: -0.7em;
    right: -0.7em;
    border-radius: 100%;
    color: #fff;
    background-color: #d9534f;
    text-align: center;
    font-size: 10px; 
}

.hfe-menu-cart--items-indicator-plain .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
    content: attr(data-counter);
    display: inline-block;
    font-weight: normal; 
}

.hfe-menu-cart--empty-indicator-hide .hfe-menu-cart__toggle .elementor-button .elementor-button-icon[data-counter="0"]:before {
    content: none;
    display: none; 
}

.hfe-menu-cart__toggle .elementor-button-icon {
    -webkit-box-ordinal-group: 16;
    -webkit-order: 15;
    -ms-flex-order: 15;
    order: 15;
}

.hfe-menu-cart__toggle.hfe-button-wrapper .elementor-button {
    color:#4d4848;
}

/*Search Box CSS*/

.hfe-search-button-wrapper {
    display: block;
    cursor: pointer;
    vertical-align: middle;
    text-align: right;
}

.hfe-search-form__container {
    display: flex;
    overflow: hidden;
}

.hfe-search-form__input {
    flex-basis: 100%;
}

.hfe-search-icon-toggle i.fa-search {
    display: inline-block;
    position: absolute;
    width: 20px;
    box-sizing: content-box;
    padding: 10px;
}

.hfe-search-icon-toggle i:before {
    vertical-align: middle;
}
/*search icon toggle css*/

.hfe-search-button-wrapper input[type=search] {
    border: 0;
    padding: 10px;
    cursor: pointer;
    border-radius: 0;
    transition: all .5s;
    box-sizing: border-box;
    outline: none;
}

.hfe-search-button-wrapper button {
    border: none;
    border-radius: 0;
    padding: 0;
}

.hfe-search-button-wrapper input[type=search]:focus {
    cursor: auto;
    border: none;
    box-shadow: none;
}

.hfe-search-icon-toggle input:-moz-placeholder,
.hfe-search-icon-toggle input::-webkit-input-placeholder {
    color: transparent;
}

.hfe-search-layout-icon .hfe-search-icon-toggle .hfe-search-form__input {
    background-color: unset;
    height: 100%;
}

.hfe-search-button-wrapper.hfe-input-focus {
    display: flex;
}

.hfe-search-form__container .hfe-search-submit {
    min-width: 3%;
    position:relative;
}

.hfe-search-form__container button#clear,
.hfe-search-icon-toggle button#clear {
    visibility: hidden;
    position: absolute;
    right:0; 
    top:0;
    padding: 0 8px;
    font-style: normal;
    user-select: none;
    cursor: pointer;
    bottom:0;
    margin-right:10px;
    background-color: transparent;
}

.hfe-search-button-wrapper input[type="search"]::-webkit-search-decoration,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-cancel-button,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-results-button,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-results-decoration { 
    display: none; 
}

.hfe-search-form__container button#clear-with-button{
    visibility: hidden;
    position: absolute;
    top: 0;
    padding: 0 8px;
    font-style: normal;
    font-size: 1.2em;
    user-select: none;
    cursor: pointer;
    bottom:0;
    background-color: transparent;
}

.hfe-search-button-wrapper, 
.hfe-search-form__container,
.hfe-search-icon-toggle,
.hfe-search-button-wrapper .hfe-search-icon-toggle i,
.hfe-search-button-wrapper .hfe-search-icon-toggle i:before {
    position: relative;
}

.hfe-search-button-wrapper .hfe-search-icon-toggle .hfe-search-form__input {
    position: absolute;
    width: 0;
    right: 0;
    background-color: transparent;
}

.hfe-search-icon-toggle {
    width: 100%!important;
}

.hfe-search-button-wrapper.hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{
    position: absolute;
    width: 250px;
    right: 0;
}

.hfe-search-layout-text .hfe-search-form__container,
.hfe-search-layout-icon_text .hfe-search-form__container,
.hfe-search-layout-text .hfe-search-form__container .hfe-search-form__input,
.hfe-search-layout-icon_text .hfe-search-form__container .hfe-search-form__input {
    width: 100%;
}

.hfe-search-icon-toggle {
    line-height: 1.5;
}

/*-------Navigation menu active parent---------*/
.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,
 .hfe-pointer__overline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before  {
    width: 100%;
    left: 0;
    opacity:1;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: 0px;
    opacity:1;
}
.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 0px;
    opacity: 1;
}

.hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    height: 3px;
    width: 100%;
    left: 0;
    opacity: 1;
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hfe-pointer__framed.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    opacity:1;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, 
.hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,
.hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, 
.hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    border-width:3px;
    width:100%;
    opacity:1;
    height:100%;
}

/* Scroll to top CSS */
.hfe-scroll-to-top-wrap.hfe-scroll-to-top-hide {
    display: none;
}

.hfe-scroll-to-top-wrap.edit-mode,
.hfe-scroll-to-top-wrap.single-page-off {
    display: none !important;
}

.hfe-scroll-to-top-button {
    position:fixed;
    right:15px;
    bottom:15px;
    z-index:9999;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -webkit-align-items:center;
    align-items:center;
    -ms-flex-align:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    -webkit-justify-content:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50px;
    background-color:#000000;
    color:#fff;
    text-align:center;
    opacity:1;
    cursor:pointer;
    -webkit-transition:all .3s;
    transition:all .3s;
}

.hfe-scroll-to-top-button i {
    color:#fff;
    font-size:16px;
}
/* Breadcrumbs CSS */

ul.hfe-breadcrumbs {
    display:block;
    margin:0;
    padding:0;
    list-style:none
}

ul.hfe-breadcrumbs li {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

ul.hfe-breadcrumbs li:last-child {
    margin:0;
}

ul.hfe-breadcrumbs li a,
ul.hfe-breadcrumbs li span.hfe-breadcrumbs-separator-icon,
ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text{
    display:block;
}

ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text{
    -webkit-transition:all .4s;
    transition:all .4s;
}

span.hfe-breadcrumbs-home-icon{
    margin-right:10px;
    align-content: center;
}

.hfe-breadcrumbs-first a {
    align-content: center;
}

.hfe-breadcrumbs-separator-icon i, 
.hfe-breadcrumbs-separator-icon svg,
.hfe-breadcrumbs-home-icon i,
.hfe-breadcrumbs-home-icon svg {
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}

ul.hfe-breadcrumbs-show-home li.hfe-breadcrumbs-first {
    display: inline-flex;
}

/* Post Info CSS */

ul.hfe-post-info-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.hfe-post-info-inline.hfe-post-info-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

li.hfe-post-info-item {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

li.hfe-post-info-item,
li.hfe-post-info-item > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
}

.hfe-post-info-inline.hfe-post-info-items .hfe-post-info-item {
    margin-right: 8px;
    margin-left: 8px;
}

.hfe-post-info-inline .hfe-post-info-item:not(:last-child):after {
    position: relative;
    right: -8px;
}

.hfe-post-info-inline.hfe-post-info-items {
    margin-right: -8px;
    margin-left: -8px;
}

.hfe-post-info-icon svg {
    display: block;
}

.hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child):after {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child) {
    position: relative;
}


/* Info Card CSS */
.hfe-icon-wrap .hfe-icon svg {
    height: 100%;
    width: 100%;
}
body .elementor .hfe-button-wrapper a {
    text-decoration: none;
}
.hfe-button-wrapper {
    border-radius: 3px;
}


.hfe-reading-progress-bar{
    height: 4px;
}

/* Basic Posts Widget CSS - Only essential structure, no styling */
.hfe-posts-grid {
    display: grid;
}

.hfe-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hfe-post-title a {
    text-decoration: none;
}
.hfe-post-title {
    margin-top: 0px;
}
.hfe-read-more {
    text-decoration: none;
}
.hfe-post-meta {
    font-size: 12px;
    line-height: 1.3em;
}
.hfe-post-title {
    font-size: 20px;
}
PK���\D�p�xx inc/widgets-css/woo-products.cssnu�[���/* HFE Woo Products Widget Styles */
.hfe-woo-products-wrapper {
	width: 100%;
}

.hfe-woo-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 35px 20px;
}

.hfe-product-item {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #f0f0f0;
}


.hfe-product-image {
	position: relative;
	overflow: hidden;
}

.hfe-product-image img {
	width: 100%;
	height: auto;
	display: block;
}


.hfe-product-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hfe-product-category {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 8px;
	opacity: 0.75;
	font-weight: 500;
	color: #666;
}

.hfe-product-title {
	margin: 0 0 12px 0;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	flex-grow: 1;
}

.hfe-product-title a {
	color: #333;
	text-decoration: none;
}

.hfe-product-title h2 {
	margin: 0;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
}

.hfe-product-title .hfe-loop-product__link {
	display: block;
}


.hfe-product-rating {
	margin-bottom: 12px;
}

.hfe-product-rating .review-rating {
	display: flex;
	align-items: center;
	min-height: 16px;
}

.hfe-product-rating .star-rating {
	font-size: 14px;
	color: #ffa500;
	display: inline-block;
}

.hfe-product-price {
	margin-bottom: 16px;
	font-weight: 700;
	font-size: 18px;
}

.hfe-product-price .price {
	color: #333;
}

.hfe-product-price .price del {
	opacity: 0.6;
	margin-right: 8px;
	font-weight: 400;
}

.hfe-product-description {
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	flex-grow: 1;
}

.hfe-product-add-to-cart {
	margin-top: auto;
}

.hfe-woo-products-wrapper .hfe-product-add-to-cart .button {
	width: auto;
	min-width: 100px;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.hfe-woo-products-wrapper .hfe-product-add-to-cart .button:hover,
.hfe-woo-products-wrapper .hfe-product-add-to-cart .button:focus,
.hfe-woo-products-wrapper .hfe-product-add-to-cart .button:active,
.hfe-woo-products-wrapper .hfe-product-add-to-cart a.button:link {
	text-decoration: none;
}


.hfe-woo-products-notice,
.hfe-woo-products-empty {
	text-align: center;
	padding: 40px 20px;
	background: #f8f9fa;
	border-radius: 4px;
	color: #666;
}

/* Card Hover Effects */
.hfe-product-item {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.hfe-product-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Content Alignment Classes */
.hfe-content-align-left .hfe-product-item {
	text-align: left;
}

.hfe-content-align-left .hfe-product-item .star-rating {
	margin-left: 0;
	margin-right: auto;
}

.hfe-content-align-center .hfe-product-item {
	text-align: center;
}

.hfe-content-align-center .hfe-product-item .star-rating {
	margin-left: auto;
	margin-right: auto;
}

.hfe-content-align-right .hfe-product-item {
	text-align: right;
}

.hfe-content-align-right .hfe-product-item .star-rating {
	margin-left: auto;
	margin-right: 0;
}

/* Tablet Responsive Alignment */
@media (max-width: 1024px) {
	.hfe-content-tablet-align-left .hfe-product-item {
		text-align: left;
	}

	.hfe-content-tablet-align-left .hfe-product-item .star-rating {
		margin-left: 0;
		margin-right: auto;
	}

	.hfe-content-tablet-align-center .hfe-product-item {
		text-align: center;
	}

	.hfe-content-tablet-align-center .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: auto;
	}

	.hfe-content-tablet-align-right .hfe-product-item {
		text-align: right;
	}

	.hfe-content-tablet-align-right .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: 0;
	}
}

/* Mobile Responsive Alignment */
@media (max-width: 767px) {
	.hfe-content-mobile-align-left .hfe-product-item {
		text-align: left;
	}

	.hfe-content-mobile-align-left .hfe-product-item .star-rating {
		margin-left: 0;
		margin-right: auto;
	}

	.hfe-content-mobile-align-center .hfe-product-item {
		text-align: center;
	}

	.hfe-content-mobile-align-center .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: auto;
	}

	.hfe-content-mobile-align-right .hfe-product-item {
		text-align: right;
	}

	.hfe-content-mobile-align-right .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: 0;
	}
}

/* Responsive Design */
@media (max-width: 1200px) {
	.hfe-woo-products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.hfe-woo-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 15px;
	}
	
	.hfe-product-content {
		padding: 16px;
	}
	
	.hfe-product-title {
		font-size: 15px;
	}
	
	.hfe-product-price {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.hfe-woo-products-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.hfe-product-content {
		padding: 18px;
	}
}
PK���\.Kp�

*inc/widgets-css/permalink-clear-notice.cssnu�[���.uae-permalink-clear-notice {
    position: absolute;
    z-index: 10000; /* Over the loading layer */
    top: 50px;
    bottom: auto;
    width: 400px;
    line-height: 30px;
    color: var(--e-a-color-txt);
    background: var(--e-a-bg-default);
    padding: 20px 25px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    font-family: var(--e-a-font-family);
}

body.rtl .uae-permalink-clear-notice {
    left: 10px;
}

body:not(.rtl) .uae-permalink-clear-notice {
    right: 10px;
}

#uae-permalink-clear-notice {
    display: none;
}

.uae-permalink-clear-notice .uae-permalink-notice-content {
    font-size: 13px;
    line-height: 22px;
}

.uae-permalink-clear-notice .uae-permalink-notice-content a {
    color: var(--e-a-color-info);
}

.uae-permalink-clear-notice header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-block-end: 20px;
}

/* .uae-permalink-clear-notice header > * {
    margin-block-start: 10px;
} */

.uae-permalink-clear-notice header i.eicon-warning {
    font-size: 25px;
    color: var(--e-a-color-warning);
}

.uae-permalink-clear-notice header i.eicon-close {
    font-size: 18px;
    color: var(--e-a-color-txt);
}
.uae-permalink-clear-notice header button {
    border: none;
    background-color: var(--e-a-bg-default);
    position: absolute;
    top: 12px;
    right: 2px;
    z-index: 9999;
    cursor: pointer;
}

.uae-permalink-clear-notice header i {
    margin-inline-end: 10px;
}

.uae-permalink-clear-notice header h2 {
    flex-grow: 1;
    font-size: 18px;
}

.uae-permalink-flush-btn{
    background-color: var(--e-a-btn-bg-primary);
    color: #000;
    font-size: 12px;
    font-weight: 500;
    border: none;
    border-radius: 3px;
    padding: 16px 16px;
    margin-top: 10px;
    cursor: pointer;
}

.uae-permalink-flush-btn:hover {
    background-color: var(--e-a-btn-bg-primary-hover);
    color: var(--e-a-btn-color);
}

.uae-notice-loader {
    display: none;
}

/* Add a small spinning animation inside notice */
.uae-notice-loader::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    border: 2px solid #000;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.uae-btn-main-text{
    font-weight: bold;
}

/* added css to hide button coming from other plugins in promotion widget */
.uae-upgrade-button button{
    display: none;
}
PK���\qF�uuFinc/widgets-manager/extensions/class-reading-progress-bar-settings.phpnu�[���<?php
/**
 * Reading Progress Bar settings
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Extensions;

use Elementor\Controls_Manager;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
use Elementor\Core\Kits\Documents\Tabs\Tab_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * HFE Reading Progress Bar extension settings
 */
class Reading_Progress_Bar_Settings extends Tab_Base {

	/**
	 * Retrieve tab id
	 *
	 * @return string
	 */
	public function get_id() {
		return 'hfe-reading-progress-bar';
	}

	/**
	 * Retrieve tab title
	 *
	 * @return string
	 */
	public function get_title() {
		return __( 'Reading Progress Bar', 'header-footer-elementor' );
	}

	/**
	 * Retrieve tab icon
	 *
	 * @return string
	 */
	public function get_icon() {
		return 'hfe-icon-progress-bar';
	}

	/**
	 * Get help URL
	 *
	 * Retrieve the help URL for the Reading Progress Bar extension.
	 *
	 * @since 2.4.4
	 * @access public
	 *
	 * @return string The complete URL to the help page for the extension.
	 */
	public function get_custom_help_url() {
		return 'https://ultimateelementor.com/docs/reading-progress-bar-extension/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation';
	}

	/**
	 * Help url
	 */
	public function get_help_url() {
		return $this->get_custom_help_url();
	}

	/**
	 * Group name
	 *
	 * @return string
	 */
	public function get_group() {
		return 'settings';
	}

	/**
	 * Register controls
	 */
	protected function register_tab_controls() {
		$this->start_controls_section(
			'hfe_reading_progress_section',
			[
				'tab'   => 'hfe-reading-progress-bar',
				'label' => __( 'Reading Progress Bar', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'hfe_reading_progress_enable',
			[
				'type'      => Controls_Manager::SWITCHER,
				'label'     => __( 'Enable Reading Progress Bar', 'header-footer-elementor' ),
				'default'   => '',
				'label_on'  => __( 'Yes', 'header-footer-elementor' ),
				'label_off' => __( 'No', 'header-footer-elementor' ),
			]
		);

		 // Get all public post types
		$post_types = get_post_types(
			[
				'public' => true,
			],
			'objects'
		);

		$post_type_options = [
			'all' => __( 'Entire Website', 'header-footer-elementor' ),
		];

		foreach ( $post_types as $post_type ) {
			// Skip attachment post type
			if ( $post_type->name !== 'attachment' ) {
				$post_type_options[ $post_type->name ] = html_entity_decode( $post_type->label );
			}
		}

		$this->add_control(
			'hfe_reading_progress_display_on',
			[
				'label'       => __( 'Display On', 'header-footer-elementor' ),
				'type'        => Controls_Manager::SELECT2,
				'default'     => 'all',
				'options'     => $post_type_options,
				'multiple'    => true,
				'label_block' => true,
				'condition'   => [
					'hfe_reading_progress_enable' => 'yes',
				],
				'description' => __( 'Select "All Pages" or choose specific post types. If "All Pages" is selected along with specific post types, the progress bar will appear on all pages.', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'hfe_reading_progress_position',
			[
				'label'     => __( 'Position', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'top',
				'options'   => [
					'top'    => __( 'Top', 'header-footer-elementor' ),
					'bottom' => __( 'Bottom', 'header-footer-elementor' ),
				],
				'condition' => [
					'hfe_reading_progress_enable' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_reading_progress_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'.hfe-reading-progress-bar' => 'background-color: {{VALUE}}',
				],
				'default'   => '#6A21A7',
				'condition' => [
					'hfe_reading_progress_enable' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_reading_progress_height',
			[
				'label'      => __( 'Height', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px' ],
				'range'      => [
					'px' => [
						'min'  => 1,
						'max'  => 50,
						'step' => 1,
					],
				],
				'default'    => [
					'unit' => 'px',
					'size' => 4,
				],
				'selectors'  => [
					'.hfe-reading-progress-bar' => 'height: {{SIZE}}{{UNIT}}',
				],
				'condition'  => [
					'hfe_reading_progress_enable' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_reading_progress_offset_top',
			[
				'label'       => __( 'Offset', 'header-footer-elementor' ),
				'type'        => Controls_Manager::SLIDER,
				'size_units'  => [ 'px' ],
				'range'       => [
					'px' => [
						'min'  => 0,
						'max'  => 50,
						'step' => 1,
					],
				],
				'default'     => [
					'unit' => 'px',
					'size' => 0,
				],
				'selectors'   => [
					'.hfe-reading-progress' => 'top: {{SIZE}}{{UNIT}}',
				],
				'condition'   => [
					'hfe_reading_progress_enable'   => 'yes',
					'hfe_reading_progress_position' => 'top',
				],
				'description' => __( 'Set offset value to 0 or greater to ensure the progress bar is visible.', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'hfe_reading_progress_offset_bottom',
			[
				'label'       => __( 'Offset', 'header-footer-elementor' ),
				'type'        => Controls_Manager::SLIDER,
				'size_units'  => [ 'px' ],
				'range'       => [
					'px' => [
						'min'  => 0,
						'max'  => 50,
						'step' => 1,
					],
				],
				'default'     => [
					'unit' => 'px',
					'size' => 0,
				],
				'selectors'   => [
					'.hfe-reading-progress' => 'bottom: {{SIZE}}{{UNIT}}',
				],
				'condition'   => [
					'hfe_reading_progress_enable'   => 'yes',
					'hfe_reading_progress_position' => 'bottom',
				],
				'description' => __( 'Set offset value to 0 or greater to ensure the progress bar is visible.', 'header-footer-elementor' ),
			]
		);

	   

		$this->end_controls_section();
	}
}
PK���\�6��/�/6inc/widgets-manager/extensions/class-scroll-to-top.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Extensions;

use Elementor\Controls_Manager;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * HFE Progress bar extension
 *
 * @since 2.2.1
 */
class Scroll_To_Top {

	/**
	 * Instance of Widgets_Loader.
	 *
	 * @since  2.2.1
	 * @var null
	 */
	private static $_instance = null;

	/**
	 * Get instance of Widgets_Loader
	 *
	 * @since  2.2.1
	 * @return Widgets_Loader
	 */
	public static function instance() {
		if ( ! isset( self::$_instance ) ) {
			self::$_instance = new self();
		}

		return self::$_instance;
	}

	/**
	 * Setup actions and filters.
	 *
	 * @since  2.2.1
	 * @access private
	 */
	private function __construct() {

		require_once HFE_DIR . '/inc/widgets-manager/extensions/class-scroll-to-top-settings.php';

		add_action( 'elementor/kit/register_tabs', [ $this, 'register_extension_tab' ], 1, 40 );
		add_action( 'elementor/documents/register_controls', [ $this, 'page_scroll_to_top_controls' ], 10 );

		add_action( 'wp_footer', [ $this, 'render_scroll_to_top_html' ] );

		// Enqueue jQuery and add inline script.
		add_action( 'wp_enqueue_scripts', [ $this, 'enqueue_scripts' ] );
	}

	/**
	 * Enqueues the necessary scripts for the Scroll to Top functionality.
	 *
	 * This function is responsible for adding the required JavaScript and CSS files
	 * to the WordPress site to enable the Scroll to Top feature.
	 *
	 * @return void
	 */
	public function enqueue_scripts() {
		// Ensure jQuery is enqueued.
		wp_enqueue_script( 'jquery' );

		// Add inline script.
		wp_add_inline_script(
			'jquery',
			'!function($){"use strict";$(document).ready(function(){$(this).scrollTop()>100&&$(".hfe-scroll-to-top-wrap").removeClass("hfe-scroll-to-top-hide"),$(window).scroll(function(){$(this).scrollTop()<100?$(".hfe-scroll-to-top-wrap").fadeOut(300):$(".hfe-scroll-to-top-wrap").fadeIn(300)}),$(".hfe-scroll-to-top-wrap").on("click",function(){$("html, body").animate({scrollTop:0},300);return!1})})}(jQuery);'
		);
	}

	/**
	 * Register extension tab
	 *
	 * @param \Elementor\Core\Kits\Documents\Kit $kit The Elementor Kit document.
	 * @since 2.2.1
	 */
	public function register_extension_tab( \Elementor\Core\Kits\Documents\Kit $kit ) {
		$kit->register_tab( 'hfe-scroll-to-top-settings', Scroll_To_Top_Settings::class );
	}

	/**
	 * Render scroll to top html
	 *
	 * @since 2.2.1
	 */
	public function render_scroll_to_top_html() {

		$post_id                = get_the_ID();
		$document               = [];
		$document_settings_data = [];

		if ( \Elementor\Plugin::instance()->preview->is_preview_mode() ) {
			// get auto save data.
			$document = \Elementor\Plugin::$instance->documents->get_doc_for_frontend( $post_id );
		} else {
			$document = \Elementor\Plugin::$instance->documents->get( $post_id, false );
		}
		if ( isset( $document ) && is_object( $document ) ) {
			$document_settings_data = $document->get_settings();
		}

		$scroll_to_top_global = $this->get_elementor_settings( 'hfe_scroll_to_top_global' );

		$scroll_to_top = false;

		if ( 'yes' == $scroll_to_top_global ) {
			$scroll_to_top = true;
		}

		if ( isset( $document_settings_data['hfe_scroll_to_top_single_disable'] ) && 'yes' == $document_settings_data['hfe_scroll_to_top_single_disable'] ) {
			$scroll_to_top = false;
		}

		if ( ! \Elementor\Plugin::instance()->preview->is_preview_mode() && $scroll_to_top ) {

			$scrolltop_media_type = ! empty( $this->get_elementor_settings( 'hfe_scroll_to_top_media_type' ) ) ? $this->get_elementor_settings( 'hfe_scroll_to_top_media_type' ) : 'icon';
			$scrolltop_icon_html  = '';
			if ( 'icon' == $scrolltop_media_type ) {
				$scrolltop_icon      = ! empty( $this->get_elementor_settings( 'hfe_scroll_to_top_button_icon' ) ) ? $this->get_elementor_settings( 'hfe_scroll_to_top_button_icon' )['value'] : 'fas fa-chevron-up';
				$scrolltop_icon_html = "<i class='$scrolltop_icon'></i>";
			} elseif ( 'image' == $scrolltop_media_type ) {
				$scrolltop_image     = ! empty( $this->get_elementor_settings( 'hfe_scroll_to_top_button_image' ) ) ? $this->get_elementor_settings( 'hfe_scroll_to_top_button_image' )['url'] : '';
				$scrolltop_icon_html = "<img src='$scrolltop_image'>";
			} elseif ( 'text' == $scrolltop_media_type ) {
				$scrolltop_text      = ! empty( $this->get_elementor_settings( 'hfe_scroll_to_top_button_text' ) ) ? $this->get_elementor_settings( 'hfe_scroll_to_top_button_text' ) : '';
				$scrolltop_icon_html = "<span>$scrolltop_text</span>";
			}

			$scroll_to_top_html = "<div class='hfe-scroll-to-top-wrap hfe-scroll-to-top-hide'><span class='hfe-scroll-to-top-button'>$scrolltop_icon_html</span></div>";

			$elementor_page = get_post_meta( get_the_ID(), '_elementor_edit_mode', true );
			if ( (bool) $elementor_page ) {
				printf( '%1$s', wp_kses_post( $scroll_to_top_html ) );
			}       
		}

		if ( \Elementor\Plugin::instance()->preview->is_preview_mode() ) {
			if ( $scroll_to_top ) {
				$scrolltop_media_type = ! empty( $this->get_elementor_settings( 'hfe_scroll_to_top_media_type' ) ) ? $this->get_elementor_settings( 'hfe_scroll_to_top_media_type' ) : 'icon';
				$scrolltop_icon_html  = '';
				if ( 'icon' == $scrolltop_media_type ) {
					$scrolltop_icon      = ! empty( $this->get_elementor_settings( 'hfe_scroll_to_top_button_icon' ) ) ? $this->get_elementor_settings( 'hfe_scroll_to_top_button_icon' )['value'] : 'fas fa-chevron-up';
					$scrolltop_icon_html = "<i class='$scrolltop_icon'></i>";
				} elseif ( 'image' == $scrolltop_media_type ) {
					$scrolltop_image     = ! empty( $this->get_elementor_settings( 'hfe_scroll_to_top_button_image' ) ) ? $this->get_elementor_settings( 'hfe_scroll_to_top_button_image' )['url'] : '';
					$scrolltop_icon_html = "<img src='$scrolltop_image'>";
				} elseif ( 'text' == $scrolltop_media_type ) {
					$scrolltop_text      = ! empty( $this->get_elementor_settings( 'hfe_scroll_to_top_button_text' ) ) ? $this->get_elementor_settings( 'hfe_scroll_to_top_button_text' ) : '';
					$scrolltop_icon_html = "<span>$scrolltop_text</span>";
				}
				$scroll_to_top_html = "<div class='hfe-scroll-to-top-wrap hfe-scroll-to-top-hide'><span class='hfe-scroll-to-top-button'>$scrolltop_icon_html</span></div>";

				$elementor_page = get_post_meta( get_the_ID(), '_elementor_edit_mode', true );
				if ( (bool) $elementor_page ) {
					printf( '%1$s', wp_kses_post( $scroll_to_top_html ) );
				}
			}
			?>
			<script>
				;(function($) {
					'use strict';
					var markup = '<div class="hfe-scroll-to-top-wrap edit-mode hfe-scroll-to-top-hide"><span class="hfe-scroll-to-top-button"><i class="fas fa-chevron-up"></i></span></div>';
					var scrolltop = jQuery('.hfe-scroll-to-top-wrap');

					if ( ! scrolltop.length ) {
						jQuery('body').append(markup);
					}

					function hfeSanitizeString(input) {
						var htmlTags = /<[^>]*>/g;
						var sanitizedInput = input.replace(htmlTags, "");
						return sanitizedInput;
					}

					function hfeSanitizeURL(url) {
						var urlPattern = /^(https?|ftp):\/\/[^\s/$.?#].[^\s]*$/i;
						if (url.match(urlPattern)) {
							return url;
						} else {
							return "";
						}
					}

					window.addEventListener('message',function(e) {
						var data = e.data;
						if( 'hfeMessage' == data.check ) {
							if (e.origin != window.origin) {
								return;
							}
							if (e.source.location.href != window.parent.location.href) {
								return;
							}
							var scrolltopWrap = jQuery('.hfe-scroll-to-top-wrap');
							var button = scrolltopWrap.find('.hfe-scroll-to-top-button');
							var changeValue = data.changeValue;
							var changeItem = data.changeItem;

							if ( 'hfe_scroll_to_top_single_disable' != changeItem[0] ) {
								var icon = '';
								var image = '';
								var text = '';
								var items = {
									'enable_global_hfe' : ('hfe_scroll_to_top_global' == changeItem[0]) ? changeValue : data.enable_global_hfe,
									'media_type' : ('hfe_scroll_to_top_media_type' == changeItem[0]) ? changeValue : data.media_type,
									'icon' : ('hfe_scroll_to_top_button_icon' == changeItem[0]) ? changeValue : data.icon,
									'image' : ('hfe_scroll_to_top_button_image' == changeItem[0]) ? changeValue : data.image,
									'text' : ('hfe_scroll_to_top_button_text' == changeItem[0]) ? changeValue : data.text,
								};

								if( 'hfe_scroll_to_top_button_icon' == changeItem[0] ) {
									items.media_type = 'icon';
								} else if( 'hfe_scroll_to_top_button_image' == changeItem[0] ) {
									items.media_type = 'image';
								} else if( 'hfe_scroll_to_top_button_text' == changeItem[0] ) {
									items.media_type = 'text';
								}

								if ('icon' == items.media_type) {
									icon = '<i class="' + hfeSanitizeString(items.icon.value) + '"></i>';
									button.html(icon);
								} else if ('image' == items.media_type) {
									image = '<img src="' + hfeSanitizeURL(items.image.url) + '">';
									button.html(image);
								} else if ('text' == items.media_type) {
									text = '<span>' + hfeSanitizeString(items.text) + '</span>';
									button.html(text);
								}

								if( 'yes' == items.enable_global_hfe && scrolltopWrap.hasClass("edit-mode") ) {
									scrolltopWrap.removeClass("edit-mode");
								} else if( '' == changeValue && !scrolltopWrap.hasClass("edit-mode") ) {
									scrolltopWrap.addClass("edit-mode");
								}
							}

							if( 'hfe_scroll_to_top_single_disable' == changeItem[0] ) {
								if( 'yes' == changeValue && !scrolltopWrap.hasClass("single-page-off") ) {
									scrolltopWrap.addClass("single-page-off");
								} else if( '' == changeValue && scrolltopWrap.hasClass("single-page-off") ) {
									scrolltopWrap.removeClass("single-page-off");
								}
							}
						}
					})
				}(jQuery));
				!function(o){"use strict";o((function(){o(this).scrollTop()>100&&o(".hfe-scroll-to-top-wrap").removeClass("hfe-scroll-to-top-hide"),o(window).scroll((function(){o(this).scrollTop()<100?o(".hfe-scroll-to-top-wrap").fadeOut(300):o(".hfe-scroll-to-top-wrap").fadeIn(300)})),o(".hfe-scroll-to-top-wrap").on("click",(function(){return o("html, body").animate({scrollTop:0},300),!1}))}))}(jQuery);
			</script>
			<?php
		}

	}

	/**
	 * Get Elementor settings
	 * 
	 * @param string $setting_id Setting ID.
	 * @return string
	 */
	public function get_elementor_settings( $setting_id ) {

		$return              = '';
		$extensions_settings = [];

		if ( ! isset( $extensions_settings['kit_settings'] ) ) {
			if ( \Elementor\Plugin::instance()->preview->is_preview_mode() ) {
				// get auto save data.
				$kit = \Elementor\Plugin::$instance->documents->get_doc_for_frontend( \Elementor\Plugin::$instance->kits_manager->get_active_id() );
			} else {
				$kit = \Elementor\Plugin::$instance->documents->get( \Elementor\Plugin::$instance->kits_manager->get_active_id(), true );
			}
			if ( isset( $kit ) && is_object( $kit ) ) {
				$extensions_settings['kit_settings'] = $kit->get_settings();
			}
		}

		if ( isset( $extensions_settings ) && isset( $extensions_settings['kit_settings'][ $setting_id ] ) ) {
			$return = $extensions_settings['kit_settings'][ $setting_id ];
		}

		return $return;
	}

	/**
	 * Add scroll to top controls
	 *
	 * @param \Elementor\Widget_Base $element Elementor Widget.
	 */
	public function page_scroll_to_top_controls( $element ) {

		$scroll_to_top_global = $this->get_elementor_settings( 'hfe_scroll_to_top_global' );
		if ( 'yes' !== $scroll_to_top_global ) {
			return;
		}

		$element->start_controls_section(
			'hfe_scroll_to_top_single_section',
			[
				'label' => __( 'Scroll to Top', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_SETTINGS,
			]
		);

		$element->add_control(
			'hfe_scroll_to_top_single_disable',
			[
				'label'        => __( 'Disable Scroll to Top for This Page', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'default'      => '',
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
			]
		);

		$element->end_controls_section();
	}


}

Scroll_To_Top::instance();
PK���\@��YGYG?inc/widgets-manager/extensions/class-scroll-to-top-settings.phpnu�[���<?php
/**
 * Scroll to top settings
 *
 * @package header-footer-elementor
 * @since 2.2.1
 */

namespace HFE\WidgetsManager\Extensions;

use Elementor\Controls_Manager;
use Elementor\Group_Control_Background;
use Elementor\Group_Control_Typography;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Box_Shadow;
use Elementor\Core\Kits\Documents\Tabs\Tab_Base;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;

/**
 * HFE Scroll to top extension
 *
 * @since 2.2.1
 */
class Scroll_To_Top_Settings extends Tab_Base {

	/**
	 * Retrieve the widget name.
	 *
	 * @since 2.2.1
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_id() {
		return 'hfe-scroll-to-top-settings';
	}

	/**
	 * Retrieves the widget name title.
	 *
	 * @since 2.2.1
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return __( 'Scroll to Top', 'header-footer-elementor' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 2.2.1
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return 'hfe-icon-scroll-to-top';
	}

	/**
	 * Get help URL
	 *
	 * Retrieve the help URL for the Scroll to Top extension.
	 *
	 * @since 2.4.4
	 * @access public
	 *
	 * @return string The complete URL to the help page for the extension.
	 */
	public function get_custom_help_url() {
		return 'https://ultimateelementor.com/docs/scroll-to-top-extension/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation';
	}

	/**
	 * Retrieves the help URL.
	 * 
	 * @since 2.2.1
	 *
	 * @access public
	 *
	 * @return string The complete URL to the help page for the widget.
	 */
	public function get_help_url() {
		return $this->get_custom_help_url();
	}

	/**
	 * Retrieves the widget keywords.
	 * 
	 * @since 2.2.1
	 *
	 * @access public
	 *
	 * @return string The keywords for the widget.
	 */
	public function get_group() {
		return 'settings';
	}

	/**
	 * Register tab controls
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_tab_controls() {
		$this->start_controls_section(
			'hfe_scroll_to_top_section',
			[
				'tab'   => 'hfe-scroll-to-top-settings',
				'label' => __( 'Scroll to Top', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_global',
			[
				'type'      => Controls_Manager::SWITCHER,
				'label'     => __( 'Enable Scroll To Top', 'header-footer-elementor' ),
				'default'   => '',
				'label_on'  => __( 'Yes', 'header-footer-elementor' ),
				'label_off' => __( 'No', 'header-footer-elementor' ),
			]
		);

		// TODO: For Pro 3.6.0, convert this to the breakpoints utility method introduced in core 3.5.0.
		$breakpoints    = \Elementor\Plugin::instance()->breakpoints->get_active_breakpoints();
		$device_default = [];
		foreach ( $breakpoints as $breakpoint_key => $breakpoint ) {
			$device_default[ $breakpoint_key . '_default' ] = 'yes';
		}
		$device_default['desktop_default'] = 'yes';
		$this->add_responsive_control(
			'hfe_scroll_to_top_responsive_visibility',
			array_merge(
				[
					'type'                 => Controls_Manager::SWITCHER,
					'label'                => __( 'Responsive Support', 'header-footer-elementor' ),
					'default'              => 'yes',
					'return_value'         => 'yes',
					'label_on'             => __( 'Show', 'header-footer-elementor' ),
					'label_off'            => __( 'Hide', 'header-footer-elementor' ),
					'selectors_dictionary' => [
						''    => 'visibility: hidden; opacity: 0;',
						'yes' => 'visibility: visible; opacity: 1;',
					],
					'selectors'            => [
						'body[data-elementor-device-mode="widescreen"] .hfe-scroll-to-top-wrap,
						body[data-elementor-device-mode="widescreen"] .hfe-scroll-to-top-wrap.edit-mode,
						body[data-elementor-device-mode="widescreen"] .hfe-scroll-to-top-wrap.single-page-off' => '{{VALUE}}',

						'body[data-elementor-device-mode="desktop"] .hfe-scroll-to-top-wrap,
						body[data-elementor-device-mode="desktop"] .hfe-scroll-to-top-wrap.edit-mode,
						body[data-elementor-device-mode="desktop"] .hfe-scroll-to-top-wrap.single-page-off' => '{{VALUE}}',

						'body[data-elementor-device-mode="laptop"] .hfe-scroll-to-top-wrap,
						body[data-elementor-device-mode="laptop"] .hfe-scroll-to-top-wrap.edit-mode,
						body[data-elementor-device-mode="laptop"] .hfe-scroll-to-top-wrap.single-page-off' => '{{VALUE}}',

						'body[data-elementor-device-mode="tablet_extra"] .hfe-scroll-to-top-wrap,
						body[data-elementor-device-mode="tablet_extra"] .hfe-scroll-to-top-wrap.edit-mode,
						body[data-elementor-device-mode="tablet_extra"] .hfe-scroll-to-top-wrap.single-page-off' => '{{VALUE}}',

						'body[data-elementor-device-mode="tablet"] .hfe-scroll-to-top-wrap,
						body[data-elementor-device-mode="tablet"] .hfe-scroll-to-top-wrap.edit-mode,
						body[data-elementor-device-mode="tablet"] .hfe-scroll-to-top-wrap.single-page-off' => '{{VALUE}}',

						'body[data-elementor-device-mode="mobile_extra"] .hfe-scroll-to-top-wrap,
						body[data-elementor-device-mode="mobile_extra"] .hfe-scroll-to-top-wrap.edit-mode,
						body[data-elementor-device-mode="mobile_extra"] .hfe-scroll-to-top-wrap.single-page-off' => '{{VALUE}}',

						'body[data-elementor-device-mode="mobile"] .hfe-scroll-to-top-wrap,
						body[data-elementor-device-mode="mobile"] .hfe-scroll-to-top-wrap.edit-mode,
						body[data-elementor-device-mode="mobile"] .hfe-scroll-to-top-wrap.single-page-off' => '{{VALUE}}',
					],
					'condition'            => [
						'hfe_scroll_to_top_global' => 'yes',
					],
				],
				$device_default
			)
		);

		$this->add_control(
			'hfe_scroll_to_top_position_text',
			[
				'label'       => esc_html__( 'Position', 'header-footer-elementor' ),
				'type'        => Controls_Manager::SELECT,
				'default'     => 'bottom-right',
				'label_block' => false,
				'options'     => [
					'bottom-left'  => esc_html__( 'Bottom Left', 'header-footer-elementor' ),
					'bottom-right' => esc_html__( 'Bottom Right', 'header-footer-elementor' ),
				],
				'separator'   => 'before',
				'condition'   => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_position_bottom',
			[
				'label'      => __( 'Bottom', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em', '%' ],
				'range'      => [
					'px' => [
						'min'  => 0,
						'max'  => 1000,
						'step' => 1,
					],
					'em' => [
						'min'  => 0,
						'max'  => 50,
						'step' => 1,
					],
					'%'  => [
						'min'  => 0,
						'max'  => 100,
						'step' => 1,
					],
				],
				'selectors'  => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button' => 'bottom: {{SIZE}}{{UNIT}}',
				],
				'condition'  => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_position_left',
			[
				'label'      => __( 'Left', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em', '%' ],
				'range'      => [
					'px' => [
						'min'  => 0,
						'max'  => 1000,
						'step' => 1,
					],
					'em' => [
						'min'  => 0,
						'max'  => 50,
						'step' => 1,
					],
					'%'  => [
						'min'  => 0,
						'max'  => 100,
						'step' => 1,
					],
				],
				'selectors'  => [
					'.hfe-scroll-to-top-button' => 'left: 15px',
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button' => 'left: {{SIZE}}{{UNIT}}',
				],
				'condition'  => [
					'hfe_scroll_to_top_global'        => 'yes',
					'hfe_scroll_to_top_position_text' => 'bottom-left',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_position_right',
			[
				'label'      => __( 'Right', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em', '%' ],
				'range'      => [
					'px' => [
						'min'  => 0,
						'max'  => 1000,
						'step' => 1,
					],
					'em' => [
						'min'  => 0,
						'max'  => 50,
						'step' => 1,
					],
					'%'  => [
						'min'  => 0,
						'max'  => 100,
						'step' => 1,
					],
				],
				'selectors'  => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button' => 'right: {{SIZE}}{{UNIT}}',
				],
				'condition'  => [
					'hfe_scroll_to_top_global'        => 'yes',
					'hfe_scroll_to_top_position_text' => 'bottom-right',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_button_height',
			[
				'label'      => __( 'Height', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px' ],
				'range'      => [
					'px' => [
						'min'  => 0,
						'max'  => 1000,
						'step' => 1,
					],
				],
				'separator'  => 'before',
				'selectors'  => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button' => 'height: {{SIZE}}{{UNIT}};',
				],
				'condition'  => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_button_width',
			[
				'label'      => __( 'Width', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px' ],
				'range'      => [
					'px' => [
						'min'  => 0,
						'max'  => 1000,
						'step' => 1,
					],
				],
				'selectors'  => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button' => 'width: {{SIZE}}{{UNIT}};',
				],
				'condition'  => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_z_index',
			[
				'label'      => __( 'Z Index', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px' ],
				'range'      => [
					'px' => [
						'min'  => 0,
						'max'  => 9999,
						'step' => 10,
					],
				],
				'selectors'  => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button' => 'z-index: {{SIZE}}',
				],
				'condition'  => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_button_opacity',
			[
				'label'     => __( 'Opacity', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'min'  => 0,
						'max'  => 1,
						'step' => 0.01,
					],
				],
				'selectors' => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button' => 'opacity: {{SIZE}};',
				],
				'condition' => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_media_type',
			[
				'label'          => __( 'Media Type', 'header-footer-elementor' ),
				'type'           => Controls_Manager::CHOOSE,
				'label_block'    => false,
				'options'        => [
					'icon'  => [
						'title' => __( 'Icon', 'header-footer-elementor' ),
						'icon'  => 'eicon-star',
					],
					'image' => [
						'title' => __( 'Image', 'header-footer-elementor' ),
						'icon'  => 'eicon-image',
					],
					'text'  => [
						'title' => __( 'Text', 'header-footer-elementor' ),
						'icon'  => 'eicon-animation-text',
					],
				],
				'default'        => 'icon',
				'separator'      => 'before',
				'toggle'         => false,
				'style_transfer' => true,
				'condition'      => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_button_icon',
			[
				'label'      => esc_html__( 'Icon', 'header-footer-elementor' ),
				'type'       => Controls_Manager::ICONS,
				'show_label' => false,
				'default'    => [
					'value'   => 'fas fa-chevron-up',
					'library' => 'fa-solid',
				],
				'condition'  => [
					'hfe_scroll_to_top_global'     => 'yes',
					'hfe_scroll_to_top_media_type' => 'icon',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_button_image',
			[
				'label'      => __( 'Image', 'header-footer-elementor' ),
				'type'       => Controls_Manager::MEDIA,
				'show_label' => false,
				'dynamic'    => [
					'active' => true,
				],
				'condition'  => [
					'hfe_scroll_to_top_global'     => 'yes',
					'hfe_scroll_to_top_media_type' => 'image',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_button_text',
			[
				'label'       => __( 'Text', 'header-footer-elementor' ),
				'type'        => Controls_Manager::TEXT,
				'show_label'  => false,
				'label_block' => true,
				'default'     => 'Up',
				'condition'   => [
					'hfe_scroll_to_top_global'     => 'yes',
					'hfe_scroll_to_top_media_type' => 'text',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_button_icon_size',
			[
				'label'      => __( 'Size', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px' ],
				'range'      => [
					'px' => [
						'min'  => 0,
						'max'  => 100,
						'step' => 1,
					],
				],
				'selectors'  => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button i' => 'font-size: {{SIZE}}{{UNIT}};',
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button img' => 'height: {{SIZE}}{{UNIT}};width: {{SIZE}}{{UNIT}};',
				],
				'condition'  => [
					'hfe_scroll_to_top_global'      => 'yes',
					'hfe_scroll_to_top_media_type!' => 'text',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'      => 'hfe_scroll_to_top_button_text_typo',
				'global'    => [
					'default' => Global_Typography::TYPOGRAPHY_TEXT,
				],
				'selector'  => '.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button span',
				'condition' => [
					'hfe_scroll_to_top_global'     => 'yes',
					'hfe_scroll_to_top_media_type' => 'text',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Border::get_type(),
			[
				'name'      => 'hfe_scroll_to_top_button_border',
				'exclude'   => [ 'color' ], // remove border color.
				'selector'  => '{{WRAPPER}} .hfe-scroll-to-top-wrap .hfe-scroll-to-top-button',
				'condition' => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->start_controls_tabs(
			'hfe_scroll_to_top_tabs',
			[
				'separator' => 'before',
				'condition' => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->start_controls_tab(
			'hfe_scroll_to_top_tab_normal',
			[
				'label'     => __( 'Normal', 'header-footer-elementor' ),
				'condition' => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_button_icon_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button i' => 'color: {{VALUE}}',
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button span' => 'color: {{VALUE}}',
				],
				'condition' => [
					'hfe_scroll_to_top_global'      => 'yes',
					'hfe_scroll_to_top_media_type!' => 'image',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Background::get_type(),
			[
				'name'      => 'hfe_scroll_to_top_button_bg_color',
				'types'     => [ 'classic', 'gradient' ],
				'exclude'   => [ 'image' ],
				'selector'  => '.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button',
				'condition' => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_button_border_color',
			[
				'label'     => __( 'Border Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button' => 'border-color: {{VALUE}}',
				],
				'condition' => [
					'hfe_scroll_to_top_global' => 'yes',
					'hfe_scroll_to_top_button_border_border!' => '',
				],
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'hfe_scroll_to_top_tab_hover',
			[
				'label'     => __( 'Hover', 'header-footer-elementor' ),
				'condition' => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_button_icon_hvr_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button:hover i' => 'color: {{VALUE}}',
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button:hover span' => 'color: {{VALUE}}',
				],
				'condition' => [
					'hfe_scroll_to_top_global'      => 'yes',
					'hfe_scroll_to_top_media_type!' => 'image',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Background::get_type(),
			[
				'name'      => 'hfe_scroll_to_top_button_bg_hvr_color',
				'types'     => [ 'classic', 'gradient' ],
				'exclude'   => [ 'image' ],
				'selector'  => '.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button:hover',
				'condition' => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_control(
			'hfe_scroll_to_top_button_hvr_border_color',
			[
				'label'     => __( 'Border Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button:hover' => 'border-color: {{VALUE}}',
				],
				'condition' => [
					'hfe_scroll_to_top_global' => 'yes',
					'hfe_scroll_to_top_button_border_border!' => '',
				],
			]
		);

		$this->end_controls_tab();
		$this->end_controls_tabs();

		$this->add_control(
			'hfe_scroll_to_top_button_border_radius',
			[
				'label'      => __( 'Border Radius', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px' ],
				'selectors'  => [
					'.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'separator'  => 'before',
				'condition'  => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name'      => 'hfe_scroll_to_top_button_box_shadow',
				'exclude'   => [
					'box_shadow_position',
				],
				'selector'  => '.hfe-scroll-to-top-wrap .hfe-scroll-to-top-button',
				'condition' => [
					'hfe_scroll_to_top_global' => 'yes',
				],
			]
		);

		$this->end_controls_section();
	}
}
PK���\�Ψr��=inc/widgets-manager/extensions/class-reading-progress-bar.phpnu�[���<?php
/**
 * Reading Progress Bar Extension
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Extensions;

use Elementor\Controls_Manager;

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly.
}

/**
 * HFE Reading Progress Bar extension class
 */
class Reading_Progress_Bar {

    /**
     * Instance
     *
     * @var null
     */
    private static $_instance = null;

    /**
     * Get instance
     *
     * @return self
     */
    public static function instance() {
        if ( ! isset( self::$_instance ) ) {
            self::$_instance = new self();
        }
        return self::$_instance;
    }

    /**
     * Constructor
     */
    private function __construct() {
        require_once HFE_DIR . '/inc/widgets-manager/extensions/class-reading-progress-bar-settings.php';

        add_action( 'elementor/kit/register_tabs', [ $this, 'register_extension_tab' ], 1, 40 );
        add_action( 'elementor/documents/register_controls', [ $this, 'page_controls' ], 10 );

        add_action( 'wp_footer', [ $this, 'render_progress_bar' ] );
        add_action( 'wp_enqueue_scripts', [ $this, 'enqueue_scripts' ] );
    }

    /**
     * Enqueue inline script
     */
    public function enqueue_scripts() {
        wp_enqueue_script( 'jquery' );
        $script = "!function($){'use strict';$(document).ready(function(){var bar=$('.hfe-reading-progress-bar');if(!bar.length)return;$(window).on('scroll',function(){var s=$(window).scrollTop(),d=$(document).height()-$(window).height(),p=d? s/d*100:0;bar.css('width',p+'%')});});}(jQuery);";
        wp_add_inline_script( 'jquery', $script );
    }

    /**
     * Register extension tab
     */
    public function register_extension_tab( \Elementor\Core\Kits\Documents\Kit $kit ) {
        $kit->register_tab( 'hfe-reading-progress-bar', Reading_Progress_Bar_Settings::class );
    }

    /**
     * Render progress bar markup
     */
    public function render_progress_bar() {
        $post_id  = get_the_ID();
        $document = [];
        $doc_settings = [];

        if ( \Elementor\Plugin::instance()->preview->is_preview_mode() ) {
            $document = \Elementor\Plugin::$instance->documents->get_doc_for_frontend( $post_id );
        } else {
            $document = \Elementor\Plugin::$instance->documents->get( $post_id, false );
        }
        if ( isset( $document ) && is_object( $document ) ) {
            $doc_settings = $document->get_settings();
        }

        $enable_global = $this->get_elementor_settings( 'hfe_reading_progress_enable' );
        $show_bar      = false;
        if ( 'yes' === $enable_global ) {
            $display_on = $this->get_elementor_settings( 'hfe_reading_progress_display_on' );
            
            // If display_on is not an array, convert it to one for consistency
            if (!is_array($display_on)) {
                $display_on = [$display_on];
            }
            
            // Check if "all" is selected or if the current post type is in the selected types
            if (in_array('all', $display_on, true) || in_array(get_post_type($post_id), $display_on, true)) {
                $show_bar = true;
            }
        }
        if ( isset( $doc_settings['hfe_reading_progress_disable'] ) && 'yes' === $doc_settings['hfe_reading_progress_disable'] ) {
            $show_bar = false;
        }
        if ( $show_bar ) {
            $position = $this->get_elementor_settings( 'hfe_reading_progress_position' );
            $style_container = 'position:fixed;left:0;width:100%;z-index:99999;';
            if ( 'top' === $position ) {
                // Add margin-top if user is logged in to account for the admin bar
                if ( is_admin_bar_showing() && $position === 'top' ) {
                    $style_container .= 'margin-top:30px;';
                }
            }
            $style_bar = 'width:0;';
            $html = "<div class='hfe-reading-progress' style='{$style_container}'><div class='hfe-reading-progress-bar' style='{$style_bar}'></div></div>";
            echo wp_kses_post( $html );
        }

       
    }

    /**
     * Get kit settings
     */
    public function get_elementor_settings( $setting_id ) {
        $return = '';
        $extensions_settings = [];

        if ( ! isset( $extensions_settings['kit_settings'] ) ) {
            if ( \Elementor\Plugin::instance()->preview->is_preview_mode() ) {
                $kit = \Elementor\Plugin::$instance->documents->get_doc_for_frontend( \Elementor\Plugin::$instance->kits_manager->get_active_id() );
            } else {
                $kit = \Elementor\Plugin::$instance->documents->get( \Elementor\Plugin::$instance->kits_manager->get_active_id(), true );
            }
            if ( isset( $kit ) && is_object( $kit ) ) {
                $extensions_settings['kit_settings'] = $kit->get_settings();
            }
        }

        if ( isset( $extensions_settings['kit_settings'][ $setting_id ] ) ) {
            $return = $extensions_settings['kit_settings'][ $setting_id ];
        }
        return $return;
    }

    /**
     * Add page level controls
     */
    public function page_controls( $element ) {
        $enable_global = $this->get_elementor_settings( 'hfe_reading_progress_enable' );
        if ( 'yes' !== $enable_global ) {
            return;
        }

        $element->start_controls_section(
            'hfe_reading_progress_single_section',
            [
                'label' => __( 'Reading Progress Bar', 'header-footer-elementor' ),
                'tab'   => Controls_Manager::TAB_SETTINGS,
            ]
        );

        $element->add_control(
            'hfe_reading_progress_disable',
            [
                'label'        => __( 'Disable For This Page', 'header-footer-elementor' ),
                'type'         => Controls_Manager::SWITCHER,
                'default'      => '',
                'label_on'     => __( 'Yes', 'header-footer-elementor' ),
                'label_off'    => __( 'No', 'header-footer-elementor' ),
                'return_value' => 'yes',
                'description'  => __('Note: Changes will be applied on the frontend.', 'header-footer-elementor'),
            ]
        );

        $element->end_controls_section();
    }
}

Reading_Progress_Bar::instance();
PK���\�=
>LL'inc/widgets-manager/modules-manager.phpnu�[���<?php
/**
 * HFE Module Manager.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Modules_Manager.
 */

#[\AllowDynamicProperties]
class Modules_Manager {

	/**
	 * Member Variable
	 *
	 * @var modules.
	 */
	private $_modules = []; // phpcs:ignore PSR2.Classes.PropertyDeclaration.Underscore

	/**
	 * Constructor.
	 */
	public function __construct() {

		$this->require_files();
		$this->register_modules();
	}

	/**
	 * Returns Script array.
	 *
	 * @return array()
	 * @since 1.3.0
	 */
	public function register_modules() {
		$all_modules = [
			'retina',
			'copyright',
			'navigation-menu',
			'site-title',
			'page-title',
			'site-tagline',
			'site-logo',
			'cart',
			'search-button',
			'breadcrumbs-widget',
			'post-info',
			'infocard',
			'woo-product-grid',
			'basic-posts',
			'counter',
		];

		foreach ( $all_modules as $module_name ) {
			$class_name = str_replace( '-', ' ', $module_name );

			$class_name = str_replace( ' ', '', ucwords( $class_name ) );

			$class_name = __NAMESPACE__ . '\\Widgets\\' . $class_name . '\Module';

			if ( class_exists( $class_name ) && $class_name::is_enable() ) {
				$this->_modules[ $module_name ] = $class_name::instance();

				if ( 'copyright' === $module_name ) {
					require HFE_DIR . '/inc/widgets-manager/widgets/copyright/copyright-shortcode.php';
					$copyright_shortcode = new \HFE\WidgetsManager\Widgets\Copyright\Copyright_Shortcode();
				}           
			}
		}
	}

	/**
	 * Get Modules.
	 *
	 * @param string $module_name Module Name.
	 *
	 * @since 0.0.1
	 *
	 * @return Module_Base|Module_Base[]
	 */
	public function get_modules( $module_name = null ) {
		if ( $module_name ) {
			if ( isset( $this->_modules[ $module_name ] ) ) {
				return $this->_modules[ $module_name ];
			}
			return null;
		}

		return $this->_modules;
	}

	/**
	 * Required Files.
	 *
	 * @since 0.0.1
	 */
	private function require_files() {
		require HFE_DIR . 'inc/widgets-manager/base/module-base.php';
	}

}
PK���\[Q^�U7U7,inc/widgets-manager/class-widgets-loader.phpnu�[���<?php
/**
 * Widgets loader for Header Footer Elementor.
 *
 * @package     HFE
 * @author      HFE
 * @copyright   Copyright (c) 2018, HFE
 * @link        http://brainstormforce.com/
 * @since       HFE 1.2.0
 */

namespace HFE\WidgetsManager;

use Elementor\Plugin;
use Elementor\Utils;
use Elementor\Core\Files\File_Types\Svg;

defined( 'ABSPATH' ) || exit;

/**
 * Set up Widgets Loader class
 */
class Widgets_Loader {

	/**
	 * Instance of Widgets_Loader.
	 *
	 * @since  1.2.0
	 * @var null
	 */
	private static $_instance = null;

	/**
	 * Instance of Widgets_Loader.
	 *
	 * @since  1.2.0
	 * @var null
	 */
	private static $widgets_data = null;

	/**
	 * Member Variable
	 *
	 * @var Modules Manager
	 */
	public $modules_manager;

	/**
	 * Get instance of Widgets_Loader
	 *
	 * @since  1.2.0
	 * @return Widgets_Loader
	 */
	public static function instance() {
		if ( ! isset( self::$_instance ) ) {
			self::$_instance = new self();
		}

		return self::$_instance;
	}

	/**
	 * Setup actions and filters.
	 *
	 * @since  1.2.0
	 * @access private
	 */
	private function __construct() {

		spl_autoload_register( [ $this, 'autoload' ] );

		$this->includes();

		$this->setup_actions_filters();
	}

	/**
	 * AutoLoad
	 *
	 * @since 0.0.1
	 * @param string $class class.
	 */
	public function autoload( $class ) {

		if ( 0 !== strpos( $class, __NAMESPACE__ ) ) {
			return;
		}

		$class_to_load = str_replace( __NAMESPACE__ . '\\', '', $class );

		if ( ! class_exists( $class_to_load ) && ! class_exists( $class ) ) {
			$filename = strtolower(
				preg_replace(
					[ '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
					[ '$1-$2', '-', DIRECTORY_SEPARATOR ],
					$class_to_load
				)
			);
			
			$filename = HFE_DIR . 'inc/widgets-manager/' . $filename . '.php'; // Adjusted path.

			if ( is_readable( $filename ) ) {
				include $filename;
			}
		}
	}

	/**
	 * Includes.
	 *
	 * @since 0.0.1
	 */
	private function includes() {
		require HFE_DIR . 'inc/widgets-manager/modules-manager.php';
	}

	/**
	 * Setup Actions Filters.
	 *
	 * @since 0.0.1
	 */
	private function setup_actions_filters() {

		add_action( 'elementor/init', [ $this, 'elementor_init' ] );

		// Register category.
		add_action( 'elementor/elements/categories_registered', [ $this, 'register_widget_category' ] );

		// Register widgets script.
		add_action( 'elementor/frontend/after_register_scripts', [ $this, 'register_widget_scripts' ] );

		//Showing Pro Widgets
		add_filter('elementor/editor/localize_settings', [$this, 'uae_promote_pro_elements']);

		// Refresh the cart fragments.
		if ( class_exists( 'woocommerce' ) ) {

			add_filter( 'woocommerce_add_to_cart_fragments', [ $this, 'wc_refresh_mini_cart_count' ] );
		}

	}

	/**
	 * Elementor Init.
	 *
	 * @since 0.0.1
	 */
	public function elementor_init() {

		$this->modules_manager = new Modules_Manager();

		$this->init_category();

		do_action( 'header_footer_elementor/init' );    //phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
	}

	/**
	 * Sections init
	 *
	 * @since 0.0.1
	 *
	 * @access private
	 */
	private function init_category() {
		$category = defined( 'UAEL_PLUGIN_SHORT_NAME' ) ? UAEL_PLUGIN_SHORT_NAME : __( 'UAE', 'header-footer-elementor' );

		if ( version_compare( ELEMENTOR_VERSION, '2.0.0' ) < 0 ) {

			\Elementor\Plugin::instance()->elements_manager->add_category(
				'hfe-widgets',
				[
					'title' => $category,
				],
				1
			);
		}
	}

	/**
	 * Register Category
	 *
	 * @since 1.2.0
	 * @param object $this_cat class.
	 * @return object $this_cat class.
	 */
	public function register_widget_category( $this_cat ) {
		$category = ( defined( 'UAEL_PLUGIN_SHORT_NAME' ) && (UAEL_PLUGIN_SHORT_NAME !== 'UAE') ) ? UAEL_PLUGIN_SHORT_NAME : __( 'Ultimate Addons', 'header-footer-elementor' );

		$this_cat->add_category(
			'hfe-widgets',
			[
				'title' => $category,
				'icon'  => 'eicon-font',
			]
		);
		return $this_cat;
	}

	/**
	 * Returns Script array.
	 *
	 * @return array()
	 * @since 1.3.0
	 */
	public static function get_widget_script() {
		$js_files = [
			'hfe-frontend-js' => [
				'path'      => 'inc/js/frontend.js',
				'dep'       => [ 'jquery' ],
				'in_footer' => true,
			],
			'hfe-woo-product-grid' => [
				'path'      => 'inc/js/woo-products.js',
				'dep'       => [ 'jquery' ],
				'in_footer' => true,
			],
			'hfe-counter' => [
				'path'      => 'inc/js/counter.js',
				'dep'       => [ 'jquery', 'elementor-frontend' ],
				'in_footer' => true,
			],
		];

		return $js_files;
	}

	/**
	 * Include Widgets JS files
	 *
	 * Load widgets JS files
	 *
	 * @since 2.2.1
	 * @access public
	 * @return void
	 */
	public function include_js_files() {
		$js_files = $this->get_widget_script();

		if ( ! empty( $js_files ) ) {
			foreach ( $js_files as $handle => $data ) {
				wp_register_script( $handle, HFE_URL . $data['path'], $data['dep'], HFE_VER, $data['in_footer'] );
			}
		}

		$tag_validation = [ 'article', 'aside', 'div', 'footer', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'main', 'nav', 'p', 'section', 'span' ];

		wp_localize_script(
			'elementor-editor',
			'HfeWidgetsData',
			[
				'allowed_tags' => $tag_validation,
			]
		);

		// Emqueue the widgets style.
		wp_enqueue_style( 'hfe-widgets-style', HFE_URL . 'inc/widgets-css/frontend.css', [], HFE_VER );
		
		// Enqueue Woo Products widget styles
		if ( class_exists( 'WooCommerce' ) ) {
			wp_enqueue_style( 'hfe-woo-product-grid', HFE_URL . 'inc/widgets-css/woo-products.css', [], HFE_VER );
		}
	}
	
	/**
	 * List pro widgets
	 *
	 * @since v3.1.4
	 */
	public function uae_promote_pro_elements( $config ) {

		if(defined( 'UAEL_VER' )){
			return $config;
		}
		

		$promotion_widgets = [];

		if ( isset( $config['promotionWidgets'] ) ) {
			$promotion_widgets = $config['promotionWidgets'];
		}
		$combine_array = array_merge( $promotion_widgets, 
		
		[
			[ 'name' => 'uael-advanced-heading', 'title' => __( 'Advanced Heading', 'header-footer-elementor' ), 'icon' => 'hfe-icon-advanced-heading', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-modal-popup', 'title' => __( 'Modal Popup', 'header-footer-elementor' ), 'icon' => 'hfe-icon-modal-popup', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-content-toggle', 'title' => __( 'Content Toggle', 'header-footer-elementor' ), 'icon' => 'hfe-icon-content-toggle', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-ba-slider', 'title' => __( 'Before After Slider', 'header-footer-elementor' ), 'icon' => 'hfe-icon-before-after-slider', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-business-hours', 'title' => __( 'Business Hours', 'header-footer-elementor' ), 'icon' => 'hfe-icon-business-hour', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-business-reviews', 'title' => __( 'Business Reviews', 'header-footer-elementor' ), 'icon' => 'hfe-icon-business-review', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-cf7-styler', 'title' => __( 'Contact Form 7 Styler', 'header-footer-elementor' ), 'icon' => 'hfe-icon-contact-form-7', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-countdown', 'title' => __( 'Countdown Timer', 'header-footer-elementor' ), 'icon' => 'hfe-icon-countdown-timer', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-dual-color-heading', 'title' => __( 'Dual Color Heading', 'header-footer-elementor' ), 'icon' => 'hfe-icon-dual-color-heading', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-fancy-heading', 'title' => __( 'Fancy Heading', 'header-footer-elementor' ), 'icon' => 'hfe-icon-fancy-heading', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-faq', 'title' => __( 'FAQ Schema', 'header-footer-elementor' ), 'icon' => 'hfe-icon-faq-schema', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-google-map', 'title' => __( 'Google Map', 'header-footer-elementor' ), 'icon' => 'hfe-icon-google-map', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-gf-styler', 'title' => __( 'Gravity Form Styler', 'header-footer-elementor' ), 'icon' => 'hfe-icon-gravity-form-styler', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-hotspot', 'title' => __( 'Hotspot', 'header-footer-elementor' ), 'icon' => 'hfe-icon-hotspot', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-how-to', 'title' => __( 'How-to Schema', 'header-footer-elementor' ), 'icon' => 'hfe-icon-how-to-schema', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-image-gallery', 'title' => __( 'Image Gallery', 'header-footer-elementor' ), 'icon' => 'hfe-icon-image-gallery', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-infobox', 'title' => __( 'Info Box', 'header-footer-elementor' ), 'icon' => 'hfe-icon-info-box', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-instagram-feed', 'title' => __( 'Instagram Feed', 'header-footer-elementor' ), 'icon' => 'hfe-icon-instagram-feed', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-login-form', 'title' => __( 'Login Form', 'header-footer-elementor' ), 'icon' => 'hfe-icon-login-form', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-marketing-button', 'title' => __( 'Marketing Button', 'header-footer-elementor' ), 'icon' => 'hfe-icon-marketing-button', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-buttons', 'title' => __( 'Multi Buttons', 'header-footer-elementor' ), 'icon' => 'hfe-icon-multi-button', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-nav-menu', 'title' => __( 'Navigation Menu', 'header-footer-elementor' ), 'icon' => 'hfe-icon-navigation-menu', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-offcanvas', 'title' => __( 'Off - Canvas', 'header-footer-elementor' ), 'icon' => 'hfe-icon-off-canvas', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-posts', 'title' => __( 'Posts', 'header-footer-elementor' ), 'icon' => 'hfe-icon-posts', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-price-table', 'title' => __( 'Price Box', 'header-footer-elementor' ), 'icon' => 'hfe-icon-price-box', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-price-list', 'title' => __( 'Price List', 'header-footer-elementor' ), 'icon' => 'hfe-icon-price-list', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-retina-image', 'title' => __( 'Retina Image', 'header-footer-elementor' ), 'icon' => 'hfe-icon-retina-image', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-social-share', 'title' => __( 'Social Share', 'header-footer-elementor' ), 'icon' => 'hfe-icon-social-share', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-table', 'title' => __( 'Table', 'header-footer-elementor' ), 'icon' => 'hfe-icon-table', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-table-of-contents', 'title' => __( 'Table of Contents', 'header-footer-elementor' ), 'icon' => 'hfe-icon-table-of-content', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-team-member', 'title' => __( 'Team Member', 'header-footer-elementor' ), 'icon' => 'hfe-icon-team-member', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-timeline', 'title' => __( 'Timeline', 'header-footer-elementor' ), 'icon' => 'hfe-icon-timeline', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-twitter', 'title' => __( 'Twitter Feed', 'header-footer-elementor' ), 'icon' => 'hfe-icon-twitter-feed-icon', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-registration-form', 'title' => __( 'User Registration Form', 'header-footer-elementor' ), 'icon' => 'hfe-icon-registration-form', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-video', 'title' => __( 'Video', 'header-footer-elementor' ), 'icon' => 'hfe-icon-video', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-video-gallery', 'title' => __( 'Video Gallery', 'header-footer-elementor' ), 'icon' => 'hfe-icon-video-gallery', 'categories' => '["hfe-widgets"]' ],
			[ 'name' => 'uael-welcome-music', 'title' => __( 'Welcome Music', 'header-footer-elementor' ), 'icon' => 'hfe-icon-welcome-music', 'categories' => '["hfe-widgets"]' ],
		]
		);

		$config['promotionWidgets'] = $combine_array;

		return $config;
	}

	/**
	 * Register module required js on elementor's action.
	 *
	 * @since 0.0.1
	 * @access public
	 * @return void
	 */
	public function register_widget_scripts() {
		$this->include_js_files();
	}

	/**
	 * Cart Fragments.
	 *
	 * Refresh the cart fragments.
	 *
	 * @since 1.5.0
	 * @param array $fragments Array of fragments.
	 * @access public
	 * @return array $fragments Array of fragments.
	 */
	public function wc_refresh_mini_cart_count( $fragments ) {

		$has_cart = is_a( WC()->cart, 'WC_Cart' );

		if ( ! $has_cart ) {
			return $fragments;
		}

		$cart_badge_count = ( null !== WC()->cart ) ? WC()->cart->get_cart_contents_count() : '';

		if ( null !== WC()->cart ) {

			$fragments['span.hfe-cart-count'] = '<span class="hfe-cart-count">' . WC()->cart->get_cart_contents_count() . '</span>';

			$fragments['span.elementor-button-text.hfe-subtotal'] = '<span class="elementor-button-text hfe-subtotal">' . WC()->cart->get_cart_subtotal() . '</span>';
		}

		$fragments['span.elementor-button-icon[data-counter]'] = '<span class="elementor-button-icon" data-counter="' . $cart_badge_count . '" aria-label="' . esc_attr__( 'Cart', 'header-footer-elementor' ) . '"><i class="eicon" aria-hidden="true"></i></span>';

		return $fragments;
	}

	/**
	 * Validate an HTML tag against a safe allowed list.
	 *
	 * @since 1.5.8
	 * @param string $tag specifies the HTML Tag.
	 * @access public
	 * @return string $tag specifies the HTML Tag.
	 */
	public static function validate_html_tag( $tag ) {

		// Check if Elementor method exists, else we will run custom validation code.
		if ( method_exists( 'Elementor\Utils', 'validate_html_tag' ) ) {
			return Utils::validate_html_tag( $tag );
		} else {
			$allowed_tags = [ 'article', 'aside', 'div', 'footer', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'main', 'nav', 'p', 'section', 'span' ];
			return in_array( strtolower( $tag ), $allowed_tags ) ? $tag : 'div';
		}
	}
}

/**
 * Initiate the class.
 */
Widgets_Loader::instance();
PK���\�DVܻ�/inc/widgets-manager/class-extensions-loader.phpnu�[���<?php
/**
 * Extensions loader for Header Footer Elementor.
 *
 * @package     HFE
 * @author      HFE
 * @copyright   Copyright (c) 2018, HFE
 * @link        http://brainstormforce.com/
 * @since       HFE 2.2.1
 */

namespace HFE\WidgetsManager;

use Elementor\Plugin;
use HFE\WidgetsManager\Base\HFE_Helper;

defined( 'ABSPATH' ) || exit;

/**
 * Set up Extensions Loader class
 */
class Extensions_Loader {

	/**
	 * Instance of Extensions_Loader.
	 *
	 * @since  2.2.1
	 * @var null
	 */
	private static $_instance = null;

	/**
	 * Get instance of Extensions_Loader
	 *
	 * @since  2.2.1
	 * @return Extensions_Loader
	 */
	public static function instance() {
		if ( ! isset( self::$_instance ) ) {
			self::$_instance = new self();
		}

		return self::$_instance;
	}

	/**
	 * Setup actions and filters.
	 *
	 * @since  2.2.1
	 * @access private
	 */
	private function __construct() {

		add_action( 'elementor/init', [ $this, 'elementor_init' ] );

	}

	/**
	 * Elementor Init.
	 *
	 * @since 2.2.1
	 */
	public function elementor_init() {

		$this->include_extensions_files();
	}

	/**
	 * Returns Script array.
	 *
	 * @return array()
	 * @since 1.3.0
	 */
	public static function get_extensions_list() {
               $extensions_list = [
                       'Scroll_To_Top'      => 'scroll-to-top',
                       'Reading_Progress_Bar' => 'reading-progress-bar',
               ];

		return $extensions_list;
	}

	/**
	 * Include Extensions files
	 *
	 * Load Extensions files
	 *
	 * @since 2.2.1
	 * @access public
	 * @return void
	 */
	public function include_extensions_files() {
		$extensions_list = $this->get_extensions_list();

		if ( ! empty( $extensions_list ) ) {
			foreach ( $extensions_list as $handle => $data ) {
				if ( HFE_Helper::is_widget_active( $handle ) ) {
					require_once HFE_DIR . '/inc/widgets-manager/extensions/class-' . $data . '.php';
				}
			}
		}
	}

}

/**
 * Initiate the class.
 */
Extensions_Loader::instance();
PK���\.�$+ZZ+inc/widgets-manager/base/widgets-config.phpnu�[���<?php
/**
 * HFEConfig.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Base;


use HFE\WidgetsManager\Base\Widgets_Config;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

// Include the necessary file to use get_plugins() function.
if ( ! function_exists( 'get_plugins' ) ) {
	require_once ABSPATH . 'wp-admin/includes/plugin.php';
}

/**
 * Class Widgets_Config.
 */
class Widgets_Config {

	/**
	 * Widget List
	 *
	 * @var widget_list
	 */
	public static $widget_list = null;

	/**
	 * Widget List
	 *
	 * @var widget_list
	 */
	public static $pro_widget_list = null;

	/**
	 * Get Widget List.
	 *
	 * @since 0.0.1
	 *
	 * @return array The Widget List.
	 */
	public static function get_widget_list() {

		self::$widget_list = [
			
				'Retina'               => [
				'slug'        => 'retina',
				'title'       => __( 'Retina Logo', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'retina', 'image', 'logo' ],
				'icon'        => 'hfe-icon-retina-logo',
				'title_url'   => '#',
				'default'     => true,
				'doc_url'     => 'https://ultimateelementor.com/docs/retina-logo-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'is_pro'      => false,
				'description' => __( 'Add a high-quality logo that looks sharp on any screen.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/retina-logo/',
				'category'    => 'content',
			],
				'Page_Title'           => [
				'slug'        => 'page-title',
				'title'       => __( 'Page Title', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'title', 'dynamic' ],
				'icon'        => 'hfe-icon-page-title',
				'title_url'   => '#',
				'default'     => true,
				'is_pro'      => false,
				'doc_url'     => 'https://ultimateelementor.com/docs/page-title-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'description' => __( 'Display the title of the current page dynamically.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/page-title/',
				'category'    => 'content',
			],
			'Site_Tagline'         => [
				'slug'        => 'hfe-site-tagline',
				'title'       => __( 'Site Tagline', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'site', 'tagline', 'tag' ],
				'icon'        => 'hfe-icon-site-tagline',
				'title_url'   => '#',
				'default'     => true,
				'is_pro'      => false,
				'doc_url'     => 'https://ultimateelementor.com/docs/site-tagline-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'description' => __( 'Display your site\'s tagline to enhance brand identity.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/site-tagline/',
				'category'    => 'content',
			],
			'Site_Title'           => [
				'slug'        => 'hfe-site-title',
				'title'       => __( 'Site Title', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'site', 'title', 'tag' ],
				'icon'        => 'hfe-icon-site-title',
				'title_url'   => '#',
				'default'     => true,
				'doc_url'     => 'https://ultimateelementor.com/docs/site-title-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'is_pro'      => false,
				'description' => __( 'Show your site’s name in a customizable style.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/site-title/',
				'category'    => 'content',
			],
			'Post_Info'            => [
				'slug'        => 'post-info-widget',
				'title'       => __( 'Post Info', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'post', 'info', 'meta', 'author', 'comments' ],
				'icon'        => 'hfe-icon-post-info',
				'title_url'   => '#',
				'default'     => true,
				'doc_url'     => 'https://ultimateelementor.com/docs/post-info-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'is_pro'      => false,
				'is_new'      => true,
				'description' => __( 'Show author, dates, and reading time with customizable styles.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/post-info/',
				'category'    => 'content',
			],
			'Basic_Posts'          => [
				'slug'        => 'hfe-basic-posts',
				'title'       => __( 'Basic Posts', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'posts', 'blog', 'grid', 'cards', 'basic', 'fast' ],
				'icon'        => 'hfe-icon-posts',
				'title_url'   => '#',
				'default'     => true,
				'doc_url'     => 'https://ultimateelementor.com/docs/basic-posts/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'is_pro'      => false,
				'is_new'      => true,
				'description' => __( 'Display posts in a fast, lightweight card layout with basic styling options.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/basic-posts/',
				'category'    => 'content',
			],
			'Breadcrumbs_Widget'   => [
				'slug'        => 'hfe-breadcrumbs-widget',
				'title'       => __( 'Breadcrumbs', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'breadcrumbs', 'links', 'path' ],
				'icon'        => 'hfe-icon-breadcrumbs',
				'title_url'   => '#',
				'default'     => true,
				'doc_url'     => 'https://ultimateelementor.com/docs/breadcrumbs-widgets/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'is_pro'      => false,
				'is_new'      => true,
				'description' => __( 'Add navigation links to guide visitors across your site.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/breadcrumbs/',
				'category'    => 'content',
			],
			'Scroll_To_Top'        => [
				'slug'        => 'scroll-to-top',
				'title'       => __( 'Scroll to Top', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'scroll', 'top', 'extension' ],
				'icon'        => 'hfe-icon-scroll-to-top',
				'title_url'   => '#',
				'default'     => true,
				'doc_url'     => 'https://ultimateelementor.com/docs/scroll-to-top-extension/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'is_pro'      => false,
				'is_new'      => true,
				'description' => __( 'Add a customizable button for quick, one-click top scrolling.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/scroll-to-top/',
				'category'    => 'extension',
			],
			'Cart'                 => [
				'slug'        => 'hfe-cart',
				'title'       => __( 'Cart', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'cart', 'shop', 'bag' ],
				'icon'        => 'hfe-icon-menu-cart',
				'title_url'   => '#',
				'default'     => true,
				'is_pro'      => false,
				'doc_url'     => 'https://ultimateelementor.com/docs/cart-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'description' => __( 'Show cart for seamless shopping experiences.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/cart/',
				'category'    => 'content',
			],
			'Copyright'            => [
				'slug'        => 'copyright',
				'title'       => __( 'Copyright', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'copyright', 'date' ],
				'icon'        => 'hfe-icon-copyright-widget',
				'title_url'   => '#',
				'default'     => true,
				'doc_url'     => 'https://ultimateelementor.com/docs/copyright-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'is_pro'      => false,
				'description' => __( 'Display customizable copyright text for your site\'s footer.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/copyright/',
				'category'    => 'content',
			],
			'Reading_Progress_Bar' => [
				'slug'        => 'reading-progress-bar',
				'title'       => __( 'Reading Progress Bar', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'reading', 'progress', 'extension' ],
				'icon'        => 'hfe-icon-progress-bar',
				'title_url'   => '#',
				'default'     => true,
				'doc_url'     => 'https://ultimateelementor.com/docs/reading-progress-bar-extension/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'is_pro'      => false,
				'is_new'      => true,
				'description' => __( 'Display a progress indicator as users read your content.', 'header-footer-elementor' ),
				'demo_url'    => '',
				'category'    => 'extension',
			],
			'Navigation_Menu'      => [
				'slug'        => 'navigation-menu',
				'title'       => __( 'Navigation Menu', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'navigation', 'menu', 'nav' ],
				'icon'        => 'hfe-icon-navigation-menu',
				'title_url'   => '#',
				'default'     => true,
				'doc_url'     => 'https://ultimateelementor.com/docs/navigation-menu/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'is_pro'      => false,
				'description' => __( 'Add stylish and functional menus for seamless site navigation.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/navigation/',
				'category'    => 'content',
			],
			'Site_Logo'            => [
				'slug'        => 'site-logo',
				'title'       => __( 'Site Logo', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'site', 'logo', 'image' ],
				'icon'        => 'hfe-icon-site-logo',
				'title_url'   => '#',
				'default'     => true,
				'is_pro'      => false,
				'doc_url'     => 'https://ultimateelementor.com/docs/site-logo-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'description' => __( 'Add your site\'s primary logo with flexible customization options.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/site-logo/',
				'category'    => 'content',
			],
			'Infocard'             => [
				'slug'        => 'hfe-infocard',
				'title'       => __( 'Info Card', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'icon', 'dynamic', 'box', 'card', 'cta' ],
				'icon'        => 'hfe-icon-infocard',
				'title_url'   => '#',
				'default'     => true,
				'is_pro'      => false,
				'doc_url'     => 'https://ultimateelementor.com/docs/info-card-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'description' => __( 'Add icon, heading, description & button/link — all in one widget.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/info-card/',
				'category'    => 'content',
			],
			'Search_Button'        => [
				'slug'        => 'hfe-search-button',
				'title'       => __( 'Search', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'search', 'title', 'dynamic' ],
				'icon'        => 'hfe-icon-search',
				'title_url'   => '#',
				'default'     => true,
				'is_pro'      => false,
				'doc_url'     => 'https://ultimateelementor.com/docs/search-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'description' => __( 'Add a search bar to help visitors find content easily.', 'header-footer-elementor' ),
				'demo_url'    => 'https://ultimateelementor.com/widgets/search/',
				'category'    => 'content',
			],
			'Woo_Product_Grid'        => [
				'slug'        => 'hfe-woo-product-grid',
				'title'       => __( 'Woo Products Grid', 'header-footer-elementor' ),
				'description' => __( 'Display WooCommerce products in a responsive grid layout with customizable styling options.', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'hfe', 'woo', 'products', 'grid' ],
				'icon'        => 'hfe-icon-woo-product',
				'title_url'   => '#',
				'default'     => true,
				'doc_url'     => 'https://ultimateelementor.com/docs/woo-products-grid-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'category'    => 'content',
				'is_pro'      => false,
				'demo_url'    => 'https://ultimateelementor.com/widgets/woo-product-grid/',
			],
			'Counter'                 => [
				'slug'        => 'hfe-counter',
				'title'       => __( 'Counter', 'header-footer-elementor' ),
				'description' => __( 'Display animated counters with customizable styling for showcasing statistics and achievements.', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'hfe', 'counter', 'number', 'stats', 'statistics', 'animate' ],
				'icon'        => 'hfe-icon-counter',
				'title_url'   => '#',
				'default'     => true,
				'doc_url'     => 'https://ultimateelementor.com/docs/counter-widget/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'category'    => 'content',
				'is_pro'      => false,
				'demo_url'    => 'https://ultimateelementor.com/widgets/counter/',
			],
			'Post_Duplicator'         => [
				'slug'        => 'hfe-post-duplicator',
				'title'       => __( 'Duplicator', 'header-footer-elementor' ),
				'description' => __( 'Adds one-click duplication support for posts and pages..', 'header-footer-elementor' ),
				'keywords'    => [ 'uael', 'hfe', 'duplicate', 'copy', 'clone', 'post', 'page' ],
				'icon'        => 'hfe-icon-cdcp',
				'title_url'   => '#',
				'default'     => false,
				'doc_url'     => 'https://ultimateelementor.com/docs/duplicator/?utm_source=plugin-editor&utm_medium=need-help-button&utm_campaign=uae-documentation',
				'category'    => 'extension',
				'is_pro'      => false,
				'demo_url'    => 'https://ultimateelementor.com/widgets/duplicator/',
			],
		];

		return apply_filters( 'hfe_widgets_data', self::$widget_list );
	}

	/**
	 * Get Widget List.
	 *
	 * @since 0.0.1
	 *
	 * @return array The Widget List.
	 */
	public static function get_pro_widget_list() {

		if ( null === self::$pro_widget_list ) {

			$integration_url = '';
			$post_url        = '';

			self::$pro_widget_list = [
				
				'Advanced_Heading'    => [
					'slug'        => 'uael-advanced-heading',
					'title'       => __( 'Advanced Heading', 'header-footer-elementor' ),
					'description' => __( 'Style headings with unique typography, separators, and highlights to grab attention.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'heading', 'advanced' ],
					'icon'        => 'hfe-icon-advanced-heading',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/advanced-heading/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '6',
					'category'    => 'content',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/advanced-heading/',
				],
				'Modal_Popup'         => [
					'slug'        => 'uael-modal-popup',
					'title'       => __( 'Modal Popup', 'header-footer-elementor' ),
					'description' => __( 'Create interactive pop-ups for promotions, forms, or announcements with flexible designs.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'modal', 'popup', 'lighbox' ],
					'icon'        => 'hfe-icon-modal-popup',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/modal-popup/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'content',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/modal-popup/',
				],
				'Infobox'             => [
					'slug'        => 'uael-infobox',
					'title'       => __( 'Info Box', 'header-footer-elementor' ),
					'description' => __( 'Showcase features, services, or highlights using eye-catching icons and text blocks.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'info', 'box', 'bar' ],
					'icon'        => 'hfe-icon-info-box',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/info-box/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '5',
					'category'    => 'content',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/info-box/',
				],
				'Posts'               => [
					'slug'         => 'uael-posts',
					'title'        => __( 'Posts', 'header-footer-elementor' ),
					'description'  => __( 'Display blog posts in advanced grid, carousel, or masonry layouts with full customization.', 'header-footer-elementor' ),
					'keywords'     => [ 'uael', 'post', 'grid', 'masonry', 'carousel', 'content grid', 'content' ],
					'icon'         => 'hfe-icon-posts',
					'title_url'    => '#',
					'default'      => true,
					'setting_url'  => $post_url,
					'setting_text' => __( 'Settings', 'header-footer-elementor' ),
					'doc_url'      => HFE_DOMAIN . 'docs-category/widgets/posts/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'     => 'content',
					'is_pro'       => true,
					'demo_url'     => HFE_DOMAIN . 'widgets/posts/',
				],
				'ContentToggle'       => [
					'slug'        => 'uael-content-toggle',
					'title'       => __( 'Content Toggle', 'header-footer-elementor' ),
					'description' => __( 'Organize content with switchable toggles that let visitors compare or explore easily.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'toggle', 'content', 'show', 'hide' ],
					'icon'        => 'hfe-icon-content-toggle',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/content-toggle/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'content',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/content-toggle/',
				],
				'BaSlider'            => [
					'slug'        => 'uael-ba-slider',
					'title'       => __( 'Before After Slider', 'header-footer-elementor' ),
					'description' => __( 'Visually compare images with a draggable slider that highlights differences instantly.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'slider', 'before', 'after' ],
					'icon'        => 'hfe-icon-before-after-slider',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/before-after-slider/?utm_source=uael-pro-dashboard&utm_medium=uael-editor-screen&utm_campaign=uael-pro-plugin',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/before-after-slider/',
				],
				'Business_Hours'      => [
					'slug'        => 'uael-business-hours',
					'title'       => __( 'Business Hours', 'header-footer-elementor' ),
					'description' => __( 'Display your opening hours in clean, stylish layouts that update your visitors clearly.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'business', 'hours', 'schedule' ],
					'icon'        => 'hfe-icon-business-hour',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/business-hours/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '5',
					'category'    => 'content',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/business-hours/',
				],
				'Business_Reviews'    => [
					'slug'         => 'uael-business-reviews',
					'keywords'     => [ 'uael', 'reviews', 'wp reviews', 'business', 'wp business', 'google', 'rating', 'social', 'yelp' ],
					'title'        => __( 'Business Reviews', 'header-footer-elementor' ),
					'description'  => __( 'Boost credibility by showcasing real customer reviews directly on your website.', 'header-footer-elementor' ),
					'icon'         => 'hfe-icon-business-review',
					'title_url'    => '#',
					'default'      => true,
					'doc_url'      => HFE_DOMAIN . 'docs-category/widgets/business-reviews/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'setting_url'  => $integration_url,
					'setting_text' => __( 'Settings', 'header-footer-elementor' ),
					'category'     => 'seo',
					'is_pro'       => true,
					'demo_url'     => HFE_DOMAIN . 'widgets/business-reviews/',
				],
				'CfStyler'            => [
					'slug'        => 'uael-cf7-styler',
					'title'       => __( 'Contact Form 7 Styler', 'header-footer-elementor' ),
					'description' => __( 'Style and customize Contact Form 7 with advanced controls for seamless branding.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'form', 'cf7', 'contact', 'styler' ],
					'icon'        => 'hfe-icon-contact-form-7',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/contact-form-7-styler/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'form',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/contact-form-7/',
				],
				'Countdown'           => [
					'slug'        => 'uael-countdown',
					'title'       => __( 'Countdown Timer', 'header-footer-elementor' ),
					'description' => __( 'Create urgency with timers for sales, launches, or events that drive quick action.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'count', 'timer', 'countdown' ],
					'icon'        => 'hfe-icon-countdown-timer',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/countdown-timer/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '6',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/countdown-timer/',
				],
				'Dual_Heading'        => [
					'slug'        => 'uael-dual-color-heading',
					'title'       => __( 'Dual Color Heading', 'header-footer-elementor' ),
					'description' => __( 'Highlight important words with dual-colored headings that make text more impactful.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'dual', 'heading', 'color' ],
					'icon'        => 'hfe-icon-dual-color-heading',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/dual-color-heading/?utm_source=uael-pro-dashboard&utm_medium=uael-editor-screen&utm_campaign=uael-pro-plugin',
					'preset'      => '5',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/dual-color-heading/',
				],
				'Fancy_Heading'       => [
					'slug'        => 'uael-fancy-heading',
					'title'       => __( 'Fancy Heading', 'header-footer-elementor' ),
					'description' => __( 'Design creative headings with animations, gradients, and stylish effects.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'fancy', 'heading', 'ticking', 'animate' ],
					'icon'        => 'hfe-icon-fancy-heading',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/fancy-heading/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '5',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/fancy-heading/',
				],
				'FAQ'                 => [
					'slug'        => 'uael-faq',
					'title'       => __( 'FAQ Schema', 'header-footer-elementor' ),
					'description' => __( 'Add FAQs that are SEO-ready and optimized for rich snippets in Google search.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'faq', 'schema', 'question', 'answer', 'accordion', 'toggle' ],
					'icon'        => 'hfe-icon-faq-schema',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/faq/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '5',
					'category'    => 'seo',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/faq/',
				],
				'GoogleMap'           => [
					'slug'         => 'uael-google-map',
					'title'        => __( 'Google Map', 'header-footer-elementor' ),
					'description'  => __( 'Embed interactive, customizable maps with markers, styles, and responsive layouts.', 'header-footer-elementor' ),
					'keywords'     => [ 'uael', 'google', 'map', 'location', 'address' ],
					'icon'         => 'hfe-icon-google-map',
					'title_url'    => '#',
					'default'      => true,
					'setting_url'  => $integration_url,
					'setting_text' => __( 'Settings', 'header-footer-elementor' ),
					'doc_url'      => HFE_DOMAIN . 'docs-category/widgets/google-maps/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'     => 'content',
					'is_pro'       => true,
					'demo_url'     => HFE_DOMAIN . 'widgets/google-maps/',
				],
				'GfStyler'            => [
					'slug'        => 'uael-gf-styler',
					'title'       => __( 'Gravity Form Styler', 'header-footer-elementor' ),
					'description' => __( 'Easily style Gravity Forms to match your brand with advanced design flexibility.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'form', 'gravity', 'gf', 'styler' ],
					'icon'        => 'hfe-icon-gravity-form-styler',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/gravity-form-styler/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'form',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/gravity-form-styler/',
				],
				'Hotspot'             => [
					'slug'        => 'uael-hotspot',
					'title'       => __( 'Hotspot', 'header-footer-elementor' ),
					'description' => __( 'Add interactive hotspots to images for tooltips, product highlights, or guided tours.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'hotspot', 'tour' ],
					'icon'        => 'hfe-icon-hotspot',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/hotspot/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/hotspots/',
				],
				'HowTo'               => [
					'slug'        => 'uael-how-to',
					'title'       => __( 'How-to Schema', 'header-footer-elementor' ),
					'description' => __( 'Display step-by-step instructions with SEO-friendly markup for better rankings.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'how-to', 'howto', 'schema', 'steps', 'supply', 'tools', 'steps', 'cost' ],
					'icon'        => 'hfe-icon-how-to-schema',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/how-to-schema/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'seo',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/how-to-schema/',
				],
				'Image_Gallery'       => [
					'slug'        => 'uael-image-gallery',
					'title'       => __( 'Image Gallery', 'header-footer-elementor' ),
					'description' => __( 'Showcase images in beautiful grids, carousels, and masonry layouts with lightbox.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'image', 'gallery', 'carousel', 'slider', 'layout' ],
					'icon'        => 'hfe-icon-image-gallery',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/image-gallery/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'content',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/image-gallery/',
				],
				'Instagram_Feed'      => [
					'slug'         => 'uael-instagram-feed',
					'title'        => __( 'Instagram Feed', 'header-footer-elementor' ),
					'description'  => __( 'Display your Instagram posts in responsive, stylish layouts that boost engagement.', 'header-footer-elementor' ),
					'keywords'     => [ 'insta', 'instagram', 'feed', 'social' ],
					'icon'         => 'hfe-icon-instagram-feed',
					'title_url'    => '#',
					'default'      => true,
					'setting_text' => __( 'Settings', 'header-footer-elementor' ),
					'setting_url'  => $integration_url,
					'doc_url'      => HFE_DOMAIN . 'docs-category/widgets/instagram-feed/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'     => 'creative',
					'is_pro'       => true,
					'demo_url'     => HFE_DOMAIN . 'widgets/instagram-feed/',
				],
				'LoginForm'           => [
					'slug'         => 'uael-login-form',
					'title'        => __( 'Login Form', 'header-footer-elementor' ),
					'description'  => __( 'Add sleek, customizable login forms with complete control over styling and fields.', 'header-footer-elementor' ),
					'keywords'     => [ 'uael', 'form', 'login', 'facebook', 'google', 'user', 'fblogin' ],
					'icon'         => 'hfe-icon-login-form',
					'title_url'    => '#',
					'default'      => true,
					'setting_text' => __( 'Settings', 'header-footer-elementor' ),
					'setting_url'  => $integration_url,
					'doc_url'      => HFE_DOMAIN . 'docs-category/widgets/login-form/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'       => '5',
					'category'     => 'form',
					'is_pro'       => true,
					'demo_url'     => HFE_DOMAIN . 'widgets/login-form/',
				],
				'Marketing_Button'    => [
					'slug'        => 'uael-marketing-button',
					'title'       => __( 'Marketing Button', 'header-footer-elementor' ),
					'description' => __( 'Drive conversions with stylish buttons featuring icons, dual text, and hover effects.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'button', 'marketing', 'call to action', 'cta' ],
					'icon'        => 'hfe-icon-marketing-button',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/marketing-button/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '5',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/marketing-button/',
				],
				'Buttons'             => [
					'slug'        => 'uael-buttons',
					'title'       => __( 'Multi Buttons', 'header-footer-elementor' ),
					'description' => __( 'Create multiple styled buttons side by side to offer clear, flexible actions.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'buttons', 'multi', 'call to action', 'cta' ],
					'icon'        => 'hfe-icon-multi-button',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/multi-buttons/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '3',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/multi-buttons/',
				],
				'Nav_Menu'            => [
					'slug'        => 'uael-nav-menu',
					'title'       => __( 'Navigation Menu', 'header-footer-elementor' ),
					'description' => __( 'Build advanced, responsive navigation menus with design flexibility and controls.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'menu', 'nav', 'navigation', 'mega' ],
					'icon'        => 'hfe-icon-navigation-menu',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/navigation-menu/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/navigation-menu/',
				],
				'Offcanvas'           => [
					'slug'        => 'uael-offcanvas',
					'title'       => __( 'Off - Canvas', 'header-footer-elementor' ),
					'description' => __( 'Add off-canvas menus, sidebars, or panels that slide in with smooth interactions.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'off', 'offcanvas', 'off-canvas', 'canvas', 'template', 'floating' ],
					'icon'        => 'hfe-icon-off-canvas',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/off-canvas/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/off-canvas/',
				],
				'Price_Table'         => [
					'slug'        => 'uael-price-table',
					'title'       => __( 'Price Box', 'header-footer-elementor' ),
					'description' => __( 'Showcase product or service pricing with modern layouts that highlight value.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'price', 'table', 'box', 'pricing' ],
					'icon'        => 'hfe-icon-price-box',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/price-box/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '5',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/price-box/',
				],
				'Price_List'          => [
					'slug'        => 'uael-price-list',
					'title'       => __( 'Price List', 'header-footer-elementor' ),
					'description' => __( 'Showcase services or menu items with stylish layouts that highlight details and pricing.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'price', 'list', 'pricing' ],
					'icon'        => 'hfe-icon-price-list',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/price-list/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '5',
					'category'    => 'content',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/price-list/',
				],
				'Retina_Image'        => [
					'slug'        => 'uael-retina-image',
					'title'       => __( 'Retina Image', 'header-footer-elementor' ),
					'description' => __( 'Deliver crisp, high-resolution images that look perfect on every device and screen.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'retina', 'image', '2ximage' ],
					'icon'        => 'hfe-icon-retina-image',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/retina-image/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/retina-image/',
				],
				'SocialShare'         => [
					'slug'         => 'uael-social-share',
					'title'        => __( 'Social Share', 'header-footer-elementor' ),
					'description'  => __( 'Boost engagement by allowing visitors to easily share content across social networks.', 'header-footer-elementor' ),
					'keywords'     => [ 'uael', 'sharing', 'social', 'icon', 'button', 'like' ],
					'icon'         => 'hfe-icon-social-share',
					'title_url'    => '#',
					'default'      => true,
					'setting_text' => __( 'Settings', 'header-footer-elementor' ),
					'setting_url'  => $integration_url,
					'doc_url'      => HFE_DOMAIN . 'docs-category/widgets/social-share/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'       => '5',
					'category'     => 'creative',
					'is_pro'       => true,
					'demo_url'     => HFE_DOMAIN . 'widgets/social-share/',
				],
				'Table'               => [
					'slug'        => 'uael-table',
					'title'       => __( 'Table', 'header-footer-elementor' ),
					'description' => __( 'Display data in responsive, customizable tables with complete design flexibility.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'table', 'sort', 'search' ],
					'icon'        => 'hfe-icon-table',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/table/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'content',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/table/',
				],
				'Table_of_Contents'   => [
					'slug'        => 'uael-table-of-contents',
					'title'       => __( 'Table of Contents', 'header-footer-elementor' ),
					'description' => __( 'Improve navigation with auto-generated tables of contents for long or complex pages.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'table of contents', 'content', 'list', 'toc', 'index' ],
					'icon'        => 'hfe-icon-table-of-content',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/table-of-contents/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'seo',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/table-of-contents/',
				],
				'Team_Member'         => [
					'slug'        => 'uael-team-member',
					'title'       => __( 'Team Member', 'header-footer-elementor' ),
					'description' => __( 'Introduce your team with clean profile cards that showcase names, roles, and socials.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'team', 'member' ],
					'icon'        => 'hfe-icon-team-member',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/team-member/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '5',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/team-member/',
				],
				'Timeline'            => [
					'slug'        => 'uael-timeline',
					'title'       => __( 'Timeline', 'header-footer-elementor' ),
					'description' => __( 'Present events, milestones, or stories in elegant horizontal or vertical timeline designs.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'timeline', 'history', 'scroll', 'post', 'content timeline' ],
					'icon'        => 'hfe-icon-timeline',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/timeline/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'      => '5',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/timeline/',
				],
				'Twitter'             => [
					'slug'         => 'uael-twitter',
					'title'        => __( 'Twitter Feed', 'header-footer-elementor' ),
					'description'  => __( 'Embed your live Twitter feed with customizable layouts that match your site\'s style.', 'header-footer-elementor' ),
					'keywords'     => [ 'uael', 'twitter' ],
					'icon'         => 'hfe-icon-twitter-feed-icon',
					'title_url'    => '#',
					'setting_url'  => $integration_url,
					'setting_text' => __( 'Settings', 'header-footer-elementor' ),
					'default'      => true,
					'doc_url'      => HFE_DOMAIN . 'docs-category/widgets/twitter-feed/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'     => 'creative',
					'is_pro'       => true,
					'demo_url'     => HFE_DOMAIN . 'widgets/twitter-feed/',
				],
				'RegistrationForm'    => [
					'slug'         => 'uael-registration-form',
					'title'        => __( 'User Registration Form', 'header-footer-elementor' ),
					'description'  => __( 'Build sleek registration forms with advanced controls and a user-friendly experience.', 'header-footer-elementor' ),
					'keywords'     => [ 'uael', 'form', 'register', 'registration', 'user' ],
					'icon'         => 'hfe-icon-registration-form',
					'title_url'    => '#',
					'default'      => true,
					'setting_url'  => $integration_url,
					'setting_text' => __( 'Settings', 'header-footer-elementor' ),
					'doc_url'      => HFE_DOMAIN . 'docs-category/widgets/user-registration-form/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'preset'       => '5',
					'category'     => 'form',
					'is_pro'       => true,
					'demo_url'     => HFE_DOMAIN . 'widgets/user-registration-form/',
				],
				'Video'               => [
					'slug'        => 'uael-video',
					'title'       => __( 'Video', 'header-footer-elementor' ),
					'description' => __( 'Embed responsive videos from YouTube, Vimeo, or self-hosted sources with ease.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'video', 'youtube', 'vimeo', 'wistia', 'sticky', 'drag', 'float', 'subscribe' ],
					'icon'        => 'hfe-icon-video',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/video/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'content',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/video/',
				],
				'Video_Gallery'       => [
					'slug'        => 'uael-video-gallery',
					'title'       => __( 'Video Gallery', 'header-footer-elementor' ),
					'description' => __( 'Showcase multiple videos in engaging grid or carousel layouts with lightbox options.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'video', 'youtube', 'wistia', 'gallery', 'vimeo' ],
					'icon'        => 'hfe-icon-video-gallery',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/video-gallery/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'content',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/video-gallery/',
				],
				'Welcome_Music'       => [
					'slug'        => 'uael-welcome-music',
					'title'       => __( 'Welcome Music', 'header-footer-elementor' ),
					'description' => __( 'Enhance user experience by playing welcome music or audio when visitors land.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'christmas', 'music', 'background', 'audio', 'welcome' ],
					'icon'        => 'hfe-icon-welcome-music',
					'title_url'   => '#',
					'default'     => false,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/welcome-music/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'creative',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/welcome-music/',
				],
				'Woo_Add_To_Cart'     => [
					'slug'        => 'uael-woo-add-to-cart',
					'title'       => __( 'Woo - Add To Cart', 'header-footer-elementor' ),
					'description' => __( 'Add customizable "Add to Cart" buttons anywhere for seamless shopping experiences.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'woo', 'cart', 'add to cart', 'products' ],
					'icon'        => 'hfe-icon-woo-add-to-cart',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/woo-add-to-cart/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'woo',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/woo-add-to-cart/',
				],
				'Woo_Categories'      => [
					'slug'        => 'uael-woo-categories',
					'title'       => __( 'Woo - Categories', 'header-footer-elementor' ),
					'description' => __( 'Display WooCommerce categories in stylish grids, lists, or carousel layouts.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'woo', 'categories', 'taxomonies', 'products' ],
					'icon'        => 'hfe-icon-woo-category',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/woo-categories/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'woo',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/woo-categories/',
				],
				'Woo_Checkout'        => [
					'slug'        => 'uael-woo-checkout',
					'title'       => __( 'Woo - Checkout', 'header-footer-elementor' ),
					'description' => __( 'Simplify checkout with beautifully styled forms that match your brand identity.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'woo', 'checkout', 'page', 'check' ],
					'icon'        => 'hfe-icon-woo-checkout-1',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/woo-checkout/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'woo',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/woo-checkout/',
				],
				'Woo_Mini_Cart'       => [
					'slug'        => 'uael-mini-cart',
					'title'       => __( 'Woo - Mini Cart', 'header-footer-elementor' ),
					'description' => __( 'Show a quick mini cart with product previews and controls in a sleek dropdown.', 'header-footer-elementor' ),
					'keywords'    => [ 'woo', 'woocommerce', 'cart', 'mini', 'minicart' ],
					'icon'        => 'hfe-icon-woo-mini-cart',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/woo-mini-cart/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'woo',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/woo-mini-cart/',
				],
				'Woo_Products'        => [
					'slug'        => 'uael-woo-products',
					'title'       => __( 'Woo - Products', 'header-footer-elementor' ),
					'description' => __( 'Display WooCommerce products in customizable grids, sliders, or catalog layouts.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'woo', 'products' ],
					'icon'        => 'hfe-icon-woo-product',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/woo-products/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'woo',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/woo-products/',
				],
				'FfStyler'            => [
					'slug'        => 'uael-ff-styler',
					'title'       => __( 'WP Fluent Forms Styler', 'header-footer-elementor' ),
					'description' => __( 'Easily design and style Fluent Forms to perfectly align with your website branding.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'fluent', 'forms', 'wp' ],
					'icon'        => 'hfe-icon-fluent-form-styler',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/wp-fluent-forms-styler/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'form',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/wp-fluent-forms-styler/',
				],
				'WpfStyler'           => [
					'slug'        => 'uael-wpf-styler',
					'title'       => __( 'WPForms Styler', 'header-footer-elementor' ),
					'description' => __( 'Customize WPForms with advanced styling controls for a seamless brand experience.', 'header-footer-elementor' ),
					'keywords'    => [ 'uael', 'form', 'wp', 'wpform', 'styler' ],
					'icon'        => 'hfe-icon-wp-form-styler',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/wpforms-styler/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'form',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/wpforms-styler/',
				],
				'DisplayConditions'   => [
					'slug'         => 'uael-display-conditions',
					'title'        => __( 'Display Conditions', 'header-footer-elementor' ),
					'description'  => __( 'Control widget visibility with display rules based on users, devices, and pages.', 'header-footer-elementor' ),
					'keywords'     => [],
					'icon'         => 'hfe-icon-display-conditions',
					'title_url'    => '#',
					'default'      => true,
					'setting_text' => __( 'Settings', 'header-footer-elementor' ),
					'setting_url'  => $integration_url,
					'doc_url'      => HFE_DOMAIN . 'docs-category/widgets/display-conditions/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'     => 'extension',
					'is_pro'       => true,
					'demo_url'     => HFE_DOMAIN . 'widgets/display-conditions/',
				],
				'Particles'           => [
					'slug'        => 'uael-particles',
					'title'       => __( 'Particle Backgrounds', 'header-footer-elementor' ),
					'description' => __( 'Add dynamic, animated backgrounds to sections and columns.', 'header-footer-elementor' ),
					'keywords'    => [],
					'icon'        => 'hfe-icon-particles',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/particles-background-extension/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'extension',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/particle-backgrounds/',
				],
				'PartyPropzExtension' => [
					'slug'        => 'uael-party-propz-extension',
					'title'       => __( 'Party Propz', 'header-footer-elementor' ),
					'description' => __( 'Decorate your site with festive seasonal elements easily.', 'header-footer-elementor' ),
					'keywords'    => [],
					'icon'        => 'hfe-icon-party-propz',
					'title_url'   => '#',
					'default'     => false,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/party-propz-extensions/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'extension',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/party-propz/',
				],
				'SectionDivider'      => [
					'slug'        => 'uael-section-divider',
					'title'       => __( 'Shape Divider', 'header-footer-elementor' ),
					'description' => __( 'Add new attractive shape dividers to Elementor sections.', 'header-footer-elementor' ),
					'keywords'    => [],
					'icon'        => 'hfe-icon-shape-divider',
					'title_url'   => '#',
					'default'     => false,
					'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/uae-shape-dividers/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'extension',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/uae-shape-dividers/',
				],
				'Cross_Domain'        => [
					'slug'        => 'uael-cross-domain-copy-paste',
					'title'       => __( 'Cross-Site Copy Paste', 'header-footer-elementor' ),
					'description' => __( 'Easily copy and paste styled sections or widgets across multiple websites.', 'header-footer-elementor' ),
					'keywords'    => [],
					'icon'        => 'hfe-icon-cdcp',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/features/cross-site-copy-paste/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'feature',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/cross-site-copy-paste/',
				],
				'Presets'             => [
					'slug'        => 'uael-presets',
					'title'       => __( 'Presets', 'header-footer-elementor' ),
					'description' => __( 'Save time with ready-made design presets that give widgets a quick, professional look.', 'header-footer-elementor' ),
					'keywords'    => [],
					'icon'        => 'hfe-icon-presets',
					'title_url'   => '#',
					'default'     => true,
					'doc_url'     => HFE_DOMAIN . 'docs-category/features/presets/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
					'category'    => 'feature',
					'is_pro'      => true,
					'demo_url'    => HFE_DOMAIN . 'widgets/presets/',
				],
			];

			if ( class_exists( 'Caldera_Forms' ) || class_exists( 'Caldera_Forms_Forms' ) ) {
				$forms = \Caldera_Forms_Forms::get_forms( true );
				if ( ! empty( $forms ) ) {
					$caldera = [
						'CafStyler' => [
							'slug'        => 'uael-caf-styler',
							'title'       => __( 'Caldera Form Styler', 'header-footer-elementor' ),
							'description' => __( 'Style and enhance Caldera Forms to fit your site.', 'header-footer-elementor' ),
							'keywords'    => [ 'uael', 'caldera', 'form', 'styler' ],
							'icon'        => 'hfe-icon-wp-form-styler',
							'title_url'   => '#',
							'default'     => true,
							'doc_url'     => HFE_DOMAIN . 'docs-category/widgets/caldera-form-styler/?utm_source=uael-pro-dashboard&utm_medium=uael-menu-page&utm_campaign=uael-pro-plugin',
							'category'    => 'form',
							'is_pro'      => true,
						],
					];
	
					self::$pro_widget_list = array_merge_recursive( self::$pro_widget_list, $caldera );
				}
			}
		}

		return self::$pro_widget_list;
	}

	/**
	 * Get All Widgets.
	 *
	 * @since 0.0.1
	 *
	 * @return array The combined Widget List.
	 */
	public static function get_all_widgets() {
		return self::get_widget_list() + self::get_pro_widget_list(); // Use + operator to merge associative arrays.
	}

   
	/**
	 * Function for Astra Pro white labels with defaults.
	 *
	 * @since 2.2.1
	 * @return array
	 */
	public static function get_white_label() {
		$white_labels = is_callable( 'Astra_Admin_Helper::get_admin_settings_option' ) ? \Astra_Admin_Helper::get_admin_settings_option( '_astra_ext_white_label', true ) : [];

		$theme_name = ! empty( $white_labels['astra']['name'] ) ? $white_labels['astra']['name'] : 'Astra Theme';

		return [
			'theme_name'  => $theme_name,
			/* translators: %s: theme name */
			'description' => ! empty( $white_labels['astra']['description'] ) ? $white_labels['astra']['description'] : esc_html( sprintf( __( 'Free & Fastest WordPress Theme.', 'header-footer-elementor' ), esc_html( $theme_name ) ) ),
			'theme_icon'  => ! empty( $white_labels['astra']['icon'] ) ? $white_labels['astra']['icon'] : '',
			'author_url'  => ! empty( $white_labels['astra']['author_url'] ) ? $white_labels['astra']['author_url'] : 'https://wpastra.com/',
		];
	}

	/**
	 * List of plugins that we propose to install.
	 *
	 * @since 1.6.0
	 *
	 * @return array
	 */
	public static function get_bsf_plugins() {

		$white_labels = self::get_white_label();

		$images_url = HFE_URL . 'assets/images/settings/';

		$plugins = [

				'surerank/surerank.php'                        => [
				'icon'         => $images_url . 'surerank.svg',
				'type'         => 'plugin',
				'name'         => esc_html__( 'Boost Your Traffic with Easy SEO Optimization!', 'header-footer-elementor' ),
				'desc'         => esc_html__( 'Rank higher with effortless SEO optimization. SureRank offers a simple, clutter-free interface with lightweight code, minimal setup, clear meta and schema settings, and smart content optimization that actually makes sense, helping you grow your traffic easily.', 'header-footer-elementor' ),
				'wporg'        => 'https://wordpress.org/plugins/surerank/',
				'url'          => 'https://downloads.wordpress.org/plugin/surerank.zip',
				'siteurl'      => 'https://surerank.com/',
				'isFree'       => true,
				'slug'         => 'surerank',
				'status'       => self::get_plugin_status( 'surerank/surerank.php' ),
				'settings_url' => admin_url( 'admin.php?page=surerank_onboarding' ),
			],
			'surecart/surecart.php'                        => [
				'icon'         => $images_url . 'surecart.svg',
				'type'         => 'plugin',
				'name'         => esc_html__( 'Sell Products Effortlessly with SureCart!', 'header-footer-elementor' ),
				'desc'         => esc_html__( 'Sell your products effortlessly with a modern, flexible eCommerce system. SureCart makes it easy to set up one-click checkout, manage subscriptions, recover abandoned carts, and collect secure payments, helping you launch and grow your online store confidently.', 'header-footer-elementor' ),
				'wporg'        => 'https://wordpress.org/plugins/surecart/',
				'url'          => 'https://downloads.wordpress.org/plugin/surecart.zip',
				'siteurl'      => 'https://surecart.com/',
				'isFree'       => true,
				'slug'         => 'surecart',
				'status'       => self::get_plugin_status( 'surecart/surecart.php' ),
				'settings_url' => admin_url( 'admin.php?page=sc-getting-started' ),
			],
			'sureforms/sureforms.php'                      => [
				'icon'         => $images_url . 'sureforms.svg',
				'type'         => 'plugin',
				'name'         => esc_html__( 'Build Powerful Forms in Minutes with SureForms!', 'header-footer-elementor' ),
				'desc'         => esc_html__( 'Build powerful forms in minutes without complexity. SureForms lets you create contact forms, payment forms, and surveys using an AI-assisted, clean interface with conversational layouts, conditional logic, payment collection, and mobile optimization for a seamless experience.', 'header-footer-elementor' ),
				'wporg'        => 'https://wordpress.org/plugins/sureforms/',
				'url'          => 'https://downloads.wordpress.org/plugin/sureforms.zip',
				'siteurl'      => 'https://sureforms.com/',
				'slug'         => 'sureforms',
				'isFree'       => true,
				'status'       => self::get_plugin_status( 'sureforms/sureforms.php' ),
				'settings_url' => admin_url( 'admin.php?page=sureforms_menu' ),
			],
			'presto-player/presto-player.php'              => [
				'icon'         => $images_url . 'pplayer.svg',
				'type'         => 'plugin',
				'name'         => esc_html__( 'Add Engaging Videos Seamlessly with Presto Player!', 'header-footer-elementor' ),
				'desc'         => html_entity_decode( esc_html__( 'Add engaging videos seamlessly in minutes without complexity. Presto Player lets you enhance your website with videos using branding, chapters, and call-to-actions while providing fast load times, detailed analytics, and user-friendly controls for a seamless viewing experience.', 'header-footer-elementor' ) ),
				'wporg'        => 'https://wordpress.org/plugins/presto-player/',
				'url'          => 'https://downloads.wordpress.org/plugin/presto-player.zip',
				'siteurl'      => 'https://prestoplayer.com/',
				'slug'         => 'presto-player',
				'isFree'       => true,
				'status'       => self::get_plugin_status( 'presto-player/presto-player.php' ),
				'settings_url' => admin_url( 'edit.php?post_type=pp_video_block' ),
			],
			'suretriggers/suretriggers.php'                => [
				'icon'         => $images_url . 'OttoKit-Symbol-Primary.svg',
				'type'         => 'plugin',
				'name'         => esc_html__( 'Automate Your Workflows Easily with Ottokit!', 'header-footer-elementor' ),
				'desc'         => esc_html__( 'Automate workflows effortlessly in minutes without complexity. Ottokit lets you connect your WordPress site with web apps to automate tasks, sync data, and run actions using a clean visual builder with scheduling, filters, conditions, and webhooks for a seamless experience.', 'header-footer-elementor' ),
				'wporg'        => 'https://wordpress.org/plugins/suretriggers/',
				'url'          => 'https://downloads.wordpress.org/plugin/suretriggers.zip',
				'siteurl'      => 'https://ottokit.com/',
				'slug'         => 'suretriggers',
				'isFree'       => true,
				'status'       => self::get_plugin_status( 'suretriggers/suretriggers.php' ),
				'settings_url' => admin_url( 'admin.php?page=suretriggers' ),
			],

		];

		foreach ( $plugins as $key => $plugin ) {
			// Check if it's a plugin and is active.
			if ( 'plugin' === $plugin['type'] && is_plugin_active( $key ) ) {
				unset( $plugins[ $key ] );
			}

			if ( 'plugin' === $plugin['type'] && 'astra-sites/astra-sites.php' === $key ) {
				$st_pro_status = self::get_plugin_status( 'astra-pro-sites/astra-pro-sites.php' );
				if ( 'Installed' === $st_pro_status || 'Activated' === $st_pro_status ) {
					unset( $plugins[ $key ] );
				}
			}

			if ( 'theme' === $plugin['type'] ) {
				$current_theme = wp_get_theme();
				if ( $current_theme->get_stylesheet() === $plugin['slug'] ) {
					unset( $plugins[ $key ] );
				}
			}
		}

		return $plugins;
	}

	/**
	 * List of plugins that we propose to install.
	 *
	 * @since 1.6.0
	 *
	 * @return array
	 */
	public static function get_recommended_bsf_plugins() {

		$white_labels = self::get_white_label();

		$images_url = HFE_URL . 'assets/images/settings/';

		$recommended_plugins = [


				'astra-sites/astra-sites.php'                  => [
				'icon'         => $images_url . 'stemplates.svg',
				'type'         => 'plugin',
				'name'         => esc_html__( 'Starter Templates', 'header-footer-elementor' ),
				'desc'         => esc_html__( 'Quickly launch websites with 300+ professionally designed Elementor templates.', 'header-footer-elementor' ),
				'wporg'        => 'https://wordpress.org/plugins/astra-sites/',
				'url'          => 'https://downloads.wordpress.org/plugin/astra-sites.zip',
				'siteurl'      => 'https://startertemplates.com/',
				'slug'         => 'astra-sites',
				'isFree'       => true,
				'status'       => self::get_plugin_status( 'astra-sites/astra-sites.php' ),
				'settings_url' => admin_url( 'admin.php?page=starter-templates' ),
			],
			'surerank/surerank.php'                        => [
				'icon'         => $images_url . 'surerank_extend.svg',
				'type'         => 'plugin',
				'name'         => esc_html__( 'SureRank', 'header-footer-elementor' ),
				'desc'         => esc_html__( 'Powerful, lightweight SEO plugin to manage search and social previews', 'header-footer-elementor' ),
				'wporg'        => 'https://wordpress.org/plugins/surerank/',
				'url'          => 'https://downloads.wordpress.org/plugin/surerank.zip',
				'siteurl'      => 'https://surerank.com/',
				'isFree'       => true,
				'slug'         => 'surerank',
				'status'       => self::get_plugin_status( 'surerank/surerank.php' ),
				'settings_url' => admin_url( 'admin.php?page=surerank_onboarding' ),
			],
			'sureforms/sureforms.php'                      => [
				'icon'         => $images_url . 'sureforms_extend.svg',
				'type'         => 'plugin',
				'name'         => esc_html__( 'SureForms', 'header-footer-elementor' ),
				'desc'         => esc_html__( 'Create high-converting forms with ease.', 'header-footer-elementor' ),
				'wporg'        => 'https://wordpress.org/plugins/sureforms/',
				'url'          => 'https://downloads.wordpress.org/plugin/sureforms.zip',
				'siteurl'      => 'https://sureforms.com/',
				'slug'         => 'sureforms',
				'isFree'       => true,
				'status'       => self::get_plugin_status( 'sureforms/sureforms.php' ),
				'settings_url' => admin_url( 'admin.php?page=sureforms_menu' ),
			],
			'suretriggers/suretriggers.php'                => [
				'icon'         => $images_url . 'ottokit.svg',
				'type'         => 'plugin',
				'name'         => esc_html__( 'OttoKit', 'header-footer-elementor' ),
				'desc'         => esc_html__( 'Automate WordPress tasks effortlessly.', 'header-footer-elementor' ),
				'wporg'        => 'https://wordpress.org/plugins/suretriggers/',
				'url'          => 'https://downloads.wordpress.org/plugin/suretriggers.zip',
				'siteurl'      => 'https://ottokit.com/',
				'slug'         => 'suretriggers',
				'isFree'       => true,
				'status'       => self::get_plugin_status( 'suretriggers/suretriggers.php' ),
				'settings_url' => admin_url( 'admin.php?page=suretriggers' ),
			],

		];

		foreach ( $recommended_plugins as $key => $plugin ) {
			// Check if it's a plugin and is active.
			if ( 'plugin' === $plugin['type'] && is_plugin_active( $key ) ) {
				unset( $recommended_plugins[ $key ] );
			}

			if ( 'plugin' === $plugin['type'] && 'astra-sites/astra-sites.php' === $key ) {
				$st_pro_status = self::get_plugin_status( 'astra-pro-sites/astra-pro-sites.php' );
				if ( 'Installed' === $st_pro_status || 'Activated' === $st_pro_status ) {
					unset( $recommended_plugins[ $key ] );
				}
			}

			if ( 'theme' === $plugin['type'] ) {
				$current_theme = wp_get_theme();
				if ( $current_theme->get_stylesheet() === $plugin['slug'] ) {
					unset( $recommended_plugins[ $key ] );
				}
			}
		}

		return $recommended_plugins;
	}

	/**
	 * Get plugin status
	 *
	 * @since 0.0.1
	 *
	 * @param  string $plugin_init_file Plugin init file.
	 * @return string
	 */
	public static function get_plugin_status( $plugin_init_file ) {

		$installed_plugins = get_plugins();

		if ( ! isset( $installed_plugins[ $plugin_init_file ] ) ) {
			return 'Install';
		} elseif ( is_plugin_active( $plugin_init_file ) ) {
			return 'Activated';
		} else {
			return 'Installed';
		}
	}
	/**
	 * Get the status of a theme.
	 *
	 * @param string $theme_slug The slug of the theme.
	 * @return string The theme status: 'Activated', 'Installed', or 'Install'.
	 *
	 * @since 0.0.1
	 */
	public static function get_theme_status( $theme_slug ) {
		$installed_themes = wp_get_themes();
	
		// Check if the theme is installed.
		if ( isset( $installed_themes[ $theme_slug ] ) ) {
			$current_theme = wp_get_theme();
		
			// Check if the current theme slug matches the provided theme slug.
			if ( $current_theme->get_stylesheet() === $theme_slug ) {
				return 'Activated'; // Theme is active.
			} else {
				return 'Installed'; // Theme is installed but not active.
			}
		} else {
			return 'Install'; // Theme is not installed at all.
		}
	}



}
PK���\���(B	B	*inc/widgets-manager/base/common-widget.phpnu�[���<?php
/**
 * HFECommon Widget.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Base;

use Elementor\Widget_Base;
use HFE\WidgetsManager\Base\HFE_Helper;
use Elementor\Controls_Manager;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Common Widget
 *
 * @since 0.0.1
 */
abstract class Common_Widget extends Widget_Base {

	/**
	 * Get categories
	 *
	 * @since 0.0.1
	 */
	public function get_categories() {
		return [ 'hfe-widgets' ];
	}

	/**
	 * Get widget slug
	 *
	 * @param string $slug Module slug.
	 * @since 0.0.1
	 */
	public function get_widget_slug( $slug = '' ) {
		return HFE_Helper::get_widget_slug( $slug );
	}

	/**
	 * Get widget title
	 *
	 * @param string $slug Module slug.
	 * @since 0.0.1
	 */
	public function get_widget_title( $slug = '' ) {
		return HFE_Helper::get_widget_title( $slug );
	}

	/**
	 * Get widget icon
	 *
	 * @param string $slug Module slug.
	 * @since 0.0.1
	 */
	public function get_widget_icon( $slug = '' ) {
		return HFE_Helper::get_widget_icon( $slug );
	}

	/**
	 * Get widget keywords
	 *
	 * @param string $slug Module slug.
	 * @since 1.5.1
	 */
	public function get_widget_keywords( $slug = '' ) {
		return HFE_Helper::get_widget_keywords( $slug );
	}

	/**
	 * Get widget upsale data.
	 *
	 * Retrieve the widget promotion data.
	 *
	 * @since 2.5.0
	 * @access protected
	 *
	 * @return array|null Widget promotion data.
	 */
	protected function get_upsale_data() {
		return null;
	}

	/**
	 * Is internal link
	 *
	 * @since 1.0.0
	 */
	public function is_internal_links() {
		return HFE_Helper::is_internal_links();
	}

	/**
	 * Get widget help URL
	 *
	 * Retrieve the widget help URL for third-party widgets.
	 * Elementor uses get_custom_help_url() for widgets outside the Elementor namespace.
	 *
	 * @since 2.4.4
	 * @access public
	 *
	 * @return string Widget help URL.
	 */
	public function get_custom_help_url() {
		return HFE_Helper::get_widget_help_url( $this->get_name() );
	}

	/**
	 * Get widget help URL (legacy method)
	 *
	 * Retrieve the widget help URL.
	 * This method is kept for backward compatibility.
	 *
	 * @since 2.4.4
	 * @access public
	 *
	 * @return string Widget help URL.
	 */
	public function get_help_url() {
		// For third-party widgets, Elementor uses get_custom_help_url()
		return $this->get_custom_help_url();
	}
}
PK���\Ka�
]](inc/widgets-manager/base/module-base.phpnu�[���<?php
/**
 * HFE Module Base.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Base;

use HFE\WidgetsManager\Base\HFE_Helper;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Module Base
 *
 * @since 2.2.1
 */
abstract class Module_Base {

	/**
	 * Reflection
	 *
	 * @var reflection
	 */
	private $reflection;

	/**
	 * Reflection
	 *
	 * @var instances
	 */
	protected static $instances = [];

	/**
	 * Get Name
	 *
	 * @since 2.2.1
	 */
	abstract public function get_name();

	/**
	 * Class name to Call
	 *
	 * @since 2.2.1
	 */
	public static function class_name() {
		return get_called_class();
	}

	/**
	 * Check if this is a widget.
	 *
	 * @since 1.12.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public function is_widget() {
		return true;
	}

	/**
	 * Class instance
	 *
	 * @since 2.2.1
	 *
	 * @return static
	 */
	public static function instance() {
		$class_name = static::class_name();
		if ( empty( static::$instances[ $class_name ] ) ) {
			static::$instances[ $class_name ] = new static();
		}

		return static::$instances[ $class_name ];
	}

	/**
	 * Constructor
	 */
	public function __construct() {
		$this->reflection = new \ReflectionClass( $this );

		add_action( 'elementor/widgets/register', [ $this, 'init_widgets' ] );
	}

	/**
	 * Init Widgets
	 *
	 * @since 2.2.1
	 */
	public function init_widgets() {

		$widget_manager = \Elementor\Plugin::instance()->widgets_manager;

		foreach ( $this->get_widgets() as $widget ) {
			if ( HFE_Helper::is_widget_active( $widget ) ) {
				$class_name = $this->reflection->getNamespaceName() . '\\' . ucfirst( $widget );

				if ( $this->is_widget() ) {
					$widget_manager->register( new $class_name() );
				}
			}
		}
	}

	/**
	 * Get Widgets
	 *
	 * @since 2.2.1
	 *
	 * @return array
	 */
	public function get_widgets() {
		return [];
	}
}
PK���\	�w"�2�2'inc/widgets-manager/base/hfe-helper.phpnu�[���<?php
/**
 * HFEHelper.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

use Elementor\Plugin;
use Elementor\Utils;
use Elementor\Widget_Base;
use HFE\WidgetsManager\Base\Widgets_Config;
use Elementor\Modules\Usage\Module as Usage_Module;

/**
 * Class HFE_Helper.
 */
class HFE_Helper {

	/**
	 * Widget Options
	 *
	 * @var widget_options
	 */
	private static $widget_options = null;

	/**
	 * Widget List
	 *
	 * @var widget_list
	 */
	private static $widget_list = null;

	/**
	 * Widget List
	 *
	 * @var widget_list
	 */
	private static $pro_widget_list = null;

	/**
	 * Widget List
	 *
	 * @var widget_list
	 */
	private static $all_widgets_list = null;

	/**
	 * Plugins List
	 *
	 * @var get_bsf_plugins_list
	 */
	private static $get_bsf_plugins_list = null;

	/**
	 * Recommended Plugins List
	 *
	 * @var get_recommended_bsf_plugins_list
	 */
	private static $get_recommended_bsf_plugins_list = null;

	/**
	 * Check if UAE Pro is active.
	 *
	 * @since 2.2.1
	 * @return bool
	 */
	public static function is_pro_active() {
		if ( is_plugin_active( 'ultimate-elementor/ultimate-elementor.php' ) && defined( 'UAEL_PRO' ) && UAEL_PRO ) {
			return true;
		}
		return false;
	}

	/**
	 * Provide General settings array().
	 *
	 * @since 2.2.1
	 * @return array()
	 */
	public static function premium_starter_templates_status() {

		$st_pro_status = Widgets_Config::get_plugin_status( 'astra-pro-sites/astra-pro-sites.php' );

		return $st_pro_status;
	}

	/**
	 * Provide General settings array().
	 *
	 * @since 2.2.1
	 * @return array()
	 */
	public static function free_starter_templates_status() {
		$free_status = Widgets_Config::get_plugin_status( 'astra-sites/astra-sites.php' );
		return $free_status;
	}

	/**
	 * Provide General settings array().
	 *
	 * @since 2.2.1
	 * @return array()
	 */
	public static function starter_templates_status() {

		$st_pro_status = self::premium_starter_templates_status();
		$free_status   = self::free_starter_templates_status();

		if ( 'Activated' !== $free_status && ( 'Installed' === $st_pro_status || 'Activated' === $st_pro_status ) ) {
			return $st_pro_status;
		}

		return $free_status;
	}

	/**
	 * Provide General settings array().
	 *
	 * @since 2.2.1
	 * @return array()
	 */
	public static function starter_templates_link() {

		if ( is_plugin_active( 'astra-sites/astra-sites.php' ) || is_plugin_active( 'astra-pro-sites/astra-pro-sites.php' ) ) {
			return admin_url( 'themes.php?page=starter-templates' );
		}

		return '';
	}

	/**
	 * Provide General settings array().
	 *
	 * @since 0.0.1
	 * @return array()
	 */
	public static function get_widget_list() {

		if ( ! isset( self::$widget_list ) ) {
			self::$widget_list = Widgets_Config::get_widget_list();
		}

		return apply_filters( 'hfe_widgets_list', self::$widget_list );
	}
	
	/**
	 * Provide General settings array().
	 *
	 * @since 0.0.1
	 * @return array()
	 */
	public static function get_pro_widget_list() {

		if ( ! isset( self::$pro_widget_list ) ) {
			self::$pro_widget_list = Widgets_Config::get_pro_widget_list();
		}

		return apply_filters( 'hfe_pro_widgets_list', self::$pro_widget_list );
	}

	/**
	 * Provide General settings array().
	 *
	 * @since 0.0.1
	 * @return array()
	 */
	public static function get_all_widgets_list() {
		if ( ! isset( self::$all_widgets_list ) ) {
			self::$all_widgets_list = self::get_widget_options() + self::get_pro_widget_list();
		}
		return apply_filters( 'hfe_all_widgets_list', self::$all_widgets_list );
	}

	/**
	 * Provide General settings array().
	 *
	 * @since 2.2.1
	 * @return array()
	 */
	public static function get_bsf_plugins_list() {

		if ( ! isset( self::$get_bsf_plugins_list ) ) {
			self::$get_bsf_plugins_list = Widgets_Config::get_bsf_plugins();
		}

		return apply_filters( 'uael_plugins_list', self::$get_bsf_plugins_list );
	}

	/**
	 * Provide recommended plugins list.
	 *
	 * @since 2.2.1
	 * @return array()
	 */
	public static function get_recommended_bsf_plugins_list() {

		if ( ! isset( self::$get_recommended_bsf_plugins_list ) ) {
			self::$get_recommended_bsf_plugins_list = Widgets_Config::get_recommended_bsf_plugins();
		}

		return apply_filters( 'uael_recommended_plugins_list', self::$get_recommended_bsf_plugins_list );
	}

	/**
	 * Provide Widget Name
	 *
	 * @param string $slug Module slug.
	 * @return string
	 * @since 0.0.1
	 */
	public static function get_widget_slug( $slug = '' ) {

		if ( ! isset( self::$widget_list ) ) {
			self::$widget_list = self::get_widget_list();
		}

		$widget_slug = '';

		if ( isset( self::$widget_list[ $slug ] ) ) {
			$widget_slug = self::$widget_list[ $slug ]['slug'];
		}

		return apply_filters( 'hfe_widget_slug', $widget_slug );
	}

	/**
	 * Provide Widget Name
	 *
	 * @param string $slug Module slug.
	 * @return string
	 * @since 0.0.1
	 */
	public static function get_widget_title( $slug = '' ) {

		if ( ! isset( self::$widget_list ) ) {
			self::$widget_list = self::get_widget_list();
		}

		$widget_name = '';

		if ( isset( self::$widget_list[ $slug ] ) ) {
			$widget_name = self::$widget_list[ $slug ]['title'];
		}

		return apply_filters( 'hfe_widget_name', $widget_name );
	}

	/**
	 * Provide Widget Name
	 *
	 * @param string $slug Module slug.
	 * @return string
	 * @since 0.0.1
	 */
	public static function get_widget_icon( $slug = '' ) {

		if ( ! isset( self::$widget_list ) ) {
			self::$widget_list = self::get_widget_list();
		}

		$widget_icon = '';

		if ( isset( self::$widget_list[ $slug ] ) ) {
			$widget_icon = self::$widget_list[ $slug ]['icon'];
		}

		return apply_filters( 'hfe_widget_icon', $widget_icon );
	}

	/**
	 * Provide Widget Keywords
	 *
	 * @param string $slug Module slug.
	 * @return string
	 * @since 1.5.1
	 */
	public static function get_widget_keywords( $slug = '' ) {

		if ( ! isset( self::$widget_list ) ) {
			self::$widget_list = self::get_widget_list();
		}

		$widget_keywords = '';

		if ( isset( self::$widget_list[ $slug ] ) && isset( self::$widget_list[ $slug ]['keywords'] ) ) {
			$widget_keywords = self::$widget_list[ $slug ]['keywords'];
		}

		return apply_filters( 'hfe_widget_keywords', $widget_keywords );
	}

	/**
	 * Provide Widget settings.
	 *
	 * @return array()
	 * @since 0.0.1
	 */
	public static function get_widget_options() {

		if ( null === self::$widget_options ) {

			if ( ! isset( self::$widget_list ) ) {
				$widgets = self::get_widget_list();
			} else {
				$widgets = self::$widget_list;
			}

			$saved_widgets = self::get_admin_settings_option( '_hfe_widgets' );

			if ( is_array( $widgets ) ) {

				foreach ( $widgets as $slug => $data ) {

					if ( isset( $saved_widgets[ $slug ] ) ) {

						if ( 'disabled' === $saved_widgets[ $slug ] ) {
							$widgets[ $slug ]['is_activate'] = false;
						} else {
							$widgets[ $slug ]['is_activate'] = true;
						}
					} else {
						$widgets[ $slug ]['is_activate'] = ( isset( $data['default'] ) ) ? $data['default'] : false;
					}
				}
			}

			self::$widget_options = $widgets;
		}

		return apply_filters( 'hfe_enabled_widgets', self::$widget_options );
	}

	
	/**
	 * Updates an option from the admin settings page.
	 *
	 * @param string $key       The option key.
	 * @param mixed  $value     The value to update.
	 * @param bool   $network   Whether to allow the network admin setting to be overridden on subsites.
	 * @return mixed
	 */
	public static function update_admin_settings_option( $key, $value, $network = false ) {

		// Update the site-wide option since we're in the network admin.
		if ( $network && is_multisite() ) {
			update_site_option( $key, $value );
		} else {
			update_option( $key, $value );
		}

	}

	/**
	 * Returns an option from the database for
	 * the admin settings page.
	 *
	 * @param  string  $key     The option key.
	 * @param  mixed   $default Option default value if option is not available.
	 * @param  boolean $network_override Whether to allow the network admin setting to be overridden on subsites.
	 * @return string           Return the option value
	 */
	public static function get_admin_settings_option( $key, $default = false, $network_override = false ) {

		// Get the site-wide option if we're in the network admin.
		if ( $network_override && is_multisite() ) {
			$value = get_site_option( $key, $default );
		} else {
			$value = get_option( $key, $default );
		}

		return $value;
	}

	/**
	 * Widget Active.
	 *
	 * @param string $slug Module slug.
	 * @return string
	 * @since 0.0.1
	 */
	public static function is_widget_active( $slug = '' ) {

		$widgets     = self::get_widget_options();
		$is_activate = false;

		if ( isset( $widgets[ $slug ] ) ) {
			$is_activate = $widgets[ $slug ]['is_activate'];
		}

		return $is_activate;
	}

	/**
	 * Get Rollback versions.
	 *
	 * @since 1.23.0
	 * @return array
	 * @access public
	 */
	public static function get_rollback_versions_options() {

		$rollback_versions = self::get_rollback_versions();

		$rollback_versions_options = [];

		foreach ( $rollback_versions as $version ) {

			$version = [
				'label' => $version,
				'value' => $version,

			];

			$rollback_versions_options[] = $version;
		}

		return $rollback_versions_options;
	}

	/**
	 * Get Rollback versions.
	 *
	 * @since 2.2.1
	 * @return array
	 * @access public
	 */
	public static function get_rollback_versions() {

		$rollback_versions = get_transient( 'hfe_rollback_versions_' . HFE_VER );

		if ( empty( $rollback_versions ) ) {

			$max_versions = 10;

			require_once ABSPATH . 'wp-admin/includes/plugin-install.php';

			$plugin_information = plugins_api(
				'plugin_information',
				[
					'slug' => 'header-footer-elementor',
				]
			);

			if ( empty( $plugin_information->versions ) || ! is_array( $plugin_information->versions ) ) {
				return [];
			}

			krsort( $plugin_information->versions );

			$rollback_versions = [];

			foreach ( $plugin_information->versions as $version => $download_link ) {

				$lowercase_version = strtolower( $version );

				$is_valid_rollback_version = ! preg_match( '/(trunk|beta|rc|dev)/i', $lowercase_version );

				if ( ! $is_valid_rollback_version ) {
					continue;
				}

				if ( version_compare( $version, HFE_VER, '>=' ) ) {
					continue;
				}

				$rollback_versions[] = $version;
			}

			usort(
				$rollback_versions,
				function( $prev, $next ) {
					if ( version_compare( $prev, $next, '==' ) ) {
						return 0;
					}
		
					if ( version_compare( $prev, $next, '>' ) ) {
						return -1;
					}
		
					return 1;
				} 
			);

			$rollback_versions = array_slice( $rollback_versions, 0, $max_versions, true );

			set_transient( 'hfe_rollback_versions_' . HFE_VER, $rollback_versions, WEEK_IN_SECONDS );
		}

		return $rollback_versions;
	}

	/**
	 * Get Unused Widgets.
	 *
	 * @since 2.4.2
	 * @return array
	 * @access public
	 */
	public static function get_used_widget() {
		/** @var Usage_Module $usage_module */
		$usage_module = Usage_Module::instance();
		$usage_module->recalc_usage();

		$widgets_usage = [];

		foreach ( $usage_module->get_formatted_usage( 'raw' ) as $data ) {
			foreach ( $data['elements'] as $element => $count ) {
				$widgets_usage[ $element ] = isset( $widgets_usage[ $element ] ) ? $widgets_usage[ $element ] + $count : $count;
			}
		}

		$allowed_widgets = [
			'hfe-breadcrumbs-widget',
			'hfe-cart',
			'copyright',
			'navigation-menu',
			'page-title',
			'post-info-widget',
			'retina',
			'hfe-search-button',
			'site-logo',
			'hfe-site-tagline',
			'hfe-site-title',
			'hfe-infocard',
			'hfe-woo-product-grid',
			'hfe-basic-posts',
			'hfe-counter',
		];

		// Filter widgets usage to include only allowed widgets
		$filtered_widgets_usage = array_filter(
			$widgets_usage,
			function ( $key ) use ( $allowed_widgets ) {
				return in_array( $key, $allowed_widgets, true );
			},
			ARRAY_FILTER_USE_KEY
		);

		return $filtered_widgets_usage;
	}

	/**
	 * Get widget help URL
	 *
	 * Retrieve the help URL for a specific widget.
	 *
	 * @since 2.4.3
	 * @access public
	 *
	 * @param string $widget_name Widget name.
	 * @return string Widget help URL.
	 */
	public static function get_widget_help_url( $widget_name = '' ) {
		if ( empty( $widget_name ) ) {
			return '';
		}

		if ( ! isset( self::$widget_list ) ) {
			self::$widget_list = self::get_widget_list();
		}

		// Convert widget name to config key format
		$widget_key = '';
		foreach ( self::$widget_list as $key => $widget_data ) {
			if ( isset( $widget_data['slug'] ) && $widget_data['slug'] === $widget_name ) {
				$widget_key = $key;
				break;
			}
		}

		if ( empty( $widget_key ) || ! isset( self::$widget_list[ $widget_key ]['doc_url'] ) ) {
			return '';
		}

		$help_url = self::$widget_list[ $widget_key ]['doc_url'];

		// Ensure we have a valid URL
		$help_url = empty( $help_url ) ? '' : $help_url;

		return apply_filters( 'hfe_widget_help_url', $help_url, $widget_name );
	}

}
PK���\ό����.inc/widgets-manager/widgets/counter/module.phpnu�[���<?php
/**
 * HFE Counter Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\Counter;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 2.7.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 2.7.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'hfe-counter';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 2.7.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Counter',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}PK���\mr�_Z_Z/inc/widgets-manager/widgets/counter/counter.phpnu�[���<?php
/**
 * Counter Widget for Header Footer Elementor.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\Counter;

use Elementor\Controls_Manager;
use Elementor\Group_Control_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;

use HFE\WidgetsManager\Widgets_Loader;
use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * HFE Counter widget
 *
 * HFE widget for displaying animated counters
 *
 * @since 2.7.0
 */
class Counter extends Common_Widget {

	/**
	 * Retrieve the widget name.
	 *
	 * @since 2.7.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Counter' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 2.7.0
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Counter' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 2.7.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Counter' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.7.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Counter' );
	}

	/**
	 * Get style dependencies.
	 *
	 * @since 2.7.0
	 * @access public
	 *
	 * @return array Style dependencies.
	 */
	public function get_style_depends() {
		return [];
	}

	/**
	 * Get script dependencies.
	 *
	 * @since 2.7.0
	 * @access public
	 *
	 * @return array Script dependencies.
	 */
	public function get_script_depends() {
		return [ 'hfe-counter' ];
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * @since 2.7.0
	 * @return bool True for dynamic content, false for static content.
	 */
	protected function is_dynamic_content(): bool {
		return false;
	}

	/**
	 * Register counter controls.
	 *
	 * @since 2.7.0
	 * @access protected
	 * @return void
	 */
	protected function register_controls(): void {
		$this->register_general_content_controls();
		$this->register_title_style_controls();
		$this->register_number_style_controls();
		$this->register_prefix_style_controls();
		$this->register_suffix_style_controls();
	}

	/**
	 * Register General Content Controls.
	 *
	 * @since 2.7.0
	 * @access protected
	 * @return void
	 */
	protected function register_general_content_controls(): void {
		$this->start_controls_section(
			'section_general',
			[
				'label' => __( 'General', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'title',
			[
				'label'   => __( 'Title', 'header-footer-elementor' ),
				'type'    => Controls_Manager::TEXT,
				'default' => __( 'Users', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'title_tag',
			[
				'label'     => __( 'Title HTML Tag', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'separator' => 'after',
				'options'   => [
					'h1' => __( 'H1', 'header-footer-elementor' ),
					'h2' => __( 'H2', 'header-footer-elementor' ),
					'h3' => __( 'H3', 'header-footer-elementor' ),
					'h4' => __( 'H4', 'header-footer-elementor' ),
					'h5' => __( 'H5', 'header-footer-elementor' ),
					'h6' => __( 'H6', 'header-footer-elementor' ),
					'div' => __( 'div', 'header-footer-elementor' ),
					'span' => __( 'span', 'header-footer-elementor' ),
					'p' => __( 'p', 'header-footer-elementor' ),
				],
				'default'   => 'h1',
			]
		);

		$this->add_control(
			'start_number',
			[
				'label'   => __( 'Starting Number', 'header-footer-elementor' ),
				'type'    => Controls_Manager::NUMBER,
				'default' => 20,
			]
		);

		$this->add_control(
			'end_number',
			[
				'label'   => __( 'Ending Number', 'header-footer-elementor' ),
				'type'    => Controls_Manager::NUMBER,
				'default' => 100,
			]
		);

		$this->add_control(
			'prefix',
			[
				'label'   => __( 'Prefix', 'header-footer-elementor' ),
				'type'    => Controls_Manager::TEXT,
				'dynamic' => [
					'active' => true,
				],
			]
		);

		$this->add_control(
			'suffix',
			[
				'label'   => __( 'Suffix', 'header-footer-elementor' ),
				'type'    => Controls_Manager::TEXT,
				'dynamic' => [
					'active' => true,
				],
			]
		);

		$this->add_control(
			'digit_separator',
			[
				'label'   => __( 'Digit Separator', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'options' => [
					''      => __( 'None', 'header-footer-elementor' ),
					','     => __( 'Comma', 'header-footer-elementor' ),
					'.'     => __( 'Dot', 'header-footer-elementor' ),
					' '     => __( 'Space', 'header-footer-elementor' ),
					'_'     => __( 'Underscore', 'header-footer-elementor' ),
				],
				'default' => ',',
			]
		);

		$this->add_control(
			'counter_speed',
			[
				'label' => __( 'Counter Speed (seconds)', 'header-footer-elementor' ),
				'type'  => Controls_Manager::SLIDER,
				'default' => [
					'size' => 3,
				],
				'range' => [
					'px' => [ // Elementor uses 'px' key even if it's not pixels — it's just a required label
						'min' => 1,
						'max' => 10,
						'step' => 0.1,
					],
				],
			]
		);



		$this->end_controls_section();
	}

	/**
	 * Register Number Style Controls.
	 *
	 * @since 2.7.0
	 * @access protected
	 * @return void
	 */
	protected function register_number_style_controls(): void {
		$start = is_rtl() ? 'right' : 'left';
		$end = ! is_rtl() ? 'right' : 'left';

		$this->start_controls_section(
			'section_number',
			[
				'label' => __( 'Number', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		// Add default display: flex to counter content
		$this->add_control(
			'counter_content_display',
			[
				'type' => Controls_Manager::HIDDEN,
				'default' => 'flex',
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-content' => 'display: flex; align-items: center;',
					'{{WRAPPER}} .hfe-counter-prefix' => 'flex-grow: var(--counter-prefix-grow, 0);',
					'{{WRAPPER}} .hfe-counter-number' => 'flex-grow: var(--counter-number-grow, 0);',
					'{{WRAPPER}} .hfe-counter-suffix' => 'flex-grow: var(--counter-suffix-grow, 0);',
				],
			]
		);

		$this->add_responsive_control(
			'number_horizontal_alignment',
			[
				'label'   => __( 'Horizontal Alignment', 'header-footer-elementor' ),
				'type'    => Controls_Manager::CHOOSE,
				'options' => [
					'flex-start' => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => "eicon-h-align-$start",
					],
					'center' => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'eicon-h-align-center',
					],
					'flex-end' => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => "eicon-h-align-$end",
					],
					'space-between' => [
						'title' => __( 'Stretch', 'header-footer-elementor' ),
						'icon'  => 'eicon-grow',
					],
				],
				'default' => 'center',
				'selectors_dictionary' => [
					'flex-start' => 'display: flex; justify-content: flex-start; align-self: flex-start; --counter-prefix-grow: 0; --counter-suffix-grow: 1; --counter-number-grow: 0;',
					'center' => 'display: flex; justify-content: center; align-self: center; --counter-prefix-grow: 1; --counter-suffix-grow: 1; --counter-number-grow: 0;',
					'flex-end' => 'display: flex; justify-content: flex-end; align-self: flex-end; --counter-prefix-grow: 1; --counter-suffix-grow: 0; --counter-number-grow: 0;',
					'space-between' => 'display: flex; justify-content: space-between; align-self: stretch; --counter-prefix-grow: 0; --counter-suffix-grow: 0; --counter-number-grow: 1;',
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-content' => '{{VALUE}}',
				],
			]
		);

		$this->add_responsive_control(
			'number_alignment',
			[
				'label'   => __( 'Alignment', 'header-footer-elementor' ),
				'type'    => Controls_Manager::CHOOSE,
				'options' => [
					'left' => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => "eicon-text-align-$start",
					],
					'center' => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => "eicon-text-align-$end",
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-number' => 'text-align: {{VALUE}}; flex-grow: var(--counter-number-grow, 0);',
				],
				'condition' => [
					'number_horizontal_alignment' => 'space-between',
				],
			]
		);

		$this->add_responsive_control(
			'number_gap',
			[
				'label'      => __( 'Gap', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em', 'rem' ],
				'default'    => [
					'size' => 5,
					'unit' => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-counter-content' => 'gap: {{SIZE}}{{UNIT}};',
				],
				'conditions' => [
					'relation' => 'and',
					'terms' => [
						[
							'name' => 'number_horizontal_alignment',
							'operator' => '!==',
							'value' => 'space-between',
						],
						[
							'relation' => 'or',
							'terms' => [
								[
									'name' => 'prefix',
									'operator' => '!==',
									'value' => '',
								],
								[
									'name' => 'suffix',
									'operator' => '!==',
									'value' => '',
								],
							],
						],
					],
				],
			]
		);

		$this->add_control(
			'number_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_PRIMARY,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-content' => 'color: {{VALUE}};',
				],
				'separator' => 'before',
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'typography',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
				],
				'selector' => '{{WRAPPER}} .hfe-counter-number',
			]
		);
		$this->add_group_control(
			\Elementor\Group_Control_Text_Stroke::get_type(),
			[
				'name' => 'number_text_stroke',
				'selector' => '{{WRAPPER}} .hfe-counter-number',
			]
		);

		$this->add_group_control(
			\Elementor\Group_Control_Text_Shadow::get_type(),
			[
				'name' => 'number_text_shadow',
				'selector' => '{{WRAPPER}} .hfe-counter-number',
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Title Style Controls.
	 *
	 * @since 2.7.0
	 * @access protected
	 * @return void
	 */
	protected function register_title_style_controls(): void {
		$start = is_rtl() ? 'right' : 'left';
		$end = ! is_rtl() ? 'right' : 'left';

		$this->start_controls_section(
			'section_title_style',
			[
				'label'     => __( 'Title', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'title!' => '',
				],
			]
		);

		// Add default display: flex to counter wrapper
		$this->add_control(
			'counter_wrapper_display',
			[
				'type' => Controls_Manager::HIDDEN,
				'default' => 'flex',
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-wrapper' => 'display: flex; flex-direction: column;',
				],
			]
		);

		$this->add_responsive_control(
			'title_position',
			[
				'label'   => __( 'Position', 'header-footer-elementor' ),
				'type'    => Controls_Manager::CHOOSE,
				'options' => [
					'before' => [
						'title' => __( 'Top', 'header-footer-elementor' ),
						'icon'  => 'eicon-v-align-top',
					],
					'after' => [
						'title' => __( 'Bottom', 'header-footer-elementor' ),
						'icon'  => 'eicon-v-align-bottom',
					],
					'start' => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => "eicon-h-align-$start",
					],
					'end' => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => "eicon-h-align-$end",
					],
				],
				'default' => 'before',
				'selectors_dictionary' => [
					'before' => 'flex-direction: column;',
					'after' => 'flex-direction: column-reverse;',
					'start' => 'flex-direction: row;',
					'end' => 'flex-direction: row-reverse;',
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-wrapper' => '{{VALUE}} display: flex;',
				],
			]
		);

		$this->add_responsive_control(
			'title_horizontal_alignment',
			[
				'label'   => __( 'Horizontal Alignment', 'header-footer-elementor' ),
				'type'    => Controls_Manager::CHOOSE,
				'options' => [
					'start' => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => "eicon-h-align-$start",
					],
					'center' => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'eicon-h-align-center',
					],
					'end' => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => "eicon-h-align-$end",
					],
				],
				'separator' => 'before',
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-title' => 'justify-content: {{VALUE}}; display: flex;',
				],
				'condition' => [
					'title_position' => [ 'start', 'end' ],
				],
			]
		);

		$this->add_responsive_control(
			'title_horizontal_alignment_column',
			[
				'label'   => __( 'Horizontal Alignment', 'header-footer-elementor' ),
				'type'    => Controls_Manager::CHOOSE,
				'options' => [
					'flex-start' => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => "eicon-h-align-$start",
					],
					'center' => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'eicon-h-align-center',
					],
					'flex-end' => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => "eicon-h-align-$end",
					],
				],
				'separator' => 'before',
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-title' => 'align-self: {{VALUE}};',
				],
				'condition' => [
					'title_position' => [ 'before', 'after' ],
				],
			]
		);

		$this->add_responsive_control(
			'title_vertical_alignment',
			[
				'label'   => __( 'Vertical Alignment', 'header-footer-elementor' ),
				'type'    => Controls_Manager::CHOOSE,
				'options' => [
					'flex-start' => [
						'title' => __( 'Top', 'header-footer-elementor' ),
						'icon'  => 'eicon-v-align-top',
					],
					'center' => [
						'title' => __( 'Middle', 'header-footer-elementor' ),
						'icon'  => 'eicon-v-align-middle',
					],
					'flex-end' => [
						'title' => __( 'Bottom', 'header-footer-elementor' ),
						'icon'  => 'eicon-v-align-bottom',
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-wrapper' => 'align-items: {{VALUE}};',
				],
				'condition' => [
					'title!' => '',
					'title_position' => [ 'start', 'end' ],
				],
			]
		);

		$this->add_responsive_control(
			'title_gap',
			[
				'label'      => __( 'Gap', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em', 'rem' ],
				'default'    => [
					'size' => 20,
					'unit' => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-counter-wrapper' => 'gap: {{SIZE}}{{UNIT}};',
				],
				'condition' => [
					'title!' => '',
					'title_position' => [ 'before', 'after' ],
				],
			]
		);

		$this->add_control(
			'title_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_SECONDARY,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-title' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'title_typography',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_SECONDARY,
				],
				'selector' => '{{WRAPPER}} .hfe-counter-title',
				'separator' => 'before',
			]
		);

		$this->add_group_control(
			\Elementor\Group_Control_Text_Stroke::get_type(),
			[
				'name' => 'title_text_stroke',
				'selector' => '{{WRAPPER}} .hfe-counter-title',
			]
		);

		$this->add_group_control(
			\Elementor\Group_Control_Text_Shadow::get_type(),
			[
				'name' => 'title_text_shadow',
				'selector' => '{{WRAPPER}} .hfe-counter-title',
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Prefix Style Controls.
	 *
	 * @since 2.7.0
	 * @access protected
	 * @return void
	 */
	protected function register_prefix_style_controls(): void {
		$this->start_controls_section(
			'section_prefix_style',
			[
				'label'     => __( 'Prefix', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'prefix!' => '',
				],
			]
		);

		$this->add_control(
			'prefix_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-prefix' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'prefix_typography',
				'selector' => '{{WRAPPER}} .hfe-counter-prefix',
			]
		);

		$this->add_group_control(
			\Elementor\Group_Control_Text_Stroke::get_type(),
			[
				'name' => 'prefix_text_stroke',
				'selector' => '{{WRAPPER}} .hfe-counter-prefix',
			]
		);

		$this->add_group_control(
			\Elementor\Group_Control_Text_Shadow::get_type(),
			[
				'name' => 'prefix_text_shadow',
				'selector' => '{{WRAPPER}} .hfe-counter-prefix',
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Suffix Style Controls.
	 *
	 * @since 2.7.0
	 * @access protected
	 * @return void
	 */
	protected function register_suffix_style_controls(): void {
		$this->start_controls_section(
			'section_suffix_style',
			[
				'label'     => __( 'Suffix', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'suffix!' => '',
				],
			]
		);

		$this->add_control(
			'suffix_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-counter-suffix' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'suffix_typography',
				'selector' => '{{WRAPPER}} .hfe-counter-suffix',
			]
		);

		$this->add_group_control(
			\Elementor\Group_Control_Text_Stroke::get_type(),
			[
				'name' => 'suffix_text_stroke',
				'selector' => '{{WRAPPER}} .hfe-counter-suffix',
			]
		);

		$this->add_group_control(
			\Elementor\Group_Control_Text_Shadow::get_type(),
			[
				'name' => 'suffix_text_shadow',
				'selector' => '{{WRAPPER}} .hfe-counter-suffix',
			]
		);

		$this->end_controls_section();
	}


	/**
	 * Render Counter output on the frontend.
	 *
	 * @since 2.7.0
	 * @access protected
	 * @return void
	 */
	protected function render(): void {
		$settings = $this->get_settings_for_display();

		$this->add_render_attribute( 'counter-wrapper', 'class', 'hfe-counter-wrapper' );

		$this->add_render_attribute( 'counter-content', 'class', 'hfe-counter-content' );

		$this->add_render_attribute( 'counter-number', 'class', 'hfe-counter-number' );
		$this->add_render_attribute( 'counter-number', 'data-start', $settings['start_number'] );
		$this->add_render_attribute( 'counter-number', 'data-end', $settings['end_number'] );
		$this->add_render_attribute( 'counter-number', 'data-speed', $settings['counter_speed']['size'] * 1000 );
		$this->add_render_attribute( 'counter-number', 'data-separator', $settings['digit_separator'] );

		$this->add_render_attribute( 'prefix', 'class', 'hfe-counter-prefix' );
		$this->add_render_attribute( 'suffix', 'class', 'hfe-counter-suffix' );
		$this->add_render_attribute( 'counter-title', 'class', 'hfe-counter-title' );
		$this->add_inline_editing_attributes( 'counter-title' );

		$title_tag = Widgets_Loader::validate_html_tag( $settings['title_tag'] );
		?>

		<div <?php echo wp_kses_post( $this->get_render_attribute_string( 'counter-wrapper' ) ); ?>>
			<?php
			if ( $settings['title'] ) :
				?><<?php echo esc_attr( $title_tag ); ?> <?php echo wp_kses_post( $this->get_render_attribute_string( 'counter-title' ) ); ?>><?php echo wp_kses_post( $this->get_settings_for_display( 'title' ) ); ?></<?php echo esc_attr( $title_tag ); ?>><?php
			endif;
			?>
			<div <?php echo wp_kses_post( $this->get_render_attribute_string( 'counter-content' ) ); ?>>
				<span <?php echo wp_kses_post( $this->get_render_attribute_string( 'prefix' ) ); ?>><?php echo wp_kses_post( $settings['prefix'] ); ?></span>
				<span <?php echo wp_kses_post( $this->get_render_attribute_string( 'counter-number' ) ); ?>><?php echo esc_html( $settings['start_number'] ); ?></span>
				<span <?php echo wp_kses_post( $this->get_render_attribute_string( 'suffix' ) ); ?>><?php echo wp_kses_post( $settings['suffix'] ); ?></span>
			</div>
		</div>
		<?php
	}

	/**
	 * Render Counter widget output in the editor.
	 *
	 * Written as a Backbone JavaScript template and used to generate the live preview.
	 *
	 * @since 2.7.0
	 * @access protected
	 * @return void
	 */
	protected function content_template() {
		?>
		<#
		var titleTag = elementor.helpers.validateHTMLTag( settings.title_tag );
		if ( typeof elementor.helpers.validateHTMLTag === "function" ) { 
			titleTag = elementor.helpers.validateHTMLTag( titleTag );
		} else if( HfeWidgetsData.allowed_tags ) {
			titleTag = HfeWidgetsData.allowed_tags.includes( titleTag.toLowerCase() ) ? titleTag : 'div';
		}

		view.addRenderAttribute( 'counter-wrapper', 'class', 'hfe-counter-wrapper' );

		view.addRenderAttribute( 'counter-content', 'class', 'hfe-counter-content' );

		view.addRenderAttribute( 'counter-number', 'class', 'hfe-counter-number' );
		view.addRenderAttribute( 'counter-number', 'data-start', settings.start_number );
		view.addRenderAttribute( 'counter-number', 'data-end', settings.end_number );
		view.addRenderAttribute( 'counter-number', 'data-speed', settings.counter_speed.size * 1000 );
		view.addRenderAttribute( 'counter-number', 'data-separator', settings.digit_separator );

		view.addRenderAttribute( 'prefix', 'class', 'hfe-counter-prefix' );
		view.addRenderAttribute( 'suffix', 'class', 'hfe-counter-suffix' );
		view.addRenderAttribute( 'counter-title', 'class', 'hfe-counter-title' );
		view.addInlineEditingAttributes( 'counter-title' );
		#>

		<div {{{ view.getRenderAttributeString( 'counter-wrapper' ) }}}>
			<# if ( '' !== settings.title ) { #>
				<{{{ titleTag }}} {{{ view.getRenderAttributeString( 'counter-title' ) }}}>
					{{{ settings.title }}}
				</{{{ titleTag }}}>
			<# } #>
			<div {{{ view.getRenderAttributeString( 'counter-content' ) }}}>
				<span {{{ view.getRenderAttributeString( 'prefix' ) }}}>{{{ settings.prefix }}}</span>
				<span {{{ view.getRenderAttributeString( 'counter-number' ) }}}>{{{ settings.start_number }}}</span>
				<span {{{ view.getRenderAttributeString( 'suffix' ) }}}>{{{ settings.suffix }}}</span>
			</div>
		</div>
		<?php
	}
}PK���\��3inc/widgets-manager/widgets/site-tagline/module.phpnu�[���<?php
/**
 * HFEWpfStyler Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\SiteTagline;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'hfe-site-tagline';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Site_Tagline',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\.��V�"�"9inc/widgets-manager/widgets/site-tagline/site-tagline.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\SiteTagline;

use Elementor\Controls_Manager;
use Elementor\Group_Control_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Group_Control_Text_Shadow;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;

use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * HFE Site tagline widget
 *
 * HFE widget for site tagline
 *
 * @since 1.3.0
 */
class Site_Tagline extends Common_Widget {

	/**
	 * Retrieve the widget name.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Site_Tagline' );
	}

	/**
	 * Retrieve the widget tagline.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget tagline.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Site_Tagline' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Site_Tagline' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Site_Tagline' );
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * This method returns true if the widget's output is dynamic and should not be cached,
	 * or false if the content is static and can be cached.
	 *
	 * @since 1.6.41
	 * @return bool True for dynamic content, false for static content.
	 */
	protected function is_dynamic_content(): bool { // phpcs:ignore
		return false;
	}

	/**
	 * Register site tagline controls.
	 *
	 * @since 1.5.7
	 * @access protected
	 * @return void
	 */
	protected function register_controls() {
		$this->register_general_content_controls();
		$this->register_pro_promotion_controls();
	}

	/**
	 * Register site tagline General Controls.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function register_general_content_controls() {

		$this->start_controls_section(
			'section_general_fields',
			[
				'label' => __( 'Style', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'before',
			[
				'label'   => __( 'Before Title Text', 'header-footer-elementor' ),
				'type'    => Controls_Manager::TEXTAREA,
				'rows'    => '1',
				'dynamic' => [
					'active' => true,
				],
			]
		);

		$this->add_control(
			'after',
			[
				'label'   => __( 'After Title Text', 'header-footer-elementor' ),
				'type'    => Controls_Manager::TEXTAREA,
				'rows'    => '1',
				'dynamic' => [
					'active' => true,
				],
			]
		);

		$this->add_control(
			'icon',
			[
				'label'       => __( 'Icon', 'header-footer-elementor' ),
				'type'        => Controls_Manager::ICONS,
				'label_block' => 'true',
			]
		);

		$this->add_control(
			'icon_indent',
			[
				'label'     => __( 'Icon Spacing', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'max' => 50,
					],
				],
				'condition' => [
					'icon[value]!' => '',
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-icon' => 'margin-right: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_responsive_control(
			'heading_text_align',
			[
				'label'              => __( 'Alignment', 'header-footer-elementor' ),
				'type'               => Controls_Manager::CHOOSE,
				'options'            => [
					'left'    => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-left',
					],
					'center'  => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-center',
					],
					'right'   => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-right',
					],
					'justify' => [
						'title' => __( 'Justify', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-justify',
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-site-tagline' => 'text-align: {{VALUE}};',
				],
				'frontend_available' => true,
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'tagline_typography',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_SECONDARY,
				],
				'selector' => '{{WRAPPER}} .hfe-site-tagline',
			]
		);
		$this->add_control(
			'tagline_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_SECONDARY,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-site-tagline' => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-icon i'       => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-icon svg'     => 'fill: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'icon_color',
			[
				'label'     => __( 'Icon Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_PRIMARY,
				],
				'condition' => [
					'icon[value]!' => '',
				],
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .hfe-icon i'   => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-icon svg' => 'fill: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'icons_hover_color',
			[
				'label'     => __( 'Icon Hover Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'condition' => [
					'icon[value]!' => '',
				],
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .hfe-icon:hover i'   => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-icon:hover svg' => 'fill: {{VALUE}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Site Tagline Promotion Controls.
	 *
	 * @since 2.4.0
	 * @access protected
	 */
	protected function register_pro_promotion_controls() {

		if(! defined( 'UAEL_VER' )){
			$this->start_controls_section(
				'section_pro_features_field',
				array(
					'label' => __( 'Go Pro for More Features', 'header-footer-elementor' ),
				)
			);

			$this->add_control(
				'uae_pro_promotion_notice',
				[
					'type' => Controls_Manager::NOTICE,
					'notice_type' => 'info',
					'dismissible' => false,
					'content' => __( '<b>Build smarter and faster</b> with premium widgets, 200+ section blocks, and advanced customisation controls — all available in the <a href="https://ultimateelementor.com/pricing/?utm_source=uae-dashboard&utm_medium=editor&utm_campaign=uae-pro-promotion" target="_blank">UAE Pro</a>.', 'header-footer-elementor' ),
				]
			);


			$this->end_controls_section();
		}
	}

	/**
	 * Render site tagline output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function render() {
		$settings = $this->get_settings_for_display();
		?>
		<div class="hfe-site-tagline hfe-site-tagline-wrapper">
			<?php if ( '' !== $settings['icon']['value'] ) { ?>
				<span class="hfe-icon">
					<?php \Elementor\Icons_Manager::render_icon( $settings['icon'], [ 'aria-hidden' => 'true' ] ); ?>					
				</span>
			<?php } ?>
			<span>
			<?php
			if ( '' !== $settings['before'] ) {
				echo wp_kses_post( $settings['before'] );
			}
			?>
			<?php echo wp_kses_post( get_bloginfo( 'description' ) ); ?>
			<?php
			if ( '' !== $settings['after'] ) {
				echo ' ' . wp_kses_post( $settings['after'] );
			}
			?>
			</span>
		</div>
		<?php
	}

	/**
	 * Render Site Tagline widgets output in the editor.
	 *
	 * Written as a Backbone JavaScript template and used to generate the live preview.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function content_template() {
		?>
		<# var iconHTML = elementor.helpers.renderIcon( view, settings.icon, { 'aria-hidden': true }, 'i' , 'object' ); #>
		<div class="hfe-site-tagline hfe-site-tagline-wrapper">
			<# if( '' != settings.icon.value ){ #>
				<span class="hfe-icon">
					{{{iconHTML.value}}} <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
				</span>
			<# } #>
			<span>
			<#if ( '' != settings.before ){
				var before = elementor.helpers.sanitize( settings.before ) #>
				{{{ before }}} <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
			<#}#>
			<?php echo wp_kses_post( get_bloginfo( 'description' ) ); ?>
			<# if ( '' != settings.after ){
				var after = elementor.helpers.sanitize( settings.after ) #>
				{{{ after }}} <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
			<#}#>
			</span>
		</div>
		<?php
	}
}
PK���\Z%��!!;inc/widgets-manager/widgets/navigation-menu/menu-walker.phpnu�[���<?php
/**
 * HFE Menu Walker
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\NavigationMenu;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Menu_Walker.
 */
class Menu_Walker extends \Walker_Nav_Menu {

	/**
	 * Start element
	 *
	 * @since 1.3.0
	 * @param string $output Output HTML.
	 * @param object $item Individual Menu item.
	 * @param int    $depth Depth.
	 * @param array  $args Arguments array.
	 * @param int    $id Menu ID.
	 * @access public
	 * @return void
	 */
	public function start_el( &$output, $item, $depth = 0, $args = [], $id = 0 ) {

		$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
		$args   = (object) $args;

		$class_names = '';
		$value       = '';
		$rel_xfn     = '';
		$rel_blank   = '';

		$classes = empty( $item->classes ) ? [] : (array) $item->classes;
		$submenu = $args->has_children ? ' hfe-has-submenu' : '';

		if ( 0 === $depth ) {
			array_push( $classes, 'parent' );
		}
		$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args, $depth ) );
		$class_names = ' class="' . esc_attr( $class_names ) . $submenu . ' hfe-creative-menu"';
		$value       = apply_filters( 'nav_menu_li_values', $value );

		$output .= $indent . '<li id="menu-item-' . $item->ID . '"' . $value . $class_names . '>';

		if ( isset( $item->target ) && '_blank' === $item->target && isset( $item->xfn ) && false === strpos( $item->xfn, 'noopener' ) ) {
			$rel_xfn = ' noopener';
		}
		if ( isset( $item->target ) && '_blank' === $item->target && isset( $item->xfn ) && empty( $item->xfn ) ) {
			$rel_blank = 'rel="noopener"';
		}

		$attributes  = ! empty( $item->attr_title ) ? ' title="' . esc_attr( $item->attr_title ) . '"' : '';
		$attributes .= ! empty( $item->target ) ? ' target="' . esc_attr( $item->target ) . '"' : '';
		$attributes .= ! empty( $item->xfn ) ? ' rel="' . esc_attr( $item->xfn ) . $rel_xfn . '"' : '' . $rel_blank;
		$attributes .= ! empty( $item->url ) ? ' href="' . esc_url( $item->url ) . '"' : '';

		$atts = apply_filters( 'hfe_nav_menu_attrs', $attributes );

		$item_output  = $args->has_children ? '<div class="hfe-has-submenu-container" tabindex="0" role="button" aria-haspopup="true" aria-expanded="false">' : '';
		$item_output .= $args->before;
		$item_output .= '<a' . $atts;
		if ( 0 === $depth ) {
			$item_output .= ' class = "hfe-menu-item"';
		} else {
			$item_output .= in_array( 'current-menu-item', $item->classes ) ? ' class = "hfe-sub-menu-item hfe-sub-menu-item-active"' : ' class = "hfe-sub-menu-item"';
		}

		$item_output .= '>';
		$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
		if ( $args->has_children ) {
			$item_output .= "<span class='hfe-menu-toggle sub-arrow hfe-menu-child-";
			$item_output .= $depth;
			$item_output .= "'><i class='fa'></i></span>";
		}
		$item_output .= '</a>';

		$item_output .= $args->after;
		$item_output .= $args->has_children ? '</div>' : '';

		$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
	}

	/**
	 * Display element
	 *
	 * @since 1.3.0
	 * @param object $element Individual Menu element.
	 * @param object $children_elements Child Elements.
	 * @param int    $max_depth Maximum Depth.
	 * @param int    $depth Depth.
	 * @param array  $args Arguments array.
	 * @param string $output Output HTML.
	 * @access public
	 * @return (void | null)
	 */
	public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) {

		$id_field = $this->db_fields['id'];

		if ( is_object( $args[0] ) ) {
			$args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] );
		}
		return parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
	}
}
PK���\p]���6inc/widgets-manager/widgets/navigation-menu/module.phpnu�[���<?php
/**
 * HFEWpfStyler Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\NavigationMenu;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'navigation-menu';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Navigation_Menu',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\�6':�:�?inc/widgets-manager/widgets/navigation-menu/navigation-menu.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\NavigationMenu;

// Elementor Classes.
use Elementor\Controls_Manager;
use Elementor\Utils;
use Elementor\Group_Control_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Box_Shadow;
use Elementor\Group_Control_Background;
use Elementor\Plugin;
use HFE\WidgetsManager\Widgets\NavigationMenu\MenuWalker;
use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * Class Nav Menu.
 */
class Navigation_Menu extends Common_Widget {


	/**
	 * Menu index.
	 *
	 * @access protected
	 * @var int $nav_menu_index
	 */
	// phpcs:ignore
	protected int $nav_menu_index = 1;

	/**
	 * Retrieve the widget name.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Navigation_Menu' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Navigation_Menu' );
	}

	/**
	 * Get widget upsale data.
	 *
	 * Retrieve the widget promotion data.
	 *
	 * @since 2.5.0
	 * @access protected
	 *
	 * @return array Widget promotion data.
	 */
	protected function get_upsale_data() {
		return [
			'condition' => ! defined( 'UAEL_VER' ),
			'image' => esc_url( HFE_URL . 'assets/images/upgrade-pro.png' ),
			'image_alt' => esc_attr__( 'Upgrade', 'header-footer-elementor' ),
			'title' => esc_html__( 'Upgrade your Navigation widget', 'header-footer-elementor' ),
			'description' => esc_html__( 'Get the Advanced Navigation Menu widget in UAE Pro and unlock advanced layouts, styling, and flexible menu options.', 'header-footer-elementor' ),
			'upgrade_url' => esc_url( 'https://ultimateelementor.com/pricing/?utm_source=UAE-Navigation-menu&utm_medium=editor&utm_campaign=static-promotion' ),
			'upgrade_text' => esc_html__( 'Upgrade Now', 'header-footer-elementor' ),
		];
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Navigation_Menu' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Navigation_Menu' );
	}

	/**
	 * Retrieve the list of scripts the navigation menu depended on.
	 *
	 * Used to set scripts dependencies required to run the widget.
	 *
	 * @since 1.3.0
	 * @access public
	 *
	 * @return array Widget scripts dependencies.
	 */
	public function get_script_depends() {
		return [ 'hfe-frontend-js' ];
	}

	/**
	 * Retrieve the menu index.
	 *
	 * Used to get index of nav menu.
	 *
	 * @since 1.3.0
	 * @access protected
	 *
	 * @return int nav index.
	 */
	protected function get_nav_menu_index() {
		return $this->nav_menu_index++;
	}

	/**
	 * Retrieve the list of available menus.
	 *
	 * Used to get the list of available menus.
	 *
	 * @since 1.3.0
	 * @access private
	 *
	 * @return array get WordPress menus list.
	 */
	private function get_available_menus() {

		$menus = wp_get_nav_menus();

		$options = [];

		foreach ( $menus as $menu ) {
			$options[ $menu->slug ] = $menu->name;
		}

		return $options;
	}

	/**
	 * Check if the Elementor is updated.
	 *
	 * @since 1.3.0
	 *
	 * @return boolean if Elementor updated.
	 */
	public static function is_elementor_updated() {
		if ( class_exists( 'Elementor\Icons_Manager' ) ) {
			return true;
		} else {
			return false;
		}
	}

	/**
	 * Register Nav Menu controls.
	 *
	 * @since 1.5.7
	 * @access protected
	 * @return void
	 */
	protected function register_controls() {

		$this->register_general_content_controls();
		$this->register_style_content_controls();
		$this->register_dropdown_content_controls();
	}

	/**
	 * Register Nav Menu General Controls.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function register_general_content_controls() {

		$this->start_controls_section(
			'section_menu',
			[
				'label' => __( 'Menu', 'header-footer-elementor' ),
			]
		);

		$menus = $this->get_available_menus();

		if ( ! empty( $menus ) ) {
			$this->add_control(
				'menu',
				[
					'label'        => __( 'Menu', 'header-footer-elementor' ),
					'type'         => Controls_Manager::SELECT,
					'options'      => $menus,
					'default'      => array_keys( $menus )[0],
					'save_default' => true,
					/* translators: %s Nav menu URL */
					'description'  => sprintf( __( 'Go to the <a href="%s" target="_blank">Menus screen</a> to manage your menus.', 'header-footer-elementor' ), admin_url( 'nav-menus.php' ) ),
				]
			);
		} else {
			$this->add_control(
				'menu',
				[
					'type'            => Controls_Manager::RAW_HTML,
					/* translators: %s Nav menu URL */
					'raw'             => sprintf( __( '<strong>There are no menus in your site.</strong><br>Go to the <a href="%s" target="_blank">Menus screen</a> to create one.', 'header-footer-elementor' ), admin_url( 'nav-menus.php?action=edit&menu=0' ) ),
					'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
				]
			);
		}

		$this->add_control(
			'menu_last_item',
			[
				'label'     => __( 'Last Menu Item', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'options'   => [
					'none' => __( 'Default', 'header-footer-elementor' ),
					'cta'  => __( 'Button', 'header-footer-elementor' ),
				],
				'default'   => 'none',
				'condition' => [
					'layout!' => 'expandible',
				],
			]
		);

		$this->add_control(
			'schema_support',
			[
				'label'        => __( 'Enable Schema Support', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'no',
				'render_type'  => 'template',
				'separator'    => 'before',
			]
		);

		$current_theme = wp_get_theme();

		if ( 'Twenty Twenty-One' === $current_theme->get( 'Name' ) ) {
			$this->add_control(
				'hide_theme_icons',
				[
					'label'        => __( 'Hide + & - Sign', 'header-footer-elementor' ),
					'type'         => Controls_Manager::SWITCHER,
					'label_on'     => __( 'Yes', 'header-footer-elementor' ),
					'label_off'    => __( 'No', 'header-footer-elementor' ),
					'return_value' => 'yes',
					'default'      => 'no',
					'prefix_class' => 'hfe-nav-menu__theme-icon-',
				]
			);
		}

		$this->end_controls_section();

			$this->start_controls_section(
				'section_layout',
				[
					'label' => __( 'Layout', 'header-footer-elementor' ),
				]
			);

			$this->add_control(
				'layout',
				[
					'label'   => __( 'Layout', 'header-footer-elementor' ),
					'type'    => Controls_Manager::SELECT,
					'default' => 'horizontal',
					'options' => [
						'horizontal' => __( 'Horizontal', 'header-footer-elementor' ),
						'vertical'   => __( 'Vertical', 'header-footer-elementor' ),
						'expandible' => __( 'Expanded', 'header-footer-elementor' ),
						'flyout'     => __( 'Flyout', 'header-footer-elementor' ),
					],
				]
			);

			$this->add_control(
				'navmenu_align',
				[
					'label'        => __( 'Alignment', 'header-footer-elementor' ),
					'type'         => Controls_Manager::CHOOSE,
					'options'      => [
						'left'    => [
							'title' => __( 'Left', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-left',
						],
						'center'  => [
							'title' => __( 'Center', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-center',
						],
						'right'   => [
							'title' => __( 'Right', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-right',
						],
						'justify' => [
							'title' => __( 'Justify', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-stretch',
						],
					],
					'default'      => 'left',
					'condition'    => [
						'layout' => [ 'horizontal', 'vertical' ],
					],
					'prefix_class' => 'hfe-nav-menu__align-',
				]
			);

			$this->add_control(
				'flyout_layout',
				[
					'label'     => __( 'Flyout Orientation', 'header-footer-elementor' ),
					'type'      => Controls_Manager::SELECT,
					'default'   => 'left',
					'options'   => [
						'left'  => __( 'Left', 'header-footer-elementor' ),
						'right' => __( 'Right', 'header-footer-elementor' ),
					],
					'condition' => [
						'layout' => 'flyout',
					],
				]
			);

			$this->add_control(
				'flyout_type',
				[
					'label'       => __( 'Appear Effect', 'header-footer-elementor' ),
					'type'        => Controls_Manager::SELECT,
					'default'     => 'normal',
					'label_block' => false,
					'options'     => [
						'normal' => __( 'Slide', 'header-footer-elementor' ),
						'push'   => __( 'Push', 'header-footer-elementor' ),
					],
					'render_type' => 'template',
					'condition'   => [
						'layout' => 'flyout',
					],
				]
			);

			$this->add_responsive_control(
				'hamburger_align',
				[
					'label'                => __( 'Hamburger Align', 'header-footer-elementor' ),
					'type'                 => Controls_Manager::CHOOSE,
					'default'              => 'center',
					'options'              => [
						'left'   => [
							'title' => __( 'Left', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-left',
						],
						'center' => [
							'title' => __( 'Center', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-center',
						],
						'right'  => [
							'title' => __( 'Right', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-right',
						],
					],
					'selectors_dictionary' => [
						'left'   => 'margin-right: auto; margin-left: 0; justify-content: flex-start;',
						'center' => 'margin: 0 auto; justify-content: center;',
						'right'  => 'margin-left: auto; margin-right: 0; justify-content: flex-end;',
					],
					'selectors'            => [
						'{{WRAPPER}} .hfe-nav-menu__toggle,
						{{WRAPPER}} .hfe-nav-menu-icon' => '{{VALUE}}',
					],
					'condition'            => [
						'layout' => [ 'expandible', 'flyout' ],
					],
					'label_block'          => false,
					'frontend_available'   => true,
				]
			);

			$this->add_responsive_control(
				'hamburger_menu_align',
				[
					'label'              => __( 'Menu Items Align', 'header-footer-elementor' ),
					'type'               => Controls_Manager::CHOOSE,
					'options'            => [
						'flex-start'    => [
							'title' => __( 'Left', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-left',
						],
						'center'        => [
							'title' => __( 'Center', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-center',
						],
						'flex-end'      => [
							'title' => __( 'Right', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-right',
						],
						'space-between' => [
							'title' => __( 'Justify', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-stretch',
						],
					],
					'default'            => 'space-between',
					'condition'          => [
						'layout' => [ 'expandible', 'flyout' ],
					],
					'selectors'          => [
						'{{WRAPPER}} li.menu-item a' => 'justify-content: {{VALUE}};',
						'{{WRAPPER}} li.hfe-button-wrapper' => 'text-align: {{VALUE}};',
						'{{WRAPPER}}.hfe-menu-item-flex-end li.hfe-button-wrapper' => 'text-align: right;',
					],
					'prefix_class'       => 'hfe-menu-item-',
					'frontend_available' => true,
				]
			);

			$this->add_control(
				'submenu_icon',
				[
					'label'        => __( 'Submenu Icon', 'header-footer-elementor' ),
					'type'         => Controls_Manager::SELECT,
					'default'      => 'arrow',
					'options'      => [
						'arrow'   => __( 'Arrows', 'header-footer-elementor' ),
						'plus'    => __( 'Plus Sign', 'header-footer-elementor' ),
						'classic' => __( 'Classic', 'header-footer-elementor' ),
					],
					'prefix_class' => 'hfe-submenu-icon-',
				]
			);

			$this->add_control(
				'submenu_animation',
				[
					'label'        => __( 'Submenu Animation', 'header-footer-elementor' ),
					'type'         => Controls_Manager::SELECT,
					'default'      => 'none',
					'options'      => [
						'none'     => __( 'Default', 'header-footer-elementor' ),
						'slide_up' => __( 'Slide Up', 'header-footer-elementor' ),
					],
					'prefix_class' => 'hfe-submenu-animation-',
					'condition'    => [
						'layout' => 'horizontal',
					],
				]
			);

			$this->add_control(
				'link_redirect',
				[
					'label'        => __( 'Action On Menu Click', 'header-footer-elementor' ),
					'type'         => Controls_Manager::SELECT,
					'default'      => 'child',
					'description'  => __( 'For Horizontal layout, this will affect on the selected breakpoint', 'header-footer-elementor' ),
					'options'      => [
						'child'     => __( 'Open Submenu', 'header-footer-elementor' ),
						'self_link' => __( 'Redirect To Self Link', 'header-footer-elementor' ),
					],
					'prefix_class' => 'hfe-link-redirect-',
				]
			);

			$this->add_control(
				'heading_responsive',
				[
					'type'      => Controls_Manager::HEADING,
					'label'     => __( 'Responsive', 'header-footer-elementor' ),
					'separator' => 'before',
					'condition' => [
						'layout' => [ 'horizontal', 'vertical' ],
					],
				]
			);

		$this->add_control(
			'dropdown',
			[
				'label'        => __( 'Breakpoint', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SELECT,
				'default'      => 'tablet',
				'options'      => [
					'mobile' => __( 'Mobile (768px >)', 'header-footer-elementor' ),
					'tablet' => __( 'Tablet (1025px >)', 'header-footer-elementor' ),
					'none'   => __( 'None', 'header-footer-elementor' ),
				],
				'prefix_class' => 'hfe-nav-menu__breakpoint-',
				'condition'    => [
					'layout' => [ 'horizontal', 'vertical' ],
				],
				'render_type'  => 'template',
			]
		);

		$this->add_control(
			'resp_align',
			[
				'label'                => __( 'Alignment', 'header-footer-elementor' ),
				'type'                 => Controls_Manager::CHOOSE,
				'options'              => [
					'left'   => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => 'eicon-h-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'eicon-h-align-center',
					],
					'right'  => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => 'eicon-h-align-right',
					],
				],
				'default'              => 'center',
				'description'          => __( 'This is the alignement of menu icon on selected responsive breakpoints.', 'header-footer-elementor' ),
				'condition'            => [
					'layout'    => [ 'horizontal', 'vertical' ],
					'dropdown!' => 'none',
				],
				'selectors_dictionary' => [
					'left'   => 'margin-right: auto',
					'center' => 'margin: 0 auto',
					'right'  => 'margin-left: auto',
				],
				'selectors'            => [
					'{{WRAPPER}} .hfe-nav-menu__toggle' => '{{VALUE}}',
				],
			]
		);

		$this->add_control(
			'full_width_dropdown',
			[
				'label'        => __( 'Full Width', 'header-footer-elementor' ),
				'description'  => __( 'Enable this option to stretch the Sub Menu to Full Width.', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
				'condition'    => [
					'dropdown!' => 'none',
					'layout!'   => 'flyout',
				],
				'render_type'  => 'template',
			]
		);

		if ( $this->is_elementor_updated() ) {
			$this->add_control(
				'dropdown_icon',
				[
					'label'       => __( 'Menu Icon', 'header-footer-elementor' ),
					'type'        => Controls_Manager::ICONS,
					'label_block' => 'true',
					'default'     => [
						'value'   => 'fas fa-align-justify',
						'library' => 'fa-solid',
					],
					'condition'   => [
						'dropdown!' => 'none',
					],
				]
			);
		} else {
			$this->add_control(
				'dropdown_icon',
				[
					'label'       => __( 'Icon', 'header-footer-elementor' ),
					'type'        => Controls_Manager::ICON,
					'label_block' => 'true',
					'default'     => 'fa fa-align-justify',
					'condition'   => [
						'dropdown!' => 'none',
					],
				]
			);
		}

		if ( $this->is_elementor_updated() ) {
			$this->add_control(
				'dropdown_close_icon',
				[
					'label'       => __( 'Close Icon', 'header-footer-elementor' ),
					'type'        => Controls_Manager::ICONS,
					'label_block' => 'true',
					'default'     => [
						'value'   => 'far fa-window-close',
						'library' => 'fa-regular',
					],
					'condition'   => [
						'dropdown!' => 'none',
					],
				]
			);
		} else {
			$this->add_control(
				'dropdown_close_icon',
				[
					'label'       => __( 'Close Icon', 'header-footer-elementor' ),
					'type'        => Controls_Manager::ICON,
					'label_block' => 'true',
					'default'     => 'fa fa-close',
					'condition'   => [
						'dropdown!' => 'none',
					],
				]
			);
		}

		$this->end_controls_section();
	}

	/**
	 * Register Nav Menu General Controls.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function register_style_content_controls() {

		$this->start_controls_section(
			'section_style_main-menu',
			[
				'label'     => __( 'Main Menu', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'layout!' => 'expandible',
				],
			]
		);

		$this->add_responsive_control(
			'width_flyout_menu_item',
			[
				'label'              => __( 'Flyout Box Width', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'range'              => [
					'px' => [
						'max' => 500,
						'min' => 100,
					],
				],
				'default'            => [
					'size' => 300,
					'unit' => 'px',
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-flyout-wrapper .hfe-side' => 'width: {{SIZE}}{{UNIT}}',
					'{{WRAPPER}} .hfe-flyout-open.left'  => 'left: -{{SIZE}}{{UNIT}}',
					'{{WRAPPER}} .hfe-flyout-open.right' => 'right: -{{SIZE}}{{UNIT}}',
				],
				'condition'          => [
					'layout' => 'flyout',
				],
				'render_type'        => 'template',
				'frontend_available' => true,
			]
		);

			$this->add_responsive_control(
				'padding_flyout_menu_item',
				[
					'label'              => __( 'Flyout Box Padding', 'header-footer-elementor' ),
					'type'               => Controls_Manager::SLIDER,
					'range'              => [
						'px' => [
							'max' => 50,
						],
					],
					'default'            => [
						'size' => 30,
						'unit' => 'px',
					],
					'selectors'          => [
						'{{WRAPPER}} .hfe-flyout-content' => 'padding: {{SIZE}}{{UNIT}}',
					],
					'condition'          => [
						'layout' => 'flyout',
					],
					'frontend_available' => true,
				]
			);

			$this->add_responsive_control(
				'padding_horizontal_menu_item',
				[
					'label'              => __( 'Horizontal Padding', 'header-footer-elementor' ),
					'type'               => Controls_Manager::SLIDER,
					'size_units'         => [ 'px' ],
					'range'              => [
						'px' => [
							'max' => 50,
						],
					],
					'default'            => [
						'size' => 15,
						'unit' => 'px',
					],
					'selectors'          => [
						'{{WRAPPER}} .menu-item a.hfe-menu-item' => 'padding-left: {{SIZE}}{{UNIT}}; padding-right: {{SIZE}}{{UNIT}}',
						'{{WRAPPER}} .menu-item a.hfe-sub-menu-item' => 'padding-left: calc( {{SIZE}}{{UNIT}} + 20px );padding-right: {{SIZE}}{{UNIT}};',
						'{{WRAPPER}} .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item' => 'padding-left: calc( {{SIZE}}{{UNIT}} + 40px );padding-right: {{SIZE}}{{UNIT}};',
						'{{WRAPPER}} .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item' => 'padding-left: calc( {{SIZE}}{{UNIT}} + 60px );padding-right: {{SIZE}}{{UNIT}};',
						'{{WRAPPER}} .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item' => 'padding-left: calc( {{SIZE}}{{UNIT}} + 80px );padding-right: {{SIZE}}{{UNIT}};',
					],
					'frontend_available' => true,
				]
			);

			$this->add_responsive_control(
				'padding_vertical_menu_item',
				[
					'label'              => __( 'Vertical Padding', 'header-footer-elementor' ),
					'type'               => Controls_Manager::SLIDER,
					'size_units'         => [ 'px' ],
					'range'              => [
						'px' => [
							'max' => 50,
						],
					],
					'default'            => [
						'size' => 15,
						'unit' => 'px',
					],
					'selectors'          => [
						'{{WRAPPER}} .menu-item a.hfe-menu-item, {{WRAPPER}} .menu-item a.hfe-sub-menu-item' => 'padding-top: {{SIZE}}{{UNIT}}; padding-bottom: {{SIZE}}{{UNIT}};',
					],
					'frontend_available' => true,
				]
			);

			$this->add_responsive_control(
				'menu_space_between',
				[
					'label'              => __( 'Space Between', 'header-footer-elementor' ),
					'type'               => Controls_Manager::SLIDER,
					'size_units'         => [ 'px' ],
					'range'              => [
						'px' => [
							'max' => 100,
						],
					],
					'selectors'          => [
						'body:not(.rtl) {{WRAPPER}} .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child)' => 'margin-right: {{SIZE}}{{UNIT}}',
						'body.rtl {{WRAPPER}} .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child)' => 'margin-left: {{SIZE}}{{UNIT}}',
						'{{WRAPPER}} nav:not(.hfe-nav-menu__layout-horizontal) .hfe-nav-menu > li.menu-item:not(:last-child)' => 'margin-bottom: {{SIZE}}{{UNIT}}',
						'(tablet)body:not(.rtl) {{WRAPPER}}.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child)' => 'margin-right: 0px',
						'(mobile)body:not(.rtl) {{WRAPPER}}.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child)' => 'margin-right: 0px',
						'(tablet)body {{WRAPPER}} nav.hfe-nav-menu__layout-vertical .hfe-nav-menu > li.menu-item:not(:last-child)' => 'margin-bottom: 0px',
						'(mobile)body {{WRAPPER}} nav.hfe-nav-menu__layout-vertical .hfe-nav-menu > li.menu-item:not(:last-child)' => 'margin-bottom: 0px',
					],
					'condition'          => [
						'layout!' => 'expandible',
					],
					'frontend_available' => true,
				]
			);

			$this->add_responsive_control(
				'menu_row_space',
				[
					'label'              => __( 'Row Spacing', 'header-footer-elementor' ),
					'type'               => Controls_Manager::SLIDER,
					'size_units'         => [ 'px' ],
					'range'              => [
						'px' => [
							'max' => 100,
						],
					],
					'selectors'          => [
						'body:not(.rtl) {{WRAPPER}} .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item' => 'margin-bottom: {{SIZE}}{{UNIT}}',
					],
					'condition'          => [
						'layout' => 'horizontal',
					],
					'frontend_available' => true,
				]
			);

			$this->add_responsive_control(
				'menu_top_space',
				[
					'label'              => __( 'Menu Item Top Spacing', 'header-footer-elementor' ),
					'type'               => Controls_Manager::SLIDER,
					'size_units'         => [ 'px', '%' ],
					'range'              => [
						'px' => [
							'max' => 100,
						],
					],
					'selectors'          => [
						'{{WRAPPER}} .hfe-flyout-wrapper .hfe-nav-menu > li.menu-item:first-child' => 'margin-top: {{SIZE}}{{UNIT}}',
					],
					'condition'          => [
						'layout' => 'flyout',
					],
					'frontend_available' => true,
				]
			);

			$this->add_control(
				'bg_color_flyout',
				[
					'label'     => __( 'Background Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'default'   => '#FFFFFF',
					'selectors' => [
						'{{WRAPPER}} .hfe-flyout-content' => 'background-color: {{VALUE}}',
					],
					'condition' => [
						'layout' => 'flyout',
					],
				]
			);

			$this->add_control(
				'pointer',
				[
					'label'     => __( 'Link Hover Effect', 'header-footer-elementor' ),
					'type'      => Controls_Manager::SELECT,
					'default'   => 'none',
					'options'   => [
						'none'        => __( 'None', 'header-footer-elementor' ),
						'underline'   => __( 'Underline', 'header-footer-elementor' ),
						'overline'    => __( 'Overline', 'header-footer-elementor' ),
						'double-line' => __( 'Double Line', 'header-footer-elementor' ),
						'framed'      => __( 'Framed', 'header-footer-elementor' ),
						'text'        => __( 'Text', 'header-footer-elementor' ),
					],
					'condition' => [
						'layout' => [ 'horizontal' ],
					],
				]
			);

		$this->add_control(
			'animation_line',
			[
				'label'     => __( 'Animation', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'fade',
				'options'   => [
					'fade'     => 'Fade',
					'slide'    => 'Slide',
					'grow'     => 'Grow',
					'drop-in'  => 'Drop In',
					'drop-out' => 'Drop Out',
					'none'     => 'None',
				],
				'condition' => [
					'layout'  => [ 'horizontal' ],
					'pointer' => [ 'underline', 'overline', 'double-line' ],
				],
			]
		);

		$this->add_control(
			'animation_framed',
			[
				'label'     => __( 'Frame Animation', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'fade',
				'options'   => [
					'fade'    => 'Fade',
					'grow'    => 'Grow',
					'shrink'  => 'Shrink',
					'draw'    => 'Draw',
					'corners' => 'Corners',
					'none'    => 'None',
				],
				'condition' => [
					'layout'  => [ 'horizontal' ],
					'pointer' => 'framed',
				],
			]
		);

		$this->add_control(
			'animation_text',
			[
				'label'     => __( 'Animation', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'grow',
				'options'   => [
					'grow'   => 'Grow',
					'shrink' => 'Shrink',
					'sink'   => 'Sink',
					'float'  => 'Float',
					'skew'   => 'Skew',
					'rotate' => 'Rotate',
					'none'   => 'None',
				],
				'condition' => [
					'layout'  => [ 'horizontal' ],
					'pointer' => 'text',
				],
			]
		);

		$this->add_control(
			'style_divider',
			[
				'type' => Controls_Manager::DIVIDER,
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'      => 'menu_typography',
				'global'    => [
					'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
				],
				'separator' => 'before',
				'selector'  => '{{WRAPPER}} a.hfe-menu-item, {{WRAPPER}} a.hfe-sub-menu-item',
			]
		);

		$this->start_controls_tabs( 'tabs_menu_item_style' );

				$this->start_controls_tab(
					'tab_menu_item_normal',
					[
						'label' => __( 'Normal', 'header-footer-elementor' ),
					]
				);

					$this->add_control(
						'color_menu_item',
						[
							'label'     => __( 'Text Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'global'    => [
								'default' => Global_Colors::COLOR_TEXT,
							],
							'default'   => '',
							'selectors' => [
								'{{WRAPPER}} .menu-item a.hfe-menu-item, {{WRAPPER}} .sub-menu a.hfe-sub-menu-item' => 'color: {{VALUE}}',
							],
						]
					);

					$this->add_control(
						'bg_color_menu_item',
						[
							'label'     => __( 'Background Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'default'   => '',
							'selectors' => [
								'{{WRAPPER}} .menu-item a.hfe-menu-item, {{WRAPPER}} .sub-menu, {{WRAPPER}} nav.hfe-dropdown, {{WRAPPER}} .hfe-dropdown-expandible' => 'background-color: {{VALUE}}',
							],
							'condition' => [
								'layout!' => 'flyout',
							],
						]
					);

				$this->end_controls_tab();

				$this->start_controls_tab(
					'tab_menu_item_hover',
					[
						'label' => __( 'Hover', 'header-footer-elementor' ),
					]
				);

					$this->add_control(
						'color_menu_item_hover',
						[
							'label'     => __( 'Text Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'global'    => [
								'default' => Global_Colors::COLOR_ACCENT,
							],
							'selectors' => [
								'{{WRAPPER}} .menu-item a.hfe-menu-item:hover,
								{{WRAPPER}} .sub-menu a.hfe-sub-menu-item:hover,
								{{WRAPPER}} .menu-item.current-menu-item a.hfe-menu-item,
								{{WRAPPER}} .menu-item a.hfe-menu-item.highlighted,
								{{WRAPPER}} .menu-item a.hfe-menu-item:focus' => 'color: {{VALUE}}',
							],
						]
					);

					$this->add_control(
						'bg_color_menu_item_hover',
						[
							'label'     => __( 'Background Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'selectors' => [
								'{{WRAPPER}} .menu-item a.hfe-menu-item:hover,
								{{WRAPPER}} .sub-menu a.hfe-sub-menu-item:hover,
								{{WRAPPER}} .menu-item.current-menu-item a.hfe-menu-item,
								{{WRAPPER}} .menu-item a.hfe-menu-item.highlighted,
								{{WRAPPER}} .menu-item a.hfe-menu-item:focus' => 'background-color: {{VALUE}}',
							],
							'condition' => [
								'layout!' => 'flyout',
							],
						]
					);

					$this->add_control(
						'pointer_color_menu_item_hover',
						[
							'label'     => __( 'Link Hover Effect Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'global'    => [
								'default' => Global_Colors::COLOR_ACCENT,
							],
							'default'   => '',
							'selectors' => [
								'{{WRAPPER}} .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before,
								{{WRAPPER}} .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after' => 'background-color: {{VALUE}}',
								'{{WRAPPER}} .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent .sub-menu .hfe-has-submenu-container a:after' => 'background-color: unset',
								'{{WRAPPER}} .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before,
								{{WRAPPER}} .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:after' => 'border-color: {{VALUE}}',
							],
							'condition' => [
								'pointer!' => [ 'none', 'text' ],
								'layout!'  => 'flyout',
							],
						]
					);

				$this->end_controls_tab();

				$this->start_controls_tab(
					'tab_menu_item_active',
					[
						'label' => __( 'Active', 'header-footer-elementor' ),
					]
				);

					$this->add_control(
						'color_menu_item_active',
						[
							'label'     => __( 'Text Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'default'   => '',
							'selectors' => [
								'{{WRAPPER}} .menu-item.current-menu-item a.hfe-menu-item,
								{{WRAPPER}} .menu-item.current-menu-ancestor a.hfe-menu-item' => 'color: {{VALUE}}',
							],
						]
					);

					$this->add_control(
						'bg_color_menu_item_active',
						[
							'label'     => __( 'Background Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'default'   => '',
							'selectors' => [
								'{{WRAPPER}} .menu-item.current-menu-item a.hfe-menu-item,
								{{WRAPPER}} .menu-item.current-menu-ancestor a.hfe-menu-item' => 'background-color: {{VALUE}}',
							],
							'condition' => [
								'layout!' => 'flyout',
							],
						]
					);

					$this->add_control(
						'pointer_color_menu_item_active',
						[
							'label'     => __( 'Link Hover Effect Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'default'   => '',
							'selectors' => [
								'{{WRAPPER}} .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent.current-menu-item a.hfe-menu-item:before,
								{{WRAPPER}} .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent.current-menu-item a.hfe-menu-item:after' => 'background-color: {{VALUE}}',
								'{{WRAPPER}} .hfe-nav-menu:not(.hfe-pointer__framed) .menu-item.parent .sub-menu .hfe-has-submenu-container a.current-menu-item:after' => 'background-color: unset',
								'{{WRAPPER}} .hfe-pointer__framed .menu-item.parent.current-menu-item a.hfe-menu-item:before,
								{{WRAPPER}} .hfe-pointer__framed .menu-item.parent.current-menu-item a.hfe-menu-item:after' => 'border-color: {{VALUE}}',
							],
							'condition' => [
								'pointer!' => [ 'none', 'text' ],
								'layout!'  => 'flyout',
							],
						]
					);

				$this->end_controls_tab();

			$this->end_controls_tabs();

		$this->end_controls_section();
	}

	/**
	 * Register Nav Menu General Controls.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function register_dropdown_content_controls() {

		$this->start_controls_section(
			'section_style_dropdown',
			[
				'label' => __( 'Dropdown', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

			$this->add_control(
				'dropdown_description',
				[
					'raw'             => __( '<b>Note:</b> On desktop, below style options will apply to the submenu. On mobile, this will apply to the entire menu.', 'header-footer-elementor' ),
					'type'            => Controls_Manager::RAW_HTML,
					'content_classes' => 'elementor-descriptor',
					'condition'       => [
						'layout!' => [
							'expandible',
							'flyout',
						],
					],
				]
			);

			$this->start_controls_tabs( 'tabs_dropdown_item_style' );

				$this->start_controls_tab(
					'tab_dropdown_item_normal',
					[
						'label' => __( 'Normal', 'header-footer-elementor' ),
					]
				);

					$this->add_control(
						'color_dropdown_item',
						[
							'label'     => __( 'Text Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'default'   => '',
							'selectors' => [
								'{{WRAPPER}} .sub-menu a.hfe-sub-menu-item,
								{{WRAPPER}} .elementor-menu-toggle,
								{{WRAPPER}} nav.hfe-dropdown li a.hfe-menu-item,
								{{WRAPPER}} nav.hfe-dropdown li a.hfe-sub-menu-item,
								{{WRAPPER}} nav.hfe-dropdown-expandible li a.hfe-menu-item,
								{{WRAPPER}} nav.hfe-dropdown-expandible li a.hfe-sub-menu-item' => 'color: {{VALUE}}',
							],
						]
					);

					$this->add_control(
						'background_color_dropdown_item',
						[
							'label'     => __( 'Background Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'default'   => '#fff',
							'selectors' => [
								'{{WRAPPER}} .sub-menu,
								{{WRAPPER}} nav.hfe-dropdown,
								{{WRAPPER}} nav.hfe-dropdown-expandible,
								{{WRAPPER}} nav.hfe-dropdown .menu-item a.hfe-menu-item,
								{{WRAPPER}} nav.hfe-dropdown .menu-item a.hfe-sub-menu-item' => 'background-color: {{VALUE}}',
							],
							'separator' => 'after',
						]
					);

				$this->end_controls_tab();

				$this->start_controls_tab(
					'tab_dropdown_item_hover',
					[
						'label' => __( 'Hover', 'header-footer-elementor' ),
					]
				);

					$this->add_control(
						'color_dropdown_item_hover',
						[
							'label'     => __( 'Text Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'default'   => '',
							'selectors' => [
								'{{WRAPPER}} .sub-menu a.hfe-sub-menu-item:hover,
								{{WRAPPER}} .elementor-menu-toggle:hover,
								{{WRAPPER}} nav.hfe-dropdown li a.hfe-menu-item:hover,
								{{WRAPPER}} nav.hfe-dropdown li a.hfe-sub-menu-item:hover,
								{{WRAPPER}} nav.hfe-dropdown-expandible li a.hfe-menu-item:hover,
								{{WRAPPER}} nav.hfe-dropdown-expandible li a.hfe-sub-menu-item:hover' => 'color: {{VALUE}}',
							],
						]
					);

					$this->add_control(
						'background_color_dropdown_item_hover',
						[
							'label'     => __( 'Background Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'default'   => '',
							'selectors' => [
								'{{WRAPPER}} .sub-menu a.hfe-sub-menu-item:hover,
								{{WRAPPER}} nav.hfe-dropdown li a.hfe-menu-item:hover,
								{{WRAPPER}} nav.hfe-dropdown li a.hfe-sub-menu-item:hover,
								{{WRAPPER}} nav.hfe-dropdown-expandible li a.hfe-menu-item:hover,
								{{WRAPPER}} nav.hfe-dropdown-expandible li a.hfe-sub-menu-item:hover' => 'background-color: {{VALUE}}',
							],
							'separator' => 'after',
						]
					);

				$this->end_controls_tab();

				$this->start_controls_tab(
					'tab_dropdown_item_active',
					[
						'label' => __( 'Active', 'header-footer-elementor' ),
					]
				);

				$this->add_control(
					'color_dropdown_item_active',
					[
						'label'     => __( 'Text Color', 'header-footer-elementor' ),
						'type'      => Controls_Manager::COLOR,
						'default'   => '',
						'selectors' => [
							'{{WRAPPER}} .sub-menu .menu-item.current-menu-item a.hfe-sub-menu-item.hfe-sub-menu-item-active,
							{{WRAPPER}} nav.hfe-dropdown .menu-item.current-menu-item a.hfe-menu-item,
							{{WRAPPER}} nav.hfe-dropdown .menu-item.current-menu-ancestor a.hfe-menu-item,
							{{WRAPPER}} nav.hfe-dropdown .sub-menu .menu-item.current-menu-item a.hfe-sub-menu-item.hfe-sub-menu-item-active
							' => 'color: {{VALUE}}',

						],
					]
				);

				$this->add_control(
					'background_color_dropdown_item_active',
					[
						'label'     => __( 'Background Color', 'header-footer-elementor' ),
						'type'      => Controls_Manager::COLOR,
						'default'   => '',
						'selectors' => [
							'{{WRAPPER}} .sub-menu .menu-item.current-menu-item a.hfe-sub-menu-item.hfe-sub-menu-item-active,
							{{WRAPPER}} nav.hfe-dropdown .menu-item.current-menu-item a.hfe-menu-item,
							{{WRAPPER}} nav.hfe-dropdown .menu-item.current-menu-ancestor a.hfe-menu-item,
							{{WRAPPER}} nav.hfe-dropdown .sub-menu .menu-item.current-menu-item a.hfe-sub-menu-item.hfe-sub-menu-item-active' => 'background-color: {{VALUE}}',
						],
						'separator' => 'after',
					]
				);

				$this->end_controls_tabs();

			$this->end_controls_tabs();

			$this->add_group_control(
				Group_Control_Typography::get_type(),
				[
					'name'      => 'dropdown_typography',
					'global'    => [
						'default' => Global_Typography::TYPOGRAPHY_ACCENT,
					],
					'separator' => 'before',
					'selector'  => '
							{{WRAPPER}} .sub-menu li a.hfe-sub-menu-item,
							{{WRAPPER}} nav.hfe-dropdown li a.hfe-sub-menu-item,
							{{WRAPPER}} nav.hfe-dropdown li a.hfe-menu-item,
							{{WRAPPER}} nav.hfe-dropdown-expandible li a.hfe-menu-item,
							{{WRAPPER}} nav.hfe-dropdown-expandible li a.hfe-sub-menu-item',
				]
			);

			$this->add_group_control(
				Group_Control_Border::get_type(),
				[
					'name'     => 'dropdown_border',
					'selector' => '{{WRAPPER}} nav.hfe-nav-menu__layout-horizontal .sub-menu,
							{{WRAPPER}} nav:not(.hfe-nav-menu__layout-horizontal) .sub-menu.sub-menu-open,
							{{WRAPPER}} nav.hfe-dropdown .hfe-nav-menu,
						 	{{WRAPPER}} nav.hfe-dropdown-expandible .hfe-nav-menu',
				]
			);

			$this->add_responsive_control(
				'dropdown_border_radius',
				[
					'label'              => __( 'Border Radius', 'header-footer-elementor' ),
					'type'               => Controls_Manager::DIMENSIONS,
					'size_units'         => [ 'px', '%' ],
					'selectors'          => [
						'{{WRAPPER}} .sub-menu'        => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
						'{{WRAPPER}} .sub-menu li.menu-item:first-child' => 'border-top-left-radius: {{TOP}}{{UNIT}}; border-top-right-radius: {{RIGHT}}{{UNIT}};overflow:hidden;',
						'{{WRAPPER}} .sub-menu li.menu-item:last-child' => 'border-bottom-right-radius: {{BOTTOM}}{{UNIT}}; border-bottom-left-radius: {{LEFT}}{{UNIT}};overflow:hidden',
						'{{WRAPPER}} nav.hfe-dropdown' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
						'{{WRAPPER}} nav.hfe-dropdown li.menu-item:first-child' => 'border-top-left-radius: {{TOP}}{{UNIT}}; border-top-right-radius: {{RIGHT}}{{UNIT}};overflow:hidden',
						'{{WRAPPER}} nav.hfe-dropdown li.menu-item:last-child' => 'border-bottom-right-radius: {{BOTTOM}}{{UNIT}}; border-bottom-left-radius: {{LEFT}}{{UNIT}};overflow:hidden',
						'{{WRAPPER}} nav.hfe-dropdown-expandible' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
						'{{WRAPPER}} nav.hfe-dropdown-expandible li.menu-item:first-child' => 'border-top-left-radius: {{TOP}}{{UNIT}}; border-top-right-radius: {{RIGHT}}{{UNIT}};overflow:hidden',
						'{{WRAPPER}} nav.hfe-dropdown-expandible li.menu-item:last-child' => 'border-bottom-right-radius: {{BOTTOM}}{{UNIT}}; border-bottom-left-radius: {{LEFT}}{{UNIT}};overflow:hidden',
					],
					'frontend_available' => true,
				]
			);

			$this->add_group_control(
				Group_Control_Box_Shadow::get_type(),
				[
					'name'      => 'dropdown_box_shadow',
					'exclude'   => [
						'box_shadow_position',
					],
					'selector'  => '{{WRAPPER}} .hfe-nav-menu .sub-menu,
								{{WRAPPER}} nav.hfe-dropdown,
						 		{{WRAPPER}} nav.hfe-dropdown-expandible',
					'separator' => 'after',
				]
			);

			$this->add_responsive_control(
				'width_dropdown_item',
				[
					'label'              => __( 'Dropdown Width (px)', 'header-footer-elementor' ),
					'type'               => Controls_Manager::SLIDER,
					'range'              => [
						'px' => [
							'min' => 0,
							'max' => 500,
						],
					],
					'default'            => [
						'size' => '220',
						'unit' => 'px',
					],
					'selectors'          => [
						'{{WRAPPER}} ul.sub-menu' => 'width: {{SIZE}}{{UNIT}}',
					],
					'condition'          => [
						'layout' => 'horizontal',
					],
					'frontend_available' => true,
				]
			);

			$this->add_responsive_control(
				'padding_horizontal_dropdown_item',
				[
					'label'              => __( 'Horizontal Padding', 'header-footer-elementor' ),
					'type'               => Controls_Manager::SLIDER,
					'size_units'         => [ 'px' ],
					'selectors'          => [
						'{{WRAPPER}} .sub-menu li a.hfe-sub-menu-item,
						{{WRAPPER}} nav.hfe-dropdown li a.hfe-menu-item,
						{{WRAPPER}} nav.hfe-dropdown-expandible li a.hfe-menu-item' => 'padding-left: {{SIZE}}{{UNIT}}; padding-right: {{SIZE}}{{UNIT}}',
						'{{WRAPPER}} nav.hfe-dropdown-expandible a.hfe-sub-menu-item,
						{{WRAPPER}} nav.hfe-dropdown li a.hfe-sub-menu-item' => 'padding-left: calc( {{SIZE}}{{UNIT}} + 20px );padding-right: {{SIZE}}{{UNIT}};',
						'{{WRAPPER}} .hfe-dropdown .menu-item ul ul a.hfe-sub-menu-item,
						{{WRAPPER}} .hfe-dropdown-expandible .menu-item ul ul a.hfe-sub-menu-item' => 'padding-left: calc( {{SIZE}}{{UNIT}} + 40px );padding-right: {{SIZE}}{{UNIT}};',
						'{{WRAPPER}} .hfe-dropdown .menu-item ul ul ul a.hfe-sub-menu-item,
						{{WRAPPER}} .hfe-dropdown-expandible .menu-item ul ul ul a.hfe-sub-menu-item' => 'padding-left: calc( {{SIZE}}{{UNIT}} + 60px );padding-right: {{SIZE}}{{UNIT}};',
						'{{WRAPPER}} .hfe-dropdown .menu-item ul ul ul ul a.hfe-sub-menu-item,
						{{WRAPPER}} .hfe-dropdown-expandible .menu-item ul ul ul ul a.hfe-sub-menu-item' => 'padding-left: calc( {{SIZE}}{{UNIT}} + 80px );padding-right: {{SIZE}}{{UNIT}};',
					],
					'frontend_available' => true,
				]
			);

			$this->add_responsive_control(
				'padding_vertical_dropdown_item',
				[
					'label'              => __( 'Vertical Padding', 'header-footer-elementor' ),
					'type'               => Controls_Manager::SLIDER,
					'size_units'         => [ 'px' ],
					'default'            => [
						'size' => 15,
						'unit' => 'px',
					],
					'range'              => [
						'px' => [
							'max' => 50,
						],
					],
					'selectors'          => [
						'{{WRAPPER}} .sub-menu a.hfe-sub-menu-item,
						 {{WRAPPER}} nav.hfe-dropdown li a.hfe-menu-item,
						 {{WRAPPER}} nav.hfe-dropdown li a.hfe-sub-menu-item,
						 {{WRAPPER}} nav.hfe-dropdown-expandible li a.hfe-menu-item,
						 {{WRAPPER}} nav.hfe-dropdown-expandible li a.hfe-sub-menu-item' => 'padding-top: {{SIZE}}{{UNIT}}; padding-bottom: {{SIZE}}{{UNIT}}',
					],
					'frontend_available' => true,
				]
			);

			$this->add_responsive_control(
				'distance_from_menu',
				[
					'label'              => __( 'Top Distance', 'header-footer-elementor' ),
					'type'               => Controls_Manager::SLIDER,
					'range'              => [
						'px' => [
							'min' => -100,
							'max' => 100,
						],
					],
					'selectors'          => [
						'{{WRAPPER}} nav.hfe-nav-menu__layout-horizontal:not(.hfe-dropdown) ul.sub-menu, {{WRAPPER}} nav.hfe-nav-menu__layout-expandible.menu-is-active, {{WRAPPER}} nav.hfe-nav-menu__layout-vertical:not(.hfe-dropdown) ul.sub-menu' => 'margin-top: {{SIZE}}px;',
						'{{WRAPPER}} .hfe-dropdown.menu-is-active' => 'margin-top: {{SIZE}}px;',
					],
					'condition'          => [
						'layout' => [ 'horizontal', 'vertical', 'expandible' ],
					],
					'frontend_available' => true,
				]
			);

			$this->add_control(
				'heading_dropdown_divider',
				[
					'label'     => __( 'Divider', 'header-footer-elementor' ),
					'type'      => Controls_Manager::HEADING,
					'separator' => 'before',
				]
			);

			$this->add_control(
				'dropdown_divider_border',
				[
					'label'       => __( 'Border Style', 'header-footer-elementor' ),
					'type'        => Controls_Manager::SELECT,
					'default'     => 'solid',
					'label_block' => false,
					'options'     => [
						'none'   => __( 'None', 'header-footer-elementor' ),
						'solid'  => __( 'Solid', 'header-footer-elementor' ),
						'double' => __( 'Double', 'header-footer-elementor' ),
						'dotted' => __( 'Dotted', 'header-footer-elementor' ),
						'dashed' => __( 'Dashed', 'header-footer-elementor' ),
					],
					'selectors'   => [
						'{{WRAPPER}} .sub-menu li.menu-item:not(:last-child),
						{{WRAPPER}} nav.hfe-dropdown li.menu-item:not(:last-child),
						{{WRAPPER}} nav.hfe-dropdown-expandible li.menu-item:not(:last-child)' => 'border-bottom-style: {{VALUE}};',
					],
				]
			);
			$this->add_control(
				'divider_border_color',
				[
					'label'     => __( 'Border Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'default'   => '#c4c4c4',
					'selectors' => [
						'{{WRAPPER}} .sub-menu li.menu-item:not(:last-child),
						{{WRAPPER}} nav.hfe-dropdown li.menu-item:not(:last-child),
						{{WRAPPER}} nav.hfe-dropdown-expandible li.menu-item:not(:last-child)' => 'border-bottom-color: {{VALUE}};',
					],
					'condition' => [
						'dropdown_divider_border!' => 'none',
					],
				]
			);

			$this->add_control(
				'dropdown_divider_width',
				[
					'label'     => __( 'Border Width', 'header-footer-elementor' ),
					'type'      => Controls_Manager::SLIDER,
					'range'     => [
						'px' => [
							'max' => 50,
						],
					],
					'default'   => [
						'size' => '1',
						'unit' => 'px',
					],
					'selectors' => [
						'{{WRAPPER}} .sub-menu li.menu-item:not(:last-child),
						{{WRAPPER}} nav.hfe-dropdown li.menu-item:not(:last-child),
						{{WRAPPER}} nav.hfe-dropdown-expandible li.menu-item:not(:last-child)' => 'border-bottom-width: {{SIZE}}{{UNIT}}',
					],
					'condition' => [
						'dropdown_divider_border!' => 'none',
					],
				]
			);

		$this->end_controls_section();

		$this->start_controls_section(
			'style_toggle',
			[
				'label' => __( 'Menu Trigger & Close Icon', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->start_controls_tabs( 'tabs_toggle_style' );

		$this->start_controls_tab(
			'toggle_style_normal',
			[
				'label' => __( 'Normal', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'toggle_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} div.hfe-nav-menu-icon' => 'color: {{VALUE}}',
					'{{WRAPPER}} div.hfe-nav-menu-icon svg' => 'fill: {{VALUE}}',
				],
			]
		);

		$this->add_control(
			'toggle_background_color',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-nav-menu-icon' => 'background-color: {{VALUE}}; padding: 0.35em;',
				],
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'toggle_hover',
			[
				'label' => __( 'Hover', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'toggle_hover_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} div.hfe-nav-menu-icon:hover' => 'color: {{VALUE}}',
					'{{WRAPPER}} div.hfe-nav-menu-icon:hover svg' => 'fill: {{VALUE}}',

				],
			]
		);

		$this->add_control(
			'toggle_hover_background_color',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-nav-menu-icon:hover' => 'background-color: {{VALUE}}; padding: 0.35em;',
				],
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->add_responsive_control(
			'toggle_size',
			[
				'label'              => __( 'Icon Size', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'range'              => [
					'px' => [
						'min' => 15,
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-nav-menu-icon'     => 'font-size: {{SIZE}}{{UNIT}}',
					'{{WRAPPER}} .hfe-nav-menu-icon svg' => 'font-size: {{SIZE}}px;line-height: {{SIZE}}px;height: {{SIZE}}px;width: {{SIZE}}px;',
				],
				'frontend_available' => true,
				'separator'          => 'before',
			]
		);

		$this->add_responsive_control(
			'toggle_border_width',
			[
				'label'              => __( 'Border Width', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'range'              => [
					'px' => [
						'max' => 10,
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-nav-menu-icon' => 'border-width: {{SIZE}}{{UNIT}}; padding: 0.35em;',
				],
				'frontend_available' => true,
			]
		);

		$this->add_responsive_control(
			'toggle_border_radius',
			[
				'label'              => __( 'Border Radius', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'size_units'         => [ 'px', '%' ],
				'selectors'          => [
					'{{WRAPPER}} .hfe-nav-menu-icon' => 'border-radius: {{SIZE}}{{UNIT}}',
				],
				'frontend_available' => true,
			]
		);

		$this->add_control(
			'close_color_flyout',
			[
				'label'     => __( 'Close Icon Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '#7A7A7A',
				'selectors' => [
					'{{WRAPPER}} .hfe-flyout-close'     => 'color: {{VALUE}}',
					'{{WRAPPER}} .hfe-flyout-close svg' => 'fill: {{VALUE}}',

				],
				'condition' => [
					'layout' => 'flyout',
				],
				'separator' => 'before',
			]
		);

		$this->add_responsive_control(
			'close_flyout_size',
			[
				'label'              => __( 'Close Icon Size', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'range'              => [
					'px' => [
						'min' => 15,
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-flyout-close,
					{{WRAPPER}} .hfe-flyout-close svg' => 'height: {{SIZE}}px; width: {{SIZE}}px; font-size: {{SIZE}}px; line-height: {{SIZE}}px;',
				],
				'condition'          => [
					'layout' => 'flyout',
				],
				'frontend_available' => true,
			]
		);

		$this->end_controls_section();
		$this->start_controls_section(
			'style_button',
			[
				'label'     => __( 'Button', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'menu_last_item' => 'cta',
				],
			]
		);

			$this->add_group_control(
				Group_Control_Typography::get_type(),
				[
					'name'     => 'all_typography',
					'label'    => __( 'Typography', 'header-footer-elementor' ),
					'global'   => [
						'default' => Global_Typography::TYPOGRAPHY_ACCENT,
					],
					'selector' => '{{WRAPPER}} .menu-item a.hfe-menu-item.elementor-button',
				]
			);
			$this->add_responsive_control(
				'padding',
				[
					'label'              => __( 'Padding', 'header-footer-elementor' ),
					'type'               => Controls_Manager::DIMENSIONS,
					'size_units'         => [ 'px', 'em', '%' ],
					'selectors'          => [
						'{{WRAPPER}} .menu-item a.hfe-menu-item.elementor-button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
					],
					'frontend_available' => true,
				]
			);

			$this->start_controls_tabs( '_button_style' );

				$this->start_controls_tab(
					'_button_normal',
					[
						'label' => __( 'Normal', 'header-footer-elementor' ),
					]
				);

					$this->add_control(
						'all_text_color',
						[
							'label'     => __( 'Text Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'default'   => '',
							'selectors' => [
								'{{WRAPPER}} .menu-item a.hfe-menu-item.elementor-button' => 'color: {{VALUE}};',
							],
						]
					);

					$this->add_group_control(
						Group_Control_Background::get_type(),
						[
							'name'           => 'all_background_color',
							'label'          => __( 'Background Color', 'header-footer-elementor' ),
							'types'          => [ 'classic', 'gradient' ],
							'selector'       => '{{WRAPPER}} .menu-item a.hfe-menu-item.elementor-button',
							'fields_options' => [
								'color' => [
									'global' => [
										'default' => Global_Colors::COLOR_ACCENT,
									],
								],
							],
						]
					);

					$this->add_group_control(
						Group_Control_Border::get_type(),
						[
							'name'     => 'all_border',
							'label'    => __( 'Border', 'header-footer-elementor' ),
							'selector' => '{{WRAPPER}} .menu-item a.hfe-menu-item.elementor-button',
						]
					);

					$this->add_control(
						'all_border_radius',
						[
							'label'      => __( 'Border Radius', 'header-footer-elementor' ),
							'type'       => Controls_Manager::DIMENSIONS,
							'size_units' => [ 'px', '%' ],
							'selectors'  => [
								'{{WRAPPER}} .menu-item a.hfe-menu-item.elementor-button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
							],
						]
					);

					$this->add_group_control(
						Group_Control_Box_Shadow::get_type(),
						[
							'name'     => 'all_button_box_shadow',
							'selector' => '{{WRAPPER}} .menu-item a.hfe-menu-item.elementor-button',
						]
					);

				$this->end_controls_tab();

				$this->start_controls_tab(
					'all_button_hover',
					[
						'label' => __( 'Hover', 'header-footer-elementor' ),
					]
				);

					$this->add_control(
						'all_hover_color',
						[
							'label'     => __( 'Text Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'selectors' => [
								'{{WRAPPER}} .menu-item a.hfe-menu-item.elementor-button:hover' => 'color: {{VALUE}};',
							],
						]
					);

					$this->add_group_control(
						Group_Control_Background::get_type(),
						[
							'name'           => 'all_background_hover_color',
							'label'          => __( 'Background Color', 'header-footer-elementor' ),
							'types'          => [ 'classic', 'gradient' ],
							'selector'       => '{{WRAPPER}} .menu-item a.hfe-menu-item.elementor-button:hover',
							'fields_options' => [
								'color' => [
									'global' => [
										'default' => Global_Colors::COLOR_ACCENT,
									],
								],
							],
						]
					);

					$this->add_control(
						'all_border_hover_color',
						[
							'label'     => __( 'Border Hover Color', 'header-footer-elementor' ),
							'type'      => Controls_Manager::COLOR,
							'default'   => '',
							'selectors' => [
								'{{WRAPPER}} .menu-item a.hfe-menu-item.elementor-button:hover' => 'border-color: {{VALUE}};',
							],
						]
					);

					$this->add_group_control(
						Group_Control_Box_Shadow::get_type(),
						[
							'name'      => 'all_button_hover_box_shadow',
							'selector'  => '{{WRAPPER}} .menu-item a.hfe-menu-item.elementor-button:hover',
							'separator' => 'after',
						]
					);

				$this->end_controls_tab();

			$this->end_controls_tabs();

		$this->end_controls_section();
	}

	/**
	 * Add itemprop for Navigation Schema.
	 *
	 * @since 1.5.2
	 * @param string $atts link attributes.
	 * @access public
	 * @return string
	 */
	public function handle_link_attrs( $atts ) {

		$atts .= ' itemprop="url"';
		return $atts;
	}

	/**
	 * Add itemprop to the li tag of Navigation Schema.
	 *
	 * @since 1.6.0
	 * @param string $value link attributes.
	 * @access public
	 * @return string
	 */
	public function handle_li_values( $value ) {

		$value .= ' itemprop="name"';
		return $value;
	}

	/**
	 * Get the menu and close icon HTML.
	 *
	 * @since 1.5.2
	 * @param array $settings Widget settings array.
	 * @access public
	 * @return array
	 */
	public function get_menu_close_icon( $settings ) {
		$menu_icon     = '';
		$close_icon    = '';
		$icons         = [];
		$icon_settings = [
			$settings['dropdown_icon'],
			$settings['dropdown_close_icon'],
		];

		foreach ( $icon_settings as $icon ) {
			if ( $this->is_elementor_updated() ) {
				ob_start();
				\Elementor\Icons_Manager::render_icon(
					$icon,
					[
						'aria-hidden' => 'true',
						'tabindex'    => '0',
					]
				);
				$menu_icon = ob_get_clean();
			} else {
				$menu_icon = '<i class="' . esc_attr( $icon ) . '" aria-hidden="true" tabindex="0"></i>';
			}

			array_push( $icons, $menu_icon );
		}

		return $icons;
	}

	/**
	 * Render Nav Menu output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return (void | false)
	 */
	protected function render() {

		$menus = $this->get_available_menus();

		if ( empty( $menus ) ) {
			return false;
		}

		$settings = $this->get_settings_for_display();

		$menu_close_icons = [];
		$menu_close_icons = $this->get_menu_close_icon( $settings );

		$args = [
			'echo'        => false,
			'menu'        => $settings['menu'],
			'menu_class'  => 'hfe-nav-menu',
			'menu_id'     => 'menu-' . $this->get_nav_menu_index() . '-' . $this->get_id(),
			'fallback_cb' => '__return_empty_string',
			'container'   => '',
			'walker'      => new Menu_Walker(),
		];

		if ( 'yes' === $settings['schema_support'] ) {
			$this->add_render_attribute( 'hfe-nav-menu', 'itemscope', 'itemscope' );
			$this->add_render_attribute( 'hfe-nav-menu', 'itemtype', 'https://schema.org/SiteNavigationElement' );

			add_filter( 'hfe_nav_menu_attrs', [ $this, 'handle_link_attrs' ] );
			add_filter( 'nav_menu_li_values', [ $this, 'handle_li_values' ] );
		}

		if ( 'flyout' === $settings['layout'] ) {

			$this->add_render_attribute( 'hfe-flyout', 'class', 'hfe-flyout-wrapper' );
			if ( 'cta' === $settings['menu_last_item'] ) {

				$this->add_render_attribute( 'hfe-flyout', 'data-last-item', $settings['menu_last_item'] );
			}

			?>
			<div class="hfe-nav-menu__toggle elementor-clickable hfe-flyout-trigger" tabindex="0" role="button" aria-label="<?php esc_attr_e( 'Menu Toggle', 'header-footer-elementor' ); ?>">
					<div class="hfe-nav-menu-icon">
						<?php echo isset( $menu_close_icons[0] ) ? $menu_close_icons[0] : ''; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
					</div>
				</div>
			<div <?php $this->print_render_attribute_string( 'hfe-flyout' ); ?> >
				<div class="hfe-flyout-overlay elementor-clickable"></div>
				<div class="hfe-flyout-container">
					<div id="hfe-flyout-content-id-<?php echo esc_attr( $this->get_id() ); ?>" class="hfe-side hfe-flyout-<?php echo esc_attr( $settings['flyout_layout'] ); ?> hfe-flyout-open" data-layout="<?php echo esc_attr( $settings['flyout_layout'] ); ?>" data-flyout-type="<?php echo esc_attr( $settings['flyout_type'] ); ?>">
						<div class="hfe-flyout-content push">
							<nav <?php $this->print_render_attribute_string( 'hfe-nav-menu' ); ?>>
								<?php echo wp_nav_menu( $args ); ?>
							</nav>
							<div class="elementor-clickable hfe-flyout-close" tabindex="0">
								<?php echo isset( $menu_close_icons[1] ) ? $menu_close_icons[1] : ''; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
							</div>
						</div>
					</div>
				</div>
			</div>
			<?php
		} else {
			$this->add_render_attribute(
				'hfe-main-menu',
				'class',
				[
					'hfe-nav-menu',
					'hfe-layout-' . $settings['layout'],
				]
			);

			$this->add_render_attribute( 'hfe-main-menu', 'class', 'hfe-nav-menu-layout' );

			$this->add_render_attribute( 'hfe-main-menu', 'class', $settings['layout'] );

			$this->add_render_attribute( 'hfe-main-menu', 'data-layout', $settings['layout'] );

			if ( 'cta' === $settings['menu_last_item'] ) {

				$this->add_render_attribute( 'hfe-main-menu', 'data-last-item', $settings['menu_last_item'] );
			}

			if ( $settings['pointer'] ) {
				if ( 'horizontal' === $settings['layout'] || 'vertical' === $settings['layout'] ) {
					$this->add_render_attribute( 'hfe-main-menu', 'class', 'hfe-pointer__' . $settings['pointer'] );

					if ( in_array( $settings['pointer'], [ 'double-line', 'underline', 'overline' ], true ) ) {
						$key = 'animation_line';
						$this->add_render_attribute( 'hfe-main-menu', 'class', 'hfe-animation__' . $settings[ $key ] );
					} elseif ( 'framed' === $settings['pointer'] || 'text' === $settings['pointer'] ) {
						$key = 'animation_' . $settings['pointer'];
						$this->add_render_attribute( 'hfe-main-menu', 'class', 'hfe-animation__' . $settings[ $key ] );
					}
				}
			}

			if ( 'expandible' === $settings['layout'] ) {
				$this->add_render_attribute( 'hfe-nav-menu', 'class', 'hfe-dropdown-expandible' );
			}

			$this->add_render_attribute(
				'hfe-nav-menu',
				'class',
				[
					'hfe-nav-menu__layout-' . $settings['layout'],
					'hfe-nav-menu__submenu-' . $settings['submenu_icon'],
				]
			);

			$this->add_render_attribute( 'hfe-nav-menu', 'data-toggle-icon', $menu_close_icons[0] );

			$this->add_render_attribute( 'hfe-nav-menu', 'data-close-icon', $menu_close_icons[1] );

			$this->add_render_attribute( 'hfe-nav-menu', 'data-full-width', $settings['full_width_dropdown'] );

			?>
			<div <?php $this->print_render_attribute_string( 'hfe-main-menu' ); ?>>
				<div role="button" class="hfe-nav-menu__toggle elementor-clickable" tabindex="0" aria-label="<?php esc_attr_e( 'Menu Toggle', 'header-footer-elementor' ); ?>">
					<span class="screen-reader-text"><?php esc_html_e( 'Menu', 'header-footer-elementor' ); ?></span>
					<div class="hfe-nav-menu-icon">
						<?php
						$menu_close_icons[0] = str_replace( 'tabindex="0"', '', $menu_close_icons[0] );
						echo isset( $menu_close_icons[0] ) ? $menu_close_icons[0] : ''; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
						?>
					</div>
				</div>
				<nav <?php $this->print_render_attribute_string( 'hfe-nav-menu' ); ?>>
					<?php echo wp_nav_menu( $args ); ?> 
				</nav>
			</div>
			<?php
		}
	}
}
PK���\
�(�KK%inc/widgets-manager/widgets/index.phpnu�[���<?php
/**
 * Silence is golden.
 *
 * @package header-footer-elementor
 */
PK���\3�W���7inc/widgets-manager/widgets/woo-product-grid/module.phpnu�[���<?php
/**
 * HFE Woo Products Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\WooProductGrid;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return class_exists( 'WooCommerce' );
	}

	/**
	 * Get Module Name.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'woo-product-grid';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Woo_Product_Grid',
		];
	}

	/**
	 * Constructor.
	 *
	 * @since 2.6.0
	 * @access public
	 */
	public function __construct() {
		parent::__construct();
	}
}
PK���\��]$|$|Ainc/widgets-manager/widgets/woo-product-grid/woo-product-grid.phpnu�[���<?php
/**
 * HFE Woo Products Widget.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\WooProductGrid;

use Elementor\Controls_Manager;
use Elementor\Group_Control_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
use Elementor\Group_Control_Background;
use Elementor\Group_Control_Box_Shadow;
use Elementor\Group_Control_Border;
use Elementor\Utils;

use HFE\WidgetsManager\Widgets_Loader;
use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * HFE Woo Products Widget
 *
 * @since 2.6.0
 */
class Woo_Product_Grid extends Common_Widget {

	/**
	 * Products Query
	 *
	 * @var \WP_Query
	 */
	private $query = null;

	/**
	 * Retrieve the widget name.
	 *
	 * @since 2.6.0
	 * @access public
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Woo_Product_Grid' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 2.6.0
	 * @access public
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Woo_Product_Grid' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 2.6.0
	 * @access public
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Woo_Product_Grid' );
	}

	/**
	 * Retrieve the list of keywords the widget belongs to.
	 *
	 * @since 2.6.0
	 * @access public
	 * @return array Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Woo_Product_Grid' );
	}

	/**
	 * Get Script Depends.
	 *
	 * @since 2.6.0
	 * @access public
	 * @return array scripts.
	 */
	public function get_script_depends() {
		return [ 'hfe-woo-product-grid' ];
	}

	/**
	 * Get Style Depends.
	 *
	 * @since 2.6.0
	 * @access public
	 * @return array styles.
	 */
	public function get_style_depends() {
		return [ 'hfe-woo-product-grid' ];
	}

	/**
	 * Check if WooCommerce is active.
	 *
	 * @since 2.6.0
	 * @access private
	 * @return bool
	 */
	private function is_woocommerce_active() {
		return class_exists( 'WooCommerce' );
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * @since 2.6.0
	 * @access protected
	 * @return bool True for dynamic content, false for static content.
	 */
	protected function is_dynamic_content(): bool {
		return true;
	}

	/**
	 * Get widget upsale data.
	 *
	 * Retrieve the widget promotion data.
	 *
	 * @since 2.6.0
	 * @access protected
	 *
	 * @return array Widget promotion data.
	 */
	protected function get_upsale_data() {
		return [
			'condition' => ! defined( 'UAEL_VER' ),
			'image' => esc_url( HFE_URL . 'assets/images/upgrade-pro.png' ),
			'image_alt' => esc_attr__( 'Upgrade', 'header-footer-elementor' ),
			'title' => esc_html__( 'Upgrade your Woo Products widget', 'header-footer-elementor' ),
			'description' => esc_html__( 'Get the advanced Woo Products widget and unlock powerful layouts, filters, and customization options with UAE Pro.', 'header-footer-elementor' ),
			'upgrade_url' => esc_url( 'https://ultimateelementor.com/pricing/?utm_source=UAE-Basic-Post&utm_medium=editor&utm_campaign=static-promotion' ),
			'upgrade_text' => esc_html__( 'Upgrade Now', 'header-footer-elementor' ),
		];
	}

	/**
	 * Register widget controls.
	 *
	 * @since 2.6.0
	 * @access protected
	 */
	protected function register_controls() {
		if ( ! $this->is_woocommerce_active() ) {
			$this->register_woocommerce_notice_controls();
			return;
		}

		$this->register_general_controls();
		$this->register_content_controls();
		$this->register_query_controls();
		$this->register_layout_style_controls();
		$this->register_content_style_controls();
		$this->register_pro_promotion_controls();
	}

	/**
	 * Register WooCommerce notice controls.
	 *
	 * @since 2.6.0
	 * @access protected
	 */
	protected function register_woocommerce_notice_controls() {
		$this->start_controls_section(
			'section_woocommerce_notice',
			[
				'label' => __( 'WooCommerce Required', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'woocommerce_notice',
			[
				'type'            => Controls_Manager::RAW_HTML,
				'raw'             => sprintf(
					/* translators: %1$s: opening link tag, %2$s: closing link tag */
					__( 'This widget requires WooCommerce to be installed and activated. %1$sInstall WooCommerce%2$s', 'header-footer-elementor' ),
					'<a href="' . esc_url( admin_url( 'plugin-install.php?s=woocommerce&tab=search&type=term' ) ) . '" target="_blank">',
					'</a>'
				),
				'content_classes' => 'elementor-panel-alert elementor-panel-alert-warning',
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register general controls.
	 *
	 * @since 2.6.0
	 * @access protected
	 */
	protected function register_general_controls() {
		$this->start_controls_section(
			'section_general',
			[
				'label' => __( 'General', 'header-footer-elementor' ),
			]
		);

		$this->add_responsive_control(
			'columns',
			[
				'label'              => __( 'Columns', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SELECT,
				'default'            => '4',
				'tablet_default'     => '3',
				'mobile_default'     => '1',
				'options'            => [
					'1' => '1',
					'2' => '2',
					'3' => '3',
					'4' => '4',
					'5' => '5',
					'6' => '6',
				],
				'frontend_available' => true,
				'selectors'          => [
					'{{WRAPPER}} .hfe-woo-products-grid' => 'grid-template-columns: repeat({{VALUE}}, 1fr);',
				],
			]
		);

		$this->add_control(
			'products_per_page',
			[
				'label'   => __( 'Products Per Page', 'header-footer-elementor' ),
				'type'    => Controls_Manager::NUMBER,
				'default' => 8,
				'min'     => 1,
				'max'     => 100,
			]
		);


		$this->end_controls_section();
	}

	/**
	 * Register content controls.
	 *
	 * @since 2.6.0
	 * @access protected
	 */
	protected function register_content_controls() {
		$this->start_controls_section(
			'section_content_toggles',
			[
				'label' => __( 'Content', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'show_image',
			[
				'label'        => __( 'Show Image', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
			]
		);

		$this->add_control(
			'show_category',
			[
				'label'        => __( 'Show Category', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
			]
		);

		$this->add_control(
			'show_title',
			[
				'label'        => __( 'Show Title', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
			]
		);

		$this->add_control(
			'show_rating',
			[
				'label'        => __( 'Show Rating', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
			]
		);

		$this->add_control(
			'show_price',
			[
				'label'        => __( 'Show Price', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
			]
		);

		$this->add_control(
			'show_description',
			[
				'label'        => __( 'Show Short Description', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => '',
			]
		);

		$this->add_control(
			'show_add_to_cart',
			[
				'label'        => __( 'Show Add to Cart', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register query controls.
	 *
	 * @since 2.6.0
	 * @access protected
	 */
	protected function register_query_controls() {
		$this->start_controls_section(
			'section_query',
			[
				'label' => __( 'Query', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'orderby',
			[
				'label'     => __( 'Order By', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'date',
				'options'   => [
					'date'       => __( 'Date', 'header-footer-elementor' ),
					'title'      => __( 'Title', 'header-footer-elementor' ),
					'price'      => __( 'Price', 'header-footer-elementor' ),
					'popularity' => __( 'Popularity', 'header-footer-elementor' ),
					'rating'     => __( 'Rating', 'header-footer-elementor' ),
					'rand'       => __( 'Random', 'header-footer-elementor' ),
				],
			]
		);

		$this->add_control(
			'order',
			[
				'label'     => __( 'Order', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'desc',
				'options'   => [
					'desc' => __( 'Descending', 'header-footer-elementor' ),
					'asc'  => __( 'Ascending', 'header-footer-elementor' ),
				],
				'condition' => [
					'orderby!' => 'rand',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register layout style controls.
	 *
	 * @since 2.6.0
	 * @access protected
	 */
	protected function register_layout_style_controls() {
		$this->start_controls_section(
			'section_layout_style',
			[
				'label' => __( 'Layout', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'column_gap',
			[
				'label'      => __( 'Column Gap', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em', 'rem' ],
				'range'      => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'default'    => [
					'size' => 20,
					'unit' => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-woo-products-grid' => 'column-gap: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_responsive_control(
			'row_gap',
			[
				'label'      => __( 'Row Gap', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em', 'rem' ],
				'range'      => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'default'    => [
					'size' => 35,
					'unit' => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-woo-products-grid' => 'row-gap: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name'     => 'product_box_shadow',
				'label'    => __( 'Box Shadow', 'header-footer-elementor' ),
				'selector' => '{{WRAPPER}} .hfe-product-item',
			]
		);

		$this->add_group_control(
			Group_Control_Border::get_type(),
			[
				'name'     => 'product_border',
				'label'    => __( 'Border', 'header-footer-elementor' ),
				'selector' => '{{WRAPPER}} .hfe-product-item',
			]
		);

		$this->add_responsive_control(
			'product_border_radius',
			[
				'label'      => __( 'Border Radius', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%', 'em' ],
				'default'    => [
					'top'    => 0,
					'right'  => 0,
					'bottom' => 0,
					'left'   => 0,
					'unit'   => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-product-item' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register content style controls.
	 *
	 * @since 2.6.0
	 * @access protected
	 */
	protected function register_content_style_controls() {
		// Content Area Styling
		$this->start_controls_section(
			'section_content_area_style',
			[
				'label' => __( 'Card', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'content_alignment',
			[
				'label'     => __( 'Alignment', 'header-footer-elementor' ),
				'type'      => Controls_Manager::CHOOSE,
				'options'   => [
					'left'   => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-center',
					],
					'right'  => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-right',
					],
				],
				'default'   => 'left',
				'prefix_class' => 'hfe-content%s-align-',
				'frontend_available' => true,
			]
		);

		$this->add_group_control(
			Group_Control_Background::get_type(),
			[
				'name'     => 'content_background',
				'label'    => __( 'Background', 'header-footer-elementor' ),
				'types'    => [ 'classic', 'gradient' ],
				'selector' => '{{WRAPPER}} .hfe-product-item',
				'fields_options' => [
					'background' => [
						'default' => 'classic',
					],
					'color' => [
						'default' => '#f6f6f6',
					],
				],
			]
		);

		$this->add_responsive_control(
			'product_content_padding',
			[
				'label'      => __( 'Content Padding', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'default'    => [
					'top'    => 20,
					'right'  => 20,
					'bottom' => 20,
					'left'   => 20,
					'unit'   => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-product-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

		$this->register_image_size_style_controls();
		

		// Category Styling
		$this->start_controls_section(
			'section_category_style',
			[
				'label'     => __( 'Category', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'show_category' => 'yes',
				],
			]
		);

		$this->add_control(
			'category_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_SECONDARY,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-product-category' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'category_typography',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_TEXT,
				],
				'selector' => '{{WRAPPER}} .hfe-product-category',
			]
		);

		$this->add_responsive_control(
			'category_spacing',
			[
				'label'      => __( 'Bottom Spacing', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em' ],
				'default'    => [
					'size' => 10,
					'unit' => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-product-category' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

		// Title, Rating, Price, Add to Cart styles (condensed)
		$this->register_title_style_controls();
		$this->register_rating_style_controls();
		$this->register_price_style_controls();
		$this->register_short_description_style_controls();
		$this->register_add_to_cart_style_controls();
	}

	/**
	 * Register title style controls.
	 *
	 * @since 2.6.0
	 * @access private
	 */
	private function register_title_style_controls() {
		$this->start_controls_section(
			'section_title_style',
			[
				'label'     => __( 'Title', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [ 'show_title' => 'yes' ],
			]
		);

		$this->add_control(
			'title_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_PRIMARY,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-product-title, {{WRAPPER}} .hfe-product-title a' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'title_hover_color',
			[
				'label'     => __( 'Hover Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-product-title a:hover' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'title_typography',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
				],
				'selector' => '{{WRAPPER}} .hfe-product-title',
			]
		);

		$this->add_responsive_control(
			'title_spacing',
			[
				'label'      => __( 'Bottom Spacing', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em' ],
				'default'    => [
					'size' => 10,
					'unit' => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-product-title' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register rating style controls.
	 *
	 * @since 2.6.0
	 * @access private
	 */
	private function register_rating_style_controls() {
		$this->start_controls_section(
			'section_rating_style',
			[
				'label'     => __( 'Rating', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [ 'show_rating' => 'yes' ],
			]
		);

		$this->add_control(
			'rating_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_ACCENT,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-woo-products-grid .hfe-product-rating .star-rating' => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-woo-products-grid .hfe-product-rating .star-rating::before' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_responsive_control(
			'rating_spacing',
			[
				'label'      => __( 'Bottom Spacing', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em' ],
				'default'    => [
					'size' => 10,
					'unit' => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-product-rating' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register price style controls.
	 *
	 * @since 2.6.0
	 * @access private
	 */
	private function register_price_style_controls() {
		$this->start_controls_section(
			'section_price_style',
			[
				'label'     => __( 'Price', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [ 'show_price' => 'yes' ],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'price_typography',
				'label'    => __( 'Typography', 'header-footer-elementor' ),
				'selector' => '{{WRAPPER}} .hfe-product-price span',
			]
		);

		$this->add_control(
			'price_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_PRIMARY,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-product-price span' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_responsive_control(
			'price_spacing',
			[
				'label'      => __( 'Bottom Spacing', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em' ],
				'default'    => [
					'size' => 10,
					'unit' => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-product-price' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register short description style controls.
	 *
	 * @since 2.6.0
	 * @access private
	 */
	private function register_short_description_style_controls() {
		$this->start_controls_section(
			'section_short_description_style',
			[
				'label'     => __( 'Short Description', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [ 'show_description' => 'yes' ],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'short_description_typography',
				'label'    => __( 'Typography', 'header-footer-elementor' ),
				'selector' => '{{WRAPPER}} .hfe-product-description',
			]
		);

		$this->add_control(
			'short_description_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_TEXT,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-product-description' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_responsive_control(
			'short_description_spacing',
			[
				'label'      => __( 'Bottom Spacing', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => [ 'px', 'em' ],
				'default'    => [
					'size' => 10,
					'unit' => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-product-description' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register add to cart style controls.
	 *
	 * @since 2.6.0
	 * @access private
	 */
	private function register_add_to_cart_style_controls() {
		$this->start_controls_section(
			'section_add_to_cart_style',
			[
				'label'     => __( 'Add to Cart', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [ 'show_add_to_cart' => 'yes' ],
			]
		);

		$this->add_responsive_control(
			'add_to_cart_padding',
			[
				'label'      => __( 'Padding', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'default'    => [
					'top'    => 12,
					'right'  => 20,
					'bottom' => 12,
					'left'   => 20,
					'unit'   => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-product-add-to-cart .button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->start_controls_tabs( 'add_to_cart_tabs' );

			$this->start_controls_tab(
				'add_to_cart_normal_tab',
				[
					'label' => __( 'Normal', 'header-footer-elementor' ),
				]
			);

				$this->add_control(
					'add_to_cart_color',
					[
						'label'     => __( 'Text Color', 'header-footer-elementor' ),
						'type'      => Controls_Manager::COLOR,
						'default'   => '',
						'selectors' => [
							'{{WRAPPER}} .hfe-product-add-to-cart .button' => 'color: {{VALUE}};',
						],
					]
				);

				$this->add_group_control(
					Group_Control_Background::get_type(),
					[
						'name'           => 'add_to_cart_background_color',
						'label'          => __( 'Background Color', 'header-footer-elementor' ),
						'types'          => [ 'classic', 'gradient' ],
						'selector'       => '{{WRAPPER}} .hfe-product-add-to-cart .button',
						'fields_options' => [
							'color' => [
								'global' => [
									'default' => Global_Colors::COLOR_ACCENT,
								],
							],
						],
					]
				);

			$this->end_controls_tab();

			$this->start_controls_tab(
				'add_to_cart_hover_tab',
				[
					'label' => __( 'Hover', 'header-footer-elementor' ),
				]
			);

				$this->add_control(
					'add_to_cart_hover_color',
					[
						'label'     => __( 'Text Color', 'header-footer-elementor' ),
						'type'      => Controls_Manager::COLOR,
						'selectors' => [
							'{{WRAPPER}} .hfe-product-add-to-cart .button:hover' => 'color: {{VALUE}};',
						],
					]
				);

				$this->add_group_control(
					Group_Control_Background::get_type(),
					[
						'name'     => 'add_to_cart_hover_background_color',
						'label'    => __( 'Background Color', 'header-footer-elementor' ),
						'types'    => [ 'classic', 'gradient' ],
						'selector' => '{{WRAPPER}} .hfe-product-add-to-cart .button:hover',
					]
				);

			$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'add_to_cart_typography',
				'selector' => '{{WRAPPER}} .hfe-product-add-to-cart .button',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_ACCENT,
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register image hover style controls.
	 *
	 * @since 2.6.0
	 * @access private
	 */
	private function register_image_size_style_controls() {
		$this->start_controls_section(
			'section_image_size_style',
			[
				'label'     => __( 'Image', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [ 'show_image' => 'yes' ],
			]
		);

		$this->add_control(
			'image_size',
			[
				'label'   => __( 'Image Size', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'default' => 'woocommerce_thumbnail',
				'options' => [
					'thumbnail'             => __( 'Thumbnail', 'header-footer-elementor' ),
					'medium'                => __( 'Medium', 'header-footer-elementor' ),
					'large'                 => __( 'Large', 'header-footer-elementor' ),
					'full'                  => __( 'Full Size', 'header-footer-elementor' ),
					'woocommerce_thumbnail' => __( 'WooCommerce Thumbnail', 'header-footer-elementor' ),
					'woocommerce_single'    => __( 'WooCommerce Single', 'header-footer-elementor' ),
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register promotion controls.
	 *
	 * @since 2.6.0
	 * @access protected
	 */
	protected function register_pro_promotion_controls() {
		// Add promotion controls if needed for pro features
	}

	/**
	 * Build query arguments.
	 *
	 * @since 2.6.0
	 * @access private
	 * @return array
	 */
	private function build_query_args() {
		$settings = $this->get_settings_for_display();

		$args = [
			'post_type'      => 'product',
			'post_status'    => 'publish',
			'posts_per_page' => $settings['products_per_page'],
			'meta_query'     => WC()->query->get_meta_query(), // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query
			'tax_query'      => WC()->query->get_tax_query(), // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query
		];

		// Set ordering
		switch ( $settings['orderby'] ) {
			case 'price':
				$args['meta_key'] = '_price'; // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_key
				$args['orderby']  = 'meta_value_num';
				break;
			case 'popularity':
				$args['meta_key'] = 'total_sales'; // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_key
				$args['orderby']  = 'meta_value_num';
				break;
			case 'rating':
				$args['meta_key'] = '_wc_average_rating'; // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_key
				$args['orderby']  = 'meta_value_num';
				break;
			default:
				$args['orderby'] = $settings['orderby'];
				break;
		}

		$args['order'] = $settings['order'];

		return $args;
	}

	/**
	 * Get products query.
	 *
	 * @since 2.6.0
	 * @access private
	 * @return \WP_Query
	 */
	private function get_products_query() {
		if ( null === $this->query ) {
			$this->query = new \WP_Query( $this->build_query_args() );
		}

		return $this->query;
	}

	/**
	 * Render widget output on both frontend and editor.
	 *
	 * @since 2.6.0
	 * @access protected
	 */
	protected function render() {
		if ( ! $this->is_woocommerce_active() ) {
			$this->render_woocommerce_notice();
			return;
		}

		$settings = $this->get_settings_for_display();
		$query    = $this->get_products_query();

		if ( ! $query->have_posts() ) {
			$this->render_no_products_message();
			return;
		}

		$this->add_render_attribute( 'wrapper', 'class', 'hfe-woo-products-wrapper' );
		$this->add_render_attribute( 'grid', 'class', 'hfe-woo-products-grid' );

		?>
		<div <?php $this->print_render_attribute_string( 'wrapper' ); ?>>
			<div <?php $this->print_render_attribute_string( 'grid' ); ?>>
				<?php
				while ( $query->have_posts() ) :
					$query->the_post();
					$this->render_product_item( $settings );
				endwhile;
				wp_reset_postdata();
				?>
			</div>
		</div>
		<?php
	}

	/**
	 * Render WooCommerce notice.
	 *
	 * @since 2.6.0
	 * @access private
	 */
	private function render_woocommerce_notice() {
		?>
		<div class="hfe-woo-products-notice">
			<p><?php esc_html_e( 'WooCommerce is not installed or activated. Please install and activate WooCommerce to use this widget.', 'header-footer-elementor' ); ?></p>
		</div>
		<?php
	}

	/**
	 * Render no products message.
	 *
	 * @since 2.6.0
	 * @access private
	 */
	private function render_no_products_message() {
		?>
		<div class="hfe-woo-products-empty">
			<p><?php esc_html_e( 'No products found.', 'header-footer-elementor' ); ?></p>
		</div>
		<?php
	}

	/**
	 * Render individual product item.
	 *
	 * @since 2.6.0
	 * @access private
	 * @param array $settings Widget settings.
	 */
	private function render_product_item( $settings ) {
		global $product;

		if ( ! $product || ! $product->is_visible() ) {
			return;
		}

		?>
		<div class="hfe-product-item">
			<?php if ( 'yes' === $settings['show_image'] ) : ?>
				<div class="hfe-product-image">
					<a href="<?php echo esc_url( get_permalink() ); ?>">
						<?php
						$image_size = ! empty( $settings['image_size'] ) ? $settings['image_size'] : 'woocommerce_thumbnail';
						echo wp_kses_post( woocommerce_get_product_thumbnail( $image_size ) );
						?>
					</a>
				</div>
			<?php endif; ?>

			<div class="hfe-product-content">
				<?php if ( 'yes' === $settings['show_category'] ) : ?>
					<div class="hfe-product-category">
						<?php
						$categories = get_the_terms( get_the_ID(), 'product_cat' );
						if ( $categories && ! is_wp_error( $categories ) ) {
							$category_names = wp_list_pluck( $categories, 'name' );
							echo esc_html( implode( ', ', $category_names ) );
						}
						?>
					</div>
				<?php endif; ?>

				<?php if ( 'yes' === $settings['show_title'] ) : ?>
					<div class="hfe-product-title">
						<a href="<?php echo esc_url( get_permalink() ); ?>" class="hfe-loop-product__link">
							<?php woocommerce_template_loop_product_title(); ?>
						</a>
					</div>
				<?php endif; ?>

				<?php if ( 'yes' === $settings['show_rating'] ) : ?>
					<div class="hfe-product-rating">
						<?php woocommerce_template_loop_rating(); ?>
					</div>
				<?php endif; ?>

				<?php if ( 'yes' === $settings['show_price'] ) : ?>
					<div class="hfe-product-price">
						<?php woocommerce_template_loop_price(); ?>
					</div>
				<?php endif; ?>

				<?php if ( 'yes' === $settings['show_description'] ) : ?>
					<div class="hfe-product-description">
						<?php echo wp_kses_post( wp_trim_words( get_the_excerpt(), 15 ) ); ?>
					</div>
				<?php endif; ?>

				<?php if ( 'yes' === $settings['show_add_to_cart'] ) : ?>
					<div class="hfe-product-add-to-cart">
						<?php woocommerce_template_loop_add_to_cart(); ?>
					</div>
				<?php endif; ?>
			</div>
		</div>
		<?php
	}

	// NO content_template() method - this forces Elementor to use render() for both editor and frontend
}
PK���\���4inc/widgets-manager/widgets/search-button/module.phpnu�[���<?php
/**
 * HFEWpfStyler Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\SearchButton;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'hfe-search-button';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Search_Button',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\w&��o�o;inc/widgets-manager/widgets/search-button/search-button.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\SearchButton;

use Elementor\Controls_Manager;
use Elementor\Group_Control_Typography;
use Elementor\Group_Control_Background;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Group_Control_Text_Shadow;
use Elementor\Group_Control_Box_Shadow;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
use Elementor\Group_Control_Border;

use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * HFE Search Button.
 *
 * HFE widget for Search Button.
 *
 * @since 1.5.0
 */
class Search_Button extends Common_Widget {
	/**
	 * Retrieve the widget name.
	 *
	 * @since 1.5.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Search_Button' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 1.5.0
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Search_Button' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 1.5.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Search_Button' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Search_Button' );
	}

	/**
	 * Retrieve the list of categories the widget belongs to.
	 *
	 * Used to determine where to display the widget in the editor.
	 *
	 * Note that currently Elementor supports only one category.
	 * When multiple categories passed, Elementor uses the first one.
	 *
	 * @since 1.5.0
	 *
	 * @access public
	 *
	 * @return array Widget categories.
	 */
	public function get_categories() {
		return [ 'hfe-widgets' ];
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * This method returns true if the widget's output is dynamic and should not be cached,
	 * or false if the content is static and can be cached.
	 *
	 * @since 1.6.41
	 * @return bool True for dynamic content, false for static content.
	 */
	protected function is_dynamic_content(): bool { // phpcs:ignore
		return false; 
	}

	/**
	 * Retrieve the list of scripts the navigation menu depended on.
	 *
	 * Used to set scripts dependencies required to run the widget.
	 *
	 * @since 1.5.0
	 * @access public
	 *
	 * @return array Widget scripts dependencies.
	 */
	public function get_script_depends() {
		return [ 'hfe-frontend-js' ];
	}

	/**
	 * Register Search Button controls.
	 *
	 * @since 1.5.7
	 * @access protected
	 * @return void
	 */
	// phpcs:ignore
	protected function register_controls(): void {
		$this->register_general_content_controls();
		$this->register_search_style_controls();
		$this->register_pro_promotion_controls();
	}
	/**
	 * Register Search General Controls.
	 *
	 * @since 1.5.0
	 * @access protected
	 * @return void
	 */
	// phpcs:ignore
	protected function register_general_content_controls(): void {
		$this->start_controls_section(
			'section_general_fields',
			[
				'label' => __( 'Search Box', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'layout',
			[
				'label'        => __( 'Layout', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SELECT,
				'default'      => 'text',
				'options'      => [
					'text'      => __( 'Input Box', 'header-footer-elementor' ),
					'icon'      => __( 'Icon', 'header-footer-elementor' ),
					'icon_text' => __( 'Input Box With Button', 'header-footer-elementor' ),
				],
				'prefix_class' => 'hfe-search-layout-',
				'render_type'  => 'template',
			]
		);

		$this->add_control(
			'placeholder',
			[
				'label'     => __( 'Placeholder', 'header-footer-elementor' ),
				'type'      => Controls_Manager::TEXT,
				'default'   => __( 'Type & Hit Enter', 'header-footer-elementor' ) . '...',
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_responsive_control(
			'size',
			[
				'label'              => __( 'Size', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'default'            => [
					'size' => 50,
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-search-form__container' => 'min-height: {{SIZE}}{{UNIT}}',
					'{{WRAPPER}} .hfe-search-submit'      => 'min-width: {{SIZE}}{{UNIT}}',
					'{{WRAPPER}} .hfe-search-form__input' => 'padding-left: calc({{SIZE}}{{UNIT}} / 5); padding-right: calc({{SIZE}}{{UNIT}} / 5)',
				],
				'condition'          => [
					'layout!' => 'icon',
				],
				'render_type'        => 'template',
				'frontend_available' => true,
			]
		);

		$this->end_controls_section();
	}
	/**
	 * Register Search Style Controls.
	 *
	 * @since 1.5.0
	 * @access protected
	 *
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	protected function register_search_style_controls(): void {
		$this->start_controls_section(
			'section_input_style',
			[
				'label' => __( 'Input', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'input_typography',
				'selector' => '{{WRAPPER}} input[type="search"].hfe-search-form__input,{{WRAPPER}} .hfe-search-icon-toggle',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
				],
			]
		);

		$this->add_responsive_control(
			'input_icon_size',
			[
				'label'              => __( 'Width', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'default'            => [
					'size' => 250,
				],
				'range'              => [
					'px' => [
						'min' => 0,
						'max' => 1500,
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-input-focus .hfe-search-icon-toggle input[type=search]' => 'width: {{SIZE}}{{UNIT}};',
				],
				'condition'          => [
					'layout' => 'icon',
				],
				'frontend_available' => true,
			]
		);

		$this->start_controls_tabs( 'tabs_input_colors' );

		$this->start_controls_tab(
			'tab_input_normal',
			[
				'label'     => __( 'Normal', 'header-footer-elementor' ),
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_control(
			'input_text_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_TEXT,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-search-form__input' => 'color: {{VALUE}}',
				],
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_control(
			'input_placeholder_color',
			[
				'label'     => __( 'Placeholder Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_TEXT,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-search-form__input::placeholder' => 'color: {{VALUE}}',
				],
				'default'   => '#7A7A7A6B',
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_control(
			'input_background_color',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '#ededed',
				'selectors' => [
					'{{WRAPPER}} .hfe-search-form__input, {{WRAPPER}} .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input' => 'background-color: {{VALUE}}',
					'{{WRAPPER}} .hfe-search-icon-toggle .hfe-search-form__input' => 'background-color: transparent;',
				],
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name'      => 'input_box_shadow',
				'selector'  => '{{WRAPPER}} .hfe-search-form__container,{{WRAPPER}} input.hfe-search-form__input',
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);
		$this->add_control(
			'border_style',
			[
				'label'       => __( 'Border Style', 'header-footer-elementor' ),
				'type'        => Controls_Manager::SELECT,
				'default'     => 'none',
				'label_block' => false,
				'options'     => [
					'none'   => __( 'None', 'header-footer-elementor' ),
					'solid'  => __( 'Solid', 'header-footer-elementor' ),
					'double' => __( 'Double', 'header-footer-elementor' ),
					'dotted' => __( 'Dotted', 'header-footer-elementor' ),
					'dashed' => __( 'Dashed', 'header-footer-elementor' ),
				],
				'selectors'   => [
					'{{WRAPPER}} .hfe-search-form__container ,{{WRAPPER}} .hfe-search-icon-toggle .hfe-search-form__input,{{WRAPPER}} .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input' => 'border-style: {{VALUE}};',
				],
				'condition'   => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_control(
			'border_color',
			[
				'label'     => __( 'Border Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_PRIMARY,
				],
				'condition' => [
					'border_style!' => 'none',
					'layout!'       => 'icon',
				],
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .hfe-search-form__container, {{WRAPPER}} .hfe-search-icon-toggle .hfe-search-form__input,{{WRAPPER}} .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input' => 'border-color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'border_width',
			[
				'label'      => __( 'Border Width', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px' ],
				'default'    => [
					'top'    => '1',
					'bottom' => '1',
					'left'   => '1',
					'right'  => '1',
					'unit'   => 'px',
				],
				'condition'  => [
					'border_style!' => 'none',
					'layout!'       => 'icon',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-search-form__container, {{WRAPPER}} .hfe-search-icon-toggle .hfe-search-form__input,{{WRAPPER}} .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'border_radius',
			[
				'label'     => __( 'Border Radius', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'default'   => [
					'size' => 3,
					'unit' => 'px',
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-search-form__container, {{WRAPPER}} .hfe-search-icon-toggle .hfe-search-form__input,{{WRAPPER}} .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input' => 'border-radius: {{SIZE}}{{UNIT}}',
				],
				'separator' => 'before',
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_input_focus',
			[
				'label'     => __( 'Focus', 'header-footer-elementor' ),
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_control(
			'input_text_color_focus',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-input-focus .hfe-search-form__input:focus,
					{{WRAPPER}} .hfe-search-button-wrapper input[type=search]:focus' => 'color: {{VALUE}}',
				],
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_control(
			'input_placeholder_hover_color',
			[
				'label'     => __( 'Placeholder Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_TEXT,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-search-form__input:focus::placeholder' => 'color: {{VALUE}}',
				],
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_control(
			'input_background_color_focus',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-input-focus .hfe-search-form__input:focus,
					{{WRAPPER}}.hfe-search-layout-icon .hfe-search-icon-toggle .hfe-search-form__input' => 'background-color: {{VALUE}}',
				],
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name'           => 'input_box_shadow_focus',
				'selector'       =>
				'{{WRAPPER}} .hfe-search-button-wrapper.hfe-input-focus .hfe-search-form__container,
				 {{WRAPPER}} .hfe-search-button-wrapper.hfe-input-focus input.hfe-search-form__input',
				'fields_options' => [
					'box_shadow_type' => [
						'separator' => 'default',
					],
				],
				'condition'      => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_control(
			'input_border_color_focus',
			[
				'label'     => __( 'Border Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-input-focus .hfe-search-form__container,
					 {{WRAPPER}} .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input' => 'border-color: {{VALUE}}',
				],
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->add_control(
			'icon_text_color_focus',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-input-focus .hfe-search-form__input:focus' => 'color: {{VALUE}}',
				],
				'condition' => [
					'layout' => 'icon',
				],
				'separator' => 'before',
			]
		);

		$this->add_control(
			'icon_text_background_color_focus',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '#ededed',
				'selectors' => [
					'{{WRAPPER}} .hfe-input-focus .hfe-search-form__input:focus' => 'background-color: {{VALUE}}',
				],
				'condition' => [
					'layout' => 'icon',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name'           => 'icon_box_shadow_focus',
				'selector'       =>
				'{{WRAPPER}} .hfe-search-button-wrapper.hfe-input-focus .hfe-search-form__container,
				 {{WRAPPER}} .hfe-search-button-wrapper.hfe-input-focus input.hfe-search-form__input',
				'fields_options' => [
					'box_shadow_type' => [
						'separator' => 'default',
					],
				],
				'condition'      => [
					'layout' => 'icon',
				],
			]
		);

		$this->add_control(
			'icon_border_style',
			[
				'label'       => __( 'Border Style', 'header-footer-elementor' ),
				'type'        => Controls_Manager::SELECT,
				'default'     => 'none',
				'label_block' => false,
				'options'     => [
					'none'   => __( 'None', 'header-footer-elementor' ),
					'solid'  => __( 'Solid', 'header-footer-elementor' ),
					'double' => __( 'Double', 'header-footer-elementor' ),
					'dotted' => __( 'Dotted', 'header-footer-elementor' ),
					'dashed' => __( 'Dashed', 'header-footer-elementor' ),
				],
				'selectors'   => [
					'{{WRAPPER}} .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input' => 'border-style: {{VALUE}};',
				],
				'condition'   => [
					'layout' => 'icon',
				],
			]
		);

		$this->add_control(
			'icon_border_color_focus',
			[
				'label'     => __( 'Border Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-input-focus .hfe-search-form__container,
					 {{WRAPPER}} .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input' => 'border-color: {{VALUE}}',
				],
				'condition' => [
					'layout'             => 'icon',
					'icon_border_style!' => 'none',
				],
			]
		);

		$this->add_control(
			'icon_border_width',
			[
				'label'      => __( 'Border Width', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px' ],
				'default'    => [
					'top'    => '1',
					'bottom' => '1',
					'left'   => '1',
					'right'  => '1',
					'unit'   => 'px',
				],
				'condition'  => [
					'icon_border_style!' => 'none',
					'layout'             => 'icon',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'icon_focus_border_radius',
			[
				'label'     => __( 'Border Radius', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'min' => 0,
						'max' => 200,
					],
				],
				'default'   => [
					'size' => 3,
					'unit' => 'px',
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input' => 'border-radius: {{SIZE}}{{UNIT}}',
				],
				'condition' => [
					'layout' => 'icon',
				],
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'section_button_style',
			[
				'label'     => __( 'Button', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'layout' => 'icon_text',
				],
			]
		);

		$this->start_controls_tabs( 'tabs_button_colors' );

		$this->start_controls_tab(
			'tab_button_normal',
			[
				'label' => __( 'Normal', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'button_icon_color',
			[
				'label'     => __( 'Icon Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '#fff',
				'selectors' => [
					'{{WRAPPER}} button.hfe-search-submit' => 'color: {{VALUE}}',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Background::get_type(),
			[
				'name'           => 'button_background',
				'label'          => __( 'Background', 'header-footer-elementor' ),
				'types'          => [ 'classic', 'gradient' ],
				'exclude'        => [ 'image' ],
				'selector'       => '{{WRAPPER}} .hfe-search-submit',
				'fields_options' => [
					'background' => [
						'default' => 'classic',
					],
					'color'      => [
						'default' => '#818a91',
					],
				],
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_button_hover',
			[
				'label' => __( 'Hover', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'button_text_color_hover',
			[
				'label'     => __( 'Icon Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-search-submit:hover' => 'color: {{VALUE}}',
				],
			]
		);

		$this->add_control(
			'button_background_color_hover',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-search-submit:hover' => 'background-color: {{VALUE}}',
				],
				'condition' => [
					'button_background_color_hover!' => '',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Background::get_type(),
			[
				'name'      => 'button_background_hover',
				'label'     => __( 'Background', 'header-footer-elementor' ),
				'types'     => [ 'classic', 'gradient' ],
				'exclude'   => [ 'image' ],
				'selector'  => '{{WRAPPER}} .hfe-search-submit:hover',
				'condition' => [
					'button_background_color_hover' => '',
				],
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->add_responsive_control(
			'icon_size',
			[
				'label'              => __( 'Icon Size', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'range'              => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'default'            => [
					'size' => '16',
					'unit' => 'px',
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-search-submit' => 'font-size: {{SIZE}}{{UNIT}}',
				],
				'condition'          => [
					'layout!' => 'icon',
				],
				'separator'          => 'before',
				'render_type'        => 'template',
				'frontend_available' => true,
			]
		);

		$this->add_responsive_control(
			'button_width',
			[
				'label'              => __( 'Width', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'range'              => [
					'px' => [
						'max'  => 500,
						'step' => 5,
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-search-form__container .hfe-search-submit' => 'width: {{SIZE}}{{UNIT}}',
					'{{WRAPPER}} .hfe-close-icon-yes button#clear_with_button' => 'right: {{SIZE}}{{UNIT}}',
				],
				'condition'          => [
					'layout' => 'icon_text',
				],
				'render_type'        => 'template',
				'frontend_available' => true,
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'section_toggle_style',
			[
				'label'     => __( 'Icon', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'layout' => 'icon',
				],
			]
		);

		$this->start_controls_tabs( 'tabs_toggle_color' );

		$this->start_controls_tab(
			'tab_toggle_normal',
			[
				'label' => __( 'Normal', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'toggle_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-search-icon-toggle i' => 'color: {{VALUE}}; border-color: {{VALUE}}; fill: {{VALUE}};',
				],
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_toggle_hover',
			[
				'label' => __( 'Hover', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'toggle_color_hover',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-search-icon-toggle i:hover' => 'color: {{VALUE}}; border-color: {{VALUE}}',
				],
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->add_responsive_control(
			'toggle_icon_size',
			[
				'label'              => __( 'Icon Size', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'default'            => [
					'size' => 15,
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-search-icon-toggle input[type=search]' => 'padding: 0 calc( {{SIZE}}{{UNIT}} / 2);',
					'{{WRAPPER}} .hfe-search-icon-toggle i.fa-search:before' => 'font-size: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .hfe-search-icon-toggle i.fa-search, {{WRAPPER}} .hfe-search-icon-toggle' => 'width: {{SIZE}}{{UNIT}};',

				],
				'condition'          => [
					'layout' => 'icon',
				],
				'separator'          => 'before',
				'render_type'        => 'template',
				'frontend_available' => true,
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'section_close_icon',
			[
				'label'     => __( 'Close Icon', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'layout!' => 'icon',
				],
			]
		);

		$this->add_responsive_control(
			'close_icon_size',
			[
				'label'              => __( 'Size', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'range'              => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'default'            => [
					'size' => '20',
					'unit' => 'px',
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-search-form__container button#clear i:before,
					{{WRAPPER}} .hfe-search-icon-toggle button#clear i:before,
				{{WRAPPER}} .hfe-search-form__container button#clear-with-button i:before' => 'font-size: {{SIZE}}{{UNIT}};',
				],
				'frontend_available' => true,

			]
		);

		$this->start_controls_tabs( 'close_icon_normal' );

		$this->start_controls_tab(
			'normal_close_button',
			[
				'label' => __( 'Normal', 'header-footer-elementor' ),
			]
		);
		$this->add_control(
			'text_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_TEXT,
				],
				'default'   => '#7a7a7a',
				'selectors' => [
					'{{WRAPPER}} .hfe-search-form__container button#clear-with-button,
					{{WRAPPER}} .hfe-search-form__container button#clear,
					{{WRAPPER}} .hfe-search-icon-toggle button#clear' => 'color: {{VALUE}}',
				],
			]
		);
		$this->end_controls_tab();

		$this->start_controls_tab(
			'hover_close_icon',
			[
				'label' => __( 'Hover', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'hover_close_icon_text',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-search-form__container button#clear-with-button:hover,
					{{WRAPPER}} .hfe-search-form__container button#clear:hover,
					{{WRAPPER}} .hfe-search-icon-toggle button#clear:hover' => 'color: {{VALUE}}',
				],
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();
	}

	/**
	 * Search Button Promotion Controls.
	 *
	 * @since 2.4.0
	 * @access protected
	 */
	protected function register_pro_promotion_controls() {

		if(! defined( 'UAEL_VER' )){
			$this->start_controls_section(
				'section_pro_features_field',
				array(
					'label' => __( 'Go Pro for More Features', 'header-footer-elementor' ),
				)
			);

			$this->add_control(
				'uae_pro_promotion_notice',
				[
					'type' => Controls_Manager::NOTICE,
					'notice_type' => 'info',
					'dismissible' => false,
					'content' => __( '<b>Build smarter and faster</b> with premium widgets, 200+ section blocks, and advanced customisation controls — all available in the <a href="https://ultimateelementor.com/pricing/?utm_source=uae-dashboard&utm_medium=editor&utm_campaign=uae-pro-promotion" target="_blank">UAE Pro</a>.', 'header-footer-elementor' ),
				]
			);


			$this->end_controls_section();
		}
	}

	/**
	 * Render Search button output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.5.0
	 * @access protected
	 *
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	protected function render(): void {
		$settings = $this->get_settings_for_display();

		$this->add_render_attribute(
			'input',
			[
				'placeholder' => $settings['placeholder'],
				'class'       => 'hfe-search-form__input',
				'type'        => 'search',
				'name'        => 's',
				'title'       => __( 'Search', 'header-footer-elementor' ),
				'value'       => get_search_query(),

			]
		);

		$this->add_render_attribute(
			'container',
			[
				'class' => [ 'hfe-search-form__container' ],
				'role'  => 'tablist',
			]
		);

		/** Check if Polylang fucntion is active with Search widget */

		if ( function_exists( 'pll_the_languages' ) ) {
			$default_language = pll_default_language();
			$current_lang     = pll_current_language();
			$action_url       = $current_lang === $default_language ? home_url( '/' ) : home_url( '/' ) . $current_lang . '/';
		} else {
			$action_url = home_url( '/' );
		}
		?>
		<form class="hfe-search-button-wrapper" role="search" action="<?php echo esc_url( $action_url ); ?>" method="get">

			<?php if ( 'icon' === $settings['layout'] ) { ?>
			<div class = "hfe-search-icon-toggle">
				<input <?php $this->print_render_attribute_string( 'input' ); ?>>
				<i class="fas fa-search" aria-hidden="true"></i>
			</div>
			<?php } else { ?>
			<div <?php $this->print_render_attribute_string( 'container' ); ?>>
				<?php if ( 'text' === $settings['layout'] ) { ?>
					<input <?php $this->print_render_attribute_string( 'input' ); ?>>
						<button id="clear" type="reset">
							<i class="fas fa-times clearable__clear" aria-hidden="true"></i>
						</button>
				<?php } else { ?>
					<input <?php $this->print_render_attribute_string( 'input' ); ?>>
					<button id="clear-with-button" type="reset">
						<i class="fas fa-times" aria-hidden="true"></i>
					</button>
					<button class="hfe-search-submit" type="submit">
						<i class="fas fa-search" aria-hidden="true"></i>
					</button>
				<?php } ?>
			</div>
		<?php } ?>
		</form>
		<?php
	}
}
PK���\m�����0inc/widgets-manager/widgets/copyright/module.phpnu�[���<?php
/**
 * HFEWpfStyler Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\Copyright;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'copyright';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Copyright',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\�M���3inc/widgets-manager/widgets/copyright/copyright.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package Header Footer Elementor
 */

namespace HFE\WidgetsManager\Widgets\Copyright;

use Elementor\Controls_Manager;
use Elementor\Utils;
use Elementor\Group_Control_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;

use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * Elementor Copyright
 *
 * Elementor widget for copyright.
 *
 * @since 1.2.0
 */
class Copyright extends Common_Widget {

	/**
	 * Retrieve the widget name.
	 *
	 * @since 1.2.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Copyright' );
	}
	/**
	 * Retrieve the widget title.
	 *
	 * @since 1.2.0
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Copyright' );
	}
	/**
	 * Retrieve the widget icon.
	 *
	 * @since 1.2.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Copyright' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Copyright' );
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * This method returns true if the widget's output is dynamic and should not be cached,
	 * or false if the content is static and can be cached.
	 *
	 * @since 1.6.41
	 * @return bool True for dynamic content, false for static content.
	 */
	protected function is_dynamic_content(): bool { // phpcs:ignore
		return false;
	}

	/**
	 * Register Copyright controls.
	 *
	 * @since 1.5.7
	 * @access protected
	 * @return void
	 */
	protected function register_controls() {
		$this->register_content_copy_right_controls();
		$this->register_pro_promotion_controls();
	}
	/**
	 * Register Copyright General Controls.
	 *
	 * @since 1.2.0
	 * @access protected
	 * @return void
	 */
	protected function register_content_copy_right_controls() {
		$this->start_controls_section(
			'section_title',
			[
				'label' => __( 'Copyright', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'shortcode',
			[
				'label'   => __( 'Copyright Text', 'header-footer-elementor' ),
				'type'    => Controls_Manager::TEXTAREA,
				'dynamic' => [
					'active' => true,
				],
				'default' => __( 'Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'link',
			[
				'label'       => __( 'Link', 'header-footer-elementor' ),
				'type'        => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'header-footer-elementor' ),
			]
		);

		$this->add_responsive_control(
			'align',
			[
				'label'              => __( 'Alignment', 'header-footer-elementor' ),
				'type'               => Controls_Manager::CHOOSE,
				'options'            => [
					'left'   => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-center',
					],
					'right'  => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-right',
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-copyright-wrapper' => 'text-align: {{VALUE}};',
				],
				'frontend_available' => true,
			]
		);

		$this->add_control(
			'title_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_TEXT,
				],
				'selectors' => [
					// Stronger selector to avoid section style from overwriting.
					'{{WRAPPER}} .hfe-copyright-wrapper a, {{WRAPPER}} .hfe-copyright-wrapper' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'caption_typography',
				'selector' => '{{WRAPPER}} .hfe-copyright-wrapper, {{WRAPPER}} .hfe-copyright-wrapper a',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_TEXT,
				],
			]
		);
		
		$this->end_controls_section();
	}

	/**
	 * Register Copyright Promotion Controls.
	 *
	 * @since 2.4.0
	 * @access protected
	 */
	protected function register_pro_promotion_controls() {

		if(! defined( 'UAEL_VER' )){
			$this->start_controls_section(
				'section_pro_features_field',
				array(
					'label' => __( 'Go Pro for More Features', 'header-footer-elementor' ),
				)
			);

			$this->add_control(
				'uae_pro_promotion_notice',
				[
					'type' => Controls_Manager::NOTICE,
					'notice_type' => 'info',
					'dismissible' => false,
					'content' => __( '<b>Build smarter and faster</b> with premium widgets, 200+ section blocks, and advanced customisation controls — all available in the <a href="https://ultimateelementor.com/pricing/?utm_source=uae-dashboard&utm_medium=editor&utm_campaign=uae-pro-promotion" target="_blank">UAE Pro</a>.', 'header-footer-elementor' ),
				]
			);


			$this->end_controls_section();
		}
	}

	/**
	 * Render Copyright output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.2.0
	 * @access protected
	 * @return void
	 */
	protected function render() {
		$settings = $this->get_settings_for_display();
		$link     = isset( $settings['link']['url'] ) ? $settings['link']['url'] : '';

		if ( ! empty( $link ) ) {
			$this->add_link_attributes( 'link', $settings['link'] );
		}

		$copy_right_shortcode = do_shortcode( shortcode_unautop( $settings['shortcode'] ) ); ?>
		<div class="hfe-copyright-wrapper">
			<?php if ( ! empty( $link ) ) { ?>
				<a <?php echo wp_kses_post( $this->get_render_attribute_string( 'link' ) ); ?>>
					<span><?php echo wp_kses_post( $copy_right_shortcode ); ?></span>
				</a>
			<?php } else { ?>
				<span><?php echo wp_kses_post( $copy_right_shortcode ); ?></span>
			<?php } ?>
		</div>
		<?php
	}

	/**
	 * Render shortcode widget as plain content.
	 *
	 * Override the default behavior by printing the shortcode instead of rendering it.
	 *
	 * @since 1.2.0
	 * @access public
	 * @return void
	 */
	public function render_plain_content() {
		// In plain mode, render without shortcode.
		echo esc_attr( $this->get_settings( 'shortcode' ) );
	}

	/**
	 * Render shortcode widget output in the editor.
	 *
	 * Written as a Backbone JavaScript template and used to generate the live preview.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function content_template() {}
}
PK���\w<޻��=inc/widgets-manager/widgets/copyright/copyright-shortcode.phpnu�[���<?php
/**
 * Calling copyright shortcode.
 *
 * @package Copyright
 * @author Brainstorm Force
 */

namespace HFE\WidgetsManager\Widgets\Copyright;

/**
 * Exit if accessed directly.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit();
}

/**
 * Helper class for the Copyright.
 *
 * @since 1.2.0
 */
class Copyright_Shortcode {

	/**
	 * Constructor.
	 */
	public function __construct() {

		add_shortcode( 'hfe_current_year', [ $this, 'display_current_year' ] );
		add_shortcode( 'hfe_site_title', [ $this, 'display_site_title' ] );
	}

	/**
	 * Get the hfe_current_year Details.
	 *
	 * @return array | string | void $hfe_current_year Get Current Year Details.
	 */
	public function display_current_year() {

		$hfe_current_year = gmdate( 'Y' );
		$hfe_current_year = do_shortcode( shortcode_unautop( $hfe_current_year ) );
		if ( ! empty( $hfe_current_year ) ) {
			return $hfe_current_year;
		}
	}

	/**
	 * Get site title of Site.
	 *
	 * @return string | void.
	 */
	public function display_site_title() {

		$hfe_site_title = get_bloginfo( 'name' );

		if ( ! empty( $hfe_site_title ) ) {
			return $hfe_site_title;
		}
	}
}

new Copyright_Shortcode();
PK���\����/inc/widgets-manager/widgets/infocard/module.phpnu�[���<?php
/**
 * HFE Infocard Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\Infocard;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 2.3.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 2.3.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'infocard';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 2.3.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return array(
			'Infocard',
		);
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\�]�B�B�1inc/widgets-manager/widgets/infocard/infocard.phpnu�[���<?php
/**
 * Infocard.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\Infocard;

// Elementor Classes.
use Elementor\Controls_Manager;
use Elementor\Group_Control_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
use Elementor\Group_Control_Background;

use HFE\WidgetsManager\Base\Common_Widget;
use HFE\WidgetsManager\Widgets_Loader;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * Class Infocard.
 */
class Infocard extends Common_Widget {

	/**
	 * Retrieve Infocard Widget name.
	 *
	 * @since 2.3.0
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Infocard' );
	}

	/**
	 * Retrieve Infocard Widget title.
	 *
	 * @since 2.3.0
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Infocard' );
	}

	/**
	 * Retrieve Infocard Widget icon.
	 *
	 * @since 2.3.0
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Infocard' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.3.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Infocard' );
	}

	/**
	 * Get widget upsale data.
	 *
	 * Retrieve the widget promotion data.
	 *
	 * @since 2.5.0
	 * @access protected
	 *
	 * @return array Widget promotion data.
	 */
	protected function get_upsale_data() {
		return [
			'condition' => ! defined( 'UAEL_VER' ),
			'image' => esc_url( HFE_URL . 'assets/images/upgrade-pro.png' ),
			'image_alt' => esc_attr__( 'Upgrade', 'header-footer-elementor' ),
			'title' => esc_html__( 'Upgrade your Info Card widget', 'header-footer-elementor' ),
			'description' => esc_html__( 'Get the Info Box widget in UAE Pro and unlock advanced layouts, icons, and styling for better content display.', 'header-footer-elementor' ),
			'upgrade_url' => esc_url( 'https://ultimateelementor.com/pricing/?utm_source=UAE-Infocard&utm_medium=editor&utm_campaign=static-promotion' ),
			'upgrade_text' => esc_html__( 'Upgrade Now', 'header-footer-elementor' ),
		];
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * This method returns true if the widget's output is dynamic and should not be cached,
	 * or false if the content is static and can be cached.
	 *
	 * @since 2.3.0
	 * @return bool True for dynamic content, false for static content.
	 */
	protected function is_dynamic_content(): bool { // phpcs:ignore
		return false;
	}

	/**
	 * Register Infocard controls.
	 *
	 * @since 2.3.0
	 * @access protected
	 */
	protected function register_controls() {

		$this->register_general_content_controls();
		$this->register_icon_content_controls();
		$this->register_cta_content_controls();
		$this->register_typo_content_controls();
		$this->register_margin_content_controls();
	}

	/**
	 * Register Infocard General Controls.
	 *
	 * @since 2.3.0
	 * @access protected
	 */
	protected function register_general_content_controls() {
		$this->start_controls_section(
			'section_general_field',
			array(
				'label' => __( 'General', 'header-footer-elementor' ),
			)
		);

		$this->add_control(
			'infocard_title',
			array(
				'label'    => __( 'Title', 'header-footer-elementor' ),
				'type'     => Controls_Manager::TEXT,
				'selector' => '{{WRAPPER}} .hfe-infocard-title',
				'dynamic'  => array(
					'active' => true,
				),
				'default'  => __( 'Info Card', 'header-footer-elementor' ),
			)
		);
		$this->add_control(
			'infocard_description',
			array(
				'label'    => __( 'Description', 'header-footer-elementor' ),
				'type'     => Controls_Manager::TEXTAREA,
				'selector' => '{{WRAPPER}} .hfe-infocard-text',
				'dynamic'  => array(
					'active' => true,
				),
				'default'  => __( 'Enter description text here.Lorem ipsum dolor sit amet, consectetur adipiscing. Quo incidunt ullamco.', 'header-footer-elementor' ),
			)
		);

		$this->add_responsive_control(
			'infocard_overall_align',
			array(
				'label'     => __( 'Overall Alignment', 'header-footer-elementor' ),
				'type'      => Controls_Manager::CHOOSE,
				'default'   => 'center',
				'options'   => array(
					'left'   => array(
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-left',
					),
					'center' => array(
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-center',
					),
					'right'  => array(
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-right',
					),
				),
				'selectors' => array(
					'{{WRAPPER}} .hfe-infocard' => 'text-align: {{VALUE}};',
				),
			)
		);


		$this->end_controls_section();
	}

	/**
	 * Register Infocard Icon Controls.
	 *
	 * @since 2.3.0
	 * @access protected
	 */
	protected function register_icon_content_controls() {
		$this->start_controls_section(
			'section_icon_field',
			array(
				'label' => __( 'Icon', 'header-footer-elementor' ),
			)
		);

		$this->add_control(
			'infocard_select_icon',
			array(
				'label'            => __( 'Select Icon', 'header-footer-elementor' ),
				'type'             => Controls_Manager::ICONS,
				'default'          => array(
					'value'   => '',
					'library' => 'fa-solid',
				),
				'render_type'      => 'template',
			)
		);

		$this->add_responsive_control(
			'infocard_icon_size',
			array(
				'label'      => __( 'Size', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => array( 'px', 'em', 'rem' ),
				'range'      => array(
					'px' => array(
						'min'  => 0,
						'max'  => 100,
						'step' => 1,
					),
					'%'  => array(
						'min' => 0,
						'max' => 100,
					),
					'em' => array(
						'min' => 0,
						'max' => 100,
					),
				),
				'default'    => array(
					'size' => 40,
					'unit' => 'px',
				),
				'condition' => array(
					'infocard_select_icon[value]!'    => '',
				),
				'selectors'  => array(
					'{{WRAPPER}} .hfe-icon-wrap .hfe-icon i' => 'font-size: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}}; width: {{SIZE}}{{UNIT}};line-height: {{SIZE}}{{UNIT}}; text-align: center;',
					'{{WRAPPER}} .hfe-icon-wrap .hfe-icon' => 'height: {{SIZE}}{{UNIT}}; width: {{SIZE}}{{UNIT}}; line-height: {{SIZE}}{{UNIT}};',
				),
			)
		);

		$this->add_responsive_control(
			'infocard_icon_bgsize',
			array(
				'label'      => __( 'Background Size', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'size_units' => array( 'px', 'em', 'rem' ),
				'range'      => array(
					'px' => array(
						'min'  => 0,
						'max'  => 100,
						'step' => 1,
					),
					'%'  => array(
						'min' => 0,
						'max' => 100,
					),
					'em' => array(
						'min' => 0,
						'max' => 100,
					),
				),
				'default'    => array(
					'size' => 0,
					'unit' => 'px',
				),
				'condition' => array(
					'infocard_select_icon[value]!'    => '',
				),
				'selectors'  => array(
					'{{WRAPPER}} .hfe-icon-wrap .hfe-icon' => 'padding: {{SIZE}}{{UNIT}}; display:inline-block; box-sizing:content-box;',
				)
			)
		);

		$this->start_controls_tabs( 'infocard_tabs_icon_style' );

			$this->start_controls_tab(
				'infocard_icon_normal',
				array(
					'label'     => __( 'Normal', 'header-footer-elementor' ),
					'condition' => array(
						'infocard_select_icon[value]!'    => '',
					),
				)
			);
			$this->add_control(
				'infocard_icon_color',
				array(
					'label'      => __( 'Icon Color', 'header-footer-elementor' ),
					'type'       => Controls_Manager::COLOR,
					'global'     => array(
						'default' => Global_Colors::COLOR_PRIMARY,
					),
					'condition' => array(
						'infocard_select_icon[value]!'    => '',
					),
					'default'    => '',
					'selectors'  => array(
						'{{WRAPPER}} .hfe-icon-wrap .hfe-icon i' => 'color: {{VALUE}};',
						'{{WRAPPER}} .hfe-icon-wrap .hfe-icon svg' => 'fill: {{VALUE}};',
					),
				)
			);

			$this->add_control(
				'infocard_icon_bgcolor',
				array(
					'label'     => __( 'Background Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'global'    => array(
						'default' => '',
					),
					'condition' => array(
						'infocard_select_icon[value]!'    => '',
					),
					'default'   => '',
					'selectors' => array(
						'{{WRAPPER}} .hfe-infocard .hfe-icon-wrap .hfe-icon' => 'background-color: {{VALUE}};',
					),
				)
			);

			$this->add_control(
				'infocard_icon_border',
				array(
					'label'       => __( 'Border Style', 'header-footer-elementor' ),
					'type'        => Controls_Manager::SELECT,
					'default'     => 'none',
					'label_block' => false,
					'options'     => array(
						'none'   => __( 'None', 'header-footer-elementor' ),
						'solid'  => __( 'Solid', 'header-footer-elementor' ),
						'double' => __( 'Double', 'header-footer-elementor' ),
						'dotted' => __( 'Dotted', 'header-footer-elementor' ),
						'dashed' => __( 'Dashed', 'header-footer-elementor' ),
					),
					'condition' => array(
						'infocard_select_icon[value]!'    => '',
					),
					'selectors'   => array(
						'{{WRAPPER}} .hfe-icon-wrap .hfe-icon' => 'border-style: {{VALUE}};',
					),
				)
			);
			$this->add_control(
				'infocard_icon_border_color',
				array(
					'label'     => __( 'Border Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'global'    => array(
						'default' => Global_Colors::COLOR_PRIMARY,
					),
					'condition' => array(
						'infocard_icon_border!'    => 'none',
						'infocard_select_icon[value]!'    => '',
					),
					'default'   => '',
					'selectors' => array(
						'{{WRAPPER}} .hfe-icon-wrap .hfe-icon' => 'border-color: {{VALUE}};',
					),
				)
			);
			$this->add_control(
				'infocard_icon_border_size',
				array(
					'label'      => __( 'Border Width', 'header-footer-elementor' ),
					'type'       => Controls_Manager::DIMENSIONS,
					'size_units' => array( 'px' ),
					'default'    => array(
						'top'    => '1',
						'bottom' => '1',
						'left'   => '1',
						'right'  => '1',
						'unit'   => 'px',
					),
					'condition'  => array(
						'infocard_icon_border!'    => 'none',
						'infocard_select_icon[value]!'    => '',
					),
					'selectors'  => array(
						'{{WRAPPER}} .hfe-icon-wrap .hfe-icon' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; box-sizing:content-box;',
					),
				)
			);

			$this->add_responsive_control(
				'infocard_icon_border_radius',
				array(
					'label'      => __( 'Rounded Corners', 'header-footer-elementor' ),
					'type'       => Controls_Manager::DIMENSIONS,
					'size_units' => array( 'px', '%' ),
					'default'    => array(
						'top'    => '5',
						'bottom' => '5',
						'left'   => '5',
						'right'  => '5',
						'unit'   => 'px',
					),
					'condition'  => array(
						'infocard_select_icon[value]!'    => '',
					),
					'selectors'  => array(
						'{{WRAPPER}} .hfe-icon-wrap .hfe-icon' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};  box-sizing:content-box;',
					),
				)
			);

			$this->end_controls_tab();

			$this->start_controls_tab(
				'infocard_icon_hover',
				array(
					'label'     => __( 'Hover', 'header-footer-elementor' ),
					'condition'  => array(
						'infocard_select_icon[value]!'    => '',
					),
					
				)
			);
				$this->add_control(
					'infocard_icon_hover_color',
					array(
						'label'      => __( 'Icon Hover Color', 'header-footer-elementor' ),
						'type'       => Controls_Manager::COLOR,
						'default'    => '',
						'condition'  => array(
							'infocard_select_icon[value]!'    => '',
						),
						'selectors'  => array(
							'{{WRAPPER}} .hfe-icon-wrap .hfe-icon:hover > i' => 'color: {{VALUE}};',
							'{{WRAPPER}} .hfe-icon-wrap .hfe-icon:hover > svg' => 'fill: {{VALUE}};',
						),
					)
				);

				$this->add_control(
					'infocard_icon_hover_bgcolor',
					array(
						'label'     => __( 'Background Hover Color', 'header-footer-elementor' ),
						'type'      => Controls_Manager::COLOR,
						'default'   => '',
						'condition'  => array(
							'infocard_select_icon[value]!'    => '',
						),
						'selectors' => array(
							'{{WRAPPER}} .hfe-icon-wrap .hfe-icon:hover' => 'background-color: {{VALUE}};',
						),
					)
				);

				$this->add_control(
					'infocard_icon_hover_border',
					array(
						'label'     => __( 'Border Hover Color', 'header-footer-elementor' ),
						'type'      => Controls_Manager::COLOR,
						'condition' => array(
							'infocard_icon_border!'    => 'none',
							'infocard_select_icon[value]!'    => '',
						),
						'default'   => '',
						'selectors' => array(
							'{{WRAPPER}} .hfe-icon-wrap .hfe-icon:hover' => 'border-color: {{VALUE}};',
						),
					)
				);

			$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();
	}

	/**
	 * Register Infocard CTA Controls.
	 *
	 * @since 2.3.0
	 * @access protected
	 */
	protected function register_cta_content_controls() {
		$this->start_controls_section(
			'section_cta_field',
			array(
				'label' => __( 'Call To Action', 'header-footer-elementor' ),
			)
		);

		$this->add_control(
			'infocard_cta_type',
			array(
				'label'       => __( 'Type', 'header-footer-elementor' ),
				'type'        => Controls_Manager::SELECT,
				'default'     => 'button',
				'label_block' => false,
				'options'     => array(
					'none'   => __( 'None', 'header-footer-elementor' ),
					'link'   => __( 'Text', 'header-footer-elementor' ),
					'button' => __( 'Button', 'header-footer-elementor' ),
				),
			)
		);

		$this->add_control(
			'infocard_link_text',
			array(
				'label'     => __( 'Text', 'header-footer-elementor' ),
				'type'      => Controls_Manager::TEXT,
				'default'   => __( 'Read More', 'header-footer-elementor' ),
				'dynamic'   => array(
					'active' => true,
				),
				'condition' => array(
					'infocard_cta_type' => 'link',
				),
			)
		);

		$this->add_control(
			'infocard_button_text',
			array(
				'label'     => __( 'Text', 'header-footer-elementor' ),
				'type'      => Controls_Manager::TEXT,
				'default'   => __( 'Click Here', 'header-footer-elementor' ),
				'dynamic'   => array(
					'active' => true,
				),
				'condition' => array(
					'infocard_cta_type' => 'button',
				),
			)
		);

		$this->add_control(
			'infocard_text_link',
			array(
				'label'         => __( 'Link', 'header-footer-elementor' ),
				'type'          => Controls_Manager::URL,
				'default'       => array(
					'url'         => '#',
					'is_external' => '',
				),
				'dynamic'       => array(
					'active' => true,
				),
				'show_external' => true, // Show the 'open in new tab' button.
				'condition'     => array(
					'infocard_cta_type!' => 'none',
				),
			)
		);

		$this->add_control(
			'infocard_button_size',
			array(
				'label'     => __( 'Size', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'sm',
				'options'   => array(
					'xs' => __( 'Extra Small', 'header-footer-elementor' ),
					'sm' => __( 'Small', 'header-footer-elementor' ),
					'md' => __( 'Medium', 'header-footer-elementor' ),
					'lg' => __( 'Large', 'header-footer-elementor' ),
					'xl' => __( 'Extra Large', 'header-footer-elementor' ),
				),
				'condition' => array(
					'infocard_cta_type' => 'button',
				),
			)
		);

		$this->add_control(
			'infocard_button_colors',
			array(
				'label'     => __( 'Colors', 'header-footer-elementor' ),
				'type'      => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => array(
					'infocard_cta_type' => 'button',
				),
			)
		);

		$this->start_controls_tabs( 'infocard_tabs_button_style' );

			$this->start_controls_tab(
				'infocard_button_normal',
				array(
					'label'     => __( 'Normal', 'header-footer-elementor' ),
					'condition' => array(
						'infocard_cta_type' => 'button',
					),
				)
			);
			$this->add_control(
				'infocard_button_text_color',
				array(
					'label'     => __( 'Text Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'default'   => '',
					'condition' => array(
						'infocard_cta_type' => 'button',
					),
					'selectors' => array(
						'{{WRAPPER}} a.elementor-button, {{WRAPPER}} .elementor-button' => 'color: {{VALUE}};'
					),
				)
			);
			$this->add_group_control(
				Group_Control_Background::get_type(),
				array(
					'name'           => 'btn_background_color',
					'label'          => __( 'Background Color', 'header-footer-elementor' ),
					'types'          => array( 'classic', 'gradient' ),
					'selector'       => '{{WRAPPER}} .elementor-button',
					'condition'      => array(
						'infocard_cta_type' => 'button',
					),
					'fields_options' => array(
						'color' => array(
							'global' => array(
								'default' => Global_Colors::COLOR_ACCENT,
							),
						),
					),
				)
			);

			$this->add_control(
				'infocard_button_border',
				array(
					'label'       => __( 'Border Style', 'header-footer-elementor' ),
					'type'        => Controls_Manager::SELECT,
					'default'     => 'none',
					'label_block' => false,
					'options'     => array(
						'none'    => __( 'None', 'header-footer-elementor' ),
						'default' => __( 'Default', 'header-footer-elementor' ),
						'solid'   => __( 'Solid', 'header-footer-elementor' ),
						'double'  => __( 'Double', 'header-footer-elementor' ),
						'dotted'  => __( 'Dotted', 'header-footer-elementor' ),
						'dashed'  => __( 'Dashed', 'header-footer-elementor' ),
					),
					'condition'   => array(
						'infocard_cta_type' => 'button',
					),
					'selectors'   => array(
						'{{WRAPPER}} .elementor-button' => 'border-style: {{VALUE}};',
					),
				)
			);
			$this->add_control(
				'infocard_button_border_color',
				array(
					'label'     => __( 'Border Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'condition' => array(
						'infocard_cta_type'       => 'button',
						'infocard_button_border!' => array( 'none', 'default' ),
					),
					'default'   => '',
					'selectors' => array(
						'{{WRAPPER}} .elementor-button' => 'border-color: {{VALUE}};',
					),
				)
			);
			$this->add_control(
				'infocard_button_border_size',
				array(
					'label'      => __( 'Border Width', 'header-footer-elementor' ),
					'type'       => Controls_Manager::DIMENSIONS,
					'size_units' => array( 'px' ),
					'default'    => array(
						'top'    => '1',
						'bottom' => '1',
						'left'   => '1',
						'right'  => '1',
						'unit'   => 'px',
					),
					'condition'  => array(
						'infocard_cta_type'       => 'button',
						'infocard_button_border!' => array( 'none', 'default' ),
					),
					'selectors'  => array(
						'{{WRAPPER}} .elementor-button' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
					),
				)
			);

			$this->add_control(
				'infocard_button_radius',
				array(
					'label'      => __( 'Rounded Corners', 'header-footer-elementor' ),
					'type'       => Controls_Manager::DIMENSIONS,
					'size_units' => array( 'px', '%' ),
					'default'    => array(
						'top'    => '',
						'bottom' => '',
						'left'   => '',
						'right'  => '',
						'unit'   => 'px',
					),
					'selectors'  => array(
						'{{WRAPPER}} a.elementor-button, {{WRAPPER}} .elementor-button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
					),
					'condition'  => array(
						'infocard_cta_type' => 'button',
					),
				)
			);

			$this->add_responsive_control(
				'infocard_button_custom_padding',
				array(
					'label'      => __( 'Padding', 'header-footer-elementor' ),
					'type'       => Controls_Manager::DIMENSIONS,
					'size_units' => array( 'px', 'em', '%' ),
					'selectors'  => array(
						'{{WRAPPER}} a.elementor-button, {{WRAPPER}} .elementor-button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
					),
					'condition'  => array(
						'infocard_cta_type' => 'button',
					),
				)
			);

			$this->end_controls_tab();

			$this->start_controls_tab(
				'infocard_button_hover',
				array(
					'label'     => __( 'Hover', 'header-footer-elementor' ),
					'condition' => array(
						'infocard_cta_type' => 'button',
					),
				)
			);
			$this->add_control(
				'infocard_button_hover_color',
				array(
					'label'     => __( 'Text Hover Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'condition' => array(
						'infocard_cta_type' => 'button',
					),
					'selectors' => array(
						'{{WRAPPER}} a.elementor-button:hover, {{WRAPPER}} .elementor-button:hover' => 'color: {{VALUE}};',
					),
				)
			);
			$this->add_group_control(
				Group_Control_Background::get_type(),
				array(
					'name'           => 'infocard_button_hover_bgcolor',
					'label'          => __( 'Background Hover Color', 'header-footer-elementor' ),
					'types'          => array( 'classic', 'gradient' ),
					'selector'       => '{{WRAPPER}} a.elementor-button:hover, {{WRAPPER}} .elementor-button:hover',
					'condition'      => array(
						'infocard_cta_type' => 'button',
					),
					'fields_options' => array(
						'color' => array(
							'global' => array(
								'default' => Global_Colors::COLOR_ACCENT,
							),
						),
					),
				)
			);

			$this->add_control(
				'infocard_button_border_hover_color',
				array(
					'label'     => __( 'Border Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'condition' => array(
						'infocard_cta_type'       => 'button',
						'infocard_button_border!' => 'none',
					),
					'selectors' => array(
						'{{WRAPPER}} a.elementor-button:hover, {{WRAPPER}} .elementor-button:hover' => 'border-color: {{VALUE}};',
					),
				)
			);

			$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();
	}

	/**
	 * Register Infocard Typography Controls.
	 *
	 * @since 2.3.0
	 * @access protected
	 */
	protected function register_typo_content_controls() {
		$this->start_controls_section(
			'section_typography_field',
			array(
				'label' => __( 'Typography', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			)
		);

		$this->add_control(
			'infocard_title_typo',
			array(
				'label'     => __( 'Title', 'header-footer-elementor' ),
				'type'      => Controls_Manager::HEADING,
				'condition' => array(
					'infocard_title!' => '',
				),
			)
		);
		$this->add_control(
			'infocard_title_tag',
			array(
				'label'     => __( 'Title Tag', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'options'   => array(
					'h1'  => __( 'H1', 'header-footer-elementor' ),
					'h2'  => __( 'H2', 'header-footer-elementor' ),
					'h3'  => __( 'H3', 'header-footer-elementor' ),
					'h4'  => __( 'H4', 'header-footer-elementor' ),
					'h5'  => __( 'H5', 'header-footer-elementor' ),
					'h6'  => __( 'H6', 'header-footer-elementor' ),
					'div' => __( 'div', 'header-footer-elementor' ),
					'p'   => __( 'p', 'header-footer-elementor' ),
				),
				'default'   => 'h3',
				'condition' => array(
					'infocard_title!' => '',
				),
			)
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			array(
				'name'      => 'title_typography',
				'global'    => array(
					'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
				),
				'selector'  => '{{WRAPPER}} .hfe-infocard-title',
				'condition' => array(
					'infocard_title!' => '',
				),
			)
		);
		$this->add_control(
			'infocard_title_color',
			array(
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => array(
					'default' => Global_Colors::COLOR_PRIMARY,
				),
				'default'   => '',
				'condition' => array(
					'infocard_title!' => '',
				),
				'selectors' => array(
					'{{WRAPPER}} .hfe-infocard-title' => 'color: {{VALUE}};',
				),
			)
		);

		$this->add_control(
			'infocard_desc_typo',
			array(
				'label'     => __( 'Description', 'header-footer-elementor' ),
				'type'      => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => array(
					'infocard_description!' => '',
				),
			)
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			array(
				'name'      => 'desc_typography',
				'global'    => array(
					'default' => Global_Typography::TYPOGRAPHY_TEXT,
				),
				'selector'  => '{{WRAPPER}} .hfe-infocard-text',
				'condition' => array(
					'infocard_description!' => '',
				),
			)
		);
		$this->add_control(
			'infocard_desc_color',
			array(
				'label'     => __( 'Description Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => array(
					'default' => Global_Colors::COLOR_TEXT,
				),
				'default'   => '',
				'condition' => array(
					'infocard_description!' => '',
				),
				'selectors' => array(
					'{{WRAPPER}} .hfe-infocard-text' => 'color: {{VALUE}};',
				),
			)
		);

		$this->add_control(
			'infocard_link_typo',
			array(
				'label'     => __( 'CTA Link Text', 'header-footer-elementor' ),
				'type'      => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => array(
					'infocard_cta_type' => 'link',
				),
			)
		);

		$this->add_control(
			'infocard_button_typo',
			array(
				'label'     => __( 'CTA Button Text', 'header-footer-elementor' ),
				'type'      => Controls_Manager::HEADING,
				'separator' => 'before',
				'condition' => array(
					'infocard_cta_type' => 'button',
				),
			)
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			array(
				'name'      => 'cta_typography',
				'global'    => array(
					'default' => Global_Typography::TYPOGRAPHY_SECONDARY,
				),
				'selector'  => '{{WRAPPER}} .hfe-infocard-cta-link, {{WRAPPER}} .elementor-button, {{WRAPPER}} a.elementor-button',
				'condition' => array(
					'infocard_cta_type' => array( 'link', 'button' ),
				),
			)
		);
		$this->add_control(
			'infocard_cta_color',
			array(
				'label'     => __( 'Link Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => array(
					'default' => Global_Colors::COLOR_ACCENT,
				),
				'selectors' => array(
					'{{WRAPPER}} .hfe-infocard-cta-link' => 'color: {{VALUE}};',
				),
				'condition' => array(
					'infocard_cta_type' => 'link',
				),
			)
		);

		$this->add_control(
			'infocard_cta_hover_color',
			array(
				'label'     => __( 'Link Hover Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => array(
					'default' => '',
				),
				'selectors' => array(
					'{{WRAPPER}} .hfe-infocard-cta-link:hover' => 'color: {{VALUE}};',
				),
				'condition' => array(
					'infocard_cta_type' => 'link',
				),
			)
		);

		$this->end_controls_section();
	}

	/**
	 * Register Infocard Margin Controls.
	 *
	 * @since 2.3.0
	 * @access protected
	 */
	protected function register_margin_content_controls() {
		$this->start_controls_section(
			'section_margin_field',
			array(
				'label' => __( 'Margins', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			)
		);

		$this->add_responsive_control(
			'infocard_responsive_icon_margin',
			array(
				'label'      => __( 'Icon Margin', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => array( 'px' ),
				'default'    => array(
					'top'      => '0',
					'bottom'   => '10',
					'left'     => '0',
					'right'    => '0',
					'unit'     => 'px',
					'isLinked' => false,
				),
				'condition'  => array(
					'infocard_select_icon[value]!'    => '',
				),
				'selectors'  => array(
					'{{WRAPPER}} .hfe-icon-wrap' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				),
			)
		);

		$this->add_responsive_control(
			'infocard_title_margin',
			array(
				'label'      => __( 'Title Margin', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => array( 'px' ),
				'default'    => array(
					'top'      => '0',
					'bottom'   => '10',
					'left'     => '0',
					'right'    => '0',
					'unit'     => 'px',
					'isLinked' => false,
				),
				'selectors'  => array(
					'{{WRAPPER}} .hfe-infocard-title' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				),
				'condition'  => array(
					'infocard_title!' => '',
				),
			)
		);

		$this->add_responsive_control(
			'infocard_desc_margin',
			array(
				'label'      => __( 'Description Margins', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => array( 'px' ),
				'default'    => array(
					'top'      => '0',
					'bottom'   => '0',
					'left'     => '0',
					'right'    => '0',
					'unit'     => 'px',
					'isLinked' => false,
				),
				'condition'  => array(
					'infocard_description!' => '',
				),
				'selectors'  => array(
					'{{WRAPPER}} .hfe-infocard-text' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				),
			)
		);

		$this->add_responsive_control(
			'infocard_cta_margin',
			array(
				'label'      => __( 'CTA Margin', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => array( 'px' ),
				'default'    => array(
					'top'      => '10',
					'bottom'   => '0',
					'left'     => '0',
					'right'    => '0',
					'unit'     => 'px',
					'isLinked' => false,
				),
				'selectors'  => array(
					'{{WRAPPER}} .hfe-infocard-cta-link-style, {{WRAPPER}} .hfe-button-wrapper' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				),
				'condition'  => array(
					'infocard_cta_type' => array( 'link', 'button' ),
				),
			)
		);
		$this->end_controls_section();
	}

	/**
	 * Display Icon.
	 *
	 * @since 2.3.0
	 * @access public
	 * @param object $settings for settings.
	 */
	public function render_icon( $settings ) {
		if ( '' !== $settings['infocard_select_icon']['value'] ) { ?>
			<div class="hfe-icon-wrap">
				<span class="hfe-icon">
					<?php \Elementor\Icons_Manager::render_icon( $settings['infocard_select_icon'], [ 'aria-hidden' => 'true' ] ); ?>
				</span>
			</div>
			<?php
		}
	}

	/**
	 * Display Title.
	 *
	 * @since 2.3.0
	 * @access public
	 * @param object $settings for settings.
	 */
	public function render_title( $settings ) {
			
		if ( ! empty( $settings['infocard_title'] ) ) {
			?>
			<div class="hfe-infocard-title-wrap">
				<?php 
					$heading_size_tag = Widgets_Loader::validate_html_tag( $settings['infocard_title_tag'] );
					echo '<' . esc_attr( $heading_size_tag ) . ' class="hfe-infocard-title elementor-inline-editing" data-elementor-setting-key="infocard_title" data-elementor-inline-editing-toolbar="basic" >';
					echo wp_kses_post( $settings['infocard_title'] );
					echo '</' . esc_attr( $heading_size_tag ) . '>'; 
				?>
			</div>
			<?php
		}
	}


	/**
	 * Display CTA.
	 *
	 * @since 2.3.0
	 * @access public
	 * @param object $settings for settings.
	 */
	public function render_link( $settings ) {
			
		if ( 'link' === $settings['infocard_cta_type'] ) {
			if ( ! empty( $settings['infocard_text_link']['url'] ) ) {
				$this->add_link_attributes( 'cta_link', $settings['infocard_text_link'] );
			}

			$this->add_render_attribute( 'cta_link', 'class', 'hfe-infocard-cta-link' );
			?>
			<div class="hfe-infocard-cta-link-style">
				<a <?php echo wp_kses_post( $this->get_render_attribute_string( 'cta_link' ) ); ?>> <?php //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
					<span class="elementor-inline-editing" data-elementor-setting-key="infocard_link_text" data-elementor-inline-editing-toolbar="basic"><?php echo wp_kses_post( $settings['infocard_link_text'] ); ?></span>
				</a>
			</div>
			<?php
		} elseif ( 'button' === $settings['infocard_cta_type'] ) {
			$this->add_render_attribute( 'wrapper', 'class', 'hfe-button-wrapper elementor-widget-button' );
			$this->add_render_attribute( 'text', 'class', 'elementor-button-text elementor-inline-editing' );

			if ( ! empty( $settings['infocard_text_link']['url'] ) ) {

				$this->add_link_attributes( 'button', $settings['infocard_text_link'] );
				$this->add_render_attribute( 'button', 'class', 'elementor-button-link' );
			}
			$this->add_render_attribute( 'button', 'class', 'elementor-button' );

			if ( ! empty( $settings['infocard_button_size'] ) ) {
				$this->add_render_attribute( 'button', 'class', 'elementor-size-' . $settings['infocard_button_size'] );
			}
			?>
			<div <?php echo wp_kses_post( $this->get_render_attribute_string( 'wrapper' ) ); ?>>
				<a <?php echo wp_kses_post( $this->get_render_attribute_string( 'button' ) ); ?>>
					<span <?php echo wp_kses_post( $this->get_render_attribute_string( 'text' ) ); ?>  data-elementor-setting-key="infocard_button_text" data-elementor-inline-editing-toolbar="none"><?php echo wp_kses_post( $settings['infocard_button_text'] ); ?></span>
				</a>
			</div>
			<?php
		}
	}

	/**
	 * Render Info Card output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 2.3.0
	 * @access protected
	 */
	protected function render() {
		$html     = '';
		$settings = $this->get_settings_for_display();
		?>

		<div class="hfe-infocard">
			<?php $this->render_icon( $settings ); ?>
			<?php $this->render_title( $settings ); ?>
			<div class="hfe-infocard-text-wrap">
				<div class="hfe-infocard-text elementor-inline-editing" data-elementor-setting-key="infocard_description" data-elementor-inline-editing-toolbar="advanced">
					<?php echo wp_kses_post( $settings['infocard_description'] ); ?>
				</div>
				<?php $this->render_link( $settings ); ?>
			</div>
		</div>

		<?php
		
	}
	/**
	 * Render Info Card widget output in the editor.
	 *
	 * Written as a Backbone JavaScript template and used to generate the live preview.
	 *
	 * @since 2.3.0
	 * @access protected
	 */
	protected function content_template() {

		?>
		<#
		var iconHTML = elementor.helpers.renderIcon( view, settings.infocard_select_icon, { 'aria-hidden': true }, 'i' , 'object' );

		var headingSizeTag = elementor.helpers.validateHTMLTag( settings.infocard_title_tag );

		if ( typeof elementor.helpers.validateHTMLTag === "function" ) { 
			headingSizeTag = elementor.helpers.validateHTMLTag( settings.infocard_title_tag );
		} else if( HfeWidgetsData.allowed_tags ) {
			headingSizeTag = HfeWidgetsData.allowed_tags.includes( headingSizeTag.toLowerCase() ) ? headingSizeTag : 'div';
		}
		#>
		
		<#
		function render_link() {

			if ( 'link' == settings.infocard_cta_type ) {
				var urlPattern = /^(https?|ftp):\/\/[^\s/$.?#].[^\s]*$|^www\.[^\s/$.?#].[^\s]*$/;
				var text_link_url = _.escape( settings.infocard_text_link.url );
				if ( urlPattern.test( text_link_url ) ){
					view.addRenderAttribute( 'link', 'href', text_link_url  );
				}#>
				<div class="hfe-infocard-cta-link-style">
					<a {{{ view.getRenderAttributeString( 'link' ) }}} class="hfe-infocard-cta-link"> <?php //phpcs:ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
						<span class="elementor-inline-editing" data-elementor-setting-key="infocard_link_text" data-elementor-inline-editing-toolbar="basic">{{ elementor.helpers.sanitize( settings.infocard_link_text ) }}</span>
					</a>
				</div>
			<# }
			else if ( 'button' == settings.infocard_cta_type ) {

				view.addRenderAttribute( 'wrapper', 'class', 'hfe-button-wrapper elementor-widget-button' );
				if ( '' != settings.infocard_text_link.url ) {
					var urlPattern = /^(https?|ftp):\/\/[^\s/$.?#].[^\s]*$|^www\.[^\s/$.?#].[^\s]*$/;
					var btn_link_url = _.escape( settings.infocard_text_link.url );
					if( urlPattern.test( btn_link_url ) ){
						view.addRenderAttribute( 'button', 'href', btn_link_url  );
					}
					view.addRenderAttribute( 'button', 'class', 'elementor-button-link' );
				}
				view.addRenderAttribute( 'button', 'class', 'elementor-button' );

				if ( '' != settings.infocard_button_size ) {
					view.addRenderAttribute( 'button', 'class', 'elementor-size-' + settings.infocard_button_size );
				} #>
				<div {{{ view.getRenderAttributeString( 'wrapper' ) }}}> <?php //phpcs:ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
					<a  {{{ view.getRenderAttributeString( 'button' ) }}}> <?php //phpcs:ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
						<#
						view.addRenderAttribute( 'content-wrapper', 'class', 'elementor-button-content-wrapper' );

						view.addRenderAttribute( 'text', 'class', 'elementor-button-text' );

						view.addRenderAttribute( 'text', 'class', 'elementor-inline-editing' );

						#>
						<span {{{ view.getRenderAttributeString( 'content-wrapper' ) }}}> <?php //phpcs:ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
							<span {{{ view.getRenderAttributeString( 'text' ) }}} data-elementor-setting-key="infocard_button_text" data-elementor-inline-editing-toolbar="none">{{ elementor.helpers.sanitize( settings.infocard_button_text ) }}</span> <?php //phpcs:ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
						</span>
					</a>
				</div>
			<#
			}
		}
		#>
		<div class="hfe-infocard">
			<# if( '' != settings.infocard_select_icon.value ){ #>
				<div class="hfe-icon-wrap">
					<span class="hfe-icon">
						{{{iconHTML.value}}}
					</span>
				</div>
			<# } #>
				<# if ( '' != settings.infocard_title ) {
					var infocard_title = elementor.helpers.sanitize( settings.infocard_title ); #>
					<div class="hfe-infocard-title-wrap">
						<{{ headingSizeTag }} class="hfe-infocard-title">{{{ infocard_title }}}</{{ headingSizeTag }}>
					</div>
				<# } #>
			<div class="hfe-infocard-text-wrap">
				<# if ( '' != settings.infocard_description ) {
					var infocard_description = elementor.helpers.sanitize( settings.infocard_description ); #>
					<div class="hfe-infocard-text elementor-inline-editing" data-elementor-setting-key="infocard_description" data-elementor-inline-editing-toolbar="advanced">{{{ infocard_description }}}</div>
				<# } #>
				<# render_link(); #>
			</div>
		</div>
		<?php
	}
}
PK���\��4����3inc/widgets-manager/widgets/post-info/post-info.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\PostInfo;

use Elementor\Controls_Manager;
use Elementor\Widget_Base;
use Elementor\Utils;
use Elementor\Icons_Manager;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Typography;
use Elementor\Repeater;
use Elementor\Modules\DynamicTags\Module as TagsModule;

use HFE\WidgetsManager\Widgets_Loader;
use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * HFE Post Info widget
 *
 * HFE widget for Post Info.
 *
 * @since 2.2.1
 */
class Post_Info extends Common_Widget {

	/**
	 * Retrieve the widget name.
	 *
	 * @since 2.2.1
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Post_Info' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 2.2.1
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Post_Info' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 2.2.1
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Post_Info' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Post_Info' );
	}

	/**
	 * Get widget upsale data.
	 *
	 * Retrieve the widget promotion data.
	 *
	 * @since 2.5.0
	 * @access protected
	 *
	 * @return array Widget promotion data.
	 */
	protected function get_upsale_data() {
		return [
			'condition' => ! defined( 'UAEL_VER' ),
			'image' => esc_url( HFE_URL . 'assets/images/upgrade-pro.png' ),
			'image_alt' => esc_attr__( 'Upgrade', 'header-footer-elementor' ),
			'title' => esc_html__( 'Upgrade your Post Info widget', 'header-footer-elementor' ),
			'description' => esc_html__( 'Get the Advanced Posts widget and unlock powerful layouts, filters, and customization options with UAE Pro.', 'header-footer-elementor' ),
			'upgrade_url' => esc_url( 'https://ultimateelementor.com/pricing/?utm_source=UAE-Post-Info&utm_medium=editor&utm_campaign=static-promotion' ),
			'upgrade_text' => esc_html__( 'Upgrade Now', 'header-footer-elementor' ),
		];
	}
	
	/**
	 * Register Post Info controls.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_controls() {
		$this->register_general_post_info_controls();
		$this->register_style_post_info_meta_controls();
		$this->register_style_post_info_icon_controls();
		$this->register_style_post_info_text_controls();
	}

	
	/**
	 * Register general Controls.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_general_post_info_controls() {
		$this->start_controls_section(
			'section_general',
			[
				'label' => __( 'General', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'view',
			[
				'label'        => __( 'Layout', 'header-footer-elementor' ),
				'type'         => Controls_Manager::CHOOSE,
				'default'      => 'inline',
				'options'      => [
					'inline'      => [
						'title' => __( 'Inline', 'header-footer-elementor' ),
						'icon'  => 'eicon-ellipsis-h',
					],
					'traditional' => [
						'title' => __( 'Default', 'header-footer-elementor' ),
						'icon'  => 'eicon-editor-list-ul',
					],
				],
				'render_type'  => 'template',
				'prefix_class' => 'hfe-post-info-layout-',
			]
		);

		$repeater = new Repeater();
		
		$repeater->add_control(
			'type',
			[
				'label'   => __( 'Type', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'default' => 'date',
				'options' => [
					'author'   => __( 'Author', 'header-footer-elementor' ),
					'time'     => __( 'Time', 'header-footer-elementor' ),
					'date'     => __( 'Date', 'header-footer-elementor' ),
					'terms'    => __( 'Terms', 'header-footer-elementor' ),
					'comments' => __( 'Comments', 'header-footer-elementor' ),
					'custom'   => __( 'Custom', 'header-footer-elementor' ),
				],
			]
		);

		$repeater->add_control(
			'date_format',
			[
				'label'     => __( 'Date Format', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'default',
				'options'   => [
					'default' => 'Default',
					'0'       => _x( 'June 1, 2024 (F j, Y)', 'Date Format', 'header-footer-elementor' ),
					'1'       => '06/01/2024 (d/m/Y)',
					'2'       => '2024-01-06 (Y-m-d)',
					'3'       => '01/06/2024 (m/d/Y)',
					'custom'  => __( 'Custom', 'header-footer-elementor' ),
				],
				'condition' => [
					'type' => 'date',
				],
			]
		);

		
		$repeater->add_control(
			'custom_date_format',
			[
				'label'       => __( 'Custom Date Format', 'header-footer-elementor' ),
				'type'        => Controls_Manager::TEXT,
				'default'     => 'F j, Y',
				'condition'   => [
					'type'        => 'date',
					'date_format' => 'custom',
				],
				'description' => sprintf(
					/* translators: %s: Allowed data letters (see: http://php.net/manual/en/function.date.php). */
					__( 'Use the letters: %s', 'header-footer-elementor' ),
					'l D d j S F m M n Y y'
				),
			]
		);

		$repeater->add_control(
			'time_format',
			[
				'label'     => __( 'Time Format', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'default',
				'options'   => [
					'default' => 'Default',
					'0'       => '3:31 pm (g:i a)',
					'1'       => '3:31 PM (g:i A)',
					'2'       => '15:31 (H:i)',
					'custom'  => __( 'Custom', 'header-footer-elementor' ),
				],
				'condition' => [
					'type' => 'time',
				],
			]
		);
		$repeater->add_control(
			'custom_time_format',
			[
				'label'       => __( 'Custom Time Format', 'header-footer-elementor' ),
				'type'        => Controls_Manager::TEXT,
				'default'     => 'g:i a',
				'placeholder' => 'g:i a',
				'condition'   => [
					'type'        => 'time',
					'time_format' => 'custom',
				],
				'description' => sprintf(
					/* translators: %s: Allowed time letters (see: http://php.net/manual/en/function.time.php). */
					__( 'Use the letters: %s', 'header-footer-elementor' ),
					'g G H i a A'
				),
			]
		);

		$repeater->add_control(
			'taxonomy',
			[
				'label'       => __( 'Taxonomy', 'header-footer-elementor' ),
				'type'        => Controls_Manager::SELECT2,
				'label_block' => true,
				'default'     => [],
				'options'     => $this->get_taxonomies(),
				'condition'   => [
					'type' => 'terms',
				],
			]
		);

		$repeater->add_control(
			'text_prefix',
			[
				'label'     => __( 'Before', 'header-footer-elementor' ),
				'type'      => Controls_Manager::TEXT,
				'condition' => [
					'type!' => 'custom',
				],
			]
		);

		$repeater->add_control(
			'show_avatar',
			[
				'label'     => __( 'Avatar', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SWITCHER,
				'condition' => [
					'type' => 'author',
				],
			]
		);

		$repeater->add_responsive_control(
			'avatar_size',
			[
				'label'     => __( 'Size', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'selectors' => [
					'{{WRAPPER}} {{CURRENT_ITEM}} .hfe-post-info-icon' => 'width: {{SIZE}}{{UNIT}}',
				],
				'condition' => [
					'show_avatar' => 'yes',
				],
			]
		);

		$repeater->add_control(
			'comments_custom_strings',
			[
				'label'     => __( 'Custom Format', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SWITCHER,
				'default'   => false,
				'condition' => [
					'type' => 'comments',
				],
			]
		);

		$repeater->add_control(
			'string_no_comments',
			[
				'label'       => __( 'No Comments', 'header-footer-elementor' ),
				'type'        => Controls_Manager::TEXT,
				'placeholder' => __( 'No Comments', 'header-footer-elementor' ),
				'condition'   => [
					'comments_custom_strings' => 'yes',
					'type'                    => 'comments',
				],
			]
		);

		$repeater->add_control(
			'string_one_comment',
			[
				'label'       => __( 'One Comment', 'header-footer-elementor' ),
				'type'        => Controls_Manager::TEXT,
				'placeholder' => __( 'One Comment', 'header-footer-elementor' ),
				'condition'   => [
					'comments_custom_strings' => 'yes',
					'type'                    => 'comments',
				],
			]
		);

		$repeater->add_control(
			'string_comments',
			[
				'label'       => __( 'Comments', 'header-footer-elementor' ),
				'type'        => Controls_Manager::TEXT,
				/* translators: %s: Number of comments. */
				'placeholder' => __( '%s Comments', 'header-footer-elementor' ),
				'condition'   => [
					'comments_custom_strings' => 'yes',
					'type'                    => 'comments',
				],
			]
		);

		$repeater->add_control(
			'custom_text',
			[
				'label'       => __( 'Custom', 'header-footer-elementor' ),
				'type'        => Controls_Manager::TEXT,
				'dynamic'     => [
					'active' => true,
				],
				'label_block' => true,
				'condition'   => [
					'type' => 'custom',
				],
			]
		);

		$repeater->add_control(
			'link',
			[
				'label'     => __( 'Link', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SWITCHER,
				'default'   => 'yes',
				'condition' => [
					'type!' => 'time',
				],
			]
		);

		$repeater->add_control(
			'custom_url',
			[
				'label'     => __( 'Custom URL', 'header-footer-elementor' ),
				'type'      => Controls_Manager::URL,
				'dynamic'   => [
					'active' => true,
				],
				'condition' => [
					'type' => 'custom',
				],
			]
		);

		$repeater->add_control(
			'show_icon',
			[
				'label'     => __( 'Icon', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'options'   => [
					'none'    => __( 'None', 'header-footer-elementor' ),
					'default' => __( 'Default', 'header-footer-elementor' ),
					'custom'  => __( 'Custom', 'header-footer-elementor' ),
				],
				'default'   => 'default',
				'condition' => [
					'show_avatar!' => 'yes',
				],
			]
		);

		$repeater->add_control(
			'selected_icon',
			[
				'label'     => __( 'Choose Icon', 'header-footer-elementor' ),
				'type'      => Controls_Manager::ICONS,
				'condition' => [
					'show_icon'    => 'custom',
					'show_avatar!' => 'yes',
				],
			]
		);

		$this->add_control(
			'icon_list',
			[
				'label'       => '',
				'type'        => Controls_Manager::REPEATER,
				'fields'      => $repeater->get_controls(),
				'default'     => [
					[
						'type'          => 'date',
						'selected_icon' => [
							'value'   => 'far fa-calendar-alt',
							'library' => 'fa-regular',
						],
					],
					[
						'type'          => 'author',
						'selected_icon' => [
							'value'   => 'far fa-user-circle',
							'library' => 'fa-regular',
						],
					],
					[
						'type'          => 'time',
						'selected_icon' => [
							'value'   => 'far fa-clock',
							'library' => 'fa-regular',
						],
					],
				],
				'title_field' => '{{{ elementor.helpers.renderIcon( this, selected_icon, {}, "i", "panel" ) || \'<i class="{{ icon }}" aria-hidden="true"></i>\' }}} <span style="text-transform: capitalize;">{{{ type }}}</span>',    // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register style Controls for list items.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_style_post_info_meta_controls() {
		$this->start_controls_section(
			'section_style_list_items',
			[
				'label' => __( 'List Items', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
			$this->add_responsive_control(
				'space_between',
				[
					'label'     => __( 'Space Between', 'header-footer-elementor' ),
					'type'      => Controls_Manager::SLIDER,
					'range'     => [
						'px' => [
							'max' => 50,
						],
					],
					'selectors' => [
						'{{WRAPPER}} .hfe-post-info-items:not(.hfe-post-info-inline) .hfe-post-info-item:not(:last-child)' => 'padding-bottom: calc({{SIZE}}{{UNIT}}/2)',
						'{{WRAPPER}} .hfe-post-info-items:not(.hfe-post-info-inline) .hfe-post-info-item:not(:first-child)' => 'margin-top: calc({{SIZE}}{{UNIT}}/2)',
						'{{WRAPPER}} .hfe-post-info-items.hfe-post-info-inline .hfe-post-info-item' => 'margin-right: calc({{SIZE}}{{UNIT}}/2); margin-left: calc({{SIZE}}{{UNIT}}/2)',
						'{{WRAPPER}} .hfe-post-info-items.hfe-post-info-inline' => 'margin-right: calc(-{{SIZE}}{{UNIT}}/2); margin-left: calc(-{{SIZE}}{{UNIT}}/2)',
						'{{WRAPPER}} .hfe-post-info-items.hfe-post-info-inline .hfe-post-info-item::after' => 'margin-left: {{SIZE}}{{UNIT}}; right:0;',
					],
				]
			);

			$this->add_responsive_control(
				'icon_align',
				[
					'label'     => __( 'Alignment', 'header-footer-elementor' ),
					'type'      => Controls_Manager::CHOOSE,
					'options'   => [
						'flex-start' => [
							'title' => __( 'Start', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-left',
						],
						'center'     => [
							'title' => __( 'Center', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-center',
						],
						'flex-end'   => [
							'title' => __( 'End', 'header-footer-elementor' ),
							'icon'  => 'eicon-h-align-right',
						],
					],
					'selectors' => [
						'{{WRAPPER}} ul.hfe-post-info-inline.hfe-post-info-items, {{WRAPPER}}.hfe-post-info-layout-traditional .hfe-post-info-item' => 'justify-content:{{VALUE}};',
					],
				]
			);

			$this->add_control(
				'separator',
				[
					'label'     => __( 'Separator', 'header-footer-elementor' ),
					'type'      => Controls_Manager::SWITCHER,
					'label_off' => __( 'Off', 'header-footer-elementor' ),
					'label_on'  => __( 'On', 'header-footer-elementor' ),
					'selectors' => [
						'{{WRAPPER}} .hfe-post-info-item:not(:last-child):after' => 'content: ""',
					],
					'separator' => 'before',
				]
			);

			$this->add_control(
				'separator_style',
				[
					'label'     => __( 'Style', 'header-footer-elementor' ),
					'type'      => Controls_Manager::SELECT,
					'options'   => [
						'solid'  => __( 'Solid', 'header-footer-elementor' ),
						'double' => __( 'Double', 'header-footer-elementor' ),
						'dotted' => __( 'Dotted', 'header-footer-elementor' ),
						'dashed' => __( 'Dashed', 'header-footer-elementor' ),
					],
					'default'   => 'solid',
					'condition' => [
						'separator' => 'yes',
					],
					'selectors' => [
						'{{WRAPPER}} .hfe-post-info-items:not(.hfe-post-info-inline) .hfe-post-info-item:not(:last-child):after' => 'border-top-style: {{VALUE}};',
						'{{WRAPPER}} .hfe-post-info-items.hfe-post-info-inline .hfe-post-info-item:not(:last-child):after' => 'border-left-style: {{VALUE}}',
					],
				]
			);

			$this->add_control(
				'separator_weight',
				[
					'label'     => __( 'Weight', 'header-footer-elementor' ),
					'type'      => Controls_Manager::SLIDER,
					'default'   => [
						'size' => 1,
					],
					'range'     => [
						'px' => [
							'min' => 1,
							'max' => 20,
						],
					],
					'condition' => [
						'separator' => 'yes',
					],
					'selectors' => [
						'{{WRAPPER}} .hfe-post-info-items:not(.hfe-post-info-inline) .hfe-post-info-item:not(:last-child):after' => 'border-top-width: {{SIZE}}{{UNIT}}',
						'{{WRAPPER}} .hfe-post-info-inline .hfe-post-info-item:not(:last-child):after' => 'border-left-width: {{SIZE}}{{UNIT}}',
					],
				]
			);

			$this->add_control(
				'separator_width',
				[
					'label'      => __( 'Width', 'header-footer-elementor' ),
					'type'       => Controls_Manager::SLIDER,
					'size_units' => [ '%', 'px' ],
					'default'    => [
						'unit' => '%',
					],
					'range'      => [
						'px' => [
							'min' => 1,
							'max' => 100,
						],
						'%'  => [
							'min' => 1,
							'max' => 100,
						],
					],
					'condition'  => [
						'separator' => 'yes',
						'view!'     => 'inline',
					],
					'selectors'  => [
						'{{WRAPPER}} .hfe-post-info-item:not(:last-child):after' => 'width: {{SIZE}}{{UNIT}}',
					],
				]
			);

			$this->add_control(
				'separator_height',
				[
					'label'      => __( 'Height', 'header-footer-elementor' ),
					'type'       => Controls_Manager::SLIDER,
					'size_units' => [ '%', 'px' ],
					'default'    => [
						'size' => 100,
						'unit' => '%',
					],
					'range'      => [
						'px' => [
							'min' => 1,
							'max' => 100,
						],
						'%'  => [
							'min' => 1,
							'max' => 100,
						],
					],
					'condition'  => [
						'separator' => 'yes',
						'view'      => 'inline',
					],
					'selectors'  => [
						'{{WRAPPER}} .hfe-post-info-item:not(:last-child):after' => 'height: {{SIZE}}{{UNIT}}',
					],
				]
			);

			$this->add_control(
				'separator_color',
				[
					'label'     => __( 'Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'default'   => '#ddd',
					'condition' => [
						'separator' => 'yes',
					],
					'selectors' => [
						'{{WRAPPER}} .hfe-post-info-item:not(:last-child):after' => 'border-color: {{VALUE}};',
					],
				]
			);


		$this->end_controls_section();
	}

	/**
	 * Register style Controls for icon.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_style_post_info_icon_controls() {

		$this->start_controls_section(
			'section_style_icon',
			[
				'label' => __( 'Icon', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'icon_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .hfe-post-info-icon i'   => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-post-info-icon svg' => 'fill: {{VALUE}};',
				],
			]
		);

		$this->add_responsive_control(
			'icon_size',
			[
				'label'     => __( 'Size', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'default'   => [
					'size' => 14,
				],
				'range'     => [
					'px' => [
						'min' => 6,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-post-info-icon'     => 'width: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .hfe-post-info-icon i'   => 'font-size: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .hfe-post-info-icon svg' => '--e-icon-list-icon-size: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();

	}

	/**
	 * Register style Controls for text.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_style_post_info_text_controls() {

		$this->start_controls_section(
			'section_style_text',
			[
				'label' => __( 'Text', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

			$this->add_control(
				'text_indent',
				[
					'label'     => __( 'Spacing between Icon & Text', 'header-footer-elementor' ),
					'type'      => Controls_Manager::SLIDER,
					'range'     => [
						'px' => [
							'max' => 50,
						],
					],
					'default'   => [
						'size' => 10,
						'unit' => 'px',
					],
					'selectors' => [
						'body:not(.rtl) {{WRAPPER}} .hfe-post-info-text' => 'padding-left: {{SIZE}}{{UNIT}}',
						'body.rtl {{WRAPPER}} .hfe-post-info-text' => 'padding-right: {{SIZE}}{{UNIT}}',
					],
				]
			);

			$this->add_control(
				'text_color',
				[
					'label'     => __( 'Text Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'default'   => '',
					'selectors' => [
						'{{WRAPPER}} .hfe-post-info-text, {{WRAPPER}} .hfe-post-info-text a' => 'color: {{VALUE}}',
					],
				]
			);

			$this->add_group_control(
				Group_Control_Typography::get_type(),
				[
					'name'     => 'icon_typography',
					'selector' => '{{WRAPPER}} .hfe-post-info-item',
				]
			);

		$this->end_controls_section();

	}

	/**
	 * Get taxonomies.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return array
	 */
	protected function get_taxonomies() {
		$taxonomies = get_taxonomies(
			[
				'show_in_nav_menus' => true,
			],
			'objects'
		);

		$options = [
			'' => esc_html__( 'Choose', 'header-footer-elementor' ),
		];

		foreach ( $taxonomies as $taxonomy ) {
			$options[ $taxonomy->name ] = $taxonomy->label;
		}

		return $options;
	}

	/**
	 * Render Post meta fields
	 * 
	 * @since 2.2.1
	 * @access protected
	 * @param array $repeater_item An array of repeater item options for custom strings and link.
	 * @return array An array of rendered post meta fields.
	 */
	protected function get_meta_data( $repeater_item ) {

		$item_data = [];

		switch ( $repeater_item['type'] ) {

			case 'time':
				$item_data = $this->get_post_time_data( $repeater_item );
				break;

			case 'date':
				$item_data = $this->get_post_date_data( $repeater_item );
				break;

			case 'author':
				$item_data = $this->get_author_data( get_the_ID(), $repeater_item );
				break;

			case 'terms':
				$item_data = $this->get_post_terms_data( $repeater_item );
				break;

			case 'comments':
				$item_data = $this->get_post_comments_data( $repeater_item );
				break;

			case 'custom':
				$item_data = $this->get_custom_meta_data( $repeater_item );
				break;
		}

		$item_data['type'] = $repeater_item['type'];

		if ( ! empty( $repeater_item['text_prefix'] ) ) {
			$item_data['text_prefix'] = esc_html( $repeater_item['text_prefix'] );
		}

		return $item_data;

	}

	/**
	 * Get the terms data for a specific taxonomy of a post.
	 *
	 * @param array $repeaterItem  Repeater item options such as taxonomy and link option.
	 * @return array $termsData Modularized terms data with term names, links, and icons.
	 */
	function get_post_terms_data( $repeaterItem ) {
		// Default icon and icon library for terms.
		$termsData = [
			'selected_icon' => [
				'value'   => 'fas fa-tags',
				'library' => 'fa-solid',
			],
			'itemprop'      => 'about',
			'terms_list'    => [],
		];

		// Ensure taxonomy is set and valid.
		if ( empty( $repeaterItem['taxonomy'] ) ) {
			return $termsData; // Return default data if no taxonomy is defined.
		}

		$taxonomy = sanitize_text_field( $repeaterItem['taxonomy'] );
		$terms    = wp_get_post_terms( get_the_ID(), $taxonomy );

		// Loop through terms and collect term data.
		if ( ! is_wp_error( $terms ) && ! empty( $terms ) ) {
			foreach ( $terms as $term ) {
				$termId                             = $term->term_id;
				$termsData['terms_list'][ $termId ] = [
					'text' => esc_html( $term->name ),
				];

				// Add term link if the option is enabled.
				if ( isset( $repeaterItem['link'] ) && 'yes' === $repeaterItem['link'] ) {
					$term_link = get_term_link( $term );
					if ( ! is_wp_error( $term_link ) ) {
						$termsData['terms_list'][ $termId ]['url'] = esc_url( $term_link );
					}
				}
			}
		}

		return $termsData;
	}

	/**
	 * Get custom data for a repeater item.
	 *
	 * @param array $repeaterItem  Repeater item options such as custom text, icon, and link option.
	 * @return array $customData Modularized custom data with text, icons, and optional URL.
	 */
	function get_custom_meta_data( $repeaterItem ) {
		// Default icon and icon library for custom data.
		$customData = [
			'text'          => ! empty( $repeaterItem['custom_text'] ) ? sanitize_text_field( $repeaterItem['custom_text'] ) : '',
			'selected_icon' => [
				'value'   => 'far fa-tags',
				'library' => 'fa-regular',
			],
		];

		// Add custom URL if the option is enabled and the URL is not empty.
		if ( isset( $repeaterItem['link'] ) && 'yes' === $repeaterItem['link'] && ! empty( $repeaterItem['custom_url'] ) ) {
			$customData['url'] = $repeaterItem['custom_url'];
		}

		return $customData;
	}

	/**
	 * Get the post comments data for a given post.
	 *
	 * @param array $repeaterItem  Repeater item options for custom strings and link.
	 * @return array $commentsData Modularized comments data with custom strings, icons, and optional link.
	 */
	function get_post_comments_data( $repeaterItem ) {

		if ( ! comments_open() ) {
			return [];
		}

		// Define default comment strings.
		$defaultStrings = apply_filters(
			'hfe_custom_comments_strings',
			[
				'stringNoComments' => __( 'No Comments', 'header-footer-elementor' ),
				'stringOneComment' => __( 'One Comment', 'header-footer-elementor' ),
				/* translators: %s: Number of comments. */
				'stringComments'   => __( '%s Comments', 'header-footer-elementor' ),
			]
		);

		// Check if custom strings are provided.
		if ( isset( $repeaterItem['comments_custom_strings'] ) && 'yes' === $repeaterItem['comments_custom_strings'] ) {
			$defaultStrings['stringNoComments'] = ! empty( $repeaterItem['string_no_comments'] ) ? $repeaterItem['string_no_comments'] : $defaultStrings['stringNoComments'];
			$defaultStrings['stringOneComment'] = ! empty( $repeaterItem['string_one_comment'] ) ? $repeaterItem['string_one_comment'] : $defaultStrings['stringOneComment'];
			$defaultStrings['stringComments']   = ! empty( $repeaterItem['string_comments'] ) ? $repeaterItem['string_comments'] : $defaultStrings['stringComments'];
		}

		// Get the number of comments.
		$numComments = (int) get_comments_number();

		// Choose appropriate comment text.
		if ( 0 === $numComments ) {
			$commentsText = $defaultStrings['stringNoComments'];
		} else {
			$commentsText = sprintf( 
				_n( '%s comment', '%s comments', $numComments, 'header-footer-elementor' ), 
				$numComments 
			);
		}

		// Set up comments data.
		$commentsData = [
			'text'          => $commentsText,
			'selected_icon' => [
				'value'   => 'far fa-comment-dots',
				'library' => 'fa-regular',
			],
			'itemprop'      => 'commentCount',
		];

		// Conditional link to comments.
		if ( isset( $repeaterItem['link'] ) && 'yes' === $repeaterItem['link'] ) {
			$commentsData['url'] = [
				'url' => get_comments_link(),
			];
		}

		return $commentsData;
	}

	/**
	 * Get the post time data for a given post.
	 *
	 * @param array $repeater_item  Repeater item options for time format.
	 * @return array $time_data     Modularized time data with format and icons.
	 */
	function get_post_time_data( $repeater_item ) {
		// Define default and custom time formats.
		$default_format     = 'g:i a';
		$custom_time_format = ! empty( $repeater_item['custom_time_format'] ) ? $repeater_item['custom_time_format'] : $default_format;

		// Available time formats.
		$format_options = apply_filters(
			'hfe_time_format_options',
			[
				'default' => $default_format,
				'0'       => 'g:i a',
				'1'       => 'g:i A',
				'2'       => 'H:i',
				'custom'  => $custom_time_format,
			]
		);

		// Select appropriate format or fallback to default.
		$selected_format = isset( $format_options[ $repeater_item['time_format'] ] ) ? $format_options[ $repeater_item['time_format'] ] : $default_format;

		// Set time and icons.
		$time_data = [
			'text'          => get_the_time( $selected_format ),
			'selected_icon' => [
				'value'   => 'far fa-clock',
				'library' => 'fa-regular',
			],
		];

		return $time_data;
	}


	/**
	 * Get the post date data for a given post.
	 *
	 * @param array $repeater_item  Repeater item options for date format and link.
	 * @return array $date_data     Modularized date data with format, icons, and optional link.
	 */
	function get_post_date_data( $repeater_item ) {
		// Define default and custom date formats.
		$default_format     = 'F j, Y';
		$custom_date_format = ! empty( $repeater_item['custom_date_format'] ) ? $repeater_item['custom_date_format'] : $default_format;

		// Available date formats.
		$format_options = apply_filters(
			'custom_date_format_options',
			[
				'default' => $default_format,
				'0'       => 'F j, Y',
				'1'       => 'd/m/Y',
				'2'       => 'Y-m-d',
				'3'       => 'm/d/Y',
				'custom'  => $custom_date_format,
			]
		);

		// Select appropriate format or fallback to default.
		$selected_format = isset( $format_options[ $repeater_item['date_format'] ] ) ? $format_options[ $repeater_item['date_format'] ] : $default_format;

		// Set date and icons.
		$date_data = [
			'text'          => get_the_time( $selected_format ),
			'selected_icon' => [
				'value'   => 'far fa-calendar-alt',
				'library' => 'fa-regular',
			],
			'itemprop'      => 'datePublished',
		];

		// Optional link to date archive.
		if ( isset( $repeater_item['link'] ) && 'yes' === $repeater_item['link'] ) {
			$date_data['url'] = [
				'url' => get_day_link( get_post_time( 'Y' ), get_post_time( 'm' ), get_post_time( 'j' ) ),
			];
		}

		return $date_data;
	}

	/**
	 * Get the author data for a given post ID.
	 *
	 * @param int   $post_id        Post ID to fetch the author details.
	 * @param array $repeater_item  Repeater item options for link and avatar.
	 * @return array $author_data   Modularized author data with icons, URLs, and avatar.
	 */
	protected function get_author_data( $post_id, $repeater_item ) {
		$user_id = get_post_field( 'post_author', $post_id );

		// Author Name and Default Icon.
		$author_data = [
			'text'          => get_the_author_meta( 'display_name', $user_id ),
			'selected_icon' => [
				'value'   => 'far fa-user-circle',
				'library' => 'fa-regular',
			],
			'itemprop'      => 'author',
		];

		// Conditional link to author posts.
		if ( isset( $repeater_item['link'] ) && 'yes' === $repeater_item['link'] ) {
			$author_data['url'] = [
				'url' => get_author_posts_url( $user_id ),
			];
		}

		// Conditional avatar inclusion.
		if ( isset( $repeater_item['show_avatar'] ) && 'yes' === $repeater_item['show_avatar'] ) {
			$author_data['image'] = get_avatar_url( $user_id, 96 );
		}

		return $author_data;
	}

	/**
	 * Render the individual items in the icon list.
	 *
	 * @param array $icon_list Repeater items from the settings.
	 * @return string The generated HTML for the items.
	 */
	protected function render_items( $icon_list ) {
		ob_start();
		foreach ( $icon_list as $repeater_item ) {
			$this->render_item( $repeater_item );
		}
		return ob_get_clean();
	}

	/**
	 * Render the individual item in the icon list.
	 *
	 * @param array $repeater_item Repeater item from the settings.
	 * @return void
	 */
	protected function render_item( $repeater_item ) {
		$item_data      = $this->get_meta_data( $repeater_item );
		$repeater_index = $repeater_item['_id'];
	
		// Bail early if both text and terms list are empty.
		if ( empty( $item_data['text'] ) && empty( $item_data['terms_list'] ) ) {
			return;
		}
	
		$item_key = 'item_' . $repeater_index;
		$link_key = 'link_' . $repeater_index;
		$has_link = false;
	
		// Add base classes to the list item.
		$this->add_render_attribute(
			$item_key,
			'class',
			[
				'hfe-post-info-item',
				'elementor-repeater-item-' . $repeater_item['_id'],
			]
		);
	
		// Check active settings for inline view.
		$active_settings = $this->get_active_settings();
		if ( 'inline' === $active_settings['view'] ) {
			$this->add_render_attribute( $item_key, 'class', 'hfe-post-info-inline-item' );
		}
	
		// Add itemprop attribute if available.
		if ( ! empty( $item_data['itemprop'] ) ) {
			$this->add_render_attribute( $item_key, 'itemprop', $item_data['itemprop'] );
		}
	
		// Check if the item has a link.
		if ( ! empty( $item_data['url']['url'] ) ) {
			$has_link = true;
			$this->add_link_attributes( $link_key, $item_data['url'] );
		}
	
		?>
		<li <?php echo $this->get_render_attribute_string( $item_key ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>> 
			<?php if ( $has_link ) : ?>
				<a <?php echo $this->get_render_attribute_string( $link_key ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
			<?php endif; ?>

			<?php
			$this->render_item_icon_or_image( $item_data, $repeater_item, $repeater_index );
			$this->render_item_text( $item_data, $repeater_index );
			?>

			<?php if ( $has_link ) : ?>
				</a>
			<?php endif; ?>
		</li>
		<?php
	}

	/**
	 * Render the text for the item in the icon list.
	 *
	 * @param array $item_data      The data for the item.
	 * @param array $repeater_item  The repeater item data.
	 * @param int   $repeater_index The index of the repeater item.
	 * @return void
	 */
	protected function render_item_icon_or_image( $item_data, $repeater_item, $repeater_index ) {
		// Determine icon or image settings.
		if ( 'custom' === $repeater_item['show_icon'] && ! empty( $repeater_item['selected_icon'] ) ) {
			$item_data['selected_icon'] = $repeater_item['selected_icon'];
		} elseif ( 'none' === $repeater_item['show_icon'] ) {
			$item_data['selected_icon'] = [];
		}
			
		if ( empty( $item_data['selected_icon'] ) && empty( $item_data['image'] ) ) {
			return; // No icon or image to render.
		}

		$show_icon = 'none' !== $repeater_item['show_icon'];
	
		if ( ! empty( $item_data['image'] ) || $show_icon ) {
			?>
			<span class="hfe-post-info-icon">
				<?php if ( ! empty( $item_data['image'] ) ) : ?>
					<img class="hfe-post-info-avatar" src="<?php echo esc_url( $item_data['image'] ); ?>" alt="<?php echo esc_attr( $item_data['text'] ); ?>">
				<?php elseif ( $show_icon && ! empty( $item_data['selected_icon'] ) ) : ?>
					<?php 
					Icons_Manager::render_icon( $item_data['selected_icon'], [ 'aria-hidden' => 'true' ] );
					?>
				<?php endif; ?>
			</span>
			<?php
		}
	}
	
	/**
	 * Render the text for the item in the icon list.
	 *
	 * @param array $item_data      The data for the item.
	 * @param int   $repeater_index The index of the repeater item.
	 * @return void
	 */
	protected function render_item_text( $item_data, $repeater_index ) {
		$repeater_setting_key = $this->get_repeater_setting_key( 'text', 'icon_list', $repeater_index );
	
		// Add classes for text attributes.
		$this->add_render_attribute( $repeater_setting_key, 'class', [ 'hfe-post-info-text', 'hfe-post-info__item', 'hfe-post-info__item--type-' . $item_data['type'] ] );
		if ( ! empty( $item['terms_list'] ) ) {
			$this->add_render_attribute( $repeater_setting_key, 'class', 'hfe-terms-list' );
		}
	
		?>
		<span <?php echo $this->get_render_attribute_string( $repeater_setting_key ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
			<?php if ( ! empty( $item_data['text_prefix'] ) ) : ?>
				<span class="hfe-post-info__item-prefix"><?php echo esc_html( $item_data['text_prefix'] ); ?></span>
			<?php endif; ?>

			<?php if ( ! empty( $item_data['terms_list'] ) ) : ?>
				<span class="hfe-post-info__terms-list">
					<?php
					$terms_list = array_map(
						function( $term ) {
							$term_text = esc_html( $term['text'] );
							return ! empty( $term['url'] ) ? '<a href="' . esc_url( $term['url'] ) . '" class="hfe-post-info__terms-list-item">' . $term_text . '</a>' : '<span class="hfe-post-info__terms-list-item">' . $term_text . '</span>';
						},
						$item_data['terms_list']
					);
					echo implode( ', ', $terms_list ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
					?>
				</span>
			<?php else : ?>
				<?php
				echo wp_kses(
					$item_data['text'],
					[
						'a' => [
							'href'  => [],
							'title' => [],
							'rel'   => [],
						],
					]
				);
				?>
			<?php endif; ?>
		</span>
		<?php
	}
	

	/**
	 * Render Post Info widget output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function render() {
		$settings = $this->get_settings_for_display();

		// Bail early if no icon list is available.
		if ( empty( $settings['icon_list'] ) ) {
			return;
		}

		// Start output buffering.
		$items_html = $this->render_items( $settings['icon_list'] );

		if ( empty( $items_html ) ) {
			return;
		}

		if ( 'inline' === $settings['view'] ) {
			$this->add_render_attribute( 'icon_list', 'class', 'hfe-post-info-inline' );
		}

		$this->add_render_attribute( 'icon_list', 'class', [ 'hfe-post-info-items', 'hfe-post-info' ] );
		?>
		<ul <?php echo $this->get_render_attribute_string( 'icon_list' ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
			<?php echo $items_html; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
		</ul>
		<?php
	}
}
PK���\Q6C4��0inc/widgets-manager/widgets/post-info/module.phpnu�[���<?php
/**
 * HFE PostInfo Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\PostInfo;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'post-info-widget';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Post_Info',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\y4�B�V�V-inc/widgets-manager/widgets/retina/retina.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\Retina;

use Elementor\Controls_Manager;
use Elementor\Control_Media;
use Elementor\Utils;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Typography;
use Elementor\Group_Control_Box_Shadow;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
use Elementor\Group_Control_Image_Size;
use Elementor\Group_Control_Css_Filter;
use Elementor\Group_Control_Text_Shadow;
use Elementor\Plugin;
use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * HFE Retina widget
 *
 * HFE widget for Retina Image.
 *
 * @since 1.2.0
 */
class Retina extends Common_Widget {
	/**
	 * Retrieve the widget name.
	 *
	 * @since 1.2.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Retina' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 1.2.0
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Retina' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 1.2.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Retina' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Retina' );
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * This method returns true if the widget's output is dynamic and should not be cached,
	 * or false if the content is static and can be cached.
	 *
	 * @since 1.6.41
	 * @return bool True for dynamic content, false for static content.
	 */
	protected function is_dynamic_content(): bool { // phpcs:ignore
		return false;
	}

	/**
	 * Register Retina Logo controls.
	 *
	 * @since 1.5.7
	 * @access protected
	 */
	protected function register_controls() {
		$this->register_content_retina_image_controls();
		$this->register_retina_image_styling_controls();
		$this->register_retina_caption_styling_controls();
		$this->register_helpful_information();
		$this->register_pro_promotion_controls();
	}

	/**
	 * Register Retina Logo General Controls.
	 *
	 * @since 1.2.0
	 * @access protected
	 */
	protected function register_content_retina_image_controls() {
		$this->start_controls_section(
			'section_retina_image',
			[
				'label' => __( 'Retina Image', 'header-footer-elementor' ),
			]
		);
		$this->add_control(
			'retina_image',
			[
				'label'   => __( 'Choose Default Image', 'header-footer-elementor' ),
				'type'    => Controls_Manager::MEDIA,
				'dynamic' => [
					'active' => true,
				],
				'default' => [
					'url' => Utils::get_placeholder_image_src(),
				],
			]
		);
		$this->add_control(
			'real_retina',
			[
				'label'   => __( 'Choose Retina Image', 'header-footer-elementor' ),
				'type'    => Controls_Manager::MEDIA,
				'dynamic' => [
					'active' => true,
				],
				'default' => [
					'url' => Utils::get_placeholder_image_src(),
				],
			]
		);
		$this->add_group_control(
			Group_Control_Image_Size::get_type(),
			[
				'name'    => 'retina_image',
				'label'   => __( 'Image Size', 'header-footer-elementor' ),
				'default' => 'medium',
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label'              => __( 'Alignment', 'header-footer-elementor' ),
				'type'               => Controls_Manager::CHOOSE,
				'options'            => [
					'left'   => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-center',
					],
					'right'  => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-right',
					],
				],
				'default'            => 'center',
				'selectors'          => [
					'{{WRAPPER}} .hfe-retina-image-container, {{WRAPPER}} .hfe-caption-width' => 'text-align: {{VALUE}};',
				],
				'frontend_available' => true,
			]
		);

		$this->add_control(
			'caption_source',
			[
				'label'   => __( 'Caption', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'options' => [
					'none'   => __( 'None', 'header-footer-elementor' ),
					'custom' => __( 'Custom Caption', 'header-footer-elementor' ),
				],
				'default' => 'none',
			]
		);

		$this->add_control(
			'caption',
			[
				'label'       => __( 'Custom Caption', 'header-footer-elementor' ),
				'type'        => Controls_Manager::TEXT,
				'default'     => '',
				'placeholder' => __( 'Enter your image caption', 'header-footer-elementor' ),
				'condition'   => [
					'caption_source' => 'custom',
				],
				'dynamic'     => [
					'active' => true,
				],
				'label_block' => true,
			]
		);

		$this->add_control(
			'link_to',
			[
				'label'   => __( 'Link', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'default' => 'none',
				'options' => [
					'none'   => __( 'None', 'header-footer-elementor' ),
					'custom' => __( 'Custom URL', 'header-footer-elementor' ),
				],
			]
		);

		$this->add_control(
			'link',
			[
				'label'       => __( 'Link', 'header-footer-elementor' ),
				'type'        => Controls_Manager::URL,
				'dynamic'     => [
					'active' => true,
				],
				'placeholder' => __( 'https://your-link.com', 'header-footer-elementor' ),
				'condition'   => [
					'link_to' => 'custom',
				],
				'show_label'  => false,
			]
		);
		$this->end_controls_section();
	}
	/**
	 * Register Retina Image Style Controls.
	 *
	 * @since 1.2.0
	 * @access protected
	 */
	protected function register_retina_image_styling_controls() {
		$this->start_controls_section(
			'section_style_retina_image',
			[
				'label' => __( 'Retina Image', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'width',
			[
				'label'              => __( 'Width', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'default'            => [
					'unit' => '%',
				],
				'tablet_default'     => [
					'unit' => '%',
				],
				'mobile_default'     => [
					'unit' => '%',
				],
				'size_units'         => [ '%', 'px', 'vw' ],
				'range'              => [
					'%'  => [
						'min' => 1,
						'max' => 100,
					],
					'px' => [
						'min' => 1,
						'max' => 1000,
					],
					'vw' => [
						'min' => 1,
						'max' => 100,
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-retina-image img' => 'width: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .hfe-retina-image .wp-caption .widget-image-caption' => 'width: {{SIZE}}{{UNIT}}; display: inline-block;',
				],
				'frontend_available' => true,
			]
		);

		$this->add_responsive_control(
			'space',
			[
				'label'              => __( 'Max Width', 'header-footer-elementor' ) . ' (%)',
				'type'               => Controls_Manager::SLIDER,
				'default'            => [
					'unit' => '%',
				],
				'tablet_default'     => [
					'unit' => '%',
				],
				'mobile_default'     => [
					'unit' => '%',
				],
				'size_units'         => [ '%' ],
				'range'              => [
					'%' => [
						'min' => 1,
						'max' => 100,
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-retina-image img' => 'max-width: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .wp-caption-text'      => 'max-width: {{SIZE}}{{UNIT}}; display: inline-block; width: 100%;',
				],
				'frontend_available' => true,
			]
		);

		$this->add_control(
			'separator_panel_style',
			[
				'type'  => Controls_Manager::DIVIDER,
				'style' => 'thick',
			]
		);

		$this->add_control(
			'retina_image_border',
			[
				'label'       => __( 'Border Style', 'header-footer-elementor' ),
				'type'        => Controls_Manager::SELECT,
				'default'     => 'none',
				'label_block' => false,
				'options'     => [
					'none'   => __( 'None', 'header-footer-elementor' ),
					'solid'  => __( 'Solid', 'header-footer-elementor' ),
					'double' => __( 'Double', 'header-footer-elementor' ),
					'dotted' => __( 'Dotted', 'header-footer-elementor' ),
					'dashed' => __( 'Dashed', 'header-footer-elementor' ),
				],
				'selectors'   => [
					'{{WRAPPER}} .hfe-retina-image-container .hfe-retina-img' => 'border-style: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'retina_image_border_size',
			[
				'label'      => __( 'Border Width', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px' ],
				'default'    => [
					'top'    => '1',
					'bottom' => '1',
					'left'   => '1',
					'right'  => '1',
					'unit'   => 'px',
				],
				'condition'  => [
					'retina_image_border!' => 'none',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-retina-image-container .hfe-retina-img' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'retina_image_border_color',
			[
				'label'     => __( 'Border Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_PRIMARY,
				],
				'condition' => [
					'retina_image_border!' => 'none',
				],
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .hfe-retina-image-container .hfe-retina-img' => 'border-color: {{VALUE}};',
				],
			]
		);

		$this->add_responsive_control(
			'image_border_radius',
			[
				'label'              => __( 'Border Radius', 'header-footer-elementor' ),
				'type'               => Controls_Manager::DIMENSIONS,
				'size_units'         => [ 'px', '%' ],
				'selectors'          => [
					'{{WRAPPER}} .hfe-retina-image img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'frontend_available' => true,
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name'     => 'image_box_shadow',
				'exclude'  => [
					'box_shadow_position',
				],
				'selector' => '{{WRAPPER}} .hfe-retina-image img',
			]
		);

		$this->start_controls_tabs( 'image_effects' );

		$this->start_controls_tab(
			'normal',
			[
				'label' => __( 'Normal', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'opacity',
			[
				'label'     => __( 'Opacity', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'max'  => 1,
						'min'  => 0.10,
						'step' => 0.01,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-retina-image img' => 'opacity: {{SIZE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Css_Filter::get_type(),
			[
				'name'     => 'css_filters',
				'selector' => '{{WRAPPER}} .hfe-retina-image img',
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'hover',
			[
				'label' => __( 'Hover', 'header-footer-elementor' ),
			]
		);
		$this->add_control(
			'opacity_hover',
			[
				'label'     => __( 'Opacity', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'max'  => 1,
						'min'  => 0.10,
						'step' => 0.01,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-retina-image:hover img' => 'opacity: {{SIZE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Css_Filter::get_type(),
			[
				'name'     => 'css_filters_hover',
				'selector' => '{{WRAPPER}} .hfe-retina-image:hover img',
			]
		);

		$this->add_control(
			'hover_animation',
			[
				'label' => __( 'Hover Animation', 'header-footer-elementor' ),
				'type'  => Controls_Manager::HOVER_ANIMATION,
			]
		);
		$this->add_control(
			'background_hover_transition',
			[
				'label'     => __( 'Transition Duration', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'max'  => 3,
						'step' => 0.1,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-retina-image img' => 'transition-duration: {{SIZE}}s',
				],
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();
	}
	/**
	 * Register Caption style Controls.
	 *
	 * @since 1.2.0
	 * @access protected
	 */
	protected function register_retina_caption_styling_controls() {
		$this->start_controls_section(
			'section_style_caption',
			[
				'label'     => __( 'Caption', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'caption_source!' => 'none',
				],
			]
		);

		$this->add_control(
			'text_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .widget-image-caption' => 'color: {{VALUE}};',
				],
				'global'    => [
					'default' => Global_Colors::COLOR_TEXT,
				],
			]
		);

		$this->add_control(
			'caption_background_color',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .widget-image-caption' => 'background-color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'caption_typography',
				'selector' => '{{WRAPPER}} .widget-image-caption',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_TEXT,
				],
			]
		);

		$this->add_group_control(
			Group_Control_Text_Shadow::get_type(),
			[
				'name'     => 'caption_text_shadow',
				'selector' => '{{WRAPPER}} .widget-image-caption',
			]
		);

		$this->add_responsive_control(
			'caption_padding',
			[
				'label'              => __( 'Padding', 'header-footer-elementor' ),
				'type'               => Controls_Manager::DIMENSIONS,
				'size_units'         => [ 'px', 'em', '%' ],
				'selectors'          => [
					'{{WRAPPER}} .widget-image-caption' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'frontend_available' => true,
			]
		);
		$this->add_responsive_control(
			'caption_space',
			[
				'label'              => __( 'Caption Top Spacing', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'range'              => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'default'            => [
					'size' => 0,
					'unit' => 'px',
				],
				'selectors'          => [
					'{{WRAPPER}} .widget-image-caption' => 'margin-top: {{SIZE}}{{UNIT}}; margin-bottom: 0px;',
				],
				'frontend_available' => true,
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Helpful Information.
	 *
	 * @since 1.2.0
	 * @access protected
	 */
	protected function register_helpful_information() {

			$help_link_1 = HFE_DOMAIN . 'docs/introducing-retina-image-widget';

			$this->start_controls_section(
				'section_helpful_info',
				[
					'label' => __( 'Helpful Information', 'header-footer-elementor' ),
				]
			);

			$this->add_control(
				'help_doc_1',
				[
					'type'            => Controls_Manager::RAW_HTML,
					/* translators: %1$s doc link */
					'raw'             => sprintf( __( '%1$s Getting started article » %2$s', 'header-footer-elementor' ), '<a href=' . $help_link_1 . 'docs/introducing-retina-image-widget/" target="_blank" rel="noopener">', '</a>' ),
					'content_classes' => 'hfe-editor-doc',
				]
			);

			$this->end_controls_section();
	}

	/**
	 * Retina Promotion Controls.
	 *
	 * @since 2.4.0
	 * @access protected
	 */
	protected function register_pro_promotion_controls() {

		if(! defined( 'UAEL_VER' )){
			$this->start_controls_section(
				'section_pro_features_field',
				array(
					'label' => __( 'Go Pro for More Features', 'header-footer-elementor' ),
				)
			);

			$this->add_control(
				'uae_pro_promotion_notice',
				[
					'type' => Controls_Manager::NOTICE,
					'notice_type' => 'info',
					'dismissible' => false,
					'content' => __( '<b>Build smarter and faster</b> with premium widgets, 200+ section blocks, and advanced customisation controls — all available in the <a href="https://ultimateelementor.com/pricing/?utm_source=uae-dashboard&utm_medium=editor&utm_campaign=uae-pro-promotion" target="_blank">UAE Pro</a>.', 'header-footer-elementor' ),
				]
			);


			$this->end_controls_section();
		}
	}

	/**
	 * Check if the current widget has caption
	 *
	 * @access private
	 * @since 1.2.0
	 *
	 * @param array $settings returns settings.
	 *
	 * @return boolean
	 */
	private function has_caption( $settings ) {
		return ( ! empty( $settings['caption_source'] ) && 'none' !== $settings['caption_source'] );
	}

	/**
	 * Get the caption for current widget.
	 *
	 * @access private
	 * @since 1.2.0
	 * @param array $settings returns the caption.
	 *
	 * @return string
	 */
	private function get_caption( $settings ) {
		$caption = '';
		if ( 'custom' === $settings['caption_source'] ) {
			$caption = ! empty( $settings['caption'] ) ? $settings['caption'] : '';
		}
		return $caption;
	}

	/**
	 * Render Retina Image output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.2.0
	 * @access protected
	 */
	protected function render() {
		$settings = $this->get_settings_for_display();

		if ( empty( $settings['retina_image']['url'] ) ) {
			return;
		}

		$has_caption = $this->has_caption( $settings );

		$this->add_render_attribute( 'wrapper', 'class', 'hfe-retina-image' );
		$link = $this->get_link_url( $settings );

		if ( $link ) {

			if ( Plugin::$instance->editor->is_edit_mode() ) {
				$this->add_render_attribute(
					'link',
					[
						'class' => 'elementor-clickable',
					]
				);
			}

			$this->add_link_attributes( 'link', $link );
		}

		?>
		<div <?php $this->print_render_attribute_string( 'wrapper' ); ?>>
			<?php if ( $has_caption ) : ?>
				<figure class="wp-caption">
			<?php endif; ?>
			<?php if ( $link ) : ?>
				<a <?php $this->print_render_attribute_string( 'link' ); ?>>
			<?php endif; ?>
			<?php
			$size = $settings[ 'retina_image' . '_size' ];
			$demo = '';

			if ( 'custom' !== $size ) {
				$image_size = $size;
			} else {
				require_once ELEMENTOR_PATH . 'includes/libraries/bfi-thumb/bfi-thumb.php';

				$image_dimension = $settings[ 'retina_image' . '_custom_dimension' ];

				$image_size = [
					// Defaults sizes.
					0           => null, // Width.
					1           => null, // Height.

					'bfi_thumb' => true,
					'crop'      => true,
				];

				$has_custom_size = false;
				if ( ! empty( $image_dimension['width'] ) ) {
					$has_custom_size = true;
					$image_size[0]   = $image_dimension['width'];
				}

				if ( ! empty( $image_dimension['height'] ) ) {
					$has_custom_size = true;
					$image_size[1]   = $image_dimension['height'];
				}

				if ( ! $has_custom_size ) {
					$image_size = 'full';
				}
			}
			$retina_image_url = $settings['real_retina']['url'];

			$image_url = $settings['retina_image']['url'];

			$image_data = wp_get_attachment_image_src( $settings['retina_image']['id'], $image_size, true );

			$retina_data = wp_get_attachment_image_src( $settings['real_retina']['id'], $image_size, true );

			$retina_image_class = 'elementor-animation-';

			if ( ! empty( $settings['hover_animation'] ) ) {
				$demo = $settings['hover_animation'];
			}
			if ( ! empty( $image_data ) ) {
				$image_url = $image_data[0];
			}
			if ( ! empty( $retina_data ) ) {
				$retina_image_url = $retina_data[0];
			}
			$class_animation = $retina_image_class . $demo;

			$image_unset         = site_url() . '/wp-includes/images/media/default.png';
			$placeholder_img_url = Utils::get_placeholder_image_src();

			if ( $image_unset === $retina_image_url ) {
				if ( $image_unset !== $image_url ) {
					$retina_image_url = $image_url;
				} else {
					$retina_image_url = $placeholder_img_url;
				}
			}

			if ( $image_unset === $image_url ) {
				$image_url = $placeholder_img_url;
			}

			// PHPCS:Ignore WordPressVIPMinimum.Variables.RestrictedVariables.cache_constraints___SERVER__HTTP_USER_AGENT__
			if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && strpos( sanitize_text_field( $_SERVER['HTTP_USER_AGENT'] ), 'Chrome' ) !== false ) {
				$date             = new \DateTime();
				$timestam         = $date->getTimestamp();
				$image_url        = $image_url . '?' . $timestam;
				$retina_image_url = $retina_image_url . '?' . $timestam;
			}
			?>
				<div class="hfe-retina-image-set">
					<div class="hfe-retina-image-container">
						<img class="hfe-retina-img <?php echo esc_attr( $class_animation ); ?>"  src="<?php echo esc_url( $image_url ); ?>" alt="<?php echo esc_attr( Control_Media::get_image_alt( $settings['retina_image'] ) ); ?>" srcset="<?php echo esc_url( $image_url ) . ' 1x' . ',' . esc_url( $retina_image_url ) . ' 2x'; ?>"/>
					</div>
				</div>
			<?php if ( $link ) : ?>
					</a>
			<?php endif; ?>
			<?php
			if ( $has_caption ) :
				$caption_text = $this->get_caption( $settings );
				?>
				<?php if ( ! empty( $caption_text ) ) : ?>
					<div class="hfe-caption-width"> 
						<figcaption class="widget-image-caption wp-caption-text"><?php echo esc_html( $caption_text ); ?></figcaption>
					</div>
				<?php endif; ?>
				</figure>
			<?php endif; ?>
		</div> 
		<?php
	}

	/**
	 * Retrieve Retina image widget link URL.
	 *
	 * @since 1.2.0
	 * @access private
	 *
	 * @param array $settings returns settings.
	 * @return array|string|false An array/string containing the link URL, or false if no link.
	 */
	private function get_link_url( $settings ) {
		if ( 'none' === $settings['link_to'] ) {
			return false;
		}

		if ( 'custom' === $settings['link_to'] ) {
			if ( empty( $settings['link']['url'] ) ) {
				return false;
			}
			return $settings['link'];
		}
	}
}
PK���\ϾZK��-inc/widgets-manager/widgets/retina/module.phpnu�[���<?php
/**
 * HFE Retina Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\Retina;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'retina';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Retina',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\1',B��1inc/widgets-manager/widgets/site-title/module.phpnu�[���<?php
/**
 * HFEWpfStyler Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\SiteTitle;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'hfe-site-title';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Site_Title',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\󲆘;;5inc/widgets-manager/widgets/site-title/site-title.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\SiteTitle;

use Elementor\Controls_Manager;
use Elementor\Group_Control_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Group_Control_Text_Shadow;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;

use HFE\WidgetsManager\Widgets_Loader;
use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * HFE Site title widget
 *
 * HFE widget for site title
 *
 * @since 1.3.0
 */
class Site_Title extends Common_Widget {

	/**
	 * Retrieve the widget name.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Site_Title' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Site_Title' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Site_Title' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Site_Title' );
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * This method returns true if the widget's output is dynamic and should not be cached,
	 * or false if the content is static and can be cached.
	 *
	 * @since 1.6.41
	 * @return bool True for dynamic content, false for static content.
	 */
	protected function is_dynamic_content(): bool { // phpcs:ignore
		return false;
	}

	/**
	 * Register site title controls.
	 *
	 * @since 1.5.7
	 * @access protected
	 * @return void
	 */
	// phpcs:ignore
	protected function register_controls(): void {

		$this->register_general_content_controls();
		$this->register_heading_typo_content_controls();
		$this->register_pro_promotion_controls();
	}

	/**
	 * Register Advanced Heading General Controls.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	// phpcs:ignore
	protected function register_general_content_controls(): void {

		$this->start_controls_section(
			'section_general_fields',
			[
				'label' => __( 'General', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'before',
			[
				'label'   => __( 'Before Title Text', 'header-footer-elementor' ),
				'type'    => Controls_Manager::TEXT,
				'dynamic' => [
					'active' => true,
				],
			]
		);

		$this->add_control(
			'after',
			[
				'label'   => __( 'After Title Text', 'header-footer-elementor' ),
				'type'    => Controls_Manager::TEXT,
				'dynamic' => [
					'active' => true,
				],
			]
		);

		$this->add_control(
			'icon',
			[
				'label'       => __( 'Icon', 'header-footer-elementor' ),
				'type'        => Controls_Manager::ICONS,
				'label_block' => 'true',
			]
		);

		$this->add_control(
			'icon_indent',
			[
				'label'     => __( 'Icon Spacing', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'max' => 50,
					],
				],
				'condition' => [
					'icon[value]!' => '',
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-icon' => 'margin-right: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'custom_link',
			[
				'label'   => __( 'Link', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'options' => [
					'custom'  => __( 'Custom URL', 'header-footer-elementor' ),
					'default' => __( 'Default', 'header-footer-elementor' ),
				],
				'default' => 'default',
			]
		);

		$this->add_control(
			'heading_link',
			[
				'label'       => __( 'Link', 'header-footer-elementor' ),
				'type'        => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'header-footer-elementor' ),
				'dynamic'     => [
					'active' => true,
				],
				'default'     => [
					'url' => get_home_url(),
				],
				'condition'   => [
					'custom_link' => 'custom',
				],
			]
		);

		$this->add_control(
			'size',
			[
				'label'   => __( 'Size', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'default' => 'default',
				'options' => [
					'default' => __( 'Default', 'header-footer-elementor' ),
					'small'   => __( 'Small', 'header-footer-elementor' ),
					'medium'  => __( 'Medium', 'header-footer-elementor' ),
					'large'   => __( 'Large', 'header-footer-elementor' ),
					'xl'      => __( 'XL', 'header-footer-elementor' ),
					'xxl'     => __( 'XXL', 'header-footer-elementor' ),
				],
			]
		);

		$this->add_control(
			'heading_tag',
			[
				'label'   => __( 'HTML Tag', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'options' => [
					'h1' => __( 'H1', 'header-footer-elementor' ),
					'h2' => __( 'H2', 'header-footer-elementor' ),
					'h3' => __( 'H3', 'header-footer-elementor' ),
					'h4' => __( 'H4', 'header-footer-elementor' ),
					'h5' => __( 'H5', 'header-footer-elementor' ),
					'h6' => __( 'H6', 'header-footer-elementor' ),
				],
				'default' => 'h2',
			]
		);

		$this->add_responsive_control(
			'heading_text_align',
			[
				'label'              => __( 'Alignment', 'header-footer-elementor' ),
				'type'               => Controls_Manager::CHOOSE,
				'options'            => [
					'left'    => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-left',
					],
					'center'  => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-center',
					],
					'right'   => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-right',
					],
					'justify' => [
						'title' => __( 'Justify', 'header-footer-elementor' ),
						'icon'  => 'fa fa-align-justify',
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-heading' => 'text-align: {{VALUE}};',
				],
				'prefix_class'       => 'hfe%s-heading-align-',
				'frontend_available' => true,
			]
		);
		$this->end_controls_section();
	}


	/**
	 * Register Advanced Heading Typography Controls.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	// phpcs:ignore
	protected function register_heading_typo_content_controls(): void {
		$this->start_controls_section(
			'section_heading_typography',
			[
				'label' => __( 'Title', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);
		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'heading_typography',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
				],
				'selector' => '{{WRAPPER}} .elementor-heading-title, {{WRAPPER}} .hfe-heading a',
			]
		);
		$this->add_control(
			'heading_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_PRIMARY,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-heading-text' => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-icon i'       => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-icon svg'     => 'fill: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Text_Shadow::get_type(),
			[
				'name'     => 'heading_shadow',
				'selector' => '{{WRAPPER}} .hfe-heading-text',
			]
		);

		$this->add_control(
			'blend_mode',
			[
				'label'     => __( 'Blend Mode', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'options'   => [
					''            => __( 'Normal', 'header-footer-elementor' ),
					'multiply'    => 'Multiply',
					'screen'      => 'Screen',
					'overlay'     => 'Overlay',
					'darken'      => 'Darken',
					'lighten'     => 'Lighten',
					'color-dodge' => 'Color Dodge',
					'saturation'  => 'Saturation',
					'color'       => 'Color',
					'difference'  => 'Difference',
					'exclusion'   => 'Exclusion',
					'hue'         => 'Hue',
					'luminosity'  => 'Luminosity',
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-heading-text' => 'mix-blend-mode: {{VALUE}}',
				],
				'separator' => 'none',
			]
		);
		$this->end_controls_section();

		$this->start_controls_section(
			'section_icon',
			[
				'label'     => __( 'Icon', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'icon[value]!' => '',
				],
			]
		);
		$this->add_control(
			'icon_color',
			[
				'label'     => __( 'Icon Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_PRIMARY,
				],
				'condition' => [
					'icon[value]!' => '',
				],
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .hfe-icon i'   => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-icon svg' => 'fill: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'icons_hover_color',
			[
				'label'     => __( 'Icon Hover Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'condition' => [
					'icon[value]!' => '',
				],
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .hfe-icon:hover i'   => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-icon:hover svg' => 'fill: {{VALUE}};',
				],
			]
		);
		$this->end_controls_section();
	}

	/**
	 * Site Tagline Promotion Controls.
	 *
	 * @since 2.4.0
	 * @access protected
	 */
	protected function register_pro_promotion_controls() {

		if(! defined( 'UAEL_VER' )){
			$this->start_controls_section(
				'section_pro_features_field',
				array(
					'label' => __( 'Go Pro for More Features', 'header-footer-elementor' ),
				)
			);

			$this->add_control(
				'uae_pro_promotion_notice',
				[
					'type' => Controls_Manager::NOTICE,
					'notice_type' => 'info',
					'dismissible' => false,
					'content' => __( '<b>Build smarter and faster</b> with premium widgets, 200+ section blocks, and advanced customisation controls — all available in the <a href="https://ultimateelementor.com/pricing/?utm_source=uae-dashboard&utm_medium=editor&utm_campaign=uae-pro-promotion" target="_blank">UAE Pro</a>.', 'header-footer-elementor' ),
				]
			);


			$this->end_controls_section();
		}
	}

	/**
	 * Render Heading output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.3.0
	 * @access protected
	 *
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	protected function render(): void {

		$settings = $this->get_settings();
		$title    = get_bloginfo( 'name' );

		$this->add_inline_editing_attributes( 'heading_title', 'basic' );

		if ( ! empty( $settings['size'] ) ) {
			$this->add_render_attribute( 'title', 'class', 'elementor-size-' . $settings['size'] );
		}

		if ( ! empty( $settings['heading_link']['url'] ) ) {
			$this->add_link_attributes( 'url', $settings['heading_link'] );
		}

		$heading_size_tag = Widgets_Loader::validate_html_tag( $settings['heading_tag'] );
		?>

		<div class="hfe-module-content hfe-heading-wrapper elementor-widget-heading">
		<?php if ( ! empty( $settings['heading_link']['url'] ) && 'custom' === $settings['custom_link'] ) { ?>
					<a <?php echo wp_kses_post( $this->get_render_attribute_string( 'url' ) ); ?>>
				<?php } else { ?>
					<a href="<?php echo esc_url( get_home_url() ); ?>">
				<?php } ?>
			<<?php echo esc_attr( $heading_size_tag ); ?> class="hfe-heading elementor-heading-title elementor-size-<?php echo esc_attr( $settings['size'] ); ?>">
				<?php if ( '' !== $settings['icon']['value'] ) { ?>
					<span class="hfe-icon">
						<?php \Elementor\Icons_Manager::render_icon( $settings['icon'], [ 'aria-hidden' => 'true' ] ); ?>					
					</span>
				<?php } ?>
					<span class="hfe-heading-text" >
					<?php
					if ( '' !== $settings['before'] ) {
						echo wp_kses_post( $settings['before'] );
					}
					?>
					<?php echo wp_kses_post( $title ); ?>
					<?php
					if ( '' !== $settings['after'] ) {
						echo wp_kses_post( $settings['after'] );
					}
					?>
					</span>			
			</<?php echo esc_attr( $heading_size_tag ); ?>>
			</a>		
		</div>
		<?php
	}
		/**
		 * Render site title output in the editor.
		 *
		 * Written as a Backbone JavaScript template and used to generate the live preview.
		 *
		 * @since 1.3.0
		 * @access protected
		 * @return void
		 */
	protected function content_template() {
		?>
		<#
		if ( '' == settings.heading_title ) {
			return;
		}
		if ( '' == settings.size ){
			return;
		}
		var sanitizedSize = _.escape( settings.size );

		if ( '' != settings.heading_link.url ) {
			var urlPattern = /^(https?|ftp):\/\/[^\s/$.?#].[^\s]*$|^www\.[^\s/$.?#].[^\s]*$/;
			if ( urlPattern.test( settings.heading_link.url ) ) {
				var sanitizedUrl = _.escape( settings.heading_link.url );
				view.addRenderAttribute( 'url', 'href', sanitizedUrl );
			}
		}
		var iconHTML = elementor.helpers.renderIcon( view, settings.icon, { 'aria-hidden': true }, 'i' , 'object' );

		var headingSizeTag = elementor.helpers.validateHTMLTag( settings.heading_tag );

		if ( typeof elementor.helpers.validateHTMLTag === "function" ) { 
			headingSizeTag = elementor.helpers.validateHTMLTag( headingSizeTag );
		} else if( HfeWidgetsData.allowed_tags ) {
			headingSizeTag = HfeWidgetsData.allowed_tags.includes( headingSizeTag.toLowerCase() ) ? headingSizeTag : 'div';
		}

		#>
		<div class="hfe-module-content hfe-heading-wrapper elementor-widget-heading">
				<# if ( '' != settings.heading_link.url ) { #>
					<a {{{ view.getRenderAttributeString( 'url' ) }}} > <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
				<# } #>
				<{{{ headingSizeTag }}} class="hfe-heading elementor-heading-title elementor-size-{{{ elementor.helpers.sanitize( sanitizedSize ) }}}"> <?php //phpcs:ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
				<# if( '' != settings.icon.value ){ #>
				<span class="hfe-icon">
					{{{ iconHTML.value }}}	<?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>			
				</span>
				<# } #>
				<span class="hfe-heading-text  elementor-heading-title" data-elementor-setting-key="heading_title" data-elementor-inline-editing-toolbar="basic" >
				<# if ( '' != settings.before ){
					var before = elementor.helpers.sanitize( settings.before )#>
					{{{ before }}}  <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
				<#}#>
				<?php echo wp_kses_post( get_bloginfo( 'name' ) ); ?>
				<# if ( '' != settings.after ){
					var after = elementor.helpers.sanitize( settings.after )#>
					{{{ after }}} <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
				<#}#>
				</span>
			</{{{ headingSizeTag }}}> <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
			<# if ( '' != settings.heading_link.url ) { #>
				</a>
			<# } #>
		</div>
		<?php
	}
}
PK���\ԭ��NINI)inc/widgets-manager/widgets/cart/cart.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\Cart;

use Elementor\Controls_Manager;
use Elementor\Group_Control_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Group_Control_Text_Shadow;
use Elementor\Group_Control_Border;

use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * HFE Cart Widget
 *
 * @since 1.4.0
 */
class Cart extends Common_Widget {

	/**
	 * Retrieve the widget name.
	 *
	 * @since 1.4.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Cart' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 1.4.0
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Cart' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 1.4.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Cart' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Cart' );
	}

	/**
	 * Get widget upsale data.
	 *
	 * Retrieve the widget promotion data.
	 *
	 * @since 2.5.0
	 * @access protected
	 *
	 * @return array Widget promotion data.
	 */
	protected function get_upsale_data() {
		return [
			'condition' => ! defined( 'UAEL_VER' ),
			'image' => esc_url( HFE_URL . 'assets/images/upgrade-pro.png' ),
			'image_alt' => esc_attr__( 'Upgrade', 'header-footer-elementor' ),
			'title' => esc_html__( 'Upgrade your Cart widget', 'header-footer-elementor' ),
			'description' => esc_html__( 'Get the WooCommerce Add to Cart widget and unlock advanced layouts, styles, and features with UAE Pro.', 'header-footer-elementor' ),
			'upgrade_url' => esc_url( 'https://ultimateelementor.com/pricing/?utm_source=UAE-Cart&utm_medium=editor&utm_campaign=static-promotion' ),
			'upgrade_text' => esc_html__( 'Upgrade Now', 'header-footer-elementor' ),
		];
	}

	/**
	 * Register cart controls.
	 *
	 * @since 1.5.7
	 * @access protected
	 * @return void
	 */
	protected function register_controls() {

		$this->register_general_content_controls();
		$this->register_cart_typo_content_controls();
	}

	/**
	 * Register Menu Cart General Controls.
	 *
	 * @since 1.4.0
	 * @access protected
	 * @return void
	 */
	protected function register_general_content_controls() {

		$this->start_controls_section(
			'section_general_fields',
			[
				'label' => __( 'Menu Cart', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'hfe_cart_type',
			[
				'label'   => __( 'Type', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'default' => 'default',
				'options' => [
					'default' => __( 'Default', 'header-footer-elementor' ),
					'custom'  => __( 'Custom', 'header-footer-elementor' ),
				],
			]
		);

		$this->add_control(
			'icon',
			[
				'label'        => __( 'Icon', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SELECT,
				'options'      => [
					'bag-light'  => __( 'Bag Light', 'header-footer-elementor' ),
					'bag-medium' => __( 'Bag Medium', 'header-footer-elementor' ),
					'bag-solid'  => __( 'Bag Solid', 'header-footer-elementor' ),
				],
				'default'      => 'bag-light',
				'prefix_class' => 'toggle-icon--',
				'condition'    => [
					'hfe_cart_type' => 'custom',
				],
			]
		);

		$this->add_control(
			'items_indicator',
			[
				'label'        => __( 'Items Count', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SELECT,
				'options'      => [
					'none'   => __( 'None', 'header-footer-elementor' ),
					'bubble' => __( 'Bubble', 'header-footer-elementor' ),
				],
				'prefix_class' => 'hfe-menu-cart--items-indicator-',
				'default'      => 'bubble',
				'condition'    => [
					'hfe_cart_type' => 'custom',
				],
			]
		);

		$this->add_control(
			'show_subtotal',
			[
				'label'        => __( 'Show Total Price', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
				'prefix_class' => 'hfe-menu-cart--show-subtotal-',
				'condition'    => [
					'hfe_cart_type' => 'custom',
				],
			]
		);

		$this->add_control(
			'hide_empty_indicator',
			[
				'label'        => __( 'Hide Empty', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'hide',
				'prefix_class' => 'hfe-menu-cart--empty-indicator-',
				'description'  => __( 'This will hide the items count until the cart is empty', 'header-footer-elementor' ),
				'condition'    => [
					'items_indicator!' => 'none',
					'hfe_cart_type'    => 'custom',
				],
			]
		);

		$this->add_responsive_control(
			'align',
			[
				'label'              => __( 'Alignment', 'header-footer-elementor' ),
				'type'               => Controls_Manager::CHOOSE,
				'options'            => [
					'left'   => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-center',
					],
					'right'  => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-right',
					],
				],
				'frontend_available' => true,
				'prefix_class'       => 'elementor%s-align-',
				'default'            => '',
			]
		);

		$this->end_controls_section();
	}


	/**
	 * Register Menu Cart Typography Controls.
	 *
	 * @since 1.4.0
	 * @access protected
	 * @return void
	 */
	protected function register_cart_typo_content_controls() {
		$this->start_controls_section(
			'section_heading_typography',
			[
				'label' => __( 'Menu Cart', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'      => 'toggle_button_typography',
				'global'    => [
					'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
				],
				'selector'  => '{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button',
				'condition' => [
					'hfe_cart_type' => 'custom',
				],
			]
		);
		$this->add_control(
			'icon_size',
			[
				'label'     => __( 'Size', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'min' => 15,
						'max' => 30,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-masthead-custom-menu-items .hfe-site-header-cart .hfe-site-header-cart-li ' => 'font-size: {{SIZE}}{{UNIT}};',
				],
				'condition' => [
					'hfe_cart_type' => 'default',
				],
			]
		);
		$this->add_control(
			'toggle_button_border_width',
			[
				'label'      => __( 'Border Width', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px' ],
				'default'    => [
					'top'    => '1',
					'bottom' => '1',
					'left'   => '1',
					'right'  => '1',
					'unit'   => 'px',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button,{{WRAPPER}} .hfe-cart-menu-wrap-default .hfe-cart-count:after, {{WRAPPER}} .hfe-cart-menu-wrap-default .hfe-cart-count' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'toggle_button_border_radius',
			[
				'label'      => __( 'Border Radius', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'default'    => [
					'top'    => '',
					'bottom' => '',
					'left'   => '',
					'right'  => '',
					'unit'   => 'px',
				],
				'size_units' => [ 'px', 'em', '%' ],
				'selectors'  => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button,{{WRAPPER}} .hfe-cart-menu-wrap-default .hfe-cart-count:after, {{WRAPPER}} .hfe-cart-menu-wrap-default .hfe-cart-count' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],

			]
		);

		$this->add_responsive_control(
			'toggle_button_padding',
			[
				'label'              => __( 'Padding', 'header-footer-elementor' ),
				'type'               => Controls_Manager::DIMENSIONS,
				'size_units'         => [ 'px', 'em' ],
				'selectors'          => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}',
				],
				'condition'          => [
					'hfe_cart_type' => 'custom',
				],
				'frontend_available' => true,
			]
		);

		$this->start_controls_tabs( 'toggle_button_colors' );

		$this->start_controls_tab(
			'toggle_button_normal_colors',
			[
				'label' => __( 'Normal', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'toggle_button_text_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button,{{WRAPPER}} .hfe-cart-menu-wrap-default span.hfe-cart-count' => 'color: {{VALUE}}',
				],
			]
		);

		$this->add_control(
			'toggle_button_icon_color',
			[
				'label'     => __( 'Icon Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button-icon' => 'color: {{VALUE}}',
				],
				'condition' => [
					'hfe_cart_type' => 'custom',
				],
			]
		);

		$this->add_control(
			'toggle_button_background_color',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button,{{WRAPPER}} .hfe-cart-menu-wrap-default span.hfe-cart-count' => 'background-color: {{VALUE}}',
				],
			]
		);

		$this->add_control(
			'toggle_button_border_color',
			[
				'label'     => __( 'Border Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button,{{WRAPPER}} .hfe-cart-menu-wrap-default .hfe-cart-count:after, {{WRAPPER}} .hfe-masthead-custom-menu-items .hfe-cart-menu-wrap-default .hfe-cart-count' => 'border-color: {{VALUE}}',
				],
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'toggle_button_hover_colors',
			[
				'label' => __( 'Hover', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'toggle_button_hover_text_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button:hover,{{WRAPPER}} .hfe-cart-menu-wrap-default span.hfe-cart-count:hover' => 'color: {{VALUE}}',
				],
			]
		);

		$this->add_control(
			'toggle_button_hover_icon_color',
			[
				'label'     => __( 'Icon Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button:hover .elementor-button-icon' => 'color: {{VALUE}}',
				],
				'condition' => [
					'hfe_cart_type' => 'custom',
				],
			]
		);

		$this->add_control(
			'toggle_button_hover_background_color',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button:hover,{{WRAPPER}} .hfe-cart-menu-wrap-default span.hfe-cart-count:hover' => 'background-color: {{VALUE}}',
				],
			]
		);

		$this->add_control(
			'toggle_button_hover_border_color',
			[
				'label'     => __( 'Border Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button:hover,{{WRAPPER}} .hfe-cart-menu-wrap-default:hover .hfe-cart-count:after, {{WRAPPER}} .hfe-cart-menu-wrap-default:hover .hfe-cart-count' => 'border-color: {{VALUE}}',
				],
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();
		$this->add_control(
			'toggle_icon_size',
			[
				'label'      => __( 'Icon Size', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'range'      => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'size_units' => [ 'px', 'em' ],
				'selectors'  => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button-icon' => 'font-size: {{SIZE}}{{UNIT}}',
				],
				'condition'  => [
					'hfe_cart_type' => 'custom',
				],
				'separator'  => 'before',
			]
		);

		$this->add_control(
			'toggle_icon_spacing',
			[
				'label'      => __( 'Icon Spacing', 'header-footer-elementor' ),
				'type'       => Controls_Manager::SLIDER,
				'range'      => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'size-units' => [ 'px', 'em' ],
				'selectors'  => [
					'body:not(.rtl) {{WRAPPER}} .hfe-menu-cart__toggle .elementor-button-text' => 'margin-right: {{SIZE}}{{UNIT}}',
					'body.rtl {{WRAPPER}} .hfe-menu-cart__toggle .elementor-button-text' => 'margin-left: {{SIZE}}{{UNIT}}',
				],
				'condition'  => [
					'hfe_cart_type' => 'custom',
				],
			]
		);

		$this->end_controls_section();

		$this->start_controls_section(
			'section_icon',
			[
				'label'     => __( 'Items Count', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'icon[value]!'     => '',
					'items_indicator!' => 'none',
					'hfe_cart_type'    => 'custom',
				],
			]
		);

		$this->add_control(
			'items_indicator_distance',
			[
				'label'     => __( 'Distance', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'default'   => [
					'unit' => 'em',
				],
				'range'     => [
					'em' => [
						'min'  => 0,
						'max'  => 4,
						'step' => 0.1,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before' => 'right: -{{SIZE}}{{UNIT}}; top: -{{SIZE}}{{UNIT}}',
				],
				'condition' => [
					'items_indicator' => 'bubble',
				],
			]
		);

		$this->start_controls_tabs( 'count_colors' );

		$this->start_controls_tab(
			'count_normal_colors',
			[
				'label' => __( 'Normal', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'items_indicator_text_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before' => 'color: {{VALUE}}',
				],
				'condition' => [
					'items_indicator!' => 'none',
				],
			]
		);

		$this->add_control(
			'items_indicator_background_color',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before' => 'background-color: {{VALUE}}',
				],
				'condition' => [
					'items_indicator' => 'bubble',
				],
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'count_hover_colors',
			[
				'label' => __( 'Hover', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'items_indicator_text_hover_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle:hover .elementor-button-icon[data-counter]:before' => 'color: {{VALUE}}',
				],
				'condition' => [
					'items_indicator!' => 'none',
				],
			]
		);

		$this->add_control(
			'items_indicator_background_hover_color',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-menu-cart__toggle:hover .elementor-button-icon[data-counter]:before' => 'background-color: {{VALUE}}',
				],
				'condition' => [
					'items_indicator' => 'bubble',
				],
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();
	}

	/**
	 * Render Menu Cart output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.4.0
	 * @access protected
	 * @return void
	 */
	protected function render() {

		if ( null === \WC()->cart ) {
			return;
		}

		$settings  = $this->get_settings_for_display();
		$cart_type = $settings['hfe_cart_type'];

		?>

		<div class="hfe-masthead-custom-menu-items woocommerce-custom-menu-item">
			<div id="hfe-site-header-cart" class="hfe-site-header-cart hfe-menu-cart-with-border">
				<div class="hfe-site-header-cart-li current-menu-item">
				<?php
				if ( 'default' === $cart_type ) {
					?>

					<a class="hfe-cart-container" href="<?php echo esc_url( wc_get_cart_url() ); ?>" title="View your shopping cart">
						<div class="hfe-cart-menu-wrap-default">
							<?php if ( null !== WC()->cart ) { ?>
								<span class="hfe-cart-count">
									<?php echo esc_html( WC()->cart->get_cart_contents_count() ); ?>
								</span>
							<?php } ?>
						</div>
					</a>
					<?php
				} else {
					?>
					<div class="hfe-menu-cart__toggle hfe-button-wrapper elementor-widget-button">
						<a id="hfe-menu-cart__toggle_button" href="<?php echo esc_url( wc_get_cart_url() ); ?>" class="elementor-button hfe-cart-container" aria-label="<?php esc_attr_e( 'Cart', 'header-footer-elementor' ); ?>">
							<?php if ( null !== WC()->cart ) { ?>
								<span class="elementor-button-text hfe-subtotal">
									<?php echo wp_kses_post( WC()->cart->get_cart_subtotal() ); ?>
								</span>
							<?php } ?>
							<span class="elementor-button-icon" data-counter="<?php echo ( null !== WC()->cart ) ? esc_attr( WC()->cart->get_cart_contents_count() ) : ''; ?>">
								<i class="eicon" aria-hidden="true"></i>
							</span>
						</a>	
					</div>
				<?php } ?>            
				</div>
			</div>
		</div> 
		<?php
	}

	/**
	 * Render Menu Cart output in the editor.
	 *
	 * Written as a Backbone JavaScript template and used to generate the live preview.
	 *
	 * @since 1.4.0
	 * @access protected
	 * @return void
	 */
	protected function content_template() {
	}
}
PK���\��	��+inc/widgets-manager/widgets/cart/module.phpnu�[���<?php
/**
 * HFEWpfStyler Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\Cart;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return class_exists( 'woocommerce' );
	}

	/**
	 * Get Module Name.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'hfe-cart';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Cart',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\�P�b?_?_7inc/widgets-manager/widgets/basic-posts/basic-posts.phpnu�[���<?php
/**
 * Basic Posts Widget for Header Footer Elementor.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\BasicPosts;

use Elementor\Controls_Manager;
use Elementor\Group_Control_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Box_Shadow;
use Elementor\Group_Control_Background;
use Elementor\Utils;

use HFE\WidgetsManager\Base\Common_Widget;
use HFE\WidgetsManager\Widgets_Loader;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * HFE Basic Posts widget
 *
 * Fast and lightweight posts widget with basic card layout
 *
 * @since 2.5.0
 */
class Basic_Posts extends Common_Widget {

	/**
	 * Query object
	 *
	 * @var \WP_Query
	 */
	protected $query = null;

	/**
	 * Retrieve the widget name.
	 *
	 * @since 2.5.0
	 * @access public
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Basic_Posts' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 2.5.0
	 * @access public
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Basic_Posts' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 2.5.0
	 * @access public
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return 'hfe-icon-posts';
	}

	/**
	 * Retrieve the list of keywords the widget belongs to.
	 *
	 * @since 2.6.0
	 * @access public
	 * @return array Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Basic_Posts' );
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * @since 2.5.0
	 * @return bool True for dynamic content.
	 */
	protected function is_dynamic_content(): bool {
		return true;
	}

	/**
	 * Get widget upsale data.
	 *
	 * Retrieve the widget promotion data.
	 *
	 * @since 2.5.0
	 * @access protected
	 *
	 * @return array Widget promotion data.
	 */
	protected function get_upsale_data() {
		return [
			'condition' => ! defined( 'UAEL_VER' ),
			'image' => esc_url( HFE_URL . 'assets/images/upgrade-pro.png' ),
			'image_alt' => esc_attr__( 'Upgrade', 'header-footer-elementor' ),
			'title' => esc_html__( 'Upgrade your Basic Posts Widget', 'header-footer-elementor' ),
			'description' => esc_html__( 'Get the Advanced Posts widget and unlock powerful layouts, filters, and customization options with UAE Pro.', 'header-footer-elementor' ),
			'upgrade_url' => esc_url( 'https://ultimateelementor.com/pricing/?utm_source=UAE-Basic-Post&utm_medium=editor&utm_campaign=static-promotion' ),
			'upgrade_text' => esc_html__( 'Upgrade Now', 'header-footer-elementor' ),
		];
	}

	/**
	 * Register widget controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_controls(): void {
		$this->register_general_controls();
		$this->register_query_controls();
		$this->register_image_controls();
		$this->register_content_controls();
		$this->register_meta_controls();
		$this->register_excerpt_controls();
		$this->register_read_more_controls();
		
		// Style Controls
		$this->register_layout_style_controls();
		$this->register_card_style_controls();
		$this->register_title_style_controls();
		$this->register_meta_style_controls();
		$this->register_excerpt_style_controls();
		$this->register_read_more_style_controls();
	}

	/**
	 * Register Query Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_query_controls() {
		$this->start_controls_section(
			'section_query',
			[
				'label' => __( 'Query', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_CONTENT,
			]
		);

		$this->add_control(
			'orderby',
			[
				'label'   => __( 'Order By', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'default' => 'date',
				'options' => [
					'date'          => __( 'Date', 'header-footer-elementor' ),
					'title'         => __( 'Title', 'header-footer-elementor' ),
					'menu_order'    => __( 'Menu Order', 'header-footer-elementor' ),
					'rand'          => __( 'Random', 'header-footer-elementor' ),
					'comment_count' => __( 'Comment Count', 'header-footer-elementor' ),
				],
			]
		);

		$this->add_control(
			'order',
			[
				'label'   => __( 'Order', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'default' => 'desc',
				'options' => [
					'asc'  => __( 'ASC', 'header-footer-elementor' ),
					'desc' => __( 'DESC', 'header-footer-elementor' ),
				],
			]
		);

		$this->add_control(
			'exclude_current',
			[
				'label'        => __( 'Exclude Current Post', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => '',
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register General Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_general_controls() {
		$this->start_controls_section(
			'section_general',
			[
				'label' => __( 'General', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_CONTENT,
			]
		);

		$this->add_control(
			'posts_per_page',
			[
				'label'   => __( 'Posts Per Page', 'header-footer-elementor' ),
				'type'    => Controls_Manager::NUMBER,
				'default' => 6,
				'min'     => 1,
				'max'     => 100,
			]
		);

		$this->add_responsive_control(
			'columns',
			[
				'label'              => __( 'Columns', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SELECT,
				'default'            => '3',
				'tablet_default'     => '2',
				'mobile_default'     => '1',
				'options'            => [
					'1' => '1',
					'2' => '2',
					'3' => '3',
					'4' => '4',
					'5' => '5',
					'6' => '6',
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-posts-grid' => 'grid-template-columns: repeat({{VALUE}}, 1fr);',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Image Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_image_controls() {
		$this->start_controls_section(
			'section_image',
			[
				'label' => __( 'Featured Image', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_CONTENT,
			]
		);

		$this->add_control(
			'show_image',
			[
				'label'        => __( 'Show Featured Image', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
			]
		);

		$this->add_control(
			'image_size',
			[
				'label'     => __( 'Image Size', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'medium',
				'options'   => $this->get_image_sizes(),
				'condition' => [
					'show_image' => 'yes',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Content Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_content_controls() {
		$this->start_controls_section(
			'section_content',
			[
				'label' => __( 'Title', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_CONTENT,
			]
		);

		$this->add_control(
			'show_title',
			[
				'label'        => __( 'Show Title', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
			]
		);

		$this->add_control(
			'title_tag',
			[
				'label'     => __( 'Title HTML Tag', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'h3',
				'options'   => [
					'h1' => 'H1',
					'h2' => 'H2',
					'h3' => 'H3',
					'h4' => 'H4',
					'h5' => 'H5',
					'h6' => 'H6',
				],
				'condition' => [
					'show_title' => 'yes',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Meta Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_meta_controls() {
		$this->start_controls_section(
			'section_meta',
			[
				'label' => __( 'Meta', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_CONTENT,
			]
		);

		$this->add_control(
			'show_meta',
			[
				'label'        => __( 'Show Meta Data', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
			]
		);

		$this->add_control(
			'show_date',
			[
				'label'        => __( 'Show Date', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
				'condition'    => [
					'show_meta' => 'yes',
				],
			]
		);

		$this->add_control(
			'show_author',
			[
				'label'        => __( 'Show Author', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
				'condition'    => [
					'show_meta' => 'yes',
				],
			]
		);

		$this->add_control(
			'show_comments',
			[
				'label'        => __( 'Show Comments Count', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'no',
				'condition'    => [
					'show_meta' => 'yes',
				],
			]
		);

		$this->add_control(
			'meta_separator',
			[
				'label'     => __( 'Meta Separator', 'header-footer-elementor' ),
				'type'      => Controls_Manager::TEXT,
				'default'   => ' | ',
				'condition' => [
					'show_meta' => 'yes',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Excerpt Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_excerpt_controls() {
		$this->start_controls_section(
			'section_excerpt',
			[
				'label' => __( 'Excerpt', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_CONTENT,
			]
		);

		$this->add_control(
			'show_excerpt',
			[
				'label'        => __( 'Show Excerpt', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
			]
		);

		$this->add_control(
			'excerpt_length',
			[
				'label'     => __( 'Excerpt Length', 'header-footer-elementor' ),
				'type'      => Controls_Manager::NUMBER,
				'default'   => 20,
				'min'       => 0,
				'max'       => 100,
				'condition' => [
					'show_excerpt' => 'yes',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Read More Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_read_more_controls() {
		$this->start_controls_section(
			'section_read_more',
			[
				'label' => __( 'Call to Action', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_CONTENT,
			]
		);

		$this->add_control(
			'show_read_more',
			[
				'label'        => __( 'Show Read More', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'Yes', 'header-footer-elementor' ),
				'label_off'    => __( 'No', 'header-footer-elementor' ),
				'return_value' => 'yes',
				'default'      => 'yes',
			]
		);

		$this->add_control(
			'read_more_text',
			[
				'label'     => __( 'Read More Text', 'header-footer-elementor' ),
				'type'      => Controls_Manager::TEXT,
				'default'   => __( 'Read More →', 'header-footer-elementor' ),
				'condition' => [
					'show_read_more' => 'yes',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Layout Style Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_layout_style_controls() {
		$this->start_controls_section(
			'section_layout_style',
			[
				'label' => __( 'Layout', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'column_gap',
			[
				'label'     => __( 'Column Gap', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'default'   => [
					'size' => 20,
				],
				'range'     => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-posts-grid' => 'column-gap: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_responsive_control(
			'row_gap',
			[
				'label'     => __( 'Row Gap', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'default'   => [
					'size' => 30,
				],
				'range'     => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-posts-grid' => 'row-gap: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Card Style Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_card_style_controls() {
		$this->start_controls_section(
			'section_card_style',
			[
				'label' => __( 'Card', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_group_control(
			Group_Control_Background::get_type(),
			[
				'name'     => 'card_background',
				'label'    => __( 'Background', 'header-footer-elementor' ),
				'types'    => [ 'classic', 'gradient' ],
				'selector' => '{{WRAPPER}} .hfe-post-card',
				'fields_options' => [
					'background' => [
						'default' => 'classic',
					],
					'color' => [
						'default' => '#F6F6F6',
					],
				],
			]
		);

		$this->add_group_control(
			Group_Control_Border::get_type(),
			[
				'name'     => 'card_border',
				'label'    => __( 'Border', 'header-footer-elementor' ),
				'selector' => '{{WRAPPER}} .hfe-post-card',
			]
		);

		$this->add_responsive_control(
			'card_border_radius',
			[
				'label'      => __( 'Border Radius', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'selectors'  => [
					'{{WRAPPER}} .hfe-post-card' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
					'{{WRAPPER}} .hfe-post-image img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} 0{{UNIT}} 0{{UNIT}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name'     => 'card_box_shadow',
				'label'    => __( 'Box Shadow', 'header-footer-elementor' ),
				'selector' => '{{WRAPPER}} .hfe-post-card',
			]
		);

		$this->add_responsive_control(
			'card_padding',
			[
				'label'      => __( 'Padding', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', 'em', '%' ],
				'default'    => [
					'top'      => '20',
					'right'    => '20',
					'bottom'   => '20',
					'left'     => '20',
					'unit'     => 'px',
					'isLinked' => true,
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-post-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Title Style Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_title_style_controls() {
		$this->start_controls_section(
			'section_title_style',
			[
				'label'     => __( 'Title', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'show_title' => 'yes',
				],
			]
		);

		$this->add_control(
			'title_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_PRIMARY,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-post-title a' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'title_hover_color',
			[
				'label'     => __( 'Hover Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-post-title a:hover' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'title_typography',
				'label'    => __( 'Typography', 'header-footer-elementor' ),
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
				],
				'selector' => '{{WRAPPER}} .hfe-post-title',
			]
		);

		$this->add_responsive_control(
			'title_spacing',
			[
				'label'     => __( 'Bottom Spacing', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'default'   => [
					'size' => 5,
					'unit' => 'px',
				],
				'range'     => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-post-title' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Meta Style Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_meta_style_controls() {
		$this->start_controls_section(
			'section_meta_style',
			[
				'label'     => __( 'Meta', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'show_meta' => 'yes',
				],
			]
		);

		$this->add_control(
			'meta_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				// 'default'   => '#ADADAD',
				'global'    => [
					'default' => Global_Colors::COLOR_TEXT,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-post-meta' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'meta_typography',
				'label'    => __( 'Typography', 'header-footer-elementor' ),
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_SECONDARY,
				],
				'selector' => '{{WRAPPER}} .hfe-post-meta',
			]
		);

		$this->add_responsive_control(
			'meta_spacing',
			[
				'label'     => __( 'Bottom Spacing', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'default'   => [
					'size' => 15,
					'unit' => 'px',
				],
				'range'     => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-post-meta' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Excerpt Style Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_excerpt_style_controls() {
		$this->start_controls_section(
			'section_excerpt_style',
			[
				'label'     => __( 'Excerpt', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'show_excerpt' => 'yes',
				],
			]
		);

		$this->add_control(
			'excerpt_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_TEXT,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-post-excerpt' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'excerpt_typography',
				'label'    => __( 'Typography', 'header-footer-elementor' ),
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_TEXT,
				],
				'selector' => '{{WRAPPER}} .hfe-post-excerpt',
			]
		);

		$this->add_responsive_control(
			'excerpt_spacing',
			[
				'label'     => __( 'Bottom Spacing', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'default'   => [
					'size' => 15,
					'unit' => 'px',
				],
				'range'     => [
					'px' => [
						'min' => 0,
						'max' => 50,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-post-excerpt' => 'margin-bottom: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Read More Style Controls.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function register_read_more_style_controls() {
		$this->start_controls_section(
			'section_read_more_style',
			[
				'label'     => __( 'Call to Action', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'show_read_more' => 'yes',
				],
			]
		);

		$this->add_control(
			'read_more_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_ACCENT,
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-read-more' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'read_more_hover_color',
			[
				'label'     => __( 'Hover Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-read-more:hover' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'read_more_typography',
				'label'    => __( 'Typography', 'header-footer-elementor' ),
				'selector' => '{{WRAPPER}} .hfe-read-more',
			]
		);

		$this->end_controls_section();
	}


	/**
	 * Get available image sizes.
	 *
	 * @since 2.5.0
	 * @access protected
	 * @return array
	 */
	protected function get_image_sizes() {
		$image_sizes = get_intermediate_image_sizes();
		$options     = [];

		$options['full'] = __( 'Full', 'header-footer-elementor' );

		foreach ( $image_sizes as $size ) {
			$options[ $size ] = ucwords( str_replace( '_', ' ', $size ) );
		}

		return $options;
	}



	/**
	 * Query posts.
	 *
	 * @since 2.5.0
	 * @access protected
	 */
	protected function query_posts() {
		$settings = $this->get_settings_for_display();

		// Sanitize inputs.
		$posts_per_page = absint( $settings['posts_per_page'] ?? 6 );
		$orderby = sanitize_key( $settings['orderby'] ?? 'date' );
		$order = sanitize_key( $settings['order'] ?? 'desc' );

		// Ensure posts_per_page is within bounds
		$posts_per_page = max( 1, min( 100, $posts_per_page ) );

		// Validate orderby against allowed values
		$allowed_orderby = [ 'date', 'title', 'menu_order', 'rand', 'comment_count' ];
		if ( ! in_array( $orderby, $allowed_orderby, true ) ) {
			$orderby = 'date';
		}

		// Validate order
		$order = strtoupper( $order );
		if ( ! in_array( $order, [ 'ASC', 'DESC' ], true ) ) {
			$order = 'DESC';
		}

		$args = [
			'post_type'      => 'post',
			'posts_per_page' => $posts_per_page,
			'orderby'        => $orderby,
			'order'          => $order,
			'post_status'    => 'publish',
		];

		// Exclude current post if enabled
		if ( 'yes' === $settings['exclude_current'] && is_singular() ) {
			$current_id = get_the_ID();
			if ( $current_id ) {
				$args['post__not_in'] = [ absint( $current_id ) ];
			}
		}

		$this->query = new \WP_Query( $args );
	}
	
	/**
	 * Render template HTML using ob_start
	 *
	 * @param array $settings Widget settings.
	 * @return string Rendered HTML.
	 */
	protected function render_template( $settings ) {
		ob_start();
		include __DIR__ . '/template.php';
		return ob_get_clean();
	}

	/**
	 * Render Basic Posts widget output on the frontend.
	 *
	 * @since 2.4.0
	 * @access protected
	 */
	protected function render() {

		$settings = $this->get_settings_for_display();

		$this->query_posts();

		if ( ! $this->query->have_posts() ) {
			echo '<p>' . esc_html__( 'No posts found.', 'header-footer-elementor' ) . '</p>';
			return;
		}

		echo $this->render_template( $settings );
	}
}
PK���\�rm&&4inc/widgets-manager/widgets/basic-posts/template.phpnu�[���<?php
/**
 * Basic Posts Widget Template
 *
 * @package header-footer-elementor
 */

use HFE\WidgetsManager\Widgets_Loader;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

// Security check - ensure we have a valid query object
if ( ! isset( $this->query ) || ! $this->query instanceof WP_Query ) {
	return;
}

// Sanitize title tag using the standard validation method
$title_tag = Widgets_Loader::validate_html_tag( $settings['title_tag'] ?? 'h3' );
?>

<div class="hfe-posts-grid">
	<?php
	while ( $this->query->have_posts() ) :
		$this->query->the_post();
		
		?>
		<article class="hfe-post-card">
			<?php if ( 'yes' === $settings['show_image'] && has_post_thumbnail() ) : ?>
				<div class="hfe-post-image">
					<a href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark">
						<?php 
						// Sanitize image size
						$image_size = sanitize_key( $settings['image_size'] ?? 'medium' );
						the_post_thumbnail( $image_size, [
							'alt' => esc_attr( get_the_title() ),
							'loading' => 'lazy'
						] ); 
						?>
					</a>
				</div>
			<?php endif; ?>

			<div class="hfe-post-content">
				<?php if ( 'yes' === $settings['show_title'] ) : ?>
					<<?php echo esc_attr( $title_tag ); ?> class="hfe-post-title">
						<a href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark">
							<?php echo esc_html( get_the_title() ); ?>
						</a>
					</<?php echo esc_attr( $title_tag ); ?>>
				<?php endif; ?>

				<?php if ( 'yes' === $settings['show_meta'] ) : ?>
					<div class="hfe-post-meta">
						<?php
						$meta_items = [];
						
						// Add date if enabled
						if ( 'yes' === $settings['show_date'] ) {
							$meta_items[] = '<span class="hfe-post-date">' . esc_html( get_the_date() ) . '</span>';
						}
						
						// Add author if enabled
						if ( 'yes' === $settings['show_author'] ) {
							$author_name = get_the_author();
							if ( $author_name ) {
								$meta_items[] = '<span class="hfe-post-author">' . esc_html__( 'by', 'header-footer-elementor' ) . ' ' . esc_html( $author_name ) . '</span>';
							}
						}
						
						// Add comments count if enabled
						if ( 'yes' === $settings['show_comments'] ) {
							$comments_count = get_comments_number();
							if ( $comments_count == 0 ) {
								$comments_text = __( 'No Comments', 'header-footer-elementor' );
							} elseif ( $comments_count == 1 ) {
								$comments_text = __( '1 Comment', 'header-footer-elementor' );
							} else {
								$comments_text = sprintf( __( '%s Comments', 'header-footer-elementor' ), number_format_i18n( $comments_count ) );
							}
							$meta_items[] = '<span class="hfe-post-comments">' . esc_html( $comments_text ) . '</span>';
						}
						
						// Output meta items with separator
						if ( ! empty( $meta_items ) ) {
							$separator = wp_kses_post( $settings['meta_separator'] ?? ' | ' );
							echo implode( '<span class="hfe-meta-separator">' . $separator . '</span>', $meta_items );
						}
						?>
					</div>
				<?php endif; ?>

				<?php if ( 'yes' === $settings['show_excerpt'] ) : ?>
					<div class="hfe-post-excerpt">
						<?php 
						$excerpt_length = absint( $settings['excerpt_length'] ?? 20 );
						$excerpt_length = max( 0, min( 100, $excerpt_length ) ); // Ensure within bounds
						echo wp_kses_post( wp_trim_words( get_the_excerpt(), $excerpt_length, '...' ) ); 
						?>
					</div>
				<?php endif; ?>

				<?php if ( 'yes' === $settings['show_read_more'] ) : ?>
					<a href="<?php echo esc_url( get_permalink() ); ?>" class="hfe-read-more" rel="bookmark">
						<?php 
						$read_more_text = sanitize_text_field( $settings['read_more_text'] ?? __( 'Read More →', 'header-footer-elementor' ) );
						echo esc_html( $read_more_text ); 
						?>
					</a>
				<?php endif; ?>
			</div>
		</article>
		<?php
	endwhile;
	wp_reset_postdata();
	?>
</div>
PK���\$�@։�2inc/widgets-manager/widgets/basic-posts/module.phpnu�[���<?php
/**
 * HFE Basic Posts Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\BasicPosts;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 2.5.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 2.5.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'hfe-basic-posts';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 2.5.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Basic_Posts',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() {
		parent::__construct();
	}
}
PK���\����0inc/widgets-manager/widgets/site-logo/module.phpnu�[���<?php
/**
 * HFEWpfStyler Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\SiteLogo;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'site-logo';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Site_Logo',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\x���\�\3inc/widgets-manager/widgets/site-logo/site-logo.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\SiteLogo;

use Elementor\Controls_Manager;
use Elementor\Control_Media;
use Elementor\Utils;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Typography;
use Elementor\Group_Control_Box_Shadow;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
use Elementor\Group_Control_Image_Size;
use Elementor\Repeater;
use Elementor\Group_Control_Css_Filter;
use Elementor\Group_Control_Text_Shadow;
use Elementor\Plugin;

use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * HFE Site Logo widget
 *
 * HFE widget for Site Logo.
 *
 * @since 1.3.0
 */
class Site_Logo extends Common_Widget {

	/**
	 * Retrieve the widget name.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Site_Logo' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Site_Logo' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Site_Logo' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Site_Logo' );
	}

	/**
	 * Retrieve the list of categories the widget belongs to.
	 *
	 * Used to determine where to display the widget in the editor.
	 *
	 * Note that currently Elementor supports only one category.
	 * When multiple categories passed, Elementor uses the first one.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return array Widget categories.
	 */
	public function get_categories() {
		return [ 'hfe-widgets' ];
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * This method returns true if the widget's output is dynamic and should not be cached,
	 * or false if the content is static and can be cached.
	 *
	 * @since 1.6.41
	 * @return bool True for dynamic content, false for static content.
	 */
	protected function is_dynamic_content(): bool { // phpcs:ignore
		return false;
	}

	/**
	 * Register Site Logo controls.
	 *
	 * @since 1.5.7
	 * @access protected
	 * @return void
	 */
	protected function register_controls() {
		$this->register_content_site_logo_controls();
		$this->register_site_logo_styling_controls();
		$this->register_site_logo_caption_styling_controls();
		$this->register_pro_promotion_controls();
	}

	/**
	 * Register Site Logo General Controls.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function register_content_site_logo_controls() {
		$this->start_controls_section(
			'section_site_image',
			[
				'label' => __( 'Site Logo', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'site_logo_fallback',
			[
				'label'       => __( 'Custom Image', 'header-footer-elementor' ),
				'type'        => Controls_Manager::SWITCHER,
				'yes'         => __( 'Yes', 'header-footer-elementor' ),
				'no'          => __( 'No', 'header-footer-elementor' ),
				'default'     => 'no',
				'render_type' => 'template',
			]
		);

		$this->add_control(
			'custom_image',
			[
				'label'     => __( 'Add Image', 'header-footer-elementor' ),
				'type'      => Controls_Manager::MEDIA,
				'dynamic'   => [
					'active' => true,
				],
				'default'   => [
					'url' => Utils::get_placeholder_image_src(),
				],
				'condition' => [
					'site_logo_fallback' => 'yes',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Image_Size::get_type(),
			[
				'name'    => 'site_logo_size',
				'label'   => __( 'Image Size', 'header-footer-elementor' ),
				'default' => 'medium',
			]
		);
		$this->add_responsive_control(
			'align',
			[
				'label'              => __( 'Alignment', 'header-footer-elementor' ),
				'type'               => Controls_Manager::CHOOSE,
				'options'            => [
					'left'   => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-center',
					],
					'right'  => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-right',
					],
				],
				'default'            => 'center',
				'selectors'          => [
					'{{WRAPPER}} .hfe-site-logo-container, {{WRAPPER}} .hfe-caption-width figcaption' => 'text-align: {{VALUE}};',
				],
				'frontend_available' => true,
			]
		);

		$this->add_control(
			'caption_source',
			[
				'label'   => __( 'Caption', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'options' => [
					'no'  => __( 'No', 'header-footer-elementor' ),
					'yes' => __( 'Yes', 'header-footer-elementor' ),
				],
				'default' => 'no',
			]
		);

		$this->add_control(
			'caption',
			[
				'label'       => __( 'Custom Caption', 'header-footer-elementor' ),
				'type'        => Controls_Manager::TEXT,
				'default'     => '',
				'placeholder' => __( 'Enter caption', 'header-footer-elementor' ),
				'condition'   => [
					'caption_source' => 'yes',
				],
				'dynamic'     => [
					'active' => true,
				],
				'label_block' => true,
			]
		);

		$this->add_control(
			'link_to',
			[
				'label'   => __( 'Link', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'default' => 'default',
				'options' => [
					'default' => __( 'Default', 'header-footer-elementor' ),
					'none'    => __( 'None', 'header-footer-elementor' ),
					'file'    => __( 'Media File', 'header-footer-elementor' ),
					'custom'  => __( 'Custom URL', 'header-footer-elementor' ),
				],
			]
		);

		$this->add_control(
			'link',
			[
				'label'       => __( 'Link', 'header-footer-elementor' ),
				'type'        => Controls_Manager::URL,
				'dynamic'     => [
					'active' => true,
				],
				'placeholder' => __( 'https://your-link.com', 'header-footer-elementor' ),
				'condition'   => [
					'link_to' => 'custom',
				],
				'show_label'  => false,
			]
		);

		$this->add_control(
			'open_lightbox',
			[
				'label'     => __( 'Lightbox', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SELECT,
				'default'   => 'default',
				'options'   => [
					'default' => __( 'Default', 'header-footer-elementor' ),
					'yes'     => __( 'Yes', 'header-footer-elementor' ),
					'no'      => __( 'No', 'header-footer-elementor' ),
				],
				'condition' => [
					'link_to' => 'file',
				],
			]
		);

		$this->add_control(
			'view',
			[
				'label'   => __( 'View', 'header-footer-elementor' ),
				'type'    => Controls_Manager::HIDDEN,
				'default' => 'traditional',
			]
		);
		$this->end_controls_section();
	}
	/**
	 * Register Site Image Style Controls.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function register_site_logo_styling_controls() {
		$this->start_controls_section(
			'section_style_site_logo_image',
			[
				'label' => __( 'Site logo', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'width',
			[
				'label'              => __( 'Width', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'default'            => [
					'unit' => '%',
				],
				'tablet_default'     => [
					'unit' => '%',
				],
				'mobile_default'     => [
					'unit' => '%',
				],
				'size_units'         => [ '%', 'px', 'vw' ],
				'range'              => [
					'%'  => [
						'min' => 1,
						'max' => 100,
					],
					'px' => [
						'min' => 1,
						'max' => 1000,
					],
					'vw' => [
						'min' => 1,
						'max' => 100,
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-site-logo .hfe-site-logo-container img' => 'width: {{SIZE}}{{UNIT}};',
				],
				'frontend_available' => true,
			]
		);

		$this->add_responsive_control(
			'space',
			[
				'label'              => __( 'Max Width', 'header-footer-elementor' ) . ' (%)',
				'type'               => Controls_Manager::SLIDER,
				'default'            => [
					'unit' => '%',
				],
				'tablet_default'     => [
					'unit' => '%',
				],
				'mobile_default'     => [
					'unit' => '%',
				],
				'size_units'         => [ '%' ],
				'range'              => [
					'%' => [
						'min' => 1,
						'max' => 100,
					],
				],
				'selectors'          => [
					'{{WRAPPER}} .hfe-site-logo img' => 'max-width: {{SIZE}}{{UNIT}};',
				],
				'frontend_available' => true,
			]
		);

		$this->add_control(
			'separator_panel_style',
			[
				'type'  => Controls_Manager::DIVIDER,
				'style' => 'thick',
			]
		);

		$this->add_control(
			'site_logo_background_color',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .hfe-site-logo-set .hfe-site-logo-container' => 'background-color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'site_logo_image_border',
			[
				'label'       => __( 'Border Style', 'header-footer-elementor' ),
				'type'        => Controls_Manager::SELECT,
				'default'     => 'none',
				'label_block' => false,
				'options'     => [
					'none'   => __( 'None', 'header-footer-elementor' ),
					'solid'  => __( 'Solid', 'header-footer-elementor' ),
					'double' => __( 'Double', 'header-footer-elementor' ),
					'dotted' => __( 'Dotted', 'header-footer-elementor' ),
					'dashed' => __( 'Dashed', 'header-footer-elementor' ),
				],
				'selectors'   => [
					'{{WRAPPER}} .hfe-site-logo-container .hfe-site-logo-img' => 'border-style: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'site_logo_image_border_size',
			[
				'label'      => __( 'Border Width', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px' ],
				'default'    => [
					'top'    => '1',
					'bottom' => '1',
					'left'   => '1',
					'right'  => '1',
					'unit'   => 'px',
				],
				'condition'  => [
					'site_logo_image_border!' => 'none',
				],
				'selectors'  => [
					'{{WRAPPER}} .hfe-site-logo-container .hfe-site-logo-img' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'site_logo_image_border_color',
			[
				'label'     => __( 'Border Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_PRIMARY,
				],
				'condition' => [
					'site_logo_image_border!' => 'none',
				],
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .hfe-site-logo-container .hfe-site-logo-img' => 'border-color: {{VALUE}};',
				],
			]
		);

		$this->add_responsive_control(
			'image_border_radius',
			[
				'label'              => __( 'Border Radius', 'header-footer-elementor' ),
				'type'               => Controls_Manager::DIMENSIONS,
				'size_units'         => [ 'px', '%' ],
				'selectors'          => [
					'{{WRAPPER}} .hfe-site-logo img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'frontend_available' => true,
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name'     => 'image_box_shadow',
				'exclude'  => [
					'box_shadow_position',
				],
				'selector' => '{{WRAPPER}} .hfe-site-logo img',
			]
		);

		$this->start_controls_tabs( 'image_effects' );

		$this->start_controls_tab(
			'normal',
			[
				'label' => __( 'Normal', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'opacity',
			[
				'label'     => __( 'Opacity', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'max'  => 1,
						'min'  => 0.10,
						'step' => 0.01,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-site-logo img' => 'opacity: {{SIZE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Css_Filter::get_type(),
			[
				'name'     => 'css_filters',
				'selector' => '{{WRAPPER}} .hfe-site-logo img',
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'hover',
			[
				'label' => __( 'Hover', 'header-footer-elementor' ),
			]
		);
		$this->add_control(
			'opacity_hover',
			[
				'label'     => __( 'Opacity', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'max'  => 1,
						'min'  => 0.10,
						'step' => 0.01,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-site-logo:hover img' => 'opacity: {{SIZE}};',
				],
			]
		);
		$this->add_control(
			'background_hover_transition',
			[
				'label'     => __( 'Transition Duration', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'max'  => 3,
						'step' => 0.1,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-site-logo img' => 'transition-duration: {{SIZE}}s',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Css_Filter::get_type(),
			[
				'name'     => 'css_filters_hover',
				'selector' => '{{WRAPPER}} .hfe-site-logo:hover img',
			]
		);

		$this->add_control(
			'hover_animation',
			[
				'label' => __( 'Hover Animation', 'header-footer-elementor' ),
				'type'  => Controls_Manager::HOVER_ANIMATION,
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();
	}
	/**
	 * Register Site Logo style Controls.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function register_site_logo_caption_styling_controls() {
		$this->start_controls_section(
			'section_style_caption',
			[
				'label'     => __( 'Caption', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'caption_source!' => 'none',
				],
			]
		);

		$this->add_control(
			'text_color',
			[
				'label'     => __( 'Text Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .widget-image-caption' => 'color: {{VALUE}};',
				],
				'global'    => [
					'default' => Global_Colors::COLOR_TEXT,
				],
			]
		);

		$this->add_control(
			'caption_background_color',
			[
				'label'     => __( 'Background Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'selectors' => [
					'{{WRAPPER}} .widget-image-caption' => 'background-color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'     => 'caption_typography',
				'selector' => '{{WRAPPER}} .widget-image-caption',
				'global'   => [
					'default' => Global_Typography::TYPOGRAPHY_TEXT,
				],
			]
		);

		$this->add_group_control(
			Group_Control_Text_Shadow::get_type(),
			[
				'name'     => 'caption_text_shadow',
				'selector' => '{{WRAPPER}} .widget-image-caption',
			]
		);

		$this->add_responsive_control(
			'caption_padding',
			[
				'label'              => __( 'Padding', 'header-footer-elementor' ),
				'type'               => Controls_Manager::DIMENSIONS,
				'size_units'         => [ 'px', 'em', '%' ],
				'selectors'          => [
					'{{WRAPPER}} .widget-image-caption' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'frontend_available' => true,
			]
		);
		$this->add_responsive_control(
			'caption_space',
			[
				'label'              => __( 'Spacing', 'header-footer-elementor' ),
				'type'               => Controls_Manager::SLIDER,
				'range'              => [
					'px' => [
						'min' => 0,
						'max' => 100,
					],
				],
				'default'            => [
					'size' => 0,
					'unit' => 'px',
				],
				'selectors'          => [
					'{{WRAPPER}} .widget-image-caption' => 'margin-top: {{SIZE}}{{UNIT}}; margin-bottom: 0px;',
				],
				'frontend_available' => true,
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Site Logo Promotion Controls.
	 *
	 * @since 2.4.0
	 * @access protected
	 */
	protected function register_pro_promotion_controls() {

		if(! defined( 'UAEL_VER' )){
			$this->start_controls_section(
				'section_pro_features_field',
				array(
					'label' => __( 'Go Pro for More Features', 'header-footer-elementor' ),
				)
			);

			$this->add_control(
				'uae_pro_promotion_notice',
				[
					'type' => Controls_Manager::NOTICE,
					'notice_type' => 'info',
					'dismissible' => false,
					'content' => __( '<b>Build smarter and faster</b> with premium widgets, 200+ section blocks, and advanced customisation controls — all available in the <a href="https://ultimateelementor.com/pricing/?utm_source=uae-dashboard&utm_medium=editor&utm_campaign=uae-pro-promotion" target="_blank">UAE Pro</a>.', 'header-footer-elementor' ),
				]
			);


			$this->end_controls_section();
		}
	}

	/**
	 * Check if the current widget has caption
	 *
	 * @access private
	 * @since 1.3.0
	 *
	 * @param array $settings returns settings.
	 *
	 * @return boolean
	 */
	private function has_caption( $settings ) {
		return ( ! empty( $settings['caption_source'] ) && 'no' !== $settings['caption_source'] );
	}

	/**
	 * Get the caption for current widget.
	 *
	 * @access private
	 * @since 1.3.0
	 * @param array $settings returns the caption.
	 *
	 * @return string
	 */
	private function get_caption( $settings ) {
		$caption = '';
		if ( 'yes' === $settings['caption_source'] ) {
			$caption = ! empty( $settings['caption'] ) ? $settings['caption'] : '';
		}
		return $caption;
	}

	/**
	 * Render Site Image output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.3.0
	 * @param array $size returns the size of an image.
	 * @access public
	 * @return string
	 */
	public function site_image_url( $size ) {
		$settings = $this->get_settings_for_display();
		if ( ! empty( $settings['custom_image']['url'] ) ) {
			$logo = wp_get_attachment_image_src( $settings['custom_image']['id'], $size, true );
		} else {
			$logo = wp_get_attachment_image_src( get_theme_mod( 'custom_logo' ), $size, true );
		}
		return $logo[0];
	}

	/**
	 * Render Site Image output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function render() {
		$link     = '';
		$settings = $this->get_settings_for_display();

		$has_caption = $this->has_caption( $settings );

		$this->add_render_attribute( 'wrapper', 'class', 'hfe-site-logo' );

		$size = $settings['site_logo_size_size'];

		$site_image = $this->site_image_url( $size );

		if ( site_url() . '/wp-includes/images/media/default.png' === $site_image ) {
			$site_image = site_url() . '/wp-content/plugins/elementor/assets/images/placeholder.png';
		} else {
			$site_image = $site_image;
		}

		if ( 'file' === $settings['link_to'] ) {
				$link = $site_image;
				$this->add_render_attribute( 'link', 'href', $link );
		} elseif ( 'default' === $settings['link_to'] ) {
			$link = site_url();
			$this->add_render_attribute( 'link', 'href', $link );
		} else {
			$link = $this->get_link_url( $settings );

			if ( $link ) {
				$this->add_link_attributes( 'link', $link );
			}
		}
		$class = '';
		if ( Plugin::$instance->editor->is_edit_mode() ) {
			$class = 'elementor-non-clickable';
		} else {
			$class = 'elementor-clickable';
		}
		?>
		<div <?php $this->print_render_attribute_string( 'wrapper' ); ?>>
		<?php if ( $has_caption ) : ?>
				<figure class="wp-caption">
		<?php endif; ?>
		<?php if ( $link ) : ?>
					<?php
					if ( 'no' === $settings['open_lightbox'] ) {
						$class = 'elementor-non-clickable';
					}
					?>
				<a data-elementor-open-lightbox="<?php echo esc_attr( $settings['open_lightbox'] ); ?>"  class='<?php echo esc_attr( $class ); ?>' <?php $this->print_render_attribute_string( 'link' ); ?>>
		<?php endif; ?>
		<?php
		if ( empty( $site_image ) ) {
			return;
		}
		$img_animation = '';

		if ( 'custom' !== $size ) {
			$image_size = $size;
		} else {
			require_once ELEMENTOR_PATH . 'includes/libraries/bfi-thumb/bfi-thumb.php';

			$image_dimension = $settings['site_logo_size_custom_dimension'];

			$image_size = [
				// Defaults sizes.
				0           => null, // Width.
				1           => null, // Height.

				'bfi_thumb' => true,
				'crop'      => true,
			];

			$has_custom_size = false;
			if ( ! empty( $image_dimension['width'] ) ) {
				$has_custom_size = true;
				$image_size[0]   = $image_dimension['width'];
			}

			if ( ! empty( $image_dimension['height'] ) ) {
				$has_custom_size = true;
				$image_size[1]   = $image_dimension['height'];
			}

			if ( ! $has_custom_size ) {
				$image_size = 'full';
			}
		}

		$image_url = $site_image;

		if ( ! empty( $settings['custom_image']['url'] ) ) {
			$image_data = wp_get_attachment_image_src( $settings['custom_image']['id'], $image_size, true );
		} else {
			$image_data = wp_get_attachment_image_src( get_theme_mod( 'custom_logo' ), $image_size, true );
		}

		$site_image_class = 'elementor-animation-';

		if ( ! empty( $settings['hover_animation'] ) ) {
			$img_animation = $settings['hover_animation'];
		}
		if ( ! empty( $image_data ) ) {
			$image_url = $image_data[0];
		}

		if ( site_url() . '/wp-includes/images/media/default.png' === $image_url ) {
			$image_url = site_url() . '/wp-content/plugins/elementor/assets/images/placeholder.png';
		} else {
			$image_url = $image_url;
		}

		$class_animation = $site_image_class . $img_animation;

		$image_unset = site_url() . '/wp-content/plugins/elementor/assets/images/placeholder.png';

		if ( $image_unset !== $image_url ) {
			$image_url = $image_url;
		}

		?>
			<div class="hfe-site-logo-set">           
				<div class="hfe-site-logo-container">
				<?php
					$alt_text = Control_Media::get_image_alt( $settings['custom_image'] );
					$alt_text = empty( $alt_text ) ? 'default-logo' : esc_attr( $alt_text );
				?>
					<img class="hfe-site-logo-img <?php echo esc_attr( $class_animation ); ?>"  src="<?php echo esc_url( $image_url ); ?>" alt="<?php echo esc_attr( $alt_text ); ?>"/>
				</div>
			</div>
		<?php if ( $link ) : ?>
					</a>
		<?php endif; ?>
		<?php
		if ( $has_caption ) :
			$caption_text = $this->get_caption( $settings );
			?>
			<?php if ( ! empty( $caption_text ) ) : ?>
					<div class="hfe-caption-width"> 
						<figcaption class="widget-image-caption wp-caption-text"><?php echo wp_kses_post( $caption_text ); ?></figcaption>
					</div>
			<?php endif; ?>
				</figure>
		<?php endif; ?>
		</div>  
			<?php
	}

	/**
	 * Retrieve Site Logo widget link URL.
	 *
	 * @since 1.3.0
	 * @access private
	 *
	 * @param array $settings returns settings.
	 * @return array|string|false|void An array/string containing the link URL, or false if no link.
	 */
	private function get_link_url( $settings ) {
		if ( 'none' === $settings['link_to'] ) {
			return false;
		}

		if ( 'custom' === $settings['link_to'] ) {
			if ( empty( $settings['link']['url'] ) ) {
				return false;
			}
			return $settings['link'];
		}

		if ( 'default' === $settings['link_to'] ) {
			if ( empty( $settings['link']['url'] ) ) {
				return false;
			}
			return site_url();
		}
	}
}
PK���\d�W���9inc/widgets-manager/widgets/breadcrumbs-widget/module.phpnu�[���<?php
/**
 * BreadcrumbsWidget Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\BreadcrumbsWidget;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 2.2.1
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 2.2.1
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'hfe-breadcrumbs-widget';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 2.2.1
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Breadcrumbs_Widget',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\�xl��[�[Einc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\BreadcrumbsWidget;

use Elementor\Controls_Manager;
use Elementor\Widget_Base;
use Elementor\Utils;
use Elementor\Icons_Manager;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Typography;
use Elementor\Modules\DynamicTags\Module as TagsModule;

use HFE\WidgetsManager\Widgets_Loader;
use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * HFE Site title widget
 *
 * HFE widget for site title
 *
 * @since 2.2.1
 */
class Breadcrumbs_Widget extends Common_Widget {

	/**
	 * Retrieve the widget name.
	 *
	 * @since 2.2.1
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Breadcrumbs_Widget' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 2.2.1
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Breadcrumbs_Widget' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 2.2.1
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Breadcrumbs_Widget' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Breadcrumbs_Widget' );
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * This method returns true if the widget's output is dynamic and should not be cached,
	 * or false if the content is static and can be cached.
	 *
	 * @since 1.6.41
	 * @return bool True for dynamic content, false for static content.
	 */
	protected function is_dynamic_content(): bool { // phpcs:ignore
		return true;
	}

	/**
	 * Get widget upsale data.
	 *
	 * Retrieve the widget promotion data.
	 *
	 * @since 2.5.0
	 * @access protected
	 *
	 * @return array Widget promotion data.
	 */
	protected function get_upsale_data() {
		return [
			'condition' => ! defined( 'UAEL_VER' ),
			'image' => esc_url( HFE_URL . 'assets/images/upgrade-pro.png' ),
			'image_alt' => esc_attr__( 'Upgrade', 'header-footer-elementor' ),
			'title' => esc_html__( 'Get more than just Breadcrumbs', 'header-footer-elementor' ),
			'description' => esc_html__( 'UAE Pro includes Schema widgets like FAQ Schema and How-To Schema, helping your content rank higher.', 'header-footer-elementor' ),
			'upgrade_url' => esc_url( 'https://ultimateelementor.com/pricing/?utm_source=UAE-Breadcrumbs&utm_medium=editor&utm_campaign=static-promotion' ),
			'upgrade_text' => esc_html__( 'Upgrade Now', 'header-footer-elementor' ),
		];
	}

	/**
	 * Register site title controls.
	 *
	 * @since 1.5.7
	 * @access protected
	 * @return void
	 */
	// phpcs:ignore
	protected function register_controls(): void {

		$this->register_general_breadcrumbs_controls();
		$this->register_separator_breadcrumbs_controls();
		$this->register_breadcrumbs_text_controls();

		$this->register_breadcrumbs_general_style_controls();
		$this->register_breadcrumbs_separator_style_controls();
		$this->register_breadcrumbs_current_style_controls();
	}

	

	/**
	 * Register general Controls.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_general_breadcrumbs_controls(): void {
		$this->start_controls_section(
			'section_general',
			[
				'label' => __( 'General', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'show_home',
			[
				'label'        => __( 'Show Home', 'header-footer-elementor' ),
				'type'         => Controls_Manager::SWITCHER,
				'label_on'     => __( 'On', 'header-footer-elementor' ),
				'label_off'    => __( 'Off', 'header-footer-elementor' ),
				'default'      => 'yes',
				'return_value' => 'yes',
			]
		);

		$this->add_control(
			'home_icon',
			[
				'label'       => __( 'Home Icon', 'header-footer-elementor' ),
				'type'        => Controls_Manager::ICONS,
				'label_block' => false,
				'skin'        => 'inline',
				'default'     => [
					'value'   => 'fas fa-home',
					'library' => 'fa-solid',
				],
				'condition'   => [
					'show_home' => 'yes',
				],
			]
		);

		$this->add_responsive_control(
			'align',
			[
				'label'     => __( 'Alignment', 'header-footer-elementor' ),
				'type'      => Controls_Manager::CHOOSE,
				'default'   => '',
				'options'   => [
					'left'   => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => 'eicon-h-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'eicon-h-align-center',
					],
					'right'  => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => 'eicon-h-align-right',
					],
				],
				'separator' => 'before',
				'selectors' => [
					'{{WRAPPER}}' => 'text-align: {{VALUE}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Separator Controls.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_separator_breadcrumbs_controls(): void {
		$this->start_controls_section(
			'section_separator',
			[
				'label' => __( 'Separator', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'separator_type',
			[
				'label'   => __( 'Separator Type', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'default' => 'text',
				'options' => [
					'text' => __( 'Text', 'header-footer-elementor' ),
					'icon' => __( 'Icon', 'header-footer-elementor' ),
				],
			]
		);

		$this->add_control(
			'separator_text',
			[
				'label'     => __( 'Separator', 'header-footer-elementor' ),
				'type'      => Controls_Manager::TEXT,
				'default'   => __( '»', 'header-footer-elementor' ),
				'condition' => [
					'separator_type' => 'text',
				],
			]
		);

		$this->add_control(
			'separator_icon',
			[
				'label'       => __( 'Separator', 'header-footer-elementor' ),
				'type'        => Controls_Manager::ICONS,
				'label_block' => false,
				'skin'        => 'inline',
				'default'     => [
					'value'   => 'fas fa-angle-right',
					'library' => 'fa-solid',
				],
				'recommended' => [
					'fa-solid' => [
						'greater-than',
						'minus',
						'angle-right',
						'angle-double-right',
						'caret-right',
						'chevron-right',
						'genderless',
						'grip-lines',
						'grip-lines-vertical',
					],
				],
				'condition'   => [
					'separator_type' => 'icon',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Separator Controls.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_breadcrumbs_text_controls(): void {
		$this->start_controls_section(
			'section_text',
			[
				'label' => __( 'Display Text', 'header-footer-elementor' ),
			]
		);

			$this->add_control(
				'home_text',
				[
					'label'   => __( 'Home Page', 'header-footer-elementor' ),
					'type'    => Controls_Manager::TEXT,
					'default' => __( 'Home', 'header-footer-elementor' ),
					'dynamic' => [
						'active'     => true,
						'categories' => [ TagsModule::POST_META_CATEGORY ],
					],
				]
			);

			$this->add_control(
				'search_text',
				[
					'label'   => __( 'Search', 'header-footer-elementor' ),
					'type'    => Controls_Manager::TEXT,
					'default' => __( 'Search results for:', 'header-footer-elementor' ),
					'dynamic' => [
						'active'     => true,
						'categories' => [ TagsModule::POST_META_CATEGORY ],
					],
				]
			);

			$this->add_control(
				'error_text',
				[
					'label'   => __( '404 Page', 'header-footer-elementor' ),
					'type'    => Controls_Manager::TEXT,
					'default' => __( 'Error 404: Page not found', 'header-footer-elementor' ),
					'dynamic' => [
						'active'     => true,
						'categories' => [ TagsModule::POST_META_CATEGORY ],
					],
				]
			);

		
		$this->end_controls_section();

	}

	/**
	 * Register General Controls.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_breadcrumbs_general_style_controls(): void {
		$this->start_controls_section(
			'section_general_style',
			[
				'label' => __( 'General', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'spacing_between_items',
			[
				'label'     => __( 'Spacing between Items', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'default'   => [
					'size' => 10,
				],
				'range'     => [
					'px' => [
						'max' => 50,
					],
				],
				'selectors' => [
					'{{WRAPPER}} ul.hfe-breadcrumbs li' => 'margin-right: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_responsive_control(
			'breadcrumbs_padding',
			[
				'label'      => __( 'Padding', 'header-footer-elementor' ),
				'type'       => Controls_Manager::DIMENSIONS,
				'size_units' => [ 'px', '%' ],
				'separator'  => 'after',
				'selectors'  => [
					'{{WRAPPER}} .hfe-breadcrumbs-item' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->start_controls_tabs( 'breadcrumbs_style_tabs' );

			$this->start_controls_tab(
				'breadcrumbs_normal_tab',
				[
					'label' => __( 'Normal', 'header-footer-elementor' ),
				]
			);

				$this->add_control(
					'breadcrumbs_color',
					[
						'label'     => __( 'Color', 'header-footer-elementor' ),
						'type'      => Controls_Manager::COLOR,
						'default'   => '',
						'selectors' => [
							'{{WRAPPER}} .hfe-breadcrumbs, {{WRAPPER}} .hfe-breadcrumbs .hfe-breadcrumbs-text' => 'color: {{VALUE}}',
							'{{WRAPPER}} .hfe-breadcrumbs svg' => 'fill: {{VALUE}}',
						],
					]
				);

				$this->add_control(
					'breadcrumbs_background_color',
					[
						'label'     => __( 'Background Color', 'header-footer-elementor' ),
						'type'      => Controls_Manager::COLOR,
						'default'   => '',
						'selectors' => [
							'{{WRAPPER}} .hfe-breadcrumbs-item' => 'background-color: {{VALUE}}',
						],
					]
				);

				$this->add_group_control(
					Group_Control_Typography::get_type(),
					[
						'name'     => 'breadcrumbs_typography',
						'label'    => __( 'Typography', 'header-footer-elementor' ),
						'selector' => '{{WRAPPER}} .hfe-breadcrumbs-item',
					]
				);

				$this->add_group_control(
					Group_Control_Border::get_type(),
					[
						'name'        => 'breadcrumbs_border',
						'label'       => __( 'Border', 'header-footer-elementor' ),
						'placeholder' => '1px',
						'default'     => '1px',
						'selector'    => '{{WRAPPER}} .hfe-breadcrumbs-item',
					]
				);

				$this->add_control(
					'breadcrumbs_border_radius',
					[
						'label'      => __( 'Border Radius', 'header-footer-elementor' ),
						'type'       => Controls_Manager::DIMENSIONS,
						'size_units' => [ 'px', '%', 'em' ],
						'selectors'  => [
							'{{WRAPPER}} .hfe-breadcrumbs-item' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
						],
					]
				);

			$this->end_controls_tab();

			$this->start_controls_tab(
				'breadcrumbs_hover_tab',
				[
					'label' => __( 'Hover', 'header-footer-elementor' ),
				]
			);

				$this->add_control(
					'breadcrumbs_color_hover',
					[
						'label'     => __( 'Color', 'header-footer-elementor' ),
						'type'      => Controls_Manager::COLOR,
						'default'   => '',
						'selectors' => [
							'{{WRAPPER}} .hfe-breadcrumbs-item:hover a, {{WRAPPER}} .hfe-breadcrumbs-item:hover .hfe-breadcrumbs-text' => 'color: {{VALUE}}',
							'{{WRAPPER}} .hfe-breadcrumbs-first:hover .hfe-breadcrumbs-home-icon svg' => 'fill: {{VALUE}}',
						],
					]
				);

				$this->add_control(
					'breadcrumbs_background_color_hover',
					[
						'label'     => __( 'Background Color', 'header-footer-elementor' ),
						'type'      => Controls_Manager::COLOR,
						'default'   => '',
						'selectors' => [
							'{{WRAPPER}} .hfe-breadcrumbs-item:hover' => 'background-color: {{VALUE}}',
						],
					]
				);

				$this->add_control(
					'breadcrumbs_border_color_hover',
					[
						'label'     => __( 'Border Color', 'header-footer-elementor' ),
						'type'      => Controls_Manager::COLOR,
						'default'   => '',
						'selectors' => [
							'{{WRAPPER}} .hfe-breadcrumbs-item:hover' => 'border-color: {{VALUE}}',
						],
					]
				);

			$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->end_controls_section();
	}

	/**
	 * Register Separator Controls.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_breadcrumbs_separator_style_controls(): void {
		$this->start_controls_section(
			'section_separator_style',
			[
				'label' => __( 'Separator', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_control(
			'separator_color',
			[
				'label'     => __( 'Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .hfe-breadcrumbs-separator .hfe-breadcrumbs-separator-text' => 'color: {{VALUE}}',
					'{{WRAPPER}} .hfe-breadcrumbs-separator-icon svg' => 'fill: {{VALUE}}',
				],
			]
		);

		$this->add_control(
			'separator_icon_size',
			[
				'label'     => __( 'Size', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'max' => 250,
					],
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-breadcrumbs-separator-icon' => 'font-size: {{SIZE}}{{UNIT}};',
				],
				'condition' => [
					'separator_type' => 'icon',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name'      => 'separator_typography',
				'label'     => __( 'Typography', 'header-footer-elementor' ),
				'selector'  => '{{WRAPPER}} .hfe-breadcrumbs-separator .hfe-breadcrumbs-separator-text',
				'condition' => [
					'separator_type' => 'text',
				],
			]
		);

		$this->end_controls_section();

	}

	/**
	 * Register current Controls.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function register_breadcrumbs_current_style_controls(): void {
		$this->start_controls_section(
			'section_current_style',
			[
				'label' => __( 'Current Item', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

			$this->add_control(
				'current_item_color',
				[
					'label'     => __( 'Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'default'   => '',
					'selectors' => [
						'{{WRAPPER}} .hfe-breadcrumbs-last .hfe-breadcrumbs-text, {{WRAPPER}} .hfe-breadcrumbs-last svg' => 'color: {{VALUE}}',
					],
				]
			);

			$this->add_control(
				'current_item_background_color',
				[
					'label'     => __( 'Background Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'default'   => '',
					'selectors' => [
						'{{WRAPPER}} .hfe-breadcrumbs-last' => 'background-color: {{VALUE}}',
					],
				]
			);

			$this->add_group_control(
				Group_Control_Typography::get_type(),
				[
					'name'     => 'current_item_typography',
					'label'    => __( 'Typography', 'header-footer-elementor' ),
					'selector' => '{{WRAPPER}} .hfe-breadcrumbs-last .hfe-breadcrumbs-text, {{WRAPPER}} .hfe-breadcrumbs-last svg',
				]
			);

			$this->add_group_control(
				Group_Control_Border::get_type(),
				[
					'name'        => 'current_item_border',
					'label'       => __( 'Border', 'header-footer-elementor' ),
					'placeholder' => '1px',
					'default'     => '1px',
					'selector'    => '{{WRAPPER}} .hfe-breadcrumbs-last',
				]
			);

			$this->add_control(
				'current_item_border_radius',
				[
					'label'      => __( 'Border Radius', 'header-footer-elementor' ),
					'type'       => Controls_Manager::DIMENSIONS,
					'size_units' => [ 'px', '%', 'em' ],
					'selectors'  => [
						'{{WRAPPER}} .hfe-breadcrumbs-last' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
					],
				]
			);

			$this->add_responsive_control(
				'current_item_padding',
				[
					'label'      => __( 'Padding', 'header-footer-elementor' ),
					'type'       => Controls_Manager::DIMENSIONS,
					'size_units' => [ 'px', '%' ],
					'separator'  => 'after',
					'selectors'  => [
						'{{WRAPPER}} .hfe-breadcrumbs-last' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
					],
				]
			);

		$this->end_controls_section();

	}


	/**
	 * Render Heading output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 2.2.1
	 * @access protected
	 *
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	protected function render():void {
		$settings = $this->get_settings_for_display();
	
		$delimiter = 'text' === $settings['separator_type'] ? $settings['separator_text'] : '';
	
		if ( 'icon' === $settings['separator_type'] ) {
			ob_start();
			Icons_Manager::render_icon( $settings['separator_icon'], [ 'aria-hidden' => 'true' ] );
			$delimiter = ob_get_clean(); // Store the icon output as delimiter.
		}
	
		// Define breadcrumb defaults.
		$defaults = [
			'home'         => isset( $settings['home_text'] ) ? $settings['home_text'] : __( 'Home', 'header-footer-elementor' ),
			'delimiter'    => $delimiter,
			'echo'         => true,
			'404_title'    => isset( $settings['error_text'] ) ? $settings['error_text'] : __( 'Error 404: Page not found', 'header-footer-elementor' ),
			'search_title' => isset( $settings['search_text'] ) ? $settings['search_text'] : __( 'Search results for: ', 'header-footer-elementor' ),
		];
	
		// Start the breadcrumbs array.
		$breadcrumbs = [];

		if ( 'yes' === $settings['show_home'] ) {
			// Add the Home link to the breadcrumbs.
			$breadcrumbs[] = [
				'title' => $defaults['home'],
				'url'   => esc_url( home_url() ),
				'class' => 'hfe-breadcrumbs-first',
			];
		}
	
		// Add the current page details to breadcrumbs based on conditions.
		if ( ! is_front_page() ) {
			if ( is_home() && 'yes' === $settings['show_home'] ) {
				$breadcrumbs[] = [
					'title' => get_the_title( get_option( 'page_for_posts' ) ),
					'url'   => '',
					'class' => '',
				];
	
			} elseif ( is_single() ) {

				$category = get_the_category();
				if ( $category ) {
					$parent_cats = get_ancestors( $category[0]->term_id, 'category' ); // Get the ancestors of the category.
					$parent_cats = array_reverse( $parent_cats ); // Reverse the array to get the correct hierarchy.

					// Loop through each ancestor and add to breadcrumbs.
					foreach ( $parent_cats as $cat_id ) {
						$cat           = get_category( $cat_id );
						$breadcrumbs[] = [
							'title' => $cat->name,
							'url'   => esc_url( get_category_link( $cat_id ) ),
							'class' => '',
						];
					}

					// Add the current category.
					$breadcrumbs[] = [
						'title' => $category[0]->name,
						'url'   => esc_url( get_category_link( $category[0]->term_id ) ),
						'class' => '',
					];
				}

				// Finally, add the current page title (without a URL).
				$breadcrumbs[] = [
					'title' => get_the_title(), // Get the current page title.
					'url'   => '',              // No URL for the current page.
					'class' => 'hfe-breadcrumbs-last', // Optional class for styling the last breadcrumb.
				];
	
			} elseif ( is_page() && ! is_front_page() ) {
				$parents = get_post_ancestors( get_the_ID() );
				foreach ( array_reverse( $parents ) as $parent ) {
					$breadcrumbs[] = [
						'title' => get_the_title( $parent ),
						'url'   => esc_url( get_permalink( $parent ) ),
						'class' => '',
					];
				}
				$breadcrumbs[] = [
					'title' => get_the_title(),
					'url'   => '',
					'class' => 'hfe-breadcrumbs-last',
				];
	
			} elseif ( is_category() ) {
				$breadcrumbs[] = [
					'title' => single_cat_title( '', false ),
					'url'   => '',
					'class' => 'hfe-breadcrumbs-last',
				];
	
			} elseif ( is_tag() ) {
				$breadcrumbs[] = [
					'title' => single_tag_title( '', false ),
					'url'   => '',
					'class' => 'hfe-breadcrumbs-last',
				];
	
			} elseif ( is_author() ) {
				$breadcrumbs[] = [
					'title' => get_the_author(),
					'url'   => '',
					'class' => 'hfe-breadcrumbs-last',
				];
	
			} elseif ( is_search() ) {
				$breadcrumbs[] = [
					'title' => $defaults['search_title'] . get_search_query(),
					'url'   => '',
					'class' => 'hfe-breadcrumbs-last',
				];
	
			} elseif ( is_404() ) {
				$breadcrumbs[] = [
					'title' => $defaults['404_title'],
					'url'   => '',
					'class' => 'hfe-breadcrumbs-last',
				];
	
			} elseif ( is_archive() ) {
				$breadcrumbs[] = [
					'title' => post_type_archive_title( '', false ),
					'url'   => '',
					'class' => 'hfe-breadcrumbs-last',
				];
			}
		}

		$home_class = ( 'yes' === $settings['show_home'] ) ? 'hfe-breadcrumbs-show-home' : '';
	
		// Build the breadcrumb output.
		$output = '<nav aria-label="Breadcrumb"><ul class="hfe-breadcrumbs ' . esc_attr( $home_class ) . '">';

		foreach ( $breadcrumbs as $index => $breadcrumb ) {
			// Open the breadcrumb item.
			$output .= '<li class="hfe-breadcrumbs-item ' . esc_attr( $breadcrumb['class'] ) . '">';

			if ( 'yes' === $settings['show_home'] && 0 === $index ) {
				$home_icon = $this->home_icon_html( 'hfe-breadcrumbs-home-icon', $settings['home_icon'] );
				$output   .= $home_icon;
			}

			if ( $breadcrumb['url'] ) {
				$output .= '<a href="' . esc_url( $breadcrumb['url'] ) . '"><span class="hfe-breadcrumbs-text">' . wp_kses_post( $breadcrumb['title'] ) . '</span></a>';
			} else {
				$output .= '<span class="hfe-breadcrumbs-text" aria-current="page">' . wp_kses_post( $breadcrumb['title'] ) . '</span>';
			}
			$output .= '</li>';

			// Add the separator except for the last item.
			if ( $index < count( $breadcrumbs ) - 1 ) {
				$output .= '<li class="hfe-breadcrumbs-separator">';
				if ( 'icon' === $settings['separator_type'] ) {
					// Render the icon.
					$output .= '<span class="hfe-breadcrumbs-separator-icon">';
					$output .= $delimiter;
					$output .= '</span>';
				} else {
					// Use text as separator.
					$output .= '<span class="hfe-breadcrumbs-separator-text">' . wp_kses_post( $defaults['delimiter'] ) . '</span>';
				}
				$output .= '</li>';
			}
		}
		$output .= '</ul></nav>';
		
		echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- If escaped the icons are not rendering on frontend.

	}

	/**
	 * Sets the home icon.
	 *
	 * @access public
	 * @param string $home_class home icon class.
	 * @param string $home_icon home icon.
	 * @return string
	 */
	public function home_icon_html( $home_class = '', $home_icon = [] ) {
		$home_icon_html = '<span class="' . esc_attr( $home_class ) . '">';
		ob_start();
		Icons_Manager::render_icon( $home_icon, [ 'aria-hidden' => 'true' ] );
		$home_icon_html .= ob_get_clean(); // Store the icon output as delimiter.
		$home_icon_html .= '</span>';
		return $home_icon_html;
	}

	/**
	 * Render site title output in the editor.
	 *
	 * Written as a Backbone JavaScript template and used to generate the live preview.
	 *
	 * @since 2.2.1
	 * @access protected
	 * @return void
	 */
	protected function content_template() {
	}
}
PK���\���|?|?5inc/widgets-manager/widgets/page-title/page-title.phpnu�[���<?php
/**
 * Elementor Classes.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\PageTitle;

use Elementor\Controls_Manager;
use Elementor\Group_Control_Text_Shadow;
use Elementor\Group_Control_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;

use HFE\WidgetsManager\Widgets_Loader;
use HFE\WidgetsManager\Base\Common_Widget;

if ( ! defined( 'ABSPATH' ) ) {
	exit;   // Exit if accessed directly.
}

/**
 * HFE Page Title widget
 *
 * HFE widget for Page Title.
 *
 * @since 1.3.0
 */
class Page_Title extends Common_Widget {


	/**
	 * Retrieve the widget name.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return parent::get_widget_slug( 'Page_Title' );
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return parent::get_widget_title( 'Page_Title' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 1.3.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return parent::get_widget_icon( 'Page_Title' );
	}

	/**
	 * Retrieve Widget Keywords.
	 *
	 * @since 2.6.0
	 * @access public
	 *
	 * @return string Widget keywords.
	 */
	public function get_keywords() {
		return parent::get_widget_keywords( 'Page_Title' );
	}

	/**
	 * Indicates if the widget's content is dynamic.
	 *
	 * This method returns true if the widget's output is dynamic and should not be cached,
	 * or false if the content is static and can be cached.
	 *
	 * @since 1.6.41
	 * @return bool True for dynamic content, false for static content.
	 */
	protected function is_dynamic_content(): bool { // phpcs:ignore
		return true;
	}

	/**
	 * Register Page Title controls.
	 *
	 * @since 1.5.7
	 * @access protected
	 * @return void
	 */
	protected function register_controls() {
		$this->register_content_page_title_controls();
		$this->register_page_title_style_controls();
		$this->register_pro_promotion_controls();
	}

	/**
	 * Register Page Title General Controls.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function register_content_page_title_controls() {
		$this->start_controls_section(
			'section_general_fields',
			[
				'label' => __( 'Title', 'header-footer-elementor' ),
			]
		);

		$this->add_control(
			'archive_title_note',
			[
				'type'            => Controls_Manager::RAW_HTML,
				/* translators: %1$s doc link */
				'raw'             => sprintf( __( '<b>Note:</b> Archive page title will be visible on frontend.', 'header-footer-elementor' ) ),
				'content_classes' => 'elementor-panel-alert elementor-panel-alert-warning',
			]
		);

		$this->add_control(
			'before',
			[
				'label'   => __( 'Before Title Text', 'header-footer-elementor' ),
				'type'    => Controls_Manager::TEXT,
				'dynamic' => [
					'active' => true,
				],
			]
		);

		$this->add_control(
			'after',
			[
				'label'   => __( 'After Title Text', 'header-footer-elementor' ),
				'type'    => Controls_Manager::TEXT,
				'dynamic' => [
					'active' => true,
				],
			]
		);

		$this->add_control(
			'new_page_title_select_icon',
			[
				'label'       => __( 'Select Icon', 'header-footer-elementor' ),
				'type'        => Controls_Manager::ICONS,
				'render_type' => 'template',
			]
		);

		$this->add_control(
			'page_title_icon_indent',
			[
				'label'     => __( 'Icon Spacing', 'header-footer-elementor' ),
				'type'      => Controls_Manager::SLIDER,
				'range'     => [
					'px' => [
						'max' => 50,
					],
				],
				'condition' => [
					'new_page_title_select_icon[value]!' => '',
				],
				'selectors' => [
					'{{WRAPPER}} .hfe-page-title-icon' => 'margin-right: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'page_custom_link',
			[
				'label'   => __( 'Link', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'options' => [
					'custom'  => __( 'Custom URL', 'header-footer-elementor' ),
					'default' => __( 'Default', 'header-footer-elementor' ),
					'none'    => __( 'None', 'header-footer-elementor' ),
				],
				'default' => 'default',
			]
		);

		$this->add_control(
			'page_heading_link',
			[
				'label'       => __( 'Link', 'header-footer-elementor' ),
				'type'        => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'header-footer-elementor' ),
				'dynamic'     => [
					'active' => true,
				],
				'default'     => [
					'url' => get_home_url(),
				],
				'condition'   => [
					'page_custom_link' => 'custom',
				],
			]
		);

		$this->add_control(
			'heading_tag',
			[
				'label'   => __( 'HTML Tag', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'options' => [
					'h1' => __( 'H1', 'header-footer-elementor' ),
					'h2' => __( 'H2', 'header-footer-elementor' ),
					'h3' => __( 'H3', 'header-footer-elementor' ),
					'h4' => __( 'H4', 'header-footer-elementor' ),
					'h5' => __( 'H5', 'header-footer-elementor' ),
					'h6' => __( 'H6', 'header-footer-elementor' ),
				],
				'default' => 'h2',
			]
		);

		$this->add_control(
			'size',
			[
				'label'   => __( 'Size', 'header-footer-elementor' ),
				'type'    => Controls_Manager::SELECT,
				'default' => 'default',
				'options' => [
					'default' => __( 'Default', 'header-footer-elementor' ),
					'small'   => __( 'Small', 'header-footer-elementor' ),
					'medium'  => __( 'Medium', 'header-footer-elementor' ),
					'large'   => __( 'Large', 'header-footer-elementor' ),
					'xl'      => __( 'XL', 'header-footer-elementor' ),
					'xxl'     => __( 'XXL', 'header-footer-elementor' ),
				],
			]
		);

		$this->add_responsive_control(
			'align',
			[
				'label'              => __( 'Alignment', 'header-footer-elementor' ),
				'type'               => Controls_Manager::CHOOSE,
				'options'            => [
					'left'    => [
						'title' => __( 'Left', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-left',
					],
					'center'  => [
						'title' => __( 'Center', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-center',
					],
					'right'   => [
						'title' => __( 'Right', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-right',
					],
					'justify' => [
						'title' => __( 'Justified', 'header-footer-elementor' ),
						'icon'  => 'eicon-text-align-justify',
					],
				],
				'default'            => '',
				'selectors'          => [
					'{{WRAPPER}} .hfe-page-title-wrapper' => 'text-align: {{VALUE}};',
				],
				'frontend_available' => true,
			]
		);

		$this->end_controls_section();
	}
	/**
	 * Register Page Title Style Controls.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function register_page_title_style_controls() {
		$this->start_controls_section(
			'section_title_typography',
			[
				'label' => __( 'Title', 'header-footer-elementor' ),
				'tab'   => Controls_Manager::TAB_STYLE,
			]
		);

			$this->add_group_control(
				Group_Control_Typography::get_type(),
				[
					'name'     => 'title_typography',
					'global'   => [
						'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
					],
					'selector' => '{{WRAPPER}} .elementor-heading-title, {{WRAPPER}} .hfe-page-title a',
				]
			);

			$this->add_control(
				'title_color',
				[
					'label'     => __( 'Color', 'header-footer-elementor' ),
					'type'      => Controls_Manager::COLOR,
					'global'    => [
						'default' => Global_Colors::COLOR_PRIMARY,
					],
					'selectors' => [
						'{{WRAPPER}} .elementor-heading-title, {{WRAPPER}} .hfe-page-title a' => 'color: {{VALUE}};',
						'{{WRAPPER}} .hfe-page-title-icon i'   => 'color: {{VALUE}};',
						'{{WRAPPER}} .hfe-page-title-icon svg' => 'fill: {{VALUE}};',
					],
				]
			);

			$this->add_group_control(
				Group_Control_Text_Shadow::get_type(),
				[
					'name'     => 'title_shadow',
					'selector' => '{{WRAPPER}} .elementor-heading-title',
				]
			);

			$this->add_control(
				'blend_mode',
				[
					'label'     => __( 'Blend Mode', 'header-footer-elementor' ),
					'type'      => Controls_Manager::SELECT,
					'options'   => [
						''            => __( 'Normal', 'header-footer-elementor' ),
						'multiply'    => 'Multiply',
						'screen'      => 'Screen',
						'overlay'     => 'Overlay',
						'darken'      => 'Darken',
						'lighten'     => 'Lighten',
						'color-dodge' => 'Color Dodge',
						'saturation'  => 'Saturation',
						'color'       => 'Color',
						'difference'  => 'Difference',
						'exclusion'   => 'Exclusion',
						'hue'         => 'Hue',
						'luminosity'  => 'Luminosity',
					],
					'selectors' => [
						'{{WRAPPER}} .elementor-heading-title' => 'mix-blend-mode: {{VALUE}}',
					],
				]
			);

		$this->end_controls_section();

		$this->start_controls_section(
			'section_icon',
			[
				'label'     => __( 'Icon', 'header-footer-elementor' ),
				'tab'       => Controls_Manager::TAB_STYLE,
				'condition' => [
					'new_page_title_select_icon[value]!' => '',
				],
			]
		);

		$this->add_control(
			'page_title_icon_color',
			[
				'label'     => __( 'Icon Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'global'    => [
					'default' => Global_Colors::COLOR_PRIMARY,
				],
				'condition' => [
					'new_page_title_select_icon[value]!' => '',
				],
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .hfe-page-title-icon i'   => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-page-title-icon svg' => 'fill: {{VALUE}};',
				],
			]
		);
		$this->add_control(
			'page_title_icons_hover_color',
			[
				'label'     => __( 'Icon Hover Color', 'header-footer-elementor' ),
				'type'      => Controls_Manager::COLOR,
				'condition' => [
					'new_page_title_select_icon[value]!' => '',
				],
				'default'   => '',
				'selectors' => [
					'{{WRAPPER}} .hfe-page-title-icon:hover i'   => 'color: {{VALUE}};',
					'{{WRAPPER}} .hfe-page-title-icon:hover svg' => 'fill: {{VALUE}};',
				],
			]
		);

		$this->end_controls_section();
	}

	/**
	 * Register Page Title Promotion Controls.
	 *
	 * @since 2.4.0
	 * @access protected
	 */
	protected function register_pro_promotion_controls() {

		if(! defined( 'UAEL_VER' )){
			$this->start_controls_section(
				'section_pro_features_field',
				array(
					'label' => __( 'Go Pro for More Features', 'header-footer-elementor' ),
				)
			);

			$this->add_control(
				'uae_pro_promotion_notice',
				[
					'type' => Controls_Manager::NOTICE,
					'notice_type' => 'info',
					'dismissible' => false,
					'content' => __( '<b>Build smarter and faster</b> with premium widgets, 200+ section blocks, and advanced customisation controls — all available in the <a href="https://ultimateelementor.com/pricing/?utm_source=uae-dashboard&utm_medium=editor&utm_campaign=uae-pro-promotion" target="_blank">UAE Pro</a>.', 'header-footer-elementor' ),
				]
			);


			$this->end_controls_section();
		}
	}

	/**
	 * Render page title widget output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function render() {

		$settings = $this->get_settings_for_display();

		$this->add_inline_editing_attributes( 'page_title', 'basic' );

		if ( ! empty( $settings['page_heading_link']['url'] ) ) {
			$this->add_link_attributes( 'url', $settings['page_heading_link'] );
		}

		$heading_size_tag = Widgets_Loader::validate_html_tag( $settings['heading_tag'] );
		?>		
		<div class="hfe-page-title hfe-page-title-wrapper elementor-widget-heading">

		<?php
		$head_link_url    = isset( $settings['page_heading_link']['url'] ) ? $settings['page_heading_link']['url'] : '';
		$head_custom_link = isset( $settings['page_custom_link'] ) ? $settings['page_custom_link'] : '';
		?>
			<?php if ( '' !== $head_link_url && 'custom' === $head_custom_link ) { ?>
						<a <?php echo wp_kses_post( $this->get_render_attribute_string( 'url' ) ); ?>>
			<?php } elseif ( 'default' === $head_custom_link ) { ?>
						<a href="<?php echo esc_url( get_home_url() ); ?>">
			<?php } ?>
			<<?php echo esc_attr( $heading_size_tag ); ?> class="elementor-heading-title elementor-size-<?php echo esc_attr( $settings['size'] ); ?>">
				<?php if ( '' !== $settings['new_page_title_select_icon']['value'] ) { ?>
						<span class="hfe-icon hfe-page-title-icon">
							<?php \Elementor\Icons_Manager::render_icon( $settings['new_page_title_select_icon'], [ 'aria-hidden' => 'true' ] ); ?>
						</span>
				<?php } ?>				
				<?php if ( '' !== $settings['before'] ) { ?>
					<?php echo wp_kses_post( $settings['before'] ); ?>
					<?php
				}

				if ( is_archive() || is_home() ) {
					echo wp_kses_post( get_the_archive_title() );
				} else {
					echo wp_kses_post( get_the_title() );
				}

				if ( '' !== $settings['after'] ) {
					?>
					<?php echo wp_kses_post( $settings['after'] ); ?>
				<?php } ?>  
			</<?php echo esc_attr( $heading_size_tag ); ?> > 
			<?php if ( ( '' !== $head_link_url && 'custom' === $head_custom_link ) || 'default' === $head_custom_link ) { ?>
						</a>
			<?php } ?>
		</div>
		<?php
	}

	/**
	 * Render page title output in the editor.
	 *
	 * Written as a Backbone JavaScript template and used to generate the live preview.
	 *
	 * @since 1.3.0
	 * @access protected
	 * @return void
	 */
	protected function content_template() {

		?>
		<#
		if ( '' == settings.page_title ) {
			return;
		}

		if ( '' == settings.size ){
			return;
		}
		var sanitizedSize = _.escape( settings.size );

		if ( '' != settings.page_heading_link.url ) {
			var urlPattern = /^(https?|ftp):\/\/[^\s/$.?#].[^\s]*$|^www\.[^\s/$.?#].[^\s]*$/;
			if( urlPattern.test( settings.page_heading_link.url ) ){
				var sanitizedPgUrl = _.escape( settings.page_heading_link.url );
				view.addRenderAttribute( 'url', 'href', sanitizedPgUrl );
			}
		}
		var iconHTML = elementor.helpers.renderIcon( view, settings.new_page_title_select_icon, { 'aria-hidden': true }, 'i' , 'object' );

		var headingSizeTag = elementor.helpers.validateHTMLTag( settings.heading_tag );

		if ( typeof elementor.helpers.validateHTMLTag === "function" ) { 
			headingSizeTag = elementor.helpers.validateHTMLTag( settings.heading_tag );
		} else if( HfeWidgetsData.allowed_tags ) {
			headingSizeTag = HfeWidgetsData.allowed_tags.includes( headingSizeTag.toLowerCase() ) ? headingSizeTag : 'div';
		}

		#>
		<div class="hfe-page-title hfe-page-title-wrapper elementor-widget-heading">
			<# if ( '' != settings.page_heading_link.url ) { #>
					<a {{{ view.getRenderAttributeString( 'url' ) }}} > <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
			<# } #>
			<{{{ headingSizeTag }}} class="elementor-heading-title elementor-size-{{{ elementor.helpers.sanitize( sanitizedSize ) }}}"> <?php //phpcs:ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>	
				<# if( '' != settings.new_page_title_select_icon.value ){ #>
					<span class="hfe-icon hfe-page-title-icon" data-elementor-setting-key="page_title" data-elementor-inline-editing-toolbar="basic">
						{{{iconHTML.value}}} <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>                    
					</span>
				<# } #>
					<# if ( '' != settings.before ) {
						var before = elementor.helpers.sanitize( settings.before ) #>
						{{{ before }}} <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
					<# } #>
					<?php
					if ( is_archive() || is_home() ) {
						echo wp_kses_post( get_the_archive_title() );
					} else {
						echo wp_kses_post( get_the_title() );
					}
					?>
					<# if ( '' != settings.after ) { 
						var after = elementor.helpers.sanitize( settings.after )#>
						{{{ after }}} <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
					<# } #>				
			</{{{ headingSizeTag }}}> <?php // PHPCS:Ignore WordPressVIPMinimum.Security.Mustache.OutputNotation ?>
			<# if ( '' != settings.page_heading_link.url ) { #>
					</a>
			<# } #>			
		</div>
		<?php
	}
}
PK���\iX�}��1inc/widgets-manager/widgets/page-title/module.phpnu�[���<?php
/**
 * HFEWpfStyler Module.
 *
 * @package header-footer-elementor
 */

namespace HFE\WidgetsManager\Widgets\PageTitle;

use HFE\WidgetsManager\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Module.
 */
class Module extends Module_Base {

	/**
	 * Module should load or not.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return bool true|false.
	 */
	public static function is_enable() {
		return true;
	}

	/**
	 * Get Module Name.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return string Module name.
	 */
	public function get_name() {
		return 'page-title';
	}

	/**
	 * Get Widgets.
	 *
	 * @since 1.15.0
	 * @access public
	 *
	 * @return array Widgets.
	 */
	public function get_widgets() {
		return [
			'Page_Title',
		];
	}

	/**
	 * Constructor.
	 */
	public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
		parent::__construct();
	}
}
PK���\M����inc/class-hfe-update.phpnu�[���<?php
/**
 * Theme Update
 *
 * @package     Header Footer Elementor
 * @copyright   Copyright (c) 2019, Header Footer Elementor
 * @link        https://github.com/brainstormforce/header-footer-elementor
 * @since       HFE 1.1.4
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'HFE_Update' ) ) {

	/**
	 * HFE_Update initial setup
	 *
	 * @since 1.1.4
	 */
	class HFE_Update {

		/**
		 * Option key for stored version number.
		 *
		 * @since 1.1.4
		 * @var string
		 */
		// phpcs:ignore
		private string $db_option_key = '_hfe_db_version'; 

		/**
		 *  Constructor
		 *
		 * @since 1.1.4
		 */
		public function __construct() {

			// Theme Updates.
			if ( is_admin() ) {
				add_action( 'admin_init', [ $this, 'init' ], 5 );
			} else {
				add_action( 'wp', [ $this, 'init' ], 5 );
			}
		}

		/**
		 * Implement theme update logic.
		 *
		 * @since 1.1.4
		 * @return void
		 */
		public function init() {
			do_action( 'hfe_update_before' );

			if ( ! $this->needs_db_update() ) {
				return;
			}

			$db_version = get_option( $this->db_option_key, false );

			if ( version_compare( $db_version, '1.2.0-beta.2', '<' ) ) {
				$this->setup_default_terget_rules();
			}

			// flush rewrite rules on plugin update.
			flush_rewrite_rules();  // PHPCS:Ignore WordPressVIPMinimum.Functions.RestrictedFunctions.flush_rewrite_rules_flush_rewrite_rules

			// Track plugin update event (re-trackable on each version change via $force = true).
			// Skip on fresh install ($db_version is false) — only track actual updates.
			if ( false !== $db_version && class_exists( 'HFE_Analytics_Events' ) ) {
				HFE_Analytics_Events::track( 'plugin_updated', HFE_VER, [ 'from_version' => $db_version ], true );
			}

			$this->update_db_version();

			do_action( 'hfe_update_after' );
		}

		/**
		 * Set default target rules for header, footer, before footers being used before target rules were added to the plugin.
		 *
		 * @since 1.2.0-beta.1
		 * @return void
		 */
		private function setup_default_terget_rules() {
			$default_include_locations = [
				'rule'     => [ 0 => 'basic-global' ],
				'specific' => [],
			];

			$header_id        = $this->get_legacy_template_id( 'type_header' );
			$footer_id        = $this->get_legacy_template_id( 'type_footer' );
			$before_footer_id = $this->get_legacy_template_id( 'type_before_footer' );

			// Header.
			if ( ! empty( $header_id ) ) {
				update_post_meta( $header_id, 'ehf_target_include_locations', $default_include_locations );
			}

			// Footer.
			if ( ! empty( $footer_id ) ) {
				update_post_meta( $footer_id, 'ehf_target_include_locations', $default_include_locations );
			}

			// Before Footer.
			if ( ! empty( $before_footer_id ) ) {
				update_post_meta( $before_footer_id, 'ehf_target_include_locations', $default_include_locations );
			}
		}

		/**
		 * Get header or footer template id based on the meta query.
		 *
		 * @param  string $type Type of the template header/footer.
		 *
		 * @return mixed  Returns the header or footer template id if found, else returns string ''.
		 */
		public function get_legacy_template_id( $type ) {
			$args = [
				'post_type'    => 'elementor-hf',
				'meta_key'     => 'ehf_template_type',
				'meta_value'   => $type, // PHPCS:Ignore  WordPress.DB.SlowDBQuery.slow_db_query_meta_value
				'meta_type'    => 'post',
				'meta_compare' => '>=',
				'orderby'      => 'meta_value',
				'order'        => 'ASC',
				'meta_query'   => [  // PHPCS:Ignore  WordPress.DB.SlowDBQuery.slow_db_query_meta_query
					'relation' => 'OR',
					[
						'key'     => 'ehf_template_type',
						'value'   => $type,
						'compare' => '==',
						'type'    => 'post',
					],
				],
			];

			$args     = apply_filters( 'hfe_get_template_id_args', $args );
			$template = new WP_Query(
				$args
			);

			if ( $template->have_posts() ) {
				$posts = wp_list_pluck( $template->posts, 'ID' );
				return $posts[0];
			}

			return '';
		}

		/**
		 * Check if db upgrade is required.
		 *
		 * @since 1.1.4
		 * @return bool True if stored database version is lower than constant; false if otherwise.
		 */
		private function needs_db_update() {
			$db_version = get_option( $this->db_option_key, false );

			if ( false === $db_version || version_compare( $db_version, HFE_VER ) ) {
				return true;
			}

			return false;
		}

		/**
		 * Update DB version.
		 *
		 * @since 1.1.4
		 * @return void
		 */
		private function update_db_version() {
			update_option( $this->db_option_key, HFE_VER );
		}
	}
}

new HFE_Update();
PK���\�6���0�0!inc/class-hfe-post-duplicator.phpnu�[���<?php
/**
 * Post Duplicator functionality.
 *
 * @package header-footer-elementor
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Class HFE_Post_Duplicator
 *
 * Handles the post duplication functionality.
 *
 * @since 2.8.0
 */
class HFE_Post_Duplicator {

	/**
	 * Instance of HFE_Post_Duplicator
	 *
	 * @since 2.8.0
	 * @var HFE_Post_Duplicator
	 */
	private static $instance = null;

	/**
	 * Supported post types for duplication.
	 *
	 * @since 2.8.0
	 * @var array
	 */
	private $excluded_post_types = array(
		'attachment',
		'revision',
		'nav_menu_item',
		'custom_css',
		'customize_changeset',
		'oembed_cache',
		'user_request',
		'wp_block',
		'wp_template',
		'wp_template_part',
		'wp_global_styles',
	);

	/**
	 * Instance of HFE_Post_Duplicator
	 *
	 * @since 2.8.0
	 * @return HFE_Post_Duplicator Instance of HFE_Post_Duplicator
	 */
	public static function instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}

		return self::$instance;
	}

	/**
	 * Constructor
	 *
	 * @since 2.8.0
	 */
	private function __construct() {
		// Support for all post types.
		add_action( 'admin_init', array( $this, 'add_post_type_filters' ) );

		// Handle the duplicate action.
		add_action( 'admin_action_hfe_duplicate_post', array( $this, 'duplicate_post' ) );

		// Add admin notices.
		add_action( 'admin_notices', array( $this, 'admin_notices' ) );

		// Enqueue admin styles.
		add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_styles' ) );
	}

	/**
	 * Add filters for all post types.
	 *
	 * @since 2.8.0
	 * @return void
	 */
	public function add_post_type_filters() {
		// Get all public post types.
		$post_types = get_post_types( array( 'public' => true ), 'names' );

		// Add filter for each post type.
		foreach ( $post_types as $post_type ) {
			add_filter( $post_type . '_row_actions', array( $this, 'add_duplicate_link' ), 10, 2 );
		}
	}

	/**
	 * Enqueue admin styles.
	 *
	 * @since 2.8.0
	 * @return void
	 */
	public function enqueue_admin_styles() {
		$screen = get_current_screen();

		// Enqueue on all post listing screens.
		if ( $screen && 'edit' === $screen->base ) {
			wp_enqueue_style(
				'hfe-post-duplicator',
				HFE_URL . 'assets/css/admin-post-duplicator.css',
				array(),
				HFE_VER
			);
		}
	}

	/**
	 * Add duplicate link to row actions.
	 *
	 * @since 2.8.0
	 * @param array   $actions Row actions.
	 * @param WP_Post $post    Post object.
	 * @return array Modified row actions.
	 */
	public function add_duplicate_link( $actions, $post ) {
		// Check if post type is excluded.
		if ( in_array( $post->post_type, $this->excluded_post_types, true ) ) {
			return $actions;
		}

		// Check if user has permission to edit posts.
		if ( ! $this->user_can_duplicate( $post ) ) {
			return $actions;
		}

		// Create nonce for security.
		$nonce = wp_create_nonce( 'hfe_duplicate_post_' . $post->ID );

		// Create duplicate link.
		$duplicate_link = admin_url(
			'admin.php?action=hfe_duplicate_post&post=' . absint( $post->ID ) . '&nonce=' . $nonce
		);

		$short_name = defined( 'UAEL_PLUGIN_SHORT_NAME' )
			? UAEL_PLUGIN_SHORT_NAME
			: 'UAE';

		// Add duplicate link to actions.
		$actions['hfe_duplicate'] = sprintf(
			'<a href="%s">%s</a>',
			esc_url( $duplicate_link ),
			sprintf(
				/* translators: %s: Plugin short name */
				esc_html__( '%s Duplicator', 'header-footer-elementor' ),
				esc_html( $short_name )
			)
		);

		// Reorder actions to place UAE Duplicate before "Edit with Elementor" and after "Trash".
		$new_actions = array();

		foreach ( $actions as $key => $action ) {
			if ( 'trash' === $key ) {
				$new_actions['trash']         = $action;
				$new_actions['hfe_duplicate'] = $actions['hfe_duplicate'];
			} elseif ( 'hfe_duplicate' !== $key ) {
				$new_actions[ $key ] = $action;
			}
		}

		return $new_actions;
	}

	/**
	 * Check if user can duplicate the post.
	 *
	 * @since 2.8.0
	 * @param WP_Post $post Post object.
	 * @return bool Whether user can duplicate the post.
	 */
	private function user_can_duplicate( $post ) {
		// Get the post type object.
		$post_type_obj = get_post_type_object( $post->post_type );

		// Check if user can edit this post type.
		if ( ! $post_type_obj || ! current_user_can( $post_type_obj->cap->edit_posts ) ) {
			return false;
		}

		// Check if user can edit this specific post.
		if ( ! current_user_can( 'edit_post', $post->ID ) ) {
			return false;
		}

		return true;
	}

	/**
	 * Duplicate post.
	 *
	 * @since 2.8.0
	 * @return void
	 */
	public function duplicate_post() {
		// Ensure the user is logged in before processing any request.
		if ( ! is_user_logged_in() ) {
			wp_die( esc_html__( 'You must be logged in to duplicate posts.', 'header-footer-elementor' ) );
		}

		// Check if we're duplicating a post.
		if ( ! isset( $_GET['post'] ) || ! isset( $_GET['nonce'] ) ) {
			wp_die( esc_html__( 'No post to duplicate has been supplied!', 'header-footer-elementor' ) );
		}

		// Get the original post ID.
		$post_id = absint( $_GET['post'] );

		// Verify nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['nonce'] ) ), 'hfe_duplicate_post_' . $post_id ) ) {
			wp_die( esc_html__( 'Security check failed!', 'header-footer-elementor' ) );
		}

		// Get the original post.
		$post = get_post( $post_id );
		if ( ! $post ) {
			wp_die( esc_html__( 'Post creation failed, could not find original post.', 'header-footer-elementor' ) );
		}

		// Check if post type is excluded.
		if ( in_array( $post->post_type, $this->excluded_post_types, true ) ) {
			wp_die( esc_html__( 'Post type not supported for duplication.', 'header-footer-elementor' ) );
		}

		// Check if user has permission to duplicate.
		if ( ! $this->user_can_duplicate( $post ) ) {
			wp_die( esc_html__( 'You do not have permission to duplicate this post.', 'header-footer-elementor' ) );
		}

		// Create the duplicate post.
		$new_post_id = $this->create_duplicate( $post );

		if ( is_wp_error( $new_post_id ) ) {
			wp_die( esc_html( $new_post_id->get_error_message() ) );
		}

		// Redirect to the edit screen for the new post.
		wp_safe_redirect( admin_url( 'post.php?action=edit&post=' . absint( $new_post_id ) ) );
		exit;
	}

	/**
	 * Create duplicate of the post.
	 *
	 * @since 2.8.0
	 * @param WP_Post $post Post object.
	 * @return int|WP_Error New post ID or WP_Error.
	 */
	private function create_duplicate( $post ) {
		// Create new post data array.
		$new_post_data = array(
			'post_author'    => get_current_user_id(),
			'post_content'   => $post->post_content,
			'post_excerpt'   => $post->post_excerpt,
			'post_parent'    => $post->post_parent,
			'post_password'  => $post->post_password,
			'post_status'    => 'draft', // Always set to draft.
			/* translators: %s: Original post title */
			'post_title'     => sprintf( __( 'Copy of %s', 'header-footer-elementor' ), $post->post_title ),
			'post_type'      => $post->post_type,
			'comment_status' => $post->comment_status,
			'ping_status'    => $post->ping_status,
			'to_ping'        => $post->to_ping,
			'menu_order'     => $post->menu_order,
		);

		// Insert the new post.
		$new_post_id = wp_insert_post( $new_post_data );

		if ( is_wp_error( $new_post_id ) ) {
			return $new_post_id;
		}

		// Copy post meta (RAW copy for Elementor compatibility).
		$this->copy_post_meta_raw( $post->ID, $new_post_id );

		// Copy featured image.
		$this->copy_featured_image( $post->ID, $new_post_id );

		// Copy taxonomies.
		$this->copy_taxonomies( $post->ID, $new_post_id, $post->post_type );

		// Clear Elementor generated CSS for the duplicated post.
		delete_post_meta( $new_post_id, '_elementor_css' );

		if ( class_exists( '\Elementor\Plugin' ) ) {
			\Elementor\Plugin::$instance->files_manager->clear_cache();
		}

		/**
		 * Fires after a post has been duplicated.
		 *
		 * @since 2.8.0
		 * @param int $new_post_id New post ID.
		 * @param int $post_id     Original post ID.
		 *
		 * @note Callbacks must not call wp_insert_post() recursively — there is no
		 *       recursion guard. Avoid triggering further duplications from this hook.
		 */
		do_action( 'hfe_post_duplicated', $new_post_id, $post->ID );

		// Store the original post ID in transient for admin notice.
		set_transient(
			'hfe_duplicated_post_' . get_current_user_id(),
			array(
				'original_id' => $post->ID,
				'new_id'      => $new_post_id,
			),
			30
		);

		// Increment global duplication counter. Shared option used by both Lite and Pro.
		// Note: read-then-write is not atomic; under simultaneous duplications the counter
		// may under-count. This is an accepted trade-off for a non-critical stat.
		$count = (int) get_option( 'uae_duplicator_count', 0 );
		update_option( 'uae_duplicator_count', $count + 1, false );

		return $new_post_id;
	}

	/**
	 * Copy post meta.
	 *
	 * NOTE: Meta is copied RAW to avoid Elementor serialization issues.
	 *
	 * @since 2.8.0
	 * @param int $source_post_id Source post ID.
	 * @param int $target_post_id Target post ID.
	 * @return void
	 */
	private function copy_post_meta_raw( $source_post_id, $target_post_id ) {
		global $wpdb;

		$meta_rows = $wpdb->get_results( // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
			$wpdb->prepare(
				"SELECT meta_key, meta_value FROM {$wpdb->postmeta} WHERE post_id = %d",
				$source_post_id
			)
		);

		if ( empty( $meta_rows ) ) {
			return;
		}

		foreach ( $meta_rows as $meta ) {
			// Skip _edit_lock and _edit_last meta keys.
			if ( in_array( $meta->meta_key, array( '_edit_lock', '_edit_last', '_wp_old_slug' ), true ) ) {
				continue;
			}

			$wpdb->insert( // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery
				$wpdb->postmeta,
				array(
					'post_id'    => $target_post_id,
					'meta_key'   => $meta->meta_key,
					'meta_value' => $meta->meta_value, // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_value
				),
				array( '%d', '%s', '%s' )
			);
		}
	}

	/**
	 * Copy featured image.
	 *
	 * @since 2.8.0
	 * @param int $source_post_id Source post ID.
	 * @param int $target_post_id Target post ID.
	 * @return void
	 */
	private function copy_featured_image( $source_post_id, $target_post_id ) {
		$thumbnail_id = get_post_thumbnail_id( $source_post_id );

		if ( $thumbnail_id ) {
			set_post_thumbnail( $target_post_id, $thumbnail_id );
		}
	}

	/**
	 * Copy taxonomies.
	 *
	 * @since 2.8.0
	 * @param int    $source_post_id Source post ID.
	 * @param int    $target_post_id Target post ID.
	 * @param string $post_type      Post type.
	 * @return void
	 */
	private function copy_taxonomies( $source_post_id, $target_post_id, $post_type ) {
		// Get all taxonomies for the post type.
		$taxonomies = get_object_taxonomies( $post_type );

		if ( empty( $taxonomies ) ) {
			return;
		}

		// Copy terms for each taxonomy.
		foreach ( $taxonomies as $taxonomy ) {
			$terms = wp_get_object_terms( $source_post_id, $taxonomy, array( 'fields' => 'slugs' ) );

			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
				wp_set_object_terms( $target_post_id, $terms, $taxonomy );
			}
		}
	}

	/**
	 * Display admin notices.
	 *
	 * @since 2.8.0
	 * @return void
	 */
	public function admin_notices() {
		// Check if we have a duplicated post.
		$duplicated_post = get_transient( 'hfe_duplicated_post_' . get_current_user_id() );

		if ( ! $duplicated_post ) {
			return;
		}

		// Delete the transient.
		delete_transient( 'hfe_duplicated_post_' . get_current_user_id() );

		// Get the original post.
		$original_post = get_post( $duplicated_post['original_id'] );

		if ( ! $original_post ) {
			return;
		}

		// Get post type label.
		$post_type_obj   = get_post_type_object( $original_post->post_type );
		$post_type_label = $post_type_obj
			? $post_type_obj->labels->singular_name
			: __( 'Post', 'header-footer-elementor' );

		// Display success message.
		?>
		<div class="notice notice-success is-dismissible hfe-post-duplicator-notice">
			<p>
				<?php
				printf(
					/* translators: %1$s: Post type label, %2$s: Original post title */
					esc_html__( '%1$s duplicated successfully. You are now editing the duplicate of "%2$s".', 'header-footer-elementor' ),
					esc_html( $post_type_label ),
					esc_html( $original_post->post_title )
				);
				?>
			</p>
		</div>
		<?php
	}
}

// Initialize the class.
HFE_Post_Duplicator::instance();
PK���\��ee)inc/class-hfe-elementor-canvas-compat.phpnu�[���<?php
/**
 * HFE_Elementor_Canvas_Compat setup
 *
 * @package header-footer-elementor
 */

/**
 * Astra theme compatibility.
 */
class HFE_Elementor_Canvas_Compat {

	/**
	 * Instance of HFE_Elementor_Canvas_Compat.
	 *
	 * @var HFE_Elementor_Canvas_Compat
	 */
	private static $instance;

	/**
	 *  Initiator
	 *
	 * @return  HFE_Elementor_Canvas_Compat
	 */
	public static function instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new HFE_Elementor_Canvas_Compat();

			add_action( 'wp', [ self::$instance, 'hooks' ] );
		}

		return self::$instance;
	}

	/**
	 * Run all the Actions / Filters.
	 *
	 * @return void
	 */
	public function hooks() {
		if ( hfe_header_enabled() ) {

			// Action `elementor/page_templates/canvas/before_content` is introduced in Elementor Version 1.4.1.
			if ( version_compare( ELEMENTOR_VERSION, '1.4.1', '>=' ) ) {
				add_action( 'elementor/page_templates/canvas/before_content', [ $this, 'render_header' ] );
			} else {
				add_action( 'wp_head', [ $this, 'render_header' ] );
			}
		}

		if ( hfe_footer_enabled() ) {

			// Action `elementor/page_templates/canvas/after_content` is introduced in Elementor Version 1.9.0.
			if ( version_compare( ELEMENTOR_VERSION, '1.9.0', '>=' ) ) {
				add_action( 'elementor/page_templates/canvas/after_content', [ $this, 'render_footer' ] );
			} else {
				add_action( 'wp_footer', [ $this, 'render_footer' ] );
			}
		}

		if ( hfe_is_before_footer_enabled() ) {

			// check if current page template is Elemenntor Canvas.
			if ( 'elementor_canvas' == get_page_template_slug() ) {
				$override_cannvas_template = get_post_meta( hfe_get_before_footer_id(), 'display-on-canvas-template', true );

				if ( '1' == $override_cannvas_template ) {
					add_action( 'elementor/page_templates/canvas/after_content', 'hfe_render_before_footer', 9 );
				}
			}
		}
	}

	/**
	 * Render the header if display template on elementor canvas is enabled
	 * and current template is Elementor Canvas
	 *
	 * @return void
	 */
	public function render_header() {

		// bail if current page template is not Elemenntor Canvas.
		if ( 'elementor_canvas' !== get_page_template_slug() ) {
			return;
		}

		$override_cannvas_template = get_post_meta( get_hfe_header_id(), 'display-on-canvas-template', true );

		if ( '1' == $override_cannvas_template ) {
			hfe_render_header();
		}
	}

	/**
	 * Render the footer if display template on elementor canvas is enabled
	 * and current template is Elementor Canvas
	 *
	 * @return void
	 */
	public function render_footer() {

		// bail if current page template is not Elemenntor Canvas.
		if ( 'elementor_canvas' !== get_page_template_slug() ) {
			return;
		}

		$override_cannvas_template = get_post_meta( get_hfe_footer_id(), 'display-on-canvas-template', true );

		if ( '1' == $override_cannvas_template ) {
			hfe_render_footer();
		}
	}
}

HFE_Elementor_Canvas_Compat::instance();
PK���\�L��~~inc/hfe-functions.phpnu�[���<?php
/**
 * Header Footer Elementor Function
 *
 * @package  header-footer-elementor
 */

defined( 'ABSPATH' ) || exit;

/**
 * Checks if Header is enabled from HFE.
 *
 * @since  1.0.2
 * @return bool True if header is enabled. False if header is not enabled
 */
function hfe_header_enabled() {
	$header_id = Header_Footer_Elementor::get_settings( 'type_header', '' );
	$status    = false;

	if ( '' !== $header_id ) {
		$status = true;
	}

	return apply_filters( 'hfe_header_enabled', $status );
}

/**
 * Checks if Footer is enabled from HFE.
 *
 * @since  1.0.2
 * @return bool True if header is enabled. False if header is not enabled.
 */
function hfe_footer_enabled() {
	$footer_id = Header_Footer_Elementor::get_settings( 'type_footer', '' );
	$status    = false;

	if ( '' !== $footer_id ) {
		$status = true;
	}

	return apply_filters( 'hfe_footer_enabled', $status );
}

/**
 * Get HFE Header ID
 *
 * @since  1.0.2
 * @return (String|boolean) header id if it is set else returns false.
 */
function get_hfe_header_id() {
	$header_id = Header_Footer_Elementor::get_settings( 'type_header', '' );

	if ( '' === $header_id ) {
		$header_id = false;
	}

	return apply_filters( 'get_hfe_header_id', $header_id );
}

/**
 * Get HFE Footer ID
 *
 * @since  1.0.2
 * @return (String|boolean) header id if it is set else returns false.
 */
function get_hfe_footer_id() {
	$footer_id = Header_Footer_Elementor::get_settings( 'type_footer', '' );

	if ( '' === $footer_id ) {
		$footer_id = false;
	}

	return apply_filters( 'get_hfe_footer_id', $footer_id );
}

/**
 * Display header markup.
 *
 * @since  1.0.2
 * @return void
 */
function hfe_render_header() {

	if ( false === apply_filters( 'enable_hfe_render_header', true ) ) {
		return;
	}

	?>
		<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">
			<p class="main-title bhf-hidden" itemprop="headline"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
			<?php Header_Footer_Elementor::get_header_content(); ?>
		</header>

	<?php
}

/**
 * Display footer markup.
 *
 * @since  1.0.2
 * @return void
 */
function hfe_render_footer() {

	if ( false === apply_filters( 'enable_hfe_render_footer', true ) ) {
		return;
	}

	?>
		<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">
			<?php Header_Footer_Elementor::get_footer_content(); ?>
		</footer>
	<?php
}


/**
 * Get HFE Before Footer ID
 *
 * @since  1.0.2
 * @return String|boolean before footer id if it is set else returns false.
 */
function hfe_get_before_footer_id() {

	$before_footer_id = Header_Footer_Elementor::get_settings( 'type_before_footer', '' );

	if ( '' === $before_footer_id ) {
		$before_footer_id = false;
	}

	return apply_filters( 'get_hfe_before_footer_id', $before_footer_id );
}

/**
 * Checks if Before Footer is enabled from HFE.
 *
 * @since  1.0.2
 * @return bool True if before footer is enabled. False if before footer is not enabled.
 */
function hfe_is_before_footer_enabled() {

	$before_footer_id = Header_Footer_Elementor::get_settings( 'type_before_footer', '' );
	$status           = false;

	if ( '' !== $before_footer_id ) {
		$status = true;
	}

	return apply_filters( 'hfe_before_footer_enabled', $status );
}

/**
 * Display before footer markup.
 *
 * @since  1.0.2
 * @return void
 */
function hfe_render_before_footer() {

	if ( false === apply_filters( 'enable_hfe_render_before_footer', true ) ) {
		return;
	}

	?>
		<div class="hfe-before-footer-wrap">
			<?php Header_Footer_Elementor::get_before_footer_content(); ?>
		</div>
	<?php
}
PK���\�k�� inc/lib/class-uae-nps-survey.phpnu�[���<?php
/**
 * UAE.
 *
 * @package UAE
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'Uae_Nps_Survey' ) ) :

	/**
	 * Admin
	 */
	class Uae_Nps_Survey {
		/**
		 * Instance
		 *
		 * @since 1.0.0
		 * @var (Object) Uae_Nps_Survey
		 */
		private static $instance = null;

		/**
		 * Get Instance
		 *
		 * @since 1.0.0
		 *
		 * @return object Class object.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor.
		 *
		 * @since 1.0.0
		 */
		private function __construct() {
			$this->version_check();
			add_action( 'init', array( $this, 'load' ), 999 );
		}

		/**
		 * Version Check
		 *
		 * @return void
		 */
		public function version_check() {

			$file = realpath( dirname( __FILE__ ) . '/nps-survey/version.json' );

			// Is file exist?
			if ( is_file( $file ) ) {
				
				$file_data = json_decode( file_get_contents( $file ), true ); //phpcs:ignore WordPressVIPMinimum.Performance.FetchingRemoteData.FileGetContentsUnknown
				
				global $nps_survey_version, $nps_survey_init;
				
				$path = realpath( dirname( __FILE__ ) . '/nps-survey/nps-survey.php' );
				
				$version = isset( $file_data['nps-survey'] ) ? $file_data['nps-survey'] : 0;

				if ( null === $nps_survey_version ) {
					$nps_survey_version = '1.0.0';
				}

				// Compare versions.
				if ( version_compare( $version, $nps_survey_version, '>=' ) ) {
					$nps_survey_version = $version;
					$nps_survey_init    = $path;
				}
			}
		}

		/**
		 * Load latest plugin
		 *
		 * @return void
		 */
		public function load() {

			global $nps_survey_version, $nps_survey_init;
			if ( is_file( realpath( $nps_survey_init ) ) ) {
				include_once realpath( $nps_survey_init );
			}
		}
	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	Uae_Nps_Survey::get_instance();

endif;
PK���\���
��!inc/lib/astra-notices/notices.cssnu�[���.astra-review-notice-container {
	display: flex;
	align-items: center;
	padding-top: 10px;
}

.astra-review-notice-container .dashicons {
    font-size: 1.4em;
	padding-left: 10px;
}

.astra-review-notice-container a {
    padding-left: 5px;
    text-decoration: none;
}

.astra-review-notice-container .dashicons:first-child {
    padding-left: 0;
}

.astra-notice-container .notice-image img {
    max-width: 90px;
}

.astra-notice-container .notice-content .notice-heading {
    padding-bottom: 5px;
}

.astra-notice-container .notice-content {
    margin-left: 15px;
}

.astra-notice-container {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: left;
    align-items: center;
}PK���\��@d�-�--inc/lib/astra-notices/class-astra-notices.phpnu�[���<?php
/**
 * Astra Notices
 *
 * An easy to use PHP Library to add dismissible admin notices in the WordPress admin.
 *
 * @package Astra Notices
 * @since 1.0.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'Astra_Notices' ) ) :

	/**
	 * Astra_Notices
	 *
	 * @since 1.0.0
	 */
	class Astra_Notices {

		/**
		 * Notices
		 *
		 * @access private
		 * @var array Notices.
		 * @since 1.0.0
		 */
		private static $version = '1.1.16';

		/**
		 * Notices
		 *
		 * @access private
		 * @var array Notices.
		 * @since 1.0.0
		 */
		private static $notices = array();

		/**
		 * Instance
		 *
		 * @access private
		 * @var object Class object.
		 * @since 1.0.0
		 */
		private static $instance;

		/**
		 * Initiator
		 *
		 * @since 1.0.0
		 * @return object initialized object of class.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @since 1.0.0
		 */
		public function __construct() {
			add_action( 'admin_notices', array( $this, 'show_notices' ), 30 );
			add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
			add_action( 'wp_ajax_astra-notice-dismiss', array( $this, 'dismiss_notice' ) );
			add_filter( 'wp_kses_allowed_html', array( $this, 'add_data_attributes' ), 10, 2 );
		}

		/**
		 * Filters and Returns a list of allowed tags and attributes for a given context.
		 *
		 * @param array  $allowedposttags array of allowed tags.
		 * @param string $context Context type (explicit).
		 * @since 1.0.0
		 * @return array
		 */
		public function add_data_attributes( $allowedposttags, $context ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed
			$allowedposttags['a']['data-repeat-notice-after'] = true;

			return $allowedposttags;
		}

		/**
		 * Add Notice.
		 *
		 * @since 1.0.0
		 * @param array $args Notice arguments.
		 * @return void
		 */
		public static function add_notice( $args = array() ) {
			self::$notices[] = $args;

			if ( ! isset( $args['id'] ) ) {
				return;
			}

			$notice_id = sanitize_key( $args['id'] ); // Notice ID.
			$notices   = get_option( 'allowed_astra_notices', array() );
			if ( ! in_array( $notice_id, $notices, true ) ) {
				$notices[] = $notice_id; // Add notice id to the array.
				update_option( 'allowed_astra_notices', $notices ); // Update the option.
			}
		}

		/**
		 * Dismiss Notice.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function dismiss_notice() {
			check_ajax_referer( 'astra-notices', 'nonce' );

			$notice_id           = ( isset( $_POST['notice_id'] ) ) ? sanitize_key( wp_unslash( $_POST['notice_id'] ) ) : '';
			$repeat_notice_after = ( isset( $_POST['repeat_notice_after'] ) ) ? absint( $_POST['repeat_notice_after'] ) : '';
			$notice              = $this->get_notice_by_id( $notice_id );
			$capability          = isset( $notice['capability'] ) ? $notice['capability'] : 'manage_options';

			if ( ! apply_filters( 'astra_notices_user_cap_check', current_user_can( $capability ) ) ) {
				return;
			}

			$allowed_notices = get_option( 'allowed_astra_notices', array() ); // Get allowed notices.

			// Define restricted user meta keys.
			$wp_default_meta_keys = array(
				'wp_capabilities',
				'wp_user_level',
				'wp_user-settings',
				'account_status',
				'session_tokens',
			);

			// if $notice_id does not start with astra-notices-id and notice_id is not from the allowed notices, then return.
			if ( strpos( $notice_id, 'astra-notices-id-' ) !== 0 && ( ! in_array( $notice_id, $allowed_notices, true ) ) ) {
				return;
			}

			// Valid inputs?
			if ( ! empty( $notice_id ) ) {

				if ( in_array( $notice_id, $wp_default_meta_keys, true ) ) {
					wp_send_json_error( esc_html__( 'Invalid notice ID.', 'astra-notices' ) );
				}

				if ( ! empty( $repeat_notice_after ) ) {
					set_transient( $notice_id, true, $repeat_notice_after );
				} else {
					update_user_meta( get_current_user_id(), $notice_id, 'notice-dismissed' );
				}

				wp_send_json_success();
			}

			wp_send_json_error();
		}

		/**
		 * Enqueue Scripts.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function enqueue_scripts() {
			wp_register_style( 'astra-notices', self::get_url() . 'notices.css', array(), self::$version );
			wp_register_script( 'astra-notices', self::get_url() . 'notices.js', array( 'jquery' ), self::$version, true );
			wp_localize_script(
				'astra-notices',
				'astraNotices',
				array(
					'_notice_nonce' => wp_create_nonce( 'astra-notices' ),
				)
			);
		}

		/**
		 * Sort the notices based on the given priority of the notice.
		 * This function is called from usort()
		 *
		 * @since 1.5.2
		 * @param array $notice_1 First notice.
		 * @param array $notice_2 Second Notice.
		 * @return array
		 */
		public function sort_notices( $notice_1, $notice_2 ) {
			if ( ! isset( $notice_1['priority'] ) ) {
				$notice_1['priority'] = 10;
			}
			if ( ! isset( $notice_2['priority'] ) ) {
				$notice_2['priority'] = 10;
			}

			return $notice_1['priority'] - $notice_2['priority'];
		}

		/**
		 * Get all registered notices.
		 * Since v1.1.8 it is recommended to register the notices on
		 *
		 * @return array|null
		 */
		private function get_notices() {
			usort( self::$notices, array( $this, 'sort_notices' ) );

			return self::$notices;
		}

		/**
		 * Get notice by notice_id
		 *
		 * @param string $notice_id Notice id.
		 *
		 * @return array notice based on the notice id.
		 */
		private function get_notice_by_id( $notice_id ) {
			if ( empty( $notice_id ) ) {
				return array();
			}

			$notices = $this->get_notices();
			$notice  = wp_list_filter(
				$notices,
				array(
					'id' => $notice_id,
				)
			);

			return ( ! empty( $notice ) && isset( $notice[0] ) ) ? $notice[0] : array();
		}

		/**
		 * Display the notices in the WordPress admin.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function show_notices() {
			$defaults = array(
				'id'                         => '',      // Optional, Notice ID. If empty it set `astra-notices-id-<$array-index>`.
				'type'                       => 'info',  // Optional, Notice type. Default `info`. Expected [info, warning, notice, error].
				'message'                    => '',      // Optional, Message.
				'show_if'                    => true,    // Optional, Show notice on custom condition. E.g. 'show_if' => if( is_admin() ) ? true, false, .
				'repeat-notice-after'        => '',      // Optional, Dismiss-able notice time. It'll auto show after given time.
				'display-notice-after'       => false,      // Optional, Dismiss-able notice time. It'll auto show after given time.
				'class'                      => '',      // Optional, Additional notice wrapper class.
				'priority'                   => 10,      // Priority of the notice.
				'display-with-other-notices' => true,    // Should the notice be displayed if other notices  are being displayed from Astra_Notices.
				'is_dismissible'             => true,
				'capability'                 => 'manage_options', // User capability - This capability is required for the current user to see this notice.
			);

			// Count for the notices that are rendered.
			$notices_displayed = 0;
			$notices           = $this->get_notices();

			foreach ( $notices as $key => $notice ) {
				$notice = wp_parse_args( $notice, $defaults );

				// Show notices only for users with `manage_options` cap.
				if ( ! current_user_can( $notice['capability'] ) ) {
					continue;
				}

				$notice['id']      = self::get_notice_id( $notice, $key );
				$notice['classes'] = self::get_wrap_classes( $notice );

				// Notices visible after transient expire.
				if ( isset( $notice['show_if'] ) && true === $notice['show_if'] ) {

					// don't display the notice if it is not supposed to be displayed with other notices.
					if ( 0 !== $notices_displayed && false === $notice['display-with-other-notices'] ) {
						continue;
					}

					if ( self::is_expired( $notice ) ) {

						self::markup( $notice );
						++$notices_displayed;
					}
				}
			}
		}

		/**
		 * Render a notice.
		 *
		 * @since 1.0.0
		 * @param  array $notice Notice markup.
		 * @return void
		 */
		public static function markup( $notice = array() ) {
			wp_enqueue_script( 'astra-notices' );
			wp_enqueue_style( 'astra-notices' );

			do_action( 'astra_notice_before_markup' );

			do_action( "astra_notice_before_markup_{$notice['id']}" );

			?>
			<div id="<?php echo esc_attr( $notice['id'] ); ?>" class="<?php echo 'astra-notice-wrapper ' . esc_attr( $notice['classes'] ); ?>" data-repeat-notice-after="<?php echo esc_attr( $notice['repeat-notice-after'] ); ?>">
				<div class="astra-notice-container">
					<?php do_action( "astra_notice_inside_markup_{$notice['id']}" ); ?>
					<?php echo wp_kses_post( $notice['message'] ); ?>
				</div>
			</div>
			<?php

			do_action( "astra_notice_after_markup_{$notice['id']}" );

			do_action( 'astra_notice_after_markup' );
		}

		/**
		 * Get wrapper classes for a notice.
		 *
		 * @since 1.0.0
		 *
		 * @param  array $notice Notice arguments.
		 * @return array       Notice wrapper classes.
		 */
		private static function get_wrap_classes( $notice ) {
			$classes = array( 'astra-notice', 'notice' );

			if ( $notice['is_dismissible'] ) {
				$classes[] = 'is-dismissible';
			}

			$classes[] = $notice['class'];
			if ( isset( $notice['type'] ) && '' !== $notice['type'] ) {
				$classes[] = 'notice-' . $notice['type'];
			}

			return esc_attr( implode( ' ', $classes ) );
		}

		/**
		 * Get HTML ID for a given notice.
		 *
		 * @since 1.0.0
		 *
		 * @param  array $notice Notice arguments.
		 * @param  int   $key    Notice array index.
		 * @return string HTML if for the notice.
		 */
		private static function get_notice_id( $notice, $key ) {
			if ( isset( $notice['id'] ) && ! empty( $notice['id'] ) ) {
				return $notice['id'];
			}

			return 'astra-notices-id-' . $key;
		}

		/**
		 * Check if the notice is expires.
		 *
		 * @since 1.0.0
		 *
		 * @param  array $notice Notice arguments.
		 * @return boolean
		 */
		private static function is_expired( $notice ) {
			$transient_status = get_transient( $notice['id'] );

			if ( false === $transient_status ) {

				if ( isset( $notice['display-notice-after'] ) && false !== $notice['display-notice-after'] ) {

					if ( 'delayed-notice' !== get_user_meta( get_current_user_id(), $notice['id'], true ) &&
						'notice-dismissed' !== get_user_meta( get_current_user_id(), $notice['id'], true ) ) {
						set_transient( $notice['id'], 'delayed-notice', $notice['display-notice-after'] );
						update_user_meta( get_current_user_id(), $notice['id'], 'delayed-notice' );

						return false;
					}
				}

				// Check the user meta status if current notice is dismissed or delay completed.
				$meta_status = get_user_meta( get_current_user_id(), $notice['id'], true );

				if ( empty( $meta_status ) || 'delayed-notice' === $meta_status ) {
					return true;
				}
			}

			return false;
		}

		/**
		 * Get base URL for the astra-notices.
		 *
		 * @return mixed URL.
		 */
		public static function get_url() {
			$path      = wp_normalize_path( dirname( __FILE__ ) ); // phpcs:ignore Modernize.FunctionCalls.Dirname.FileConstant
			$theme_dir = wp_normalize_path( get_template_directory() );

			if ( strpos( $path, $theme_dir ) !== false ) {
				return trailingslashit( get_template_directory_uri() . str_replace( $theme_dir, '', $path ) );
			} else {
				return plugin_dir_url( __FILE__ );
			}
		}
	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	Astra_Notices::get_instance();

endif;
PK���\��d� inc/lib/astra-notices/notices.jsnu�[���/**
 * Customizer controls toggles
 *
 * @package Astra
 */

( function( $ ) {

	/**
	 * Helper class for the main Customizer interface.
	 *
	 * @since 1.0.0
	 * @class ASTCustomizer
	 */
	AstraNotices = {

		/**
		 * Initializes our custom logic for the Customizer.
		 *
		 * @since 1.0.0
		 * @method init
		 */
		init: function()
		{
			this._bind();
		},

		/**
		 * Binds events for the Astra Portfolio.
		 *
		 * @since 1.0.0
		 * @access private
		 * @method _bind
		 */
		_bind: function()
		{
			$( document ).on('click', '.astra-notice-close', AstraNotices._dismissNoticeNew );
			$( document ).on('click', '.astra-notice .notice-dismiss', AstraNotices._dismissNotice );
		},

		_dismissNotice: function( event ) {
			event.preventDefault();

			var repeat_notice_after = $( this ).parents('.astra-notice').data( 'repeat-notice-after' ) || '';
			var notice_id = $( this ).parents('.astra-notice').attr( 'id' ) || '';

			AstraNotices._ajax( notice_id, repeat_notice_after );
		},

		_dismissNoticeNew: function( event ) {
			event.preventDefault();

			var repeat_notice_after = $( this ).attr( 'data-repeat-notice-after' ) || '';
			var notice_id = $( this ).parents('.astra-notice').attr( 'id' ) || '';

			var $el = $( this ).parents('.astra-notice');
			$el.fadeTo( 100, 0, function() {
				$el.slideUp( 100, function() {
					$el.remove();
				});
			});

			AstraNotices._ajax( notice_id, repeat_notice_after );

			var link   = $( this ).attr( 'href' ) || '';
			var target = $( this ).attr( 'target' ) || '';
			if( '' !== link && '_blank' === target ) {
				window.open(link , '_blank');
			}
		},

		_ajax: function( notice_id, repeat_notice_after ) {
			
			if( '' === notice_id ) {
				return;
			}

			$.ajax({
				url: ajaxurl,
				type: 'POST',
				data: {
					action            : 'astra-notice-dismiss',
					nonce             : astraNotices._notice_nonce,
					notice_id         : notice_id,
					repeat_notice_after : parseInt( repeat_notice_after ),
				},
			});

		}
	};

	$( function() {
		AstraNotices.init();
	} );
} )( jQuery );PK���\�|9�		"inc/lib/target-rule/target-rule.jsnu�[���;(function ( $, window, undefined ) {

	var init_target_rule_select2  = function( selector ) {
		
		$(selector).astselect2({

			placeholder: astRules.search,

			ajax: {
			    url: ajaxurl,
			    dataType: 'json',
			    method: 'post',
			    delay: 250,
			    data: function (params) {
			      	return {
			        	q: params.term, // search term
				        page: params.page,
						action: 'hfe_get_posts_by_query',
						nonce: astRules.ajax_nonce
			    	};
				},
				processResults: function (data) {
					// console.log(data);
					// console.log("inside");
		            // parse the results into the format expected by Select2.
		            // since we are using custom formatting functions we do not need to
		            // alter the remote JSON data

		            return {
		                results: data
		            };
		        },
			    cache: true
			},
			minimumInputLength: 2,
			language: astRules.ast_lang
		});
	};

	var update_target_rule_input = function(wrapper) {
		var rule_input 		= wrapper.find('.ast-target_rule-input');
		var old_value = rule_input.val();
		var new_value = [];
		
		wrapper.find('.astra-target-rule-condition').each(function(i) {
			
			var $this 			= $(this);
			var temp_obj 		= {};
			var rule_condition 	= $this.find('select.target_rule-condition');
			var specific_page 	= $this.find('select.target_rule-specific-page');

			var rule_condition_val 	= rule_condition.val();
			var specific_page_val 	= specific_page.val();
			
			if ( '' != rule_condition_val ) {

				temp_obj = {
					type 	: rule_condition_val,
					specific: specific_page_val
				} 
				
				new_value.push( temp_obj );
			};
		})


		var rules_string = JSON.stringify( new_value );
		rule_input.val( rules_string );
	};

	var update_close_button = function(wrapper) {

		type 		= wrapper.closest('.ast-target-rule-wrapper').attr('data-type');
		rules 		= wrapper.find('.astra-target-rule-condition');
		show_close	= false;

		if ( 'display' == type ) {
			if ( rules.length > 1 ) {
				show_close = true;
			}
		}else{
			show_close = true;
		}

		rules.each(function() {
			if ( show_close ) {
				jQuery(this).find('.target_rule-condition-delete').removeClass('ast-hidden');
			}else{
				jQuery(this).find('.target_rule-condition-delete').addClass('ast-hidden');
			}
		});
	};

	var update_exclusion_button = function( force_show, force_hide ) {
		var display_on = $('.ast-target-rule-display-on-wrap');
		var exclude_on = $('.ast-target-rule-exclude-on-wrap');
		
		var exclude_field_wrap = exclude_on.closest('tr');
		var add_exclude_block  = display_on.find('.target_rule-add-exclusion-rule');
		var exclude_conditions = exclude_on.find('.astra-target-rule-condition');
		
		if ( true == force_hide ) {
			exclude_field_wrap.addClass( 'ast-hidden' );
			add_exclude_block.removeClass( 'ast-hidden' );
		}else if( true == force_show ){
			exclude_field_wrap.removeClass( 'ast-hidden' );
			add_exclude_block.addClass( 'ast-hidden' );
		}else{
			
			if ( 1 == exclude_conditions.length && '' == $(exclude_conditions[0]).find('select.target_rule-condition').val() ) {
				exclude_field_wrap.addClass( 'ast-hidden' );
				add_exclude_block.removeClass( 'ast-hidden' );
			}else{
				exclude_field_wrap.removeClass( 'ast-hidden' );
				add_exclude_block.addClass( 'ast-hidden' );
			}
		}

	};

	$(document).ready(function($) {

		jQuery( '.astra-target-rule-condition' ).each( function() {
			var $this 			= $( this ),
				condition 		= $this.find('select.target_rule-condition'),
				condition_val 	= condition.val(),
				specific_page 	= $this.next( '.target_rule-specific-page-wrap' );

			if( 'specifics' == condition_val ) {
				specific_page.slideDown( 300 );
			}
		} );

		
		jQuery('select.target-rule-select2').each(function(index, el) {
			init_target_rule_select2( el );
		});

		jQuery('.ast-target-rule-selector-wrapper').each(function() {
			update_close_button( jQuery(this) );
		})

		/* Show hide exclusion button */
		update_exclusion_button();

		jQuery( document ).on( 'change', '.astra-target-rule-condition select.target_rule-condition' , function( e ) {
			
			var $this 		= jQuery(this),
				this_val 	= $this.val(),
				field_wrap 	= $this.closest('.ast-target-rule-wrapper');

			if( 'specifics' == this_val ) {
				$this.closest( '.astra-target-rule-condition' ).next( '.target_rule-specific-page-wrap' ).slideDown( 300 );
			} else {
				$this.closest( '.astra-target-rule-condition' ).next( '.target_rule-specific-page-wrap' ).slideUp( 300 );
			}

			update_target_rule_input( field_wrap );
		} );

		jQuery( '.ast-target-rule-selector-wrapper' ).on( 'change', '.target-rule-select2', function(e) {
			var $this 		= jQuery( this ),
				field_wrap 	= $this.closest('.ast-target-rule-wrapper');

			update_target_rule_input( field_wrap );
		});
		
		jQuery( '.ast-target-rule-selector-wrapper' ).on( 'click', '.target_rule-add-rule-wrap a', function(e) {
			e.preventDefault();
			e.stopPropagation();
			var $this 	= jQuery( this ),
				id 		= $this.attr( 'data-rule-id' ),
				new_id 	= parseInt(id) + 1,
				type 	= $this.attr( 'data-rule-type' ),
				rule_wrap = $this.closest('.ast-target-rule-selector-wrapper').find('.target_rule-builder-wrap'),
				template  = wp.template( 'astra-target-rule-' + type + '-condition' ),
				field_wrap 		= $this.closest('.ast-target-rule-wrapper');

			rule_wrap.append( template( { id : new_id, type : type } ) );
			
			init_target_rule_select2( '.ast-target-rule-'+type+'-on .target-rule-select2' );
			
			$this.attr( 'data-rule-id', new_id );

			update_close_button( field_wrap );
		});

		jQuery( '.ast-target-rule-selector-wrapper' ).on( 'click', '.target_rule-condition-delete', function(e) {
			var $this 			= jQuery( this ),
				rule_condition 	= $this.closest('.astra-target-rule-condition'),
				field_wrap 		= $this.closest('.ast-target-rule-wrapper');
				cnt 			= 0,
				data_type 		= field_wrap.attr( 'data-type' ),
				optionVal 		= $this.siblings('.target_rule-condition-wrap').children('.target_rule-condition').val();

			if ( 'exclude' == data_type ) {
					
				if ( 1 === field_wrap.find('.target_rule-condition').length ) {

					field_wrap.find('.target_rule-condition').val('');
					field_wrap.find('.target_rule-specific-page').val('');
					field_wrap.find('.target_rule-condition').trigger('change');
					update_exclusion_button( false, true );

				}else{
					$this.parent('.astra-target-rule-condition').next('.target_rule-specific-page-wrap').remove();
					rule_condition.remove();
				}

			} else {

				$this.parent('.astra-target-rule-condition').next('.target_rule-specific-page-wrap').remove();
				rule_condition.remove();
			}

			field_wrap.find('.astra-target-rule-condition').each(function(i) {
				var condition       = jQuery( this ),
					old_rule_id     = condition.attr('data-rule'),
					select_location = condition.find('.target_rule-condition'),
					select_specific = condition.find('.target_rule-specific-page'),
					location_name   = select_location.attr( 'name' );
					
				condition.attr( 'data-rule', i );

				select_location.attr( 'name', location_name.replace('['+old_rule_id+']', '['+i+']') );
				
				condition.removeClass('ast-target-rule-'+old_rule_id).addClass('ast-target-rule-'+i);

				cnt = i;
			});

			field_wrap.find('.target_rule-add-rule-wrap a').attr( 'data-rule-id', cnt )

			update_close_button( field_wrap );
			update_target_rule_input( field_wrap );
		});
		
		jQuery( '.ast-target-rule-selector-wrapper' ).on( 'click', '.target_rule-add-exclusion-rule a', function(e) {
			e.preventDefault();
			e.stopPropagation();
			update_exclusion_button( true );
		});
		
	});

}(jQuery, window));
PK���\^AF����7inc/lib/target-rule/class-astra-target-rules-fields.phpnu�[���<?php
/**
 * Astra Advanced Headers Bar Post Meta Box
 *
 * @package   Astra Pro
 */

namespace HFE\Lib;

/**
 * Meta Boxes setup
 */
class Astra_Target_Rules_Fields {


	/**
	 * Instance
	 *
	 * @since  1.0.0
	 *
	 * @var $instance
	 */
	private static $instance;

	/**
	 * Meta Option
	 *
	 * @since  1.0.0
	 *
	 * @var $meta_option
	 */
	private static $meta_option;

	/**
	 * Current page type
	 *
	 * @since  1.0.0
	 *
	 * @var $current_page_type
	 */
	private static $current_page_type = null;

	/**
	 * CUrrent page data
	 *
	 * @since  1.0.0
	 *
	 * @var $current_page_data
	 */
	private static $current_page_data = array();

	/**
	 * User Selection Option
	 *
	 * @since  1.0.0
	 *
	 * @var $user_selection
	 */
	private static $user_selection;

	/**
	 * Location Selection Option
	 *
	 * @since  1.0.0
	 *
	 * @var $location_selection
	 */
	private static $location_selection;

	/**
	 * Initiator
	 *
	 * @since  1.0.0
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}

		return self::$instance;
	}

	/**
	 * Constructor
	 *
	 * @since 1.0.0
	 */
	public function __construct() {
		define( 'AST_TARGET_RULE_URI', plugins_url( '/', __FILE__ ) );
		define( 'AST_TARGET_RULE_VER', '1.0.0' );
		define( 'AST_TARGET_RULE_DIR', plugin_dir_path( __FILE__ ) );

		add_action( 'admin_action_edit', array( $this, 'initialize_options' ) );
		add_action( 'wp_ajax_hfe_get_posts_by_query', array( $this, 'hfe_get_posts_by_query' ) );
	}

	/**
	 * Initialize member variables.
	 *
	 * @return void
	 */
	public function initialize_options() {
		self::$user_selection     = self::get_user_selections();
		self::$location_selection = self::get_location_selections();
	}

	/**
	 * Get location selection options.
	 *
	 * @return array
	 */
	public static function get_location_selections() {
		$args = array(
			'public'   => true,
			'_builtin' => true,
		);

		$post_types = get_post_types( $args, 'objects' );
		unset( $post_types['attachment'] );

		$args['_builtin'] = false;
		$custom_post_type = get_post_types( $args, 'objects' );

		$post_types = apply_filters( 'astra_location_rule_post_types', array_merge( $post_types, $custom_post_type ) );

		$special_pages = array(
			'special-404'    => __( '404 Page', 'header-footer-elementor' ),
			'special-search' => __( 'Search Page', 'header-footer-elementor' ),
			'special-blog'   => __( 'Blog / Posts Page', 'header-footer-elementor' ),
			'special-front'  => __( 'Front Page', 'header-footer-elementor' ),
			'special-date'   => __( 'Date Archive', 'header-footer-elementor' ),
			'special-author' => __( 'Author Archive', 'header-footer-elementor' ),
		);

		if ( class_exists( 'WooCommerce' ) ) {
			$special_pages['special-woo-shop'] = __( 'WooCommerce Shop Page', 'header-footer-elementor' );
		}

		$selection_options = array(
			'basic'         => array(
				'label' => __( 'Basic', 'header-footer-elementor' ),
				'value' => array(
					'basic-global'    => __( 'Entire Website', 'header-footer-elementor' ),
					'basic-singulars' => __( 'All Singulars', 'header-footer-elementor' ),
					'basic-archives'  => __( 'All Archives', 'header-footer-elementor' ),
				),
			),

			'special-pages' => array(
				'label' => __( 'Special Pages', 'header-footer-elementor' ),
				'value' => $special_pages,
			),
		);

		$args = array(
			'public' => true,
		);

		$taxonomies = get_taxonomies( $args, 'objects' );

		if ( ! empty( $taxonomies ) ) {
			foreach ( $taxonomies as $taxonomy ) {

				// skip post format taxonomy.
				if ( 'post_format' == $taxonomy->name ) {
					continue;
				}

				foreach ( $post_types as $post_type ) {
					$post_opt = self::get_post_target_rule_options( $post_type, $taxonomy );

					if ( isset( $selection_options[ $post_opt['post_key'] ] ) ) {
						if ( ! empty( $post_opt['value'] ) && is_array( $post_opt['value'] ) ) {
							foreach ( $post_opt['value'] as $key => $value ) {
								if ( ! in_array( $value, $selection_options[ $post_opt['post_key'] ]['value'] ) ) {
									$selection_options[ $post_opt['post_key'] ]['value'][ $key ] = $value;
								}
							}
						}
					} else {
						$selection_options[ $post_opt['post_key'] ] = array(
							'label' => $post_opt['label'],
							'value' => $post_opt['value'],
						);
					}
				}
			}
		}

		$selection_options['specific-target'] = array(
			'label' => __( 'Specific Target', 'header-footer-elementor' ),
			'value' => array(
				'specifics' => __( 'Specific Pages / Posts / Taxonomies, etc.', 'header-footer-elementor' ),
			),
		);

		/**
		 * Filter options displayed in the display conditions select field of Display conditions.
		 *
		 * @since 1.5.0
		 */
		return apply_filters( 'astra_display_on_list', $selection_options );
	}

	/**
	 * Get user selection options.
	 *
	 * @return array
	 */
	public static function get_user_selections() {
		$selection_options = array(
			'basic'    => array(
				'label' => __( 'Basic', 'header-footer-elementor' ),
				'value' => array(
					'all'        => __( 'All', 'header-footer-elementor' ),
					'logged-in'  => __( 'Logged In', 'header-footer-elementor' ),
					'logged-out' => __( 'Logged Out', 'header-footer-elementor' ),
				),
			),

			'advanced' => array(
				'label' => __( 'Advanced', 'header-footer-elementor' ),
				'value' => array(),
			),
		);

		/* User roles */
		$roles = get_editable_roles();

		foreach ( $roles as $slug => $data ) {
			$selection_options['advanced']['value'][ $slug ] = $data['name'];
		}

		/**
		 * Filter options displayed in the user select field of Display conditions.
		 *
		 * @since 1.5.0
		 */
		return apply_filters( 'astra_user_roles_list', $selection_options );
	}

	/**
	 * Get location label by key.
	 *
	 * @param string $key Location option key.
	 * @return string
	 */
	public static function get_location_by_key( $key ) {
		if ( ! isset( self::$location_selection ) || empty( self::$location_selection ) ) {
			self::$location_selection = self::get_location_selections();
		}
		$location_selection = self::$location_selection;

		foreach ( $location_selection as $location_grp ) {
			if ( isset( $location_grp['value'][ $key ] ) ) {
				return $location_grp['value'][ $key ];
			}
		}

		if ( strpos( $key, 'post-' ) !== false ) {
			$post_id = (int) str_replace( 'post-', '', $key );
			return get_the_title( $post_id );
		}

		// taxonomy options.
		if ( strpos( $key, 'tax-' ) !== false ) {
			$tax_id = (int) str_replace( 'tax-', '', $key );
			$term   = get_term( $tax_id );

			if ( ! is_wp_error( $term ) ) {
				$term_taxonomy = ucfirst( str_replace( '_', ' ', $term->taxonomy ) );
				return $term->name . ' - ' . $term_taxonomy;
			} else {
				return '';
			}
		}

		return $key;
	}

	/**
	 * Get user label by key.
	 *
	 * @param string $key User option key.
	 * @return string
	 */
	public static function get_user_by_key( $key ) {
		if ( ! isset( self::$user_selection ) || empty( self::$user_selection ) ) {
			self::$user_selection = self::get_user_selections();
		}
		$user_selection = self::$user_selection;

		if ( isset( $user_selection['basic']['value'][ $key ] ) ) {
			return $user_selection['basic']['value'][ $key ];
		} elseif ( $user_selection['advanced']['value'][ $key ] ) {
			return $user_selection['advanced']['value'][ $key ];
		}
		return $key;
	}

	/**
	 * Ajax handeler to return the posts based on the search query.
	 * When searching for the post/pages only titles are searched for.
	 *
	 * @since  1.0.0
	 */
	function hfe_get_posts_by_query() {

		check_ajax_referer( 'hfe-get-posts-by-query', 'nonce' );

		if ( ! current_user_can( 'edit_posts' ) ) {
			wp_send_json_error( __( 'Unauthorized.', 'header-footer-elementor' ) );
		}

		$search_string = isset( $_POST['q'] ) ? sanitize_text_field( $_POST['q'] ) : '';
		$data          = array();
		$result        = array();

		$args = array(
			'public'   => true,
			'_builtin' => false,
		);

		$output     = 'names'; // names or objects, note names is the default.
		$operator   = 'and'; // also supports 'or'.
		$post_types = get_post_types( $args, $output, $operator );

		unset( $post_types['elementor-hf'] ); //Exclude EHF templates.

		$post_types['Posts'] = 'post';
		$post_types['Pages'] = 'page';

		foreach ( $post_types as $key => $post_type ) {
			$data = array();

			add_filter( 'posts_search', array( $this, 'search_only_titles' ), 10, 2 );

			$query = new \WP_Query(
				array(
					's'              => $search_string,
					'post_type'      => $post_type,
					'posts_per_page' => 50,
				)
			);

			if ( $query->have_posts() ) {
				while ( $query->have_posts() ) {
					$query->the_post();
					$title  = get_the_title();
					$title .= ( 0 != $query->post->post_parent ) ? ' (' . get_the_title( $query->post->post_parent ) . ')' : '';
					$id     = get_the_id();
					$data[] = array(
						'id'   => 'post-' . $id,
						'text' => $title,
					);
				}
			}

			if ( is_array( $data ) && ! empty( $data ) ) {
				$result[] = array(
					'text'     => $key,
					'children' => $data,
				);
			}
		}

		$data = array();

		wp_reset_postdata();

		$args = array(
			'public' => true,
		);

		$output     = 'objects'; // names or objects, note names is the default.
		$operator   = 'and'; // also supports 'or'.
		$taxonomies = get_taxonomies( $args, $output, $operator );

		foreach ( $taxonomies as $taxonomy ) {
			$terms = get_terms(
				$taxonomy->name,
				array(
					'orderby'    => 'count',
					'hide_empty' => 0,
					'name__like' => $search_string,
				)
			);

			$data = array();

			$label = ucwords( $taxonomy->label );

			if ( ! empty( $terms ) ) {
				foreach ( $terms as $term ) {
					$term_taxonomy_name = ucfirst( str_replace( '_', ' ', $taxonomy->name ) );

					$data[] = array(
						'id'   => 'tax-' . $term->term_id,
						'text' => $term->name . ' archive page',
					);

					$data[] = array(
						'id'   => 'tax-' . $term->term_id . '-single-' . $taxonomy->name,
						'text' => 'All singulars from ' . $term->name,
					);
				}
			}

			if ( is_array( $data ) && ! empty( $data ) ) {
				$result[] = array(
					'text'     => $label,
					'children' => $data,
				);
			}
		}

		// return the result in json.
		wp_send_json( $result );
	}

	/**
	 * Return search results only by post title.
	 * This is only run from hfe_get_posts_by_query()
	 *
	 * @param  (string)   $search   Search SQL for WHERE clause.
	 * @param  (WP_Query) $wp_query The current WP_Query object.
	 *
	 * @return (string) The Modified Search SQL for WHERE clause.
	 */
	function search_only_titles( $search, $wp_query ) {
		if ( ! empty( $search ) && ! empty( $wp_query->query_vars['search_terms'] ) ) {
			global $wpdb;

			$q = $wp_query->query_vars;
			$n = ! empty( $q['exact'] ) ? '' : '%';

			$search = array();

			foreach ( (array) $q['search_terms'] as $term ) {
				$search[] = $wpdb->prepare( "$wpdb->posts.post_title LIKE %s", $n . $wpdb->esc_like( $term ) . $n );
			}

			if ( ! is_user_logged_in() ) {
				$search[] = "$wpdb->posts.post_password = ''";
			}

			$search = ' AND ' . implode( ' AND ', $search );
		}

		return $search;
	}

	/**
	 * Function Name: admin_styles.
	 * Function Description: admin_styles.
	 */
	public function admin_styles() {
		wp_enqueue_script( 'astra-select2', AST_TARGET_RULE_URI . 'select2.js', array( 'jquery' ), AST_TARGET_RULE_VER, true );

		$wp_lang  = get_locale();
		$ast_lang = '';
		if ( '' !== $wp_lang ) {
			$select2_lang = array(
				''               => 'en',
				'hi_IN'          => 'hi',
				'mr'             => 'mr',
				'af'             => 'af',
				'ar'             => 'ar',
				'ary'            => 'ar',
				'as'             => 'as',
				'azb'            => 'az',
				'az'             => 'az',
				'bel'            => 'be',
				'bg_BG'          => 'bg',
				'bn_BD'          => 'bn',
				'bo'             => 'bo',
				'bs_BA'          => 'bs',
				'ca'             => 'ca',
				'ceb'            => 'ceb',
				'cs_CZ'          => 'cs',
				'cy'             => 'cy',
				'da_DK'          => 'da',
				'de_CH'          => 'de',
				'de_DE'          => 'de',
				'de_DE_formal'   => 'de',
				'de_CH_informal' => 'de',
				'dzo'            => 'dz',
				'el'             => 'el',
				'en_CA'          => 'en',
				'en_GB'          => 'en',
				'en_AU'          => 'en',
				'en_NZ'          => 'en',
				'en_ZA'          => 'en',
				'eo'             => 'eo',
				'es_MX'          => 'es',
				'es_VE'          => 'es',
				'es_CR'          => 'es',
				'es_CO'          => 'es',
				'es_GT'          => 'es',
				'es_ES'          => 'es',
				'es_CL'          => 'es',
				'es_PE'          => 'es',
				'es_AR'          => 'es',
				'et'             => 'et',
				'eu'             => 'eu',
				'fa_IR'          => 'fa',
				'fi'             => 'fi',
				'fr_BE'          => 'fr',
				'fr_FR'          => 'fr',
				'fr_CA'          => 'fr',
				'gd'             => 'gd',
				'gl_ES'          => 'gl',
				'gu'             => 'gu',
				'haz'            => 'haz',
				'he_IL'          => 'he',
				'hr'             => 'hr',
				'hu_HU'          => 'hu',
				'hy'             => 'hy',
				'id_ID'          => 'id',
				'is_IS'          => 'is',
				'it_IT'          => 'it',
				'ja'             => 'ja',
				'jv_ID'          => 'jv',
				'ka_GE'          => 'ka',
				'kab'            => 'kab',
				'km'             => 'km',
				'ko_KR'          => 'ko',
				'ckb'            => 'ku',
				'lo'             => 'lo',
				'lt_LT'          => 'lt',
				'lv'             => 'lv',
				'mk_MK'          => 'mk',
				'ml_IN'          => 'ml',
				'mn'             => 'mn',
				'ms_MY'          => 'ms',
				'my_MM'          => 'my',
				'nb_NO'          => 'nb',
				'ne_NP'          => 'ne',
				'nl_NL'          => 'nl',
				'nl_NL_formal'   => 'nl',
				'nl_BE'          => 'nl',
				'nn_NO'          => 'nn',
				'oci'            => 'oc',
				'pa_IN'          => 'pa',
				'pl_PL'          => 'pl',
				'ps'             => 'ps',
				'pt_BR'          => 'pt',
				'pt_PT_ao90'     => 'pt',
				'pt_PT'          => 'pt',
				'rhg'            => 'rhg',
				'ro_RO'          => 'ro',
				'ru_RU'          => 'ru',
				'sah'            => 'sah',
				'si_LK'          => 'si',
				'sk_SK'          => 'sk',
				'sl_SI'          => 'sl',
				'sq'             => 'sq',
				'sr_RS'          => 'sr',
				'sv_SE'          => 'sv',
				'szl'            => 'szl',
				'ta_IN'          => 'ta',
				'te'             => 'te',
				'th'             => 'th',
				'tl'             => 'tl',
				'tr_TR'          => 'tr',
				'tt_RU'          => 'tt',
				'tah'            => 'ty',
				'ug_CN'          => 'ug',
				'uk'             => 'uk',
				'ur'             => 'ur',
				'uz_UZ'          => 'uz',
				'vi'             => 'vi',
				'zh_CN'          => 'zh',
				'zh_TW'          => 'zh',
				'zh_HK'          => 'zh',
			);

			if ( isset( $select2_lang[ $wp_lang ] ) && file_exists( AST_TARGET_RULE_DIR . 'i18n/' . $select2_lang[ $wp_lang ] . '.js' ) ) {
				$ast_lang = $select2_lang[ $wp_lang ];
				wp_enqueue_script(
					'astra-select2-lang',
					AST_TARGET_RULE_URI . 'i18n/' . $select2_lang[ $wp_lang ] . '.js',
					array(
						'jquery',
						'astra-select2',
					),
					AST_TARGET_RULE_VER,
					true
				);
			}
		}

		wp_register_script(
			'astra-target-rule',
			AST_TARGET_RULE_URI . 'target-rule.js',
			array(
				'jquery',
				'astra-select2',
			),
			AST_TARGET_RULE_VER,
			true
		);

		wp_enqueue_script( 'astra-target-rule' );

		wp_register_script(
			'astra-user-role',
			AST_TARGET_RULE_URI . 'user-role.js',
			array(
				'jquery',
			),
			AST_TARGET_RULE_VER,
			true
		);

		wp_enqueue_script( 'astra-user-role' );

		wp_register_style( 'astra-select2', AST_TARGET_RULE_URI . 'select2.css', '', AST_TARGET_RULE_VER );
		wp_enqueue_style( 'astra-select2' );
		wp_register_style( 'astra-target-rule', AST_TARGET_RULE_URI . 'target-rule.css', '', AST_TARGET_RULE_VER );
		wp_enqueue_style( 'astra-target-rule' );

		/**
		 * Registered localize vars
		 */
		$localize_vars = array(
			'ast_lang'      => $ast_lang,
			'please_enter'  => __( 'Please enter', 'header-footer-elementor' ),
			'please_delete' => __( 'Please delete', 'header-footer-elementor' ),
			'more_char'     => __( 'or more characters', 'header-footer-elementor' ),
			'character'     => __( 'character', 'header-footer-elementor' ),
			'loading'       => __( 'Loading more results…', 'header-footer-elementor' ),
			'only_select'   => __( 'You can only select', 'header-footer-elementor' ),
			'item'          => __( 'item', 'header-footer-elementor' ),
			'char_s'        => __( 's', 'header-footer-elementor' ),
			'no_result'     => __( 'No results found', 'header-footer-elementor' ),
			'searching'     => __( 'Searching…', 'header-footer-elementor' ),
			'not_loader'    => __( 'The results could not be loaded.', 'header-footer-elementor' ),
			'search'        => __( 'Search pages / post / categories', 'header-footer-elementor' ),
			'ajax_nonce'    => wp_create_nonce( 'hfe-get-posts-by-query' ),
		);
		wp_localize_script( 'astra-select2', 'astRules', $localize_vars );
	}

	/**
	 * Function Name: target_rule_settings_field.
	 * Function Description: Function to handle new input type.
	 *
	 * @param string $name string parameter.
	 * @param string $settings string parameter.
	 * @param string $value string parameter.
	 */
	public static function target_rule_settings_field( $name, $settings, $value ) {
		$input_name     = $name;
		$type           = isset( $settings['type'] ) ? $settings['type'] : 'target_rule';
		$class          = isset( $settings['class'] ) ? $settings['class'] : '';
		$rule_type      = isset( $settings['rule_type'] ) ? $settings['rule_type'] : 'target_rule';
		$add_rule_label = isset( $settings['add_rule_label'] ) ? $settings['add_rule_label'] : __( 'Add Rule', 'header-footer-elementor' );
		$saved_values   = $value;
		$output         = '';

		if ( isset( self::$location_selection ) || empty( self::$location_selection ) ) {
			self::$location_selection = self::get_location_selections();
		}
		$selection_options = self::$location_selection;

		/* WP Template Format */
		$output .= '<script type="text/html" id="tmpl-astra-target-rule-' . $rule_type . '-condition">';
		$output .= '<div class="astra-target-rule-condition ast-target-rule-{{data.id}}" data-rule="{{data.id}}" >';
		$output .= '<span class="target_rule-condition-delete dashicons dashicons-dismiss"></span>';
		/* Condition Selection */
		$output .= '<div class="target_rule-condition-wrap" >';
		$output .= '<select name="' . esc_attr( $input_name ) . '[rule][{{data.id}}]" class="target_rule-condition form-control ast-input">';
		$output .= '<option value="">' . __( 'Select', 'header-footer-elementor' ) . '</option>';

		foreach ( $selection_options as $group => $group_data ) {
			$output .= '<optgroup label="' . $group_data['label'] . '">';
			foreach ( $group_data['value'] as $opt_key => $opt_value ) {
				$output .= '<option value="' . $opt_key . '">' . $opt_value . '</option>';
			}
			$output .= '</optgroup>';
		}
		$output .= '</select>';
		$output .= '</div>';

		$output .= '</div> <!-- astra-target-rule-condition -->';

		/* Specific page selection */
		$output .= '<div class="target_rule-specific-page-wrap" style="display:none">';
		$output .= '<select name="' . esc_attr( $input_name ) . '[specific][]" class="target-rule-select2 target_rule-specific-page form-control ast-input " multiple="multiple">';
		$output .= '</select>';
		$output .= '</div>';

		$output .= '</script>';

		/* Wrapper Start */
		$output .= '<div class="ast-target-rule-wrapper ast-target-rule-' . $rule_type . '-on-wrap" data-type="' . $rule_type . '">';
		// $output .= '<input type="hidden" class="form-control ast-input ast-target_rule-input" name="' . esc_attr( $input_name ) . '" value=' . $value . ' />';
		$output .= '<div class="ast-target-rule-selector-wrapper ast-target-rule-' . $rule_type . '-on">';
		$output .= self::generate_target_rule_selector( $rule_type, $selection_options, $input_name, $saved_values, $add_rule_label );
		$output .= '</div>';

		/* Wrapper end */
		$output .= '</div>';

		echo $output;
	}

	/**
	 * Get target rules for generating the markup for rule selector.
	 *
	 * @since  1.0.0
	 *
	 * @param object $post_type post type parameter.
	 * @param object $taxonomy taxonomy for creating the target rule markup.
	 */
	public static function get_post_target_rule_options( $post_type, $taxonomy ) {
		$post_key    = str_replace( ' ', '-', strtolower( $post_type->label ) );
		$post_label  = ucwords( $post_type->label );
		$post_name   = $post_type->name;
		$post_option = array();

		/* translators: %s post label */
		$all_posts                          = sprintf( __( 'All %s', 'header-footer-elementor' ), $post_label );
		$post_option[ $post_name . '|all' ] = $all_posts;

		if ( 'pages' != $post_key ) {
			/* translators: %s post label */
			$all_archive                                = sprintf( __( 'All %s Archive', 'header-footer-elementor' ), $post_label );
			$post_option[ $post_name . '|all|archive' ] = $all_archive;
		}

		if ( in_array( $post_type->name, $taxonomy->object_type ) ) {
			$tax_label = ucwords( $taxonomy->label );
			$tax_name  = $taxonomy->name;

			/* translators: %s taxonomy label */
			$tax_archive = sprintf( __( 'All %s Archive', 'header-footer-elementor' ), $tax_label );

			$post_option[ $post_name . '|all|taxarchive|' . $tax_name ] = $tax_archive;
		}

		$post_output['post_key'] = $post_key;
		$post_output['label']    = $post_label;
		$post_output['value']    = $post_option;

		return $post_output;
	}

	/**
	 * Generate markup for rendering the location selction.
	 *
	 * @since  1.0.0
	 * @param  String $type                 Rule type display|exclude.
	 * @param  Array  $selection_options     Array for available selection fields.
	 * @param  String $input_name           Input name for the settings.
	 * @param  Array  $saved_values          Array of saved valued.
	 * @param  String $add_rule_label       Label for the Add rule button.
	 *
	 * @return HTML Markup for for the location settings.
	 */
	public static function generate_target_rule_selector( $type, $selection_options, $input_name, $saved_values, $add_rule_label ) {
		$output = '<div class="target_rule-builder-wrap">';

		if ( ! is_array( $saved_values ) || ( is_array( $saved_values ) && empty( $saved_values ) ) ) {
			$saved_values                = array();
			$saved_values['rule'][0]     = '';
			$saved_values['specific'][0] = '';
		}

		$index = 0;
		if ( is_array( $saved_values ) && is_array( $saved_values['rule'] ) ) {	
			foreach ( $saved_values['rule'] as $index => $data ) {
				$output .= '<div class="astra-target-rule-condition ast-target-rule-' . $index . '" data-rule="' . $index . '" >';
				/* Condition Selection */
				$output .= '<span class="target_rule-condition-delete dashicons dashicons-dismiss"></span>';
				$output .= '<div class="target_rule-condition-wrap" >';
				$output .= '<select name="' . esc_attr( $input_name ) . '[rule][' . $index . ']" class="target_rule-condition form-control ast-input">';
				$output .= '<option value="">' . __( 'Select', 'header-footer-elementor' ) . '</option>';

				foreach ( $selection_options as $group => $group_data ) {
					$output .= '<optgroup label="' . $group_data['label'] . '">';
					foreach ( $group_data['value'] as $opt_key => $opt_value ) {

						// specific rules.
						$selected = '';

						if ( $data == $opt_key ) {
							$selected = 'selected="selected"';
						}

						$output .= '<option value="' . $opt_key . '" ' . $selected . '>' . $opt_value . '</option>';
					}
					$output .= '</optgroup>';
				}
				$output .= '</select>';
				$output .= '</div>';

				$output .= '</div>';

				/* Specific page selection */
				$output .= '<div class="target_rule-specific-page-wrap" style="display:none">';
				$output .= '<select name="' . esc_attr( $input_name ) . '[specific][]" class="target-rule-select2 target_rule-specific-page form-control ast-input " multiple="multiple">';

				if ( 'specifics' == $data && isset( $saved_values['specific'] ) && null != $saved_values['specific'] && is_array( $saved_values['specific'] ) ) {
					foreach ( $saved_values['specific'] as $data_key => $sel_value ) {
						// posts.
						if ( strpos( $sel_value, 'post-' ) !== false ) {
							$post_id    = (int) str_replace( 'post-', '', $sel_value );
							$post_title = get_the_title( $post_id );
							$output    .= '<option value="post-' . $post_id . '" selected="selected" >' . $post_title . '</option>';
						}

						// taxonomy options.
						if ( strpos( $sel_value, 'tax-' ) !== false ) {
							$tax_data = explode( '-', $sel_value );

							$tax_id    = (int) str_replace( 'tax-', '', $sel_value );
							$term      = get_term( $tax_id );
							$term_name = '';

							if ( ! is_wp_error( $term ) ) {
								$term_taxonomy = ucfirst( str_replace( '_', ' ', $term->taxonomy ) );

								if ( isset( $tax_data[2] ) && 'single' === $tax_data[2] ) {
									$term_name = 'All singulars from ' . $term->name;
								} else {
									$term_name = $term->name . ' - ' . $term_taxonomy;
								}
							}

							$output .= '<option value="' . $sel_value . '" selected="selected" >' . $term_name . '</option>';
						}
					}
				}
				$output .= '</select>';
				$output .= '</div>';
			}
		}

		$output .= '</div>';

		/* Add new rule */
		$output .= '<div class="target_rule-add-rule-wrap">';
		$output .= '<a href="#" class="button" data-rule-id="' . absint( $index ) . '" data-rule-type="' . $type . '">' . $add_rule_label . '</a>';
		$output .= '</div>';

		if ( 'display' == $type ) {
			/* Add new rule */
			$output .= '<div class="target_rule-add-exclusion-rule">';
			$output .= '<a href="#" class="button">' . __( 'Add Exclusion Rule', 'header-footer-elementor' ) . '</a>';
			$output .= '</div>';
		}

		return $output;
	}

	/**
	 * Get current layout.
	 * Checks of the passed post id of the layout is to be displayed in the page.
	 *
	 * @param int    $layout_id Layout ID.
	 * @param string $option Option prefix.
	 *
	 * @return int|boolean If the current layout is to be displayed it will be returned back else a boolean will be passed.
	 */
	public function get_current_layout( $layout_id, $option ) {
		$post_id        = ( ! is_404() && ! is_search() && ! is_archive() && ! is_home() ) ? get_the_id() : false;
		$current_layout = false;
		$is_exclude     = false;
		$is_user_role   = false;
		$display_on     = get_post_meta( $layout_id, $option . '-location', true );
		$exclude_on     = get_post_meta( $layout_id, $option . '-exclusion', true );
		$user_roles     = get_post_meta( $layout_id, $option . '-users', true );

		/* Parse Display On Condition */
		$is_display = $this->parse_layout_display_condition( $post_id, $display_on );

		if ( true == $is_display ) {
			/* Parse Exclude On Condition */
			$is_exclude = $this->parse_layout_display_condition( $post_id, $exclude_on );
			/* Parse User Role Condition */
			$is_user_role = $this->parse_user_role_condition( $post_id, $user_roles );
		}

		if ( $is_display && ! $is_exclude && $is_user_role ) {
			$current_layout = $layout_id;
		}

		// filter target page settings.
		$current_layout = apply_filters( 'astra_target_page_settings', $current_layout, $layout_id );

		return $current_layout;
	}

	/**
	 * Checks for the display condition for the current page/
	 *
	 * @param  int   $post_id Current post ID.
	 * @param  array $rules   Array of rules Display on | Exclude on.
	 *
	 * @return boolean      Returns true or false depending on if the $rules match for the current page and the layout is to be displayed.
	 */
	public function parse_layout_display_condition( $post_id, $rules ) {
		$display           = false;
		$current_post_type = get_post_type( $post_id );

		if ( isset( $rules['rule'] ) && is_array( $rules['rule'] ) && ! empty( $rules['rule'] ) ) {
			foreach ( $rules['rule'] as $key => $rule ) {
				if ( strrpos( $rule, 'all' ) !== false ) {
					$rule_case = 'all';
				} else {
					$rule_case = $rule;
				}

				switch ( $rule_case ) {
					case 'basic-global':
						$display = true;
						break;

					case 'basic-singulars':
						if ( is_singular() ) {
							$display = true;
						}
						break;

					case 'basic-archives':
						if ( is_archive() ) {
							$display = true;
						}
						break;

					case 'special-404':
						if ( is_404() ) {
							$display = true;
						}
						break;

					case 'special-search':
						if ( is_search() ) {
							$display = true;
						}
						break;

					case 'special-blog':
						if ( is_home() ) {
							$display = true;
						}
						break;

					case 'special-front':
						if ( is_front_page() ) {
							$display = true;
						}
						break;

					case 'special-date':
						if ( is_date() ) {
							$display = true;
						}
						break;

					case 'special-author':
						if ( is_author() ) {
							$display = true;
						}
						break;

					case 'special-woo-shop':
						if ( function_exists( 'is_shop' ) && is_shop() ) {
							$display = true;
						}
						break;

					case 'all':
						$rule_data = explode( '|', $rule );

						$post_type     = isset( $rule_data[0] ) ? $rule_data[0] : false;
						$archieve_type = isset( $rule_data[2] ) ? $rule_data[2] : false;
						$taxonomy      = isset( $rule_data[3] ) ? $rule_data[3] : false;
						if ( false === $archieve_type ) {
							$current_post_type = get_post_type( $post_id );

							if ( false !== $post_id && $current_post_type == $post_type ) {
								$display = true;
							}
						} else {
							if ( is_archive() ) {
								$current_post_type = get_post_type();
								if ( $current_post_type == $post_type ) {
									if ( 'archive' == $archieve_type ) {
										$display = true;
									} elseif ( 'taxarchive' == $archieve_type ) {
										$obj              = get_queried_object();
										$current_taxonomy = '';
										if ( '' !== $obj && null !== $obj ) {
											$current_taxonomy = $obj->taxonomy;
										}

										if ( $current_taxonomy == $taxonomy ) {
											$display = true;
										}
									}
								}
							}
						}
						break;

					case 'specifics':
						if ( isset( $rules['specific'] ) && is_array( $rules['specific'] ) ) {
							foreach ( $rules['specific'] as $specific_page ) {
								$specific_data = explode( '-', $specific_page );

								$specific_post_type = isset( $specific_data[0] ) ? $specific_data[0] : false;
								$specific_post_id   = isset( $specific_data[1] ) ? $specific_data[1] : false;
								if ( 'post' == $specific_post_type ) {
									if ( $specific_post_id == $post_id ) {
										$display = true;
									}
								} elseif ( isset( $specific_data[2] ) && ( 'single' == $specific_data[2] ) && 'tax' == $specific_post_type ) {
									if ( is_singular() ) {
										$term_details = get_term( $specific_post_id );

										if ( isset( $term_details->taxonomy ) ) {
											$has_term = has_term( (int) $specific_post_id, $term_details->taxonomy, $post_id );

											if ( $has_term ) {
												$display = true;
											}
										}
									}
								} elseif ( 'tax' == $specific_post_type ) {
									$tax_id = get_queried_object_id();
									if ( $specific_post_id == $tax_id ) {
										$display = true;
									}
								}
							}
						}
						break;

					default:
						break;
				}

				if ( $display ) {
					break;
				}
			}
		}

		return $display;
	}

	/**
	 * Function Name: target_user_role_settings_field.
	 * Function Description: Function to handle new input type.
	 *
	 * @param string $name string parameter.
	 * @param string $settings string parameter.
	 * @param string $value string parameter.
	 */
	public static function target_user_role_settings_field( $name, $settings, $value ) {
		$input_name     = $name;
		$type           = isset( $settings['type'] ) ? $settings['type'] : 'target_rule';
		$class          = isset( $settings['class'] ) ? $settings['class'] : '';
		$rule_type      = isset( $settings['rule_type'] ) ? $settings['rule_type'] : 'target_rule';
		$add_rule_label = isset( $settings['add_rule_label'] ) ? $settings['add_rule_label'] : __( 'Add Rule', 'header-footer-elementor' );
		$saved_values   = $value;
		$output         = '';

		if ( ! isset( self::$user_selection ) || empty( self::$user_selection ) ) {
			self::$user_selection = self::get_user_selections();
		}
		$selection_options = self::$user_selection;

		/* WP Template Format */
		$output         .= '<script type="text/html" id="tmpl-astra-user-role-condition">';
			$output     .= '<div class="astra-user-role-condition ast-user-role-{{data.id}}" data-rule="{{data.id}}" >';
				$output .= '<span class="user_role-condition-delete dashicons dashicons-dismiss"></span>';
				/* Condition Selection */
				$output     .= '<div class="user_role-condition-wrap" >';
					$output .= '<select name="' . esc_attr( $input_name ) . '[{{data.id}}]" class="user_role-condition form-control ast-input">';
					$output .= '<option value="">' . __( 'Select', 'header-footer-elementor' ) . '</option>';

		foreach ( $selection_options as $group => $group_data ) {
			$output .= '<optgroup label="' . $group_data['label'] . '">';
			foreach ( $group_data['value'] as $opt_key => $opt_value ) {
				$output .= '<option value="' . $opt_key . '">' . $opt_value . '</option>';
			}
			$output .= '</optgroup>';
		}
					$output .= '</select>';
				$output     .= '</div>';
			$output         .= '</div> <!-- astra-user-role-condition -->';
		$output             .= '</script>';

		if ( ! is_array( $saved_values ) || ( is_array( $saved_values ) && empty( $saved_values ) ) ) {
			$saved_values    = array();
			$saved_values[0] = '';
		}

		$index = 0;

		$output         .= '<div class="ast-user-role-wrapper ast-user-role-display-on-wrap" data-type="display">';
			$output     .= '<div class="ast-user-role-selector-wrapper ast-user-role-display-on">';
				$output .= '<div class="user_role-builder-wrap">';
		foreach ( $saved_values as $index => $data ) {
			$output     .= '<div class="astra-user-role-condition ast-user-role-' . $index . '" data-rule="' . $index . '" >';
				$output .= '<span class="user_role-condition-delete dashicons dashicons-dismiss"></span>';
				/* Condition Selection */
				$output     .= '<div class="user_role-condition-wrap" >';
					$output .= '<select name="' . esc_attr( $input_name ) . '[' . $index . ']" class="user_role-condition form-control ast-input">';
					$output .= '<option value="">' . __( 'Select', 'header-footer-elementor' ) . '</option>';

			foreach ( $selection_options as $group => $group_data ) {
				$output .= '<optgroup label="' . $group_data['label'] . '">';
				foreach ( $group_data['value'] as $opt_key => $opt_value ) {
					$output .= '<option value="' . $opt_key . '" ' . selected( $data, $opt_key, false ) . '>' . $opt_value . '</option>';
				}
				$output .= '</optgroup>';
			}
					$output .= '</select>';
				$output     .= '</div>';
					$output .= '</div> <!-- astra-user-role-condition -->';
		}
				$output .= '</div>';
				/* Add new rule */
				$output .= '<div class="user_role-add-rule-wrap">';
				$output .= '<a href="#" class="button" data-rule-id="' . absint( $index ) . '">' . $add_rule_label . '</a>';
				$output .= '</div>';
			$output     .= '</div>';
		$output         .= '</div>';

		echo $output;
	}

	/**
	 * Parse user role condition.
	 *
	 * @since  1.0.0
	 * @param  int   $post_id Post ID.
	 * @param  Array $rules   Current user rules.
	 *
	 * @return boolean  True = user condition passes. False = User condition does not pass.
	 */
	public function parse_user_role_condition( $post_id, $rules ) {
		$show_popup = true;

		if ( is_array( $rules ) && ! empty( $rules ) ) {
			$show_popup = false;

			foreach ( $rules as $i => $rule ) {
				switch ( $rule ) {
					case '':
					case 'all':
						$show_popup = true;
						break;

					case 'logged-in':
						if ( is_user_logged_in() ) {
							$show_popup = true;
						}
						break;

					case 'logged-out':
						if ( ! is_user_logged_in() ) {
							$show_popup = true;
						}
						break;

					default:
						if ( is_user_logged_in() ) {
							$current_user = wp_get_current_user();

							if ( isset( $current_user->roles )
									&& is_array( $current_user->roles )
									&& in_array( $rule, $current_user->roles )
								) {
								$show_popup = true;
							}
						}
						break;
				}

				if ( $show_popup ) {
					break;
				}
			}
		}

		return $show_popup;
	}

	/**
	 * Get current page type
	 *
	 * @since  1.0.0
	 *
	 * @return string Page Type.
	 */
	public function get_current_page_type() {
		if ( null === self::$current_page_type ) {
			$page_type  = '';
			$current_id = false;

			if ( is_404() ) {
				$page_type = 'is_404';
			} elseif ( is_search() ) {
				$page_type = 'is_search';
			} elseif ( is_archive() ) {
				$page_type = 'is_archive';

				if ( is_category() || is_tag() || is_tax() ) {
					$page_type = 'is_tax';
				} elseif ( is_date() ) {
					$page_type = 'is_date';
				} elseif ( is_author() ) {
					$page_type = 'is_author';
				} elseif ( function_exists( 'is_shop' ) && is_shop() ) {
					$page_type = 'is_woo_shop_page';
				}
			} elseif ( is_home() ) {
				$page_type = 'is_home';
			} elseif ( is_front_page() ) {
				$page_type  = 'is_front_page';
				$current_id = get_the_id();
			} elseif ( is_singular() ) {
				$page_type  = 'is_singular';
				$current_id = get_the_id();
			} else {
				$current_id = get_the_id();
			}

			self::$current_page_data['ID'] = $current_id;
			self::$current_page_type       = $page_type;
		}

		return self::$current_page_type;
	}

	/**
	 * Get posts by conditions
	 *
	 * @since  1.0.0
	 * @param  string $post_type Post Type.
	 * @param  array  $option meta option name.
	 *
	 * @return object  Posts.
	 */
	public function get_posts_by_conditions( $post_type, $option ) {
		global $wpdb;
		global $post;

		$post_type = $post_type ? $post_type : $post->post_type;

		if ( is_array( self::$current_page_data ) && isset( self::$current_page_data[ $post_type ] ) ) {
			return apply_filters( 'astra_get_display_posts_by_conditions', self::$current_page_data[ $post_type ], $post_type );
		}

		$current_page_type = $this->get_current_page_type();

		self::$current_page_data[ $post_type ] = array();

		$option['current_post_id'] = self::$current_page_data['ID'];
		$meta_header               = self::get_meta_option_post( $post_type, $option );

		/* Meta option is enabled */
		if ( false === $meta_header ) {
			$current_post_type = get_post_type();
			$current_post_id   = false;
			$q_obj             = get_queried_object();

			$current_id = get_the_id();
			// Find WPML Object ID for current page.
			if ( defined( 'ICL_SITEPRESS_VERSION' ) ) {
				$default_lang = apply_filters( 'wpml_default_language', '' );
				$current_lang = apply_filters( 'wpml_current_language', '' );

				if ( $default_lang !== $current_lang ) {
					$current_post_type = get_post_type( $current_id );
					$current_id        = apply_filters( 'wpml_object_id', $current_id, $current_post_type, true, $default_lang );
				}
			}

			$location = isset( $option['location'] ) ? $option['location'] : '';

			$base_query = $wpdb->prepare(
				"SELECT p.ID, pm.meta_value FROM {$wpdb->postmeta} as pm
				INNER JOIN {$wpdb->posts} as p ON pm.post_id = p.ID
				WHERE pm.meta_key = %s
				AND p.post_type = %s
				AND p.post_status = 'publish'",
				$location,
				$post_type
			);

			/* Entire Website */
			$like_conditions   = array();
			$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"basic-global"%' );

			switch ( $current_page_type ) {
				case 'is_404':
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"special-404"%' );
					break;
				case 'is_search':
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"special-search"%' );
					break;
				case 'is_archive':
				case 'is_tax':
				case 'is_date':
				case 'is_author':
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"basic-archives"%' );
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"' . $current_post_type . '|all|archive"%' );

					if ( 'is_tax' == $current_page_type && ( is_category() || is_tag() || is_tax() ) ) {
						if ( is_object( $q_obj ) ) {
							$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"' . $current_post_type . '|all|taxarchive|' . $q_obj->taxonomy . '"%' );
							$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"tax-' . $q_obj->term_id . '"%' );
						}
					} elseif ( 'is_date' == $current_page_type ) {
						$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"special-date"%' );
					} elseif ( 'is_author' == $current_page_type ) {
						$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"special-author"%' );
					}
					break;
				case 'is_home':
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"special-blog"%' );
					break;
				case 'is_front_page':
					$current_post_id   = $current_id;
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"special-front"%' );
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"' . $current_post_type . '|all"%' );
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"post-' . $current_id . '"%' );
					break;
				case 'is_singular':
					$current_post_id   = $current_id;
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"basic-singulars"%' );
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"' . $current_post_type . '|all"%' );
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"post-' . $current_id . '"%' );

					if ( is_object( $q_obj ) ) {
						$taxonomies = get_object_taxonomies( $q_obj->post_type );
						$terms      = wp_get_post_terms( $q_obj->ID, $taxonomies );

						foreach ( $terms as $key => $term ) {
							$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"tax-' . $term->term_id . '-single-' . $term->taxonomy . '"%' );
						}
					}

					break;
				case 'is_woo_shop_page':
					$like_conditions[] = $wpdb->prepare( 'pm.meta_value LIKE %s', '%"special-woo-shop"%' );
					break;
				case '':
					$current_post_id = $current_id;
					break;
			}

			$meta_args = implode( ' OR ', $like_conditions );
			$posts     = $wpdb->get_results( $base_query . ' AND (' . $meta_args . ') ORDER BY p.post_date DESC' );

			foreach ( $posts as $local_post ) {
				self::$current_page_data[ $post_type ][ $local_post->ID ] = array(
					'id'       => $local_post->ID,
					'location' => maybe_unserialize( $local_post->meta_value ),
				);
			}

			$option['current_post_id'] = $current_post_id;

			$this->remove_exclusion_rule_posts( $post_type, $option );
			$this->remove_user_rule_posts( $post_type, $option );
		}

		return apply_filters( 'astra_get_display_posts_by_conditions', self::$current_page_data[ $post_type ], $post_type );
	}

	/**
	 * Remove exclusion rule posts.
	 *
	 * @since  1.0.0
	 * @param  string $post_type Post Type.
	 * @param  array  $option meta option name.
	 */
	public function remove_exclusion_rule_posts( $post_type, $option ) {
		$exclusion       = isset( $option['exclusion'] ) ? $option['exclusion'] : '';
		$current_post_id = isset( $option['current_post_id'] ) ? $option['current_post_id'] : false;

		foreach ( self::$current_page_data[ $post_type ] as $c_post_id => $c_data ) {
			$exclusion_rules = get_post_meta( $c_post_id, $exclusion, true );
			$is_exclude      = $this->parse_layout_display_condition( $current_post_id, $exclusion_rules );

			if ( $is_exclude ) {
				unset( self::$current_page_data[ $post_type ][ $c_post_id ] );
			}
		}
	}

	/**
	 * Remove user rule posts.
	 *
	 * @since  1.0.0
	 * @param  int   $post_type Post Type.
	 * @param  array $option meta option name.
	 */
	public function remove_user_rule_posts( $post_type, $option ) {
		$users           = isset( $option['users'] ) ? $option['users'] : '';
		$current_post_id = isset( $option['current_post_id'] ) ? $option['current_post_id'] : false;

		foreach ( self::$current_page_data[ $post_type ] as $c_post_id => $c_data ) {
			$user_rules = get_post_meta( $c_post_id, $users, true );
			$is_user    = $this->parse_user_role_condition( $current_post_id, $user_rules );

			if ( ! $is_user ) {
				unset( self::$current_page_data[ $post_type ][ $c_post_id ] );
			}
		}
	}

	/**
	 * Same display_on notice.
	 *
	 * @since  1.0.0
	 * @param  int   $post_type Post Type.
	 * @param  array $option meta option name.
	 */
	public static function same_display_on_notice( $post_type, $option ) {
		global $wpdb;
		global $post;

		$all_rules        = array();
		$already_set_rule = array();

		$location = isset( $option['location'] ) ? $option['location'] : '';

		$all_headers = $wpdb->get_results(
			$wpdb->prepare(
				"SELECT p.ID, p.post_title, pm.meta_value FROM {$wpdb->postmeta} as pm
			INNER JOIN {$wpdb->posts} as p ON pm.post_id = p.ID
			WHERE pm.meta_key = %s
			AND p.post_type = %s
			AND p.post_status = 'publish'",
				$location,
				$post_type
			)
		);

		foreach ( $all_headers as $header ) {
			$location_rules = maybe_unserialize( $header->meta_value );

			if ( is_array( $location_rules ) && isset( $location_rules['rule'] ) ) {
				foreach ( $location_rules['rule'] as $key => $rule ) {
					if ( ! isset( $all_rules[ $rule ] ) ) {
						$all_rules[ $rule ] = array();
					}

					if ( 'specifics' == $rule && isset( $location_rules['specific'] ) && is_array( $location_rules['specific'] ) ) {
						foreach ( $location_rules['specific'] as $s_index => $s_value ) {
							$all_rules[ $rule ][ $s_value ][ $header->ID ] = array(
								'ID'   => $header->ID,
								'name' => $header->post_title,
							);
						}
					} else {
						$all_rules[ $rule ][ $header->ID ] = array(
							'ID'   => $header->ID,
							'name' => $header->post_title,
						);
					}
				}
			}
		}
		if ( empty( $post ) ) {
			return;
		}
		$current_post_data = get_post_meta( $post->ID, $location, true );

		if ( is_array( $current_post_data ) && isset( $current_post_data['rule'] ) ) {
			foreach ( $current_post_data['rule'] as $c_key => $c_rule ) {
				if ( ! isset( $all_rules[ $c_rule ] ) ) {
					continue;
				}

				if ( 'specifics' === $c_rule ) {
					foreach ( $current_post_data['specific'] as $s_index => $s_id ) {
						if ( ! isset( $all_rules[ $c_rule ][ $s_id ] ) ) {
							continue;
						}

						foreach ( $all_rules[ $c_rule ][ $s_id ] as $p_id => $data ) {
							if ( $p_id == $post->ID ) {
								continue;
							}

							$already_set_rule[] = $data['name'];
						}
					}
				} else {
					foreach ( $all_rules[ $c_rule ] as $p_id => $data ) {
						if ( $p_id == $post->ID ) {
							continue;
						}

						$already_set_rule[] = $data['name'];
					}
				}
			}
		}

		if ( ! empty( $already_set_rule ) ) {
			add_action(
				'admin_notices',
				function() use ( $already_set_rule ) {
					$rule_set_titles = '<strong>' . implode( ',', $already_set_rule ) . '</strong>';

					/* translators: %s post title. */
					$notice = sprintf( __( 'The same display setting is already exist in %s post/s.', 'header-footer-elementor' ), $rule_set_titles );

					echo '<div class="error">';
					echo '<p>' . $notice . '</p>';
					echo '</div>';
				}
			);
		}
	}

	/**
	 * Meta option post.
	 *
	 * @since  1.0.0
	 * @param  string $post_type Post Type.
	 * @param  array  $option meta option name.
	 *
	 * @return false | object
	 */
	public static function get_meta_option_post( $post_type, $option ) {
		$page_meta = ( isset( $option['page_meta'] ) && '' != $option['page_meta'] ) ? $option['page_meta'] : false;

		if ( false !== $page_meta ) {
			$current_post_id = isset( $option['current_post_id'] ) ? $option['current_post_id'] : false;
			$meta_id         = get_post_meta( $current_post_id, $option['page_meta'], true );

			if ( false !== $meta_id && '' != $meta_id ) {
				self::$current_page_data[ $post_type ][ $meta_id ] = array(
					'id'       => $meta_id,
					'location' => '',
				);

				return self::$current_page_data[ $post_type ];
			}
		}

		return false;
	}

	/**
	 * Get post selection.
	 *
	 * @since  1.0.0
	 * @param  string $post_type Post Type.
	 *
	 * @return object  Posts.
	 */
	public static function get_post_selection( $post_type ) {
		$query_args = array(
			'post_type'      => $post_type,
			'posts_per_page' => -1,
			'post_status'    => 'publish',
		);

		$all_headers = get_posts( $query_args );
		$headers     = array();

		if ( ! empty( $all_headers ) ) {
			$headers = array(
				'' => __( 'Select', 'header-footer-elementor' ),
			);

			foreach ( $all_headers as $i => $data ) {
				$headers[ $data->ID ] = $data->post_title;
			}
		}

		return $headers;
	}

	/**
	 * Formated rule meta value to save.
	 *
	 * @since  1.0.0
	 * @param  array  $save_data PostData.
	 * @param  string $key varaible key.
	 *
	 * @return array Rule data.
	 */
	public static function get_format_rule_value( $save_data, $key ) {
		$meta_value = array();

		if ( isset( $save_data[ $key ]['rule'] ) ) {
			$save_data[ $key ]['rule'] = array_unique( $save_data[ $key ]['rule'] );
			if ( isset( $save_data[ $key ]['specific'] ) ) {
				$save_data[ $key ]['specific'] = array_unique( $save_data[ $key ]['specific'] );
			}

			// Unset the specifics from rule. This will be readded conditionally in next condition.
			$index = array_search( '', $save_data[ $key ]['rule'] );
			if ( false !== $index ) {
				unset( $save_data[ $key ]['rule'][ $index ] );
			}
			$index = array_search( 'specifics', $save_data[ $key ]['rule'] );
			if ( false !== $index ) {
				unset( $save_data[ $key ]['rule'][ $index ] );

				// Only re-add the specifics key if there are specific rules added.
				if ( isset( $save_data[ $key ]['specific'] ) && is_array( $save_data[ $key ]['specific'] ) ) {
					array_push( $save_data[ $key ]['rule'], 'specifics' );
				}
			}

			foreach ( $save_data[ $key ] as $meta_key => $value ) {
				if ( ! empty( $value ) ) {
					$meta_value[ $meta_key ] = array_map( 'esc_attr', $value );
				}
			}
			if ( ! isset( $meta_value['rule'] ) || ! in_array( 'specifics', $meta_value['rule'] ) ) {
				$meta_value['specific'] = array();
			}

			if ( empty( $meta_value['rule'] ) ) {
				$meta_value = array();
			}
		}

		return $meta_value;
	}
}

/**
 * Kicking this off by calling 'get_instance()' method
 */
Astra_Target_Rules_Fields::get_instance();PK���\:ٹ�/0/0inc/lib/target-rule/select2.jsnu�[���/*!
 * Select2 4.0.5
 * https://select2.github.io
 *
 * Released under the MIT license
 * https://github.com/select2/select2/blob/master/LICENSE.md
 */
(function (factory) {

    /* Whenever you update select2 script please add astselect2 handler */
    /* select2 handler changed to astselect2 */
    var existingVersion = jQuery.fn.select2 || null;

    if (existingVersion) {
        delete jQuery.fn.select2;
    }

    if (typeof define === 'function' && define.amd) {
        // AMD. Register as an anonymous module.
        define(['jquery'], factory);
    } else if (typeof module === 'object' && module.exports) {
        // Node/CommonJS
        module.exports = function (root, jQuery) {
        
            if (jQuery === undefined) {
                // require('jQuery') returns a factory that requires window to
                // build a jQuery instance, we normalize how we use modules
                // that require this pattern but the window provided is a noop
                // if it's defined (how jquery works)
                if (typeof window !== 'undefined') {
                  jQuery = require('jquery');
                }
                else {
                  jQuery = require('jquery')(root);
                }
            }
            
            factory(jQuery);
            
            return jQuery;
        };
    } else {
        // Browser globals
        factory(jQuery);
    }

    jQuery.fn.astselect2 = jQuery.fn.select2;

    if (existingVersion) {
        delete jQuery.fn.select2;
        jQuery.fn.select2 = existingVersion;
    }

    /* select2 handler changed to astselect2 code end */

} (function (jQuery) {
  // This is needed so we can catch the AMD loader configuration and use it
  // The inner file should be wrapped (by `banner.start.js`) in a function that
  // returns the AMD loader references.
  var S2 =(function () {
  // Restore the Select2 AMD loader so it can be used
  // Needed mostly in the language files, where the loader is not inserted
  if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd) {
    var S2 = jQuery.fn.select2.amd;
  }
var S2;(function () { if (!S2 || !S2.requirejs) {
if (!S2) { S2 = {}; } else { require = S2; }
/**
 * @license almond 0.3.3 Copyright jQuery Foundation and other contributors.
 * Released under MIT license, http://github.com/requirejs/almond/LICENSE
 */
//Going sloppy to avoid 'use strict' string cost, but strict practices should
//be followed.
/*global setTimeout: false */

var requirejs, require, define;
(function (undef) {
    var main, req, makeMap, handlers,
        defined = {},
        waiting = {},
        config = {},
        defining = {},
        hasOwn = Object.prototype.hasOwnProperty,
        aps = [].slice,
        jsSuffixRegExp = /\.js$/;

    function hasProp(obj, prop) {
        return hasOwn.call(obj, prop);
    }

    /**
     * Given a relative module name, like ./something, normalize it to
     * a real name that can be mapped to a path.
     * @param {String} name the relative name
     * @param {String} baseName a real name that the name arg is relative
     * to.
     * @returns {String} normalized name
     */
    function normalize(name, baseName) {
        var nameParts, nameSegment, mapValue, foundMap, lastIndex,
            foundI, foundStarMap, starI, i, j, part, normalizedBaseParts,
            baseParts = baseName && baseName.split("/"),
            map = config.map,
            starMap = (map && map['*']) || {};

        //Adjust any relative paths.
        if (name) {
            name = name.split('/');
            lastIndex = name.length - 1;

            // If wanting node ID compatibility, strip .js from end
            // of IDs. Have to do this here, and not in nameToUrl
            // because node allows either .js or non .js to map
            // to same file.
            if (config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex])) {
                name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, '');
            }

            // Starts with a '.' so need the baseName
            if (name[0].charAt(0) === '.' && baseParts) {
                //Convert baseName to array, and lop off the last part,
                //so that . matches that 'directory' and not name of the baseName's
                //module. For instance, baseName of 'one/two/three', maps to
                //'one/two/three.js', but we want the directory, 'one/two' for
                //this normalization.
                normalizedBaseParts = baseParts.slice(0, baseParts.length - 1);
                name = normalizedBaseParts.concat(name);
            }

            //start trimDots
            for (i = 0; i < name.length; i++) {
                part = name[i];
                if (part === '.') {
                    name.splice(i, 1);
                    i -= 1;
                } else if (part === '..') {
                    // If at the start, or previous value is still ..,
                    // keep them so that when converted to a path it may
                    // still work when converted to a path, even though
                    // as an ID it is less than ideal. In larger point
                    // releases, may be better to just kick out an error.
                    if (i === 0 || (i === 1 && name[2] === '..') || name[i - 1] === '..') {
                        continue;
                    } else if (i > 0) {
                        name.splice(i - 1, 2);
                        i -= 2;
                    }
                }
            }
            //end trimDots

            name = name.join('/');
        }

        //Apply map config if available.
        if ((baseParts || starMap) && map) {
            nameParts = name.split('/');

            for (i = nameParts.length; i > 0; i -= 1) {
                nameSegment = nameParts.slice(0, i).join("/");

                if (baseParts) {
                    //Find the longest baseName segment match in the config.
                    //So, do joins on the biggest to smallest lengths of baseParts.
                    for (j = baseParts.length; j > 0; j -= 1) {
                        mapValue = map[baseParts.slice(0, j).join('/')];

                        //baseName segment has  config, find if it has one for
                        //this name.
                        if (mapValue) {
                            mapValue = mapValue[nameSegment];
                            if (mapValue) {
                                //Match, update name to the new value.
                                foundMap = mapValue;
                                foundI = i;
                                break;
                            }
                        }
                    }
                }

                if (foundMap) {
                    break;
                }

                //Check for a star map match, but just hold on to it,
                //if there is a shorter segment match later in a matching
                //config, then favor over this star map.
                if (!foundStarMap && starMap && starMap[nameSegment]) {
                    foundStarMap = starMap[nameSegment];
                    starI = i;
                }
            }

            if (!foundMap && foundStarMap) {
                foundMap = foundStarMap;
                foundI = starI;
            }

            if (foundMap) {
                nameParts.splice(0, foundI, foundMap);
                name = nameParts.join('/');
            }
        }

        return name;
    }

    function makeRequire(relName, forceSync) {
        return function () {
            //A version of a require function that passes a moduleName
            //value for items that may need to
            //look up paths relative to the moduleName
            var args = aps.call(arguments, 0);

            //If first arg is not require('string'), and there is only
            //one arg, it is the array form without a callback. Insert
            //a null so that the following concat is correct.
            if (typeof args[0] !== 'string' && args.length === 1) {
                args.push(null);
            }
            return req.apply(undef, args.concat([relName, forceSync]));
        };
    }

    function makeNormalize(relName) {
        return function (name) {
            return normalize(name, relName);
        };
    }

    function makeLoad(depName) {
        return function (value) {
            defined[depName] = value;
        };
    }

    function callDep(name) {
        if (hasProp(waiting, name)) {
            var args = waiting[name];
            delete waiting[name];
            defining[name] = true;
            main.apply(undef, args);
        }

        if (!hasProp(defined, name) && !hasProp(defining, name)) {
            throw new Error('No ' + name);
        }
        return defined[name];
    }

    //Turns a plugin!resource to [plugin, resource]
    //with the plugin being undefined if the name
    //did not have a plugin prefix.
    function splitPrefix(name) {
        var prefix,
            index = name ? name.indexOf('!') : -1;
        if (index > -1) {
            prefix = name.substring(0, index);
            name = name.substring(index + 1, name.length);
        }
        return [prefix, name];
    }

    //Creates a parts array for a relName where first part is plugin ID,
    //second part is resource ID. Assumes relName has already been normalized.
    function makeRelParts(relName) {
        return relName ? splitPrefix(relName) : [];
    }

    /**
     * Makes a name map, normalizing the name, and using a plugin
     * for normalization if necessary. Grabs a ref to plugin
     * too, as an optimization.
     */
    makeMap = function (name, relParts) {
        var plugin,
            parts = splitPrefix(name),
            prefix = parts[0],
            relResourceName = relParts[1];

        name = parts[1];

        if (prefix) {
            prefix = normalize(prefix, relResourceName);
            plugin = callDep(prefix);
        }

        //Normalize according
        if (prefix) {
            if (plugin && plugin.normalize) {
                name = plugin.normalize(name, makeNormalize(relResourceName));
            } else {
                name = normalize(name, relResourceName);
            }
        } else {
            name = normalize(name, relResourceName);
            parts = splitPrefix(name);
            prefix = parts[0];
            name = parts[1];
            if (prefix) {
                plugin = callDep(prefix);
            }
        }

        //Using ridiculous property names for space reasons
        return {
            f: prefix ? prefix + '!' + name : name, //fullName
            n: name,
            pr: prefix,
            p: plugin
        };
    };

    function makeConfig(name) {
        return function () {
            return (config && config.config && config.config[name]) || {};
        };
    }

    handlers = {
        require: function (name) {
            return makeRequire(name);
        },
        exports: function (name) {
            var e = defined[name];
            if (typeof e !== 'undefined') {
                return e;
            } else {
                return (defined[name] = {});
            }
        },
        module: function (name) {
            return {
                id: name,
                uri: '',
                exports: defined[name],
                config: makeConfig(name)
            };
        }
    };

    main = function (name, deps, callback, relName) {
        var cjsModule, depName, ret, map, i, relParts,
            args = [],
            callbackType = typeof callback,
            usingExports;

        //Use name if no relName
        relName = relName || name;
        relParts = makeRelParts(relName);

        //Call the callback to define the module, if necessary.
        if (callbackType === 'undefined' || callbackType === 'function') {
            //Pull out the defined dependencies and pass the ordered
            //values to the callback.
            //Default to [require, exports, module] if no deps
            deps = !deps.length && callback.length ? ['require', 'exports', 'module'] : deps;
            for (i = 0; i < deps.length; i += 1) {
                map = makeMap(deps[i], relParts);
                depName = map.f;

                //Fast path CommonJS standard dependencies.
                if (depName === "require") {
                    args[i] = handlers.require(name);
                } else if (depName === "exports") {
                    //CommonJS module spec 1.1
                    args[i] = handlers.exports(name);
                    usingExports = true;
                } else if (depName === "module") {
                    //CommonJS module spec 1.1
                    cjsModule = args[i] = handlers.module(name);
                } else if (hasProp(defined, depName) ||
                           hasProp(waiting, depName) ||
                           hasProp(defining, depName)) {
                    args[i] = callDep(depName);
                } else if (map.p) {
                    map.p.load(map.n, makeRequire(relName, true), makeLoad(depName), {});
                    args[i] = defined[depName];
                } else {
                    throw new Error(name + ' missing ' + depName);
                }
            }

            ret = callback ? callback.apply(defined[name], args) : undefined;

            if (name) {
                //If setting exports via "module" is in play,
                //favor that over return value and exports. After that,
                //favor a non-undefined return value over exports use.
                if (cjsModule && cjsModule.exports !== undef &&
                        cjsModule.exports !== defined[name]) {
                    defined[name] = cjsModule.exports;
                } else if (ret !== undef || !usingExports) {
                    //Use the return value from the function.
                    defined[name] = ret;
                }
            }
        } else if (name) {
            //May just be an object definition for the module. Only
            //worry about defining if have a module name.
            defined[name] = callback;
        }
    };

    requirejs = require = req = function (deps, callback, relName, forceSync, alt) {
        if (typeof deps === "string") {
            if (handlers[deps]) {
                //callback in this case is really relName
                return handlers[deps](callback);
            }
            //Just return the module wanted. In this scenario, the
            //deps arg is the module name, and second arg (if passed)
            //is just the relName.
            //Normalize module name, if it contains . or ..
            return callDep(makeMap(deps, makeRelParts(callback)).f);
        } else if (!deps.splice) {
            //deps is a config object, not an array.
            config = deps;
            if (config.deps) {
                req(config.deps, config.callback);
            }
            if (!callback) {
                return;
            }

            if (callback.splice) {
                //callback is an array, which means it is a dependency list.
                //Adjust args if there are dependencies
                deps = callback;
                callback = relName;
                relName = null;
            } else {
                deps = undef;
            }
        }

        //Support require(['a'])
        callback = callback || function () {};

        //If relName is a function, it is an errback handler,
        //so remove it.
        if (typeof relName === 'function') {
            relName = forceSync;
            forceSync = alt;
        }

        //Simulate async callback;
        if (forceSync) {
            main(undef, deps, callback, relName);
        } else {
            //Using a non-zero value because of concern for what old browsers
            //do, and latest browsers "upgrade" to 4 if lower value is used:
            //http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#dom-windowtimers-settimeout:
            //If want a value immediately, use require('id') instead -- something
            //that works in almond on the global level, but not guaranteed and
            //unlikely to work in other AMD implementations.
            setTimeout(function () {
                main(undef, deps, callback, relName);
            }, 4);
        }

        return req;
    };

    /**
     * Just drops the config on the floor, but returns req in case
     * the config return value is used.
     */
    req.config = function (cfg) {
        return req(cfg);
    };

    /**
     * Expose module registry for debugging and tooling
     */
    requirejs._defined = defined;

    define = function (name, deps, callback) {
        if (typeof name !== 'string') {
            throw new Error('See almond README: incorrect module build, no module name');
        }

        //This module may not have dependencies
        if (!deps.splice) {
            //deps is not an array, so probably means
            //an object literal or factory function for
            //the value. Adjust args.
            callback = deps;
            deps = [];
        }

        if (!hasProp(defined, name) && !hasProp(waiting, name)) {
            waiting[name] = [name, deps, callback];
        }
    };

    define.amd = {
        jQuery: true
    };
}());

S2.requirejs = requirejs;S2.require = require;S2.define = define;
}
}());
S2.define("almond", function(){});

/* global jQuery:false, $:false */
S2.define('jquery',[],function () {
  var _$ = jQuery || $;

  if (_$ == null && console && console.error) {
    console.error(
      'Select2: An instance of jQuery or a jQuery-compatible library was not ' +
      'found. Make sure that you are including jQuery before Select2 on your ' +
      'web page.'
    );
  }

  return _$;
});

S2.define('select2/utils',[
  'jquery'
], function ($) {
  var Utils = {};

  Utils.Extend = function (ChildClass, SuperClass) {
    var __hasProp = {}.hasOwnProperty;

    function BaseConstructor () {
      this.constructor = ChildClass;
    }

    for (var key in SuperClass) {
      if (__hasProp.call(SuperClass, key)) {
        ChildClass[key] = SuperClass[key];
      }
    }

    BaseConstructor.prototype = SuperClass.prototype;
    ChildClass.prototype = new BaseConstructor();
    ChildClass.__super__ = SuperClass.prototype;

    return ChildClass;
  };

  function getMethods (theClass) {
    var proto = theClass.prototype;

    var methods = [];

    for (var methodName in proto) {
      var m = proto[methodName];

      if (typeof m !== 'function') {
        continue;
      }

      if (methodName === 'constructor') {
        continue;
      }

      methods.push(methodName);
    }

    return methods;
  }

  Utils.Decorate = function (SuperClass, DecoratorClass) {
    var decoratedMethods = getMethods(DecoratorClass);
    var superMethods = getMethods(SuperClass);

    function DecoratedClass () {
      var unshift = Array.prototype.unshift;

      var argCount = DecoratorClass.prototype.constructor.length;

      var calledConstructor = SuperClass.prototype.constructor;

      if (argCount > 0) {
        unshift.call(arguments, SuperClass.prototype.constructor);

        calledConstructor = DecoratorClass.prototype.constructor;
      }

      calledConstructor.apply(this, arguments);
    }

    DecoratorClass.displayName = SuperClass.displayName;

    function ctr () {
      this.constructor = DecoratedClass;
    }

    DecoratedClass.prototype = new ctr();

    for (var m = 0; m < superMethods.length; m++) {
        var superMethod = superMethods[m];

        DecoratedClass.prototype[superMethod] =
          SuperClass.prototype[superMethod];
    }

    var calledMethod = function (methodName) {
      // Stub out the original method if it's not decorating an actual method
      var originalMethod = function () {};

      if (methodName in DecoratedClass.prototype) {
        originalMethod = DecoratedClass.prototype[methodName];
      }

      var decoratedMethod = DecoratorClass.prototype[methodName];

      return function () {
        var unshift = Array.prototype.unshift;

        unshift.call(arguments, originalMethod);

        return decoratedMethod.apply(this, arguments);
      };
    };

    for (var d = 0; d < decoratedMethods.length; d++) {
      var decoratedMethod = decoratedMethods[d];

      DecoratedClass.prototype[decoratedMethod] = calledMethod(decoratedMethod);
    }

    return DecoratedClass;
  };

  var Observable = function () {
    this.listeners = {};
  };

  Observable.prototype.on = function (event, callback) {
    this.listeners = this.listeners || {};

    if (event in this.listeners) {
      this.listeners[event].push(callback);
    } else {
      this.listeners[event] = [callback];
    }
  };

  Observable.prototype.trigger = function (event) {
    var slice = Array.prototype.slice;
    var params = slice.call(arguments, 1);

    this.listeners = this.listeners || {};

    // Params should always come in as an array
    if (params == null) {
      params = [];
    }

    // If there are no arguments to the event, use a temporary object
    if (params.length === 0) {
      params.push({});
    }

    // Set the `_type` of the first object to the event
    params[0]._type = event;

    if (event in this.listeners) {
      this.invoke(this.listeners[event], slice.call(arguments, 1));
    }

    if ('*' in this.listeners) {
      this.invoke(this.listeners['*'], arguments);
    }
  };

  Observable.prototype.invoke = function (listeners, params) {
    for (var i = 0, len = listeners.length; i < len; i++) {
      listeners[i].apply(this, params);
    }
  };

  Utils.Observable = Observable;

  Utils.generateChars = function (length) {
    var chars = '';

    for (var i = 0; i < length; i++) {
      var randomChar = Math.floor(Math.random() * 36);
      chars += randomChar.toString(36);
    }

    return chars;
  };

  Utils.bind = function (func, context) {
    return function () {
      func.apply(context, arguments);
    };
  };

  Utils._convertData = function (data) {
    for (var originalKey in data) {
      var keys = originalKey.split('-');

      var dataLevel = data;

      if (keys.length === 1) {
        continue;
      }

      for (var k = 0; k < keys.length; k++) {
        var key = keys[k];

        // Lowercase the first letter
        // By default, dash-separated becomes camelCase
        key = key.substring(0, 1).toLowerCase() + key.substring(1);

        if (!(key in dataLevel)) {
          dataLevel[key] = {};
        }

        if (k == keys.length - 1) {
          dataLevel[key] = data[originalKey];
        }

        dataLevel = dataLevel[key];
      }

      delete data[originalKey];
    }

    return data;
  };

  Utils.hasScroll = function (index, el) {
    // Adapted from the function created by @ShadowScripter
    // and adapted by @BillBarry on the Stack Exchange Code Review website.
    // The original code can be found at
    // http://codereview.stackexchange.com/q/13338
    // and was designed to be used with the Sizzle selector engine.

    var $el = $(el);
    var overflowX = el.style.overflowX;
    var overflowY = el.style.overflowY;

    //Check both x and y declarations
    if (overflowX === overflowY &&
        (overflowY === 'hidden' || overflowY === 'visible')) {
      return false;
    }

    if (overflowX === 'scroll' || overflowY === 'scroll') {
      return true;
    }

    return ($el.innerHeight() < el.scrollHeight ||
      $el.innerWidth() < el.scrollWidth);
  };

  Utils.escapeMarkup = function (markup) {
    var replaceMap = {
      '\\': '&#92;',
      '&': '&amp;',
      '<': '&lt;',
      '>': '&gt;',
      '"': '&quot;',
      '\'': '&#39;',
      '/': '&#47;'
    };

    // Do not try to escape the markup if it's not a string
    if (typeof markup !== 'string') {
      return markup;
    }

    return String(markup).replace(/[&<>"'\/\\]/g, function (match) {
      return replaceMap[match];
    });
  };

  // Append an array of jQuery nodes to a given element.
  Utils.appendMany = function ($element, $nodes) {
    // jQuery 1.7.x does not support $.fn.append() with an array
    // Fall back to a jQuery object collection using $.fn.add()
    if ($.fn.jquery.substr(0, 3) === '1.7') {
      var $jqNodes = $();

      $.map($nodes, function (node) {
        $jqNodes = $jqNodes.add(node);
      });

      $nodes = $jqNodes;
    }

    $element.append($nodes);
  };

  return Utils;
});

S2.define('select2/results',[
  'jquery',
  './utils'
], function ($, Utils) {
  function Results ($element, options, dataAdapter) {
    this.$element = $element;
    this.data = dataAdapter;
    this.options = options;

    Results.__super__.constructor.call(this);
  }

  Utils.Extend(Results, Utils.Observable);

  Results.prototype.render = function () {
    var $results = $(
      '<ul class="select2-results__options" role="tree"></ul>'
    );

    if (this.options.get('multiple')) {
      $results.attr('aria-multiselectable', 'true');
    }

    this.$results = $results;

    return $results;
  };

  Results.prototype.clear = function () {
    this.$results.empty();
  };

  Results.prototype.displayMessage = function (params) {
    var escapeMarkup = this.options.get('escapeMarkup');

    this.clear();
    this.hideLoading();

    var $message = $(
      '<li role="treeitem" aria-live="assertive"' +
      ' class="select2-results__option"></li>'
    );

    var message = this.options.get('translations').get(params.message);

    $message.append(
      escapeMarkup(
        message(params.args)
      )
    );

    $message[0].className += ' select2-results__message';

    this.$results.append($message);
  };

  Results.prototype.hideMessages = function () {
    this.$results.find('.select2-results__message').remove();
  };

  Results.prototype.append = function (data) {
    this.hideLoading();

    var $options = [];

    if (data.results == null || data.results.length === 0) {
      if (this.$results.children().length === 0) {
        this.trigger('results:message', {
          message: 'noResults'
        });
      }

      return;
    }

    data.results = this.sort(data.results);

    for (var d = 0; d < data.results.length; d++) {
      var item = data.results[d];

      var $option = this.option(item);

      $options.push($option);
    }

    this.$results.append($options);
  };

  Results.prototype.position = function ($results, $dropdown) {
    var $resultsContainer = $dropdown.find('.select2-results');
    $resultsContainer.append($results);
  };

  Results.prototype.sort = function (data) {
    var sorter = this.options.get('sorter');

    return sorter(data);
  };

  Results.prototype.highlightFirstItem = function () {
    var $options = this.$results
      .find('.select2-results__option[aria-selected]');

    var $selected = $options.filter('[aria-selected=true]');

    // Check if there are any selected options
    if ($selected.length > 0) {
      // If there are selected options, highlight the first
      $selected.first().trigger('mouseenter');
    } else {
      // If there are no selected options, highlight the first option
      // in the dropdown
      $options.first().trigger('mouseenter');
    }

    this.ensureHighlightVisible();
  };

  Results.prototype.setClasses = function () {
    var self = this;

    this.data.current(function (selected) {
      var selectedIds = $.map(selected, function (s) {
        return s.id.toString();
      });

      var $options = self.$results
        .find('.select2-results__option[aria-selected]');

      $options.each(function () {
        var $option = $(this);

        var item = $.data(this, 'data');

        // id needs to be converted to a string when comparing
        var id = '' + item.id;

        if ((item.element != null && item.element.selected) ||
            (item.element == null && $.inArray(id, selectedIds) > -1)) {
          $option.attr('aria-selected', 'true');
        } else {
          $option.attr('aria-selected', 'false');
        }
      });

    });
  };

  Results.prototype.showLoading = function (params) {
    this.hideLoading();

    var loadingMore = this.options.get('translations').get('searching');

    var loading = {
      disabled: true,
      loading: true,
      text: loadingMore(params)
    };
    var $loading = this.option(loading);
    $loading.className += ' loading-results';

    this.$results.prepend($loading);
  };

  Results.prototype.hideLoading = function () {
    this.$results.find('.loading-results').remove();
  };

  Results.prototype.option = function (data) {
    var option = document.createElement('li');
    option.className = 'select2-results__option';

    var attrs = {
      'role': 'treeitem',
      'aria-selected': 'false'
    };

    if (data.disabled) {
      delete attrs['aria-selected'];
      attrs['aria-disabled'] = 'true';
    }

    if (data.id == null) {
      delete attrs['aria-selected'];
    }

    if (data._resultId != null) {
      option.id = data._resultId;
    }

    if (data.title) {
      option.title = data.title;
    }

    if (data.children) {
      attrs.role = 'group';
      attrs['aria-label'] = data.text;
      delete attrs['aria-selected'];
    }

    for (var attr in attrs) {
      var val = attrs[attr];

      option.setAttribute(attr, val);
    }

    if (data.children) {
      var $option = $(option);

      var label = document.createElement('strong');
      label.className = 'select2-results__group';

      var $label = $(label);
      this.template(data, label);

      var $children = [];

      for (var c = 0; c < data.children.length; c++) {
        var child = data.children[c];

        var $child = this.option(child);

        $children.push($child);
      }

      var $childrenContainer = $('<ul></ul>', {
        'class': 'select2-results__options select2-results__options--nested'
      });

      $childrenContainer.append($children);

      $option.append(label);
      $option.append($childrenContainer);
    } else {
      this.template(data, option);
    }

    $.data(option, 'data', data);

    return option;
  };

  Results.prototype.bind = function (container, $container) {
    var self = this;

    var id = container.id + '-results';

    this.$results.attr('id', id);

    container.on('results:all', function (params) {
      self.clear();
      self.append(params.data);

      if (container.isOpen()) {
        self.setClasses();
        self.highlightFirstItem();
      }
    });

    container.on('results:append', function (params) {
      self.append(params.data);

      if (container.isOpen()) {
        self.setClasses();
      }
    });

    container.on('query', function (params) {
      self.hideMessages();
      self.showLoading(params);
    });

    container.on('select', function () {
      if (!container.isOpen()) {
        return;
      }

      self.setClasses();
      self.highlightFirstItem();
    });

    container.on('unselect', function () {
      if (!container.isOpen()) {
        return;
      }

      self.setClasses();
      self.highlightFirstItem();
    });

    container.on('open', function () {
      // When the dropdown is open, aria-expended="true"
      self.$results.attr('aria-expanded', 'true');
      self.$results.attr('aria-hidden', 'false');

      self.setClasses();
      self.ensureHighlightVisible();
    });

    container.on('close', function () {
      // When the dropdown is closed, aria-expended="false"
      self.$results.attr('aria-expanded', 'false');
      self.$results.attr('aria-hidden', 'true');
      self.$results.removeAttr('aria-activedescendant');
    });

    container.on('results:toggle', function () {
      var $highlighted = self.getHighlightedResults();

      if ($highlighted.length === 0) {
        return;
      }

      $highlighted.trigger('mouseup');
    });

    container.on('results:select', function () {
      var $highlighted = self.getHighlightedResults();

      if ($highlighted.length === 0) {
        return;
      }

      var data = $highlighted.data('data');

      if ($highlighted.attr('aria-selected') == 'true') {
        self.trigger('close', {});
      } else {
        self.trigger('select', {
          data: data
        });
      }
    });

    container.on('results:previous', function () {
      var $highlighted = self.getHighlightedResults();

      var $options = self.$results.find('[aria-selected]');

      var currentIndex = $options.index($highlighted);

      // If we are already at te top, don't move further
      if (currentIndex === 0) {
        return;
      }

      var nextIndex = currentIndex - 1;

      // If none are highlighted, highlight the first
      if ($highlighted.length === 0) {
        nextIndex = 0;
      }

      var $next = $options.eq(nextIndex);

      $next.trigger('mouseenter');

      var currentOffset = self.$results.offset().top;
      var nextTop = $next.offset().top;
      var nextOffset = self.$results.scrollTop() + (nextTop - currentOffset);

      if (nextIndex === 0) {
        self.$results.scrollTop(0);
      } else if (nextTop - currentOffset < 0) {
        self.$results.scrollTop(nextOffset);
      }
    });

    container.on('results:next', function () {
      var $highlighted = self.getHighlightedResults();

      var $options = self.$results.find('[aria-selected]');

      var currentIndex = $options.index($highlighted);

      var nextIndex = currentIndex + 1;

      // If we are at the last option, stay there
      if (nextIndex >= $options.length) {
        return;
      }

      var $next = $options.eq(nextIndex);

      $next.trigger('mouseenter');

      var currentOffset = self.$results.offset().top +
        self.$results.outerHeight(false);
      var nextBottom = $next.offset().top + $next.outerHeight(false);
      var nextOffset = self.$results.scrollTop() + nextBottom - currentOffset;

      if (nextIndex === 0) {
        self.$results.scrollTop(0);
      } else if (nextBottom > currentOffset) {
        self.$results.scrollTop(nextOffset);
      }
    });

    container.on('results:focus', function (params) {
      params.element.addClass('select2-results__option--highlighted');
    });

    container.on('results:message', function (params) {
      self.displayMessage(params);
    });

    if ($.fn.mousewheel) {
      this.$results.on('mousewheel', function (e) {
        var top = self.$results.scrollTop();

        var bottom = self.$results.get(0).scrollHeight - top + e.deltaY;

        var isAtTop = e.deltaY > 0 && top - e.deltaY <= 0;
        var isAtBottom = e.deltaY < 0 && bottom <= self.$results.height();

        if (isAtTop) {
          self.$results.scrollTop(0);

          e.preventDefault();
          e.stopPropagation();
        } else if (isAtBottom) {
          self.$results.scrollTop(
            self.$results.get(0).scrollHeight - self.$results.height()
          );

          e.preventDefault();
          e.stopPropagation();
        }
      });
    }

    this.$results.on('mouseup', '.select2-results__option[aria-selected]',
      function (evt) {
      var $this = $(this);

      var data = $this.data('data');

      if ($this.attr('aria-selected') === 'true') {
        if (self.options.get('multiple')) {
          self.trigger('unselect', {
            originalEvent: evt,
            data: data
          });
        } else {
          self.trigger('close', {});
        }

        return;
      }

      self.trigger('select', {
        originalEvent: evt,
        data: data
      });
    });

    this.$results.on('mouseenter', '.select2-results__option[aria-selected]',
      function (evt) {
      var data = $(this).data('data');

      self.getHighlightedResults()
          .removeClass('select2-results__option--highlighted');

      self.trigger('results:focus', {
        data: data,
        element: $(this)
      });
    });
  };

  Results.prototype.getHighlightedResults = function () {
    var $highlighted = this.$results
    .find('.select2-results__option--highlighted');

    return $highlighted;
  };

  Results.prototype.destroy = function () {
    this.$results.remove();
  };

  Results.prototype.ensureHighlightVisible = function () {
    var $highlighted = this.getHighlightedResults();

    if ($highlighted.length === 0) {
      return;
    }

    var $options = this.$results.find('[aria-selected]');

    var currentIndex = $options.index($highlighted);

    var currentOffset = this.$results.offset().top;
    var nextTop = $highlighted.offset().top;
    var nextOffset = this.$results.scrollTop() + (nextTop - currentOffset);

    var offsetDelta = nextTop - currentOffset;
    nextOffset -= $highlighted.outerHeight(false) * 2;

    if (currentIndex <= 2) {
      this.$results.scrollTop(0);
    } else if (offsetDelta > this.$results.outerHeight() || offsetDelta < 0) {
      this.$results.scrollTop(nextOffset);
    }
  };

  Results.prototype.template = function (result, container) {
    var template = this.options.get('templateResult');
    var escapeMarkup = this.options.get('escapeMarkup');

    var content = template(result, container);

    if (content == null) {
      container.style.display = 'none';
    } else if (typeof content === 'string') {
      container.innerHTML = escapeMarkup(content);
    } else {
      $(container).append(content);
    }
  };

  return Results;
});

S2.define('select2/keys',[

], function () {
  var KEYS = {
    BACKSPACE: 8,
    TAB: 9,
    ENTER: 13,
    SHIFT: 16,
    CTRL: 17,
    ALT: 18,
    ESC: 27,
    SPACE: 32,
    PAGE_UP: 33,
    PAGE_DOWN: 34,
    END: 35,
    HOME: 36,
    LEFT: 37,
    UP: 38,
    RIGHT: 39,
    DOWN: 40,
    DELETE: 46
  };

  return KEYS;
});

S2.define('select2/selection/base',[
  'jquery',
  '../utils',
  '../keys'
], function ($, Utils, KEYS) {
  function BaseSelection ($element, options) {
    this.$element = $element;
    this.options = options;

    BaseSelection.__super__.constructor.call(this);
  }

  Utils.Extend(BaseSelection, Utils.Observable);

  BaseSelection.prototype.render = function () {
    var $selection = $(
      '<span class="select2-selection" role="combobox" ' +
      ' aria-haspopup="true" aria-expanded="false">' +
      '</span>'
    );

    this._tabindex = 0;

    if (this.$element.data('old-tabindex') != null) {
      this._tabindex = this.$element.data('old-tabindex');
    } else if (this.$element.attr('tabindex') != null) {
      this._tabindex = this.$element.attr('tabindex');
    }

    $selection.attr('title', this.$element.attr('title'));
    $selection.attr('tabindex', this._tabindex);

    this.$selection = $selection;

    return $selection;
  };

  BaseSelection.prototype.bind = function (container, $container) {
    var self = this;

    var id = container.id + '-container';
    var resultsId = container.id + '-results';

    this.container = container;

    this.$selection.on('focus', function (evt) {
      self.trigger('focus', evt);
    });

    this.$selection.on('blur', function (evt) {
      self._handleBlur(evt);
    });

    this.$selection.on('keydown', function (evt) {
      self.trigger('keypress', evt);

      if (evt.which === KEYS.SPACE) {
        evt.preventDefault();
      }
    });

    container.on('results:focus', function (params) {
      self.$selection.attr('aria-activedescendant', params.data._resultId);
    });

    container.on('selection:update', function (params) {
      self.update(params.data);
    });

    container.on('open', function () {
      // When the dropdown is open, aria-expanded="true"
      self.$selection.attr('aria-expanded', 'true');
      self.$selection.attr('aria-owns', resultsId);

      self._attachCloseHandler(container);
    });

    container.on('close', function () {
      // When the dropdown is closed, aria-expanded="false"
      self.$selection.attr('aria-expanded', 'false');
      self.$selection.removeAttr('aria-activedescendant');
      self.$selection.removeAttr('aria-owns');

      self.$selection.focus();

      self._detachCloseHandler(container);
    });

    container.on('enable', function () {
      self.$selection.attr('tabindex', self._tabindex);
    });

    container.on('disable', function () {
      self.$selection.attr('tabindex', '-1');
    });
  };

  BaseSelection.prototype._handleBlur = function (evt) {
    var self = this;

    // This needs to be delayed as the active element is the body when the tab
    // key is pressed, possibly along with others.
    window.setTimeout(function () {
      // Don't trigger `blur` if the focus is still in the selection
      if (
        (document.activeElement == self.$selection[0]) ||
        ($.contains(self.$selection[0], document.activeElement))
      ) {
        return;
      }

      self.trigger('blur', evt);
    }, 1);
  };

  BaseSelection.prototype._attachCloseHandler = function (container) {
    var self = this;

    $(document.body).on('mousedown.select2.' + container.id, function (e) {
      var $target = $(e.target);

      var $select = $target.closest('.select2');

      var $all = $('.select2.select2-container--open');

      $all.each(function () {
        var $this = $(this);

        if (this == $select[0]) {
          return;
        }

        var $element = $this.data('element');

        $element.select2('close');
      });
    });
  };

  BaseSelection.prototype._detachCloseHandler = function (container) {
    $(document.body).off('mousedown.select2.' + container.id);
  };

  BaseSelection.prototype.position = function ($selection, $container) {
    var $selectionContainer = $container.find('.selection');
    $selectionContainer.append($selection);
  };

  BaseSelection.prototype.destroy = function () {
    this._detachCloseHandler(this.container);
  };

  BaseSelection.prototype.update = function (data) {
    throw new Error('The `update` method must be defined in child classes.');
  };

  return BaseSelection;
});

S2.define('select2/selection/single',[
  'jquery',
  './base',
  '../utils',
  '../keys'
], function ($, BaseSelection, Utils, KEYS) {
  function SingleSelection () {
    SingleSelection.__super__.constructor.apply(this, arguments);
  }

  Utils.Extend(SingleSelection, BaseSelection);

  SingleSelection.prototype.render = function () {
    var $selection = SingleSelection.__super__.render.call(this);

    $selection.addClass('select2-selection--single');

    $selection.html(
      '<span class="select2-selection__rendered"></span>' +
      '<span class="select2-selection__arrow" role="presentation">' +
        '<b role="presentation"></b>' +
      '</span>'
    );

    return $selection;
  };

  SingleSelection.prototype.bind = function (container, $container) {
    var self = this;

    SingleSelection.__super__.bind.apply(this, arguments);

    var id = container.id + '-container';

    this.$selection.find('.select2-selection__rendered').attr('id', id);
    this.$selection.attr('aria-labelledby', id);

    this.$selection.on('mousedown', function (evt) {
      // Only respond to left clicks
      if (evt.which !== 1) {
        return;
      }

      self.trigger('toggle', {
        originalEvent: evt
      });
    });

    this.$selection.on('focus', function (evt) {
      // User focuses on the container
    });

    this.$selection.on('blur', function (evt) {
      // User exits the container
    });

    container.on('focus', function (evt) {
      if (!container.isOpen()) {
        self.$selection.focus();
      }
    });

    container.on('selection:update', function (params) {
      self.update(params.data);
    });
  };

  SingleSelection.prototype.clear = function () {
    this.$selection.find('.select2-selection__rendered').empty();
  };

  SingleSelection.prototype.display = function (data, container) {
    var template = this.options.get('templateSelection');
    var escapeMarkup = this.options.get('escapeMarkup');

    return escapeMarkup(template(data, container));
  };

  SingleSelection.prototype.selectionContainer = function () {
    return $('<span></span>');
  };

  SingleSelection.prototype.update = function (data) {
    if (data.length === 0) {
      this.clear();
      return;
    }

    var selection = data[0];

    var $rendered = this.$selection.find('.select2-selection__rendered');
    var formatted = this.display(selection, $rendered);

    $rendered.empty().append(formatted);
    $rendered.prop('title', selection.title || selection.text);
  };

  return SingleSelection;
});

S2.define('select2/selection/multiple',[
  'jquery',
  './base',
  '../utils'
], function ($, BaseSelection, Utils) {
  function MultipleSelection ($element, options) {
    MultipleSelection.__super__.constructor.apply(this, arguments);
  }

  Utils.Extend(MultipleSelection, BaseSelection);

  MultipleSelection.prototype.render = function () {
    var $selection = MultipleSelection.__super__.render.call(this);

    $selection.addClass('select2-selection--multiple');

    $selection.html(
      '<ul class="select2-selection__rendered"></ul>'
    );

    return $selection;
  };

  MultipleSelection.prototype.bind = function (container, $container) {
    var self = this;

    MultipleSelection.__super__.bind.apply(this, arguments);

    this.$selection.on('click', function (evt) {
      self.trigger('toggle', {
        originalEvent: evt
      });
    });

    this.$selection.on(
      'click',
      '.select2-selection__choice__remove',
      function (evt) {
        // Ignore the event if it is disabled
        if (self.options.get('disabled')) {
          return;
        }

        var $remove = $(this);
        var $selection = $remove.parent();

        var data = $selection.data('data');

        self.trigger('unselect', {
          originalEvent: evt,
          data: data
        });
      }
    );
  };

  MultipleSelection.prototype.clear = function () {
    this.$selection.find('.select2-selection__rendered').empty();
  };

  MultipleSelection.prototype.display = function (data, container) {
    var template = this.options.get('templateSelection');
    var escapeMarkup = this.options.get('escapeMarkup');

    return escapeMarkup(template(data, container));
  };

  MultipleSelection.prototype.selectionContainer = function () {
    var $container = $(
      '<li class="select2-selection__choice">' +
        '<span class="select2-selection__choice__remove" role="presentation">' +
          '&times;' +
        '</span>' +
      '</li>'
    );

    return $container;
  };

  MultipleSelection.prototype.update = function (data) {
    this.clear();

    if (data.length === 0) {
      return;
    }

    var $selections = [];

    for (var d = 0; d < data.length; d++) {
      var selection = data[d];

      var $selection = this.selectionContainer();
      var formatted = this.display(selection, $selection);

      $selection.append(formatted);
      $selection.prop('title', selection.title || selection.text);

      $selection.data('data', selection);

      $selections.push($selection);
    }

    var $rendered = this.$selection.find('.select2-selection__rendered');

    Utils.appendMany($rendered, $selections);
  };

  return MultipleSelection;
});

S2.define('select2/selection/placeholder',[
  '../utils'
], function (Utils) {
  function Placeholder (decorated, $element, options) {
    this.placeholder = this.normalizePlaceholder(options.get('placeholder'));

    decorated.call(this, $element, options);
  }

  Placeholder.prototype.normalizePlaceholder = function (_, placeholder) {
    if (typeof placeholder === 'string') {
      placeholder = {
        id: '',
        text: placeholder
      };
    }

    return placeholder;
  };

  Placeholder.prototype.createPlaceholder = function (decorated, placeholder) {
    var $placeholder = this.selectionContainer();

    $placeholder.html(this.display(placeholder));
    $placeholder.addClass('select2-selection__placeholder')
                .removeClass('select2-selection__choice');

    return $placeholder;
  };

  Placeholder.prototype.update = function (decorated, data) {
    var singlePlaceholder = (
      data.length == 1 && data[0].id != this.placeholder.id
    );
    var multipleSelections = data.length > 1;

    if (multipleSelections || singlePlaceholder) {
      return decorated.call(this, data);
    }

    this.clear();

    var $placeholder = this.createPlaceholder(this.placeholder);

    this.$selection.find('.select2-selection__rendered').append($placeholder);
  };

  return Placeholder;
});

S2.define('select2/selection/allowClear',[
  'jquery',
  '../keys'
], function ($, KEYS) {
  function AllowClear () { }

  AllowClear.prototype.bind = function (decorated, container, $container) {
    var self = this;

    decorated.call(this, container, $container);

    if (this.placeholder == null) {
      if (this.options.get('debug') && window.console && console.error) {
        console.error(
          'Select2: The `allowClear` option should be used in combination ' +
          'with the `placeholder` option.'
        );
      }
    }

    this.$selection.on('mousedown', '.select2-selection__clear',
      function (evt) {
        self._handleClear(evt);
    });

    container.on('keypress', function (evt) {
      self._handleKeyboardClear(evt, container);
    });
  };

  AllowClear.prototype._handleClear = function (_, evt) {
    // Ignore the event if it is disabled
    if (this.options.get('disabled')) {
      return;
    }

    var $clear = this.$selection.find('.select2-selection__clear');

    // Ignore the event if nothing has been selected
    if ($clear.length === 0) {
      return;
    }

    evt.stopPropagation();

    var data = $clear.data('data');

    for (var d = 0; d < data.length; d++) {
      var unselectData = {
        data: data[d]
      };

      // Trigger the `unselect` event, so people can prevent it from being
      // cleared.
      this.trigger('unselect', unselectData);

      // If the event was prevented, don't clear it out.
      if (unselectData.prevented) {
        return;
      }
    }

    this.$element.val(this.placeholder.id).trigger('change');

    this.trigger('toggle', {});
  };

  AllowClear.prototype._handleKeyboardClear = function (_, evt, container) {
    if (container.isOpen()) {
      return;
    }

    if (evt.which == KEYS.DELETE || evt.which == KEYS.BACKSPACE) {
      this._handleClear(evt);
    }
  };

  AllowClear.prototype.update = function (decorated, data) {
    decorated.call(this, data);

    if (this.$selection.find('.select2-selection__placeholder').length > 0 ||
        data.length === 0) {
      return;
    }

    var $remove = $(
      '<span class="select2-selection__clear">' +
        '&times;' +
      '</span>'
    );
    $remove.data('data', data);

    this.$selection.find('.select2-selection__rendered').prepend($remove);
  };

  return AllowClear;
});

S2.define('select2/selection/search',[
  'jquery',
  '../utils',
  '../keys'
], function ($, Utils, KEYS) {
  function Search (decorated, $element, options) {
    decorated.call(this, $element, options);
  }

  Search.prototype.render = function (decorated) {
    var $search = $(
      '<li class="select2-search select2-search--inline">' +
        '<input class="select2-search__field" type="search" tabindex="-1"' +
        ' autocomplete="off" autocorrect="off" autocapitalize="none"' +
        ' spellcheck="false" role="textbox" aria-autocomplete="list" />' +
      '</li>'
    );

    this.$searchContainer = $search;
    this.$search = $search.find('input');

    var $rendered = decorated.call(this);

    this._transferTabIndex();

    return $rendered;
  };

  Search.prototype.bind = function (decorated, container, $container) {
    var self = this;

    decorated.call(this, container, $container);

    container.on('open', function () {
      self.$search.trigger('focus');
    });

    container.on('close', function () {
      self.$search.val('');
      self.$search.removeAttr('aria-activedescendant');
      self.$search.trigger('focus');
    });

    container.on('enable', function () {
      self.$search.prop('disabled', false);

      self._transferTabIndex();
    });

    container.on('disable', function () {
      self.$search.prop('disabled', true);
    });

    container.on('focus', function (evt) {
      self.$search.trigger('focus');
    });

    container.on('results:focus', function (params) {
      self.$search.attr('aria-activedescendant', params.id);
    });

    this.$selection.on('focusin', '.select2-search--inline', function (evt) {
      self.trigger('focus', evt);
    });

    this.$selection.on('focusout', '.select2-search--inline', function (evt) {
      self._handleBlur(evt);
    });

    this.$selection.on('keydown', '.select2-search--inline', function (evt) {
      evt.stopPropagation();

      self.trigger('keypress', evt);

      self._keyUpPrevented = evt.isDefaultPrevented();

      var key = evt.which;

      if (key === KEYS.BACKSPACE && self.$search.val() === '') {
        var $previousChoice = self.$searchContainer
          .prev('.select2-selection__choice');

        if ($previousChoice.length > 0) {
          var item = $previousChoice.data('data');

          self.searchRemoveChoice(item);

          evt.preventDefault();
        }
      }
    });

    // Try to detect the IE version should the `documentMode` property that
    // is stored on the document. This is only implemented in IE and is
    // slightly cleaner than doing a user agent check.
    // This property is not available in Edge, but Edge also doesn't have
    // this bug.
    var msie = document.documentMode;
    var disableInputEvents = msie && msie <= 11;

    // Workaround for browsers which do not support the `input` event
    // This will prevent double-triggering of events for browsers which support
    // both the `keyup` and `input` events.
    this.$selection.on(
      'input.searchcheck',
      '.select2-search--inline',
      function (evt) {
        // IE will trigger the `input` event when a placeholder is used on a
        // search box. To get around this issue, we are forced to ignore all
        // `input` events in IE and keep using `keyup`.
        if (disableInputEvents) {
          self.$selection.off('input.search input.searchcheck');
          return;
        }

        // Unbind the duplicated `keyup` event
        self.$selection.off('keyup.search');
      }
    );

    this.$selection.on(
      'keyup.search input.search',
      '.select2-search--inline',
      function (evt) {
        // IE will trigger the `input` event when a placeholder is used on a
        // search box. To get around this issue, we are forced to ignore all
        // `input` events in IE and keep using `keyup`.
        if (disableInputEvents && evt.type === 'input') {
          self.$selection.off('input.search input.searchcheck');
          return;
        }

        var key = evt.which;

        // We can freely ignore events from modifier keys
        if (key == KEYS.SHIFT || key == KEYS.CTRL || key == KEYS.ALT) {
          return;
        }

        // Tabbing will be handled during the `keydown` phase
        if (key == KEYS.TAB) {
          return;
        }

        self.handleSearch(evt);
      }
    );
  };

  /**
   * This method will transfer the tabindex attribute from the rendered
   * selection to the search box. This allows for the search box to be used as
   * the primary focus instead of the selection container.
   *
   * @private
   */
  Search.prototype._transferTabIndex = function (decorated) {
    this.$search.attr('tabindex', this.$selection.attr('tabindex'));
    this.$selection.attr('tabindex', '-1');
  };

  Search.prototype.createPlaceholder = function (decorated, placeholder) {
    this.$search.attr('placeholder', placeholder.text);
  };

  Search.prototype.update = function (decorated, data) {
    var searchHadFocus = this.$search[0] == document.activeElement;

    this.$search.attr('placeholder', '');

    decorated.call(this, data);

    this.$selection.find('.select2-selection__rendered')
                   .append(this.$searchContainer);

    this.resizeSearch();
    if (searchHadFocus) {
      this.$search.focus();
    }
  };

  Search.prototype.handleSearch = function () {
    this.resizeSearch();

    if (!this._keyUpPrevented) {
      var input = this.$search.val();

      this.trigger('query', {
        term: input
      });
    }

    this._keyUpPrevented = false;
  };

  Search.prototype.searchRemoveChoice = function (decorated, item) {
    this.trigger('unselect', {
      data: item
    });

    this.$search.val(item.text);
    this.handleSearch();
  };

  Search.prototype.resizeSearch = function () {
    this.$search.css('width', '25px');

    var width = '';

    if (this.$search.attr('placeholder') !== '') {
      width = this.$selection.find('.select2-selection__rendered').innerWidth();
    } else {
      var minimumWidth = this.$search.val().length + 1;

      width = (minimumWidth * 0.75) + 'em';
    }

    this.$search.css('width', width);
  };

  return Search;
});

S2.define('select2/selection/eventRelay',[
  'jquery'
], function ($) {
  function EventRelay () { }

  EventRelay.prototype.bind = function (decorated, container, $container) {
    var self = this;
    var relayEvents = [
      'open', 'opening',
      'close', 'closing',
      'select', 'selecting',
      'unselect', 'unselecting'
    ];

    var preventableEvents = ['opening', 'closing', 'selecting', 'unselecting'];

    decorated.call(this, container, $container);

    container.on('*', function (name, params) {
      // Ignore events that should not be relayed
      if ($.inArray(name, relayEvents) === -1) {
        return;
      }

      // The parameters should always be an object
      params = params || {};

      // Generate the jQuery event for the Select2 event
      var evt = $.Event('select2:' + name, {
        params: params
      });

      self.$element.trigger(evt);

      // Only handle preventable events if it was one
      if ($.inArray(name, preventableEvents) === -1) {
        return;
      }

      params.prevented = evt.isDefaultPrevented();
    });
  };

  return EventRelay;
});

S2.define('select2/translation',[
  'jquery',
  'require'
], function ($, require) {
  function Translation (dict) {
    this.dict = dict || {};
  }

  Translation.prototype.all = function () {
    return this.dict;
  };

  Translation.prototype.get = function (key) {
    return this.dict[key];
  };

  Translation.prototype.extend = function (translation) {
    this.dict = $.extend({}, translation.all(), this.dict);
  };

  // Static functions

  Translation._cache = {};

  Translation.loadPath = function (path) {
    if (!(path in Translation._cache)) {
      var translations = require(path);

      Translation._cache[path] = translations;
    }

    return new Translation(Translation._cache[path]);
  };

  return Translation;
});

S2.define('select2/diacritics',[

], function () {
  var diacritics = {
    '\u24B6': 'A',
    '\uFF21': 'A',
    '\u00C0': 'A',
    '\u00C1': 'A',
    '\u00C2': 'A',
    '\u1EA6': 'A',
    '\u1EA4': 'A',
    '\u1EAA': 'A',
    '\u1EA8': 'A',
    '\u00C3': 'A',
    '\u0100': 'A',
    '\u0102': 'A',
    '\u1EB0': 'A',
    '\u1EAE': 'A',
    '\u1EB4': 'A',
    '\u1EB2': 'A',
    '\u0226': 'A',
    '\u01E0': 'A',
    '\u00C4': 'A',
    '\u01DE': 'A',
    '\u1EA2': 'A',
    '\u00C5': 'A',
    '\u01FA': 'A',
    '\u01CD': 'A',
    '\u0200': 'A',
    '\u0202': 'A',
    '\u1EA0': 'A',
    '\u1EAC': 'A',
    '\u1EB6': 'A',
    '\u1E00': 'A',
    '\u0104': 'A',
    '\u023A': 'A',
    '\u2C6F': 'A',
    '\uA732': 'AA',
    '\u00C6': 'AE',
    '\u01FC': 'AE',
    '\u01E2': 'AE',
    '\uA734': 'AO',
    '\uA736': 'AU',
    '\uA738': 'AV',
    '\uA73A': 'AV',
    '\uA73C': 'AY',
    '\u24B7': 'B',
    '\uFF22': 'B',
    '\u1E02': 'B',
    '\u1E04': 'B',
    '\u1E06': 'B',
    '\u0243': 'B',
    '\u0182': 'B',
    '\u0181': 'B',
    '\u24B8': 'C',
    '\uFF23': 'C',
    '\u0106': 'C',
    '\u0108': 'C',
    '\u010A': 'C',
    '\u010C': 'C',
    '\u00C7': 'C',
    '\u1E08': 'C',
    '\u0187': 'C',
    '\u023B': 'C',
    '\uA73E': 'C',
    '\u24B9': 'D',
    '\uFF24': 'D',
    '\u1E0A': 'D',
    '\u010E': 'D',
    '\u1E0C': 'D',
    '\u1E10': 'D',
    '\u1E12': 'D',
    '\u1E0E': 'D',
    '\u0110': 'D',
    '\u018B': 'D',
    '\u018A': 'D',
    '\u0189': 'D',
    '\uA779': 'D',
    '\u01F1': 'DZ',
    '\u01C4': 'DZ',
    '\u01F2': 'Dz',
    '\u01C5': 'Dz',
    '\u24BA': 'E',
    '\uFF25': 'E',
    '\u00C8': 'E',
    '\u00C9': 'E',
    '\u00CA': 'E',
    '\u1EC0': 'E',
    '\u1EBE': 'E',
    '\u1EC4': 'E',
    '\u1EC2': 'E',
    '\u1EBC': 'E',
    '\u0112': 'E',
    '\u1E14': 'E',
    '\u1E16': 'E',
    '\u0114': 'E',
    '\u0116': 'E',
    '\u00CB': 'E',
    '\u1EBA': 'E',
    '\u011A': 'E',
    '\u0204': 'E',
    '\u0206': 'E',
    '\u1EB8': 'E',
    '\u1EC6': 'E',
    '\u0228': 'E',
    '\u1E1C': 'E',
    '\u0118': 'E',
    '\u1E18': 'E',
    '\u1E1A': 'E',
    '\u0190': 'E',
    '\u018E': 'E',
    '\u24BB': 'F',
    '\uFF26': 'F',
    '\u1E1E': 'F',
    '\u0191': 'F',
    '\uA77B': 'F',
    '\u24BC': 'G',
    '\uFF27': 'G',
    '\u01F4': 'G',
    '\u011C': 'G',
    '\u1E20': 'G',
    '\u011E': 'G',
    '\u0120': 'G',
    '\u01E6': 'G',
    '\u0122': 'G',
    '\u01E4': 'G',
    '\u0193': 'G',
    '\uA7A0': 'G',
    '\uA77D': 'G',
    '\uA77E': 'G',
    '\u24BD': 'H',
    '\uFF28': 'H',
    '\u0124': 'H',
    '\u1E22': 'H',
    '\u1E26': 'H',
    '\u021E': 'H',
    '\u1E24': 'H',
    '\u1E28': 'H',
    '\u1E2A': 'H',
    '\u0126': 'H',
    '\u2C67': 'H',
    '\u2C75': 'H',
    '\uA78D': 'H',
    '\u24BE': 'I',
    '\uFF29': 'I',
    '\u00CC': 'I',
    '\u00CD': 'I',
    '\u00CE': 'I',
    '\u0128': 'I',
    '\u012A': 'I',
    '\u012C': 'I',
    '\u0130': 'I',
    '\u00CF': 'I',
    '\u1E2E': 'I',
    '\u1EC8': 'I',
    '\u01CF': 'I',
    '\u0208': 'I',
    '\u020A': 'I',
    '\u1ECA': 'I',
    '\u012E': 'I',
    '\u1E2C': 'I',
    '\u0197': 'I',
    '\u24BF': 'J',
    '\uFF2A': 'J',
    '\u0134': 'J',
    '\u0248': 'J',
    '\u24C0': 'K',
    '\uFF2B': 'K',
    '\u1E30': 'K',
    '\u01E8': 'K',
    '\u1E32': 'K',
    '\u0136': 'K',
    '\u1E34': 'K',
    '\u0198': 'K',
    '\u2C69': 'K',
    '\uA740': 'K',
    '\uA742': 'K',
    '\uA744': 'K',
    '\uA7A2': 'K',
    '\u24C1': 'L',
    '\uFF2C': 'L',
    '\u013F': 'L',
    '\u0139': 'L',
    '\u013D': 'L',
    '\u1E36': 'L',
    '\u1E38': 'L',
    '\u013B': 'L',
    '\u1E3C': 'L',
    '\u1E3A': 'L',
    '\u0141': 'L',
    '\u023D': 'L',
    '\u2C62': 'L',
    '\u2C60': 'L',
    '\uA748': 'L',
    '\uA746': 'L',
    '\uA780': 'L',
    '\u01C7': 'LJ',
    '\u01C8': 'Lj',
    '\u24C2': 'M',
    '\uFF2D': 'M',
    '\u1E3E': 'M',
    '\u1E40': 'M',
    '\u1E42': 'M',
    '\u2C6E': 'M',
    '\u019C': 'M',
    '\u24C3': 'N',
    '\uFF2E': 'N',
    '\u01F8': 'N',
    '\u0143': 'N',
    '\u00D1': 'N',
    '\u1E44': 'N',
    '\u0147': 'N',
    '\u1E46': 'N',
    '\u0145': 'N',
    '\u1E4A': 'N',
    '\u1E48': 'N',
    '\u0220': 'N',
    '\u019D': 'N',
    '\uA790': 'N',
    '\uA7A4': 'N',
    '\u01CA': 'NJ',
    '\u01CB': 'Nj',
    '\u24C4': 'O',
    '\uFF2F': 'O',
    '\u00D2': 'O',
    '\u00D3': 'O',
    '\u00D4': 'O',
    '\u1ED2': 'O',
    '\u1ED0': 'O',
    '\u1ED6': 'O',
    '\u1ED4': 'O',
    '\u00D5': 'O',
    '\u1E4C': 'O',
    '\u022C': 'O',
    '\u1E4E': 'O',
    '\u014C': 'O',
    '\u1E50': 'O',
    '\u1E52': 'O',
    '\u014E': 'O',
    '\u022E': 'O',
    '\u0230': 'O',
    '\u00D6': 'O',
    '\u022A': 'O',
    '\u1ECE': 'O',
    '\u0150': 'O',
    '\u01D1': 'O',
    '\u020C': 'O',
    '\u020E': 'O',
    '\u01A0': 'O',
    '\u1EDC': 'O',
    '\u1EDA': 'O',
    '\u1EE0': 'O',
    '\u1EDE': 'O',
    '\u1EE2': 'O',
    '\u1ECC': 'O',
    '\u1ED8': 'O',
    '\u01EA': 'O',
    '\u01EC': 'O',
    '\u00D8': 'O',
    '\u01FE': 'O',
    '\u0186': 'O',
    '\u019F': 'O',
    '\uA74A': 'O',
    '\uA74C': 'O',
    '\u01A2': 'OI',
    '\uA74E': 'OO',
    '\u0222': 'OU',
    '\u24C5': 'P',
    '\uFF30': 'P',
    '\u1E54': 'P',
    '\u1E56': 'P',
    '\u01A4': 'P',
    '\u2C63': 'P',
    '\uA750': 'P',
    '\uA752': 'P',
    '\uA754': 'P',
    '\u24C6': 'Q',
    '\uFF31': 'Q',
    '\uA756': 'Q',
    '\uA758': 'Q',
    '\u024A': 'Q',
    '\u24C7': 'R',
    '\uFF32': 'R',
    '\u0154': 'R',
    '\u1E58': 'R',
    '\u0158': 'R',
    '\u0210': 'R',
    '\u0212': 'R',
    '\u1E5A': 'R',
    '\u1E5C': 'R',
    '\u0156': 'R',
    '\u1E5E': 'R',
    '\u024C': 'R',
    '\u2C64': 'R',
    '\uA75A': 'R',
    '\uA7A6': 'R',
    '\uA782': 'R',
    '\u24C8': 'S',
    '\uFF33': 'S',
    '\u1E9E': 'S',
    '\u015A': 'S',
    '\u1E64': 'S',
    '\u015C': 'S',
    '\u1E60': 'S',
    '\u0160': 'S',
    '\u1E66': 'S',
    '\u1E62': 'S',
    '\u1E68': 'S',
    '\u0218': 'S',
    '\u015E': 'S',
    '\u2C7E': 'S',
    '\uA7A8': 'S',
    '\uA784': 'S',
    '\u24C9': 'T',
    '\uFF34': 'T',
    '\u1E6A': 'T',
    '\u0164': 'T',
    '\u1E6C': 'T',
    '\u021A': 'T',
    '\u0162': 'T',
    '\u1E70': 'T',
    '\u1E6E': 'T',
    '\u0166': 'T',
    '\u01AC': 'T',
    '\u01AE': 'T',
    '\u023E': 'T',
    '\uA786': 'T',
    '\uA728': 'TZ',
    '\u24CA': 'U',
    '\uFF35': 'U',
    '\u00D9': 'U',
    '\u00DA': 'U',
    '\u00DB': 'U',
    '\u0168': 'U',
    '\u1E78': 'U',
    '\u016A': 'U',
    '\u1E7A': 'U',
    '\u016C': 'U',
    '\u00DC': 'U',
    '\u01DB': 'U',
    '\u01D7': 'U',
    '\u01D5': 'U',
    '\u01D9': 'U',
    '\u1EE6': 'U',
    '\u016E': 'U',
    '\u0170': 'U',
    '\u01D3': 'U',
    '\u0214': 'U',
    '\u0216': 'U',
    '\u01AF': 'U',
    '\u1EEA': 'U',
    '\u1EE8': 'U',
    '\u1EEE': 'U',
    '\u1EEC': 'U',
    '\u1EF0': 'U',
    '\u1EE4': 'U',
    '\u1E72': 'U',
    '\u0172': 'U',
    '\u1E76': 'U',
    '\u1E74': 'U',
    '\u0244': 'U',
    '\u24CB': 'V',
    '\uFF36': 'V',
    '\u1E7C': 'V',
    '\u1E7E': 'V',
    '\u01B2': 'V',
    '\uA75E': 'V',
    '\u0245': 'V',
    '\uA760': 'VY',
    '\u24CC': 'W',
    '\uFF37': 'W',
    '\u1E80': 'W',
    '\u1E82': 'W',
    '\u0174': 'W',
    '\u1E86': 'W',
    '\u1E84': 'W',
    '\u1E88': 'W',
    '\u2C72': 'W',
    '\u24CD': 'X',
    '\uFF38': 'X',
    '\u1E8A': 'X',
    '\u1E8C': 'X',
    '\u24CE': 'Y',
    '\uFF39': 'Y',
    '\u1EF2': 'Y',
    '\u00DD': 'Y',
    '\u0176': 'Y',
    '\u1EF8': 'Y',
    '\u0232': 'Y',
    '\u1E8E': 'Y',
    '\u0178': 'Y',
    '\u1EF6': 'Y',
    '\u1EF4': 'Y',
    '\u01B3': 'Y',
    '\u024E': 'Y',
    '\u1EFE': 'Y',
    '\u24CF': 'Z',
    '\uFF3A': 'Z',
    '\u0179': 'Z',
    '\u1E90': 'Z',
    '\u017B': 'Z',
    '\u017D': 'Z',
    '\u1E92': 'Z',
    '\u1E94': 'Z',
    '\u01B5': 'Z',
    '\u0224': 'Z',
    '\u2C7F': 'Z',
    '\u2C6B': 'Z',
    '\uA762': 'Z',
    '\u24D0': 'a',
    '\uFF41': 'a',
    '\u1E9A': 'a',
    '\u00E0': 'a',
    '\u00E1': 'a',
    '\u00E2': 'a',
    '\u1EA7': 'a',
    '\u1EA5': 'a',
    '\u1EAB': 'a',
    '\u1EA9': 'a',
    '\u00E3': 'a',
    '\u0101': 'a',
    '\u0103': 'a',
    '\u1EB1': 'a',
    '\u1EAF': 'a',
    '\u1EB5': 'a',
    '\u1EB3': 'a',
    '\u0227': 'a',
    '\u01E1': 'a',
    '\u00E4': 'a',
    '\u01DF': 'a',
    '\u1EA3': 'a',
    '\u00E5': 'a',
    '\u01FB': 'a',
    '\u01CE': 'a',
    '\u0201': 'a',
    '\u0203': 'a',
    '\u1EA1': 'a',
    '\u1EAD': 'a',
    '\u1EB7': 'a',
    '\u1E01': 'a',
    '\u0105': 'a',
    '\u2C65': 'a',
    '\u0250': 'a',
    '\uA733': 'aa',
    '\u00E6': 'ae',
    '\u01FD': 'ae',
    '\u01E3': 'ae',
    '\uA735': 'ao',
    '\uA737': 'au',
    '\uA739': 'av',
    '\uA73B': 'av',
    '\uA73D': 'ay',
    '\u24D1': 'b',
    '\uFF42': 'b',
    '\u1E03': 'b',
    '\u1E05': 'b',
    '\u1E07': 'b',
    '\u0180': 'b',
    '\u0183': 'b',
    '\u0253': 'b',
    '\u24D2': 'c',
    '\uFF43': 'c',
    '\u0107': 'c',
    '\u0109': 'c',
    '\u010B': 'c',
    '\u010D': 'c',
    '\u00E7': 'c',
    '\u1E09': 'c',
    '\u0188': 'c',
    '\u023C': 'c',
    '\uA73F': 'c',
    '\u2184': 'c',
    '\u24D3': 'd',
    '\uFF44': 'd',
    '\u1E0B': 'd',
    '\u010F': 'd',
    '\u1E0D': 'd',
    '\u1E11': 'd',
    '\u1E13': 'd',
    '\u1E0F': 'd',
    '\u0111': 'd',
    '\u018C': 'd',
    '\u0256': 'd',
    '\u0257': 'd',
    '\uA77A': 'd',
    '\u01F3': 'dz',
    '\u01C6': 'dz',
    '\u24D4': 'e',
    '\uFF45': 'e',
    '\u00E8': 'e',
    '\u00E9': 'e',
    '\u00EA': 'e',
    '\u1EC1': 'e',
    '\u1EBF': 'e',
    '\u1EC5': 'e',
    '\u1EC3': 'e',
    '\u1EBD': 'e',
    '\u0113': 'e',
    '\u1E15': 'e',
    '\u1E17': 'e',
    '\u0115': 'e',
    '\u0117': 'e',
    '\u00EB': 'e',
    '\u1EBB': 'e',
    '\u011B': 'e',
    '\u0205': 'e',
    '\u0207': 'e',
    '\u1EB9': 'e',
    '\u1EC7': 'e',
    '\u0229': 'e',
    '\u1E1D': 'e',
    '\u0119': 'e',
    '\u1E19': 'e',
    '\u1E1B': 'e',
    '\u0247': 'e',
    '\u025B': 'e',
    '\u01DD': 'e',
    '\u24D5': 'f',
    '\uFF46': 'f',
    '\u1E1F': 'f',
    '\u0192': 'f',
    '\uA77C': 'f',
    '\u24D6': 'g',
    '\uFF47': 'g',
    '\u01F5': 'g',
    '\u011D': 'g',
    '\u1E21': 'g',
    '\u011F': 'g',
    '\u0121': 'g',
    '\u01E7': 'g',
    '\u0123': 'g',
    '\u01E5': 'g',
    '\u0260': 'g',
    '\uA7A1': 'g',
    '\u1D79': 'g',
    '\uA77F': 'g',
    '\u24D7': 'h',
    '\uFF48': 'h',
    '\u0125': 'h',
    '\u1E23': 'h',
    '\u1E27': 'h',
    '\u021F': 'h',
    '\u1E25': 'h',
    '\u1E29': 'h',
    '\u1E2B': 'h',
    '\u1E96': 'h',
    '\u0127': 'h',
    '\u2C68': 'h',
    '\u2C76': 'h',
    '\u0265': 'h',
    '\u0195': 'hv',
    '\u24D8': 'i',
    '\uFF49': 'i',
    '\u00EC': 'i',
    '\u00ED': 'i',
    '\u00EE': 'i',
    '\u0129': 'i',
    '\u012B': 'i',
    '\u012D': 'i',
    '\u00EF': 'i',
    '\u1E2F': 'i',
    '\u1EC9': 'i',
    '\u01D0': 'i',
    '\u0209': 'i',
    '\u020B': 'i',
    '\u1ECB': 'i',
    '\u012F': 'i',
    '\u1E2D': 'i',
    '\u0268': 'i',
    '\u0131': 'i',
    '\u24D9': 'j',
    '\uFF4A': 'j',
    '\u0135': 'j',
    '\u01F0': 'j',
    '\u0249': 'j',
    '\u24DA': 'k',
    '\uFF4B': 'k',
    '\u1E31': 'k',
    '\u01E9': 'k',
    '\u1E33': 'k',
    '\u0137': 'k',
    '\u1E35': 'k',
    '\u0199': 'k',
    '\u2C6A': 'k',
    '\uA741': 'k',
    '\uA743': 'k',
    '\uA745': 'k',
    '\uA7A3': 'k',
    '\u24DB': 'l',
    '\uFF4C': 'l',
    '\u0140': 'l',
    '\u013A': 'l',
    '\u013E': 'l',
    '\u1E37': 'l',
    '\u1E39': 'l',
    '\u013C': 'l',
    '\u1E3D': 'l',
    '\u1E3B': 'l',
    '\u017F': 'l',
    '\u0142': 'l',
    '\u019A': 'l',
    '\u026B': 'l',
    '\u2C61': 'l',
    '\uA749': 'l',
    '\uA781': 'l',
    '\uA747': 'l',
    '\u01C9': 'lj',
    '\u24DC': 'm',
    '\uFF4D': 'm',
    '\u1E3F': 'm',
    '\u1E41': 'm',
    '\u1E43': 'm',
    '\u0271': 'm',
    '\u026F': 'm',
    '\u24DD': 'n',
    '\uFF4E': 'n',
    '\u01F9': 'n',
    '\u0144': 'n',
    '\u00F1': 'n',
    '\u1E45': 'n',
    '\u0148': 'n',
    '\u1E47': 'n',
    '\u0146': 'n',
    '\u1E4B': 'n',
    '\u1E49': 'n',
    '\u019E': 'n',
    '\u0272': 'n',
    '\u0149': 'n',
    '\uA791': 'n',
    '\uA7A5': 'n',
    '\u01CC': 'nj',
    '\u24DE': 'o',
    '\uFF4F': 'o',
    '\u00F2': 'o',
    '\u00F3': 'o',
    '\u00F4': 'o',
    '\u1ED3': 'o',
    '\u1ED1': 'o',
    '\u1ED7': 'o',
    '\u1ED5': 'o',
    '\u00F5': 'o',
    '\u1E4D': 'o',
    '\u022D': 'o',
    '\u1E4F': 'o',
    '\u014D': 'o',
    '\u1E51': 'o',
    '\u1E53': 'o',
    '\u014F': 'o',
    '\u022F': 'o',
    '\u0231': 'o',
    '\u00F6': 'o',
    '\u022B': 'o',
    '\u1ECF': 'o',
    '\u0151': 'o',
    '\u01D2': 'o',
    '\u020D': 'o',
    '\u020F': 'o',
    '\u01A1': 'o',
    '\u1EDD': 'o',
    '\u1EDB': 'o',
    '\u1EE1': 'o',
    '\u1EDF': 'o',
    '\u1EE3': 'o',
    '\u1ECD': 'o',
    '\u1ED9': 'o',
    '\u01EB': 'o',
    '\u01ED': 'o',
    '\u00F8': 'o',
    '\u01FF': 'o',
    '\u0254': 'o',
    '\uA74B': 'o',
    '\uA74D': 'o',
    '\u0275': 'o',
    '\u01A3': 'oi',
    '\u0223': 'ou',
    '\uA74F': 'oo',
    '\u24DF': 'p',
    '\uFF50': 'p',
    '\u1E55': 'p',
    '\u1E57': 'p',
    '\u01A5': 'p',
    '\u1D7D': 'p',
    '\uA751': 'p',
    '\uA753': 'p',
    '\uA755': 'p',
    '\u24E0': 'q',
    '\uFF51': 'q',
    '\u024B': 'q',
    '\uA757': 'q',
    '\uA759': 'q',
    '\u24E1': 'r',
    '\uFF52': 'r',
    '\u0155': 'r',
    '\u1E59': 'r',
    '\u0159': 'r',
    '\u0211': 'r',
    '\u0213': 'r',
    '\u1E5B': 'r',
    '\u1E5D': 'r',
    '\u0157': 'r',
    '\u1E5F': 'r',
    '\u024D': 'r',
    '\u027D': 'r',
    '\uA75B': 'r',
    '\uA7A7': 'r',
    '\uA783': 'r',
    '\u24E2': 's',
    '\uFF53': 's',
    '\u00DF': 's',
    '\u015B': 's',
    '\u1E65': 's',
    '\u015D': 's',
    '\u1E61': 's',
    '\u0161': 's',
    '\u1E67': 's',
    '\u1E63': 's',
    '\u1E69': 's',
    '\u0219': 's',
    '\u015F': 's',
    '\u023F': 's',
    '\uA7A9': 's',
    '\uA785': 's',
    '\u1E9B': 's',
    '\u24E3': 't',
    '\uFF54': 't',
    '\u1E6B': 't',
    '\u1E97': 't',
    '\u0165': 't',
    '\u1E6D': 't',
    '\u021B': 't',
    '\u0163': 't',
    '\u1E71': 't',
    '\u1E6F': 't',
    '\u0167': 't',
    '\u01AD': 't',
    '\u0288': 't',
    '\u2C66': 't',
    '\uA787': 't',
    '\uA729': 'tz',
    '\u24E4': 'u',
    '\uFF55': 'u',
    '\u00F9': 'u',
    '\u00FA': 'u',
    '\u00FB': 'u',
    '\u0169': 'u',
    '\u1E79': 'u',
    '\u016B': 'u',
    '\u1E7B': 'u',
    '\u016D': 'u',
    '\u00FC': 'u',
    '\u01DC': 'u',
    '\u01D8': 'u',
    '\u01D6': 'u',
    '\u01DA': 'u',
    '\u1EE7': 'u',
    '\u016F': 'u',
    '\u0171': 'u',
    '\u01D4': 'u',
    '\u0215': 'u',
    '\u0217': 'u',
    '\u01B0': 'u',
    '\u1EEB': 'u',
    '\u1EE9': 'u',
    '\u1EEF': 'u',
    '\u1EED': 'u',
    '\u1EF1': 'u',
    '\u1EE5': 'u',
    '\u1E73': 'u',
    '\u0173': 'u',
    '\u1E77': 'u',
    '\u1E75': 'u',
    '\u0289': 'u',
    '\u24E5': 'v',
    '\uFF56': 'v',
    '\u1E7D': 'v',
    '\u1E7F': 'v',
    '\u028B': 'v',
    '\uA75F': 'v',
    '\u028C': 'v',
    '\uA761': 'vy',
    '\u24E6': 'w',
    '\uFF57': 'w',
    '\u1E81': 'w',
    '\u1E83': 'w',
    '\u0175': 'w',
    '\u1E87': 'w',
    '\u1E85': 'w',
    '\u1E98': 'w',
    '\u1E89': 'w',
    '\u2C73': 'w',
    '\u24E7': 'x',
    '\uFF58': 'x',
    '\u1E8B': 'x',
    '\u1E8D': 'x',
    '\u24E8': 'y',
    '\uFF59': 'y',
    '\u1EF3': 'y',
    '\u00FD': 'y',
    '\u0177': 'y',
    '\u1EF9': 'y',
    '\u0233': 'y',
    '\u1E8F': 'y',
    '\u00FF': 'y',
    '\u1EF7': 'y',
    '\u1E99': 'y',
    '\u1EF5': 'y',
    '\u01B4': 'y',
    '\u024F': 'y',
    '\u1EFF': 'y',
    '\u24E9': 'z',
    '\uFF5A': 'z',
    '\u017A': 'z',
    '\u1E91': 'z',
    '\u017C': 'z',
    '\u017E': 'z',
    '\u1E93': 'z',
    '\u1E95': 'z',
    '\u01B6': 'z',
    '\u0225': 'z',
    '\u0240': 'z',
    '\u2C6C': 'z',
    '\uA763': 'z',
    '\u0386': '\u0391',
    '\u0388': '\u0395',
    '\u0389': '\u0397',
    '\u038A': '\u0399',
    '\u03AA': '\u0399',
    '\u038C': '\u039F',
    '\u038E': '\u03A5',
    '\u03AB': '\u03A5',
    '\u038F': '\u03A9',
    '\u03AC': '\u03B1',
    '\u03AD': '\u03B5',
    '\u03AE': '\u03B7',
    '\u03AF': '\u03B9',
    '\u03CA': '\u03B9',
    '\u0390': '\u03B9',
    '\u03CC': '\u03BF',
    '\u03CD': '\u03C5',
    '\u03CB': '\u03C5',
    '\u03B0': '\u03C5',
    '\u03C9': '\u03C9',
    '\u03C2': '\u03C3'
  };

  return diacritics;
});

S2.define('select2/data/base',[
  '../utils'
], function (Utils) {
  function BaseAdapter ($element, options) {
    BaseAdapter.__super__.constructor.call(this);
  }

  Utils.Extend(BaseAdapter, Utils.Observable);

  BaseAdapter.prototype.current = function (callback) {
    throw new Error('The `current` method must be defined in child classes.');
  };

  BaseAdapter.prototype.query = function (params, callback) {
    throw new Error('The `query` method must be defined in child classes.');
  };

  BaseAdapter.prototype.bind = function (container, $container) {
    // Can be implemented in subclasses
  };

  BaseAdapter.prototype.destroy = function () {
    // Can be implemented in subclasses
  };

  BaseAdapter.prototype.generateResultId = function (container, data) {
    var id = container.id + '-result-';

    id += Utils.generateChars(4);

    if (data.id != null) {
      id += '-' + data.id.toString();
    } else {
      id += '-' + Utils.generateChars(4);
    }
    return id;
  };

  return BaseAdapter;
});

S2.define('select2/data/select',[
  './base',
  '../utils',
  'jquery'
], function (BaseAdapter, Utils, $) {
  function SelectAdapter ($element, options) {
    this.$element = $element;
    this.options = options;

    SelectAdapter.__super__.constructor.call(this);
  }

  Utils.Extend(SelectAdapter, BaseAdapter);

  SelectAdapter.prototype.current = function (callback) {
    var data = [];
    var self = this;

    this.$element.find(':selected').each(function () {
      var $option = $(this);

      var option = self.item($option);

      data.push(option);
    });

    callback(data);
  };

  SelectAdapter.prototype.select = function (data) {
    var self = this;

    data.selected = true;

    // If data.element is a DOM node, use it instead
    if ($(data.element).is('option')) {
      data.element.selected = true;

      this.$element.trigger('change');

      return;
    }

    if (this.$element.prop('multiple')) {
      this.current(function (currentData) {
        var val = [];

        data = [data];
        data.push.apply(data, currentData);

        for (var d = 0; d < data.length; d++) {
          var id = data[d].id;

          if ($.inArray(id, val) === -1) {
            val.push(id);
          }
        }

        self.$element.val(val);
        self.$element.trigger('change');
      });
    } else {
      var val = data.id;

      this.$element.val(val);
      this.$element.trigger('change');
    }
  };

  SelectAdapter.prototype.unselect = function (data) {
    var self = this;

    if (!this.$element.prop('multiple')) {
      return;
    }

    data.selected = false;

    if ($(data.element).is('option')) {
      data.element.selected = false;

      this.$element.trigger('change');

      return;
    }

    this.current(function (currentData) {
      var val = [];

      for (var d = 0; d < currentData.length; d++) {
        var id = currentData[d].id;

        if (id !== data.id && $.inArray(id, val) === -1) {
          val.push(id);
        }
      }

      self.$element.val(val);

      self.$element.trigger('change');
    });
  };

  SelectAdapter.prototype.bind = function (container, $container) {
    var self = this;

    this.container = container;

    container.on('select', function (params) {
      self.select(params.data);
    });

    container.on('unselect', function (params) {
      self.unselect(params.data);
    });
  };

  SelectAdapter.prototype.destroy = function () {
    // Remove anything added to child elements
    this.$element.find('*').each(function () {
      // Remove any custom data set by Select2
      $.removeData(this, 'data');
    });
  };

  SelectAdapter.prototype.query = function (params, callback) {
    var data = [];
    var self = this;

    var $options = this.$element.children();

    $options.each(function () {
      var $option = $(this);

      if (!$option.is('option') && !$option.is('optgroup')) {
        return;
      }

      var option = self.item($option);

      var matches = self.matches(params, option);

      if (matches !== null) {
        data.push(matches);
      }
    });

    callback({
      results: data
    });
  };

  SelectAdapter.prototype.addOptions = function ($options) {
    Utils.appendMany(this.$element, $options);
  };

  SelectAdapter.prototype.option = function (data) {
    var option;

    if (data.children) {
      option = document.createElement('optgroup');
      option.label = data.text;
    } else {
      option = document.createElement('option');

      if (option.textContent !== undefined) {
        option.textContent = data.text;
      } else {
        option.innerText = data.text;
      }
    }

    if (data.id !== undefined) {
      option.value = data.id;
    }

    if (data.disabled) {
      option.disabled = true;
    }

    if (data.selected) {
      option.selected = true;
    }

    if (data.title) {
      option.title = data.title;
    }

    var $option = $(option);

    var normalizedData = this._normalizeItem(data);
    normalizedData.element = option;

    // Override the option's data with the combined data
    $.data(option, 'data', normalizedData);

    return $option;
  };

  SelectAdapter.prototype.item = function ($option) {
    var data = {};

    data = $.data($option[0], 'data');

    if (data != null) {
      return data;
    }

    if ($option.is('option')) {
      data = {
        id: $option.val(),
        text: $option.text(),
        disabled: $option.prop('disabled'),
        selected: $option.prop('selected'),
        title: $option.prop('title')
      };
    } else if ($option.is('optgroup')) {
      data = {
        text: $option.prop('label'),
        children: [],
        title: $option.prop('title')
      };

      var $children = $option.children('option');
      var children = [];

      for (var c = 0; c < $children.length; c++) {
        var $child = $($children[c]);

        var child = this.item($child);

        children.push(child);
      }

      data.children = children;
    }

    data = this._normalizeItem(data);
    data.element = $option[0];

    $.data($option[0], 'data', data);

    return data;
  };

  SelectAdapter.prototype._normalizeItem = function (item) {
    if (!$.isPlainObject(item)) {
      item = {
        id: item,
        text: item
      };
    }

    item = $.extend({}, {
      text: ''
    }, item);

    var defaults = {
      selected: false,
      disabled: false
    };

    if (item.id != null) {
      item.id = item.id.toString();
    }

    if (item.text != null) {
      item.text = item.text.toString();
    }

    if (item._resultId == null && item.id && this.container != null) {
      item._resultId = this.generateResultId(this.container, item);
    }

    return $.extend({}, defaults, item);
  };

  SelectAdapter.prototype.matches = function (params, data) {
    var matcher = this.options.get('matcher');

    return matcher(params, data);
  };

  return SelectAdapter;
});

S2.define('select2/data/array',[
  './select',
  '../utils',
  'jquery'
], function (SelectAdapter, Utils, $) {
  function ArrayAdapter ($element, options) {
    var data = options.get('data') || [];

    ArrayAdapter.__super__.constructor.call(this, $element, options);

    this.addOptions(this.convertToOptions(data));
  }

  Utils.Extend(ArrayAdapter, SelectAdapter);

  ArrayAdapter.prototype.select = function (data) {
    var $option = this.$element.find('option').filter(function (i, elm) {
      return elm.value == data.id.toString();
    });

    if ($option.length === 0) {
      $option = this.option(data);

      this.addOptions($option);
    }

    ArrayAdapter.__super__.select.call(this, data);
  };

  ArrayAdapter.prototype.convertToOptions = function (data) {
    var self = this;

    var $existing = this.$element.find('option');
    var existingIds = $existing.map(function () {
      return self.item($(this)).id;
    }).get();

    var $options = [];

    // Filter out all items except for the one passed in the argument
    function onlyItem (item) {
      return function () {
        return $(this).val() == item.id;
      };
    }

    for (var d = 0; d < data.length; d++) {
      var item = this._normalizeItem(data[d]);

      // Skip items which were pre-loaded, only merge the data
      if ($.inArray(item.id, existingIds) >= 0) {
        var $existingOption = $existing.filter(onlyItem(item));

        var existingData = this.item($existingOption);
        var newData = $.extend(true, {}, item, existingData);

        var $newOption = this.option(newData);

        $existingOption.replaceWith($newOption);

        continue;
      }

      var $option = this.option(item);

      if (item.children) {
        var $children = this.convertToOptions(item.children);

        Utils.appendMany($option, $children);
      }

      $options.push($option);
    }

    return $options;
  };

  return ArrayAdapter;
});

S2.define('select2/data/ajax',[
  './array',
  '../utils',
  'jquery'
], function (ArrayAdapter, Utils, $) {
  function AjaxAdapter ($element, options) {
    this.ajaxOptions = this._applyDefaults(options.get('ajax'));

    if (this.ajaxOptions.processResults != null) {
      this.processResults = this.ajaxOptions.processResults;
    }

    AjaxAdapter.__super__.constructor.call(this, $element, options);
  }

  Utils.Extend(AjaxAdapter, ArrayAdapter);

  AjaxAdapter.prototype._applyDefaults = function (options) {
    var defaults = {
      data: function (params) {
        return $.extend({}, params, {
          q: params.term
        });
      },
      transport: function (params, success, failure) {
        var $request = $.ajax(params);

        $request.then(success);
        $request.fail(failure);

        return $request;
      }
    };

    return $.extend({}, defaults, options, true);
  };

  AjaxAdapter.prototype.processResults = function (results) {
    return results;
  };

  AjaxAdapter.prototype.query = function (params, callback) {
    var matches = [];
    var self = this;

    if (this._request != null) {
      // JSONP requests cannot always be aborted
      if ($.isFunction(this._request.abort)) {
        this._request.abort();
      }

      this._request = null;
    }

    var options = $.extend({
      type: 'GET'
    }, this.ajaxOptions);

    if (typeof options.url === 'function') {
      options.url = options.url.call(this.$element, params);
    }

    if (typeof options.data === 'function') {
      options.data = options.data.call(this.$element, params);
    }

    function request () {
      var $request = options.transport(options, function (data) {
        var results = self.processResults(data, params);

        if (self.options.get('debug') && window.console && console.error) {
          // Check to make sure that the response included a `results` key.
          if (!results || !results.results || !$.isArray(results.results)) {
            console.error(
              'Select2: The AJAX results did not return an array in the ' +
              '`results` key of the response.'
            );
          }
        }

        callback(results);
      }, function () {
        // Attempt to detect if a request was aborted
        // Only works if the transport exposes a status property
        if ($request.status && $request.status === '0') {
          return;
        }

        self.trigger('results:message', {
          message: 'errorLoading'
        });
      });

      self._request = $request;
    }

    if (this.ajaxOptions.delay && params.term != null) {
      if (this._queryTimeout) {
        window.clearTimeout(this._queryTimeout);
      }

      this._queryTimeout = window.setTimeout(request, this.ajaxOptions.delay);
    } else {
      request();
    }
  };

  return AjaxAdapter;
});

S2.define('select2/data/tags',[
  'jquery'
], function ($) {
  function Tags (decorated, $element, options) {
    var tags = options.get('tags');

    var createTag = options.get('createTag');

    if (createTag !== undefined) {
      this.createTag = createTag;
    }

    var insertTag = options.get('insertTag');

    if (insertTag !== undefined) {
        this.insertTag = insertTag;
    }

    decorated.call(this, $element, options);

    if ($.isArray(tags)) {
      for (var t = 0; t < tags.length; t++) {
        var tag = tags[t];
        var item = this._normalizeItem(tag);

        var $option = this.option(item);

        this.$element.append($option);
      }
    }
  }

  Tags.prototype.query = function (decorated, params, callback) {
    var self = this;

    this._removeOldTags();

    if (params.term == null || params.page != null) {
      decorated.call(this, params, callback);
      return;
    }

    function wrapper (obj, child) {
      var data = obj.results;

      for (var i = 0; i < data.length; i++) {
        var option = data[i];

        var checkChildren = (
          option.children != null &&
          !wrapper({
            results: option.children
          }, true)
        );

        var optionText = (option.text || '').toUpperCase();
        var paramsTerm = (params.term || '').toUpperCase();

        var checkText = optionText === paramsTerm;

        if (checkText || checkChildren) {
          if (child) {
            return false;
          }

          obj.data = data;
          callback(obj);

          return;
        }
      }

      if (child) {
        return true;
      }

      var tag = self.createTag(params);

      if (tag != null) {
        var $option = self.option(tag);
        $option.attr('data-select2-tag', true);

        self.addOptions([$option]);

        self.insertTag(data, tag);
      }

      obj.results = data;

      callback(obj);
    }

    decorated.call(this, params, wrapper);
  };

  Tags.prototype.createTag = function (decorated, params) {
    var term = $.trim(params.term);

    if (term === '') {
      return null;
    }

    return {
      id: term,
      text: term
    };
  };

  Tags.prototype.insertTag = function (_, data, tag) {
    data.unshift(tag);
  };

  Tags.prototype._removeOldTags = function (_) {
    var tag = this._lastTag;

    var $options = this.$element.find('option[data-select2-tag]');

    $options.each(function () {
      if (this.selected) {
        return;
      }

      $(this).remove();
    });
  };

  return Tags;
});

S2.define('select2/data/tokenizer',[
  'jquery'
], function ($) {
  function Tokenizer (decorated, $element, options) {
    var tokenizer = options.get('tokenizer');

    if (tokenizer !== undefined) {
      this.tokenizer = tokenizer;
    }

    decorated.call(this, $element, options);
  }

  Tokenizer.prototype.bind = function (decorated, container, $container) {
    decorated.call(this, container, $container);

    this.$search =  container.dropdown.$search || container.selection.$search ||
      $container.find('.select2-search__field');
  };

  Tokenizer.prototype.query = function (decorated, params, callback) {
    var self = this;

    function createAndSelect (data) {
      // Normalize the data object so we can use it for checks
      var item = self._normalizeItem(data);

      // Check if the data object already exists as a tag
      // Select it if it doesn't
      var $existingOptions = self.$element.find('option').filter(function () {
        return $(this).val() === item.id;
      });

      // If an existing option wasn't found for it, create the option
      if (!$existingOptions.length) {
        var $option = self.option(item);
        $option.attr('data-select2-tag', true);

        self._removeOldTags();
        self.addOptions([$option]);
      }

      // Select the item, now that we know there is an option for it
      select(item);
    }

    function select (data) {
      self.trigger('select', {
        data: data
      });
    }

    params.term = params.term || '';

    var tokenData = this.tokenizer(params, this.options, createAndSelect);

    if (tokenData.term !== params.term) {
      // Replace the search term if we have the search box
      if (this.$search.length) {
        this.$search.val(tokenData.term);
        this.$search.focus();
      }

      params.term = tokenData.term;
    }

    decorated.call(this, params, callback);
  };

  Tokenizer.prototype.tokenizer = function (_, params, options, callback) {
    var separators = options.get('tokenSeparators') || [];
    var term = params.term;
    var i = 0;

    var createTag = this.createTag || function (params) {
      return {
        id: params.term,
        text: params.term
      };
    };

    while (i < term.length) {
      var termChar = term[i];

      if ($.inArray(termChar, separators) === -1) {
        i++;

        continue;
      }

      var part = term.substr(0, i);
      var partParams = $.extend({}, params, {
        term: part
      });

      var data = createTag(partParams);

      if (data == null) {
        i++;
        continue;
      }

      callback(data);

      // Reset the term to not include the tokenized portion
      term = term.substr(i + 1) || '';
      i = 0;
    }

    return {
      term: term
    };
  };

  return Tokenizer;
});

S2.define('select2/data/minimumInputLength',[

], function () {
  function MinimumInputLength (decorated, $e, options) {
    this.minimumInputLength = options.get('minimumInputLength');

    decorated.call(this, $e, options);
  }

  MinimumInputLength.prototype.query = function (decorated, params, callback) {
    params.term = params.term || '';

    if (params.term.length < this.minimumInputLength) {
      this.trigger('results:message', {
        message: 'inputTooShort',
        args: {
          minimum: this.minimumInputLength,
          input: params.term,
          params: params
        }
      });

      return;
    }

    decorated.call(this, params, callback);
  };

  return MinimumInputLength;
});

S2.define('select2/data/maximumInputLength',[

], function () {
  function MaximumInputLength (decorated, $e, options) {
    this.maximumInputLength = options.get('maximumInputLength');

    decorated.call(this, $e, options);
  }

  MaximumInputLength.prototype.query = function (decorated, params, callback) {
    params.term = params.term || '';

    if (this.maximumInputLength > 0 &&
        params.term.length > this.maximumInputLength) {
      this.trigger('results:message', {
        message: 'inputTooLong',
        args: {
          maximum: this.maximumInputLength,
          input: params.term,
          params: params
        }
      });

      return;
    }

    decorated.call(this, params, callback);
  };

  return MaximumInputLength;
});

S2.define('select2/data/maximumSelectionLength',[

], function (){
  function MaximumSelectionLength (decorated, $e, options) {
    this.maximumSelectionLength = options.get('maximumSelectionLength');

    decorated.call(this, $e, options);
  }

  MaximumSelectionLength.prototype.query =
    function (decorated, params, callback) {
      var self = this;

      this.current(function (currentData) {
        var count = currentData != null ? currentData.length : 0;
        if (self.maximumSelectionLength > 0 &&
          count >= self.maximumSelectionLength) {
          self.trigger('results:message', {
            message: 'maximumSelected',
            args: {
              maximum: self.maximumSelectionLength
            }
          });
          return;
        }
        decorated.call(self, params, callback);
      });
  };

  return MaximumSelectionLength;
});

S2.define('select2/dropdown',[
  'jquery',
  './utils'
], function ($, Utils) {
  function Dropdown ($element, options) {
    this.$element = $element;
    this.options = options;

    Dropdown.__super__.constructor.call(this);
  }

  Utils.Extend(Dropdown, Utils.Observable);

  Dropdown.prototype.render = function () {
    var $dropdown = $(
      '<span class="select2-dropdown">' +
        '<span class="select2-results"></span>' +
      '</span>'
    );

    $dropdown.attr('dir', this.options.get('dir'));

    this.$dropdown = $dropdown;

    return $dropdown;
  };

  Dropdown.prototype.bind = function () {
    // Should be implemented in subclasses
  };

  Dropdown.prototype.position = function ($dropdown, $container) {
    // Should be implmented in subclasses
  };

  Dropdown.prototype.destroy = function () {
    // Remove the dropdown from the DOM
    this.$dropdown.remove();
  };

  return Dropdown;
});

S2.define('select2/dropdown/search',[
  'jquery',
  '../utils'
], function ($, Utils) {
  function Search () { }

  Search.prototype.render = function (decorated) {
    var $rendered = decorated.call(this);

    var $search = $(
      '<span class="select2-search select2-search--dropdown">' +
        '<input class="select2-search__field" type="search" tabindex="-1"' +
        ' autocomplete="off" autocorrect="off" autocapitalize="none"' +
        ' spellcheck="false" role="textbox" />' +
      '</span>'
    );

    this.$searchContainer = $search;
    this.$search = $search.find('input');

    $rendered.prepend($search);

    return $rendered;
  };

  Search.prototype.bind = function (decorated, container, $container) {
    var self = this;

    decorated.call(this, container, $container);

    this.$search.on('keydown', function (evt) {
      self.trigger('keypress', evt);

      self._keyUpPrevented = evt.isDefaultPrevented();
    });

    // Workaround for browsers which do not support the `input` event
    // This will prevent double-triggering of events for browsers which support
    // both the `keyup` and `input` events.
    this.$search.on('input', function (evt) {
      // Unbind the duplicated `keyup` event
      $(this).off('keyup');
    });

    this.$search.on('keyup input', function (evt) {
      self.handleSearch(evt);
    });

    container.on('open', function () {
      self.$search.attr('tabindex', 0);

      self.$search.focus();

      window.setTimeout(function () {
        self.$search.focus();
      }, 0);
    });

    container.on('close', function () {
      self.$search.attr('tabindex', -1);

      self.$search.val('');
    });

    container.on('focus', function () {
      if (!container.isOpen()) {
        self.$search.focus();
      }
    });

    container.on('results:all', function (params) {
      if (params.query.term == null || params.query.term === '') {
        var showSearch = self.showSearch(params);

        if (showSearch) {
          self.$searchContainer.removeClass('select2-search--hide');
        } else {
          self.$searchContainer.addClass('select2-search--hide');
        }
      }
    });
  };

  Search.prototype.handleSearch = function (evt) {
    if (!this._keyUpPrevented) {
      var input = this.$search.val();

      this.trigger('query', {
        term: input
      });
    }

    this._keyUpPrevented = false;
  };

  Search.prototype.showSearch = function (_, params) {
    return true;
  };

  return Search;
});

S2.define('select2/dropdown/hidePlaceholder',[

], function () {
  function HidePlaceholder (decorated, $element, options, dataAdapter) {
    this.placeholder = this.normalizePlaceholder(options.get('placeholder'));

    decorated.call(this, $element, options, dataAdapter);
  }

  HidePlaceholder.prototype.append = function (decorated, data) {
    data.results = this.removePlaceholder(data.results);

    decorated.call(this, data);
  };

  HidePlaceholder.prototype.normalizePlaceholder = function (_, placeholder) {
    if (typeof placeholder === 'string') {
      placeholder = {
        id: '',
        text: placeholder
      };
    }

    return placeholder;
  };

  HidePlaceholder.prototype.removePlaceholder = function (_, data) {
    var modifiedData = data.slice(0);

    for (var d = data.length - 1; d >= 0; d--) {
      var item = data[d];

      if (this.placeholder.id === item.id) {
        modifiedData.splice(d, 1);
      }
    }

    return modifiedData;
  };

  return HidePlaceholder;
});

S2.define('select2/dropdown/infiniteScroll',[
  'jquery'
], function ($) {
  function InfiniteScroll (decorated, $element, options, dataAdapter) {
    this.lastParams = {};

    decorated.call(this, $element, options, dataAdapter);

    this.$loadingMore = this.createLoadingMore();
    this.loading = false;
  }

  InfiniteScroll.prototype.append = function (decorated, data) {
    this.$loadingMore.remove();
    this.loading = false;

    decorated.call(this, data);

    if (this.showLoadingMore(data)) {
      this.$results.append(this.$loadingMore);
    }
  };

  InfiniteScroll.prototype.bind = function (decorated, container, $container) {
    var self = this;

    decorated.call(this, container, $container);

    container.on('query', function (params) {
      self.lastParams = params;
      self.loading = true;
    });

    container.on('query:append', function (params) {
      self.lastParams = params;
      self.loading = true;
    });

    this.$results.on('scroll', function () {
      var isLoadMoreVisible = $.contains(
        document.documentElement,
        self.$loadingMore[0]
      );

      if (self.loading || !isLoadMoreVisible) {
        return;
      }

      var currentOffset = self.$results.offset().top +
        self.$results.outerHeight(false);
      var loadingMoreOffset = self.$loadingMore.offset().top +
        self.$loadingMore.outerHeight(false);

      if (currentOffset + 50 >= loadingMoreOffset) {
        self.loadMore();
      }
    });
  };

  InfiniteScroll.prototype.loadMore = function () {
    this.loading = true;

    var params = $.extend({}, {page: 1}, this.lastParams);

    params.page++;

    this.trigger('query:append', params);
  };

  InfiniteScroll.prototype.showLoadingMore = function (_, data) {
    return data.pagination && data.pagination.more;
  };

  InfiniteScroll.prototype.createLoadingMore = function () {
    var $option = $(
      '<li ' +
      'class="select2-results__option select2-results__option--load-more"' +
      'role="treeitem" aria-disabled="true"></li>'
    );

    var message = this.options.get('translations').get('loadingMore');

    $option.html(message(this.lastParams));

    return $option;
  };

  return InfiniteScroll;
});

S2.define('select2/dropdown/attachBody',[
  'jquery',
  '../utils'
], function ($, Utils) {
  function AttachBody (decorated, $element, options) {
    this.$dropdownParent = options.get('dropdownParent') || $(document.body);

    decorated.call(this, $element, options);
  }

  AttachBody.prototype.bind = function (decorated, container, $container) {
    var self = this;

    var setupResultsEvents = false;

    decorated.call(this, container, $container);

    container.on('open', function () {
      self._showDropdown();
      self._attachPositioningHandler(container);

      if (!setupResultsEvents) {
        setupResultsEvents = true;

        container.on('results:all', function () {
          self._positionDropdown();
          self._resizeDropdown();
        });

        container.on('results:append', function () {
          self._positionDropdown();
          self._resizeDropdown();
        });
      }
    });

    container.on('close', function () {
      self._hideDropdown();
      self._detachPositioningHandler(container);
    });

    this.$dropdownContainer.on('mousedown', function (evt) {
      evt.stopPropagation();
    });
  };

  AttachBody.prototype.destroy = function (decorated) {
    decorated.call(this);

    this.$dropdownContainer.remove();
  };

  AttachBody.prototype.position = function (decorated, $dropdown, $container) {
    // Clone all of the container classes
    $dropdown.attr('class', $container.attr('class'));

    $dropdown.removeClass('select2');
    $dropdown.addClass('select2-container--open');

    $dropdown.css({
      position: 'absolute',
      top: -999999
    });

    this.$container = $container;
  };

  AttachBody.prototype.render = function (decorated) {
    var $container = $('<span></span>');

    var $dropdown = decorated.call(this);
    $container.append($dropdown);

    this.$dropdownContainer = $container;

    return $container;
  };

  AttachBody.prototype._hideDropdown = function (decorated) {
    this.$dropdownContainer.detach();
  };

  AttachBody.prototype._attachPositioningHandler =
      function (decorated, container) {
    var self = this;

    var scrollEvent = 'scroll.select2.' + container.id;
    var resizeEvent = 'resize.select2.' + container.id;
    var orientationEvent = 'orientationchange.select2.' + container.id;

    var $watchers = this.$container.parents().filter(Utils.hasScroll);
    $watchers.each(function () {
      $(this).data('select2-scroll-position', {
        x: $(this).scrollLeft(),
        y: $(this).scrollTop()
      });
    });

    $watchers.on(scrollEvent, function (ev) {
      var position = $(this).data('select2-scroll-position');
      $(this).scrollTop(position.y);
    });

    $(window).on(scrollEvent + ' ' + resizeEvent + ' ' + orientationEvent,
      function (e) {
      self._positionDropdown();
      self._resizeDropdown();
    });
  };

  AttachBody.prototype._detachPositioningHandler =
      function (decorated, container) {
    var scrollEvent = 'scroll.select2.' + container.id;
    var resizeEvent = 'resize.select2.' + container.id;
    var orientationEvent = 'orientationchange.select2.' + container.id;

    var $watchers = this.$container.parents().filter(Utils.hasScroll);
    $watchers.off(scrollEvent);

    $(window).off(scrollEvent + ' ' + resizeEvent + ' ' + orientationEvent);
  };

  AttachBody.prototype._positionDropdown = function () {
    var $window = $(window);

    var isCurrentlyAbove = this.$dropdown.hasClass('select2-dropdown--above');
    var isCurrentlyBelow = this.$dropdown.hasClass('select2-dropdown--below');

    var newDirection = null;

    var offset = this.$container.offset();

    offset.bottom = offset.top + this.$container.outerHeight(false);

    var container = {
      height: this.$container.outerHeight(false)
    };

    container.top = offset.top;
    container.bottom = offset.top + container.height;

    var dropdown = {
      height: this.$dropdown.outerHeight(false)
    };

    var viewport = {
      top: $window.scrollTop(),
      bottom: $window.scrollTop() + $window.height()
    };

    var enoughRoomAbove = viewport.top < (offset.top - dropdown.height);
    var enoughRoomBelow = viewport.bottom > (offset.bottom + dropdown.height);

    var css = {
      left: offset.left,
      top: container.bottom
    };

    // Determine what the parent element is to use for calciulating the offset
    var $offsetParent = this.$dropdownParent;

    // For statically positoned elements, we need to get the element
    // that is determining the offset
    if ($offsetParent.css('position') === 'static') {
      $offsetParent = $offsetParent.offsetParent();
    }

    var parentOffset = $offsetParent.offset();

    css.top -= parentOffset.top;
    css.left -= parentOffset.left;

    if (!isCurrentlyAbove && !isCurrentlyBelow) {
      newDirection = 'below';
    }

    if (!enoughRoomBelow && enoughRoomAbove && !isCurrentlyAbove) {
      newDirection = 'above';
    } else if (!enoughRoomAbove && enoughRoomBelow && isCurrentlyAbove) {
      newDirection = 'below';
    }

    if (newDirection == 'above' ||
      (isCurrentlyAbove && newDirection !== 'below')) {
      css.top = container.top - parentOffset.top - dropdown.height;
    }

    if (newDirection != null) {
      this.$dropdown
        .removeClass('select2-dropdown--below select2-dropdown--above')
        .addClass('select2-dropdown--' + newDirection);
      this.$container
        .removeClass('select2-container--below select2-container--above')
        .addClass('select2-container--' + newDirection);
    }

    this.$dropdownContainer.css(css);
  };

  AttachBody.prototype._resizeDropdown = function () {
    var css = {
      width: this.$container.outerWidth(false) + 'px'
    };

    if (this.options.get('dropdownAutoWidth')) {
      css.minWidth = css.width;
      css.position = 'relative';
      css.width = 'auto';
    }

    this.$dropdown.css(css);
  };

  AttachBody.prototype._showDropdown = function (decorated) {
    this.$dropdownContainer.appendTo(this.$dropdownParent);

    this._positionDropdown();
    this._resizeDropdown();
  };

  return AttachBody;
});

S2.define('select2/dropdown/minimumResultsForSearch',[

], function () {
  function countResults (data) {
    var count = 0;

    for (var d = 0; d < data.length; d++) {
      var item = data[d];

      if (item.children) {
        count += countResults(item.children);
      } else {
        count++;
      }
    }

    return count;
  }

  function MinimumResultsForSearch (decorated, $element, options, dataAdapter) {
    this.minimumResultsForSearch = options.get('minimumResultsForSearch');

    if (this.minimumResultsForSearch < 0) {
      this.minimumResultsForSearch = Infinity;
    }

    decorated.call(this, $element, options, dataAdapter);
  }

  MinimumResultsForSearch.prototype.showSearch = function (decorated, params) {
    if (countResults(params.data.results) < this.minimumResultsForSearch) {
      return false;
    }

    return decorated.call(this, params);
  };

  return MinimumResultsForSearch;
});

S2.define('select2/dropdown/selectOnClose',[

], function () {
  function SelectOnClose () { }

  SelectOnClose.prototype.bind = function (decorated, container, $container) {
    var self = this;

    decorated.call(this, container, $container);

    container.on('close', function (params) {
      self._handleSelectOnClose(params);
    });
  };

  SelectOnClose.prototype._handleSelectOnClose = function (_, params) {
    if (params && params.originalSelect2Event != null) {
      var event = params.originalSelect2Event;

      // Don't select an item if the close event was triggered from a select or
      // unselect event
      if (event._type === 'select' || event._type === 'unselect') {
        return;
      }
    }

    var $highlightedResults = this.getHighlightedResults();

    // Only select highlighted results
    if ($highlightedResults.length < 1) {
      return;
    }

    var data = $highlightedResults.data('data');

    // Don't re-select already selected resulte
    if (
      (data.element != null && data.element.selected) ||
      (data.element == null && data.selected)
    ) {
      return;
    }

    this.trigger('select', {
        data: data
    });
  };

  return SelectOnClose;
});

S2.define('select2/dropdown/closeOnSelect',[

], function () {
  function CloseOnSelect () { }

  CloseOnSelect.prototype.bind = function (decorated, container, $container) {
    var self = this;

    decorated.call(this, container, $container);

    container.on('select', function (evt) {
      self._selectTriggered(evt);
    });

    container.on('unselect', function (evt) {
      self._selectTriggered(evt);
    });
  };

  CloseOnSelect.prototype._selectTriggered = function (_, evt) {
    var originalEvent = evt.originalEvent;

    // Don't close if the control key is being held
    if (originalEvent && originalEvent.ctrlKey) {
      return;
    }

    this.trigger('close', {
      originalEvent: originalEvent,
      originalSelect2Event: evt
    });
  };

  return CloseOnSelect;
});

S2.define('select2/i18n/en',[],function () {
  // English
  return {
    errorLoading: function () {
      return 'The results could not be loaded.';
    },
    inputTooLong: function (args) {
      var overChars = args.input.length - args.maximum;

      var message = 'Please delete ' + overChars + ' character';

      if (overChars != 1) {
        message += 's';
      }

      return message;
    },
    inputTooShort: function (args) {
      var remainingChars = args.minimum - args.input.length;

      var message = 'Please enter ' + remainingChars + ' or more characters';

      return message;
    },
    loadingMore: function () {
      return 'Loading more results…';
    },
    maximumSelected: function (args) {
      var message = 'You can only select ' + args.maximum + ' item';

      if (args.maximum != 1) {
        message += 's';
      }

      return message;
    },
    noResults: function () {
      return 'No results found';
    },
    searching: function () {
      return 'Searching…';
    }
  };
});

S2.define('select2/defaults',[
  'jquery',
  'require',

  './results',

  './selection/single',
  './selection/multiple',
  './selection/placeholder',
  './selection/allowClear',
  './selection/search',
  './selection/eventRelay',

  './utils',
  './translation',
  './diacritics',

  './data/select',
  './data/array',
  './data/ajax',
  './data/tags',
  './data/tokenizer',
  './data/minimumInputLength',
  './data/maximumInputLength',
  './data/maximumSelectionLength',

  './dropdown',
  './dropdown/search',
  './dropdown/hidePlaceholder',
  './dropdown/infiniteScroll',
  './dropdown/attachBody',
  './dropdown/minimumResultsForSearch',
  './dropdown/selectOnClose',
  './dropdown/closeOnSelect',

  './i18n/en'
], function ($, require,

             ResultsList,

             SingleSelection, MultipleSelection, Placeholder, AllowClear,
             SelectionSearch, EventRelay,

             Utils, Translation, DIACRITICS,

             SelectData, ArrayData, AjaxData, Tags, Tokenizer,
             MinimumInputLength, MaximumInputLength, MaximumSelectionLength,

             Dropdown, DropdownSearch, HidePlaceholder, InfiniteScroll,
             AttachBody, MinimumResultsForSearch, SelectOnClose, CloseOnSelect,

             EnglishTranslation) {
  function Defaults () {
    this.reset();
  }

  Defaults.prototype.apply = function (options) {
    options = $.extend(true, {}, this.defaults, options);

    if (options.dataAdapter == null) {
      if (options.ajax != null) {
        options.dataAdapter = AjaxData;
      } else if (options.data != null) {
        options.dataAdapter = ArrayData;
      } else {
        options.dataAdapter = SelectData;
      }

      if (options.minimumInputLength > 0) {
        options.dataAdapter = Utils.Decorate(
          options.dataAdapter,
          MinimumInputLength
        );
      }

      if (options.maximumInputLength > 0) {
        options.dataAdapter = Utils.Decorate(
          options.dataAdapter,
          MaximumInputLength
        );
      }

      if (options.maximumSelectionLength > 0) {
        options.dataAdapter = Utils.Decorate(
          options.dataAdapter,
          MaximumSelectionLength
        );
      }

      if (options.tags) {
        options.dataAdapter = Utils.Decorate(options.dataAdapter, Tags);
      }

      if (options.tokenSeparators != null || options.tokenizer != null) {
        options.dataAdapter = Utils.Decorate(
          options.dataAdapter,
          Tokenizer
        );
      }

      if (options.query != null) {
        var Query = require(options.amdBase + 'compat/query');

        options.dataAdapter = Utils.Decorate(
          options.dataAdapter,
          Query
        );
      }

      if (options.initSelection != null) {
        var InitSelection = require(options.amdBase + 'compat/initSelection');

        options.dataAdapter = Utils.Decorate(
          options.dataAdapter,
          InitSelection
        );
      }
    }

    if (options.resultsAdapter == null) {
      options.resultsAdapter = ResultsList;

      if (options.ajax != null) {
        options.resultsAdapter = Utils.Decorate(
          options.resultsAdapter,
          InfiniteScroll
        );
      }

      if (options.placeholder != null) {
        options.resultsAdapter = Utils.Decorate(
          options.resultsAdapter,
          HidePlaceholder
        );
      }

      if (options.selectOnClose) {
        options.resultsAdapter = Utils.Decorate(
          options.resultsAdapter,
          SelectOnClose
        );
      }
    }

    if (options.dropdownAdapter == null) {
      if (options.multiple) {
        options.dropdownAdapter = Dropdown;
      } else {
        var SearchableDropdown = Utils.Decorate(Dropdown, DropdownSearch);

        options.dropdownAdapter = SearchableDropdown;
      }

      if (options.minimumResultsForSearch !== 0) {
        options.dropdownAdapter = Utils.Decorate(
          options.dropdownAdapter,
          MinimumResultsForSearch
        );
      }

      if (options.closeOnSelect) {
        options.dropdownAdapter = Utils.Decorate(
          options.dropdownAdapter,
          CloseOnSelect
        );
      }

      if (
        options.dropdownCssClass != null ||
        options.dropdownCss != null ||
        options.adaptDropdownCssClass != null
      ) {
        var DropdownCSS = require(options.amdBase + 'compat/dropdownCss');

        options.dropdownAdapter = Utils.Decorate(
          options.dropdownAdapter,
          DropdownCSS
        );
      }

      options.dropdownAdapter = Utils.Decorate(
        options.dropdownAdapter,
        AttachBody
      );
    }

    if (options.selectionAdapter == null) {
      if (options.multiple) {
        options.selectionAdapter = MultipleSelection;
      } else {
        options.selectionAdapter = SingleSelection;
      }

      // Add the placeholder mixin if a placeholder was specified
      if (options.placeholder != null) {
        options.selectionAdapter = Utils.Decorate(
          options.selectionAdapter,
          Placeholder
        );
      }

      if (options.allowClear) {
        options.selectionAdapter = Utils.Decorate(
          options.selectionAdapter,
          AllowClear
        );
      }

      if (options.multiple) {
        options.selectionAdapter = Utils.Decorate(
          options.selectionAdapter,
          SelectionSearch
        );
      }

      if (
        options.containerCssClass != null ||
        options.containerCss != null ||
        options.adaptContainerCssClass != null
      ) {
        var ContainerCSS = require(options.amdBase + 'compat/containerCss');

        options.selectionAdapter = Utils.Decorate(
          options.selectionAdapter,
          ContainerCSS
        );
      }

      options.selectionAdapter = Utils.Decorate(
        options.selectionAdapter,
        EventRelay
      );
    }

    if (typeof options.language === 'string') {
      // Check if the language is specified with a region
      if (options.language.indexOf('-') > 0) {
        // Extract the region information if it is included
        var languageParts = options.language.split('-');
        var baseLanguage = languageParts[0];

        options.language = [options.language, baseLanguage];
      } else {
        options.language = [options.language];
      }
    }

    if ($.isArray(options.language)) {
      var languages = new Translation();
      options.language.push('en');

      var languageNames = options.language;

      for (var l = 0; l < languageNames.length; l++) {
        var name = languageNames[l];
        var language = {};

        try {
          // Try to load it with the original name
          language = Translation.loadPath(name);
        } catch (e) {
          try {
            // If we couldn't load it, check if it wasn't the full path
            name = this.defaults.amdLanguageBase + name;
            language = Translation.loadPath(name);
          } catch (ex) {
            // The translation could not be loaded at all. Sometimes this is
            // because of a configuration problem, other times this can be
            // because of how Select2 helps load all possible translation files.
            if (options.debug && window.console && console.warn) {
              console.warn(
                'Select2: The language file for "' + name + '" could not be ' +
                'automatically loaded. A fallback will be used instead.'
              );
            }

            continue;
          }
        }

        languages.extend(language);
      }

      options.translations = languages;
    } else {
      var baseTranslation = Translation.loadPath(
        this.defaults.amdLanguageBase + 'en'
      );
      var customTranslation = new Translation(options.language);

      customTranslation.extend(baseTranslation);

      options.translations = customTranslation;
    }

    return options;
  };

  Defaults.prototype.reset = function () {
    function stripDiacritics (text) {
      // Used 'uni range + named function' from http://jsperf.com/diacritics/18
      function match(a) {
        return DIACRITICS[a] || a;
      }

      return text.replace(/[^\u0000-\u007E]/g, match);
    }

    function matcher (params, data) {
      // Always return the object if there is nothing to compare
      if ($.trim(params.term) === '') {
        return data;
      }

      // Do a recursive check for options with children
      if (data.children && data.children.length > 0) {
        // Clone the data object if there are children
        // This is required as we modify the object to remove any non-matches
        var match = $.extend(true, {}, data);

        // Check each child of the option
        for (var c = data.children.length - 1; c >= 0; c--) {
          var child = data.children[c];

          var matches = matcher(params, child);

          // If there wasn't a match, remove the object in the array
          if (matches == null) {
            match.children.splice(c, 1);
          }
        }

        // If any children matched, return the new object
        if (match.children.length > 0) {
          return match;
        }

        // If there were no matching children, check just the plain object
        return matcher(params, match);
      }

      var original = stripDiacritics(data.text).toUpperCase();
      var term = stripDiacritics(params.term).toUpperCase();

      // Check if the text contains the term
      if (original.indexOf(term) > -1) {
        return data;
      }

      // If it doesn't contain the term, don't return anything
      return null;
    }

    this.defaults = {
      amdBase: './',
      amdLanguageBase: './i18n/',
      closeOnSelect: true,
      debug: false,
      dropdownAutoWidth: false,
      escapeMarkup: Utils.escapeMarkup,
      language: EnglishTranslation,
      matcher: matcher,
      minimumInputLength: 0,
      maximumInputLength: 0,
      maximumSelectionLength: 0,
      minimumResultsForSearch: 0,
      selectOnClose: false,
      sorter: function (data) {
        return data;
      },
      templateResult: function (result) {
        return result.text;
      },
      templateSelection: function (selection) {
        return selection.text;
      },
      theme: 'default',
      width: 'resolve'
    };
  };

  Defaults.prototype.set = function (key, value) {
    var camelKey = $.camelCase(key);

    var data = {};
    data[camelKey] = value;

    var convertedData = Utils._convertData(data);

    $.extend(this.defaults, convertedData);
  };

  var defaults = new Defaults();

  return defaults;
});

S2.define('select2/options',[
  'require',
  'jquery',
  './defaults',
  './utils'
], function (require, $, Defaults, Utils) {
  function Options (options, $element) {
    this.options = options;

    if ($element != null) {
      this.fromElement($element);
    }

    this.options = Defaults.apply(this.options);

    if ($element && $element.is('input')) {
      var InputCompat = require(this.get('amdBase') + 'compat/inputData');

      this.options.dataAdapter = Utils.Decorate(
        this.options.dataAdapter,
        InputCompat
      );
    }
  }

  Options.prototype.fromElement = function ($e) {
    var excludedData = ['select2'];

    if (this.options.multiple == null) {
      this.options.multiple = $e.prop('multiple');
    }

    if (this.options.disabled == null) {
      this.options.disabled = $e.prop('disabled');
    }

    if (this.options.language == null) {
      if ($e.prop('lang')) {
        this.options.language = $e.prop('lang').toLowerCase();
      } else if ($e.closest('[lang]').prop('lang')) {
        this.options.language = $e.closest('[lang]').prop('lang');
      }
    }

    if (this.options.dir == null) {
      if ($e.prop('dir')) {
        this.options.dir = $e.prop('dir');
      } else if ($e.closest('[dir]').prop('dir')) {
        this.options.dir = $e.closest('[dir]').prop('dir');
      } else {
        this.options.dir = 'ltr';
      }
    }

    $e.prop('disabled', this.options.disabled);
    $e.prop('multiple', this.options.multiple);

    if ($e.data('select2Tags')) {
      if (this.options.debug && window.console && console.warn) {
        console.warn(
          'Select2: The `data-select2-tags` attribute has been changed to ' +
          'use the `data-data` and `data-tags="true"` attributes and will be ' +
          'removed in future versions of Select2.'
        );
      }

      $e.data('data', $e.data('select2Tags'));
      $e.data('tags', true);
    }

    if ($e.data('ajaxUrl')) {
      if (this.options.debug && window.console && console.warn) {
        console.warn(
          'Select2: The `data-ajax-url` attribute has been changed to ' +
          '`data-ajax--url` and support for the old attribute will be removed' +
          ' in future versions of Select2.'
        );
      }

      $e.attr('ajax--url', $e.data('ajaxUrl'));
      $e.data('ajax--url', $e.data('ajaxUrl'));
    }

    var dataset = {};

    // Prefer the element's `dataset` attribute if it exists
    // jQuery 1.x does not correctly handle data attributes with multiple dashes
    if ($.fn.jquery && $.fn.jquery.substr(0, 2) == '1.' && $e[0].dataset) {
      dataset = $.extend(true, {}, $e[0].dataset, $e.data());
    } else {
      dataset = $e.data();
    }

    var data = $.extend(true, {}, dataset);

    data = Utils._convertData(data);

    for (var key in data) {
      if ($.inArray(key, excludedData) > -1) {
        continue;
      }

      if ($.isPlainObject(this.options[key])) {
        $.extend(this.options[key], data[key]);
      } else {
        this.options[key] = data[key];
      }
    }

    return this;
  };

  Options.prototype.get = function (key) {
    return this.options[key];
  };

  Options.prototype.set = function (key, val) {
    this.options[key] = val;
  };

  return Options;
});

S2.define('select2/core',[
  'jquery',
  './options',
  './utils',
  './keys'
], function ($, Options, Utils, KEYS) {
  var Select2 = function ($element, options) {
    if ($element.data('select2') != null) {
      $element.data('select2').destroy();
    }

    this.$element = $element;

    this.id = this._generateId($element);

    options = options || {};

    this.options = new Options(options, $element);

    Select2.__super__.constructor.call(this);

    // Set up the tabindex

    var tabindex = $element.attr('tabindex') || 0;
    $element.data('old-tabindex', tabindex);
    $element.attr('tabindex', '-1');

    // Set up containers and adapters

    var DataAdapter = this.options.get('dataAdapter');
    this.dataAdapter = new DataAdapter($element, this.options);

    var $container = this.render();

    this._placeContainer($container);

    var SelectionAdapter = this.options.get('selectionAdapter');
    this.selection = new SelectionAdapter($element, this.options);
    this.$selection = this.selection.render();

    this.selection.position(this.$selection, $container);

    var DropdownAdapter = this.options.get('dropdownAdapter');
    this.dropdown = new DropdownAdapter($element, this.options);
    this.$dropdown = this.dropdown.render();

    this.dropdown.position(this.$dropdown, $container);

    var ResultsAdapter = this.options.get('resultsAdapter');
    this.results = new ResultsAdapter($element, this.options, this.dataAdapter);
    this.$results = this.results.render();

    this.results.position(this.$results, this.$dropdown);

    // Bind events

    var self = this;

    // Bind the container to all of the adapters
    this._bindAdapters();

    // Register any DOM event handlers
    this._registerDomEvents();

    // Register any internal event handlers
    this._registerDataEvents();
    this._registerSelectionEvents();
    this._registerDropdownEvents();
    this._registerResultsEvents();
    this._registerEvents();

    // Set the initial state
    this.dataAdapter.current(function (initialData) {
      self.trigger('selection:update', {
        data: initialData
      });
    });

    // Hide the original select
    $element.addClass('select2-hidden-accessible');
    $element.attr('aria-hidden', 'true');

    // Synchronize any monitored attributes
    this._syncAttributes();

    $element.data('select2', this);
  };

  Utils.Extend(Select2, Utils.Observable);

  Select2.prototype._generateId = function ($element) {
    var id = '';

    if ($element.attr('id') != null) {
      id = $element.attr('id');
    } else if ($element.attr('name') != null) {
      id = $element.attr('name') + '-' + Utils.generateChars(2);
    } else {
      id = Utils.generateChars(4);
    }

    id = id.replace(/(:|\.|\[|\]|,)/g, '');
    id = 'select2-' + id;

    return id;
  };

  Select2.prototype._placeContainer = function ($container) {
    $container.insertAfter(this.$element);

    var width = this._resolveWidth(this.$element, this.options.get('width'));

    if (width != null) {
      $container.css('width', width);
    }
  };

  Select2.prototype._resolveWidth = function ($element, method) {
    var WIDTH = /^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;

    if (method == 'resolve') {
      var styleWidth = this._resolveWidth($element, 'style');

      if (styleWidth != null) {
        return styleWidth;
      }

      return this._resolveWidth($element, 'element');
    }

    if (method == 'element') {
      var elementWidth = $element.outerWidth(false);

      if (elementWidth <= 0) {
        return 'auto';
      }

      return elementWidth + 'px';
    }

    if (method == 'style') {
      var style = $element.attr('style');

      if (typeof(style) !== 'string') {
        return null;
      }

      var attrs = style.split(';');

      for (var i = 0, l = attrs.length; i < l; i = i + 1) {
        var attr = attrs[i].replace(/\s/g, '');
        var matches = attr.match(WIDTH);

        if (matches !== null && matches.length >= 1) {
          return matches[1];
        }
      }

      return null;
    }

    return method;
  };

  Select2.prototype._bindAdapters = function () {
    this.dataAdapter.bind(this, this.$container);
    this.selection.bind(this, this.$container);

    this.dropdown.bind(this, this.$container);
    this.results.bind(this, this.$container);
  };

  Select2.prototype._registerDomEvents = function () {
    var self = this;

    this.$element.on('change.select2', function () {
      self.dataAdapter.current(function (data) {
        self.trigger('selection:update', {
          data: data
        });
      });
    });

    this.$element.on('focus.select2', function (evt) {
      self.trigger('focus', evt);
    });

    this._syncA = Utils.bind(this._syncAttributes, this);
    this._syncS = Utils.bind(this._syncSubtree, this);

    if (this.$element[0].attachEvent) {
      this.$element[0].attachEvent('onpropertychange', this._syncA);
    }

    var observer = window.MutationObserver ||
      window.WebKitMutationObserver ||
      window.MozMutationObserver
    ;

    if (observer != null) {
      this._observer = new observer(function (mutations) {
        $.each(mutations, self._syncA);
        $.each(mutations, self._syncS);
      });
      this._observer.observe(this.$element[0], {
        attributes: true,
        childList: true,
        subtree: false
      });
    } else if (this.$element[0].addEventListener) {
      this.$element[0].addEventListener(
        'DOMAttrModified',
        self._syncA,
        false
      );
      this.$element[0].addEventListener(
        'DOMNodeInserted',
        self._syncS,
        false
      );
      this.$element[0].addEventListener(
        'DOMNodeRemoved',
        self._syncS,
        false
      );
    }
  };

  Select2.prototype._registerDataEvents = function () {
    var self = this;

    this.dataAdapter.on('*', function (name, params) {
      self.trigger(name, params);
    });
  };

  Select2.prototype._registerSelectionEvents = function () {
    var self = this;
    var nonRelayEvents = ['toggle', 'focus'];

    this.selection.on('toggle', function () {
      self.toggleDropdown();
    });

    this.selection.on('focus', function (params) {
      self.focus(params);
    });

    this.selection.on('*', function (name, params) {
      if ($.inArray(name, nonRelayEvents) !== -1) {
        return;
      }

      self.trigger(name, params);
    });
  };

  Select2.prototype._registerDropdownEvents = function () {
    var self = this;

    this.dropdown.on('*', function (name, params) {
      self.trigger(name, params);
    });
  };

  Select2.prototype._registerResultsEvents = function () {
    var self = this;

    this.results.on('*', function (name, params) {
      self.trigger(name, params);
    });
  };

  Select2.prototype._registerEvents = function () {
    var self = this;

    this.on('open', function () {
      self.$container.addClass('select2-container--open');
    });

    this.on('close', function () {
      self.$container.removeClass('select2-container--open');
    });

    this.on('enable', function () {
      self.$container.removeClass('select2-container--disabled');
    });

    this.on('disable', function () {
      self.$container.addClass('select2-container--disabled');
    });

    this.on('blur', function () {
      self.$container.removeClass('select2-container--focus');
    });

    this.on('query', function (params) {
      if (!self.isOpen()) {
        self.trigger('open', {});
      }

      this.dataAdapter.query(params, function (data) {
        self.trigger('results:all', {
          data: data,
          query: params
        });
      });
    });

    this.on('query:append', function (params) {
      this.dataAdapter.query(params, function (data) {
        self.trigger('results:append', {
          data: data,
          query: params
        });
      });
    });

    this.on('keypress', function (evt) {
      var key = evt.which;

      if (self.isOpen()) {
        if (key === KEYS.ESC || key === KEYS.TAB ||
            (key === KEYS.UP && evt.altKey)) {
          self.close();

          evt.preventDefault();
        } else if (key === KEYS.ENTER) {
          self.trigger('results:select', {});

          evt.preventDefault();
        } else if ((key === KEYS.SPACE && evt.ctrlKey)) {
          self.trigger('results:toggle', {});

          evt.preventDefault();
        } else if (key === KEYS.UP) {
          self.trigger('results:previous', {});

          evt.preventDefault();
        } else if (key === KEYS.DOWN) {
          self.trigger('results:next', {});

          evt.preventDefault();
        }
      } else {
        if (key === KEYS.ENTER || key === KEYS.SPACE ||
            (key === KEYS.DOWN && evt.altKey)) {
          self.open();

          evt.preventDefault();
        }
      }
    });
  };

  Select2.prototype._syncAttributes = function () {
    this.options.set('disabled', this.$element.prop('disabled'));

    if (this.options.get('disabled')) {
      if (this.isOpen()) {
        this.close();
      }

      this.trigger('disable', {});
    } else {
      this.trigger('enable', {});
    }
  };

  Select2.prototype._syncSubtree = function (evt, mutations) {
    var changed = false;
    var self = this;

    // Ignore any mutation events raised for elements that aren't options or
    // optgroups. This handles the case when the select element is destroyed
    if (
      evt && evt.target && (
        evt.target.nodeName !== 'OPTION' && evt.target.nodeName !== 'OPTGROUP'
      )
    ) {
      return;
    }

    if (!mutations) {
      // If mutation events aren't supported, then we can only assume that the
      // change affected the selections
      changed = true;
    } else if (mutations.addedNodes && mutations.addedNodes.length > 0) {
      for (var n = 0; n < mutations.addedNodes.length; n++) {
        var node = mutations.addedNodes[n];

        if (node.selected) {
          changed = true;
        }
      }
    } else if (mutations.removedNodes && mutations.removedNodes.length > 0) {
      changed = true;
    }

    // Only re-pull the data if we think there is a change
    if (changed) {
      this.dataAdapter.current(function (currentData) {
        self.trigger('selection:update', {
          data: currentData
        });
      });
    }
  };

  /**
   * Override the trigger method to automatically trigger pre-events when
   * there are events that can be prevented.
   */
  Select2.prototype.trigger = function (name, args) {
    var actualTrigger = Select2.__super__.trigger;
    var preTriggerMap = {
      'open': 'opening',
      'close': 'closing',
      'select': 'selecting',
      'unselect': 'unselecting'
    };

    if (args === undefined) {
      args = {};
    }

    if (name in preTriggerMap) {
      var preTriggerName = preTriggerMap[name];
      var preTriggerArgs = {
        prevented: false,
        name: name,
        args: args
      };

      actualTrigger.call(this, preTriggerName, preTriggerArgs);

      if (preTriggerArgs.prevented) {
        args.prevented = true;

        return;
      }
    }

    actualTrigger.call(this, name, args);
  };

  Select2.prototype.toggleDropdown = function () {
    if (this.options.get('disabled')) {
      return;
    }

    if (this.isOpen()) {
      this.close();
    } else {
      this.open();
    }
  };

  Select2.prototype.open = function () {
    if (this.isOpen()) {
      return;
    }

    this.trigger('query', {});
  };

  Select2.prototype.close = function () {
    if (!this.isOpen()) {
      return;
    }

    this.trigger('close', {});
  };

  Select2.prototype.isOpen = function () {
    return this.$container.hasClass('select2-container--open');
  };

  Select2.prototype.hasFocus = function () {
    return this.$container.hasClass('select2-container--focus');
  };

  Select2.prototype.focus = function (data) {
    // No need to re-trigger focus events if we are already focused
    if (this.hasFocus()) {
      return;
    }

    this.$container.addClass('select2-container--focus');
    this.trigger('focus', {});
  };

  Select2.prototype.enable = function (args) {
    if (this.options.get('debug') && window.console && console.warn) {
      console.warn(
        'Select2: The `select2("enable")` method has been deprecated and will' +
        ' be removed in later Select2 versions. Use $element.prop("disabled")' +
        ' instead.'
      );
    }

    if (args == null || args.length === 0) {
      args = [true];
    }

    var disabled = !args[0];

    this.$element.prop('disabled', disabled);
  };

  Select2.prototype.data = function () {
    if (this.options.get('debug') &&
        arguments.length > 0 && window.console && console.warn) {
      console.warn(
        'Select2: Data can no longer be set using `select2("data")`. You ' +
        'should consider setting the value instead using `$element.val()`.'
      );
    }

    var data = [];

    this.dataAdapter.current(function (currentData) {
      data = currentData;
    });

    return data;
  };

  Select2.prototype.val = function (args) {
    if (this.options.get('debug') && window.console && console.warn) {
      console.warn(
        'Select2: The `select2("val")` method has been deprecated and will be' +
        ' removed in later Select2 versions. Use $element.val() instead.'
      );
    }

    if (args == null || args.length === 0) {
      return this.$element.val();
    }

    var newVal = args[0];

    if ($.isArray(newVal)) {
      newVal = $.map(newVal, function (obj) {
        return obj.toString();
      });
    }

    this.$element.val(newVal).trigger('change');
  };

  Select2.prototype.destroy = function () {
    this.$container.remove();

    if (this.$element[0].detachEvent) {
      this.$element[0].detachEvent('onpropertychange', this._syncA);
    }

    if (this._observer != null) {
      this._observer.disconnect();
      this._observer = null;
    } else if (this.$element[0].removeEventListener) {
      this.$element[0]
        .removeEventListener('DOMAttrModified', this._syncA, false);
      this.$element[0]
        .removeEventListener('DOMNodeInserted', this._syncS, false);
      this.$element[0]
        .removeEventListener('DOMNodeRemoved', this._syncS, false);
    }

    this._syncA = null;
    this._syncS = null;

    this.$element.off('.select2');
    this.$element.attr('tabindex', this.$element.data('old-tabindex'));

    this.$element.removeClass('select2-hidden-accessible');
    this.$element.attr('aria-hidden', 'false');
    this.$element.removeData('select2');

    this.dataAdapter.destroy();
    this.selection.destroy();
    this.dropdown.destroy();
    this.results.destroy();

    this.dataAdapter = null;
    this.selection = null;
    this.dropdown = null;
    this.results = null;
  };

  Select2.prototype.render = function () {
    var $container = $(
      '<span class="select2 select2-container">' +
        '<span class="selection"></span>' +
        '<span class="dropdown-wrapper" aria-hidden="true"></span>' +
      '</span>'
    );

    $container.attr('dir', this.options.get('dir'));

    this.$container = $container;

    this.$container.addClass('select2-container--' + this.options.get('theme'));

    $container.data('element', this.$element);

    return $container;
  };

  return Select2;
});

S2.define('jquery-mousewheel',[
  'jquery'
], function ($) {
  // Used to shim jQuery.mousewheel for non-full builds.
  return $;
});

S2.define('jquery.select2',[
  'jquery',
  'jquery-mousewheel',

  './select2/core',
  './select2/defaults'
], function ($, _, Select2, Defaults) {
  if ($.fn.select2 == null) {
    // All methods that should return the element
    var thisMethods = ['open', 'close', 'destroy'];

    $.fn.select2 = function (options) {
      options = options || {};

      if (typeof options === 'object') {
        this.each(function () {
          var instanceOptions = $.extend(true, {}, options);

          var instance = new Select2($(this), instanceOptions);
        });

        return this;
      } else if (typeof options === 'string') {
        var ret;
        var args = Array.prototype.slice.call(arguments, 1);

        this.each(function () {
          var instance = $(this).data('select2');

          if (instance == null && window.console && console.error) {
            console.error(
              'The select2(\'' + options + '\') method was called on an ' +
              'element that is not using Select2.'
            );
          }

          ret = instance[options].apply(instance, args);
        });

        // Check if we should be returning `this`
        if ($.inArray(options, thisMethods) > -1) {
          return this;
        }

        return ret;
      } else {
        throw new Error('Invalid arguments for Select2: ' + options);
      }
    };
  }

  if ($.fn.select2.defaults == null) {
    $.fn.select2.defaults = Defaults;
  }

  return Select2;
});

  // Return the AMD loader configuration so it can be used outside of this file
  return {
    define: S2.define,
    require: S2.require
  };
}());

  // Autoload the jQuery bindings
  // We know that all of the modules exist above this, so we're safe
  var select2 = S2.require('jquery.select2');

  // Hold the AMD module references on the jQuery function that was just loaded
  // This allows Select2 to use the internal loader outside of this file, such
  // as in the language files.
  jQuery.fn.select2.amd = S2;

  // Return the Select2 instance for anyone who is importing it.
  return select2;
}));PK���\iybx\;\;inc/lib/target-rule/select2.cssnu�[���.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
PK���\��
�	�	 inc/lib/target-rule/user-role.jsnu�[���;(function ( $, window, undefined ) {

	var user_role_update_close_button = function(wrapper) {

		type 		= wrapper.closest('.ast-user-role-wrapper').attr('data-type');
		rules 		= wrapper.find('.astra-user-role-condition');
		show_close	= false;

		if ( rules.length > 1 ) {
			show_close = true;
		}

		rules.each(function() {
			if ( show_close ) {
				jQuery(this).find('.user_role-condition-delete').removeClass('ast-hidden');
			}else{
				jQuery(this).find('.user_role-condition-delete').addClass('ast-hidden');
			}
		});
	};

	$(document).ready(function($) {

		jQuery('.ast-user-role-selector-wrapper').each(function() {
			user_role_update_close_button( jQuery(this) );
		})
		
		jQuery( '.ast-user-role-selector-wrapper' ).on( 'click', '.user_role-add-rule-wrap a', function(e) {
			e.preventDefault();
			e.stopPropagation();
			var $this 		= jQuery( this ),
				id 			= $this.attr( 'data-rule-id' ),
				new_id 		= parseInt(id) + 1,
				rule_wrap 	= $this.closest('.ast-user-role-selector-wrapper').find('.user_role-builder-wrap'),
				template  	= wp.template( 'astra-user-role-condition' ),
				field_wrap 	= $this.closest('.ast-user-role-wrapper');

			rule_wrap.append( template( { id : new_id } ) );
			
			$this.attr( 'data-rule-id', new_id );

			user_role_update_close_button( field_wrap );
		});

		jQuery( '.ast-user-role-selector-wrapper' ).on( 'click', '.user_role-condition-delete', function(e) {
			var $this 			= jQuery( this ),
				rule_condition 	= $this.closest('.astra-user-role-condition'),
				field_wrap 		= $this.closest('.ast-user-role-wrapper');
				cnt 			= 0,
				data_type 		= field_wrap.attr( 'data-type' ),
				optionVal 		= $this.siblings('.user_role-condition-wrap').children('.user_role-condition').val();

			rule_condition.remove();

			field_wrap.find('.astra-user-role-condition').each(function(i) {
				var condition       = jQuery( this ),
					old_rule_id     = condition.attr('data-rule'),
					select_location = condition.find('.user_role-condition'),
					location_name   = select_location.attr( 'name' );
					
				condition.attr( 'data-rule', i );

				select_location.attr( 'name', location_name.replace('['+old_rule_id+']', '['+i+']') );

				condition.removeClass('ast-user-role-'+old_rule_id).addClass('ast-user-role-'+i);

				cnt = i;
			});

			field_wrap.find('.user_role-add-rule-wrap a').attr( 'data-rule-id', cnt )

			user_role_update_close_button( field_wrap );
		});
	});
}(jQuery, window));PK���\g��	�	#inc/lib/target-rule/target-rule.cssnu�[���/* Select2 */
.post-type-astra_adv_header span.select2.select2-container.select2-container--default,
.post-type-astra-advanced-hook span.select2.select2-container.select2-container--default {
    margin-top: 0;
}

.post-type-astra_adv_header li.select2-results__option.select2-results__message,
.post-type-astra-advanced-hook li.select2-results__option.select2-results__message {
    background: #ecebeb;
    margin-bottom: 0;
}
.ast-target-rule-wrapper  .select2-container {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 100% !important;
}

.ast-target-rule-wrapper .select2-container--default.select2-container--focus .select2-selection--multiple,
.ast-target-rule-wrapper .select2-container--default .select2-selection--multiple {
    border: 1px solid #ddd;
    margin-top: 10px;
}

.ast-target-rule-wrapper .select2-container .select2-search--inline,
.ast-target-rule-wrapper .select2-container--default .select2-search--inline .select2-search__field {
    width: 100% !important;
}

/* Target Rule field */
.astra-target-rule-condition,
.astra-user-role-condition {
    position: relative;
    margin-top: 10px;
}

.target_rule-specific-page-wrap {
    position: relative;
    padding: 0 30px 0 0;
}

.user_role-add-rule-wrap,
.target_rule-add-rule-wrap,
.target_rule-add-exclusion-rule,
.user_role-add-rule-wrap {
    margin-top: 15px;
}

.ast-target-rule-display-on,
.ast-target-rule-exclude-on {
    margin-bottom: 10px;
}

.target_rule-condition-delete,
.user_role-condition-delete {
    position: absolute;
    color: #999;
    right: 0px;
    top: 0px;
    font-size: 18px;
    line-height: 18px;
    width: 18px;
    height: 18px;
    display: inline-block;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.target_rule-condition-delete:hover {
    color: #d54e21;
}

.target_rule-add-rule-wrap {
    display: inline-block;
}

.target_rule-add-exclusion-rule {
    display: inline-block;
    margin-left: 10px;
}

.configure-content [data-element="exclude_from"],
.configure-content [data-element="exclusive_on"] {
    padding-bottom: 0;
}

.configure-content .ast-allow-specific-posts input, 
.configure-content .ast-post-types {
    margin-right: 3px;
}

.hide-on-devices input[type=checkbox] {
    margin-right: 5px;
}

.search-panel.search-close-icon {
    pointer-events: auto;
    cursor: pointer;
}

.ast-hidden {
    display: none !important;
}
PK���\���inc/lib/target-rule/i18n/dsb.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/dsb",[],function(){var e=["znamuško","znamušce","znamuška","znamuškow"],t=["zapisk","zapiska","zapiski","zapiskow"],n=function(t,n){if(t===1)return n[0];if(t===2)return n[1];if(t>2&&t<=4)return n[2];if(t>=5)return n[3]};return{errorLoading:function(){return"Wuslědki njejsu se dali zacytaś."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Pšosym lašuj "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Pšosym zapódaj nanejmjenjej "+r+" "+n(r,e)},loadingMore:function(){return"Dalšne wuslědki se zacytaju…"},maximumSelected:function(e){return"Móžoš jano "+e.maximum+" "+n(e.maximum,t)+"wubraś."},noResults:function(){return"Žedne wuslědki namakane"},searching:function(){return"Pyta se…"}}}),{define:e.define,require:e.require}})();PK���\k��C!inc/lib/target-rule/i18n/zh-CN.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})();PK���\+:�R[[inc/lib/target-rule/i18n/pt.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"caractere",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})();PK���\�4c��!inc/lib/target-rule/i18n/zh-TW.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})();PK���\�Z�jUU!inc/lib/target-rule/i18n/pt-BR.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();PK���\��*NNinc/lib/target-rule/i18n/af.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/af",[],function(){return{errorLoading:function(){return"Die resultate kon nie gelaai word nie."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Verwyders asseblief "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Voer asseblief "+t+" of meer karakters";return n},loadingMore:function(){return"Meer resultate word gelaai…"},maximumSelected:function(e){var t="Kies asseblief net "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"Geen resultate gevind"},searching:function(){return"Besig…"}}}),{define:e.define,require:e.require}})();PK���\Ώ���inc/lib/target-rule/i18n/bs.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bs",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspijelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})();PK���\]�~5��inc/lib/target-rule/i18n/hy.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hy",[],function(){return{errorLoading:function(){return"Արդյունքները հնարավոր չէ բեռնել։"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Խնդրում ենք հեռացնել "+t+" նշան";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Խնդրում ենք մուտքագրել "+t+" կամ ավել նշաններ";return n},loadingMore:function(){return"Բեռնվում են նոր արդյունքներ․․․"},maximumSelected:function(e){var t="Դուք կարող եք ընտրել առավելագույնը "+e.maximum+" կետ";return t},noResults:function(){return"Արդյունքներ չեն գտնվել"},searching:function(){return"Որոնում․․․"}}}),{define:e.define,require:e.require}})();PK���\~��Binc/lib/target-rule/i18n/ms.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})();PK���\gg<��inc/lib/target-rule/i18n/nl.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})();PK���\Qj��inc/lib/target-rule/i18n/tr.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{errorLoading:function(){return"Sonuç yüklenemedi"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})();PK���\<�cUUinc/lib/target-rule/i18n/de.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{errorLoading:function(){return"Die Ergebnisse konnten nicht geladen werden."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})();PK���\��~�ddinc/lib/target-rule/i18n/ar.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum;return"الرجاء حذف "+t+" عناصر"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"الرجاء إضافة "+t+" عناصر"},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){return"تستطيع إختيار "+e.maximum+" بنود فقط"},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})();PK���\
Y&�((inc/lib/target-rule/i18n/da.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Angiv venligst "+t+" tegn mindre"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Angiv venligst "+t+" tegn mere"},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})();PK���\#�����inc/lib/target-rule/i18n/ro.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ro",[],function(){return{errorLoading:function(){return"Rezultatele nu au putut fi incărcate."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să ștergeți"+t+" caracter";return t!==1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vă rugăm să introduceți "+t+" sau mai multe caractere";return n},loadingMore:function(){return"Se încarcă mai multe rezultate…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",e.maximum!==1&&(t+="e"),t},noResults:function(){return"Nu au fost găsite rezultate"},searching:function(){return"Căutare…"}}}),{define:e.define,require:e.require}})();PK���\r�Hinc/lib/target-rule/i18n/nb.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn "+t+" tegn til";return n+" tegn til"},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})();PK���\U=�llinc/lib/target-rule/i18n/el.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/el",[],function(){return{errorLoading:function(){return"Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Παρακαλώ διαγράψτε "+t+" χαρακτήρ";return t==1&&(n+="α"),t!=1&&(n+="ες"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Παρακαλώ συμπληρώστε "+t+" ή περισσότερους χαρακτήρες";return n},loadingMore:function(){return"Φόρτωση περισσότερων αποτελεσμάτων…"},maximumSelected:function(e){var t="Μπορείτε να επιλέξετε μόνο "+e.maximum+" επιλογ";return e.maximum==1&&(t+="ή"),e.maximum!=1&&(t+="ές"),t},noResults:function(){return"Δεν βρέθηκαν αποτελέσματα"},searching:function(){return"Αναζήτηση…"}}}),{define:e.define,require:e.require}})();PK���\U��v��inc/lib/target-rule/i18n/cs.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/cs",[],function(){function e(e,t){switch(e){case 2:return t?"dva":"dvě";case 3:return"tři";case 4:return"čtyři"}return""}return{errorLoading:function(){return"Výsledky nemohly být načteny."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadejte o jeden znak méně.":n<=4?"Prosím, zadejte o "+e(n,!0)+" znaky méně.":"Prosím, zadejte o "+n+" znaků méně."},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadejte ještě jeden znak.":n<=4?"Prosím, zadejte ještě další "+e(n,!0)+" znaky.":"Prosím, zadejte ještě dalších "+n+" znaků."},loadingMore:function(){return"Načítají se další výsledky…"},maximumSelected:function(t){var n=t.maximum;return n==1?"Můžete zvolit jen jednu položku.":n<=4?"Můžete zvolit maximálně "+e(n,!1)+" položky.":"Můžete zvolit maximálně "+n+" položek."},noResults:function(){return"Nenalezeny žádné položky."},searching:function(){return"Vyhledávání…"}}}),{define:e.define,require:e.require}})();PK���\��2hhinc/lib/target-rule/i18n/lv.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par  "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})();PK���\�)3b��inc/lib/target-rule/i18n/ps.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ps",[],function(){return{errorLoading:function(){return"پايلي نه سي ترلاسه کېدای"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="د مهربانۍ لمخي "+t+" توری ړنګ کړئ";return t!=1&&(n=n.replace("توری","توري")),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لږ تر لږه "+t+" يا ډېر توري وليکئ";return n},loadingMore:function(){return"نوري پايلي ترلاسه کيږي..."},maximumSelected:function(e){var t="تاسو يوازي "+e.maximum+" قلم په نښه کولای سی";return e.maximum!=1&&(t=t.replace("قلم","قلمونه")),t},noResults:function(){return"پايلي و نه موندل سوې"},searching:function(){return"لټول کيږي..."}}}),{define:e.define,require:e.require}})();PK���\�x��inc/lib/target-rule/i18n/is.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})();PK���\o�B�eeinc/lib/target-rule/i18n/hi.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})();PK���\$g*�""inc/lib/target-rule/i18n/hu.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{errorLoading:function(){return"Az eredmények betöltése nem sikerült."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})();PK���\A���inc/lib/target-rule/i18n/hsb.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hsb",[],function(){var e=["znamješko","znamješce","znamješka","znamješkow"],t=["zapisk","zapiskaj","zapiski","zapiskow"],n=function(t,n){if(t===1)return n[0];if(t===2)return n[1];if(t>2&&t<=4)return n[2];if(t>=5)return n[3]};return{errorLoading:function(){return"Wuslědki njedachu so začitać."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Prošu zhašej "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Prošu zapodaj znajmjeńša "+r+" "+n(r,e)},loadingMore:function(){return"Dalše wuslědki so začitaja…"},maximumSelected:function(e){return"Móžeš jenož "+e.maximum+" "+n(e.maximum,t)+"wubrać"},noResults:function(){return"Žane wuslědki namakane"},searching:function(){return"Pyta so…"}}}),{define:e.define,require:e.require}})();PK���\�F{LLinc/lib/target-rule/i18n/eu.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})();PK���\�6 �llinc/lib/target-rule/i18n/ca.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})();PK���\�F5�||inc/lib/target-rule/i18n/es.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"No se pudieron cargar los resultados"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();PK���\pz�zzinc/lib/target-rule/i18n/sl.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sl",[],function(){return{errorLoading:function(){return"Zadetkov iskanja ni bilo mogoče naložiti."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Prosim zbrišite "+t+" znak";return t==2?n+="a":t!=1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Prosim vpišite še "+t+" znak";return t==2?n+="a":t!=1&&(n+="e"),n},loadingMore:function(){return"Nalagam več zadetkov…"},maximumSelected:function(e){var t="Označite lahko največ "+e.maximum+" predmet";return e.maximum==2?t+="a":e.maximum!=1&&(t+="e"),t},noResults:function(){return"Ni zadetkov."},searching:function(){return"Iščem…"}}}),{define:e.define,require:e.require}})();PK���\���Է�inc/lib/target-rule/i18n/he.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})();PK���\����  inc/lib/target-rule/i18n/vi.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+" ký tự";return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})();PK���\���HVVinc/lib/target-rule/i18n/ko.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})();PK���\h�u+��inc/lib/target-rule/i18n/pl.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pl",[],function(){var e=["znak","znaki","znaków"],t=["element","elementy","elementów"],n=function(t,n){if(t===1)return n[0];if(t>1&&t<=4)return n[1];if(t>=5)return n[2]};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Usuń "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Podaj przynajmniej "+r+" "+n(r,e)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(e){return"Możesz zaznaczyć tylko "+e.maximum+" "+n(e.maximum,t)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"}}}),{define:e.define,require:e.require}})();PK���\���R��inc/lib/target-rule/i18n/az.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})();PK���\����inc/lib/target-rule/i18n/mk.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})();PK���\)C�dgginc/lib/target-rule/i18n/ru.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ru",[],function(){function e(e,t,n,r){return e%10<5&&e%10>0&&e%100<5||e%100>20?e%10>1?n:t:r}return{errorLoading:function(){return"Невозможно загрузить результаты"},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Пожалуйста, введите на "+n+" символ";return r+=e(n,"","a","ов"),r+=" меньше",r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Пожалуйста, введите еще хотя бы "+n+" символ";return r+=e(n,"","a","ов"),r},loadingMore:function(){return"Загрузка данных…"},maximumSelected:function(t){var n="Вы можете выбрать не более "+t.maximum+" элемент";return n+=e(t.maximum,"","a","ов"),n},noResults:function(){return"Совпадений не найдено"},searching:function(){return"Поиск…"}}}),{define:e.define,require:e.require}})();PK���\;���))inc/lib/target-rule/i18n/km.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="សូមលុបចេញ  "+t+" អក្សរ";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="សូមបញ្ចូល"+t+" អក្សរ រឺ ច្រើនជាងនេះ";return n},loadingMore:function(){return"កំពុងទាញយកទិន្នន័យបន្ថែម..."},maximumSelected:function(e){var t="អ្នកអាចជ្រើសរើសបានតែ "+e.maximum+" ជម្រើសប៉ុណ្ណោះ";return t},noResults:function(){return"មិនមានលទ្ធផល"},searching:function(){return"កំពុងស្វែងរក..."}}}),{define:e.define,require:e.require}})();PK���\�b3���inc/lib/target-rule/i18n/fa.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها می‌توانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجه‌ای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})();PK���\~��K;;inc/lib/target-rule/i18n/en.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})();PK���\Ʌ�]]inc/lib/target-rule/i18n/uk.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/uk",[],function(){function e(e,t,n,r){return e%100>10&&e%100<15?r:e%10===1?t:e%10>1&&e%10<5?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),{define:e.define,require:e.require}})();PK���\����PPinc/lib/target-rule/i18n/ja.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})();PK���\W�}inc/lib/target-rule/i18n/sv.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})();PK���\Y���inc/lib/target-rule/i18n/fi.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{errorLoading:function(){return"Tuloksia ei saatu ladattua."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){return"Haetaan…"}}}),{define:e.define,require:e.require}})();PK���\q_*�ssinc/lib/target-rule/i18n/fr.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Supprimez "+t+" caractère"+(t>1)?"s":""},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Saisissez au moins "+t+" caractère"+(t>1)?"s":""},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){return"Vous pouvez seulement sélectionner "+e.maximum+" élément"+(e.maximum>1)?"s":""},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})();PK���\y&�inc/lib/target-rule/i18n/th.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{errorLoading:function(){return"ไม่สามารถค้นข้อมูลได้"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})();PK���\ZBͪ�inc/lib/target-rule/i18n/sr.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})();PK���\5DG���inc/lib/target-rule/i18n/sk.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sk",[],function(){var e={2:function(e){return e?"dva":"dve"},3:function(){return"tri"},4:function(){return"štyri"}};return{errorLoading:function(){return"Výsledky sa nepodarilo načítať."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadajte o jeden znak menej":n>=2&&n<=4?"Prosím, zadajte o "+e[n](!0)+" znaky menej":"Prosím, zadajte o "+n+" znakov menej"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadajte ešte jeden znak":n<=4?"Prosím, zadajte ešte ďalšie "+e[n](!0)+" znaky":"Prosím, zadajte ešte ďalších "+n+" znakov"},loadingMore:function(){return"Načítanie ďalších výsledkov…"},maximumSelected:function(t){return t.maximum==1?"Môžete zvoliť len jednu položku":t.maximum>=2&&t.maximum<=4?"Môžete zvoliť najviac "+e[t.maximum](!1)+" položky":"Môžete zvoliť najviac "+t.maximum+" položiek"},noResults:function(){return"Nenašli sa žiadne položky"},searching:function(){return"Vyhľadávanie…"}}}),{define:e.define,require:e.require}})();PK���\M�&�++#inc/lib/target-rule/i18n/sr-Cyrl.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr-Cyrl",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Преузимање није успело."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Обришите "+n+" симбол";return r+=e(n,"","а","а"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Укуцајте бар још "+n+" симбол";return r+=e(n,"","а","а"),r},loadingMore:function(){return"Преузимање још резултата…"},maximumSelected:function(t){var n="Можете изабрати само "+t.maximum+" ставк";return n+=e(t.maximum,"у","е","и"),n},noResults:function(){return"Ништа није пронађено"},searching:function(){return"Претрага…"}}}),{define:e.define,require:e.require}})();PK���\4t_�GGinc/lib/target-rule/i18n/hr.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})();PK���\�U
Qvvinc/lib/target-rule/i18n/gl.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{errorLoading:function(){return"Non foi posíbel cargar os resultados."},inputTooLong:function(e){var t=e.input.length-e.maximum;return t===1?"Elimine un carácter":"Elimine "+t+" caracteres"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t===1?"Engada un carácter":"Engada "+t+" caracteres"},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){return e.maximum===1?"Só pode seleccionar un elemento":"Só pode seleccionar "+e.maximum+" elementos"},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();PK���\^�Yllinc/lib/target-rule/i18n/it.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})();PK���\jl�Ċ�inc/lib/target-rule/i18n/bg.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})();PK���\���inc/lib/target-rule/i18n/et.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})();PK���\��T��inc/lib/target-rule/i18n/lt.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lt",[],function(){function e(e,t,n,r){return e%10===1&&(e%100<11||e%100>19)?t:e%10>=2&&e%10<=9&&(e%100<11||e%100>19)?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Pašalinkite "+n+" simbol";return r+=e(n,"į","ius","ių"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Įrašykite dar "+n+" simbol";return r+=e(n,"į","ius","ių"),r},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(t){var n="Jūs galite pasirinkti tik "+t.maximum+" element";return n+=e(t.maximum,"ą","us","ų"),n},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"}}}),{define:e.define,require:e.require}})();PK���\>�����inc/lib/target-rule/i18n/id.jsnu�[���/*! Select2 4.0.5 | https://github.com/select2/select2/blob/master/LICENSE.md */

(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})();PK���\Qz��!inc/lib/nps-survey/nps-survey.phpnu�[���<?php
/**
 * Plugin Name: NPS Survey
 * Description: It is a nps survey library.
 * Author: Brainstorm Force
 * Version: 1.0.21
 * License: GPL v2
 * Text Domain: nps-survey
 *
 * @package {{package}}
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Don't load if another instance is already loaded.
if ( defined( 'NPS_SURVEY_FILE' ) ) {
	return;
}

define( 'NPS_SURVEY_FILE', __FILE__ );
define( 'NPS_SURVEY_BASE', plugin_basename( NPS_SURVEY_FILE ) );
define( 'NPS_SURVEY_DIR', plugin_dir_path( NPS_SURVEY_FILE ) );
define( 'NPS_SURVEY_URL', plugins_url( '/', NPS_SURVEY_FILE ) );
define( 'NPS_SURVEY_VER', '1.0.21' );
require_once 'nps-survey-plugin-loader.php';
PK���\H���� inc/lib/nps-survey/changelog.txtnu�[���Version 1.0.21 - 24-03-2026
- Improvement:
  - Updated build process to add ABSPATH guards to generated .asset.php files.
  - Added README.md documenting external service usage (metrics.brainstormforce.com).

Version 1.0.20 - 20-03-2026
- Fix:
  - Updated variable names, error codes, and file loading to comply with WordPress.org plugin review guidelines.

Version 1.0.19 - 16-03-2026
- Fix:
  - Added ABSPATH guards and conditional core file loading to prevent direct file access.
  - Fixed first_name fallback not triggering when user has no first name set, now correctly falls back to display_name.
- Security:
  - Strengthen security and harden against potential vulnerabilities.

Version 1.0.18 - 12-03-2026
- Improvement:
  - Added support for late loading when `wp_loaded` has already fired, allowing consuming plugins to defer library inclusion to hooks like `current_screen` for better performance.

Version 1.0.17 - 02-03-2026
- Fix:
  - Added ABSPATH guards and conditional core file loading to prevent direct file access.

Version 1.0.16 - 20-01-2026
- Improvement:
  - Made comment field mandatory for ratings of 6 or below to ensure actionable feedback.
  - Enforced minimum feedback length of 50 characters for low ratings to prevent short or low-effort responses.

Version 1.0.15 - 11-09-2025
- New:
  - Added `privacy_policy` option with configurable link and custom content.
  - Added `popup.placement` option to customize popup position.

Version 1.0.14 - 18-08-2025
- Improvement:
  - Added `rating_min_label` and `rating_max_label` text options for customizable rating labels.

Version 1.0.13 - 18-08-2025
- Fix:
  - Fixed issue where incorrect Content-Type header caused NPS survey close and rating submission requests to fail.
- Dev:
  - Added filters to ensure compatibility with internal WP NPS Survey plugin on marketing sites.

Version 1.0.12 - 16-07-2025
- Improvement:
  - Refactored rating prompt logic to allow disabling the WordPress rating functionality, ensuring a non-discriminatory and guideline-compliant user experience.

Version 1.0.11 - 27-06-2025
- Improvement:
  - Improved core class loading to avoid duplicate declarations and ensure stability.

Version 1.0.10 - 26-06-2025
- Improvement:
  - Updated rating submission endpoint.

Version 1.0.9 - 24-06-2025
- Improvement:
  - Improved library loading conditions to prevent conflicts.

Version 1.0.8 - 18-06-2025
- Dev:
  - Updated API domain to 'https://metrics.brainstormforce.com/' for improved performance and reliability.

Version 1.0.7 - 13-01-2025
- Improvement:
  - Enhanced core loading mechanism to prevent potential plugin conflicts.
	-	Refactored codebase to adhere to core coding standards, improving overall readability and maintainability.
	-	Updated popup UI to prevent external overlapping issues, ensuring better user experience.
- New:
  - Introduced internal filters to provide flexibility in customizing rating submission data.

Version 1.0.6 - 31-12-2024
- Improvement:
  - Optimized performance by preventing unnecessary markup loading on screens where specific screen IDs are provided.
- Fix:
  - Resolved console errors that occurred during popup dismissal, ensuring smoother user interaction.

Version 1.0.5 - 19-12-2024
- New:
  - Introduced a configuration option to display pop-up on the dashboards of specific plugins.
- Improvement:
  - Enhanced mobile responsiveness of the popup.
- Fix:
  - Corrected popup positioning in RTL (Right-to-Left) layouts.
  - Resolved overlap issues between the popup and other elements in Spectra.

Version 1.0.4 - 13-12-2024  
- Improvement: Optimized file loading to prevent duplicate loads, enhancing performance.

Version 1.0.3 - 10-12-2024
- Fix: Fixed library update issue.

Version 1.0.2 - 09-12-2024
- Improvement: NPS popup will now be permanently dismissed when closed for the second time.
- Improvement: Added an option to customize the rate button text for plugins/themes.
- Fix: Resolved CSS conflicts with other plugins.

Version 1.0.1 - 20-11-2024
- New: Added filter to 'nps_survey_allowed_screens' to allow custom screens.
- New: Added filter to 'nps_survey_build_url' update build url for themes.

Version 1.0.0 - 23-09-2024
- New: Initial release.  
 
PK���\,�ơinc/lib/nps-survey/version.jsonnu�[���{
	"nps-survey": "1.0.21"
}
PK���\�J=�(�(*inc/lib/nps-survey/dist/style-main-rtl.cssnu�[���.nps-survey-root .invisible {visibility: hidden
}.nps-survey-root .fixed {position: fixed
}.nps-survey-root .absolute {position: absolute
}.nps-survey-root .relative {position: relative
}.nps-survey-root .inset-0 {inset: 0px
}.nps-survey-root .left-auto {right: auto
}.nps-survey-root .right-2 {left: 0.5rem
}.nps-survey-root .right-3 {left: 0.75rem
}.nps-survey-root .top-3 {top: 0.75rem
}.nps-survey-root .isolate {isolation: isolate
}.nps-survey-root .z-\[9999999999\] {z-index: 9999999999
}.nps-survey-root .z-\[999999999\] {z-index: 999999999
}.nps-survey-root .mx-0 {margin-right: 0px;margin-left: 0px
}.nps-survey-root .my-0 {margin-top: 0px;margin-bottom: 0px
}.nps-survey-root .mb-0 {margin-bottom: 0px
}.nps-survey-root .mt-1 {margin-top: 0.25rem
}.nps-survey-root .mt-2 {margin-top: 0.5rem
}.nps-survey-root .mt-3 {margin-top: 0.75rem
}.nps-survey-root .mt-5 {margin-top: 1.25rem
}.nps-survey-root .box-border {box-sizing: border-box
}.nps-survey-root .block {display: block
}.nps-survey-root .flex {display: flex
}.nps-survey-root .inline-flex {display: inline-flex
}.nps-survey-root .size-5 {width: 1.25rem;height: 1.25rem
}.nps-survey-root .size-6 {width: 1.5rem;height: 1.5rem
}.nps-survey-root .h-11 {height: 2.75rem
}.nps-survey-root .h-5 {height: 1.25rem
}.nps-survey-root .h-\[2\.625rem\] {height: 2.625rem
}.nps-survey-root .w-4 {width: 1rem
}.nps-survey-root .w-5 {width: 1.25rem
}.nps-survey-root .w-\[calc\(100\%-8px\)\] {width: calc(100% - 8px)
}.nps-survey-root .w-full {width: 100%
}.nps-survey-root .max-w-\[30rem\] {max-width: 30rem
}.nps-survey-root .max-w-\[36em\] {max-width: 36em
}.nps-survey-root .flex-1 {flex: 1 1 0%
}.nps-survey-root .translate-y-2\.5 {--tw-translate-y: 0.625rem;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}.nps-survey-root .transform {transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}@keyframes spin {to {transform: rotate(-360deg)
    }
}.nps-survey-root .animate-spin {animation: spin 1s linear infinite
}.nps-survey-root .cursor-not-allowed {cursor: not-allowed
}.nps-survey-root .cursor-pointer {cursor: pointer
}.nps-survey-root .cursor-progress {cursor: progress
}.nps-survey-root .resize {resize: both
}.nps-survey-root .items-center {align-items: center
}.nps-survey-root .justify-start {justify-content: flex-start
}.nps-survey-root .justify-center {justify-content: center
}.nps-survey-root .justify-between {justify-content: space-between
}.nps-survey-root .gap-2 {gap: 0.5rem
}.nps-survey-root .rounded {border-radius: 0.25rem
}.nps-survey-root .rounded-lg {border-radius: 0.5rem
}.nps-survey-root .rounded-md {border-radius: 0.375rem
}.nps-survey-root .border {border-width: 1px
}.nps-survey-root .border-0 {border-width: 0px
}.nps-survey-root .border-solid {border-style: solid
}.nps-survey-root .border-none {border-style: none
}.nps-survey-root .border-border-tertiary {--tw-border-opacity: 1;border-color: rgb(216 223 233 / var(--tw-border-opacity))
}.nps-survey-root .border-button-disabled {--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity))
}.nps-survey-root .border-nps-button-background {--tw-border-opacity: 1;border-color: rgb(34 113 177 / var(--tw-border-opacity))
}.nps-survey-root .border-red-500 {--tw-border-opacity: 1;border-color: rgb(239 68 68 / var(--tw-border-opacity))
}.nps-survey-root .border-transparent {border-color: transparent
}.nps-survey-root .border-white {--tw-border-opacity: 1;border-color: rgb(255 255 255 / var(--tw-border-opacity))
}.nps-survey-root .border-zip-body-text {--tw-border-opacity: 1;border-color: rgb(var(--zip-body-text) / var(--tw-border-opacity))
}.nps-survey-root .bg-\[\#111827BF\]\/75 {background-color: rgb(17 24 39 / 0.75)
}.nps-survey-root .bg-nps-button-background {--tw-bg-opacity: 1;background-color: rgb(34 113 177 / var(--tw-bg-opacity))
}.nps-survey-root .bg-transparent {background-color: transparent
}.nps-survey-root .bg-white {--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}.nps-survey-root .p-4 {padding: 1rem
}.nps-survey-root .px-4 {padding-right: 1rem;padding-left: 1rem
}.nps-survey-root .px-5 {padding-right: 1.25rem;padding-left: 1.25rem
}.nps-survey-root .px-6 {padding-right: 1.5rem;padding-left: 1.5rem
}.nps-survey-root .py-1\.5 {padding-top: 0.375rem;padding-bottom: 0.375rem
}.nps-survey-root .py-2 {padding-top: 0.5rem;padding-bottom: 0.5rem
}.nps-survey-root .py-3 {padding-top: 0.75rem;padding-bottom: 0.75rem
}.nps-survey-root .pl-0 {padding-right: 0px
}.nps-survey-root .pl-3 {padding-right: 0.75rem
}.nps-survey-root .pl-4 {padding-right: 1rem
}.nps-survey-root .pl-5 {padding-right: 1.25rem
}.nps-survey-root .pl-6 {padding-right: 1.5rem
}.nps-survey-root .pr-3 {padding-left: 0.75rem
}.nps-survey-root .pr-4 {padding-left: 1rem
}.nps-survey-root .pr-5 {padding-left: 1.25rem
}.nps-survey-root .pr-6 {padding-left: 1.5rem
}.nps-survey-root .text-right {text-align: left
}.nps-survey-root .text-\[\.625rem\] {font-size: .625rem
}.nps-survey-root .text-base {font-size: 1rem;line-height: 1.5rem
}.nps-survey-root .text-lg {font-size: 1.125rem;line-height: 1.75rem
}.nps-survey-root .text-sm {font-size: 0.875rem;line-height: 1.25rem
}.nps-survey-root .text-xs {font-size: 0.75rem;line-height: 1rem
}.nps-survey-root .font-bold {font-weight: 700
}.nps-survey-root .font-medium {font-weight: 500
}.nps-survey-root .font-normal {font-weight: 400
}.nps-survey-root .font-semibold {font-weight: 600
}.nps-survey-root .leading-5 {line-height: 1.25rem
}.nps-survey-root .leading-6 {line-height: 1.5rem
}.nps-survey-root .leading-7 {line-height: 1.75rem
}.nps-survey-root .leading-normal {line-height: 1.5
}.nps-survey-root .text-border-secondary {--tw-text-opacity: 1;color: rgb(107 114 128 / var(--tw-text-opacity))
}.nps-survey-root .text-gray-400 {--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity))
}.nps-survey-root .text-gray-500 {--tw-text-opacity: 1;color: rgb(107 114 128 / var(--tw-text-opacity))
}.nps-survey-root .text-inherit {color: inherit
}.nps-survey-root .text-nps-button-background {--tw-text-opacity: 1;color: rgb(34 113 177 / var(--tw-text-opacity))
}.nps-survey-root .text-red-600 {--tw-text-opacity: 1;color: rgb(220 38 38 / var(--tw-text-opacity))
}.nps-survey-root .text-secondary-text {--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity))
}.nps-survey-root .text-white {--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity))
}.nps-survey-root .text-zip-app-heading {--tw-text-opacity: 1;color: rgb(var(--zip-app-heading) / var(--tw-text-opacity))
}.nps-survey-root .text-zip-app-inactive-icon {--tw-text-opacity: 1;color: rgb(var(--zip-app-inactive-icon) / var(--tw-text-opacity))
}.nps-survey-root .text-zip-body-text {--tw-text-opacity: 1;color: rgb(var(--zip-body-text) / var(--tw-text-opacity))
}.nps-survey-root .underline {text-decoration-line: underline
}.nps-survey-root .no-underline {text-decoration-line: none
}.nps-survey-root .opacity-25 {opacity: 0.25
}.nps-survey-root .opacity-50 {opacity: 0.5
}.nps-survey-root .opacity-70 {opacity: 0.7
}.nps-survey-root .opacity-75 {opacity: 0.75
}.nps-survey-root .shadow-lg {--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}.nps-survey-root .shadow-sm {--tw-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);--tw-shadow-colored: 0px 1px 2px 0px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}.nps-survey-root .transition {transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms
}.nps-survey-root .transition-colors {transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms
}.nps-survey-root .duration-150 {transition-duration: 150ms
}.nps-survey-root .ease-in-out {transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}.nps-survey-root {font-size: 1rem;line-height: 1.5rem
}.nps-survey-root * {box-sizing: border-box;font-family: Figtree, sans-serif
}.nps-survey-root .hover\:cursor-pointer:hover {cursor: pointer
}.nps-survey-root .hover\:bg-gray-50:hover {--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity))
}.nps-survey-root .hover\:text-white:hover {--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity))
}.nps-survey-root .focus\:z-10:focus {z-index: 10
}.nps-survey-root .focus\:shadow-none:focus {--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}.nps-survey-root .focus\:ring-1:focus {--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}.nps-survey-root .focus\:ring-nps-button-background:focus {--tw-ring-opacity: 1;--tw-ring-color: rgb(34 113 177 / var(--tw-ring-opacity))
}.nps-survey-root .focus\:ring-red-500:focus {--tw-ring-opacity: 1;--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity))
}.nps-survey-root .focus-visible\:outline:focus-visible {outline-style: solid
}.nps-survey-root .focus-visible\:outline-2:focus-visible {outline-width: 2px
}.nps-survey-root .focus-visible\:outline-offset-2:focus-visible {outline-offset: 2px
}@media (min-width: 512px) {.nps-survey-root .xs\:w-full {width: 100%
    }
}@media (min-width: 640px) {.nps-survey-root .sm\:p-5 {padding: 1.25rem
    }.nps-survey-root .sm\:text-sm {font-size: 0.875rem;line-height: 1.25rem
    }.nps-survey-root .sm\:leading-6 {line-height: 1.5rem
    }
}
PK���\�Z���&inc/lib/nps-survey/dist/main.asset.phpnu�[���<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
return array('dependencies' => array('react', 'wp-api-fetch', 'wp-element', 'wp-i18n'), 'version' => '3bf0d82f8476657f8546');
PK���\�cZ��inc/lib/nps-survey/dist/main.jsnu�[���(()=>{"use strict";var e,t={45(e,t,r){var n=r(609);const o=window.wp.element,a=e=>{let t;const r=new Set,n=(e,n)=>{const o="function"==typeof e?e(t):e;if(!Object.is(o,t)){const e=t;t=(null!=n?n:"object"!=typeof o||null===o)?o:Object.assign({},t,o),r.forEach((r=>r(t,e)))}},o=()=>t,a={setState:n,getState:o,getInitialState:()=>s,subscribe:e=>(r.add(e),()=>r.delete(e)),destroy:()=>{console.warn("[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."),r.clear()}},s=t=e(n,o,a);return a};var s=r(79);const{useDebugValue:l}=n,{useSyncExternalStoreWithSelector:i}=s;let c=!1;const d=e=>e,u=e=>{"function"!=typeof e&&console.warn("[DEPRECATED] Passing a vanilla store will be unsupported in a future version. Instead use `import { useStore } from 'zustand'`.");const t="function"==typeof e?(e=>e?a(e):a)(e):e,r=(e,r)=>function(e,t=d,r){r&&!c&&(console.warn("[DEPRECATED] Use `createWithEqualityFn` instead of `create` or use `useStoreWithEqualityFn` instead of `useStore`. They can be imported from 'zustand/traditional'. https://github.com/pmndrs/zustand/discussions/1937"),c=!0);const n=i(e.subscribe,e.getState,e.getServerState||e.getInitialState,t,r);return l(n),n}(t,e,r);return Object.assign(r,t),r},p="SET_CURRENT_STEP",m="SET_NPS_RATING",b="SET_SHOW_NPS",f=document.querySelectorAll('[data-id^="nps-survey-"]'),g={};Array.from(f).forEach((e=>{const t=JSON.parse(e.getAttribute("data-vars"));t.npsId=e.dataset.id,g[t.npsId]={showNps:t?.show_if,currentStep:"plugin-rating"===t?.nps_status?.dismiss_step?"plugin-rating":"nps-rating",npsRating:null,npsId:t.npsId}}));const h=(G=(e,{type:t,payload:r,npsId:n})=>{switch(t){case b:return{...e,[n]:{...e[n],showNps:r}};case p:return{...e,[n]:{...e[n],currentStep:r}};case m:return{...e,[n]:{...e[n],npsRating:r}};default:return e}},M=g,(R=(e,t,r)=>(r.dispatch=t=>(e((e=>G(e,t)),!1,t),t),r.dispatchFromDevtools=!0,{dispatch:(...e)=>r.dispatch(...e),...M}))?u(R):u),y=({children:e})=>(0,n.createElement)("p",{className:"mt-1 mx-0 mb-0 text-base leading-6 font-normal text-zip-body-text"},e),v=({children:e})=>(0,n.createElement)("h3",{className:"my-0 text-lg font-bold leading-7 text-zip-app-heading"},e),x=window.wp.i18n,w=function(e){const{allow_review:t=!1,message:{logo:r,plugin_name:a,nps_rating_title:s,nps_rating_message:l,rating_min_label:i,rating_max_label:c},npsId:d}=e,{dispatch:u}=h(),p=Array.from({length:10},((e,t)=>t+1)),[m,b]=(0,o.useState)(null);return(0,n.createElement)("div",null,(0,n.createElement)("div",{className:"flex items-center justify-start gap-2"},(0,n.createElement)("img",{className:"size-6",src:r,alt:"Brand Logo"}),(0,n.createElement)(v,null,s||a)),(0,n.createElement)(y,null,l.replaceAll("#pluginname",a)),(0,n.createElement)("div",{className:"mt-5"},(0,n.createElement)("span",{className:"isolate inline-flex gap-2 w-full"},p.map((e=>(0,n.createElement)("button",{type:"button",key:e,onClick:()=>async function(e){null===m&&(b(e),u({npsId:d,type:"SET_NPS_RATING",payload:e}),u(t&&e>=8?{npsId:d,type:"SET_CURRENT_STEP",payload:"plugin-rating"}:{npsId:d,type:"SET_CURRENT_STEP",payload:"comment"}))}(e),className:"relative flex-1 inline-flex items-center justify-center bg-white py-1.5 text-sm font-medium text-nps-button-text hover:bg-gray-50 focus:z-10 border border-solid border-button-disabled rounded-md transition-colors ease-in-out duration-150 hover:cursor-pointer"},e))))),(0,n.createElement)("div",{className:"mt-3 flex items-center justify-between"},(0,n.createElement)("span",{className:"text-secondary-text text-xs font-medium leading-5"},i||(0,x.__)("Very unlikely","nps-survey")),(0,n.createElement)("span",{className:"text-secondary-text text-xs font-medium leading-5"},c||(0,x.__)("Very likely","nps-survey"))))},E=e=>{const t=N(e),{conflictingClassGroups:r,conflictingClassGroupModifiers:n}=e;return{getClassGroupId:e=>{const r=e.split("-");return""===r[0]&&1!==r.length&&r.shift(),_(r,t)||S(e)},getConflictingClassGroupIds:(e,t)=>{const o=r[e]||[];return t&&n[e]?[...o,...n[e]]:o}}},_=(e,t)=>{if(0===e.length)return t.classGroupId;const r=e[0],n=t.nextPart.get(r),o=n?_(e.slice(1),n):void 0;if(o)return o;if(0===t.validators.length)return;const a=e.join("-");return t.validators.find((({validator:e})=>e(a)))?.classGroupId},k=/^\[(.+)\]$/,S=e=>{if(k.test(e)){const t=k.exec(e)[1],r=t?.substring(0,t.indexOf(":"));if(r)return"arbitrary.."+r}},N=e=>{const{theme:t,prefix:r}=e,n={nextPart:new Map,validators:[]};return j(Object.entries(e.classGroups),r).forEach((([e,r])=>{z(r,n,e,t)})),n},z=(e,t,r,n)=>{e.forEach((e=>{if("string"!=typeof e){if("function"==typeof e)return C(e)?void z(e(n),t,r,n):void t.validators.push({validator:e,classGroupId:r});Object.entries(e).forEach((([e,o])=>{z(o,I(t,e),r,n)}))}else(""===e?t:I(t,e)).classGroupId=r}))},I=(e,t)=>{let r=e;return t.split("-").forEach((e=>{r.nextPart.has(e)||r.nextPart.set(e,{nextPart:new Map,validators:[]}),r=r.nextPart.get(e)})),r},C=e=>e.isThemeGetter,j=(e,t)=>t?e.map((([e,r])=>[e,r.map((e=>"string"==typeof e?t+e:"object"==typeof e?Object.fromEntries(Object.entries(e).map((([e,r])=>[t+e,r]))):e))])):e,P=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,r=new Map,n=new Map;const o=(o,a)=>{r.set(o,a),t++,t>e&&(t=0,n=r,r=new Map)};return{get(e){let t=r.get(e);return void 0!==t?t:void 0!==(t=n.get(e))?(o(e,t),t):void 0},set(e,t){r.has(e)?r.set(e,t):o(e,t)}}},T=e=>{const{separator:t,experimentalParseClassName:r}=e,n=1===t.length,o=t[0],a=t.length,s=e=>{const r=[];let s,l=0,i=0;for(let c=0;c<e.length;c++){let d=e[c];if(0===l){if(d===o&&(n||e.slice(c,c+a)===t)){r.push(e.slice(i,c)),i=c+a;continue}if("/"===d){s=c;continue}}"["===d?l++:"]"===d&&l--}const c=0===r.length?e:e.substring(i),d=c.startsWith("!");return{modifiers:r,hasImportantModifier:d,baseClassName:d?c.substring(1):c,maybePostfixModifierPosition:s&&s>i?s-i:void 0}};return r?e=>r({className:e,parseClassName:s}):s},O=e=>{if(e.length<=1)return e;const t=[];let r=[];return e.forEach((e=>{"["===e[0]?(t.push(...r.sort(),e),r=[]):r.push(e)})),t.push(...r.sort()),t};var R,G,M;function A(){let e,t,r=0,n="";for(;r<arguments.length;)(e=arguments[r++])&&(t=W(e))&&(n&&(n+=" "),n+=t);return n}const W=e=>{if("string"==typeof e)return e;let t,r="";for(let n=0;n<e.length;n++)e[n]&&(t=W(e[n]))&&(r&&(r+=" "),r+=t);return r};function D(e,...t){let r,n,o,a=function(l){const i=t.reduce(((e,t)=>t(e)),e());return r=(e=>({cache:P(e.cacheSize),parseClassName:T(e),...E(e)}))(i),n=r.cache.get,o=r.cache.set,a=s,s(l)};function s(e){const t=n(e);if(t)return t;const a=((e,t)=>{const{parseClassName:r,getClassGroupId:n,getConflictingClassGroupIds:o}=t,a=[];let s="";for(let t=e.length-1;t>=0;){for(;" "===e[t];)--t;const l=e.lastIndexOf(" ",t),i=e.slice(-1===l?0:l+1,t+1);t=l;const{modifiers:c,hasImportantModifier:d,baseClassName:u,maybePostfixModifierPosition:p}=r(i);let m=Boolean(p),b=n(m?u.substring(0,p):u);if(!b){if(!m){s=i+(s.length>0?" "+s:s);continue}if(b=n(u),!b){s=i+(s.length>0?" "+s:s);continue}m=!1}const f=O(c).join(":"),g=d?f+"!":f,h=g+b;if(a.includes(h))continue;a.push(h);const y=o(b,m);for(let e=0;e<y.length;++e){const t=y[e];a.push(g+t)}s=i+(s.length>0?" "+s:s)}return s})(e,r);return o(e,a),a}return function(){return a(A.apply(null,arguments))}}const B=e=>{const t=t=>t[e]||[];return t.isThemeGetter=!0,t},L=/^\[(?:([a-z-]+):)?(.+)\]$/i,V=/^\d+\/\d+$/,$=new Set(["px","full","screen"]),q=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,H=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,F=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/,U=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,X=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,J=e=>K(e)||$.has(e)||V.test(e),Z=e=>de(e,"length",ue),K=e=>Boolean(e)&&!Number.isNaN(Number(e)),Q=e=>de(e,"number",K),Y=e=>Boolean(e)&&Number.isInteger(Number(e)),ee=e=>e.endsWith("%")&&K(e.slice(0,-1)),te=e=>L.test(e),re=e=>q.test(e),ne=new Set(["length","size","percentage"]),oe=e=>de(e,ne,pe),ae=e=>de(e,"position",pe),se=new Set(["image","url"]),le=e=>de(e,se,be),ie=e=>de(e,"",me),ce=()=>!0,de=(e,t,r)=>{const n=L.exec(e);return!!n&&(n[1]?"string"==typeof t?n[1]===t:t.has(n[1]):r(n[2]))},ue=e=>H.test(e)&&!F.test(e),pe=()=>!1,me=e=>U.test(e),be=e=>X.test(e),fe=D((Symbol.toStringTag,()=>{const e=B("colors"),t=B("spacing"),r=B("blur"),n=B("brightness"),o=B("borderColor"),a=B("borderRadius"),s=B("borderSpacing"),l=B("borderWidth"),i=B("contrast"),c=B("grayscale"),d=B("hueRotate"),u=B("invert"),p=B("gap"),m=B("gradientColorStops"),b=B("gradientColorStopPositions"),f=B("inset"),g=B("margin"),h=B("opacity"),y=B("padding"),v=B("saturate"),x=B("scale"),w=B("sepia"),E=B("skew"),_=B("space"),k=B("translate"),S=()=>["auto",te,t],N=()=>[te,t],z=()=>["",J,Z],I=()=>["auto",K,te],C=()=>["","0",te],j=()=>[K,te];return{cacheSize:500,separator:":",theme:{colors:[ce],spacing:[J,Z],blur:["none","",re,te],brightness:j(),borderColor:[e],borderRadius:["none","","full",re,te],borderSpacing:N(),borderWidth:z(),contrast:j(),grayscale:C(),hueRotate:j(),invert:C(),gap:N(),gradientColorStops:[e],gradientColorStopPositions:[ee,Z],inset:S(),margin:S(),opacity:j(),padding:N(),saturate:j(),scale:j(),sepia:C(),skew:j(),space:N(),translate:N()},classGroups:{aspect:[{aspect:["auto","square","video",te]}],container:["container"],columns:[{columns:[re]}],"break-after":[{"break-after":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-before":[{"break-before":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",te]}],overflow:[{overflow:["auto","hidden","clip","visible","scroll"]}],"overflow-x":[{"overflow-x":["auto","hidden","clip","visible","scroll"]}],"overflow-y":[{"overflow-y":["auto","hidden","clip","visible","scroll"]}],overscroll:[{overscroll:["auto","contain","none"]}],"overscroll-x":[{"overscroll-x":["auto","contain","none"]}],"overscroll-y":[{"overscroll-y":["auto","contain","none"]}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:[f]}],"inset-x":[{"inset-x":[f]}],"inset-y":[{"inset-y":[f]}],start:[{start:[f]}],end:[{end:[f]}],top:[{top:[f]}],right:[{right:[f]}],bottom:[{bottom:[f]}],left:[{left:[f]}],visibility:["visible","invisible","collapse"],z:[{z:["auto",Y,te]}],basis:[{basis:S()}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["wrap","wrap-reverse","nowrap"]}],flex:[{flex:["1","auto","initial","none",te]}],grow:[{grow:C()}],shrink:[{shrink:C()}],order:[{order:["first","last","none",Y,te]}],"grid-cols":[{"grid-cols":[ce]}],"col-start-end":[{col:["auto",{span:["full",Y,te]},te]}],"col-start":[{"col-start":I()}],"col-end":[{"col-end":I()}],"grid-rows":[{"grid-rows":[ce]}],"row-start-end":[{row:["auto",{span:[Y,te]},te]}],"row-start":[{"row-start":I()}],"row-end":[{"row-end":I()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":["auto","min","max","fr",te]}],"auto-rows":[{"auto-rows":["auto","min","max","fr",te]}],gap:[{gap:[p]}],"gap-x":[{"gap-x":[p]}],"gap-y":[{"gap-y":[p]}],"justify-content":[{justify:["normal","start","end","center","between","around","evenly","stretch"]}],"justify-items":[{"justify-items":["start","end","center","stretch"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch"]}],"align-content":[{content:["normal","start","end","center","between","around","evenly","stretch","baseline"]}],"align-items":[{items:["start","end","center","baseline","stretch"]}],"align-self":[{self:["auto","start","end","center","stretch","baseline"]}],"place-content":[{"place-content":["start","end","center","between","around","evenly","stretch","baseline"]}],"place-items":[{"place-items":["start","end","center","baseline","stretch"]}],"place-self":[{"place-self":["auto","start","end","center","stretch"]}],p:[{p:[y]}],px:[{px:[y]}],py:[{py:[y]}],ps:[{ps:[y]}],pe:[{pe:[y]}],pt:[{pt:[y]}],pr:[{pr:[y]}],pb:[{pb:[y]}],pl:[{pl:[y]}],m:[{m:[g]}],mx:[{mx:[g]}],my:[{my:[g]}],ms:[{ms:[g]}],me:[{me:[g]}],mt:[{mt:[g]}],mr:[{mr:[g]}],mb:[{mb:[g]}],ml:[{ml:[g]}],"space-x":[{"space-x":[_]}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":[_]}],"space-y-reverse":["space-y-reverse"],w:[{w:["auto","min","max","fit","svw","lvw","dvw",te,t]}],"min-w":[{"min-w":[te,t,"min","max","fit"]}],"max-w":[{"max-w":[te,t,"none","full","min","max","fit","prose",{screen:[re]},re]}],h:[{h:[te,t,"auto","min","max","fit","svh","lvh","dvh"]}],"min-h":[{"min-h":[te,t,"min","max","fit","svh","lvh","dvh"]}],"max-h":[{"max-h":[te,t,"min","max","fit","svh","lvh","dvh"]}],size:[{size:[te,t,"auto","min","max","fit"]}],"font-size":[{text:["base",re,Z]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:["thin","extralight","light","normal","medium","semibold","bold","extrabold","black",Q]}],"font-family":[{font:[ce]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractons"],tracking:[{tracking:["tighter","tight","normal","wide","wider","widest",te]}],"line-clamp":[{"line-clamp":["none",K,Q]}],leading:[{leading:["none","tight","snug","normal","relaxed","loose",J,te]}],"list-image":[{"list-image":["none",te]}],"list-style-type":[{list:["none","disc","decimal",te]}],"list-style-position":[{list:["inside","outside"]}],"placeholder-color":[{placeholder:[e]}],"placeholder-opacity":[{"placeholder-opacity":[h]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"text-color":[{text:[e]}],"text-opacity":[{"text-opacity":[h]}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","none","wavy"]}],"text-decoration-thickness":[{decoration:["auto","from-font",J,Z]}],"underline-offset":[{"underline-offset":["auto",J,te]}],"text-decoration-color":[{decoration:[e]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:N()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",te]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",te]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-opacity":[{"bg-opacity":[h]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",ae]}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","round","space"]}]}],"bg-size":[{bg:["auto","cover","contain",oe]}],"bg-image":[{bg:["none",{"gradient-to":["t","tr","r","br","b","bl","l","tl"]},le]}],"bg-color":[{bg:[e]}],"gradient-from-pos":[{from:[b]}],"gradient-via-pos":[{via:[b]}],"gradient-to-pos":[{to:[b]}],"gradient-from":[{from:[m]}],"gradient-via":[{via:[m]}],"gradient-to":[{to:[m]}],rounded:[{rounded:[a]}],"rounded-s":[{"rounded-s":[a]}],"rounded-e":[{"rounded-e":[a]}],"rounded-t":[{"rounded-t":[a]}],"rounded-r":[{"rounded-r":[a]}],"rounded-b":[{"rounded-b":[a]}],"rounded-l":[{"rounded-l":[a]}],"rounded-ss":[{"rounded-ss":[a]}],"rounded-se":[{"rounded-se":[a]}],"rounded-ee":[{"rounded-ee":[a]}],"rounded-es":[{"rounded-es":[a]}],"rounded-tl":[{"rounded-tl":[a]}],"rounded-tr":[{"rounded-tr":[a]}],"rounded-br":[{"rounded-br":[a]}],"rounded-bl":[{"rounded-bl":[a]}],"border-w":[{border:[l]}],"border-w-x":[{"border-x":[l]}],"border-w-y":[{"border-y":[l]}],"border-w-s":[{"border-s":[l]}],"border-w-e":[{"border-e":[l]}],"border-w-t":[{"border-t":[l]}],"border-w-r":[{"border-r":[l]}],"border-w-b":[{"border-b":[l]}],"border-w-l":[{"border-l":[l]}],"border-opacity":[{"border-opacity":[h]}],"border-style":[{border:["solid","dashed","dotted","double","none","hidden"]}],"divide-x":[{"divide-x":[l]}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":[l]}],"divide-y-reverse":["divide-y-reverse"],"divide-opacity":[{"divide-opacity":[h]}],"divide-style":[{divide:["solid","dashed","dotted","double","none"]}],"border-color":[{border:[o]}],"border-color-x":[{"border-x":[o]}],"border-color-y":[{"border-y":[o]}],"border-color-t":[{"border-t":[o]}],"border-color-r":[{"border-r":[o]}],"border-color-b":[{"border-b":[o]}],"border-color-l":[{"border-l":[o]}],"divide-color":[{divide:[o]}],"outline-style":[{outline:["","solid","dashed","dotted","double","none"]}],"outline-offset":[{"outline-offset":[J,te]}],"outline-w":[{outline:[J,Z]}],"outline-color":[{outline:[e]}],"ring-w":[{ring:z()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:[e]}],"ring-opacity":[{"ring-opacity":[h]}],"ring-offset-w":[{"ring-offset":[J,Z]}],"ring-offset-color":[{"ring-offset":[e]}],shadow:[{shadow:["","inner","none",re,ie]}],"shadow-color":[{shadow:[ce]}],opacity:[{opacity:[h]}],"mix-blend":[{"mix-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity","plus-lighter","plus-darker"]}],"bg-blend":[{"bg-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]}],filter:[{filter:["","none"]}],blur:[{blur:[r]}],brightness:[{brightness:[n]}],contrast:[{contrast:[i]}],"drop-shadow":[{"drop-shadow":["","none",re,te]}],grayscale:[{grayscale:[c]}],"hue-rotate":[{"hue-rotate":[d]}],invert:[{invert:[u]}],saturate:[{saturate:[v]}],sepia:[{sepia:[w]}],"backdrop-filter":[{"backdrop-filter":["","none"]}],"backdrop-blur":[{"backdrop-blur":[r]}],"backdrop-brightness":[{"backdrop-brightness":[n]}],"backdrop-contrast":[{"backdrop-contrast":[i]}],"backdrop-grayscale":[{"backdrop-grayscale":[c]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[d]}],"backdrop-invert":[{"backdrop-invert":[u]}],"backdrop-opacity":[{"backdrop-opacity":[h]}],"backdrop-saturate":[{"backdrop-saturate":[v]}],"backdrop-sepia":[{"backdrop-sepia":[w]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":[s]}],"border-spacing-x":[{"border-spacing-x":[s]}],"border-spacing-y":[{"border-spacing-y":[s]}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["none","all","","colors","opacity","shadow","transform",te]}],duration:[{duration:j()}],ease:[{ease:["linear","in","out","in-out",te]}],delay:[{delay:j()}],animate:[{animate:["none","spin","ping","pulse","bounce",te]}],transform:[{transform:["","gpu","none"]}],scale:[{scale:[x]}],"scale-x":[{"scale-x":[x]}],"scale-y":[{"scale-y":[x]}],rotate:[{rotate:[Y,te]}],"translate-x":[{"translate-x":[k]}],"translate-y":[{"translate-y":[k]}],"skew-x":[{"skew-x":[E]}],"skew-y":[{"skew-y":[E]}],"transform-origin":[{origin:["center","top","top-right","right","bottom-right","bottom","bottom-left","left","top-left",te]}],accent:[{accent:["auto",e]}],appearance:[{appearance:["none","auto"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",te]}],"caret-color":[{caret:[e]}],"pointer-events":[{"pointer-events":["none","auto"]}],resize:[{resize:["none","y","x",""]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":N()}],"scroll-mx":[{"scroll-mx":N()}],"scroll-my":[{"scroll-my":N()}],"scroll-ms":[{"scroll-ms":N()}],"scroll-me":[{"scroll-me":N()}],"scroll-mt":[{"scroll-mt":N()}],"scroll-mr":[{"scroll-mr":N()}],"scroll-mb":[{"scroll-mb":N()}],"scroll-ml":[{"scroll-ml":N()}],"scroll-p":[{"scroll-p":N()}],"scroll-px":[{"scroll-px":N()}],"scroll-py":[{"scroll-py":N()}],"scroll-ps":[{"scroll-ps":N()}],"scroll-pe":[{"scroll-pe":N()}],"scroll-pt":[{"scroll-pt":N()}],"scroll-pr":[{"scroll-pr":N()}],"scroll-pb":[{"scroll-pb":N()}],"scroll-pl":[{"scroll-pl":N()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",te]}],fill:[{fill:[e,"none"]}],"stroke-w":[{stroke:[J,Z,Q]}],stroke:[{stroke:[e,"none"]}],sr:["sr-only","not-sr-only"],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]}}}));function ge(e){var t,r,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(r=ge(e[t]))&&(n&&(n+=" "),n+=r)}else for(r in e)e[r]&&(n&&(n+=" "),n+=r);return n}const he=window.wp.apiFetch;var ye=r.n(he);const ve=(...e)=>fe(function(){for(var e,t,r=0,n="",o=arguments.length;r<o;r++)(e=arguments[r])&&(t=ge(e))&&(n&&(n+=" "),n+=t);return n}(e)),xe=async function(e,t,r,n,o){try{(await ye()({path:"/nps-survey/v1/dismiss-nps-survey",method:"POST",headers:{"X-WP-Nonce":nps_survey_data.rest_api_nonce,"Content-Type":"application/json"},data:{nps_id:e,plugin_slug:o,current_step:r,dismiss_timespan:n}})).success&&(console.info("NPS Survey dismissed!"),t({npsId:e,type:"SET_SHOW_NPS",payload:!1}))}catch(e){console.error(e)}},we=async function(e,t,r,n,o,a,s){try{a(!0),(await ye()({path:"nps-survey/v1/rating",method:"POST",headers:{"X-WP-Nonce":nps_survey_data.rest_api_nonce,"Content-Type":"application/json"},data:{nps_id:e,plugin_slug:s,rating:t,comment:r}})).success&&(""===n&&o({npsId:e,type:"SET_SHOW_NPS",payload:!1}),o({npsId:e,type:"SET_CURRENT_STEP",payload:n})),a(!1)}catch(e){console.error(e)}},Ee=(e,t,r,n)=>{t.preventDefault(),n||r({npsId:e,type:"SET_CURRENT_STEP",payload:"nps-rating"})},_e=(0,o.forwardRef)((({variant:e="primary",hasSuffixIcon:t=!1,hasPrefixIcon:r=!1,type:o="button",className:a,onClick:s,children:l,disabled:i=!1,id:c="",size:d="medium",...u},p)=>{const m={base:{default:"px-6 py-3",hasPrefixIcon:"pl-4 pr-6 py-3",hasSuffixIcon:"pl-6 pr-4 py-3"},medium:{default:"px-4 py-3 h-11",hasPrefixIcon:"pl-4 pr-6 py-3",hasSuffixIcon:"pl-6 pr-4 py-3"},small:{default:"px-5 py-2 h-[2.625rem]",hasPrefixIcon:"pl-3 pr-5 py-2 h-[2.625rem]",hasSuffixIcon:"pl-5 pr-3 py-2 h-[2.625rem]"}};return(0,n.createElement)("button",{type:o,className:ve("group flex items-center justify-center gap-2 rounded-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 transition duration-150 ease-in-out cursor-pointer border-0",{primary:"text-white bg-nps-button-background border border-solid border-nps-button-background",secondary:"text-zip-body-text bg-white border border-solid border-zip-body-text",dark:"text-white border border-white bg-transparent border-solid",link:"text-border-secondary underline border-0 bg-transparent",blank:"bg-transparent border-transparent"}[e],!r&&!t&&m[d].default,r&&m[d].hasPrefixIcon,t&&m[d].hasSuffixIcon,{base:"text-base font-medium",medium:"text-base font-medium",small:"text-sm font-medium"}[d],{base:"rounded-md",medium:"rounded-md",small:"rounded"}[d],i&&"cursor-not-allowed opacity-70",a),onClick:e=>{s&&"function"==typeof s&&s(e)},ref:p,disabled:i,...c&&{id:c},...u},l)})),ke=({className:e=""})=>(0,n.createElement)("svg",{className:ve("animate-spin size-5 text-white",e),xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,n.createElement)("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),(0,n.createElement)("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"}));function Se({title:e,titleId:t,...r},o){return n.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon",ref:o,"aria-labelledby":t},r),e?n.createElement("title",{id:t},e):null,n.createElement("path",{fillRule:"evenodd",d:"M17 10a.75.75 0 0 1-.75.75H5.612l4.158 3.96a.75.75 0 1 1-1.04 1.08l-5.5-5.25a.75.75 0 0 1 0-1.08l5.5-5.25a.75.75 0 1 1 1.04 1.08L5.612 9.25H16.25A.75.75 0 0 1 17 10Z",clipRule:"evenodd"}))}const Ne=n.forwardRef(Se),ze=function(e){const{message:{feedback_title:t,feedback_content:r,plugin_rating_title:a,plugin_rating_content:s},plugin_slug:l,privacy_policy:i={disable:!1,url:null},npsId:c}=e,[d,u]=(0,o.useState)(""),p=h((e=>e)),{npsRating:m}=p[c],[b,f]=(0,o.useState)(!1),[g,w]=(0,o.useState)(!1),{dispatch:E}=h(),_=m>=8,k=(0,x.__)("Privacy Policy","nps-survey"),S=m<=6,N=d.trim().length;return(0,n.createElement)("div",null,(0,n.createElement)("div",{className:"flex justify-between"},(0,n.createElement)(v,null,_?t:a)),(0,n.createElement)(y,null,_?r:s),(0,n.createElement)("div",{className:"mt-5"},(0,n.createElement)("form",{onSubmit:async function(e){e.preventDefault(),b||(m<=6&&d.trim().length<50?w(!0):we(c,m,d,"",E,f,l))}},(0,n.createElement)("div",{className:"mt-2"},(0,n.createElement)("textarea",{rows:6,cols:65,name:"comment",id:"comment",className:ve("block w-full rounded-md py-1.5 text-zip-body-text shadow-sm border border-solid placeholder:text-nps-placeholder-text focus:ring-1 focus:ring-nps-button-background sm:text-sm sm:leading-6",g?"border-red-500 focus:ring-red-500":"border-border-nps-primary"),value:d,onChange:e=>{u(e.target.value),g&&w(!e.target.value)},"aria-required":S,"aria-invalid":g}),g&&S&&(0,n.createElement)("p",{className:"mt-1 text-sm text-red-600"},(0,x.__)("Please share at least 50 characters so we can better understand what needs improvement and make things better for you and other users.","nps-survey")),S&&!g&&N>0&&N<50&&(0,n.createElement)("p",{className:"mt-1 text-sm text-gray-500"},N," / ",50," ",(0,x.__)("characters (minimum)","nps-survey"))),(0,n.createElement)("div",{className:"mt-3 flex justify-between"},(0,n.createElement)(_e,{className:"relative border-none py-2 px-4 pl-0 font-semibold bg-transparent text-nps-button-background",variant:"primary",onClick:e=>Ee(c,e,E,b),size:"small"},(0,n.createElement)(Ne,{className:"w-4"}),(0,x.__)("Back","nps-survey")),(0,n.createElement)(_e,{className:"relative py-2 px-4 font-semibold hover:text-white",variant:"primary",type:"submit",size:"small"},b&&(0,n.createElement)("span",{className:"absolute inset-0 inline-flex items-center justify-center"},(0,n.createElement)(ke,null)),(0,n.createElement)("span",{className:ve(b&&"invisible")},(0,x.__)("Submit","nps-survey")))),!i?.disable&&(0,n.createElement)("div",{className:"mt-1 translate-y-2.5 text-[.625rem] leading-normal text-gray-400 text-right",dangerouslySetInnerHTML:{__html:i?.custom||(0,x.sprintf)(
// translators: %s: `Privacy Policy` text with link
// translators: %s: `Privacy Policy` text with link
(0,x.__)("By submitting, you agree to our %s","nps-survey"),i?.url?`<a href="${i?.url}" target="_blank" rel="noopener noreferrer" class="text-inherit underline focus:shadow-none">${k}</a>`:k)}}))))},Ie=function(e){const{message:{feedback_title:t,feedback_content:r,plugin_rating_link:o,plugin_rating_button_string:a},dismiss_timespan:s,plugin_slug:l,npsId:i}=e,c=h((e=>e)),{currentStep:d,npsRating:u}=c[i],[p,m]=(0,n.useState)(!1),{dispatch:b}=h(),f=async function(e=!0){we(i,u,"","plugin-rating",b,m,l),xe(i,b,d,s,l),e&&window.open(o,"_blank")};return(0,n.createElement)("div",{className:ve(p&&"opacity-50 cursor-progress")},(0,n.createElement)("div",{className:"flex justify-between"},(0,n.createElement)(v,null,t)),(0,n.createElement)(y,null,r),(0,n.createElement)("div",{className:"flex justify-between mt-5"},(0,n.createElement)(_e,{className:"relative border-none py-2 px-4 pl-0 font-semibold bg-transparent text-nps-button-background",variant:"primary",onClick:e=>Ee(i,e,b),size:"small"},(0,n.createElement)(Ne,{className:"w-4"}),(0,x.__)("Back","nps-survey")),(0,n.createElement)("div",{className:"flex justify-start"},(0,n.createElement)(_e,{variant:"link",className:"py-2 px-4 no-underline font-normal",type:"button",onClick:()=>f(!1),size:"small"},(0,x.__)("I already did!","nps-survey")),(0,n.createElement)(_e,{variant:"primary",className:"py-2 px-4 font-semibold hover:text-white",type:"button",onClick:f,size:"small"},a||(0,x.__)("Rate the Plugin","nps-survey")))))};function Ce({title:e,titleId:t,...r},o){return n.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon",ref:o,"aria-labelledby":t},r),e?n.createElement("title",{id:t},e):null,n.createElement("path",{d:"M6.28 5.22a.75.75 0 0 0-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 1 0 1.06 1.06L10 11.06l3.72 3.72a.75.75 0 1 0 1.06-1.06L11.06 10l3.72-3.72a.75.75 0 0 0-1.06-1.06L10 8.94 6.28 5.22Z"}))}const je=n.forwardRef(Ce),Pe=()=>{const e=window.innerWidth,t={xs:512,sm:640,md:768,lg:1024,xl:1280,"2xl":1536};for(const r in t)if(e<=t[r])return r},Te=e=>{const{plugin_slug:t,dismiss_timespan:r,npsId:o,popup:a={placement:"bottom-right"},show_overlay:s=!1}=e,l=h((e=>e)),{dispatch:i}=h(),{showNps:c,currentStep:d,npsRating:u}=l[o],[p,m]=(0,n.useState)(!1),[b,f]=(0,n.useState)(Pe());if((0,n.useEffect)((()=>{const e=()=>{f(Pe())};return window.addEventListener("resize",e),()=>{window.removeEventListener("resize",e)}}),[]),c)return(0,n.createElement)(n.Fragment,null,s&&(0,n.createElement)("div",{className:"nps-survey-overlay fixed inset-0 bg-[#111827BF]/75 z-[999999999]"}),(0,n.createElement)("div",{className:ve("comment"===d?"max-w-[36em]":"max-w-[30rem]","xs:w-full w-[calc(100%-8px)] flex bg-white rounded-lg fixed z-[9999999999] right-2 p-4 sm:p-5 border border-solid border-border-tertiary shadow-lg box-border"),style:(()=>{let e="8px";"xs"===b&&(e=4);const t={},[r,n="center"]=a?.placement?a?.placement.split("-"):["bottom","right"];"top"===r?t.top="8px":"center"===r?(t.top="50%",t.translate="0 -50%"):t.bottom="8px";const o="rtl"===document.documentElement.dir,s={left:o?"right":"left",right:o?"left":"right",center:"center"},l=s[n]||s.right;return"center"===l?(t.left="50%",t.transform="translateX(-50%)"):t[l]=e,t})()},(0,n.createElement)("div",{className:ve("w-full",p&&"opacity-50 cursor-progress")},"nps-rating"===d?(0,n.createElement)(w,{...e}):"comment"===d?(0,n.createElement)(ze,{...e}):"plugin-rating"===d?(0,n.createElement)(Ie,{...e}):void 0),(0,n.createElement)("span",{className:"absolute top-3 right-3 left-auto cursor-pointer",onClick:function(){p||(u&&"plugin-rating"===d&&we(o,u,"","plugin-rating",i,m,t),xe(o,i,d,r,t))}},(0,n.createElement)(je,{className:"h-5 w-5 text-zip-app-inactive-icon","aria-hidden":"true"}))))},Oe=e=>(0,n.createElement)("div",{id:"nps-survey-wrapper",className:"nps-survey-wrapper"},e&&(0,n.createElement)(Te,{...e}));document.querySelectorAll('[data-id^="nps-survey-"]').forEach(((e,t)=>{const r=(0,o.createRoot)(e),a=JSON.parse(e.getAttribute("data-vars"));a.npsId=e.dataset.id,a.npsIndex=t,r.render((0,n.createElement)(Oe,{...a,key:a.npsId}))}))},656(e,t,r){var n=r(609),o="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},a=n.useState,s=n.useEffect,l=n.useLayoutEffect,i=n.useDebugValue;function c(e){var t=e.getSnapshot;e=e.value;try{var r=t();return!o(e,r)}catch(e){return!0}}var d="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,t){return t()}:function(e,t){var r=t(),n=a({inst:{value:r,getSnapshot:t}}),o=n[0].inst,d=n[1];return l((function(){o.value=r,o.getSnapshot=t,c(o)&&d({inst:o})}),[e,r,t]),s((function(){return c(o)&&d({inst:o}),e((function(){c(o)&&d({inst:o})}))}),[e]),i(r),r};t.useSyncExternalStore=void 0!==n.useSyncExternalStore?n.useSyncExternalStore:d},763(e,t,r){var n=r(609),o=r(257),a="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},s=o.useSyncExternalStore,l=n.useRef,i=n.useEffect,c=n.useMemo,d=n.useDebugValue;t.useSyncExternalStoreWithSelector=function(e,t,r,n,o){var u=l(null);if(null===u.current){var p={hasValue:!1,value:null};u.current=p}else p=u.current;u=c((function(){function e(e){if(!i){if(i=!0,s=e,e=n(e),void 0!==o&&p.hasValue){var t=p.value;if(o(t,e))return l=t}return l=e}if(t=l,a(s,e))return t;var r=n(e);return void 0!==o&&o(t,r)?t:(s=e,l=r)}var s,l,i=!1,c=void 0===r?null:r;return[function(){return e(t())},null===c?void 0:function(){return e(c())}]}),[t,r,n,o]);var m=s(e,u[0],u[1]);return i((function(){p.hasValue=!0,p.value=m}),[m]),d(m),m}},257(e,t,r){e.exports=r(656)},79(e,t,r){e.exports=r(763)},609(e){e.exports=window.React}},r={};function n(e){var o=r[e];if(void 0!==o)return o.exports;var a=r[e]={exports:{}};return t[e](a,a.exports,n),a.exports}n.m=t,e=[],n.O=(t,r,o,a)=>{if(!r){var s=1/0;for(d=0;d<e.length;d++){for(var[r,o,a]=e[d],l=!0,i=0;i<r.length;i++)(!1&a||s>=a)&&Object.keys(n.O).every((e=>n.O[e](r[i])))?r.splice(i--,1):(l=!1,a<s&&(s=a));if(l){e.splice(d--,1);var c=o();void 0!==c&&(t=c)}}return t}a=a||0;for(var d=e.length;d>0&&e[d-1][2]>a;d--)e[d]=e[d-1];e[d]=[r,o,a]},n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{var e={792:0,85:0};n.O.j=t=>0===e[t];var t=(t,r)=>{var o,a,[s,l,i]=r,c=0;if(s.some((t=>0!==e[t]))){for(o in l)n.o(l,o)&&(n.m[o]=l[o]);if(i)var d=i(n)}for(t&&t(r);c<s.length;c++)a=s[c],n.o(e,a)&&e[a]&&e[a][0](),e[a]=0;return n.O(d)},r=globalThis.webpackChunknps_survey=globalThis.webpackChunknps_survey||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})();var o=n.O(void 0,[85],(()=>n(45)));o=n.O(o)})();PK���\
�� �(�(&inc/lib/nps-survey/dist/style-main.cssnu�[���.nps-survey-root .invisible {visibility: hidden
}.nps-survey-root .fixed {position: fixed
}.nps-survey-root .absolute {position: absolute
}.nps-survey-root .relative {position: relative
}.nps-survey-root .inset-0 {inset: 0px
}.nps-survey-root .left-auto {left: auto
}.nps-survey-root .right-2 {right: 0.5rem
}.nps-survey-root .right-3 {right: 0.75rem
}.nps-survey-root .top-3 {top: 0.75rem
}.nps-survey-root .isolate {isolation: isolate
}.nps-survey-root .z-\[9999999999\] {z-index: 9999999999
}.nps-survey-root .z-\[999999999\] {z-index: 999999999
}.nps-survey-root .mx-0 {margin-left: 0px;margin-right: 0px
}.nps-survey-root .my-0 {margin-top: 0px;margin-bottom: 0px
}.nps-survey-root .mb-0 {margin-bottom: 0px
}.nps-survey-root .mt-1 {margin-top: 0.25rem
}.nps-survey-root .mt-2 {margin-top: 0.5rem
}.nps-survey-root .mt-3 {margin-top: 0.75rem
}.nps-survey-root .mt-5 {margin-top: 1.25rem
}.nps-survey-root .box-border {box-sizing: border-box
}.nps-survey-root .block {display: block
}.nps-survey-root .flex {display: flex
}.nps-survey-root .inline-flex {display: inline-flex
}.nps-survey-root .size-5 {width: 1.25rem;height: 1.25rem
}.nps-survey-root .size-6 {width: 1.5rem;height: 1.5rem
}.nps-survey-root .h-11 {height: 2.75rem
}.nps-survey-root .h-5 {height: 1.25rem
}.nps-survey-root .h-\[2\.625rem\] {height: 2.625rem
}.nps-survey-root .w-4 {width: 1rem
}.nps-survey-root .w-5 {width: 1.25rem
}.nps-survey-root .w-\[calc\(100\%-8px\)\] {width: calc(100% - 8px)
}.nps-survey-root .w-full {width: 100%
}.nps-survey-root .max-w-\[30rem\] {max-width: 30rem
}.nps-survey-root .max-w-\[36em\] {max-width: 36em
}.nps-survey-root .flex-1 {flex: 1 1 0%
}.nps-survey-root .translate-y-2\.5 {--tw-translate-y: 0.625rem;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}.nps-survey-root .transform {transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}@keyframes spin {to {transform: rotate(360deg)
    }
}.nps-survey-root .animate-spin {animation: spin 1s linear infinite
}.nps-survey-root .cursor-not-allowed {cursor: not-allowed
}.nps-survey-root .cursor-pointer {cursor: pointer
}.nps-survey-root .cursor-progress {cursor: progress
}.nps-survey-root .resize {resize: both
}.nps-survey-root .items-center {align-items: center
}.nps-survey-root .justify-start {justify-content: flex-start
}.nps-survey-root .justify-center {justify-content: center
}.nps-survey-root .justify-between {justify-content: space-between
}.nps-survey-root .gap-2 {gap: 0.5rem
}.nps-survey-root .rounded {border-radius: 0.25rem
}.nps-survey-root .rounded-lg {border-radius: 0.5rem
}.nps-survey-root .rounded-md {border-radius: 0.375rem
}.nps-survey-root .border {border-width: 1px
}.nps-survey-root .border-0 {border-width: 0px
}.nps-survey-root .border-solid {border-style: solid
}.nps-survey-root .border-none {border-style: none
}.nps-survey-root .border-border-tertiary {--tw-border-opacity: 1;border-color: rgb(216 223 233 / var(--tw-border-opacity))
}.nps-survey-root .border-button-disabled {--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity))
}.nps-survey-root .border-nps-button-background {--tw-border-opacity: 1;border-color: rgb(34 113 177 / var(--tw-border-opacity))
}.nps-survey-root .border-red-500 {--tw-border-opacity: 1;border-color: rgb(239 68 68 / var(--tw-border-opacity))
}.nps-survey-root .border-transparent {border-color: transparent
}.nps-survey-root .border-white {--tw-border-opacity: 1;border-color: rgb(255 255 255 / var(--tw-border-opacity))
}.nps-survey-root .border-zip-body-text {--tw-border-opacity: 1;border-color: rgb(var(--zip-body-text) / var(--tw-border-opacity))
}.nps-survey-root .bg-\[\#111827BF\]\/75 {background-color: rgb(17 24 39 / 0.75)
}.nps-survey-root .bg-nps-button-background {--tw-bg-opacity: 1;background-color: rgb(34 113 177 / var(--tw-bg-opacity))
}.nps-survey-root .bg-transparent {background-color: transparent
}.nps-survey-root .bg-white {--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}.nps-survey-root .p-4 {padding: 1rem
}.nps-survey-root .px-4 {padding-left: 1rem;padding-right: 1rem
}.nps-survey-root .px-5 {padding-left: 1.25rem;padding-right: 1.25rem
}.nps-survey-root .px-6 {padding-left: 1.5rem;padding-right: 1.5rem
}.nps-survey-root .py-1\.5 {padding-top: 0.375rem;padding-bottom: 0.375rem
}.nps-survey-root .py-2 {padding-top: 0.5rem;padding-bottom: 0.5rem
}.nps-survey-root .py-3 {padding-top: 0.75rem;padding-bottom: 0.75rem
}.nps-survey-root .pl-0 {padding-left: 0px
}.nps-survey-root .pl-3 {padding-left: 0.75rem
}.nps-survey-root .pl-4 {padding-left: 1rem
}.nps-survey-root .pl-5 {padding-left: 1.25rem
}.nps-survey-root .pl-6 {padding-left: 1.5rem
}.nps-survey-root .pr-3 {padding-right: 0.75rem
}.nps-survey-root .pr-4 {padding-right: 1rem
}.nps-survey-root .pr-5 {padding-right: 1.25rem
}.nps-survey-root .pr-6 {padding-right: 1.5rem
}.nps-survey-root .text-right {text-align: right
}.nps-survey-root .text-\[\.625rem\] {font-size: .625rem
}.nps-survey-root .text-base {font-size: 1rem;line-height: 1.5rem
}.nps-survey-root .text-lg {font-size: 1.125rem;line-height: 1.75rem
}.nps-survey-root .text-sm {font-size: 0.875rem;line-height: 1.25rem
}.nps-survey-root .text-xs {font-size: 0.75rem;line-height: 1rem
}.nps-survey-root .font-bold {font-weight: 700
}.nps-survey-root .font-medium {font-weight: 500
}.nps-survey-root .font-normal {font-weight: 400
}.nps-survey-root .font-semibold {font-weight: 600
}.nps-survey-root .leading-5 {line-height: 1.25rem
}.nps-survey-root .leading-6 {line-height: 1.5rem
}.nps-survey-root .leading-7 {line-height: 1.75rem
}.nps-survey-root .leading-normal {line-height: 1.5
}.nps-survey-root .text-border-secondary {--tw-text-opacity: 1;color: rgb(107 114 128 / var(--tw-text-opacity))
}.nps-survey-root .text-gray-400 {--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity))
}.nps-survey-root .text-gray-500 {--tw-text-opacity: 1;color: rgb(107 114 128 / var(--tw-text-opacity))
}.nps-survey-root .text-inherit {color: inherit
}.nps-survey-root .text-nps-button-background {--tw-text-opacity: 1;color: rgb(34 113 177 / var(--tw-text-opacity))
}.nps-survey-root .text-red-600 {--tw-text-opacity: 1;color: rgb(220 38 38 / var(--tw-text-opacity))
}.nps-survey-root .text-secondary-text {--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity))
}.nps-survey-root .text-white {--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity))
}.nps-survey-root .text-zip-app-heading {--tw-text-opacity: 1;color: rgb(var(--zip-app-heading) / var(--tw-text-opacity))
}.nps-survey-root .text-zip-app-inactive-icon {--tw-text-opacity: 1;color: rgb(var(--zip-app-inactive-icon) / var(--tw-text-opacity))
}.nps-survey-root .text-zip-body-text {--tw-text-opacity: 1;color: rgb(var(--zip-body-text) / var(--tw-text-opacity))
}.nps-survey-root .underline {text-decoration-line: underline
}.nps-survey-root .no-underline {text-decoration-line: none
}.nps-survey-root .opacity-25 {opacity: 0.25
}.nps-survey-root .opacity-50 {opacity: 0.5
}.nps-survey-root .opacity-70 {opacity: 0.7
}.nps-survey-root .opacity-75 {opacity: 0.75
}.nps-survey-root .shadow-lg {--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}.nps-survey-root .shadow-sm {--tw-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);--tw-shadow-colored: 0px 1px 2px 0px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}.nps-survey-root .transition {transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms
}.nps-survey-root .transition-colors {transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms
}.nps-survey-root .duration-150 {transition-duration: 150ms
}.nps-survey-root .ease-in-out {transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}.nps-survey-root {font-size: 1rem;line-height: 1.5rem
}.nps-survey-root * {box-sizing: border-box;font-family: Figtree, sans-serif
}.nps-survey-root .hover\:cursor-pointer:hover {cursor: pointer
}.nps-survey-root .hover\:bg-gray-50:hover {--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity))
}.nps-survey-root .hover\:text-white:hover {--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity))
}.nps-survey-root .focus\:z-10:focus {z-index: 10
}.nps-survey-root .focus\:shadow-none:focus {--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}.nps-survey-root .focus\:ring-1:focus {--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}.nps-survey-root .focus\:ring-nps-button-background:focus {--tw-ring-opacity: 1;--tw-ring-color: rgb(34 113 177 / var(--tw-ring-opacity))
}.nps-survey-root .focus\:ring-red-500:focus {--tw-ring-opacity: 1;--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity))
}.nps-survey-root .focus-visible\:outline:focus-visible {outline-style: solid
}.nps-survey-root .focus-visible\:outline-2:focus-visible {outline-width: 2px
}.nps-survey-root .focus-visible\:outline-offset-2:focus-visible {outline-offset: 2px
}@media (min-width: 512px) {.nps-survey-root .xs\:w-full {width: 100%
    }
}@media (min-width: 640px) {.nps-survey-root .sm\:p-5 {padding: 1.25rem
    }.nps-survey-root .sm\:text-sm {font-size: 0.875rem;line-height: 1.25rem
    }.nps-survey-root .sm\:leading-6 {line-height: 1.5rem
    }
}
PK���\(^��F�F0inc/lib/nps-survey/classes/nps-survey-script.phpnu�[���<?php
/**
 * NPS Survey Script
 * File to handle behaviour and content of NPS popup`
 *
 * @package {{package}}
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Prevent multiple inclusions of this file.
if ( defined( 'NPS_SURVEY_SCRIPT_LOADED' ) ) {
	return;
}
define( 'NPS_SURVEY_SCRIPT_LOADED', true );

/**
 * Nps_Survey
 */
class Nps_Survey {
	/**
	 * Instance
	 *
	 * @access private
	 * @var object Class Instance.
	 * @since 1.0.0
	 */
	private static $instance = null;

	/**
	 * Constructor.
	 *
	 * @since 1.0.0
	 */
	public function __construct() {
		add_action( 'rest_api_init', array( $this, 'register_route' ) );
	}

	/**
	 * Initiator
	 *
	 * @since 1.0.0
	 * @return object initialized object of class.
	 */
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Render NPS Survey.
	 *
	 * @param string       $id ID of the root element, should start with nps-survey- .
	 * @param array<mixed> $vars Variables to be passed to the NPS.
	 * @since 1.0.0
	 * @return void
	 */
	public static function show_nps_notice( string $id, array $vars = [] ): void {

		if ( ! isset( $vars['plugin_slug'] ) || ! is_string( $vars['plugin_slug'] ) ) {
			return;
		}

		$plugin_slug   = $vars['plugin_slug'];
		$display_after = is_int( $vars['display_after'] ) ? $vars['display_after'] : 0;

		/**
		 * Filter to check if the NPS survey should be shown.
		 *
		 * @param bool   $status Whether to show the notice.
		 * @param string $plugin_slug Plugin slug.
		 * @since 1.0.13
		 */
		$show_notice = apply_filters(
			'nps_survey_show_notice',
			self::is_show_nps_survey_form( $plugin_slug, $display_after ),
			$plugin_slug
		);

		if ( ! $show_notice ) {
			return;
		}

		$show_on_screen = ! empty( $vars['show_on_screens'] ) && is_array( $vars['show_on_screens'] ) ? $vars['show_on_screens'] : [ 'dashboard' ];

		if ( ! function_exists( 'get_current_screen' ) ) {
			return;
		}
		$current_screen = get_current_screen();

		$admin_only = self::is_nps_survey_enabled_for_admin_only();
		if ( $admin_only && $current_screen instanceof WP_Screen && ! in_array( $current_screen->id, $show_on_screen, true ) ) {
			return;
		}
		// Loading script here to confirm if the screen is allowed or not.
		self::editor_load_scripts( $show_on_screen );

		?><div data-id="<?php echo esc_attr( $id ); ?>" class="nps-survey-root" data-vars="<?php echo esc_attr( strval( wp_json_encode( $vars ) ) ); ?>"></div>
		<?php
	}

	/**
	 * Generate and return the Google fonts url.
	 *
	 * @since 1.0.2
	 * @return string
	 */
	public static function google_fonts_url() {

		$font_families = array(
			'Figtree:400,500,600,700',
		);

		$query_args = array(
			'family' => rawurlencode( implode( '|', $font_families ) ),
			'subset' => rawurlencode( 'latin,latin-ext' ),
		);

		return add_query_arg( $query_args, '//fonts.googleapis.com/css' );
	}

	/**
	 * Load script.
	 *
	 * @param array<string> $show_on_screens An array of screen IDs where the scripts should be loaded.
	 * @since 1.0.0
	 * @return void
	 */
	public static function editor_load_scripts( $show_on_screens ): void {

		$admin_only = self::is_nps_survey_enabled_for_admin_only();
		if ( $admin_only && ! is_admin() ) {
			return;
		}

		$screen    = get_current_screen();
		$screen_id = $screen ? $screen->id : '';

		if ( $admin_only && ! in_array( $screen_id, $show_on_screens, true ) ) {
			return;
		}

		$handle            = 'nps-survey-script';
		$build_path        = NPS_SURVEY_DIR . 'dist/';
		$default_build_url = NPS_SURVEY_URL . 'dist/';

		// Use a filter to allow $build_url to be modified externally.
		$build_url         = apply_filters( 'nps_survey_build_url', $default_build_url );
		$script_asset_path = $build_path . 'main.asset.php';

		$script_info = file_exists( $script_asset_path )
			? include $script_asset_path
			: array(
				'dependencies' => array(),
				'version'      => NPS_SURVEY_VER,
			);

		$script_dep = array_merge( $script_info['dependencies'], array( 'jquery' ) );

		wp_enqueue_script(
			$handle,
			$build_url . 'main.js',
			$script_dep,
			$script_info['version'],
			true
		);

		$data = apply_filters(
			'nps_survey_vars',
			[
				'ajaxurl'        => esc_url( admin_url( 'admin-ajax.php' ) ),
				'_ajax_nonce'    => wp_create_nonce( 'nps-survey' ),
				'rest_api_nonce' => current_user_can( 'manage_options' ) ? wp_create_nonce( 'wp_rest' ) : '',
			]
		);

		// Add localize JS.
		wp_localize_script(
			'nps-survey-script',
			'nps_survey_data',
			$data
		);

		wp_enqueue_style( 'nps-survey-style', $build_url . '/style-main.css', array(), NPS_SURVEY_VER );
		wp_style_add_data( 'nps-survey-style', 'rtl', 'replace' );
		wp_enqueue_style( 'nps-survey-google-fonts', self::google_fonts_url(), array(), 'all' );
	}

	/**
	 * Load all the required files in the importer.
	 *
	 * @since  1.0.0
	 * @return void
	 */
	public static function register_route(): void {

		register_rest_route(
			self::get_api_namespace(),
			'/rating/',
			array(
				array(
					'methods'             => \WP_REST_Server::CREATABLE,
					'callback'            => array( self::class, 'submit_rating' ),
					'permission_callback' => array( self::class, 'get_item_permissions_check' ),
					'args'                => array(
						'nps_id'      => array(
							'type'              => 'string',
							'required'          => true,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'rating'      => array(
							'type'              => 'integer',
							'required'          => true,
							'validate_callback' => static function ( $value ) {
								return is_numeric( $value ) && (int) $value >= 0 && (int) $value <= 10;
							},
							'sanitize_callback' => 'absint',
						),
						'comment'     => array(
							'type'              => 'string',
							'required'          => false,
							'default'           => '',
							'sanitize_callback' => 'sanitize_text_field',
						),
						'plugin_slug' => array(
							'type'              => 'string',
							'required'          => true,
							'sanitize_callback' => 'sanitize_text_field',
						),
					),
				),
			)
		);

		register_rest_route(
			self::get_api_namespace(),
			'/dismiss-nps-survey/',
			array(
				array(
					'methods'             => \WP_REST_Server::CREATABLE,
					'callback'            => array( self::class, 'dismiss_nps_survey_panel' ),
					'permission_callback' => array( self::class, 'get_item_permissions_check' ),
					'args'                => array(
						'nps_id'           => array(
							'type'              => 'string',
							'required'          => true,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'plugin_slug'      => array(
							'type'              => 'string',
							'required'          => true,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'dismiss_timespan' => array(
							'type'              => 'integer',
							'required'          => true,
							'sanitize_callback' => 'absint',
						),
						'current_step'     => array(
							'type'              => 'string',
							'required'          => true,
							'sanitize_callback' => 'sanitize_text_field',
						),
					),
				),
			)
		);
	}

	/**
	 * Get the API URL.
	 *
	 * @since  1.0.0
	 *
	 * @return string
	 */
	public static function get_api_domain() {
		return trailingslashit( defined( 'NPS_SURVEY_REMOTE_URL' ) ? NPS_SURVEY_REMOTE_URL : apply_filters( 'nps_survey_api_domain', 'https://metrics.brainstormforce.com/' ) );
	}

	/**
	 * Get api namespace
	 *
	 * @since 1.0.0
	 * @return string
	 */
	public static function get_api_namespace() {
		return 'nps-survey/v1';
	}

	/**
	 * Get API headers
	 *
	 * @since 1.0.0
	 * @return array<string, string>
	 */
	public static function get_api_headers() {
		return array(
			'Content-Type' => 'application/json',
			'Accept'       => 'application/json',
		);
	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|bool
	 */
	public static function get_item_permissions_check( $request ) {
		/**
		 * Filter to disable the REST API permission check for NPS Survey endpoints.
		 *
		 * @security WARNING: Setting this filter to `true` removes all authentication
		 *   and capability checks from the NPS Survey REST API endpoints, making them
		 *   publicly accessible to any unauthenticated request. Only use this in
		 *   controlled environments where you explicitly intend to open these endpoints.
		 *
		 * @param bool $disable Whether to bypass the permission check. Default false.
		 * @since 1.0.13
		 */
		if ( apply_filters( 'nps_survey_api_disable_permission_check', false ) ) {
			return true;
		}

		if ( ! current_user_can( 'manage_options' ) ) {
			return new \WP_Error(
				'nps_survey_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'nps-survey' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Method to determine if the NPS survey status update should be skipped for database option.
	 *
	 * @param string $nps_id NPS ID.
	 * @param string $type Type of action (e.g., 'submit', 'dismiss').
	 * @param array  $data Additional data related to the NPS survey.
	 *
	 * @since 1.0.13
	 * @return bool
	 * @phpstan-ignore-next-line
	 */
	public static function should_skip_status_update( $nps_id, $type, $data = array() ): bool {
		/**
		 * Filter to determine if the NPS survey status should be updated.
		 *
		 * @param bool  $update Default is true, can be modified by the filter.
		 * @param array $post_data Post data being sent.
		 * @since 1.0.13
		 */
		return apply_filters(
			'nps_survey_should_skip_status_update',
			false, // Default to false, can be modified by the filter.
			array_merge(
				$data,
				array(
					'nps_id'      => $nps_id,
					'action_type' => $type,
				)
			)
		);
	}

	/**
	 * Submit Ratings.
	 *
	 * @param \WP_REST_Request $request Request object.
	 * @return void
	 * @phpstan-ignore-next-line
	 */
	public static function submit_rating( $request ) {

		$nonce = $request->get_header( 'X-WP-Nonce' );

		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( (string) $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data'   => __( 'Nonce verification failed.', 'nps-survey' ),
					'status' => false,

				)
			);
		}

		$current_user = wp_get_current_user();
		$nps_id       = $request->get_param( 'nps_id' ) ?? '';

		/**
		 * Filter the post data.
		 * This can be used to modify the post data before sending it to the API.
		 *
		 * @param array<mixed> $post_data Post data.
		 * @param string       $nps_id    NPS ID.
		 * @return array<mixed>
		 */
		$post_data = apply_filters(
			'nps_survey_post_data',
			array(
				'rating'      => ! empty( $request['rating'] ) ? sanitize_text_field( strval( $request['rating'] ) ) : '',
				'comment'     => ! empty( $request['comment'] ) ? sanitize_text_field( strval( $request['comment'] ) ) : '',
				'email'       => $current_user->user_email,
				'first_name'  => ! empty( $current_user->first_name ) ? $current_user->first_name : $current_user->display_name,
				'last_name'   => ! empty( $current_user->last_name ) ? $current_user->last_name : '',
				'source'      => ! empty( $request['plugin_slug'] ) ? sanitize_text_field( strval( $request['plugin_slug'] ) ) : '',
				'plugin_slug' => ! empty( $request['plugin_slug'] ) ? sanitize_text_field( strval( $request['plugin_slug'] ) ) : '',
			),
			$nps_id
		);

		/**
		 * Filter the API endpoint.
		 *
		 * @param string       $api_endpoint API endpoint.
		 * @param array<mixed> $post_data    Post data.
		 * @param string       $nps_id       NPS ID.
		 *
		 * @return string
		 */
		$api_endpoint = apply_filters(
			'nps_survey_api_endpoint',
			self::get_api_domain() . 'wp-json/bsf-metrics-server/v1/nps-survey/',
			$post_data, // Pass the post data to the filter, so that the endpoint can be modified based on the data.
			$nps_id
		);

		$post_data_in_json = wp_json_encode( $post_data );
		$request_args      = array(
			'body'    => $post_data_in_json ? $post_data_in_json : '',
			'headers' => self::get_api_headers(),
			'timeout' => 60,
		);

		$response = wp_safe_remote_post( $api_endpoint, $request_args );

		if ( is_wp_error( $response ) ) {
			// There was an error in the request.
			wp_send_json_error(
				array(
					'data'   => 'Failed ' . $response->get_error_message(),
					'status' => false,
				)
			);
		}

		$response_code = wp_remote_retrieve_response_code( $response );

		if ( 200 === $response_code || 201 === $response_code ) {

			// If the status update should be skipped, return success.
			if ( self::should_skip_status_update( $nps_id, 'submit', $post_data ) ) {
				wp_send_json_success(
					array(
						'status' => true,
					)
				);
			}

			$nps_form_status = array(
				'dismiss_count'       => 0,
				'dismiss_permanently' => true,
				'dismiss_step'        => '',
			);

			update_option( self::get_nps_id( strval( $request['plugin_slug'] ) ), $nps_form_status, false );

			wp_send_json_success(
				array(
					'status' => true,
				)
			);

		} else {
			wp_send_json_error(
				array(
					'status' => false,
				)
			);
		}
	}

	/**
	 * Dismiss NPS Survey.
	 *
	 * @param \WP_REST_Request $request Request object.
	 * @return void
	 * @phpstan-ignore-next-line
	 */
	public static function dismiss_nps_survey_panel( $request ) {

		$nonce = $request->get_header( 'X-WP-Nonce' );

		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( (string) $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data'   => __( 'Nonce verification failed.', 'nps-survey' ),
					'status' => false,

				)
			);
		}

		// If the status update should be skipped, return success.
		$nps_id = $request->get_param( 'nps_id' ) ?? '';
		if ( self::should_skip_status_update( $nps_id, 'dismiss' ) ) {
			wp_send_json_success(
				array(
					'status' => true,
				)
			);
		}

		$nps_form_status = self::get_nps_survey_dismiss_status( strval( $request['plugin_slug'] ) );

		// Add dismiss timespan.
		$nps_form_status['dismiss_timespan'] = absint( $request['dismiss_timespan'] );

		// Add dismiss date.
		$nps_form_status['dismiss_time'] = time();

		// Update dismiss count.
		$nps_form_status['dismiss_count'] += 1;
		$nps_form_status['dismiss_step']   = sanitize_text_field( strval( $request['current_step'] ) );

		// Dismiss Permanantly.
		if ( $nps_form_status['dismiss_count'] >= 2 ) {
			$nps_form_status['dismiss_permanently'] = true;
		}

		update_option( self::get_nps_id( strval( $request['plugin_slug'] ) ), $nps_form_status );

		wp_send_json_success(
			array(
				'status' => true,
			)
		);
	}

	/**
	 * Get dismiss status of NPS Survey.
	 *
	 * @param  string $plugin_slug slug of unique NPS Survey.
	 * @return array<string, mixed>
	 */
	public static function get_nps_survey_dismiss_status( string $plugin_slug ) {

		$default_status = get_option(
			self::get_nps_id( $plugin_slug ),
			array(
				'dismiss_count'       => 0,
				'dismiss_permanently' => false,
				'dismiss_step'        => '',
				'dismiss_time'        => '',
				'dismiss_timespan'    => null,
				'first_render_time'   => null,
			)
		);

		if ( ! is_array( $default_status ) ) {
			return array();
		}

		return array(
			'dismiss_count'       => ! empty( $default_status['dismiss_count'] ) ? $default_status['dismiss_count'] : 0,
			'dismiss_permanently' => ! empty( $default_status['dismiss_permanently'] ) ? $default_status['dismiss_permanently'] : false,
			'dismiss_step'        => ! empty( $default_status['dismiss_step'] ) ? $default_status['dismiss_step'] : '',
			'dismiss_time'        => ! empty( $default_status['dismiss_time'] ) ? $default_status['dismiss_time'] : '',
			'dismiss_timespan'    => ! empty( $default_status['dismiss_timespan'] ) ? $default_status['dismiss_timespan'] : null,
			'first_render_time'   => ! empty( $default_status['first_render_time'] ) ? $default_status['first_render_time'] : null,
		);
	}

	/**
	 * Show status of NPS Survey.
	 *
	 * @param  string $plugin_slug slug of unique NPS Survey.
	 * @param  int    $display_after number of days after which NPS Survey should be displayed.
	 * @return bool
	 */
	public static function is_show_nps_survey_form( string $plugin_slug, int $display_after ) {

		$current_time = time();
		$status       = self::get_nps_survey_dismiss_status( $plugin_slug );

		if ( $status['dismiss_permanently'] ) {
			return false;
		}

		$first_render_time = $status['first_render_time'];

		if ( 0 !== $display_after ) {
			if ( null === $first_render_time ) {
				$status['first_render_time'] = $current_time;
				update_option( self::get_nps_id( $plugin_slug ), $status );
				$status = self::get_nps_survey_dismiss_status( $plugin_slug );
				return false;
			}
			if ( $display_after + $first_render_time > $current_time ) {
				return false;
			}
		}

		// Retrieve the stored date time stamp from wp_options.
		$stored_date_timestamp = $status['dismiss_time'];
		$dismiss_timespan      = $status['dismiss_timespan'];

		if ( $stored_date_timestamp ) {

			$current_time = time();

			// time difference of current time and the time user dismissed the nps.
			$time_difference = $current_time - $stored_date_timestamp;

			// Check if two weeks have passed.
			if ( $time_difference <= $dismiss_timespan ) {
				return false;
			}
		}

		return true;
	}

	/**
	 * Check if NPS Survey is enabled for admin only. Default is true.
	 *
	 * @since 1.0.13
	 * @return bool
	 */
	public static function is_nps_survey_enabled_for_admin_only() {
		/**
		 * Filter to check if NPS Survey is enabled for admin only.
		 *
		 * @since 1.0.13
		 */
		return apply_filters( 'nps_survey_enabled_for_admin_only', true );
	}

	/**
	 * Get NPS Dismiss Option Name.
	 *
	 * @param string $plugin_slug Plugin name.
	 * @return string
	 */
	public static function get_nps_id( $plugin_slug ) {
		return 'nps-survey-' . $plugin_slug;
	}
}

/**
 * Kicking this off by calling 'get_instance()' method
 */
Nps_Survey::get_instance();
PK���\ܾ�q��/inc/lib/nps-survey/nps-survey-plugin-loader.phpnu�[���<?php
/**
 * Plugin Loader.
 *
 * @package {{package}}
 * @since {{since}}
 */

namespace NPS_Survey;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'NPS_Survey_Plugin_Loader' ) ) {

	/**
	 * Plugin_Loader
	 *
	 * @since 1.0.0
	 */
	class NPS_Survey_Plugin_Loader {
		/**
		 * Instance
		 *
		 * @access private
		 * @var object Class Instance.
		 * @since 1.0.0
		 */
		private static $instance;

		/**
		 * Constructor
		 *
		 * @since 1.0.0
		 */
		public function __construct() {

			spl_autoload_register( [ $this, 'autoload' ] );

			if ( did_action( 'wp_loaded' ) ) {
				$this->load_files();
			} else {
				add_action( 'wp_loaded', [ $this, 'load_files' ] );
			}
		}

		/**
		 * Initiator
		 *
		 * @since 1.0.0
		 * @return object initialized object of class.
		 */
		public static function get_instance() {
			if ( null === self::$instance ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Autoload classes.
		 *
		 * @param string $class class name.
		 * @return void
		 */
		public function autoload( $class ): void {
			if ( 0 !== strpos( $class, __NAMESPACE__ ) ) {
				return;
			}

			$class_to_load = $class;

			$filename = strtolower(
				strval(
					preg_replace(
						[ '/^' . __NAMESPACE__ . '\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
						[ '', '$1-$2', '-', DIRECTORY_SEPARATOR ],
						$class_to_load
					)
				)
			);

			$file = NPS_SURVEY_DIR . $filename . '.php';

			// if the file redable, include it.
			if ( is_readable( $file ) ) {
				// nosemgrep audit.php.lang.security.file.inclusion-arg - To allow the theme or plugin on WooCommerce Marketplace.
				require_once $file;
			}
		}

		/**
		 * Load Files
		 *
		 * @since 1.0.0
		 *
		 * @return void
		 */
		public function load_files(): void {
			require_once NPS_SURVEY_DIR . 'classes/nps-survey-script.php';
		}
	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	NPS_Survey_Plugin_Loader::get_instance();

}
PK���\��Z����inc/class-hfe-settings-page.phpnu�[���<?php
/**
 * HFE Settings Page.
 *
 * Add plugin setting page.
 *
 * @since 1.6.0
 * @package hfe
 */

namespace HFE\Themes;

use HFE\WidgetsManager\Base\HFE_Helper;

/**
 * Class Settings Page.
 *
 * @since 1.6.0
 */
class HFE_Settings_Page {
	
	/**
	 * Instance
	 * z
	 *
	 * @access private
	 * @var string Class object.
	 * @since 1.0.0
	 */
	private $menu_slug = 'hfe';

	/**
	 * Constructor.
	 *
	 * @since 1.6.0
	 */
	public function __construct() {

		add_action( 'admin_post_uaelite_rollback', [ $this, 'post_uaelite_rollback' ] );
		
		add_action( 'admin_head', [ $this, 'hfe_global_css' ] );

		add_action( 'admin_head', [ $this, 'fetch_user_email' ] );
		add_action( 'admin_head', [ $this, 'fetch_site_url' ] );
		add_action( 'admin_head', [ $this, 'fetch_user_fname' ] );

		if ( ! HFE_Helper::is_pro_active() ) {
			if ( is_admin() && current_user_can( 'manage_options' ) ) {
				add_action( 'admin_menu', [ $this, 'hfe_register_settings_page' ] );
				if( ! defined( 'UAEL_PRO' ) ){
					add_action( 'admin_menu', [ $this, 'hfe_add_upgrade_to_pro' ] );
					add_action( 'admin_footer', [ $this, 'hfe_add_upgrade_to_pro_target_attr' ] );
				}
			}
			add_action( 'admin_footer_text', [ $this, 'uae_custom_admin_footer_text' ] );
			add_action( 'admin_init', [ $this, 'hfe_admin_init' ] );
			add_filter( 'views_edit-elementor-hf', [ $this, 'hfe_settings' ], 10, 1 );
		}
		
		add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_admin_scripts' ] );
		add_filter( 'plugin_action_links_' . HFE_PATH, [ $this, 'settings_link' ] );
		add_filter( 'plugin_action_links_' . HFE_PATH, [ $this, 'upgrade_pro_link' ] );
		add_filter( 'plugin_row_meta', [ $this, 'add_rating_meta_links' ], 10, 2 );		

		if ( version_compare( get_bloginfo( 'version' ), '5.1.0', '>=' ) ) {
			add_filter( 'wp_check_filetype_and_ext', [ $this, 'real_mime_types_5_1_0' ], 10, 5 );
		} else {
			add_filter( 'wp_check_filetype_and_ext', [ $this, 'real_mime_types' ], 10, 4 );
		}

		/* Flow content view */
		add_action( 'hfe_render_admin_page_content', [ $this, 'render_content' ], 10, 2 );


		if ( ! HFE_Helper::is_pro_active() ) {
			add_action( 'admin_footer', __CLASS__ . '::show_nps_notice' );
		}

	}

	/**
	 * Show action on plugin page.
	 *
	 * @param  array $links links.
	 * @return array
	 * @since 2.4.5
	 */
	public function upgrade_pro_link( $links ) {
		$plugin_file = 'ultimate-elementor/ultimate-elementor.php';
		if ( ! file_exists( WP_PLUGIN_DIR . '/' . $plugin_file ) && ! HFE_Helper::is_pro_active() ) {
			$links[]     = '<a href="' . esc_url( 'https://ultimateelementor.com/pricing/?utm_source=wp-admin&utm_medium=plugin-list&utm_campaign=uae-upgrade' ) . '" target="_blank" rel="noreferrer" class="uae-plugins-go-pro">' . esc_html__( 'Go Pro', 'header-footer-elementor' ) . '</a>';
		}

		return $links;
	}

	/**
	 * Add meta links to the plugin row (under description).
	 *
	 * @param array<int,string> $links Array of plugin meta links.
	 * @param string            $file Plugin file path.
	 * @return array<int,string> Modified plugin meta links.
	 * @since 2.5.2
	 */
	public function add_rating_meta_links( array $links, string $file ): array {
		if ( HFE_PATH === $file ) {
			$stars = str_repeat( '<span class="dashicons dashicons-star-filled hfe-rating-star" aria-hidden="true"></span>', 5 );
			$links[] = sprintf(
				'<a href="%s" target="_blank" rel="noopener noreferrer" aria-label="%s" role="button">%s</a>',
				esc_url( 'https://wordpress.org/support/plugin/header-footer-elementor/reviews/#new-post' ),
				esc_attr__( 'Rate our plugin', 'header-footer-elementor' ),
				$stars
			);
		}
		return $links;
	}

	/**
	 * Adding Rating footer to dashboard pages.
	 *
	 * @since 2.4.5
	 * @return void
	 */
	public function uae_custom_admin_footer_text( $footer_text ) {
		$screen = get_current_screen();
	
		if (
			( isset( $_GET['page'] ) && 'hfe' === sanitize_text_field( wp_unslash( $_GET['page'] ) ) ) || // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			( isset( $screen->post_type ) && $screen->post_type === 'elementor-hf' )
		) {
			$footer_text = sprintf(
				/* translators: %1$s is bold plugin name, %2$s is the review link */
				__( 'Enjoyed %1$s? Please leave us a %2$s rating. We really appreciate your support!', 'header-footer-elementor' ),
				'<b>UAE</b>',
				'<a class="uae-rating" href="https://wordpress.org/support/plugin/header-footer-elementor/reviews/#new-post" target="_blank">★★★★★</a>'
			);
		}
		return $footer_text;
	}

	/**
	 * Render UAE NPS Survey Notice.
	 *
	 * @since 2.1.0
	 * @return void
	 */
	public static function show_nps_notice() {
		if ( class_exists( 'Nps_Survey' ) ) {
			$uae_logo = HFE_URL . 'assets/images/settings/logo.svg';
			\Nps_Survey::show_nps_notice(
				'nps-survey-header-footer-elementor',
				[
					'show_if'          => true, // Add your display conditions.
					'dismiss_timespan' => 2 * WEEK_IN_SECONDS,
					'display_after'    => 2 * WEEK_IN_SECONDS,
					'plugin_slug'      => 'header-footer-elementor',
					'show_on_screens'  => [ 'toplevel_page_hfe' ],
					'message'          => [
						// Step 1 i.e rating input.
						'logo'                  => esc_url( $uae_logo ),
						'plugin_name'           => __( 'Ultimate Addons for Elementor', 'header-footer-elementor' ),
						'nps_rating_message'    => __( 'How likely are you to recommend Ultimate Addons for Elementor to your friends or colleagues?', 'header-footer-elementor' ),
						// Step 2A i.e. positive.
						'feedback_title' => __( 'Thanks a lot for your feedback! 😍', 'header-footer-elementor' ),
						'feedback_content' => __( 'Thanks for using Ultimate Addons! Got feedback or suggestions to make it even better? We’d love to hear from you.', 'header-footer-elementor' ),
						'plugin_rating_link'    => esc_url( 'https://www.trustpilot.com/review/ultimateelementor.com' ),
						// Step 2B i.e. negative.
						'plugin_rating_title'   => __( 'Thank you for your feedback', 'header-footer-elementor' ),
						'plugin_rating_content' => __( 'We value your input. How can we improve your experience?', 'header-footer-elementor' ),				
					],
				]
			);
		}
	}

	/**
	 * Get Elementor edit page link
	 */
	public static function get_elementor_new_page_url() {

		if ( class_exists( '\Elementor\Plugin' ) && current_user_can( 'edit_pages' ) ) {
			// Ensure Elementor is loaded.
			$query_args = [
				'action'    => 'elementor_new_post',
				'post_type' => 'page',
			];
		
			$new_post_url = add_query_arg( $query_args, admin_url( 'edit.php' ) );
		
			$new_post_url = add_query_arg( '_wpnonce', wp_create_nonce( 'elementor_action_new_post' ), $new_post_url );
		
			return $new_post_url;
		}
		return '';
	}

	

	/**
	 * UAELite version rollback.
	 *
	 * Rollback to previous version.
	 *
	 * Fired by `admin_post_uaelite_rollback` action.
	 *
	 * @since 2.2.1
	 * @access public
	 */
	public function post_uaelite_rollback() {

		if ( ! current_user_can( 'install_plugins' ) ) {
			wp_die(
				esc_html__( 'You do not have permission to access this page.', 'header-footer-elementor' ),
				esc_html__( 'Rollback to Previous Version', 'header-footer-elementor' ),
				[
					'response' => 200,
				]
			);
		}

		check_admin_referer( 'uaelite_rollback' );

		$rollback_versions = HFE_Helper::get_rollback_versions_options();
		$update_version    = isset( $_GET['version'] ) ? sanitize_text_field( wp_unslash( $_GET['version'] ) ) : '';

		// Extract version values from the rollback_versions array.
		$version_values = array_column( $rollback_versions, 'value' );

		if ( empty( $update_version ) || ! in_array( $update_version, $version_values, true ) ) {
			wp_die( esc_html__( 'The selected version is invalid. Please try a different version.', 'header-footer-elementor' ) );
		}

		$plugin_slug = basename( HFE_FILE, '.php' );
		
		if ( class_exists( 'HFE_Rollback' ) ) {
			$rollback = new \HFE_Rollback(
				[
					'version'     => $update_version,
					'plugin_name' => HFE_PATH,
					'plugin_slug' => $plugin_slug,
					'package_url' => sprintf( 'https://downloads.wordpress.org/plugin/%s.%s.zip', $plugin_slug, $update_version ),
				]
			);

			$rollback->run();

			wp_die(
				'',
				esc_html__( 'Rollback to Previous Version', 'header-footer-elementor' ),
				[
					'response' => 200,
				]
			);
		}
		wp_die();
	}

	/**
	 * Adds CSS to Hide the extra submenu added for the settings tab.
	 *
	 * @since 1.6.0
	 * @return void
	 */
	public function hfe_global_css() {
		wp_enqueue_style( 'hfe-admin-style', HFE_URL . 'admin/assets/css/ehf-admin.css', [], HFE_VER );
	}

	/**
	 * Fetch and return the user's email.
	 *
	 * @since 1.6.0
	 * @return string|null The user's email if logged in, null otherwise.
	 */
	public function fetch_user_email() {
		$current_user = wp_get_current_user();
		if ( $current_user->ID !== 0 ) {
			return $current_user->user_email;
		} else {
			return null;
		}
	}

	/**
	 * Fetch and return the user's first name.
	 *
	 * @since 2.4.5
	 * @return string|null The user's name if logged in, null otherwise.
	 */
	public function fetch_user_fname() {
		$current_user = wp_get_current_user();
		if ( 0 !== $current_user->ID ) {
			return $current_user->user_firstname;
		} else {
			return null;
		}
	}

	/**
	 * Fetch and return the current user's last name.
	 *
	 * @since 2.8.7
	 * @return string|null The user's last name if logged in, null otherwise.
	 */
	public function fetch_user_lname() {
		$current_user = wp_get_current_user();
		if ( 0 !== $current_user->ID ) {
			return $current_user->user_lastname;
		} else {
			return null;
		}
	}

	/**
	 * Fetch and return the site URL.
	 *
	 * @since 2.4.5
	 * @return string|null
	 */
	public function fetch_site_url() {
		$siteurl = get_option('siteURL');
		if ( !empty( $siteurl ) ) {
			return $siteurl;
		} else {
			return null;
		}
	}

	/**
	 * Load admin styles on header footer elementor edit screen.
	 *
	 * @return void
	 */
	public function enqueue_admin_scripts() {

		global $pagenow, $post_type;
	
		$uae_logo      = HFE_URL . 'assets/images/settings/dashboard-logo.svg';
		$white_logo    = HFE_URL . 'assets/images/settings/white-logo.svg';
		$show_view_all = ( $post_type === 'elementor-hf' && $pagenow === 'post.php' ) ? 'yes' : 'no';
		$hfe_edit_url  = admin_url( 'edit.php?post_type=elementor-hf' );
		$is_hfe_post   = ( 'elementor-hf' === $post_type && ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) ) ? 'yes' : 'no';
	
		$additional_condition = ( isset( $_GET['post_type'] ) && 'elementor-hf' === sanitize_text_field( $_GET['post_type'] ) && 
			( 'edit.php' === $GLOBALS['pagenow'] || 'post.php' === $GLOBALS['pagenow'] || 'post-new.php' === $GLOBALS['pagenow'] ) ) ||
			( isset( $_GET['post'] ) && 'post.php' === $GLOBALS['pagenow'] && isset( $_GET['action'] ) && 'edit' === sanitize_text_field( $_GET['action'] ) && 'elementor-hf' === get_post_type( absint( $_GET['post'] ) ) ) ||
			( 'post-new.php' === $GLOBALS['pagenow'] && isset( $_GET['post_type'] ) && 'elementor-hf' === sanitize_text_field( $_GET['post_type'] ) );
	
		if ( ( 
				self::is_current_page( 'hfe' ) || 
				$additional_condition 
			) && 
			! HFE_Helper::is_pro_active() 
		) {
	
			$rollback_versions = HFE_Helper::get_rollback_versions_options();
			$st_status         = HFE_Helper::free_starter_templates_status();
			$stpro_status      = HFE_Helper::premium_starter_templates_status();
			$st_link           = HFE_Helper::starter_templates_link();
			$hfe_post_url      = admin_url( 'post-new.php?post_type=elementor-hf' );
			// Fetch the user's email.
			$user_email = $this->fetch_user_email();
			$user_name     = $this->fetch_user_fname();
			$user_lastname = $this->fetch_user_lname();
			$siteurl       = $this->fetch_site_url();
			$show_theme_support = 'no';
			$hfe_theme_status   = get_option( 'hfe_is_theme_supported', false );
			$analytics_status   = get_option( 'uae_usage_optin', false );
	
			if ( ( ! current_theme_supports( 'header-footer-elementor' ) ) && ! $hfe_theme_status ) {
				$show_theme_support = 'yes';
			}
			$theme_option = get_option( 'hfe_compatibility_option', '1' );
	
			wp_enqueue_script(
				'header-footer-elementor-react-app',
				HFE_URL . 'build/main.js',
				[ 'wp-element', 'wp-dom-ready', 'wp-api-fetch' ],
				HFE_VER,
				true
			);

			wp_set_script_translations( 'header-footer-elementor-react-app', 'header-footer-elementor', HFE_DIR . 'languages' );

	
			wp_localize_script(
				'header-footer-elementor-react-app',
				'hfeSettingsData',
				[
					'hfe_nonce_action'         => wp_create_nonce( 'wp_rest' ),
					'installer_nonce'          => wp_create_nonce( 'updates' ),
					'ajax_url'                 => admin_url( 'admin-ajax.php' ),
					'ajax_nonce'               => wp_create_nonce( 'hfe-widget-nonce' ),
					'templates_url'            => HFE_URL . 'assets/images/settings/starter-templates.png',
					'column_url'               => HFE_URL . 'assets/images/settings/column.png',
					'template_url'             => HFE_URL . 'assets/images/settings/template.png',
					'icon_url'                 => HFE_URL . 'assets/images/settings/logo.svg',
					'elementor_page_url'       => self::get_elementor_new_page_url(),
					'astra_url'                => HFE_URL . 'assets/images/settings/astra.svg',
					'starter_url'              => HFE_URL . 'assets/images/settings/starter-templates.svg',
					'surecart_url'             => HFE_URL . 'assets/images/settings/surecart.svg',
					'suretriggers_url'         => HFE_URL . 'assets/images/settings/OttoKit-Symbol-Primary.svg',
					'theme_url_selected'       => HFE_URL . 'assets/images/settings/theme.svg',
					'theme_url'                => HFE_URL . 'assets/images/settings/layout-template.svg',
					'version_url'              => HFE_URL . 'assets/images/settings/version.svg',
					'version__selected_url'    => HFE_URL . 'assets/images/settings/git-compare.svg',
					'tracking_url'             => HFE_URL . 'assets/images/settings/tracking.svg',
					'tracking__selected_url'   => HFE_URL . 'assets/images/settings/tracking_selected.svg',
					'branding_url'             => HFE_URL . 'assets/images/settings/branding.svg',
					'branding__selected_url'   => HFE_URL . 'assets/images/settings/branding-selected.svg',
					'user_url'                 => HFE_URL . 'assets/images/settings/user.svg',
					'user__selected_url'       => HFE_URL . 'assets/images/settings/user-selected.svg',
					'integrations_url'         => HFE_URL . 'assets/images/settings/integrations.svg', // Update the path to your assets folder.
					'welcome_banner'           => HFE_URL . 'assets/images/settings/welcome-banner.png',
					'build_banner'             => HFE_URL . 'assets/images/settings/build_banner.png',
					'special_reward'           => HFE_URL . 'assets/images/settings/build_bg.png',
					'success_banner'           => HFE_URL . 'assets/images/settings/success_bg.png',
					'success_badge'            => HFE_URL . 'assets/images/settings/success_badge.svg',
					'icon_svg'                 => HFE_URL . 'assets/images/settings/uae-logo-svg.svg',
					'augemented_url'                 => HFE_URL . 'assets/images/settings/augemented_reality_widgets.png',
					'rocket_svg'                 => HFE_URL . 'assets/images/settings/rocket.svg',
					'augmented_reality'                 => HFE_URL . 'assets/images/settings/augmented_reality.png',
					'welcome_new'                 => HFE_URL . 'assets/images/settings/welcome_new.png',
					'icon_new'                 => HFE_URL . 'assets/images/settings/icon_2.svg',
					'create_new'                 => HFE_URL . 'assets/images/settings/create_new_banner.png',
					'uaelite_previous_version' => isset( $rollback_versions[0]['value'] ) ? $rollback_versions[0]['value'] : '',
					'uaelite_versions'         => $rollback_versions,
					'uaelite_rollback_url'     => esc_url( add_query_arg( 'version', 'VERSION', wp_nonce_url( admin_url( 'admin-post.php?action=uaelite_rollback' ), 'uaelite_rollback' ) ) ),
					'uaelite_current_version'  => defined( 'HFE_VER' ) ? HFE_VER : '',
					'show_theme_support'       => $show_theme_support,
					'theme_option'             => $theme_option,
					'st_status'                => $st_status,
					'hfe_settings_url'         => admin_url( 'admin.php?page=hfe' ),
					'header_footer_builder'    => admin_url( 'edit.php?post_type=elementor-hf' ),
					'st_pro_status'            => $stpro_status,
					'st_link'                  => $st_link,
					'hfe_post_url'             => $hfe_post_url,
					'is_hfe_post'              => $is_hfe_post,
					'user_email'               => $user_email,
					'user_fname'               => $user_name,
					'user_lname'               => $user_lastname,
					'siteurl'                  => $siteurl,
					'analytics_status'         => $analytics_status,
					'onboarding_success_url'   => admin_url( 'admin.php?page=hfe#onboardingsuccess' ),
					'uaelite_subscription'	   => get_option( 'uaelite_subscription', false )
				]
			);
	
			wp_enqueue_style(
				'header-footer-elementor-react-styles',
				HFE_URL . 'build/main.css',
				[],
				HFE_VER
			);
		}
	
		if ( '' !== $uae_logo && '' !== $white_logo ) {
	
			$custom_css = '
				#toplevel_page_hfe .wp-menu-image {
					background-image: url(' . esc_url( $uae_logo ) . ') !important;
					background-size: 23px 34px !important;
					background-repeat: no-repeat !important;
					background-position: center !important;
				}
				#toplevel_page_hfe.wp-menu-open .wp-menu-image,
				#toplevel_page_hfe .wp-has-current-submenu .wp-menu-image {
					background-image: url(' . esc_url( $white_logo ) . ') !important;
				}
			';
			wp_add_inline_style( 'wp-admin', $custom_css );
		}
	
		wp_enqueue_script( 'hfe-admin-script', HFE_URL . 'admin/assets/js/ehf-admin.js', [ 'jquery', 'updates' ], HFE_VER, true );
	
		$is_dismissed = get_user_meta( get_current_user_id(), 'hfe-popup' );
		$upgrade_notice_dismissed = get_user_meta( get_current_user_id(), 'hfe_upgrade_notice_dismissed', 'false' ) === 'true';

		$strings = [
			'addon_activate'        => esc_html__( 'Activate', 'header-footer-elementor' ),
			'addon_activated'       => esc_html__( 'Activated', 'header-footer-elementor' ),
			'addon_active'          => esc_html__( 'Active', 'header-footer-elementor' ),
			'addon_deactivate'      => esc_html__( 'Deactivate', 'header-footer-elementor' ),
			'addon_inactive'        => esc_html__( 'Inactive', 'header-footer-elementor' ),
			'addon_install'         => esc_html__( 'Install', 'header-footer-elementor' ),
			'theme_installed'       => esc_html__( 'Theme Installed', 'header-footer-elementor' ),
			'plugin_installed'      => esc_html__( 'Plugin Installed', 'header-footer-elementor' ),
			'addon_download'        => esc_html__( 'Download', 'header-footer-elementor' ),
			'addon_exists'          => esc_html__( 'Already Exists.', 'header-footer-elementor' ),
			'visit_site'            => esc_html__( 'Visit Website', 'header-footer-elementor' ),
			'plugin_error'          => esc_html__( 'Could not install. Please download from WordPress.org and install manually.', 'header-footer-elementor' ),
			'subscribe_success'     => esc_html__( 'Your details are submitted successfully.', 'header-footer-elementor' ),
			'subscribe_error'       => esc_html__( 'Encountered an error while performing your request.', 'header-footer-elementor' ),
			'ajax_url'              => admin_url( 'admin-ajax.php' ),
			'nonce'                 => wp_create_nonce( 'hfe-admin-nonce' ),
			'installer_nonce'       => wp_create_nonce( 'updates' ),
			'upgrade_notice_dismissed' => $upgrade_notice_dismissed,
			'popup_dismiss'         => false,
			'data_source'           => 'HFE',
			'show_all_hfe'          => $show_view_all,
			'hfe_edit_url'          => $hfe_edit_url,
			'view_all_text'         => esc_html__( 'View All', 'header-footer-elementor' ),
			'header_footer_builder' => $hfe_edit_url,
		];
	
		$strings = apply_filters( 'hfe_admin_strings', $strings );
	
		wp_localize_script(
			'hfe-admin-script',
			'hfe_admin_data',
			$strings
		);
	}


	/**
	 * Adds a tab in plugin submenu page.
	 *
	 * @since 1.6.0
	 * @param string $views to add tab to current post type view.
	 *
	 * @return mixed
	 */
	public function hfe_settings( $views ) {
		return $views;
	}

	/**
	 * CHeck if it is current page by parameters
	 *
	 * @param string $page_slug Menu name.
	 * @param string $action Menu name.
	 *
	 * @return  string page url
	 */
	public static function is_current_page( $page_slug = '', $action = '' ) {

		$page_matched = false;

		if ( empty( $page_slug ) ) {
			return false;
		}

		$current_page_slug = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; //phpcs:ignore WordPress.Security.NonceVerification.Recommended
		$current_action    = isset( $_GET['action'] ) ? sanitize_text_field( $_GET['action'] ) : ''; //phpcs:ignore WordPress.Security.NonceVerification.Recommended

		if ( ! is_array( $action ) ) {
			$action = explode( ' ', $action );
		}

		if ( $page_slug === $current_page_slug && in_array( $current_action, $action, true ) ) {
			$page_matched = true;
		}

		return $page_matched;
	}

	/**
	 * Function for registering the settings api.
	 *
	 * @since 1.6.0
	 * @return void
	 */
	public function hfe_admin_init() {
		register_setting( 'hfe-plugin-options', 'hfe_compatibility_option' );
		add_settings_section( 'hfe-options', __( 'Add Theme Support', 'header-footer-elementor' ), [ $this, 'hfe_compatibility_callback' ], 'Settings' );
		add_settings_field( 'hfe-way', 'Methods to Add Theme Support', [ $this, 'hfe_compatibility_option_callback' ], 'Settings', 'hfe-options' );

	}

	/**
	 * Call back function for the ssettings api function add_settings_section
	 *
	 * This function can be used to add description of the settings sections
	 *
	 * @since 1.6.0
	 * @return void
	 */
	public function hfe_compatibility_callback() {
		$message      = __( 'The Ultimate Addons for Elementor plugin needs compatibility with your current theme to work smoothly.<br/><br/>Following are two methods that enable theme support for the plugin.<br/><br/>Method 1 is selected by default and works fine with almost all themes. If you face any issue with the header or footer template, try choosing Method 2.', 'header-footer-elementor' );
		$allowed_html = [ 'br' => [] ];
		echo wp_kses( $message, $allowed_html );
	}

	/**
	 * Call back function for the ssettings api function add_settings_field
	 *
	 * This function will contain the markup for the input feilds that we can add.
	 *
	 * @since 1.6.0
	 * @return void
	 */
	public function hfe_compatibility_option_callback() {
		$hfe_radio_button = get_option( 'hfe_compatibility_option', '1' );
		wp_enqueue_style( 'hfe-admin-style', HFE_URL . 'admin/assets/css/ehf-admin.css', [], HFE_VER );
		?>

		<label>
			<input type="radio" name="hfe_compatibility_option" value= 1 <?php checked( $hfe_radio_button, 1 ); ?> > <div class="hfe_radio_options"><?php esc_html_e( 'Method 1 (Recommended)', 'header-footer-elementor' ); ?></div>
			<p class="description"><?php esc_html_e( 'This method replaces your theme\'s header (header.php) & footer (footer.php) template with plugin\'s custom templates.', 'header-footer-elementor' ); ?></p><br>
		</label>
		<label>
			<input type="radio" name="hfe_compatibility_option" value= 2 <?php checked( $hfe_radio_button, 2 ); ?> > <div class="hfe_radio_options"><?php esc_html_e( 'Method 2', 'header-footer-elementor' ); ?></div>
			<p class="description">
				<?php
				printf(
					esc_html__( "This method hides your theme's header & footer template with CSS and displays custom templates from the plugin.", 'header-footer-elementor' ),
					'<br>'
				);
				?>
			</p><br>
		</label>
		<p class="description">
			<?php
			/* translators: %s: URL to the plugin support page */
			printf(
				wp_kses(
					__( 'If the above methods do not work with your theme, contact your theme author and request them to add support for the <a href="%s">plugin</a>.', 'header-footer-elementor' ),
					[
						'a' => [
							'href' => [],
						],
					]
				),
				'https://github.com/brainstormforce/header-footer-elementor/wiki/Adding-Header-Footer-Elementor-support-for-your-theme'
			);
			?>
		</p>

		<?php
	}

	/**
	 * Show a settings page incase of unsupported theme.
	 *
	 * @since 1.6.0
	 *
	 * @return void
	 */
	public function hfe_register_settings_page() {

		if ( ! current_user_can( 'manage_options' ) ) {
			return;
		}

		$menu_slug  = $this->menu_slug;
		$capability = 'manage_options';

		add_menu_page(
			__( 'UAE Lite', 'header-footer-elementor' ),
			__( 'UAE', 'header-footer-elementor' ),
			$capability,
			$menu_slug,
			[ $this, 'render' ],
			'none',
			'59'
		);

		// Add the Dashboard Submenu.
		add_submenu_page(
			$menu_slug,
			__( 'UAE Lite', 'header-footer-elementor' ),
			__( 'Dashboard', 'header-footer-elementor' ),
			$capability,
			$menu_slug,
			[ $this, 'render' ],
			1
		);

		// Add the Widgets Submenu.
		add_submenu_page(
			$menu_slug,
			__( 'Widgets', 'header-footer-elementor' ),
			__( 'Widgets', 'header-footer-elementor' ),
			$capability,
			$menu_slug . '#widgets',
			[ $this, 'render' ],
			9
		);

		// Add the Settings Submenu.
		add_submenu_page(
			$menu_slug,
			__( 'Settings', 'header-footer-elementor' ),
			__( 'Settings', 'header-footer-elementor' ),
			$capability,
			$menu_slug . '#settings',
			[ $this, 'render' ],
			9
		);

		// Add the Settings Submenu.
		add_submenu_page(
			$menu_slug,
			__( 'Onboarding', 'header-footer-elementor' ),
			__( 'Onboarding', 'header-footer-elementor' ),
			$capability,
			$menu_slug . '#onboarding',
			[ $this, 'render' ],
			9
		);
		

		// Add the Settings Submenu.
		add_submenu_page(
			$menu_slug,
			__( 'Onboarding', 'header-footer-elementor' ),
			__( 'Onboarding Success', 'header-footer-elementor' ),
			$capability,
			$menu_slug . '#onboardingsuccess',
			[ $this, 'render' ],
			9
		);
	}
	
	/**
	 * Open to Upgrade to Pro submenu link in new tab.
	 *
	 * @return void
	 * @since 2.4.2
	 */
	public function hfe_add_upgrade_to_pro_target_attr() {
		?>
		<script type="text/javascript">
			document.addEventListener('DOMContentLoaded', function () {
				// Upgrade link handler.
				// IMPORTANT: If this URL changes, also update it in the `add_upgrade_to_pro` function.
				const upgradeLink = document.querySelector('a[href*="https://ultimateelementor.com/pricing/?utm_source=wp-admin&utm_medium=menu&utm_campaign=uae-upgrade"]');
				if (upgradeLink) {
					upgradeLink.addEventListener('click', e => {
						e.preventDefault();
						window.open(upgradeLink.href, '_blank');
					});
				}

				// Get Help link handler.
				const getHelpLink = document.querySelector('a[href*="https://ultimateelementor.com/docs"]');
				if (getHelpLink) {
					getHelpLink.addEventListener('click', e => {
						e.preventDefault();
						window.open(getHelpLink.href, '_blank');
					});
				}
			});
		</script>
		<?php
	}

	/**
	 * Add Upgrade to pro menu item.
	 *
	 * @return void
	 * @since 2.4.2
	 */
	public function hfe_add_upgrade_to_pro() {
		
		// Add the Get Help Submenu.
		add_submenu_page(
			$this->menu_slug,
			__( 'Get Help', 'header-footer-elementor' ),
			__( 'Get Help', 'header-footer-elementor' ),
			'manage_options',
			'https://ultimateelementor.com/docs/',
			null,
			11
		);

		// Add the Upgrade to Pro Submenu.
		add_submenu_page(
			$this->menu_slug,
			__( 'Upgrade to Pro', 'header-footer-elementor' ),
			 __( 'Upgrade to Pro', 'header-footer-elementor' ),
			'manage_options',
			'https://ultimateelementor.com/pricing/?utm_source=wp-admin&utm_medium=menu&utm_campaign=uae-upgrade',
		);
	}
	/**
	 * Settings page.
	 *
	 * Call back function for add submenu page function.
	 *
	 * @since 2.2.1
	 * @return void
	 */
	public function render() {

		$menu_page_slug = ( ! empty( $_GET['page'] ) ) ? sanitize_text_field( wp_unslash( $_GET['page'] ) ) : $this->menu_slug; //phpcs:ignore WordPress.Security.NonceVerification.Recommended
		$page_action    = '';
   
		if ( isset( $_GET['action'] ) ) { //phpcs:ignore WordPress.Security.NonceVerification.Recommended
			$page_action = sanitize_text_field( wp_unslash( $_GET['action'] ) ); //phpcs:ignore WordPress.Security.NonceVerification.Recommended
			$page_action = str_replace( '_', '-', $page_action );
		}
   
		include_once HFE_DIR . 'inc/settings/admin-base.php';
	}

	/**
	 * Renders the admin settings content.
	 *
	 * @since 1.0.0
	 * @param string $menu_page_slug current page name.
	 * @param string $page_action current page action.
	 *
	 * @return void
	 */
	public function render_content() {

		if ( ! current_user_can( 'manage_options' ) ) {
			return;
		}

		if ( self::is_current_page( 'hfe' ) ) {
			include_once HFE_DIR . 'inc/settings/settings-app.php';
		}
	}

	
	/**
	 * Add settings link to the Plugins page.
	 *
	 * @since 1.6.0
	 *
	 * @param array $links Plugin row links.
	 *
	 * @return array $links
	 */
	public function settings_link( $links ) {
		$menu_setting = HFE_Helper::is_pro_active() ? 'uaepro' : 'hfe'; // Replace with your actual menu slug.

		$custom['settings'] = sprintf(
			'<a href="%s" aria-label="%s">%s</a>',
			esc_url(
				add_query_arg(
					[
						'page' => $menu_setting,
					],
					admin_url( 'admin.php' )
				) . '#dashboard'
			),
			esc_attr__( 'Go to UAE Settings page', 'header-footer-elementor' ),
			esc_html__( 'Settings', 'header-footer-elementor' )
		);

		return array_merge( $custom, (array) $links );
	}

	/**
	 * Different MIME type of different PHP version
	 *
	 * Filters the "real" file type of the given file.
	 *
	 * @since 1.2.9
	 *
	 * @param array  $defaults File data array containing 'ext', 'type', and
	 *                                          'proper_filename' keys.
	 * @param string $file                      Full path to the file.
	 * @param string $filename                  The name of the file (may differ from $file due to
	 *                                          $file being in a tmp directory).
	 * @param array  $mimes                     Key is the file extension with value as the mime type.
	 * @param string $real_mime                Real MIME type of the uploaded file.
	 */
	public function real_mime_types_5_1_0( $defaults, $file, $filename, $mimes, $real_mime ) {
		return $this->real_mimes( $defaults, $filename, $file );
	}

	/**
	 * Different MIME type of different PHP version
	 *
	 * Filters the "real" file type of the given file.
	 *
	 * @since 1.2.9
	 *
	 * @param array  $defaults File data array containing 'ext', 'type', and
	 *                                          'proper_filename' keys.
	 * @param string $file                      Full path to the file.
	 * @param string $filename                  The name of the file (may differ from $file due to
	 *                                          $file being in a tmp directory).
	 * @param array  $mimes                     Key is the file extension with value as the mime type.
	 */
	public function real_mime_types( $defaults, $file, $filename, $mimes ) {
		return $this->real_mimes( $defaults, $filename, $file );
	}

	/**
	 * Real Mime Type
	 *
	 * This function checks if the file is an SVG and sanitizes it accordingly. 
	 * PHPCS rules are disabled selectively to allow necessary file operations that are essential for handling SVG files safely.
	 *
	 * @since 1.2.15
	 *
	 * @param array  $defaults File data array containing 'ext', 'type', and
	 *                                          'proper_filename' keys.
	 * @param string $filename                  The name of the file (may differ from $file due to
	 *                                          $file being in a tmp directory).
	 * @param string $file file content.
	 */
	public function real_mimes( $defaults, $filename, $file ) {

		if ( 'svg' === pathinfo( $filename, PATHINFO_EXTENSION ) ) {
			// Perform SVG sanitization using the sanitize_svg function.
			$svg_content           = file_get_contents( $file ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents
			$sanitized_svg_content = $this->sanitize_svg( $svg_content );
			// phpcs:disable WordPress.WP.AlternativeFunctions.file_system_read_file_put_contents
			file_put_contents( $file, $sanitized_svg_content );
			// phpcs:enable WordPress.WP.AlternativeFunctions.file_system_read_file_put_contents

			// Update mime type and extension.
			$defaults['type'] = 'image/svg+xml';
			$defaults['ext']  = 'svg';
		}

		return $defaults;
	}
	/**
	 * Sanitizes SVG Code string.
	 *
	 * This function performs sanitization on SVG code to ensure that only safe tags and attributes are retained. 
	 * PHPCS rules are selectively disabled in specific areas to accommodate necessary file operations, compatibility with different PHP versions, and to enhance code readability:
	 * 
	 * - File operations are required for reading and writing SVG content.
	 * - PHP version compatibility is maintained by selectively disabling PHPCS rules for PHP version-specific functions.
	 * - Code readability is enhanced by selectively disabling PHPCS rules for specific areas.
	 * 
	 * @param string $original_content SVG code to sanitize.
	 * @return string|bool
	 * @since 1.0.7
	 * @phpstan-ignore-next-line
	 * */
	public function sanitize_svg( $original_content ) {

		if ( ! $original_content ) {
			return '';
		}

		// Define allowed tags and attributes.
		$allowed_tags = [
			'a',
			'circle',
			'clippath',
			'defs',
			'style',
			'desc',
			'ellipse',
			'fegaussianblur',
			'filter',
			'g',
			'image',
			'line',
			'lineargradient',
			'marker',
			'mask',
			'metadata',
			'path',
			'pattern',
			'polygon',
			'polyline',
			'radialgradient',
			'rect',
			'stop',
			'svg',
			'switch',
			'symbol',
			'text',
			'textpath',
			'title',
			'tspan',
			'use',
		];

		$allowed_attributes = [
			'class',
			'clip-path',
			'clip-rule',
			'fill',
			'fill-opacity',
			'fill-rule',
			'filter',
			'id',
			'mask',
			'opacity',
			'stroke',
			'stroke-dasharray',
			'stroke-dashoffset',
			'stroke-linecap',
			'stroke-linejoin',
			'stroke-miterlimit',
			'stroke-opacity',
			'stroke-width',
			'style',
			'systemlanguage',
			'transform',
			'href',
			'xlink:href',
			'xlink:title',
			'cx',
			'cy',
			'r',
			'requiredfeatures',
			'clippathunits',
			'type',
			'rx',
			'ry',
			'color-interpolation-filters',
			'stddeviation',
			'filterres',
			'filterunits',
			'height',
			'primitiveunits',
			'width',
			'x',
			'y',
			'font-size',
			'display',
			'font-family',
			'font-style',
			'font-weight',
			'text-anchor',
			'marker-end',
			'marker-mid',
			'marker-start',
			'x1',
			'x2',
			'y1',
			'y2',
			'gradienttransform',
			'gradientunits',
			'spreadmethod',
			'markerheight',
			'markerunits',
			'markerwidth',
			'orient',
			'preserveaspectratio',
			'refx',
			'refy',
			'viewbox',
			'maskcontentunits',
			'maskunits',
			'd',
			'patterncontentunits',
			'patterntransform',
			'patternunits',
			'points',
			'fx',
			'fy',
			'offset',
			'stop-color',
			'stop-opacity',
			'xmlns',
			'xmlns:se',
			'xmlns:xlink',
			'xml:space',
			'method',
			'spacing',
			'startoffset',
			'dx',
			'dy',
			'rotate',
			'textlength',
		];

		$is_encoded = false;

		$needle = "\x1f\x8b\x08";
		// phpcs:disable PHPCompatibility.ParameterValues.NewIconvMbstringCharsetDefault.NotSet
		if ( function_exists( 'mb_strpos' ) ) {
			$is_encoded = 0 === mb_strpos( $original_content, $needle );
		} else {
			$is_encoded = 0 === strpos( $original_content, $needle );
		}
		// phpcs:enable PHPCompatibility.ParameterValues.NewIconvMbstringCharsetDefault.NotSet

		if ( $is_encoded ) {
			$original_content = gzdecode( $original_content );
			if ( false === $original_content ) {
				return '';
			}
		}

		// Strip php tags.
		$content = preg_replace( '/<\?(=|php)(.+?)\?>/i', '', $original_content );
		$content = preg_replace( '/<\?(.*)\?>/Us', '', $content );
		$content = preg_replace( '/<\%(.*)\%>/Us', '', $content );

		if ( ( false !== strpos( $content, '<?' ) ) || ( false !== strpos( $content, '<%' ) ) ) {
			return '';
		}

		// Strip comments.
		$content = preg_replace( '/<!--(.*)-->/Us', '', $content );
		$content = preg_replace( '/\/\*(.*)\*\//Us', '', $content );

		if ( ( false !== strpos( $content, '<!--' ) ) || ( false !== strpos( $content, '/*' ) ) ) {
			return '';
		}

		// Strip line breaks.
		$content = preg_replace( '/\r|\n/', '', $content );

		// Find the start and end tags so we can cut out miscellaneous garbage.
		$start = strpos( $content, '<svg' );
		$end   = strrpos( $content, '</svg>' );
		if ( false === $start || false === $end ) {
			return '';
		}

		$content = substr( $content, $start, ( $end - $start + 6 ) );

		// If the server's PHP version is 8 or up, make sure to disable the ability to load external entities.
		$php_version_under_eight = version_compare( PHP_VERSION, '8.0.0', '<' );
		if ( $php_version_under_eight ) {
			// phpcs:disable Generic.PHP.DeprecatedFunctions.Deprecated
			$libxml_disable_entity_loader = libxml_disable_entity_loader( true );
			// phpcs:enable Generic.PHP.DeprecatedFunctions.Deprecated
		}
		// Suppress the errors.
		$libxml_use_internal_errors = libxml_use_internal_errors( true );

		// Create DOMDocument instance.
		$dom                      = new \DOMDocument();
		$dom->formatOutput        = false;
		$dom->preserveWhiteSpace  = false;
		$dom->strictErrorChecking = false;

		$open_svg = ! ! $content ? $dom->loadXML( $content ) : false;
		if ( ! $open_svg ) {
			return '';
		}

		// Strip Doctype.
		foreach ( $dom->childNodes as $child ) {
			if ( XML_DOCUMENT_TYPE_NODE === $child->nodeType && ! ! $child->parentNode ) {
				$child->parentNode->removeChild( $child );
			}
		}

		// Sanitize elements.
		$elements = $dom->getElementsByTagName( '*' );
		for ( $index = $elements->length - 1; $index >= 0; $index-- ) {
			$current_element = $elements->item( $index );
			if ( ! in_array( strtolower( $current_element->tagName ), $allowed_tags, true ) ) {
				$current_element->parentNode->removeChild( $current_element );
				continue;
			}

			// Validate allowed attributes.
			for ( $i = $current_element->attributes->length - 1; $i >= 0; $i-- ) {
				$attr_name           = $current_element->attributes->item( $i )->name;
				$attr_name_lowercase = strtolower( $attr_name );
				if ( ! in_array( $attr_name_lowercase, $allowed_attributes ) &&
					! preg_match( '/^aria-/', $attr_name_lowercase ) &&
					! preg_match( '/^data-/', $attr_name_lowercase ) ) {
					$current_element->removeAttribute( $attr_name );
					continue;
				}

				$attr_value = $current_element->attributes->item( $i )->value;
				if ( ! empty( $attr_value ) &&
					( preg_match( '/^((https?|ftp|file):)?\/\//i', $attr_value ) ||
					preg_match( '/base64|data|(?:java)?script|alert\(|window\.|document/i', $attr_value ) ) ) {
					$current_element->removeAttribute( $attr_name );
					continue;
				}
			}

			// Strip xlink:href.
			$xlink_href = $current_element->getAttributeNS( 'http://www.w3.org/1999/xlink', 'href' );
			if ( $xlink_href && strpos( $xlink_href, '#' ) !== 0 ) {
				$current_element->removeAttributeNS( 'http://www.w3.org/1999/xlink', 'href' );
			}

			// Strip use tag with external references.
			if ( strtolower( $current_element->tagName ) === 'use' ) {
				$xlink_href = $current_element->getAttributeNS( 'http://www.w3.org/1999/xlink', 'href' );
				if ( $current_element->parentNode && $xlink_href && strpos( $xlink_href, '#' ) !== 0 ) {
					$current_element->parentNode->removeChild( $current_element );
				}
			}
		}

		// Sanitize <style> tag content — strip @import and url() references.
		$styles = $dom->getElementsByTagName( 'style' );
		for ( $i = $styles->length - 1; $i >= 0; $i-- ) {
			$style_element = $styles->item( $i );
			$css           = $style_element->textContent;
			$css           = preg_replace( '/@import\s+[^;]+;?/i', '', $css );
			$css           = preg_replace( '/url\s*\([^)]+\)/i', '', $css );
			$style_element->textContent = $css;
		}

		$sanitized = $dom->saveXML( $dom->documentElement, LIBXML_NOEMPTYTAG );

		// Restore defaults.
		if ( $php_version_under_eight && isset( $libxml_disable_entity_loader ) && function_exists( 'libxml_disable_entity_loader' ) ) {
			// phpcs:disable Generic.PHP.DeprecatedFunctions.Deprecated
			libxml_disable_entity_loader( $libxml_disable_entity_loader );
			// phpcs:enable Generic.PHP.DeprecatedFunctions.Deprecated
		}
		libxml_use_internal_errors( $libxml_use_internal_errors );

		return $sanitized;
	}
}

new HFE_Settings_Page();
PK���\3I�V��gettext.potnu�[���msgid ""
msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"X-Generator: babel-plugin-makepot\n"

#: src/Components/Compare/FreevsPro.jsx:103
msgid "Special Features"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:105
msgid "Cross-Site Copy Paste"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:106
msgid "Presets"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:107
msgid "Particle Backgrounds"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:108
msgid "Party Propz"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:109
msgid "Scroll to Top"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:110
#: src/Components/Dashboard/UltimateFeatures.js:83
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:85
msgid "Display Conditions"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:111
msgid "Sticky Header"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:112
msgid "UAE Duplicator"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:113
msgid "Conditional Display"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:114
msgid "Reading Progress Bar"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:118
msgid "Dynamic Header & Footer Widgets"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:12
msgid "Essentials"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:120
msgid "Site Logo"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:121
msgid "Site Title"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:123
msgid "Page Title"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:124
msgid "Search"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:125
msgid "Site Tagline"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:126
msgid "Copyright"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:14
msgid "White Label Option"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:15
msgid "24x7 Premium Support"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:157
msgid "Navigation Menu"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:159
msgid "Basic"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:16
msgid "User Portal / User Login"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:160
msgid "Advanced"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:175
msgid "Free Vs Pro"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:178
msgid "Ultimate Addons for Elementor Pro offers 50+ widgets and features!"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:181
msgid ""
"Compare the popular features/widgets to find the best option for your "
"website."
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:20
msgid "Content Widgets"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:205
#: src/Components/Compare/UltimateCompare.jsx:109
#: src/Components/Dashboard/MyAccount.jsx:62
#: src/Components/Settings/Branding.jsx:303
#: src/Components/Widgets/UltimateWidgets.jsx:116
msgid "Upgrade Now"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:22
#: src/Components/Compare/UltimateCompare.jsx:17
#: src/Components/Widgets/UltimateWidgets.jsx:18
msgid "Advanced Heading"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:225
#: src/Components/NavMenu.js:251
#: src/Components/Onboarding/Features.jsx:193
msgid "Free"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:23
msgid "Business Hours"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:231
#: src/Components/Onboarding/Features.jsx:351
#: src/lib/bsf-learn/components/BsfLearnStep.js:136
msgid "Pro"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:24
msgid "Content Toggle"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:248
msgid "See all UAE Pro Features"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:25
msgid "Google Map"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:26
msgid "Image Gallery"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:27
#: src/Components/Compare/UltimateCompare.jsx:27
#: src/Components/Widgets/UltimateWidgets.jsx:28
msgid "Info Box"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:28
#: src/Components/Compare/UltimateCompare.jsx:12
#: src/Components/Onboarding/Features.jsx:243
#: src/Components/Widgets/UltimateWidgets.jsx:13
msgid "Modal Popup"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:29
msgid "Posts"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:30
msgid "Price List"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:31
msgid "Table"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:32
msgid "Info Card"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:33
msgid "Video"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:34
msgid "Video Gallery"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:35
msgid "Basic Posts"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:36
msgid "SVG Animator"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:37
msgid "Table of Contents"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:38
msgid "Counter"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:42
msgid "Creative Widgets"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:44
msgid "Before After Slider"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:45
msgid "Countdown Timer"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:46
msgid "Welcome Music"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:47
msgid "Dual Color Heading"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:48
msgid "Fancy Heading"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:49
msgid "Hotspots"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:50
msgid "Login Form"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:51
msgid "Marketing Button"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:52
msgid "Multi Buttons"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:53
msgid "Off-Canvas"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:54
msgid "Retina Image"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:55
msgid "Team Member"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:56
msgid "Price Box"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:57
msgid "Timeline"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:58
msgid "User Registration Form"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:59
msgid "Retina Logo"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:63
msgid "Form Styler"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:65
msgid "Contact Form 7 Styler"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:66
msgid "Gravity Form Styler"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:67
msgid "WP Fluent Forms Styler"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:68
msgid "WPForms Styler"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:72
msgid "SEO"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:74
msgid "Business Reviews"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:75
msgid "How To Schema"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:76
msgid "FAQ Schema"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:77
msgid "Breadcrumbs"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:81
msgid "WooCommerce"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:83
msgid "Woo – Add to Cart"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:84
msgid "Woo – Categories"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:85
msgid "Woo – Thank You Page"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:86
msgid "Woo – Checkout"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:87
msgid "Woo – Mini Cart"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:88
msgid "Woo – Products"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:90
msgid "Woo – Product Grid"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:91
msgid "Cart"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:95
msgid "Social"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:97
msgid "Instagram Feed"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:98
msgid "X Feed"
msgstr ""

#: src/Components/Compare/FreevsPro.jsx:99
msgid "Social Share"
msgstr ""

#: src/Components/Compare/UltimateCompare.jsx:22
#: src/Components/Widgets/UltimateWidgets.jsx:23
msgid "Post Layouts"
msgstr ""

#: src/Components/Compare/UltimateCompare.jsx:32
#: src/Components/Widgets/UltimateWidgets.jsx:33
msgid "Pricing Cards"
msgstr ""

#: src/Components/Compare/UltimateCompare.jsx:37
#: src/Components/Widgets/UltimateWidgets.jsx:38
msgid "Form Stylers and more..."
msgstr ""

#: src/Components/Compare/UltimateCompare.jsx:55
#: src/Components/Dashboard/UltimateFeatures.js:25
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:25
#: src/Components/Widgets/UltimateWidgets.jsx:54
msgid "Column Showcase"
msgstr ""

#: src/Components/Compare/UltimateCompare.jsx:68
#: src/Components/Widgets/UltimateWidgets.jsx:67
msgid "Unlock Ultimate Features"
msgstr ""

#: src/Components/Compare/UltimateCompare.jsx:76
#: src/Components/Widgets/UltimateWidgets.jsx:75
msgid "Create Stunning Designs with the Pro Version!"
msgstr ""

#: src/Components/Compare/UltimateCompare.jsx:80
#: src/Components/Widgets/UltimateWidgets.jsx:82
msgid ""
"Get access to advanced widgets and features to create the website that "
"stands out!"
msgstr ""

#: src/Components/Dashboard/ExtendWebsite.jsx:57
msgid "Super Charge Your Workflow"
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:101
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:111
msgid "Install"
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:107
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:114
msgid "Theme installation failed. Please try again later."
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:111
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:115
msgid "Plugin installation failed. Please try again later."
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:144
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:143
msgid "Activating..."
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:157
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:155
msgid "Activated"
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:232
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:293
msgid "Activate Theme"
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:239
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:297
msgid "Are you sure you want to switch your current theme to Astra?"
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:249
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:302
msgid "Yes"
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:255
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:305
msgid "Close"
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:295
msgid "Visit Site"
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:297
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:172
msgid "Activate"
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:298
msgid "Install & Activate"
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:71
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:93
msgid "Installing..."
msgstr ""

#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:82
#: src/Components/Onboarding/ExtendOnboardingWidget.jsx:101
msgid "Installed"
msgstr ""

#: src/Components/Dashboard/MyAccount.jsx:17
#: src/Components/Settings/Settings.jsx:30
msgid "My Account"
msgstr ""

#: src/Components/Dashboard/MyAccount.jsx:39
msgid "License Key"
msgstr ""

#: src/Components/Dashboard/MyAccount.jsx:40
msgid ""
"You are using the free version of Ultimate Addons for Elementor, no license "
"key is needed. "
msgstr ""

#: src/Components/Dashboard/MyAccount.jsx:44
msgid "Build Better Websites With Ultimate Addons Pro"
msgstr ""

#: src/Components/Dashboard/MyAccount.jsx:45
msgid ""
"Unlock advanced addons to power up Elementor - smarter widgets, smoother "
"workflows, and more creative freedom with UAE Pro."
msgstr ""

#: src/Components/Dashboard/QuickAccess.js:114
msgid "Request a Feature"
msgstr ""

#: src/Components/Dashboard/QuickAccess.js:130
msgid "Rate Us"
msgstr ""

#: src/Components/Dashboard/QuickAccess.js:20
msgid "Quick Access"
msgstr ""

#: src/Components/Dashboard/QuickAccess.js:53
msgid "VIP Priority Support"
msgstr ""

#: src/Components/Dashboard/QuickAccess.js:56
#: src/Components/Dashboard/WidgetItem.jsx:153
msgid "PRO"
msgstr ""

#: src/Components/Dashboard/QuickAccess.js:82
msgid "Knowledge Base"
msgstr ""

#: src/Components/Dashboard/QuickAccess.js:98
msgid "Help Centre"
msgstr ""

#: src/Components/Dashboard/TemplateSection.js:64
msgid "Build Websites 10x Faster with Templates"
msgstr ""

#: src/Components/Dashboard/TemplateSection.js:70
msgid ""
"Choose from our professionally designed websites to build your site faster, "
"with easy customization options."
msgstr ""

#: src/Components/Dashboard/TemplateSection.js:97
msgid "View Templates"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:102
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:104
msgid "Form & Pop-up Builder"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:106
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:108
msgid "Animation Effects"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:110
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:93
msgid "Bloggers Toolkit"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:114
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:116
msgid "Social Media Bundle"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:147
msgid "View Plans"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:41
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:43
msgid "Unlock Pro Widgets"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:54
msgid "Design Smarter with Ultimate Addons!"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:63
msgid ""
"Craft stunning websites faster with powerful widgets, advanced features, "
"and total flexibility."
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:75
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:77
msgid "50+ Widgets"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:79
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:81
msgid "Conversion Extensions"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:87
#: src/Components/Settings/Branding.jsx:42
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:89
msgid "White Label"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:91
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:112
msgid "WooCommerce Builder"
msgstr ""

#: src/Components/Dashboard/UltimateFeatures.js:98
#: src/Components/Widgets/UltimateWidgetFeatures.jsx:100
msgid "200+ Section Blocks"
msgstr ""

#: src/Components/Dashboard/WelcomeContainer.js:25
msgid "Welcome to Ultimate Addons for Elementor!"
msgstr ""

#: src/Components/Dashboard/WelcomeContainer.js:28
msgid ""
"Effortlessly design modern websites with UAE using our powerful range of "
"widgets & features. Get started by selecting an option based on your needs."
msgstr ""

#: src/Components/Dashboard/WelcomeContainer.js:60
#: src/Components/Onboarding/Build.jsx:197
msgid "Create Header/Footer"
msgstr ""

#: src/Components/Dashboard/WelcomeContainer.js:88
#: src/Components/Onboarding/Create.jsx:337
msgid "Create New Page"
msgstr ""

#: src/Components/Dashboard/WidgetItem.jsx:177
#: src/Components/NavMenu.js:219
#: src/Components/UpgradeNotice.jsx:81
msgid "Get Full Control"
msgstr ""

#: src/Components/Dashboard/WidgetItem.jsx:301
msgid "View Demo"
msgstr ""

#: src/Components/Dashboard/Widgets.jsx:100
msgid "Unlock All Features"
msgstr ""

#: src/Components/Dashboard/Widgets.jsx:164
msgid "View More Widgets"
msgstr ""

#: src/Components/Dashboard/Widgets.jsx:79
#: src/Components/Widgets/Features/FeatureWidgets.jsx:183
msgid "Widgets / Features"
msgstr ""

#: src/Components/HeaderLine.js:16
msgid "Formerly Elementor Header & Footer Builder"
msgstr ""

#: src/Components/Learn/Learn.jsx:32
#: src/Components/NavMenu.js:172
msgid "Learn"
msgstr ""

#: src/Components/Learn/Learn.jsx:35
msgid ""
"Master UAE with our step-by-step guide and tutorials. Create stunning "
"headers and footers with confidence."
msgstr ""

#: src/Components/Learn/Learn.jsx:46
msgid "Hide Video"
msgstr ""

#: src/Components/Learn/Learn.jsx:46
msgid "Watch Video"
msgstr ""

#: src/Components/NavMenu.js:131
msgid "Dashboard"
msgstr ""

#: src/Components/NavMenu.js:151
msgid "Header & Footer"
msgstr ""

#: src/Components/NavMenu.js:163
msgid "Widgets"
msgstr ""

#: src/Components/NavMenu.js:183
msgid "Settings"
msgstr ""

#: src/Components/NavMenu.js:192
msgid "Free vs Pro"
msgstr ""

#: src/Components/NavMenu.js:242
msgid "Version"
msgstr ""

#: src/Components/NavMenu.js:276
msgid "Useful Resources"
msgstr ""

#: src/Components/NavMenu.js:293
msgid "Getting Started"
msgstr ""

#: src/Components/NavMenu.js:306
msgid "How to use widgets"
msgstr ""

#: src/Components/NavMenu.js:319
msgid "How to use features"
msgstr ""

#: src/Components/NavMenu.js:332
msgid "How to use templates"
msgstr ""

#: src/Components/NavMenu.js:345
msgid "Contact us"
msgstr ""

#: src/Components/NavMenu.js:78
msgid "What's New?"
msgstr ""

#: src/Components/Onboarding/Build.jsx:141
msgid "You're all set! 🚀"
msgstr ""

#: src/Components/Onboarding/Build.jsx:144
msgid ""
"Start creating headers, footers, or pages with UAE and take your website to "
"the next level"
msgstr ""

#: src/Components/Onboarding/Build.jsx:150
msgid "Here’s how to get started:"
msgstr ""

#: src/Components/Onboarding/Build.jsx:154
msgid "Click on “Create” button"
msgstr ""

#: src/Components/Onboarding/Build.jsx:155
msgid ""
"Choose the type of template you want to create and customize the selected "
"option"
msgstr ""

#: src/Components/Onboarding/Build.jsx:156
msgid ""
"Use the Elementor editor to customize your template according to your "
"preferences using UAE widgets"
msgstr ""

#: src/Components/Onboarding/Build.jsx:157
msgid "Click “Publish” to make it live"
msgstr ""

#: src/Components/Onboarding/Build.jsx:222
msgid "Go To Dashboard"
msgstr ""

#: src/Components/Onboarding/Build.jsx:240
msgid "We have a special reward just for you!"
msgstr ""

#: src/Components/Onboarding/Build.jsx:244
msgid "This special offer is available only on this page and for limited time"
msgstr ""

#: src/Components/Onboarding/Build.jsx:258
msgid "Unlock My Surprise"
msgstr ""

#: src/Components/Onboarding/Build.jsx:275
msgid "Help make UAE Better"
msgstr ""

#: src/Components/Onboarding/Build.jsx:304
msgid ""
"Help us improve by sharing anonymous data about your website setup. This "
"includes non-sensitive info about plugins, themes, and settings, so we can "
"create a better product for you. Your privacy is always our top priority. "
"Learn more in our privacy policy."
msgstr ""

#: src/Components/Onboarding/Build.jsx:318
#: src/Components/Onboarding/Create.jsx:359
msgid "We have a special Reward just for you! 🎁"
msgstr ""

#: src/Components/Onboarding/Build.jsx:332
#: src/Components/Onboarding/Create.jsx:385
msgid ""
"Enter your details to get special offer that we have for you and stay "
"updated on UAE’s latest news and updates."
msgstr ""

#: src/Components/Onboarding/Build.jsx:340
#: src/Components/Onboarding/Create.jsx:401
#: src/Components/Onboarding/ExtendOnboarding.jsx:458
msgid "First Name"
msgstr ""

#: src/Components/Onboarding/Build.jsx:367
#: src/Components/Onboarding/Create.jsx:441
#: src/Components/Onboarding/ExtendOnboarding.jsx:483
msgid "Last Name"
msgstr ""

#: src/Components/Onboarding/Build.jsx:390
#: src/Components/Onboarding/Create.jsx:470
msgid "Your Email Address"
msgstr ""

#: src/Components/Onboarding/Build.jsx:43
#: src/Components/Onboarding/Create.jsx:57
#: src/Components/Onboarding/ExtendOnboarding.jsx:272
msgid "This field is required"
msgstr ""

#: src/Components/Onboarding/Build.jsx:434
#: src/Components/Onboarding/Create.jsx:529
msgid "Submit"
msgstr ""

#: src/Components/Onboarding/Build.jsx:50
#: src/Components/Onboarding/Create.jsx:66
msgid "Entered email address is invalid!"
msgstr ""

#: src/Components/Onboarding/Build.jsx:87
#: src/Components/Onboarding/Create.jsx:107
#: src/Components/Onboarding/ExtendOnboarding.jsx:101
#: src/Components/Settings/ThemeSupport.jsx:63
#: src/Components/Settings/UsageTracking.jsx:32
msgid "Settings saved successfully!"
msgstr ""

#: src/Components/Onboarding/Build.jsx:92
#: src/Components/Onboarding/Create.jsx:119
#: src/Components/Onboarding/ExtendOnboarding.jsx:107
#: src/Components/Settings/ThemeSupport.jsx:68
#: src/Components/Settings/UsageTracking.jsx:37
msgid "Failed to save settings!"
msgstr ""

#: src/Components/Onboarding/Create.jsx:179
msgid "You’re All Set to Start Creating! 🚀"
msgstr ""

#: src/Components/Onboarding/Create.jsx:188
msgid ""
"Ultimate Addons is ready to supercharge your Elementor workflow! Build "
"faster, cleaner, and more creatively — with complete control over your site."
msgstr ""

#: src/Components/Onboarding/Create.jsx:194
msgid "What You Can Do Next:"
msgstr ""

#: src/Components/Onboarding/Create.jsx:216
msgid "Build a custom header"
msgstr ""

#: src/Components/Onboarding/Create.jsx:232
msgid "Design your site footer"
msgstr ""

#: src/Components/Onboarding/Create.jsx:248
msgid "Create a new page"
msgstr ""

#: src/Components/Onboarding/Create.jsx:291
msgid "Create New Header"
msgstr ""

#: src/Components/Onboarding/Create.jsx:312
msgid "Create New Footer"
msgstr ""

#: src/Components/Onboarding/ExtendOnboarding.jsx:268
msgid "Please enter a valid email address"
msgstr ""

#: src/Components/Onboarding/ExtendOnboarding.jsx:366
msgid "Recommended Essentials"
msgstr ""

#: src/Components/Onboarding/ExtendOnboarding.jsx:377
msgid ""
"These free plugins add essential features to your website and help speed up "
"your workflow. Select the plugins you want to install."
msgstr ""

#: src/Components/Onboarding/ExtendOnboarding.jsx:450
msgid "Get Important Notifications and Updates"
msgstr ""

#: src/Components/Onboarding/ExtendOnboarding.jsx:509
msgid "Email Address"
msgstr ""

#: src/Components/Onboarding/ExtendOnboarding.jsx:543
msgid ""
"Stay in the loop and help shape Ultimate Addons for Elementor! Get feature "
"updates, and help us build a better Ultimate Addons for Elementor by "
"sharing how you use the plugin. "
msgstr ""

#: src/Components/Onboarding/ExtendOnboarding.jsx:552
msgid " Privacy Policy"
msgstr ""

#: src/Components/Onboarding/ExtendOnboarding.jsx:568
#: src/Components/Onboarding/Features.jsx:389
msgid "Back"
msgstr ""

#: src/Components/Onboarding/ExtendOnboarding.jsx:580
#: src/Components/Onboarding/Features.jsx:401
msgid "Skip"
msgstr ""

#: src/Components/Onboarding/ExtendOnboarding.jsx:593
#: src/Components/Onboarding/Features.jsx:432
msgid "Next"
msgstr ""

#: src/Components/Onboarding/Features.jsx:100
msgid "Select Your Features"
msgstr ""

#: src/Components/Onboarding/Features.jsx:109
msgid ""
"Unlock more design control, faster setup, and powerful customization so you "
"can build a better website, effortlessly."
msgstr ""

#: src/Components/Onboarding/Features.jsx:125
msgid "Header & Footer Builder"
msgstr ""

#: src/Components/Onboarding/Features.jsx:145
msgid ""
"Assign headers and footers to specific pages or post types. This gives "
"users complete layout control, something typically locked behind Pro "
"plugins."
msgstr ""

#: src/Components/Onboarding/Features.jsx:187
msgid "Mega Menu & Navigation Widget"
msgstr ""

#: src/Components/Onboarding/Features.jsx:204
msgid ""
"Save hours by copying Elementor sections, widgets, or pages from one "
"website to another no need to rebuild layouts from scratch."
msgstr ""

#: src/Components/Onboarding/Features.jsx:296
msgid "WooCommerce Widgets"
msgstr ""

#: src/Components/Onboarding/Features.jsx:345
msgid "50+ Premium Widgets & 200+ Templates"
msgstr ""

#: src/Components/Onboarding/Features.jsx:361
msgid ""
"Design eye-catching popups directly in Elementor collect leads, display "
"promotions, or show messages without needing a separate popup plugin."
msgstr ""

#: src/Components/Onboarding/Features.jsx:415
msgid "Upgrade"
msgstr ""

#: src/Components/Onboarding/Features.jsx:447
msgid "You've picked Pro features upgrade to start using them."
msgstr ""

#: src/Components/Onboarding/WelcomeNew.jsx:124
msgid "Let's Get Started"
msgstr ""

#: src/Components/Onboarding/WelcomeNew.jsx:16
msgid "Welcome to UAE"
msgstr ""

#: src/Components/Onboarding/WelcomeNew.jsx:23
msgid "Your Ultimate Elementor Addons to build modern Elementor Websites."
msgstr ""

#: src/Components/Onboarding/WelcomeNew.jsx:59
msgid "No bloat - disable unused widgets with one click"
msgstr ""

#: src/Components/Onboarding/WelcomeNew.jsx:75
msgid "Design headers & footers exactly where you want them"
msgstr ""

#: src/Components/Onboarding/WelcomeNew.jsx:91
msgid "Reliable support from experts when you need it"
msgstr ""

#: src/Components/Onboarding/index.js:151
msgid "Exit Guided Setup"
msgstr ""

#: src/Components/Settings/Branding.jsx:107
msgid "https://www.brainstormforce.com"
msgstr ""

#: src/Components/Settings/Branding.jsx:122
msgid "Plugin Name"
msgstr ""

#: src/Components/Settings/Branding.jsx:129
msgid "Ultimate Addons"
msgstr ""

#: src/Components/Settings/Branding.jsx:142
msgid "Plugin Short Name"
msgstr ""

#: src/Components/Settings/Branding.jsx:149
msgid "UAE"
msgstr ""

#: src/Components/Settings/Branding.jsx:163
msgid "Plugin Description"
msgstr ""

#: src/Components/Settings/Branding.jsx:170
msgid "Ultimate Addons is a premium extension for Elementor..."
msgstr ""

#: src/Components/Settings/Branding.jsx:190
msgid "Replace or Hide Logo"
msgstr ""

#: src/Components/Settings/Branding.jsx:192
msgid ""
"Enable this option to hide the default logo or replace it with your own "
"logo. (Note: To hide the logo, leave the logo URL field empty.)"
msgstr ""

#: src/Components/Settings/Branding.jsx:206
msgid "Enter logo URL to replace"
msgstr ""

#: src/Components/Settings/Branding.jsx:214
msgid "https://www.example.com/logo.svg"
msgstr ""

#: src/Components/Settings/Branding.jsx:233
msgid "Hide White Label Settings"
msgstr ""

#: src/Components/Settings/Branding.jsx:235
msgid ""
"Enabling this option will hide the White Label settings. To access it "
"again, re-activate the plugin."
msgstr ""

#: src/Components/Settings/Branding.jsx:248
msgid "Elementor Editor Area"
msgstr ""

#: src/Components/Settings/Branding.jsx:253
msgid "Show Help Links"
msgstr ""

#: src/Components/Settings/Branding.jsx:255
msgid "Display internal help links in widget editor area."
msgstr ""

#: src/Components/Settings/Branding.jsx:282
msgid "White Label Available in UAE Pro"
msgstr ""

#: src/Components/Settings/Branding.jsx:286
msgid "Remove UAE branding and customize the dashboard with your agency details."
msgstr ""

#: src/Components/Settings/Branding.jsx:74
msgid "Plugins Details"
msgstr ""

#: src/Components/Settings/Branding.jsx:75
msgid ""
"You can change the author name and plugin details that are displayed in the "
"WordPress backend."
msgstr ""

#: src/Components/Settings/Branding.jsx:87
msgid "Brainstorm Force"
msgstr ""

#: src/Components/Settings/Settings.jsx:49
msgid "Editor"
msgstr ""

#: src/Components/Settings/Settings.jsx:50
#: src/Components/Settings/ThemeSupport.jsx:80
msgid "Theme Support"
msgstr ""

#: src/Components/Settings/Settings.jsx:65
msgid "Custom SVG"
msgstr ""

#: src/Components/Settings/Settings.jsx:69
msgid "Utilities"
msgstr ""

#: src/Components/Settings/Settings.jsx:70
#: src/Components/Settings/VersionControl.jsx:45
msgid "Version Control"
msgstr ""

#: src/Components/Settings/Settings.jsx:91
msgid "Branding"
msgstr ""

#: src/Components/Settings/ThemeSupport.jsx:10
msgid ""
"This option will automatically replace your theme's header and footer files "
"with custom templates from the plugin. It works with most themes and is "
"selected by default."
msgstr ""

#: src/Components/Settings/ThemeSupport.jsx:140
msgid "Note:"
msgstr ""

#: src/Components/Settings/ThemeSupport.jsx:140
msgid ""
"If neither option works, please contact your theme author to add support "
"for this plugin."
msgstr ""

#: src/Components/Settings/ThemeSupport.jsx:15
msgid "Option 2"
msgstr ""

#: src/Components/Settings/ThemeSupport.jsx:16
msgid ""
"This option hides your theme's header and footer using CSS and displays "
"custom templates from the plugin. Use this if Option 1 causes layout issues."
msgstr ""

#: src/Components/Settings/ThemeSupport.jsx:9
msgid "Option 1 (Recommended)"
msgstr ""

#: src/Components/Settings/ThemeSupport.jsx:95
msgid "Select Option to Add Theme Support"
msgstr ""

#: src/Components/Settings/ThemeSupport.jsx:97
msgid ""
"To ensure compatibility between the header/footer and your theme, please "
"choose one of the following options to enable theme support:"
msgstr ""

#: src/Components/Settings/UsageTracking.jsx:68
msgid ""
"Help shape the future of Ultimate Addons for Elementor. Share how you use "
"the plugin so we can build features that matter, fix issues faster, and "
"make smarter decisions. "
msgstr ""

#: src/Components/Settings/UsageTracking.jsx:78
#: src/Components/Templates/ExploreTemplates.jsx:227
msgid "Learn More"
msgstr ""

#: src/Components/Settings/VersionControl.jsx:119
msgid "Rollback to Previous Version"
msgstr ""

#: src/Components/Settings/VersionControl.jsx:129
msgid "Rollback"
msgstr ""

#: src/Components/Settings/VersionControl.jsx:132
msgid "Cancel"
msgstr ""

#: src/Components/Settings/VersionControl.jsx:66
msgid ""
"Experiencing an issue with current version? Roll back to a previous version "
"to help troubleshoot the issue."
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:134
msgid "Activating Starter Templates..."
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:136
msgid "Activated Starter Templates"
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:145
msgid "Activate Starter Templates"
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:169
msgid "Design Your Website in Minutes"
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:17
msgid "250+ templates for every niche"
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:178
msgid "Build your website faster using our prebuilt templates"
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:183
msgid ""
"Stop building your site from scratch. Use our professional templates for "
"your stunning website. It is easy to customize and completely responsive. "
"Explore hundreds of designs and bring your vision to life in no time."
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:216
msgid "Explore Templates"
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:22
msgid "Modern, timeless designs"
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:27
msgid "Full design flexibility for easy customization"
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:32
msgid "100% responsive across all devices"
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:81
msgid "Installing Starter Templates..."
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:90
msgid "Installed Starter Templates"
msgstr ""

#: src/Components/Templates/ExploreTemplates.jsx:93
msgid "Install Starter Templates"
msgstr ""

#: src/Components/UpgradeNotice.jsx:67
msgid "Close Upgrade Notice"
msgstr ""

#: src/Components/UpgradeNotice.jsx:72
msgid "Design Without Limits: Access the features that top WordPress sites run on."
msgstr ""

#: src/Components/Widgets/Features/FeatureWidgets.jsx:195
msgid "Search..."
msgstr ""

#: src/Components/Widgets/Features/FeatureWidgets.jsx:229
msgid "Activate All"
msgstr ""

#: src/Components/Widgets/Features/FeatureWidgets.jsx:245
msgid "Deactivate Unused"
msgstr ""

#: src/Components/Widgets/Features/FeatureWidgets.jsx:253
msgid "Deactivating..."
msgstr ""

#: src/Components/Widgets/Features/FeatureWidgets.jsx:253
msgid "Deactivate All"
msgstr ""

#: src/Components/Widgets/UltimateWidgetFeatures.jsx:149
msgid "Start Building Smarter"
msgstr ""

#: src/Components/Widgets/UltimateWidgetFeatures.jsx:56
msgid "Bring Your Vision to Life with UAE Pro"
msgstr ""

#: src/Components/Widgets/UltimateWidgetFeatures.jsx:65
msgid ""
"Streamline your workflow, skip the repetitive tasks, and build modern, "
"high-performance websites."
msgstr ""

#: src/Components/Widgets/UltimateWidgets.jsx:119
msgid "Compare Free vs Pro"
msgstr ""

#: src/lib/bsf-learn/components/BsfLearnChapters.js:102
#. %1$d is the number of completed steps, %2$d is the total number of steps.
msgid "%1$d of %2$d steps completed"
msgstr ""

#: src/lib/bsf-learn/components/BsfLearnChapters.js:89
#: src/lib/bsf-learn/components/BsfLearnStep.js:146
msgid "Learn how"
msgstr ""

#: src/lib/bsf-learn/components/BsfLearnStep.js:165
msgid "Set Up"
msgstr ""

#: src/lib/bsf-learn/components/BsfLearnStep.js:86
msgid "Mark as incomplete"
msgstr ""

#: src/lib/bsf-learn/components/BsfLearnStep.js:87
msgid "Mark as complete"
msgstr ""

#: src/lib/bsf-learn/components/learn-how/Checklist.js:25
#. %s is the step number.
msgid "Step %d:"
msgstr ""

#: src/lib/bsf-learn/useBsfLearn.js:78
msgid "Failed to save progress. Please try again."
msgstr ""PK���\��;���.gitattributesnu�[���# Exclude from git archive / GitHub releases
/internal-docs/ export-ignore
/CLAUDE.md export-ignore
/.github/ export-ignore
/.wordpress-org/ export-ignore
/tests/ export-ignore
/node_modules/ export-ignore
/src/ export-ignore
/bin/ export-ignore
PK���\{}f:��tailwind.config.jsnu�[���const withTW = require("@bsf/force-ui/withTW");
// figma colr
module.exports = withTW({
	content: ["./src/**/*.{js, jsx}"],
	theme: {
		extend: {
			colors: {
				"button-primary": "#2563EB",
				"button-primary-hover": "#1D4ED8",

				"brand-primary-600": "#5C2EDE",
				"brand-800": "#6B21A8",
				"brand-50": "#EFF6FF",

				"border-interactive": "#2563EB",
				"border-subtle": "#E5E7EB",

				focus: "#9333EA",
				"focus-border": "#D8B4FE",

				"toggle-on": "#793BFF",
				"toggle-on-border": "#C084FC",
				"toggle-on-hover": "#793BFF",

				"background-primary": "#FFFFFF",
				"background-secondary": "#F3F4F6",

				"field-border": "#E5E7EB",
				"field-label": "#111827",
				"field-primary-background": "#F9FAFB",
				"field-secondary-background": "#FFFFFF",

				"icon-primary": "#111827",
				"icon-secondary": "#4B5563",

				"background-gray": "#F9FAFB",
			},
			fontSize: {
				xxs: "0.6875rem", // 11px
			},
			lineHeight: {
				2.6: "0.6875rem", // 11px
				9.5: "2.375rem", // 38px
			},
			boxShadow: {
				"content-wrapper":
					"0px 1px 1px 0px #0000000F, 0px 1px 2px 0px #0000001A",
				"container-item": "0px 1.5px 1px 0px rgba(0, 0, 0, 0.05)", // Custom shadow
			},
			spacing: {
				"slide-over-container": "566px",
			},
			fontFamily: {
				figtree: ["Figtree", "sans-serif"],
			},
		},
	},
	plugins: [],
	corePlugins: {
		preflight: false,
	},
	important: ":is(#hfe-settings-app, [data-floating-ui-portal])",
});
PK���\�,��postcss.config.jsnu�[���module.exports = {
	plugins: {
		tailwindcss: {}, // Enables Tailwind CSS
		autoprefixer: {}, // Enables Autoprefixer for cross-browser support
	},
};
PK���\�Y9�����build/main-rtl.cssnu�[���@import url(https://fonts.googleapis.com/css?family=Josefin+Sans);
/* figtree-latin-ext-400-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/410fbc8e227942f4d606.woff2) format('woff2'), url(/f5a809ac576251495a72.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* figtree-latin-400-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/8fbf595b398521a13438.woff2) format('woff2'), url(/7d00956da27af3e30b78.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* figtree-latin-ext-400-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/410fbc8e227942f4d606.woff2) format('woff2'), url(/f5a809ac576251495a72.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* figtree-latin-400-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/8fbf595b398521a13438.woff2) format('woff2'), url(/7d00956da27af3e30b78.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* figtree-latin-ext-400-italic */
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(/022beb5767ebf3d54c2c.woff2) format('woff2'), url(/815fd49f3f94a120685f.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* figtree-latin-400-italic */
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(/0c658d1bd687fc3b8ae1.woff2) format('woff2'), url(/f2b6d272f68d05e1513a.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
*, ::before, ::after{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
::backdrop{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
.container{
    width: 100%;
}
@media (min-width: 640px){
    .container{
        max-width: 640px;
    }
}
@media (min-width: 768px){
    .container{
        max-width: 768px;
    }
}
@media (min-width: 1024px){
    .container{
        max-width: 1024px;
    }
}
@media (min-width: 1280px){
    .container{
        max-width: 1280px;
    }
}
@media (min-width: 1536px){
    .container{
        max-width: 1536px;
    }
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pointer-events-none{
    pointer-events: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pointer-events-auto{
    pointer-events: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .visible{
    visibility: visible;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .static{
    position: static;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .fixed{
    position: fixed;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .absolute{
    position: absolute;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .relative{
    position: relative;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-inset-1{
    inset: -0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inset-0{
    inset: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inset-x-0{
    right: 0px;
    left: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inset-y-0{
    top: 0px;
    bottom: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-bottom-px{
    bottom: -1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bottom-0{
    bottom: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bottom-1{
    bottom: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bottom-1\.5{
    bottom: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .left-0{
    right: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .left-1\/2{
    right: 50%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .left-\[calc\(50\%\+10px\)\]{
    right: calc(50% + 10px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .left-\[calc\(50\%\+12px\)\]{
    right: calc(50% + 12px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .left-\[calc\(50\%\+14px\)\]{
    right: calc(50% + 14px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-0{
    left: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-1\/2{
    left: 50%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-3{
    left: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-4{
    left: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-\[calc\(-50\%\+10px\)\]{
    left: calc(-50% + 10px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-\[calc\(-50\%\+12px\)\]{
    left: calc(-50% + 12px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-\[calc\(-50\%\+14px\)\]{
    left: calc(-50% + 14px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-0{
    top: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-2\.5{
    top: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-2\/4{
    top: 50%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-3{
    top: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-3\.5{
    top: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-4{
    top: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-full{
    top: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-z-10{
    z-index: -10;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .z-10{
    z-index: 10;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .z-20{
    z-index: 20;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .z-999999{
    z-index: 999999;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .z-\[1\]{
    z-index: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .z-auto{
    z-index: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-1{
    order: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-10{
    order: 10;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-11{
    order: 11;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-12{
    order: 12;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-2{
    order: 2;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-3{
    order: 3;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-4{
    order: 4;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-5{
    order: 5;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-6{
    order: 6;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-7{
    order: 7;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-8{
    order: 8;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-9{
    order: 9;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-first{
    order: -9999;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-last{
    order: 9999;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-none{
    order: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-1{
    grid-column: span 1 / span 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-10{
    grid-column: span 10 / span 10;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-11{
    grid-column: span 11 / span 11;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-12{
    grid-column: span 12 / span 12;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-2{
    grid-column: span 2 / span 2;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-3{
    grid-column: span 3 / span 3;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-4{
    grid-column: span 4 / span 4;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-5{
    grid-column: span 5 / span 5;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-6{
    grid-column: span 6 / span 6;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-7{
    grid-column: span 7 / span 7;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-8{
    grid-column: span 8 / span 8;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-9{
    grid-column: span 9 / span 9;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-1{
    grid-column-start: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-10{
    grid-column-start: 10;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-11{
    grid-column-start: 11;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-12{
    grid-column-start: 12;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-2{
    grid-column-start: 2;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-3{
    grid-column-start: 3;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-4{
    grid-column-start: 4;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-5{
    grid-column-start: 5;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-6{
    grid-column-start: 6;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-7{
    grid-column-start: 7;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-8{
    grid-column-start: 8;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-9{
    grid-column-start: 9;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .m-0{
    margin: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mx-0{
    margin-right: 0px;
    margin-left: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mx-1{
    margin-right: 0.25rem;
    margin-left: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mx-2{
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mx-auto{
    margin-right: auto;
    margin-left: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .my-0{
    margin-top: 0px;
    margin-bottom: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .my-0\.5{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-mt-2{
    margin-top: -0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mb-0{
    margin-bottom: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mb-1{
    margin-bottom: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mb-2{
    margin-bottom: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mb-4{
    margin-bottom: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mb-6{
    margin-bottom: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-0{
    margin-right: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-1{
    margin-right: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-10{
    margin-right: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-2{
    margin-right: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-4{
    margin-right: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-7{
    margin-right: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-8{
    margin-right: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-auto{
    margin-right: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-0{
    margin-left: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-0\.5{
    margin-left: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-1{
    margin-left: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-10{
    margin-left: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-2{
    margin-left: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-3{
    margin-left: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-6{
    margin-left: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-7{
    margin-left: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-0{
    margin-top: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-1{
    margin-top: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-1\.5{
    margin-top: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-14{
    margin-top: 3.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-2{
    margin-top: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-2\.5{
    margin-top: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-4{
    margin-top: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-\[1px\]{
    margin-top: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-\[2px\]{
    margin-top: 2px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-auto{
    margin-top: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .box-border{
    box-sizing: border-box;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .block{
    display: block;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inline-block{
    display: inline-block;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inline{
    display: inline;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex{
    display: flex;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inline-flex{
    display: inline-flex;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .table{
    display: table;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flow-root{
    display: flow-root;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid{
    display: grid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .contents{
    display: contents;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .hidden{
    display: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .aspect-video{
    aspect-ratio: 16 / 9;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-1\.5{
    width: 0.375rem;
    height: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-10{
    width: 2.5rem;
    height: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-12{
    width: 3rem;
    height: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-2{
    width: 0.5rem;
    height: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-2\.5{
    width: 0.625rem;
    height: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-3{
    width: 0.75rem;
    height: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-3\.5{
    width: 0.875rem;
    height: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-4{
    width: 1rem;
    height: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-5{
    width: 1.25rem;
    height: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-6{
    width: 1.5rem;
    height: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-7{
    width: 1.75rem;
    height: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-8{
    width: 2rem;
    height: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-0{
    height: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-1{
    height: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-10{
    height: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-12{
    height: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-14{
    height: 3.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-2{
    height: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-2\.5{
    height: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-3{
    height: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-4{
    height: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-5{
    height: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-6{
    height: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-64{
    height: 16rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-7{
    height: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-8{
    height: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-\[0\.5px\]{
    height: 0.5px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-\[40px\]{
    height: 40px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-auto{
    height: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-fit{
    height: -moz-fit-content;
    height: fit-content;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-full{
    height: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-px{
    height: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-screen{
    height: 100vh;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-h-\[10\.75rem\]{
    max-height: 10.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-h-\[13\.5rem\]{
    max-height: 13.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-h-\[85vh\]{
    max-height: 85vh;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-16{
    min-height: 4rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-5{
    min-height: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-6{
    min-height: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-\[2\.5rem\]{
    min-height: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-\[2rem\]{
    min-height: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-\[3rem\]{
    min-height: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-fit{
    min-height: -moz-fit-content;
    min-height: fit-content;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-full{
    min-height: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-screen{
    min-height: 100vh;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-0{
    width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1{
    width: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/10{
    width: 10%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/11{
    width: 9.0909091%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/12{
    width: 8.3333333%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/2{
    width: 50%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/3{
    width: 33.333333%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/4{
    width: 25%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/5{
    width: 20%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/6{
    width: 16.666667%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/7{
    width: 14.2857143%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/8{
    width: 12.5%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/9{
    width: 11.1111111%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-10{
    width: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-11{
    width: 2.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-120{
    width: 30rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-14{
    width: 3.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-16{
    width: 4rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-2{
    width: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-2\.5{
    width: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-2\/3{
    width: 66.666667%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-3{
    width: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-4{
    width: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-5{
    width: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-6{
    width: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-60{
    width: 15rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-72{
    width: 18rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-8{
    width: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-80{
    width: 20rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-96{
    width: 24rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[104px\]{
    width: 104px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[18\.5rem\]{
    width: 18.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[22\.5rem\]{
    width: 22.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[4\.375rem\]{
    width: 4.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[696px\]{
    width: 696px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[90vw\]{
    width: 90vw;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[calc\(100\%\+0\.75rem\)\]{
    width: calc(100% + 0.75rem);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[calc\(100\%\+1rem\)\]{
    width: calc(100% + 1rem);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[calc\(100\%_-_5\.5rem\)\]{
    width: calc(100% - 5.5rem);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-auto{
    width: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-fit{
    width: -moz-fit-content;
    width: fit-content;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-full{
    width: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-10{
    min-width: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-12{
    min-width: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-40{
    min-width: 10rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-6{
    min-width: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-8{
    min-width: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-80{
    min-width: 20rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-\[180px\]{
    min-width: 180px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-\[8rem\]{
    min-width: 8rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-full{
    min-width: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-32{
    max-width: 8rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-5xl{
    max-width: 64rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-80{
    max-width: 20rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-96{
    max-width: 24rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-full{
    max-width: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-lg{
    max-width: 32rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-xs{
    max-width: 20rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-1{
    flex: 1 1 0%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-shrink-0{
    flex-shrink: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shrink{
    flex-shrink: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shrink-0{
    flex-shrink: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-grow{
    flex-grow: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grow{
    flex-grow: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grow-0{
    flex-grow: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .table-fixed{
    table-layout: fixed;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-collapse{
    border-collapse: collapse;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-separate{
    border-collapse: separate;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-spacing-0{
    --tw-border-spacing-x: 0px;
    --tw-border-spacing-y: 0px;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .origin-left{
    transform-origin: right;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-translate-x-2\/4{
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-translate-y-2\/4{
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .translate-x-\[-0\.375rem\]{
    --tw-translate-x: -0.375rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .translate-x-\[-0\.5rem\]{
    --tw-translate-x: -0.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rotate-0{
    --tw-rotate: 0deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rotate-180{
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transform{
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse{
    50%{
        opacity: .5;
    }
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .animate-pulse{
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin{
    to{
        transform: rotate(-360deg);
    }
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .animate-spin{
    animation: spin 1s linear infinite;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .cursor-auto{
    cursor: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .cursor-default{
    cursor: default;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .cursor-not-allowed{
    cursor: not-allowed;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .cursor-pointer{
    cursor: pointer;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .resize{
    resize: both;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .list-disc{
    list-style-type: disc;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .list-none{
    list-style-type: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .auto-cols-auto{
    grid-auto-columns: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-flow-row{
    grid-auto-flow: row;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-flow-col{
    grid-auto-flow: column;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-flow-row-dense{
    grid-auto-flow: row dense;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-flow-col-dense{
    grid-auto-flow: column dense;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .auto-rows-auto{
    grid-auto-rows: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-subgrid{
    grid-template-columns: subgrid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-rows-\[auto_1fr\]{
    grid-template-rows: auto 1fr;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-rows-subgrid{
    grid-template-rows: subgrid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-row{
    flex-direction: row;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-row-reverse{
    flex-direction: row-reverse;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-col{
    flex-direction: column;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-col-reverse{
    flex-direction: column-reverse;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-wrap{
    flex-wrap: wrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-wrap-reverse{
    flex-wrap: wrap-reverse;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-nowrap{
    flex-wrap: nowrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .place-content-center{
    place-content: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .content-center{
    align-content: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .content-start{
    align-content: flex-start;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .items-start{
    align-items: flex-start;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .items-end{
    align-items: flex-end;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .items-center{
    align-items: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .items-baseline{
    align-items: baseline;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .items-stretch{
    align-items: stretch;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-normal{
    justify-content: normal;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-start{
    justify-content: flex-start;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-end{
    justify-content: flex-end;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-center{
    justify-content: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-between{
    justify-content: space-between;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-around{
    justify-content: space-around;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-evenly{
    justify-content: space-evenly;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-stretch{
    justify-content: stretch;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-0{
    gap: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-0\.5{
    gap: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-1{
    gap: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-1\.5{
    gap: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-2{
    gap: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-2\.5{
    gap: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-3{
    gap: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-4{
    gap: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-5{
    gap: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-6{
    gap: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-8{
    gap: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-x-2{
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-x-4{
    -moz-column-gap: 1rem;
         column-gap: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-x-5{
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-x-6{
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-x-8{
    -moz-column-gap: 2rem;
         column-gap: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-y-2{
    row-gap: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-y-4{
    row-gap: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-y-5{
    row-gap: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-y-6{
    row-gap: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-y-8{
    row-gap: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-x-1 > :not([hidden]) ~ :not([hidden])){
    --tw-space-x-reverse: 0;
    margin-left: calc(0.25rem * var(--tw-space-x-reverse));
    margin-right: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-y-0\.5 > :not([hidden]) ~ :not([hidden])){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-y-1 > :not([hidden]) ~ :not([hidden])){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-y-2 > :not([hidden]) ~ :not([hidden])){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-y-3 > :not([hidden]) ~ :not([hidden])){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-y-4 > :not([hidden]) ~ :not([hidden])){
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.divide-x-0 > :not([hidden]) ~ :not([hidden])){
    --tw-divide-x-reverse: 0;
    border-left-width: calc(0px * var(--tw-divide-x-reverse));
    border-right-width: calc(0px * calc(1 - var(--tw-divide-x-reverse)));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.divide-y > :not([hidden]) ~ :not([hidden])){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.divide-y-0\.5 > :not([hidden]) ~ :not([hidden])){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(0.5px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(0.5px * var(--tw-divide-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.divide-solid > :not([hidden]) ~ :not([hidden])){
    border-style: solid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.divide-border-subtle > :not([hidden]) ~ :not([hidden])){
    --tw-divide-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .self-start{
    align-self: flex-start;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .self-end{
    align-self: flex-end;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .self-center{
    align-self: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .self-stretch{
    align-self: stretch;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .self-baseline{
    align-self: baseline;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-self-auto{
    justify-self: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-self-start{
    justify-self: start;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-self-end{
    justify-self: end;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-self-center{
    justify-self: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-self-stretch{
    justify-self: stretch;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-auto{
    overflow: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-hidden{
    overflow: hidden;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-clip{
    overflow: clip;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-visible{
    overflow: visible;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-x-auto{
    overflow-x: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-y-auto{
    overflow-y: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-x-hidden{
    overflow-x: hidden;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .whitespace-nowrap{
    white-space: nowrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-wrap{
    text-wrap: wrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-nowrap{
    text-wrap: nowrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded{
    border-radius: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-full{
    border-radius: 9999px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-lg{
    border-radius: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-md{
    border-radius: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-none{
    border-radius: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-sm{
    border-radius: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-xl{
    border-radius: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-b-none{
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-t-lg{
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-bl{
    border-bottom-right-radius: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-bl-md{
    border-bottom-right-radius: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-br{
    border-bottom-left-radius: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-br-md{
    border-bottom-left-radius: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tl{
    border-top-right-radius: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tl-md{
    border-top-right-radius: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tl-none{
    border-top-right-radius: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tr{
    border-top-left-radius: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tr-md{
    border-top-left-radius: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tr-none{
    border-top-left-radius: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border{
    border-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-0{
    border-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-0\.5{
    border-width: 0.5px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-\[0\.5px\]{
    border-width: 0.5px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-\[1\.25px\]{
    border-width: 1.25px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-x-0{
    border-right-width: 0px;
    border-left-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-y{
    border-top-width: 1px;
    border-bottom-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-y-0{
    border-top-width: 0px;
    border-bottom-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-b{
    border-bottom-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-b-0{
    border-bottom-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-b-0\.5{
    border-bottom-width: 0.5px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-l{
    border-right-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-l-0{
    border-right-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-r{
    border-left-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-r-0{
    border-left-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-t{
    border-top-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-t-0{
    border-top-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-solid{
    border-style: solid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-dashed{
    border-style: dashed;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-dotted{
    border-style: dotted;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-double{
    border-style: double;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-hidden{
    border-style: hidden;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-none{
    border-style: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-alert-border-danger{
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-alert-border-green{
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-alert-border-info{
    --tw-border-opacity: 1;
    border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-alert-border-neutral{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-alert-border-warning{
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-background-inverse{
    --tw-border-opacity: 1;
    border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-disabled{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-gray{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-green{
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-red{
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-sky{
    --tw-border-opacity: 1;
    border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-yellow{
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-border-disabled{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-border-strong{
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-border-subtle{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-brand-primary-600{
    --tw-border-opacity: 1;
    border-color: rgb(92 46 222 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-button-primary{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-field-border{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-field-dropzone-color{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-focus-error-border{
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-slate-200{
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-support-success-inverse{
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-tab-border{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-text-inverse{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-toggle-off-border{
    --tw-border-opacity: 1;
    border-color: rgb(189 193 199 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-transparent{
    border-color: transparent;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .\!bg-transparent{
    background-color: transparent !important;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-\[\#6005FF\]{
    --tw-bg-opacity: 1;
    background-color: rgb(96 5 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-\[\#BAE6FD\]\/40{
    background-color: rgb(186 230 253 / 0.4);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-\[\#F9FAFB\]{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-\[\#FCFCFD\]{
    --tw-bg-opacity: 1;
    background-color: rgb(252 252 253 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-alert-background-danger{
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-alert-background-green{
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-alert-background-info{
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-alert-background-neutral{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-alert-background-warning{
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-background-brand{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-background-inverse{
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-background-inverse\/90{
    background-color: rgb(17 24 39 / 0.9);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-background-primary{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-background-secondary{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-gray{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-green{
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-red{
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-sky{
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-yellow{
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-gray{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-green{
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-red{
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-sky{
    --tw-bg-opacity: 1;
    background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-yellow{
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-border-interactive{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-border-subtle{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-brand-background-50{
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-brand-primary-600{
    --tw-bg-opacity: 1;
    background-color: rgb(92 46 222 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-danger{
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-primary{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-secondary{
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-tertiary{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-tertiary-hover{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-current{
    background-color: currentColor;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-field-background-disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-field-background-error{
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-field-dropzone-background-hover{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-field-primary-background{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-field-secondary-background{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-gray-200{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-icon-interactive{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-misc-progress-background{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-support-success{
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-tab-background{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-text-tertiary{
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-toggle-dial-background{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-toggle-off{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-toggle-off-disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-tooltip-background-dark{
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-tooltip-background-light{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-transparent{
    background-color: transparent;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-none{
    background-image: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .fill-current{
    fill: currentColor;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .stroke-icon-primary{
    stroke: #111827;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .object-contain{
    -o-object-fit: contain;
       object-fit: contain;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .object-cover{
    -o-object-fit: cover;
       object-fit: cover;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .object-center{
    -o-object-position: center;
       object-position: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-0{
    padding: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-0\.5{
    padding: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-1{
    padding: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-1\.5{
    padding: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-10{
    padding: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-2{
    padding: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-2\.5{
    padding: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-3{
    padding: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-3\.5{
    padding: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-4{
    padding: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-5{
    padding: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-6{
    padding: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-8{
    padding: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-\[3px\]{
    padding: 3px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-0\.5{
    padding-right: 0.125rem;
    padding-left: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-1{
    padding-right: 0.25rem;
    padding-left: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-1\.5{
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-2{
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-2\.5{
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-3{
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-3\.5{
    padding-right: 0.875rem;
    padding-left: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-4{
    padding-right: 1rem;
    padding-left: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-5{
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-5\.5{
    padding-right: 1.375rem;
    padding-left: 1.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-0\.5{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-2\.5{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-3\.5{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pb-0{
    padding-bottom: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pb-1{
    padding-bottom: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pb-3{
    padding-bottom: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pb-4{
    padding-bottom: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pb-5{
    padding-bottom: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-10{
    padding-right: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-2{
    padding-right: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-2\.5{
    padding-right: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-3{
    padding-right: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-3\.5{
    padding-right: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-4{
    padding-right: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-8{
    padding-right: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-9{
    padding-right: 2.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-10{
    padding-left: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-12{
    padding-left: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-2{
    padding-left: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-2\.5{
    padding-left: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-3{
    padding-left: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-8{
    padding-left: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-9{
    padding-left: 2.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pt-2{
    padding-top: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pt-3{
    padding-top: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pt-5{
    padding-top: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pt-6{
    padding-top: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-left{
    text-align: right;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-center{
    text-align: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-figtree{
    font-family: Figtree, sans-serif;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-mono{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-\[16px\]{
    font-size: 16px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-base{
    font-size: 1rem;
    line-height: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-tiny{
    font-size: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-xs{
    font-size: 0.75rem;
    line-height: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-bold{
    font-weight: 700;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-medium{
    font-weight: 500;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-normal{
    font-weight: 400;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-semibold{
    font-weight: 600;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .uppercase{
    text-transform: uppercase;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .capitalize{
    text-transform: capitalize;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .italic{
    font-style: italic;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-11{
    line-height: 2.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-4{
    line-height: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-5{
    line-height: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-6{
    line-height: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-7{
    line-height: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-7\.5{
    line-height: 1.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-8{
    line-height: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-9\.5{
    line-height: 2.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-none{
    line-height: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-relaxed{
    line-height: 1.625;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .tracking-2{
    letter-spacing: 0.125em;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-\[\#111827\]{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-\[\#4F4E7C\]{
    --tw-text-opacity: 1;
    color: rgb(79 78 124 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-\[\#6005FF\]{
    --tw-text-opacity: 1;
    color: rgb(96 5 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-\[\#C026D3\]{
    --tw-text-opacity: 1;
    color: rgb(192 38 211 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-background-primary{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-disabled{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-gray{
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-green{
    --tw-text-opacity: 1;
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-red{
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-sky{
    --tw-text-opacity: 1;
    color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-yellow{
    --tw-text-opacity: 1;
    color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-black{
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-border-strong{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-brand-800{
    --tw-text-opacity: 1;
    color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-brand-primary-600{
    --tw-text-opacity: 1;
    color: rgb(92 46 222 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-button-danger{
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-button-primary{
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-button-secondary{
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-button-tertiary-color{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-color-disabled{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-dropzone-color{
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-helper{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-input{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-label{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-placeholder{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-disabled{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-inverse{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-on-color{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-on-color-disabled{
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-primary{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-secondary{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-link-primary{
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-error{
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-error-inverse{
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-info{
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-info-inverse{
    --tw-text-opacity: 1;
    color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-success{
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-success-inverse{
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-warning{
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-warning-inverse{
    --tw-text-opacity: 1;
    color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-disabled{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-inverse{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-on-color{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-primary{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-secondary{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-tertiary{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-tooltip-background-dark{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-tooltip-background-light{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .underline{
    text-decoration-line: underline;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .no-underline{
    text-decoration-line: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .underline-offset-2{
    text-underline-offset: 2px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder-text-tertiary::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder-text-tertiary::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .opacity-0{
    opacity: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .opacity-40{
    opacity: 0.4;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .opacity-50{
    opacity: 0.5;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow{
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-container-item{
    --tw-shadow: 0px 1.5px 1px 0px rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0px 1.5px 1px 0px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-md{
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-none{
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-soft-shadow-2xl{
    --tw-shadow: 0px 24px 64px -12px rgba(149, 160, 178, 0.32);
    --tw-shadow-colored: 0px 24px 64px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-soft-shadow-lg{
    --tw-shadow: 0px 12px 32px -12px rgba(149, 160, 178, 0.24);
    --tw-shadow-colored: 0px 12px 32px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-xs{
    --tw-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    --tw-shadow-colored: 0px 1px 2px 0px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline{
    outline-style: solid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-1{
    outline-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-border-disabled{
    outline-color: #E5E7EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-border-interactive{
    outline-color: #2563EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-border-subtle{
    outline-color: #E5E7EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-danger{
    outline-color: #DC2626;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-danger-hover{
    outline-color: #B91C1C;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-disabled{
    outline-color: #F3F4F6;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-primary{
    outline-color: #2563EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-secondary{
    outline-color: #1F2937;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-field-border{
    outline-color: #E5E7EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-field-border-disabled{
    outline-color: #F3F4F6;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-focus-error-border{
    outline-color: #FECACA;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-link-primary{
    outline-color: #2563EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-transparent{
    outline-color: transparent;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-alert-border-danger{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-alert-border-green{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-alert-border-info{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-alert-border-neutral{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-alert-border-warning{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-background-inverse{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-border-subtle{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-border-transparent-subtle{
    --tw-ring-color: #37415114;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-brand-primary-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(92 46 222 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-tab-border{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-offset-0{
    --tw-ring-offset-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .filter{
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-\[box-shadow\2c color\2c background-color\]{
    transition-property: box-shadow,color,background-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-\[color\2c box-shadow\2c outline\]{
    transition-property: color,box-shadow,outline;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-\[color\2c outline\2c box-shadow\]{
    transition-property: color,outline,box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-\[outline\2c background-color\2c color\2c box-shadow\]{
    transition-property: outline,background-color,color,box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-\[width\]{
    transition-property: width;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-all{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-colors{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-opacity{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-transform{
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .duration-150{
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .duration-200{
    transition-duration: 200ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .duration-300{
    transition-duration: 300ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .duration-500{
    transition-duration: 500ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ease-linear{
    transition-timing-function: linear;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .\[grid-area\:1\/1\/2\/3\]{
    grid-area: 1/1/2/3;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .\[word-break\:break-word\]{
    word-break: break-word;
}

/* Custom Force UI Color Overrides */
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-link-primary {
    --tw-text-opacity: 1;
    color: rgb(96 5 255 / var(--tw-text-opacity, 1)) !important; /* UAE Purple */
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-button-primary{
    --tw-text-opacity: 1;
    color: rgb(96 5 255 / var(--tw-text-opacity, 1)) !important; /* UAE Purple */
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-secondary{
    --tw-bg-opacity: 1;
    background-color: #DDD6FE !important;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-secondary:hover{
    outline-color: #DDD6FE !important;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-secondary{
   outline-color: #DDD6FE !important;
}

/* Add to your main CSS file (e.g., index.css) */

.toplevel_page_hfe #wpcontent,
.post-type-elementor-hf #wpcontent {
    padding-right: 0;
}
.post-type-elementor-hf #wpbody-content .wrap {
	padding-right: 20px;
}
.post-type-elementor-hf .wp-heading-inline {
	font-size: 18px;
}
.post-type-elementor-hf #adminmenu .wp-submenu a[href ="edit.php?post_type=elementor-hf" ] {
    color: #ffffff;
    font-weight: 600;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps span.absolute {
	font-size: 13px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .ring-border-subtle {
	--tw-ring-color: #64748B;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .border-border-subtle {
	border-color: #64748B;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .min-w-10.border-y {
	min-width: 9rem;
	border-bottom-width: 0.5px;
}

#hfe-settings-app .loader {
	border: 4px solid #f3f3f3;
	border-radius: 50%;
	border-top: 4px solid #3498db;
	width: 40px;
	height: 40px;
	animation: spin 2s linear infinite;
}
.hfe-custom-scrollbar::-webkit-scrollbar {
	width: 4px;
}  
/* Track */
.hfe-custom-scrollbar::-webkit-scrollbar-track {
	background: #f1f1f1; 
}
   
/* Handle */
.hfe-custom-scrollbar::-webkit-scrollbar-thumb {
	background: #888; 
}
  
/* Handle on hover */
.hfe-custom-scrollbar::-webkit-scrollbar-thumb:hover {
	background: #555; 
}

.hfe-subheading h2 {
	font-size: 1.1rem !important;
}
.hfe-subheading .text-text-secondary {
	font-size: 0.98rem !important;
}
.hfe-loader-icon {
	top: -15%;
}
.hfe-remove-ring.hfe-span span {
	padding-right: 0px;
}
#hfe-settings-app .gap-2 {
	gap: 1.2rem;
}
.hfe-remove-ring input[type="checkbox"],
.hfe-remove-ring a,
.hfe-remove-ring {
	outline: none;
	--tw-ring-inset: auto;
	box-shadow: unset;
}
.hfe-settings-page h2 {
	margin-bottom: 0.3rem !important;
}
:is(#hfe-settings-app) .hfe-remove-ring svg.lucide-arrow-right {
	width: 1rem;
	height: 1rem;
}
.hfe-popup-button,
.hfe-popup-button svg {
	padding: 0;
}
.hfe-popup-button span {
	padding-right: 0;
}
.hfe-link-color,
.hfe-link-color span {
	color: rgb(96, 5, 255);
}
#hfe-settings-app .hfe-header-title h6 {
	color: #858484;
	font-size: 14px;
}
.hfe-settings-content-wrapper {
	padding: 15px 25px;
}
button.hfe-plugin-activated {
	color: #16a34a;
}
button.hfe-bulk-action-button {
	width: 160px;
}
.hfe-subtitle h2 {
	font-size: 0.9rem;
}
.hfe-65-width {
	width: 65%;
}
.hfe-35-width {
	width: 35%;
}
.hfe-78-width {
	width: 78%;
}
.hfe-88-width {
	width: 88%;
}

/* Sticky Right Sidebar */
.hfe-sticky-right-sidebar {
	position: sticky !important;
	top: 30px !important;
	align-self: flex-start !important;
}

#hfe-settings-app .subject-cell {
	max-width: 200px; /* Adjust this width based on your layout */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.hfe-tooltip-wrap {
	width: 100%;
    text-align: left;
}
.toplevel_page_hfe #wpcontent {
	padding-right: 0;
}
div#hfe-settings-app {
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
}

input[type="radio"].hfe-radio-field:checked::before {
	content: "";
    border-radius: 50%;
    width: 0.5rem;
    height: 0.5rem;
    margin: 0.1875rem;
    background-color: #6005FF;
    line-height: 1.14285714;
}
input[type="radio"].hfe-radio-field:focus {
	border-color: #6005ff;
	box-shadow: 0 0 0 1px #6005ff;
}
.hfe-compare-section h6 {
	font-size: 0.9rem !important;
	font-weight: 500 !important;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}
@media (min-width: 769px) {
	.hfe-sticky-outer-wrapper {
		width: 23%;
		border-left: 1px solid #e5e7eb;
	}
	.hfe-sticky-sidebar {
		position: sticky;
		top: 0;
	}
	.hfe-settings-page:before {
		animation-fill-mode: both;
		background: #fff;
		content: " ";
		height: 100%;
		position: fixed;
		right: 0;
		top: 0;
		transform-origin: left;
		border-left: 1px solid #e5e7eb;
		width: 30%;
	}
	.hfe-nav-menu {
		border-bottom: 1px solid #e5e7eb;
	}
}

@media (max-width: 768px) {
	#toplevel_page_hfe .container {
		padding: 0 1rem;
	}

	#toplevel_page_hfe .fixed {
		justify-content: flex-start !important;
	}

	#toplevel_page_hfe .bg-white {
		width: 100% !important;
		height: 100% !important;
		border-radius: 0 !important;
	}
	
	/* Disable sticky on mobile */
	.hfe-sticky-right-sidebar {
		position: static !important;
		max-height: none !important;
		overflow-y: visible !important;
	}
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .text-xs {
	font-size: 0.77rem;
}
.hfe-min-700 {
	min-width: 700px;
}
#hfe-settings-app .subject-cell {
	max-width: 200px; /* Adjust this width based on your layout */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* .hfe-menu-page-wrapper {
	width: calc( 100% - 25px);
} */
#hfe-settings-app .gap-2 {
    gap: 1.2rem;
}
div#hfe-settings-app {
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
}
/* #hfe-settings-app .p-5 {
    padding: 0.5rem 1.25rem;
} */
#hfe-settings-app .hfe-header-title h6 {
	color: #858484;
	font-size: 14px;
}
.hfe-settings-content-wrapper {
	padding: 15px 25px;
}
@media (max-width: 1024px) {
	.hfe-65-width,
	.hfe-35-width,
	.hfe-78-width,
	.hfe-88-width {
		width: 100%;
	}
}
@media screen and (max-width: 782px) {
	:is(#hfe-settings-app, [data-floating-ui-portal]) .hfe-display-flex {
		display: block;
	}
	.hfe-radio-option {
		width: 1rem !important;
		height: 1rem !important;
	}
	.hfe-radio-option:checked:before {
		width: 0.5rem !important;
		height: 0.5rem !important;
		margin: 0.18rem !important;
	}
	:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps,
	#hfe-settings-app img {
		display: none;
	}
	.hfe-onboarding-customize {
		margin-right: 20px;
    	margin-left: 20px;
	}
	.hfe-min-700 {
		min-width: unset;
	}
	.hfe-onboarding-customize .hfe-custom-scrollbar {
		overflow: scroll;
		max-width: -moz-fit-content;
		max-width: fit-content;
	}
        .hfe-onboarding-bottom {
                display: grid !important;
                max-width: -moz-fit-content;
                max-width: fit-content;
        }
}

body.hfe-onboarding-fullscreen #wpadminbar,
body.hfe-onboarding-fullscreen #adminmenuback,
body.hfe-onboarding-fullscreen #adminmenuwrap,
body.hfe-onboarding-fullscreen #adminmenu,
body.hfe-onboarding-fullscreen #wpfooter {
       display: none;
}
body.hfe-onboarding-fullscreen #wpcontent {
       margin-right: 0;
       padding-right: 0;
}
body.hfe-onboarding-fullscreen.admin-bar {
       margin-top: 0 !important;
}


input[type="checkbox"].uae-role-checkbox:focus{
	border-color:rgb(92, 46, 222);
	box-shadow:0 0 0 1px rgb(92, 46, 222);
}

#wpfooter{
    background-color: white;
}
.uae-rating{
    color: #6005FF;
}

.uae-rating:hover{
	color: #4B00CC;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .file\:border-0::file-selector-button{
    border-width: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .file\:bg-transparent::file-selector-button{
    background-color: transparent;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .file\:text-text-tertiary::file-selector-button{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder\:text-field-placeholder::-moz-placeholder{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder\:text-field-placeholder::placeholder{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder\:text-text-disabled::-moz-placeholder{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder\:text-text-disabled::placeholder{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:absolute::before{
    content: var(--tw-content);
    position: absolute;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:top-2\/4::before{
    content: var(--tw-content);
    top: 50%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:hidden::before{
    content: var(--tw-content);
    display: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:h-10::before{
    content: var(--tw-content);
    height: 2.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:w-10::before{
    content: var(--tw-content);
    width: 2.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:-translate-x-2\/4::before{
    content: var(--tw-content);
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:-translate-y-2\/4::before{
    content: var(--tw-content);
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:rounded-full::before{
    content: var(--tw-content);
    border-radius: 9999px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:opacity-0::before{
    content: var(--tw-content);
    opacity: 0;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:transition-opacity::before{
    content: var(--tw-content);
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:content-\[\'\'\]::before{
    --tw-content: '';
    content: var(--tw-content);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .after\:ml-0::after{
    content: var(--tw-content);
    margin-right: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .after\:ml-0\.5::after{
    content: var(--tw-content);
    margin-right: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .after\:text-field-required::after{
    content: var(--tw-content);
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .after\:content-\[\'\*\'\]::after{
    --tw-content: '*';
    content: var(--tw-content);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .first\:rounded-bl:first-child{
    border-bottom-right-radius: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .first\:rounded-tl:first-child{
    border-top-right-radius: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .first\:border-0:first-child{
    border-width: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .first\:border-r:first-child{
    border-left-width: 1px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .first\:border-border-subtle:first-child{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .last\:rounded-br:last-child{
    border-bottom-left-radius: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .last\:rounded-tr:last-child{
    border-top-left-radius: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .last\:border-0:last-child{
    border-width: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:border-border-interactive:checked{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:border-toggle-on-border:checked{
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:bg-toggle-on:checked{
    --tw-bg-opacity: 1;
    background-color: rgb(121 59 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:\[background-image\:none\]:checked{
    background-image: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:before\:hidden:checked::before{
    content: var(--tw-content);
    display: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:before\:content-\[\'\'\]:checked::before{
    --tw-content: '';
    content: var(--tw-content);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:z-10:focus-within{
    z-index: 10;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:border-focus-border:focus-within{
    --tw-border-opacity: 1;
    border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:text-field-input:focus-within{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:outline-none:focus-within{
    outline: 2px solid transparent;
    outline-offset: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:outline-focus-border:focus-within{
    outline-color: #D8B4FE;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:ring-focus:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-border-disabled:hover{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-border-interactive:hover{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-border-strong:hover{
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-button-primary:hover{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-field-border:hover{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-field-dropzone-color:hover{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-text-inverse:hover{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-background-brand:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-background-secondary:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-disabled:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-gray:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-green:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-red:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-sky:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-yellow:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-button-danger-hover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-button-primary-hover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-button-secondary-hover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-button-tertiary-hover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-field-background-error:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-field-dropzone-background-hover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-transparent:hover{
    background-color: transparent;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-white:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-black:hover{
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-button-danger-secondary:hover{
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-button-primary-hover:hover{
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-link-primary-hover:hover{
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-text-disabled:hover{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-text-inverse:hover{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-text-primary:hover{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:underline:hover{
    text-decoration-line: underline;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:no-underline:hover{
    text-decoration-line: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-border-disabled:hover{
    outline-color: #E5E7EB;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-border-interactive:hover{
    outline-color: #2563EB;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-border-strong:hover{
    outline-color: #6B7280;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-border-subtle:hover{
    outline-color: #E5E7EB;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-danger:hover{
    outline-color: #DC2626;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-danger-hover:hover{
    outline-color: #B91C1C;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-primary-hover:hover{
    outline-color: #1D4ED8;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-secondary:hover{
    outline-color: #1F2937;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-secondary-hover:hover{
    outline-color: #374151;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-field-border-disabled:hover{
    outline-color: #F3F4F6;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:before\:opacity-10:hover::before{
    content: var(--tw-content);
    opacity: 0.1;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:hover\:border-toggle-on-hover:hover:checked{
    --tw-border-opacity: 1;
    border-color: rgb(121 59 255 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:hover\:bg-toggle-on-hover:hover:checked{
    --tw-bg-opacity: 1;
    background-color: rgb(121 59 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:hover\:border-focus-border:hover:focus-within{
    --tw-border-opacity: 1;
    border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:hover\:outline-focus-border:hover:focus-within{
    outline-color: #D8B4FE;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:focus-within\:outline-focus-border:focus-within:hover{
    outline-color: #D8B4FE;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:rounded-sm:focus{
    border-radius: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:border-border-interactive:focus{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:border-focus-border:focus{
    --tw-border-opacity: 1;
    border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:border-focus-error-border:focus{
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:border-toggle-off-border:focus{
    --tw-border-opacity: 1;
    border-color: rgb(189 193 199 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:bg-background-secondary:focus{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:bg-button-tertiary-hover:focus{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:shadow-none:focus{
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline:focus{
    outline-style: solid;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline-1:focus{
    outline-width: 1px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline-border-subtle:focus{
    outline-color: #E5E7EB;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline-focus-border:focus{
    outline-color: #D8B4FE;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline-focus-error-border:focus{
    outline-color: #FECACA;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-border-interactive:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-field-color-error:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-focus:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-focus-error:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-toggle-on:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(121 59 255 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-transparent:focus{
    --tw-ring-color: transparent;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-offset-0:focus{
    --tw-ring-offset-width: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-offset-2:focus{
    --tw-ring-offset-width: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:\[box-shadow\:none\]:focus{
    box-shadow: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:focus\:border-toggle-on-border:focus:checked{
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-visible\:outline-none:focus-visible{
    outline: 2px solid transparent;
    outline-offset: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .active\:text-button-primary:active{
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .active\:outline-none:active{
    outline: 2px solid transparent;
    outline-offset: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:cursor-default:disabled{
    cursor: default;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:cursor-not-allowed:disabled{
    cursor: not-allowed;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:border-border-disabled:disabled{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:border-field-border-disabled:disabled{
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:border-transparent:disabled{
    border-color: transparent;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:bg-button-disabled:disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:bg-button-tertiary:disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:bg-white:disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:text-text-disabled:disabled{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:shadow-none:disabled{
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:shadow-toggle-disabled:disabled{
    --tw-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.1) inset;
    --tw-shadow-colored: inset 1px 1px 2px 0px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:outline-border-disabled:disabled{
    outline-color: #E5E7EB;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:outline-button-disabled:disabled{
    outline-color: #F3F4F6;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:outline-field-border-disabled:disabled{
    outline-color: #F3F4F6;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:disabled\:border-border-disabled:disabled:checked{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:disabled\:bg-toggle-on-disabled:disabled:checked{
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:disabled\:bg-white:disabled:checked{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:focus-within .group-focus-within\/switch\:size-3\.25){
    width: 0.8125rem;
    height: 0.8125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:focus-within .group-focus-within\/switch\:size-4){
    width: 1rem;
    height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:focus-within .group-focus-within\/switch\:size-5){
    width: 1.25rem;
    height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group:focus-within .group-focus-within\:text-icon-primary){
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:right-0\.5){
    left: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:size-3\.25){
    width: 0.8125rem;
    height: 0.8125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:size-4){
    width: 1rem;
    height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:size-5){
    width: 1.25rem;
    height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:border-toggle-on-border){
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:bg-toggle-off-hover){
    --tw-bg-opacity: 1;
    background-color: rgb(189 193 199 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group:hover .group-hover\:text-field-input){
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group:hover .group-hover\:text-icon-primary){
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .checked\:group-hover\/switch\:border-toggle-on-border:checked){
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .checked\:group-hover\/switch\:bg-toggle-on-hover:checked){
    --tw-bg-opacity: 1;
    background-color: rgb(121 59 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group:disabled .group-disabled\:text-field-color-disabled){
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group:disabled .group-disabled\:text-icon-disabled){
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:checked ~ .peer-checked\:translate-x-3){
    --tw-translate-x: 0.75rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:checked ~ .peer-checked\:translate-x-3\.75){
    --tw-translate-x: 0.9375rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:checked ~ .peer-checked\:translate-x-5){
    --tw-translate-x: 1.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:checked ~ .peer-checked\:opacity-100){
    opacity: 1;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:disabled ~ .peer-disabled\:cursor-not-allowed){
    cursor: not-allowed;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:disabled ~ .peer-disabled\:text-border-disabled){
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .not-rtl\:left-1:not([dir="rtl"], [dir="rtl"] *){
    right: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .not-rtl\:left-2\/4:not([dir="rtl"], [dir="rtl"] *){
    right: 50%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .not-rtl\:before\:left-2\/4:not([dir="rtl"], [dir="rtl"] *)::before{
    content: var(--tw-content);
    right: 50%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:focus-within .not-rtl\:group-focus-within\/switch\:left-0\.5:not([dir="rtl"], [dir="rtl"] *)){
    right: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .not-rtl\:group-hover\/switch\:left-0\.5:not([dir="rtl"], [dir="rtl"] *)){
    right: 0.125rem;
}

@media (min-width: 640px){
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:mx-8{
        margin-right: 2rem;
        margin-left: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:block{
        display: block;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:inline{
        display: inline;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:h-10{
        height: 2.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:h-3\.5{
        height: 0.875rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:max-h-\[80vh\]{
        max-height: 80vh;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:w-3\.5{
        width: 0.875rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:w-8{
        width: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:w-\[62px\]{
        width: 62px;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:max-w-\[72\%\]{
        max-width: 72%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:gap-2\.5{
        gap: 0.625rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:gap-3{
        gap: 0.75rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:p-4{
        padding: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:p-\[4px\]{
        padding: 4px;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:px-4{
        padding-right: 1rem;
        padding-left: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:px-5{
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:py-5{
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:pb-5{
        padding-bottom: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

@media (min-width: 768px){
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-1{
        order: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-10{
        order: 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-11{
        order: 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-12{
        order: 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-2{
        order: 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-3{
        order: 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-4{
        order: 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-5{
        order: 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-6{
        order: 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-7{
        order: 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-8{
        order: 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-9{
        order: 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-first{
        order: -9999;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-last{
        order: 9999;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-none{
        order: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-1{
        grid-column: span 1 / span 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-10{
        grid-column: span 10 / span 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-11{
        grid-column: span 11 / span 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-12{
        grid-column: span 12 / span 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-2{
        grid-column: span 2 / span 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-3{
        grid-column: span 3 / span 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-4{
        grid-column: span 4 / span 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-5{
        grid-column: span 5 / span 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-6{
        grid-column: span 6 / span 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-7{
        grid-column: span 7 / span 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-8{
        grid-column: span 8 / span 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-9{
        grid-column: span 9 / span 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-1{
        grid-column-start: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-10{
        grid-column-start: 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-11{
        grid-column-start: 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-12{
        grid-column-start: 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-2{
        grid-column-start: 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-3{
        grid-column-start: 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-4{
        grid-column-start: 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-5{
        grid-column-start: 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-6{
        grid-column-start: 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-7{
        grid-column-start: 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-8{
        grid-column-start: 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-9{
        grid-column-start: 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:mt-0{
        margin-top: 0px;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/10{
        width: 10%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/11{
        width: 9.0909091%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/12{
        width: 8.3333333%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/2{
        width: 50%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/3{
        width: 33.333333%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/4{
        width: 25%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/5{
        width: 20%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/6{
        width: 16.666667%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/7{
        width: 14.2857143%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/8{
        width: 12.5%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/9{
        width: 11.1111111%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-full{
        width: 100%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:shrink{
        flex-shrink: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:shrink-0{
        flex-shrink: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grow{
        flex-grow: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grow-0{
        flex-grow: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-flow-row{
        grid-auto-flow: row;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-flow-col{
        grid-auto-flow: column;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-flow-row-dense{
        grid-auto-flow: row dense;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-flow-col-dense{
        grid-auto-flow: column dense;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-1{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-10{
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-11{
        grid-template-columns: repeat(11, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-12{
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-4{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-5{
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-6{
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-7{
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-8{
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-9{
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-row{
        flex-direction: row;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-row-reverse{
        flex-direction: row-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-col{
        flex-direction: column;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-col-reverse{
        flex-direction: column-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-wrap{
        flex-wrap: wrap;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-wrap-reverse{
        flex-wrap: wrap-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-nowrap{
        flex-wrap: nowrap;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:items-start{
        align-items: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:items-end{
        align-items: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:items-center{
        align-items: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:items-baseline{
        align-items: baseline;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:items-stretch{
        align-items: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-normal{
        justify-content: normal;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-start{
        justify-content: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-end{
        justify-content: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-center{
        justify-content: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-between{
        justify-content: space-between;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-around{
        justify-content: space-around;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-evenly{
        justify-content: space-evenly;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-stretch{
        justify-content: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-2{
        gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-4{
        gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-5{
        gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-6{
        gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-8{
        gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-x-2{
        -moz-column-gap: 0.5rem;
             column-gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-x-4{
        -moz-column-gap: 1rem;
             column-gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-x-5{
        -moz-column-gap: 1.25rem;
             column-gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-x-6{
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-x-8{
        -moz-column-gap: 2rem;
             column-gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-y-2{
        row-gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-y-4{
        row-gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-y-5{
        row-gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-y-6{
        row-gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-y-8{
        row-gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) :is(.md\:space-x-1 > :not([hidden]) ~ :not([hidden])){
        --tw-space-x-reverse: 0;
        margin-left: calc(0.25rem * var(--tw-space-x-reverse));
        margin-right: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:self-start{
        align-self: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:self-end{
        align-self: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:self-center{
        align-self: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:self-stretch{
        align-self: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:self-baseline{
        align-self: baseline;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-self-auto{
        justify-self: auto;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-self-start{
        justify-self: start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-self-end{
        justify-self: end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-self-center{
        justify-self: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-self-stretch{
        justify-self: stretch;
    }
}

@media (min-width: 1024px){
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-1{
        order: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-10{
        order: 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-11{
        order: 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-12{
        order: 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-2{
        order: 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-3{
        order: 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-4{
        order: 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-5{
        order: 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-6{
        order: 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-7{
        order: 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-8{
        order: 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-9{
        order: 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-first{
        order: -9999;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-last{
        order: 9999;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-none{
        order: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-1{
        grid-column: span 1 / span 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-10{
        grid-column: span 10 / span 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-11{
        grid-column: span 11 / span 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-12{
        grid-column: span 12 / span 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-2{
        grid-column: span 2 / span 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-3{
        grid-column: span 3 / span 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-4{
        grid-column: span 4 / span 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-5{
        grid-column: span 5 / span 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-6{
        grid-column: span 6 / span 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-7{
        grid-column: span 7 / span 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-8{
        grid-column: span 8 / span 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-9{
        grid-column: span 9 / span 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-1{
        grid-column-start: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-10{
        grid-column-start: 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-11{
        grid-column-start: 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-12{
        grid-column-start: 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-2{
        grid-column-start: 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-3{
        grid-column-start: 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-4{
        grid-column-start: 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-5{
        grid-column-start: 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-6{
        grid-column-start: 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-7{
        grid-column-start: 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-8{
        grid-column-start: 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-9{
        grid-column-start: 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/10{
        width: 10%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/11{
        width: 9.0909091%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/12{
        width: 8.3333333%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/2{
        width: 50%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/3{
        width: 33.333333%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/4{
        width: 25%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/5{
        width: 20%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/6{
        width: 16.666667%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/7{
        width: 14.2857143%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/8{
        width: 12.5%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/9{
        width: 11.1111111%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-\[47\.5rem\]{
        width: 47.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-full{
        width: 100%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:shrink{
        flex-shrink: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:shrink-0{
        flex-shrink: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grow{
        flex-grow: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grow-0{
        flex-grow: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-flow-row{
        grid-auto-flow: row;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-flow-col{
        grid-auto-flow: column;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-flow-row-dense{
        grid-auto-flow: row dense;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-flow-col-dense{
        grid-auto-flow: column dense;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-1{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-10{
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-11{
        grid-template-columns: repeat(11, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-12{
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-4{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-5{
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-6{
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-7{
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-8{
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-9{
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-row{
        flex-direction: row;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-row-reverse{
        flex-direction: row-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-col{
        flex-direction: column;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-col-reverse{
        flex-direction: column-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-wrap{
        flex-wrap: wrap;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-wrap-reverse{
        flex-wrap: wrap-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-nowrap{
        flex-wrap: nowrap;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:items-start{
        align-items: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:items-end{
        align-items: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:items-center{
        align-items: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:items-baseline{
        align-items: baseline;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:items-stretch{
        align-items: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-normal{
        justify-content: normal;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-start{
        justify-content: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-end{
        justify-content: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-center{
        justify-content: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-between{
        justify-content: space-between;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-around{
        justify-content: space-around;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-evenly{
        justify-content: space-evenly;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-stretch{
        justify-content: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-2{
        gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-4{
        gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-5{
        gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-6{
        gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-8{
        gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-x-2{
        -moz-column-gap: 0.5rem;
             column-gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-x-4{
        -moz-column-gap: 1rem;
             column-gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-x-5{
        -moz-column-gap: 1.25rem;
             column-gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-x-6{
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-x-8{
        -moz-column-gap: 2rem;
             column-gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-y-2{
        row-gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-y-4{
        row-gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-y-5{
        row-gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-y-6{
        row-gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-y-8{
        row-gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:self-start{
        align-self: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:self-end{
        align-self: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:self-center{
        align-self: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:self-stretch{
        align-self: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:self-baseline{
        align-self: baseline;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-self-auto{
        justify-self: auto;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-self-start{
        justify-self: start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-self-end{
        justify-self: end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-self-center{
        justify-self: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-self-stretch{
        justify-self: stretch;
    }
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .rtl\:right-1:where([dir="rtl"], [dir="rtl"] *){
    left: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .rtl\:right-2\/4:where([dir="rtl"], [dir="rtl"] *){
    left: 50%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .rtl\:before\:right-2\/4:where([dir="rtl"], [dir="rtl"] *)::before{
    content: var(--tw-content);
    left: 50%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:focus-within .rtl\:group-focus-within\/switch\:right-0\.5:where([dir="rtl"], [dir="rtl"] *)){
    left: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .rtl\:group-hover\/switch\:right-0:where([dir="rtl"], [dir="rtl"] *)){
    left: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .rtl\:group-hover\/switch\:right-0\.5:where([dir="rtl"], [dir="rtl"] *)){
    left: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .\[\&\:has\(\[aria-expanded\=\'true\'\]\)\]\:shadow-xs:has([aria-expanded='true']){
    --tw-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    --tw-shadow-colored: 0px 1px 2px 0px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .\[\&\:hover\:has\(\:disabled\)\]\:outline-field-border-disabled:hover:has(:disabled){
    outline-color: #F3F4F6;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .\[\&\:hover\:not\(\:focus\)\:not\(\:disabled\)\]\:outline-border-strong:hover:not(:focus):not(:disabled){
    outline-color: #6B7280;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\:hover\>h3\]\:bg-transparent:hover>h3){
    background-color: transparent;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\:hover\>svg\]\:text-border-strong:hover>svg){
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .\[\&\:is\(\[data-hover\=true\]\)\]\:rounded-none:is([data-hover=true]){
    border-radius: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .\[\&\:is\(\[data-hover\=true\]\)\]\:bg-brand-background-50:is([data-hover=true]){
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\:not\(svg\)\]\:m-1>*:not(svg)){
    margin: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\:not\(svg\)\]\:mx-1>*:not(svg)){
    margin-right: 0.25rem;
    margin-left: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\:not\(svg\)\]\:my-0\.5>*:not(svg)){
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:box-border>*){
    box-sizing: border-box;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-2xl>*){
    font-size: 1.5rem;
    line-height: 2rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-base>*){
    font-size: 1rem;
    line-height: 1.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-lg>*){
    font-size: 1.125rem;
    line-height: 1.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-sm>*){
    font-size: 0.875rem;
    line-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-xl>*){
    font-size: 1.25rem;
    line-height: 1.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-xs>*){
    font-size: 0.75rem;
    line-height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-field-color-disabled>*){
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-field-helper>*){
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-field-label>*){
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-support-error>*){
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>div\]\:flex-grow>div){
    flex-grow: 1;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>div\]\:p-0>div){
    padding: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>li\]\:pointer-events-auto>li){
    pointer-events: auto;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>p\]\:m-0>p){
    margin: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>p\]\:w-full>p){
    width: 100%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>span\:first-child\]\:shrink-0>span:first-child){
    flex-shrink: 0;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>span\]\:flex>span){
    display: flex;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>span\]\:items-center>span){
    align-items: center;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:m-1>svg){
    margin: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:m-1\.5>svg){
    margin: 0.375rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:block>svg){
    display: block;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:hidden>svg){
    display: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-12>svg){
    width: 3rem;
    height: 3rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-3>svg){
    width: 0.75rem;
    height: 0.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-3\.5>svg){
    width: 0.875rem;
    height: 0.875rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-4>svg){
    width: 1rem;
    height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-5>svg){
    width: 1.25rem;
    height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-6>svg){
    width: 1.5rem;
    height: 1.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-8>svg){
    width: 2rem;
    height: 2rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:h-3>svg){
    height: 0.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:h-4>svg){
    height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:h-5>svg){
    height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:w-3>svg){
    width: 0.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:w-4>svg){
    width: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:w-5>svg){
    width: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:shrink-0>svg){
    flex-shrink: 0;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:text-icon-interactive>svg){
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\[aria-expanded\=\'true\'\]_\.learn-chevron-right\]\:rotate-90[aria-expanded='true'] .learn-chevron-right){
    --tw-rotate: 90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\[aria-expanded\=\'true\'\]_\.learn-more-btn\]\:flex[aria-expanded='true'] .learn-more-btn){
    display: flex;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\*\]\:box-border *){
    box-sizing: border-box;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\*\]\:text-sm *){
    font-size: 0.875rem;
    line-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\*\]\:leading-5 *){
    line-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:min-h-5 .editor-content>p){
    min-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:min-h-6 .editor-content>p){
    min-height: 1.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:min-h-7 .editor-content>p){
    min-height: 1.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:content-center .editor-content>p){
    align-content: center;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:text-base .editor-content>p){
    font-size: 1rem;
    line-height: 1.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:text-sm .editor-content>p){
    font-size: 0.875rem;
    line-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:text-xs .editor-content>p){
    font-size: 0.75rem;
    line-height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:font-normal .editor-content>p){
    font-weight: 400;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.pointer-events-none\]\:text-base .pointer-events-none){
    font-size: 1rem;
    line-height: 1.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.pointer-events-none\]\:text-sm .pointer-events-none){
    font-size: 0.875rem;
    line-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.pointer-events-none\]\:text-xs .pointer-events-none){
    font-size: 0.75rem;
    line-height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.pointer-events-none\]\:font-normal .pointer-events-none){
    font-weight: 400;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_p\]\:m-0 p){
    margin: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_p\]\:text-badge-color-disabled p){
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_svg\]\:size-3 svg){
    width: 0.75rem;
    height: 0.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_svg\]\:size-4 svg){
    width: 1rem;
    height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_svg\]\:size-5 svg){
    width: 1.25rem;
    height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_svg\]\:size-6 svg){
    width: 1.5rem;
    height: 1.5rem;
}
PK���\*����build/main.asset.phpnu�[���<?php return array('dependencies' => array('react', 'react-dom', 'react-jsx-runtime', 'regenerator-runtime', 'wp-api-fetch', 'wp-dom-ready', 'wp-element', 'wp-i18n'), 'version' => 'ab5b868783290510cbce');
PK���\��䡇��build/main.cssnu�[���@import url(https://fonts.googleapis.com/css?family=Josefin+Sans);
/* figtree-latin-ext-400-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/410fbc8e227942f4d606.woff2) format('woff2'), url(/f5a809ac576251495a72.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* figtree-latin-400-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/8fbf595b398521a13438.woff2) format('woff2'), url(/7d00956da27af3e30b78.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* figtree-latin-ext-400-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/410fbc8e227942f4d606.woff2) format('woff2'), url(/f5a809ac576251495a72.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* figtree-latin-400-normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/8fbf595b398521a13438.woff2) format('woff2'), url(/7d00956da27af3e30b78.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* figtree-latin-ext-400-italic */
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(/022beb5767ebf3d54c2c.woff2) format('woff2'), url(/815fd49f3f94a120685f.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* figtree-latin-400-italic */
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(/0c658d1bd687fc3b8ae1.woff2) format('woff2'), url(/f2b6d272f68d05e1513a.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
*, ::before, ::after{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
::backdrop{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
.container{
    width: 100%;
}
@media (min-width: 640px){
    .container{
        max-width: 640px;
    }
}
@media (min-width: 768px){
    .container{
        max-width: 768px;
    }
}
@media (min-width: 1024px){
    .container{
        max-width: 1024px;
    }
}
@media (min-width: 1280px){
    .container{
        max-width: 1280px;
    }
}
@media (min-width: 1536px){
    .container{
        max-width: 1536px;
    }
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pointer-events-none{
    pointer-events: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pointer-events-auto{
    pointer-events: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .visible{
    visibility: visible;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .static{
    position: static;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .fixed{
    position: fixed;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .absolute{
    position: absolute;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .relative{
    position: relative;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-inset-1{
    inset: -0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inset-0{
    inset: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inset-x-0{
    left: 0px;
    right: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inset-y-0{
    top: 0px;
    bottom: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-bottom-px{
    bottom: -1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bottom-0{
    bottom: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bottom-1{
    bottom: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bottom-1\.5{
    bottom: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .left-0{
    left: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .left-1\/2{
    left: 50%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .left-\[calc\(50\%\+10px\)\]{
    left: calc(50% + 10px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .left-\[calc\(50\%\+12px\)\]{
    left: calc(50% + 12px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .left-\[calc\(50\%\+14px\)\]{
    left: calc(50% + 14px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-0{
    right: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-1\/2{
    right: 50%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-3{
    right: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-4{
    right: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-\[calc\(-50\%\+10px\)\]{
    right: calc(-50% + 10px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-\[calc\(-50\%\+12px\)\]{
    right: calc(-50% + 12px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .right-\[calc\(-50\%\+14px\)\]{
    right: calc(-50% + 14px);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-0{
    top: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-2\.5{
    top: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-2\/4{
    top: 50%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-3{
    top: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-3\.5{
    top: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-4{
    top: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .top-full{
    top: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-z-10{
    z-index: -10;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .z-10{
    z-index: 10;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .z-20{
    z-index: 20;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .z-999999{
    z-index: 999999;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .z-\[1\]{
    z-index: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .z-auto{
    z-index: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-1{
    order: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-10{
    order: 10;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-11{
    order: 11;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-12{
    order: 12;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-2{
    order: 2;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-3{
    order: 3;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-4{
    order: 4;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-5{
    order: 5;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-6{
    order: 6;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-7{
    order: 7;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-8{
    order: 8;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-9{
    order: 9;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-first{
    order: -9999;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-last{
    order: 9999;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .order-none{
    order: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-1{
    grid-column: span 1 / span 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-10{
    grid-column: span 10 / span 10;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-11{
    grid-column: span 11 / span 11;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-12{
    grid-column: span 12 / span 12;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-2{
    grid-column: span 2 / span 2;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-3{
    grid-column: span 3 / span 3;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-4{
    grid-column: span 4 / span 4;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-5{
    grid-column: span 5 / span 5;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-6{
    grid-column: span 6 / span 6;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-7{
    grid-column: span 7 / span 7;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-8{
    grid-column: span 8 / span 8;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-span-9{
    grid-column: span 9 / span 9;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-1{
    grid-column-start: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-10{
    grid-column-start: 10;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-11{
    grid-column-start: 11;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-12{
    grid-column-start: 12;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-2{
    grid-column-start: 2;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-3{
    grid-column-start: 3;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-4{
    grid-column-start: 4;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-5{
    grid-column-start: 5;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-6{
    grid-column-start: 6;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-7{
    grid-column-start: 7;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-8{
    grid-column-start: 8;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .col-start-9{
    grid-column-start: 9;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .m-0{
    margin: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mx-0{
    margin-left: 0px;
    margin-right: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mx-1{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mx-auto{
    margin-left: auto;
    margin-right: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .my-0{
    margin-top: 0px;
    margin-bottom: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .my-0\.5{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-mt-2{
    margin-top: -0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mb-0{
    margin-bottom: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mb-1{
    margin-bottom: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mb-2{
    margin-bottom: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mb-4{
    margin-bottom: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mb-6{
    margin-bottom: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-0{
    margin-left: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-1{
    margin-left: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-10{
    margin-left: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-2{
    margin-left: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-4{
    margin-left: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-7{
    margin-left: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-8{
    margin-left: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ml-auto{
    margin-left: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-0{
    margin-right: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-0\.5{
    margin-right: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-1{
    margin-right: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-10{
    margin-right: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-2{
    margin-right: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-3{
    margin-right: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-6{
    margin-right: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mr-7{
    margin-right: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-0{
    margin-top: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-1{
    margin-top: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-1\.5{
    margin-top: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-14{
    margin-top: 3.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-2{
    margin-top: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-2\.5{
    margin-top: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-4{
    margin-top: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-\[1px\]{
    margin-top: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-\[2px\]{
    margin-top: 2px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .mt-auto{
    margin-top: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .box-border{
    box-sizing: border-box;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .block{
    display: block;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inline-block{
    display: inline-block;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inline{
    display: inline;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex{
    display: flex;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .inline-flex{
    display: inline-flex;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .table{
    display: table;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flow-root{
    display: flow-root;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid{
    display: grid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .contents{
    display: contents;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .hidden{
    display: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .aspect-video{
    aspect-ratio: 16 / 9;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-1\.5{
    width: 0.375rem;
    height: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-10{
    width: 2.5rem;
    height: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-12{
    width: 3rem;
    height: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-2{
    width: 0.5rem;
    height: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-2\.5{
    width: 0.625rem;
    height: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-3{
    width: 0.75rem;
    height: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-3\.5{
    width: 0.875rem;
    height: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-4{
    width: 1rem;
    height: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-5{
    width: 1.25rem;
    height: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-6{
    width: 1.5rem;
    height: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-7{
    width: 1.75rem;
    height: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .size-8{
    width: 2rem;
    height: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-0{
    height: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-1{
    height: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-10{
    height: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-12{
    height: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-14{
    height: 3.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-2{
    height: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-2\.5{
    height: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-3{
    height: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-4{
    height: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-5{
    height: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-6{
    height: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-64{
    height: 16rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-7{
    height: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-8{
    height: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-\[0\.5px\]{
    height: 0.5px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-\[40px\]{
    height: 40px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-auto{
    height: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-fit{
    height: -moz-fit-content;
    height: fit-content;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-full{
    height: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-px{
    height: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .h-screen{
    height: 100vh;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-h-\[10\.75rem\]{
    max-height: 10.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-h-\[13\.5rem\]{
    max-height: 13.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-h-\[85vh\]{
    max-height: 85vh;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-16{
    min-height: 4rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-5{
    min-height: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-6{
    min-height: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-\[2\.5rem\]{
    min-height: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-\[2rem\]{
    min-height: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-\[3rem\]{
    min-height: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-fit{
    min-height: -moz-fit-content;
    min-height: fit-content;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-full{
    min-height: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-h-screen{
    min-height: 100vh;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-0{
    width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1{
    width: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/10{
    width: 10%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/11{
    width: 9.0909091%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/12{
    width: 8.3333333%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/2{
    width: 50%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/3{
    width: 33.333333%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/4{
    width: 25%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/5{
    width: 20%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/6{
    width: 16.666667%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/7{
    width: 14.2857143%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/8{
    width: 12.5%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-1\/9{
    width: 11.1111111%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-10{
    width: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-11{
    width: 2.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-120{
    width: 30rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-14{
    width: 3.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-16{
    width: 4rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-2{
    width: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-2\.5{
    width: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-2\/3{
    width: 66.666667%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-3{
    width: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-4{
    width: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-5{
    width: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-6{
    width: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-60{
    width: 15rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-72{
    width: 18rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-8{
    width: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-80{
    width: 20rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-96{
    width: 24rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[104px\]{
    width: 104px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[18\.5rem\]{
    width: 18.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[22\.5rem\]{
    width: 22.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[4\.375rem\]{
    width: 4.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[696px\]{
    width: 696px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[90vw\]{
    width: 90vw;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[calc\(100\%\+0\.75rem\)\]{
    width: calc(100% + 0.75rem);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[calc\(100\%\+1rem\)\]{
    width: calc(100% + 1rem);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-\[calc\(100\%_-_5\.5rem\)\]{
    width: calc(100% - 5.5rem);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-auto{
    width: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-fit{
    width: -moz-fit-content;
    width: fit-content;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .w-full{
    width: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-10{
    min-width: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-12{
    min-width: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-40{
    min-width: 10rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-6{
    min-width: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-8{
    min-width: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-80{
    min-width: 20rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-\[180px\]{
    min-width: 180px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-\[8rem\]{
    min-width: 8rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .min-w-full{
    min-width: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-32{
    max-width: 8rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-5xl{
    max-width: 64rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-80{
    max-width: 20rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-96{
    max-width: 24rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-full{
    max-width: 100%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-lg{
    max-width: 32rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .max-w-xs{
    max-width: 20rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-1{
    flex: 1 1 0%;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-shrink-0{
    flex-shrink: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shrink{
    flex-shrink: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shrink-0{
    flex-shrink: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-grow{
    flex-grow: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grow{
    flex-grow: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grow-0{
    flex-grow: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .table-fixed{
    table-layout: fixed;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-collapse{
    border-collapse: collapse;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-separate{
    border-collapse: separate;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-spacing-0{
    --tw-border-spacing-x: 0px;
    --tw-border-spacing-y: 0px;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .origin-left{
    transform-origin: left;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-translate-x-2\/4{
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .-translate-y-2\/4{
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .translate-x-\[-0\.375rem\]{
    --tw-translate-x: -0.375rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .translate-x-\[-0\.5rem\]{
    --tw-translate-x: -0.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rotate-0{
    --tw-rotate: 0deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rotate-180{
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transform{
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse{
    50%{
        opacity: .5;
    }
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .animate-pulse{
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin{
    to{
        transform: rotate(360deg);
    }
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .animate-spin{
    animation: spin 1s linear infinite;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .cursor-auto{
    cursor: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .cursor-default{
    cursor: default;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .cursor-not-allowed{
    cursor: not-allowed;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .cursor-pointer{
    cursor: pointer;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .resize{
    resize: both;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .list-disc{
    list-style-type: disc;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .list-none{
    list-style-type: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .auto-cols-auto{
    grid-auto-columns: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-flow-row{
    grid-auto-flow: row;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-flow-col{
    grid-auto-flow: column;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-flow-row-dense{
    grid-auto-flow: row dense;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-flow-col-dense{
    grid-auto-flow: column dense;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .auto-rows-auto{
    grid-auto-rows: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-cols-subgrid{
    grid-template-columns: subgrid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-rows-\[auto_1fr\]{
    grid-template-rows: auto 1fr;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .grid-rows-subgrid{
    grid-template-rows: subgrid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-row{
    flex-direction: row;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-row-reverse{
    flex-direction: row-reverse;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-col{
    flex-direction: column;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-col-reverse{
    flex-direction: column-reverse;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-wrap{
    flex-wrap: wrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-wrap-reverse{
    flex-wrap: wrap-reverse;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .flex-nowrap{
    flex-wrap: nowrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .place-content-center{
    place-content: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .content-center{
    align-content: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .content-start{
    align-content: flex-start;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .items-start{
    align-items: flex-start;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .items-end{
    align-items: flex-end;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .items-center{
    align-items: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .items-baseline{
    align-items: baseline;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .items-stretch{
    align-items: stretch;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-normal{
    justify-content: normal;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-start{
    justify-content: flex-start;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-end{
    justify-content: flex-end;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-center{
    justify-content: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-between{
    justify-content: space-between;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-around{
    justify-content: space-around;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-evenly{
    justify-content: space-evenly;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-stretch{
    justify-content: stretch;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-0{
    gap: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-0\.5{
    gap: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-1{
    gap: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-1\.5{
    gap: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-2{
    gap: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-2\.5{
    gap: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-3{
    gap: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-4{
    gap: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-5{
    gap: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-6{
    gap: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-8{
    gap: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-x-2{
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-x-4{
    -moz-column-gap: 1rem;
         column-gap: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-x-5{
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-x-6{
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-x-8{
    -moz-column-gap: 2rem;
         column-gap: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-y-2{
    row-gap: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-y-4{
    row-gap: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-y-5{
    row-gap: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-y-6{
    row-gap: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .gap-y-8{
    row-gap: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-x-1 > :not([hidden]) ~ :not([hidden])){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-y-0\.5 > :not([hidden]) ~ :not([hidden])){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-y-1 > :not([hidden]) ~ :not([hidden])){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-y-2 > :not([hidden]) ~ :not([hidden])){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-y-3 > :not([hidden]) ~ :not([hidden])){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.space-y-4 > :not([hidden]) ~ :not([hidden])){
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.divide-x-0 > :not([hidden]) ~ :not([hidden])){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(0px * var(--tw-divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse)));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.divide-y > :not([hidden]) ~ :not([hidden])){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.divide-y-0\.5 > :not([hidden]) ~ :not([hidden])){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(0.5px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(0.5px * var(--tw-divide-y-reverse));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.divide-solid > :not([hidden]) ~ :not([hidden])){
    border-style: solid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.divide-border-subtle > :not([hidden]) ~ :not([hidden])){
    --tw-divide-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .self-start{
    align-self: flex-start;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .self-end{
    align-self: flex-end;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .self-center{
    align-self: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .self-stretch{
    align-self: stretch;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .self-baseline{
    align-self: baseline;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-self-auto{
    justify-self: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-self-start{
    justify-self: start;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-self-end{
    justify-self: end;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-self-center{
    justify-self: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .justify-self-stretch{
    justify-self: stretch;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-auto{
    overflow: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-hidden{
    overflow: hidden;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-clip{
    overflow: clip;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-visible{
    overflow: visible;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-x-auto{
    overflow-x: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-y-auto{
    overflow-y: auto;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .overflow-x-hidden{
    overflow-x: hidden;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .whitespace-nowrap{
    white-space: nowrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-wrap{
    text-wrap: wrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-nowrap{
    text-wrap: nowrap;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded{
    border-radius: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-full{
    border-radius: 9999px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-lg{
    border-radius: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-md{
    border-radius: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-none{
    border-radius: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-sm{
    border-radius: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-xl{
    border-radius: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-b-none{
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-bl{
    border-bottom-left-radius: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-bl-md{
    border-bottom-left-radius: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-br{
    border-bottom-right-radius: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-br-md{
    border-bottom-right-radius: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tl{
    border-top-left-radius: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tl-md{
    border-top-left-radius: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tl-none{
    border-top-left-radius: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tr{
    border-top-right-radius: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tr-md{
    border-top-right-radius: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .rounded-tr-none{
    border-top-right-radius: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border{
    border-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-0{
    border-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-0\.5{
    border-width: 0.5px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-\[0\.5px\]{
    border-width: 0.5px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-\[1\.25px\]{
    border-width: 1.25px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-x-0{
    border-left-width: 0px;
    border-right-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-y{
    border-top-width: 1px;
    border-bottom-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-y-0{
    border-top-width: 0px;
    border-bottom-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-b{
    border-bottom-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-b-0{
    border-bottom-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-b-0\.5{
    border-bottom-width: 0.5px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-l{
    border-left-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-l-0{
    border-left-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-r{
    border-right-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-r-0{
    border-right-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-t{
    border-top-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-t-0{
    border-top-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-solid{
    border-style: solid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-dashed{
    border-style: dashed;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-dotted{
    border-style: dotted;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-double{
    border-style: double;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-hidden{
    border-style: hidden;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-none{
    border-style: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-alert-border-danger{
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-alert-border-green{
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-alert-border-info{
    --tw-border-opacity: 1;
    border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-alert-border-neutral{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-alert-border-warning{
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-background-inverse{
    --tw-border-opacity: 1;
    border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-disabled{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-gray{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-green{
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-red{
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-sky{
    --tw-border-opacity: 1;
    border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-badge-border-yellow{
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-border-disabled{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-border-strong{
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-border-subtle{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-brand-primary-600{
    --tw-border-opacity: 1;
    border-color: rgb(92 46 222 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-button-primary{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-field-border{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-field-dropzone-color{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-focus-error-border{
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-slate-200{
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-support-success-inverse{
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-tab-border{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-text-inverse{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-toggle-off-border{
    --tw-border-opacity: 1;
    border-color: rgb(189 193 199 / var(--tw-border-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .border-transparent{
    border-color: transparent;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .\!bg-transparent{
    background-color: transparent !important;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-\[\#6005FF\]{
    --tw-bg-opacity: 1;
    background-color: rgb(96 5 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-\[\#BAE6FD\]\/40{
    background-color: rgb(186 230 253 / 0.4);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-\[\#F9FAFB\]{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-\[\#FCFCFD\]{
    --tw-bg-opacity: 1;
    background-color: rgb(252 252 253 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-alert-background-danger{
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-alert-background-green{
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-alert-background-info{
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-alert-background-neutral{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-alert-background-warning{
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-background-brand{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-background-inverse{
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-background-inverse\/90{
    background-color: rgb(17 24 39 / 0.9);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-background-primary{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-background-secondary{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-gray{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-green{
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-red{
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-sky{
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-background-yellow{
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-gray{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-green{
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-red{
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-sky{
    --tw-bg-opacity: 1;
    background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-badge-hover-yellow{
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-border-interactive{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-border-subtle{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-brand-background-50{
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-brand-primary-600{
    --tw-bg-opacity: 1;
    background-color: rgb(92 46 222 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-danger{
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-primary{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-secondary{
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-tertiary{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-tertiary-hover{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-current{
    background-color: currentColor;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-field-background-disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-field-background-error{
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-field-dropzone-background-hover{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-field-primary-background{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-field-secondary-background{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-gray-200{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-icon-interactive{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-misc-progress-background{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-support-success{
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-tab-background{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-text-tertiary{
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-toggle-dial-background{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-toggle-off{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-toggle-off-disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-tooltip-background-dark{
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-tooltip-background-light{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-transparent{
    background-color: transparent;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-none{
    background-image: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .fill-current{
    fill: currentColor;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .stroke-icon-primary{
    stroke: #111827;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .object-contain{
    -o-object-fit: contain;
       object-fit: contain;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .object-cover{
    -o-object-fit: cover;
       object-fit: cover;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .object-center{
    -o-object-position: center;
       object-position: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-0{
    padding: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-0\.5{
    padding: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-1{
    padding: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-1\.5{
    padding: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-10{
    padding: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-2{
    padding: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-2\.5{
    padding: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-3{
    padding: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-3\.5{
    padding: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-4{
    padding: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-5{
    padding: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-6{
    padding: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-8{
    padding: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .p-\[3px\]{
    padding: 3px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-0\.5{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-1\.5{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-2\.5{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-3\.5{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-4{
    padding-left: 1rem;
    padding-right: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .px-5\.5{
    padding-left: 1.375rem;
    padding-right: 1.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-0\.5{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-2\.5{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-3\.5{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pb-0{
    padding-bottom: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pb-1{
    padding-bottom: 0.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pb-3{
    padding-bottom: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pb-4{
    padding-bottom: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pb-5{
    padding-bottom: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-10{
    padding-left: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-2{
    padding-left: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-2\.5{
    padding-left: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-3{
    padding-left: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-3\.5{
    padding-left: 0.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-4{
    padding-left: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-8{
    padding-left: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pl-9{
    padding-left: 2.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-10{
    padding-right: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-12{
    padding-right: 3rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-2{
    padding-right: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-2\.5{
    padding-right: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-3{
    padding-right: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-8{
    padding-right: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pr-9{
    padding-right: 2.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pt-2{
    padding-top: 0.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pt-3{
    padding-top: 0.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pt-5{
    padding-top: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .pt-6{
    padding-top: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-left{
    text-align: left;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-center{
    text-align: center;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-figtree{
    font-family: Figtree, sans-serif;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-mono{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-\[16px\]{
    font-size: 16px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-base{
    font-size: 1rem;
    line-height: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-tiny{
    font-size: 0.625rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-xs{
    font-size: 0.75rem;
    line-height: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-bold{
    font-weight: 700;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-medium{
    font-weight: 500;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-normal{
    font-weight: 400;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .font-semibold{
    font-weight: 600;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .uppercase{
    text-transform: uppercase;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .capitalize{
    text-transform: capitalize;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .italic{
    font-style: italic;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-11{
    line-height: 2.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-4{
    line-height: 1rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-5{
    line-height: 1.25rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-6{
    line-height: 1.5rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-7{
    line-height: 1.75rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-7\.5{
    line-height: 1.875rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-8{
    line-height: 2rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-9\.5{
    line-height: 2.375rem;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-none{
    line-height: 1;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .leading-relaxed{
    line-height: 1.625;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .tracking-2{
    letter-spacing: 0.125em;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-\[\#111827\]{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-\[\#4F4E7C\]{
    --tw-text-opacity: 1;
    color: rgb(79 78 124 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-\[\#6005FF\]{
    --tw-text-opacity: 1;
    color: rgb(96 5 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-\[\#C026D3\]{
    --tw-text-opacity: 1;
    color: rgb(192 38 211 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-background-primary{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-disabled{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-gray{
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-green{
    --tw-text-opacity: 1;
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-red{
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-sky{
    --tw-text-opacity: 1;
    color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-badge-color-yellow{
    --tw-text-opacity: 1;
    color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-black{
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-border-strong{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-brand-800{
    --tw-text-opacity: 1;
    color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-brand-primary-600{
    --tw-text-opacity: 1;
    color: rgb(92 46 222 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-button-danger{
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-button-primary{
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-button-secondary{
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-button-tertiary-color{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-color-disabled{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-dropzone-color{
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-helper{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-input{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-label{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-field-placeholder{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-disabled{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-inverse{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-on-color{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-on-color-disabled{
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-primary{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-icon-secondary{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-link-primary{
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-error{
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-error-inverse{
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-info{
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-info-inverse{
    --tw-text-opacity: 1;
    color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-success{
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-success-inverse{
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-warning{
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-support-warning-inverse{
    --tw-text-opacity: 1;
    color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-disabled{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-inverse{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-on-color{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-primary{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-secondary{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-text-tertiary{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-tooltip-background-dark{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-tooltip-background-light{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .underline{
    text-decoration-line: underline;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .no-underline{
    text-decoration-line: none;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .underline-offset-2{
    text-underline-offset: 2px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder-text-tertiary::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder-text-tertiary::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .opacity-0{
    opacity: 0;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .opacity-40{
    opacity: 0.4;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .opacity-50{
    opacity: 0.5;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow{
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-container-item{
    --tw-shadow: 0px 1.5px 1px 0px rgba(0, 0, 0, 0.05);
    --tw-shadow-colored: 0px 1.5px 1px 0px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-md{
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-none{
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-soft-shadow-2xl{
    --tw-shadow: 0px 24px 64px -12px rgba(149, 160, 178, 0.32);
    --tw-shadow-colored: 0px 24px 64px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-soft-shadow-lg{
    --tw-shadow: 0px 12px 32px -12px rgba(149, 160, 178, 0.24);
    --tw-shadow-colored: 0px 12px 32px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .shadow-xs{
    --tw-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    --tw-shadow-colored: 0px 1px 2px 0px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline{
    outline-style: solid;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-1{
    outline-width: 1px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-border-disabled{
    outline-color: #E5E7EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-border-interactive{
    outline-color: #2563EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-border-subtle{
    outline-color: #E5E7EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-danger{
    outline-color: #DC2626;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-danger-hover{
    outline-color: #B91C1C;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-disabled{
    outline-color: #F3F4F6;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-primary{
    outline-color: #2563EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-secondary{
    outline-color: #1F2937;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-field-border{
    outline-color: #E5E7EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-field-border-disabled{
    outline-color: #F3F4F6;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-focus-error-border{
    outline-color: #FECACA;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-link-primary{
    outline-color: #2563EB;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-transparent{
    outline-color: transparent;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-alert-border-danger{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-alert-border-green{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-alert-border-info{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-alert-border-neutral{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-alert-border-warning{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-background-inverse{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-border-subtle{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-border-transparent-subtle{
    --tw-ring-color: #37415114;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-brand-primary-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(92 46 222 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-tab-border{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ring-offset-0{
    --tw-ring-offset-width: 0px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .filter{
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-\[box-shadow\2c color\2c background-color\]{
    transition-property: box-shadow,color,background-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-\[color\2c box-shadow\2c outline\]{
    transition-property: color,box-shadow,outline;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-\[color\2c outline\2c box-shadow\]{
    transition-property: color,outline,box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-\[outline\2c background-color\2c color\2c box-shadow\]{
    transition-property: outline,background-color,color,box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-\[width\]{
    transition-property: width;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-all{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-colors{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-opacity{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .transition-transform{
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .duration-150{
    transition-duration: 150ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .duration-200{
    transition-duration: 200ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .duration-300{
    transition-duration: 300ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .duration-500{
    transition-duration: 500ms;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .ease-linear{
    transition-timing-function: linear;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .\[grid-area\:1\/1\/2\/3\]{
    grid-area: 1/1/2/3;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .\[word-break\:break-word\]{
    word-break: break-word;
}

/* Custom Force UI Color Overrides */
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-link-primary {
    --tw-text-opacity: 1;
    color: rgb(96 5 255 / var(--tw-text-opacity, 1)) !important; /* UAE Purple */
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .text-button-primary{
    --tw-text-opacity: 1;
    color: rgb(96 5 255 / var(--tw-text-opacity, 1)) !important; /* UAE Purple */
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-secondary{
    --tw-bg-opacity: 1;
    background-color: #DDD6FE !important;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-secondary:hover{
    outline-color: #DDD6FE !important;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-secondary{
   outline-color: #DDD6FE !important;
}

/* Add to your main CSS file (e.g., index.css) */

.toplevel_page_hfe #wpcontent,
.post-type-elementor-hf #wpcontent {
    padding-left: 0;
}
.post-type-elementor-hf #wpbody-content .wrap {
	padding-left: 20px;
}
.post-type-elementor-hf .wp-heading-inline {
	font-size: 18px;
}
.post-type-elementor-hf #adminmenu .wp-submenu a[href ="edit.php?post_type=elementor-hf" ] {
    color: #ffffff;
    font-weight: 600;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps span.absolute {
	font-size: 13px;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .ring-border-subtle {
	--tw-ring-color: #64748B;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .border-border-subtle {
	border-color: #64748B;
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .min-w-10.border-y {
	min-width: 9rem;
	border-bottom-width: 0.5px;
}

#hfe-settings-app .loader {
	border: 4px solid #f3f3f3;
	border-radius: 50%;
	border-top: 4px solid #3498db;
	width: 40px;
	height: 40px;
	animation: spin 2s linear infinite;
}
.hfe-custom-scrollbar::-webkit-scrollbar {
	width: 4px;
}  
/* Track */
.hfe-custom-scrollbar::-webkit-scrollbar-track {
	background: #f1f1f1; 
}
   
/* Handle */
.hfe-custom-scrollbar::-webkit-scrollbar-thumb {
	background: #888; 
}
  
/* Handle on hover */
.hfe-custom-scrollbar::-webkit-scrollbar-thumb:hover {
	background: #555; 
}

.hfe-subheading h2 {
	font-size: 1.1rem !important;
}
.hfe-subheading .text-text-secondary {
	font-size: 0.98rem !important;
}
.hfe-loader-icon {
	top: -15%;
}
.hfe-remove-ring.hfe-span span {
	padding-left: 0px;
}
#hfe-settings-app .gap-2 {
	gap: 1.2rem;
}
.hfe-remove-ring input[type="checkbox"],
.hfe-remove-ring a,
.hfe-remove-ring {
	outline: none;
	--tw-ring-inset: auto;
	box-shadow: unset;
}
.hfe-settings-page h2 {
	margin-bottom: 0.3rem !important;
}
:is(#hfe-settings-app) .hfe-remove-ring svg.lucide-arrow-right {
	width: 1rem;
	height: 1rem;
}
.hfe-popup-button,
.hfe-popup-button svg {
	padding: 0;
}
.hfe-popup-button span {
	padding-left: 0;
}
.hfe-link-color,
.hfe-link-color span {
	color: rgb(96, 5, 255);
}
#hfe-settings-app .hfe-header-title h6 {
	color: #858484;
	font-size: 14px;
}
.hfe-settings-content-wrapper {
	padding: 15px 25px;
}
button.hfe-plugin-activated {
	color: #16a34a;
}
button.hfe-bulk-action-button {
	width: 160px;
}
.hfe-subtitle h2 {
	font-size: 0.9rem;
}
.hfe-65-width {
	width: 65%;
}
.hfe-35-width {
	width: 35%;
}
.hfe-78-width {
	width: 78%;
}
.hfe-88-width {
	width: 88%;
}

/* Sticky Right Sidebar */
.hfe-sticky-right-sidebar {
	position: sticky !important;
	top: 30px !important;
	align-self: flex-start !important;
}

#hfe-settings-app .subject-cell {
	max-width: 200px; /* Adjust this width based on your layout */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.hfe-tooltip-wrap {
	width: 100%;
    text-align: right;
}
.toplevel_page_hfe #wpcontent {
	padding-left: 0;
}
div#hfe-settings-app {
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
}

input[type="radio"].hfe-radio-field:checked::before {
	content: "";
    border-radius: 50%;
    width: 0.5rem;
    height: 0.5rem;
    margin: 0.1875rem;
    background-color: #6005FF;
    line-height: 1.14285714;
}
input[type="radio"].hfe-radio-field:focus {
	border-color: #6005ff;
	box-shadow: 0 0 0 1px #6005ff;
}
.hfe-compare-section h6 {
	font-size: 0.9rem !important;
	font-weight: 500 !important;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@media (min-width: 769px) {
	.hfe-sticky-outer-wrapper {
		width: 23%;
		border-right: 1px solid #e5e7eb;
	}
	.hfe-sticky-sidebar {
		position: sticky;
		top: 0;
	}
	.hfe-settings-page:before {
		animation-fill-mode: both;
		background: #fff;
		content: " ";
		height: 100%;
		position: fixed;
		left: 0;
		top: 0;
		transform-origin: right;
		border-right: 1px solid #e5e7eb;
		width: 30%;
	}
	.hfe-nav-menu {
		border-bottom: 1px solid #e5e7eb;
	}
}

@media (max-width: 768px) {
	#toplevel_page_hfe .container {
		padding: 0 1rem;
	}

	#toplevel_page_hfe .fixed {
		justify-content: flex-start !important;
	}

	#toplevel_page_hfe .bg-white {
		width: 100% !important;
		height: 100% !important;
		border-radius: 0 !important;
	}
	
	/* Disable sticky on mobile */
	.hfe-sticky-right-sidebar {
		position: static !important;
		max-height: none !important;
		overflow-y: visible !important;
	}
}
:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .text-xs {
	font-size: 0.77rem;
}
.hfe-min-700 {
	min-width: 700px;
}
#hfe-settings-app .subject-cell {
	max-width: 200px; /* Adjust this width based on your layout */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* .hfe-menu-page-wrapper {
	width: calc( 100% - 25px);
} */
#hfe-settings-app .gap-2 {
    gap: 1.2rem;
}
div#hfe-settings-app {
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
}
/* #hfe-settings-app .p-5 {
    padding: 0.5rem 1.25rem;
} */
#hfe-settings-app .hfe-header-title h6 {
	color: #858484;
	font-size: 14px;
}
.hfe-settings-content-wrapper {
	padding: 15px 25px;
}
@media (max-width: 1024px) {
	.hfe-65-width,
	.hfe-35-width,
	.hfe-78-width,
	.hfe-88-width {
		width: 100%;
	}
}
@media screen and (max-width: 782px) {
	:is(#hfe-settings-app, [data-floating-ui-portal]) .hfe-display-flex {
		display: block;
	}
	.hfe-radio-option {
		width: 1rem !important;
		height: 1rem !important;
	}
	.hfe-radio-option:checked:before {
		width: 0.5rem !important;
		height: 0.5rem !important;
		margin: 0.18rem !important;
	}
	:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps,
	#hfe-settings-app img {
		display: none;
	}
	.hfe-onboarding-customize {
		margin-left: 20px;
    	margin-right: 20px;
	}
	.hfe-min-700 {
		min-width: unset;
	}
	.hfe-onboarding-customize .hfe-custom-scrollbar {
		overflow: scroll;
		max-width: -moz-fit-content;
		max-width: fit-content;
	}
        .hfe-onboarding-bottom {
                display: grid !important;
                max-width: -moz-fit-content;
                max-width: fit-content;
        }
}

body.hfe-onboarding-fullscreen #wpadminbar,
body.hfe-onboarding-fullscreen #adminmenuback,
body.hfe-onboarding-fullscreen #adminmenuwrap,
body.hfe-onboarding-fullscreen #adminmenu,
body.hfe-onboarding-fullscreen #wpfooter {
       display: none;
}
body.hfe-onboarding-fullscreen #wpcontent {
       margin-left: 0;
       padding-left: 0;
}
body.hfe-onboarding-fullscreen.admin-bar {
       margin-top: 0 !important;
}


input[type="checkbox"].uae-role-checkbox:focus{
	border-color:rgb(92, 46, 222);
	box-shadow:0 0 0 1px rgb(92, 46, 222);
}

#wpfooter{
    background-color: white;
}
.uae-rating{
    color: #6005FF;
}

.uae-rating:hover{
	color: #4B00CC;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .file\:border-0::file-selector-button{
    border-width: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .file\:bg-transparent::file-selector-button{
    background-color: transparent;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .file\:text-text-tertiary::file-selector-button{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder\:text-field-placeholder::-moz-placeholder{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder\:text-field-placeholder::placeholder{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder\:text-text-disabled::-moz-placeholder{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .placeholder\:text-text-disabled::placeholder{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:absolute::before{
    content: var(--tw-content);
    position: absolute;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:top-2\/4::before{
    content: var(--tw-content);
    top: 50%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:hidden::before{
    content: var(--tw-content);
    display: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:h-10::before{
    content: var(--tw-content);
    height: 2.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:w-10::before{
    content: var(--tw-content);
    width: 2.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:-translate-x-2\/4::before{
    content: var(--tw-content);
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:-translate-y-2\/4::before{
    content: var(--tw-content);
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:rounded-full::before{
    content: var(--tw-content);
    border-radius: 9999px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:opacity-0::before{
    content: var(--tw-content);
    opacity: 0;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:transition-opacity::before{
    content: var(--tw-content);
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .before\:content-\[\'\'\]::before{
    --tw-content: '';
    content: var(--tw-content);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .after\:ml-0::after{
    content: var(--tw-content);
    margin-left: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .after\:ml-0\.5::after{
    content: var(--tw-content);
    margin-left: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .after\:text-field-required::after{
    content: var(--tw-content);
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .after\:content-\[\'\*\'\]::after{
    --tw-content: '*';
    content: var(--tw-content);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .first\:rounded-bl:first-child{
    border-bottom-left-radius: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .first\:rounded-tl:first-child{
    border-top-left-radius: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .first\:border-0:first-child{
    border-width: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .first\:border-r:first-child{
    border-right-width: 1px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .first\:border-border-subtle:first-child{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .last\:rounded-br:last-child{
    border-bottom-right-radius: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .last\:rounded-tr:last-child{
    border-top-right-radius: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .last\:border-0:last-child{
    border-width: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:border-border-interactive:checked{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:border-toggle-on-border:checked{
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:bg-toggle-on:checked{
    --tw-bg-opacity: 1;
    background-color: rgb(121 59 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:\[background-image\:none\]:checked{
    background-image: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:before\:hidden:checked::before{
    content: var(--tw-content);
    display: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:before\:content-\[\'\'\]:checked::before{
    --tw-content: '';
    content: var(--tw-content);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:z-10:focus-within{
    z-index: 10;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:border-focus-border:focus-within{
    --tw-border-opacity: 1;
    border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:text-field-input:focus-within{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:outline-none:focus-within{
    outline: 2px solid transparent;
    outline-offset: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:outline-focus-border:focus-within{
    outline-color: #D8B4FE;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:ring-focus:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-border-disabled:hover{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-border-interactive:hover{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-border-strong:hover{
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-button-primary:hover{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-field-border:hover{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-field-dropzone-color:hover{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:border-text-inverse:hover{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-background-brand:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-background-secondary:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-disabled:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-gray:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-green:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-red:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-sky:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-badge-hover-yellow:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-button-danger-hover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-button-primary-hover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-button-secondary-hover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-button-tertiary-hover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-field-background-error:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-field-dropzone-background-hover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-transparent:hover{
    background-color: transparent;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:bg-white:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-black:hover{
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-button-danger-secondary:hover{
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-button-primary-hover:hover{
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-link-primary-hover:hover{
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-text-disabled:hover{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-text-inverse:hover{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:text-text-primary:hover{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:underline:hover{
    text-decoration-line: underline;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:no-underline:hover{
    text-decoration-line: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-border-disabled:hover{
    outline-color: #E5E7EB;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-border-interactive:hover{
    outline-color: #2563EB;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-border-strong:hover{
    outline-color: #6B7280;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-border-subtle:hover{
    outline-color: #E5E7EB;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-danger:hover{
    outline-color: #DC2626;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-danger-hover:hover{
    outline-color: #B91C1C;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-primary-hover:hover{
    outline-color: #1D4ED8;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-secondary:hover{
    outline-color: #1F2937;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-button-secondary-hover:hover{
    outline-color: #374151;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:outline-field-border-disabled:hover{
    outline-color: #F3F4F6;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:before\:opacity-10:hover::before{
    content: var(--tw-content);
    opacity: 0.1;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:hover\:border-toggle-on-hover:hover:checked{
    --tw-border-opacity: 1;
    border-color: rgb(121 59 255 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:hover\:bg-toggle-on-hover:hover:checked{
    --tw-bg-opacity: 1;
    background-color: rgb(121 59 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:hover\:border-focus-border:hover:focus-within{
    --tw-border-opacity: 1;
    border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-within\:hover\:outline-focus-border:hover:focus-within{
    outline-color: #D8B4FE;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\:focus-within\:outline-focus-border:focus-within:hover{
    outline-color: #D8B4FE;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:rounded-sm:focus{
    border-radius: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:border-border-interactive:focus{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:border-focus-border:focus{
    --tw-border-opacity: 1;
    border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:border-focus-error-border:focus{
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:border-toggle-off-border:focus{
    --tw-border-opacity: 1;
    border-color: rgb(189 193 199 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:bg-background-secondary:focus{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:bg-button-tertiary-hover:focus{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:shadow-none:focus{
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline:focus{
    outline-style: solid;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline-1:focus{
    outline-width: 1px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline-border-subtle:focus{
    outline-color: #E5E7EB;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline-focus-border:focus{
    outline-color: #D8B4FE;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:outline-focus-error-border:focus{
    outline-color: #FECACA;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-border-interactive:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-field-color-error:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-focus:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 51 234 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-focus-error:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-toggle-on:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(121 59 255 / var(--tw-ring-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-transparent:focus{
    --tw-ring-color: transparent;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-offset-0:focus{
    --tw-ring-offset-width: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:ring-offset-2:focus{
    --tw-ring-offset-width: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus\:\[box-shadow\:none\]:focus{
    box-shadow: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:focus\:border-toggle-on-border:focus:checked{
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .focus-visible\:outline-none:focus-visible{
    outline: 2px solid transparent;
    outline-offset: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .active\:text-button-primary:active{
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .active\:outline-none:active{
    outline: 2px solid transparent;
    outline-offset: 2px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:cursor-default:disabled{
    cursor: default;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:cursor-not-allowed:disabled{
    cursor: not-allowed;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:border-border-disabled:disabled{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:border-field-border-disabled:disabled{
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:border-transparent:disabled{
    border-color: transparent;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:bg-button-disabled:disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:bg-button-tertiary:disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:bg-white:disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:text-text-disabled:disabled{
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:shadow-none:disabled{
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:shadow-toggle-disabled:disabled{
    --tw-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.1) inset;
    --tw-shadow-colored: inset 1px 1px 2px 0px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:outline-border-disabled:disabled{
    outline-color: #E5E7EB;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:outline-button-disabled:disabled{
    outline-color: #F3F4F6;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .disabled\:outline-field-border-disabled:disabled{
    outline-color: #F3F4F6;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:disabled\:border-border-disabled:disabled:checked{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:disabled\:bg-toggle-on-disabled:disabled:checked{
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .checked\:disabled\:bg-white:disabled:checked{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:focus-within .group-focus-within\/switch\:size-3\.25){
    width: 0.8125rem;
    height: 0.8125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:focus-within .group-focus-within\/switch\:size-4){
    width: 1rem;
    height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:focus-within .group-focus-within\/switch\:size-5){
    width: 1.25rem;
    height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group:focus-within .group-focus-within\:text-icon-primary){
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:right-0\.5){
    right: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:size-3\.25){
    width: 0.8125rem;
    height: 0.8125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:size-4){
    width: 1rem;
    height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:size-5){
    width: 1.25rem;
    height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:border-toggle-on-border){
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .group-hover\/switch\:bg-toggle-off-hover){
    --tw-bg-opacity: 1;
    background-color: rgb(189 193 199 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group:hover .group-hover\:text-field-input){
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group:hover .group-hover\:text-icon-primary){
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .checked\:group-hover\/switch\:border-toggle-on-border:checked){
    --tw-border-opacity: 1;
    border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .checked\:group-hover\/switch\:bg-toggle-on-hover:checked){
    --tw-bg-opacity: 1;
    background-color: rgb(121 59 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group:disabled .group-disabled\:text-field-color-disabled){
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group:disabled .group-disabled\:text-icon-disabled){
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:checked ~ .peer-checked\:translate-x-3){
    --tw-translate-x: 0.75rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:checked ~ .peer-checked\:translate-x-3\.75){
    --tw-translate-x: 0.9375rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:checked ~ .peer-checked\:translate-x-5){
    --tw-translate-x: 1.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:checked ~ .peer-checked\:opacity-100){
    opacity: 1;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:disabled ~ .peer-disabled\:cursor-not-allowed){
    cursor: not-allowed;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.peer:disabled ~ .peer-disabled\:text-border-disabled){
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .not-rtl\:left-1:not([dir="rtl"], [dir="rtl"] *){
    left: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .not-rtl\:left-2\/4:not([dir="rtl"], [dir="rtl"] *){
    left: 50%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .not-rtl\:before\:left-2\/4:not([dir="rtl"], [dir="rtl"] *)::before{
    content: var(--tw-content);
    left: 50%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:focus-within .not-rtl\:group-focus-within\/switch\:left-0\.5:not([dir="rtl"], [dir="rtl"] *)){
    left: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .not-rtl\:group-hover\/switch\:left-0\.5:not([dir="rtl"], [dir="rtl"] *)){
    left: 0.125rem;
}

@media (min-width: 640px){
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:mx-8{
        margin-left: 2rem;
        margin-right: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:block{
        display: block;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:inline{
        display: inline;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:h-10{
        height: 2.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:h-3\.5{
        height: 0.875rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:max-h-\[80vh\]{
        max-height: 80vh;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:w-3\.5{
        width: 0.875rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:w-8{
        width: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:w-\[62px\]{
        width: 62px;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:max-w-\[72\%\]{
        max-width: 72%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:gap-2\.5{
        gap: 0.625rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:gap-3{
        gap: 0.75rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:p-4{
        padding: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:p-\[4px\]{
        padding: 4px;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:px-4{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:px-5{
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:py-5{
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:pb-5{
        padding-bottom: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .sm\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

@media (min-width: 768px){
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-1{
        order: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-10{
        order: 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-11{
        order: 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-12{
        order: 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-2{
        order: 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-3{
        order: 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-4{
        order: 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-5{
        order: 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-6{
        order: 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-7{
        order: 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-8{
        order: 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-9{
        order: 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-first{
        order: -9999;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-last{
        order: 9999;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:order-none{
        order: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-1{
        grid-column: span 1 / span 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-10{
        grid-column: span 10 / span 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-11{
        grid-column: span 11 / span 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-12{
        grid-column: span 12 / span 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-2{
        grid-column: span 2 / span 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-3{
        grid-column: span 3 / span 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-4{
        grid-column: span 4 / span 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-5{
        grid-column: span 5 / span 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-6{
        grid-column: span 6 / span 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-7{
        grid-column: span 7 / span 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-8{
        grid-column: span 8 / span 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-span-9{
        grid-column: span 9 / span 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-1{
        grid-column-start: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-10{
        grid-column-start: 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-11{
        grid-column-start: 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-12{
        grid-column-start: 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-2{
        grid-column-start: 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-3{
        grid-column-start: 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-4{
        grid-column-start: 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-5{
        grid-column-start: 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-6{
        grid-column-start: 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-7{
        grid-column-start: 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-8{
        grid-column-start: 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:col-start-9{
        grid-column-start: 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:mt-0{
        margin-top: 0px;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/10{
        width: 10%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/11{
        width: 9.0909091%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/12{
        width: 8.3333333%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/2{
        width: 50%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/3{
        width: 33.333333%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/4{
        width: 25%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/5{
        width: 20%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/6{
        width: 16.666667%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/7{
        width: 14.2857143%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/8{
        width: 12.5%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-1\/9{
        width: 11.1111111%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:w-full{
        width: 100%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:shrink{
        flex-shrink: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:shrink-0{
        flex-shrink: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grow{
        flex-grow: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grow-0{
        flex-grow: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-flow-row{
        grid-auto-flow: row;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-flow-col{
        grid-auto-flow: column;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-flow-row-dense{
        grid-auto-flow: row dense;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-flow-col-dense{
        grid-auto-flow: column dense;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-1{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-10{
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-11{
        grid-template-columns: repeat(11, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-12{
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-4{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-5{
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-6{
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-7{
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-8{
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:grid-cols-9{
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-row{
        flex-direction: row;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-row-reverse{
        flex-direction: row-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-col{
        flex-direction: column;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-col-reverse{
        flex-direction: column-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-wrap{
        flex-wrap: wrap;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-wrap-reverse{
        flex-wrap: wrap-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:flex-nowrap{
        flex-wrap: nowrap;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:items-start{
        align-items: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:items-end{
        align-items: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:items-center{
        align-items: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:items-baseline{
        align-items: baseline;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:items-stretch{
        align-items: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-normal{
        justify-content: normal;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-start{
        justify-content: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-end{
        justify-content: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-center{
        justify-content: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-between{
        justify-content: space-between;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-around{
        justify-content: space-around;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-evenly{
        justify-content: space-evenly;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-stretch{
        justify-content: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-2{
        gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-4{
        gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-5{
        gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-6{
        gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-8{
        gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-x-2{
        -moz-column-gap: 0.5rem;
             column-gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-x-4{
        -moz-column-gap: 1rem;
             column-gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-x-5{
        -moz-column-gap: 1.25rem;
             column-gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-x-6{
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-x-8{
        -moz-column-gap: 2rem;
             column-gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-y-2{
        row-gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-y-4{
        row-gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-y-5{
        row-gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-y-6{
        row-gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:gap-y-8{
        row-gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) :is(.md\:space-x-1 > :not([hidden]) ~ :not([hidden])){
        --tw-space-x-reverse: 0;
        margin-right: calc(0.25rem * var(--tw-space-x-reverse));
        margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:self-start{
        align-self: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:self-end{
        align-self: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:self-center{
        align-self: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:self-stretch{
        align-self: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:self-baseline{
        align-self: baseline;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-self-auto{
        justify-self: auto;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-self-start{
        justify-self: start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-self-end{
        justify-self: end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-self-center{
        justify-self: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .md\:justify-self-stretch{
        justify-self: stretch;
    }
}

@media (min-width: 1024px){
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-1{
        order: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-10{
        order: 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-11{
        order: 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-12{
        order: 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-2{
        order: 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-3{
        order: 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-4{
        order: 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-5{
        order: 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-6{
        order: 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-7{
        order: 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-8{
        order: 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-9{
        order: 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-first{
        order: -9999;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-last{
        order: 9999;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:order-none{
        order: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-1{
        grid-column: span 1 / span 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-10{
        grid-column: span 10 / span 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-11{
        grid-column: span 11 / span 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-12{
        grid-column: span 12 / span 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-2{
        grid-column: span 2 / span 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-3{
        grid-column: span 3 / span 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-4{
        grid-column: span 4 / span 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-5{
        grid-column: span 5 / span 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-6{
        grid-column: span 6 / span 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-7{
        grid-column: span 7 / span 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-8{
        grid-column: span 8 / span 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-span-9{
        grid-column: span 9 / span 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-1{
        grid-column-start: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-10{
        grid-column-start: 10;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-11{
        grid-column-start: 11;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-12{
        grid-column-start: 12;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-2{
        grid-column-start: 2;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-3{
        grid-column-start: 3;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-4{
        grid-column-start: 4;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-5{
        grid-column-start: 5;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-6{
        grid-column-start: 6;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-7{
        grid-column-start: 7;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-8{
        grid-column-start: 8;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:col-start-9{
        grid-column-start: 9;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/10{
        width: 10%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/11{
        width: 9.0909091%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/12{
        width: 8.3333333%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/2{
        width: 50%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/3{
        width: 33.333333%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/4{
        width: 25%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/5{
        width: 20%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/6{
        width: 16.666667%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/7{
        width: 14.2857143%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/8{
        width: 12.5%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-1\/9{
        width: 11.1111111%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-\[47\.5rem\]{
        width: 47.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:w-full{
        width: 100%;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:shrink{
        flex-shrink: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:shrink-0{
        flex-shrink: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grow{
        flex-grow: 1;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grow-0{
        flex-grow: 0;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-flow-row{
        grid-auto-flow: row;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-flow-col{
        grid-auto-flow: column;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-flow-row-dense{
        grid-auto-flow: row dense;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-flow-col-dense{
        grid-auto-flow: column dense;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-1{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-10{
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-11{
        grid-template-columns: repeat(11, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-12{
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-4{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-5{
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-6{
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-7{
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-8{
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:grid-cols-9{
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-row{
        flex-direction: row;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-row-reverse{
        flex-direction: row-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-col{
        flex-direction: column;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-col-reverse{
        flex-direction: column-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-wrap{
        flex-wrap: wrap;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-wrap-reverse{
        flex-wrap: wrap-reverse;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:flex-nowrap{
        flex-wrap: nowrap;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:items-start{
        align-items: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:items-end{
        align-items: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:items-center{
        align-items: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:items-baseline{
        align-items: baseline;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:items-stretch{
        align-items: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-normal{
        justify-content: normal;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-start{
        justify-content: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-end{
        justify-content: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-center{
        justify-content: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-between{
        justify-content: space-between;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-around{
        justify-content: space-around;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-evenly{
        justify-content: space-evenly;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-stretch{
        justify-content: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-2{
        gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-4{
        gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-5{
        gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-6{
        gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-8{
        gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-x-2{
        -moz-column-gap: 0.5rem;
             column-gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-x-4{
        -moz-column-gap: 1rem;
             column-gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-x-5{
        -moz-column-gap: 1.25rem;
             column-gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-x-6{
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-x-8{
        -moz-column-gap: 2rem;
             column-gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-y-2{
        row-gap: 0.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-y-4{
        row-gap: 1rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-y-5{
        row-gap: 1.25rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-y-6{
        row-gap: 1.5rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:gap-y-8{
        row-gap: 2rem;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:self-start{
        align-self: flex-start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:self-end{
        align-self: flex-end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:self-center{
        align-self: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:self-stretch{
        align-self: stretch;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:self-baseline{
        align-self: baseline;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-self-auto{
        justify-self: auto;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-self-start{
        justify-self: start;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-self-end{
        justify-self: end;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-self-center{
        justify-self: center;
    }
    :is(#hfe-settings-app, [data-floating-ui-portal]) .lg\:justify-self-stretch{
        justify-self: stretch;
    }
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .rtl\:right-1:where([dir="rtl"], [dir="rtl"] *){
    right: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .rtl\:right-2\/4:where([dir="rtl"], [dir="rtl"] *){
    right: 50%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .rtl\:before\:right-2\/4:where([dir="rtl"], [dir="rtl"] *)::before{
    content: var(--tw-content);
    right: 50%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:focus-within .rtl\:group-focus-within\/switch\:right-0\.5:where([dir="rtl"], [dir="rtl"] *)){
    right: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .rtl\:group-hover\/switch\:right-0:where([dir="rtl"], [dir="rtl"] *)){
    right: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.group\/switch:hover .rtl\:group-hover\/switch\:right-0\.5:where([dir="rtl"], [dir="rtl"] *)){
    right: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .\[\&\:has\(\[aria-expanded\=\'true\'\]\)\]\:shadow-xs:has([aria-expanded='true']){
    --tw-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    --tw-shadow-colored: 0px 1px 2px 0px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .\[\&\:hover\:has\(\:disabled\)\]\:outline-field-border-disabled:hover:has(:disabled){
    outline-color: #F3F4F6;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .\[\&\:hover\:not\(\:focus\)\:not\(\:disabled\)\]\:outline-border-strong:hover:not(:focus):not(:disabled){
    outline-color: #6B7280;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\:hover\>h3\]\:bg-transparent:hover>h3){
    background-color: transparent;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\:hover\>svg\]\:text-border-strong:hover>svg){
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .\[\&\:is\(\[data-hover\=true\]\)\]\:rounded-none:is([data-hover=true]){
    border-radius: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) .\[\&\:is\(\[data-hover\=true\]\)\]\:bg-brand-background-50:is([data-hover=true]){
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\:not\(svg\)\]\:m-1>*:not(svg)){
    margin: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\:not\(svg\)\]\:mx-1>*:not(svg)){
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\:not\(svg\)\]\:my-0\.5>*:not(svg)){
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:box-border>*){
    box-sizing: border-box;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-2xl>*){
    font-size: 1.5rem;
    line-height: 2rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-base>*){
    font-size: 1rem;
    line-height: 1.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-lg>*){
    font-size: 1.125rem;
    line-height: 1.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-sm>*){
    font-size: 0.875rem;
    line-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-xl>*){
    font-size: 1.25rem;
    line-height: 1.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-xs>*){
    font-size: 0.75rem;
    line-height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-field-color-disabled>*){
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-field-helper>*){
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-field-label>*){
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>\*\]\:text-support-error>*){
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>div\]\:flex-grow>div){
    flex-grow: 1;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>div\]\:p-0>div){
    padding: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>li\]\:pointer-events-auto>li){
    pointer-events: auto;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>p\]\:m-0>p){
    margin: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>p\]\:w-full>p){
    width: 100%;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>span\:first-child\]\:shrink-0>span:first-child){
    flex-shrink: 0;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>span\]\:flex>span){
    display: flex;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>span\]\:items-center>span){
    align-items: center;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:m-1>svg){
    margin: 0.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:m-1\.5>svg){
    margin: 0.375rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:block>svg){
    display: block;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:hidden>svg){
    display: none;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-12>svg){
    width: 3rem;
    height: 3rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-3>svg){
    width: 0.75rem;
    height: 0.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-3\.5>svg){
    width: 0.875rem;
    height: 0.875rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-4>svg){
    width: 1rem;
    height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-5>svg){
    width: 1.25rem;
    height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-6>svg){
    width: 1.5rem;
    height: 1.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:size-8>svg){
    width: 2rem;
    height: 2rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:h-3>svg){
    height: 0.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:h-4>svg){
    height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:h-5>svg){
    height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:w-3>svg){
    width: 0.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:w-4>svg){
    width: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:w-5>svg){
    width: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:shrink-0>svg){
    flex-shrink: 0;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\>svg\]\:text-icon-interactive>svg){
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\[aria-expanded\=\'true\'\]_\.learn-chevron-right\]\:rotate-90[aria-expanded='true'] .learn-chevron-right){
    --tw-rotate: 90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&\[aria-expanded\=\'true\'\]_\.learn-more-btn\]\:flex[aria-expanded='true'] .learn-more-btn){
    display: flex;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\*\]\:box-border *){
    box-sizing: border-box;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\*\]\:text-sm *){
    font-size: 0.875rem;
    line-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\*\]\:leading-5 *){
    line-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:min-h-5 .editor-content>p){
    min-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:min-h-6 .editor-content>p){
    min-height: 1.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:min-h-7 .editor-content>p){
    min-height: 1.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:content-center .editor-content>p){
    align-content: center;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:text-base .editor-content>p){
    font-size: 1rem;
    line-height: 1.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:text-sm .editor-content>p){
    font-size: 0.875rem;
    line-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:text-xs .editor-content>p){
    font-size: 0.75rem;
    line-height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.editor-content\>p\]\:font-normal .editor-content>p){
    font-weight: 400;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.pointer-events-none\]\:text-base .pointer-events-none){
    font-size: 1rem;
    line-height: 1.5rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.pointer-events-none\]\:text-sm .pointer-events-none){
    font-size: 0.875rem;
    line-height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.pointer-events-none\]\:text-xs .pointer-events-none){
    font-size: 0.75rem;
    line-height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_\.pointer-events-none\]\:font-normal .pointer-events-none){
    font-weight: 400;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_p\]\:m-0 p){
    margin: 0px;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_p\]\:text-badge-color-disabled p){
    --tw-text-opacity: 1;
    color: rgb(189 193 199 / var(--tw-text-opacity, 1));
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_svg\]\:size-3 svg){
    width: 0.75rem;
    height: 0.75rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_svg\]\:size-4 svg){
    width: 1rem;
    height: 1rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_svg\]\:size-5 svg){
    width: 1.25rem;
    height: 1.25rem;
}

:is(#hfe-settings-app, [data-floating-ui-portal]) :is(.\[\&_svg\]\:size-6 svg){
    width: 1.5rem;
    height: 1.5rem;
}

/*# sourceMappingURL=main.css.map*/PK���\SI�X��
build/main.jsnu�[���/*! For license information please see main.js.LICENSE.txt */
(()=>{var e,t,n={67:(e,t)=>{"use strict";t.YW=function(e,t={}){const{decode:p=decodeURIComponent,delimiter:f=n}=t,{regexp:h,keys:g}=function(e,t={}){const{delimiter:p=n,end:f=!0,sensitive:h=!1,trailing:g=!0}=t,y=[],v=[],x=h?"":"i",b=(Array.isArray(e)?e:[e]).map((e=>e instanceof u?e:function(e,t={}){const{encodePath:n=r}=t,l=new c(function*(e){const t=[...e];let n=0;function r(){let e="";if(o.test(t[++n]))for(e+=t[n];a.test(t[++n]);)e+=t[n];else if('"'===t[n]){let r=n;for(;n<t.length;){if('"'===t[++n]){n++,r=0;break}e+="\\"===t[n]?t[++n]:t[n]}if(r)throw new TypeError(`Unterminated quote at ${r}: ${s}`)}if(!e)throw new TypeError(`Missing parameter name at ${n}: ${s}`);return e}for(;n<t.length;){const e=t[n],o=i[e];if(o)yield{type:o,index:n++,value:e};else if("\\"===e)yield{type:"ESCAPED",index:n++,value:t[n++]};else if(":"===e){const e=r();yield{type:"PARAM",index:n,value:e}}else if("*"===e){const e=r();yield{type:"WILDCARD",index:n,value:e}}else yield{type:"CHAR",index:n,value:t[n++]}}return{type:"END",index:n,value:""}}(e)),d=function e(t){const r=[];for(;;){const o=l.text();o&&r.push({type:"text",value:n(o)});const a=l.tryConsume("PARAM");if(a){r.push({type:"param",name:a});continue}const s=l.tryConsume("WILDCARD");if(s)r.push({type:"wildcard",name:s});else{if(!l.tryConsume("{"))return l.consume(t),r;r.push({type:"group",tokens:e("}")})}}}("END");return new u(d)}(e,t)));for(const{tokens:e}of b)for(const t of d(e,0,[])){const e=m(t,p,y);v.push(e)}let w=`^(?:${v.join("|")})`;return g&&(w+=`(?:${l(p)}$)?`),w+=f?"$":`(?=${l(p)}|$)`,{regexp:new RegExp(w,x),keys:y}}(e,t),y=g.map((e=>!1===p?r:"param"===e.type?p:e=>e.split(f).map(p)));return function(e){const t=h.exec(e);if(!t)return!1;const n=t[0],r=Object.create(null);for(let e=1;e<t.length;e++){if(void 0===t[e])continue;const n=g[e-1],o=y[e-1];r[n.name]=o(t[e])}return{path:n,params:r}}};const n="/",r=e=>e,o=/^[$_\p{ID_Start}]$/u,a=/^[$\u200c\u200d\p{ID_Continue}]$/u,s="https://git.new/pathToRegexpError",i={"{":"{","}":"}","(":"(",")":")","[":"[","]":"]","+":"+","?":"?","!":"!"};function l(e){return e.replace(/[.+*?^${}()[\]|/\\]/g,"\\$&")}class c{constructor(e){this.tokens=e}peek(){if(!this._peek){const e=this.tokens.next();this._peek=e.value}return this._peek}tryConsume(e){const t=this.peek();if(t.type===e)return this._peek=void 0,t.value}consume(e){const t=this.tryConsume(e);if(void 0!==t)return t;const{type:n,index:r}=this.peek();throw new TypeError(`Unexpected ${n} at ${r}, expected ${e}: ${s}`)}text(){let e,t="";for(;e=this.tryConsume("CHAR")||this.tryConsume("ESCAPED");)t+=e;return t}}class u{constructor(e){this.tokens=e}}function*d(e,t,n){if(t===e.length)return yield n;const r=e[t];if("group"===r.type){const o=n.slice();for(const n of d(r.tokens,0,o))yield*d(e,t+1,n)}else n.push(r);yield*d(e,t+1,n)}function m(e,t,n){let r="",o="",a=!0;for(let i=0;i<e.length;i++){const c=e[i];if("text"!==c.type)if("param"!==c.type&&"wildcard"!==c.type);else{if(!a&&!o)throw new TypeError(`Missing text after "${c.name}": ${s}`);"param"===c.type?r+=`(${p(t,a?"":o)}+)`:r+="([\\s\\S]+)",n.push(c),o="",a=!1}else r+=l(c.value),o+=c.value,a||(a=c.value.includes(t))}return r}function p(e,t){return t.length<2?e.length<2?`[^${l(e+t)}]`:`(?:(?!${l(e)})[^${l(t)}])`:e.length<2?`(?:(?!${l(t)})[^${l(e)}])`:`(?:(?!${l(t)}|${l(e)})[\\s\\S])`}},338:(e,t,n)=>{"use strict";var r=n(795);t.H=r.createRoot,r.hydrateRoot},795:e=>{"use strict";e.exports=window.ReactDOM},942:(e,t)=>{var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e="",t=0;t<arguments.length;t++){var n=arguments[t];n&&(e=s(e,a(n)))}return e}function a(e){if("string"==typeof e||"number"==typeof e)return e;if("object"!=typeof e)return"";if(Array.isArray(e))return o.apply(null,e);if(e.toString!==Object.prototype.toString&&!e.toString.toString().includes("[native code]"))return e.toString();var t="";for(var n in e)r.call(e,n)&&e[n]&&(t=s(t,n));return t}function s(e,t){return t?e?e+" "+t:e+t:e}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},992:(e,t)=>{"use strict";var n=Object.prototype.hasOwnProperty;function r(e){try{return decodeURIComponent(e.replace(/\+/g," "))}catch(e){return null}}function o(e){try{return encodeURIComponent(e)}catch(e){return null}}t.stringify=function(e,t){t=t||"";var r,a,s=[];for(a in"string"!=typeof t&&(t="?"),e)if(n.call(e,a)){if((r=e[a])||null!=r&&!isNaN(r)||(r=""),a=o(a),r=o(r),null===a||null===r)continue;s.push(a+"="+r)}return s.length?t+s.join("&"):""},t.parse=function(e){for(var t,n=/([^=?#&]+)=?([^&]*)/g,o={};t=n.exec(e);){var a=r(t[1]),s=r(t[2]);null===a||null===s||a in o||(o[a]=s)}return o}}},r={};function o(e){var t=r[e];if(void 0!==t)return t.exports;var a=r[e]={exports:{}};return n[e](a,a.exports,o),a.exports}o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,o.t=function(n,r){if(1&r&&(n=this(n)),8&r)return n;if("object"==typeof n&&n){if(4&r&&n.__esModule)return n;if(16&r&&"function"==typeof n.then)return n}var a=Object.create(null);o.r(a);var s={};e=e||[null,t({}),t([]),t(t)];for(var i=2&r&&n;"object"==typeof i&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach((e=>s[e]=()=>n[e]));return s.default=()=>n,o.d(a,s),a},o.d=(e,t)=>{for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e=o(338);const t=window.wp.domReady;var n=o.n(t);function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function a(e,t){if(e){if("string"==typeof e)return r(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}}function s(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a,s,i=[],l=!0,c=!1;try{if(a=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=a.call(n)).done)&&(i.push(r.value),i.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(s=n.return(),Object(s)!==s))return}finally{if(c)throw o}}return i}}(e,t)||a(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}const i=window.React;var l=o.t(i,2),c=o.n(i);function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function d(e){var t=function(e){if("object"!=u(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var n=t.call(e,"string");if("object"!=u(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==u(t)?t:t+""}function m(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,d(r.key),r)}}function p(e){return p=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},p(e)}function f(e,t){return f=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},f(e,t)}function h(e,t,n){return(t=d(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}const g=window.wp.element;var y,v=o(992);function x(e){return{path:e.pathname,hash:e.hash,query:v.parse(e.search)}}function b(){return b=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},b.apply(null,arguments)}!function(e){e.Pop="POP",e.Push="PUSH",e.Replace="REPLACE"}(y||(y={}));var w="beforeunload";function E(e){e.preventDefault(),e.returnValue=""}function _(){var e=[];return{get length(){return e.length},push:function(t){return e.push(t),function(){e=e.filter((function(e){return e!==t}))}},call:function(t){e.forEach((function(e){return e&&e(t)}))}}}var k=function(e){void 0===e&&(e={});var t=e.window,n=void 0===t?document.defaultView:t,r=n.history;function o(){var e=n.location,t=e.pathname,o=e.search,a=e.hash,s=r.state||{};return[s.idx,{pathname:t,search:o,hash:a,state:s.usr||null,key:s.key||"default"}]}var a=null;n.addEventListener("popstate",(function(){if(a)d.call(a),a=null;else{var e=y.Pop,t=o(),n=t[0],r=t[1];if(d.length){if(null!=n){var s=l-n;s&&(a={action:e,location:r,retry:function(){v(-1*s)}},v(s))}}else g(e)}}));var s=y.Pop,i=o(),l=i[0],c=i[1],u=_(),d=_();function m(e){return"string"==typeof e?e:(n=(t=e).pathname,r=void 0===n?"/":n,o=t.search,a=void 0===o?"":o,s=t.hash,i=void 0===s?"":s,a&&"?"!==a&&(r+="?"===a.charAt(0)?a:"?"+a),i&&"#"!==i&&(r+="#"===i.charAt(0)?i:"#"+i),r);var t,n,r,o,a,s,i}function p(e,t){return void 0===t&&(t=null),b({pathname:c.pathname,hash:"",search:""},"string"==typeof e?function(e){var t={};if(e){var n=e.indexOf("#");n>=0&&(t.hash=e.substr(n),e=e.substr(0,n));var r=e.indexOf("?");r>=0&&(t.search=e.substr(r),e=e.substr(0,r)),e&&(t.pathname=e)}return t}(e):e,{state:t,key:Math.random().toString(36).substr(2,8)})}function f(e,t){return[{usr:e.state,key:e.key,idx:t},m(e)]}function h(e,t,n){return!d.length||(d.call({action:e,location:t,retry:n}),!1)}function g(e){s=e;var t=o();l=t[0],c=t[1],u.call({action:s,location:c})}function v(e){r.go(e)}return null==l&&(l=0,r.replaceState(b({},r.state,{idx:l}),"")),{get action(){return s},get location(){return c},createHref:m,push:function e(t,o){var a=y.Push,s=p(t,o);if(h(a,s,(function(){e(t,o)}))){var i=f(s,l+1),c=i[0],u=i[1];try{r.pushState(c,"",u)}catch(e){n.location.assign(u)}g(a)}},replace:function e(t,n){var o=y.Replace,a=p(t,n);if(h(o,a,(function(){e(t,n)}))){var s=f(a,l),i=s[0],c=s[1];r.replaceState(i,"",c),g(o)}},go:v,back:function(){v(-1)},forward:function(){v(1)},listen:function(e){return u.push(e)},block:function(e){var t=d.push(e);return 1===d.length&&n.addEventListener(w,E),function(){t(),d.length||n.removeEventListener(w,E)}}}}(),S=wp.element.createContext({route:x(k.location)}),N=o(67),C=wp.element.useContext,P="";function T(e){var t=e.path,n=e.onRoute,r=e.children,o=C(S).route,a=(0,N.YW)("".concat(t))("".concat(o.hash.substr(1)));return a?(n&&(P!==a.path&&n(),P=a.path),React.createElement("div",null,wp.element.cloneElement(r,{route:a}))):null}var j=o(942),R=o.n(j);function F(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}var A=wp.element.useContext;function D(e){var t=e.to,n=e.onClick,r=e.children,o=e.activeClassName,a=A(S).route,s=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?F(Object(n),!0).forEach((function(t){h(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):F(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},e);return delete s.activeClassName,React.createElement("a",b({},s,{className:R()(h({},o,(0,N.YW)("".concat(t))("".concat(a.hash.substr(1)))),e.className),onClick:function(e){if(e.preventDefault(),a.path!==t||e.target.classList.contains("hfe-user-icon"))if(n&&n(e),"elementor-hf"===t&&hfeSettingsData.header_footer_builder)window.location.href=hfeSettingsData.header_footer_builder;else{var r=k.location.search,o=window.location.hash;if(r.includes("admin.php?page=hfe")&&o.includes(t))if(t.includes("settings")){var s=r+"&tab=1";e.target.classList.contains("hfe-user-icon")&&window.location.hash.includes("settings")?window.location.href="".concat(s,"#").concat(t):k.push("".concat(r,"#").concat(t))}else{var i=r.replace(/&tab=[^&]*/,"");k.push("".concat(i,"#").concat(t))}else window.location.href="".concat(hfeSettingsData.hfe_settings_url,"#").concat(t)}}}),r)}function M(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(M=function(){return!!e})()}var O=function(e){function t(e){var n;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),n=function(e,t,n){return t=p(t),function(e,t){if(t&&("object"==u(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(e,M()?Reflect.construct(t,n||[],p(e).constructor):t.apply(e,n))}(this,t,[e]),h(n,"handleRouteChange",(function(e){localStorage.setItem("hfeSelectedItemId","1");var t=x(null==e?void 0:e.location);n.setState({route:t})})),n.routes=Object.keys(e.routes).map((function(t){return e.routes[t].path})),n.unlisten=k.listen(n.handleRouteChange);var r=x(k.location),o=k.location.search;return n.state={route:r,defaultRoute:null!=e&&e.defaultRoute?"".concat(o,"#").concat(null==e?void 0:e.defaultRoute):"".concat(o,"#/")},n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),function(e,t){return t&&m(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e}(t,[{key:"componentWillUnmount",value:function(){this.unlisten()}},{key:"render",value:function(){var e=this.props,t=e.children,n=(e.NotFound,this.state),r=n.route,o=n.defaultRoute;if(!r.hash)return k.push(o),React.createElement("div",null);var a=!1;(this.routes||[]).forEach((function(e){var t=(0,N.YW)(r.hash.substr(1))("".concat(r.hash.substr(1)));t&&(a={name:e,data:t})}));var s={route:r,matched:a},i=!a;return React.createElement(S.Provider,{value:s},i?React.createElement("div",null,"Not found"):t)}}])}(g.Component);const L=window.ReactJSXRuntime,I=e=>{const t=U(e),{conflictingClassGroups:n,conflictingClassGroupModifiers:r}=e;return{getClassGroupId:e=>{const n=e.split("-");return""===n[0]&&1!==n.length&&n.shift(),B(n,t)||V(e)},getConflictingClassGroupIds:(e,t)=>{const o=n[e]||[];return t&&r[e]?[...o,...r[e]]:o}}},B=(e,t)=>{if(0===e.length)return t.classGroupId;const n=e[0],r=t.nextPart.get(n),o=r?B(e.slice(1),r):void 0;if(o)return o;if(0===t.validators.length)return;const a=e.join("-");return t.validators.find((({validator:e})=>e(a)))?.classGroupId},z=/^\[(.+)\]$/,V=e=>{if(z.test(e)){const t=z.exec(e)[1],n=t?.substring(0,t.indexOf(":"));if(n)return"arbitrary.."+n}},U=e=>{const{theme:t,prefix:n}=e,r={nextPart:new Map,validators:[]};return q(Object.entries(e.classGroups),n).forEach((([e,n])=>{W(n,r,e,t)})),r},W=(e,t,n,r)=>{e.forEach((e=>{if("string"!=typeof e){if("function"==typeof e)return $(e)?void W(e(r),t,n,r):void t.validators.push({validator:e,classGroupId:n});Object.entries(e).forEach((([e,o])=>{W(o,H(t,e),n,r)}))}else(""===e?t:H(t,e)).classGroupId=n}))},H=(e,t)=>{let n=e;return t.split("-").forEach((e=>{n.nextPart.has(e)||n.nextPart.set(e,{nextPart:new Map,validators:[]}),n=n.nextPart.get(e)})),n},$=e=>e.isThemeGetter,q=(e,t)=>t?e.map((([e,n])=>[e,n.map((e=>"string"==typeof e?t+e:"object"==typeof e?Object.fromEntries(Object.entries(e).map((([e,n])=>[t+e,n]))):e))])):e,Y=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,n=new Map,r=new Map;const o=(o,a)=>{n.set(o,a),t++,t>e&&(t=0,r=n,n=new Map)};return{get(e){let t=n.get(e);return void 0!==t?t:void 0!==(t=r.get(e))?(o(e,t),t):void 0},set(e,t){n.has(e)?n.set(e,t):o(e,t)}}},G=e=>{const{separator:t,experimentalParseClassName:n}=e,r=1===t.length,o=t[0],a=t.length,s=e=>{const n=[];let s,i=0,l=0;for(let c=0;c<e.length;c++){let u=e[c];if(0===i){if(u===o&&(r||e.slice(c,c+a)===t)){n.push(e.slice(l,c)),l=c+a;continue}if("/"===u){s=c;continue}}"["===u?i++:"]"===u&&i--}const c=0===n.length?e:e.substring(l),u=c.startsWith("!");return{modifiers:n,hasImportantModifier:u,baseClassName:u?c.substring(1):c,maybePostfixModifierPosition:s&&s>l?s-l:void 0}};return n?e=>n({className:e,parseClassName:s}):s},X=e=>{if(e.length<=1)return e;const t=[];let n=[];return e.forEach((e=>{"["===e[0]?(t.push(...n.sort(),e),n=[]):n.push(e)})),t.push(...n.sort()),t},K=/\s+/;function Z(){let e,t,n=0,r="";for(;n<arguments.length;)(e=arguments[n++])&&(t=J(e))&&(r&&(r+=" "),r+=t);return r}const J=e=>{if("string"==typeof e)return e;let t,n="";for(let r=0;r<e.length;r++)e[r]&&(t=J(e[r]))&&(n&&(n+=" "),n+=t);return n};function Q(e,...t){let n,r,o,a=function(i){const l=t.reduce(((e,t)=>t(e)),e());return n=(e=>({cache:Y(e.cacheSize),parseClassName:G(e),...I(e)}))(l),r=n.cache.get,o=n.cache.set,a=s,s(i)};function s(e){const t=r(e);if(t)return t;const a=((e,t)=>{const{parseClassName:n,getClassGroupId:r,getConflictingClassGroupIds:o}=t,a=[],s=e.trim().split(K);let i="";for(let e=s.length-1;e>=0;e-=1){const t=s[e],{modifiers:l,hasImportantModifier:c,baseClassName:u,maybePostfixModifierPosition:d}=n(t);let m=Boolean(d),p=r(m?u.substring(0,d):u);if(!p){if(!m){i=t+(i.length>0?" "+i:i);continue}if(p=r(u),!p){i=t+(i.length>0?" "+i:i);continue}m=!1}const f=X(l).join(":"),h=c?f+"!":f,g=h+p;if(a.includes(g))continue;a.push(g);const y=o(p,m);for(let e=0;e<y.length;++e){const t=y[e];a.push(h+t)}i=t+(i.length>0?" "+i:i)}return i})(e,n);return o(e,a),a}return function(){return a(Z.apply(null,arguments))}}const ee=e=>{const t=t=>t[e]||[];return t.isThemeGetter=!0,t},te=/^\[(?:([a-z-]+):)?(.+)\]$/i,ne=/^\d+\/\d+$/,re=new Set(["px","full","screen"]),oe=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,ae=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,se=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/,ie=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,le=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,ce=e=>de(e)||re.has(e)||ne.test(e),ue=e=>ke(e,"length",Se),de=e=>Boolean(e)&&!Number.isNaN(Number(e)),me=e=>ke(e,"number",de),pe=e=>Boolean(e)&&Number.isInteger(Number(e)),fe=e=>e.endsWith("%")&&de(e.slice(0,-1)),he=e=>te.test(e),ge=e=>oe.test(e),ye=new Set(["length","size","percentage"]),ve=e=>ke(e,ye,Ne),xe=e=>ke(e,"position",Ne),be=new Set(["image","url"]),we=e=>ke(e,be,Pe),Ee=e=>ke(e,"",Ce),_e=()=>!0,ke=(e,t,n)=>{const r=te.exec(e);return!!r&&(r[1]?"string"==typeof t?r[1]===t:t.has(r[1]):n(r[2]))},Se=e=>ae.test(e)&&!se.test(e),Ne=()=>!1,Ce=e=>ie.test(e),Pe=e=>le.test(e),Te=(Symbol.toStringTag,()=>{const e=ee("colors"),t=ee("spacing"),n=ee("blur"),r=ee("brightness"),o=ee("borderColor"),a=ee("borderRadius"),s=ee("borderSpacing"),i=ee("borderWidth"),l=ee("contrast"),c=ee("grayscale"),u=ee("hueRotate"),d=ee("invert"),m=ee("gap"),p=ee("gradientColorStops"),f=ee("gradientColorStopPositions"),h=ee("inset"),g=ee("margin"),y=ee("opacity"),v=ee("padding"),x=ee("saturate"),b=ee("scale"),w=ee("sepia"),E=ee("skew"),_=ee("space"),k=ee("translate"),S=()=>["auto",he,t],N=()=>[he,t],C=()=>["",ce,ue],P=()=>["auto",de,he],T=()=>["","0",he],j=()=>[de,he];return{cacheSize:500,separator:":",theme:{colors:[_e],spacing:[ce,ue],blur:["none","",ge,he],brightness:j(),borderColor:[e],borderRadius:["none","","full",ge,he],borderSpacing:N(),borderWidth:C(),contrast:j(),grayscale:T(),hueRotate:j(),invert:T(),gap:N(),gradientColorStops:[e],gradientColorStopPositions:[fe,ue],inset:S(),margin:S(),opacity:j(),padding:N(),saturate:j(),scale:j(),sepia:T(),skew:j(),space:N(),translate:N()},classGroups:{aspect:[{aspect:["auto","square","video",he]}],container:["container"],columns:[{columns:[ge]}],"break-after":[{"break-after":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-before":[{"break-before":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",he]}],overflow:[{overflow:["auto","hidden","clip","visible","scroll"]}],"overflow-x":[{"overflow-x":["auto","hidden","clip","visible","scroll"]}],"overflow-y":[{"overflow-y":["auto","hidden","clip","visible","scroll"]}],overscroll:[{overscroll:["auto","contain","none"]}],"overscroll-x":[{"overscroll-x":["auto","contain","none"]}],"overscroll-y":[{"overscroll-y":["auto","contain","none"]}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:[h]}],"inset-x":[{"inset-x":[h]}],"inset-y":[{"inset-y":[h]}],start:[{start:[h]}],end:[{end:[h]}],top:[{top:[h]}],right:[{right:[h]}],bottom:[{bottom:[h]}],left:[{left:[h]}],visibility:["visible","invisible","collapse"],z:[{z:["auto",pe,he]}],basis:[{basis:S()}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["wrap","wrap-reverse","nowrap"]}],flex:[{flex:["1","auto","initial","none",he]}],grow:[{grow:T()}],shrink:[{shrink:T()}],order:[{order:["first","last","none",pe,he]}],"grid-cols":[{"grid-cols":[_e]}],"col-start-end":[{col:["auto",{span:["full",pe,he]},he]}],"col-start":[{"col-start":P()}],"col-end":[{"col-end":P()}],"grid-rows":[{"grid-rows":[_e]}],"row-start-end":[{row:["auto",{span:[pe,he]},he]}],"row-start":[{"row-start":P()}],"row-end":[{"row-end":P()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":["auto","min","max","fr",he]}],"auto-rows":[{"auto-rows":["auto","min","max","fr",he]}],gap:[{gap:[m]}],"gap-x":[{"gap-x":[m]}],"gap-y":[{"gap-y":[m]}],"justify-content":[{justify:["normal","start","end","center","between","around","evenly","stretch"]}],"justify-items":[{"justify-items":["start","end","center","stretch"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch"]}],"align-content":[{content:["normal","start","end","center","between","around","evenly","stretch","baseline"]}],"align-items":[{items:["start","end","center","baseline","stretch"]}],"align-self":[{self:["auto","start","end","center","stretch","baseline"]}],"place-content":[{"place-content":["start","end","center","between","around","evenly","stretch","baseline"]}],"place-items":[{"place-items":["start","end","center","baseline","stretch"]}],"place-self":[{"place-self":["auto","start","end","center","stretch"]}],p:[{p:[v]}],px:[{px:[v]}],py:[{py:[v]}],ps:[{ps:[v]}],pe:[{pe:[v]}],pt:[{pt:[v]}],pr:[{pr:[v]}],pb:[{pb:[v]}],pl:[{pl:[v]}],m:[{m:[g]}],mx:[{mx:[g]}],my:[{my:[g]}],ms:[{ms:[g]}],me:[{me:[g]}],mt:[{mt:[g]}],mr:[{mr:[g]}],mb:[{mb:[g]}],ml:[{ml:[g]}],"space-x":[{"space-x":[_]}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":[_]}],"space-y-reverse":["space-y-reverse"],w:[{w:["auto","min","max","fit","svw","lvw","dvw",he,t]}],"min-w":[{"min-w":[he,t,"min","max","fit"]}],"max-w":[{"max-w":[he,t,"none","full","min","max","fit","prose",{screen:[ge]},ge]}],h:[{h:[he,t,"auto","min","max","fit","svh","lvh","dvh"]}],"min-h":[{"min-h":[he,t,"min","max","fit","svh","lvh","dvh"]}],"max-h":[{"max-h":[he,t,"min","max","fit","svh","lvh","dvh"]}],size:[{size:[he,t,"auto","min","max","fit"]}],"font-size":[{text:["base",ge,ue]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:["thin","extralight","light","normal","medium","semibold","bold","extrabold","black",me]}],"font-family":[{font:[_e]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:["tighter","tight","normal","wide","wider","widest",he]}],"line-clamp":[{"line-clamp":["none",de,me]}],leading:[{leading:["none","tight","snug","normal","relaxed","loose",ce,he]}],"list-image":[{"list-image":["none",he]}],"list-style-type":[{list:["none","disc","decimal",he]}],"list-style-position":[{list:["inside","outside"]}],"placeholder-color":[{placeholder:[e]}],"placeholder-opacity":[{"placeholder-opacity":[y]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"text-color":[{text:[e]}],"text-opacity":[{"text-opacity":[y]}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","none","wavy"]}],"text-decoration-thickness":[{decoration:["auto","from-font",ce,ue]}],"underline-offset":[{"underline-offset":["auto",ce,he]}],"text-decoration-color":[{decoration:[e]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:N()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",he]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",he]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-opacity":[{"bg-opacity":[y]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",xe]}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","round","space"]}]}],"bg-size":[{bg:["auto","cover","contain",ve]}],"bg-image":[{bg:["none",{"gradient-to":["t","tr","r","br","b","bl","l","tl"]},we]}],"bg-color":[{bg:[e]}],"gradient-from-pos":[{from:[f]}],"gradient-via-pos":[{via:[f]}],"gradient-to-pos":[{to:[f]}],"gradient-from":[{from:[p]}],"gradient-via":[{via:[p]}],"gradient-to":[{to:[p]}],rounded:[{rounded:[a]}],"rounded-s":[{"rounded-s":[a]}],"rounded-e":[{"rounded-e":[a]}],"rounded-t":[{"rounded-t":[a]}],"rounded-r":[{"rounded-r":[a]}],"rounded-b":[{"rounded-b":[a]}],"rounded-l":[{"rounded-l":[a]}],"rounded-ss":[{"rounded-ss":[a]}],"rounded-se":[{"rounded-se":[a]}],"rounded-ee":[{"rounded-ee":[a]}],"rounded-es":[{"rounded-es":[a]}],"rounded-tl":[{"rounded-tl":[a]}],"rounded-tr":[{"rounded-tr":[a]}],"rounded-br":[{"rounded-br":[a]}],"rounded-bl":[{"rounded-bl":[a]}],"border-w":[{border:[i]}],"border-w-x":[{"border-x":[i]}],"border-w-y":[{"border-y":[i]}],"border-w-s":[{"border-s":[i]}],"border-w-e":[{"border-e":[i]}],"border-w-t":[{"border-t":[i]}],"border-w-r":[{"border-r":[i]}],"border-w-b":[{"border-b":[i]}],"border-w-l":[{"border-l":[i]}],"border-opacity":[{"border-opacity":[y]}],"border-style":[{border:["solid","dashed","dotted","double","none","hidden"]}],"divide-x":[{"divide-x":[i]}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":[i]}],"divide-y-reverse":["divide-y-reverse"],"divide-opacity":[{"divide-opacity":[y]}],"divide-style":[{divide:["solid","dashed","dotted","double","none"]}],"border-color":[{border:[o]}],"border-color-x":[{"border-x":[o]}],"border-color-y":[{"border-y":[o]}],"border-color-s":[{"border-s":[o]}],"border-color-e":[{"border-e":[o]}],"border-color-t":[{"border-t":[o]}],"border-color-r":[{"border-r":[o]}],"border-color-b":[{"border-b":[o]}],"border-color-l":[{"border-l":[o]}],"divide-color":[{divide:[o]}],"outline-style":[{outline:["","solid","dashed","dotted","double","none"]}],"outline-offset":[{"outline-offset":[ce,he]}],"outline-w":[{outline:[ce,ue]}],"outline-color":[{outline:[e]}],"ring-w":[{ring:C()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:[e]}],"ring-opacity":[{"ring-opacity":[y]}],"ring-offset-w":[{"ring-offset":[ce,ue]}],"ring-offset-color":[{"ring-offset":[e]}],shadow:[{shadow:["","inner","none",ge,Ee]}],"shadow-color":[{shadow:[_e]}],opacity:[{opacity:[y]}],"mix-blend":[{"mix-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity","plus-lighter","plus-darker"]}],"bg-blend":[{"bg-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]}],filter:[{filter:["","none"]}],blur:[{blur:[n]}],brightness:[{brightness:[r]}],contrast:[{contrast:[l]}],"drop-shadow":[{"drop-shadow":["","none",ge,he]}],grayscale:[{grayscale:[c]}],"hue-rotate":[{"hue-rotate":[u]}],invert:[{invert:[d]}],saturate:[{saturate:[x]}],sepia:[{sepia:[w]}],"backdrop-filter":[{"backdrop-filter":["","none"]}],"backdrop-blur":[{"backdrop-blur":[n]}],"backdrop-brightness":[{"backdrop-brightness":[r]}],"backdrop-contrast":[{"backdrop-contrast":[l]}],"backdrop-grayscale":[{"backdrop-grayscale":[c]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[u]}],"backdrop-invert":[{"backdrop-invert":[d]}],"backdrop-opacity":[{"backdrop-opacity":[y]}],"backdrop-saturate":[{"backdrop-saturate":[x]}],"backdrop-sepia":[{"backdrop-sepia":[w]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":[s]}],"border-spacing-x":[{"border-spacing-x":[s]}],"border-spacing-y":[{"border-spacing-y":[s]}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["none","all","","colors","opacity","shadow","transform",he]}],duration:[{duration:j()}],ease:[{ease:["linear","in","out","in-out",he]}],delay:[{delay:j()}],animate:[{animate:["none","spin","ping","pulse","bounce",he]}],transform:[{transform:["","gpu","none"]}],scale:[{scale:[b]}],"scale-x":[{"scale-x":[b]}],"scale-y":[{"scale-y":[b]}],rotate:[{rotate:[pe,he]}],"translate-x":[{"translate-x":[k]}],"translate-y":[{"translate-y":[k]}],"skew-x":[{"skew-x":[E]}],"skew-y":[{"skew-y":[E]}],"transform-origin":[{origin:["center","top","top-right","right","bottom-right","bottom","bottom-left","left","top-left",he]}],accent:[{accent:["auto",e]}],appearance:[{appearance:["none","auto"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",he]}],"caret-color":[{caret:[e]}],"pointer-events":[{"pointer-events":["none","auto"]}],resize:[{resize:["none","y","x",""]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":N()}],"scroll-mx":[{"scroll-mx":N()}],"scroll-my":[{"scroll-my":N()}],"scroll-ms":[{"scroll-ms":N()}],"scroll-me":[{"scroll-me":N()}],"scroll-mt":[{"scroll-mt":N()}],"scroll-mr":[{"scroll-mr":N()}],"scroll-mb":[{"scroll-mb":N()}],"scroll-ml":[{"scroll-ml":N()}],"scroll-p":[{"scroll-p":N()}],"scroll-px":[{"scroll-px":N()}],"scroll-py":[{"scroll-py":N()}],"scroll-ps":[{"scroll-ps":N()}],"scroll-pe":[{"scroll-pe":N()}],"scroll-pt":[{"scroll-pt":N()}],"scroll-pr":[{"scroll-pr":N()}],"scroll-pb":[{"scroll-pb":N()}],"scroll-pl":[{"scroll-pl":N()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",he]}],fill:[{fill:[e,"none"]}],"stroke-w":[{stroke:[ce,ue,me]}],stroke:[{stroke:[e,"none"]}],sr:["sr-only","not-sr-only"],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]}}}),je=Q(Te);function Re(e){var t,n,r="";if("string"==typeof e||"number"==typeof e)r+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(n=Re(e[t]))&&(r&&(r+=" "),r+=n)}else for(n in e)e[n]&&(r&&(r+=" "),r+=n);return r}function Fe(){for(var e,t,n=0,r="",o=arguments.length;n<o;n++)(e=arguments[n])&&(t=Re(e))&&(r&&(r+=" "),r+=t);return r}const Ae=(...e)=>je(Fe(...e)),De=(...e)=>(...t)=>e.forEach((e=>e?.(...t))),Me=e=>{const t={0:"gap-0",xxs:"gap-1",xs:"gap-2",sm:"gap-3",md:"gap-4",lg:"gap-5",xl:"gap-6","2xl":"gap-8"};return t[e]||t.md},Oe={sm:{1:"grid-cols-1",2:"grid-cols-2",3:"grid-cols-3",4:"grid-cols-4",5:"grid-cols-5",6:"grid-cols-6",7:"grid-cols-7",8:"grid-cols-8",9:"grid-cols-9",10:"grid-cols-10",11:"grid-cols-11",12:"grid-cols-12"},md:{1:"md:grid-cols-1",2:"md:grid-cols-2",3:"md:grid-cols-3",4:"md:grid-cols-4",5:"md:grid-cols-5",6:"md:grid-cols-6",7:"md:grid-cols-7",8:"md:grid-cols-8",9:"md:grid-cols-9",10:"md:grid-cols-10",11:"md:grid-cols-11",12:"md:grid-cols-12"},lg:{1:"lg:grid-cols-1",2:"lg:grid-cols-2",3:"lg:grid-cols-3",4:"lg:grid-cols-4",5:"lg:grid-cols-5",6:"lg:grid-cols-6",7:"lg:grid-cols-7",8:"lg:grid-cols-8",9:"lg:grid-cols-9",10:"lg:grid-cols-10",11:"lg:grid-cols-11",12:"lg:grid-cols-12"}},Le={sm:{xs:"gap-2",sm:"gap-4",md:"gap-5",lg:"gap-6",xl:"gap-6","2xl":"gap-8"},md:{xs:"md:gap-2",sm:"md:gap-4",md:"md:gap-5",lg:"md:gap-6",xl:"md:gap-6","2xl":"md:gap-8"},lg:{xs:"lg:gap-2",sm:"lg:gap-4",md:"lg:gap-5",lg:"lg:gap-6",xl:"lg:gap-6","2xl":"lg:gap-8"}},Ie={sm:{xs:"gap-x-2",sm:"gap-x-4",md:"gap-x-5",lg:"gap-x-6",xl:"gap-x-6","2xl":"gap-x-8"},md:{xs:"md:gap-x-2",sm:"md:gap-x-4",md:"md:gap-x-5",lg:"md:gap-x-6",xl:"md:gap-x-6","2xl":"md:gap-x-8"},lg:{xs:"lg:gap-x-2",sm:"lg:gap-x-4",md:"lg:gap-x-5",lg:"lg:gap-x-6",xl:"lg:gap-x-6","2xl":"lg:gap-x-8"}},Be={sm:{xs:"gap-y-2",sm:"gap-y-4",md:"gap-y-5",lg:"gap-y-6",xl:"gap-y-6","2xl":"gap-y-8"},md:{xs:"md:gap-y-2",sm:"md:gap-y-4",md:"md:gap-y-5",lg:"md:gap-y-6",xl:"md:gap-y-6","2xl":"md:gap-y-8"},lg:{xs:"lg:gap-y-2",sm:"lg:gap-y-4",md:"lg:gap-y-5",lg:"lg:gap-y-6",xl:"lg:gap-y-6","2xl":"lg:gap-y-8"}},ze={sm:{1:"col-span-1",2:"col-span-2",3:"col-span-3",4:"col-span-4",5:"col-span-5",6:"col-span-6",7:"col-span-7",8:"col-span-8",9:"col-span-9",10:"col-span-10",11:"col-span-11",12:"col-span-12"},md:{1:"md:col-span-1",2:"md:col-span-2",3:"md:col-span-3",4:"md:col-span-4",5:"md:col-span-5",6:"md:col-span-6",7:"md:col-span-7",8:"md:col-span-8",9:"md:col-span-9",10:"md:col-span-10",11:"md:col-span-11",12:"md:col-span-12"},lg:{1:"lg:col-span-1",2:"lg:col-span-2",3:"lg:col-span-3",4:"lg:col-span-4",5:"lg:col-span-5",6:"lg:col-span-6",7:"lg:col-span-7",8:"lg:col-span-8",9:"lg:col-span-9",10:"lg:col-span-10",11:"lg:col-span-11",12:"lg:col-span-12"}},Ve={sm:{1:"col-start-1",2:"col-start-2",3:"col-start-3",4:"col-start-4",5:"col-start-5",6:"col-start-6",7:"col-start-7",8:"col-start-8",9:"col-start-9",10:"col-start-10",11:"col-start-11",12:"col-start-12"},md:{1:"md:col-start-1",2:"md:col-start-2",3:"md:col-start-3",4:"md:col-start-4",5:"md:col-start-5",6:"md:col-start-6",7:"md:col-start-7",8:"md:col-start-8",9:"md:col-start-9",10:"md:col-start-10",11:"md:col-start-11",12:"md:col-start-12"},lg:{1:"lg:col-start-1",2:"lg:col-start-2",3:"lg:col-start-3",4:"lg:col-start-4",5:"lg:col-start-5",6:"lg:col-start-6",7:"lg:col-start-7",8:"lg:col-start-8",9:"lg:col-start-9",10:"lg:col-start-10",11:"lg:col-start-11",12:"lg:col-start-12"}},Ue={sm:{row:"grid-flow-row",column:"grid-flow-col","row-dense":"grid-flow-row-dense","column-dense":"grid-flow-col-dense"},md:{row:"md:grid-flow-row",column:"md:grid-flow-col","row-dense":"md:grid-flow-row-dense","column-dense":"md:grid-flow-col-dense"},lg:{row:"lg:grid-flow-row",column:"lg:grid-flow-col","row-dense":"lg:grid-flow-row-dense","column-dense":"lg:grid-flow-col-dense"}},We={sm:{normal:"justify-normal",start:"justify-start",end:"justify-end",center:"justify-center",between:"justify-between",around:"justify-around",evenly:"justify-evenly",stretch:"justify-stretch"},md:{normal:"md:justify-normal",start:"md:justify-start",end:"md:justify-end",center:"md:justify-center",between:"md:justify-between",around:"md:justify-around",evenly:"md:justify-evenly",stretch:"md:justify-stretch"},lg:{normal:"lg:justify-normal",start:"lg:justify-start",end:"lg:justify-end",center:"lg:justify-center",between:"lg:justify-between",around:"lg:justify-around",evenly:"lg:justify-evenly",stretch:"lg:justify-stretch"}},He={sm:{start:"items-start",end:"items-end",center:"items-center",baseline:"items-baseline",stretch:"items-stretch"},md:{start:"md:items-start",end:"md:items-end",center:"md:items-center",baseline:"md:items-baseline",stretch:"md:items-stretch"},lg:{start:"lg:items-start",end:"lg:items-end",center:"lg:items-center",baseline:"lg:items-baseline",stretch:"lg:items-stretch"}},$e={sm:{start:"self-start",end:"self-end",center:"self-center",baseline:"self-baseline",stretch:"self-stretch"},md:{start:"md:self-start",end:"md:self-end",center:"md:self-center",baseline:"md:self-baseline",stretch:"md:self-stretch"},lg:{start:"lg:self-start",end:"lg:self-end",center:"lg:self-center",baseline:"lg:self-baseline",stretch:"lg:self-stretch"}},qe={sm:{auto:"justify-self-auto",start:"justify-self-start",end:"justify-self-end",center:"justify-self-center",baseline:"justify-self-baseline",stretch:"justify-self-stretch"},md:{auto:"md:justify-self-auto",start:"md:justify-self-start",end:"md:justify-self-end",center:"md:justify-self-center",baseline:"md:justify-self-baseline",stretch:"md:justify-self-stretch"},lg:{auto:"lg:justify-self-auto",start:"lg:justify-self-start",end:"lg:justify-self-end",center:"lg:justify-self-center",baseline:"lg:justify-self-baseline",stretch:"lg:justify-self-stretch"}},Ye={sm:{row:"flex-row","row-reverse":"flex-row-reverse",column:"flex-col","column-reverse":"flex-col-reverse"},md:{row:"md:flex-row","row-reverse":"md:flex-row-reverse",column:"md:flex-col","column-reverse":"md:flex-col-reverse"},lg:{row:"lg:flex-row","row-reverse":"lg:flex-row-reverse",column:"lg:flex-col","column-reverse":"lg:flex-col-reverse"}},Ge={sm:{wrap:"flex-wrap","wrap-reverse":"flex-wrap-reverse",nowrap:"flex-nowrap"},md:{wrap:"md:flex-wrap","wrap-reverse":"md:flex-wrap-reverse",nowrap:"md:flex-nowrap"},lg:{wrap:"lg:flex-wrap","wrap-reverse":"lg:flex-wrap-reverse",nowrap:"lg:flex-nowrap"}},Xe={sm:{1:"w-full",2:"w-1/2",3:"w-1/3",4:"w-1/4",5:"w-1/5",6:"w-1/6",7:"w-1/7",8:"w-1/8",9:"w-1/9",10:"w-1/10",11:"w-1/11",12:"w-1/12"},md:{1:"md:w-full",2:"md:w-1/2",3:"md:w-1/3",4:"md:w-1/4",5:"md:w-1/5",6:"md:w-1/6",7:"md:w-1/7",8:"md:w-1/8",9:"md:w-1/9",10:"md:w-1/10",11:"md:w-1/11",12:"md:w-1/12"},lg:{1:"lg:w-full",2:"lg:w-1/2",3:"lg:w-1/3",4:"lg:w-1/4",5:"lg:w-1/5",6:"lg:w-1/6",7:"lg:w-1/7",8:"lg:w-1/8",9:"lg:w-1/9",10:"lg:w-1/10",11:"lg:w-1/11",12:"lg:w-1/12"}},Ke={sm:{1:"order-1",2:"order-2",3:"order-3",4:"order-4",5:"order-5",6:"order-6",7:"order-7",8:"order-8",9:"order-9",10:"order-10",11:"order-11",12:"order-12",first:"order-first",last:"order-last",none:"order-none"},md:{1:"md:order-1",2:"md:order-2",3:"md:order-3",4:"md:order-4",5:"md:order-5",6:"md:order-6",7:"md:order-7",8:"md:order-8",9:"md:order-9",10:"md:order-10",11:"md:order-11",12:"md:order-12",first:"md:order-first",last:"md:order-last",none:"md:order-none"},lg:{1:"lg:order-1",2:"lg:order-2",3:"lg:order-3",4:"lg:order-4",5:"lg:order-5",6:"lg:order-6",7:"lg:order-7",8:"lg:order-8",9:"lg:order-9",10:"lg:order-10",11:"lg:order-11",12:"lg:order-12",first:"lg:order-first",last:"lg:order-last",none:"lg:order-none"}},Ze={sm:{0:"grow-0",1:"grow"},md:{0:"md:grow-0",1:"md:grow"},lg:{0:"lg:grow-0",1:"lg:grow"}},Je={sm:{0:"shrink-0",1:"shrink"},md:{0:"md:shrink-0",1:"md:shrink"},lg:{0:"lg:shrink-0",1:"lg:shrink"}},Qe=(e,t,n,r="sm")=>{const o=[];switch(typeof e){case"object":for(const[r,a]of Object.entries(e))t[r]&&o.push(t?.[r]?.[a]??t?.[r]?.[n?.[r]]??"");break;case"string":case"number":const a=r;o.push(t?.[a]?.[e]??t?.[a]?.[n?.[a]]??"");break;default:if(void 0===e)break;o.push(t?.[r]?.[n]??"")}return o.join(" ")},et=({className:e,cols:t,gap:n,gapX:r,gapY:o,align:a,justify:s,gridFlow:i,colsSubGrid:l=!1,rowsSubGrid:c=!1,autoRows:u=!1,autoCols:d=!1,children:m,...p})=>{const f=Qe(t,Oe,1),h=Qe(n,Le,"sm"),g=Qe(r,Ie,""),y=Qe(o,Be,""),v=Qe(a,He,""),x=Qe(s,We,""),b=Qe(i,Ue,"");return(0,L.jsx)("div",{className:Ae("grid",{"grid-cols-subgrid":l,"grid-rows-subgrid":c,"auto-cols-auto":d,"auto-rows-auto":u},f,h,g,y,v,x,b,e),...p,children:m})};et.Item=({className:e,children:t,colSpan:n,colStart:r,alignSelf:o,justifySelf:a,...s})=>{const i=Qe(n,ze,0),l=Qe(r,Ve,0),c=Qe(o,$e,""),u=Qe(a,qe,"");return(0,L.jsx)("div",{className:Ae(i,l,c,u,e),...s,children:t})};const tt=(0,i.createContext)({}),nt=({containerType:e="flex",gap:t="sm",gapX:n,gapY:r,direction:o,justify:a,align:s,wrap:i,cols:l,className:c,children:u,...d})=>{if("grid"===e)return(0,L.jsx)(tt.Provider,{value:{containerType:e},children:(0,L.jsx)(et,{className:c,gap:t,gapX:n,gapY:r,cols:l,children:u,align:s,justify:a,...d})});const m=Qe(i,Ge,""),p=Qe(t,Le,"sm"),f=Qe(n,Ie,""),h=Qe(r,Be,""),g=Qe(o,Ye,""),y=Qe(a,We,""),v=Qe(s,He,""),x=Ae("flex",m,p,f,h,g,y,v,c);return(0,L.jsx)(tt.Provider,{value:{containerType:e,cols:l},children:"flex"===e?(0,L.jsx)("div",{className:x,children:u}):(0,L.jsx)(et,{className:c,gap:t,gapX:n,gapY:r,cols:l,children:u,align:s,justify:a,...d})})},rt=({grow:e,shrink:t,order:n,alignSelf:r,justifySelf:o,className:a,children:s,...l})=>{const{containerType:c,cols:u}=(0,i.useContext)(tt);if("grid"===c)return(0,L.jsx)(et.Item,{className:a,alignSelf:r,justifySelf:o,children:s,...l});const d=Qe(r,$e,""),m=Qe(o,qe,""),p=Qe(e,Ze,0),f=Qe(t,Je,0),h=Qe(n,Ke,0),g=Qe(u,Xe,1);return(0,L.jsx)("div",{className:Ae("box-border",p,f,h,d,m,g,a),children:s})};nt.Item=rt,nt.displayName="Container",rt.displayName="Container.Item";const ot=({children:e,gap:t="lg",className:n,...r})=>(0,L.jsx)("div",{className:Ae("w-full box-border flex items-center justify-between bg-background-primary p-5 min-h-16",Me(t),n),...r,children:e});ot.displayName="Topbar";const at=({gap:e="sm",children:t,className:n})=>(0,L.jsx)("div",{className:Ae("flex items-center",Me(e),n),children:t});at.displayName="Topbar.Left";const st=({gap:e="md",children:t,align:n="center",className:r})=>{const o={left:"justify-start",center:"justify-center",right:"justify-end"}[n];return(0,L.jsx)("div",{className:Ae("flex items-center grow",Me(e),o,r),children:t})};st.displayName="Topbar.Middle";const it=({gap:e="sm",children:t,className:n})=>(0,L.jsx)("div",{className:Ae("flex items-center",Me(e),n),children:t});it.displayName="Topbar.Right";const lt=({children:e,className:t})=>(0,L.jsx)("div",{className:Ae("flex items-center [&>svg]:block h-full",t),children:e});lt.displayName="Topbar.Item",ot.Left=at,ot.Middle=st,ot.Right=it,ot.Item=lt;const ct=(0,i.forwardRef)(((e,t)=>{const{variant:n="primary",size:r="md",type:o="button",tag:a="button",className:s,children:l,disabled:c=!1,destructive:u=!1,icon:d=null,iconPosition:m="left",loading:p=!1,...f}=e,h=u&&"focus:ring-focus-error",g=p?"opacity-50 disabled:cursor-not-allowed":"",y={primary:"text-text-on-color bg-button-primary hover:bg-button-primary-hover outline-button-primary hover:outline-button-primary-hover shadow-xs disabled:shadow-none focus:shadow-none disabled:bg-button-disabled disabled:outline-button-disabled",secondary:"text-text-on-color bg-button-secondary hover:bg-button-secondary-hover outline-button-secondary hover:outline-button-secondary-hover shadow-xs focus:shadow-none disabled:shadow-none disabled:bg-button-disabled disabled:outline-button-disabled",outline:"text-button-tertiary-color outline-border-subtle bg-button-tertiary shadow-sm focus:shadow-none hover:bg-button-tertiary-hover hover:outline-border-subtle disabled:bg-button-tertiary disabled:outline-border-disabled",ghost:"text-text-primary bg-transparent outline-transparent hover:bg-button-tertiary-hover",link:"outline-none text-link-primary bg-transparent hover:text-link-primary-hover hover:underline p-0 border-0 leading-none"}[n],v=u&&!c?{primary:"bg-button-danger hover:bg-button-danger-hover outline-button-danger hover:outline-button-danger-hover",secondary:"bg-button-danger hover:bg-button-danger-hover outline-button-danger hover:outline-button-danger-hover",outline:"text-button-danger outline outline-1 outline-button-danger hover:outline-button-danger bg-button-tertiary hover:bg-field-background-error",ghost:"text-button-danger hover:bg-field-background-error",link:"text-button-danger hover:text-button-danger-secondary"}[n]:"",x={xs:"p-1 rounded [&>svg]:size-4",sm:"p-2 rounded [&>svg]:size-4 gap-0.5",md:"p-2.5 rounded-md text-sm [&>svg]:size-5 gap-1",lg:"p-3 rounded-lg text-base [&>svg]:size-6 gap-1"}[r];let b,w=null,E="";return d&&(E="flex items-center justify-center","left"===m?b=d:w=d),(0,L.jsxs)(a,{ref:t,type:o,className:Ae(E,"outline outline-1 border-none cursor-pointer transition-colors duration-300 ease-in-out text-xs font-semibold focus:ring-2 focus:ring-toggle-on focus:ring-offset-2 disabled:text-text-disabled",x,y,v,h,g,{"cursor-default":c},s),disabled:c,...f,children:[(0,L.jsx)(i.Fragment,{children:b},"left-icon"),l?(0,L.jsx)("span",{className:"px-1",children:l}):null,(0,L.jsx)(i.Fragment,{children:w},"right-icon")]})}));function ut(){return"undefined"!=typeof window}function dt(e){return ft(e)?(e.nodeName||"").toLowerCase():"#document"}function mt(e){var t;return(null==e||null==(t=e.ownerDocument)?void 0:t.defaultView)||window}function pt(e){var t;return null==(t=(ft(e)?e.ownerDocument:e.document)||window.document)?void 0:t.documentElement}function ft(e){return!!ut()&&(e instanceof Node||e instanceof mt(e).Node)}function ht(e){return!!ut()&&(e instanceof Element||e instanceof mt(e).Element)}function gt(e){return!!ut()&&(e instanceof HTMLElement||e instanceof mt(e).HTMLElement)}function yt(e){return!(!ut()||"undefined"==typeof ShadowRoot)&&(e instanceof ShadowRoot||e instanceof mt(e).ShadowRoot)}function vt(e){const{overflow:t,overflowX:n,overflowY:r,display:o}=kt(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!["inline","contents"].includes(o)}function xt(e){return["table","td","th"].includes(dt(e))}function bt(e){return[":popover-open",":modal"].some((t=>{try{return e.matches(t)}catch(e){return!1}}))}function wt(e){const t=Et(),n=ht(e)?kt(e):e;return["transform","translate","scale","rotate","perspective"].some((e=>!!n[e]&&"none"!==n[e]))||!!n.containerType&&"normal"!==n.containerType||!t&&!!n.backdropFilter&&"none"!==n.backdropFilter||!t&&!!n.filter&&"none"!==n.filter||["transform","translate","scale","rotate","perspective","filter"].some((e=>(n.willChange||"").includes(e)))||["paint","layout","strict","content"].some((e=>(n.contain||"").includes(e)))}function Et(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function _t(e){return["html","body","#document"].includes(dt(e))}function kt(e){return mt(e).getComputedStyle(e)}function St(e){return ht(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function Nt(e){if("html"===dt(e))return e;const t=e.assignedSlot||e.parentNode||yt(e)&&e.host||pt(e);return yt(t)?t.host:t}function Ct(e){const t=Nt(e);return _t(t)?e.ownerDocument?e.ownerDocument.body:e.body:gt(t)&&vt(t)?t:Ct(t)}function Pt(e,t,n){var r;void 0===t&&(t=[]),void 0===n&&(n=!0);const o=Ct(e),a=o===(null==(r=e.ownerDocument)?void 0:r.body),s=mt(o);if(a){const e=Tt(s);return t.concat(s,s.visualViewport||[],vt(o)?o:[],e&&n?Pt(e):[])}return t.concat(o,Pt(o,[],n))}function Tt(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function jt(e){let t=e.activeElement;for(;null!=(null==(n=t)||null==(n=n.shadowRoot)?void 0:n.activeElement);){var n;t=t.shadowRoot.activeElement}return t}function Rt(e,t){if(!e||!t)return!1;const n=null==t.getRootNode?void 0:t.getRootNode();if(e.contains(t))return!0;if(n&&yt(n)){let n=t;for(;n;){if(e===n)return!0;n=n.parentNode||n.host}}return!1}function Ft(){const e=navigator.userAgentData;return null!=e&&e.platform?e.platform:navigator.platform}function At(){const e=navigator.userAgentData;return e&&Array.isArray(e.brands)?e.brands.map((e=>{let{brand:t,version:n}=e;return t+"/"+n})).join(" "):navigator.userAgent}function Dt(){return/apple/i.test(navigator.vendor)}function Mt(){const e=/android/i;return e.test(Ft())||e.test(At())}function Ot(e,t){const n=["mouse","pen"];return t||n.push("",void 0),n.includes(e)}function Lt(e){return(null==e?void 0:e.ownerDocument)||document}function It(e,t){if(null==t)return!1;if("composedPath"in e)return e.composedPath().includes(t);const n=e;return null!=n.target&&t.contains(n.target)}function Bt(e){return"composedPath"in e?e.composedPath()[0]:e.target}function zt(e){return gt(e)&&e.matches("input:not([type='hidden']):not([disabled]),[contenteditable]:not([contenteditable='false']),textarea:not([disabled])")}ct.displayName="Button";var Vt=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"].join(","),Ut="undefined"==typeof Element,Wt=Ut?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,Ht=!Ut&&Element.prototype.getRootNode?function(e){var t;return null==e||null===(t=e.getRootNode)||void 0===t?void 0:t.call(e)}:function(e){return null==e?void 0:e.ownerDocument},$t=function e(t,n){var r;void 0===n&&(n=!0);var o=null==t||null===(r=t.getAttribute)||void 0===r?void 0:r.call(t,"inert");return""===o||"true"===o||n&&t&&e(t.parentNode)},qt=function e(t,n,r){for(var o=[],a=Array.from(t);a.length;){var s=a.shift();if(!$t(s,!1))if("SLOT"===s.tagName){var i=s.assignedElements(),l=e(i.length?i:s.children,!0,r);r.flatten?o.push.apply(o,l):o.push({scopeParent:s,candidates:l})}else{Wt.call(s,Vt)&&r.filter(s)&&(n||!t.includes(s))&&o.push(s);var c=s.shadowRoot||"function"==typeof r.getShadowRoot&&r.getShadowRoot(s),u=!$t(c,!1)&&(!r.shadowRootFilter||r.shadowRootFilter(s));if(c&&u){var d=e(!0===c?s.children:c.children,!0,r);r.flatten?o.push.apply(o,d):o.push({scopeParent:s,candidates:d})}else a.unshift.apply(a,s.children)}}return o},Yt=function(e){return!isNaN(parseInt(e.getAttribute("tabindex"),10))},Gt=function(e){if(!e)throw new Error("No node provided");return e.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||function(e){var t,n=null==e||null===(t=e.getAttribute)||void 0===t?void 0:t.call(e,"contenteditable");return""===n||"true"===n}(e))&&!Yt(e)?0:e.tabIndex},Xt=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},Kt=function(e){return"INPUT"===e.tagName},Zt=function(e){var t=e.getBoundingClientRect(),n=t.width,r=t.height;return 0===n&&0===r},Jt=function(e,t){return!(t.disabled||$t(t)||function(e){return Kt(e)&&"hidden"===e.type}(t)||function(e,t){var n=t.displayCheck,r=t.getShadowRoot;if("hidden"===getComputedStyle(e).visibility)return!0;var o=Wt.call(e,"details>summary:first-of-type")?e.parentElement:e;if(Wt.call(o,"details:not([open]) *"))return!0;if(n&&"full"!==n&&"legacy-full"!==n){if("non-zero-area"===n)return Zt(e)}else{if("function"==typeof r){for(var a=e;e;){var s=e.parentElement,i=Ht(e);if(s&&!s.shadowRoot&&!0===r(s))return Zt(e);e=e.assignedSlot?e.assignedSlot:s||i===e.ownerDocument?s:i.host}e=a}if(function(e){var t,n,r,o,a=e&&Ht(e),s=null===(t=a)||void 0===t?void 0:t.host,i=!1;if(a&&a!==e)for(i=!!(null!==(n=s)&&void 0!==n&&null!==(r=n.ownerDocument)&&void 0!==r&&r.contains(s)||null!=e&&null!==(o=e.ownerDocument)&&void 0!==o&&o.contains(e));!i&&s;){var l,c,u;i=!(null===(c=s=null===(l=a=Ht(s))||void 0===l?void 0:l.host)||void 0===c||null===(u=c.ownerDocument)||void 0===u||!u.contains(s))}return i}(e))return!e.getClientRects().length;if("legacy-full"!==n)return!0}return!1}(t,e)||function(e){return"DETAILS"===e.tagName&&Array.prototype.slice.apply(e.children).some((function(e){return"SUMMARY"===e.tagName}))}(t)||function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if("FIELDSET"===t.tagName&&t.disabled){for(var n=0;n<t.children.length;n++){var r=t.children.item(n);if("LEGEND"===r.tagName)return!!Wt.call(t,"fieldset[disabled] *")||!r.contains(e)}return!0}t=t.parentElement}return!1}(t))},Qt=function(e,t){return!(function(e){return function(e){return Kt(e)&&"radio"===e.type}(e)&&!function(e){if(!e.name)return!0;var t,n=e.form||Ht(e),r=function(e){return n.querySelectorAll('input[type="radio"][name="'+e+'"]')};if("undefined"!=typeof window&&void 0!==window.CSS&&"function"==typeof window.CSS.escape)t=r(window.CSS.escape(e.name));else try{t=r(e.name)}catch(e){return console.error("Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s",e.message),!1}var o=function(e,t){for(var n=0;n<e.length;n++)if(e[n].checked&&e[n].form===t)return e[n]}(t,e.form);return!o||o===e}(e)}(t)||Gt(t)<0||!Jt(e,t))},en=function(e){var t=parseInt(e.getAttribute("tabindex"),10);return!!(isNaN(t)||t>=0)},tn=function e(t){var n=[],r=[];return t.forEach((function(t,o){var a=!!t.scopeParent,s=a?t.scopeParent:t,i=function(e,t){var n=Gt(e);return n<0&&t&&!Yt(e)?0:n}(s,a),l=a?e(t.candidates):s;0===i?a?n.push.apply(n,l):n.push(s):r.push({documentOrder:o,tabIndex:i,item:t,isScope:a,content:l})})),r.sort(Xt).reduce((function(e,t){return t.isScope?e.push.apply(e,t.content):e.push(t.content),e}),[]).concat(n)},nn=function(e,t){var n;return n=(t=t||{}).getShadowRoot?qt([e],t.includeContainer,{filter:Qt.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:en}):function(e,t,n){if($t(e))return[];var r=Array.prototype.slice.apply(e.querySelectorAll(Vt));return t&&Wt.call(e,Vt)&&r.unshift(e),r.filter(n)}(e,t.includeContainer,Qt.bind(null,t)),tn(n)},rn=o(795);const on=Math.min,an=Math.max,sn=Math.round,ln=Math.floor,cn=e=>({x:e,y:e}),un={left:"right",right:"left",bottom:"top",top:"bottom"},dn={start:"end",end:"start"};function mn(e,t,n){return an(e,on(t,n))}function pn(e,t){return"function"==typeof e?e(t):e}function fn(e){return e.split("-")[0]}function hn(e){return e.split("-")[1]}function gn(e){return"x"===e?"y":"x"}function yn(e){return"y"===e?"height":"width"}function vn(e){return["top","bottom"].includes(fn(e))?"y":"x"}function xn(e){return gn(vn(e))}function bn(e){return e.replace(/start|end/g,(e=>dn[e]))}function wn(e){return e.replace(/left|right|bottom|top/g,(e=>un[e]))}function En(e){return"number"!=typeof e?function(e){return{top:0,right:0,bottom:0,left:0,...e}}(e):{top:e,right:e,bottom:e,left:e}}function _n(e){const{x:t,y:n,width:r,height:o}=e;return{width:r,height:o,top:n,left:t,right:t+r,bottom:n+o,x:t,y:n}}function kn(e,t,n){let{reference:r,floating:o}=e;const a=vn(t),s=xn(t),i=yn(s),l=fn(t),c="y"===a,u=r.x+r.width/2-o.width/2,d=r.y+r.height/2-o.height/2,m=r[i]/2-o[i]/2;let p;switch(l){case"top":p={x:u,y:r.y-o.height};break;case"bottom":p={x:u,y:r.y+r.height};break;case"right":p={x:r.x+r.width,y:d};break;case"left":p={x:r.x-o.width,y:d};break;default:p={x:r.x,y:r.y}}switch(hn(t)){case"start":p[s]-=m*(n&&c?-1:1);break;case"end":p[s]+=m*(n&&c?-1:1)}return p}async function Sn(e,t){var n;void 0===t&&(t={});const{x:r,y:o,platform:a,rects:s,elements:i,strategy:l}=e,{boundary:c="clippingAncestors",rootBoundary:u="viewport",elementContext:d="floating",altBoundary:m=!1,padding:p=0}=pn(t,e),f=En(p),h=i[m?"floating"===d?"reference":"floating":d],g=_n(await a.getClippingRect({element:null==(n=await(null==a.isElement?void 0:a.isElement(h)))||n?h:h.contextElement||await(null==a.getDocumentElement?void 0:a.getDocumentElement(i.floating)),boundary:c,rootBoundary:u,strategy:l})),y="floating"===d?{x:r,y:o,width:s.floating.width,height:s.floating.height}:s.reference,v=await(null==a.getOffsetParent?void 0:a.getOffsetParent(i.floating)),x=await(null==a.isElement?void 0:a.isElement(v))&&await(null==a.getScale?void 0:a.getScale(v))||{x:1,y:1},b=_n(a.convertOffsetParentRelativeRectToViewportRelativeRect?await a.convertOffsetParentRelativeRectToViewportRelativeRect({elements:i,rect:y,offsetParent:v,strategy:l}):y);return{top:(g.top-b.top+f.top)/x.y,bottom:(b.bottom-g.bottom+f.bottom)/x.y,left:(g.left-b.left+f.left)/x.x,right:(b.right-g.right+f.right)/x.x}}function Nn(e){const t=kt(e);let n=parseFloat(t.width)||0,r=parseFloat(t.height)||0;const o=gt(e),a=o?e.offsetWidth:n,s=o?e.offsetHeight:r,i=sn(n)!==a||sn(r)!==s;return i&&(n=a,r=s),{width:n,height:r,$:i}}function Cn(e){return ht(e)?e:e.contextElement}function Pn(e){const t=Cn(e);if(!gt(t))return cn(1);const n=t.getBoundingClientRect(),{width:r,height:o,$:a}=Nn(t);let s=(a?sn(n.width):n.width)/r,i=(a?sn(n.height):n.height)/o;return s&&Number.isFinite(s)||(s=1),i&&Number.isFinite(i)||(i=1),{x:s,y:i}}const Tn=cn(0);function jn(e){const t=mt(e);return Et()&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:Tn}function Rn(e,t,n,r){void 0===t&&(t=!1),void 0===n&&(n=!1);const o=e.getBoundingClientRect(),a=Cn(e);let s=cn(1);t&&(r?ht(r)&&(s=Pn(r)):s=Pn(e));const i=function(e,t,n){return void 0===t&&(t=!1),!(!n||t&&n!==mt(e))&&t}(a,n,r)?jn(a):cn(0);let l=(o.left+i.x)/s.x,c=(o.top+i.y)/s.y,u=o.width/s.x,d=o.height/s.y;if(a){const e=mt(a),t=r&&ht(r)?mt(r):r;let n=e,o=Tt(n);for(;o&&r&&t!==n;){const e=Pn(o),t=o.getBoundingClientRect(),r=kt(o),a=t.left+(o.clientLeft+parseFloat(r.paddingLeft))*e.x,s=t.top+(o.clientTop+parseFloat(r.paddingTop))*e.y;l*=e.x,c*=e.y,u*=e.x,d*=e.y,l+=a,c+=s,n=mt(o),o=Tt(n)}}return _n({width:u,height:d,x:l,y:c})}function Fn(e,t){const n=St(e).scrollLeft;return t?t.left+n:Rn(pt(e)).left+n}function An(e,t,n){void 0===n&&(n=!1);const r=e.getBoundingClientRect();return{x:r.left+t.scrollLeft-(n?0:Fn(e,r)),y:r.top+t.scrollTop}}function Dn(e,t,n){let r;if("viewport"===t)r=function(e,t){const n=mt(e),r=pt(e),o=n.visualViewport;let a=r.clientWidth,s=r.clientHeight,i=0,l=0;if(o){a=o.width,s=o.height;const e=Et();(!e||e&&"fixed"===t)&&(i=o.offsetLeft,l=o.offsetTop)}return{width:a,height:s,x:i,y:l}}(e,n);else if("document"===t)r=function(e){const t=pt(e),n=St(e),r=e.ownerDocument.body,o=an(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),a=an(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight);let s=-n.scrollLeft+Fn(e);const i=-n.scrollTop;return"rtl"===kt(r).direction&&(s+=an(t.clientWidth,r.clientWidth)-o),{width:o,height:a,x:s,y:i}}(pt(e));else if(ht(t))r=function(e,t){const n=Rn(e,!0,"fixed"===t),r=n.top+e.clientTop,o=n.left+e.clientLeft,a=gt(e)?Pn(e):cn(1);return{width:e.clientWidth*a.x,height:e.clientHeight*a.y,x:o*a.x,y:r*a.y}}(t,n);else{const n=jn(e);r={x:t.x-n.x,y:t.y-n.y,width:t.width,height:t.height}}return _n(r)}function Mn(e,t){const n=Nt(e);return!(n===t||!ht(n)||_t(n))&&("fixed"===kt(n).position||Mn(n,t))}function On(e,t,n){const r=gt(t),o=pt(t),a="fixed"===n,s=Rn(e,!0,a,t);let i={scrollLeft:0,scrollTop:0};const l=cn(0);function c(){l.x=Fn(o)}if(r||!r&&!a)if(("body"!==dt(t)||vt(o))&&(i=St(t)),r){const e=Rn(t,!0,a,t);l.x=e.x+t.clientLeft,l.y=e.y+t.clientTop}else o&&c();a&&!r&&o&&c();const u=!o||r||a?cn(0):An(o,i);return{x:s.left+i.scrollLeft-l.x-u.x,y:s.top+i.scrollTop-l.y-u.y,width:s.width,height:s.height}}function Ln(e){return"static"===kt(e).position}function In(e,t){if(!gt(e)||"fixed"===kt(e).position)return null;if(t)return t(e);let n=e.offsetParent;return pt(e)===n&&(n=n.ownerDocument.body),n}function Bn(e,t){const n=mt(e);if(bt(e))return n;if(!gt(e)){let t=Nt(e);for(;t&&!_t(t);){if(ht(t)&&!Ln(t))return t;t=Nt(t)}return n}let r=In(e,t);for(;r&&xt(r)&&Ln(r);)r=In(r,t);return r&&_t(r)&&Ln(r)&&!wt(r)?n:r||function(e){let t=Nt(e);for(;gt(t)&&!_t(t);){if(wt(t))return t;if(bt(t))return null;t=Nt(t)}return null}(e)||n}const zn={convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{elements:t,rect:n,offsetParent:r,strategy:o}=e;const a="fixed"===o,s=pt(r),i=!!t&&bt(t.floating);if(r===s||i&&a)return n;let l={scrollLeft:0,scrollTop:0},c=cn(1);const u=cn(0),d=gt(r);if((d||!d&&!a)&&(("body"!==dt(r)||vt(s))&&(l=St(r)),gt(r))){const e=Rn(r);c=Pn(r),u.x=e.x+r.clientLeft,u.y=e.y+r.clientTop}const m=!s||d||a?cn(0):An(s,l,!0);return{width:n.width*c.x,height:n.height*c.y,x:n.x*c.x-l.scrollLeft*c.x+u.x+m.x,y:n.y*c.y-l.scrollTop*c.y+u.y+m.y}},getDocumentElement:pt,getClippingRect:function(e){let{element:t,boundary:n,rootBoundary:r,strategy:o}=e;const a=[..."clippingAncestors"===n?bt(t)?[]:function(e,t){const n=t.get(e);if(n)return n;let r=Pt(e,[],!1).filter((e=>ht(e)&&"body"!==dt(e))),o=null;const a="fixed"===kt(e).position;let s=a?Nt(e):e;for(;ht(s)&&!_t(s);){const t=kt(s),n=wt(s);n||"fixed"!==t.position||(o=null),(a?!n&&!o:!n&&"static"===t.position&&o&&["absolute","fixed"].includes(o.position)||vt(s)&&!n&&Mn(e,s))?r=r.filter((e=>e!==s)):o=t,s=Nt(s)}return t.set(e,r),r}(t,this._c):[].concat(n),r],s=a[0],i=a.reduce(((e,n)=>{const r=Dn(t,n,o);return e.top=an(r.top,e.top),e.right=on(r.right,e.right),e.bottom=on(r.bottom,e.bottom),e.left=an(r.left,e.left),e}),Dn(t,s,o));return{width:i.right-i.left,height:i.bottom-i.top,x:i.left,y:i.top}},getOffsetParent:Bn,getElementRects:async function(e){const t=this.getOffsetParent||Bn,n=this.getDimensions,r=await n(e.floating);return{reference:On(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}},getClientRects:function(e){return Array.from(e.getClientRects())},getDimensions:function(e){const{width:t,height:n}=Nn(e);return{width:t,height:n}},getScale:Pn,isElement:ht,isRTL:function(e){return"rtl"===kt(e).direction}};function Vn(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function Un(e,t,n,r){void 0===r&&(r={});const{ancestorScroll:o=!0,ancestorResize:a=!0,elementResize:s="function"==typeof ResizeObserver,layoutShift:i="function"==typeof IntersectionObserver,animationFrame:l=!1}=r,c=Cn(e),u=o||a?[...c?Pt(c):[],...Pt(t)]:[];u.forEach((e=>{o&&e.addEventListener("scroll",n,{passive:!0}),a&&e.addEventListener("resize",n)}));const d=c&&i?function(e,t){let n,r=null;const o=pt(e);function a(){var e;clearTimeout(n),null==(e=r)||e.disconnect(),r=null}return function s(i,l){void 0===i&&(i=!1),void 0===l&&(l=1),a();const c=e.getBoundingClientRect(),{left:u,top:d,width:m,height:p}=c;if(i||t(),!m||!p)return;const f={rootMargin:-ln(d)+"px "+-ln(o.clientWidth-(u+m))+"px "+-ln(o.clientHeight-(d+p))+"px "+-ln(u)+"px",threshold:an(0,on(1,l))||1};let h=!0;function g(t){const r=t[0].intersectionRatio;if(r!==l){if(!h)return s();r?s(!1,r):n=setTimeout((()=>{s(!1,1e-7)}),1e3)}1!==r||Vn(c,e.getBoundingClientRect())||s(),h=!1}try{r=new IntersectionObserver(g,{...f,root:o.ownerDocument})}catch(e){r=new IntersectionObserver(g,f)}r.observe(e)}(!0),a}(c,n):null;let m,p=-1,f=null;s&&(f=new ResizeObserver((e=>{let[r]=e;r&&r.target===c&&f&&(f.unobserve(t),cancelAnimationFrame(p),p=requestAnimationFrame((()=>{var e;null==(e=f)||e.observe(t)}))),n()})),c&&!l&&f.observe(c),f.observe(t));let h=l?Rn(e):null;return l&&function t(){const r=Rn(e);h&&!Vn(h,r)&&n(),h=r,m=requestAnimationFrame(t)}(),n(),()=>{var e;u.forEach((e=>{o&&e.removeEventListener("scroll",n),a&&e.removeEventListener("resize",n)})),null==d||d(),null==(e=f)||e.disconnect(),f=null,l&&cancelAnimationFrame(m)}}const Wn=function(e){return void 0===e&&(e=0),{name:"offset",options:e,async fn(t){var n,r;const{x:o,y:a,placement:s,middlewareData:i}=t,l=await async function(e,t){const{placement:n,platform:r,elements:o}=e,a=await(null==r.isRTL?void 0:r.isRTL(o.floating)),s=fn(n),i=hn(n),l="y"===vn(n),c=["left","top"].includes(s)?-1:1,u=a&&l?-1:1,d=pn(t,e);let{mainAxis:m,crossAxis:p,alignmentAxis:f}="number"==typeof d?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return i&&"number"==typeof f&&(p="end"===i?-1*f:f),l?{x:p*u,y:m*c}:{x:m*c,y:p*u}}(t,e);return s===(null==(n=i.offset)?void 0:n.placement)&&null!=(r=i.arrow)&&r.alignmentOffset?{}:{x:o+l.x,y:a+l.y,data:{...l,placement:s}}}}},Hn=function(e){return void 0===e&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:r,placement:o}=t,{mainAxis:a=!0,crossAxis:s=!1,limiter:i={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...l}=pn(e,t),c={x:n,y:r},u=await Sn(t,l),d=vn(fn(o)),m=gn(d);let p=c[m],f=c[d];if(a){const e="y"===m?"bottom":"right";p=mn(p+u["y"===m?"top":"left"],p,p-u[e])}if(s){const e="y"===d?"bottom":"right";f=mn(f+u["y"===d?"top":"left"],f,f-u[e])}const h=i.fn({...t,[m]:p,[d]:f});return{...h,data:{x:h.x-n,y:h.y-r,enabled:{[m]:a,[d]:s}}}}}},$n=function(e){return void 0===e&&(e={}),{name:"flip",options:e,async fn(t){var n,r;const{placement:o,middlewareData:a,rects:s,initialPlacement:i,platform:l,elements:c}=t,{mainAxis:u=!0,crossAxis:d=!0,fallbackPlacements:m,fallbackStrategy:p="bestFit",fallbackAxisSideDirection:f="none",flipAlignment:h=!0,...g}=pn(e,t);if(null!=(n=a.arrow)&&n.alignmentOffset)return{};const y=fn(o),v=vn(i),x=fn(i)===i,b=await(null==l.isRTL?void 0:l.isRTL(c.floating)),w=m||(x||!h?[wn(i)]:function(e){const t=wn(e);return[bn(e),t,bn(t)]}(i)),E="none"!==f;!m&&E&&w.push(...function(e,t,n,r){const o=hn(e);let a=function(e,t,n){const r=["left","right"],o=["right","left"],a=["top","bottom"],s=["bottom","top"];switch(e){case"top":case"bottom":return n?t?o:r:t?r:o;case"left":case"right":return t?a:s;default:return[]}}(fn(e),"start"===n,r);return o&&(a=a.map((e=>e+"-"+o)),t&&(a=a.concat(a.map(bn)))),a}(i,h,f,b));const _=[i,...w],k=await Sn(t,g),S=[];let N=(null==(r=a.flip)?void 0:r.overflows)||[];if(u&&S.push(k[y]),d){const e=function(e,t,n){void 0===n&&(n=!1);const r=hn(e),o=xn(e),a=yn(o);let s="x"===o?r===(n?"end":"start")?"right":"left":"start"===r?"bottom":"top";return t.reference[a]>t.floating[a]&&(s=wn(s)),[s,wn(s)]}(o,s,b);S.push(k[e[0]],k[e[1]])}if(N=[...N,{placement:o,overflows:S}],!S.every((e=>e<=0))){var C,P;const e=((null==(C=a.flip)?void 0:C.index)||0)+1,t=_[e];if(t){var T;const n="alignment"===d&&v!==vn(t),r=(null==(T=N[0])?void 0:T.overflows[0])>0;if(!n||r)return{data:{index:e,overflows:N},reset:{placement:t}}}let n=null==(P=N.filter((e=>e.overflows[0]<=0)).sort(((e,t)=>e.overflows[1]-t.overflows[1]))[0])?void 0:P.placement;if(!n)switch(p){case"bestFit":{var j;const e=null==(j=N.filter((e=>{if(E){const t=vn(e.placement);return t===v||"y"===t}return!0})).map((e=>[e.placement,e.overflows.filter((e=>e>0)).reduce(((e,t)=>e+t),0)])).sort(((e,t)=>e[1]-t[1]))[0])?void 0:j[0];e&&(n=e);break}case"initialPlacement":n=i}if(o!==n)return{reset:{placement:n}}}return{}}}},qn=e=>({name:"arrow",options:e,async fn(t){const{x:n,y:r,placement:o,rects:a,platform:s,elements:i,middlewareData:l}=t,{element:c,padding:u=0}=pn(e,t)||{};if(null==c)return{};const d=En(u),m={x:n,y:r},p=xn(o),f=yn(p),h=await s.getDimensions(c),g="y"===p,y=g?"top":"left",v=g?"bottom":"right",x=g?"clientHeight":"clientWidth",b=a.reference[f]+a.reference[p]-m[p]-a.floating[f],w=m[p]-a.reference[p],E=await(null==s.getOffsetParent?void 0:s.getOffsetParent(c));let _=E?E[x]:0;_&&await(null==s.isElement?void 0:s.isElement(E))||(_=i.floating[x]||a.floating[f]);const k=b/2-w/2,S=_/2-h[f]/2-1,N=on(d[y],S),C=on(d[v],S),P=N,T=_-h[f]-C,j=_/2-h[f]/2+k,R=mn(P,j,T),F=!l.arrow&&null!=hn(o)&&j!==R&&a.reference[f]/2-(j<P?N:C)-h[f]/2<0,A=F?j<P?j-P:j-T:0;return{[p]:m[p]+A,data:{[p]:R,centerOffset:j-R-A,...F&&{alignmentOffset:A}},reset:F}}}),Yn=(e,t,n)=>{const r=new Map,o={platform:zn,...n},a={...o.platform,_c:r};return(async(e,t,n)=>{const{placement:r="bottom",strategy:o="absolute",middleware:a=[],platform:s}=n,i=a.filter(Boolean),l=await(null==s.isRTL?void 0:s.isRTL(t));let c=await s.getElementRects({reference:e,floating:t,strategy:o}),{x:u,y:d}=kn(c,r,l),m=r,p={},f=0;for(let n=0;n<i.length;n++){const{name:a,fn:h}=i[n],{x:g,y,data:v,reset:x}=await h({x:u,y:d,initialPlacement:r,placement:m,strategy:o,middlewareData:p,rects:c,platform:s,elements:{reference:e,floating:t}});u=null!=g?g:u,d=null!=y?y:d,p={...p,[a]:{...p[a],...v}},x&&f<=50&&(f++,"object"==typeof x&&(x.placement&&(m=x.placement),x.rects&&(c=!0===x.rects?await s.getElementRects({reference:e,floating:t,strategy:o}):x.rects),({x:u,y:d}=kn(c,m,l))),n=-1)}return{x:u,y:d,placement:m,strategy:o,middlewareData:p}})(e,t,{...o,platform:a})};var Gn="undefined"!=typeof document?i.useLayoutEffect:i.useEffect;function Xn(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if("function"==typeof e&&e.toString()===t.toString())return!0;let n,r,o;if(e&&t&&"object"==typeof e){if(Array.isArray(e)){if(n=e.length,n!==t.length)return!1;for(r=n;0!=r--;)if(!Xn(e[r],t[r]))return!1;return!0}if(o=Object.keys(e),n=o.length,n!==Object.keys(t).length)return!1;for(r=n;0!=r--;)if(!{}.hasOwnProperty.call(t,o[r]))return!1;for(r=n;0!=r--;){const n=o[r];if(!("_owner"===n&&e.$$typeof||Xn(e[n],t[n])))return!1}return!0}return e!=e&&t!=t}function Kn(e){return"undefined"==typeof window?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function Zn(e,t){const n=Kn(e);return Math.round(t*n)/n}function Jn(e){const t=i.useRef(e);return Gn((()=>{t.current=e})),t}const Qn=e=>({name:"arrow",options:e,fn(t){const{element:n,padding:r}="function"==typeof e?e(t):e;return n&&(o=n,{}.hasOwnProperty.call(o,"current"))?null!=n.current?qn({element:n.current,padding:r}).fn(t):{}:n?qn({element:n,padding:r}).fn(t):{};var o}}),er=(e,t)=>({...Wn(e),options:[e,t]}),tr=(e,t)=>({...Hn(e),options:[e,t]}),nr=(e,t)=>({...$n(e),options:[e,t]}),rr={...l},or=rr.useInsertionEffect||(e=>e());function ar(e){const t=i.useRef((()=>{}));return or((()=>{t.current=e})),i.useCallback((function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return null==t.current?void 0:t.current(...n)}),[])}var sr="undefined"!=typeof document?i.useLayoutEffect:i.useEffect;function ir(){return ir=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ir.apply(this,arguments)}let lr=!1,cr=0;const ur=()=>"floating-ui-"+Math.random().toString(36).slice(2,6)+cr++,dr=rr.useId||function(){const[e,t]=i.useState((()=>lr?ur():void 0));return sr((()=>{null==e&&t(ur())}),[]),i.useEffect((()=>{lr=!0}),[]),e},mr=i.forwardRef((function(e,t){const{context:{placement:n,elements:{floating:r},middlewareData:{arrow:o,shift:a}},width:s=14,height:l=7,tipRadius:c=0,strokeWidth:u=0,staticOffset:d,stroke:m,d:p,style:{transform:f,...h}={},...g}=e,y=dr(),[v,x]=i.useState(!1);if(sr((()=>{r&&"rtl"===kt(r).direction&&x(!0)}),[r]),!r)return null;const[b,w]=n.split("-"),E="top"===b||"bottom"===b;let _=d;(E&&null!=a&&a.x||!E&&null!=a&&a.y)&&(_=null);const k=2*u,S=k/2,N=s/2*(c/-8+1),C=l/2*c/4,P=!!p,T=_&&"end"===w?"bottom":"top";let j=_&&"end"===w?"right":"left";_&&v&&(j="end"===w?"left":"right");const R=null!=(null==o?void 0:o.x)?_||o.x:"",F=null!=(null==o?void 0:o.y)?_||o.y:"",A=p||"M0,0 H"+s+" L"+(s-N)+","+(l-C)+" Q"+s/2+","+l+" "+N+","+(l-C)+" Z",D={top:P?"rotate(180deg)":"",left:P?"rotate(90deg)":"rotate(-90deg)",bottom:P?"":"rotate(180deg)",right:P?"rotate(-90deg)":"rotate(90deg)"}[b];return i.createElement("svg",ir({},g,{"aria-hidden":!0,ref:t,width:P?s:s+k,height:s,viewBox:"0 0 "+s+" "+(l>s?l:s),style:{position:"absolute",pointerEvents:"none",[j]:R,[T]:F,[b]:E||P?"100%":"calc(100% - "+k/2+"px)",transform:[D,f].filter((e=>!!e)).join(" "),...h}}),k>0&&i.createElement("path",{clipPath:"url(#"+y+")",fill:"none",stroke:m,strokeWidth:k+(p?0:1),d:A}),i.createElement("path",{stroke:k&&!p?g.fill:"none",d:A}),i.createElement("clipPath",{id:y},i.createElement("rect",{x:-S,y:S*(P?-1:1),width:s+k,height:s})))}));const pr=i.createContext(null),fr=i.createContext(null),hr=()=>{var e;return(null==(e=i.useContext(pr))?void 0:e.id)||null},gr=()=>i.useContext(fr);function yr(e){return"data-floating-ui-"+e}function vr(e){const t=(0,i.useRef)(e);return sr((()=>{t.current=e})),t}const xr=yr("safe-polygon");function br(e,t,n){return n&&!Ot(n)?0:"number"==typeof e?e:null==e?void 0:e[t]}function wr(e,t){let n=e.filter((e=>{var n;return e.parentId===t&&(null==(n=e.context)?void 0:n.open)})),r=n;for(;r.length;)r=e.filter((e=>{var t;return null==(t=r)?void 0:t.some((t=>{var n;return e.parentId===t.id&&(null==(n=e.context)?void 0:n.open)}))})),n=n.concat(r);return n}const Er=()=>({getShadowRoot:!0,displayCheck:"function"==typeof ResizeObserver&&ResizeObserver.toString().includes("[native code]")?"full":"none"});function _r(e,t){const n=nn(e,Er());"prev"===t&&n.reverse();const r=n.indexOf(jt(Lt(e)));return n.slice(r+1)[0]}function kr(e,t){const n=t||e.currentTarget,r=e.relatedTarget;return!r||!Rt(n,r)}function Sr(e){nn(e,Er()).forEach((e=>{e.dataset.tabindex=e.getAttribute("tabindex")||"",e.setAttribute("tabindex","-1")}))}function Nr(e){e.querySelectorAll("[data-tabindex]").forEach((e=>{const t=e.dataset.tabindex;delete e.dataset.tabindex,t?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")}))}const Cr={border:0,clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"fixed",whiteSpace:"nowrap",width:"1px",top:0,left:0};function Pr(e){"Tab"===e.key&&(e.target,clearTimeout(void 0))}const Tr=i.forwardRef((function(e,t){const[n,r]=i.useState();sr((()=>(Dt()&&r("button"),document.addEventListener("keydown",Pr),()=>{document.removeEventListener("keydown",Pr)})),[]);const o={ref:t,tabIndex:0,role:n,"aria-hidden":!n||void 0,[yr("focus-guard")]:"",style:Cr};return i.createElement("span",ir({},e,o))})),jr=i.createContext(null),Rr=yr("portal");function Fr(e){const{children:t,id:n,root:r,preserveTabOrder:o=!0}=e,a=function(e){void 0===e&&(e={});const{id:t,root:n}=e,r=dr(),o=Ar(),[a,s]=i.useState(null),l=i.useRef(null);return sr((()=>()=>{null==a||a.remove(),queueMicrotask((()=>{l.current=null}))}),[a]),sr((()=>{if(!r)return;if(l.current)return;const e=t?document.getElementById(t):null;if(!e)return;const n=document.createElement("div");n.id=r,n.setAttribute(Rr,""),e.appendChild(n),l.current=n,s(n)}),[t,r]),sr((()=>{if(null===n)return;if(!r)return;if(l.current)return;let e=n||(null==o?void 0:o.portalNode);e&&!ht(e)&&(e=e.current),e=e||document.body;let a=null;t&&(a=document.createElement("div"),a.id=t,e.appendChild(a));const i=document.createElement("div");i.id=r,i.setAttribute(Rr,""),e=a||e,e.appendChild(i),l.current=i,s(i)}),[t,n,r,o]),a}({id:n,root:r}),[s,l]=i.useState(null),c=i.useRef(null),u=i.useRef(null),d=i.useRef(null),m=i.useRef(null),p=null==s?void 0:s.modal,f=null==s?void 0:s.open,h=!!s&&!s.modal&&s.open&&o&&!(!r&&!a);return i.useEffect((()=>{if(a&&o&&!p)return a.addEventListener("focusin",e,!0),a.addEventListener("focusout",e,!0),()=>{a.removeEventListener("focusin",e,!0),a.removeEventListener("focusout",e,!0)};function e(e){a&&kr(e)&&("focusin"===e.type?Nr:Sr)(a)}}),[a,o,p]),i.useEffect((()=>{a&&(f||Nr(a))}),[f,a]),i.createElement(jr.Provider,{value:i.useMemo((()=>({preserveTabOrder:o,beforeOutsideRef:c,afterOutsideRef:u,beforeInsideRef:d,afterInsideRef:m,portalNode:a,setFocusManagerState:l})),[o,a])},h&&a&&i.createElement(Tr,{"data-type":"outside",ref:c,onFocus:e=>{if(kr(e,a)){var t;null==(t=d.current)||t.focus()}else{const e=_r(document.body,"prev")||(null==s?void 0:s.refs.domReference.current);null==e||e.focus()}}}),h&&a&&i.createElement("span",{"aria-owns":a.id,style:Cr}),a&&rn.createPortal(t,a),h&&a&&i.createElement(Tr,{"data-type":"outside",ref:u,onFocus:e=>{if(kr(e,a)){var t;null==(t=m.current)||t.focus()}else{const t=_r(document.body,"next")||(null==s?void 0:s.refs.domReference.current);null==t||t.focus(),(null==s?void 0:s.closeOnFocusOut)&&(null==s||s.onOpenChange(!1,e.nativeEvent,"focus-out"))}}}))}const Ar=()=>i.useContext(jr),Dr="data-floating-ui-focusable";function Mr(e){return gt(e.target)&&"BUTTON"===e.target.tagName}function Or(e){return zt(e)}function Lr(e,t){void 0===t&&(t={});const{open:n,onOpenChange:r,dataRef:o,elements:{domReference:a}}=e,{enabled:s=!0,event:l="click",toggle:c=!0,ignoreMouse:u=!1,keyboardHandlers:d=!0,stickIfOpen:m=!0}=t,p=i.useRef(),f=i.useRef(!1),h=i.useMemo((()=>({onPointerDown(e){p.current=e.pointerType},onMouseDown(e){const t=p.current;0===e.button&&"click"!==l&&(Ot(t,!0)&&u||(!n||!c||o.current.openEvent&&m&&"mousedown"!==o.current.openEvent.type?(e.preventDefault(),r(!0,e.nativeEvent,"click")):r(!1,e.nativeEvent,"click")))},onClick(e){const t=p.current;"mousedown"===l&&p.current?p.current=void 0:Ot(t,!0)&&u||(!n||!c||o.current.openEvent&&m&&"click"!==o.current.openEvent.type?r(!0,e.nativeEvent,"click"):r(!1,e.nativeEvent,"click"))},onKeyDown(e){p.current=void 0,e.defaultPrevented||!d||Mr(e)||(" "!==e.key||Or(a)||(e.preventDefault(),f.current=!0),"Enter"===e.key&&r(!n||!c,e.nativeEvent,"click"))},onKeyUp(e){e.defaultPrevented||!d||Mr(e)||Or(a)||" "===e.key&&f.current&&(f.current=!1,r(!n||!c,e.nativeEvent,"click"))}})),[o,a,l,u,d,r,n,m,c]);return i.useMemo((()=>s?{reference:h}:{}),[s,h])}const Ir={pointerdown:"onPointerDown",mousedown:"onMouseDown",click:"onClick"},Br={pointerdown:"onPointerDownCapture",mousedown:"onMouseDownCapture",click:"onClickCapture"},zr=e=>{var t,n;return{escapeKey:"boolean"==typeof e?e:null!=(t=null==e?void 0:e.escapeKey)&&t,outsidePress:"boolean"==typeof e?e:null==(n=null==e?void 0:e.outsidePress)||n}};function Vr(e,t){void 0===t&&(t={});const{open:n,onOpenChange:r,elements:o,dataRef:a}=e,{enabled:s=!0,escapeKey:l=!0,outsidePress:c=!0,outsidePressEvent:u="pointerdown",referencePress:d=!1,referencePressEvent:m="pointerdown",ancestorScroll:p=!1,bubbles:f,capture:h}=t,g=gr(),y=ar("function"==typeof c?c:()=>!1),v="function"==typeof c?y:c,x=i.useRef(!1),b=i.useRef(!1),{escapeKey:w,outsidePress:E}=zr(f),{escapeKey:_,outsidePress:k}=zr(h),S=i.useRef(!1),N=ar((e=>{var t;if(!n||!s||!l||"Escape"!==e.key)return;if(S.current)return;const o=null==(t=a.current.floatingContext)?void 0:t.nodeId,i=g?wr(g.nodesRef.current,o):[];if(!w&&(e.stopPropagation(),i.length>0)){let e=!0;if(i.forEach((t=>{var n;null==(n=t.context)||!n.open||t.context.dataRef.current.__escapeKeyBubbles||(e=!1)})),!e)return}r(!1,function(e){return"nativeEvent"in e}(e)?e.nativeEvent:e,"escape-key")})),C=ar((e=>{var t;const n=()=>{var t;N(e),null==(t=Bt(e))||t.removeEventListener("keydown",n)};null==(t=Bt(e))||t.addEventListener("keydown",n)})),P=ar((e=>{var t;const n=x.current;x.current=!1;const s=b.current;if(b.current=!1,"click"===u&&s)return;if(n)return;if("function"==typeof v&&!v(e))return;const i=Bt(e),l="["+yr("inert")+"]",c=Lt(o.floating).querySelectorAll(l);let d=ht(i)?i:null;for(;d&&!_t(d);){const e=Nt(d);if(_t(e)||!ht(e))break;d=e}if(c.length&&ht(i)&&!i.matches("html,body")&&!Rt(i,o.floating)&&Array.from(c).every((e=>!Rt(d,e))))return;if(gt(i)&&R){const t=i.clientWidth>0&&i.scrollWidth>i.clientWidth,n=i.clientHeight>0&&i.scrollHeight>i.clientHeight;let r=n&&e.offsetX>i.clientWidth;if(n&&"rtl"===kt(i).direction&&(r=e.offsetX<=i.offsetWidth-i.clientWidth),r||t&&e.offsetY>i.clientHeight)return}const m=null==(t=a.current.floatingContext)?void 0:t.nodeId,p=g&&wr(g.nodesRef.current,m).some((t=>{var n;return It(e,null==(n=t.context)?void 0:n.elements.floating)}));if(It(e,o.floating)||It(e,o.domReference)||p)return;const f=g?wr(g.nodesRef.current,m):[];if(f.length>0){let e=!0;if(f.forEach((t=>{var n;null==(n=t.context)||!n.open||t.context.dataRef.current.__outsidePressBubbles||(e=!1)})),!e)return}r(!1,e,"outside-press")})),T=ar((e=>{var t;const n=()=>{var t;P(e),null==(t=Bt(e))||t.removeEventListener(u,n)};null==(t=Bt(e))||t.addEventListener(u,n)}));i.useEffect((()=>{if(!n||!s)return;a.current.__escapeKeyBubbles=w,a.current.__outsidePressBubbles=E;let e=-1;function t(e){r(!1,e,"ancestor-scroll")}function i(){window.clearTimeout(e),S.current=!0}function c(){e=window.setTimeout((()=>{S.current=!1}),Et()?5:0)}const d=Lt(o.floating);l&&(d.addEventListener("keydown",_?C:N,_),d.addEventListener("compositionstart",i),d.addEventListener("compositionend",c)),v&&d.addEventListener(u,k?T:P,k);let m=[];return p&&(ht(o.domReference)&&(m=Pt(o.domReference)),ht(o.floating)&&(m=m.concat(Pt(o.floating))),!ht(o.reference)&&o.reference&&o.reference.contextElement&&(m=m.concat(Pt(o.reference.contextElement)))),m=m.filter((e=>{var t;return e!==(null==(t=d.defaultView)?void 0:t.visualViewport)})),m.forEach((e=>{e.addEventListener("scroll",t,{passive:!0})})),()=>{l&&(d.removeEventListener("keydown",_?C:N,_),d.removeEventListener("compositionstart",i),d.removeEventListener("compositionend",c)),v&&d.removeEventListener(u,k?T:P,k),m.forEach((e=>{e.removeEventListener("scroll",t)})),window.clearTimeout(e)}}),[a,o,l,v,u,n,r,p,s,w,E,N,_,C,P,k,T]),i.useEffect((()=>{x.current=!1}),[v,u]);const j=i.useMemo((()=>({onKeyDown:N,[Ir[m]]:e=>{d&&r(!1,e.nativeEvent,"reference-press")}})),[N,r,d,m]),R=i.useMemo((()=>({onKeyDown:N,onMouseDown(){b.current=!0},onMouseUp(){b.current=!0},[Br[u]]:()=>{x.current=!0}})),[N,u]);return i.useMemo((()=>s?{reference:j,floating:R}:{}),[s,j,R])}function Ur(e){void 0===e&&(e={});const{nodeId:t}=e,n=function(e){const{open:t=!1,onOpenChange:n,elements:r}=e,o=dr(),a=i.useRef({}),[s]=i.useState((()=>function(){const e=new Map;return{emit(t,n){var r;null==(r=e.get(t))||r.forEach((e=>e(n)))},on(t,n){e.set(t,[...e.get(t)||[],n])},off(t,n){var r;e.set(t,(null==(r=e.get(t))?void 0:r.filter((e=>e!==n)))||[])}}}())),l=null!=hr(),[c,u]=i.useState(r.reference),d=ar(((e,t,r)=>{a.current.openEvent=e?t:void 0,s.emit("openchange",{open:e,event:t,reason:r,nested:l}),null==n||n(e,t,r)})),m=i.useMemo((()=>({setPositionReference:u})),[]),p=i.useMemo((()=>({reference:c||r.reference||null,floating:r.floating||null,domReference:r.reference})),[c,r.reference,r.floating]);return i.useMemo((()=>({dataRef:a,open:t,onOpenChange:d,elements:p,events:s,floatingId:o,refs:m})),[t,d,p,s,o,m])}({...e,elements:{reference:null,floating:null,...e.elements}}),r=e.rootContext||n,o=r.elements,[a,s]=i.useState(null),[l,c]=i.useState(null),u=(null==o?void 0:o.domReference)||a,d=i.useRef(null),m=gr();sr((()=>{u&&(d.current=u)}),[u]);const p=function(e){void 0===e&&(e={});const{placement:t="bottom",strategy:n="absolute",middleware:r=[],platform:o,elements:{reference:a,floating:s}={},transform:l=!0,whileElementsMounted:c,open:u}=e,[d,m]=i.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[p,f]=i.useState(r);Xn(p,r)||f(r);const[h,g]=i.useState(null),[y,v]=i.useState(null),x=i.useCallback((e=>{e!==_.current&&(_.current=e,g(e))}),[]),b=i.useCallback((e=>{e!==k.current&&(k.current=e,v(e))}),[]),w=a||h,E=s||y,_=i.useRef(null),k=i.useRef(null),S=i.useRef(d),N=null!=c,C=Jn(c),P=Jn(o),T=Jn(u),j=i.useCallback((()=>{if(!_.current||!k.current)return;const e={placement:t,strategy:n,middleware:p};P.current&&(e.platform=P.current),Yn(_.current,k.current,e).then((e=>{const t={...e,isPositioned:!1!==T.current};R.current&&!Xn(S.current,t)&&(S.current=t,rn.flushSync((()=>{m(t)})))}))}),[p,t,n,P,T]);Gn((()=>{!1===u&&S.current.isPositioned&&(S.current.isPositioned=!1,m((e=>({...e,isPositioned:!1}))))}),[u]);const R=i.useRef(!1);Gn((()=>(R.current=!0,()=>{R.current=!1})),[]),Gn((()=>{if(w&&(_.current=w),E&&(k.current=E),w&&E){if(C.current)return C.current(w,E,j);j()}}),[w,E,j,C,N]);const F=i.useMemo((()=>({reference:_,floating:k,setReference:x,setFloating:b})),[x,b]),A=i.useMemo((()=>({reference:w,floating:E})),[w,E]),D=i.useMemo((()=>{const e={position:n,left:0,top:0};if(!A.floating)return e;const t=Zn(A.floating,d.x),r=Zn(A.floating,d.y);return l?{...e,transform:"translate("+t+"px, "+r+"px)",...Kn(A.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:t,top:r}}),[n,l,A.floating,d.x,d.y]);return i.useMemo((()=>({...d,update:j,refs:F,elements:A,floatingStyles:D})),[d,j,F,A,D])}({...e,elements:{...o,...l&&{reference:l}}}),f=i.useCallback((e=>{const t=ht(e)?{getBoundingClientRect:()=>e.getBoundingClientRect(),contextElement:e}:e;c(t),p.refs.setReference(t)}),[p.refs]),h=i.useCallback((e=>{(ht(e)||null===e)&&(d.current=e,s(e)),(ht(p.refs.reference.current)||null===p.refs.reference.current||null!==e&&!ht(e))&&p.refs.setReference(e)}),[p.refs]),g=i.useMemo((()=>({...p.refs,setReference:h,setPositionReference:f,domReference:d})),[p.refs,h,f]),y=i.useMemo((()=>({...p.elements,domReference:u})),[p.elements,u]),v=i.useMemo((()=>({...p,...r,refs:g,elements:y,nodeId:t})),[p,g,y,t,r]);return sr((()=>{r.dataRef.current.floatingContext=v;const e=null==m?void 0:m.nodesRef.current.find((e=>e.id===t));e&&(e.context=v)})),i.useMemo((()=>({...p,context:v,refs:g,elements:y})),[p,g,y,v])}function Wr(e,t){void 0===t&&(t={});const{open:n,onOpenChange:r,events:o,dataRef:a,elements:s}=e,{enabled:l=!0,visibleOnly:c=!0}=t,u=i.useRef(!1),d=i.useRef(),m=i.useRef(!0);i.useEffect((()=>{if(!l)return;const e=mt(s.domReference);function t(){!n&&gt(s.domReference)&&s.domReference===jt(Lt(s.domReference))&&(u.current=!0)}function r(){m.current=!0}return e.addEventListener("blur",t),e.addEventListener("keydown",r,!0),()=>{e.removeEventListener("blur",t),e.removeEventListener("keydown",r,!0)}}),[s.domReference,n,l]),i.useEffect((()=>{if(l)return o.on("openchange",e),()=>{o.off("openchange",e)};function e(e){let{reason:t}=e;"reference-press"!==t&&"escape-key"!==t||(u.current=!0)}}),[o,l]),i.useEffect((()=>()=>{clearTimeout(d.current)}),[]);const p=i.useMemo((()=>({onPointerDown(e){(function(e){return!At().includes("jsdom/")&&(!Mt()&&0===e.width&&0===e.height||Mt()&&1===e.width&&1===e.height&&0===e.pressure&&0===e.detail&&"mouse"===e.pointerType||e.width<1&&e.height<1&&0===e.pressure&&0===e.detail&&"touch"===e.pointerType)})(e.nativeEvent)||(m.current=!1)},onMouseLeave(){u.current=!1},onFocus(e){if(u.current)return;const t=Bt(e.nativeEvent);if(c&&ht(t))try{if(Dt()&&Ft().toLowerCase().startsWith("mac")&&!navigator.maxTouchPoints)throw Error();if(!t.matches(":focus-visible"))return}catch(e){if(!m.current&&!zt(t))return}r(!0,e.nativeEvent,"focus")},onBlur(e){u.current=!1;const t=e.relatedTarget,n=e.nativeEvent,o=ht(t)&&t.hasAttribute(yr("focus-guard"))&&"outside"===t.getAttribute("data-type");d.current=window.setTimeout((()=>{var e;const i=jt(s.domReference?s.domReference.ownerDocument:document);(t||i!==s.domReference)&&(Rt(null==(e=a.current.floatingContext)?void 0:e.refs.floating.current,i)||Rt(s.domReference,i)||o||r(!1,n,"focus"))}))}})),[a,s.domReference,r,c]);return i.useMemo((()=>l?{reference:p}:{}),[l,p])}const Hr="active",$r="selected";function qr(e,t,n){const r=new Map,o="item"===n;let a=e;if(o&&e){const{[Hr]:t,[$r]:n,...r}=e;a=r}return{..."floating"===n&&{tabIndex:-1,[Dr]:""},...a,...t.map((t=>{const r=t?t[n]:null;return"function"==typeof r?e?r(e):null:r})).concat(e).reduce(((e,t)=>t?(Object.entries(t).forEach((t=>{let[n,a]=t;var s;o&&[Hr,$r].includes(n)||(0===n.indexOf("on")?(r.has(n)||r.set(n,[]),"function"==typeof a&&(null==(s=r.get(n))||s.push(a),e[n]=function(){for(var e,t=arguments.length,o=new Array(t),a=0;a<t;a++)o[a]=arguments[a];return null==(e=r.get(n))?void 0:e.map((e=>e(...o))).find((e=>void 0!==e))})):e[n]=a)})),e):e),{})}}function Yr(e){void 0===e&&(e=[]);const t=e.map((e=>null==e?void 0:e.reference)),n=e.map((e=>null==e?void 0:e.floating)),r=e.map((e=>null==e?void 0:e.item)),o=i.useCallback((t=>qr(t,e,"reference")),t),a=i.useCallback((t=>qr(t,e,"floating")),n),s=i.useCallback((t=>qr(t,e,"item")),r);return i.useMemo((()=>({getReferenceProps:o,getFloatingProps:a,getItemProps:s})),[o,a,s])}const Gr=new Map([["select","listbox"],["combobox","listbox"],["label",!1]]);function Xr(e,t){var n;void 0===t&&(t={});const{open:r,floatingId:o}=e,{enabled:a=!0,role:s="dialog"}=t,l=null!=(n=Gr.get(s))?n:s,c=dr(),u=null!=hr(),d=i.useMemo((()=>"tooltip"===l||"label"===s?{["aria-"+("label"===s?"labelledby":"describedby")]:r?o:void 0}:{"aria-expanded":r?"true":"false","aria-haspopup":"alertdialog"===l?"dialog":l,"aria-controls":r?o:void 0,..."listbox"===l&&{role:"combobox"},..."menu"===l&&{id:c},..."menu"===l&&u&&{role:"menuitem"},..."select"===s&&{"aria-autocomplete":"none"},..."combobox"===s&&{"aria-autocomplete":"list"}}),[l,o,u,r,c,s]),m=i.useMemo((()=>{const e={id:o,...l&&{role:l}};return"tooltip"===l||"label"===s?e:{...e,..."menu"===l&&{"aria-labelledby":c}}}),[l,o,c,s]),p=i.useCallback((e=>{let{active:t,selected:n}=e;const r={role:"option",...t&&{id:o+"-option"}};switch(s){case"select":return{...r,"aria-selected":t&&n};case"combobox":return{...r,...t&&{"aria-selected":!0}}}return{}}),[o,s]);return i.useMemo((()=>a?{reference:d,floating:m,item:p}:{}),[a,d,m,p])}const Kr=e=>e.replace(/[A-Z]+(?![a-z])|[A-Z]/g,((e,t)=>(t?"-":"")+e.toLowerCase()));function Zr(e,t){return"function"==typeof e?e(t):e}function Jr(e,t){void 0===t&&(t={});const{initial:n={opacity:0},open:r,close:o,common:a,duration:s=250}=t,l=e.placement,c=l.split("-")[0],u=i.useMemo((()=>({side:c,placement:l})),[c,l]),d="number"==typeof s,m=(d?s:s.open)||0,p=(d?s:s.close)||0,[f,h]=i.useState((()=>({...Zr(a,u),...Zr(n,u)}))),{isMounted:g,status:y}=function(e,t){void 0===t&&(t={});const{open:n,elements:{floating:r}}=e,{duration:o=250}=t,a=("number"==typeof o?o:o.close)||0,[s,l]=i.useState("unmounted"),c=function(e,t){const[n,r]=i.useState(e);return e&&!n&&r(!0),i.useEffect((()=>{if(!e&&n){const e=setTimeout((()=>r(!1)),t);return()=>clearTimeout(e)}}),[e,n,t]),n}(n,a);return c||"close"!==s||l("unmounted"),sr((()=>{if(r){if(n){l("initial");const e=requestAnimationFrame((()=>{l("open")}));return()=>{cancelAnimationFrame(e)}}l("close")}}),[n,r]),{isMounted:c,status:s}}(e,{duration:s}),v=vr(n),x=vr(r),b=vr(o),w=vr(a);return sr((()=>{const e=Zr(v.current,u),t=Zr(b.current,u),n=Zr(w.current,u),r=Zr(x.current,u)||Object.keys(e).reduce(((e,t)=>(e[t]="",e)),{});if("initial"===y&&h((t=>({transitionProperty:t.transitionProperty,...n,...e}))),"open"===y&&h({transitionProperty:Object.keys(r).map(Kr).join(","),transitionDuration:m+"ms",...n,...r}),"close"===y){const r=t||e;h({transitionProperty:Object.keys(r).map(Kr).join(","),transitionDuration:p+"ms",...n,...r})}}),[p,b,v,x,w,m,y,u]),{isMounted:g,styles:f}}function Qr(e,t){const[n,r]=e;let o=!1;const a=t.length;for(let e=0,s=a-1;e<a;s=e++){const[a,i]=t[e]||[0,0],[l,c]=t[s]||[0,0];i>=r!=c>=r&&n<=(l-a)*(r-i)/(c-i)+a&&(o=!o)}return o}function eo(e){void 0===e&&(e={});const{buffer:t=.5,blockPointerEvents:n=!1,requireIntent:r=!0}=e;let o,a=!1,s=null,i=null,l=performance.now();const c=e=>{let{x:n,y:c,placement:u,elements:d,onClose:m,nodeId:p,tree:f}=e;return function(e){function h(){clearTimeout(o),m()}if(clearTimeout(o),!d.domReference||!d.floating||null==u||null==n||null==c)return;const{clientX:g,clientY:y}=e,v=[g,y],x=Bt(e),b="mouseleave"===e.type,w=Rt(d.floating,x),E=Rt(d.domReference,x),_=d.domReference.getBoundingClientRect(),k=d.floating.getBoundingClientRect(),S=u.split("-")[0],N=n>k.right-k.width/2,C=c>k.bottom-k.height/2,P=function(e,t){return e[0]>=t.x&&e[0]<=t.x+t.width&&e[1]>=t.y&&e[1]<=t.y+t.height}(v,_),T=k.width>_.width,j=k.height>_.height,R=(T?_:k).left,F=(T?_:k).right,A=(j?_:k).top,D=(j?_:k).bottom;if(w&&(a=!0,!b))return;if(E&&(a=!1),E&&!b)return void(a=!0);if(b&&ht(e.relatedTarget)&&Rt(d.floating,e.relatedTarget))return;if(f&&wr(f.nodesRef.current,p).some((e=>{let{context:t}=e;return null==t?void 0:t.open})))return;if("top"===S&&c>=_.bottom-1||"bottom"===S&&c<=_.top+1||"left"===S&&n>=_.right-1||"right"===S&&n<=_.left+1)return h();let M=[];switch(S){case"top":M=[[R,_.top+1],[R,k.bottom-1],[F,k.bottom-1],[F,_.top+1]];break;case"bottom":M=[[R,k.top+1],[R,_.bottom-1],[F,_.bottom-1],[F,k.top+1]];break;case"left":M=[[k.right-1,D],[k.right-1,A],[_.left+1,A],[_.left+1,D]];break;case"right":M=[[_.right-1,D],[_.right-1,A],[k.left+1,A],[k.left+1,D]]}if(!Qr([g,y],M)){if(a&&!P)return h();if(!b&&r){const t=function(e,t){const n=performance.now(),r=n-l;if(null===s||null===i||0===r)return s=e,i=t,l=n,null;const o=e-s,a=t-i,c=Math.sqrt(o*o+a*a);return s=e,i=t,l=n,c/r}(e.clientX,e.clientY);if(null!==t&&t<.1)return h()}Qr([g,y],function(e){let[n,r]=e;switch(S){case"top":return[[T?n+t/2:N?n+4*t:n-4*t,r+t+1],[T?n-t/2:N?n+4*t:n-4*t,r+t+1],[k.left,N||T?k.bottom-t:k.top],[k.right,N?T?k.bottom-t:k.top:k.bottom-t]];case"bottom":return[[T?n+t/2:N?n+4*t:n-4*t,r-t],[T?n-t/2:N?n+4*t:n-4*t,r-t],[k.left,N||T?k.top+t:k.bottom],[k.right,N?T?k.top+t:k.bottom:k.top+t]];case"left":{const e=[n+t+1,j?r+t/2:C?r+4*t:r-4*t],o=[n+t+1,j?r-t/2:C?r+4*t:r-4*t];return[[C||j?k.right-t:k.left,k.top],[C?j?k.right-t:k.left:k.right-t,k.bottom],e,o]}case"right":return[[n-t,j?r+t/2:C?r+4*t:r-4*t],[n-t,j?r-t/2:C?r+4*t:r-4*t],[C||j?k.left+t:k.right,k.top],[C?j?k.left+t:k.right:k.left+t,k.bottom]]}}([n,c]))?!a&&r&&(o=window.setTimeout(h,40)):h()}}};return c.__options={blockPointerEvents:n},c}function to(e){if("undefined"==typeof Proxy)return e;const t=new Map;return new Proxy(((...t)=>e(...t)),{get:(n,r)=>"create"===r?e:(t.has(r)||t.set(r,e(r)),t.get(r))})}function no(e){return null!==e&&"object"==typeof e&&"function"==typeof e.start}const ro=e=>Array.isArray(e);function oo(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let r=0;r<n;r++)if(t[r]!==e[r])return!1;return!0}function ao(e){return"string"==typeof e||Array.isArray(e)}function so(e){const t=[{},{}];return null==e||e.values.forEach(((e,n)=>{t[0][n]=e.get(),t[1][n]=e.getVelocity()})),t}function io(e,t,n,r){if("function"==typeof t){const[o,a]=so(r);t=t(void 0!==n?n:e.custom,o,a)}if("string"==typeof t&&(t=e.variants&&e.variants[t]),"function"==typeof t){const[o,a]=so(r);t=t(void 0!==n?n:e.custom,o,a)}return t}function lo(e,t,n){const r=e.getProps();return io(r,t,void 0!==n?n:r.custom,e)}const co=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],uo=["initial",...co];function mo(e){let t;return()=>(void 0===t&&(t=e()),t)}const po=mo((()=>void 0!==window.ScrollTimeline));class fo{constructor(e){this.stop=()=>this.runAll("stop"),this.animations=e.filter(Boolean)}get finished(){return Promise.all(this.animations.map((e=>"finished"in e?e.finished:e)))}getAll(e){return this.animations[0][e]}setAll(e,t){for(let n=0;n<this.animations.length;n++)this.animations[n][e]=t}attachTimeline(e,t){const n=this.animations.map((n=>po()&&n.attachTimeline?n.attachTimeline(e):"function"==typeof t?t(n):void 0));return()=>{n.forEach(((e,t)=>{e&&e(),this.animations[t].stop()}))}}get time(){return this.getAll("time")}set time(e){this.setAll("time",e)}get speed(){return this.getAll("speed")}set speed(e){this.setAll("speed",e)}get startTime(){return this.getAll("startTime")}get duration(){let e=0;for(let t=0;t<this.animations.length;t++)e=Math.max(e,this.animations[t].duration);return e}runAll(e){this.animations.forEach((t=>t[e]()))}flatten(){this.runAll("flatten")}play(){this.runAll("play")}pause(){this.runAll("pause")}cancel(){this.runAll("cancel")}complete(){this.runAll("complete")}}class ho extends fo{then(e,t){return Promise.all(this.animations).then(e).catch(t)}}function go(e,t){return e?e[t]||e.default||e:void 0}const yo=2e4;function vo(e){let t=0,n=e.next(t);for(;!n.done&&t<yo;)t+=50,n=e.next(t);return t>=yo?1/0:t}function xo(e){return"function"==typeof e}function bo(e,t){e.timeline=t,e.onfinish=null}const wo=e=>Array.isArray(e)&&"number"==typeof e[0],Eo={linearEasing:void 0};function _o(e,t){const n=mo(e);return()=>{var e;return null!==(e=Eo[t])&&void 0!==e?e:n()}}const ko=_o((()=>{try{document.createElement("div").animate({opacity:0},{easing:"linear(0, 1)"})}catch(e){return!1}return!0}),"linearEasing"),So=(e,t,n)=>{const r=t-e;return 0===r?1:(n-e)/r},No=(e,t,n=10)=>{let r="";const o=Math.max(Math.round(t/n),2);for(let t=0;t<o;t++)r+=e(So(0,o-1,t))+", ";return`linear(${r.substring(0,r.length-2)})`};function Co(e){return Boolean("function"==typeof e&&ko()||!e||"string"==typeof e&&(e in To||ko())||wo(e)||Array.isArray(e)&&e.every(Co))}const Po=([e,t,n,r])=>`cubic-bezier(${e}, ${t}, ${n}, ${r})`,To={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:Po([0,.65,.55,1]),circOut:Po([.55,0,1,.45]),backIn:Po([.31,.01,.66,-.59]),backOut:Po([.33,1.53,.69,.99])};function jo(e,t){return e?"function"==typeof e&&ko()?No(e,t):wo(e)?Po(e):Array.isArray(e)?e.map((e=>jo(e,t)||To.easeOut)):To[e]:void 0}const Ro={x:!1,y:!1};function Fo(){return Ro.x||Ro.y}function Ao(e,t){const n=function(e){if(e instanceof Element)return[e];if("string"==typeof e){let t=document;const n=t.querySelectorAll(e);return n?Array.from(n):[]}return Array.from(e)}(e),r=new AbortController;return[n,{passive:!0,...t,signal:r.signal},()=>r.abort()]}function Do(e){return t=>{"touch"===t.pointerType||Fo()||e(t)}}const Mo=(e,t)=>!!t&&(e===t||Mo(e,t.parentElement)),Oo=e=>"mouse"===e.pointerType?"number"!=typeof e.button||e.button<=0:!1!==e.isPrimary,Lo=new Set(["BUTTON","INPUT","SELECT","TEXTAREA","A"]),Io=new WeakSet;function Bo(e){return t=>{"Enter"===t.key&&e(t)}}function zo(e,t){e.dispatchEvent(new PointerEvent("pointer"+t,{isPrimary:!0,bubbles:!0}))}function Vo(e){return Oo(e)&&!Fo()}const Uo=e=>1e3*e,Wo=e=>e/1e3,Ho=e=>e,$o=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],qo=new Set($o),Yo=new Set(["width","height","top","left","right","bottom",...$o]),Go=e=>ro(e)?e[e.length-1]||0:e,Xo=["read","resolveKeyframes","update","preRender","render","postRender"];function Ko(e,t){let n=!1,r=!0;const o={delta:0,timestamp:0,isProcessing:!1},a=()=>n=!0,s=Xo.reduce(((e,t)=>(e[t]=function(e){let t=new Set,n=new Set,r=!1,o=!1;const a=new WeakSet;let s={delta:0,timestamp:0,isProcessing:!1};function i(t){a.has(t)&&(l.schedule(t),e()),t(s)}const l={schedule:(e,o=!1,s=!1)=>{const i=s&&r?t:n;return o&&a.add(e),i.has(e)||i.add(e),e},cancel:e=>{n.delete(e),a.delete(e)},process:e=>{s=e,r?o=!0:(r=!0,[t,n]=[n,t],t.forEach(i),t.clear(),r=!1,o&&(o=!1,l.process(e)))}};return l}(a),e)),{}),{read:i,resolveKeyframes:l,update:c,preRender:u,render:d,postRender:m}=s,p=()=>{const a=performance.now();n=!1,o.delta=r?1e3/60:Math.max(Math.min(a-o.timestamp,40),1),o.timestamp=a,o.isProcessing=!0,i.process(o),l.process(o),c.process(o),u.process(o),d.process(o),m.process(o),o.isProcessing=!1,n&&t&&(r=!1,e(p))};return{schedule:Xo.reduce(((t,a)=>{const i=s[a];return t[a]=(t,a=!1,s=!1)=>(n||(n=!0,r=!0,o.isProcessing||e(p)),i.schedule(t,a,s)),t}),{}),cancel:e=>{for(let t=0;t<Xo.length;t++)s[Xo[t]].cancel(e)},state:o,steps:s}}const{schedule:Zo,cancel:Jo,state:Qo,steps:ea}=Ko("undefined"!=typeof requestAnimationFrame?requestAnimationFrame:Ho,!0);let ta;function na(){ta=void 0}const ra={now:()=>(void 0===ta&&ra.set(Qo.isProcessing?Qo.timestamp:performance.now()),ta),set:e=>{ta=e,queueMicrotask(na)}};function oa(e,t){-1===e.indexOf(t)&&e.push(t)}function aa(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class sa{constructor(){this.subscriptions=[]}add(e){return oa(this.subscriptions,e),()=>aa(this.subscriptions,e)}notify(e,t,n){const r=this.subscriptions.length;if(r)if(1===r)this.subscriptions[0](e,t,n);else for(let o=0;o<r;o++){const r=this.subscriptions[o];r&&r(e,t,n)}}getSize(){return this.subscriptions.length}clear(){this.subscriptions.length=0}}function ia(e,t){return t?e*(1e3/t):0}const la={current:void 0};class ca{constructor(e,t={}){this.version="11.18.2",this.canTrackVelocity=null,this.events={},this.updateAndNotify=(e,t=!0)=>{const n=ra.now();this.updatedAt!==n&&this.setPrevFrameValue(),this.prev=this.current,this.setCurrent(e),this.current!==this.prev&&this.events.change&&this.events.change.notify(this.current),t&&this.events.renderRequest&&this.events.renderRequest.notify(this.current)},this.hasAnimated=!1,this.setCurrent(e),this.owner=t.owner}setCurrent(e){var t;this.current=e,this.updatedAt=ra.now(),null===this.canTrackVelocity&&void 0!==e&&(this.canTrackVelocity=(t=this.current,!isNaN(parseFloat(t))))}setPrevFrameValue(e=this.current){this.prevFrameValue=e,this.prevUpdatedAt=this.updatedAt}onChange(e){return this.on("change",e)}on(e,t){this.events[e]||(this.events[e]=new sa);const n=this.events[e].add(t);return"change"===e?()=>{n(),Zo.read((()=>{this.events.change.getSize()||this.stop()}))}:n}clearListeners(){for(const e in this.events)this.events[e].clear()}attach(e,t){this.passiveEffect=e,this.stopPassiveEffect=t}set(e,t=!0){t&&this.passiveEffect?this.passiveEffect(e,this.updateAndNotify):this.updateAndNotify(e,t)}setWithVelocity(e,t,n){this.set(t),this.prev=void 0,this.prevFrameValue=e,this.prevUpdatedAt=this.updatedAt-n}jump(e,t=!0){this.updateAndNotify(e),this.prev=e,this.prevUpdatedAt=this.prevFrameValue=void 0,t&&this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}get(){return la.current&&la.current.push(this),this.current}getPrevious(){return this.prev}getVelocity(){const e=ra.now();if(!this.canTrackVelocity||void 0===this.prevFrameValue||e-this.updatedAt>30)return 0;const t=Math.min(this.updatedAt-this.prevUpdatedAt,30);return ia(parseFloat(this.current)-parseFloat(this.prevFrameValue),t)}start(e){return this.stop(),new Promise((t=>{this.hasAnimated=!0,this.animation=e(t),this.events.animationStart&&this.events.animationStart.notify()})).then((()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()}))}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function ua(e,t){return new ca(e,t)}function da(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,ua(n))}const ma=e=>Boolean(e&&e.getVelocity);function pa(e,t){const n=e.getValue("willChange");if(r=n,Boolean(ma(r)&&r.add))return n.add(t);var r}const fa=e=>e.replace(/([a-z])([A-Z])/gu,"$1-$2").toLowerCase(),ha="data-"+fa("framerAppearId");function ga(e){return e.props[ha]}const ya=(e,t,n)=>(((1-3*n+3*t)*e+(3*n-6*t))*e+3*t)*e;function va(e,t,n,r){if(e===t&&n===r)return Ho;return o=>0===o||1===o?o:ya(function(e,t,n,r,o){let a,s,i=0;do{s=t+(n-t)/2,a=ya(s,r,o)-e,a>0?n=s:t=s}while(Math.abs(a)>1e-7&&++i<12);return s}(o,0,1,e,n),t,r)}const xa=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,ba=e=>t=>1-e(1-t),wa=va(.33,1.53,.69,.99),Ea=ba(wa),_a=xa(Ea),ka=e=>(e*=2)<1?.5*Ea(e):.5*(2-Math.pow(2,-10*(e-1))),Sa=e=>1-Math.sin(Math.acos(e)),Na=ba(Sa),Ca=xa(Sa),Pa=e=>/^0[^.\s]+$/u.test(e),Ta=(e,t,n)=>n>t?t:n<e?e:n,ja={test:e=>"number"==typeof e,parse:parseFloat,transform:e=>e},Ra={...ja,transform:e=>Ta(0,1,e)},Fa={...ja,default:1},Aa=e=>Math.round(1e5*e)/1e5,Da=/-?(?:\d+(?:\.\d+)?|\.\d+)/gu,Ma=/^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu,Oa=(e,t)=>n=>Boolean("string"==typeof n&&Ma.test(n)&&n.startsWith(e)||t&&!function(e){return null==e}(n)&&Object.prototype.hasOwnProperty.call(n,t)),La=(e,t,n)=>r=>{if("string"!=typeof r)return r;const[o,a,s,i]=r.match(Da);return{[e]:parseFloat(o),[t]:parseFloat(a),[n]:parseFloat(s),alpha:void 0!==i?parseFloat(i):1}},Ia={...ja,transform:e=>Math.round((e=>Ta(0,255,e))(e))},Ba={test:Oa("rgb","red"),parse:La("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:r=1})=>"rgba("+Ia.transform(e)+", "+Ia.transform(t)+", "+Ia.transform(n)+", "+Aa(Ra.transform(r))+")"},za={test:Oa("#"),parse:function(e){let t="",n="",r="",o="";return e.length>5?(t=e.substring(1,3),n=e.substring(3,5),r=e.substring(5,7),o=e.substring(7,9)):(t=e.substring(1,2),n=e.substring(2,3),r=e.substring(3,4),o=e.substring(4,5),t+=t,n+=n,r+=r,o+=o),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(r,16),alpha:o?parseInt(o,16)/255:1}},transform:Ba.transform},Va=e=>({test:t=>"string"==typeof t&&t.endsWith(e)&&1===t.split(" ").length,parse:parseFloat,transform:t=>`${t}${e}`}),Ua=Va("deg"),Wa=Va("%"),Ha=Va("px"),$a=Va("vh"),qa=Va("vw"),Ya={...Wa,parse:e=>Wa.parse(e)/100,transform:e=>Wa.transform(100*e)},Ga={test:Oa("hsl","hue"),parse:La("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:r=1})=>"hsla("+Math.round(e)+", "+Wa.transform(Aa(t))+", "+Wa.transform(Aa(n))+", "+Aa(Ra.transform(r))+")"},Xa={test:e=>Ba.test(e)||za.test(e)||Ga.test(e),parse:e=>Ba.test(e)?Ba.parse(e):Ga.test(e)?Ga.parse(e):za.parse(e),transform:e=>"string"==typeof e?e:e.hasOwnProperty("red")?Ba.transform(e):Ga.transform(e)},Ka=/(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu,Za="number",Ja="color",Qa=/var\s*\(\s*--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)|#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\)|-?(?:\d+(?:\.\d+)?|\.\d+)/giu;function es(e){const t=e.toString(),n=[],r={color:[],number:[],var:[]},o=[];let a=0;const s=t.replace(Qa,(e=>(Xa.test(e)?(r.color.push(a),o.push(Ja),n.push(Xa.parse(e))):e.startsWith("var(")?(r.var.push(a),o.push("var"),n.push(e)):(r.number.push(a),o.push(Za),n.push(parseFloat(e))),++a,"${}"))).split("${}");return{values:n,split:s,indexes:r,types:o}}function ts(e){return es(e).values}function ns(e){const{split:t,types:n}=es(e),r=t.length;return e=>{let o="";for(let a=0;a<r;a++)if(o+=t[a],void 0!==e[a]){const t=n[a];o+=t===Za?Aa(e[a]):t===Ja?Xa.transform(e[a]):e[a]}return o}}const rs=e=>"number"==typeof e?0:e,os={test:function(e){var t,n;return isNaN(e)&&"string"==typeof e&&((null===(t=e.match(Da))||void 0===t?void 0:t.length)||0)+((null===(n=e.match(Ka))||void 0===n?void 0:n.length)||0)>0},parse:ts,createTransformer:ns,getAnimatableNone:function(e){const t=ts(e);return ns(e)(t.map(rs))}},as=new Set(["brightness","contrast","saturate","opacity"]);function ss(e){const[t,n]=e.slice(0,-1).split("(");if("drop-shadow"===t)return e;const[r]=n.match(Da)||[];if(!r)return e;const o=n.replace(r,"");let a=as.has(t)?1:0;return r!==n&&(a*=100),t+"("+a+o+")"}const is=/\b([a-z-]*)\(.*?\)/gu,ls={...os,getAnimatableNone:e=>{const t=e.match(is);return t?t.map(ss).join(" "):e}},cs={borderWidth:Ha,borderTopWidth:Ha,borderRightWidth:Ha,borderBottomWidth:Ha,borderLeftWidth:Ha,borderRadius:Ha,radius:Ha,borderTopLeftRadius:Ha,borderTopRightRadius:Ha,borderBottomRightRadius:Ha,borderBottomLeftRadius:Ha,width:Ha,maxWidth:Ha,height:Ha,maxHeight:Ha,top:Ha,right:Ha,bottom:Ha,left:Ha,padding:Ha,paddingTop:Ha,paddingRight:Ha,paddingBottom:Ha,paddingLeft:Ha,margin:Ha,marginTop:Ha,marginRight:Ha,marginBottom:Ha,marginLeft:Ha,backgroundPositionX:Ha,backgroundPositionY:Ha},us={rotate:Ua,rotateX:Ua,rotateY:Ua,rotateZ:Ua,scale:Fa,scaleX:Fa,scaleY:Fa,scaleZ:Fa,skew:Ua,skewX:Ua,skewY:Ua,distance:Ha,translateX:Ha,translateY:Ha,translateZ:Ha,x:Ha,y:Ha,z:Ha,perspective:Ha,transformPerspective:Ha,opacity:Ra,originX:Ya,originY:Ya,originZ:Ha},ds={...ja,transform:Math.round},ms={...cs,...us,zIndex:ds,size:Ha,fillOpacity:Ra,strokeOpacity:Ra,numOctaves:ds},ps={...ms,color:Xa,backgroundColor:Xa,outlineColor:Xa,fill:Xa,stroke:Xa,borderColor:Xa,borderTopColor:Xa,borderRightColor:Xa,borderBottomColor:Xa,borderLeftColor:Xa,filter:ls,WebkitFilter:ls},fs=e=>ps[e];function hs(e,t){let n=fs(e);return n!==ls&&(n=os),n.getAnimatableNone?n.getAnimatableNone(t):void 0}const gs=new Set(["auto","none","0"]),ys=e=>e===ja||e===Ha,vs=(e,t)=>parseFloat(e.split(", ")[t]),xs=(e,t)=>(n,{transform:r})=>{if("none"===r||!r)return 0;const o=r.match(/^matrix3d\((.+)\)$/u);if(o)return vs(o[1],t);{const t=r.match(/^matrix\((.+)\)$/u);return t?vs(t[1],e):0}},bs=new Set(["x","y","z"]),ws=$o.filter((e=>!bs.has(e))),Es={width:({x:e},{paddingLeft:t="0",paddingRight:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),height:({y:e},{paddingTop:t="0",paddingBottom:n="0"})=>e.max-e.min-parseFloat(t)-parseFloat(n),top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:xs(4,13),y:xs(5,14)};Es.translateX=Es.x,Es.translateY=Es.y;const _s=new Set;let ks=!1,Ss=!1;function Ns(){if(Ss){const e=Array.from(_s).filter((e=>e.needsMeasurement)),t=new Set(e.map((e=>e.element))),n=new Map;t.forEach((e=>{const t=function(e){const t=[];return ws.forEach((n=>{const r=e.getValue(n);void 0!==r&&(t.push([n,r.get()]),r.set(n.startsWith("scale")?1:0))})),t}(e);t.length&&(n.set(e,t),e.render())})),e.forEach((e=>e.measureInitialState())),t.forEach((e=>{e.render();const t=n.get(e);t&&t.forEach((([t,n])=>{var r;null===(r=e.getValue(t))||void 0===r||r.set(n)}))})),e.forEach((e=>e.measureEndState())),e.forEach((e=>{void 0!==e.suspendedScrollY&&window.scrollTo(0,e.suspendedScrollY)}))}Ss=!1,ks=!1,_s.forEach((e=>e.complete())),_s.clear()}function Cs(){_s.forEach((e=>{e.readKeyframes(),e.needsMeasurement&&(Ss=!0)}))}class Ps{constructor(e,t,n,r,o,a=!1){this.isComplete=!1,this.isAsync=!1,this.needsMeasurement=!1,this.isScheduled=!1,this.unresolvedKeyframes=[...e],this.onComplete=t,this.name=n,this.motionValue=r,this.element=o,this.isAsync=a}scheduleResolve(){this.isScheduled=!0,this.isAsync?(_s.add(this),ks||(ks=!0,Zo.read(Cs),Zo.resolveKeyframes(Ns))):(this.readKeyframes(),this.complete())}readKeyframes(){const{unresolvedKeyframes:e,name:t,element:n,motionValue:r}=this;for(let o=0;o<e.length;o++)if(null===e[o])if(0===o){const o=null==r?void 0:r.get(),a=e[e.length-1];if(void 0!==o)e[0]=o;else if(n&&t){const r=n.readValue(t,a);null!=r&&(e[0]=r)}void 0===e[0]&&(e[0]=a),r&&void 0===o&&r.set(e[0])}else e[o]=e[o-1]}setFinalKeyframe(){}measureInitialState(){}renderEndStyles(){}measureEndState(){}complete(){this.isComplete=!0,this.onComplete(this.unresolvedKeyframes,this.finalKeyframe),_s.delete(this)}cancel(){this.isComplete||(this.isScheduled=!1,_s.delete(this))}resume(){this.isComplete||this.scheduleResolve()}}let Ts=Ho,js=Ho;const Rs=e=>/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(e),Fs=e=>t=>"string"==typeof t&&t.startsWith(e),As=Fs("--"),Ds=Fs("var(--"),Ms=e=>!!Ds(e)&&Os.test(e.split("/*")[0].trim()),Os=/var\(--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)$/iu,Ls=/^var\(--(?:([\w-]+)|([\w-]+), ?([a-zA-Z\d ()%#.,-]+))\)/u;function Is(e,t,n=1){js(n<=4,`Max CSS variable fallback depth detected in property "${e}". This may indicate a circular fallback dependency.`);const[r,o]=function(e){const t=Ls.exec(e);if(!t)return[,];const[,n,r,o]=t;return[`--${null!=n?n:r}`,o]}(e);if(!r)return;const a=window.getComputedStyle(t).getPropertyValue(r);if(a){const e=a.trim();return Rs(e)?parseFloat(e):e}return Ms(o)?Is(o,t,n+1):o}const Bs=e=>t=>t.test(e),zs=[ja,Ha,Wa,Ua,qa,$a,{test:e=>"auto"===e,parse:e=>e}],Vs=e=>zs.find(Bs(e));class Us extends Ps{constructor(e,t,n,r,o){super(e,t,n,r,o,!0)}readKeyframes(){const{unresolvedKeyframes:e,element:t,name:n}=this;if(!t||!t.current)return;super.readKeyframes();for(let n=0;n<e.length;n++){let r=e[n];if("string"==typeof r&&(r=r.trim(),Ms(r))){const o=Is(r,t.current);void 0!==o&&(e[n]=o),n===e.length-1&&(this.finalKeyframe=r)}}if(this.resolveNoneKeyframes(),!Yo.has(n)||2!==e.length)return;const[r,o]=e,a=Vs(r),s=Vs(o);if(a!==s)if(ys(a)&&ys(s))for(let t=0;t<e.length;t++){const n=e[t];"string"==typeof n&&(e[t]=parseFloat(n))}else this.needsMeasurement=!0}resolveNoneKeyframes(){const{unresolvedKeyframes:e,name:t}=this,n=[];for(let t=0;t<e.length;t++)("number"==typeof(r=e[t])?0===r:null===r||"none"===r||"0"===r||Pa(r))&&n.push(t);var r;n.length&&function(e,t,n){let r,o=0;for(;o<e.length&&!r;){const t=e[o];"string"==typeof t&&!gs.has(t)&&es(t).values.length&&(r=e[o]),o++}if(r&&n)for(const o of t)e[o]=hs(n,r)}(e,n,t)}measureInitialState(){const{element:e,unresolvedKeyframes:t,name:n}=this;if(!e||!e.current)return;"height"===n&&(this.suspendedScrollY=window.pageYOffset),this.measuredOrigin=Es[n](e.measureViewportBox(),window.getComputedStyle(e.current)),t[0]=this.measuredOrigin;const r=t[t.length-1];void 0!==r&&e.getValue(n,r).jump(r,!1)}measureEndState(){var e;const{element:t,name:n,unresolvedKeyframes:r}=this;if(!t||!t.current)return;const o=t.getValue(n);o&&o.jump(this.measuredOrigin,!1);const a=r.length-1,s=r[a];r[a]=Es[n](t.measureViewportBox(),window.getComputedStyle(t.current)),null!==s&&void 0===this.finalKeyframe&&(this.finalKeyframe=s),(null===(e=this.removedTransforms)||void 0===e?void 0:e.length)&&this.removedTransforms.forEach((([e,n])=>{t.getValue(e).set(n)})),this.resolveNoneKeyframes()}}const Ws=(e,t)=>!("zIndex"===t||"number"!=typeof e&&!Array.isArray(e)&&("string"!=typeof e||!os.test(e)&&"0"!==e||e.startsWith("url(")));function Hs(e,t,n,r){const o=e[0];if(null===o)return!1;if("display"===t||"visibility"===t)return!0;const a=e[e.length-1],s=Ws(o,t),i=Ws(a,t);return Ts(s===i,`You are trying to animate ${t} from "${o}" to "${a}". ${o} is not an animatable value - to enable this animation set ${o} to a value animatable to ${a} via the \`style\` property.`),!(!s||!i)&&(function(e){const t=e[0];if(1===e.length)return!0;for(let n=0;n<e.length;n++)if(e[n]!==t)return!0}(e)||("spring"===n||xo(n))&&r)}const $s=e=>null!==e;function qs(e,{repeat:t,repeatType:n="loop"},r){const o=e.filter($s),a=t&&"loop"!==n&&t%2==1?0:o.length-1;return a&&void 0!==r?r:o[a]}class Ys{constructor({autoplay:e=!0,delay:t=0,type:n="keyframes",repeat:r=0,repeatDelay:o=0,repeatType:a="loop",...s}){this.isStopped=!1,this.hasAttemptedResolve=!1,this.createdAt=ra.now(),this.options={autoplay:e,delay:t,type:n,repeat:r,repeatDelay:o,repeatType:a,...s},this.updateFinishedPromise()}calcStartTime(){return this.resolvedAt&&this.resolvedAt-this.createdAt>40?this.resolvedAt:this.createdAt}get resolved(){return this._resolved||this.hasAttemptedResolve||(Cs(),Ns()),this._resolved}onKeyframesResolved(e,t){this.resolvedAt=ra.now(),this.hasAttemptedResolve=!0;const{name:n,type:r,velocity:o,delay:a,onComplete:s,onUpdate:i,isGenerator:l}=this.options;if(!l&&!Hs(e,n,r,o)){if(!a)return i&&i(qs(e,this.options,t)),s&&s(),void this.resolveFinishedPromise();this.options.duration=0}const c=this.initPlayback(e,t);!1!==c&&(this._resolved={keyframes:e,finalKeyframe:t,...c},this.onPostResolved())}onPostResolved(){}then(e,t){return this.currentFinishedPromise.then(e,t)}flatten(){this.options.type="keyframes",this.options.ease="linear"}updateFinishedPromise(){this.currentFinishedPromise=new Promise((e=>{this.resolveFinishedPromise=e}))}}const Gs=(e,t,n)=>e+(t-e)*n;function Xs(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function Ks(e,t){return n=>n>0?t:e}const Zs=(e,t,n)=>{const r=e*e,o=n*(t*t-r)+r;return o<0?0:Math.sqrt(o)},Js=[za,Ba,Ga];function Qs(e){const t=(e=>Js.find((t=>t.test(e))))(e);if(Ts(Boolean(t),`'${e}' is not an animatable color. Use the equivalent color code instead.`),!Boolean(t))return!1;let n=t.parse(e);return t===Ga&&(n=function({hue:e,saturation:t,lightness:n,alpha:r}){e/=360,n/=100;let o=0,a=0,s=0;if(t/=100){const r=n<.5?n*(1+t):n+t-n*t,i=2*n-r;o=Xs(i,r,e+1/3),a=Xs(i,r,e),s=Xs(i,r,e-1/3)}else o=a=s=n;return{red:Math.round(255*o),green:Math.round(255*a),blue:Math.round(255*s),alpha:r}}(n)),n}const ei=(e,t)=>{const n=Qs(e),r=Qs(t);if(!n||!r)return Ks(e,t);const o={...n};return e=>(o.red=Zs(n.red,r.red,e),o.green=Zs(n.green,r.green,e),o.blue=Zs(n.blue,r.blue,e),o.alpha=Gs(n.alpha,r.alpha,e),Ba.transform(o))},ti=(e,t)=>n=>t(e(n)),ni=(...e)=>e.reduce(ti),ri=new Set(["none","hidden"]);function oi(e,t){return n=>Gs(e,t,n)}function ai(e){return"number"==typeof e?oi:"string"==typeof e?Ms(e)?Ks:Xa.test(e)?ei:li:Array.isArray(e)?si:"object"==typeof e?Xa.test(e)?ei:ii:Ks}function si(e,t){const n=[...e],r=n.length,o=e.map(((e,n)=>ai(e)(e,t[n])));return e=>{for(let t=0;t<r;t++)n[t]=o[t](e);return n}}function ii(e,t){const n={...e,...t},r={};for(const o in n)void 0!==e[o]&&void 0!==t[o]&&(r[o]=ai(e[o])(e[o],t[o]));return e=>{for(const t in r)n[t]=r[t](e);return n}}const li=(e,t)=>{const n=os.createTransformer(t),r=es(e),o=es(t);return r.indexes.var.length===o.indexes.var.length&&r.indexes.color.length===o.indexes.color.length&&r.indexes.number.length>=o.indexes.number.length?ri.has(e)&&!o.values.length||ri.has(t)&&!r.values.length?function(e,t){return ri.has(e)?n=>n<=0?e:t:n=>n>=1?t:e}(e,t):ni(si(function(e,t){var n;const r=[],o={color:0,var:0,number:0};for(let a=0;a<t.values.length;a++){const s=t.types[a],i=e.indexes[s][o[s]],l=null!==(n=e.values[i])&&void 0!==n?n:0;r[a]=l,o[s]++}return r}(r,o),o.values),n):(Ts(!0,`Complex values '${e}' and '${t}' too different to mix. Ensure all colors are of the same type, and that each contains the same quantity of number and color values. Falling back to instant transition.`),Ks(e,t))};function ci(e,t,n){return"number"==typeof e&&"number"==typeof t&&"number"==typeof n?Gs(e,t,n):ai(e)(e,t)}function ui(e,t,n){const r=Math.max(t-5,0);return ia(n-e(r),t-r)}const di=.01,mi=2,pi=.005,fi=.5;const hi=12;function gi(e,t){return e*Math.sqrt(1-t*t)}const yi=["duration","bounce"],vi=["stiffness","damping","mass"];function xi(e,t){return t.some((t=>void 0!==e[t]))}function bi(e=.3,t=.3){const n="object"!=typeof e?{visualDuration:e,keyframes:[0,1],bounce:t}:e;let{restSpeed:r,restDelta:o}=n;const a=n.keyframes[0],s=n.keyframes[n.keyframes.length-1],i={done:!1,value:a},{stiffness:l,damping:c,mass:u,duration:d,velocity:m,isResolvedFromDuration:p}=function(e){let t={velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1,...e};if(!xi(e,vi)&&xi(e,yi))if(e.visualDuration){const n=e.visualDuration,r=2*Math.PI/(1.2*n),o=r*r,a=2*Ta(.05,1,1-(e.bounce||0))*Math.sqrt(o);t={...t,mass:1,stiffness:o,damping:a}}else{const n=function({duration:e=800,bounce:t=.3,velocity:n=0,mass:r=1}){let o,a;Ts(e<=Uo(10),"Spring duration must be 10 seconds or less");let s=1-t;s=Ta(.05,1,s),e=Ta(.01,10,Wo(e)),s<1?(o=t=>{const r=t*s,o=r*e;return.001-(r-n)/gi(t,s)*Math.exp(-o)},a=t=>{const r=t*s*e,a=r*n+n,i=Math.pow(s,2)*Math.pow(t,2)*e,l=Math.exp(-r),c=gi(Math.pow(t,2),s);return(.001-o(t)>0?-1:1)*((a-i)*l)/c}):(o=t=>Math.exp(-t*e)*((t-n)*e+1)-.001,a=t=>Math.exp(-t*e)*(e*e*(n-t)));const i=function(e,t,n){let r=n;for(let n=1;n<hi;n++)r-=e(r)/t(r);return r}(o,a,5/e);if(e=Uo(e),isNaN(i))return{stiffness:100,damping:10,duration:e};{const t=Math.pow(i,2)*r;return{stiffness:t,damping:2*s*Math.sqrt(r*t),duration:e}}}(e);t={...t,...n,mass:1},t.isResolvedFromDuration=!0}return t}({...n,velocity:-Wo(n.velocity||0)}),f=m||0,h=c/(2*Math.sqrt(l*u)),g=s-a,y=Wo(Math.sqrt(l/u)),v=Math.abs(g)<5;let x;if(r||(r=v?di:mi),o||(o=v?pi:fi),h<1){const e=gi(y,h);x=t=>{const n=Math.exp(-h*y*t);return s-n*((f+h*y*g)/e*Math.sin(e*t)+g*Math.cos(e*t))}}else if(1===h)x=e=>s-Math.exp(-y*e)*(g+(f+y*g)*e);else{const e=y*Math.sqrt(h*h-1);x=t=>{const n=Math.exp(-h*y*t),r=Math.min(e*t,300);return s-n*((f+h*y*g)*Math.sinh(r)+e*g*Math.cosh(r))/e}}const b={calculatedDuration:p&&d||null,next:e=>{const t=x(e);if(p)i.done=e>=d;else{let n=0;h<1&&(n=0===e?Uo(f):ui(x,e,t));const a=Math.abs(n)<=r,l=Math.abs(s-t)<=o;i.done=a&&l}return i.value=i.done?s:t,i},toString:()=>{const e=Math.min(vo(b),yo),t=No((t=>b.next(e*t).value),e,30);return e+"ms "+t}};return b}function wi({keyframes:e,velocity:t=0,power:n=.8,timeConstant:r=325,bounceDamping:o=10,bounceStiffness:a=500,modifyTarget:s,min:i,max:l,restDelta:c=.5,restSpeed:u}){const d=e[0],m={done:!1,value:d},p=e=>void 0===i?l:void 0===l||Math.abs(i-e)<Math.abs(l-e)?i:l;let f=n*t;const h=d+f,g=void 0===s?h:s(h);g!==h&&(f=g-d);const y=e=>-f*Math.exp(-e/r),v=e=>g+y(e),x=e=>{const t=y(e),n=v(e);m.done=Math.abs(t)<=c,m.value=m.done?g:n};let b,w;const E=e=>{(e=>void 0!==i&&e<i||void 0!==l&&e>l)(m.value)&&(b=e,w=bi({keyframes:[m.value,p(m.value)],velocity:ui(v,e,m.value),damping:o,stiffness:a,restDelta:c,restSpeed:u}))};return E(0),{calculatedDuration:null,next:e=>{let t=!1;return w||void 0!==b||(t=!0,x(e),E(e)),void 0!==b&&e>=b?w.next(e-b):(!t&&x(e),m)}}}const Ei=va(.42,0,1,1),_i=va(0,0,.58,1),ki=va(.42,0,.58,1),Si={linear:Ho,easeIn:Ei,easeInOut:ki,easeOut:_i,circIn:Sa,circInOut:Ca,circOut:Na,backIn:Ea,backInOut:_a,backOut:wa,anticipate:ka},Ni=e=>{if(wo(e)){js(4===e.length,"Cubic bezier arrays must contain four numerical values.");const[t,n,r,o]=e;return va(t,n,r,o)}return"string"==typeof e?(js(void 0!==Si[e],`Invalid easing type '${e}'`),Si[e]):e};function Ci({duration:e=300,keyframes:t,times:n,ease:r="easeInOut"}){const o=(e=>Array.isArray(e)&&"number"!=typeof e[0])(r)?r.map(Ni):Ni(r),a={done:!1,value:t[0]},s=function(e,t){return e.map((e=>e*t))}(n&&n.length===t.length?n:function(e){const t=[0];return function(e,t){const n=e[e.length-1];for(let r=1;r<=t;r++){const o=So(0,t,r);e.push(Gs(n,1,o))}}(t,e.length-1),t}(t),e),i=function(e,t,{clamp:n=!0,ease:r,mixer:o}={}){const a=e.length;if(js(a===t.length,"Both input and output ranges must be the same length"),1===a)return()=>t[0];if(2===a&&t[0]===t[1])return()=>t[1];const s=e[0]===e[1];e[0]>e[a-1]&&(e=[...e].reverse(),t=[...t].reverse());const i=function(e,t,n){const r=[],o=n||ci,a=e.length-1;for(let n=0;n<a;n++){let a=o(e[n],e[n+1]);if(t){const e=Array.isArray(t)?t[n]||Ho:t;a=ni(e,a)}r.push(a)}return r}(t,r,o),l=i.length,c=n=>{if(s&&n<e[0])return t[0];let r=0;if(l>1)for(;r<e.length-2&&!(n<e[r+1]);r++);const o=So(e[r],e[r+1],n);return i[r](o)};return n?t=>c(Ta(e[0],e[a-1],t)):c}(s,t,{ease:Array.isArray(o)?o:(l=t,c=o,l.map((()=>c||ki)).splice(0,l.length-1))});var l,c;return{calculatedDuration:e,next:t=>(a.value=i(t),a.done=t>=e,a)}}const Pi=e=>{const t=({timestamp:t})=>e(t);return{start:()=>Zo.update(t,!0),stop:()=>Jo(t),now:()=>Qo.isProcessing?Qo.timestamp:ra.now()}},Ti={decay:wi,inertia:wi,tween:Ci,keyframes:Ci,spring:bi},ji=e=>e/100;class Ri extends Ys{constructor(e){super(e),this.holdTime=null,this.cancelTime=null,this.currentTime=0,this.playbackSpeed=1,this.pendingPlayState="running",this.startTime=null,this.state="idle",this.stop=()=>{if(this.resolver.cancel(),this.isStopped=!0,"idle"===this.state)return;this.teardown();const{onStop:e}=this.options;e&&e()};const{name:t,motionValue:n,element:r,keyframes:o}=this.options,a=(null==r?void 0:r.KeyframeResolver)||Ps;this.resolver=new a(o,((e,t)=>this.onKeyframesResolved(e,t)),t,n,r),this.resolver.scheduleResolve()}flatten(){super.flatten(),this._resolved&&Object.assign(this._resolved,this.initPlayback(this._resolved.keyframes))}initPlayback(e){const{type:t="keyframes",repeat:n=0,repeatDelay:r=0,repeatType:o,velocity:a=0}=this.options,s=xo(t)?t:Ti[t]||Ci;let i,l;s!==Ci&&"number"!=typeof e[0]&&(i=ni(ji,ci(e[0],e[1])),e=[0,100]);const c=s({...this.options,keyframes:e});"mirror"===o&&(l=s({...this.options,keyframes:[...e].reverse(),velocity:-a})),null===c.calculatedDuration&&(c.calculatedDuration=vo(c));const{calculatedDuration:u}=c,d=u+r;return{generator:c,mirroredGenerator:l,mapPercentToKeyframes:i,calculatedDuration:u,resolvedDuration:d,totalDuration:d*(n+1)-r}}onPostResolved(){const{autoplay:e=!0}=this.options;this.play(),"paused"!==this.pendingPlayState&&e?this.state=this.pendingPlayState:this.pause()}tick(e,t=!1){const{resolved:n}=this;if(!n){const{keyframes:e}=this.options;return{done:!0,value:e[e.length-1]}}const{finalKeyframe:r,generator:o,mirroredGenerator:a,mapPercentToKeyframes:s,keyframes:i,calculatedDuration:l,totalDuration:c,resolvedDuration:u}=n;if(null===this.startTime)return o.next(0);const{delay:d,repeat:m,repeatType:p,repeatDelay:f,onUpdate:h}=this.options;this.speed>0?this.startTime=Math.min(this.startTime,e):this.speed<0&&(this.startTime=Math.min(e-c/this.speed,this.startTime)),t?this.currentTime=e:null!==this.holdTime?this.currentTime=this.holdTime:this.currentTime=Math.round(e-this.startTime)*this.speed;const g=this.currentTime-d*(this.speed>=0?1:-1),y=this.speed>=0?g<0:g>c;this.currentTime=Math.max(g,0),"finished"===this.state&&null===this.holdTime&&(this.currentTime=c);let v=this.currentTime,x=o;if(m){const e=Math.min(this.currentTime,c)/u;let t=Math.floor(e),n=e%1;!n&&e>=1&&(n=1),1===n&&t--,t=Math.min(t,m+1),Boolean(t%2)&&("reverse"===p?(n=1-n,f&&(n-=f/u)):"mirror"===p&&(x=a)),v=Ta(0,1,n)*u}const b=y?{done:!1,value:i[0]}:x.next(v);s&&(b.value=s(b.value));let{done:w}=b;y||null===l||(w=this.speed>=0?this.currentTime>=c:this.currentTime<=0);const E=null===this.holdTime&&("finished"===this.state||"running"===this.state&&w);return E&&void 0!==r&&(b.value=qs(i,this.options,r)),h&&h(b.value),E&&this.finish(),b}get duration(){const{resolved:e}=this;return e?Wo(e.calculatedDuration):0}get time(){return Wo(this.currentTime)}set time(e){e=Uo(e),this.currentTime=e,null!==this.holdTime||0===this.speed?this.holdTime=e:this.driver&&(this.startTime=this.driver.now()-e/this.speed)}get speed(){return this.playbackSpeed}set speed(e){const t=this.playbackSpeed!==e;this.playbackSpeed=e,t&&(this.time=Wo(this.currentTime))}play(){if(this.resolver.isScheduled||this.resolver.resume(),!this._resolved)return void(this.pendingPlayState="running");if(this.isStopped)return;const{driver:e=Pi,onPlay:t,startTime:n}=this.options;this.driver||(this.driver=e((e=>this.tick(e)))),t&&t();const r=this.driver.now();null!==this.holdTime?this.startTime=r-this.holdTime:this.startTime?"finished"===this.state&&(this.startTime=r):this.startTime=null!=n?n:this.calcStartTime(),"finished"===this.state&&this.updateFinishedPromise(),this.cancelTime=this.startTime,this.holdTime=null,this.state="running",this.driver.start()}pause(){var e;this._resolved?(this.state="paused",this.holdTime=null!==(e=this.currentTime)&&void 0!==e?e:0):this.pendingPlayState="paused"}complete(){"running"!==this.state&&this.play(),this.pendingPlayState=this.state="finished",this.holdTime=null}finish(){this.teardown(),this.state="finished";const{onComplete:e}=this.options;e&&e()}cancel(){null!==this.cancelTime&&this.tick(this.cancelTime),this.teardown(),this.updateFinishedPromise()}teardown(){this.state="idle",this.stopDriver(),this.resolveFinishedPromise(),this.updateFinishedPromise(),this.startTime=this.cancelTime=null,this.resolver.cancel()}stopDriver(){this.driver&&(this.driver.stop(),this.driver=void 0)}sample(e){return this.startTime=0,this.tick(e,!0)}}const Fi=new Set(["opacity","clipPath","filter","transform"]),Ai=mo((()=>Object.hasOwnProperty.call(Element.prototype,"animate"))),Di={anticipate:ka,backInOut:_a,circInOut:Ca};class Mi extends Ys{constructor(e){super(e);const{name:t,motionValue:n,element:r,keyframes:o}=this.options;this.resolver=new Us(o,((e,t)=>this.onKeyframesResolved(e,t)),t,n,r),this.resolver.scheduleResolve()}initPlayback(e,t){let{duration:n=300,times:r,ease:o,type:a,motionValue:s,name:i,startTime:l}=this.options;if(!s.owner||!s.owner.current)return!1;var c;if("string"==typeof o&&ko()&&o in Di&&(o=Di[o]),xo((c=this.options).type)||"spring"===c.type||!Co(c.ease)){const{onComplete:t,onUpdate:s,motionValue:i,element:l,...c}=this.options,u=function(e,t){const n=new Ri({...t,keyframes:e,repeat:0,delay:0,isGenerator:!0});let r={done:!1,value:e[0]};const o=[];let a=0;for(;!r.done&&a<2e4;)r=n.sample(a),o.push(r.value),a+=10;return{times:void 0,keyframes:o,duration:a-10,ease:"linear"}}(e,c);1===(e=u.keyframes).length&&(e[1]=e[0]),n=u.duration,r=u.times,o=u.ease,a="keyframes"}const u=function(e,t,n,{delay:r=0,duration:o=300,repeat:a=0,repeatType:s="loop",ease:i="easeInOut",times:l}={}){const c={[t]:n};l&&(c.offset=l);const u=jo(i,o);return Array.isArray(u)&&(c.easing=u),e.animate(c,{delay:r,duration:o,easing:Array.isArray(u)?"linear":u,fill:"both",iterations:a+1,direction:"reverse"===s?"alternate":"normal"})}(s.owner.current,i,e,{...this.options,duration:n,times:r,ease:o});return u.startTime=null!=l?l:this.calcStartTime(),this.pendingTimeline?(bo(u,this.pendingTimeline),this.pendingTimeline=void 0):u.onfinish=()=>{const{onComplete:n}=this.options;s.set(qs(e,this.options,t)),n&&n(),this.cancel(),this.resolveFinishedPromise()},{animation:u,duration:n,times:r,type:a,ease:o,keyframes:e}}get duration(){const{resolved:e}=this;if(!e)return 0;const{duration:t}=e;return Wo(t)}get time(){const{resolved:e}=this;if(!e)return 0;const{animation:t}=e;return Wo(t.currentTime||0)}set time(e){const{resolved:t}=this;if(!t)return;const{animation:n}=t;n.currentTime=Uo(e)}get speed(){const{resolved:e}=this;if(!e)return 1;const{animation:t}=e;return t.playbackRate}set speed(e){const{resolved:t}=this;if(!t)return;const{animation:n}=t;n.playbackRate=e}get state(){const{resolved:e}=this;if(!e)return"idle";const{animation:t}=e;return t.playState}get startTime(){const{resolved:e}=this;if(!e)return null;const{animation:t}=e;return t.startTime}attachTimeline(e){if(this._resolved){const{resolved:t}=this;if(!t)return Ho;const{animation:n}=t;bo(n,e)}else this.pendingTimeline=e;return Ho}play(){if(this.isStopped)return;const{resolved:e}=this;if(!e)return;const{animation:t}=e;"finished"===t.playState&&this.updateFinishedPromise(),t.play()}pause(){const{resolved:e}=this;if(!e)return;const{animation:t}=e;t.pause()}stop(){if(this.resolver.cancel(),this.isStopped=!0,"idle"===this.state)return;this.resolveFinishedPromise(),this.updateFinishedPromise();const{resolved:e}=this;if(!e)return;const{animation:t,keyframes:n,duration:r,type:o,ease:a,times:s}=e;if("idle"===t.playState||"finished"===t.playState)return;if(this.time){const{motionValue:e,onUpdate:t,onComplete:i,element:l,...c}=this.options,u=new Ri({...c,keyframes:n,duration:r,type:o,ease:a,times:s,isGenerator:!0}),d=Uo(this.time);e.setWithVelocity(u.sample(d-10).value,u.sample(d).value,10)}const{onStop:i}=this.options;i&&i(),this.cancel()}complete(){const{resolved:e}=this;e&&e.animation.finish()}cancel(){const{resolved:e}=this;e&&e.animation.cancel()}static supports(e){const{motionValue:t,name:n,repeatDelay:r,repeatType:o,damping:a,type:s}=e;if(!(t&&t.owner&&t.owner.current instanceof HTMLElement))return!1;const{onUpdate:i,transformTemplate:l}=t.owner.getProps();return Ai()&&n&&Fi.has(n)&&!i&&!l&&!r&&"mirror"!==o&&0!==a&&"inertia"!==s}}const Oi={type:"spring",stiffness:500,damping:25,restSpeed:10},Li={type:"keyframes",duration:.8},Ii={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},Bi=(e,{keyframes:t})=>t.length>2?Li:qo.has(e)?e.startsWith("scale")?{type:"spring",stiffness:550,damping:0===t[1]?2*Math.sqrt(550):30,restSpeed:10}:Oi:Ii,zi=(e,t,n,r={},o,a)=>s=>{const i=go(r,e)||{},l=i.delay||r.delay||0;let{elapsed:c=0}=r;c-=Uo(l);let u={keyframes:Array.isArray(n)?n:[null,n],ease:"easeOut",velocity:t.getVelocity(),...i,delay:-c,onUpdate:e=>{t.set(e),i.onUpdate&&i.onUpdate(e)},onComplete:()=>{s(),i.onComplete&&i.onComplete()},name:e,motionValue:t,element:a?void 0:o};(function({when:e,delay:t,delayChildren:n,staggerChildren:r,staggerDirection:o,repeat:a,repeatType:s,repeatDelay:i,from:l,elapsed:c,...u}){return!!Object.keys(u).length})(i)||(u={...u,...Bi(e,u)}),u.duration&&(u.duration=Uo(u.duration)),u.repeatDelay&&(u.repeatDelay=Uo(u.repeatDelay)),void 0!==u.from&&(u.keyframes[0]=u.from);let d=!1;if((!1===u.type||0===u.duration&&!u.repeatDelay)&&(u.duration=0,0===u.delay&&(d=!0)),d&&!a&&void 0!==t.get()){const e=qs(u.keyframes,i);if(void 0!==e)return Zo.update((()=>{u.onUpdate(e),u.onComplete()})),new ho([])}return!a&&Mi.supports(u)?new Mi(u):new Ri(u)};function Vi({protectedKeys:e,needsAnimating:t},n){const r=e.hasOwnProperty(n)&&!0!==t[n];return t[n]=!1,r}function Ui(e,t,{delay:n=0,transitionOverride:r,type:o}={}){var a;let{transition:s=e.getDefaultTransition(),transitionEnd:i,...l}=t;r&&(s=r);const c=[],u=o&&e.animationState&&e.animationState.getState()[o];for(const t in l){const r=e.getValue(t,null!==(a=e.latestValues[t])&&void 0!==a?a:null),o=l[t];if(void 0===o||u&&Vi(u,t))continue;const i={delay:n,...go(s||{},t)};let d=!1;if(window.MotionHandoffAnimation){const n=ga(e);if(n){const e=window.MotionHandoffAnimation(n,t,Zo);null!==e&&(i.startTime=e,d=!0)}}pa(e,t),r.start(zi(t,r,o,e.shouldReduceMotion&&Yo.has(t)?{type:!1}:i,e,d));const m=r.animation;m&&c.push(m)}return i&&Promise.all(c).then((()=>{Zo.update((()=>{i&&function(e,t){const n=lo(e,t);let{transitionEnd:r={},transition:o={},...a}=n||{};a={...a,...r};for(const t in a)da(e,t,Go(a[t]))}(e,i)}))})),c}function Wi(e,t,n={}){var r;const o=lo(e,t,"exit"===n.type?null===(r=e.presenceContext)||void 0===r?void 0:r.custom:void 0);let{transition:a=e.getDefaultTransition()||{}}=o||{};n.transitionOverride&&(a=n.transitionOverride);const s=o?()=>Promise.all(Ui(e,o,n)):()=>Promise.resolve(),i=e.variantChildren&&e.variantChildren.size?(r=0)=>{const{delayChildren:o=0,staggerChildren:s,staggerDirection:i}=a;return function(e,t,n=0,r=0,o=1,a){const s=[],i=(e.variantChildren.size-1)*r,l=1===o?(e=0)=>e*r:(e=0)=>i-e*r;return Array.from(e.variantChildren).sort(Hi).forEach(((e,r)=>{e.notify("AnimationStart",t),s.push(Wi(e,t,{...a,delay:n+l(r)}).then((()=>e.notify("AnimationComplete",t))))})),Promise.all(s)}(e,t,o+r,s,i,n)}:()=>Promise.resolve(),{when:l}=a;if(l){const[e,t]="beforeChildren"===l?[s,i]:[i,s];return e().then((()=>t()))}return Promise.all([s(),i(n.delay)])}function Hi(e,t){return e.sortNodePosition(t)}const $i=uo.length;function qi(e){if(!e)return;if(!e.isControllingVariants){const t=e.parent&&qi(e.parent)||{};return void 0!==e.props.initial&&(t.initial=e.props.initial),t}const t={};for(let n=0;n<$i;n++){const r=uo[n],o=e.props[r];(ao(o)||!1===o)&&(t[r]=o)}return t}const Yi=[...co].reverse(),Gi=co.length;function Xi(e){let t=function(e){return t=>Promise.all(t.map((({animation:t,options:n})=>function(e,t,n={}){let r;if(e.notify("AnimationStart",t),Array.isArray(t)){const o=t.map((t=>Wi(e,t,n)));r=Promise.all(o)}else if("string"==typeof t)r=Wi(e,t,n);else{const o="function"==typeof t?lo(e,t,n.custom):t;r=Promise.all(Ui(e,o,n))}return r.then((()=>{e.notify("AnimationComplete",t)}))}(e,t,n))))}(e),n=Ji(),r=!0;const o=t=>(n,r)=>{var o;const a=lo(e,r,"exit"===t?null===(o=e.presenceContext)||void 0===o?void 0:o.custom:void 0);if(a){const{transition:e,transitionEnd:t,...r}=a;n={...n,...r,...t}}return n};function a(a){const{props:s}=e,i=qi(e.parent)||{},l=[],c=new Set;let u={},d=1/0;for(let t=0;t<Gi;t++){const m=Yi[t],p=n[m],f=void 0!==s[m]?s[m]:i[m],h=ao(f),g=m===a?p.isActive:null;!1===g&&(d=t);let y=f===i[m]&&f!==s[m]&&h;if(y&&r&&e.manuallyAnimateOnMount&&(y=!1),p.protectedKeys={...u},!p.isActive&&null===g||!f&&!p.prevProp||no(f)||"boolean"==typeof f)continue;const v=Ki(p.prevProp,f);let x=v||m===a&&p.isActive&&!y&&h||t>d&&h,b=!1;const w=Array.isArray(f)?f:[f];let E=w.reduce(o(m),{});!1===g&&(E={});const{prevResolvedValues:_={}}=p,k={..._,...E},S=t=>{x=!0,c.has(t)&&(b=!0,c.delete(t)),p.needsAnimating[t]=!0;const n=e.getValue(t);n&&(n.liveStyle=!1)};for(const e in k){const t=E[e],n=_[e];if(u.hasOwnProperty(e))continue;let r=!1;r=ro(t)&&ro(n)?!oo(t,n):t!==n,r?null!=t?S(e):c.add(e):void 0!==t&&c.has(e)?S(e):p.protectedKeys[e]=!0}p.prevProp=f,p.prevResolvedValues=E,p.isActive&&(u={...u,...E}),r&&e.blockInitialAnimation&&(x=!1),x&&(!y||!v||b)&&l.push(...w.map((e=>({animation:e,options:{type:m}}))))}if(c.size){const t={};c.forEach((n=>{const r=e.getBaseTarget(n),o=e.getValue(n);o&&(o.liveStyle=!0),t[n]=null!=r?r:null})),l.push({animation:t})}let m=Boolean(l.length);return!r||!1!==s.initial&&s.initial!==s.animate||e.manuallyAnimateOnMount||(m=!1),r=!1,m?t(l):Promise.resolve()}return{animateChanges:a,setActive:function(t,r){var o;if(n[t].isActive===r)return Promise.resolve();null===(o=e.variantChildren)||void 0===o||o.forEach((e=>{var n;return null===(n=e.animationState)||void 0===n?void 0:n.setActive(t,r)})),n[t].isActive=r;const s=a(t);for(const e in n)n[e].protectedKeys={};return s},setAnimateFunction:function(n){t=n(e)},getState:()=>n,reset:()=>{n=Ji(),r=!0}}}function Ki(e,t){return"string"==typeof t?t!==e:!!Array.isArray(t)&&!oo(t,e)}function Zi(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function Ji(){return{animate:Zi(!0),whileInView:Zi(),whileHover:Zi(),whileTap:Zi(),whileDrag:Zi(),whileFocus:Zi(),exit:Zi()}}class Qi{constructor(e){this.isMounted=!1,this.node=e}update(){}}let el=0;const tl={animation:{Feature:class extends Qi{constructor(e){super(e),e.animationState||(e.animationState=Xi(e))}updateAnimationControlsSubscription(){const{animate:e}=this.node.getProps();no(e)&&(this.unmountControls=e.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:e}=this.node.getProps(),{animate:t}=this.node.prevProps||{};e!==t&&this.updateAnimationControlsSubscription()}unmount(){var e;this.node.animationState.reset(),null===(e=this.unmountControls)||void 0===e||e.call(this)}}},exit:{Feature:class extends Qi{constructor(){super(...arguments),this.id=el++}update(){if(!this.node.presenceContext)return;const{isPresent:e,onExitComplete:t}=this.node.presenceContext,{isPresent:n}=this.node.prevPresenceContext||{};if(!this.node.animationState||e===n)return;const r=this.node.animationState.setActive("exit",!e);t&&!e&&r.then((()=>t(this.id)))}mount(){const{register:e}=this.node.presenceContext||{};e&&(this.unmount=e(this.id))}unmount(){}}}};function nl(e,t,n,r={passive:!0}){return e.addEventListener(t,n,r),()=>e.removeEventListener(t,n)}function rl(e){return{point:{x:e.pageX,y:e.pageY}}}function ol(e,t,n,r){return nl(e,t,(e=>t=>Oo(t)&&e(t,rl(t)))(n),r)}const al=(e,t)=>Math.abs(e-t);class sl{constructor(e,t,{transformPagePoint:n,contextWindow:r,dragSnapToOrigin:o=!1}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.updatePoint=()=>{if(!this.lastMoveEvent||!this.lastMoveEventInfo)return;const e=cl(this.lastMoveEventInfo,this.history),t=null!==this.startEvent,n=function(e,t){const n=al(e.x,t.x),r=al(e.y,t.y);return Math.sqrt(n**2+r**2)}(e.offset,{x:0,y:0})>=3;if(!t&&!n)return;const{point:r}=e,{timestamp:o}=Qo;this.history.push({...r,timestamp:o});const{onStart:a,onMove:s}=this.handlers;t||(a&&a(this.lastMoveEvent,e),this.startEvent=this.lastMoveEvent),s&&s(this.lastMoveEvent,e)},this.handlePointerMove=(e,t)=>{this.lastMoveEvent=e,this.lastMoveEventInfo=il(t,this.transformPagePoint),Zo.update(this.updatePoint,!0)},this.handlePointerUp=(e,t)=>{this.end();const{onEnd:n,onSessionEnd:r,resumeAnimation:o}=this.handlers;if(this.dragSnapToOrigin&&o&&o(),!this.lastMoveEvent||!this.lastMoveEventInfo)return;const a=cl("pointercancel"===e.type?this.lastMoveEventInfo:il(t,this.transformPagePoint),this.history);this.startEvent&&n&&n(e,a),r&&r(e,a)},!Oo(e))return;this.dragSnapToOrigin=o,this.handlers=t,this.transformPagePoint=n,this.contextWindow=r||window;const a=il(rl(e),this.transformPagePoint),{point:s}=a,{timestamp:i}=Qo;this.history=[{...s,timestamp:i}];const{onSessionStart:l}=t;l&&l(e,cl(a,this.history)),this.removeListeners=ni(ol(this.contextWindow,"pointermove",this.handlePointerMove),ol(this.contextWindow,"pointerup",this.handlePointerUp),ol(this.contextWindow,"pointercancel",this.handlePointerUp))}updateHandlers(e){this.handlers=e}end(){this.removeListeners&&this.removeListeners(),Jo(this.updatePoint)}}function il(e,t){return t?{point:t(e.point)}:e}function ll(e,t){return{x:e.x-t.x,y:e.y-t.y}}function cl({point:e},t){return{point:e,delta:ll(e,dl(t)),offset:ll(e,ul(t)),velocity:ml(t,.1)}}function ul(e){return e[0]}function dl(e){return e[e.length-1]}function ml(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,r=null;const o=dl(e);for(;n>=0&&(r=e[n],!(o.timestamp-r.timestamp>Uo(t)));)n--;if(!r)return{x:0,y:0};const a=Wo(o.timestamp-r.timestamp);if(0===a)return{x:0,y:0};const s={x:(o.x-r.x)/a,y:(o.y-r.y)/a};return s.x===1/0&&(s.x=0),s.y===1/0&&(s.y=0),s}function pl(e){return e&&"object"==typeof e&&Object.prototype.hasOwnProperty.call(e,"current")}function fl(e){return e.max-e.min}function hl(e,t,n,r=.5){e.origin=r,e.originPoint=Gs(t.min,t.max,e.origin),e.scale=fl(n)/fl(t),e.translate=Gs(n.min,n.max,e.origin)-e.originPoint,(e.scale>=.9999&&e.scale<=1.0001||isNaN(e.scale))&&(e.scale=1),(e.translate>=-.01&&e.translate<=.01||isNaN(e.translate))&&(e.translate=0)}function gl(e,t,n,r){hl(e.x,t.x,n.x,r?r.originX:void 0),hl(e.y,t.y,n.y,r?r.originY:void 0)}function yl(e,t,n){e.min=n.min+t.min,e.max=e.min+fl(t)}function vl(e,t,n){e.min=t.min-n.min,e.max=e.min+fl(t)}function xl(e,t,n){vl(e.x,t.x,n.x),vl(e.y,t.y,n.y)}function bl(e,t,n){return{min:void 0!==t?e.min+t:void 0,max:void 0!==n?e.max+n-(e.max-e.min):void 0}}function wl(e,t){let n=t.min-e.min,r=t.max-e.max;return t.max-t.min<e.max-e.min&&([n,r]=[r,n]),{min:n,max:r}}const El=.35;function _l(e,t,n){return{min:kl(e,t),max:kl(e,n)}}function kl(e,t){return"number"==typeof e?e:e[t]||0}const Sl=()=>({x:{min:0,max:0},y:{min:0,max:0}});function Nl(e){return[e("x"),e("y")]}function Cl({top:e,left:t,right:n,bottom:r}){return{x:{min:t,max:n},y:{min:e,max:r}}}function Pl(e){return void 0===e||1===e}function Tl({scale:e,scaleX:t,scaleY:n}){return!Pl(e)||!Pl(t)||!Pl(n)}function jl(e){return Tl(e)||Rl(e)||e.z||e.rotate||e.rotateX||e.rotateY||e.skewX||e.skewY}function Rl(e){return Fl(e.x)||Fl(e.y)}function Fl(e){return e&&"0%"!==e}function Al(e,t,n){return n+t*(e-n)}function Dl(e,t,n,r,o){return void 0!==o&&(e=Al(e,o,r)),Al(e,n,r)+t}function Ml(e,t=0,n=1,r,o){e.min=Dl(e.min,t,n,r,o),e.max=Dl(e.max,t,n,r,o)}function Ol(e,{x:t,y:n}){Ml(e.x,t.translate,t.scale,t.originPoint),Ml(e.y,n.translate,n.scale,n.originPoint)}const Ll=.999999999999,Il=1.0000000000001;function Bl(e,t){e.min=e.min+t,e.max=e.max+t}function zl(e,t,n,r,o=.5){Ml(e,t,n,Gs(e.min,e.max,o),r)}function Vl(e,t){zl(e.x,t.x,t.scaleX,t.scale,t.originX),zl(e.y,t.y,t.scaleY,t.scale,t.originY)}function Ul(e,t){return Cl(function(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),r=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:r.y,right:r.x}}(e.getBoundingClientRect(),t))}const Wl=({current:e})=>e?e.ownerDocument.defaultView:null,Hl=new WeakMap;class $l{constructor(e){this.openDragLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic={x:{min:0,max:0},y:{min:0,max:0}},this.visualElement=e}start(e,{snapToCursor:t=!1}={}){const{presenceContext:n}=this.visualElement;if(n&&!1===n.isPresent)return;const{dragSnapToOrigin:r}=this.getProps();this.panSession=new sl(e,{onSessionStart:e=>{const{dragSnapToOrigin:n}=this.getProps();n?this.pauseAnimation():this.stopAnimation(),t&&this.snapToCursor(rl(e).point)},onStart:(e,t)=>{const{drag:n,dragPropagation:r,onDragStart:o}=this.getProps();if(n&&!r&&(this.openDragLock&&this.openDragLock(),this.openDragLock="x"===(a=n)||"y"===a?Ro[a]?null:(Ro[a]=!0,()=>{Ro[a]=!1}):Ro.x||Ro.y?null:(Ro.x=Ro.y=!0,()=>{Ro.x=Ro.y=!1}),!this.openDragLock))return;var a;this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),Nl((e=>{let t=this.getAxisMotionValue(e).get()||0;if(Wa.test(t)){const{projection:n}=this.visualElement;if(n&&n.layout){const r=n.layout.layoutBox[e];r&&(t=fl(r)*(parseFloat(t)/100))}}this.originPoint[e]=t})),o&&Zo.postRender((()=>o(e,t))),pa(this.visualElement,"transform");const{animationState:s}=this.visualElement;s&&s.setActive("whileDrag",!0)},onMove:(e,t)=>{const{dragPropagation:n,dragDirectionLock:r,onDirectionLock:o,onDrag:a}=this.getProps();if(!n&&!this.openDragLock)return;const{offset:s}=t;if(r&&null===this.currentDirection)return this.currentDirection=function(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}(s),void(null!==this.currentDirection&&o&&o(this.currentDirection));this.updateAxis("x",t.point,s),this.updateAxis("y",t.point,s),this.visualElement.render(),a&&a(e,t)},onSessionEnd:(e,t)=>this.stop(e,t),resumeAnimation:()=>Nl((e=>{var t;return"paused"===this.getAnimationState(e)&&(null===(t=this.getAxisMotionValue(e).animation)||void 0===t?void 0:t.play())}))},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:r,contextWindow:Wl(this.visualElement)})}stop(e,t){const n=this.isDragging;if(this.cancel(),!n)return;const{velocity:r}=t;this.startAnimation(r);const{onDragEnd:o}=this.getProps();o&&Zo.postRender((()=>o(e,t)))}cancel(){this.isDragging=!1;const{projection:e,animationState:t}=this.visualElement;e&&(e.isAnimationBlocked=!1),this.panSession&&this.panSession.end(),this.panSession=void 0;const{dragPropagation:n}=this.getProps();!n&&this.openDragLock&&(this.openDragLock(),this.openDragLock=null),t&&t.setActive("whileDrag",!1)}updateAxis(e,t,n){const{drag:r}=this.getProps();if(!n||!ql(e,r,this.currentDirection))return;const o=this.getAxisMotionValue(e);let a=this.originPoint[e]+n[e];this.constraints&&this.constraints[e]&&(a=function(e,{min:t,max:n},r){return void 0!==t&&e<t?e=r?Gs(t,e,r.min):Math.max(e,t):void 0!==n&&e>n&&(e=r?Gs(n,e,r.max):Math.min(e,n)),e}(a,this.constraints[e],this.elastic[e])),o.set(a)}resolveConstraints(){var e;const{dragConstraints:t,dragElastic:n}=this.getProps(),r=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):null===(e=this.visualElement.projection)||void 0===e?void 0:e.layout,o=this.constraints;t&&pl(t)?this.constraints||(this.constraints=this.resolveRefConstraints()):this.constraints=!(!t||!r)&&function(e,{top:t,left:n,bottom:r,right:o}){return{x:bl(e.x,n,o),y:bl(e.y,t,r)}}(r.layoutBox,t),this.elastic=function(e=El){return!1===e?e=0:!0===e&&(e=El),{x:_l(e,"left","right"),y:_l(e,"top","bottom")}}(n),o!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&Nl((e=>{!1!==this.constraints&&this.getAxisMotionValue(e)&&(this.constraints[e]=function(e,t){const n={};return void 0!==t.min&&(n.min=t.min-e.min),void 0!==t.max&&(n.max=t.max-e.min),n}(r.layoutBox[e],this.constraints[e]))}))}resolveRefConstraints(){const{dragConstraints:e,onMeasureDragConstraints:t}=this.getProps();if(!e||!pl(e))return!1;const n=e.current;js(null!==n,"If `dragConstraints` is set as a React ref, that ref must be passed to another component's `ref` prop.");const{projection:r}=this.visualElement;if(!r||!r.layout)return!1;const o=function(e,t,n){const r=Ul(e,n),{scroll:o}=t;return o&&(Bl(r.x,o.offset.x),Bl(r.y,o.offset.y)),r}(n,r.root,this.visualElement.getTransformPagePoint());let a=function(e,t){return{x:wl(e.x,t.x),y:wl(e.y,t.y)}}(r.layout.layoutBox,o);if(t){const e=t(function({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}(a));this.hasMutatedConstraints=!!e,e&&(a=Cl(e))}return a}startAnimation(e){const{drag:t,dragMomentum:n,dragElastic:r,dragTransition:o,dragSnapToOrigin:a,onDragTransitionEnd:s}=this.getProps(),i=this.constraints||{},l=Nl((s=>{if(!ql(s,t,this.currentDirection))return;let l=i&&i[s]||{};a&&(l={min:0,max:0});const c=r?200:1e6,u=r?40:1e7,d={type:"inertia",velocity:n?e[s]:0,bounceStiffness:c,bounceDamping:u,timeConstant:750,restDelta:1,restSpeed:10,...o,...l};return this.startAxisValueAnimation(s,d)}));return Promise.all(l).then(s)}startAxisValueAnimation(e,t){const n=this.getAxisMotionValue(e);return pa(this.visualElement,e),n.start(zi(e,n,0,t,this.visualElement,!1))}stopAnimation(){Nl((e=>this.getAxisMotionValue(e).stop()))}pauseAnimation(){Nl((e=>{var t;return null===(t=this.getAxisMotionValue(e).animation)||void 0===t?void 0:t.pause()}))}getAnimationState(e){var t;return null===(t=this.getAxisMotionValue(e).animation)||void 0===t?void 0:t.state}getAxisMotionValue(e){const t=`_drag${e.toUpperCase()}`,n=this.visualElement.getProps();return n[t]||this.visualElement.getValue(e,(n.initial?n.initial[e]:void 0)||0)}snapToCursor(e){Nl((t=>{const{drag:n}=this.getProps();if(!ql(t,n,this.currentDirection))return;const{projection:r}=this.visualElement,o=this.getAxisMotionValue(t);if(r&&r.layout){const{min:n,max:a}=r.layout.layoutBox[t];o.set(e[t]-Gs(n,a,.5))}}))}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:e,dragConstraints:t}=this.getProps(),{projection:n}=this.visualElement;if(!pl(t)||!n||!this.constraints)return;this.stopAnimation();const r={x:0,y:0};Nl((e=>{const t=this.getAxisMotionValue(e);if(t&&!1!==this.constraints){const n=t.get();r[e]=function(e,t){let n=.5;const r=fl(e),o=fl(t);return o>r?n=So(t.min,t.max-r,e.min):r>o&&(n=So(e.min,e.max-o,t.min)),Ta(0,1,n)}({min:n,max:n},this.constraints[e])}}));const{transformTemplate:o}=this.visualElement.getProps();this.visualElement.current.style.transform=o?o({},""):"none",n.root&&n.root.updateScroll(),n.updateLayout(),this.resolveConstraints(),Nl((t=>{if(!ql(t,e,null))return;const n=this.getAxisMotionValue(t),{min:o,max:a}=this.constraints[t];n.set(Gs(o,a,r[t]))}))}addListeners(){if(!this.visualElement.current)return;Hl.set(this.visualElement,this);const e=ol(this.visualElement.current,"pointerdown",(e=>{const{drag:t,dragListener:n=!0}=this.getProps();t&&n&&this.start(e)})),t=()=>{const{dragConstraints:e}=this.getProps();pl(e)&&e.current&&(this.constraints=this.resolveRefConstraints())},{projection:n}=this.visualElement,r=n.addEventListener("measure",t);n&&!n.layout&&(n.root&&n.root.updateScroll(),n.updateLayout()),Zo.read(t);const o=nl(window,"resize",(()=>this.scalePositionWithinConstraints())),a=n.addEventListener("didUpdate",(({delta:e,hasLayoutChanged:t})=>{this.isDragging&&t&&(Nl((t=>{const n=this.getAxisMotionValue(t);n&&(this.originPoint[t]+=e[t].translate,n.set(n.get()+e[t].translate))})),this.visualElement.render())}));return()=>{o(),e(),r(),a&&a()}}getProps(){const e=this.visualElement.getProps(),{drag:t=!1,dragDirectionLock:n=!1,dragPropagation:r=!1,dragConstraints:o=!1,dragElastic:a=El,dragMomentum:s=!0}=e;return{...e,drag:t,dragDirectionLock:n,dragPropagation:r,dragConstraints:o,dragElastic:a,dragMomentum:s}}}function ql(e,t,n){return!(!0!==t&&t!==e||null!==n&&n!==e)}const Yl=e=>(t,n)=>{e&&Zo.postRender((()=>e(t,n)))},Gl=(0,i.createContext)(null);function Xl(e=!0){const t=(0,i.useContext)(Gl);if(null===t)return[!0,null];const{isPresent:n,onExitComplete:r,register:o}=t,a=(0,i.useId)();(0,i.useEffect)((()=>{e&&o(a)}),[e]);const s=(0,i.useCallback)((()=>e&&r&&r(a)),[a,r,e]);return!n&&r?[!1,s]:[!0]}const Kl=(0,i.createContext)({}),Zl=(0,i.createContext)({}),Jl={hasAnimatedSinceResize:!0,hasEverUpdated:!1};function Ql(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const ec={correct:(e,t)=>{if(!t.target)return e;if("string"==typeof e){if(!Ha.test(e))return e;e=parseFloat(e)}return`${Ql(e,t.target.x)}% ${Ql(e,t.target.y)}%`}},tc={correct:(e,{treeScale:t,projectionDelta:n})=>{const r=e,o=os.parse(e);if(o.length>5)return r;const a=os.createTransformer(e),s="number"!=typeof o[0]?1:0,i=n.x.scale*t.x,l=n.y.scale*t.y;o[0+s]/=i,o[1+s]/=l;const c=Gs(i,l,.5);return"number"==typeof o[2+s]&&(o[2+s]/=c),"number"==typeof o[3+s]&&(o[3+s]/=c),a(o)}},nc={},{schedule:rc,cancel:oc}=Ko(queueMicrotask,!1);class ac extends i.Component{componentDidMount(){const{visualElement:e,layoutGroup:t,switchLayoutGroup:n,layoutId:r}=this.props,{projection:o}=e;var a;a=ic,Object.assign(nc,a),o&&(t.group&&t.group.add(o),n&&n.register&&r&&n.register(o),o.root.didUpdate(),o.addEventListener("animationComplete",(()=>{this.safeToRemove()})),o.setOptions({...o.options,onExitComplete:()=>this.safeToRemove()})),Jl.hasEverUpdated=!0}getSnapshotBeforeUpdate(e){const{layoutDependency:t,visualElement:n,drag:r,isPresent:o}=this.props,a=n.projection;return a?(a.isPresent=o,r||e.layoutDependency!==t||void 0===t?a.willUpdate():this.safeToRemove(),e.isPresent!==o&&(o?a.promote():a.relegate()||Zo.postRender((()=>{const e=a.getStack();e&&e.members.length||this.safeToRemove()}))),null):null}componentDidUpdate(){const{projection:e}=this.props.visualElement;e&&(e.root.didUpdate(),rc.postRender((()=>{!e.currentAnimation&&e.isLead()&&this.safeToRemove()})))}componentWillUnmount(){const{visualElement:e,layoutGroup:t,switchLayoutGroup:n}=this.props,{projection:r}=e;r&&(r.scheduleCheckAfterUnmount(),t&&t.group&&t.group.remove(r),n&&n.deregister&&n.deregister(r))}safeToRemove(){const{safeToRemove:e}=this.props;e&&e()}render(){return null}}function sc(e){const[t,n]=Xl(),r=(0,i.useContext)(Kl);return(0,L.jsx)(ac,{...e,layoutGroup:r,switchLayoutGroup:(0,i.useContext)(Zl),isPresent:t,safeToRemove:n})}const ic={borderRadius:{...ec,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:ec,borderTopRightRadius:ec,borderBottomLeftRadius:ec,borderBottomRightRadius:ec,boxShadow:tc},lc=(e,t)=>e.depth-t.depth;class cc{constructor(){this.children=[],this.isDirty=!1}add(e){oa(this.children,e),this.isDirty=!0}remove(e){aa(this.children,e),this.isDirty=!0}forEach(e){this.isDirty&&this.children.sort(lc),this.isDirty=!1,this.children.forEach(e)}}function uc(e){const t=ma(e)?e.get():e;return(e=>Boolean(e&&"object"==typeof e&&e.mix&&e.toValue))(t)?t.toValue():t}const dc=["TopLeft","TopRight","BottomLeft","BottomRight"],mc=dc.length,pc=e=>"string"==typeof e?parseFloat(e):e,fc=e=>"number"==typeof e||Ha.test(e);function hc(e,t){return void 0!==e[t]?e[t]:e.borderRadius}const gc=vc(0,.5,Na),yc=vc(.5,.95,Ho);function vc(e,t,n){return r=>r<e?0:r>t?1:n(So(e,t,r))}function xc(e,t){e.min=t.min,e.max=t.max}function bc(e,t){xc(e.x,t.x),xc(e.y,t.y)}function wc(e,t){e.translate=t.translate,e.scale=t.scale,e.originPoint=t.originPoint,e.origin=t.origin}function Ec(e,t,n,r,o){return e=Al(e-=t,1/n,r),void 0!==o&&(e=Al(e,1/o,r)),e}function _c(e,t,[n,r,o],a,s){!function(e,t=0,n=1,r=.5,o,a=e,s=e){if(Wa.test(t)&&(t=parseFloat(t),t=Gs(s.min,s.max,t/100)-s.min),"number"!=typeof t)return;let i=Gs(a.min,a.max,r);e===a&&(i-=t),e.min=Ec(e.min,t,n,i,o),e.max=Ec(e.max,t,n,i,o)}(e,t[n],t[r],t[o],t.scale,a,s)}const kc=["x","scaleX","originX"],Sc=["y","scaleY","originY"];function Nc(e,t,n,r){_c(e.x,t,kc,n?n.x:void 0,r?r.x:void 0),_c(e.y,t,Sc,n?n.y:void 0,r?r.y:void 0)}function Cc(e){return 0===e.translate&&1===e.scale}function Pc(e){return Cc(e.x)&&Cc(e.y)}function Tc(e,t){return e.min===t.min&&e.max===t.max}function jc(e,t){return Math.round(e.min)===Math.round(t.min)&&Math.round(e.max)===Math.round(t.max)}function Rc(e,t){return jc(e.x,t.x)&&jc(e.y,t.y)}function Fc(e){return fl(e.x)/fl(e.y)}function Ac(e,t){return e.translate===t.translate&&e.scale===t.scale&&e.originPoint===t.originPoint}class Dc{constructor(){this.members=[]}add(e){oa(this.members,e),e.scheduleRender()}remove(e){if(aa(this.members,e),e===this.prevLead&&(this.prevLead=void 0),e===this.lead){const e=this.members[this.members.length-1];e&&this.promote(e)}}relegate(e){const t=this.members.findIndex((t=>e===t));if(0===t)return!1;let n;for(let e=t;e>=0;e--){const t=this.members[e];if(!1!==t.isPresent){n=t;break}}return!!n&&(this.promote(n),!0)}promote(e,t){const n=this.lead;if(e!==n&&(this.prevLead=n,this.lead=e,e.show(),n)){n.instance&&n.scheduleRender(),e.scheduleRender(),e.resumeFrom=n,t&&(e.resumeFrom.preserveOpacity=!0),n.snapshot&&(e.snapshot=n.snapshot,e.snapshot.latestValues=n.animationValues||n.latestValues),e.root&&e.root.isUpdating&&(e.isLayoutDirty=!0);const{crossfade:r}=e.options;!1===r&&n.hide()}}exitAnimationComplete(){this.members.forEach((e=>{const{options:t,resumingFrom:n}=e;t.onExitComplete&&t.onExitComplete(),n&&n.options.onExitComplete&&n.options.onExitComplete()}))}scheduleRender(){this.members.forEach((e=>{e.instance&&e.scheduleRender(!1)}))}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}const Mc={type:"projectionFrame",totalNodes:0,resolvedTargetDeltas:0,recalculatedProjection:0},Oc="undefined"!=typeof window&&void 0!==window.MotionDebug,Lc=["","X","Y","Z"],Ic={visibility:"hidden"};let Bc=0;function zc(e,t,n,r){const{latestValues:o}=t;o[e]&&(n[e]=o[e],t.setStaticValue(e,0),r&&(r[e]=0))}function Vc(e){if(e.hasCheckedOptimisedAppear=!0,e.root===e)return;const{visualElement:t}=e.options;if(!t)return;const n=ga(t);if(window.MotionHasOptimisedAnimation(n,"transform")){const{layout:t,layoutId:r}=e.options;window.MotionCancelOptimisedAnimation(n,"transform",Zo,!(t||r))}const{parent:r}=e;r&&!r.hasCheckedOptimisedAppear&&Vc(r)}function Uc({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:r,resetTransform:o}){return class{constructor(e={},n=(null==t?void 0:t())){this.id=Bc++,this.animationId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.hasCheckedOptimisedAppear=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.updateScheduled=!1,this.scheduleUpdate=()=>this.update(),this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.projectionUpdateScheduled=!1,Oc&&(Mc.totalNodes=Mc.resolvedTargetDeltas=Mc.recalculatedProjection=0),this.nodes.forEach($c),this.nodes.forEach(Jc),this.nodes.forEach(Qc),this.nodes.forEach(qc),Oc&&window.MotionDebug.record(Mc)},this.resolvedRelativeTargetAt=0,this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=e,this.root=n?n.root||n:this,this.path=n?[...n.path,n]:[],this.parent=n,this.depth=n?n.depth+1:0;for(let e=0;e<this.path.length;e++)this.path[e].shouldResetTransform=!0;this.root===this&&(this.nodes=new cc)}addEventListener(e,t){return this.eventHandlers.has(e)||this.eventHandlers.set(e,new sa),this.eventHandlers.get(e).add(t)}notifyListeners(e,...t){const n=this.eventHandlers.get(e);n&&n.notify(...t)}hasListeners(e){return this.eventHandlers.has(e)}mount(t,n=this.root.hasTreeAnimated){if(this.instance)return;var r;this.isSVG=(r=t)instanceof SVGElement&&"svg"!==r.tagName,this.instance=t;const{layoutId:o,layout:a,visualElement:s}=this.options;if(s&&!s.current&&s.mount(t),this.root.nodes.add(this),this.parent&&this.parent.children.add(this),n&&(a||o)&&(this.isLayoutDirty=!0),e){let n;const r=()=>this.root.updateBlockedByResize=!1;e(t,(()=>{this.root.updateBlockedByResize=!0,n&&n(),n=function(e,t){const n=ra.now(),r=({timestamp:o})=>{const a=o-n;a>=t&&(Jo(r),e(a-t))};return Zo.read(r,!0),()=>Jo(r)}(r,250),Jl.hasAnimatedSinceResize&&(Jl.hasAnimatedSinceResize=!1,this.nodes.forEach(Zc))}))}o&&this.root.registerSharedNode(o,this),!1!==this.options.animate&&s&&(o||a)&&this.addEventListener("didUpdate",(({delta:e,hasLayoutChanged:t,hasRelativeTargetChanged:n,layout:r})=>{if(this.isTreeAnimationBlocked())return this.target=void 0,void(this.relativeTarget=void 0);const o=this.options.transition||s.getDefaultTransition()||au,{onLayoutAnimationStart:a,onLayoutAnimationComplete:i}=s.getProps(),l=!this.targetLayout||!Rc(this.targetLayout,r)||n,c=!t&&n;if(this.options.layoutRoot||this.resumeFrom&&this.resumeFrom.instance||c||t&&(l||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(e,c);const t={...go(o,"layout"),onPlay:a,onComplete:i};(s.shouldReduceMotion||this.options.layoutRoot)&&(t.delay=0,t.type=!1),this.startAnimation(t)}else t||Zc(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=r}))}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);const e=this.getStack();e&&e.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,Jo(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){this.isUpdateBlocked()||(this.isUpdating=!0,this.nodes&&this.nodes.forEach(eu),this.animationId++)}getTransformTemplate(){const{visualElement:e}=this.options;return e&&e.getProps().transformTemplate}willUpdate(e=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked())return void(this.options.onExitComplete&&this.options.onExitComplete());if(window.MotionCancelOptimisedAnimation&&!this.hasCheckedOptimisedAppear&&Vc(this),!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let e=0;e<this.path.length;e++){const t=this.path[e];t.shouldResetTransform=!0,t.updateScroll("snapshot"),t.options.layoutRoot&&t.willUpdate(!1)}const{layoutId:t,layout:n}=this.options;if(void 0===t&&!n)return;const r=this.getTransformTemplate();this.prevTransformTemplateValue=r?r(this.latestValues,""):void 0,this.updateSnapshot(),e&&this.notifyListeners("willUpdate")}update(){if(this.updateScheduled=!1,this.isUpdateBlocked())return this.unblockUpdate(),this.clearAllSnapshots(),void this.nodes.forEach(Gc);this.isUpdating||this.nodes.forEach(Xc),this.isUpdating=!1,this.nodes.forEach(Kc),this.nodes.forEach(Wc),this.nodes.forEach(Hc),this.clearAllSnapshots();const e=ra.now();Qo.delta=Ta(0,1e3/60,e-Qo.timestamp),Qo.timestamp=e,Qo.isProcessing=!0,ea.update.process(Qo),ea.preRender.process(Qo),ea.render.process(Qo),Qo.isProcessing=!1}didUpdate(){this.updateScheduled||(this.updateScheduled=!0,rc.read(this.scheduleUpdate))}clearAllSnapshots(){this.nodes.forEach(Yc),this.sharedNodes.forEach(tu)}scheduleUpdateProjection(){this.projectionUpdateScheduled||(this.projectionUpdateScheduled=!0,Zo.preRender(this.updateProjection,!1,!0))}scheduleCheckAfterUnmount(){Zo.postRender((()=>{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()}))}updateSnapshot(){!this.snapshot&&this.instance&&(this.snapshot=this.measure())}updateLayout(){if(!this.instance)return;if(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead()||this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let e=0;e<this.path.length;e++)this.path[e].updateScroll();const e=this.layout;this.layout=this.measure(!1),this.layoutCorrected={x:{min:0,max:0},y:{min:0,max:0}},this.isLayoutDirty=!1,this.projectionDelta=void 0,this.notifyListeners("measure",this.layout.layoutBox);const{visualElement:t}=this.options;t&&t.notify("LayoutMeasure",this.layout.layoutBox,e?e.layoutBox:void 0)}updateScroll(e="measure"){let t=Boolean(this.options.layoutScroll&&this.instance);if(this.scroll&&this.scroll.animationId===this.root.animationId&&this.scroll.phase===e&&(t=!1),t){const t=r(this.instance);this.scroll={animationId:this.root.animationId,phase:e,isRoot:t,offset:n(this.instance),wasRoot:this.scroll?this.scroll.isRoot:t}}}resetTransform(){if(!o)return;const e=this.isLayoutDirty||this.shouldResetTransform||this.options.alwaysMeasureLayout,t=this.projectionDelta&&!Pc(this.projectionDelta),n=this.getTransformTemplate(),r=n?n(this.latestValues,""):void 0,a=r!==this.prevTransformTemplateValue;e&&(t||jl(this.latestValues)||a)&&(o(this.instance,r),this.shouldResetTransform=!1,this.scheduleRender())}measure(e=!0){const t=this.measurePageBox();let n=this.removeElementScroll(t);var r;return e&&(n=this.removeTransform(n)),lu((r=n).x),lu(r.y),{animationId:this.root.animationId,measuredBox:t,layoutBox:n,latestValues:{},source:this.id}}measurePageBox(){var e;const{visualElement:t}=this.options;if(!t)return{x:{min:0,max:0},y:{min:0,max:0}};const n=t.measureViewportBox();if(!(null===(e=this.scroll)||void 0===e?void 0:e.wasRoot)&&!this.path.some(uu)){const{scroll:e}=this.root;e&&(Bl(n.x,e.offset.x),Bl(n.y,e.offset.y))}return n}removeElementScroll(e){var t;const n={x:{min:0,max:0},y:{min:0,max:0}};if(bc(n,e),null===(t=this.scroll)||void 0===t?void 0:t.wasRoot)return n;for(let t=0;t<this.path.length;t++){const r=this.path[t],{scroll:o,options:a}=r;r!==this.root&&o&&a.layoutScroll&&(o.wasRoot&&bc(n,e),Bl(n.x,o.offset.x),Bl(n.y,o.offset.y))}return n}applyTransform(e,t=!1){const n={x:{min:0,max:0},y:{min:0,max:0}};bc(n,e);for(let e=0;e<this.path.length;e++){const r=this.path[e];!t&&r.options.layoutScroll&&r.scroll&&r!==r.root&&Vl(n,{x:-r.scroll.offset.x,y:-r.scroll.offset.y}),jl(r.latestValues)&&Vl(n,r.latestValues)}return jl(this.latestValues)&&Vl(n,this.latestValues),n}removeTransform(e){const t={x:{min:0,max:0},y:{min:0,max:0}};bc(t,e);for(let e=0;e<this.path.length;e++){const n=this.path[e];if(!n.instance)continue;if(!jl(n.latestValues))continue;Tl(n.latestValues)&&n.updateSnapshot();const r={x:{min:0,max:0},y:{min:0,max:0}};bc(r,n.measurePageBox()),Nc(t,n.latestValues,n.snapshot?n.snapshot.layoutBox:void 0,r)}return jl(this.latestValues)&&Nc(t,this.latestValues),t}setTargetDelta(e){this.targetDelta=e,this.root.scheduleUpdateProjection(),this.isProjectionDirty=!0}setOptions(e){this.options={...this.options,...e,crossfade:void 0===e.crossfade||e.crossfade}}clearMeasurements(){this.scroll=void 0,this.layout=void 0,this.snapshot=void 0,this.prevTransformTemplateValue=void 0,this.targetDelta=void 0,this.target=void 0,this.isLayoutDirty=!1}forceRelativeParentToResolveTarget(){this.relativeParent&&this.relativeParent.resolvedRelativeTargetAt!==Qo.timestamp&&this.relativeParent.resolveTargetDelta(!0)}resolveTargetDelta(e=!1){var t;const n=this.getLead();this.isProjectionDirty||(this.isProjectionDirty=n.isProjectionDirty),this.isTransformDirty||(this.isTransformDirty=n.isTransformDirty),this.isSharedProjectionDirty||(this.isSharedProjectionDirty=n.isSharedProjectionDirty);const r=Boolean(this.resumingFrom)||this!==n;if(!(e||r&&this.isSharedProjectionDirty||this.isProjectionDirty||(null===(t=this.parent)||void 0===t?void 0:t.isProjectionDirty)||this.attemptToResolveRelativeTarget||this.root.updateBlockedByResize))return;const{layout:o,layoutId:a}=this.options;if(this.layout&&(o||a)){if(this.resolvedRelativeTargetAt=Qo.timestamp,!this.targetDelta&&!this.relativeTarget){const e=this.getClosestProjectingParent();e&&e.layout&&1!==this.animationProgress?(this.relativeParent=e,this.forceRelativeParentToResolveTarget(),this.relativeTarget={x:{min:0,max:0},y:{min:0,max:0}},this.relativeTargetOrigin={x:{min:0,max:0},y:{min:0,max:0}},xl(this.relativeTargetOrigin,this.layout.layoutBox,e.layout.layoutBox),bc(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}if(this.relativeTarget||this.targetDelta){var s,i,l;if(this.target||(this.target={x:{min:0,max:0},y:{min:0,max:0}},this.targetWithTransforms={x:{min:0,max:0},y:{min:0,max:0}}),this.relativeTarget&&this.relativeTargetOrigin&&this.relativeParent&&this.relativeParent.target?(this.forceRelativeParentToResolveTarget(),s=this.target,i=this.relativeTarget,l=this.relativeParent.target,yl(s.x,i.x,l.x),yl(s.y,i.y,l.y)):this.targetDelta?(Boolean(this.resumingFrom)?this.target=this.applyTransform(this.layout.layoutBox):bc(this.target,this.layout.layoutBox),Ol(this.target,this.targetDelta)):bc(this.target,this.layout.layoutBox),this.attemptToResolveRelativeTarget){this.attemptToResolveRelativeTarget=!1;const e=this.getClosestProjectingParent();e&&Boolean(e.resumingFrom)===Boolean(this.resumingFrom)&&!e.options.layoutScroll&&e.target&&1!==this.animationProgress?(this.relativeParent=e,this.forceRelativeParentToResolveTarget(),this.relativeTarget={x:{min:0,max:0},y:{min:0,max:0}},this.relativeTargetOrigin={x:{min:0,max:0},y:{min:0,max:0}},xl(this.relativeTargetOrigin,this.target,e.target),bc(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}Oc&&Mc.resolvedTargetDeltas++}}}getClosestProjectingParent(){if(this.parent&&!Tl(this.parent.latestValues)&&!Rl(this.parent.latestValues))return this.parent.isProjecting()?this.parent:this.parent.getClosestProjectingParent()}isProjecting(){return Boolean((this.relativeTarget||this.targetDelta||this.options.layoutRoot)&&this.layout)}calcProjection(){var e;const t=this.getLead(),n=Boolean(this.resumingFrom)||this!==t;let r=!0;if((this.isProjectionDirty||(null===(e=this.parent)||void 0===e?void 0:e.isProjectionDirty))&&(r=!1),n&&(this.isSharedProjectionDirty||this.isTransformDirty)&&(r=!1),this.resolvedRelativeTargetAt===Qo.timestamp&&(r=!1),r)return;const{layout:o,layoutId:a}=this.options;if(this.isTreeAnimating=Boolean(this.parent&&this.parent.isTreeAnimating||this.currentAnimation||this.pendingAnimation),this.isTreeAnimating||(this.targetDelta=this.relativeTarget=void 0),!this.layout||!o&&!a)return;bc(this.layoutCorrected,this.layout.layoutBox);const s=this.treeScale.x,i=this.treeScale.y;!function(e,t,n,r=!1){const o=n.length;if(!o)return;let a,s;t.x=t.y=1;for(let i=0;i<o;i++){a=n[i],s=a.projectionDelta;const{visualElement:o}=a.options;o&&o.props.style&&"contents"===o.props.style.display||(r&&a.options.layoutScroll&&a.scroll&&a!==a.root&&Vl(e,{x:-a.scroll.offset.x,y:-a.scroll.offset.y}),s&&(t.x*=s.x.scale,t.y*=s.y.scale,Ol(e,s)),r&&jl(a.latestValues)&&Vl(e,a.latestValues))}t.x<Il&&t.x>Ll&&(t.x=1),t.y<Il&&t.y>Ll&&(t.y=1)}(this.layoutCorrected,this.treeScale,this.path,n),!t.layout||t.target||1===this.treeScale.x&&1===this.treeScale.y||(t.target=t.layout.layoutBox,t.targetWithTransforms={x:{min:0,max:0},y:{min:0,max:0}});const{target:l}=t;l?(this.projectionDelta&&this.prevProjectionDelta?(wc(this.prevProjectionDelta.x,this.projectionDelta.x),wc(this.prevProjectionDelta.y,this.projectionDelta.y)):this.createProjectionDeltas(),gl(this.projectionDelta,this.layoutCorrected,l,this.latestValues),this.treeScale.x===s&&this.treeScale.y===i&&Ac(this.projectionDelta.x,this.prevProjectionDelta.x)&&Ac(this.projectionDelta.y,this.prevProjectionDelta.y)||(this.hasProjected=!0,this.scheduleRender(),this.notifyListeners("projectionUpdate",l)),Oc&&Mc.recalculatedProjection++):this.prevProjectionDelta&&(this.createProjectionDeltas(),this.scheduleRender())}hide(){this.isVisible=!1}show(){this.isVisible=!0}scheduleRender(e=!0){var t;if(null===(t=this.options.visualElement)||void 0===t||t.scheduleRender(),e){const e=this.getStack();e&&e.scheduleRender()}this.resumingFrom&&!this.resumingFrom.instance&&(this.resumingFrom=void 0)}createProjectionDeltas(){this.prevProjectionDelta={x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}},this.projectionDelta={x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}},this.projectionDeltaWithTransform={x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}}}setAnimationOrigin(e,t=!1){const n=this.snapshot,r=n?n.latestValues:{},o={...this.latestValues},a={x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}};this.relativeParent&&this.relativeParent.options.layoutRoot||(this.relativeTarget=this.relativeTargetOrigin=void 0),this.attemptToResolveRelativeTarget=!t;const s={x:{min:0,max:0},y:{min:0,max:0}},i=(n?n.source:void 0)!==(this.layout?this.layout.source:void 0),l=this.getStack(),c=!l||l.members.length<=1,u=Boolean(i&&!c&&!0===this.options.crossfade&&!this.path.some(ou));let d;this.animationProgress=0,this.mixTargetDelta=t=>{const n=t/1e3;nu(a.x,e.x,n),nu(a.y,e.y,n),this.setTargetDelta(a),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(xl(s,this.layout.layoutBox,this.relativeParent.layout.layoutBox),function(e,t,n,r){ru(e.x,t.x,n.x,r),ru(e.y,t.y,n.y,r)}(this.relativeTarget,this.relativeTargetOrigin,s,n),d&&function(e,t){return Tc(e.x,t.x)&&Tc(e.y,t.y)}(this.relativeTarget,d)&&(this.isProjectionDirty=!1),d||(d={x:{min:0,max:0},y:{min:0,max:0}}),bc(d,this.relativeTarget)),i&&(this.animationValues=o,function(e,t,n,r,o,a){o?(e.opacity=Gs(0,void 0!==n.opacity?n.opacity:1,gc(r)),e.opacityExit=Gs(void 0!==t.opacity?t.opacity:1,0,yc(r))):a&&(e.opacity=Gs(void 0!==t.opacity?t.opacity:1,void 0!==n.opacity?n.opacity:1,r));for(let o=0;o<mc;o++){const a=`border${dc[o]}Radius`;let s=hc(t,a),i=hc(n,a);void 0===s&&void 0===i||(s||(s=0),i||(i=0),0===s||0===i||fc(s)===fc(i)?(e[a]=Math.max(Gs(pc(s),pc(i),r),0),(Wa.test(i)||Wa.test(s))&&(e[a]+="%")):e[a]=i)}(t.rotate||n.rotate)&&(e.rotate=Gs(t.rotate||0,n.rotate||0,r))}(o,r,this.latestValues,n,u,c)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=n},this.mixTargetDelta(this.options.layoutRoot?1e3:0)}startAnimation(e){this.notifyListeners("animationStart"),this.currentAnimation&&this.currentAnimation.stop(),this.resumingFrom&&this.resumingFrom.currentAnimation&&this.resumingFrom.currentAnimation.stop(),this.pendingAnimation&&(Jo(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Zo.update((()=>{Jl.hasAnimatedSinceResize=!0,this.currentAnimation=function(e,t,n){const r=ma(0)?0:ua(0);return r.start(zi("",r,1e3,n)),r.animation}(0,0,{...e,onUpdate:t=>{this.mixTargetDelta(t),e.onUpdate&&e.onUpdate(t)},onComplete:()=>{e.onComplete&&e.onComplete(),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0}))}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);const e=this.getStack();e&&e.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(1e3),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const e=this.getLead();let{targetWithTransforms:t,target:n,layout:r,latestValues:o}=e;if(t&&n&&r){if(this!==e&&this.layout&&r&&cu(this.options.animationType,this.layout.layoutBox,r.layoutBox)){n=this.target||{x:{min:0,max:0},y:{min:0,max:0}};const t=fl(this.layout.layoutBox.x);n.x.min=e.target.x.min,n.x.max=n.x.min+t;const r=fl(this.layout.layoutBox.y);n.y.min=e.target.y.min,n.y.max=n.y.min+r}bc(t,n),Vl(t,o),gl(this.projectionDeltaWithTransform,this.layoutCorrected,t,o)}}registerSharedNode(e,t){this.sharedNodes.has(e)||this.sharedNodes.set(e,new Dc),this.sharedNodes.get(e).add(t);const n=t.options.initialPromotionConfig;t.promote({transition:n?n.transition:void 0,preserveFollowOpacity:n&&n.shouldPreserveFollowOpacity?n.shouldPreserveFollowOpacity(t):void 0})}isLead(){const e=this.getStack();return!e||e.lead===this}getLead(){var e;const{layoutId:t}=this.options;return t&&(null===(e=this.getStack())||void 0===e?void 0:e.lead)||this}getPrevLead(){var e;const{layoutId:t}=this.options;return t?null===(e=this.getStack())||void 0===e?void 0:e.prevLead:void 0}getStack(){const{layoutId:e}=this.options;if(e)return this.root.sharedNodes.get(e)}promote({needsReset:e,transition:t,preserveFollowOpacity:n}={}){const r=this.getStack();r&&r.promote(this,n),e&&(this.projectionDelta=void 0,this.needsReset=!0),t&&this.setOptions({transition:t})}relegate(){const e=this.getStack();return!!e&&e.relegate(this)}resetSkewAndRotation(){const{visualElement:e}=this.options;if(!e)return;let t=!1;const{latestValues:n}=e;if((n.z||n.rotate||n.rotateX||n.rotateY||n.rotateZ||n.skewX||n.skewY)&&(t=!0),!t)return;const r={};n.z&&zc("z",e,r,this.animationValues);for(let t=0;t<Lc.length;t++)zc(`rotate${Lc[t]}`,e,r,this.animationValues),zc(`skew${Lc[t]}`,e,r,this.animationValues);e.render();for(const t in r)e.setStaticValue(t,r[t]),this.animationValues&&(this.animationValues[t]=r[t]);e.scheduleRender()}getProjectionStyles(e){var t,n;if(!this.instance||this.isSVG)return;if(!this.isVisible)return Ic;const r={visibility:""},o=this.getTransformTemplate();if(this.needsReset)return this.needsReset=!1,r.opacity="",r.pointerEvents=uc(null==e?void 0:e.pointerEvents)||"",r.transform=o?o(this.latestValues,""):"none",r;const a=this.getLead();if(!this.projectionDelta||!this.layout||!a.target){const t={};return this.options.layoutId&&(t.opacity=void 0!==this.latestValues.opacity?this.latestValues.opacity:1,t.pointerEvents=uc(null==e?void 0:e.pointerEvents)||""),this.hasProjected&&!jl(this.latestValues)&&(t.transform=o?o({},""):"none",this.hasProjected=!1),t}const s=a.animationValues||a.latestValues;this.applyTransformsToTarget(),r.transform=function(e,t,n){let r="";const o=e.x.translate/t.x,a=e.y.translate/t.y,s=(null==n?void 0:n.z)||0;if((o||a||s)&&(r=`translate3d(${o}px, ${a}px, ${s}px) `),1===t.x&&1===t.y||(r+=`scale(${1/t.x}, ${1/t.y}) `),n){const{transformPerspective:e,rotate:t,rotateX:o,rotateY:a,skewX:s,skewY:i}=n;e&&(r=`perspective(${e}px) ${r}`),t&&(r+=`rotate(${t}deg) `),o&&(r+=`rotateX(${o}deg) `),a&&(r+=`rotateY(${a}deg) `),s&&(r+=`skewX(${s}deg) `),i&&(r+=`skewY(${i}deg) `)}const i=e.x.scale*t.x,l=e.y.scale*t.y;return 1===i&&1===l||(r+=`scale(${i}, ${l})`),r||"none"}(this.projectionDeltaWithTransform,this.treeScale,s),o&&(r.transform=o(s,r.transform));const{x:i,y:l}=this.projectionDelta;r.transformOrigin=`${100*i.origin}% ${100*l.origin}% 0`,a.animationValues?r.opacity=a===this?null!==(n=null!==(t=s.opacity)&&void 0!==t?t:this.latestValues.opacity)&&void 0!==n?n:1:this.preserveOpacity?this.latestValues.opacity:s.opacityExit:r.opacity=a===this?void 0!==s.opacity?s.opacity:"":void 0!==s.opacityExit?s.opacityExit:0;for(const e in nc){if(void 0===s[e])continue;const{correct:t,applyTo:n}=nc[e],o="none"===r.transform?s[e]:t(s[e],a);if(n){const e=n.length;for(let t=0;t<e;t++)r[n[t]]=o}else r[e]=o}return this.options.layoutId&&(r.pointerEvents=a===this?uc(null==e?void 0:e.pointerEvents)||"":"none"),r}clearSnapshot(){this.resumeFrom=this.snapshot=void 0}resetTree(){this.root.nodes.forEach((e=>{var t;return null===(t=e.currentAnimation)||void 0===t?void 0:t.stop()})),this.root.nodes.forEach(Gc),this.root.sharedNodes.clear()}}}function Wc(e){e.updateLayout()}function Hc(e){var t;const n=(null===(t=e.resumeFrom)||void 0===t?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&n&&e.hasListeners("didUpdate")){const{layoutBox:t,measuredBox:r}=e.layout,{animationType:o}=e.options,a=n.source!==e.layout.source;"size"===o?Nl((e=>{const r=a?n.measuredBox[e]:n.layoutBox[e],o=fl(r);r.min=t[e].min,r.max=r.min+o})):cu(o,n.layoutBox,t)&&Nl((r=>{const o=a?n.measuredBox[r]:n.layoutBox[r],s=fl(t[r]);o.max=o.min+s,e.relativeTarget&&!e.currentAnimation&&(e.isProjectionDirty=!0,e.relativeTarget[r].max=e.relativeTarget[r].min+s)}));const s={x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}};gl(s,t,n.layoutBox);const i={x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}};a?gl(i,e.applyTransform(r,!0),n.measuredBox):gl(i,t,n.layoutBox);const l=!Pc(s);let c=!1;if(!e.resumeFrom){const r=e.getClosestProjectingParent();if(r&&!r.resumeFrom){const{snapshot:o,layout:a}=r;if(o&&a){const s={x:{min:0,max:0},y:{min:0,max:0}};xl(s,n.layoutBox,o.layoutBox);const i={x:{min:0,max:0},y:{min:0,max:0}};xl(i,t,a.layoutBox),Rc(s,i)||(c=!0),r.options.layoutRoot&&(e.relativeTarget=i,e.relativeTargetOrigin=s,e.relativeParent=r)}}}e.notifyListeners("didUpdate",{layout:t,snapshot:n,delta:i,layoutDelta:s,hasLayoutChanged:l,hasRelativeTargetChanged:c})}else if(e.isLead()){const{onExitComplete:t}=e.options;t&&t()}e.options.transition=void 0}function $c(e){Oc&&Mc.totalNodes++,e.parent&&(e.isProjecting()||(e.isProjectionDirty=e.parent.isProjectionDirty),e.isSharedProjectionDirty||(e.isSharedProjectionDirty=Boolean(e.isProjectionDirty||e.parent.isProjectionDirty||e.parent.isSharedProjectionDirty)),e.isTransformDirty||(e.isTransformDirty=e.parent.isTransformDirty))}function qc(e){e.isProjectionDirty=e.isSharedProjectionDirty=e.isTransformDirty=!1}function Yc(e){e.clearSnapshot()}function Gc(e){e.clearMeasurements()}function Xc(e){e.isLayoutDirty=!1}function Kc(e){const{visualElement:t}=e.options;t&&t.getProps().onBeforeLayoutMeasure&&t.notify("BeforeLayoutMeasure"),e.resetTransform()}function Zc(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0,e.isProjectionDirty=!0}function Jc(e){e.resolveTargetDelta()}function Qc(e){e.calcProjection()}function eu(e){e.resetSkewAndRotation()}function tu(e){e.removeLeadSnapshot()}function nu(e,t,n){e.translate=Gs(t.translate,0,n),e.scale=Gs(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function ru(e,t,n,r){e.min=Gs(t.min,n.min,r),e.max=Gs(t.max,n.max,r)}function ou(e){return e.animationValues&&void 0!==e.animationValues.opacityExit}const au={duration:.45,ease:[.4,0,.1,1]},su=e=>"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(e),iu=su("applewebkit/")&&!su("chrome/")?Math.round:Ho;function lu(e){e.min=iu(e.min),e.max=iu(e.max)}function cu(e,t,n){return"position"===e||"preserve-aspect"===e&&(r=Fc(t),o=Fc(n),!(Math.abs(r-o)<=.2));var r,o}function uu(e){var t;return e!==e.root&&(null===(t=e.scroll)||void 0===t?void 0:t.wasRoot)}const du=Uc({attachResizeListener:(e,t)=>nl(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),mu={current:void 0},pu=Uc({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!mu.current){const e=new du({});e.mount(window),e.setOptions({layoutScroll:!0}),mu.current=e}return mu.current},resetTransform:(e,t)=>{e.style.transform=void 0!==t?t:"none"},checkIsScrollRoot:e=>Boolean("fixed"===window.getComputedStyle(e).position)}),fu={pan:{Feature:class extends Qi{constructor(){super(...arguments),this.removePointerDownListener=Ho}onPointerDown(e){this.session=new sl(e,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:Wl(this.node)})}createPanHandlers(){const{onPanSessionStart:e,onPanStart:t,onPan:n,onPanEnd:r}=this.node.getProps();return{onSessionStart:Yl(e),onStart:Yl(t),onMove:n,onEnd:(e,t)=>{delete this.session,r&&Zo.postRender((()=>r(e,t)))}}}mount(){this.removePointerDownListener=ol(this.node.current,"pointerdown",(e=>this.onPointerDown(e)))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}},drag:{Feature:class extends Qi{constructor(e){super(e),this.removeGroupControls=Ho,this.removeListeners=Ho,this.controls=new $l(e)}mount(){const{dragControls:e}=this.node.getProps();e&&(this.removeGroupControls=e.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||Ho}unmount(){this.removeGroupControls(),this.removeListeners()}},ProjectionNode:pu,MeasureLayout:sc}};function hu(e,t,n){const{props:r}=e;e.animationState&&r.whileHover&&e.animationState.setActive("whileHover","Start"===n);const o=r["onHover"+n];o&&Zo.postRender((()=>o(t,rl(t))))}function gu(e,t,n){const{props:r}=e;e.animationState&&r.whileTap&&e.animationState.setActive("whileTap","Start"===n);const o=r["onTap"+("End"===n?"":n)];o&&Zo.postRender((()=>o(t,rl(t))))}const yu=new WeakMap,vu=new WeakMap,xu=e=>{const t=yu.get(e.target);t&&t(e)},bu=e=>{e.forEach(xu)};const wu={some:0,all:1},Eu={inView:{Feature:class extends Qi{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){this.unmount();const{viewport:e={}}=this.node.getProps(),{root:t,margin:n,amount:r="some",once:o}=e,a={root:t?t.current:void 0,rootMargin:n,threshold:"number"==typeof r?r:wu[r]};return function(e,t,n){const r=function({root:e,...t}){const n=e||document;vu.has(n)||vu.set(n,{});const r=vu.get(n),o=JSON.stringify(t);return r[o]||(r[o]=new IntersectionObserver(bu,{root:e,...t})),r[o]}(t);return yu.set(e,n),r.observe(e),()=>{yu.delete(e),r.unobserve(e)}}(this.node.current,a,(e=>{const{isIntersecting:t}=e;if(this.isInView===t)return;if(this.isInView=t,o&&!t&&this.hasEnteredView)return;t&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",t);const{onViewportEnter:n,onViewportLeave:r}=this.node.getProps(),a=t?n:r;a&&a(e)}))}mount(){this.startObserver()}update(){if("undefined"==typeof IntersectionObserver)return;const{props:e,prevProps:t}=this.node;["amount","margin","root"].some(function({viewport:e={}},{viewport:t={}}={}){return n=>e[n]!==t[n]}(e,t))&&this.startObserver()}unmount(){}}},tap:{Feature:class extends Qi{mount(){const{current:e}=this.node;e&&(this.unmount=function(e,t,n={}){const[r,o,a]=Ao(e,n),s=e=>{const r=e.currentTarget;if(!Vo(e)||Io.has(r))return;Io.add(r);const a=t(e),s=(e,t)=>{window.removeEventListener("pointerup",i),window.removeEventListener("pointercancel",l),Vo(e)&&Io.has(r)&&(Io.delete(r),"function"==typeof a&&a(e,{success:t}))},i=e=>{s(e,n.useGlobalTarget||Mo(r,e.target))},l=e=>{s(e,!1)};window.addEventListener("pointerup",i,o),window.addEventListener("pointercancel",l,o)};return r.forEach((e=>{(function(e){return Lo.has(e.tagName)||-1!==e.tabIndex})(e)||null!==e.getAttribute("tabindex")||(e.tabIndex=0),(n.useGlobalTarget?window:e).addEventListener("pointerdown",s,o),e.addEventListener("focus",(e=>((e,t)=>{const n=e.currentTarget;if(!n)return;const r=Bo((()=>{if(Io.has(n))return;zo(n,"down");const e=Bo((()=>{zo(n,"up")}));n.addEventListener("keyup",e,t),n.addEventListener("blur",(()=>zo(n,"cancel")),t)}));n.addEventListener("keydown",r,t),n.addEventListener("blur",(()=>n.removeEventListener("keydown",r)),t)})(e,o)),o)})),a}(e,(e=>(gu(this.node,e,"Start"),(e,{success:t})=>gu(this.node,e,t?"End":"Cancel"))),{useGlobalTarget:this.node.props.globalTapTarget}))}unmount(){}}},focus:{Feature:class extends Qi{constructor(){super(...arguments),this.isActive=!1}onFocus(){let e=!1;try{e=this.node.current.matches(":focus-visible")}catch(t){e=!0}e&&this.node.animationState&&(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){this.isActive&&this.node.animationState&&(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=ni(nl(this.node.current,"focus",(()=>this.onFocus())),nl(this.node.current,"blur",(()=>this.onBlur())))}unmount(){}}},hover:{Feature:class extends Qi{mount(){const{current:e}=this.node;e&&(this.unmount=function(e,t,n={}){const[r,o,a]=Ao(e,n),s=Do((e=>{const{target:n}=e,r=t(e);if("function"!=typeof r||!n)return;const a=Do((e=>{r(e),n.removeEventListener("pointerleave",a)}));n.addEventListener("pointerleave",a,o)}));return r.forEach((e=>{e.addEventListener("pointerenter",s,o)})),a}(e,(e=>(hu(this.node,e,"Start"),e=>hu(this.node,e,"End")))))}unmount(){}}}},_u={layout:{ProjectionNode:pu,MeasureLayout:sc}},ku=(0,i.createContext)({strict:!1}),Su=(0,i.createContext)({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"}),Nu=(0,i.createContext)({});function Cu(e){return no(e.animate)||uo.some((t=>ao(e[t])))}function Pu(e){return Boolean(Cu(e)||e.variants)}function Tu(e){return Array.isArray(e)?e.join(" "):e}const ju="undefined"!=typeof window,Ru={animation:["animate","variants","whileHover","whileTap","exit","whileInView","whileFocus","whileDrag"],exit:["exit"],drag:["drag","dragControls"],focus:["whileFocus"],hover:["whileHover","onHoverStart","onHoverEnd"],tap:["whileTap","onTap","onTapStart","onTapCancel"],pan:["onPan","onPanStart","onPanSessionStart","onPanEnd"],inView:["whileInView","onViewportEnter","onViewportLeave"],layout:["layout","layoutId"]},Fu={};for(const e in Ru)Fu[e]={isEnabled:t=>Ru[e].some((e=>!!t[e]))};const Au=Symbol.for("motionComponentSymbol");function Du(e,t,n){return(0,i.useCallback)((r=>{r&&e.onMount&&e.onMount(r),t&&(r?t.mount(r):t.unmount()),n&&("function"==typeof n?n(r):pl(n)&&(n.current=r))}),[t])}const Mu=ju?i.useLayoutEffect:i.useEffect;function Ou(e,t,n,r,o){var a,s;const{visualElement:l}=(0,i.useContext)(Nu),c=(0,i.useContext)(ku),u=(0,i.useContext)(Gl),d=(0,i.useContext)(Su).reducedMotion,m=(0,i.useRef)(null);r=r||c.renderer,!m.current&&r&&(m.current=r(e,{visualState:t,parent:l,props:n,presenceContext:u,blockInitialAnimation:!!u&&!1===u.initial,reducedMotionConfig:d}));const p=m.current,f=(0,i.useContext)(Zl);!p||p.projection||!o||"html"!==p.type&&"svg"!==p.type||function(e,t,n,r){const{layoutId:o,layout:a,drag:s,dragConstraints:i,layoutScroll:l,layoutRoot:c}=t;e.projection=new n(e.latestValues,t["data-framer-portal-id"]?void 0:Lu(e.parent)),e.projection.setOptions({layoutId:o,layout:a,alwaysMeasureLayout:Boolean(s)||i&&pl(i),visualElement:e,animationType:"string"==typeof a?a:"both",initialPromotionConfig:r,layoutScroll:l,layoutRoot:c})}(m.current,n,o,f);const h=(0,i.useRef)(!1);(0,i.useInsertionEffect)((()=>{p&&h.current&&p.update(n,u)}));const g=n[ha],y=(0,i.useRef)(Boolean(g)&&!(null===(a=window.MotionHandoffIsComplete)||void 0===a?void 0:a.call(window,g))&&(null===(s=window.MotionHasOptimisedAnimation)||void 0===s?void 0:s.call(window,g)));return Mu((()=>{p&&(h.current=!0,window.MotionIsMounted=!0,p.updateFeatures(),rc.render(p.render),y.current&&p.animationState&&p.animationState.animateChanges())})),(0,i.useEffect)((()=>{p&&(!y.current&&p.animationState&&p.animationState.animateChanges(),y.current&&(queueMicrotask((()=>{var e;null===(e=window.MotionHandoffMarkAsComplete)||void 0===e||e.call(window,g)})),y.current=!1))})),p}function Lu(e){if(e)return!1!==e.options.allowProjection?e.projection:Lu(e.parent)}function Iu({preloadedFeatures:e,createVisualElement:t,useRender:n,useVisualState:r,Component:o}){var a,s;function l(e,a){let s;const l={...(0,i.useContext)(Su),...e,layoutId:Bu(e)},{isStatic:c}=l,u=function(e){const{initial:t,animate:n}=function(e,t){if(Cu(e)){const{initial:t,animate:n}=e;return{initial:!1===t||ao(t)?t:void 0,animate:ao(n)?n:void 0}}return!1!==e.inherit?t:{}}(e,(0,i.useContext)(Nu));return(0,i.useMemo)((()=>({initial:t,animate:n})),[Tu(t),Tu(n)])}(e),d=r(e,c);if(!c&&ju){(0,i.useContext)(ku).strict;const e=function(e){const{drag:t,layout:n}=Fu;if(!t&&!n)return{};const r={...t,...n};return{MeasureLayout:(null==t?void 0:t.isEnabled(e))||(null==n?void 0:n.isEnabled(e))?r.MeasureLayout:void 0,ProjectionNode:r.ProjectionNode}}(l);s=e.MeasureLayout,u.visualElement=Ou(o,d,l,t,e.ProjectionNode)}return(0,L.jsxs)(Nu.Provider,{value:u,children:[s&&u.visualElement?(0,L.jsx)(s,{visualElement:u.visualElement,...l}):null,n(o,e,Du(d,u.visualElement,a),d,c,u.visualElement)]})}e&&function(e){for(const t in e)Fu[t]={...Fu[t],...e[t]}}(e),l.displayName=`motion.${"string"==typeof o?o:`create(${null!==(s=null!==(a=o.displayName)&&void 0!==a?a:o.name)&&void 0!==s?s:""})`}`;const c=(0,i.forwardRef)(l);return c[Au]=o,c}function Bu({layoutId:e}){const t=(0,i.useContext)(Kl).id;return t&&void 0!==e?t+"-"+e:e}const zu=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function Vu(e){return"string"==typeof e&&!e.includes("-")&&!!(zu.indexOf(e)>-1||/[A-Z]/u.test(e))}function Uu(e){const t=(0,i.useRef)(null);return null===t.current&&(t.current=e()),t.current}const Wu=e=>(t,n)=>{const r=(0,i.useContext)(Nu),o=(0,i.useContext)(Gl),a=()=>function({scrapeMotionValuesFromProps:e,createRenderState:t,onUpdate:n},r,o,a){const s={latestValues:Hu(r,o,a,e),renderState:t()};return n&&(s.onMount=e=>n({props:r,current:e,...s}),s.onUpdate=e=>n(e)),s}(e,t,r,o);return n?a():Uu(a)};function Hu(e,t,n,r){const o={},a=r(e,{});for(const e in a)o[e]=uc(a[e]);let{initial:s,animate:i}=e;const l=Cu(e),c=Pu(e);t&&c&&!l&&!1!==e.inherit&&(void 0===s&&(s=t.initial),void 0===i&&(i=t.animate));let u=!!n&&!1===n.initial;u=u||!1===s;const d=u?i:s;if(d&&"boolean"!=typeof d&&!no(d)){const t=Array.isArray(d)?d:[d];for(let n=0;n<t.length;n++){const r=io(e,t[n]);if(r){const{transitionEnd:e,transition:t,...n}=r;for(const e in n){let t=n[e];Array.isArray(t)&&(t=t[u?t.length-1:0]),null!==t&&(o[e]=t)}for(const t in e)o[t]=e[t]}}}return o}const $u=(e,t)=>t&&"number"==typeof e?t.transform(e):e,qu={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},Yu=$o.length;function Gu(e,t,n){const{style:r,vars:o,transformOrigin:a}=e;let s=!1,i=!1;for(const e in t){const n=t[e];if(qo.has(e))s=!0;else if(As(e))o[e]=n;else{const t=$u(n,ms[e]);e.startsWith("origin")?(i=!0,a[e]=t):r[e]=t}}if(t.transform||(s||n?r.transform=function(e,t,n){let r="",o=!0;for(let a=0;a<Yu;a++){const s=$o[a],i=e[s];if(void 0===i)continue;let l=!0;if(l="number"==typeof i?i===(s.startsWith("scale")?1:0):0===parseFloat(i),!l||n){const e=$u(i,ms[s]);l||(o=!1,r+=`${qu[s]||s}(${e}) `),n&&(t[s]=e)}}return r=r.trim(),n?r=n(t,o?"":r):o&&(r="none"),r}(t,e.transform,n):r.transform&&(r.transform="none")),i){const{originX:e="50%",originY:t="50%",originZ:n=0}=a;r.transformOrigin=`${e} ${t} ${n}`}}const Xu={offset:"stroke-dashoffset",array:"stroke-dasharray"},Ku={offset:"strokeDashoffset",array:"strokeDasharray"};function Zu(e,t,n){return"string"==typeof e?e:Ha.transform(t+n*e)}function Ju(e,{attrX:t,attrY:n,attrScale:r,originX:o,originY:a,pathLength:s,pathSpacing:i=1,pathOffset:l=0,...c},u,d){if(Gu(e,c,d),u)return void(e.style.viewBox&&(e.attrs.viewBox=e.style.viewBox));e.attrs=e.style,e.style={};const{attrs:m,style:p,dimensions:f}=e;m.transform&&(f&&(p.transform=m.transform),delete m.transform),f&&(void 0!==o||void 0!==a||p.transform)&&(p.transformOrigin=function(e,t,n){return`${Zu(t,e.x,e.width)} ${Zu(n,e.y,e.height)}`}(f,void 0!==o?o:.5,void 0!==a?a:.5)),void 0!==t&&(m.x=t),void 0!==n&&(m.y=n),void 0!==r&&(m.scale=r),void 0!==s&&function(e,t,n=1,r=0,o=!0){e.pathLength=1;const a=o?Xu:Ku;e[a.offset]=Ha.transform(-r);const s=Ha.transform(t),i=Ha.transform(n);e[a.array]=`${s} ${i}`}(m,s,i,l,!1)}const Qu=e=>"string"==typeof e&&"svg"===e.toLowerCase();function ed(e,{style:t,vars:n},r,o){Object.assign(e.style,t,o&&o.getProjectionStyles(r));for(const t in n)e.style.setProperty(t,n[t])}const td=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]);function nd(e,t,n,r){ed(e,t,void 0,r);for(const n in t.attrs)e.setAttribute(td.has(n)?n:fa(n),t.attrs[n])}function rd(e,{layout:t,layoutId:n}){return qo.has(e)||e.startsWith("origin")||(t||void 0!==n)&&(!!nc[e]||"opacity"===e)}function od(e,t,n){var r;const{style:o}=e,a={};for(const s in o)(ma(o[s])||t.style&&ma(t.style[s])||rd(s,e)||void 0!==(null===(r=null==n?void 0:n.getValue(s))||void 0===r?void 0:r.liveStyle))&&(a[s]=o[s]);return a}function ad(e,t,n){const r=od(e,t,n);for(const n in e)(ma(e[n])||ma(t[n]))&&(r[-1!==$o.indexOf(n)?"attr"+n.charAt(0).toUpperCase()+n.substring(1):n]=e[n]);return r}const sd=["x","y","width","height","cx","cy","r"],id={useVisualState:Wu({scrapeMotionValuesFromProps:ad,createRenderState:()=>({style:{},transform:{},transformOrigin:{},vars:{},attrs:{}}),onUpdate:({props:e,prevProps:t,current:n,renderState:r,latestValues:o})=>{if(!n)return;let a=!!e.drag;if(!a)for(const e in o)if(qo.has(e)){a=!0;break}if(!a)return;let s=!t;if(t)for(let n=0;n<sd.length;n++){const r=sd[n];e[r]!==t[r]&&(s=!0)}s&&Zo.read((()=>{!function(e,t){try{t.dimensions="function"==typeof e.getBBox?e.getBBox():e.getBoundingClientRect()}catch(e){t.dimensions={x:0,y:0,width:0,height:0}}}(n,r),Zo.render((()=>{Ju(r,o,Qu(n.tagName),e.transformTemplate),nd(n,r)}))}))}})},ld={useVisualState:Wu({scrapeMotionValuesFromProps:od,createRenderState:()=>({style:{},transform:{},transformOrigin:{},vars:{}})})};function cd(e,t,n){for(const r in t)ma(t[r])||rd(r,n)||(e[r]=t[r])}function ud(e,t){const n={},r=function(e,t){const n={};return cd(n,e.style||{},e),Object.assign(n,function({transformTemplate:e},t){return(0,i.useMemo)((()=>{const n={style:{},transform:{},transformOrigin:{},vars:{}};return Gu(n,t,e),Object.assign({},n.vars,n.style)}),[t])}(e,t)),n}(e,t);return e.drag&&!1!==e.dragListener&&(n.draggable=!1,r.userSelect=r.WebkitUserSelect=r.WebkitTouchCallout="none",r.touchAction=!0===e.drag?"none":"pan-"+("x"===e.drag?"y":"x")),void 0===e.tabIndex&&(e.onTap||e.onTapStart||e.whileTap)&&(n.tabIndex=0),n.style=r,n}const dd=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","ignoreStrict","viewport"]);function md(e){return e.startsWith("while")||e.startsWith("drag")&&"draggable"!==e||e.startsWith("layout")||e.startsWith("onTap")||e.startsWith("onPan")||e.startsWith("onLayout")||dd.has(e)}let pd=e=>!md(e);try{(fd=require("@emotion/is-prop-valid").default)&&(pd=e=>e.startsWith("on")?!md(e):fd(e))}catch(e){}var fd;function hd(e,t,n,r){const o=(0,i.useMemo)((()=>{const n={style:{},transform:{},transformOrigin:{},vars:{},attrs:{}};return Ju(n,t,Qu(r),e.transformTemplate),{...n.attrs,style:{...n.style}}}),[t]);if(e.style){const t={};cd(t,e.style,e),o.style={...t,...o.style}}return o}function gd(e=!1){return(t,n,r,{latestValues:o},a)=>{const s=(Vu(t)?hd:ud)(n,o,a,t),l=function(e,t,n){const r={};for(const o in e)"values"===o&&"object"==typeof e.values||(pd(o)||!0===n&&md(o)||!t&&!md(o)||e.draggable&&o.startsWith("onDrag"))&&(r[o]=e[o]);return r}(n,"string"==typeof t,e),c=t!==i.Fragment?{...l,...s,ref:r}:{},{children:u}=n,d=(0,i.useMemo)((()=>ma(u)?u.get():u),[u]);return(0,i.createElement)(t,{...c,children:d})}}function yd(e,t){return function(n,{forwardMotionProps:r}={forwardMotionProps:!1}){return Iu({...Vu(n)?id:ld,preloadedFeatures:e,useRender:gd(r),createVisualElement:t,Component:n})}}const vd={current:null},xd={current:!1},bd=[...zs,Xa,os],wd=new WeakMap,Ed=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"];class _d{scrapeMotionValuesFromProps(e,t,n){return{}}constructor({parent:e,props:t,presenceContext:n,reducedMotionConfig:r,blockInitialAnimation:o,visualState:a},s={}){this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.values=new Map,this.KeyframeResolver=Ps,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.renderScheduledAt=0,this.scheduleRender=()=>{const e=ra.now();this.renderScheduledAt<e&&(this.renderScheduledAt=e,Zo.render(this.render,!1,!0))};const{latestValues:i,renderState:l,onUpdate:c}=a;this.onUpdate=c,this.latestValues=i,this.baseTarget={...i},this.initialValues=t.initial?{...i}:{},this.renderState=l,this.parent=e,this.props=t,this.presenceContext=n,this.depth=e?e.depth+1:0,this.reducedMotionConfig=r,this.options=s,this.blockInitialAnimation=Boolean(o),this.isControllingVariants=Cu(t),this.isVariantNode=Pu(t),this.isVariantNode&&(this.variantChildren=new Set),this.manuallyAnimateOnMount=Boolean(e&&e.current);const{willChange:u,...d}=this.scrapeMotionValuesFromProps(t,{},this);for(const e in d){const t=d[e];void 0!==i[e]&&ma(t)&&t.set(i[e],!1)}}mount(e){this.current=e,wd.set(e,this),this.projection&&!this.projection.instance&&this.projection.mount(e),this.parent&&this.isVariantNode&&!this.isControllingVariants&&(this.removeFromVariantTree=this.parent.addVariantChild(this)),this.values.forEach(((e,t)=>this.bindToMotionValue(t,e))),xd.current||function(){if(xd.current=!0,ju)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>vd.current=e.matches;e.addListener(t),t()}else vd.current=!1}(),this.shouldReduceMotion="never"!==this.reducedMotionConfig&&("always"===this.reducedMotionConfig||vd.current),this.parent&&this.parent.children.add(this),this.update(this.props,this.presenceContext)}unmount(){wd.delete(this.current),this.projection&&this.projection.unmount(),Jo(this.notifyUpdate),Jo(this.render),this.valueSubscriptions.forEach((e=>e())),this.valueSubscriptions.clear(),this.removeFromVariantTree&&this.removeFromVariantTree(),this.parent&&this.parent.children.delete(this);for(const e in this.events)this.events[e].clear();for(const e in this.features){const t=this.features[e];t&&(t.unmount(),t.isMounted=!1)}this.current=null}bindToMotionValue(e,t){this.valueSubscriptions.has(e)&&this.valueSubscriptions.get(e)();const n=qo.has(e),r=t.on("change",(t=>{this.latestValues[e]=t,this.props.onUpdate&&Zo.preRender(this.notifyUpdate),n&&this.projection&&(this.projection.isTransformDirty=!0)})),o=t.on("renderRequest",this.scheduleRender);let a;window.MotionCheckAppearSync&&(a=window.MotionCheckAppearSync(this,e,t)),this.valueSubscriptions.set(e,(()=>{r(),o(),a&&a(),t.owner&&t.stop()}))}sortNodePosition(e){return this.current&&this.sortInstanceNodePosition&&this.type===e.type?this.sortInstanceNodePosition(this.current,e.current):0}updateFeatures(){let e="animation";for(e in Fu){const t=Fu[e];if(!t)continue;const{isEnabled:n,Feature:r}=t;if(!this.features[e]&&r&&n(this.props)&&(this.features[e]=new r(this)),this.features[e]){const t=this.features[e];t.isMounted?t.update():(t.mount(),t.isMounted=!0)}}}triggerBuild(){this.build(this.renderState,this.latestValues,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):{x:{min:0,max:0},y:{min:0,max:0}}}getStaticValue(e){return this.latestValues[e]}setStaticValue(e,t){this.latestValues[e]=t}update(e,t){(e.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=e,this.prevPresenceContext=this.presenceContext,this.presenceContext=t;for(let t=0;t<Ed.length;t++){const n=Ed[t];this.propEventSubscriptions[n]&&(this.propEventSubscriptions[n](),delete this.propEventSubscriptions[n]);const r=e["on"+n];r&&(this.propEventSubscriptions[n]=this.on(n,r))}this.prevMotionValues=function(e,t,n){for(const r in t){const o=t[r],a=n[r];if(ma(o))e.addValue(r,o);else if(ma(a))e.addValue(r,ua(o,{owner:e}));else if(a!==o)if(e.hasValue(r)){const t=e.getValue(r);!0===t.liveStyle?t.jump(o):t.hasAnimated||t.set(o)}else{const t=e.getStaticValue(r);e.addValue(r,ua(void 0!==t?t:o,{owner:e}))}}for(const r in n)void 0===t[r]&&e.removeValue(r);return t}(this,this.scrapeMotionValuesFromProps(e,this.prevProps,this),this.prevMotionValues),this.handleChildMotionValue&&this.handleChildMotionValue(),this.onUpdate&&this.onUpdate(this)}getProps(){return this.props}getVariant(e){return this.props.variants?this.props.variants[e]:void 0}getDefaultTransition(){return this.props.transition}getTransformPagePoint(){return this.props.transformPagePoint}getClosestVariantNode(){return this.isVariantNode?this:this.parent?this.parent.getClosestVariantNode():void 0}addVariantChild(e){const t=this.getClosestVariantNode();if(t)return t.variantChildren&&t.variantChildren.add(e),()=>t.variantChildren.delete(e)}addValue(e,t){const n=this.values.get(e);t!==n&&(n&&this.removeValue(e),this.bindToMotionValue(e,t),this.values.set(e,t),this.latestValues[e]=t.get())}removeValue(e){this.values.delete(e);const t=this.valueSubscriptions.get(e);t&&(t(),this.valueSubscriptions.delete(e)),delete this.latestValues[e],this.removeValueFromRenderState(e,this.renderState)}hasValue(e){return this.values.has(e)}getValue(e,t){if(this.props.values&&this.props.values[e])return this.props.values[e];let n=this.values.get(e);return void 0===n&&void 0!==t&&(n=ua(null===t?void 0:t,{owner:this}),this.addValue(e,n)),n}readValue(e,t){var n;let r=void 0===this.latestValues[e]&&this.current?null!==(n=this.getBaseTargetFromProps(this.props,e))&&void 0!==n?n:this.readValueFromInstance(this.current,e,this.options):this.latestValues[e];return null!=r&&("string"==typeof r&&(Rs(r)||Pa(r))?r=parseFloat(r):!(e=>bd.find(Bs(e)))(r)&&os.test(t)&&(r=hs(e,t)),this.setBaseTarget(e,ma(r)?r.get():r)),ma(r)?r.get():r}setBaseTarget(e,t){this.baseTarget[e]=t}getBaseTarget(e){var t;const{initial:n}=this.props;let r;if("string"==typeof n||"object"==typeof n){const o=io(this.props,n,null===(t=this.presenceContext)||void 0===t?void 0:t.custom);o&&(r=o[e])}if(n&&void 0!==r)return r;const o=this.getBaseTargetFromProps(this.props,e);return void 0===o||ma(o)?void 0!==this.initialValues[e]&&void 0===r?void 0:this.baseTarget[e]:o}on(e,t){return this.events[e]||(this.events[e]=new sa),this.events[e].add(t)}notify(e,...t){this.events[e]&&this.events[e].notify(...t)}}class kd extends _d{constructor(){super(...arguments),this.KeyframeResolver=Us}sortInstanceNodePosition(e,t){return 2&e.compareDocumentPosition(t)?1:-1}getBaseTargetFromProps(e,t){return e.style?e.style[t]:void 0}removeValueFromRenderState(e,{vars:t,style:n}){delete t[e],delete n[e]}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);const{children:e}=this.props;ma(e)&&(this.childSubscription=e.on("change",(e=>{this.current&&(this.current.textContent=`${e}`)})))}}class Sd extends kd{constructor(){super(...arguments),this.type="html",this.renderInstance=ed}readValueFromInstance(e,t){if(qo.has(t)){const e=fs(t);return e&&e.default||0}{const r=(n=e,window.getComputedStyle(n)),o=(As(t)?r.getPropertyValue(t):r[t])||0;return"string"==typeof o?o.trim():o}var n}measureInstanceViewportBox(e,{transformPagePoint:t}){return Ul(e,t)}build(e,t,n){Gu(e,t,n.transformTemplate)}scrapeMotionValuesFromProps(e,t,n){return od(e,t,n)}}class Nd extends kd{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1,this.measureInstanceViewportBox=Sl}getBaseTargetFromProps(e,t){return e[t]}readValueFromInstance(e,t){if(qo.has(t)){const e=fs(t);return e&&e.default||0}return t=td.has(t)?t:fa(t),e.getAttribute(t)}scrapeMotionValuesFromProps(e,t,n){return ad(e,t,n)}build(e,t,n){Ju(e,t,this.isSVGTag,n.transformTemplate)}renderInstance(e,t,n,r){nd(e,t,0,r)}mount(e){this.isSVGTag=Qu(e.tagName),super.mount(e)}}const Cd=to(yd({...tl,...Eu,...fu,..._u},((e,t)=>Vu(e)?new Nd(t):new Sd(t,{allowProjection:e!==i.Fragment}))));class Pd extends i.Component{getSnapshotBeforeUpdate(e){const t=this.props.childRef.current;if(t&&e.isPresent&&!this.props.isPresent){const e=this.props.sizeRef.current;e.height=t.offsetHeight||0,e.width=t.offsetWidth||0,e.top=t.offsetTop,e.left=t.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function Td({children:e,isPresent:t}){const n=(0,i.useId)(),r=(0,i.useRef)(null),o=(0,i.useRef)({width:0,height:0,top:0,left:0}),{nonce:a}=(0,i.useContext)(Su);return(0,i.useInsertionEffect)((()=>{const{width:e,height:s,top:i,left:l}=o.current;if(t||!r.current||!e||!s)return;r.current.dataset.motionPopId=n;const c=document.createElement("style");return a&&(c.nonce=a),document.head.appendChild(c),c.sheet&&c.sheet.insertRule(`\n          [data-motion-pop-id="${n}"] {\n            position: absolute !important;\n            width: ${e}px !important;\n            height: ${s}px !important;\n            top: ${i}px !important;\n            left: ${l}px !important;\n          }\n        `),()=>{document.head.removeChild(c)}}),[t]),(0,L.jsx)(Pd,{isPresent:t,childRef:r,sizeRef:o,children:i.cloneElement(e,{ref:r})})}const jd=({children:e,initial:t,isPresent:n,onExitComplete:r,custom:o,presenceAffectsLayout:a,mode:s})=>{const l=Uu(Rd),c=(0,i.useId)(),u=(0,i.useCallback)((e=>{l.set(e,!0);for(const e of l.values())if(!e)return;r&&r()}),[l,r]),d=(0,i.useMemo)((()=>({id:c,initial:t,isPresent:n,custom:o,onExitComplete:u,register:e=>(l.set(e,!1),()=>l.delete(e))})),a?[Math.random(),u]:[n,u]);return(0,i.useMemo)((()=>{l.forEach(((e,t)=>l.set(t,!1)))}),[n]),i.useEffect((()=>{!n&&!l.size&&r&&r()}),[n]),"popLayout"===s&&(e=(0,L.jsx)(Td,{isPresent:n,children:e})),(0,L.jsx)(Gl.Provider,{value:d,children:e})};function Rd(){return new Map}const Fd=e=>e.key||"";function Ad(e){const t=[];return i.Children.forEach(e,(e=>{(0,i.isValidElement)(e)&&t.push(e)})),t}const Dd=({children:e,custom:t,initial:n=!0,onExitComplete:r,presenceAffectsLayout:o=!0,mode:a="sync",propagate:s=!1})=>{const[l,c]=Xl(s),u=(0,i.useMemo)((()=>Ad(e)),[e]),d=s&&!l?[]:u.map(Fd),m=(0,i.useRef)(!0),p=(0,i.useRef)(u),f=Uu((()=>new Map)),[h,g]=(0,i.useState)(u),[y,v]=(0,i.useState)(u);Mu((()=>{m.current=!1,p.current=u;for(let e=0;e<y.length;e++){const t=Fd(y[e]);d.includes(t)?f.delete(t):!0!==f.get(t)&&f.set(t,!1)}}),[y,d.length,d.join("-")]);const x=[];if(u!==h){let e=[...u];for(let t=0;t<y.length;t++){const n=y[t],r=Fd(n);d.includes(r)||(e.splice(t,0,n),x.push(n))}return"wait"===a&&x.length&&(e=x),v(Ad(e)),void g(u)}const{forceRender:b}=(0,i.useContext)(Kl);return(0,L.jsx)(L.Fragment,{children:y.map((e=>{const i=Fd(e),h=!(s&&!l)&&(u===y||d.includes(i));return(0,L.jsx)(jd,{isPresent:h,initial:!(m.current&&!n)&&void 0,custom:h?void 0:t,presenceAffectsLayout:o,mode:a,onExitComplete:h?void 0:()=>{if(!f.has(i))return;f.set(i,!0);let e=!0;f.forEach((t=>{t||(e=!1)})),e&&(null==b||b(),v(p.current),s&&(null==c||c()),r&&r())},children:e},i)}))})},Md=(...e)=>e.filter(((e,t,n)=>Boolean(e)&&n.indexOf(e)===t)).join(" ");var Od={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const Ld=(0,i.forwardRef)((({color:e="currentColor",size:t=24,strokeWidth:n=2,absoluteStrokeWidth:r,className:o="",children:a,iconNode:s,...l},c)=>(0,i.createElement)("svg",{ref:c,...Od,width:t,height:t,stroke:e,strokeWidth:r?24*Number(n)/Number(t):n,className:Md("lucide",o),...l},[...s.map((([e,t])=>(0,i.createElement)(e,t))),...Array.isArray(a)?a:[a]]))),Id=(e,t)=>{const n=(0,i.forwardRef)((({className:n,...r},o)=>{return(0,i.createElement)(Ld,{ref:o,iconNode:t,className:Md(`lucide-${a=e,a.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase()}`,n),...r});var a}));return n.displayName=`${e}`,n},Bd=Id("ChevronDown",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]),zd=(0,i.createContext)({}),Vd=()=>(0,i.useContext)(zd),Ud=({size:e="md",children:t,className:n})=>(0,L.jsx)(zd.Provider,{value:{size:e},children:(0,L.jsx)("div",{className:Ae("flex flex-col bg-background-primary p-2",n),children:t})});Ud.displayName="Menu";const Wd=({heading:e,arrow:t=!1,showArrowOnHover:n=!1,open:r=!0,onClick:o,children:a,className:s})=>{const[l,c]=(0,i.useState)(r),[u,d]=(0,i.useState)(!1),{size:m}=Vd(),p={sm:"text-xs",md:"text-sm"}[m??"md"],f={sm:"size-4",md:"size-5"}[m??"md"],h=()=>{c(!l),o&&o(!l)};return(0,L.jsxs)("div",{children:[!!e&&(0,L.jsxs)("div",{role:"button",tabIndex:0,onClick:h,onKeyDown:e=>{("Enter"===e.key||" "===e.key)&&h()},onMouseEnter:()=>n&&d(!0),onMouseLeave:()=>n&&d(!1),className:Ae("text-text-primary bg-transparent cursor-pointer flex justify-between items-center gap-1",p,e?"p-1":"p-0",s),"aria-expanded":l,children:[(0,L.jsx)("span",{className:"text-text-tertiary",children:e}),t&&(0,L.jsx)(Cd.span,{className:"flex items-center text-border-strong",initial:"hidden",animate:n?l||u?"visible":"hidden":"visible",exit:"hidden",variants:{visible:{opacity:1},hidden:{opacity:0}},transition:{duration:.15},children:(0,L.jsx)(Cd.span,{className:"inline-flex p-1",variants:{open:{rotate:180},closed:{rotate:0}},animate:l?"open":"closed",transition:{duration:.15},children:(0,L.jsx)(Bd,{className:Ae("shrink-0",f)})})})]}),(0,L.jsx)(Dd,{initial:!1,children:l&&(0,L.jsx)(Cd.ul,{role:"menu",variants:{open:{height:"auto",opacity:1},closed:{height:0,opacity:0}},initial:"closed",animate:"open",exit:"closed",transition:{duration:.3,ease:"easeInOut"},className:"overflow flex gap-0.5 flex-col m-0 bg-white rounded p-0",children:a})})]})};Wd.displayName="Menu.List";const Hd=({disabled:e=!1,active:t,onClick:n,children:r,className:o})=>{const{size:a}=Vd(),s={sm:"[&>svg]:size-4 [&>svg]:m-1 [&>*:not(svg)]:mx-1 [&>*:not(svg)]:my-0.5 text-sm",md:"[&>svg]:size-5 [&>svg]:m-1.5 [&>*:not(svg)]:m-1 text-base"}[a??"md"];return(0,L.jsx)("li",{role:"menuitem",tabIndex:0,onClick:n,onKeyDown:e=>{("Enter"===e.key||" "===e.key)&&n?.()},className:Ae("flex p-1 gap-1 items-center bg-transparent border-none rounded text-text-secondary cursor-pointer m-0",s,"hover:bg-background-secondary hover:text-text-primary",e?"text-text-disabled hover:text-text-disabled cursor-not-allowed hover:bg-transparent":"",t?"text-icon-primary [&>svg]:text-icon-interactive bg-background-secondary":"","transition-colors duration-300 ease-in-out",o),children:r})};Hd.displayName="Menu.Item";const $d=({variant:e="solid",className:t})=>{const n={solid:"border-solid",dashed:"border-dashed",dotted:"border-dotted",double:"border-double",hidden:"border-hidden",none:"border-none"}[e];return(0,L.jsx)("li",{className:"m-0 p-0 list-none",role:"separator","aria-hidden":"true",children:(0,L.jsx)("hr",{className:Ae("w-full border-0 border-t border-border-subtle",n,t)})})};$d.displayName="Menu.Separator",Ud.List=Wd,Ud.Item=Hd,Ud.Separator=$d;const qd=(0,i.createContext)({}),Yd=()=>(0,i.useContext)(qd),Gd=({placement:e="bottom",offset:t=10,boundary:n="clippingAncestors",children:r,className:o})=>{const[a,s]=(0,i.useState)(!1),{refs:l,floatingStyles:c,context:u}=Ur({open:a,onOpenChange:s,placement:e,strategy:"fixed",middleware:[er(t),nr({boundary:n}),tr({boundary:n})],whileElementsMounted:Un}),d=Lr(u),m=Vr(u),p=Xr(u,{role:"menu"}),{getReferenceProps:f,getFloatingProps:h}=Yr([d,m,p]),{isMounted:g,styles:y}=Jr(u,{duration:150,initial:{opacity:0,scale:.95},open:{opacity:1,scale:1},close:{opacity:0,scale:.95}}),v=()=>s((e=>!e));return(0,L.jsx)(qd.Provider,{value:{refs:l,handleClose:()=>s(!1),isMounted:g,styles:y,floatingStyles:c,getFloatingProps:h},children:(0,L.jsxs)("div",{className:Ae("relative inline-block",o),children:[i.Children.map(r,(e=>i.isValidElement(e)&&"DropdownMenu.Trigger"===e?.type?.displayName?(0,i.cloneElement)(e,{ref:l.setReference,onClick:v,...f()}):null)),i.Children.toArray(r).filter((e=>i.isValidElement(e)&&["DropdownMenu.Portal","DropdownMenu.ContentWrapper"].includes(e.type.displayName||""))).map((e=>e))]})})};Gd.displayName="DropdownMenu";const Xd=({children:e,className:t})=>{const{refs:n,floatingStyles:r,getFloatingProps:o,isMounted:a,styles:s}=Yd();return a&&(0,L.jsx)("div",{ref:n.setFloating,className:t,style:{...r,...s},...o(),children:i.Children.map(e,(e=>"DropdownMenu.Content"===e?.type?.displayName?e:null))})};Xd.displayName="DropdownMenu.ContentWrapper";const Kd=({children:e,root:t,id:n})=>(0,L.jsx)(Fr,{id:n,root:t,children:e});Kd.displayName="DropdownMenu.Portal";const Zd=i.forwardRef((({children:e,className:t,...n},r)=>(0,i.isValidElement)(e)?i.cloneElement(e,{className:Ae(t,e.props.className),ref:r,...n}):(0,L.jsx)("div",{ref:r,className:Ae("cursor-pointer",t),role:"button",tabIndex:0,...n,children:e})));Zd.displayName="DropdownMenu.Trigger";const Jd=({children:e,className:t,...n})=>(0,L.jsx)("div",{className:Ae("border border-solid border-border-subtle rounded-md shadow-lg overflow-hidden",t),children:(0,L.jsx)(Ud,{...n,children:e})});Jd.displayName="DropdownMenu.Content";const Qd=e=>(0,L.jsx)(Ud.List,{...e});Qd.displayName="DropdownMenu.List";const em=({children:e,as:t=Ud.Item,...n})=>{const{handleClose:r}=Yd();return e?t===i.Fragment&&(0,i.isValidElement)(e)?(0,i.cloneElement)(e,{onClick:De(e.props?.onClick,r)}):(0,L.jsx)(t,{...n,className:Ae("px-2",n.className),onClick:De(n.onClick,r),children:e}):null};em.displayName="DropdownMenu.Item";const tm=e=>(0,L.jsx)(Ud.Separator,{...e});tm.displayName="DropdownMenu.Separator",Gd.Trigger=Zd,Gd.Content=Jd,Gd.List=Qd,Gd.Item=em,Gd.Separator=tm,Gd.Portal=Kd,Gd.ContentWrapper=Xd;const nm=Id("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]),rm=(0,i.forwardRef)((({label:e="",size:t="sm",className:n="",type:r="pill",variant:o="neutral",icon:a=null,disabled:s=!1,onClose:i=()=>{},closable:l=!1,onMouseDown:c=()=>{},disableHover:u=!1},d)=>{const m={neutral:"bg-badge-background-gray text-badge-color-gray border-badge-border-gray",red:"bg-badge-background-red text-badge-color-red border-badge-border-red",yellow:"bg-badge-background-yellow text-badge-color-yellow border-badge-border-yellow",green:"bg-badge-background-green text-badge-color-green border-badge-border-green",blue:"bg-badge-background-sky text-badge-color-sky border-badge-border-sky",inverse:"bg-background-inverse text-text-inverse border-background-inverse",disabled:"bg-badge-background-disabled text-badge-color-disabled border-badge-border-disabled disabled cursor-not-allowed"};let p="",f="group relative justify-center flex items-center cursor-pointer";const h={xxs:"[&>svg]:size-3",xs:"[&>svg]:size-3",sm:"[&>svg]:size-3",md:"[&>svg]:size-4",lg:"[&>svg]:size-5"};return s?(p=m.disabled,f+=" cursor-not-allowed disabled"):p=m[o],e?(0,L.jsxs)("span",{className:Ae("font-medium border-badge-border-gray flex items-center justify-center border border-solid box-border max-w-full transition-colors duration-150 ease-in-out",{xxs:"py-0.5 px-0.5 text-xs h-4",xs:"py-0.5 px-1 text-xs h-5",sm:"py-1 px-1.5 text-xs h-6",md:"py-1 px-1.5 text-sm h-7",lg:"py-1 px-1.5 text-base h-8"}[t],{pill:"rounded-full",rounded:"rounded"}[r],"gap-0.5",p,!u&&{neutral:"hover:bg-badge-hover-gray",red:"hover:bg-badge-hover-red",yellow:"hover:bg-badge-hover-yellow",green:"hover:bg-badge-hover-green",blue:"hover:bg-badge-hover-sky",inverse:"hover:bg-badge-hover-inverse",disabled:"hover:bg-badge-hover-disabled"}[o],n),ref:d,children:[a?(0,L.jsx)("span",{className:Ae("justify-center flex items-center",h[t]),children:a}):null,(0,L.jsx)("span",{className:"px-1 truncate inline-block",children:e}),l&&(0,L.jsxs)("span",{className:Ae(f,h[t]),onMouseDown:c,role:"button",tabIndex:0,...!s&&{onClick:i},children:[(0,L.jsx)("span",{className:"sr-only",children:`Remove ${e}`}),(0,L.jsx)(nm,{}),(0,L.jsx)("span",{className:"absolute -inset-1"})]})]}):null}));rm.displayName="Badge";const om=e=>{const t=(e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,((e,t,n)=>n?n.toUpperCase():t.toLowerCase())))(e);return t.charAt(0).toUpperCase()+t.slice(1)},am=(...e)=>e.filter(((e,t,n)=>Boolean(e)&&""!==e.trim()&&n.indexOf(e)===t)).join(" ").trim(),sm=e=>{for(const t in e)if(t.startsWith("aria-")||"role"===t||"title"===t)return!0};var im={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const lm=(0,i.forwardRef)((({color:e="currentColor",size:t=24,strokeWidth:n=2,absoluteStrokeWidth:r,className:o="",children:a,iconNode:s,...l},c)=>(0,i.createElement)("svg",{ref:c,...im,width:t,height:t,stroke:e,strokeWidth:r?24*Number(n)/Number(t):n,className:am("lucide",o),...!a&&!sm(l)&&{"aria-hidden":"true"},...l},[...s.map((([e,t])=>(0,i.createElement)(e,t))),...Array.isArray(a)?a:[a]]))),cm=(e,t)=>{const n=(0,i.forwardRef)((({className:n,...r},o)=>{return(0,i.createElement)(lm,{ref:o,iconNode:t,className:am(`lucide-${a=om(e),a.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase()}`,`lucide-${e}`,n),...r});var a}));return n.displayName=om(e),n},um=cm("arrow-up-right",[["path",{d:"M7 7h10v10",key:"1tivn9"}],["path",{d:"M7 17 17 7",key:"1vkiza"}]]),dm=cm("circle-question-mark",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]]),mm=cm("file-text",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]]),pm=cm("headset",[["path",{d:"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z",key:"12oyoe"}],["path",{d:"M21 16v2a4 4 0 0 1-4 4h-5",key:"1x7m43"}]]),fm=cm("user",[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2",key:"975kel"}],["circle",{cx:"12",cy:"7",r:"4",key:"17ys0d"}]]),hm=window.wp.i18n;var gm={dashboard:{path:"dashboard"},widgets:{path:"widgets"},templates:{path:"templates"},learn:{path:"learn"},settings:{path:"settings"},onboarding:{path:"onboarding"},upgrade:{path:"upgrade"},headerFooterBuilder:{path:"elementor-hf"},onboardingsuccess:{path:"onboardingsuccess"}},ym=function(){return ym=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},ym.apply(this,arguments)},vm=function(e,t,n,r){return new(n||(n=Promise))((function(o,a){function s(e){try{l(r.next(e))}catch(e){a(e)}}function i(e){try{l(r.throw(e))}catch(e){a(e)}}function l(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(s,i)}l((r=r.apply(e,t||[])).next())}))},xm=function(e,t){var n,r,o,a,s={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:i(0),throw:i(1),return:i(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function i(i){return function(l){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;a&&(a=0,i[0]&&(s=0)),s;)try{if(n=1,r&&(o=2&i[0]?r.return:i[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,i[1])).done)return o;switch(r=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,r=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((o=(o=s.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){s.label=i[1];break}if(6===i[0]&&s.label<o[1]){s.label=o[1],o=i;break}if(o&&s.label<o[2]){s.label=o[2],s.ops.push(i);break}o[2]&&s.ops.pop(),s.trys.pop();continue}i=t.call(e,s)}catch(e){i=[6,e],r=0}finally{n=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,l])}}},bm={rssFeedURL:"",selector:"",loaderIcon:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">\n\t<circle cx="50" cy="50" fill="none" stroke="#9f9f9f" stroke-width="10" r="35" stroke-dasharray="164.93361431346415 56.97787143782138">\n\t\t<animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"></animateTransform>\n\t</circle>\n\t</svg>',viewAll:{link:"",label:"View All"},triggerButton:{icon:'<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.61703 13.1998C8.04294 13.1503 7.46192 13.125 6.875 13.125H6.25C4.17893 13.125 2.5 11.4461 2.5 9.375C2.5 7.30393 4.17893 5.625 6.25 5.625H6.875C7.46192 5.625 8.04294 5.59972 8.61703 5.55018M8.61703 13.1998C8.82774 14.0012 9.1031 14.7764 9.43719 15.5195C9.64341 15.9782 9.48685 16.5273 9.05134 16.7787L8.50441 17.0945C8.04492 17.3598 7.45466 17.1921 7.23201 16.7106C6.70983 15.5811 6.30451 14.3866 6.03155 13.1425M8.61703 13.1998C8.29598 11.9787 8.125 10.6968 8.125 9.375C8.125 8.05316 8.29598 6.77125 8.61703 5.55018M8.61703 13.1998C11.25 13.427 13.737 14.1643 15.9789 15.3124M8.61703 5.55018C11.25 5.323 13.737 4.58569 15.9789 3.43757M15.9789 3.43757C15.8808 3.12162 15.7751 2.80903 15.662 2.5M15.9789 3.43757C16.4247 4.87356 16.7131 6.37885 16.8238 7.93326M15.9789 15.3124C15.8808 15.6284 15.7751 15.941 15.662 16.25M15.9789 15.3124C16.4247 13.8764 16.7131 12.3711 16.8238 10.8167M16.8238 7.93326C17.237 8.2772 17.5 8.79539 17.5 9.375C17.5 9.95461 17.237 10.4728 16.8238 10.8167M16.8238 7.93326C16.8578 8.40942 16.875 8.8902 16.875 9.375C16.875 9.8598 16.8578 10.3406 16.8238 10.8167" stroke="#94A3B8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>',beforeBtn:"",afterBtn:"",className:"",onClick:function(){}},notification:{setLastPostUnixTime:null,getLastPostUnixTime:null},flyout:{title:"What's New?",innerContent:{titleLink:!0,additionalClasses:[]},excerpt:{wordLimit:500,moreSymbol:"&hellip;",readMore:{label:"Read More",className:""}},className:"",closeOnEsc:!0,closeOnOverlayClick:!0,closeBtnIcon:'<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 18L18 6M6 6L18 18" stroke="#94A3B8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>',formatDate:null,onOpen:function(){},onClose:function(){},onReady:function(){}}},wm=function(){function e(e){this.rssFeedURLs=[],this.lastPostUnixTime=0,this.multiLastPostUnixTime={},this.notificationsCount=0,this.multiNotificationCount={},this.hasNewFeeds=!1,this.multiHasNewFeeds={},this.validateArgs(e),this.parseDefaults(e),this.setElement(),this.getElement()?(this.setID(),this.setRSSFeedURLs(),Em.setInstanceID(this.getID()),this.RSS_Fetch_Instance=new _m(this),this.RSS_View_Instance=new km(this),this.setNotificationsCount(),this.setTriggers()):console.warn("WNR: Cannot find element with",this.getArgs().selector)}return e.prototype.validateArgs=function(e){["rssFeedURL","selector"].map((function(t){if(!e[t])throw new Error("".concat(t," is a required argument. It cannot be empty or undefined."));if("rssFeedURL"===t){var n=e[t];Array.isArray(n)&&n.forEach((function(e){if(!(null==e?void 0:e.key))throw new Error('The parameter "key" is required for "'.concat(t,'" parameter in multi-feed mode.'));if(e.key.includes(" "))throw new Error('The parameter "key" cannot have spaces for "'.concat(t,'" parameter in multi-feed mode. Ref Key: "').concat(e.key,'"'))}))}}))},e.prototype.parseDefaults=function(e){var t,n;this.args=ym(ym(ym({},bm),e),{viewAll:ym(ym({},bm.viewAll),null==e?void 0:e.viewAll),triggerButton:ym(ym({},bm.triggerButton),null==e?void 0:e.triggerButton),flyout:ym(ym(ym({},bm.flyout),null==e?void 0:e.flyout),{innerContent:ym(ym({},bm.flyout.innerContent),null===(t=null==e?void 0:e.flyout)||void 0===t?void 0:t.innerContent),excerpt:ym(ym({},bm.flyout.excerpt),null===(n=null==e?void 0:e.flyout)||void 0===n?void 0:n.excerpt)})})},e.prototype.getArgs=function(){return this.args},e.prototype.setElement=function(){this.element=document.querySelector(this.args.selector)},e.prototype.getElement=function(){return this.element},e.prototype.setID=function(){var e=[this.getArgs().selector],t=this.getArgs().rssFeedURL;Array.isArray(t)?t.forEach((function(t){e.push(t.key)})):e.push(t),this.ID=btoa(e.join("-")).slice(-12).replace(/=/g,"")},e.prototype.isMultiFeedRSS=function(){return"string"!=typeof this.getArgs().rssFeedURL},e.prototype.setRSSFeedURLs=function(){var e=this,t=this.getArgs().rssFeedURL;this.isMultiFeedRSS()?Array.isArray(t)&&t.forEach((function(t){e.rssFeedURLs.push(t)})):this.rssFeedURLs.push({key:null,label:"",url:t.toString()})},e.prototype.getRSSFeedURLs=function(){return this.rssFeedURLs},e.prototype.getID=function(){return this.ID},e.prototype.setNotificationsCount=function(){return vm(this,void 0,void 0,(function(){var e=this;return xm(this,(function(t){switch(t.label){case 0:return[4,Promise.all(this.getRSSFeedURLs().map((function(t){var n=t.key;return vm(e,void 0,void 0,(function(){var e;return xm(this,(function(t){switch(t.label){case 0:return e=0,"function"!=typeof this.getArgs().notification.getLastPostUnixTime?[3,2]:[4,this.getArgs().notification.getLastPostUnixTime(n,this)];case 1:return e=t.sent(),[3,3];case 2:e=Em.getLastPostUnixTime(n),t.label=3;case 3:return this.isMultiFeedRSS()?this.multiLastPostUnixTime[n]=+e:this.lastPostUnixTime=+e,[2]}}))}))})))];case 1:return t.sent(),[4,this.RSS_Fetch_Instance.fetchData().then((function(t){Object.keys(t).forEach((function(n){var r=t[n];if(r.length){e.multiNotificationCount[n]=0;var o=+r[0].date,a=e.isMultiFeedRSS()?e.multiLastPostUnixTime[n]:e.lastPostUnixTime;o>a&&(r.forEach((function(t){t.date>a&&(e.isMultiFeedRSS()&&(e.multiNotificationCount[n]++,e.multiHasNewFeeds[n]=!0),e.notificationsCount++,e.hasNewFeeds=!0)})),e.RSS_View_Instance.setNotification(e.notificationsCount))}}))}))];case 2:return t.sent(),[2]}}))}))},e.prototype.getNotificationsCount=function(){return this.notificationsCount},e.prototype.setTriggers=function(){var e=this,t=document.getElementById(this.RSS_View_Instance.getTriggerButtonID()),n=document.getElementById(this.RSS_View_Instance.getFlyoutID()),r=n.querySelector(".whats-new-rss-flyout-inner-content"),o=document.getElementById(this.RSS_View_Instance.getFlyoutCloseBtnID()),a=document.getElementById(this.RSS_View_Instance.getFlyoutMultiFeedNavID()),s=function(t){e.RSS_Fetch_Instance.fetchData().then((function(o){r.innerHTML="";var a=o[t];if(a.length){var s=+a[0].date,i=e.isMultiFeedRSS()?e.multiLastPostUnixTime[t]:e.lastPostUnixTime;a.forEach((function(n){var o=!!i&&n.date>i,a=e.getArgs().flyout.innerContent.titleLink?'<a href="'.concat(n.postLink,'" target="_blank">\n\t\t\t\t\t\t\t\t<h2>').concat(n.title,"</h2>\n\t\t\t\t\t\t\t</a>"):"<h2>".concat(n.title,"</h2>"),s='\n\t\t\t\t\t\t\t\t<div class="rss-content-header">\n\t\t\t\t\t\t\t\t\t<p>'.concat(e.RSS_View_Instance.formatDate(new Date(n.date)),"</p>\n\t\t\t\t\t\t\t\t\t").concat(a,"\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t").concat(e.RSS_View_Instance.createExcerpt(n.description,n.postLink,e.getArgs().flyout.excerpt),"\n\t\t\t\t\t\t\t\t").concat(e.RSS_View_Instance.listChildrenPosts(n.children),"\n\t\t\t\t\t\t\t"),l=e.getArgs().flyout.innerContent.additionalClasses;t&&l.push("`inner-content-item-feed-key-${key}`"),r.innerHTML+=e.RSS_View_Instance.innerContentWrapper(s,o,l.join(" "))})),e.getArgs().viewAll.link&&(r.innerHTML+=e.RSS_View_Instance.innerContentWrapper('\n\t\t\t\t\t\t\t<a href="'.concat(e.getArgs().viewAll.link,'" class="button view-all">').concat(e.getArgs().viewAll.label,"</a>\n\t\t\t\t\t\t\t"))),e.RSS_View_Instance.setIsLoading(!1),n.classList.add("ready"),e.getArgs().flyout.onReady(e),n.focus(),e.isMultiFeedRSS()||(e.lastPostUnixTime=s,e.hasNewFeeds&&("function"==typeof e.getArgs().notification.setLastPostUnixTime?e.getArgs().notification.setLastPostUnixTime(s,t):Em.setLastPostUnixTime(s,t)))}}))};t.addEventListener("click",(function(t){if(t.preventDefault(),e.getArgs().triggerButton.onClick(e),e.RSS_View_Instance.setIsLoading(!0),n.classList.remove("closed"),n.classList.add("open"),document.body.classList.add("whats-new-rss-is-active"),e.getArgs().flyout.onOpen(e),!e.isMultiFeedRSS())return s(null);var r=a.querySelectorAll("button");r.forEach((function(t){e.RSS_View_Instance.setMultiFeedTabNotificationCount(t.dataset.feedKey,e.multiNotificationCount[t.dataset.feedKey]),t.addEventListener("click",(function(n){n.preventDefault();var o=t.dataset.feedKey;e.multiNotificationCount[o]=0,e.RSS_Fetch_Instance.fetchData().then((function(t){var n=t[o][0].date;e.multiLastPostUnixTime[o]=n,!0===e.multiHasNewFeeds[o]&&("function"==typeof e.getArgs().notification.setLastPostUnixTime?e.getArgs().notification.setLastPostUnixTime(n,o):Em.setLastPostUnixTime(n,o)),e.multiHasNewFeeds[o]=!1})),r.forEach((function(e){e.classList.remove("selected");var t=e.dataset.feedKey,n=".inner-content-item-feed-key-".concat(t);document.querySelectorAll(n).forEach((function(e){o!==t?e.classList.add("hidden"):e.classList.remove("hidden")}))})),t.classList.add("selected"),s(o)}))})),r[0].click()}));var i=function(){n.classList.add("closed"),n.classList.remove("open"),n.classList.remove("ready"),document.body.classList.remove("whats-new-rss-is-active"),e.isMultiFeedRSS()?e.RSS_View_Instance.setNotification(Object.values(e.multiNotificationCount).filter(Boolean).length):(e.hasNewFeeds=!1,e.RSS_View_Instance.setNotification(!1)),r.innerHTML="",e.getArgs().flyout.onClose(e),t.focus()};this.getArgs().flyout.closeOnEsc&&document.addEventListener("keydown",(function(e){"Escape"===e.key&&n.classList.contains("open")&&i()})),this.getArgs().flyout.closeOnOverlayClick&&n.querySelector(".whats-new-rss-flyout-overlay").addEventListener("click",i),o.addEventListener("click",i)},e}(),Em=function(){function e(){}return e.setInstanceID=function(e){this.instanceID||(this.instanceID=e)},e.prefixer=function(e,t){if(void 0===t&&(t=""),!this.instanceID)throw new Error("Instance ID not set.");return t?"".concat(this.keys[e],"-").concat(this.instanceID,"-").concat(t):"".concat(this.keys[e],"-").concat(this.instanceID)},e._setDataExpiry=function(e){void 0===e&&(e="");var t=(new Date).getTime()+864e5;sessionStorage.setItem(this.prefixer("SESSION_DATA_EXPIRY",e),JSON.stringify(t))},e._isDataExpired=function(e){void 0===e&&(e="");var t=this.prefixer("SESSION_DATA_EXPIRY",e),n=window.sessionStorage.getItem(t);if(!n)return!0;var r=JSON.parse(n);return(new Date).getTime()>r&&(window.sessionStorage.removeItem(t),!0)},e.setSessionData=function(e,t){return void 0===t&&(t=""),this._setDataExpiry(t),window.sessionStorage.setItem(this.prefixer("SESSION",t),e)},e.getSessionData=function(e){return void 0===e&&(e=""),this._isDataExpired(e)?"{}":window.sessionStorage.getItem(this.prefixer("SESSION",e))},e.setLastPostUnixTime=function(e,t){return void 0===t&&(t=""),window.localStorage.setItem(this.prefixer("LAST_LATEST_POST",t),e.toString())},e.getLastPostUnixTime=function(e){return void 0===e&&(e=""),+window.localStorage.getItem(this.prefixer("LAST_LATEST_POST",e))},e.keys={SESSION_DATA_EXPIRY:"whats-new-cache-expiry",LAST_LATEST_POST:"whats-new-last-unixtime",SESSION:"whats-new-cache"},e}(),_m=function(){function e(e){var t=this;this.data={},this.RSS=e,this.RSS.getRSSFeedURLs().forEach((function(e){var n=JSON.parse(Em.getSessionData(e.key));n&&n.length&&(t.data[e.key]=n)}))}return e.prototype.fetchData=function(){return vm(this,void 0,void 0,(function(){var e,t=this;return xm(this,(function(n){switch(n.label){case 0:return Object.keys(this.data).length?[2,this.data]:(e=this.RSS.getRSSFeedURLs().map((function(e){return vm(t,void 0,void 0,(function(){var t,n,r=this;return xm(this,(function(o){switch(o.label){case 0:return this.data[e.key]=[],[4,fetch(e.url)];case 1:return[4,o.sent().text()];case 2:return t=(t=o.sent()).replace(/&raquo;/g,"&amp;raquo;"),n=new DOMParser,n.parseFromString(t,"text/xml").querySelectorAll("item").forEach((function(t){var n,o=t.querySelector("title").textContent,a=t.querySelector("link").textContent,s=t.querySelector("content\\:encoded, encoded"),i=s?s.textContent:"",l=t.querySelector("pubDate").innerHTML;r.data[e.key].push({title:o,date:l?+new Date(l):null,postLink:a,description:i.replace(/<a\b((?:(?!target=)[^>])*)>/g,'<a$1 target="_blank">').replace(/<p>\s*<\/p>/g,""),children:JSON.parse((null===(n=t.querySelector("children"))||void 0===n?void 0:n.innerHTML)||"{}")})})),Em.setSessionData(JSON.stringify(this.data[e.key]),e.key),[2]}}))}))})),[4,Promise.all(e)]);case 1:return n.sent(),[2,this.data]}}))}))},e}(),km=function(){function e(e){this.RSS=e,this.createTriggerButton(),this.createFlyOut()}return e.prototype.getTriggerButtonID=function(){return"whats-new-rss-btn-".concat(this.RSS.getID())},e.prototype.getFlyoutID=function(){return"whats-new-rss-flyout-".concat(this.RSS.getID())},e.prototype.getFlyoutCloseBtnID=function(){return"whats-new-rss-flyout-close-".concat(this.RSS.getID())},e.prototype.getFlyoutMultiFeedNavID=function(){return"whats-new-rss-flyout-multi-feed-nav-".concat(this.RSS.getID())},e.prototype.setIsLoading=function(e){void 0===e&&(e=!1);var t=document.getElementById(this.getFlyoutID());e?t.classList.add("is-loading"):t.classList.remove("is-loading")},e.prototype.setNotification=function(e){var t=document.querySelector("#".concat(this.getTriggerButtonID()," .whats-new-rss-notification-badge"));e?(this.RSS.isMultiFeedRSS()?(t.innerHTML="",t.classList.add("is-multi-feed")):t.innerHTML=e>9?"9+":e.toString(),t.classList.remove("hide")):t.classList.add("hide")},e.prototype.createTriggerButton=function(){var e="\n\t\t".concat(this.RSS.getArgs().triggerButton.beforeBtn,'\n\t\t<a class="whats-new-rss-trigger-button" id="').concat(this.getTriggerButtonID(),'">\n\t\t\t').concat(this.RSS.getArgs().triggerButton.icon,'\n\t\t\t<div class="whats-new-rss-notification-badge hide">0</div>\n\t\t</a>\n\t\t').concat(this.RSS.getArgs().triggerButton.afterBtn,"\n\t\t");this.RSS.getElement().innerHTML+=e},e.prototype.createFlyOut=function(){var e=["whats-new-rss-flyout","closed"];this.RSS.getArgs().flyout.className&&e.push(this.RSS.getArgs().flyout.className);var t=[];this.RSS.isMultiFeedRSS()&&(t.push('<nav id="'.concat(this.getFlyoutMultiFeedNavID(),'" class="whats-new-rss-multi-feed-nav">')),this.RSS.getRSSFeedURLs().forEach((function(e){t.push('<button type="button" data-feed-key="'.concat(e.key,'">\n\t\t\t\t\t\t').concat(e.label,'\n\t\t\t\t\t\t<div class="new-notification-count"></div>\n\t\t\t\t\t</button>\n\t\t\t\t\t'))})),t.push("</nav>"));var n=document.createElement("div");n.setAttribute("id",this.getFlyoutID()),n.setAttribute("class",e.join(" ")),n.setAttribute("role","dialog"),n.innerHTML='\n\t\t<div class="whats-new-rss-flyout-contents">\n\n\t\t\t<div class="whats-new-rss-flyout-inner-header">\n\n\t\t\t\t<div class="whats-new-rss-flyout-inner-header__title-icon-wrapper">\n\t\t\t\t\t<h3>'.concat(this.RSS.getArgs().flyout.title,'</h3>\n\n\t\t\t\t\t<span class="whats-new-rss-flyout-inner-header__loading-icon">\n\t\t\t\t\t').concat(this.RSS.getArgs().loaderIcon,'\n\t\t\t\t\t</span>\n\t\t\t\t</div>\n\n\t\t\t\t<button type="button" id="').concat(this.getFlyoutCloseBtnID(),'">').concat(this.RSS.getArgs().flyout.closeBtnIcon,"</button>\n\t\t\t</div>\n\n\t\t\t").concat(t.join(""),'\n\n\t\t\t<div class="whats-new-rss-flyout-inner-content">\n\t\t\t\t<div class="skeleton-container">\n\t\t\t\t\t<div class="skeleton-row whats-new-rss-flyout-inner-content-item"></div>\n\t\t\t\t\t<div class="skeleton-row whats-new-rss-flyout-inner-content-item"></div>\n\t\t\t\t\t<div class="skeleton-row whats-new-rss-flyout-inner-content-item"></div>\n\t\t\t\t</div>\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<div class="whats-new-rss-flyout-overlay"></div>\n\t\t'),document.body.appendChild(n)},e.prototype.setMultiFeedTabNotificationCount=function(e,t){void 0===t&&(t=0);var n=document.querySelector("#".concat(this.getFlyoutMultiFeedNavID(),' button[data-feed-key="').concat(e,'"]'));if(n){var r=n.querySelector(".new-notification-count");if(t){var o=t>9?"9+":t;r.innerHTML=o.toString()}else r.innerHTML=""}},e.prototype.innerContentWrapper=function(e,t,n){void 0===t&&(t=!1),void 0===n&&(n="");var r=["whats-new-rss-flyout-inner-content-item"];return t&&r.push("rss-new-post"),n&&r.push(n),'\n\t\t<div class="'.concat(r.join(" "),'">\n\t\t\t').concat(t?'<small class="new-post-badge">New ✨</small>':"","\n\t\t\t").concat(e,"\n\t\t</div>\n\t\t")},e.prototype.createExcerpt=function(e,t,n){var r=n.wordLimit,o=n.moreSymbol,a=n.readMore;if(!r)return e;var s=e.replace(/<[^>]*>/g,"").split(/\s+/),i=s.slice(0,r).join(" ");return o&&(i+=o),r>s.length?e:t&&(null==a?void 0:a.label)?"<p>".concat(i,' <a href="').concat(t,'" target="_blank" class="').concat(a.className,'">').concat(a.label,"</a></p>"):"<p>".concat(i,"</p>")},e.prototype.listChildrenPosts=function(e){var t=this,n=Object.values(e);if(!n.length)return"";var r=document.createElement("details"),o=document.createElement("summary"),a=document.createElement("div");return n.forEach((function(e){var n=(new DOMParser).parseFromString(e.post_content,"text/html"),r=document.createElement("div");r.classList.add("sub-version-item"),r.innerHTML='\n\t\t\t\t<div class="sub-version-header">\n\t\t\t\t\t<h4 class="sub-version-title">'.concat(e.post_title,'</h4>\n\t\t\t\t\t<span class="sub-version-date">').concat(t.formatDate(new Date(e.post_date)),'</span>\n\t\t\t\t</div>\n\t\t\t\t<div class="sub-version-content">').concat(n.documentElement.textContent,"</div>\n\t\t\t"),a.appendChild(r)})),o.innerHTML='<p class="text-see-more">See More</p><p class="text-see-less">See Less</p>',r.appendChild(o),r.appendChild(a),a.classList.add("sub-version-items-wrapper"),r.classList.add("whats-new-rss-sub-version-details"),r.outerHTML},e.prototype.formatDate=function(e){if("function"==typeof this.RSS.getArgs().flyout.formatDate)return this.RSS.getArgs().flyout.formatDate(e);var t=new Date,n=e.getTime(),r=t.getTime()-n,o=36e5,a=24*o,s=7*a,i=30*a;if(r<6e4)return"Just now";if(r<o){var l=Math.floor(r/6e4);return"".concat(l," minute").concat(l>1?"s":""," ago")}if(r<a){var c=Math.floor(r/o);return"".concat(c," hour").concat(c>1?"s":""," ago")}if(r<s){var u=Math.floor(r/a);return"".concat(u," day").concat(u>1?"s":""," ago")}if(r<i){var d=Math.floor(r/s);return"".concat(d," week").concat(d>1?"s":""," ago")}var m=Math.floor(r/i);return"".concat(m," month").concat(m>1?"s":""," ago")},e}();function Sm(){var e=window.location.hash;document.querySelectorAll("#adminmenu #toplevel_page_hfe a").forEach((function(t){var n=t.getAttribute("href"),r=t.closest("li"),o=t.textContent.trim();n&&(e.includes(n.split("#")[1])||"#dashboard"===e&&"Dashboard"===o)?r.classList.add("current"):r.classList.remove("current")}))}const Nm=function(){var e=s((0,i.useState)(!1),2),t=(e[0],e[1]);(0,i.useEffect)((function(){return Sm(),window.addEventListener("hashchange",Sm),function(){window.removeEventListener("hashchange",Sm)}}),[]);var n=window.location.hash,r=function(e){return n.includes(e)},o=function(e){return{color:r(e)?"#111827":"#4B5563",borderBottom:r(e)?"2px solid #6005FF":"none",paddingBottom:"22px",marginBottom:"-16px"}},a=function(e){window.open(e,"_blank"),t(!1)};return function({selector:e,...t}){const n=(0,i.useRef)(null);(0,i.useEffect)((()=>{var r;return async function(){const e="whats-new-rss-styles";if(!document.getElementById(e)){const t=document.createElement("style");t.id=e,t.innerHTML=await async function(){return".whats-new-rss-is-active{overflow:hidden}.whats-new-rss-trigger-button{display:flex;align-items:center;position:relative;width:auto;padding:5px;cursor:pointer}.whats-new-rss-trigger-button .whats-new-rss-notification-badge{position:absolute;top:-8px;right:-5px;width:20px;font-size:10px;line-height:20px;text-align:center;border-radius:10px;color:#fff;background:red;transition:transform .2s ease-in-out}.whats-new-rss-trigger-button .whats-new-rss-notification-badge.is-multi-feed{top:-2px;right:-2px;font-size:0;width:10px;height:10px}.whats-new-rss-trigger-button .whats-new-rss-notification-badge.hide{display:none}.whats-new-rss-trigger-button:hover .whats-new-rss-notification-badge{transform:scale(1.2)}.whats-new-rss-flyout{position:fixed;top:0;right:0;bottom:0;width:100%;z-index:99999;transition:visibility .3s ease-in-out;font-family:Arial,Helvetica,sans-serif}.whats-new-rss-flyout .lightbox-trigger,.whats-new-rss-flyout.hidden{display:none}.whats-new-rss-flyout.is-loading .whats-new-rss-flyout-inner-header__loading-icon{display:block;margin:auto}.whats-new-rss-flyout.is-loading .whats-new-rss-flyout-inner-header__loading-icon svg{display:block;background:0 0;width:25px;height:25px}.whats-new-rss-flyout .whats-new-rss-flyout-contents{position:fixed;display:flex;right:0;width:30%;height:100%;flex-direction:column;background-color:#fff;transition:transform .3s ease-in-out;z-index:9999}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header{display:flex;justify-content:space-between;align-items:center;padding:16px 20px 16px 24px;border-bottom:1px solid #ccc}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header button{border:none;background:0 0;font-size:30px;cursor:pointer;color:#94a3b8;padding:0;margin:0;box-shadow:none}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header .whats-new-rss-flyout-inner-header__title-icon-wrapper{display:flex;gap:10px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header .whats-new-rss-flyout-inner-header__title-icon-wrapper h3{margin:0;padding:0;color:#0f172a;font-weight:600;font-size:16px;line-height:24px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav{display:flex;padding:0 30px;border-bottom:1px solid #ccc;gap:2em;overflow:auto;white-space:nowrap}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button{position:relative;background:0 0;color:inherit;padding:15px 0;border-bottom:2px solid transparent}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button:focus,.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button:hover{border-color:inherit}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button.selected{border-color:#5d5d5d}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button .new-notification-count{position:absolute;top:0;right:-10px;width:20px;font-size:10px;line-height:20px;text-align:center;border-radius:10px;color:#fff;background:red}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content{flex:1;overflow-y:auto}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .skeleton-container{margin:30px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item{border-bottom:1px solid #d8dfe9;padding:30px 24px;color:#475569;font-weight:400;font-size:14px;line-height:20px;display:flex;flex-direction:column;gap:13px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item>*{margin:0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item.skeleton-row{height:25vh;margin:40px 0;background:linear-gradient(90deg,#eee 25%,#ddd 50%,#eee 75%);background-size:200% 100%;animation:shimmer 1.5s infinite}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item.rss-new-post{position:relative}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item.rss-new-post .new-post-badge{background:#ff3d3d;border-radius:5px;position:absolute;right:45px;padding:0 5px;color:#fff}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item .rss-content-header{display:flex;flex-direction:column;gap:15px;padding:0 0 8px 0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item .rss-content-header p{color:#94a3b8;margin:0;padding:0;font-weight:600;font-size:14px;line-height:16px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item .rss-content-header h2{margin:0;color:#0f172a;font-weight:700;line-height:28px;font-size:20px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h2{font-weight:700;font-size:18px;line-height:24px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h3{font-weight:700;font-size:16px;line-height:22px;margin-top:12px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h4{font-weight:700;font-size:15px;line-height:20px;margin-top:12px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h5{font-weight:700;font-size:14px;line-height:18px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h6{font-weight:700;font-size:13px;line-height:16px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item p{padding:0;font-size:14px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item p:last-child{margin-bottom:0;padding-bottom:0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item a{color:#1170ff;text-decoration:none}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item figure{margin:10px 0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item figure.wp-block-embed.is-type-video{position:relative;width:100%;height:0;padding-bottom:56.25%}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item figure iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item video{vertical-align:middle;width:100%}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item strong{font-weight:600}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ol,.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ul{padding-inline-start:20px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ol li,.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ul li{margin-bottom:5px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ul{list-style-type:disc}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ol{list-style-type:decimal}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details{line-height:20px;font-size:.9em;margin:10px 0;background:#f9fafb}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary{display:flex;justify-content:space-between;cursor:pointer;padding:20px 15px;height:1em;line-height:20px;font-weight:800}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary::after{content:'⌃';font-size:20px;transform:rotateX(180deg);font-weight:800}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary .text-see-more{display:block}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary .text-see-less{display:none}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary{border-bottom:1px solid #e2e8f0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary::after{transform:rotateX(45deg)}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary .text-see-more{display:none}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary .text-see-less{display:block}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details .sub-version-item{position:relative;padding:1em;border-bottom:1px solid #e2e8f0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details .sub-version-item .sub-version-header{display:flex;justify-content:space-between}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details .sub-version-item .sub-version-content{margin-top:1em}.whats-new-rss-flyout .whats-new-rss-flyout-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,.5);transition:all .3s ease-in-out}.whats-new-rss-flyout.closed{visibility:hidden}.whats-new-rss-flyout.closed .whats-new-rss-flyout-overlay{opacity:0;visibility:hidden}.whats-new-rss-flyout.closed .whats-new-rss-flyout-contents{transform:translateX(100%)}.whats-new-rss-flyout .whats-new-rss-flyout-inner-header__loading-icon{display:none}@keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}@media screen and (max-width:1024px){.whats-new-rss-flyout .whats-new-rss-flyout-contents{width:40%}}@media screen and (max-width:768px){.whats-new-rss-flyout .whats-new-rss-flyout-contents{width:85%}}"}(),document.head.appendChild(t)}}(),n.current||(n.current=(r={selector:e,...t},new wm(r))),()=>{n.current&&"function"==typeof n.current.destroy&&n.current.destroy()}}),[e,...Object.values(t)]),n.current}({rssFeedURL:"https://ultimateelementor.com/whats-new/feed/",selector:"#hfe-whats-new",triggerButton:{beforeBtn:'<div class="w-4 sm:w-8 h-8 sm:h-10 flex items-center whitespace-nowrap justify-center cursor-pointer rounded-full border border-slate-200">',icon:'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#434141" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-megaphone"><path d="m3 11 18-5v12L3 14v-3z"></path><path d="M11.6 16.8a3 3 0 1 1-5.8-1.6"></path></svg>',afterBtn:"</div>"},flyout:{title:(0,hm.__)("What's New?","header-footer-elementor"),formatDate:function(e){var t=e.toLocaleDateString("en-US",{weekday:"long"}),n=e.toLocaleDateString("en-US",{month:"long"}),r=e.getDate(),o=e.getFullYear();return"".concat(t," ").concat(n," ").concat(r,", ").concat(o)}}}),c().createElement(ot,{className:"hfe-nav-menu relative",style:{width:"unset",padding:"0.5rem",zIndex:"9",paddingTop:"1rem"}},c().createElement("div",{className:"flex flex-col lg:flex-row items-start md:items-center w-full"},c().createElement("div",{className:"flex flex-row md:items-center md:gap-8 w-full"},c().createElement(ot.Left,null,c().createElement(ot.Item,null,c().createElement(D,{to:gm.dashboard.path},c().createElement("img",{src:"".concat(hfeSettingsData.icon_url),alt:"Icon",className:"ml-4 cursor-pointer",style:{height:"35px",width:"35px"}})))),c().createElement(ot.Middle,{className:"flex-grow",align:"left"},c().createElement(ot.Item,null,c().createElement("nav",{className:"flex flex-wrap gap-6 mt-2 md:mt-0 cursor-pointer"},c().createElement(D,{to:gm.dashboard.path,className:"".concat(r("dashboard")?"active-link":""),style:o("dashboard")},(0,hm.__)("Dashboard","header-footer-elementor")),c().createElement(D,{to:gm.headerFooterBuilder.path,className:"".concat(r("edit.php?post_type=elementor-hf")?"active-link":""),style:o("edit.php?post_type=elementor-hf"),onClick:function(){console.log("Navigating to Header & Footer Builder")}},(0,hm.__)("Header & Footer","header-footer-elementor")),c().createElement(D,{to:gm.widgets.path,className:"".concat(r("widgets")?"active-link":""),style:o("widgets")},(0,hm.__)("Widgets","header-footer-elementor")),c().createElement(D,{to:gm.learn.path,className:"".concat(r("learn")?"active-link":""),style:o("learn")},(0,hm.__)("Learn","header-footer-elementor")),c().createElement(D,{to:gm.settings.path,className:"".concat(r("settings")?"active-link":""),style:o("settings")},(0,hm.__)("Settings","header-footer-elementor")),c().createElement(D,{to:gm.upgrade.path,className:"".concat(r("upgrade")?"active-link":""),style:o("upgrade")},(0,hm.__)("Free vs Pro","header-footer-elementor")))),c().createElement(ot.Item,null,c().createElement(ct,{icon:c().createElement(um,null),iconPosition:"right",variant:"ghost",className:"hfe-remove-ring mb-2",style:{color:"#6005FF",background:"none",border:"none",padding:0,cursor:"pointer"},onClick:function(){return a("https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=navigation-bar&utm_campaign=uae-lite-upgrade")}},(0,hm.__)("Get Full Control","header-footer-elementor")))),c().createElement(ot.Right,{className:"gap-4"},c().createElement(ot.Item,null,c().createElement(Gd,{placement:"bottom-end"},c().createElement(Gd.Trigger,null,c().createElement(rm,{label:(0,hm.__)("Free","header-footer-elementor"),size:"xs",variant:"neutral"}),c().createElement("span",{className:"sr-only"},"Open Menu")),c().createElement(Gd.Portal,null,c().createElement(Gd.ContentWrapper,null,c().createElement(Gd.Content,{className:"w-60"},c().createElement(Gd.List,null,c().createElement(Gd.Item,null,(0,hm.__)("Version","header-footer-elementor")),c().createElement(Gd.Item,null,c().createElement("div",{className:"flex justify-between w-full"},"".concat(hfeSettingsData.uaelite_current_version),c().createElement(rm,{label:(0,hm.__)("Free","header-footer-elementor"),size:"xs",variant:"neutral"}))))))))),c().createElement(ot.Item,{className:"gap-4 cursor-pointer"},c().createElement(Gd,{placement:"bottom-end"},c().createElement(Gd.Trigger,null,c().createElement(dm,null)),c().createElement(Gd.Portal,null,c().createElement(Gd.ContentWrapper,null,c().createElement(Gd.Content,{className:"w-60"},c().createElement(Gd.List,null,c().createElement(Gd.Item,null,(0,hm.__)("Useful Resources","header-footer-elementor")),c().createElement(Gd.Item,{className:"text-text-primary",style:{color:"black"},onClick:function(){return a("https://ultimateelementor.com/docs/getting-started-with-ultimate-addons-for-elementor-lite/")}},c().createElement(mm,{style:{color:"black"}}),(0,hm.__)("Getting Started","header-footer-elementor")),c().createElement(Gd.Item,{onClick:function(){return a("https://ultimateelementor.com/docs-category/widgets/")}},c().createElement(mm,null),(0,hm.__)("How to use widgets","header-footer-elementor")),c().createElement(Gd.Item,{onClick:function(){return a("https://ultimateelementor.com/docs-category/features/")}},c().createElement(mm,null),(0,hm.__)("How to use features","header-footer-elementor")),c().createElement(Gd.Item,{onClick:function(){return a("https://ultimateelementor.com/docs-category/templates/")}},c().createElement(mm,null),(0,hm.__)("How to use templates","header-footer-elementor")),c().createElement(Gd.Item,{onClick:function(){return a("https://ultimateelementor.com/contact/")}},c().createElement(pm,null),(0,hm.__)("Contact us","header-footer-elementor"))))))),c().createElement("div",{className:"pb-1",id:"hfe-whats-new"})),c().createElement(D,{to:gm.settings.path},c().createElement(fm,{className:"cursor-pointer hfe-user-icon",style:{color:"black"}}))))))};function Cm(e){return function(e){if(Array.isArray(e))return r(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||a(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}const Pm=Id("Info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]),Tm=Id("Check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]),jm=Id("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]),Rm=Id("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]),Fm="light",Am="neutral",Dm=({icon:e,theme:t=Fm,variant:n=Am})=>{const r="[&>svg]:h-5 [&>svg]:w-5",o=(({theme:e=Fm,variant:t=Am})=>{let n="light"===e?"text-icon-secondary":"text-icon-inverse";return n={info:"light"===e?"text-support-info":"text-support-info-inverse",success:"light"===e?"text-support-success":"text-support-success-inverse",warning:"light"===e?"text-support-warning":"text-support-warning-inverse",error:"light"===e?"text-support-error":"text-support-error-inverse"}[t]||n,n})({theme:t,variant:n});if(e&&(0,i.isValidElement)(e))return(0,i.cloneElement)(e,{className:Ae(r,o,e?.props?.className??"")});const a={neutral:(0,L.jsx)(Pm,{className:Ae(r,o)}),info:(0,L.jsx)(Pm,{className:Ae(r,o)}),success:(0,L.jsx)(Tm,{className:Ae(r,o)}),warning:(0,L.jsx)(jm,{className:Ae(r,o)}),error:(0,L.jsx)(Rm,{className:Ae(r,o)})};return a[n]||a.neutral},Mm=({actionType:e="button",onAction:t=()=>{},actionLabel:n="",theme:r=Fm})=>{const o="focus:ring-0 focus:ring-offset-0 ring-offset-0 focus:outline-none";let a="text-button-primary border-button-primary hover:border-button-primary hover:text-button-primary-hover";switch("dark"===r&&(a="text-text-inverse border-text-inverse hover:border-text-inverse hover:text-text-inverse"),e){case"button":return(0,L.jsx)(ct,{variant:"outline",size:"xs",onClick:t,className:Ae("rounded",o,a,"dark"===r?"bg-transparent hover:bg-transparent":"bg-white hover:bg-white"),children:n});case"link":return(0,L.jsx)(ct,{variant:"link",size:"xs",onClick:t,className:Ae(o,a),children:n});default:return null}},Om=({theme:e=Fm,title:t="",inline:n=!1})=>t?(0,L.jsx)("span",{className:Ae("block",{light:"text-text-primary",dark:"text-text-inverse"}[e],"text-sm leading-5 font-semibold",n?"inline":"block"),children:t}):null,Lm=({theme:e=Fm,content:t="",inline:n=!1})=>t?(0,L.jsx)("span",{className:Ae({light:"text-text-primary",dark:"text-text-inverse"}[e],"block text-sm [&_*]:text-sm leading-5 [&_*]:leading-5 font-normal [word-break:break-word]",n?"inline":"block"),children:t}):null,Im=(...e)=>t=>{e.forEach((e=>{"function"==typeof e?e(t):e&&(e.current=t)}))},Bm=({variant:e="dark",placement:t="bottom",title:n="",content:r,arrow:o=!1,open:a,setOpen:s,children:l,className:c,tooltipPortalRoot:u,tooltipPortalId:d,boundary:m="clippingAncestors",strategy:p="fixed",offset:f=8,triggers:h=["hover","focus"],interactive:g=!1})=>{const y=(0,i.useMemo)((()=>"boolean"==typeof a&&"function"==typeof s),[a,s]),[v,x]=(0,i.useState)(!1),b=(0,i.useRef)(null),{refs:w,floatingStyles:E,context:_}=Ur({open:y?a:v,onOpenChange:y?s:x,placement:t,strategy:p,middleware:[er(f),nr({boundary:m}),tr({boundary:m}),(M={element:b},{...Qn(M),options:[M,undefined]})],whileElementsMounted:Un}),k=Lr(_,{enabled:!y&&h.includes("click")}),S=function(e,t){void 0===t&&(t={});const{open:n,onOpenChange:r,dataRef:o,events:a,elements:s}=e,{enabled:l=!0,delay:c=0,handleClose:u=null,mouseOnly:d=!1,restMs:m=0,move:p=!0}=t,f=gr(),h=hr(),g=vr(u),y=vr(c),v=vr(n),x=i.useRef(),b=i.useRef(-1),w=i.useRef(),E=i.useRef(-1),_=i.useRef(!0),k=i.useRef(!1),S=i.useRef((()=>{})),N=i.useRef(!1),C=i.useCallback((()=>{var e;const t=null==(e=o.current.openEvent)?void 0:e.type;return(null==t?void 0:t.includes("mouse"))&&"mousedown"!==t}),[o]);i.useEffect((()=>{if(l)return a.on("openchange",e),()=>{a.off("openchange",e)};function e(e){let{open:t}=e;t||(clearTimeout(b.current),clearTimeout(E.current),_.current=!0,N.current=!1)}}),[l,a]),i.useEffect((()=>{if(!l)return;if(!g.current)return;if(!n)return;function e(e){C()&&r(!1,e,"hover")}const t=Lt(s.floating).documentElement;return t.addEventListener("mouseleave",e),()=>{t.removeEventListener("mouseleave",e)}}),[s.floating,n,r,l,g,C]);const P=i.useCallback((function(e,t,n){void 0===t&&(t=!0),void 0===n&&(n="hover");const o=br(y.current,"close",x.current);o&&!w.current?(clearTimeout(b.current),b.current=window.setTimeout((()=>r(!1,e,n)),o)):t&&(clearTimeout(b.current),r(!1,e,n))}),[y,r]),T=ar((()=>{S.current(),w.current=void 0})),j=ar((()=>{if(k.current){const e=Lt(s.floating).body;e.style.pointerEvents="",e.removeAttribute(xr),k.current=!1}})),R=ar((()=>!!o.current.openEvent&&["click","mousedown"].includes(o.current.openEvent.type)));i.useEffect((()=>{if(l&&ht(s.domReference)){var e;const r=s.domReference;return n&&r.addEventListener("mouseleave",i),null==(e=s.floating)||e.addEventListener("mouseleave",i),p&&r.addEventListener("mousemove",t,{once:!0}),r.addEventListener("mouseenter",t),r.addEventListener("mouseleave",a),()=>{var e;n&&r.removeEventListener("mouseleave",i),null==(e=s.floating)||e.removeEventListener("mouseleave",i),p&&r.removeEventListener("mousemove",t),r.removeEventListener("mouseenter",t),r.removeEventListener("mouseleave",a)}}function t(e){if(clearTimeout(b.current),_.current=!1,d&&!Ot(x.current)||m>0&&!br(y.current,"open"))return;const t=br(y.current,"open",x.current);t?b.current=window.setTimeout((()=>{v.current||r(!0,e,"hover")}),t):n||r(!0,e,"hover")}function a(e){if(R())return;S.current();const t=Lt(s.floating);if(clearTimeout(E.current),N.current=!1,g.current&&o.current.floatingContext){n||clearTimeout(b.current),w.current=g.current({...o.current.floatingContext,tree:f,x:e.clientX,y:e.clientY,onClose(){j(),T(),R()||P(e,!0,"safe-polygon")}});const r=w.current;return t.addEventListener("mousemove",r),void(S.current=()=>{t.removeEventListener("mousemove",r)})}("touch"!==x.current||!Rt(s.floating,e.relatedTarget))&&P(e)}function i(e){R()||o.current.floatingContext&&(null==g.current||g.current({...o.current.floatingContext,tree:f,x:e.clientX,y:e.clientY,onClose(){j(),T(),R()||P(e)}})(e))}}),[s,l,e,d,m,p,P,T,j,r,n,v,f,y,g,o,R]),sr((()=>{var e;if(l&&n&&null!=(e=g.current)&&e.__options.blockPointerEvents&&C()){k.current=!0;const e=s.floating;if(ht(s.domReference)&&e){var t;const n=Lt(s.floating).body;n.setAttribute(xr,"");const r=s.domReference,o=null==f||null==(t=f.nodesRef.current.find((e=>e.id===h)))||null==(t=t.context)?void 0:t.elements.floating;return o&&(o.style.pointerEvents=""),n.style.pointerEvents="none",r.style.pointerEvents="auto",e.style.pointerEvents="auto",()=>{n.style.pointerEvents="",r.style.pointerEvents="",e.style.pointerEvents=""}}}}),[l,n,h,s,f,g,C]),sr((()=>{n||(x.current=void 0,N.current=!1,T(),j())}),[n,T,j]),i.useEffect((()=>()=>{T(),clearTimeout(b.current),clearTimeout(E.current),j()}),[l,s.domReference,T,j]);const F=i.useMemo((()=>{function e(e){x.current=e.pointerType}return{onPointerDown:e,onPointerEnter:e,onMouseMove(e){const{nativeEvent:t}=e;function o(){_.current||v.current||r(!0,t,"hover")}d&&!Ot(x.current)||n||0===m||N.current&&e.movementX**2+e.movementY**2<2||(clearTimeout(E.current),"touch"===x.current?o():(N.current=!0,E.current=window.setTimeout(o,m)))}}}),[d,r,n,v,m]),A=i.useMemo((()=>({onMouseEnter(){clearTimeout(b.current)},onMouseLeave(e){R()||P(e.nativeEvent,!1)}})),[P,R]);return i.useMemo((()=>l?{reference:F,floating:A}:{}),[l,F,A])}(_,{move:!1,enabled:!y&&h.includes("hover"),...g&&{handleClose:eo()}}),N=Wr(_,{enabled:!y&&h.includes("focus")}),C=Vr(_),P=Xr(_,{role:"tooltip"}),{getReferenceProps:T,getFloatingProps:j}=Yr([k,S,N,C,P]),{isMounted:R,styles:F}=Jr(_,{duration:150,initial:{opacity:0},open:{opacity:1},close:{opacity:0}}),A={light:"bg-tooltip-background-light text-text-primary",dark:"bg-tooltip-background-dark text-text-on-color"}[e],D="dark"===e?"text-tooltip-background-dark":"text-tooltip-background-light";var M;return(0,L.jsxs)(i.Fragment,{children:[(0,i.isValidElement)(l)&&(0,L.jsx)(i.Fragment,{children:(0,i.cloneElement)(l,{ref:Im(l.ref,w.setReference),className:Ae(l.props.className),...T()})},"tooltip-reference"),(0,L.jsx)(Fr,{id:d,root:u,children:R&&(0,L.jsxs)("div",{className:Ae("absolute z-20 py-2 px-3 rounded-md text-xs leading-4 shadow-soft-shadow-lg",A,"max-w-80 w-fit",c),ref:w.setFloating,style:{...E,...F},...j(),children:[(0,L.jsxs)("div",{children:[!!n&&(0,L.jsx)("span",{className:"font-semibold",children:n},"tooltip-title"),!!r&&(0,L.jsx)("div",{className:"font-normal",children:r},"tooltip-content")]}),o&&(0,L.jsx)(mr,{ref:b,context:_,className:Ae("fill-current",D)})]})})]})};Bm.displayName="Tooltip";const zm=(0,i.forwardRef)((({children:e=null,tag:t="label",size:n="sm",className:r="",variant:o="neutral",required:a=!1,...s},i)=>{if(!e)return null;let l="";return a&&(l="after:content-['*'] after:text-field-required after:ml-0.5"),(0,L.jsx)(t,{ref:i,className:Ae("font-medium text-field-label flex items-center gap-0.5",{xs:"text-xs [&>*]:text-xs [&>svg]:h-3 [&>svg]:w-3",sm:"text-sm [&>*]:text-sm [&>svg]:h-4 [&>svg]:w-4",md:"text-base [&>*]:text-base [&>svg]:h-5 [&>svg]:w-5"}[n],{neutral:"text-field-label [&>*]:text-field-label",help:"text-field-helper [&>*]:text-field-helper",error:"text-support-error [&>*]:text-support-error",disabled:"text-field-color-disabled disabled cursor-not-allowed [&>*]:text-field-color-disabled"}[o],l,{neutral:"",help:"font-normal",error:"font-normal",disabled:""}?.[o],r),...s,children:e})}));zm.displayName="Label";const Vm=({label:e,switchId:t,disabled:n=!1,children:r,size:o})=>{const a={xs:"text-xs leading-4 font-medium",sm:"text-sm leading-5 font-medium",md:"text-base leading-6 font-medium"},s={xs:"text-xs leading-4 font-normal",sm:"text-sm leading-5 font-normal",md:"text-sm leading-5 font-normal"},l={xs:"space-y-0.5",sm:"space-y-0.5",md:"space-y-1"};if((0,i.isValidElement)(e))return(0,L.jsxs)("div",{className:Ae("inline-flex items-center gap-3","items-start"),children:[r,e]});const c=!e?.heading&&!e?.description,u=e?.heading&&e?.description?"items-start":"items-center";return c?r:(0,L.jsxs)("div",{className:Ae("inline-flex",u,"gap-3"),children:[r,(()=>{const{heading:r="",description:i=""}=e||{};return(0,L.jsxs)("div",{className:Ae("space-y-0.5",l[o]),children:[r&&(0,L.jsx)(zm,{htmlFor:t,className:Ae("m-0",a[o]),...n&&{variant:"disabled"},children:r}),i&&(0,L.jsx)(zm,{tag:"p",variant:"help",className:Ae("text-sm font-normal leading-5 m-0",s[o]),...n&&{variant:"disabled"},children:i})]})})()]})},Um=(0,i.forwardRef)((({id:e,onChange:t,value:n,defaultValue:r=!1,size:o="sm",disabled:a=!1,label:s={heading:"",description:""},name:l,className:c,...u},d)=>{const m="lg"===o?"md":o,p=(0,i.useMemo)((()=>typeof n<"u"),[n]),f=(0,i.useMemo)((()=>e||`switch-${((e=21)=>{let t="",n=crypto.getRandomValues(new Uint8Array(e|=0));for(;e--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[63&n[e]];return t})()}`),[]),[h,g]=(0,i.useState)(r),y="primary",v=(0,i.useCallback)((()=>p?n:h),[p,n,h]),x={primary:{input:"bg-toggle-off checked:bg-toggle-on focus:ring focus:ring-toggle-on focus:ring-offset-2 border border-solid border-toggle-off-border checked:border-toggle-on-border shadow-toggleContainer focus:outline-none checked:focus:border-toggle-on-border focus:border-toggle-off-border",toggleDial:"bg-toggle-dial-background shadow-toggleDial"}},b={md:{container:"w-11 h-6",toggleDial:"size-4 peer-checked:translate-x-5"},sm:{container:"w-10 h-5",toggleDial:"size-3 peer-checked:translate-x-5"},xs:{container:"w-8 h-4",toggleDial:"size-2.5 peer-checked:translate-x-3.75"}};return(0,L.jsx)(Vm,{label:s,switchId:f,disabled:a,size:m,children:(0,L.jsxs)("div",{className:Ae("relative group/switch inline-block cursor-pointer rounded-full shrink-0",b[m].container,c),children:[(0,L.jsx)("input",{ref:d,id:f,type:"checkbox",className:Ae("peer appearance-none absolute rounded-full cursor-pointer transition-colors duration-300 h-full w-full  before:content-[''] checked:before:content-[''] m-0 checked:[background-image:none]",x[y].input,a&&"bg-toggle-off-disabled disabled:border-transparent disabled:cursor-not-allowed checked:disabled:bg-toggle-on-disabled disabled:shadow-toggle-disabled",!a&&{primary:{input:"group-hover/switch:bg-toggle-off-hover checked:group-hover/switch:bg-toggle-on-hover checked:group-hover/switch:border-toggle-on-border"}}[y].input),checked:v(),onChange:e=>{if(a)return;const n=e.target.checked;p||g(n),"function"==typeof t&&t(n)},disabled:a,name:l,...u}),(0,L.jsx)("label",{htmlFor:f,className:Ae("peer/toggle-dial bg-white border rounded-full absolute cursor-pointer shadow-md before:content[''] before:transition-opacity before:opacity-0 hover:before:opacity-10 before:hidden border-none transition-all duration-300 top-2/4 not-rtl:left-1 rtl:right-1 -translate-y-2/4 before:w-10 before:h-10 before:rounded-full before:absolute before:top-2/4 not-rtl:before:left-2/4 rtl:before:right-2/4 before:-translate-y-2/4 before:-translate-x-2/4",b[m].toggleDial,x[y].toggleDial,a&&"peer-disabled:cursor-not-allowed",!a&&{md:"group-hover/switch:size-5 group-focus-within/switch:size-5 not-rtl:group-focus-within/switch:left-0.5 rtl:group-focus-within/switch:right-0.5 not-rtl:group-hover/switch:left-0.5 rtl:group-hover/switch:right-0.5",sm:"group-hover/switch:size-4 group-focus-within/switch:size-4 not-rtl:group-focus-within/switch:left-0.5 rtl:group-focus-within/switch:right-0.5 not-rtl:group-hover/switch:left-0.5 rtl:group-hover/switch:right-0.5",xs:"group-hover/switch:size-3.25 group-focus-within/switch:size-3.25 not-rtl:group-focus-within/switch:left-0.5 rtl:group-focus-within/switch:right-0.5 not-rtl:group-hover/switch:left-0.5 rtl:group-hover/switch:right-0.5"}[m])})]})})}));Um.displayName="Switch";const Wm=cm("monitor",[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21",key:"1svkeh"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21",key:"vw1qmm"}]]),Hm=window.wp.apiFetch;var $m=o.n(Hm),qm=[],Ym=function(){0!==qm.length&&qm.shift()()};const Gm=function(e){var t=e.widget,n=e.updateCounter,r=(e.showTooltip,t.id),o=t.icon,a=t.title,l=(t.infoText,t.is_pro),u=(t.is_active,t.slug,t.demo_url),d=(t.doc_url,t.description),m=(t.is_new,s((0,i.useState)(t.is_active),2)),p=m[0],f=m[1],h=s((0,i.useState)(!1),2),g=h[0],y=h[1],v=s((0,i.useState)(!1),2),x=v[0],b=v[1],w=s((0,i.useState)(!1),2),E=w[0],_=w[1];(0,i.useEffect)((function(){f(t.is_active)}),[t.is_active,n]);var k=function(e){var t=e?"hfe_deactivate_widget":"hfe_activate_widget",n=new window.FormData;n.append("action",t),n.append("nonce",hfe_admin_data.nonce),n.append("module_id",r),n.append("is_pro",l);try{var o=$m()({url:hfe_admin_data.ajax_url,method:"POST",body:n});o.success?f(p):o.error}catch(e){}finally{y(!1),Ym()}};return c().createElement(c().Fragment,null,c().createElement("style",{dangerouslySetInnerHTML:{__html:"\n\t\t\t\t\t.hfe-uae-pro-link:focus,\n\t\t\t\t\t.hfe-uae-pro-link:active,\n\t\t\t\t\t.hfe-uae-pro-link:hover,\n\t\t\t\t\t.hfe-uae-pro-link:focus-visible {\n\t\t\t\t\t\toutline: none !important;\n\t\t\t\t\t\tbox-shadow: none !important;\n\t\t\t\t\t\tborder: none !important;\n\t\t\t\t\t}\n\t\t\t\t"}}),c().createElement(nt,{align:"center",containerType:"flex",direction:"column",justify:"between",gap:""},c().createElement("div",{className:"flex items-start justify-between w-full mb-4"},c().createElement("div",{className:"h-10 w-10 ".concat(null==o?void 0:o.props),style:{fontSize:"22px"}},o),c().createElement("div",{className:"flex items-center gap-x-2"},l?c().createElement(Bm,{arrow:!0,content:c().createElement("div",{style:{textAlign:"left",maxWidth:"280px"}},c().createElement("div",{style:{display:"flex",alignItems:"center",marginBottom:"8px",gap:"6px"}},c().createElement("span",{style:{fontSize:"14px",fontWeight:"600",color:"#ffffff",lineHeight:"1.2"}},a),c().createElement("span",{style:{backgroundColor:"#C026D3",color:"#ffffff",fontSize:"10px",fontWeight:"600",padding:"2px 6px",borderRadius:"4px",textTransform:"uppercase",letterSpacing:"0.5px"}},(0,hm.__)("PRO","header-footer-elementor"))),c().createElement("p",{style:{fontSize:"12px",color:"#E5E7EB",margin:"0 0 12px 0",lineHeight:"1.4"}},d),c().createElement("a",{href:"https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=pro-widgets&utm_campaign=uae-upgrade",target:"_blank",rel:"noopener noreferrer",style:{color:"#C026D3",textDecoration:"none",outline:"none",fontSize:"12px",fontWeight:"600"},className:"hfe-uae-pro-link focus:outline-none"},(0,hm.__)("Get Full Control","header-footer-elementor"))),placement:"bottom",variant:"dark",size:"md",triggers:["click"],open:x,onOpenChange:b},c().createElement("div",{onClick:function(){return b(!x)},style:{cursor:"pointer"}},c().createElement(Um,{onChange:function(){},size:"xs",value:!1,disabled:!0,style:{outline:"none",cursor:"default",pointerEvents:"none"},className:"hfe-remove-ring outline-none"}))):c().createElement(Um,{onChange:function(){g||(y(!0),p?(f(!1),qm.push((function(){return k(p)}))):(f(!0),qm.push((function(){return k(p)}))),1===qm.length&&Ym())},size:"xs",value:p,style:{outline:"none"},className:"hfe-remove-ring outline-none"}))),c().createElement("div",{className:"flex items-start justify-between w-full"},c().createElement("p",{className:"text-sm font-medium text-text-primary m-0 w-full leading-tight flex items-center overflow-hidden",style:{display:"-webkit-box",WebkitLineClamp:1,WebkitBoxOrient:"vertical",wordBreak:"break-word"}},a),c().createElement("div",{className:"ml-2"},c().createElement(Bm,{arrow:!0,content:c().createElement("div",null,u&&c().createElement("a",{href:u,target:"_blank",rel:"noopener noreferrer",className:"text-white focus:outline-none m-0 mb-1 hfe-remove-ring",style:{textDecoration:"none",lineHeight:"1.5rem",outline:"none",border:"none",boxShadow:"none",fontSize:"12px"}},(0,hm.__)("View Demo","header-footer-elementor"))),placement:"bottom",title:"",triggers:["click"],variant:"dark",size:"xs",open:E,onOpenChange:_},c().createElement("div",{onClick:function(e){e.stopPropagation(),_(!E)},onMouseEnter:function(){return _(!0)},onMouseLeave:function(){return _(!1)},style:{cursor:u?"pointer":"default"},className:"inline-flex items-center"},c().createElement(Wm,{className:"h-4 w-4",size:16,color:"#A0A5B2"})))))))},Xm=({variant:e="rectangular",className:t,...n})=>{const r={circular:"rounded-full bg-gray-200 ",rectangular:"rounded-md bg-gray-200"}[e],o={circular:"size-10",rectangular:"w-96 h-3"}[e];return(0,L.jsx)("div",{className:Ae(r,"animate-pulse",o,t),...n})},Km=function(){var e=s((0,i.useState)(null),2),t=e[0],n=e[1],r=s((0,i.useState)(!0),2),o=r[0],a=r[1],l=s((0,i.useState)(!0),2),u=l[0];return l[1],(0,i.useEffect)((function(){a(!0),$m()({path:"/hfe/v1/widgets",headers:{"Content-Type":"application/json","X-WP-Nonce":hfeSettingsData.hfe_nonce_action}}).then((function(e){var t=function(e){var t=[];for(var n in e)if(e.hasOwnProperty(n)){var r=e[n];t.push({id:n,slug:r.slug,title:r.title,keywords:r.keywords,icon:c().createElement("i",{className:r.icon}),title_url:r.title_url,default:r.default,doc_url:r.doc_url,is_pro:r.is_pro,description:r.description,is_active:void 0===r.is_activate||r.is_activate,demo_url:void 0!==r.demo_url?r.demo_url:r.doc_url})}return t}(e);n(t),a(!1)})).catch((function(e){a(!1)}))}),[]),c().createElement("div",{className:"rounded-lg bg-white w-full mb-6"},c().createElement("div",{className:"flex items-center justify-between p-4",style:{paddingBottom:"0"}},c().createElement("p",{className:"m-0 text-sm font-semibold text-text-primary"},(0,hm.__)("Widgets / Features","header-footer-elementor")),c().createElement(ct,{icon:c().createElement(um,null),iconPosition:"right",variant:"ghost",className:"hfe-remove-ring mb-2",style:{color:"#6005FF",background:"none",border:"none",padding:0,cursor:"pointer"},onClick:function(){return window.open("https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=navigation-bar&utm_campaign=uae-lite-upgrade","_blank")}},(0,hm.__)("Unlock All Features","header-footer-elementor"))),c().createElement("div",{className:"flex bg-black flex-col rounded-lg p-4"},o?c().createElement(nt,{align:"stretch",className:"p-2 gap-1.5 grid grid-cols-2 md:grid-cols-4",style:{backgroundColor:"#F9FAFB"},containerType:"grid",gap:"",justify:"start"},Cm(Array(16)).map((function(e,t){return c().createElement(nt.Item,{key:t,alignSelf:"auto",className:"text-wrap rounded-md shadow-container-item bg-background-primary p-6 space-y-2"},c().createElement(Xm,{className:"w-12 h-2 rounded-md"}),c().createElement(Xm,{className:"w-16 h-2 rounded-md"}),c().createElement(Xm,{className:"w-12 h-2 rounded-md"}))}))):c().createElement(nt,{align:"stretch",className:"p-2 gap-1.5 grid grid-cols-2 md:grid-cols-4",style:{backgroundColor:"#F9FAFB"},containerType:"grid",gap:"",justify:"start"},null==t?void 0:t.slice(10,18).map((function(e){return c().createElement(nt.Item,{key:e.id,alignSelf:"auto",className:"text-wrap rounded-md shadow-container-item bg-background-primary px-4",style:{paddingTop:"8px",paddingBottom:"8px"}},c().createElement(Gm,{widget:e,showTooltip:u,key:e.id,updateCounter:0}))}))),c().createElement("div",{className:"flex items-center justify-center gap-x-2 "},c().createElement(D,{to:gm.widgets.path,className:"text-sm font-normal text-text-primary cursor-pointer",style:{lineHeight:"1rem",paddingTop:"20px"}},(0,hm.__)("View More Widgets","header-footer-elementor"),c().createElement(um,{className:"ml-1 font-semibold",size:14})))))},Zm=({title:e="",description:t="",icon:n=null,iconPosition:r="right",tag:o="h2",size:a="sm",className:s=""})=>{const i={xs:"gap-1 [&>svg]:size-3.5",sm:"gap-1 [&>svg]:size-4",md:"gap-1.5 [&>svg]:size-5",lg:"gap-1.5 [&>svg]:size-5"};if(!e)return null;const l=()=>(0,L.jsx)(o,{className:Ae("font-semibold p-0 m-0",{xs:"text-base [&>*]:text-base gap-1",sm:"text-lg [&>*]:text-lg gap-1",md:"text-xl [&>*]:text-xl gap-1.5",lg:"text-2xl [&>*]:text-2xl gap-1.5"}[a]),children:e});return t?(0,L.jsxs)("div",{className:s,children:[(0,L.jsxs)("div",{children:[n&&"left"===r&&(0,L.jsxs)("div",{className:Ae("flex items-center",i[a]),children:[n,l()]}),n&&"right"===r&&(0,L.jsxs)("div",{className:Ae("flex items-center",i[a]),children:[l(),n]}),!n&&l()]}),(0,L.jsx)("p",{className:Ae("text-text-secondary font-normal my-0",{xs:"text-sm",sm:"text-sm",md:"text-base",lg:"text-base"}[a]),children:t})]}):(0,L.jsxs)("div",{className:s,children:[n&&"left"===r&&(0,L.jsxs)("div",{className:Ae("flex items-center",i[a]),children:[n,l()]}),n&&"right"===r&&(0,L.jsxs)("div",{className:Ae("flex items-center",i[a]),children:[l(),n]}),!n&&l()]})},Jm=cm("headphones",[["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3",key:"1xhozi"}]]),Qm=cm("book-open-text",[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M16 12h2",key:"7q9ll5"}],["path",{d:"M16 8h2",key:"msurwy"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}],["path",{d:"M6 12h2",key:"32wvfc"}],["path",{d:"M6 8h2",key:"30oboj"}]]),ep=cm("notepad-text",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"16",height:"18",x:"4",y:"4",rx:"2",key:"1u9h20"}],["path",{d:"M8 10h6",key:"3oa6kw"}],["path",{d:"M8 14h8",key:"1fgep2"}],["path",{d:"M8 18h5",key:"17enja"}]]),tp=cm("star",[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]]),np=function(){return c().createElement("div",{className:"box-border hfe-dashboard-quick-access p-4 bg-white rounded-lg shadow-md",style:{width:"-webkit-fill-available"}},c().createElement(Zm,{className:"mb-2",icon:null,iconPosition:"right",size:"xs",tag:"h3",title:(0,hm.__)("Quick Access","header-footer-elementor")}),c().createElement(nt,{align:"stretch",className:"p-1 rounded-lg bg-[#F9FAFB] gap-1",containerType:"flex",direction:"column",gap:"",justify:"start",style:{width:"100%",backgroundColor:"#F9FAFB"}},c().createElement(nt.Item,{alignSelf:"auto",className:"p-4 bg-white flex items-center justify-between rounded-lg shadow-container-item",order:"none",shrink:1},c().createElement(ct,{className:"text-black hfe-remove-ring",icon:c().createElement(Jm,null),iconPosition:"left",variant:"link",onClick:function(){window.open("https://ultimateelementor.com/contact/","_blank")}},(0,hm.__)("VIP Priority Support","header-footer-elementor")),c().createElement(rm,{label:(0,hm.__)("PRO","header-footer-elementor"),size:"xs",variant:"inverse"})),c().createElement(nt.Item,{alignSelf:"auto",className:"p-4 bg-white rounded-lg shadow-container-item",order:"none",shrink:1},c().createElement(ct,{className:"text-black hfe-remove-ring",icon:c().createElement(Qm,null),iconPosition:"left",variant:"link",onClick:function(){window.open("https://ultimateelementor.com/docs/getting-started-with-ultimate-addons-for-elementor-lite/","_blank")}},(0,hm.__)("Knowledge Base","header-footer-elementor"))),c().createElement(nt.Item,{className:"p-4 bg-white rounded-lg shadow-container-item"},c().createElement(ct,{className:"text-black hfe-remove-ring",icon:c().createElement(dm,null),iconPosition:"left",variant:"link",onClick:function(){window.open("https://ultimateelementor.com/docs/","_blank")}},(0,hm.__)("Help Centre","header-footer-elementor"))),c().createElement(nt.Item,{className:"p-4 bg-white rounded-lg shadow-container-item"},c().createElement(ct,{className:"text-black hfe-remove-ring",icon:c().createElement(ep,null),iconPosition:"left",variant:"link",onClick:function(){window.open("https://ideas.ultimateelementor.com/boards/feature-requests","_blank")}},(0,hm.__)("Request a Feature","header-footer-elementor"))),c().createElement(nt.Item,{className:"p-4 bg-white rounded-lg shadow-container-item"},c().createElement(ct,{className:"text-black hfe-remove-ring",icon:c().createElement(tp,null),iconPosition:"left",variant:"link",onClick:function(){window.open("https://wordpress.org/support/plugin/header-footer-elementor/reviews/#new-post","_blank")}},(0,hm.__)("Rate Us","header-footer-elementor")))))},rp=cm("plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]),op=function(){return c().createElement("div",null,c().createElement(nt,{align:"center",className:"bg-background-primary border-[0.5px] border-subtle rounded-xl shadow-sm mb-6 p-8 flex flex-col lg:flex-row",containerType:"flex",direction:"row",gap:"sm"},c().createElement(nt.Item,{shrink:1,className:"flex-1"},c().createElement(Zm,{description:"",icon:null,iconPosition:"right",className:"max-w-lg",size:"lg",tag:"h3",title:(0,hm.__)("Welcome to Ultimate Addons for Elementor!","header-footer-elementor")}),c().createElement("p",{className:"text-sm font-medium text-text-tertiary m-0 mt-2"},(0,hm.__)("Effortlessly design modern websites with UAE using our powerful range of widgets & features. Get started by selecting an option based on your needs.","header-footer-elementor")),c().createElement("div",{className:"flex items-center pt-6 gap-2 flex-wrap"},c().createElement(ct,{iconPosition:"right",variant:"primary",className:"text-[#6005FF] border-none hfe-remove-ring flex-shrink-0",style:{backgroundColor:"var(--Colors-Button-button-secondary, #DDD6FE)",transition:"background-color 0.3s ease",border:"none",outline:"none",boxShadow:"none"},onMouseEnter:function(e){e.currentTarget.style.backgroundColor="#4B00CC",e.currentTarget.style.color="#fff"},onMouseLeave:function(e){e.currentTarget.style.backgroundColor="var(--Colors-Button-button-secondary, #DDD6FE)",e.currentTarget.style.color="#6005FF"},onClick:function(){window.open(hfeSettingsData.hfe_post_url,"_blank")}},(0,hm.__)("Create Header/Footer","header-footer-elementor")),c().createElement(ct,{icon:c().createElement(rp,null),iconPosition:"right",variant:"outline",className:"hfe-remove-ring flex-shrink-0",style:{color:"#000",borderColor:"#E9DFFC"},onMouseEnter:function(e){return e.currentTarget.style.color="#000000"},onMouseLeave:function(e){return(e.currentTarget.style.color="#000")&&(e.currentTarget.style.borderColor="#E9DFFC")},onClick:function(){window.open(hfeSettingsData.elementor_page_url,"_blank")}},(0,hm.__)("Create New Page","header-footer-elementor")),c().createElement("div",{style:{color:"black",background:"none",border:"none",padding:0,cursor:"pointer"},className:"flex-shrink-0",onMouseEnter:function(e){return e.currentTarget.style.color="#6005ff"},onMouseLeave:function(e){return e.currentTarget.style.color="black"},onClick:function(){window.open("https://ultimateelementor.com/docs/getting-started-with-ultimate-addons-for-elementor-lite/","_blank")}}))),c().createElement(nt.Item,{className:"md:mt-0 mt-4 flex-shrink-0"},c().createElement("iframe",{width:"280",height:"160",src:"https://www.youtube.com/embed/ZeogOxqdKJI",frameBorder:"0",style:{borderRadius:"8px"},allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture",allowFullScreen:!0}))))},ap=cm("rocket",[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z",key:"m3kijz"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z",key:"1fmvmk"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0",key:"1f8sc4"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5",key:"qeys4"}]]),sp=cm("check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]),ip=function(){return c().createElement("div",null,c().createElement(nt,{className:"bg-background-primary px-4 border-[0.5px] border-subtle rounded-xl shadow-sm",containerType:"flex",direction:"column",gap:"xs"},c().createElement(nt.Item,{className:"flex flex-col pt-6 justify-between",style:{width:"65%"}},c().createElement(nt.Item,{className:"flex justify-center items-center",style:{width:"34%"}},c().createElement("img",{src:"".concat(hfeSettingsData.augmented_reality),alt:(0,hm.__)("Column Showcase","header-footer-elementor"),className:"object-contain  w-full rounded"})),c().createElement("div",{className:"pt-2 px-2 flex flex-col"},c().createElement(Zm,{description:"",icon:c().createElement(ap,null),iconPosition:"left",size:"xs",tag:"p",title:(0,hm.__)("Unlock Pro Widgets","header-footer-elementor"),className:"text-xs py-1  text-[#C026D3]"}),c().createElement(Zm,{description:"",icon:"",iconPosition:"left",tag:"h6",title:c().createElement(c().Fragment,null,(0,hm.__)("Design Smarter with Ultimate Addons!","header-footer-elementor")),className:"py-1 text-[16px] font-normal  text-text-primary"}),c().createElement("p",{className:"m-0 text-base max-w-96 text-[#4F4E7C]"},(0,hm.__)("Craft stunning websites faster with powerful widgets, advanced features, and total flexibility.","header-footer-elementor"))),c().createElement("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-2 m-0 pt-2"},c().createElement("ul",{className:"list-none font-normal space-y-2 text-sm text-[#111827]"},c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("50+ Widgets","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Conversion Extensions","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Display Conditions","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("White Label","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("WooCommerce Builder","header-footer-elementor")))),c().createElement("ul",{className:"list-none font-normal space-y-2 text-sm text-[#111827]"},c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("200+ Section Blocks","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Form & Pop-up Builder","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Animation Effects","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Bloggers Toolkit","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Social Media Bundle","header-footer-elementor")))))),c().createElement("div",{className:"flex items-center m-0 pb-4 w-full  justify-center"},c().createElement(ct,{iconPosition:"right",variant:"primary",className:"bg-[#6005FF] w-full m-0 h-10 flex items-center justify-center hfe-remove-ring",style:{backgroundColor:"#6005FF",transition:"background-color 0.3s ease",outline:"none",height:"40px"},onMouseEnter:function(e){return e.currentTarget.style.backgroundColor="#4B00CC"},onMouseLeave:function(e){return e.currentTarget.style.backgroundColor="#6005FF"},onClick:function(){window.open("https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=unlock-ultimate-feature&utm_campaign=uae-lite-upgrade","_blank")}},(0,hm.__)("View Plans","header-footer-elementor")))))};function lp(e,t,n,r,o,a,s){try{var i=e[a](s),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,o)}function cp(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function s(e){lp(a,r,o,s,i,"next",e)}function i(e){lp(a,r,o,s,i,"throw",e)}s(void 0)}))}}const up=window.regeneratorRuntime;var dp=o.n(up);const mp=(0,i.createContext)({}),pp=()=>(0,i.useContext)(mp),fp={open:{opacity:1},exit:{opacity:0}},hp={duration:.2},gp=({open:e,setOpen:t,children:n,trigger:r=null,className:o,exitOnClickOutside:a=!1,exitOnEsc:s=!0,design:l="simple",scrollLock:c=!0})=>{const u=void 0!==e&&void 0!==t,[d,m]=(0,i.useState)(!1),p=(0,i.useRef)(null),f=(0,i.useRef)(null),h=(0,i.useMemo)((()=>u?e:d),[e,d]),g=(0,i.useMemo)((()=>u?t:m),[m,m]),y=()=>{h||g(!0)},v=()=>{h&&g(!1)},x=(0,i.useCallback)((()=>(0,i.isValidElement)(r)?(0,i.cloneElement)(r,{onClick:De(y,r?.props?.onClick)}):"function"==typeof r?r({onClick:y}):null),[r,y,v]),b=e=>{"Escape"===e.key&&s&&v()},w=e=>{a&&p.current&&!p.current.contains(e.target)&&v()};return(0,i.useEffect)((()=>(window.addEventListener("keydown",b),document.addEventListener("mousedown",w),()=>{window.removeEventListener("keydown",b),document.removeEventListener("mousedown",w)})),[h]),(0,i.useEffect)((()=>{if(!c)return;const e=document.querySelector("html");return h&&e&&(e.style.overflow="hidden"),()=>{e&&(e.style.overflow="")}}),[h]),(0,L.jsxs)(L.Fragment,{children:[x(),(0,L.jsx)(mp.Provider,{value:{open:h,setOpen:g,handleClose:v,design:l,dialogContainerRef:f,dialogRef:p},children:(0,L.jsx)("div",{ref:f,className:Ae("fixed z-999999 w-0 h-0 overflow-visible",o),children:n})})]})};gp.displayName="Dialog";const yp=({children:e,className:t})=>{const{open:n,handleClose:r,dialogRef:o}=pp();return(0,L.jsx)(Dd,{children:n&&(0,L.jsx)(Cd.div,{className:"fixed inset-0 overflow-y-auto",initial:"exit",animate:"open",exit:"exit",variants:fp,role:"dialog",transition:hp,children:(0,L.jsx)("div",{className:"flex items-center justify-center min-h-full",children:(0,L.jsx)("div",{ref:o,className:Ae("flex flex-col gap-5 w-120 h-fit bg-background-primary border border-solid border-border-subtle rounded-xl shadow-soft-shadow-2xl my-5 overflow-hidden",t),children:"function"==typeof e?e({close:r}):e})})})})};yp.displayName="Dialog.Panel";const vp=({className:e,...t})=>{const{open:n,dialogContainerRef:r}=pp();return r?.current?(0,L.jsx)(L.Fragment,{children:(0,rn.createPortal)((0,L.jsx)(Dd,{children:n&&(0,L.jsx)(Cd.div,{className:Ae("fixed inset-0 -z-10 bg-background-inverse/90",e),...t,initial:"exit",animate:"open",exit:"exit",variants:fp,transition:hp})}),r.current)}):null};vp.displayName="Dialog.Backdrop";const xp=({children:e,className:t,...n})=>(0,L.jsx)("div",{className:Ae("space-y-2 px-5 pt-5 pb-1",t),...n,children:e});xp.displayName="Dialog.Header";const bp=({children:e,as:t="h3",className:n,...r})=>(0,L.jsx)(t,{className:Ae("text-base font-semibold text-text-primary m-0 p-0",n),...r,children:e});bp.displayName="Dialog.Title";const Ep=({children:e,as:t="p",className:n,...r})=>(0,L.jsx)(t,{className:Ae("text-sm font-normal text-text-secondary my-0 ml-0 mr-1 p-0",n),...r,children:e});Ep.displayName="Dialog.Description";const _p=({className:e,...t})=>(0,L.jsx)("button",{className:Ae("bg-transparent inline-flex justify-center items-center border-0 p-1 m-0 cursor-pointer focus:outline-none outline-none shadow-none",e),"aria-label":"Close dialog",...t,children:(0,L.jsx)(nm,{className:"size-4 text-text-primary shrink-0"})}),kp=({children:e,as:t=i.Fragment,...n})=>{const{handleClose:r}=pp();return e?t===i.Fragment?"function"==typeof e?e({close:r}):(0,i.cloneElement)(e,{onClick:r}):(0,L.jsx)(t,{...n,onClick:r,children:e}):(0,L.jsx)(_p,{onClick:r,...n})};kp.displayName="Dialog.CloseButton";const Sp=({children:e,className:t,...n})=>(0,L.jsx)("div",{className:Ae("px-5",t),...n,children:e});Sp.displayName="Dialog.Body";const Np=({children:e,className:t})=>{const{design:n,handleClose:r}=pp();return(0,L.jsx)("div",{className:Ae("p-4 flex justify-end gap-3",{"bg-background-secondary":"footer-divided"===n},t),children:e?"function"==typeof e?e({close:r}):e:null})};Np.displayName="Dialog.Footer",gp.Panel=yp,gp.Title=bp,gp.Description=Ep,gp.CloseButton=kp,gp.Header=xp,gp.Body=Sp,gp.Footer=Np,gp.Backdrop=vp;const Cp=function(e){var t=e.plugin,n=e.setUpdateCounter,r=t.path,o=t.slug,a=t.siteUrl,l=t.icon,u=t.type,d=t.name,m=t.zipUrl,p=t.desc,f=(t.wporg,t.isFree,t.action,t.status),h=t.settings_url,g=s((0,i.useState)(!1),2),y=g[0],v=g[1],x=s((0,i.useState)(null),2),b=x[0],w=x[1],E=function(e){v(!1);var t=new window.FormData;t.append("action","hfe_recommended_plugin_activate"),t.append("nonce",hfe_admin_data.nonce),t.append("plugin",e.init),t.append("type",e.type),t.append("slug",e.slug);var r=document.querySelector('[data-slug="'.concat(e.slug,'"]')),o=r.querySelector("span");o.innerText=(0,hm.__)("Activating...","header-footer-elementor"),$m()({url:hfe_admin_data.ajax_url,method:"POST",body:t}).then((function(t){if(t.success)o&&(r.style.color="#16A34A",r.dataset.action="site_redirect",r.classList.add("hfe-plugin-activated"),o.innerText=(0,hm.__)("Activated","header-footer-elementor"),window.open(h,"_blank"),setTimeout((function(){n((function(e){return e+1}))}),5e3));else{e.type;var a=document.querySelector('[data-slug="'.concat(e.slug,'"]'));if(a){var s=a.querySelector("span");s&&(s.innerText=(0,hm.__)("Activate","header-footer-elementor"))}}}))};return c().createElement(nt,{align:"center",containerType:"flex",direction:"column",justify:"between",gap:"lg"},c().createElement("div",{className:"flex items-center justify-between w-full"},c().createElement("div",{className:"h-5 w-5"},c().createElement("img",{src:l,alt:"Recommended Plugins/Themes",className:"w-full h-auto rounded cursor-pointer",style:{width:"140px",height:"140px",marginTop:"-55px"}})),c().createElement("div",{className:"flex items-center gap-x-2"},c().createElement(gp,{design:"simple",open:y,setOpen:v},c().createElement(gp.Backdrop,null),c().createElement(gp.Panel,null,c().createElement(gp.Header,null,c().createElement("div",{className:"flex items-center justify-between"},c().createElement(gp.Title,null,(0,hm.__)("Activate Theme","header-footer-elementor"))),c().createElement(gp.Description,null,(0,hm.__)("Are you sure you want to switch your current theme to Astra?","header-footer-elementor"))),c().createElement(gp.Footer,null,c().createElement(ct,{onClick:function(){return E(b)}},(0,hm.__)("Yes","header-footer-elementor")),c().createElement(ct,{variant:"outline",onClick:function(){return v(!1)}},(0,hm.__)("Close","header-footer-elementor"))))))),c().createElement("div",{className:"flex flex-col w-full pb-4"},c().createElement("p",{className:"text-base font-medium text-text-primary pb-1 m-0 cursor-pointer",onClick:function(){return window.open(t.siteurl,"_blank")},style:{marginTop:"-8px"}},(0,hm.__)(d,"header-footer-elementor")),c().createElement("p",{className:"text-sm font-medium text-text-tertiary m-0"},(0,hm.__)(p,"header-footer-elementor")),c().createElement("div",{className:"hfe-remove-ring"},c().createElement(ct,{size:"sm",className:"cursor-pointer hfe-remove-ring bg-white hover:bg-gray-100 hover:text-gray-900 hover:shadow-md text-gray-800 rounded mt-4 px-2 py-2 transition-all duration-200 ease-in-out transform hover:scale-105 hover:border-gray-400",onClick:function(e){var t=e.currentTarget.dataset.action,n=new window.FormData,r={init:e.currentTarget.dataset.init,type:e.currentTarget.dataset.type,slug:e.currentTarget.dataset.slug,name:e.currentTarget.dataset.pluginname};switch(t){case"hfe_recommended_plugin_activate":"theme"===r.type?(w(r),v(!0)):E(r);break;case"hfe_recommended_plugin_install":n.append("action","theme"===r.type?"hfe_recommended_theme_install":"hfe_recommended_plugin_install"),n.append("_ajax_nonce",hfe_admin_data.installer_nonce),n.append("slug",r.slug),e.target.innerText=(0,hm.__)("Installing...","header-footer-elementor"),$m()({url:hfe_admin_data.ajax_url,method:"POST",body:n}).then((function(t){t.success||"folder_exists"===t.errorCode?(e.target.innerText=(0,hm.__)("Installed","header-footer-elementor"),"theme"===r.type?(document.querySelector('[data-slug="'.concat(r.slug,'"]')).dataset.action="hfe_recommended_plugin_activate",e.target.innerText=(0,hm.__)("Activate","header-footer-elementor")):E(r)):(e.target.innerText=(0,hm.__)("Install","header-footer-elementor"),alert("theme"===r.type?(0,hm.__)("Theme installation failed. Please try again later.","header-footer-elementor"):(0,hm.__)("Plugin installation failed. Please try again later.","header-footer-elementor")))}));break;case"site_redirect":window.open(a,"_blank")}},"data-plugin":m,"data-type":u,"data-pluginname":d,"data-slug":o,"data-site":a,"data-init":r,"data-action":function(e){return"Activated"===e?"site_redirect":"Installed"===e?"hfe_recommended_plugin_activate":"hfe_recommended_plugin_install"}(f),style:{outline:"none",border:"1px solid #ccc"},onMouseEnter:function(e){return e.currentTarget.style.color="#5C2EDE"},onMouseLeave:function(e){return e.currentTarget.style.color="black"}},"Activated"===f?(0,hm.__)("Visit Site","header-footer-elementor"):"Installed"===f?(0,hm.__)("Activate","header-footer-elementor"):(0,hm.__)("Install & Activate","header-footer-elementor")))))};function Pp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}const Tp=function(){var e=s((0,i.useState)([]),2),t=e[0],n=e[1],r=s((0,i.useState)(!0),2),o=r[0],a=r[1],l=s((0,i.useState)(0),2),u=l[0],d=l[1],m=s((0,i.useState)(!1),2),p=m[0],f=m[1];function g(e){return Object.keys(e).map((function(t){return function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Pp(Object(n),!0).forEach((function(t){h(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Pp(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({path:t},e[t])}))}return(0,i.useEffect)((function(){var e=function(){var e=cp(dp().mark((function e(){var t,r,o;return dp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return a(!0),e.prev=1,e.next=4,$m()({path:"/hfe/v1/plugins",headers:{"Content-Type":"application/json","X-WP-Nonce":hfeSettingsData.hfe_nonce_action}});case 4:t=e.sent,r=g(t),n(r),o=r.every((function(e){return e.is_installed})),f(o),e.next=14;break;case 11:e.prev=11,e.t0=e.catch(1),console.error("Error fetching plugins:",e.t0);case 14:return e.prev=14,a(!1),e.finish(14);case 17:case"end":return e.stop()}}),e,null,[[1,11,14,17]])})));return function(){return e.apply(this,arguments)}}();e()}),[u]),p?null:c().createElement("div",{className:"rounded-lg bg-white w-full"},c().createElement("div",{className:"flex items-center justify-between p-4",style:{paddingBottom:"0"}},c().createElement("p",{className:"m-0 text-sm font-semibold text-text-primary"},(0,hm.__)("Super Charge Your Workflow","header-footer-elementor")),c().createElement("div",{className:"flex items-center gap-x-2 mr-7"})),c().createElement("div",{className:"flex flex-col rounded-lg p-4",style:{backgroundColor:"white"}},o?c().createElement(nt,{align:"stretch",className:"gap-1 p-1 grid grid-cols-1 md:grid-cols-1",containerType:"grid",justify:"start"},Cm(Array(1)).map((function(e,t){return c().createElement(nt.Item,{key:t,alignSelf:"auto",style:{height:"150px"},className:"text-wrap rounded-md shadow-container-item bg-[#F9FAFB] p-4"},c().createElement("div",{className:"flex flex-col gap-6",style:{marginTop:"40px"}},c().createElement(Xm,{className:"w-12 h-2 rounded-md"}),c().createElement(Xm,{className:"w-16 h-2 rounded-md"}),c().createElement(Xm,{className:"w-12 h-2 rounded-md"})))}))):c().createElement(nt,{align:"stretch",className:"gap-1 p-1 grid grid-cols-1 md:grid-cols-1",containerType:"grid",justify:"start",style:{backgroundColor:"#F9FAFB"}},t.slice(0,1).map((function(e){return c().createElement(nt.Item,{key:e.slug,alignSelf:"auto",className:"text-wrap rounded-md shadow-container-item bg-background-primary p-4"},c().createElement(Cp,{plugin:e,setUpdateCounter:d}))})))))},jp=function(){var e=s((0,i.useState)((function(){return!(window.hfe_admin_data&&window.hfe_admin_data.upgrade_notice_dismissed)})),2),t=e[0],n=e[1],r=function(){var e=cp(dp().mark((function e(){return dp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n(!1),window.hfe_admin_data&&window.hfe_admin_data.ajax_url){e.next=3;break}return e.abrupt("return");case 3:return e.prev=3,e.next=6,fetch(window.hfe_admin_data.ajax_url,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:new URLSearchParams({action:"hfe_dismiss_upgrade_notice",nonce:window.hfe_admin_data.nonce})});case 6:e.sent,e.next=11;break;case 9:e.prev=9,e.t0=e.catch(3);case 11:case"end":return e.stop()}}),e,null,[[3,9]])})));return function(){return e.apply(this,arguments)}}();return t?c().createElement("div",{className:"uae-upgrade p-3 d font-medium",style:{backgroundColor:"#E9E4FF",textAlign:"center",fontSize:"0.82rem",zIndex:"9",position:"relative"}},c().createElement("button",{onClick:r,style:{position:"absolute",top:"5px",right:"10px",background:"none",border:"none",fontSize:"24px",cursor:"pointer",color:"#000",width:"32px",height:"32px",display:"flex",alignItems:"center",justifyContent:"center"},"aria-label":(0,hm.__)("Close Upgrade Notice","header-footer-elementor")},"×"),c().createElement("span",null,(0,hm.__)("Design Without Limits: Access the features that top WordPress sites run on.","header-footer-elementor")," ",c().createElement("a",{href:"https://ultimateelementor.com/pricing/?utm_source=uae-lite-navbar&utm_medium=upgrade-now&utm_campaign=uae-lite-upgrade",target:"_blank",style:{color:"#000000"}},c().createElement("strong",null,"  ",(0,hm.__)("Get Full Control","header-footer-elementor")," ")))):null},Rp=function(){return(0,i.useEffect)((function(){var e="admin.php?page=hfe#dashboard";window.location.href.includes(e)&&window.history.pushState(null,"",e);var t=function(t){window.location.href.includes(e)&&(t.preventDefault(),window.history.pushState(null,"",e))};return window.addEventListener("popstate",t),function(){window.removeEventListener("popstate",t)}}),[]),c().createElement(c().Fragment,null,c().createElement(jp,null),c().createElement(Nm,null),c().createElement("div",null,c().createElement(nt,{align:"stretch",className:"p-6 flex-col lg:flex-row box-border",containerType:"flex",direction:"row",gap:"sm",justify:"start",style:{width:"100%"}},c().createElement(nt.Item,{className:"p-2 hfe-65-width",alignSelf:"auto",order:"none",shrink:0},c().createElement(op,null),c().createElement(Km,null),c().createElement(Tp,null)),c().createElement(nt.Item,{className:"p-2 w-full hfe-35-width",shrink:1},c().createElement(ip,null),c().createElement("div",{className:"pt-5"},c().createElement(np,null))))))},Fp=cm("search",[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]]),Ap=cm("trash-2",[["path",{d:"M10 11v6",key:"nco0om"}],["path",{d:"M14 11v6",key:"outv1u"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",key:"miytrc"}],["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",key:"e791ji"}]]);function Dp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Mp(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Dp(Object(n),!0).forEach((function(t){h(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Dp(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}const Op=function(){var e=s((0,i.useState)(null),2),t=e[0],n=e[1],r=s((0,i.useState)(""),2),o=r[0],a=r[1],l=s((0,i.useState)(!1),2),u=l[0],d=l[1],m=s((0,i.useState)(!1),2),p=m[0],f=m[1],h=s((0,i.useState)(!1),2),g=h[0],y=h[1],v=s((0,i.useState)(!0),2),x=v[0],b=v[1],w=s((0,i.useState)(0),2),E=w[0],_=w[1],k=s((0,i.useState)(!0),2),S=k[0],N=(k[1],s((0,i.useState)(""),2));N[0],N[1],(0,i.useEffect)((function(){b(!0),$m()({path:"/hfe/v1/widgets",headers:{"Content-Type":"application/json","X-WP-Nonce":hfeSettingsData.hfe_nonce_action}}).then((function(e){var t=function(e){var t=[];for(var n in e)if(e.hasOwnProperty(n)){var r=e[n];t.push({id:n,slug:r.slug,title:r.title,keywords:r.keywords,icon:c().createElement("i",{className:r.icon}),title_url:r.title_url,default:r.default,doc_url:r.doc_url,is_pro:r.is_pro,description:r.description,is_active:void 0===r.is_activate||r.is_activate,demo_url:void 0!==r.demo_url?r.demo_url:r.doc_url})}return t}(e);n(t),b(!1)})).catch((function(e){b(!1)}))}),[]);var C=null==t?void 0:t.filter((function(e){var t;return e.title.toLowerCase().includes(o)||(null===(t=e.keywords)||void 0===t?void 0:t.some((function(e){return e.toLowerCase().includes(o)})))})),P=function(){var e=cp(dp().mark((function e(){var t;return dp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:d(!0),(t=new window.FormData).append("action","hfe_bulk_activate_widgets"),t.append("nonce",hfe_admin_data.nonce),$m()({url:hfe_admin_data.ajax_url,method:"POST",body:t}).then((function(e){d(!1),e.success?(n((function(e){return e.map((function(e){return Mp(Mp({},e),{},{is_active:!0})}))})),_((function(e){return e+1}))):e.error&&d(!1)})).catch((function(e){d(!1)}));case 5:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),T=function(){var e=cp(dp().mark((function e(){var t;return dp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:f(!0),(t=new window.FormData).append("action","hfe_bulk_deactivate_widgets"),t.append("nonce",hfe_admin_data.nonce),$m()({url:hfe_admin_data.ajax_url,method:"POST",body:t}).then((function(e){f(!1),e.success?(n((function(e){return e.map((function(e){return Mp(Mp({},e),{},{is_active:!1})}))})),_((function(e){return e+1}))):e.error})).catch((function(e){f(!1)}));case 5:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),j=function(){var e=cp(dp().mark((function e(){var t;return dp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:y(!0),(t=new window.FormData).append("action","hfe_bulk_deactivate_unused_widgets"),t.append("nonce",hfe_admin_data.nonce),$m()({url:hfe_admin_data.ajax_url,method:"POST",body:t}).then((function(e){var t;if(y(!1),e.success&&Array.isArray(null===(t=e.data)||void 0===t?void 0:t.deactivated)){var r=e.data.deactivated;n((function(e){return e.map((function(e){return r.includes(e.id)?Mp(Mp({},e),{},{is_active:!1}):e}))})),_((function(e){return e+1}))}else e.error})).catch((function(e){y(!1)}));case 5:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}();return c().createElement("div",{className:"rounded-lg bg-white w-full mb-4"},c().createElement("div",{className:"flex flex-col md:flex-row md:items-center md:justify-between p-4",style:{paddingBottom:"0"}},c().createElement("p",{className:"m-0 text-sm font-semibold text-text-primary mb-2 md:mb-0"},(0,hm.__)("Widgets / Features","header-footer-elementor")),c().createElement("div",{className:"flex flex-col md:flex-row items-center gap-y-2 md:gap-x-2 md:mr-7 relative"},c().createElement(Fp,{className:"absolute top-1/2 transform -translate-y-1/2 text-gray-400",style:{backgroundColor:"#F9FAFB",left:"2%",width:"18px",height:"18px"}}),c().createElement("input",{type:"search",placeholder:(0,hm.__)("Search...","header-footer-elementor"),className:"mr-2 pl-10 w-full md:w-auto",style:{height:"40px",borderColor:"#e0e0e0",outline:"none",boxShadow:"none",backgroundColor:"#F9FAFB"},onFocus:function(e){return e.target.style.borderColor="#6005FF"},onBlur:function(e){return e.target.style.borderColor="#e0e0e0"},onChange:function(e){a(e.target.value.toLowerCase())}}),c().createElement("div",{className:"flex flex-row gap-2 w-full md:w-auto"},c().createElement("div",{style:{width:"245px",minWidth:"245px"}},c().createElement("div",{className:"flex justify-center items-center rounded-sm overflow-hidden",style:{border:"1.5px solid #e5e7eb",borderRadius:"0.25rem"}},c().createElement("div",{className:"font-medium p-2 transition-all duration-300 ".concat(o||u?"cursor-not-allowed":"cursor-pointer hover:bg-button-tertiary-hover hover:outline-border-subtle"),style:{border:"none",borderRight:"1.5px solid #e5e7eb",opacity:o||u?.5:1,pointerEvents:o||u?"none":"auto",color:o||u?"#A9ACB0":"inherit"},onClick:function(){u||o||P()}},(0,hm.__)("Activate All","header-footer-elementor")),c().createElement("div",{className:"font-medium p-2 transition-all duration-300 ".concat(o||g?"cursor-not-allowed":"cursor-pointer hover:bg-button-tertiary-hover hover:outline-border-subtle"),style:{border:"none",opacity:o||g?.5:1,pointerEvents:o||g?"none":"auto",color:o||g?"#A9ACB0":"inherit"},onClick:function(){g||o||j()}},(0,hm.__)("Deactivate Unused","header-footer-elementor")))),c().createElement(Bm,{arrow:!0,content:c().createElement("div",null,c().createElement("p",null,p?(0,hm.__)("Deactivating...","header-footer-elementor"):(0,hm.__)("Deactivate All","header-footer-elementor"))),placement:"top",title:"",triggers:["hover"],variant:"dark",size:"xs"},c().createElement(Ap,{className:"relative text-gray-400",onClick:T,style:{backgroundColor:"#F9FAFB",top:"5%",margin:"auto",width:"22px",height:"22px"}}))))),c().createElement("div",{className:"flex bg-black flex-col rounded-lg p-4",style:{minHeight:"800px"}},x?c().createElement(nt,{align:"stretch",className:"p-2 gap-1.5 grid grid-cols-2 md:grid-cols-4",style:{backgroundColor:"#F9FAFB"},containerType:"grid",gap:"",justify:"start"},Cm(Array(30)).map((function(e,t){return c().createElement(nt.Item,{key:t,alignSelf:"auto",className:"text-wrap rounded-md shadow-container-item bg-background-primary p-6 space-y-2"},c().createElement(Xm,{className:"w-12 h-2 rounded-md"}),c().createElement(Xm,{className:"w-16 h-2 rounded-md"}),c().createElement(Xm,{className:"w-12 h-2 rounded-md"}))}))):c().createElement(nt,{align:"stretch",className:"p-1 gap-1.5 grid-cols-2 md:grid-cols-4",containerType:"grid",gap:"",justify:"start",style:{backgroundColor:"#F9FAFB"}},null==C?void 0:C.map((function(e){return c().createElement(nt.Item,{key:e.id,alignSelf:"auto",style:{paddingTop:"8px",paddingBottom:"8px"},className:"text-wrap rounded-md shadow-container-item bg-background-primary px-4"},c().createElement(Gm,{widget:Mp(Mp({},e),{},{updateCounter:E}),showTooltip:S,key:e.id,updateCounter:E}))})))))},Lp=function(){return c().createElement("div",null,c().createElement(nt,{className:"bg-background-primary px-4 border-[0.5px] border-subtle rounded-xl shadow-sm",containerType:"flex",direction:"column",gap:"xs"},c().createElement(nt.Item,{className:"flex flex-col pt-6 justify-between",style:{width:"65%"}},c().createElement(nt.Item,{className:"flex justify-center items-center",style:{width:"34%"}},c().createElement("img",{src:"".concat(hfeSettingsData.augemented_url),alt:(0,hm.__)("Column Showcase","header-footer-elementor"),style:{height:"250"},loading:"lazy",className:"object-cover rounded w-full"})),c().createElement("div",{className:"pt-2 px-2 flex flex-col"},c().createElement(Zm,{description:"",icon:c().createElement(ap,null),iconPosition:"left",size:"xs",tag:"p",title:(0,hm.__)("Unlock Pro Widgets","header-footer-elementor"),className:"text-xs py-1  text-[#C026D3]"}),c().createElement(Zm,{description:"",icon:"",iconPosition:"left",tag:"h6",title:c().createElement(c().Fragment,null,(0,hm.__)("Bring Your Vision to Life with UAE Pro","header-footer-elementor")),className:"py-1 text-[16px] font-normal  text-text-primary"}),c().createElement("p",{className:"m-0 text-base max-w-96 text-[#4F4E7C]"},(0,hm.__)("Streamline your workflow, skip the repetitive tasks, and build modern, high-performance websites.","header-footer-elementor"))),c().createElement("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-2 m-0 pt-2"},c().createElement("ul",{className:"list-none font-normal space-y-2 text-sm text-[#111827]"},c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("50+ Widgets","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Conversion Extensions","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Display Conditions","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("White Label","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Bloggers Toolkit","header-footer-elementor")))),c().createElement("ul",{className:"list-none font-normal space-y-2 text-sm text-[#111827]"},c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("200+ Section Blocks","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Form & Pop-up Builder","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Animation Effects","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("WooCommerce Builder","header-footer-elementor"))),c().createElement("li",{className:"flex items-center gap-1 text-text-tertiary whitespace-nowrap"},c().createElement(sp,{color:"#6005FF",size:16,className:"flex-shrink-0"}),c().createElement("span",{className:"truncate"},(0,hm.__)("Social Media Bundle","header-footer-elementor")))))),c().createElement("div",{className:"flex items-center m-0 pb-4 w-full  justify-center"},c().createElement(ct,{iconPosition:"right",variant:"primary",className:"bg-[#6005FF] w-full m-0 h-10 flex items-center justify-center hfe-remove-ring",style:{backgroundColor:"#6005FF",transition:"background-color 0.3s ease",outline:"none",height:"40px"},onMouseEnter:function(e){return e.currentTarget.style.backgroundColor="#4B00CC"},onMouseLeave:function(e){return e.currentTarget.style.backgroundColor="#6005FF"},onClick:function(){window.open("https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=unlock-ultimate-feature&utm_campaign=uae-lite-upgrade","_blank")}},(0,hm.__)("Start Building Smarter","header-footer-elementor")))))},Ip=function(){return c().createElement(c().Fragment,null,c().createElement(jp,null),c().createElement(Nm,null),c().createElement("div",null,c().createElement(nt,{align:"stretch",className:"p-6 flex flex-col lg:flex-row box-border",containerType:"flex",direction:"row",gap:"sm",justify:"start",style:{width:"100%"}},c().createElement(nt.Item,{className:"p-2 hfe-65-width",alignSelf:"auto",order:"none",shrink:1},c().createElement(Op,null)),c().createElement(nt.Item,{className:"p-2 hfe-35-width hfe-sticky-right-sidebar",shrink:1},c().createElement(Lp,null),c().createElement("div",{className:"mt-4"},c().createElement(np,null))))))},Bp=cm("zap",[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]]),zp=function(){var e=s((0,i.useState)(!0),2),t=e[0],n=e[1],r=s((0,i.useState)(null),2),o=r[0],a=r[1],l=s((0,i.useState)(null),2),u=l[0],d=l[1],m=[{id:1,icon:"",title:(0,hm.__)("250+ templates for every niche","header-footer-elementor")},{id:2,icon:"",title:(0,hm.__)("Modern, timeless designs","header-footer-elementor")},{id:3,icon:"",title:(0,hm.__)("Full design flexibility for easy customization","header-footer-elementor")},{id:4,icon:"",title:(0,hm.__)("100% responsive across all devices","header-footer-elementor")}];if((0,i.useEffect)((function(){n(!0),$m()({path:"/hfe/v1/templates",headers:{"Content-Type":"application/json","X-WP-Nonce":hfeSettingsData.hfe_nonce_action}}).then((function(e){a(e.templates_status),e.redirect_url&&d(e.redirect_url),n(!1)})).catch((function(e){n(!1)}))}),[]),!t){var p="Install"===o?(0,hm.__)("Install Starter Templates","header-footer-elementor"):(0,hm.__)("Activate Starter Templates","header-footer-elementor"),f=function(){var e=new window.FormData,t="astra-sites/astra-sites.php",n="astra-sites";"Installed"!==hfeSettingsData.st_pro_status||"Install"!==hfeSettingsData.st_status&&"Installed"!==hfeSettingsData.st_status||(t="astra-pro-sites/astra-pro-sites.php",n="astra-pro-sites"),e.append("action","hfe_recommended_plugin_activate"),e.append("nonce",hfe_admin_data.nonce),e.append("plugin",t),e.append("type","plugin"),e.append("slug",n),$m()({url:hfe_admin_data.ajax_url,method:"POST",body:e}).then((function(e){if(e.success){var t=document.querySelector(".hfe-starter-template-button");if(t){var n=t.querySelector("span");n&&(n.innerText=(0,hm.__)("Activating Starter Templates...","header-footer-elementor"),t.classList.add("hfe-plugin-activated"),n.innerText=(0,hm.__)("Activated Starter Templates","header-footer-elementor"),location.reload())}}else{var r=document.querySelector(".hfe-starter-template-button");if(r){var o=r.querySelector("span");o&&(o.innerText=(0,hm.__)("Activate Starter Templates","header-footer-elementor"))}}}))};return c().createElement("div",null,c().createElement(nt,{className:"flex gap-2 flex-col md:flex-row bg-background-primary p-6 md:p-10 border-[0.5px] border-subtle rounded-xl shadow-sm flex-col-reverse",containerType:"flex",gap:"xs"},c().createElement(nt.Item,{className:"flex flex-col justify-between w-full mt-4  md:w-1/2 mb-4 md:mb-0"},c().createElement("div",null,c().createElement(Zm,{description:"",icon:c().createElement(Bp,null),iconPosition:"left",size:"xs",tag:"h6",title:(0,hm.__)("Design Your Website in Minutes","header-footer-elementor"),className:"text-xs font-semibold text-brand-primary-600 mb-2"}),c().createElement(Zm,{description:"",icon:"",iconPosition:"left",tag:"h6",title:(0,hm.__)("Build your website faster using our prebuilt templates","header-footer-elementor"),className:"py-1 text-sm mb-2"}),c().createElement("p",{className:"text-sm md:text-md m-0 text-text-secondary text-text-tertiary"},(0,hm.__)("Stop building your site from scratch. Use our professional templates for your stunning website. It is easy to customize and completely responsive. Explore hundreds of designs and bring your vision to life in no time.","header-footer-elementor"))),c().createElement("div",{className:"grid grid-cols-1 gap-1 my-4"},m.map((function(e){return c().createElement(Zm,{key:e.id,description:"",icon:c().createElement(sp,{className:"text-brand-primary-600 mr-1 h-3 w-3"}),iconPosition:"left",size:"xs",tag:"h6",title:(0,hm.__)(e.title,"header-footer-elementor"),className:""})}))),c().createElement("div",{className:"flex flex-col md:flex-row items-center pb-3 gap-4",style:{marginTop:"15px"}},c().createElement(ct,{icon:c().createElement(rp,null),iconPosition:"right",variant:"secondary",style:{backgroundColor:"#6005FF",outlineWidth:"0px"},className:"w-auto hfe-starter-template-button hfe-remove-ring cursor-pointer",onClick:function(e){if(u)window.open(u,"_blank");else{var t=document.querySelector(".hfe-starter-template-button span"),n=new window.FormData;n.append("action","hfe_recommended_plugin_install"),n.append("_ajax_nonce",hfe_admin_data.installer_nonce),n.append("slug","astra-sites"),t&&"Install"===o&&(t.innerText=(0,hm.__)("Installing Starter Templates...","header-footer-elementor"),$m()({url:hfe_admin_data.ajax_url,method:"POST",body:n}).then((function(e){e.success||"folder_exists"===e.errorCode?(t.innerText=(0,hm.__)("Installed Starter Templates","header-footer-elementor"),f()):t.innerText=(0,hm.__)("Install Starter Templates","header-footer-elementor")}))),t&&"Installed"===o&&(t.innerText=(0,hm.__)("Activating Starter Templates...","header-footer-elementor"),f())}}},"Activated"===o?(0,hm.__)("Explore Templates","header-footer-elementor"):p),c().createElement(ct,{icon:"",iconPosition:"right",variant:"ghost",className:"w-auto hfe-link-color hfe-remove-ring",onClick:function(){window.open("https://startertemplates.com/","_blank")}},(0,hm.__)("Learn More","header-footer-elementor")))),c().createElement(nt.Item,{className:"flex justify-center md:justify-end w-full md:w-1/2"},c().createElement("img",{src:"".concat(hfeSettingsData.template_url),alt:"Column Showcase",className:"object-contain w-full md:w-5/6"}))))}},Vp=function(){return c().createElement(c().Fragment,null,c().createElement(Nm,null),c().createElement("div",{className:""},c().createElement(nt,{align:"stretch",className:"p-2",containerType:"flex",direction:"row",gap:"sm",justify:"center",style:{width:"100%"}},c().createElement(nt.Item,{className:"p-2",alignSelf:"auto",order:"none",shrink:1,style:{width:"90%"}},c().createElement(zp,null)))))},Up=function(e){var t=e.items,n=e.onSelectItem,r=s((0,i.useState)(null),2),o=r[0],a=r[1];return c().createElement("div",{style:{padding:"1rem",width:"100%"}},t.map((function(e){return c().createElement("div",{key:e.id,className:"mb-2"},e.main&&c().createElement("p",{className:"text-sm text-text-tertiary font-normal mb-2"},e.main),c().createElement("div",{className:"h-10 flex items-center justify-start gap-2 px-2 rounded-md cursor-pointer ".concat(o===e.id?"bg-gray-100":"bg-background-primary"),style:{backgroundColor:o===e.id?"#F9FAFB":""},onClick:function(){return function(e){a(e.id),n(e)}(e)}},c().createElement("span",null,o===e.id?e.selected:e.icon),c().createElement("p",{className:"m-0 text-base font-normal"},e.title)))})))},Wp=function(e){var t=e.selectedItem;return c().createElement("div",{className:"p-6",style:{marginLeft:"4px"}},c().createElement("div",null,null==t?void 0:t.content))};let Hp={data:""},$p=e=>"object"==typeof window?((e?e.querySelector("#_goober"):window._goober)||Object.assign((e||document.head).appendChild(document.createElement("style")),{innerHTML:" ",id:"_goober"})).firstChild:e||Hp,qp=/(?:([\u0080-\uFFFF\w-%@]+) *:? *([^{;]+?);|([^;}{]*?) *{)|(}\s*)/g,Yp=/\/\*[^]*?\*\/|  +/g,Gp=/\n+/g,Xp=(e,t)=>{let n="",r="",o="";for(let a in e){let s=e[a];"@"==a[0]?"i"==a[1]?n=a+" "+s+";":r+="f"==a[1]?Xp(s,a):a+"{"+Xp(s,"k"==a[1]?"":t)+"}":"object"==typeof s?r+=Xp(s,t?t.replace(/([^,])+/g,(e=>a.replace(/([^,]*:\S+\([^)]*\))|([^,])+/g,(t=>/&/.test(t)?t.replace(/&/g,e):e?e+" "+t:t)))):a):null!=s&&(a=/^--/.test(a)?a:a.replace(/[A-Z]/g,"-$&").toLowerCase(),o+=Xp.p?Xp.p(a,s):a+":"+s+";")}return n+(t&&o?t+"{"+o+"}":o)+r},Kp={},Zp=e=>{if("object"==typeof e){let t="";for(let n in e)t+=n+Zp(e[n]);return t}return e};function Jp(e){let t=this||{},n=e.call?e(t.p):e;return((e,t,n,r,o)=>{let a=Zp(e),s=Kp[a]||(Kp[a]=(e=>{let t=0,n=11;for(;t<e.length;)n=101*n+e.charCodeAt(t++)>>>0;return"go"+n})(a));if(!Kp[s]){let t=a!==e?e:(e=>{let t,n,r=[{}];for(;t=qp.exec(e.replace(Yp,""));)t[4]?r.shift():t[3]?(n=t[3].replace(Gp," ").trim(),r.unshift(r[0][n]=r[0][n]||{})):r[0][t[1]]=t[2].replace(Gp," ").trim();return r[0]})(e);Kp[s]=Xp(o?{["@keyframes "+s]:t}:t,n?"":"."+s)}let i=n&&Kp.g?Kp.g:null;return n&&(Kp.g=Kp[s]),((e,t,n,r)=>{r?t.data=t.data.replace(r,e):-1===t.data.indexOf(e)&&(t.data=n?e+t.data:t.data+e)})(Kp[s],t,r,i),s})(n.unshift?n.raw?((e,t,n)=>e.reduce(((e,r,o)=>{let a=t[o];if(a&&a.call){let e=a(n),t=e&&e.props&&e.props.className||/^go/.test(e)&&e;a=t?"."+t:e&&"object"==typeof e?e.props?"":Xp(e,""):!1===e?"":e}return e+r+(null==a?"":a)}),""))(n,[].slice.call(arguments,1),t.p):n.reduce(((e,n)=>Object.assign(e,n&&n.call?n(t.p):n)),{}):n,$p(t.target),t.g,t.o,t.k)}Jp.bind({g:1});let Qp,ef,tf,nf=Jp.bind({k:1});function rf(e,t){let n=this||{};return function(){let r=arguments;function o(a,s){let i=Object.assign({},a),l=i.className||o.className;n.p=Object.assign({theme:ef&&ef()},i),n.o=/ *go\d+/.test(l),i.className=Jp.apply(n,r)+(l?" "+l:""),t&&(i.ref=s);let c=e;return e[0]&&(c=i.as||e,delete i.as),tf&&c[0]&&tf(i),Qp(c,i)}return t?t(o):o}}var of=(e,t)=>(e=>"function"==typeof e)(e)?e(t):e,af=(()=>{let e=0;return()=>(++e).toString()})(),sf=(()=>{let e;return()=>{if(void 0===e&&typeof window<"u"){let t=matchMedia("(prefers-reduced-motion: reduce)");e=!t||t.matches}return e}})(),lf=(e,t)=>{switch(t.type){case 0:return{...e,toasts:[t.toast,...e.toasts].slice(0,20)};case 1:return{...e,toasts:e.toasts.map((e=>e.id===t.toast.id?{...e,...t.toast}:e))};case 2:let{toast:n}=t;return lf(e,{type:e.toasts.find((e=>e.id===n.id))?1:0,toast:n});case 3:let{toastId:r}=t;return{...e,toasts:e.toasts.map((e=>e.id===r||void 0===r?{...e,dismissed:!0,visible:!1}:e))};case 4:return void 0===t.toastId?{...e,toasts:[]}:{...e,toasts:e.toasts.filter((e=>e.id!==t.toastId))};case 5:return{...e,pausedAt:t.time};case 6:let o=t.time-(e.pausedAt||0);return{...e,pausedAt:void 0,toasts:e.toasts.map((e=>({...e,pauseDuration:e.pauseDuration+o})))}}},cf=[],uf={toasts:[],pausedAt:void 0},df=e=>{uf=lf(uf,e),cf.forEach((e=>{e(uf)}))},mf={blank:4e3,error:4e3,success:2e3,loading:1/0,custom:4e3},pf=e=>(t,n)=>{let r=((e,t="blank",n)=>({createdAt:Date.now(),visible:!0,dismissed:!1,type:t,ariaProps:{role:"status","aria-live":"polite"},message:e,pauseDuration:0,...n,id:(null==n?void 0:n.id)||af()}))(t,e,n);return df({type:2,toast:r}),r.id},ff=(e,t)=>pf("blank")(e,t);ff.error=pf("error"),ff.success=pf("success"),ff.loading=pf("loading"),ff.custom=pf("custom"),ff.dismiss=e=>{df({type:3,toastId:e})},ff.remove=e=>df({type:4,toastId:e}),ff.promise=(e,t,n)=>{let r=ff.loading(t.loading,{...n,...null==n?void 0:n.loading});return"function"==typeof e&&(e=e()),e.then((e=>{let o=t.success?of(t.success,e):void 0;return o?ff.success(o,{id:r,...n,...null==n?void 0:n.success}):ff.dismiss(r),e})).catch((e=>{let o=t.error?of(t.error,e):void 0;o?ff.error(o,{id:r,...n,...null==n?void 0:n.error}):ff.dismiss(r)})),e};var hf=(e,t)=>{df({type:1,toast:{id:e,height:t}})},gf=()=>{df({type:5,time:Date.now()})},yf=new Map,vf=nf`
from {
  transform: scale(0) rotate(45deg);
	opacity: 0;
}
to {
 transform: scale(1) rotate(45deg);
  opacity: 1;
}`,xf=nf`
from {
  transform: scale(0);
  opacity: 0;
}
to {
  transform: scale(1);
  opacity: 1;
}`,bf=nf`
from {
  transform: scale(0) rotate(90deg);
	opacity: 0;
}
to {
  transform: scale(1) rotate(90deg);
	opacity: 1;
}`,wf=rf("div")`
  width: 20px;
  opacity: 0;
  height: 20px;
  border-radius: 10px;
  background: ${e=>e.primary||"#ff4b4b"};
  position: relative;
  transform: rotate(45deg);

  animation: ${vf} 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    forwards;
  animation-delay: 100ms;

  &:after,
  &:before {
    content: '';
    animation: ${xf} 0.15s ease-out forwards;
    animation-delay: 150ms;
    position: absolute;
    border-radius: 3px;
    opacity: 0;
    background: ${e=>e.secondary||"#fff"};
    bottom: 9px;
    left: 4px;
    height: 2px;
    width: 12px;
  }

  &:before {
    animation: ${bf} 0.15s ease-out forwards;
    animation-delay: 180ms;
    transform: rotate(90deg);
  }
`,Ef=nf`
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
`,_f=rf("div")`
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: ${e=>e.secondary||"#e0e0e0"};
  border-right-color: ${e=>e.primary||"#616161"};
  animation: ${Ef} 1s linear infinite;
`,kf=nf`
from {
  transform: scale(0) rotate(45deg);
	opacity: 0;
}
to {
  transform: scale(1) rotate(45deg);
	opacity: 1;
}`,Sf=nf`
0% {
	height: 0;
	width: 0;
	opacity: 0;
}
40% {
  height: 0;
	width: 6px;
	opacity: 1;
}
100% {
  opacity: 1;
  height: 10px;
}`,Nf=rf("div")`
  width: 20px;
  opacity: 0;
  height: 20px;
  border-radius: 10px;
  background: ${e=>e.primary||"#61d345"};
  position: relative;
  transform: rotate(45deg);

  animation: ${kf} 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    forwards;
  animation-delay: 100ms;
  &:after {
    content: '';
    box-sizing: border-box;
    animation: ${Sf} 0.2s ease-out forwards;
    opacity: 0;
    animation-delay: 200ms;
    position: absolute;
    border-right: 2px solid;
    border-bottom: 2px solid;
    border-color: ${e=>e.secondary||"#fff"};
    bottom: 6px;
    left: 6px;
    height: 10px;
    width: 6px;
  }
`,Cf=rf("div")`
  position: absolute;
`,Pf=rf("div")`
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  min-height: 20px;
`,Tf=nf`
from {
  transform: scale(0.6);
  opacity: 0.4;
}
to {
  transform: scale(1);
  opacity: 1;
}`,jf=rf("div")`
  position: relative;
  transform: scale(0.6);
  opacity: 0.4;
  min-width: 20px;
  animation: ${Tf} 0.3s 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    forwards;
`,Rf=({toast:e})=>{let{icon:t,type:n,iconTheme:r}=e;return void 0!==t?"string"==typeof t?i.createElement(jf,null,t):t:"blank"===n?null:i.createElement(Pf,null,i.createElement(_f,{...r}),"loading"!==n&&i.createElement(Cf,null,"error"===n?i.createElement(wf,{...r}):i.createElement(Nf,{...r})))},Ff=e=>`\n0% {transform: translate3d(0,${-200*e}%,0) scale(.6); opacity:.5;}\n100% {transform: translate3d(0,0,0) scale(1); opacity:1;}\n`,Af=e=>`\n0% {transform: translate3d(0,0,-1px) scale(1); opacity:1;}\n100% {transform: translate3d(0,${-150*e}%,-1px) scale(.6); opacity:0;}\n`,Df=rf("div")`
  display: flex;
  align-items: center;
  background: #fff;
  color: #363636;
  line-height: 1.3;
  will-change: transform;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05);
  max-width: 350px;
  pointer-events: auto;
  padding: 8px 10px;
  border-radius: 8px;
`,Mf=rf("div")`
  display: flex;
  justify-content: center;
  margin: 4px 10px;
  color: inherit;
  flex: 1 1 auto;
  white-space: pre-line;
`,Of=i.memo((({toast:e,position:t,style:n,children:r})=>{let o=e.height?((e,t)=>{let n=e.includes("top")?1:-1,[r,o]=sf()?["0%{opacity:0;} 100%{opacity:1;}","0%{opacity:1;} 100%{opacity:0;}"]:[Ff(n),Af(n)];return{animation:t?`${nf(r)} 0.35s cubic-bezier(.21,1.02,.73,1) forwards`:`${nf(o)} 0.4s forwards cubic-bezier(.06,.71,.55,1)`}})(e.position||t||"top-center",e.visible):{opacity:0},a=i.createElement(Rf,{toast:e}),s=i.createElement(Mf,{...e.ariaProps},of(e.message,e));return i.createElement(Df,{className:e.className,style:{...o,...n,...e.style}},"function"==typeof r?r({icon:a,message:s}):i.createElement(i.Fragment,null,a,s))}));!function(e){Xp.p=void 0,Qp=e,ef=void 0,tf=void 0}(i.createElement);var Lf=({id:e,className:t,style:n,onHeightUpdate:r,children:o})=>{let a=i.useCallback((t=>{if(t){let n=()=>{let n=t.getBoundingClientRect().height;r(e,n)};n(),new MutationObserver(n).observe(t,{subtree:!0,childList:!0,characterData:!0})}}),[e,r]);return i.createElement("div",{ref:a,className:t,style:n},o)},If=Jp`
  z-index: 9999;
  > * {
    pointer-events: auto;
  }
`,Bf=({reverseOrder:e,position:t="top-center",toastOptions:n,gutter:r,children:o,containerStyle:a,containerClassName:s})=>{let{toasts:l,handlers:c}=(e=>{let{toasts:t,pausedAt:n}=((e={})=>{let[t,n]=(0,i.useState)(uf),r=(0,i.useRef)(uf);(0,i.useEffect)((()=>(r.current!==uf&&n(uf),cf.push(n),()=>{let e=cf.indexOf(n);e>-1&&cf.splice(e,1)})),[]);let o=t.toasts.map((t=>{var n,r,o;return{...e,...e[t.type],...t,removeDelay:t.removeDelay||(null==(n=e[t.type])?void 0:n.removeDelay)||(null==e?void 0:e.removeDelay),duration:t.duration||(null==(r=e[t.type])?void 0:r.duration)||(null==e?void 0:e.duration)||mf[t.type],style:{...e.style,...null==(o=e[t.type])?void 0:o.style,...t.style}}}));return{...t,toasts:o}})(e);(0,i.useEffect)((()=>{if(n)return;let e=Date.now(),r=t.map((t=>{if(t.duration===1/0)return;let n=(t.duration||0)+t.pauseDuration-(e-t.createdAt);if(!(n<0))return setTimeout((()=>ff.dismiss(t.id)),n);t.visible&&ff.dismiss(t.id)}));return()=>{r.forEach((e=>e&&clearTimeout(e)))}}),[t,n]);let r=(0,i.useCallback)((()=>{n&&df({type:6,time:Date.now()})}),[n]),o=(0,i.useCallback)(((e,n)=>{let{reverseOrder:r=!1,gutter:o=8,defaultPosition:a}=n||{},s=t.filter((t=>(t.position||a)===(e.position||a)&&t.height)),i=s.findIndex((t=>t.id===e.id)),l=s.filter(((e,t)=>t<i&&e.visible)).length;return s.filter((e=>e.visible)).slice(...r?[l+1]:[0,l]).reduce(((e,t)=>e+(t.height||0)+o),0)}),[t]);return(0,i.useEffect)((()=>{t.forEach((e=>{if(e.dismissed)((e,t=1e3)=>{if(yf.has(e))return;let n=setTimeout((()=>{yf.delete(e),df({type:4,toastId:e})}),t);yf.set(e,n)})(e.id,e.removeDelay);else{let t=yf.get(e.id);t&&(clearTimeout(t),yf.delete(e.id))}}))}),[t]),{toasts:t,handlers:{updateHeight:hf,startPause:gf,endPause:r,calculateOffset:o}}})(n);return i.createElement("div",{id:"_rht_toaster",style:{position:"fixed",zIndex:9999,top:16,left:16,right:16,bottom:16,pointerEvents:"none",...a},className:s,onMouseEnter:c.startPause,onMouseLeave:c.endPause},l.map((n=>{let a=n.position||t,s=((e,t)=>{let n=e.includes("top"),r=n?{top:0}:{bottom:0},o=e.includes("center")?{justifyContent:"center"}:e.includes("right")?{justifyContent:"flex-end"}:{};return{left:0,right:0,display:"flex",position:"absolute",transition:sf()?void 0:"all 230ms cubic-bezier(.21,1.02,.73,1)",transform:`translateY(${t*(n?1:-1)}px)`,...r,...o}})(a,c.calculateOffset(n,{reverseOrder:e,gutter:r,defaultPosition:t}));return i.createElement(Lf,{id:n.id,key:n.id,onHeightUpdate:c.updateHeight,className:n.visible?If:"",style:s},"custom"===n.type?of(n.message,n):o?o(n):i.createElement(Of,{toast:n,position:a}))})))},zf=ff,Vf=[{id:"1",title:(0,hm.__)("Option 1 (Recommended)","header-footer-elementor"),description:(0,hm.__)("This option will automatically replace your theme's header and footer files with custom templates from the plugin. It works with most themes and is selected by default.","header-footer-elementor"),value:"1"},{id:"2",title:(0,hm.__)("Option 2","header-footer-elementor"),description:(0,hm.__)("This option hides your theme's header and footer using CSS and displays custom templates from the plugin. Use this if Option 1 causes layout issues.","header-footer-elementor"),value:"2"}];const Uf=function(){if("no"===hfeSettingsData.show_theme_support)return null;var e=s((0,i.useState)(hfeSettingsData.theme_option),2),t=e[0],n=e[1],r=s((0,i.useState)(!0),2),o=r[0],a=r[1];(0,i.useEffect)((function(){a(!1)}),[]);var l=function(e){var t=e.target.value;n(t),o||u(t)},u=function(){var e=cp(dp().mark((function e(t){var n;return dp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch(hfe_admin_data.ajax_url,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:new URLSearchParams({action:"save_theme_compatibility_option",hfe_compatibility_option:t,nonce:hfe_admin_data.nonce})});case 3:return n=e.sent,e.next=6,n.json();case 6:e.sent.success?zf.success((0,hm.__)("Settings saved successfully!","header-footer-elementor")):zf.error((0,hm.__)("Failed to save settings!","header-footer-elementor")),e.next=13;break;case 10:e.prev=10,e.t0=e.catch(0),zf.error((0,hm.__)("Failed to save settings!","header-footer-elementor"));case 13:case"end":return e.stop()}}),e,null,[[0,10]])})));return function(t){return e.apply(this,arguments)}}();return c().createElement(c().Fragment,null,c().createElement(Zm,{description:"",icon:null,iconPosition:"right",size:"sm",tag:"h2",title:(0,hm.__)("Theme Support","header-footer-elementor")}),c().createElement(nt,{align:"stretch",className:"bg-background-primary p-6 rounded-lg",containerType:"flex",direction:"column",gap:"sm",justify:"start",style:{marginTop:"24px",maxWidth:"696px"}},c().createElement(nt.Item,{className:"flex flex-col space-y-1"},c().createElement("p",{className:"text-base font-semibold m-0"},(0,hm.__)("Select Option to Add Theme Support","header-footer-elementor")),c().createElement("p",{className:"text-sm font-normal m-0"},(0,hm.__)("To ensure compatibility between the header/footer and your theme, please choose one of the following options to enable theme support:","header-footer-elementor"))),c().createElement(nt.Item,{className:"p-2 space-y-4",alignSelf:"auto",order:"none"},Vf.map((function(e){return c().createElement("div",{key:e.id,className:"flex items-start gap-1 justify-center cursor-pointer"},c().createElement("input",{id:e.id,value:e.value,type:"radio",className:"mt-1 cursor-pointer hfe-radio-field",name:"theme-support-option",onChange:l,checked:t===e.value}),c().createElement("div",{className:"flex flex-col cursor-pointer"},c().createElement(zm,{size:"sm",variant:"neutral",className:"text-sm font-semibold text-text-secondary cursor-pointer flex flex-col items-start justify-start",htmlFor:e.id},e.title,":",c().createElement("p",{className:"m-0 text-sm font-normal text-text-secondary cursor-pointer"},e.description))))}))),c().createElement("div",{className:"flex items-center p-4 border rounded-lg text-start",style:{paddingTop:"16px",paddingBottom:"16px",backgroundColor:"#F3F0FF"}},c().createElement("p",{className:"m-0 text-sm"},c().createElement("strong",null,(0,hm.__)("Note:","header-footer-elementor"))," ",(0,hm.__)("If neither option works, please contact your theme author to add support for this plugin.","header-footer-elementor")))),c().createElement(Bf,{position:"top-right",reverseOrder:!1,gutter:8,containerStyle:{top:20,right:20,marginTop:"80px"},toastOptions:{duration:5e3,style:{background:"white"},success:{duration:3e3,style:{color:""},iconTheme:{primary:"#6005ff",secondary:"#fff"}}}}))},Wf=function(){var e=hfeSettingsData.uaelite_versions,t=(0,i.useRef)(e?e[0].value:""),n=s((0,i.useState)(e?e[0].value:""),2),r=n[0],o=n[1],a=s((0,i.useState)("elementor-header-footer"),2),l=(a[0],a[1]),u=s((0,i.useState)(!1),2),d=u[0],m=u[1];return(0,i.useEffect)((function(){}),[d]),c().createElement(c().Fragment,null,c().createElement(Zm,{description:"",icon:null,iconPosition:"right",size:"sm",tag:"h2",title:(0,hm.__)("Version Control","header-footer-elementor")}),c().createElement("div",{className:"box-border bg-background-primary p-6 rounded-lg",style:{marginTop:"24px"}},c().createElement(nt,{align:"center",className:"flex flex-col lg:flex-row",containerType:"flex",direction:"column",gap:"sm",justify:"start"},c().createElement(nt.Item,{className:"shrink flex flex-col space-y-1"},c().createElement("p",{className:"text-base font-semibold m-0"},(0,hm.__)("Rollback to Previous Version","header-footer-elementor")),c().createElement("p",{className:"text-sm font-normal m-0"},(0,hm.__)("Experiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue.","header-footer-elementor"))),c().createElement(nt.Item,{className:"p-2 flex space-y-4",alignSelf:"auto",order:"none"},c().createElement("div",{className:"bsf-rollback-version"},c().createElement("input",{type:"hidden",name:"product-name",id:"bsf-product-name",value:"header-footer-elementor"}),c().createElement("select",{id:"uaeliteVersionRollback",ref:t,onBlur:function(){l("elementor-header-footer")},onChange:function(e){o(e.target.value)},style:{padding:"8px",marginRight:"10px",marginTop:"16px",cursor:"pointer",borderRadius:"4px",height:"40px",width:"100px",outline:"none",boxShadow:"none"},onFocus:function(e){return e.target.style.borderColor="#6005FF"}},e.map((function(e){return c().createElement("option",{key:e.value,value:e.value},e.label)})))),c().createElement("div",{className:"flex flex-col cursor-pointer"},c().createElement(gp,{design:"simple",exitOnEsc:!0,scrollLock:!0,open:d,setOpen:m,trigger:c().createElement(ct,{style:{backgroundColor:"#6005ff"}},(0,hm.__)("Rollback","header-footer-elementor"))},c().createElement(gp.Backdrop,null),c().createElement(gp.Panel,null,c().createElement(gp.Header,null,c().createElement("div",{className:"flex items-center justify-between"},c().createElement(gp.Title,null,(0,hm.__)("Rollback to Previous Version","header-footer-elementor")),c().createElement(gp.CloseButton,null))),c().createElement(gp.Body,null,(0,hm.__)("Are you sure you want to rollback to Ultimate Addons for Elementor v".concat(r,"?"),"header-footer-elementor")),c().createElement(gp.Footer,null,c().createElement(ct,{onClick:function(){var e=hfeSettingsData.uaelite_rollback_url.replace("VERSION",r);m(!1),window.location.href=e}},(0,hm.__)("Rollback","header-footer-elementor")),c().createElement(ct,{onClick:function(){m(!1)}},(0,hm.__)("Cancel","header-footer-elementor"))))))))))},Hf=function(){var e=s((0,i.useState)(!0),2),t=e[0],n=e[1];(0,i.useEffect)((function(){n("yes"===hfeSettingsData.analytics_status)}),[]);var r=function(){var e=cp(dp().mark((function e(){var r,o;return dp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n(r=!t),e.prev=2,e.next=5,fetch(hfe_admin_data.ajax_url,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:new URLSearchParams({action:"save_analytics_option",uae_usage_optin:r?"yes":"no",nonce:hfe_admin_data.nonce})});case 5:return o=e.sent,e.next=8,o.json();case 8:e.sent.success?zf.success((0,hm.__)("Settings saved successfully!","header-footer-elementor")):zf.error((0,hm.__)("Failed to save settings!","header-footer-elementor")),e.next=15;break;case 12:e.prev=12,e.t0=e.catch(2),zf.error((0,hm.__)("Failed to save settings!","header-footer-elementor"));case 15:case"end":return e.stop()}}),e,null,[[2,12]])})));return function(){return e.apply(this,arguments)}}();return c().createElement(c().Fragment,null,c().createElement("hr",{className:"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle",style:{marginTop:"20px",marginBottom:"20px",borderColor:"#E5E7EB"}}),c().createElement(nt,{align:"center",className:"flex flex-col lg:flex-row",containerType:"flex",direction:"column",gap:"sm",justify:"start"},c().createElement(nt.Item,{className:"p-2 flex space-y-4",alignSelf:"auto",order:"none"},c().createElement("div",{className:"flex flex-row items-start justify-start px-1 gap-3"},c().createElement(Um,{onChange:r,size:"sm",value:t,className:"hfe-remove-ring"}),c().createElement("div",{className:"flex flex-col justify-start px-1 gap-3"},c().createElement("span",{className:"font-normal text-text-primary m-0"},(0,hm.__)("Help shape the future of Ultimate Addons for Elementor. Share how you use the plugin so we can build features that matter, fix issues faster, and make smarter decisions. ","header-footer-elementor"),c().createElement("a",{href:"https://store.brainstormforce.com/usage-tracking/?utm_source=wp_dashboard&utm_medium=general_settings&utm_campaign=usage_tracking",target:"_blank",rel:"noopener noreferrer",className:"text-link-primary"},(0,hm.__)("Learn More","header-footer-elementor")))),c().createElement(Bf,{position:"top-right",reverseOrder:!1,gutter:8,containerStyle:{top:20,right:20,marginTop:"40px"},toastOptions:{duration:1e3,style:{background:"white"},success:{duration:2e3,style:{color:""},iconTheme:{primary:"#6005ff",secondary:"#fff"}}}})))))},$f=function(){return c().createElement(c().Fragment,null,c().createElement(Zm,{description:"",icon:null,iconPosition:"right",size:"sm",tag:"h2",title:(0,hm.__)("My Account","header-footer-elementor")}),c().createElement("div",{className:"",style:{marginTop:"24px"}},c().createElement(nt,{align:"stretch",className:"bg-background-primary p-6 rounded-lg",containerType:"flex",direction:"column",gap:"sm",justify:"start",style:{marginTop:"24px"}},c().createElement(nt.Item,{className:"flex flex-col space-y-2",style:{marginTop:"24px"}},c().createElement("p",{className:"text-base font-semibold m-0"},(0,hm.__)("License Key","header-footer-elementor")),c().createElement("p",{className:"text-sm font-normal m-0"},(0,hm.__)("You are using the free version of Ultimate Addons for Elementor, no license key is needed. "))),c().createElement("div",{className:"flex items-center justify-between px-4 rounded-xl",style:{paddingTop:"6px",paddingBottom:"6px",backgroundColor:"#F3F0FF"}},c().createElement("span",{className:"flex flex-col items-left mt-2 text-base font-semibold"},(0,hm.__)("Build Better Websites With Ultimate Addons Pro","header-footer-elementor"),c().createElement("p",{className:"text-sm font-normal m-0 py-2",style:{width:"500px"}},(0,hm.__)("Unlock advanced addons to power up Elementor - smarter widgets, smoother workflows, and more creative freedom with UAE Pro.","header-footer-elementor"))),c().createElement(ct,{icon:c().createElement(um,null),iconPosition:"right",variant:"link",style:{color:"#6005FF",borderColor:"#6005FF",transition:"color 0.3s ease, border-color 0.3s ease",fontSize:"16px"},className:"hfe-remove-ring text-[#6005FF]",onClick:function(){window.open("https://ultimateelementor.com/pricing/?utm_source=uae-lite-settings&utm_medium=My-accounts&utm_campaign=uae-lite-upgrade","_blank")}},(0,hm.__)("Upgrade Now","header-footer-elementor"))),c().createElement(Hf,null))))},qf=cm("lock",[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2",key:"1w4ew1"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4",key:"fwvmzm"}]]),Yf=cm("move-up-right",[["path",{d:"M13 5H19V11",key:"1n1gyv"}],["path",{d:"M19 5L5 19",key:"72u4yj"}]]);function Gf(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Xf(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Gf(Object(n),!0).forEach((function(t){h(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Gf(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}const Kf=function(){var e=s((0,i.useState)({author:"",author_url:"",plugin_name:"",short_name:"",description:"",hide_branding:!1,logo_url:"",internal_help_links:!1,replace_logo:!1}),2),t=e[0],n=e[1],r=function(e,t){n((function(n){return Xf(Xf({},n),{},h({},e,t))}))};return c().createElement("form",{onSubmit:function(e){e.preventDefault()}},c().createElement("div",{className:"rounded-lg"},c().createElement("div",{className:"flex flex-row items-center justify-between",style:{paddingBottom:"24px"}},c().createElement(Zm,{description:"",icon:null,iconPosition:"right",size:"sm",tag:"h2",title:(0,hm.__)("White Label","header-footer-elementor")})),c().createElement("div",{className:"relative"},c().createElement("div",{style:{pointerEvents:"none"}},c().createElement(nt,{align:"stretch",className:"bg-background-primary p-6 rounded-lg",containerType:"flex",direction:"column",gap:"sm",justify:"start",style:{marginTop:"24px"}},c().createElement("div",null,c().createElement(nt,{align:"stretch",className:"flex flex-column bg-background-primary",containerType:"flex",direction:"column",style:{padding:"24px",borderRadius:"8px"}},c().createElement(Zm,{size:"sm",tag:"h2",title:(0,hm.__)("Plugins Details","header-footer-elementor"),description:(0,hm.__)("You can change the author name and plugin details that are displayed in the WordPress backend.","header-footer-elementor")}),c().createElement("div",{className:"flex flex-row items-center mt-1 w-full gap-3"},c().createElement(nt.Item,{className:"flex flex-col space-y-1 basis-1/2 flex-1"},c().createElement("div",{className:"text-base text-field-label font-semibold m-0 mb-2"},"Author"),c().createElement("input",{name:"author",type:"text",value:t.author,className:"w-full border border-subtle px-2",onChange:function(e){return r(e.target.name,e.target.value)},placeholder:(0,hm.__)("Brainstorm Force","header-footer-elementor"),style:{height:"48px",borderColor:"#e0e0e0",outline:"none",boxShadow:"none"},onFocus:function(e){return e.target.style.borderColor="#6005FF"},onBlur:function(e){return e.target.style.borderColor="#e0e0e0"}})),c().createElement(nt.Item,{className:"flex flex-col space-y-1 basis-1/2 flex-1"},c().createElement("div",{className:"text-base text-field-label font-semibold m-0 mb-2"},"Author URL"),c().createElement("input",{name:"author_url",className:"w-full border border-subtle px-2",type:"url",value:t.author_url,onChange:function(e){return r(e.target.name,e.target.value)},placeholder:(0,hm.__)("https://www.brainstormforce.com","header-footer-elementor"),style:{height:"48px",borderColor:"#e0e0e0",outline:"none",boxShadow:"none"},onFocus:function(e){return e.target.style.borderColor="#6005FF"},onBlur:function(e){return e.target.style.borderColor="#e0e0e0"}}))),c().createElement("div",{className:"flex flex-row items-center mt-1 w-full gap-3"},c().createElement(nt.Item,{className:"flex flex-col space-y-1 basis-1/2 flex-1"},c().createElement("div",{className:"text-base text-field-label font-semibold m-0 mb-2"},(0,hm.__)("Plugin Name","header-footer-elementor")),c().createElement("input",{name:"plugin_name",type:"text",className:"w-full border border-subtle px-2",value:t.plugin_name,onChange:function(e){return r(e.target.name,e.target.value)},placeholder:(0,hm.__)("Ultimate Addons","header-footer-elementor"),style:{height:"48px",borderColor:"#e0e0e0",outline:"none",boxShadow:"none"},onFocus:function(e){return e.target.style.borderColor="#6005FF"},onBlur:function(e){return e.target.style.borderColor="#e0e0e0"}})),c().createElement(nt.Item,{className:"flex flex-col space-y-1 basis-1/2 flex-1"},c().createElement("div",{className:"text-base text-field-label font-semibold m-0 mb-2"},(0,hm.__)("Plugin Short Name","header-footer-elementor")),c().createElement("input",{name:"short_name",type:"text",className:"w-full border border-subtle px-2",value:t.short_name,onChange:function(e){return r(e.target.name,e.target.value)},placeholder:(0,hm.__)("UAE","header-footer-elementor"),style:{height:"48px",borderColor:"#e0e0e0",outline:"none",boxShadow:"none"},onFocus:function(e){return e.target.style.borderColor="#6005FF"},onBlur:function(e){return e.target.style.borderColor="#e0e0e0"}}))),c().createElement(nt.Item,{className:"flex flex-col w-full space-y-1 space-x-2"},c().createElement("div",{className:"text-base text-field-label font-semibold m-0"},(0,hm.__)("Plugin Description","header-footer-elementor")),c().createElement("input",{name:"description",type:"text",className:"w-full border border-subtle",value:t.description,onChange:function(e){return r(e.target.name,e.target.value)},placeholder:(0,hm.__)("Ultimate Addons is a premium extension for Elementor...","header-footer-elementor"),style:{height:"48px",borderColor:"#e0e0e0",outline:"none",boxShadow:"none",marginTop:"16px"},onFocus:function(e){return e.target.style.borderColor="#6005FF"},onBlur:function(e){return e.target.style.borderColor="#e0e0e0"}})),c().createElement("div",{className:"border border-subtle",style:{height:"2px",backgroundColor:"#E5E7EB",marginTop:"6px"}}),c().createElement(nt.Item,{className:"flex flex-col w-full space-y-1 space-x-2"},c().createElement("div",{className:"flex flex-row items-center justify-between px-1"},c().createElement(Zm,{size:"xs",tag:"h3",title:(0,hm.__)("Replace or Hide Logo","header-footer-elementor"),className:"mt-4",description:(0,hm.__)("Enable this option to hide the default logo or replace it with your own logo. (Note: To hide the logo, leave the logo URL field empty.)","header-footer-elementor")}),c().createElement(Um,{onChange:function(e){return r("replace_logo",e)},size:"md",value:t.replace_logo,className:"uael-remove-ring"}))),t.replace_logo&&c().createElement(nt.Item,{className:"flex flex-col w-full space-y-1 space-x-2"},c().createElement("div",{className:"text-base text-field-label font-semibold m-0"},(0,hm.__)("Enter logo URL to replace","header-footer-elementor")),c().createElement("input",{name:"logo_url",type:"url",className:"w-full border border-subtle",value:t.logo_url,onChange:function(e){return r(e.target.name,e.target.value)},placeholder:(0,hm.__)("https://www.example.com/logo.svg","header-footer-elementor"),style:{height:"48px",borderColor:"#e0e0e0",outline:"none",boxShadow:"none",marginTop:"16px"},onFocus:function(e){return e.target.style.borderColor="#6005FF"},onBlur:function(e){return e.target.style.borderColor="#e0e0e0"}})),c().createElement(nt.Item,{className:"flex flex-col w-full space-y-1 space-x-2"},c().createElement("div",{className:"flex flex-row items-center justify-between px-1"},c().createElement(Zm,{size:"xs",tag:"h3",title:(0,hm.__)("Hide White Label Settings","header-footer-elementor"),className:"mt-4",description:(0,hm.__)("Enabling this option will hide the White Label settings. To access it again, re-activate the plugin.","header-footer-elementor")}),c().createElement(Um,{onChange:function(e){return r("hide_branding",e)},size:"md",value:t.hide_branding}))),c().createElement("div",{className:"border border-subtle",style:{height:"2px",backgroundColor:"#E5E7EB",marginTop:"6px"}}),c().createElement(nt.Item,{className:"flex flex-col w-full space-y-1 space-x-2"},c().createElement(Zm,{size:"sm",tag:"h2",title:(0,hm.__)("Elementor Editor Area","header-footer-elementor"),className:"mt-1"}),c().createElement("div",{className:"flex flex-row items-center justify-between px-1"},c().createElement(Zm,{size:"xs",tag:"h3",title:(0,hm.__)("Show Help Links","header-footer-elementor"),className:"mt-4",description:(0,hm.__)("Display internal help links in widget editor area.","header-footer-elementor")}),c().createElement(Um,{onChange:function(e){return r("internal_help_links",e)},size:"md",value:t.internal_help_links}))))))),c().createElement("div",{className:"absolute inset-0 z-20 flex items-center justify-center",style:{backgroundColor:"rgba(255,255,255,0.6)"}},c().createElement("div",{className:"bg-white rounded-xl text-center",style:{width:320,padding:"32px 28px",boxShadow:"-6px -6px 16px rgba(0,0,0,0.12), 12px 12px 30px rgba(0,0,0,0.18)"}},c().createElement(qf,{size:32,className:"text-gray-600"}),c().createElement("h2",{className:"text-lg font-semibold mb-2"},(0,hm.__)("White Label Available in UAE Pro","header-footer-elementor")),c().createElement("p",{className:"text-sm text-[#475569] mb-6"},(0,hm.__)("Remove UAE branding and customize the dashboard with your agency details.","header-footer-elementor")),c().createElement(ct,{variant:"primary",className:"rounded-md",style:{backgroundColor:"#6005FF",padding:"10px 22px"},onClick:function(){return window.open("https://ultimateelementor.com/pricing/?utm_source=whitelabel&utm_medium=uaesettings","_blank")}},c().createElement("span",{className:"px-1"},(0,hm.__)("Upgrade Now","header-footer-elementor")),c().createElement(Yf,{style:{width:"15px",height:"15px",marginBottom:"-2px",marginLeft:"2px"}})))))))},Zf=function(){var e=[{id:1,icon:c().createElement("img",{src:"".concat(hfeSettingsData.user_url),alt:(0,hm.__)("Custom SVG","header-footer-elementor"),className:"object-contain"}),selected:c().createElement("img",{src:"".concat(hfeSettingsData.user__selected_url),alt:(0,hm.__)("Custom SVG","header-footer-elementor"),className:"object-contain"}),title:(0,hm.__)("My Account","header-footer-elementor"),content:c().createElement($f,null)},{id:2,icon:c().createElement("img",{src:"".concat(hfeSettingsData.theme_url),alt:(0,hm.__)("Custom SVG","header-footer-elementor"),className:"object-contain"}),selected:c().createElement("img",{src:"".concat(hfeSettingsData.theme_url_selected),alt:(0,hm.__)("Custom SVG","header-footer-elementor"),className:"object-contain"}),main:(0,hm.__)("Editor","header-footer-elementor"),title:(0,hm.__)("Theme Support","header-footer-elementor"),content:c().createElement(Uf,null)},{id:3,icon:c().createElement("img",{src:"".concat(hfeSettingsData.version_url),alt:(0,hm.__)("Custom SVG","header-footer-elementor"),className:"object-contain"}),selected:c().createElement("img",{src:"".concat(hfeSettingsData.version__selected_url),alt:(0,hm.__)("Custom SVG","header-footer-elementor"),className:"object-contain"}),main:(0,hm.__)("Utilities","header-footer-elementor"),title:(0,hm.__)("Version Control","header-footer-elementor"),content:c().createElement(Wf,null)},{id:4,icon:c().createElement("img",{src:"".concat(hfeSettingsData.branding_url),alt:"Custom SVG",className:"object-contain"}),selected:c().createElement("img",{src:"".concat(hfeSettingsData.branding__selected_url),alt:"Custom SVG",className:"object-contain"}),main:"",title:(0,hm.__)("Branding","header-footer-elementor"),content:c().createElement(Kf,null)}].filter((function(e){return"no"!==hfeSettingsData.show_theme_support||2!==e.id})),t=s((0,i.useState)((function(){var t=localStorage.getItem("hfeSelectedItemId");return e.find((function(e){return e.id===Number(t)}))||e[0]})),2),n=t[0],r=t[1];return(0,i.useEffect)((function(){localStorage.setItem("hfeSelectedItemId",n.id.toString())}),[n]),(0,i.useEffect)((function(){var t=new URLSearchParams(window.location.search).get("tab");if(t){var n=Number(t),o=e.find((function(e){return e.id===n}));o&&r(o)}}),[]),c().createElement(c().Fragment,null,c().createElement(Nm,{onSettingsTabClick:function(){r(e[0])}}),c().createElement("div",{className:""},c().createElement(nt,{align:"stretch",className:"p-1 flex-col lg:flex-row hfe-settings-page",containerType:"flex",direction:"row",gap:"sm",justify:"start",style:{height:"100%"}},c().createElement(nt.Item,{className:"p-2 hfe-sticky-outer-wrapper",alignSelf:"auto",order:"none",shrink:1,style:{backgroundColor:"#ffffff"}},c().createElement("div",{className:"hfe-sticky-sidebar"},c().createElement(Up,{items:e,onSelectItem:function(e){r(e)},selectedItemId:n.id}))),c().createElement(nt.Item,{className:"p-2 flex w-full justify-center items-start hfe-hide-scrollbar",alignSelf:"auto",order:"none",shrink:1,style:{height:"calc(100vh - 1px)",overflowY:"auto"}},c().createElement("div",{className:"hfe-78-width"},c().createElement(Wp,{selectedItem:n}))))))};let Jf=1;const Qf=new class{#e;#t;constructor(){this.#e=[],this.#t=[]}subscribe(e){return this.#t.push(e),()=>{this.#t=this.#t.filter((t=>t!==e))}}publish(e){this.#t.forEach((t=>t(e)))}add(e){this.#e.push(e),this.publish(e)}remove(e){return this.#e=this.#e.filter((t=>t.id!==e)),e}create(e){const{id:t,message:n="",jsx:r,...o}=e;if(!n&&"function"!=typeof r)return;const a="number"==typeof t?t:Jf++;return this.#e.find((e=>e.id===a))&&(this.#e=this.#e.map((e=>e.id===a?(this.publish({...e,title:n,jsx:r,...o}),{...e,title:n,jsx:r,...o}):e))),this.add({id:a,title:n,jsx:r,...o}),a}update(e,t){const{render:n}=t;let r=t;switch(typeof n){case"function":r={jsx:n,...t};break;case"string":r={title:n,...t}}this.#e=this.#e.map((t=>t.id===e?(this.publish({...t,...r}),{...t,...r}):t))}dismiss(e){return e||this.#e.forEach((e=>this.#t.forEach((t=>t({id:e.id,dismiss:!0}))))),this.#t.forEach((t=>t({id:e,dismiss:!0}))),e}history(){return this.#e}default(e="",t={}){return this.create({message:e,type:"neutral",...t})}success(e="",t={}){return this.create({message:e,type:"success",...t})}error(e="",t={}){return this.create({message:e,type:"error",...t})}warning(e="",t={}){return this.create({message:e,type:"warning",...t})}info(e="",t={}){return this.create({message:e,type:"info",...t})}custom(e,t={}){return this.create({jsx:e,type:"custom",...t})}},eh=Object.seal(Object.assign(((e,t)=>Qf.default(e,t)),{success:Qf.success.bind(Qf),error:Qf.error.bind(Qf),warning:Qf.warning.bind(Qf),info:Qf.info.bind(Qf),custom:Qf.custom.bind(Qf),dismiss:Qf.dismiss.bind(Qf),update:Qf.update.bind(Qf)},{getHistory:Qf.history.bind(Qf)})),th={"top-left":"top-0 bottom-0 left-0 justify-start items-start","top-right":"top-0 bottom-0 right-0 justify-start items-end","bottom-left":"top-0 bottom-0 left-0 justify-end items-start","bottom-right":"top-0 bottom-0 right-0 justify-end items-end"},nh={neutral:"border-alert-border-neutral bg-alert-background-neutral",custom:"border-alert-border-neutral bg-alert-background-neutral",info:"border-alert-border-info bg-alert-background-info",success:"border-alert-border-green bg-alert-background-green",warning:"border-alert-border-warning bg-alert-background-warning",error:"border-alert-border-danger bg-alert-background-danger"},rh="bg-background-inverse border-background-inverse",oh={light:"text-icon-secondary",dark:"text-icon-inverse"};let ah=!1;const sh=({toastItem:e,title:t="",content:n="",autoDismiss:r=!0,dismissAfter:o=5e3,theme:a="light",design:s="stack",icon:l,variant:c="neutral",removeToast:u})=>{const d=(0,i.useRef)(0),m=(0,i.useRef)(0),p=(0,i.useRef)(),f=(e,t=o)=>{if(r&&!(o<0))return d.current=(new Date).getTime(),setTimeout((()=>{"function"==typeof u&&u(e.id)}),t)};(0,i.useEffect)((()=>{const t=o;return p.current=f(e,t),()=>{clearTimeout(p.current)}}),[]),(0,i.useEffect)((()=>{!e?.dismiss||"function"!=typeof u||u(e.id)}),[e]);const h=()=>{"function"==typeof u&&e?.action?.onClick?.((()=>u(e.id)))};let g=null;return"stack"===s&&(g=(0,L.jsx)("div",{className:Ae("flex items-center justify-start p-4 gap-2 relative border border-solid rounded-md shadow-lg","dark"===a?rh:nh?.[c],"w-[22.5rem]"),onMouseEnter:()=>{clearTimeout(p.current),m.current=(new Date).getTime()},onMouseLeave:()=>{p.current=f(e,o-(m.current-d.current))},children:"custom"!==e.type?(0,L.jsxs)(L.Fragment,{children:[(0,L.jsx)("div",{className:"self-start flex items-center justify-center [&_svg]:size-5 shrink-0",children:Dm({variant:c,icon:l,theme:a})}),(0,L.jsxs)("div",{className:"flex flex-col items-start justify-start gap-0.5 mr-6",children:[Om({title:t,theme:a}),Lm({content:n,theme:a}),e?.action?.label&&"function"==typeof e?.action?.onClick&&(0,L.jsx)("div",{className:"mt-2.5",children:Mm({actionLabel:e?.action?.label,actionType:e?.action?.type??"button",onAction:h,theme:a})})]}),(0,L.jsx)("div",{className:"absolute right-4 top-4 [&_svg]:size-5",children:(0,L.jsx)("button",{className:Ae("bg-transparent m-0 p-0 border-none focus:outline-none active:outline-none cursor-pointer",oh[a]??oh.light),onClick:()=>{"function"==typeof u&&u(e.id)},children:(0,L.jsx)(nm,{})})})]}):e?.jsx?.({close:()=>u(e.id),action:e?.action?{...e?.action,onClick:h}:null})})),"inline"===s&&(g=(0,L.jsxs)("div",{className:Ae("flex items-center justify-start p-3 gap-2 relative border border-solid rounded-md shadow-lg","dark"===a?rh:nh?.[c],"lg:w-[47.5rem] w-full"),children:[(0,L.jsx)("div",{className:"self-start flex items-center justify-center [&_svg]:size-5 shrink-0",children:Dm({variant:c,icon:l,theme:a})}),(0,L.jsxs)("div",{className:"flex items-start justify-start gap-1 mr-10 [&>span:first-child]:shrink-0",children:[Om({title:t,theme:a}),Lm({content:n,theme:a})]}),(0,L.jsx)("div",{className:"absolute right-3 top-3 [&_svg]:size-5",children:(0,L.jsx)("button",{className:Ae("bg-transparent m-0 p-0 border-none focus:outline-none active:outline-none cursor-pointer",oh[a]??oh.light),onClick:()=>u(e.id),children:(0,L.jsx)(nm,{})})})]})),g},ih=(e=>(0,i.memo)((t=>{const n=t.singleTon;return ah&&n?null:(ah=!0,(0,L.jsx)(e,{...t}))})))((({position:e="top-right",design:t="stack",theme:n="light",className:r="",autoDismiss:o=!0,dismissAfter:a=5e3})=>{const[s,l]=(0,i.useState)([]);(0,i.useEffect)((()=>{Qf.subscribe((e=>{e?.dismiss?l((t=>t.map((t=>t.id===e.id?{...t,dismiss:!0}:t)))):setTimeout((()=>{(0,rn.flushSync)((()=>l((t=>-1!==t.findIndex((t=>t.id===e.id))?t.map((t=>t.id===e.id?{...t,...e}:t)):[...t,e]))))}))}))}),[]);const c=e=>{l((t=>t.filter((t=>t.id!==e))))};return(0,L.jsx)("ul",{className:Ae("fixed flex flex-col list-none z-20 p-10 pointer-events-none [&>li]:pointer-events-auto gap-3",th[e]??th["top-right"],r),children:(0,L.jsx)(Dd,{initial:!1,children:s.map((e=>(0,L.jsx)(Cd.li,{initial:{opacity:0,y:50,scale:.7},animate:{opacity:1,y:0,scale:1},exit:{opacity:0,scale:.6,transition:{duration:.15}},layoutId:`toast-${e.id}`,children:(0,L.jsx)(sh,{toastItem:e,title:e.title,content:e?.description,icon:e?.icon??void 0,design:e?.design??t,autoDismiss:e?.autoDismiss??o,dismissAfter:e?.dismissAfter??a,removeToast:c,variant:e.type,theme:e?.theme??n})},e.id)))})})}));function lh(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ch(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?lh(Object(n),!0).forEach((function(t){h(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):lh(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}const uh=Id("Minus",[["path",{d:"M5 12h14",key:"1ays0h"}]]),dh=Id("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]),mh=({type:e="simple",defaultValue:t=[],autoClose:n=!1,disabled:r=!1,children:o,className:a})=>{const[s,l]=(0,i.useState)(Array.isArray(t)?t:[t]);return(0,L.jsx)("div",{className:Ae("boxed"===e?"space-y-3":"",a),children:i.Children.map(o,(t=>{if(i.isValidElement(t)&&"value"in t.props){const o=!1!==t.props.collapsible,a=!o||s.includes(t.props.value);return i.cloneElement(t,{isOpen:a,onToggle:o?()=>(e=>{l((t=>n?t.includes(e)?[]:[e]:t.includes(e)?t.filter((t=>t!==e)):[...t,e]))})(t.props.value):void 0,type:e,disabled:r||t.props.disabled})}return t}))})};mh.displayName="Accordion";const ph=({isOpen:e,onToggle:t,type:n="simple",disabled:r=!1,children:o,className:a})=>{const s={simple:"border-0",separator:"border-0 border-b border-solid border-border-subtle",boxed:"border border-solid border-border-subtle rounded-md"}[n];return(0,L.jsx)("div",{className:Ae(s,a),children:i.Children.map(o,(o=>i.isValidElement(o)?i.cloneElement(o,{isOpen:e,onToggle:t,type:n,disabled:r}):o))})};ph.displayName="Accordion.Item";const fh=({onToggle:e,isOpen:t,iconType:n="arrow",collapsible:r=!0,disabled:o=!1,tag:a="h3",type:s="simple",children:i,className:l,...c})=>{const u={simple:"px-2 py-3",separator:"px-2 py-4",boxed:"px-3 py-4"}[s];return(0,L.jsx)(a,{className:"flex m-0 hover:bg-background-secondary transition duration-150 ease-in-out",children:(0,L.jsxs)("button",{className:Ae("flex w-full items-center justify-between text-sm font-medium transition-all appearance-none bg-transparent border-0 cursor-pointer gap-3",u,o&&"cursor-not-allowed opacity-40",l),onClick:!o&&r?e:void 0,"aria-expanded":t,disabled:o,...c,children:[(0,L.jsx)("div",{className:"flex items-center gap-2 text-text-primary font-semibold text-left",children:i}),r?"arrow"===n?(0,L.jsx)(Bd,{className:Ae("flex-shrink-0 text-icon-secondary size-5 transition-transform duration-300 ease-in-out",t?"rotate-180":"rotate-0")}):"plus-minus"===n?(0,L.jsx)(Cd.span,{initial:{opacity:0,rotate:t?-180:0},animate:{opacity:1,rotate:t?0:180},exit:{opacity:0},transition:{duration:.3,ease:"easeInOut"},className:"flex items-center flex-shrink-0 text-icon-secondary",children:t?(0,L.jsx)(uh,{}):(0,L.jsx)(dh,{})},t?"minus":"plus"):null:null]})})};fh.displayName="Accordion.Trigger";const hh=({isOpen:e,disabled:t=!1,type:n="simple",children:r,className:o})=>{const a={simple:"px-2 pb-3",separator:"px-2 pb-4",boxed:"px-3 pb-4"}[n];return(0,L.jsx)(Dd,{initial:!1,children:e&&(0,L.jsx)(Cd.div,{variants:{open:{height:"auto",opacity:1,overflow:"unset",transition:{overflow:{delay:1}}},closed:{height:0,opacity:0,overflow:"hidden"}},initial:"closed",animate:"open",exit:"closed",transition:{duration:.3,ease:"easeInOut"},className:Ae("text-text-secondary w-full text-sm transition-[height, opacity, transform] ease-in box-border",t&&"opacity-40",o),"aria-hidden":!e,children:(0,L.jsx)("div",{className:Ae(a),children:r})},"content")})};hh.displayName="Accordion.Content";const gh=Object.assign(mh,{Item:ph,Trigger:fh,Content:hh}),yh={400:"font-normal",500:"font-medium",600:"font-semibold",700:"font-bold"},vh={36:"text-4xl",30:"text-3xl",24:"text-2xl",20:"text-xl",18:"text-lg",16:"text-base",14:"text-sm",12:"text-xs"},xh={44:"leading-11",38:"leading-9.5",32:"leading-8",30:"leading-7.5",28:"leading-7",24:"leading-6",20:"leading-5",16:"leading-4"},bh={2:"tracking-2"},wh={brand600:"text-brand-primary-600",link:"text-link-primary",primary:"text-text-primary",secondary:"text-text-secondary",tertiary:"text-text-tertiary",disabled:"text-text-disabled",help:"text-field-helper",label:"text-field-label",info:"text-support-info",success:"text-support-success",warning:"text-support-warning",error:"text-support-error",inverse:"text-text-on-color"},Eh=(0,i.forwardRef)((function({as:e,children:t,weight:n,size:r,lineHeight:o,letterSpacing:a,color:s="primary",className:i,...l},c){return(0,L.jsx)(e||"p",{ref:c,className:Ae("m-0 p-0",n?yh[n]:"",r?vh[r]:"",o?xh[o]:"",a?bh[a]:"",s?wh[s]:"",i),...l,children:t})})),_h=cm("chevron-right",[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]]),kh=cm("external-link",[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]]),Sh=cm("video",[["path",{d:"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5",key:"ftymec"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2",key:"158x01"}]]),Nh=cm("info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]),Ch=function(e){var t=e.step,n=e.chapterId,r=e.isLast,o=void 0!==r&&r,a=e.onCompletionChange,l=e.onLearnHowClick,c=t.id,u=t.title,d=t.description,m=t.learn,p=t.action,f=t.completed,h=void 0!==f&&f,g=t.isPro,y=void 0!==g&&g,v=s((0,i.useState)(h),2),x=v[0],b=v[1];if((0,i.useEffect)((function(){b(h)}),[h]),!c||!u)return null;var w=function(){var e=!x;b(e),a&&a(n,c,e)},E=function(){return"video"===(null==m?void 0:m.type)?React.createElement(Sh,{size:14}):React.createElement(Nh,{size:14})},_=x?(0,hm.__)("Mark as incomplete","astra"):(0,hm.__)("Mark as complete","astra");return React.createElement("div",{className:"py-4 sm:py-5 flex items-center gap-2 sm:gap-3 border-solid border-0 border-border-subtle ".concat(o?"":"border-b-0.5")},React.createElement(Bm,{arrow:!0,content:_,placement:"top",variant:"dark"},React.createElement("span",{className:"self-start mt-[1px] flex justify-center items-center w-2 h-2 p-[3px] sm:p-[4px] rounded-full cursor-pointer border-[1.25px] border-solid ".concat(x?"bg-support-success border-support-success-inverse":"border-border-strong [&:hover>svg]:text-border-strong"),tabIndex:0,"aria-label":_,onClick:w,onKeyDown:function(e){"Enter"!==e.key&&" "!==e.key||(e.preventDefault(),w())}},React.createElement(sp,{className:"text-icon-on-color sm:w-3.5 sm:h-3.5 transition-all duration-200",size:12,strokeWidth:1.5}))),React.createElement("div",{className:"flex-1 flex items-center gap-2"},React.createElement("div",{className:"flex flex-col gap-1.5"},React.createElement(Eh,{className:"flex-1",size:14,weight:500,color:"primary"},u),React.createElement(Eh,{className:"flex-1 hidden sm:block",size:14,color:"secondary"},d)),y&&React.createElement(rm,{label:(0,hm.__)("Pro","astra"),size:"xs",type:"pill",variant:"inverse",className:"uppercase"})),m&&React.createElement(Bm,{arrow:!0,content:(null==m?void 0:m.label)||(0,hm.__)("Learn how","astra"),placement:"top",variant:"dark"},React.createElement(ct,{size:"xs",variant:"ghost",icon:React.createElement(E,null),onClick:function(){"link"!==(null==m?void 0:m.type)?l&&m&&l(t):window.open(null==m?void 0:m.url,"_blank","noopener,noreferrer")},className:"text-button-primary hover:bg-transparent outline-none"})),React.createElement(ct,{className:"px-3 gap-0.5 min-w-40 text-button-primary hover:bg-background-button-hover hover:outline-button-secondary",size:"sm",variant:"secondary",icon:React.createElement(um,{size:14}),iconPosition:"right",onClick:function(){null!=p&&p.url?null!=p&&p.isExternal?window.open(null==p?void 0:p.url,"_blank","noopener,noreferrer"):window.location.href=null==p?void 0:p.url:console.info("Empty or missing URL!!!")}},(null==p?void 0:p.label)||(0,hm.__)("Set Up","astra")))},Ph=function(e){var t=e.chapters,n=e.defaultValue,r=e.onStepCompletionChange,o=e.onLearnHowClick,a=function(e,t){e.stopPropagation(),t?window.open(t,"_blank","noopener,noreferrer"):console.info("Empty or missing URL!!!")};return React.createElement(gh,{type:"boxed",autoClose:!0,defaultValue:n},t.map((function(e){var t=e.id,n=e.title,s=e.description,i=e.url,l=e.steps,c=l.length,u=l.filter((function(e){return e.completed})).length,d=c===u;return React.createElement(gh.Item,{key:t,className:"bg-background-primary border-0.5 [&:hover>h3]:bg-transparent rounded-lg overflow-hidden [&:has([aria-expanded='true'])]:shadow-xs transition-all duration-200 ease-in-out",value:t},React.createElement(gh.Trigger,{className:"group p-3 sm:p-4 hover:bg-transparent [&>svg]:hidden [&>div]:flex-grow [&[aria-expanded='true']_.learn-chevron-right]:rotate-90 [&[aria-expanded='true']_.learn-more-btn]:flex"},React.createElement("div",{className:"flex items-center gap-2 sm:gap-3 flex-1"},React.createElement(_h,{className:"learn-chevron-right transition-transform duration-200 ease-in-out",size:20}),React.createElement("div",{className:"flex-1 text-left"},React.createElement(Eh,{size:14,className:"sm:text-base",weight:600},n)),i&&React.createElement("span",{className:"hover:underline underline-offset-2 learn-more-btn hidden transition-all cursor-pointer text-link-primary outline-link-primary items-center gap-1 text-xs px-2 py-1",onClick:function(e){return a(e,i)},role:"link",tabIndex:0,onKeyDown:function(e){"Enter"!==e.key&&" "!==e.key||a(e,i)}},React.createElement("span",{className:"hidden sm:inline"},(0,hm.__)("Learn how","astra")),React.createElement(kh,{size:16,strokeWidth:1.25})),React.createElement(rm,{className:"relative overflow-hidden w-14 sm:w-[62px] text-xs",label:React.createElement(React.Fragment,null,React.createElement("span",{className:"sr-only"},(0,hm.sprintf)((0,hm.__)("%1$d of %2$d steps completed","astra"),u,c)),React.createElement("span",{className:"flex items-center"},d&&React.createElement(sp,{size:12}),React.createElement("span",{className:"px-1 relative z-10"},u,"/",c)),React.createElement("span",{className:"absolute h-full top-0 left-0 bg-[#BAE6FD]/40 transition-[width] duration-300 ease-in-out",style:{width:"".concat(u/c*100,"%")}})),variant:d?"green":u>0?"blue":"gray"}))),React.createElement(gh.Content,{className:"overflow-visible [&>div]:p-0"},s&&React.createElement(Eh,{className:"px-3 sm:px-4 ml-7 mr-0 sm:mx-8 -mt-2 pb-4 pt-3 max-w-full sm:max-w-[72%]",size:14,color:"secondary",weight:400},s),React.createElement("span",{className:"block w-full h-[0.5px] bg-border-subtle"}),React.createElement("div",{className:"px-3 sm:px-4 flex flex-col bg-[#FCFCFD]"},l.map((function(e,n){return React.createElement(Ch,{key:e.id,step:e,chapterId:t,isLast:n===l.length-1,onCompletionChange:r,onLearnHowClick:o})})))))})))},Th=function(){return React.createElement(React.Fragment,null,React.createElement("div",{className:"border-0.5 border-solid border-border-subtle rounded-lg"},React.createElement(Xm,{variant:"rectangular",className:"w-full h-14 rounded-b-none rounded-t-lg bg-background-secondary"}),React.createElement("div",{className:"px-4"},Array(4).fill(0).map((function(e,t){return React.createElement("div",{key:"step-skeleton-".concat(t),className:"py-5 flex items-center gap-3"},React.createElement(Xm,{variant:"circular",className:"w-6 h-6 bg-background-secondary"}),React.createElement("div",{className:"flex-1"},React.createElement(Xm,{variant:"rectangular",className:"w-2/3 h-5 bg-background-secondary"})),React.createElement(Xm,{variant:"rectangular",className:"w-[104px] h-8 bg-background-secondary"}))})))),Array(4).fill(0).map((function(e,t){return React.createElement(Xm,{key:"skeleton-".concat(t),variant:"rectangular",className:"w-full h-14 rounded-lg bg-background-secondary"})})))},jh=(0,g.forwardRef)((function(e){var t=e.text,n=e.variant,r=e.onClick;return React.createElement(ct,{variant:n||"primary",size:"sm",onClick:function(e){r&&"function"==typeof r&&r(e)}},t)})),Rh=function(e){var t=e.items;return React.createElement("div",{className:"space-y-2"},t.map((function(e,t){return React.createElement("div",{key:t,className:"flex items-start gap-2"},React.createElement(Eh,{size:14,weight:600,color:"primary",className:"flex-shrink-0"},(0,hm.sprintf)((0,hm.__)("Step %d:","astra"),t+1)),React.createElement(Eh,{size:14,color:"secondary"},e.text))})))},Fh=function(e){var t=e.src,n=e.alt,r=s((0,i.useState)(!1),2),o=r[0],a=r[1];return React.createElement("div",{className:"relative w-full shadow-sm rounded-lg overflow-hidden"},!o&&React.createElement(Xm,{className:"w-full h-64"}),React.createElement("img",{src:t,alt:n||"",className:"w-full h-auto border-0.5 border-solid border-border-subtle ".concat(o?"block":"hidden"),onLoad:function(){return a(!0)}}))},Ah=function(e){var t=e.prefix,n=e.text,r=e.url,o=e.target,a=void 0===o?"_blank":o;return React.createElement("div",{className:"text-sm flex gap-1"},t&&React.createElement("span",null,t),React.createElement(Eh,{as:"a",href:r,target:a,className:"text-gs-primary underline"},n||r))},Dh=function(e){var t=e.items;return React.createElement("ul",{className:"list-disc ml-8"},t.map((function(e,t){return React.createElement("li",{key:t,className:"my-0.5"},React.createElement(Eh,{size:14,color:"secondary"},e))})))};var Mh=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return t.filter(Boolean).join(" ")};const Oh=function(e){var t=e.text,n=e.isHeading,r=void 0!==n&&n;return React.createElement(Eh,{as:r?"h3":"p",weight:r?600:400,size:r?18:14,color:r?"primary":"secondary",className:Mh("leading-relaxed",r?"mt-4":"")},t)},Lh=function(e){var t=e.url,n=e.title;return React.createElement("div",{className:"aspect-video rounded-lg bg-background-tertiary overflow-clip shadow-sm"},React.createElement("iframe",{src:t,title:n,className:"w-full h-full border-none",allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture",allowFullScreen:!0}))},Ih=function(e){var t,n=e.items;return Array.isArray(n)||(n=[n]),null===(t=n)||void 0===t?void 0:t.map((function(e,t){switch(e.type){case"video":return React.createElement(Lh,{key:t,url:e.data.url,title:e.data.title});case"image":return React.createElement(Fh,{key:t,src:e.data.src,alt:e.data.alt});case"link":return React.createElement(Ah,{key:t,prefix:e.prefix,text:e.data.text,url:e.data.url,target:e.data.target});case"heading":return React.createElement(Oh,{key:t,text:e.text,isHeading:!0});case"paragraph":case"text":return React.createElement(Oh,{key:t,text:e.text});case"list":return React.createElement(Dh,{key:t,items:e.data.items});case"checklist":return React.createElement(Rh,{key:t,items:e.data.items});case"button":return React.createElement(jh,b({key:t,onClick:function(){return window.open(e.data.url,e.data.target)}},e.data));default:return null}}))},Bh=function(e){var t,n=e.open,r=void 0!==n&&n,o=e.setOpen,a=e.item;return React.createElement(gp,{design:"simple",exitOnEsc:!0,scrollLock:!0,exitOnClickOutside:!0,open:r,setOpen:function(){o&&"function"==typeof o&&o(!1)}},React.createElement(gp.Backdrop,null),React.createElement(gp.Panel,{className:"w-[90vw] max-w-5xl gap-2 max-h-[85vh] sm:max-h-[80vh] mx-auto"},React.createElement(gp.Header,{className:"px-4 sm:px-5 pb-0"},React.createElement("div",{className:"flex items-center justify-between"},React.createElement(gp.Title,{className:"text-base"},null==a?void 0:a.title),React.createElement(gp.CloseButton,null)),React.createElement(gp.Description,null,null==a?void 0:a.description)),React.createElement(gp.Body,{className:"pt-2 px-4 sm:px-5 pb-4 sm:pb-5 flex flex-col gap-2 sm:gap-2.5 overflow-auto"},React.createElement(Ih,{items:(null==a||null===(t=a.learn)||void 0===t?void 0:t.content)||{}}))))},zh=function(e){var t=e.chapters,n=void 0===t?[]:t,r=e.endpoints,o=void 0===r?null:r,a=e.className,l=void 0===a?"":a,c=e.onProgressChange,u=s((0,i.useState)([]),2),d=u[0],m=u[1],p=s((0,i.useState)(!1),2),f=p[0],h=p[1],g=s((0,i.useState)(null),2),y=g[0],v=g[1];(0,i.useEffect)((function(){if(null!=o&&o.get){var e=new AbortController;return h(!0),v(null),$m()({path:o.get,signal:e.signal}).then((function(e){m(e),h(!1)})).catch((function(e){v(e.message||"Failed to load chapters"),h(!1)})),function(){e.abort()}}}),[null==o?void 0:o.get]);var x=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.initialChapters,n=void 0===t?[]:t,r=e.saveEndpoint,o=void 0===r?null:r,a=s((0,i.useState)(n),2),l=a[0],c=a[1],u=s((0,i.useState)(!1),2),d=u[0],m=u[1],p=s((0,i.useState)(null),2),f=p[0],h=p[1];(0,i.useEffect)((function(){n.length>0&&c(n)}),[n]);var g=(0,i.useCallback)((function(e,t,n){c((function(r){return r.map((function(r){return r.id===e?ch(ch({},r),{},{steps:r.steps.map((function(e){return e.id===t?ch(ch({},e),{},{completed:n}):e}))}):r}))})),o&&$m()({path:o,method:"POST",data:{chapterId:e,stepId:t,completed:n}}).catch((function(r){c((function(r){return r.map((function(r){return r.id===e?ch(ch({},r),{},{steps:r.steps.map((function(e){return e.id===t?ch(ch({},e),{},{completed:!n}):e}))}):r}))})),eh.error((0,hm.__)("Failed to save progress. Please try again.","astra")),console.error("Failed to save progress:",r)}))}),[o]),y=(0,i.useCallback)((function(e,t){g(e,t,!0)}),[g]),v=(0,i.useCallback)((function(e,t){g(e,t,!1)}),[g]),x=(0,i.useCallback)((function(){c((function(e){return e.map((function(e){return ch(ch({},e),{},{steps:e.steps.map((function(e){return ch(ch({},e),{},{completed:!1})}))})}))}))}),[]),b=(0,i.useMemo)((function(){var e=l.find((function(e){return e.steps.length!==e.steps.filter((function(e){return e.completed})).length}));return null==e?void 0:e.id}),[l]),w=(0,i.useMemo)((function(){var e=l.reduce((function(e,t){return e+t.steps.length}),0),t=l.reduce((function(e,t){return e+t.steps.filter((function(e){return e.completed})).length}),0),n=e>0?Math.round(t/e*100):0;return{totalChapters:l.length,totalSteps:e,completedSteps:t,completionPercentage:n,isFullyCompleted:e>0&&t===e}}),[l]),E=(0,i.useCallback)((function(e){var t=l.find((function(t){return t.id===e}));if(!t)return null;var n=t.steps.length,r=t.steps.filter((function(e){return e.completed})).length;return{totalSteps:n,completedSteps:r,isCompleted:n>0&&r===n,completionPercentage:n>0?Math.round(r/n*100):0}}),[l]),_=(0,i.useCallback)((function(e){h(e),m(!0)}),[]),k=(0,i.useCallback)((function(){m(!1),h(null)}),[]);return{chapters:l,updateStepCompletion:g,markStepCompleted:y,markStepIncomplete:v,resetProgress:x,firstIncompleteChapterId:b,progressStats:w,getChapterStats:E,learnHowDialogOpen:d,currentLearnHowItem:f,openLearnHowDialog:_,closeLearnHowDialog:k,setLearnHowDialogOpen:m}}({initialChapters:null!=o&&o.get?d:n,saveEndpoint:null==o?void 0:o.set}),b=x.chapters,w=x.updateStepCompletion,E=x.firstIncompleteChapterId,_=x.progressStats,k=x.learnHowDialogOpen,S=x.currentLearnHowItem,N=x.openLearnHowDialog,C=x.setLearnHowDialogOpen;return c&&"function"==typeof c&&c(_),f?React.createElement("div",{className:"flex flex-col gap-2 ".concat(l," !bg-transparent")},React.createElement(Th,null)):y?React.createElement("div",{className:l},React.createElement("div",{className:"text-error p-4"},y)):b&&0!==b.length?React.createElement("div",{className:l},React.createElement(Ph,{chapters:b,defaultValue:E,onStepCompletionChange:w,onLearnHowClick:N}),React.createElement(Bh,{open:k,setOpen:C,item:S}),React.createElement(ih,{position:"top-right",design:"stack",theme:"light",autoDismiss:!0,dismissAfter:5e3})):null},Vh=function(){var e=s((0,i.useState)(!1),2),t=e[0],n=e[1];return c().createElement(c().Fragment,null,c().createElement(jp,null),c().createElement(Nm,null),c().createElement("div",{className:"bg-gray-50 min-h-[calc(100vh_-_8rem)]"},c().createElement("h1",{className:"sr-only"},(0,hm.__)("Learn","header-footer-elementor")),c().createElement("div",{className:"max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 py-5"},c().createElement("div",{className:"max-w-3xl mx-auto px-4"},c().createElement("div",{className:"p-4 bg-background-primary rounded-xl flex flex-col gap-3 flex flex-col gap-4 sm:gap-8"},c().createElement("div",{className:"px-1 flex justify-between relative flex-col items-start space-y-2"},c().createElement("h2",{className:"m-0 p-0 font-semibold text-base text-text-primary"},(0,hm.__)("Learn","header-footer-elementor")),c().createElement("p",{className:"m-0 p-0 text-sm text-text-primary"},(0,hm.__)("Master UAE with our step-by-step guide and tutorials. Create stunning headers and footers with confidence.","header-footer-elementor")),c().createElement(ct,{className:"absolute right-0 whitespace-nowrap",variant:"ghost",size:"xs",icon:c().createElement(Sh,{className:"w-4 h-4"}),onClick:function(){n((function(e){return!e}))}},c().createElement("span",{className:"sm:inline-block"},t?(0,hm.__)("Hide Video","header-footer-elementor"):(0,hm.__)("Watch Video","header-footer-elementor")))),c().createElement("div",{className:"transition-all duration-700 ease-in-out overflow-hidden px-6 ".concat(t?"max-h-[800px] opacity-100 pb-6":"max-h-0 opacity-0 pb-0")},t&&c().createElement("div",{className:"relative rounded-lg shadow-lg aspect-video overflow-hidden"},c().createElement("iframe",{className:"w-full h-full",src:"https://www.youtube-nocookie.com/embed/ZeogOxqdKJI?autoplay=1&enablejsapi=1&start=29&end=72",title:"UAE Tutorial Video",allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture",allowFullScreen:!0}))),c().createElement(zh,{className:"bg-background-secondary p-2 rounded-lg [&>div]:space-y-2",endpoints:{get:"/hfe/v1/get-learn-chapters",set:"/hfe/v1/update-learn-progress"}}))))))},Uh=cm("x",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]),Wh=function(){var e=[{title:(0,hm.__)("Essentials","header-footer-elementor"),items:[{id:1,content:(0,hm.__)("White Label Option","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:2,content:(0,hm.__)("24x7 Premium Support","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:3,content:(0,hm.__)("User Portal / User Login","header-footer-elementor"),iconFree:!1,iconPro:!0}]},{title:(0,hm.__)("Content Widgets","header-footer-elementor"),items:[{id:1,content:(0,hm.__)("Advanced Heading","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:2,content:(0,hm.__)("Business Hours","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:3,content:(0,hm.__)("Content Toggle","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:4,content:(0,hm.__)("Google Map","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:5,content:(0,hm.__)("Image Gallery","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:6,content:(0,hm.__)("Info Box","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:7,content:(0,hm.__)("Modal Popup","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:8,content:(0,hm.__)("Posts","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:9,content:(0,hm.__)("Price List","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:10,content:(0,hm.__)("Table","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:11,content:(0,hm.__)("Info Card","header-footer-elementor"),iconFree:!0,iconPro:!1},{id:12,content:(0,hm.__)("Video","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:13,content:(0,hm.__)("Video Gallery","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:14,content:(0,hm.__)("Basic Posts","header-footer-elementor"),iconFree:!0,iconPro:!1},{id:15,content:(0,hm.__)("SVG Animator","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:16,content:(0,hm.__)("Table of Contents","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:17,content:(0,hm.__)("Counter","header-footer-elementor"),iconFree:!0,iconPro:!1}]},{title:(0,hm.__)("Creative Widgets","header-footer-elementor"),items:[{id:1,content:(0,hm.__)("Before After Slider","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:2,content:(0,hm.__)("Countdown Timer","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:3,content:(0,hm.__)("Welcome Music","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:4,content:(0,hm.__)("Dual Color Heading","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:5,content:(0,hm.__)("Fancy Heading","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:6,content:(0,hm.__)("Hotspots","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:7,content:(0,hm.__)("Login Form","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:8,content:(0,hm.__)("Marketing Button","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:9,content:(0,hm.__)("Multi Buttons","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:10,content:(0,hm.__)("Off-Canvas","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:11,content:(0,hm.__)("Retina Image","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:12,content:(0,hm.__)("Team Member","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:13,content:(0,hm.__)("Price Box","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:14,content:(0,hm.__)("Timeline","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:15,content:(0,hm.__)("User Registration Form","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:16,content:(0,hm.__)("Retina Logo","header-footer-elementor"),iconFree:!0,iconPro:!1}]},{title:(0,hm.__)("Form Styler","header-footer-elementor"),items:[{id:1,content:(0,hm.__)("Contact Form 7 Styler","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:2,content:(0,hm.__)("Gravity Form Styler","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:3,content:(0,hm.__)("WP Fluent Forms Styler","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:4,content:(0,hm.__)("WPForms Styler","header-footer-elementor"),iconFree:!1,iconPro:!0}]},{title:(0,hm.__)("SEO","header-footer-elementor"),items:[{id:1,content:(0,hm.__)("Business Reviews","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:2,content:(0,hm.__)("How To Schema","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:3,content:(0,hm.__)("FAQ Schema","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:4,content:(0,hm.__)("Breadcrumbs","header-footer-elementor"),iconFree:!1,iconPro:!0}]},{title:(0,hm.__)("WooCommerce","header-footer-elementor"),items:[{id:1,content:(0,hm.__)("Woo – Add to Cart","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:2,content:(0,hm.__)("Woo – Categories","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:3,content:(0,hm.__)("Woo – Thank You Page","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:4,content:(0,hm.__)("Woo – Checkout","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:5,content:(0,hm.__)("Woo – Mini Cart","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:6,content:(0,hm.__)("Woo – Products","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:7,content:(0,hm.__)("Woo – Product Grid","header-footer-elementor"),iconFree:!0,iconPro:!1},{id:8,content:(0,hm.__)("Cart","header-footer-elementor"),iconFree:!0,iconPro:!1}]},{title:(0,hm.__)("Social","header-footer-elementor"),items:[{id:1,content:(0,hm.__)("Instagram Feed","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:2,content:(0,hm.__)("X Feed","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:3,content:(0,hm.__)("Social Share","header-footer-elementor"),iconFree:!1,iconPro:!0}]},{title:(0,hm.__)("Special Features","header-footer-elementor"),items:[{id:1,content:(0,hm.__)("Cross-Site Copy Paste","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:2,content:(0,hm.__)("Presets","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:3,content:(0,hm.__)("Particle Backgrounds","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:4,content:(0,hm.__)("Party Propz","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:5,content:(0,hm.__)("Scroll to Top","header-footer-elementor"),iconFree:!0,iconPro:!1},{id:6,content:(0,hm.__)("Display Conditions","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:7,content:(0,hm.__)("Sticky Header","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:8,content:(0,hm.__)("UAE Duplicator","header-footer-elementor"),iconFree:!0,iconPro:!1},{id:9,content:(0,hm.__)("Conditional Display","header-footer-elementor"),iconFree:!1,iconPro:!0},{id:10,content:(0,hm.__)("Reading Progress Bar","header-footer-elementor"),iconFree:!0,iconPro:!1}]},{title:(0,hm.__)("Dynamic Header & Footer Widgets","header-footer-elementor"),items:[{id:1,content:(0,hm.__)("Site Logo","header-footer-elementor"),iconFree:!0,iconPro:!1},{id:2,content:(0,hm.__)("Site Title","header-footer-elementor"),iconFree:!0,iconPro:!1},{id:3,content:(0,hm.__)("Navigation Menu","header-footer-elementor"),iconFree:!0,iconPro:!1},{id:4,content:(0,hm.__)("Page Title","header-footer-elementor"),iconFree:!0,iconPro:!1},{id:5,content:(0,hm.__)("Search","header-footer-elementor"),iconFree:!0,iconPro:!1},{id:6,content:(0,hm.__)("Site Tagline","header-footer-elementor"),iconFree:!0,iconPro:!1},{id:7,content:(0,hm.__)("Copyright","header-footer-elementor"),iconFree:!0,iconPro:!1}]}],t=function(e){return e?c().createElement(sp,{color:"#16A34A"}):c().createElement(Uh,{color:"#DC2626"})};return c().createElement("div",{className:"rounded-lg bg-white w-full mb-6"},c().createElement("div",{className:"flex items-center justify-between p-5",style:{paddingBottom:"0"}},c().createElement("div",{className:"flex flex-col"},c().createElement("p",{className:"m-0 text-xl font-semibold pt-4 pb-2 text-text-primary"},(0,hm.__)("Free Vs Pro","header-footer-elementor")),c().createElement("p",{className:"m-0 text-sm font-normal pt-1 text-text-secondary"},(0,hm.__)("Ultimate Addons for Elementor Pro offers 50+ widgets and features!","header-footer-elementor")),c().createElement("p",{className:"m-0 text-sm font-normal pt-1 text-text-secondary"},(0,hm.__)("Compare the popular features/widgets to find the best option for your website.","header-footer-elementor"))),c().createElement("div",{className:"flex items-center gap-x-2 mr-7 text-sm"},c().createElement(ct,{iconPosition:"right",variant:"primary",style:{color:"white",borderColor:"#6005FF",transition:"color 0.3s ease, border-color 0.3s ease",backgroundColor:"#6005ff"},className:"hfe-remove-ring text-[#6005FF] text-base p-3.5",onClick:function(){window.open("https://ultimateelementor.com/pricing/?utm_source=uae-lite-FreevsPro&utm_medium=get-uae-pro&utm_campaign=uae-lite-upgrade","_blank")}},(0,hm.__)("Upgrade Now","header-footer-elementor")))),c().createElement("div",{className:"px-4"},c().createElement("div",{className:"flex flex-col space-y-2 pt-5"},e.map((function(e){return c().createElement(c().Fragment,{key:e.title},c().createElement("div",{className:"flex fle-row py-4 px-5 items-center h-4 justify-between rounded-lg shadow-container-item",style:{backgroundColor:"#F9FAFB"}},c().createElement("p",{className:"text-sm text-text-primary font-medium"},e.title),c().createElement("div",{className:"flex flex-row items-center",style:{gap:"12rem"}},c().createElement("p",{className:"text-sm text-text-primary font-medium"},(0,hm.__)("Free","header-footer-elementor")),c().createElement("p",{className:"text-sm text-text-primary font-medium",style:{marginRight:"50px"}},(0,hm.__)("Pro","header-footer-elementor")))),e.items.map((function(e){return c().createElement("div",{key:e.id,className:"flex fle-row py-4 px-5 items-center h-4 justify-between rounded-lg shadow-container-item"},c().createElement("p",{className:"text-sm text-text-secondary font-medium"},e.content),c().createElement("div",{className:"flex flex-row items-center justify-between",style:{gap:10===e.id&&e.content===(0,hm.__)("Navigation Menu","header-footer-elementor")?"10.7rem":"12rem"}},c().createElement("p",{className:"text-sm text-text-primary font-medium"},10===e.id&&e.content===(0,hm.__)("Navigation Menu","header-footer-elementor")?e.iconPro?(0,hm.__)("Advanced","header-footer-elementor"):(0,hm.__)("Basic","header-footer-elementor"):t(e.iconFree)),c().createElement("p",{className:"text-sm text-text-primary font-medium",style:{marginRight:10===e.id&&e.content===(0,hm.__)("Navigation Menu","header-footer-elementor")?"25px":"50px"}},10===e.id&&e.content===(0,hm.__)("Navigation Menu","header-footer-elementor")?e.iconPro?(0,hm.__)("Basic","header-footer-elementor"):(0,hm.__)("Advanced","header-footer-elementor"):t(e.iconPro))))})))})),c().createElement("div",{className:"flex items-center justify-center gap-x-2 "},c().createElement("a",{href:"https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=unlock-ultimate-feature&utm_campaign=uae-lite-upgrade",target:"_blank",rel:"noopener noreferrer",className:"text-sm font-normal text-text-primary cursor-pointer no-underline",style:{lineHeight:"1rem",paddingTop:"10px",paddingBottom:"20px",color:"#6005FF",textDecoration:"none",outline:"none",boxShadow:"none"},onFocus:function(e){return e.target.style.outline="none"},onBlur:function(e){return e.target.style.outline="none"}},(0,hm.__)("See all UAE Pro Features","header-footer-elementor"),c().createElement(um,{className:"ml-1 font-semibold",size:14,color:"#6005FF"}))))))},Hh=function(){return c().createElement(c().Fragment,null,c().createElement(jp,null),c().createElement(Nm,null),c().createElement("div",null,c().createElement(nt,{align:"stretch",className:"p-6 flex-col lg:flex-row box-border",containerType:"flex",direction:"row",gap:"sm",justify:"start",style:{width:"100%"}},c().createElement(nt.Item,{className:"p-2 hfe-65-width",alignSelf:"auto",order:"none",shrink:0},c().createElement(Wh,null)),c().createElement(nt.Item,{className:"p-2 w-full hfe-35-width hfe-sticky-right-sidebar",shrink:1},c().createElement(ip,null),c().createElement("div",{className:"pt-4 mt-4"},c().createElement(np,null))))))},$h=(e,t)=>Ae("rounded-full text-brand-primary-600 transition-colors duration-300",e[t].dot,e[t].ring),qh={sm:{dot:"size-2.5",ring:"size-5",numberIcon:"size-5 text-tiny",icon:"size-5",label:"text-xs"},md:{dot:"size-3",ring:"size-6",numberIcon:"size-6 text-sm",icon:"size-6",label:"text-sm"},lg:{dot:"size-3.5",ring:"size-7",numberIcon:"size-7 text-md",icon:"size-7",label:"text-sm"}},Yh=({variant:e="dot",size:t="sm",type:n="inline",currentStep:r=1,children:o,className:a,lineClassName:s="min-w-10",completedVariant:l="icon",completedIcon:c=(0,L.jsx)(Tm,{}),...u})=>{const d=i.Children.count(o);-1===r&&(r=d+1);const m=i.Children.map(o,((o,a)=>{const u={isCompleted:a+1<r,isCurrent:a+1===r,sizeClasses:qh,size:t,variant:e,type:n,isLast:a+1===d,index:a,lineClassName:s,completedVariant:l,completedIcon:c};return(0,L.jsx)(i.Fragment,{children:i.isValidElement(o)?i.cloneElement(o,u):o},a)}));return(0,L.jsx)("div",{className:Ae("flex w-full",a,"inline"===n?"items-center justify-between":""),...u,children:m})},Gh=({labelText:e="",icon:t=(0,L.jsx)(dh,{}),isCurrent:n,isCompleted:r,className:o,type:a,variant:s,sizeClasses:i,size:l,isLast:c,index:u,lineClassName:d,completedVariant:m="icon",completedIcon:p=(0,L.jsx)(Tm,{}),...f})=>{const h=Xh(s,r,n,i,l,t,u,m,p),g={lg:"left-[calc(50%+14px)] right-[calc(-50%+14px)]",md:"left-[calc(50%+12px)] right-[calc(-50%+12px)]",sm:"left-[calc(50%+10px)] right-[calc(-50%+10px)]"},y={lg:"top-3.5",md:"top-3",sm:"top-2.5"},v=()=>{if(e){const t=Ae(i[l].label,"text-text-tertiary",n?"text-brand-primary-600":"","break-word","stack"===a?"mt-2 transform max-w-xs":"mx-2 max-w-32");return(0,L.jsx)("span",{className:t,children:e})}return null},x=()=>{if(!c){const t=Ae("block",r?"border-brand-primary-600":"border-border-subtle",d);return"stack"===a?(0,L.jsx)("div",{className:Ae("relative","flex","border-solid","border-y","absolute",r?"border-brand-primary-600":"border-border-subtle",y[l],g[l]),children:(0,L.jsx)("span",{className:"block"})}):(0,L.jsx)("div",{className:"flex-1",children:(0,L.jsx)("span",{className:Ae("mr-2 border-y border-solid",!e&&"ml-2",t)})})}return null};return"stack"===a?(0,L.jsxs)("div",{className:"relative flex-1 justify-center",children:[(0,L.jsxs)("div",{className:Ae("flex items-center flex-col",o),...f,children:[h,v()]}),x()]}):(0,L.jsxs)(L.Fragment,{children:[(0,L.jsxs)("div",{className:Ae("flex items-center",o),...f,children:[h,v()]}),x()]})};Gh.displayName="ProgressSteps.Step";const Xh=(e,t,n,r,o,a,s,i="icon",l=(0,L.jsx)(Tm,{}))=>{if(t)return"number"===i?(0,L.jsx)("span",{className:Ae($h(r,o),"flex items-center justify-center bg-brand-primary-600 text-text-on-color rounded-full"),children:s+1}):(0,L.jsx)("span",{className:$h(r,o),children:l});const c=((e,t,n)=>Ae("relative flex items-center rounded-full justify-center transition-colors z-10 duration-500 ring-1",e?"ring-brand-primary-600":"ring-border-subtle",t[n].ring))(!!n,r,o),u=((e,t,n,r)=>{const o=`absolute rounded-full transition-colors duration-500 ${n[r].dot}`;return"dot"===e?Ae(o,n[r].dot,t?"bg-brand-primary-600":"bg-text-tertiary"):"number"===e?Ae(o,n[r].dot,t?"text-brand-primary-600":"text-text-tertiary","flex items-center justify-center"):"icon"===e?Ae(o,t?"text-brand-primary-600":"text-text-tertiary","flex items-center justify-center"):""})(e,n,r,o);let d=null;return"number"===e?d=s+1:"icon"===e&&a&&(d=a),(0,L.jsx)("span",{className:c,children:(0,L.jsx)("span",{className:u,children:d})})};Yh.Step=Gh;const Kh=function(e){var t=e.plugin,n=e.setUpdateCounter,r=e.onPluginSelect,o=t.path,a=t.slug,l=t.siteUrl,u=t.icon,d=t.type,m=t.name,p=t.zipUrl,f=t.desc,h=(t.wporg,t.isFree,t.action,t.status),g=t.settings_url,y=s((0,i.useState)(!1),2),v=y[0],x=y[1],b=s((0,i.useState)(null),2),w=b[0],E=(b[1],s((0,i.useState)(!1),2)),_=E[0],k=E[1];return c().createElement(c().Fragment,null,c().createElement("style",null,"\n                    .uae-role-checkbox {\n                        position: relative;\n                        width: 30px;\n                        height: 30px;\n                        -webkit-appearance: none;\n                        appearance: none;\n                        border: 2px solid #d1d5db; /* gray-300 */\n                        border-radius: 4px;\n                        cursor: pointer;\n                    }\n\n                    .uae-role-checkbox:checked {\n                        background-color: #240064;\n                        border-color: #0017E1;\n                    }\n\n                    .uae-role-checkbox:checked::after {\n                        content: '';\n                        position: absolute;\n                        top: 50%;\n                        left: 50%;\n                        width: 4px;\n                        height: 8px;\n                        border-right: 2px solid #fff;\n                        border-bottom: 2px solid #fff;\n                        transform: translate(-50%, -60%) rotate(45deg);\n                    }\n                "),c().createElement(nt,{align:"center",containerType:"flex",direction:"row",justify:"between",gap:"md"},c().createElement("div",{className:"flex items-center gap-x-3 flex-1 cursor-pointer",onClick:function(e){if(!e.target.closest("p.text-sm.font-medium")){var t=!_;k(t),r&&r({slug:a,path:o,type:d,name:m,zipUrl:p,status:h,isChecked:t})}}},c().createElement("div",{className:"h-6 w-6 flex-shrink-0"},c().createElement("img",{src:u,alt:"Recommended Plugins/Themes",className:"w-full h-auto rounded",style:{width:"24px",height:"24px"}})),c().createElement("div",{className:"flex flex-col pl-3 flex-1 min-w-0"},c().createElement("p",{className:"text-sm font-medium text-text-primary pb-1 m-0 cursor-pointer truncate",style:{width:"230px"},onClick:function(e){e.stopPropagation(),window.open(t.siteurl,"_blank")}},(0,hm.__)(m,"header-footer-elementor")),c().createElement("p",{className:"text-sm font-normal text-text-tertiary m-0 truncate"},(0,hm.__)(f,"header-footer-elementor"))),c().createElement("div",{className:"flex-shrink-0 ml-2"},c().createElement("input",{type:"checkbox",checked:_,onChange:function(e){var t=e.target.checked;k(t),r&&r({slug:a,path:o,type:d,name:m,zipUrl:p,status:h,isChecked:t})},onClick:function(e){return e.stopPropagation()},id:"plugin-".concat(a),className:"uae-role-checkbox h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded","data-plugin":p,"data-type":d,"data-pluginname":m,"data-slug":a,"data-site":l,"data-init":o,"data-status":h}))),c().createElement(gp,{design:"simple",open:v,setOpen:x},c().createElement(gp.Backdrop,null),c().createElement(gp.Panel,null,c().createElement(gp.Header,null,c().createElement("div",{className:"flex items-center justify-between"},c().createElement(gp.Title,null,(0,hm.__)("Activate Theme","header-footer-elementor"))),c().createElement(gp.Description,null,(0,hm.__)("Are you sure you want to switch your current theme to Astra?","header-footer-elementor"))),c().createElement(gp.Footer,null,c().createElement(ct,{onClick:function(){return function(e){x(!1);var t=new window.FormData;t.append("action","hfe_recommended_plugin_activate"),t.append("nonce",hfe_admin_data.nonce),t.append("plugin",e.init),t.append("type",e.type),t.append("slug",e.slug);var r=document.querySelector('[data-slug="'.concat(e.slug,'"]')),o=r.querySelector("span");o.innerText=(0,hm.__)("Activating...","header-footer-elementor"),$m()({url:hfe_admin_data.ajax_url,method:"POST",body:t}).then((function(t){if(t.success)o&&(r.style.color="#16A34A",r.dataset.action="site_redirect",r.classList.add("hfe-plugin-activated"),o.innerText=(0,hm.__)("Activated","header-footer-elementor"),window.open(g,"_blank"),setTimeout((function(){n((function(e){return e+1}))}),5e3));else{e.type;var a=document.querySelector('[data-slug="'.concat(e.slug,'"]'));if(a){var s=a.querySelector("span");s&&(s.innerText=(0,hm.__)("Activate","header-footer-elementor"))}}}))}(w)}},(0,hm.__)("Yes","header-footer-elementor")),c().createElement(ct,{variant:"outline",onClick:function(){return x(!1)}},(0,hm.__)("Close","header-footer-elementor")))))))},Zh=cm("chevron-left",[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]]);function Jh(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return Qh(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Qh(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){i=!0,a=e},f:function(){try{s||null==n.return||n.return()}finally{if(i)throw a}}}}function Qh(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function eg(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function tg(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?eg(Object(n),!0).forEach((function(t){h(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):eg(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ng(e){var t=function(e){if("object"!=u(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var n=t.call(e,"string");if("object"!=u(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==u(t)?t:t+""}function rg(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function og(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?rg(Object(n),!0).forEach((function(t){h(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):rg(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ag=[{label:"",component:function(e){var t=e.setCurrentStep,n=e.markStepCompleted;return c().createElement("div",{className:"bg-background-primary border-[0.5px] items-start justify-center border-subtle rounded-xl shadow-sm p-8  flex flex-col"},c().createElement("div",{className:"px-1"},c().createElement("div",{className:"flex flex-col"},c().createElement("h1",{className:"text-text-primary m-0 mb-2 hfe-65-width",style:{fontSize:"30px",lineHeight:"1.3em"}},c().createElement("span",{className:"block"},(0,hm.__)("Welcome to UAE","header-footer-elementor"))),c().createElement("span",{className:"text-md font-medium m-0 mb-4",style:{lineHeight:"1.5em",color:"#111827"}},(0,hm.__)("Your Ultimate Elementor Addons to build modern Elementor Websites.","header-footer-elementor"))),c().createElement("iframe",{width:"500",height:"280",src:"https://www.youtube.com/embed/YqWd3VYlxcY?modestbranding=1&showinfo=0&rel=0&controls=1",frameBorder:"0",style:{borderRadius:"8px"},allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture",allowFullScreen:!0}),c().createElement("ul",{className:"list-none font-normal ",style:{fontSize:"0.9rem",lineHeight:"1.6em",paddingBottom:"0.5rem",color:"#111827"}},c().createElement("li",{className:"none   ",style:{display:"flex",alignItems:"center",justifyContent:"flex-start",gap:"0.5rem",color:"#111827"}},c().createElement(sp,{color:"#111827",size:18}),(0,hm.__)("No bloat - disable unused widgets with one click","header-footer-elementor")),c().createElement("li",{className:"none ",style:{display:"flex",alignItems:"center",justifyContent:"flex-start",gap:"0.5rem",color:"#111827"}},c().createElement(sp,{color:"#111827",size:18}),(0,hm.__)("Design headers & footers exactly where you want them","header-footer-elementor")),c().createElement("li",{className:"none ",style:{display:"flex",alignItems:"center",justifyContent:"flex-start",gap:"0.5rem",color:"#111827"}},c().createElement(sp,{color:"#111827",size:18}),(0,hm.__)("Reliable support from experts when you need it","header-footer-elementor"))),c().createElement("hr",{className:"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle",style:{marginTop:"20px",marginBottom:"20px",borderColor:"#E5E7EB"}}),c().createElement(ct,{iconPosition:"right",variant:"primary",className:"bg-[#5C2EDE] hfe-remove-ring p-3 px-5 font-bold mt-2",style:{backgroundColor:"#5C2EDE",transition:"background-color 0.3s ease"},onMouseEnter:function(e){return e.currentTarget.style.backgroundColor="#5C2EDE"},onMouseLeave:function(e){return e.currentTarget.style.backgroundColor="#5C2EDE"},onClick:function(){n("welcome"),t(2)}},(0,hm.__)("Let's Get Started","header-footer-elementor"))))}},{label:"",component:function(e){var t=e.setCurrentStep,n=e.markStepCompleted,r=e.markStepSkipped,o=s((0,i.useState)([]),2),a=o[0],l=o[1],u=s((0,i.useState)(!0),2),d=u[0],m=u[1],p=s((0,i.useState)(0),2),f=p[0],g=p[1],y=s((0,i.useState)(!1),2),v=y[0],x=y[1],b=s((0,i.useState)(!0),2),w=b[0],E=b[1],_=s((0,i.useState)({}),2),k=_[0],S=_[1],N=s((0,i.useState)({firstName:hfeSettingsData.user_fname?hfeSettingsData.user_fname:"",lastName:hfeSettingsData.user_lname?hfeSettingsData.user_lname:"",email:hfeSettingsData.user_email?hfeSettingsData.user_email:"",domain:hfeSettingsData.siteurl?hfeSettingsData.siteurl:""}),2),C=N[0],P=N[1],T=s((0,i.useState)((function(){return"true"===localStorage.getItem("uaeFormSubmitted")})),2),j=T[0],R=T[1],F=s((0,i.useState)({}),2),A=F[0],D=F[1],M=function(e,t){D((function(t){if(t[e]){t[e];var n=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n={};for(var r in e)if({}.hasOwnProperty.call(e,r)){if(-1!==t.indexOf(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],-1===t.indexOf(n)&&{}.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,[e].map(ng));return n}return t})),P((function(n){return tg(tg({},n),{},h({},e,t))}))};(0,i.useEffect)((function(){E("no"!==hfeSettingsData.analytics_status);var e=function(){var e=cp(dp().mark((function e(){var t,n,r;return dp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return m(!0),e.prev=1,e.next=4,$m()({path:"/hfe/v1/recommended-plugins",headers:{"Content-Type":"application/json","X-WP-Nonce":hfeSettingsData.hfe_nonce_action}});case 4:t=e.sent,n=L(t),r=n.filter((function(e){return!e.is_installed&&"Activated"!==e.status&&"Installed"!==e.status})),l(r),x(0===r.length),e.next=14;break;case 11:e.prev=11,e.t0=e.catch(1),console.error("Error fetching plugins:",e.t0);case 14:return e.prev=14,m(!1),e.finish(14);case 17:case"end":return e.stop()}}),e,null,[[1,11,14,17]])})));return function(){return e.apply(this,arguments)}}();e()}),[f]);var O=function(){var e=cp(dp().mark((function e(){var t,n;return dp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return E(t=!w),e.prev=2,e.next=5,fetch(hfe_admin_data.ajax_url,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:new URLSearchParams({action:"save_analytics_option",uae_usage_optin:t?"yes":"no",nonce:hfe_admin_data.nonce})});case 5:return n=e.sent,e.next=8,n.json();case 8:e.sent.success?(zf.success((0,hm.__)("Settings saved successfully!","header-footer-elementor")),hfeSettingsData.analytics_status=t?"yes":"no"):zf.error((0,hm.__)("Failed to save settings!","header-footer-elementor")),e.next=15;break;case 12:e.prev=12,e.t0=e.catch(2),zf.error((0,hm.__)("Failed to save settings!","header-footer-elementor"));case 15:case"end":return e.stop()}}),e,null,[[2,12]])})));return function(){return e.apply(this,arguments)}}();function L(e){return Object.keys(e).map((function(t){return tg({path:t},e[t])}))}var I=function(e){S((function(t){return tg(tg({},t),{},h({},e.slug,tg(tg({},e),{},{selected:e.isChecked})))}))},B=function(){var e=cp(dp().mark((function e(){var t;return dp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(0!==(t=Object.values(k).filter((function(e){return e.selected}))).length){e.next=3;break}return e.abrupt("return");case 3:setTimeout(cp(dp().mark((function e(){var n,r,o,a,s;return dp().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:n=Jh(t),e.prev=1,n.s();case 3:if((r=n.n()).done){e.next=21;break}return o=r.value,(a=new window.FormData).append("action","theme"===o.type?"hfe_recommended_theme_install":"hfe_recommended_plugin_install"),a.append("_ajax_nonce",hfe_admin_data.installer_nonce),a.append("slug",o.slug),e.prev=9,e.next=12,$m()({url:hfe_admin_data.ajax_url,method:"POST",body:a});case 12:(s=e.sent).success||"folder_exists"===s.errorCode||console.error("Failed to install ".concat(o.name,":"),s),e.next=19;break;case 16:e.prev=16,e.t0=e.catch(9),console.error("Error installing ".concat(o.name,":"),e.t0);case 19:e.next=3;break;case 21:e.next=26;break;case 23:e.prev=23,e.t1=e.catch(1),n.e(e.t1);case 26:return e.prev=26,n.f(),e.finish(26);case 29:case"end":return e.stop()}}),e,null,[[1,23,26,29],[9,16]])}))),0);case 4:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),z=!v&&(d||a.length>0);return c().createElement(c().Fragment,null,c().createElement("style",null,"\n                    .uae-role-checkbox {\n                        position: relative;\n                        width: 30px;\n                        height: 30px;\n                        -webkit-appearance: none;\n                        appearance: none;\n                        border: 2px solid #d1d5db; /* gray-300 */\n                        border-radius: 4px;\n                        cursor: pointer;\n                    }\n\n                    .uae-role-checkbox:focus {\n                        outline: none;\n                    }\n\n                    .uae-role-checkbox:checked {\n                        background-color: #5C2EDE !important; /* brand-primary-600 */\n                        border-color: #0017E1;\n                    }\n\n                    .uae-role-checkbox:checked::after {\n                        content: '';\n                        position: absolute;\n                        top: 50%;\n                        left: 50%;\n                        width: 4px;\n                        height: 8px;\n                        border-right: 2px solid #fff;\n                        border-bottom: 2px solid #fff;\n                        transform: translate(-50%, -60%) rotate(45deg);\n                    }\n\n\t\t\t\t\t.uae-error-field {\n\t\t\t\t\t\tborder-color: #dc3545 !important;\n\t\t\t\t\t}\n\n\t\t\t\t\t.uae-error-message {\n\t\t\t\t\t\tcolor: #dc3545;\n\t\t\t\t\t\tfont-size: 0.875rem;\n\t\t\t\t\t\tmargin-top: 0.25rem;\n\t\t\t\t\t}\n                "),c().createElement("div",{className:"bg-background-primary border-[0.5px] items-start justify-center border-subtle p-4 rounded-xl shadow-sm mb-6 flex flex-col",style:{width:"42.625rem"}},z&&c().createElement("div",{className:"rounded-lg bg-white w-full"},c().createElement("div",{className:"flex flex-col items-start justify-between",style:{paddingTop:"1rem",paddingLeft:"1rem",paddingRight:"1rem"}},c().createElement("p",{className:"text-text-primary m-0 mb-2 hfe-65-width",style:{fontSize:"24px",lineHeight:"1.3em"}},(0,hm.__)("Recommended Essentials","header-footer-elementor")),c().createElement("span",{className:"text-md font-normal text-text-secondary m-0 mb-2",style:{lineHeight:"1.5em"}},(0,hm.__)("These free plugins add essential features to your website and help speed up your workflow. Select the plugins you want to install.","header-footer-elementor")),c().createElement("div",{className:"flex items-center gap-x-2 mr-7"})),c().createElement("div",{className:"flex flex-col rounded-lg",style:{backgroundColor:"white",paddingTop:"1rem",paddingLeft:"1rem",paddingRight:"1rem"}},d?c().createElement(nt,{align:"stretch",className:"gap-1 p-1 grid grid-cols-1 md:grid-cols-2",containerType:"grid",justify:"start"},Cm(Array(2)).map((function(e,t){return c().createElement(nt.Item,{key:t,alignSelf:"auto",style:{height:"150px"},className:"text-wrap rounded-md shadow-container-item bg-[#F9FAFB] p-4"},c().createElement("div",{className:"flex flex-col gap-6",style:{marginTop:"40px"}},c().createElement(Xm,{className:"w-12 h-2 rounded-md"}),c().createElement(Xm,{className:"w-16 h-2 rounded-md"}),c().createElement(Xm,{className:"w-12 h-2 rounded-md"})))}))):c().createElement(nt,{align:"stretch",className:"gap-1 p-1 grid grid-cols-1 md:grid-cols-1",containerType:"grid",justify:"start",style:{backgroundColor:"#F9FAFB"}},a.slice(0,3).map((function(e){return c().createElement(nt.Item,{key:e.slug,alignSelf:"auto",className:"text-wrap rounded-md shadow-container-item bg-background-primary p-4"},c().createElement(Kh,{plugin:e,setUpdateCounter:g,onPluginSelect:I}))}))))),(!j||!z)&&c().createElement("div",{className:"px-5 pt-3 bg-white rounded-lg"},c().createElement("h3",{className:"text-base font-medium text-gray-900 ".concat(z?"":"text-xl mb-3")},(0,hm.__)("Get Important Notifications and Updates","header-footer-elementor")),c().createElement("div",{className:"flex flex-row items-start gap-4 mb-4"},c().createElement("div",{className:"flex flex-col flex-1"},c().createElement("label",{className:"text-sm font-medium text-gray-700 mb-2"},(0,hm.__)("First Name","header-footer-elementor")),c().createElement("input",{type:"text",name:"firstName",value:C.firstName,onChange:function(e){return M("firstName",e.target.value)},className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none hfe-remove-ring transition-colors ".concat(A.firstName?"uae-error-field":""),style:{height:"48px",borderColor:"#e0e0e0",outline:"none",fontSize:"14px",boxShadow:"none"}}),A.firstName&&c().createElement("span",{className:"uae-error-message"},A.firstName)),c().createElement("div",{className:"flex flex-col flex-1"},c().createElement("label",{className:"text-sm font-medium text-gray-700 mb-2"},(0,hm.__)("Last Name","header-footer-elementor")),c().createElement("input",{type:"text",name:"lastName",value:C.lastName,onChange:function(e){return M("lastName",e.target.value)},className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none hfe-remove-ring transition-colors",style:{height:"48px",borderColor:"#e0e0e0",outline:"none",fontSize:"14px",boxShadow:"none"}}))),c().createElement("div",{className:"flex flex-row items-start gap-4 mb-4"},c().createElement("div",{className:"flex flex-col flex-1"},c().createElement("label",{className:"text-sm font-medium text-gray-700 mb-2"},(0,hm.__)("Email Address","header-footer-elementor")),c().createElement("input",{type:"email",name:"email",value:C.email,onChange:function(e){return M("email",e.target.value)},className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-500 focus:border-purple-500 transition-colors ".concat(A.email?"uae-error-field":""),style:{height:"48px",borderColor:"#e0e0e0",outline:"none",fontSize:"14px",boxShadow:"none"}}),A.email&&c().createElement("span",{className:"uae-error-message"},A.email))),c().createElement("div",{className:"flex items-start gap-1"},c().createElement("input",{type:"checkbox",id:"notifications-checkbox",checked:w,onChange:O,className:"uae-role-checkbox mt-1 h-4 w-4 text-[#5C2EDE] focus:ring-[#5C2EDE] border-gray-300 rounded"}),c().createElement("label",{htmlFor:"notifications-checkbox",className:"text-sm text-gray-600 leading-relaxed"},(0,hm.__)("Stay in the loop and help shape Ultimate Addons for Elementor! Get feature updates, and help us build a better Ultimate Addons for Elementor by sharing how you use the plugin. ","header-footer-elementor"),c().createElement("a",{href:"https://store.brainstormforce.com/privacy-policy/?utm_source=uae_onboarding&utm_medium=notification_updates&utm_campaign=privacy_policy",className:"text-sm text-text-primary",target:"_blank"},(0,hm.__)(" Privacy Policy","header-footer-elementor"))))),c().createElement("div",{className:"flex w-full justify-between items-center hfe-onboarding-bottom",style:{paddingLeft:"8px",paddingRight:"8px",paddingTop:"30px"}},c().createElement(ct,{className:"flex items-center gap-1 hfe-remove-ring",icon:c().createElement(Zh,null),variant:"outline",onClick:function(){return t(1)}},(0,hm.__)("Back","header-footer-elementor")),c().createElement("div",{className:"flex justify-between gap-3 items-center",style:{paddingRight:"1.875rem"}},c().createElement(ct,{className:"hfe-remove-ring text-text-tertiary",variant:"ghost",onClick:function(){r("configure"),t(3)}}," ",(0,hm.__)("Skip","header-footer-elementor")),c().createElement(ct,{className:"flex items-center gap-1 hfe-remove-ring",icon:c().createElement(_h,null),iconPosition:"right",style:{backgroundColor:"#5C2EDE",transition:"background-color 0.3s ease",padding:"12px"},onClick:function(){if("true"===localStorage.getItem("uaeFormSubmitted")&&z)a.length>0&&B(),n("configure"),t(3);else{var e,r,o={};if(null!==(e=C.email)&&void 0!==e&&e.trim()?/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(C.email.trim())||(o.email=(0,hm.__)("Please enter a valid email address","header-footer-elementor")):o.email=(0,hm.__)("This field is required","header-footer-elementor"),null!==(r=C.firstName)&&void 0!==r&&r.trim()||(o.firstName=(0,hm.__)("This field is required","header-footer-elementor")),Object.keys(o).length>0)return void D(o);D({}),a.length>0&&B(),function(e,n,r,o,a){if(e){var s=(new Date).toISOString().split("T")[0],i=a||window.location.hostname,l=new URLSearchParams({email:e,date:s,fname:n||"",lname:r||"",isActive:o?"yes":"no"});o&&l.append("domain",i),fetch("/wp-json/hfe/v1/email-webhook/?".concat(l.toString()),{method:"POST",headers:{"Content-Type":"application/json","X-WP-Nonce":hfeSettingsData.hfe_nonce_action}}).then((function(e){if(!e.ok)throw new Error("HTTP error! Status: ".concat(e.status));return e.json()})).then((function(e){"success"===e.message||console.warn("Unexpected webhook response:",e),t(3)})).catch((function(e){console.error("Error calling webhook:",e),t(3)}))}else t(3)}(C.email,C.firstName,C.lastName,w,C.domain),localStorage.setItem("uaeFormSubmitted","true"),R(!0),fetch(hfe_admin_data.ajax_url,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:new URLSearchParams({action:"save_analytics_option",uae_usage_optin:w?"yes":"no",nonce:hfe_admin_data.nonce})}).catch((function(){})),n("configure"),t(3)}}},(0,hm.__)("Next","header-footer-elementor"))))))}},{label:"",component:function(e){var t=e.setCurrentStep,n=e.markStepCompleted,r=e.markStepSkipped,o=s((0,i.useState)({headerFooterBuilder:!1,megaMenu:!1,modalPopup:!1,wooCommerceWidgets:!1,premiumWidgets:!1}),2),a=o[0],l=o[1],u=function(e){l((function(t){return og(og({},t),{},h({},e,!t[e]))}))},d=(a.headerFooterBuilder||a.megaMenu,a.modalPopup||a.wooCommerceWidgets||a.premiumWidgets);return c().createElement(c().Fragment,null,c().createElement("style",null,"\n                    .uae-role-checkbox {\n                        position: relative;\n                        width: 30px;\n                        height: 30px;\n                        -webkit-appearance: none;\n                        appearance: none;\n                        border: 2px solid #d1d5db; /* gray-300 */\n                        border-radius: 4px;\n                        cursor: pointer;\n                        outline: none;\n                    }\n\n                    .uae-role-checkbox:focus {\n                        outline: none;\n                        box-shadow: none;\n                    }\n\n                    .uae-role-checkbox:checked {\n                        background-color: #5C2EDE;\n                        border-color: #0017E1;\n                        outline: none;\n                    }\n\n                    .uae-role-checkbox:checked::after {\n                        content: '';\n                        position: absolute;\n                        top: 50%;\n                        left: 50%;\n                        width: 4px;\n                        height: 8px;\n                        border-right: 2px solid #fff;\n                        border-bottom: 2px solid #fff;\n                        transform: translate(-50%, -60%) rotate(45deg);\n                    }\n                "),c().createElement("div",{className:"box-border bg-background-primary p-6 rounded-lg",style:{width:"42.625rem"}},c().createElement("p",{className:"text-text-primary m-0 mb-2 hfe-65-width",style:{fontSize:"24px",lineHeight:"1.3em"}},(0,hm.__)("Select Your Features","header-footer-elementor")),c().createElement("span",{className:"text-sm font-normal text-text-secondary",style:{lineHeight:"1.5em"}},(0,hm.__)("Unlock more design control, faster setup, and powerful customization so you can build a better website, effortlessly.","header-footer-elementor")),c().createElement("div",{className:"relative",style:{marginTop:"20px"}},c().createElement("div",{className:"flex items-center justify-between gap-3 mt-5 cursor-pointer",onClick:function(e){u("headerFooterBuilder")}},c().createElement("div",{className:"flex flex-col space-y-1 flex-1"},c().createElement("div",{className:"flex items-center justify-start gap-1"},c().createElement("div",{className:"text-sm font-normal m-0"},(0,hm.__)("Header & Footer Builder","header-footer-elementor")),c().createElement(rm,{label:(0,hm.__)("Free","header-footer-elementor"),size:"xs",type:"pill",variant:"green"})),c().createElement("div",{className:"text-sm font-normal m-0",style:{maxWidth:"90%",color:"#9CA3AF"}},(0,hm.sprintf)((0,hm.__)("Assign headers and footers to specific pages or post types. This gives users complete layout control, something typically locked behind Pro plugins.","header-footer-elementor")))),c().createElement("div",{className:"flex-shrink-0"},c().createElement("input",{type:"checkbox",checked:a.headerFooterBuilder,onClick:function(e){return e.stopPropagation()},onChange:function(){return u("headerFooterBuilder")},className:"uae-role-checkbox w-5 h-5 outline-none",style:{accentColor:"#240064",width:"18px",height:"18px"}})))),c().createElement("hr",{className:"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle",style:{marginTop:"10px",marginBottom:"10px",borderColor:"#E5E7EB"}}),c().createElement("div",{className:"flex items-center justify-between gap-3 cursor-pointer",onClick:function(){return u("megaMenu")}},c().createElement("div",{className:"flex flex-col space-y-1 flex-1"},c().createElement("div",{className:"flex items-center justify-start gap-1"},c().createElement("div",{className:"text-sm font-normal m-0"},(0,hm.__)("Mega Menu & Navigation Widget","header-footer-elementor")),c().createElement(rm,{label:(0,hm.__)("Free","header-footer-elementor"),size:"xs",type:"pill",variant:"green"})),c().createElement("div",{style:{color:"#9CA3AF"},className:"text-sm font-normal m-0"},(0,hm.sprintf)((0,hm.__)("Save hours by copying Elementor sections, widgets, or pages from one website to another no need to rebuild layouts from scratch.","header-footer-elementor")))),c().createElement("div",{className:"flex-shrink-0"},c().createElement("input",{type:"checkbox",checked:a.megaMenu,onClick:function(e){return e.stopPropagation()},onChange:function(){return u("megaMenu")},className:"uae-role-checkbox w-5 h-5",style:{accentColor:"#240064",width:"18px",height:"18px"}}))),c().createElement("hr",{className:"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle",style:{marginTop:"10px",marginBottom:"10px",borderColor:"#E5E7EB"}}),c().createElement("div",{className:"flex items-center justify-between gap-3 cursor-pointer",onClick:function(){return u("modalPopup")}},c().createElement("div",{className:"flex flex-col space-y-1 flex-1"},c().createElement("div",{className:"flex items-center justify-start gap-1"},c().createElement("div",{className:"text-sm font-normal m-0"},(0,hm.__)("Modal Popup","header-footer-elementor")),c().createElement(rm,{label:(0,hm.__)("Pro","header-footer-elementor"),size:"xs",type:"pill",variant:"inverse"})),c().createElement("div",{style:{color:"#9CA3AF"},className:"text-sm font-normal m-0"},(0,hm.sprintf)((0,hm.__)("Design eye-catching popups directly in Elementor collect leads, display promotions, or show messages without needing a separate popup plugin.","header-footer-elementor")))),c().createElement("div",{className:"flex-shrink-0"},c().createElement("input",{type:"checkbox",checked:a.modalPopup,onClick:function(e){return e.stopPropagation()},onChange:function(){return u("modalPopup")},className:"uae-role-checkbox w-5 h-5",style:{accentColor:"#240064",width:"18px",height:"18px"}}))),c().createElement("hr",{className:"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle",style:{marginTop:"10px",marginBottom:"10px",borderColor:"#E5E7EB"}}),c().createElement("div",{className:"flex items-center justify-between gap-3 cursor-pointer",onClick:function(){return u("wooCommerceWidgets")}},c().createElement("div",{className:"flex flex-col space-y-1 flex-1"},c().createElement("div",{className:"flex items-center justify-start gap-1"},c().createElement("div",{className:"text-sm font-normal m-0"},(0,hm.__)("WooCommerce Widgets","header-footer-elementor")),c().createElement(rm,{label:(0,hm.__)("Pro","header-footer-elementor"),size:"xs",type:"pill",variant:"inverse"})),c().createElement("div",{style:{color:"#9CA3AF"},className:"text-sm font-normal m-0"},(0,hm.__)("Design eye-catching popups directly in Elementor collect leads, display promotions, or show messages without needing a separate popup plugin.","header-footer-elementor"))),c().createElement("div",{className:"flex-shrink-0"},c().createElement("input",{type:"checkbox",checked:a.wooCommerceWidgets,onClick:function(e){return e.stopPropagation()},onChange:function(){return u("wooCommerceWidgets")},className:"uae-role-checkbox w-5 h-5",style:{accentColor:"#240064",width:"18px",height:"18px"}}))),c().createElement("hr",{className:"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle",style:{marginTop:"10px",marginBottom:"10px",borderColor:"#E5E7EB"}}),c().createElement("div",{className:"flex items-center justify-between gap-3 cursor-pointer",onClick:function(){return u("premiumWidgets")}},c().createElement("div",{className:"flex flex-col space-y-1 flex-1"},c().createElement("div",{className:"flex items-center justify-start gap-1"},c().createElement("div",{className:"text-sm font-normal m-0"},(0,hm.__)("50+ Premium Widgets & 200+ Templates","header-footer-elementor")),c().createElement(rm,{label:(0,hm.__)("Pro","header-footer-elementor"),size:"xs",type:"pill",variant:"inverse"})),c().createElement("div",{style:{color:"#9CA3AF"},className:"text-sm font-normal m-0"},(0,hm.__)("Design eye-catching popups directly in Elementor collect leads, display promotions, or show messages without needing a separate popup plugin.","header-footer-elementor"))),c().createElement("div",{className:"flex-shrink-0"},c().createElement("input",{type:"checkbox",checked:a.premiumWidgets,onClick:function(e){return e.stopPropagation()},onChange:function(){return u("premiumWidgets")},className:"uae-role-checkbox w-5 h-5",style:{accentColor:"#240064",width:"18px",height:"18px"}}))),c().createElement("div",{className:"flex justify-between items-center px-2 hfe-onboarding-bottom",style:{paddingTop:"30px"}},c().createElement(ct,{className:"flex items-center gap-1 outline-none hfe-remove-ring",icon:c().createElement(Zh,null),variant:"outline",onClick:function(){return t(2)}},(0,hm.__)("Back","header-footer-elementor")),c().createElement("div",{className:"flex justify-start text-text-tertiary items-center gap-3"},c().createElement(ct,{className:"hfe-remove-ring text-text-tertiary",variant:"ghost",onClick:function(){r("features"),t(4)}}," ",(0,hm.__)("Skip","header-footer-elementor")),d?c().createElement(ct,{className:"flex items-center gap-1 hfe-remove-ring",icon:c().createElement(_h,null),iconPosition:"right",style:{backgroundColor:"#5C2EDE",transition:"background-color 0.3s ease",padding:"12px"},onClick:function(){window.open("https://ultimateelementor.com/pricing/?utm_source=wp-admin&utm_medium=onboarding&utm_campaign=uae-upgrade","_blank")}},(0,hm.__)("Upgrade","header-footer-elementor")):c().createElement(ct,{className:"flex items-center gap-1 hfe-remove-ring",icon:c().createElement(_h,null),iconPosition:"right",style:{backgroundColor:"#5C2EDE",transition:"background-color 0.3s ease",padding:"12px"},onClick:function(){n("features"),t(4)}},(0,hm.__)("Next","header-footer-elementor")))),d&&c().createElement("div",{className:"mt-4 p-3 rounded-lg border border-gray-400 bg-gray-50",style:{backgroundColor:"#F9FAFB",borderColor:"#E5E7EB",marginTop:"16px"}},c().createElement("div",{className:"text-sm border border-gray-400 text-gray-700 font-medium"},(0,hm.__)("You've picked Pro features upgrade to start using them.","header-footer-elementor")))))}},{label:"",component:function(e){e.setCurrentStep;var t=e.saveOnboardingAnalytics,n=e.stepsCompleted,r=e.stepsSkipped,o=s((0,i.useState)(!1),2),a=o[0],l=o[1],u=s((0,i.useState)(""),2),d=u[0],m=u[1],p=s((0,i.useState)(""),2),f=p[0],h=p[1],g=s((0,i.useState)(""),2),y=g[0],v=g[1],x=s((0,i.useState)(!0),2),b=(x[0],x[1]),w=s((0,i.useState)(""),2),E=w[0],_=w[1],k=s((0,i.useState)(""),2),S=k[0],N=k[1],C=s((0,i.useState)(!1),2),P=C[0],T=C[1];(0,i.useEffect)((function(){m(hfeSettingsData.user_email),b("yes"===hfeSettingsData.analytics_status);var e=(null==n?void 0:n.current)||JSON.parse(localStorage.getItem("hfe_onboarding_steps_completed")||"[]"),o=(null==r?void 0:r.current)||JSON.parse(localStorage.getItem("hfe_onboarding_steps_skipped")||"[]");t({exitedEarly:!1,exitAtStep:"",completedSteps:e,skippedSteps:o}),localStorage.removeItem("hfe_onboarding_steps_completed"),localStorage.removeItem("hfe_onboarding_steps_skipped"),history.pushState(null,"",window.location.href);var a=function(e){e.preventDefault(),localStorage.setItem("currentStep","2"),window.location.reload()};return window.addEventListener("popstate",a),function(){window.removeEventListener("popstate",a)}}),[hfeSettingsData.user_email]);return c().createElement("div",{className:"bg-background-primary border-[0.5px] border-subtle rounded-xl shadow-sm mb-6 p-8",style:{width:"672px"}},c().createElement("div",{className:"flex items-start hfe-display-flex"},c().createElement("div",{className:"flex flex-col items-start",style:{paddingRight:"35px"}},c().createElement("h1",{className:"text-text-primary m-0 mb-2",style:{fontSize:"1.4rem",lineHeight:"1.3em"}},(0,hm.__)("You’re All Set to Start Creating! 🚀","header-footer-elementor")),c().createElement("span",{className:"text-sm font-normal text-text-tertiary m-0 mb-4 ",style:{lineHeight:"1.6em"}},(0,hm.__)("Ultimate Addons is ready to supercharge your Elementor workflow! Build faster, cleaner, and more creatively — with complete control over your site.","header-footer-elementor")),c().createElement("span",{className:"font-semibold m-0 pt-2"},(0,hm.__)("What You Can Do Next:","header-footer-elementor")),c().createElement("ul",{className:"font-normal",style:{fontSize:"0.9rem",lineHeight:"1.6em",color:"#111827"}},c().createElement("li",{className:"font-normal",style:{display:"flex",alignItems:"center",justifyContent:"flex-start",gap:"0.5rem",color:"#111827"}},c().createElement(sp,{color:"#111827",size:18}),(0,hm.__)("Build a custom header","header-footer-elementor")),c().createElement("li",{className:"font-normal ",style:{display:"flex",alignItems:"center",justifyContent:"flex-start",gap:"0.5rem",color:"#111827"}},c().createElement(sp,{color:"#111827",size:18}),(0,hm.__)("Design your site footer","header-footer-elementor")),c().createElement("li",{className:"font-normal",style:{display:"flex",alignItems:"center",justifyContent:"flex-start",gap:"0.5rem",color:"#111827"}},c().createElement(sp,{color:"#111827",size:18}),(0,hm.__)("Create a new page","header-footer-elementor"))),c().createElement("hr",{className:"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle",style:{marginBottom:"20px",borderColor:"#E5E7EB"}})),c().createElement("div",{className:"",style:{textAlign:"end"}},c().createElement("img",{alt:"Build",className:"w-full object-contain",style:{height:"130px",width:"160px"},src:"".concat(hfeSettingsData.create_new),loading:"lazy"}))),c().createElement("div",{className:"flex flex-row pt-2 items-center justify-between gap-1 pb-4 hfe-display-flex"},c().createElement("div",{className:"flex items-center justify-start gap-3"},c().createElement(ct,{iconPosition:"right",variant:"outline",className:"hfe-remove-ring text-sm font-semibold",style:{transition:"background-color 0.3s ease"},onMouseEnter:function(e){return e.currentTarget.style.backgroundColor=""},onMouseLeave:function(e){return e.currentTarget.style.backgroundColor=""},onClick:function(){window.open(hfeSettingsData.hfe_post_url,"_self")}},(0,hm.__)("Create New Header","header-footer-elementor")),c().createElement(ct,{iconPosition:"right",variant:"outline",className:"hfe-remove-ring text-sm font-semibold",style:{transition:"background-color 0.3s ease"},onMouseEnter:function(e){return e.currentTarget.style.backgroundColor=""},onMouseLeave:function(e){return e.currentTarget.style.backgroundColor=""},onClick:function(){window.open(hfeSettingsData.hfe_post_url,"_self")}},(0,hm.__)("Create New Footer","header-footer-elementor"))),c().createElement(ct,{iconPosition:"right",variant:"outline",className:"hfe-remove-ring text-sm font-semibold",style:{color:"",borderColor:""},onMouseEnter:function(e){return e.currentTarget.style.color="#000000"},onMouseLeave:function(e){return(e.currentTarget.style.color="")&&(e.currentTarget.style.borderColor="")},onClick:function(){window.open(hfeSettingsData.elementor_page_url,"_blank")}},(0,hm.__)("Create New Page","header-footer-elementor"))),c().createElement(gp,{design:"simple",open:a,setOpen:l},c().createElement(gp.Backdrop,null),c().createElement(gp.Panel,null,c().createElement(gp.Header,{style:{padding:"30px",marginBottom:"0.5rem"}},c().createElement("div",{className:"flex items-center justify-between"},c().createElement("div",{className:"flex items-center justify-center"},c().createElement(gp.Title,{style:{fontSize:"1.6rem",width:"80%",lineHeight:"1.3em"}},(0,hm.__)("We have a special Reward just for you! 🎁","header-footer-elementor")),c().createElement(ct,{icon:c().createElement(Uh,{className:"size-10"}),iconPosition:"right",size:"md",variant:"ghost",className:"hfe-remove-ring self-start",onClick:function(){return l(!1)},style:{marginLeft:"60px",marginBottom:"20px"}}))),c().createElement(gp.Description,{style:{width:"90%",color:"#64748B",marginTop:"10px"}},(0,hm.__)("Enter your details to get special offer that we have for you and stay updated on UAE’s latest news and updates.","header-footer-elementor")),c().createElement("div",{className:"flex w-full",style:{marginTop:"15px"}},c().createElement("div",{className:"block",style:{width:"50%",paddingRight:"13px"}},c().createElement("input",{type:"text",placeholder:(0,hm.__)("First Name","header-footer-elementor"),value:f,className:"h-12 border border-subtle px-2 w-full",style:{borderColor:"#e0e0e0",outline:"none",boxShadow:"none",marginTop:"5px"},onFocus:function(e){return e.target.style.borderColor="#6005FF"},onBlur:function(e){return e.target.style.borderColor="#e0e0e0"},onChange:function(e){e&&e.target&&(N(""),h(e.target.value))}}),S&&c().createElement("span",{className:"absolute color-text-danger text-xs text-sm font-normal",style:{color:"#FF0000",marginTop:"0px"}},S)),c().createElement("div",{className:"block",style:{width:"50%"}},c().createElement("input",{type:"text",placeholder:(0,hm.__)("Last Name","header-footer-elementor"),value:y,className:"h-12 border border-subtle px-2 w-full",style:{borderColor:"#e0e0e0",outline:"none",boxShadow:"none",marginTop:"5px"},onFocus:function(e){return e.target.style.borderColor="#6005FF"},onBlur:function(e){return e.target.style.borderColor="#e0e0e0"},onChange:function(e){e&&e.target&&v(e.target.value)}}))),c().createElement("input",{type:"email",placeholder:(0,hm.__)("Your Email Address","header-footer-elementor"),value:d,className:"h-12 border border-subtle px-2 w-full",style:{borderColor:"#e0e0e0",outline:"none",boxShadow:"none",marginTop:"20px"},onFocus:function(e){return e.target.style.borderColor="#6005FF"},onBlur:function(e){return e.target.style.borderColor="#e0e0e0"},onChange:function(e){e&&e.target&&(_(""),m(e.target.value))}}),E&&c().createElement("span",{className:"absolute color-text-danger text-xs text-sm font-normal",style:{color:"#FF0000",marginTop:"0px"}},E),c().createElement(ct,{icon:P?c().createElement(LoaderCircle,{className:"animate-spin"}):null,iconPosition:"right",variant:"primary",className:"bg-[#6005FF] hfe-remove-ring w-full mt-2",disabled:P,style:{backgroundColor:"#6005FF",transition:"background-color 0.3s ease",marginTop:"20px"},onMouseEnter:function(e){return e.currentTarget.style.backgroundColor="#4B00CC"},onMouseLeave:function(e){return e.currentTarget.style.backgroundColor="#6005FF"},onClick:function(){var e=!1;f.trim()?N(""):(N((0,hm.__)("This field is required","header-footer-elementor")),e=!0),/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(d)?_(""):(_((0,hm.__)("Entered email address is invalid!","header-footer-elementor")),e=!0),e||(_(""),N(""),T(!0),function(e,t,n){var r=(new Date).toISOString().split("T")[0],o=new URLSearchParams({email:e,date:r,fname:t,lname:n});fetch("/wp-json/hfe/v1/email-webhook/?".concat(o.toString()),{method:"POST",headers:{"Content-Type":"application/json","X-WP-Nonce":hfeSettingsData.hfe_nonce_action}}).then((function(e){if(!e.ok)throw new Error("HTTP error! Status: ".concat(e.status));return e.json()})).then((function(e){"success"===e.message?(T(!1),window.location.href=hfeSettingsData.onboarding_success_url):(T(!1),console.warn("Unexpected webhook response:",e))})).catch((function(e){console.error("Error calling webhook:",e)}))}(d,f,y))}},(0,hm.__)("Submit","header-footer-elementor"))))))}}],sg=ag.slice(0,4),ig={1:"welcome",2:"configure",3:"features",4:"success"},lg=function(e){var t=new URLSearchParams;t.append("action","hfe_save_onboarding_analytics"),t.append("nonce",hfe_admin_data.nonce),t.append("exited_early",e.exitedEarly?"true":"false"),t.append("exit_at_step",e.exitAtStep||""),(e.completedSteps||[]).forEach((function(e){return t.append("completed_steps[]",e)})),(e.skippedSteps||[]).forEach((function(e){return t.append("skipped_steps[]",e)})),fetch(hfe_admin_data.ajax_url,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:t}).catch((function(e){return console.error("Onboarding analytics error:",e)}))};const cg=function(){var e,t=s(c().useState((function(){var e=localStorage.getItem("currentStep");return e?parseInt(e,10):1})),2),n=t[0],r=t[1],o=(0,i.useRef)(JSON.parse(localStorage.getItem("hfe_onboarding_steps_completed")||"[]")),a=(0,i.useRef)(JSON.parse(localStorage.getItem("hfe_onboarding_steps_skipped")||"[]")),l=(0,i.useCallback)((function(e){o.current.includes(e)||(o.current.push(e),localStorage.setItem("hfe_onboarding_steps_completed",JSON.stringify(o.current)))}),[]),u=(0,i.useCallback)((function(e){a.current.includes(e)||(a.current.push(e),localStorage.setItem("hfe_onboarding_steps_skipped",JSON.stringify(a.current)))}),[]);(0,i.useEffect)((function(){localStorage.setItem("currentStep",n)}),[n]),(0,i.useEffect)((function(){var e=setTimeout((function(){localStorage.removeItem("currentStep")}),18e4);return function(){return clearTimeout(e)}}),[]);var d=null===(e=ag[n-1])||void 0===e?void 0:e.component;return c().createElement("div",null,c().createElement("div",{className:"w-full"},c().createElement("div",{className:"flex flex-col items-center justify-center",style:{marginTop:"-38px",marginBottom:"24px"}},c().createElement(ot,{className:"bg-none",style:{background:"none"}},c().createElement(ot.Left,null,c().createElement(ot.Item,null,hfeSettingsData.icon_svg&&c().createElement(D,{to:gm.dashboard.path},c().createElement("img",{src:"".concat(hfeSettingsData.icon_new),alt:"Logo",className:"cursor-pointer",style:{height:"35px"}})))),c().createElement(ot.Middle,null,c().createElement(ot.Item,null,c().createElement(Yh,{currentStep:Math.min(n,sg.length),className:"uae-steps",variant:"number",completedVariant:"number"},sg.map((function(e,t){return c().createElement(Yh.Step,{key:t,className:"font-bold",labelText:e.label,size:"md"})}))))),c().createElement(ot.Right,null,c().createElement(ot.Item,null,c().createElement(D,{className:"hfe-remove-ring",to:gm.dashboard.path,onClick:function(){n>=4||(lg({exitedEarly:!0,exitAtStep:ig[n]||"",completedSteps:o.current,skippedSteps:a.current}),localStorage.removeItem("hfe_onboarding_steps_completed"),localStorage.removeItem("hfe_onboarding_steps_skipped"))}},c().createElement("div",{className:"flex items-center cursor-pointer justify-center gap-1"},c().createElement("p",{style:{fontSize:"0.9rem",color:"#111827"}},(0,hm.__)("Exit Guided Setup","header-footer-elementor")),c().createElement(ct,{icon:c().createElement(Uh,{className:"size-4"}),iconPosition:"right",size:"xs",variant:"ghost",className:"hfe-remove-ring"})))))))),c().createElement("div",{className:"flex items-center justify-center"},d&&c().createElement(d,{currentStep:n,setCurrentStep:r,saveOnboardingAnalytics:lg,markStepCompleted:l,markStepSkipped:u,stepsCompleted:o,stepsSkipped:a})))},ug=function(){return(0,i.useEffect)((function(){var e=document.body;return e.classList.add("hfe-onboarding-fullscreen"),function(){e.classList.remove("hfe-onboarding-fullscreen")}}),[]),c().createElement(c().Fragment,null,c().createElement(cg,null))},dg=function(){var e;return React.createElement(O,{routes:gm,defaultRoute:null==gm||null===(e=gm.dashboard)||void 0===e?void 0:e.path},React.createElement(T,{path:gm.dashboard.path},React.createElement(Rp,null)),React.createElement(T,{path:gm.onboarding.path},React.createElement(ug,null)),React.createElement(T,{path:gm.widgets.path},React.createElement(Ip,null)),React.createElement(T,{path:gm.templates.path},React.createElement(Vp,null)),React.createElement(T,{path:gm.learn.path},React.createElement(Vh,null)),React.createElement(T,{path:gm.settings.path},React.createElement(Zf,null)),React.createElement(T,{path:gm.upgrade.path},React.createElement(Hh,null)))},mg=Id("LoaderCircle",[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]]),pg=({variant:e="primary",size:t="md",icon:n=null,className:r=""})=>{const o={primary:"text-brand-primary-600",secondary:"text-background-primary"}[e],a={sm:"[&>svg]:size-4",md:"[&>svg]:size-5",lg:"[&>svg]:size-6",xl:"[&>svg]:size-8"}[t];return(0,L.jsx)("span",{className:Ae("flex",a,o,r),children:n||(0,L.jsx)(mg,{className:"animate-spin shrink-0"})})},fg=function(){var e=s((0,i.useState)(!1),2),t=e[0],n=e[1],r=s((0,i.useState)(!0),2);return r[0],r[1],window.onhashchange=function(){window.scrollTo(0,0)},(0,i.useEffect)((function(){setTimeout((function(){n(!0)}),1e3)}),[]),t?React.createElement("div",{className:"app-container font-figtree"},React.createElement(dg,null)):React.createElement("div",{className:"loading-spinner flex items-center justify-center h-screen",style:{background:"#F9FAFB"}},React.createElement(pg,{icon:null,size:"lg",variant:"primary"}))};n()((function(){var t=document.getElementById("hfe-settings-app");if(t&&(0,e.H)(t).render(React.createElement(fg,null)),"yes"===hfe_admin_data.show_view_all||window.location.href===hfeSettingsData.header_footer_builder||"yes"===hfeSettingsData.is_hfe_post){var n=document.getElementById("hfe-admin-top-bar-root");if(n){var r=document.createElement("div");r.id="hfe-settings-app",n.appendChild(r),(0,e.H)(r).render(React.createElement(Nm,null))}}}))})()})();
//# sourceMappingURL=main.js.mapPK���\@�L;L;build/7d00956da27af3e30b78.woffnu�[���wOFF;La�GDEFXr�
�
�GPOS��
��~GSUBX��a�E�OS/2	�O``@�ZSTAT
H=H�q�cmap
���hp
,gasp@glyfH&�>0�x�mhead2�66�V�hhea3 $X�hmtx34C �/�loca5x���maxp7x �name7�\4kZ�post8��N�t�x���@�D�	 $H����v��r��
�=��#X�G�"X�ս�z��z���C����G���O�)��ZZPQkkAgKz�4�y`�Y�r@�8y�x�l��%YFOU?�m۶m۶ֶ�7X�ֶm��3��T�39��_�Ew�4��%����N���E�GyR��$��$k��t
�-:i
�׭Y����FdAT�te 92T�(
XR�Ƙ�LYRT�ߡ���?�o���;��n
���a���Ҫ��~-Í�����t���Vd��-��ş��l������U9o���Pp��6�E\g���/���q�����t�����A�i���5�VZm�j�-gn��6�����O1k�1���|{x�mS?��#_���l�<���dk�S�5G�NuudS�8�[ޚ4�o��)�)��cV-V5T_��m�(�����)k�s��r{�M�9�899�U�×$��W��g#G>OY�;�N���v�*���o��Qu����0<Y�˚#��T��e��k5Q�4�2�hM�Ӎf�����c��(�ї	�e�Y������8Nf6�����9,�g��4�^�R�XUWU�&�&���D��=�>����p{�Ҹ�M�
�mJ���]��V�^�w��6����m?$�=���N��umB+JӑT���E_�S'Χ9E戶�c�8N��ΤNU:
�;=d����c C�a��'c!+��´�TNiN�L�gD��D��D�7D��D�wD���@��/d�B|G:���w�EB'�郎w��0C�$�Y�
�8���Iq�ȡ�Q6V��!��w�c�����t>}[���䖤����Gb���_�1�}y���]�[c
x���*ըO�І�t�7��P�1�Q�fc�x�0��,b1KX�2�����bm|�����]����G��Z:�TaF��qw���Xڻ�!����e�_y�E<���K�:[��n���m��׾?��Fc�if҇�\a�Yb�=aK8;le��Nv��=\n�n�#��1L�y
)Q�B�#�0����iФE�]&�f�:m�a�yXd�M����$ܓ>�n	���;���t8�q&��5���x[�����:嘔�]�[���R�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"����<���������y&?0?�L~f�c�Yb9��
k���f�^8�n?
}d`�!�ɒ#O�"%�T�Rc�:
��hӡ��^��Xg��–�m;x9�a�A�&K�<��(S�J��(c�;_�A�m:t�H�^�i�s̳�"K,�iXa�u6�t�Ev�b8ש��WBd�a���S�H�2���M>����iФE�]&�f�:m�a�yXd�M=���㡏2�0Yr�)P�D�
Uj��φQ�w�N�&-�t�2�6S�i�s̳�"K,�][a�u6��i�u���U��u�_a�u6ҟ3�Zb-��XK�%�k���Zb-��XK�%�k���ZzZzZzZb-��XK�%�k���ZzZb-=-=-=-=-=-=-=����	�c����w7�J���}����HT$*��DE�"Q��HT$*��DE�"Q��H~�HT$*��DE�"9������|&����:NL���O��2�0Yr�)P�D�
Ujܚ��8�2Ƹ��4hҢM�.n3e���0�<,�IJ�\a�u6�t��a_�Y8>�8�k���q�O����z�ޤ��2�0Yr�)P�D�
Uj�S�A�m:t�J���Cx�m��^AFϝ�fm��m۶ݠ�֍Y7N6�ո�k���K���Ù�s�3罝ƍ=q&����L��D��Ց�#������=�0l~G�O�8�#�g6��3�O�H���`8b�I���Ek�H
��B5\�� G�� /KjŊM[��r�M\_�}�
�nܲb#�ţ�~q��Y\+.߼k�vn�
f�l�T�(�y1)��b@l�)^�&CVqJ��=��v�'�`�'�Q�Kz\�T���F�>�(������|pt'N@s6�+9���mP���;�Wl<�t�r�K\�bi
ګ�!���mq�c>a�f�3]�c��վ30П@����oݕHIԜ�߳~Қ�s�rF�a,��h�	)3��͗oZ�D�RGg��O[�+�y���'똦^�2W1���O_d�x�c`a�f�����������
���u�@C:�ʂ�\0�*�2o����|��Px2H��� �����x�
DZ
@P��~
�5��TH�/����]w"&�UaS�q�W���b�P�R��_@��7@x�m��k���m�w϶m�ȶ�4�v��m۶m��v�Eq��C�Xu�+�B>��Mw+��+������x�����rD��BQ2z2z7�<�H&:&:'�%s޺��"/{Wo#��_\�=��w�y���p+��n>{��o\�qr�H��}w��=w��֮��J�*�s��5���;���Vm��֛f�s6�`��:d��F�n��N8渉6
�I/��r�)��
(��H�c����e�x�[���,6�g���>���|�G?��/����QTq�UTIeUUS[u���B;-r����%�U#���-���IC
1gm69�6Dck2�`���B)��V�e�U6��W>�$=�qOxƓ�x�^��׽�yU|���G>�/��[��_~�?|���J(��R�*���j���
xV9+���r+,�
>����xڭ;`Ǒ�w �`�+�z�8,A$�NZU�.;��l�%jq�XJwM��w�|\��q������w�/;�l��B���$�������N�]"
-,�Pi
��!�ªpZ��:ׇo�;A?�z.CW�l��}�I�ׄ�����8�1m��c���`�6s�9��}�:�8HMsO!ZhEo�[�^Ўfc�7���m�W����p�Ғ�c7�B!���z���?���o��_A���ϡ�:��k��ї����h=*H�~H�
)�a�����ʔ1��?��}���p����~��NVQ9[��װ����`iGzd<�XT�Q��2�.�3�h2w����lK��tr�Ї?�/�T�z0��n�N��{cU�~*�;�d��b����Kg��N#+B�˕�'���V��6�T��h}�նR��½s��l�^�N_TfBū��ה�3C��a�5�c�v��'��>{q���"3�w�3a�N�����0,A\Û�q�.�Z#*�ʤ2��x�2ةj��v���n8S���d�L��3��&EX�ڪ��l�=x�:�^�M��T-!�@/� �&��]�t��)��[�;3��-��'�1�К�~��en��QOeK*���LE��E�Ԋ,)u��
-��#S�����	���O��r�������8S�=^��`���R@.�"�n&<���<~PԨ��I��қ�nۅ�1L���_�m? 6�~s�
hiIlKfO�8{�Gk�j�W��:����F����Xǁb��$vp?��r�*j�s�!�?�D6ɂ«#�R|������w�v�T���G��:>��b�]Č��;w�w�<�����z�@)�5CUQ��;i�aS��#\Tw��4�k
繧���wp`qP�����4�!��ib�@Ҥ�$
vR(�������
5�P���~�"�L��L�~2��/�)j�7#h��tz*c�{W�U��J��t/\*��i��TJ3��_�0&��zO�޹�w�c"[:��^���ۂ�8�	��j����
ۚs�ހc�?�L��������iN�N�L�!e��v��U��e�N�P�H̹������l��2=��/s��H?���'�C+��
4z��Gk��B
��XQM+��^ziv��ݽx�9ν�^�7��G��.��+�g�������ߨ(�O,>��$ԥwAO��%?�>�(^':ن:�R���X��Z�N|���f�ݺ����{�W�篪������ߵ��:b����e�<P,���f�h���������R�n�}�ߧF=$�l�"�B�8��=Z��P���~]�S��Cw�Z��oA:&�!v=�\d]������<�bdN���`�)tH��մ��]�:��Y�V���޳���l�bY�ʼ���{������,�TJ��m�;
����fy��?w��'��W�s���;����㹎Z.��a�N|5�_l�S�B����$�T��8u�=?����f��M�����o)��\�6|���}��V޸n
�|Ձ��?X:�����T��]�)5������}=�O���:�Z������,��ԓ���tVS��Q�m��{pWwrC��N�Km��mM߁_�~:�TD"ߧ~��A�e��Q�
|�V��3̰�$��	]{s�ҧ�N%g���崤agjG���~>��mcb��sV�4;�J�:��]�]JM�~v��(�qY:*(�MQ��r�\��W�����u2��ƍF���Vrƛ�LOa}�A/���A�. a���E�C�F���
�Ľ�5yo�x������jhu膫��-c�5���}���S�������%"�
�<T�m�r���T8&W�ޔc�&�ĚQf��3�qv�~Ju��zS��x�Ԙ\z��5��X]g���
���M%Y�
��6p�(>��Wh�%o��,-	xx[mu������ϣO�Gk�j�WЩ:������($~�����>c��~rٹs�q?c�j��?Il�)^�Q�&����O�}�c'�������?C����◩����g�]S�OQ�
i%4k:���S���z~۩Sx�q�j�a�~��L�jZ�"�]h��
�m>��M�a'~/�����~VQ��K(-J��Y��I`+��C��\����F����ş�B5b�W)����T�w���$c��$�^����o����c[����nlI<��er$XX�x�Bw&���{�G*�N��mu��1#�{5��o�>&�
A�'�=�H��-T���AϏ�@�Ԡ�̯@��A��V���A_߽}�]�H�	�j�@eI�����qM����j�D����8
"2V
12V���_�m�<�vI�<�F�[�F[�̾���$���P�ƒՠ27-���͊���<H.�rN����?W�t��G�c.3��M�T�B�1X�n��������t���j����F��2;�n�Q���J"&1S,������CaL�e�����!���P��)���5B��+Fg���^�������3a��0/Y�hQ�G�Q] �v���e�,�\i)�*�H��F"UU�r�|`_��o �cu��,;���{�����%��K¤�IX��^����Lh���_)�ֺ��7W�8lb�%��A��0s��~���L��^pخ��D���4��毭���[u6-�X���~���@�@�Eƒ�ÒoV+�	d.b�kdo���B'�kjS�XR2Yf�}u��s��t���7�D��r$\���˕��V�"¨;BAG���Ql�(u���O�z�5�bhb�d(4�g"$�IS�#C����.�.)��f!�(lKq��J�h4QT
)����ծ�y=E�R>@�b�Ʃ���z�L�g�f;�yiI�I�HQ�"/��t
z�����~��V����~ܮ��AZ���x7[�$V\�n]����,ڮf���Q��PztukK��)�
q���)	HŁ�T�B�4q��$xI_���W�rKK����t�U7���]�h��[|N�]�/S�1��	Fߕ��T�*ץg�����3��dd��d�����k.�2�V�jEaL�����E�Ǖ/�1��]m	m��~�Qi�<?�-�� ���e�7`T������<��rr�M��Q���R����i����5,�J�4���Rg�;�槗�M�)��\�o.��pqi����kÄ���Oj��%z��7�B!�M0KB��>�ŢR[,��i���48V�vZT�Y�����a��i��.>7
��y�O�|Z���⩵�n]�Z�0/��D�]��G�W+Y,�����c�o��7�|��6�˯s���1�6zOm]�d��6]��Z�ʐ{�N�kG�A;�V��SS��Xg�֝�L�2y|���lf��/j�R{Y����մ�?Q��YP?Q?|�t)�0�^���e�	��o���s�7��ޜ��-FK>_%ʻ(�7	�Rx*��
�|Բ�0��Q�?��@Oנ�Z��!P�D+�'k���֛���BQ1_�/���J(�S-1����i���+��w�W�g�Z�;�{GJ��F���
��O�p$R���?44��
U7XZ�TjU(ɫM"�މ[hZG��M���z!9k�[�ߋ����u�B��KER.!���YdH�u��6:]c��N#^��IAa���o�%�MS���e`	��<�/�n��Ry)E�($x|-h���By��-�%�Tוֹ�NS'��#*�
K�\>��R+�	'�j��@�>L�@����&Q\�ؘ����ą�LC�>�9�M@M�g Z\�#W�:����{5�0gc	����8>�&�Օ�4�g$Ƙ}|�^��\"��PDR/�����r�`x�2��?�Zz|�����m�	�5�e�y��N����^muu�,�]eon��zl��]�
xL�w7�d"Zu��D�n�yC�dhi͉�C��@��H{�L�t�D��5��\�oD/o�0�\�D����f�IW2_Hq�u���� -?�|8�CU-���c��c�y��)�*;
^ye�������#k�W�Li��;�8�������7�@����f��c�^Wq����'�n�X�S�&�S��[�7	��O�=]��߹=S��r�
���U̹�p(]ι�|k����x�>N.�״�ȡ4m��������84~��Fo��p7�C�Ph����31��(�>�Ȇ��p�S��?�"���/n zJ���ⱬ�X+u��D�&�]n���g^Pz2ϵ�����I��.��ů�s6诀��ص��~�=S�������S@��<>��n�{؛�W��#D-�	ߎ�)d"�JaT/��j�j��4>�Ɣ%���N�cZj6j�MYU�704ؗ3�.
�R�#����*��]cs��
v�}�e��@��j�`��U�@�Ӂ��]�͸��@�������`p�=7�\�㉓K\���o�`��n,n�a�p�xj6�M�f�.��	�J	�������l��I���^'�I&��}_"q���L��BULV\Ŗ�aqp98��Ȉ0Ų}��Lm��|Z�ic�y�hl}^O��qF���Sؖ�I���x}�ڟ3]����i[g̬����9�Òw�	�n�/�sB�fi�i׌� *���V��q��Dd]N������6�������ݔ�:�z
���!�V�n�;��5��Zb�mf��3hO����UMm��X�|Q�S�ɮ#��enW;�p\�=��3w�͝�ʼn~�-.]>�2����ڡٷ��߂r*a�Z�2��杭����٩A爪b��p��6
�s���r}����C�3V]���S�*��?�=����օ��Z��,xQ�'�(E��l�蝅�l|�;�U�mK(�312���g�p�l��D����ּ}K�j���gFns������®(��5I#_Vc���U�N��'`ɴ�x�������<��h�N�š��Z�J�D���}}�:h0��
mM�����T6��ji��R�r8;>���Gf3����26E�s��0Z
�ff#��t�h�f\�mOdc���T,Kf��m\�/�GK"8qH���A[�'b�ͥ��zWa���*۶%��;��[���)S�/p�V��ѽm �5���o�v:��p#E7����;"�8R�Yz�쎩�?�Uݽ������w�	�A�5��V����;ѭz�g�5ߞH(��y��'jz��+�'�
4�p�:p���K��q2��i������7�)1��m
P���w�v��˻k�<���݇�{����g�q����D|f�#y@�x�U�o����u��[�_��:c�!�|@�Ch��[}P���U�o�!���l���2�C�H�+�>�Sm�x��z��:����X��D�l��K�X�n�ob�M���l~:?0==��FdvczFȸ�DӘD�����F�S��f��R
���q렾
Y���"F��
���,�v������i��d%���=���j5����:���鈵�UF�]�j�t�\S���*i���e�sh���+�Σ�l�y!�$[��;�VF�i4��ݢ��sML���8�
C�J��"��(.�ʢ�5��V�Fcp*�1�S����Lnk��*q�@����d���juhޛ��d���� U�]P�������G���L���ͭ���6���_��mMrCW�8�N�V��Zm>EK��o�I�x$�]�D�X
� �@��{	ACl0�>����9oWN�TQ���+,nO�}"o���>V$�&c�9��#�*��s99���J���
��f�IN�
J%�E���6�?��y�F#��3"���M5���CV�(0��z�4�m�7�����I���,�C��`���}rcE.��嫤�:#�\.�W����z&��e19���M�󠷁���`Mb��?��Z)�H��,�ʯ��4����q��'� Ŭ���+@T--~[��Y��1�*���L�?�<Ah$���-�j9m�/��\�xfDJǠ�E�b�CXO�={�N,g.Q�~�	�6A�^��?(�o����F��EI���n�F���~����kp�|C��Qx�%�i��U�֭��Z�ZmWW�UC�4|��^�'�y����!��ѫ�����4~�h/Zk�{�Y�dU^-��[Ƀ��%w���@�$~p�]�h�����/��[���d��
�B%�/.�(�
ܟ�e�(~7�w���gȸ̐Ѳ:�{�Y�#��Y�"��e�Ih���0�l�j�S�,�Y�õ��o�
|�sw�%�xD��Y�Ί��u����Gq<?�:��U;���LlM�G�ե�uv�|���l���Ҧ��{�s	ɕ�tiI1�
�ڗ|���a-Xh�r�]�Y���#���^E��ڿ5[ۍI�V�~�L�ץK�bf6�p�3�)'^v����D$��؄0�=���!^�y����2��&S�	3���B4�ߌ?@�A��A��V��d�I�Ž�rf��&YAz���	|`�U�����n
�m���a��5�\���ev���+&�/�����v�:o[u[�퍷w�૿���[y��?��S�N���:
?�8��	wmK�G^�q�a�$��):��ť2�Ms��R�F��)�_I$�t+r����	�@���mx��W���`?��3��%�(�ޡ@�7TV��.��K��_�|\��yxz�~����$� qf+E�r�O�$�N��޻?03���{s�x`r���AkFlm�I&&,\����rHx,�}pb�w�z�~����&}�����%�8ij'HzLܘ�����<p�*�n�W���9�v�K"�J\�v�c���;Oir�T|fo�0���f�*�E�razމх4��>����x�Q�sa%�@��n33�cns;ag����0��6W~H�O�mh�V�f�9��E\ V�~t(ʀ"	�`tt�>\^���"��X�?\�y`����_�KK5+E�!ߊ��)�v��nB�;2��w8E���=��u,��N>?жj����J����-����G�H{��1�����.@"h#�>X�����x���90`ab���m��Mx�}�g#�>#�@%W��!v�֞���ݸ\���P.`�IA���_��.�<���בVEw����઱U���:���gChN�;�m������a9���m�TJ4�4:6
TKf)z�#7

�����/<�:�F�3��_H��s�n�Ni���U���dv�c�v9�{G�êֆ�V�H04��<7x�G�|���?�m�!S�A;���{�
�za���ݡ7��t�
H>vdW��=�1b��e�Ju^o1�2��,x���>��Y\Y�bYF��+�/Z��YLE^�@hY+�|6�a�p%��b�{]–�u�k��@9z����MIǸW&ݲ-�5�7vj���D<��ʥ��l	�#�0���BZ�Q��Q#��b
afȢ��kj������{�m<�isF쑾�6󝏴�+Cf&�[B]d�
`a�B����E0���?��O���#E����B��S��x4an����Ө�Ċ�`.u2�>v�0(�ИqaGz:�4"υҹT�/U	7�U�̦��H�pK6a����XXުV�7vkt��F�hi���Tkll��:m�涶B��i�5��2�	k�Kg�\6�6�t��߼�E����B��C�H�6M�p�eCߔ(��א�ܛ�;��	�+���o�R��rh�eUʇ7�R�W���4��̪[z[Z��X>fI�5��ڹ�ԡr�����r�p3��PEl�-��e�ݗE��N��,f2E�I��R�+����R��2;sK5 z�*�=��h-r^܇�xdb�	jkW�620�n)���6��<7���ɍ�>rgv2�����2���G��v��ln#�n�e7%G�#�5���޵�^�J�Z�u��ϟ�$:�#�����B�[��Y|x?.���}���u8�}��<� �	���<����ƙu���3��&#dA�s�g���@W.`1{<fK��ǁ���%v��D��z+��P����h�����z�nd���<���W=��XyS�;Mغ!��20
g���^��"L%|pX)�O�i8��2tYM.rZ)���]>�_��1%�^:�Zb��a%m���Kҡ'��,�-��+%�:8��k'\W�{�O(7����J�k�c�f��#D��u2ĺ0#i�D2��R
=�>�f��D2�VK7�@<����Q4Ԇ��P�� �RX���QV&uC.����(�+�A�"Ȓ[��B�PeA�Dr�otk2���	V��K��B�R�푗��]>�oؓ
��\��tsY�hM��p4���-�/;�n�ѵ��
m�~��e�H~*m���#�l�Np/9��kh�~O�e�:�d?>��Dm��ܷe��Ϩjw�+a��!<Bh⊳p��U���ob����͓���1��f����e�H{bО�L�$�2�E�q���I���1�h+�+���X��ё����cq',Pss�~�fC��s��L΄H�
��!�j�	�6u�x���T90vS�_�ӽ&>��'��u�S�Š������5�&�k���[���V����ʟ�*�w�zr���;���?��W���n���.p��듀�8F�+8�m�%�"�Z�FÔ�j!��3Q�Uc��O?������w=����rFp=$G��a��>����1�y�$�>z4|�H����ѣ;��=��#G��^��@���(`���L���/u�LJ�A�4��$���7�Qc�w���Q?.Z�*�k/>��w
��1:
��_DR2rNgB�>�%�kxv��[�]��Qҫ���	~��j�D�L�p���N�kQ =	H/ �ԤgO�@w����+����#�'��g��A���Ix��A�k;G�.D�?���>d"�Ƶ�i'HTq�)ᷘ|]m��v�E:D[3N�W�j��l�������t��mv��;�&�G�5�{�fdv��w^�o��5g��a��>w���֑�GL���Mn><��� MU�m�rC�$$O��y�d�N��L6�-�@������Sث!z(�����M��yN��3�p Hv��L8�8#��)�]��D��a�&'[J$2�e�����%�Dk�6S����v����C�I,�4�0�:�ܷCO��`�6gϱ��b�j���,�Ƚ�<�:�}BOS~@���x&�:]�ֽc��o_���y�7��C��@ׅ�SQ�$��L��j���z�I2�1�b����Ie��<ҡߒ�f�>pJ(��gɮ
�0$��.ML�]��z�06�	q<m��"&n�ø��T�ո��z+T���j'�gG
üy��
��^*�H��~�Q��h�
~��op8�T@���z��/I1�/���q�)���ڄ2��T��f�V�Ү�����dө��tN���F�6�L�Tu����"��!�6"
2�i����G���M ��TkŃ��ӖD��r����J�!�z|#���z���'��R%�
�@�`$6�#q~�>%*���+	�0�
�g�>��y)	
��x$(E�����h/�U��On;|aBl2>_<��܍5h�ݦ�S�$L�x�c`d``�����%��?[�
`���xڍ��^i��w�S۶��em۶m;یƈƞڶm���UI���8�9��I�4�AeO:�Jbo�]���ft~D^�@��;[Z�Z�6��2�U������AIr[2b���F&�5kjN]��T�rJz1R�lZ�\Q���=����;)�_"ή����z�xnBQY�I)� N.o�r,u8@
i(��,P��P����,6�m/u�B��%u<��Z�������&�����jZ��*B/��@�/��d�w:R�f�;
����XCr�`����%�<N�|T����2�xv��eU��C),�H-�*1�RHk��b���4���zڛ�a��R{kr��Q9��cS�eЉ����Fx�΃��ij�b\��Dyo�-��VD.h����� ��N��hR�k�5�_�*D>�o��E Q#��h�(/q�n�Eg���Yy�[��Cz��EI��֗�`ը�*[��W)���hĩ>�0hO2N��7����8��$%�s�W�x�Kr�- �e����2L>�7o���e������}��8�B��^���/�A����?��
b6�V��N��u��cд�x�-���0��F��W9۶m۶m۶�p�m۶mkg.H*���%�
��`&�^S����,�u��AK�K'�������dz���E?ct�g�0��:L'���y�|diVg���5�y���kͭ�vs����w^�>9_���w������9�I�M�	����1��J�%~�Xɐ)�TR�.�K���3�	�ru���G�,ϗ/��AɡV�)����&e��Fm��Rϩϵ4Zkm��Qۣ�.iw��:�S���z���Q�mXF����8nRf1�������t��k��\
����<o����lQ�le��Z����۱+ڍ��3��#9������p
ĭ�4vF:˜M�y筛�m�v��K�K�C�����F�P*�
UE��J�}�"6q���\�8����nx���U���i��^Bo�w��'�3������H0=8���F�YÆa�pX83���F\�&͉6Dע7�/���d'u�P2�l&��ar�\!��	�x����Gx�c`d``�`�f`cHc`�3#��x�}�nPEomD
ˠ�۠�m�mnd�0�d�4'3//�<�/I�J�EM�]p�i$�M�o�q3ܜ��)��V�(��6�(��v�o9�׆&��F��r�Z�l�&ߝ�Hz�Wn�ˣs�X]�˨W�Y����1��컈����p�\�^�V�:�μB���<����t��{!
�I�<�
�Kزv�0��\t|j��6�
}W�U����?���"*�=�W>ʼnr�!Ϊ%|z"cf�<��6�	��;����SUojE��Z`�?!��wʄ���p���l��bdW�x�d�CpE�b۶��ڶm���v7�m�4�:v�M��s0���5Y!|�_��-�r����4�)%��|�;?�$�hb��/~�XG<	$2��L�s�;�%�J�I!�4��$�Yd�A�Ҏr�Ӎ��esX�|�ҝ,�'e�bKX�bzӇ��#�e�`�LXN�ʌd�Y�V��u����P��pF����b���FF3��������q�W�p�O���G沐��d-��N�r����,��M�򐧼�-��O�
P���^�@#M
U��1V�"q�_���	�<؁-f8�QQ�Ɓ�<���0�It���C�'\�:�y�)Vc�N�����e)a+�0W�8�X쨦���?G��d:+�+A�2(I�JQ�Ҕ��a?]�G.E�O�Y�6� �a��B��=��N�2T��U�@�L[K�]M�qz4�^���?{F�Ksb��%:���ѕ^+[����B~MU����ؗ��I�E^�pe�wq���v�|�?2�h&'@�r
��,
��q%F�8�a*xA0cO�؃=!�@�:\Y:�H@t���@���n�??r��U�F?��7b�\ �W�7Ƿ��e�N�ً˜�6+�E��xS��/�J��Յۙ:?�T���3�s��Q����MJS���kPK���\���P99build/main.js.LICENSE.txtnu�[���/*!
	Copyright (c) 2018 Jed Watson.
	Licensed under the MIT License (MIT), see
	http://jedwatson.github.io/classnames
*/

/*!
* tabbable 6.2.0
* @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE
*/

/**
 * @license lucide-react v0.417.0 - ISC
 *
 * This source code is licensed under the ISC license.
 * See the LICENSE file in the root directory of this source tree.
 */

/**
 * @license lucide-react v0.562.0 - ISC
 *
 * This source code is licensed under the ISC license.
 * See the LICENSE file in the root directory of this source tree.
 */
PK���\�J'y/a/abuild/promotion-widget.js.mapnu�[���{"version":3,"file":"promotion-widget.js","mappings":"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","sources":["webpack://header-footer-elementor/webpack/bootstrap","webpack://header-footer-elementor/webpack/runtime/compat get default export","webpack://header-footer-elementor/webpack/runtime/define property getters","webpack://header-footer-elementor/webpack/runtime/hasOwnProperty shorthand","webpack://header-footer-elementor/external window [\"wp\",\"domReady\"]","webpack://header-footer-elementor/external window [\"wp\",\"element\"]","webpack://header-footer-elementor/./src/Components/PromotionWidget.jsx","webpack://header-footer-elementor/./src/promotion-widget.js"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","const __WEBPACK_NAMESPACE_OBJECT__ = window[\"wp\"][\"domReady\"];","const __WEBPACK_NAMESPACE_OBJECT__ = window[\"wp\"][\"element\"];","import { useEffect } from '@wordpress/element';\n\nconst PromotionWidget = () => {\n    useEffect(() => {\n        // Global variables to track state\n        let lastClickedWidgetType = null;\n        let continuousCheckInterval = null;\n        let searchObserver = null;\n        \n        // Function to customize the promotion dialog\n        const customizePromotionDialog = (forceUaeWidget = false) => {\n            const dialog = parent.document.querySelector('#elementor-element--promotion__dialog');\n            if (!dialog) return false;\n            \n            const defaultBtn = dialog.querySelector('.dialog-buttons-action:not(.uae-upgrade-button)');\n            if (!defaultBtn) return false;\n            \n            // Always show our button in search results or if forced\n            const shouldShowUaeButton = forceUaeWidget || lastClickedWidgetType === 'uae';\n            \n            // Clean up any previous custom buttons to avoid duplicates\n            const existingCustomBtns = dialog.querySelectorAll('.uae-upgrade-button');\n            existingCustomBtns.forEach(btn => btn.remove());\n            \n            if (shouldShowUaeButton) {\n                // Hide the default button\n                defaultBtn.style.display = 'none';\n                \n                // Create our custom button\n                const button = document.createElement('a');\n                button.textContent = 'Upgrade Now';\n                \n                // Get widget name from the dialog title\n                const dialogTitle = dialog.querySelector('.dialog-header');\n                let widgetTitle = 'widget';\n                \n                if (dialogTitle && dialogTitle.textContent) {\n                    widgetTitle = dialogTitle.textContent.trim().toLowerCase().replace(/\\s+/g, '-');\n                }\n                \n                // Set href with dynamic widget title in utm_medium\n                button.setAttribute('href', `https://ultimateelementor.com/pricing/?utm_source=plugin-editor&utm_medium=${widgetTitle}-promo&utm_campaign=uae-upgrade`);\n                button.setAttribute('target', '_blank');\n                button.classList.add(\n                    'dialog-button', \n                    'dialog-action', \n                    'dialog-buttons-action', \n                    'elementor-button', \n                    'go-pro', \n                    'elementor-button-success', \n                    'uae-upgrade-button'\n                );\n                \n                // Insert our button\n                defaultBtn.insertAdjacentElement('afterend', button);\n                \n                // Add event listener to prevent default behavior\n                button.addEventListener('click', (e) => {\n                    e.stopPropagation();\n                });\n                \n                // Mark the dialog as customized\n                dialog.setAttribute('data-uae-customized', 'true');\n                \n                return true;\n            } else {\n                // Not our widget, make sure default button is visible\n                defaultBtn.style.display = '';\n                dialog.removeAttribute('data-uae-customized');\n                return true;\n            }\n        };\n        \n        // Function to check if a widget is a UAE widget\n        const isUaeWidget = (widget) => {\n            if (!widget) return false;\n            \n            // Check if it has the hfe class in the icon\n            const icon = widget.querySelector('.icon > i');\n            const hasHfeClass = icon && icon.className.includes('hfe');\n            \n            // Check if it's in our category\n            const isInUaeCategory = widget.closest('#elementor-panel-category-hfe-widgets') !== null;\n            \n            return hasHfeClass || isInUaeCategory;\n        };\n        \n        // Function to start continuous checking for dialog changes\n        const startContinuousCheck = () => {\n            // Clear any existing interval\n            if (continuousCheckInterval) {\n                clearInterval(continuousCheckInterval);\n            }\n            \n            // Set up a new interval to check every 100ms\n            continuousCheckInterval = setInterval(() => {\n                const dialog = parent.document.querySelector('#elementor-element--promotion__dialog');\n                if (!dialog) return;\n                \n                if (lastClickedWidgetType === 'uae') {\n                    const defaultBtn = dialog.querySelector('.dialog-buttons-action:not(.uae-upgrade-button)');\n                    const customBtn = dialog.querySelector('.uae-upgrade-button');\n                    \n                    // If default button is visible or our button is missing, fix it\n                    if ((defaultBtn && defaultBtn.style.display !== 'none') || !customBtn) {\n                        customizePromotionDialog(true);\n                    }\n                }\n            }, 100);\n            \n            // Safety timeout to stop checking after 10 seconds\n            setTimeout(() => {\n                if (continuousCheckInterval) {\n                    clearInterval(continuousCheckInterval);\n                    continuousCheckInterval = null;\n                }\n            }, 10000);\n        };\n        \n        // Handle clicks on promotion widgets\n        const handleProWidgetClick = (e) => {\n            // Find the clicked promotion widget\n            let clickedWidget = null;\n            const allProWidgets = parent.document.querySelectorAll('.elementor-element--promotion');\n            \n            for (let i = 0; i < allProWidgets.length; i++) {\n                if (allProWidgets[i].contains(e.target)) {\n                    clickedWidget = allProWidgets[i];\n                    break;\n                }\n            }\n            \n            if (!clickedWidget) return;\n            \n            // Check if it's our widget\n            const isUae = isUaeWidget(clickedWidget);\n            \n            // Update the last clicked widget type\n            lastClickedWidgetType = isUae ? 'uae' : 'other';\n            \n            // Start continuous checking for dialog changes\n            startContinuousCheck();\n            \n            // Also set up multiple immediate checks with increasing delays\n            const delays = [10, 30, 50, 100, 200, 300, 500, 1000, 1500, 2000];\n            delays.forEach(delay => {\n                setTimeout(() => {\n                    const dialog = parent.document.querySelector('#elementor-element--promotion__dialog');\n                    if (dialog) {\n                        customizePromotionDialog(isUae);\n                    }\n                }, delay);\n            });\n        };\n        \n        // Create a mutation observer to watch for dialog changes\n        const createDialogObserver = () => {\n            const observer = new MutationObserver((mutations) => {\n                for (const mutation of mutations) {\n                    // Look for added nodes that might be the dialog\n                    if (mutation.addedNodes.length) {\n                        for (const node of mutation.addedNodes) {\n                            if (node.id === 'elementor-element--promotion__dialog') {\n                                // Dialog was just added, customize it\n                                customizePromotionDialog(lastClickedWidgetType === 'uae');\n                                startContinuousCheck();\n                            }\n                        }\n                    }\n                    \n                    // Also check for attribute changes on the dialog\n                    if (mutation.type === 'attributes' && \n                        mutation.target.id === 'elementor-element--promotion__dialog') {\n                        if (lastClickedWidgetType === 'uae') {\n                            customizePromotionDialog(true);\n                        }\n                    }\n                }\n                \n                // Always check if dialog exists and needs customization\n                const dialog = parent.document.querySelector('#elementor-element--promotion__dialog');\n                if (dialog && lastClickedWidgetType === 'uae') {\n                    const defaultBtn = dialog.querySelector('.dialog-buttons-action:not(.uae-upgrade-button)');\n                    const customBtn = dialog.querySelector('.uae-upgrade-button');\n                    \n                    // If default button is visible or our button is missing, fix it\n                    if ((defaultBtn && defaultBtn.style.display !== 'none') || !customBtn) {\n                        customizePromotionDialog(true);\n                    }\n                }\n            });\n            \n            // Observe the body for changes\n            if (parent.document.body) {\n                observer.observe(parent.document.body, { \n                    childList: true, \n                    subtree: true,\n                    attributes: true,\n                    attributeFilter: ['style', 'class', 'id']\n                });\n            }\n            \n            return observer;\n        };\n        \n        // Special function to handle search results\n        const setupSearchResultsHandler = () => {\n            // If we already have an observer, disconnect it\n            if (searchObserver) {\n                searchObserver.disconnect();\n                searchObserver = null;\n            }\n            \n            // Create a new observer specifically for search results\n            searchObserver = new MutationObserver((mutations) => {\n                // Check if search results are visible\n                const searchWrapper = parent.document.querySelector('#elementor-panel-elements-search-wrapper');\n                if (!searchWrapper) return;\n                \n                // Process all promotion widgets in search results\n                const searchPromoWidgets = searchWrapper.querySelectorAll('.elementor-element--promotion');\n                if (searchPromoWidgets.length === 0) return;\n                                \n                // Add click handlers to all promotion widgets in search results\n                searchPromoWidgets.forEach(widget => {\n                    // Remove any existing click handlers\n                    widget.removeEventListener('click', handleSearchWidgetClick);\n                    \n                    // Add our click handler\n                    widget.addEventListener('click', handleSearchWidgetClick);\n                    \n                    // Mark this widget as processed\n                    widget.setAttribute('data-uae-processed', 'true');\n                });\n            });\n            \n            // Observe the panel for changes\n            const panelElements = parent.document.querySelector('#elementor-panel-elements');\n            if (panelElements) {\n                searchObserver.observe(panelElements, {\n                    childList: true,\n                    subtree: true,\n                    attributes: false\n                });\n            }\n            \n            // Also observe the search input\n            const searchInput = parent.document.querySelector('#elementor-panel-elements-search-input');\n            if (searchInput) {\n                // Add input event listener\n                searchInput.addEventListener('input', handleSearchInput);\n            }\n        };\n        \n        // Handle search input changes\n        const handleSearchInput = () => {\n            // Wait a bit for search results to render\n            setTimeout(() => {\n                const searchWrapper = parent.document.querySelector('#elementor-panel-elements-search-wrapper');\n                if (!searchWrapper) return;\n                \n                const searchPromoWidgets = searchWrapper.querySelectorAll('.elementor-element--promotion');\n                \n                searchPromoWidgets.forEach(widget => {\n                    // Remove any existing click handlers\n                    widget.removeEventListener('click', handleSearchWidgetClick);\n                    \n                    // Add our click handler\n                    widget.addEventListener('click', handleSearchWidgetClick);\n                    \n                    // Mark this widget as processed\n                    widget.setAttribute('data-uae-processed', 'true');\n                });\n            }, 300);\n        };\n        \n        // Handle clicks on widgets in search results\n        const handleSearchWidgetClick = (e) => {\n            \n            // Set all widgets in search results to be treated as UAE widgets\n            lastClickedWidgetType = 'uae';\n            \n            // Start continuous checking\n            startContinuousCheck();\n            \n            // Set up immediate checks with increasing delays\n            const delays = [10, 30, 50, 100, 200, 300, 500, 1000];\n            delays.forEach(delay => {\n                setTimeout(() => {\n                    const dialog = parent.document.querySelector('#elementor-element--promotion__dialog');\n                    if (dialog) {\n                        customizePromotionDialog(true);\n                    }\n                }, delay);\n            });\n            \n            // Don't stop propagation - we want the dialog to open\n        };\n        \n        // Initialize everything\n        const initProWidgets = () => {\n            if (typeof parent.document === 'undefined') return;\n            \n            // Remove any existing event listeners to prevent duplicates\n            parent.document.removeEventListener('mousedown', handleProWidgetClick, true);\n            \n            // Add our event listener with capture phase to ensure it runs first\n            parent.document.addEventListener('mousedown', handleProWidgetClick, true);\n            \n            // Set up search results handler\n            setupSearchResultsHandler();\n            \n            // Create the observer\n            const observer = createDialogObserver();\n            \n            // Check if dialog already exists\n            const existingDialog = parent.document.querySelector('#elementor-element--promotion__dialog');\n            if (existingDialog) {\n                customizePromotionDialog();\n            }\n            \n            return observer;\n        };\n        \n        // Initialize when Elementor is ready\n        let observer = null;\n        if (window.elementor) {\n            elementor.on('preview:loaded', () => {\n                observer = initProWidgets();\n            });\n        } else {\n            window.addEventListener('elementor/frontend/init', () => {\n                observer = initProWidgets();\n            });\n        }\n        \n        // Cleanup function\n        return () => {\n            if (continuousCheckInterval) {\n                clearInterval(continuousCheckInterval);\n            }\n            \n            if (observer) {\n                observer.disconnect();\n            }\n            \n            if (searchObserver) {\n                searchObserver.disconnect();\n            }\n            \n            if (typeof parent.document !== 'undefined') {\n                parent.document.removeEventListener('mousedown', handleProWidgetClick, true);\n                \n                // Remove search input event listeners\n                const searchInput = parent.document.querySelector('#elementor-panel-elements-search-input');\n                if (searchInput) {\n                    searchInput.removeEventListener('input', handleSearchInput);\n                }\n                \n                // Remove click handlers from search widgets\n                const searchPromoWidgets = parent.document.querySelectorAll('#elementor-panel-elements-search-wrapper .elementor-element--promotion');\n                searchPromoWidgets.forEach(widget => {\n                    widget.removeEventListener('click', handleSearchWidgetClick);\n                });\n            }\n            \n            if (window.elementor && elementor.off) {\n                elementor.off('preview:loaded', initProWidgets);\n            } else {\n                window.removeEventListener('elementor/frontend/init', initProWidgets);\n            }\n        };\n    }, []);\n\n    return null;\n};\n\nexport default PromotionWidget;\n","import domReady from '@wordpress/dom-ready';\nimport { render } from '@wordpress/element';\nimport PromotionWidget from './Components/PromotionWidget';\n\ndomReady(() => {\n    const container = document.createElement('div');\n    document.body.appendChild(container);\n    render(<PromotionWidget />, container);\n});\n"],"names":["__webpack_require__","module","getter","__esModule","d","a","exports","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","window","useEffect","lastClickedWidgetType","continuousCheckInterval","searchObserver","customizePromotionDialog","forceUaeWidget","arguments","length","undefined","dialog","parent","document","querySelector","defaultBtn","shouldShowUaeButton","querySelectorAll","forEach","btn","remove","style","display","button","createElement","textContent","dialogTitle","widgetTitle","trim","toLowerCase","replace","setAttribute","concat","classList","add","insertAdjacentElement","addEventListener","e","stopPropagation","removeAttribute","startContinuousCheck","clearInterval","setInterval","customBtn","setTimeout","handleProWidgetClick","clickedWidget","allProWidgets","i","contains","target","isUae","widget","icon","hasHfeClass","className","includes","isInUaeCategory","closest","isUaeWidget","delay","handleSearchInput","searchWrapper","removeEventListener","handleSearchWidgetClick","initProWidgets","disconnect","MutationObserver","mutations","searchPromoWidgets","panelElements","observe","childList","subtree","attributes","searchInput","setupSearchResultsHandler","observer","_step","_iterator","_createForOfIteratorHelper","s","n","done","mutation","value","addedNodes","_step2","_iterator2","id","err","f","type","body","attributeFilter","createDialogObserver","elementor","on","off","domReady","container","appendChild","render","React","PromotionWidget"],"sourceRoot":""}PK���\?��ha�a�build/main.css.mapnu�[���{"version":3,"file":"main.css","mappings":"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AAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,gBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,mBAAmB;IAAnB;AAAmB;AAAnB;IAAA,iBAAmB;IAAnB;AAAmB;AAAnB;IAAA,eAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,gBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,mBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,eAAmB;IAAnB;AAAmB;AAAnB;IAAA,aAAmB;IAAnB;AAAmB;AAAnB;IAAA,WAAmB;IAAnB;AAAmB;AAAnB;IAAA,aAAmB;IAAnB;AAAmB;AAAnB;IAAA,eAAmB;IAAnB;AAAmB;AAAnB;IAAA,cAAmB;IAAnB;AAAmB;AAAnB;IAAA,eAAmB;IAAnB;AAAmB;AAAnB;IAAA,WAAmB;IAAnB;AAAmB;AAAnB;IAAA,cAAmB;IAAnB;AAAmB;AAAnB;IAAA,aAAmB;IAAnB;AAAmB;AAAnB;IAAA,cAAmB;IAAnB;AAAmB;AAAnB;IAAA,WAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,wBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,4BAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;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mB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,sBAAmB;OAAnB;AAAmB;AAAnB;IAAA,oBAAmB;OAAnB;AAAmB;AAAnB;IAAA,0BAAmB;OAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,qBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,qBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,qBAAmB;IAAnB;AAAmB;AAAnB;IAAA,sBAAmB;IAAnB;AAAmB;AAAnB;IAAA,qBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,qBAAmB;IAAnB;AAAmB;AAAnB;IAAA,mBAAmB;IAAnB;AAAmB;AAAnB;IAAA,qBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,qBAAmB;IAAnB;AAAmB;AAAnB;IAAA,iBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,iBAAmB;IAAnB;AAAmB;AAAnB;IAAA,mBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,eAAmB;IAAnB;AAAmB;AAAnB;IAAA,mBAAmB;IAAnB;AAAmB;AAAnB;IAAA,mBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA,kBAAmB;IAAnB;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;AAAnB;IAAA,oBAAmB;IAAnB;AAAmB;A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qBAAqB;AACtB;AACA;CACC,eAAe;CACf,0BAA0B;AAC3B;;AAEA;CACC,yBAAyB;CACzB,kBAAkB;CAClB,6BAA6B;CAC7B,WAAW;CACX,YAAY;CACZ,kCAAkC;AACnC;AACA;CACC,UAAU;AACX;AACA,UAAU;AACV;CACC,mBAAmB;AACpB;;AAEA,WAAW;AACX;CACC,gBAAgB;AACjB;;AAEA,oBAAoB;AACpB;CACC,gBAAgB;AACjB;;AAEA;CACC,4BAA4B;AAC7B;AACA;CACC,6BAA6B;AAC9B;AACA;CACC,SAAS;AACV;AACA;CACC,iBAAiB;AAClB;AACA;CACC,WAAW;AACZ;AACA;;;CAGC,aAAa;CACb,qBAAqB;CACrB,iBAAiB;AAClB;AACA;CACC,gCAAgC;AACjC;AACA;CACC,WAAW;CACX,YAAY;AACb;AACA;;CAEC,UAAU;AACX;AACA;CACC,eAAe;AAChB;AACA;;CAEC,sBAAsB;AACvB;AACA;CACC,cAAc;CACd,eAAe;AAChB;AACA;CACC,kBAAkB;AACnB;AACA;CACC,cAAc;AACf;AACA;CACC,YAAY;AACb;AACA;CACC,iBAAiB;AAClB;AACA;CACC,UAAU;AACX;AACA;CACC,UAAU;AACX;AACA;CACC,UAAU;AACX;AACA;CACC,UAAU;AACX;;AAEA,yBAAyB;AACzB;CACC,2BAA2B;CAC3B,oBAAoB;CACpB,iCAAiC;AAClC;;AAEA;CACC,gBAAgB,EAAE,2CAA2C;CAC7D,mBAAmB;CACnB,gBAAgB;CAChB,uBAAuB;AACxB;AACA;CACC,WAAW;IACR,iBAAiB;AACrB;AACA;CACC,eAAe;AAChB;AACA;CACC,eAAe;CACf,gBAAgB;CAChB,mBAAmB;AACpB;;AAEA;CACC,WAAW;IACR,kBAAkB;IAClB,aAAa;IACb,cAAc;IACd,iBAAiB;IACjB,yBAAyB;IACzB,uBAAuB;AAC3B;AACA;CACC,qBAAqB;CACrB,6BAA6B;AAC9B;AACA;CACC,4BAA4B;CAC5B,2BAA2B;AAC5B;;AAEA;CACC;EACC,uBAAuB;CACxB;CACA;EACC,yBAAyB;CAC1B;AACD;AACA;CACC;EAC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;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA,sBAqWC;IArWD;AAqWC;;AArWD;IAAA,sBAqWC;IArWD;AAqWC;;AArWD;IAAA,sBAqWC;IArWD;AAqWC;;AArWD;IAAA,sBAqWC;IArWD;AAqWC;;AArWD;IAAA,sBAqWC;IArWD;AAqWC;;AArWD;IAAA,sBAqWC;IArWD;AAqWC;;AArWD;IAAA,sBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA,kBAqWC;IArWD;AAqWC;;AArWD;IAAA,oBAqWC;IArWD;AAqWC;;AArWD;IAAA,oBAqWC;IArWD;AAqWC;;AArWD;IAAA,oBAqWC;IArWD;AAqWC;;AArWD;IAAA,oBAqWC;IArWD;AAqWC;;AArWD;IAAA,oBAqWC;IArWD;AAqWC;;AArWD;IAAA,oBAqWC;IArWD;AAqWC;;AArWD;IAAA,oBAqWC;IArWD;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA,0CAqWC;IArWD,uDAqWC;IArWD;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA;AAqWC;;AArWD;IAAA;AAqW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qWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;QAAA;IAqWC;IArWD;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","sources":["webpack://header-footer-elementor/./node_modules/@fontsource/figtree/index.css","webpack://header-footer-elementor/./node_modules/@fontsource/figtree/400.css","webpack://header-footer-elementor/./node_modules/@fontsource/figtree/400-italic.css","webpack://header-footer-elementor/./src/styles.css"],"sourcesContent":["/* figtree-latin-ext-400-normal */\n@font-face {\n  font-family: 'Figtree';\n  font-style: normal;\n  font-display: swap;\n  font-weight: 400;\n  src: url(./files/figtree-latin-ext-400-normal.woff2) format('woff2'), url(./files/figtree-latin-ext-400-normal.woff) format('woff');\n  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* figtree-latin-400-normal */\n@font-face {\n  font-family: 'Figtree';\n  font-style: normal;\n  font-display: swap;\n  font-weight: 400;\n  src: url(./files/figtree-latin-400-normal.woff2) format('woff2'), url(./files/figtree-latin-400-normal.woff) format('woff');\n  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}","/* figtree-latin-ext-400-normal */\n@font-face {\n  font-family: 'Figtree';\n  font-style: normal;\n  font-display: swap;\n  font-weight: 400;\n  src: url(./files/figtree-latin-ext-400-normal.woff2) format('woff2'), url(./files/figtree-latin-ext-400-normal.woff) format('woff');\n  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* figtree-latin-400-normal */\n@font-face {\n  font-family: 'Figtree';\n  font-style: normal;\n  font-display: swap;\n  font-weight: 400;\n  src: url(./files/figtree-latin-400-normal.woff2) format('woff2'), url(./files/figtree-latin-400-normal.woff) format('woff');\n  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}","/* figtree-latin-ext-400-italic */\n@font-face {\n  font-family: 'Figtree';\n  font-style: italic;\n  font-display: swap;\n  font-weight: 400;\n  src: url(./files/figtree-latin-ext-400-italic.woff2) format('woff2'), url(./files/figtree-latin-ext-400-italic.woff) format('woff');\n  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* figtree-latin-400-italic */\n@font-face {\n  font-family: 'Figtree';\n  font-style: italic;\n  font-display: swap;\n  font-weight: 400;\n  src: url(./files/figtree-latin-400-italic.woff2) format('woff2'), url(./files/figtree-latin-400-italic.woff) format('woff');\n  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}","@tailwind base;\n@tailwind components;\n@tailwind utilities;\n@import url(\"https://fonts.googleapis.com/css?family=Josefin+Sans\");\n\n/* Custom Force UI Color Overrides */\n:is(#hfe-settings-app, [data-floating-ui-portal]) .text-link-primary {\n    --tw-text-opacity: 1;\n    color: rgb(96 5 255 / var(--tw-text-opacity, 1)) !important; /* UAE Purple */\n}\n:is(#hfe-settings-app, [data-floating-ui-portal]) .text-button-primary{\n    --tw-text-opacity: 1;\n    color: rgb(96 5 255 / var(--tw-text-opacity, 1)) !important; /* UAE Purple */\n}\n:is(#hfe-settings-app, [data-floating-ui-portal]) .bg-button-secondary{\n    --tw-bg-opacity: 1;\n    background-color: #DDD6FE !important;\n}\n:is(#hfe-settings-app, [data-floating-ui-portal]) .hover\\:outline-button-secondary:hover{\n    outline-color: #DDD6FE !important;\n}\n:is(#hfe-settings-app, [data-floating-ui-portal]) .outline-button-secondary{\n   outline-color: #DDD6FE !important;\n}\n\n/* Add to your main CSS file (e.g., index.css) */\n\n.toplevel_page_hfe #wpcontent,\n.post-type-elementor-hf #wpcontent {\n    padding-left: 0;\n}\n.post-type-elementor-hf #wpbody-content .wrap {\n\tpadding-left: 20px;\n}\n.post-type-elementor-hf .wp-heading-inline {\n\tfont-size: 18px;\n}\n.post-type-elementor-hf #adminmenu .wp-submenu a[href =\"edit.php?post_type=elementor-hf\" ] {\n    color: #ffffff;\n    font-weight: 600;\n}\n\n:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps span.absolute {\n\tfont-size: 13px;\n}\n:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .ring-border-subtle {\n\t--tw-ring-color: #64748B;\n}\n:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .border-border-subtle {\n\tborder-color: #64748B;\n}\n:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .min-w-10.border-y {\n\tmin-width: 9rem;\n\tborder-bottom-width: 0.5px;\n}\n\n#hfe-settings-app .loader {\n\tborder: 4px solid #f3f3f3;\n\tborder-radius: 50%;\n\tborder-top: 4px solid #3498db;\n\twidth: 40px;\n\theight: 40px;\n\tanimation: spin 2s linear infinite;\n}\n.hfe-custom-scrollbar::-webkit-scrollbar {\n\twidth: 4px;\n}  \n/* Track */\n.hfe-custom-scrollbar::-webkit-scrollbar-track {\n\tbackground: #f1f1f1; \n}\n   \n/* Handle */\n.hfe-custom-scrollbar::-webkit-scrollbar-thumb {\n\tbackground: #888; \n}\n  \n/* Handle on hover */\n.hfe-custom-scrollbar::-webkit-scrollbar-thumb:hover {\n\tbackground: #555; \n}\n\n.hfe-subheading h2 {\n\tfont-size: 1.1rem !important;\n}\n.hfe-subheading .text-text-secondary {\n\tfont-size: 0.98rem !important;\n}\n.hfe-loader-icon {\n\ttop: -15%;\n}\n.hfe-remove-ring.hfe-span span {\n\tpadding-left: 0px;\n}\n#hfe-settings-app .gap-2 {\n\tgap: 1.2rem;\n}\n.hfe-remove-ring input[type=\"checkbox\"],\n.hfe-remove-ring a,\n.hfe-remove-ring {\n\toutline: none;\n\t--tw-ring-inset: auto;\n\tbox-shadow: unset;\n}\n.hfe-settings-page h2 {\n\tmargin-bottom: 0.3rem !important;\n}\n:is(#hfe-settings-app) .hfe-remove-ring svg.lucide-arrow-right {\n\twidth: 1rem;\n\theight: 1rem;\n}\n.hfe-popup-button,\n.hfe-popup-button svg {\n\tpadding: 0;\n}\n.hfe-popup-button span {\n\tpadding-left: 0;\n}\n.hfe-link-color,\n.hfe-link-color span {\n\tcolor: rgb(96, 5, 255);\n}\n#hfe-settings-app .hfe-header-title h6 {\n\tcolor: #858484;\n\tfont-size: 14px;\n}\n.hfe-settings-content-wrapper {\n\tpadding: 15px 25px;\n}\nbutton.hfe-plugin-activated {\n\tcolor: #16a34a;\n}\nbutton.hfe-bulk-action-button {\n\twidth: 160px;\n}\n.hfe-subtitle h2 {\n\tfont-size: 0.9rem;\n}\n.hfe-65-width {\n\twidth: 65%;\n}\n.hfe-35-width {\n\twidth: 35%;\n}\n.hfe-78-width {\n\twidth: 78%;\n}\n.hfe-88-width {\n\twidth: 88%;\n}\n\n/* Sticky Right Sidebar */\n.hfe-sticky-right-sidebar {\n\tposition: sticky !important;\n\ttop: 30px !important;\n\talign-self: flex-start !important;\n}\n\n#hfe-settings-app .subject-cell {\n\tmax-width: 200px; /* Adjust this width based on your layout */\n\twhite-space: nowrap;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n.hfe-tooltip-wrap {\n\twidth: 100%;\n    text-align: right;\n}\n.toplevel_page_hfe #wpcontent {\n\tpadding-left: 0;\n}\ndiv#hfe-settings-app {\n\tfont-size: 15px;\n\tfont-weight: 500;\n\tline-height: normal;\n}\n\ninput[type=\"radio\"].hfe-radio-field:checked::before {\n\tcontent: \"\";\n    border-radius: 50%;\n    width: 0.5rem;\n    height: 0.5rem;\n    margin: 0.1875rem;\n    background-color: #6005FF;\n    line-height: 1.14285714;\n}\ninput[type=\"radio\"].hfe-radio-field:focus {\n\tborder-color: #6005ff;\n\tbox-shadow: 0 0 0 1px #6005ff;\n}\n.hfe-compare-section h6 {\n\tfont-size: 0.9rem !important;\n\tfont-weight: 500 !important;\n}\n\n@keyframes spin {\n\t0% {\n\t\ttransform: rotate(0deg);\n\t}\n\t100% {\n\t\ttransform: rotate(360deg);\n\t}\n}\n@media (min-width: 769px) {\n\t.hfe-sticky-outer-wrapper {\n\t\twidth: 23%;\n\t\tborder-right: 1px solid #e5e7eb;\n\t}\n\t.hfe-sticky-sidebar {\n\t\tposition: sticky;\n\t\ttop: 0;\n\t}\n\t.hfe-settings-page:before {\n\t\tanimation-fill-mode: both;\n\t\tbackground: #fff;\n\t\tcontent: \" \";\n\t\theight: 100%;\n\t\tposition: fixed;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\ttransform-origin: right;\n\t\tborder-right: 1px solid #e5e7eb;\n\t\twidth: 30%;\n\t}\n\t.hfe-nav-menu {\n\t\tborder-bottom: 1px solid #e5e7eb;\n\t}\n}\n\n@media (max-width: 768px) {\n\t#toplevel_page_hfe .container {\n\t\tpadding: 0 1rem;\n\t}\n\n\t#toplevel_page_hfe .fixed {\n\t\tjustify-content: flex-start !important;\n\t}\n\n\t#toplevel_page_hfe .bg-white {\n\t\twidth: 100% !important;\n\t\theight: 100% !important;\n\t\tborder-radius: 0 !important;\n\t}\n\t\n\t/* Disable sticky on mobile */\n\t.hfe-sticky-right-sidebar {\n\t\tposition: static !important;\n\t\tmax-height: none !important;\n\t\toverflow-y: visible !important;\n\t}\n}\n:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps .text-xs {\n\tfont-size: 0.77rem;\n}\n.hfe-min-700 {\n\tmin-width: 700px;\n}\n#hfe-settings-app .subject-cell {\n\tmax-width: 200px; /* Adjust this width based on your layout */\n\twhite-space: nowrap;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n\n/* .hfe-menu-page-wrapper {\n\twidth: calc( 100% - 25px);\n} */\n#hfe-settings-app .gap-2 {\n    gap: 1.2rem;\n}\ndiv#hfe-settings-app {\n    font-size: 15px;\n    font-weight: 500;\n    line-height: normal;\n}\n/* #hfe-settings-app .p-5 {\n    padding: 0.5rem 1.25rem;\n} */\n#hfe-settings-app .hfe-header-title h6 {\n\tcolor: #858484;\n\tfont-size: 14px;\n}\n.hfe-settings-content-wrapper {\n\tpadding: 15px 25px;\n}\n@media (max-width: 1024px) {\n\t.hfe-65-width,\n\t.hfe-35-width,\n\t.hfe-78-width,\n\t.hfe-88-width {\n\t\twidth: 100%;\n\t}\n}\n@media screen and (max-width: 782px) {\n\t:is(#hfe-settings-app, [data-floating-ui-portal]) .hfe-display-flex {\n\t\tdisplay: block;\n\t}\n\t.hfe-radio-option {\n\t\twidth: 1rem !important;\n\t\theight: 1rem !important;\n\t}\n\t.hfe-radio-option:checked:before {\n\t\twidth: 0.5rem !important;\n\t\theight: 0.5rem !important;\n\t\tmargin: 0.18rem !important;\n\t}\n\t:is(#hfe-settings-app, [data-floating-ui-portal]) .uae-steps,\n\t#hfe-settings-app img {\n\t\tdisplay: none;\n\t}\n\t.hfe-onboarding-customize {\n\t\tmargin-left: 20px;\n    \tmargin-right: 20px;\n\t}\n\t.hfe-min-700 {\n\t\tmin-width: unset;\n\t}\n\t.hfe-onboarding-customize .hfe-custom-scrollbar {\n\t\toverflow: scroll;\n\t\tmax-width: fit-content;\n\t}\n        .hfe-onboarding-bottom {\n                display: grid !important;\n                max-width: fit-content;\n        }\n}\n\nbody.hfe-onboarding-fullscreen #wpadminbar,\nbody.hfe-onboarding-fullscreen #adminmenuback,\nbody.hfe-onboarding-fullscreen #adminmenuwrap,\nbody.hfe-onboarding-fullscreen #adminmenu,\nbody.hfe-onboarding-fullscreen #wpfooter {\n       display: none;\n}\nbody.hfe-onboarding-fullscreen #wpcontent {\n       margin-left: 0;\n       padding-left: 0;\n}\nbody.hfe-onboarding-fullscreen.admin-bar {\n       margin-top: 0 !important;\n}\n\n\ninput[type=\"checkbox\"].uae-role-checkbox:focus{\n\tborder-color:rgb(92, 46, 222);\n\tbox-shadow:0 0 0 1px rgb(92, 46, 222);\n}\n\n#wpfooter{\n    background-color: white;\n}\n.uae-rating{\n    color: #6005FF;\n}\n\n.uae-rating:hover{\n\tcolor: #4B00CC;\n}"],"names":[],"sourceRoot":""}PK���\� ��-- build/8fbf595b398521a13438.woff2nu�[���wOF2-aL,�� � �`?STATH�
�,�0�6$�  ��N*Q%��Aw�#�S�E��шѲ(�������d�گ
���1B�
MݺjhӦ�5]�-�	���q�tTl�Pae����.�;詴�_pUq��>���c�s����1[�W�^��If[{��5��R�6ꅅ��ׄ�qQE��A��=�D,�`�d%�ojQ�$���6{ꚅ� R���E�T@���v��E]���\����s9���h�DŽ��߽C"!�����^�Nft�T2- 
l)��{Y���nK(�(w�h-���ͻ ���A��´�~u|e��`��CÄ����|Z�g�T
�@�
�;�t�����.�9H��
c<	y���܎^I����T_�T-[G�"/��s"/j���e��ۢs(�4���B���}!m�.��Fj3�]���(9�2Ch���չ(]]
}e��~�lO[<�ߞ�+�uY���ʠ"ŪVi�����U�$< K�)��)!��c��1cq�z����)�̲;I��5�S0
D��9#.\7^�R0��i�)b�ĊG�"�J�:"]uCz���h��+�ʊS��Z
!��*S�8@$
;�$2�n�t����-�0�W�o{l�n�J끂�O�;��FE�s�	!;�|�}�ϡ�����"+��c��4پh���F�BO��X����n��c�j����6/�I�ހw)gŽ��x�f��!x��2w�6����d�޴cWD�$��iȉp����S��R���P�lX���;/<r�wq�l3te�_fO��]�PN�#n>9�,��.Q���[�U�=��`�E�s�T�`���O���	����.DV��V�*��4�U��_�f�K*��Rm�X�L
�(GF��߰���K�R"*ǀm��b�}@6���L�X���3�uH��Q)u�N�>����Fj!���i-��h�pG"�VH�!����ٕ~2!)���YZ��H�l#`��Np�����OdX����O��Mm<��$cc,͖�;�KE�ה##��,��7� 㪅(^Y���4z�h��`��ؑi�)&K��џ=I����ue�O�(6�G��;���k���2�v�u�>c_*��0NWp��U�hq��(�&ъ�#�<��y��+�[|c��E�\��yQxaf�7$�F����Z����7��_�|�r%�ª�D�(����W-=��hV�b�%I�"UZ��/���V;�u�Q'�u+@���k�w�U7�hhh	��
�6������0 C�%�OIDILIBIJIF)�e�[�!R�h���K�(I��ҫ���Z�U���F[��A�t�뒮�n��^z룯!=μ�G�����_�<8���O�L:�7JC�3a��
����u��x�Zu:8���`"�L���Z�[YgS�����	����
�J]
h�cok�:܀!�D�B��6L����EՠVo0�^B3��p�`#Id
�Fg�R��Ά�,6��%�$$W(U�j��`̖���\���Gx��@$�)T�QK��:b��n<�@�X��\�T�msʐ<�F ��*��h L)%�B��RJ)��1Ǝg���|\h�7�^	��`#Id
�FoQD�
�Jm��s��rg�>������`#Id
�Fg<ѷ"""�/����Ͷ��ݝ:���7��!�D�B��������c���py�}QbMBr�R��F��
�l�w��'����i���Og��p�!�D�B��6L����EW���N��ۏ^���3��:;!H0{d�.�Ϯ=��v�E���XY�~BB�8�_��h?/q^���y�y��A%c}Ǔ�=}`�ӛ��y��-I%��f���:D{i���M�=-%(�e���;@f���@��
S(O9%"6��s�۷FE��'[��d�����%GlpI�	F"E�V?�x�C&�,���px'��/ŵٖ6q?����:Bs�k����~���Sv�p��jmw��"b��"�`!/$�‘�9똒�H"\���'�0��0�F�_d'��#)v)bF3�heb�	���
O��VH��4g���� ��[�+�YD���r@r��"
"�q�Q�Ѕ�o>%���?9��y�}�`.��2oB�
_�}(��*#��E��P�Ex%A��Y�FO���@������[:F#lS[�}�O�l�sR�oF9��`1���8�d1�d���g��?��M�d�r̯��}1J�s�Y}�
P[Mf�9�?���H>=9
�z���v^�]�g�g3���� �3��<��H��N�f�{�z㯇�;�#>�唝��m����@Ζ=�ܸ��ś��Z:z���-�]r�e��
�20#�+�I�!S�_������x�z��?�!.x�_���w^{���ꖟ�F��~�bk���#�2�
s�Flr�c�z���ͻ/���*U��Rx�8����EENAIG������	��5�\:" (դex���|�mP�~V�}ڼ��`�S�L�N\YT[�_��-��pVUs��Q�cDD��QbyXr�E^Qi�
��"ӹ���mGQ�#��xQ+x h1�蟍(3���(_���6�k��E�ȑ���JV�	�f|��y"3Y ��)1^���y�Ǡ�Pc�8
�E������N �Dj�M�a�2R��!�-����?���#J����re�q�Q�3�~;�����4��@���7����(�Q��Pg�:�^��<�mj)�*@�B1a�L�}��+�:las��Y���H! |Z���?_�ls�J�6�F����{Q)�rX�°�0���G�[�
���?�׽��;���c��gM��0�h*�����DH�s��Uwӷ��N`˅�yv��W~�j1�~rEZ]h��-~!���BqW۟���ȚJv򜴅�Kӛ#�#����.��1s�� �&���~�a�N���\h��޾6���1���t<	�s��������P��c]�eH���j;��B����C����L��xE��i��I	�N��,l�lr�/�����,���W+t�F\~��2�+��*1�����|�@�v����$�!�3O��
lBw����c��J�����X�:�P-k��!�o
�IkM�m�ss�Sg��)*M�0���u���h�g���������.�	����\.,�б�.�.Q+=��
Z�a#�N��3zn��Q4sQ[�S��Ǘ!��q{���RcH/:b��?4�[�v��X�(l�:�,W��
���7��g���O/��#k(G�T�ţ��t�IA�~W���		%��	�������K�XX���9l潧���o�O�G��6}�(%�u��c�)f�TVT���S4�[�}����ev6>,��Ng^���@�.A4g0�U`{;��ݿa��*!fR��%�!$�vaD�*�کN�޲�T5��leӘa��/V�_׏z|W�P��5-4E��4/��s4IS�G�MWx�(PV[��x��"��4Ό��9#�d{��Q��V��6�m�E�O��~�f���Ƶ�=�Rܙ�cc\�J�����w�=����k��$*�@?�9���R��
��;�Zu�����g)�k���k2��L_�qm�X9���մGVSg�F@|��)d�$kR�7]?V?��[i�}���`�O[�ف;�[���k�\}4~��;������u��������w֐��۷�u�o�*;���`/�w��x����ȃ2;��8F��,vS�:*�����2�w��˴m�n:�t����}�0GI���m_�(�h��m��0����mkN�������yn�μ�G��b��Me��d�����So#�����X�

O��F�vplSE�@
�K���7tD�
���LG��{\�������[t��������wus(�������s��+�1�c�S$�ţxc����'y��e]�K�d+��U7Xu9т?�l�~�	��~�;p̙��{Sپ`2Ŏʿ��qE�g���'�[�c�Z~�7�t�� �I�*F��A�A�ij����j�F[G7���/��Dㅱ0���<M�A�����J���TG��u���׿�l�U�}ٮ�����WmT�w.��0D�G�1h�7I�=�vVt�r�Yt�>.ԉ����1�;��d��M��>
b��h�|�^Y��5��X�IJ�����W7�w�l�4A/r����'��N(	�!�|A*֤DlPN�d9��"�A�y�u�̝�]�g���S�Q�lq�Y
R�n[�ǭ{�?)�L�{Y{�8=V�Ns�?�w�u�p"Q�q&�̾�zΛ��1��~$֔�<^v\rqhv�9�|"3g�Ww/'w�OZ{�Z �$�<'��.�4��,ĉ��<���93�ĉ�����b_$N�{���(�Y��뛏%���!��$�2D�ڊ߶�f����}�.��*�}$��Y=3�/ݼ�hhx��o{>V;>)�ES3�sĹ�>�X�LvgnɿU��X��x�SN��9`����U�M���x:�x\ ���0�h�Sꈽ�]����#q���;�n%�Ki:DK�u���"z��D��̣�����]�%)��]�_-Z�ʡ�o�E�!���A�BLޯ�tU0.�&&-�և,�۰}:�k����Ҳ3���O>M�E�ލ([k7�Xl5���!���6�c�W����G�������J��j�\c��j��k4Wn1�1�j&�wZ������\��:�!�]��!���	�2�{ux�ml��》���b+�NJ�ht��K�~>�4��El�ʽT�o
�\�;��b>[�F�b�΍z��N�yؿ���	fT�Pf!�:�	���\�в��ୂ�7S�.,��ZL��*j�K�K�Ў����mL�y-�-�
X��#�L��9��e��DҽSm9��.�9y����ݳ����-|@&eB*U`3%��>r��+<��>��
Mvv�>P� ���o����AT_�Ad�0��g֡���M#�KG�y�)�~��ή���.Gö7e	����!i�NY�D��O����d�D�;98�=x{��D�-��hԸ�׊�2^Y�f4d���KbRlя�[;�KX̪D��x8�}vxMH����lw�8<�H�.�ݶ���$�Ҩ1���?/��W�m�kZ�$���'��g��BZ��U�&���ԣ�o,P�[���w5��>L�j���vPC�Ֆ"���y����_�I%��Xrɂ�nBM#�C���h{�Ce�j�V�Y#��J�'K�{�0\׭ߥf\���h\�Ye��p�z��H
!m�/_t7�F-@Y��e��)���>I�>M���0�\;�]�5�x3
-Y��>�0u���}�ɯtK�@���.��io��g��@��0���+w3�_d0��{\_F��T9�,��rԩŝ�
��P�ǽ(�⭟��q��(��,���Z�
����+q;%��N�8lM&nY��Yfy̋1���L��3B�^��{����<��bv���)�m��F�	Su�R�	������L)�03O$�xB82ަ��I��Q�p��1�dM"�a�K�B�ATr�.�pu�HD6	�x��*l
��k<��#_���d�W	rvI�UIYMcљ~'�Ή6y3P�ͭp�5ö5�ܰۥXq�Y� |�h�J
�2	�f�qT6S�א�]��^ĉ�P��S��~�I1S��������c�36h��-C��V�u�t��ܯ��KY���n鵠��

��B.�\��46��`�G|O�Yʱ�*��
��Q7QX�9�'�J$�8m7��sRw~��Wf�K9R�+�#/{_
�SZ�kҤ�I�c55��$��׷_hY%?��-�X�B�~��G��dr�x�WVW�kA�!��荺$M) f����^Q-x�@yn׶����*,������������²j�"[D��	/��8v�w�.�&���x3ן��7����,�cos�5A����j��)�O���a�h('\F�tB��9�,CԒ�_¢`}���$��YBI�`rL"h4R#$�J�
h~
@{�f�ћg(�N�0l܉���!#�ia�x��_�sꛏ����F����#�6�D���j~�K}��f��yi
D�ɷ���Y	��g�,+�/�eU^��k�BΨ;*r���ӟZ��
'w�(De�%�����m��L�UD/�:ex�T�Ϋ���QD����DBV�F��Lf�3��+҅�z�/&��,
�!�ow+gq��nޱg���{��?�=}x��������ޤ�@��q�̛7��=[�{X|���C{�8��"X$�k��7�6=�d��y;�>��iLJ����z���_D=��2�t�G�p�N�On��̬b3���0�R�<1g��c�PK^�UvEh��C��S�ϨZ$n3��h��5k�;��[�v�A�5�C{���������q�e`�xG����NΎD}>�y��Kh˜t]0(�MU��u�_*�l���8�e�;ӡ�v�h�r����}g�����}���m�܌���8�JM���n�ڶF�T5`1E�?H�sOe�\�ϥ/��4X�LT�J�Rk�m�;�HA�E�y'��C��:E��
�د�$^��SV�^��	bbJ1{�0)�p)��j�
}<�=��!�ɀ�<f�0)(<�ZPeN��b�i��>���
�#�:��xBaR�2V_�+e�v��{:ou���ku�D�کq`b�k��6G,�sx��f��w1�����<�(D�����r��'7�t�p�����V׀�R�1���+%��$�a
JJ���&��5��f4y�
��f2zl����7�uX	�ƕ���<1�T�m;Q[�N��Z�-�Z;&��q�(�ps��&�׭y7�wo��F׋�牢."�7���U����f�ܥ�̈��T�����Y�L���A�����բ�
%kZM��s��@�W*�t9���5h�]n���ja�IlI��|����p��m��N,�tp�<���G���R�ɊB�YV��@����O���b�
Z	�^�z�ם-~:/#gr�'�D��+�7�5KwH`�32�NO�R���`q�q&k�0w�yI���,'0��{&�0Ë:�&�<����*�Ԋ��_�_�m�7��Hv���OW�_���>10���_��Y��P�X��Y�`�"�B.�7)a��vX�7�5U�i����sU�V���*+he�׭�A&�MVa��H؝˸4ne�p8;�����%<���j-�ZXV���s�	&s
����.��C@ےP�OI�O%�?ހ�:�`��eGX��e�[_�%���:�eSqbY�q[�X�Zr��7��Y?e}���47��
je��G�N��d�&�7A6��x1��pYJmC�V�U>:P�z�%�%K�~,-���a���3�B��:�.�%�����%�;��1��Zōg**��.��G�P3ָ㙮�owvo~��#�"˃�����'���)D@�'��ӷ��R��6ˌ���-�-`i �j�P�	B�b����00�N�w>���ė���p������S�'��%v��`,������;��}�}��������/I5Y�Ns˲���F���Wb������V�C�4�Z�����{xi��٩D@����a��N���h�A�]4��w�wepSMs<�&6�%�?�	p5q��b/�Lk�Ւ�>��H+P���'������4��@���х_�J��L֋��bA���)��նc���z􄵭q�upԠ���(':�k]�'�ډH\���-���Ϥʛ/!�M�ݡ����\w8�p��%9!�GHe<�ɇ$~5*�V�N�1��f�Ye��U�Z=斬ۦ��VzV��%�z�2�1�[K��s�<�-��ό�'�I��]��*�p�D���R��y�7޳�Jf3���,®�}
�;���ؠQ%����4#���ʆ��\�����}�ҳ�J��rX�ߝ_K�ux��V�d~����q>_l�1՜��9�i�S��>[wy0d(�l���%m:��W�$s�8J����rY������x,��^���ד$�D��$�AK�%'7�VrR�I��h�ejYX����K�5V(̨N��
��ݿOwG`(\O�‘��n 5���Sp��a�8��ǔ���bZ���c��I�j6�UMMj�Q8�f��u�;�w	h�w���Y�.��Xa�t�,��;�{�گ�*�H�c�2O<ɹ��p��Q�I�O�_=���U4�
�j���/ �0�vh�W4���ɔ���(yX�D��n�TF�!��I�
���m�H
�"�B�����ϑ�'z�D1�����b{��7?��]��;�^�X����r��j�$�j�0��&&��n�Fo�HD�S�euE�I�\�I���`
%0E';;���~e��X��?H+�J���d�N=��VZ�C�v"��_�}L����m+��zi��V����A�*�]�6��Ut�̿T@?`Y��X�v��8*_^�$}���d�]��vl��rc�X�xz�A���+�q����:�:��m>��@��ϟ�R�&��O<�_�so�ʗL=�T���] ����xu�숻�]Y�=��>�����wV謄>A��e�Kj�˦9��v��l�u��Aπ[�������g.����a���{�<�ʟ�!�L�J�}�A��c�.�o�̥��)���+6���iQɫ��}��O醛�����ʸ�ƈ!���ɤ<\[gx�D�8CmaȳQ���4"	.�6����8GT�*�;���ZWk��n��+���3[��MP�U�9?�ճS�@ֶU�����o�
�t��+�5��X����}�ڜ������s>��q��d=�sU�j^����`�����e�ǏQ˧���m�����9<. U�.Ւ\`Cw�YA+�/˻�4;+@��c��~�gL��K��..C�v�8�C9�
8.*��YV�s��zlgy��c�9\G�t��@��f;##+�i�wd��#���T+ �@��f��2:����̞���Š�9ɔͻ�{�\�-T�ՙls|��̗�g�љ$Sm�c $
�}�@�2��e(G,W��'Vq�0�����>Y���4qX�ߩ��
�:Fa&��Y$Uz��m�ĐG��[�L�\����"Y����(�'LU�^�AƘ�qe���z7@&1ӴgG��$Uq-�H��ɲmt`G�P�^�'����'9jgr����M�q�u���X
5�E���ʖ;+Xl��*����M�+P��֧,@byn:fgdV�Q��ŕ�+�a��.WV���þ
\�ν�p�.�8n��&��j���U*���F9�߭�����'r���w�\^*w�\�۞�a~�k�E�X��kx��ꙣ�����_�@��� ���
�J6ʺٽ�zh'�S}Ms���`�Z��i)N.~�{����N�b�NZ��=#`CY�pw���l%5��=Kŗx��<v�]c��r"�o��d;��>.
��l�Vx��׀6�,u�����7'��7(��k!�PU2*�*x�Ȑ�.��
v�][�8�m;�]�Rpc@��)b٩�$!ʲr��f�����ˊ���u@G;A�b)O���ћâ<� �H�l��=w�2�=Tl�[�"Z�ڕ�nL9�*ñࣧ��LUk	Y��Y3���n�w
�y��Zq�hVr�71.cк�
Z�˒K�]���ق���E�#|�	�Ks_�7[�>3���d[	�10Q����`�Κ�9�'�=�j^}�Ց��}�q/@���z\�Ǝ�?w$�KLK�9�z��E�Wk[�>-����G��j���+?V���P�q΍�Ńrm4��f�ֽ�Zn*P����Z�� �[5lu�ݗ��/�#��~Sh	�/F��T�W��׊T'(a�KU(��K �(�dE���֣��?Kj���{q��#pL�uۨjV�08>�=��(����P�/��B�@6���m�W���ý���R�E����R��iZVp[5���6W��4�%��'�A�㝟�D:(��V��+����fv����dFt|�n���u�@�"���-zo��7IA�íy��;�rP#!ߚ��";L�x�ɿ��m�A�r�g��̈�tg�l�/�螠hs~�w��cީ�yc���bfq�0���FM˪^uIڦ�F-iz�%�]�o�Z���R��a��T3}+��'$�l��z�m���™�+�틑��E��+F�#0�O��t�-O�{�Q��()�5j�o=@W���by�I.Z��`}��M��g�z������N�wg�9C�d�bA
.�ӄ�.�`�"��qZL@�㦀�'�GL/̐�ܭCBD�٦��C�ґ�$�p("��a�b��m��Á!�C5&�c��@�/i8��X�p!以�b��H����I+���]�oxm"��kPeLυѮ�s���N��=��j|�V)}n1����+��U��tF����)��8C��9HG�nX<Ʉ�|��ΠK�.���[�s[���k�s����W���s9��][;��/@;�>��%W\�,��5��p�&9�V.�A����݁䛱KC�5���w�:y�����P1:�o��Ub��)�	z�b��-sn�~�9�/5sɼX�+;H���f�Ն�-�9r�,_�Fm�BE�����[���Q����s�|�����
ْٓ�<�
*R�D�2�h*�Ub`b��������� ����i+�Z>�8k"[bN�# �{E���B+a"�s�>�p�f[�p�����$L5�4c���8�I�n�g�_��e�uZ��4:R2r
J*j0
-]3D���{��H�HR���T�HR���N%��~b>cB��9Tm���j���&?h�ʔ\pK?=��A�coYݱ
�i(ܞP,�e�r�*qm{�7=�E�\HaDj|j$���J�������iRj�L>��	�f��
��--��O�	R7��iȞ�Kx����2Uz\W3R+����sR!�|x�47���`rG�da��ݲP�-��ٴzPK���\l�Mqxx build/410fbc8e227942f4d606.woff2nu�[���wOF2x9��L�`?STATH�
�0�\�v6$�h ��5)1�� B�w���S��f
��ЌN"�e7`R��e�,�-�b��_y��ڨ�n߯����[GH2K�$�W�ٻO� e�#H��<��?��{�U�9�X�
h���=�0�\:���0r���(��~�?*揔����}�ȓ�
4����ӗ�B�(ӭBY��ݖ�$�	zp"wm����l��=o�V��#p�#(:�^�}�^��*/%�$ϭ�c-y7���}`���Cv�[����6EѥK�u��
��ӞbE���m�GV�s!�p1��cǩ�[ 0L)��B�w��	��	����ZH�hH�x�'��B�2!9r!RJ���g��+��� %�!*!�l�zM�!m�!�:!�z![8!����ף��
A�tr�1�	'!���F1j�%�Q\s
����a��\rƊe�����̃voo&*��h@`(��h�O^&B跹i���p�
����!ǂpy��>�p�?�*�T�C��\����ص�l�����R`o�z6����@�al���F�	6����~	���~o���\�g��'F�����.�+�E��@�i����C�!���:mS&�^kiW��K�B�<�9�l:�u4�uG��w�����,�r�:�y�0%�	J���O8���P�'��G��*[�8�*'�h'��\�Ħ�	#Ż,���d��%���m���N���d��j��G���d�;	ř�[�t&�r���&������(�j��c�����D��! q�Do��`�P�,��� �Q�阅T`jш$Z�˰�цM؂�Ct����� s6$4�e ���O�=	I��T1��&u
��7,�p�"T��p�*��g "�a��n!����*Z8|��>SR2r
J*jZzF$�"%J�)W�F�N�l�ն���=숣���x*���-lR"5P�a���m��ol�e����q�R�))�
t�v�K�۴�tgXn��J���^2pPQ���[^a���UhQ��B�
�<u�GA/<C�`�0��}��X�J�ʠ*�j�lP���aGlB��Jw<��H}���
��*�Ϥ����7@��^���9��(��c��Y�&�@�A0�a�p�P�k�S��I
�(�#0/�OQ
#��E���Zs� �f�I];��3��*6N>��q�
�PƟ�������F��頽�C�b@~-0
�L����9v߆v��$�1E8 ��(,4�BEC�(�OG�@���W�j�7W�g◘$$)�dG}�S[��
+Q�T4D�R�#N�8�0r��4���nI�$��bNm��g
P����F���?��%�W��J����{���7��)��ihK(�c3���5b��^��P
�0�DW�]	\B9�*0U�S�W
6>�i�^�&���^�����`���.Z����I�^[pm�h+'���K����v�+�#�
J3 ���z��A2�(�v��	�N+tV�3�,2=*��cT�8��$���(�|0�0=`�=Ю(�>k��S��ь+�Fij4�A�P`Q��$��w���S0n���x�<sL���R��T�]�/��\�HWlU��fT]G=��"T��ɢ��ʢ7�p&��,jIO�qtq��ZJWm���7��8֓�,j�|�)4#�S9Y�G��4�N��b���{�D%��j���W��l&��či�檁�%��[���"�<U��,,���i��G�HA4��6����[�>]�RĀ"��fO���DI4���չ�D@���2���g@)�
'̲��O�'�NQ�`�j�'&3�
mE�֘eyc?<�D]?��^�[�W���XK���u�c�$���!�h�8�(����>��z���φZO4W��-�땚�t����,p�� 5�+�xف[K��KBֱ{��k@�iq��qfq.AÑ�
0ES�geI�
��sQ�`���R�!㞔��j�D^���-���s,�o>T�\dx�F�T��ɾ�"�y�#ysc�cX���Y���r��gBm��-����ͧ�v/�Z�}�X���#3f�:��K�%	�Zߥ�@kَ�p"u�c�o�#݃P�G)%)�ZPO���DIaqR�Y�� (��RWU��;���$��
�p+[D!0�F�ur��A}w��;�A��佱��;���ٙ������p9r�1��J���2���)�x�\M�b>�UJy� ^B32���͆Y�n������#���1��D��0� �
��<{ڊ���4gx�i�ID��5G5�3-��Yz�_��^6ܞ���b�&��M���@s�al�	ƏYzt�<F�@����xށk��0�-�*��M��Ɂ{S�{3���8GeJ��{֕:C�L_H7n��5�O���3i��~(x�\5������n��~q�#:z����H��lS�%+|�pYMN�ԴS���"Y<u�*w��,�kWi�H�\���:XB��ܵXs��<Q_G�8X\�M�L-��k��b1�Z�
��T'�Ҕ9�o�\����������hʍO�r�I��S��������\Y���fEͯb��1ʚ3"M̑	Laq�[Ty���s�:_� Ψ��he�Gu1����2�R]��C��uY�b|�����
�Q��jxY�jb�|M�Q2g�F�.��
���O,�}k�/��|W^D��p$��=`H�z���=�k'�i��t�gRR�{��7B��+����6�L�/�{�	۱R빦f��#�6��2�lSy�pi�N��Ig%N�*�Ц2g�B�d[���o�cBݥ�r������윊�B�N?�p�4�͓��ؗu1�飐I�K8O�¾+ɕ����3��:��\�*����]Q�ɖ�d[S,Εr�Io��|mA-��"QIK
(	?���]A��Ҍtyvn�f��DŽ8��P\/-���H���X��[�Gz_�GvX�4vKe�����D\s!W(2sɊ�3?gH���޷fɷg�_��ysV�`6�kP�q�ς��b}�Qe�5�M�W�<����
���P�g���N��c�r�%��&0�#��ڤ�՚J�mQN&�OIXf�y���n�"4�9z}v��j�F�{�H����kx�f�H�I����3U�m̃���
��OBf��;�qed9�$�}r�gq��#�I����S��T�D�<��d�V�I���l�/�V�Ji��z�'�2�I=G����,�7�Ջq��ܤh�o�q�h�o&|�n�羸�ˌNұ�$/�������o�l9b�F'Ԕ���8tڔ�濧9GƋ.����D��[�*�+P�*��9�M��X��.��L`\Ѱ�.�TUF�����Vn�
�A����P�Y�]6-á���x?�wYn��pi�.�ƛ8�	b��k�w��f��er}w'B�����Tt��%��\�RK{=D�O���˗��FH��I|���JOe�
㐚q*͆ޖ싩j^|�X��Z�`Xʅ���Y��IB-Ǵ*Y�f�m��_&D������,.���Z��{��|�*n^�������%�;	\�Z��GWn+�'�g"�F��0Q�ўu��C�i7����D�Y�� Mt�NPK����	@�F?ϖ��͍\’��n���y=G�><���7V>�����I��/b6\���-t[����Oi	�?���[�[�NH����(ώ��+�q���vӮ����v�cq��3"���]~���Y?�$��\�/���/wr~��h�����ڝ�N'\]��Y���U��_y�)i���ko�J�>�������������ng-V�t��.�ױ���W��bcV�cNhY0�P��ѐ�ё0�74d��Q온�6���ͩo�G�c�g^Ы��e�jyိ��@
ijZs�x}�;��|�0��BT�p�vT�ch���9Gʭ���%�n��`FN�������9ρ�f�|g�|w}�r`� ���<��_՘6�2m�4>�b�e��,t�7�j:|�b��u$F�S{:x)�����#V�cF0�N{��d�L�Jҁ	�|m�]�M�p���n-1�|��j
���YJb1�7J�:���^���A�xǛ0]�	*0�
�\�I��4�``J'|��&����S��;tu
�ICL	?��c����U���n��8���T����tf�vN�f̅OF>�\uԷ�����:*
M����r@���Mo��S��|y��h��'��ֱ?]��c�ɣ��R~�.8Q4�JN	L�?`U��G$����}�~����9h�=t�0y#k�5��轠���*'��;���]#e�5a�a�5$>q)6�Ǿ!O�4�:�|��\�w��;�T*����27�w{Y積���ȓ0x ��H|"9}�c��I�(�;�_�u���!Kbdcuo��aߪ��%��,�+G���c/���c=.�e��c�Ϡ��ソ���t�ɺp��滿�����H���S3�嚜
隿W9���j�ϔ���?�WMN���[h;�%qK͡��܋Z�r�]F����Ӛgo"^���rq+JqZw�"���2������Y�H�a@��t(�L�ݨ������!y5��-5GB�9qfƒ��Km(�@$�׊V<��[�Ԗ�A:�z�h[��z��r�N!�����S���9�|�N��B�?�^>!N�0��1�Y�?�P�V��/��L͓N\.�+�>\zkD��y�ėR�)A�*�Ф�)�,�M����U�/�֥!]�
񋭼�9c�6�0�b>����9��\1�C����y���6���w^5z���wG"ȓ�Q釻�;�m��
����)����t�����׮���Y��t��C�������u���u\uF��ut���⊟"��/�+�}�"�������Z��AF�7���P���5�C���$sy��X��9���O�Re"��6C���Z�Z
��[;2�¥������i����+ˤ1V��:|A){ߎf��G���$ףJ__�B��!��`�v��n���nox�b�G�|'1����{�υ��<�	�@`�����p�
����07Li�
 ��%F%G��� ���p�����Y��ВBfX!�l�����Ѥs��bMer�!<J�V��I��y��؂�zUZ���[4�ae�Y�A�G�7h��Gŭ����-�T�wMv�x��t�*��͵��i��
��ܡE��g�]�H\I��e�W���]�6��p��J��<Mq䪚�|唁Q9
6����e�6��a�H	,7��VP��$e�Ԋ�8G�#�ž�C���(��P���[r�Y��@�U+ߔ.�K[7������T�����0�����A7���7��m�M|bz~	|������(0��x����¬."��"K��ڄ���Dc�I$V\b�p$▎'	��L��J)Kj_&'"�&=e��!�<YPT���%I�_�d�i)({Kuz�t���|&�
V���daU�Eq_�/��5�W� )��$��BeE��r_�DѬ�]�Mf��f7N������C0[��m��$>�����q�[����ښ	�Gӌ�紲8Z{{���It|Ś�R�D+�*��V\!jqSTF��X��<���QU�UB�1��M]QW��&麪p��Fי`\@J7h
���R��cCȪgb����f7c�fzA�� �*�����|q��W�)����H���'���&�%�h�w����:4�czXkm<&��R���'��w���{�K����;*ܪH��FS�M�zOc#6b��>,��4hZ���Fkl*M�CM�MDo����[��*B����ؽ�*����V}�!�����;�v�ҁ�.mWE��K�ɻ��S�c�I�$a��㒓�AR�Q2�7
��2A��f˸U-�-"#�S�x�7��j$R`m������U-�LhM�g���w�D+�f��PK���\j�e�\\build/promotion-widget.jsnu�[���(()=>{"use strict";var e={n:t=>{var n=t&&t.__esModule?()=>t.default:()=>t;return e.d(n,{a:n}),n},d:(t,n)=>{for(var r in n)e.o(n,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:n[r]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)};const t=window.wp.domReady;var n=e.n(t);const r=window.wp.element;function o(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return a(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?a(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var u,l=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return l=e.done,e},e:function(e){i=!0,u=e},f:function(){try{l||null==n.return||n.return()}finally{if(i)throw u}}}}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}const u=function(){return(0,r.useEffect)((function(){var e=null,t=null,n=null,r=function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],n=parent.document.querySelector("#elementor-element--promotion__dialog");if(!n)return!1;var r=n.querySelector(".dialog-buttons-action:not(.uae-upgrade-button)");if(!r)return!1;var o=t||"uae"===e;if(n.querySelectorAll(".uae-upgrade-button").forEach((function(e){return e.remove()})),o){r.style.display="none";var a=document.createElement("a");a.textContent="Upgrade Now";var u=n.querySelector(".dialog-header"),l="widget";return u&&u.textContent&&(l=u.textContent.trim().toLowerCase().replace(/\s+/g,"-")),a.setAttribute("href","https://ultimateelementor.com/pricing/?utm_source=plugin-editor&utm_medium=".concat(l,"-promo&utm_campaign=uae-upgrade")),a.setAttribute("target","_blank"),a.classList.add("dialog-button","dialog-action","dialog-buttons-action","elementor-button","go-pro","elementor-button-success","uae-upgrade-button"),r.insertAdjacentElement("afterend",a),a.addEventListener("click",(function(e){e.stopPropagation()})),n.setAttribute("data-uae-customized","true"),!0}return r.style.display="",n.removeAttribute("data-uae-customized"),!0},a=function(){t&&clearInterval(t),t=setInterval((function(){var t=parent.document.querySelector("#elementor-element--promotion__dialog");if(t&&"uae"===e){var n=t.querySelector(".dialog-buttons-action:not(.uae-upgrade-button)"),o=t.querySelector(".uae-upgrade-button");(n&&"none"!==n.style.display||!o)&&r(!0)}}),100),setTimeout((function(){t&&(clearInterval(t),t=null)}),1e4)},u=function(t){for(var n=null,o=parent.document.querySelectorAll(".elementor-element--promotion"),u=0;u<o.length;u++)if(o[u].contains(t.target)){n=o[u];break}if(n){var l=function(e){if(!e)return!1;var t=e.querySelector(".icon > i"),n=t&&t.className.includes("hfe"),r=null!==e.closest("#elementor-panel-category-hfe-widgets");return n||r}(n);e=l?"uae":"other",a(),[10,30,50,100,200,300,500,1e3,1500,2e3].forEach((function(e){setTimeout((function(){parent.document.querySelector("#elementor-element--promotion__dialog")&&r(l)}),e)}))}},l=function(){setTimeout((function(){var e=parent.document.querySelector("#elementor-panel-elements-search-wrapper");e&&e.querySelectorAll(".elementor-element--promotion").forEach((function(e){e.removeEventListener("click",i),e.addEventListener("click",i),e.setAttribute("data-uae-processed","true")}))}),300)},i=function(t){e="uae",a(),[10,30,50,100,200,300,500,1e3].forEach((function(e){setTimeout((function(){parent.document.querySelector("#elementor-element--promotion__dialog")&&r(!0)}),e)}))},c=function(){if(void 0!==parent.document){parent.document.removeEventListener("mousedown",u,!0),parent.document.addEventListener("mousedown",u,!0),function(){n&&(n.disconnect(),n=null),n=new MutationObserver((function(e){var t=parent.document.querySelector("#elementor-panel-elements-search-wrapper");if(t){var n=t.querySelectorAll(".elementor-element--promotion");0!==n.length&&n.forEach((function(e){e.removeEventListener("click",i),e.addEventListener("click",i),e.setAttribute("data-uae-processed","true")}))}}));var e=parent.document.querySelector("#elementor-panel-elements");e&&n.observe(e,{childList:!0,subtree:!0,attributes:!1});var t=parent.document.querySelector("#elementor-panel-elements-search-input");t&&t.addEventListener("input",l)}();var t=function(){var t=new MutationObserver((function(t){var n,u=o(t);try{for(u.s();!(n=u.n()).done;){var l=n.value;if(l.addedNodes.length){var i,c=o(l.addedNodes);try{for(c.s();!(i=c.n()).done;)"elementor-element--promotion__dialog"===i.value.id&&(r("uae"===e),a())}catch(e){c.e(e)}finally{c.f()}}"attributes"===l.type&&"elementor-element--promotion__dialog"===l.target.id&&"uae"===e&&r(!0)}}catch(e){u.e(e)}finally{u.f()}var d=parent.document.querySelector("#elementor-element--promotion__dialog");if(d&&"uae"===e){var m=d.querySelector(".dialog-buttons-action:not(.uae-upgrade-button)"),s=d.querySelector(".uae-upgrade-button");(m&&"none"!==m.style.display||!s)&&r(!0)}}));return parent.document.body&&t.observe(parent.document.body,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["style","class","id"]}),t}();return parent.document.querySelector("#elementor-element--promotion__dialog")&&r(),t}},d=null;return window.elementor?elementor.on("preview:loaded",(function(){d=c()})):window.addEventListener("elementor/frontend/init",(function(){d=c()})),function(){if(t&&clearInterval(t),d&&d.disconnect(),n&&n.disconnect(),void 0!==parent.document){parent.document.removeEventListener("mousedown",u,!0);var e=parent.document.querySelector("#elementor-panel-elements-search-input");e&&e.removeEventListener("input",l),parent.document.querySelectorAll("#elementor-panel-elements-search-wrapper .elementor-element--promotion").forEach((function(e){e.removeEventListener("click",i)}))}window.elementor&&elementor.off?elementor.off("preview:loaded",c):window.removeEventListener("elementor/frontend/init",c)}}),[]),null};n()((function(){var e=document.createElement("div");document.body.appendChild(e),(0,r.render)(React.createElement(u,null),e)}))})();
//# sourceMappingURL=promotion-widget.js.mapPK���\��v � � build/f5a809ac576251495a72.woffnu�[���wOFF �;pGDEFX�<�GPOS�L��#7GSUB�����OS/2,L`_�eSTATx=H�q�cmap�\t;�ugaspglyf�!��7�head�66�V�hhea�$Xihmtx�{A~loca ar!�maxp� ��name�\4kZ�post���k��x�
ʃr @�^�ƶm۶m۶m��̭�9���<�ٜ<�z�+������W~ȿH#��3,�5v�G錫t�[��/	��D��dI2�t�I��#_R"˨��4�&�e�z@;]��~9ȐaLN0#瘗���u���r�Cy�q����F�q'(x.�hB��A� �x�l��mIEWս���V�m۶m۶m۶�m��'�����Je�:�S����T�7�c�I�9n�l�	n�&�`Ƥ��);k��5c�
b#fF��D��ȋ#䎔�k�JH�po��d����3�
9�
׸ν$A�P�S�x1GRƌ�-k��üʼ<(�̕��"Y��Vf�?��7�C&����!e���x2x"���_�E0NG�Q�?�wfb�_��吅����,��,���Tw��h����~&j�ʾ�Q2(��q��n��WT��]�?p.�y��buE1��1�K�'���r6�Msa��/ȳͿe��
���s���z��rY�?��
�d�oX�.���#�����D�KX��6�����|š��x��k�_�W��r=���+[��z�[�-��Y����u�甍�W쩈#�IQ�F:�� ��y)M9
RA�(�T�Q���&u4V����!���)-5ֆ�kOgjӕ4�}hB?МA��E;�0�N�g]��t͝�<�]�B�[�2���ЊU�e$�٠���x��K�W�sX+�rB�Oq�E��<K�ME}QSTz���|؞��jX����9����8�-%Y�PBp�<�]���OT�n��9X�@.�ͨ��*G=�	I�'�۵�lO:҉�t���A/zӇAfC�F2�1L`"�Y�*V��nLw�Q�q�v;�T����x{:ޞ�����8e�$OQqLc:β9��e�=yq$E��v^o�{l��C�����Ξq�e*1,��6���!��2b>]UJ�-�2�Nf���b�X,���\�{��;�1@PA'|B���Ԫo�m��e�QFe�QFe���[5�t��L�,�l��\�<��E�x�=�CB`�g��lcVm3�ٶk�q��V�|�y!P`ԉ48<���h��D�Vijf�I��T�2��%��+d��Y�g��N�4|�*��e [�-�	�<!G�~��?z��r��6���)�LR��%I$�o��[�½�ɳ��U΄���}�t�x�c`a�f�����������
���u���|d����+�^�m���/3�
O�1~a�����x�
DZ
@P��~
�5��TH�/����]w"&�UaS�q�W���b�P�R��_@��7@x�}�3
�s�{�g۶m۶m۶m.�}�5՜1f��M�� �$rJ
䔊7h����2)���.E�(�jԉ��6:E��bq�JH�I�H<HF2�L[xU�Å�-��3m�;�G���Y����3F����sK&��_���{��/J}n�>5���㝏�>��x�'Gx�Z����[h��v:�Ӯ��7�ށ�����J����`�t�d�̆�a��F�i�l��c����g���)h�&*j�b�*��iJ����ʘ���ʚ��*Z��%*Y����[���jZ��5jY��uب�
�Y��-Zک��Zۭ�Z٥�}:9��n����I魡M�ڪ��ګ���8�W\���xڝY\G֟�5��"��$�IԐ+��H ,���-�-����{O�:�����8��)W|���]���7��J��,�g��2o�����Qr.gDR#d�Z�v�ֺ�Wl�׉W��^�o��@02��0.!�Ӫ�qc�J:�K�ql�f��{�
rt��$��'���c�
��ㄠz��׷MN���o^}u*%��D#��=�`|=��
~�9`A�M��Ȓf�R��@�`R�x����n�Uְ�V�S��lue�"�#�m�\Ґ�g�.�W����yS'��&�"�Ä��F�I�%��i4�����k[q���-�����Q_tK{�֘�[+Y�U3�k��]�������N���:��va��2=�jf�^�̂Ϡoe���:��_���2�	���X2!�Rzp�3h%�:����֚{GG�]35�v:��CS���_X7���A��px̀40I��Ff�9�9
�K�(Q�B���wT@c�e��&��)5
|t�[�S��kd�ne��ѽ�n��{qcn����?�K���{”��K�-V�����-��h��'��e|ϒ��D�jߍR���у� �	9���u���.�>3�df��v����
�P�P�R�T��MOL<�)�q��S�5��L_�um���Y쬺�næ]���[,�N%�O���H�c��;��9���
�.zS��P��bx��T�#����Eq%�ޔ�E%I�k��CZ�-�$�iw�ϓ��7�g��fN<~�u��2l��d
�e��{��:66"	�'�w���*
������f�JJdޑb	�����D��:,*ȁ�l�
2�F��3,W$|7 �+�� ���)���ߙ�”�r�$��s$�05�EּP�N� O����%NA�:!��/ �U��mK"�Oe�{��9�1�"��oK��7E�0.+��f���:$�g�cK�:��ډ!,l��4�O�B|��.�Uq
����b�
�Y �R��u4�6��r$iV�ng��I߲���\j�zR�uJ���&I�&�L�sL'kɧ"�����Rˍ'/����0�U��guѐ��8v�����˸a���_N&���=��*4{LΝ=�z�\#1E�h|}pƔ�V�#��L�a:
tMK��@-/Ы���Pn��u/W')���J���Ƃ��L�p��e+�P
Q��
�ꪓfD��1W)��.xhl�\����k�/o��<п��c�f��7�ZE���W�a'��F��G��4BL���ٱ�r��q���?Z;�>��f���I�Ѩ�cu�ߴ�tn��C�S�x�[L!�[����4�}_�]��AG�}��fr���k�-U�?�:�O�<����/ǯ���3�4:��A�(��
<���k��X��/�5	��N/�r�f�L��pK�xGu�P�ʎ�U�;�e���t�m�O��#��Z�ɋ�i�=By��=�m��5�h�M�@C{���.�+C4Z�c-�Y���t;:�X{�N�҂�q�� ��l�y��|�R��i*+�|�e�u��r�7�~uA���X%pj��0����}%ΐb�vŶ�6��0�M���I+��f�6�|H�L��(�*֫�0���*�Z�#-{����u�MK=g�FWڪ*�ljl��f(o��=E�C�Uaӷ�kG'6�NZK���ؐ�<�^�����?!��㳷�ȱ,B�r��3+��0S���ǘé��K���j�6�uβ+����z]�vnį�-�͗�� ��az���iл߇��?LqƧ���d�IB�= �<m�ʥ��8�h��.����0���B��U�ti��]��i��5V�+�E�B�0�[ax}�1�E�{j \P���8��~����ޑG%���+�B�}�Df_%�P��g�yl7	�z�5�8ګ�+���)��8���S�=� ��"�k1�1N���W^=�?؎�_�����66���s}
�U�m
�(�5_'�Lg��|��󅰕g����c�B��O����ٟR�l,˄�l�̂Ϡ�3�|7.dgt-�����:!lZS�'[vjg+��N�9��’_ũ��Ck.Xy�����t}��>o�J/ƃW�45��D���ܖ���!{���ZY�K�M�Ŀ��[��ػ}��ig�hX���(:�H��)��I���5K9�������L��]��CSZ���Y�WV�ni�O���F#��%"�y��J�r�`��=vy���h�喨~�����&^[�G-�k:����:;��UR�����$2�����(:�=�������w*u�CH���u�69Wx���h��B��+�S�L���s��a���ϛ�qw9�]_��:�t[;���uX���l���?z�=d�K��j��$9
��(C��Pp�Ա�O���F��������`D�����ٷ�1�WTe�s���k���Mr�
g��;�F/mk���g2,n�t��@(��ֵ%��=�,]��5� �l��f��^�	�xgcn��y��f�}�1_�'Eo3R�w*��O(�_���
����{Q�1W��$�~�,5�b˙[��1�^f�Sh���Mr�m%���:aK5� �lo������%��n��k�*}sa�U%"�
�.��"搜י��
�����"�96�9RQ��G�4b�X
�|�!a��&���1)խMi�M=�!NF�bv�?�%:5/|knl8{�XD�v�L�G��������iXqF�X/��QӆLn�z�rwk�X-N�͎�(�D��,��a���Iq$!Y�!���5d�ǃ�G�/3!-ϛ�%��_���ۀ�&iN���5��ۃ���-B�50���dk�b���I�+�F��;Ȅxi|�K���hڟ8�~�Jo��
f3ճ��r={g�[��;R.|���x���/G�E�˱���KP1B�:9��*���1}�N{��Țו ,z��l�[��bIgn�
R={|p!�d���G�4O�K����)���;XNo�r��s���m���Sm�I|�g�_���?����o�#���I��h��U���+t�r�!�nxX]W�f�|��d=�Z��H�~t�w%�0����Б*]�\�1�ΤÉd2�I_��?v�V�3�fΦS�Ynʖ�hJ6����є�'b�Q�y��Fځ����3����P�7OH�I���������W��vv9��H%�,�`�z�[��!�y/+%�c�U���"m���.kk�4���XK"�"�3�	�G����>^�잖�,7�4~�����^|
�8��`� ?,�{�������
��<��4��eՐ:xL���'���T��W�#���l?A���G���,�l�.:),4=�.�/��&V���4=��5޺��@m�Ϳ\c��0۪�r�&i�ۻ��WQn�8y=�$_�k�y:x��0��IY�.ʂ�Hl��mc;����Wn��qAPTbt}�E.�/w��@xQ�Ym�V+_��zS��@LB��.�J��n�Ka�*r2�,
iy��SzL��+���kL��j�@7��}�^����]	E����� ��e�?�-���t,�Iw�� 7L�[���Ly7���B�5*�r�!�~Ÿ_d����	[��=�`+t�r\��e���~%Ibyp��q\�d4��tmM!���N��5F���,�qe�������S�dT1����)���,��;����
�C賌UB�
Xi�K�+�Ds�Ρ�C;v&��ڋo���z����ZQC�d3���Jkfu}���y�(�����g��)�t'���Iy�3W� p�\٬�YL|^)�Ίܻ{�:W��BMg^��t�C܈�}��QL���g���t����y�;�������wqu_��*��C%���_�<�v6t�/���P��{��Y����\���A�`p��X��ӹ�r�|2?�۟���c�@ݾ��w`�	fft&֌ϸT_V����l�r!��י?���h-�5��	�]TFÄ�i«�s��
Π	��W��;�
��w�H��V�o���&M�ӈ o>�ި�wV�y|������_w1�@����C��9	��d���
o�+țHo�ЊM���cW����$����(�`��W�
�_	⇇�و:L�v
���P���R���u��`�z�����rg+�ă�J~
�L0o����m��%��Қ�wq�����N<���%����%�nԾ�H=�*yј��U�yz'Ž"B�y�\i�知�i�=�2[��P{�	�zc�Qk(���o�ҪV�KΒ6�#�Qq����h�j�@?v{�U���B�]��M7�7v���؊bְcP
�Pi��PZ��tm����H1�f��Y�
�0��^�p�þ<�}1��}f1�Z��B�Wc�_<��܍5h�ݦ�S�$L�x�c`d``�����%��?[�*��=�x�m�GCQ��{�jk�Z��D�n%@ͨA��$!�����>B* P!�04*����j��<����ܱo.�=�\a�:k�6�8��U=�J|�%��ڼ���^�[����^lJ���c��Tƚrn�
���&�݄3�;�%iv3�&�TB5 ��0���F���P��`Eݽ��W*�x�f[-J���H*Sj�M*J��vQ)�S�	#r��&f9$�?��m�w�:�	(���8�p�ޔ�1e�߂:�Դ�rrH�c��x�-��X1�$/�am۶mj��ڶm۶m�ն{��J�r���)ꈺ�5�z�>c��ǥqe���3�R�?&)HR��!5H2�L'��z��'� ���P�A3�=`2���p��;�����T����;�w&X<֍
b��	v�=eox|��g�y?>�/�>~�_��g‹"�(!���b��/VI�ye	YY֓��t�X>V�U&�O�R��S�Z}�jE���ѺhWt,���N�K����G�)z�^����e�I`*��f��l֘�9g�Mb��av��kٗ��K�2�����Ƹ�n�;�θ>����R�Z�V~�_������_��!q(چ.a`X6����G,`�x�c`d``��Ɛ��!3#&�x�}�nPEomD
ˠ�۠�m�mnd�0�d�4'3//�<�/I�J�EM�]p�i$�M�o�q3ܜ��)��V�(��6�(��v�o9�׆&��F��r�Z�l�&ߝ�Hz�Wn�ˣs�X]�˨W�Y����1��컈����p�\�^�V�:�μB���<����t��{!
�I�<�
�Kزv�0��\t|j��6�
}W�U����?���"*�=�W>ʼnr�!Ϊ%|z"cf�<��6�	��;����SUojE��Z`�?!��wʄ���p���l��bdW�x�l��A�m��v���&h�\dw��?����'?�pa�Ͷ�J��l���v�H�.��(���1"�0��8J�1���r�I��"�3�:G�y(���]�7
Q2l��Qc�M��jʴ���qn���,�mɲ���)֬�gC�w�5���7�&�
(��;m-��ms�&f,"��[!<x�LJ��"	)JX1"D��q$I)I��2dɑWCw�1����Q�EJ��ȤJ�:
�4iɡ�'���ӎ>��3aʌ9��X�a����Ȱ'a�	�-lџb`�c.�1���o��Q]RV~�л���}{�{�=�N���Q����t���U��e��O�q��Y|U�/�fu�8��{ζ]ۢk�@noa�r��)���8���S��G��=#�Q��qD/�g�M#���'u/��x���Y���׹Q%�fQ1��8��?��ox�j�v46�v������S(�*/��!}��o\Z�&>q���L
-�r	�R�_}�G��|Z[��@0_0��hi��ǝk��r�� � y­���|�m�H�K��7n�׏�O�����W>���痜�-��`�5��د}~}X⊗'���
� 7sn�'���m��+��j�m����5r� ��[�nv'��=�:�����z1m[��Do�kvͪ���jF5���Y�|�
�8�:�"�Z1���_���PK���\�	�uP!P!build/815fd49f3f94a120685f.woffnu�[���wOFF!P;�GDEFX��5GPOSn�C&7GSUBx�����OS/2O`_�VSTATh;D�g�cmap�_t�ggaspglyf�"�1w�head�66 Whhea�"$Ghmtx��{�floca�]p$�maxpP ��namel@1$Upost������x�
ʃr @�^�۶m۶Q�m۶S�~0���ox�Ox�Vgg��Q�3��~�?����H3̥%6�N��A��	W鎗�W�(�	�QD�Xe2i2�,�C�,�X�R!����4�&Ze;��[���9ĨgBN1#�X�+��u��.�cyʹ�Q��^>�$_x�o|�4��
� x�l��-KEW��5�m۶m۶m۶m�6�g�o��y7sro:k����:��䐀FVg_b�]�>�ֳO��\Z���!Av�)����p�Y,y�Y���ƚ�d�ߜL=��O��ѝYQ�.��̟?�߭x�o�'Ks^�u��}j �T�/�'�cI�����U�I��٦D��*_���-�!�C�fQ�Uөf"F::���Wt/1T�_�O�s|k>�6>쀷^����$����^q{��X�긴��3N�c�8�8�`��u�}{Ė%6�X]�X�t�E�E����9��b�Z0�
IZ6M��o�K?���[دPQ�����u?ǻƳ�O�?8rH���2�V�6��
��W|��^�����K�dzK�Wjƞ�V|��
o8�(�M�3*W�(����i����<��s��o����"?9���ő˜���J��y�o��V&Q�Ӥ��VY��ifQ�`~�bi��e�W�Z�U��b5���ڬ��l����1��*��5k�۳.;�+�;{�	��[p�WƑ�N���Ɖ���ƙ�;���w��\ƕʻ��8��Qy7s+'s;w+�^�S�<¹<Ɠz�4�p��WPl.6k�U��$�σ�'O�3��ϭXkK�2��@�'&�)
v̙`7A���DD�<��g�$o�uD��SS�B�u/wT�vfvew�iO�R��e?��(�V��.�j��Z�J�ro�q��Iw%ht��<��O"yɓH���\!���_g-�I�A��V��V��Z��[
���s��sJ��ֲ$r׹\ٍ�(w�8_\".��+ĕ�mP������C��@��W�6l�!^��cfaec����%�"}QRQ����302qq���y1]x�=�CB`�g��lcVm3�ٶk�q��V�~�y!P`ԉ48<���h��D�Vijf�I��T�2��%��+d��Y�g��N�4|�*��e [�-�	�<!G�~��?z��r��6���)�LR��%I$�o~32n�
��'�«WI8��s����x�c`a�e��������3�7�f�f�c0b�a@�~�~���

���100_f���c�´H)00���x�c`B&0��T��Q�dg�$�0��Y�r�@9&Fn�	@j�
���e��6x�}�3�
����l۶m۶m۶�%�c��֬1k�n��	� ���R�
**UA���Q#G��
Q5�D�h��[�Q�8n&
$�$�'�DJj��W>\�}Ѣ�?����|T��Q/�E��=cd����?����{����c��R>7��||��Ǔ�}<̓#<^%P]_�-��z;w�iW\��{�w M)zI����7P��3@&Cd6T#e7BN�d3\c�6F>��5NA�0QQS3U�MS���R���S�\��W�B�-V�"U,Q�r�,S�J��V�*u����W�:Ml���m��.-l��N����A�usD�twT��ڨ�-:د�=�ۧ�C_��\\��xڝY\[W��	$D!� 	�H�$$r� � AhGu�]eڮ:�|��ݽ>~��[�u׹��|�|�{s��������?��S�0��K$F�����k��Z�$��
�K؍{$?���Q��ϑ��x�ܧp����ː�nG�-�5Z��l
e��َ��g�I$�g$��yr7R�T�a8����pF���`��pSNE`�9i�Lj2��T�(u2� d�iD�	Ζ�g�5]}(;�f���>���@%�+p�\�1�
�^!���>��R��	K�F�I�ŎRN���%BM��rE�Fձ��h���~uӀ�q��P����Y"e+�UMܳ"v�$���U6���Nk:/R��b�5�H��Ed�C0��3i�����Nt:gA���`�8ed���
c&�t:�u=���|ud�޵�M5���呭xz��+�.�T�/k�n�&R�j��J`��'�KxK!��8���*�1)��)%Y�9��x�_�r�;Wm�k��S�C����-7+oA�4G ����@�M��F4�˒��]*�	'�ٿT��O���7�/�P�y��aJ���Ȓ�3"~�)Nr�M%ۏ��1:O��9D��S���HTV|STY&@��֬�q�F�u�UC
�zr���3�7)���:׹�5�T�Rٲt3	�Sc;&g[U��oq�No�m�4|ា�3���}M�����2R�A�F��,q\E���un�h��ߤ;y9tvI`�h-��6�.d�	�i���3ہ�����<��/����H<qϒ��F5n5�+�q�|ռ8]g4>�EWh�ǝ[ɟNV�-�>^��cH�P��Bn��d�D��2䘭���DbF"'W�PD�(E� ���h<�NX��'�Eˆ�Pr�8�pS	fAB�@"r��OƲFV~?1�� +��J���cZ����ngS�%�Ca�*r��QF�����P�-��&Gl.�k�0�D�[	�/YC��
����=�?@:�DF�4D��f�|�Ͻn�i���݂���/��.�=G�+���BV���z�B<Ȉ�+P���x-�a�:�a'_1!SI"�{a�x9�z"�����䨹���dD�]��ZŒ�6�6��Tvi-½���}��������gȳr�q!���ch��u���Gp�l�"kF��p��|�ˀ�)N8s�#���&QM��:�b��g�pOC&��C���X�S��H�Q�פY3��\u�\�u�9^ǽwPK���1Z�s�{1&�R�IUs���%�T*�
Zֿi�X�=�7p_X�`\�q��׻�|zV����^y�I�)�������-�z�w�T���j�IaJ�?�$b[@4����822l��� �#��^�\�Q)�4��'��rvx�nuu�����k�t���EfY6�?�c�AK��M]#*�2
q��ʀ�y<���#�2�Qi�#<�~ފ����uN���[��nޜ��d*�=q��i|Niֈ|�-0�5����:�l�,��+[���@�H8Z�{���	���%-�RW�\���i_�v�L~�4\Y�V�s���S•r�:0�n�T|?���Ku�0�qF4p1N׷�$jD�#3ɗ������<���QZ`pW-[�{4�%����������ߨ����ł��*S]@�s���>�#����G�5!�f��/k� �&��/3���s�&��bNuR�&4k�z6e��^�O��aR�Z�7��Lk�$�yF[}Sw�<\2<^��6�$��_�`��2Gj�43�:�V�m�������Wй�pq0v��~��9�W=����?{-��.�ɰ�ɋ���DC�??�v%>��Ҿ@'
����[F��3���h���[װ�E�G�����؏~�6��5�� �mpC;'��G�	��`*�^O�?����Hyy2���_�4�9:��(�H�ms����<m�ʠu�����:�M�b��ґ��e7�(�e>�I�P�4�Qd:�R�q�,D��H��!�rH��K�H>A�1����KRg�ó���b?��J��5��~p#��5"�����E�!�P���مΠ=y��'�'���#�a�?�b�U�O"�_�B7�ѧ=���R������z����E|LS���S���PEvY��X2��T�����600��gYz?���P�>���~x,
?W�w"7�
e$[k0��쌔�(��kMF���-�0+��YYe�j���`��Z���B��?���jo�t��D��\��)mM���Z��	V�\�1\��h�j!|�\�[q��çAt��z��8(s7e^
M4�A/���Pr�:��S��"Ϥֱ�=�)�:)�'(�>N"m�怠�h�Gx��<�R�d{��(�MݵÍ�h�ܚ�h�<�h�?0f�8Wձ.:�a���iuU����5u���N�bT��|!:��$�qb�����5)��Nx@�������.㋭���A�َcB&�P���)�EFWӓb���	�p��{��b��"���D��w�c���H�e��qL�b��<9>E�c�aP`�=�4u��s���H섅S�U�T�Z=���g�Cî����c��ž��Z�nY�B��}�"9w(8�A�JWE�5��P�؄��R�,�=z��R�Q���mHᗈ��?�7R�>`22����-��ee�N�"�w~�~V��zB?Q:�9$��A>���M~��SB�[�Һt������\������STh�\�R�{Ookw��5�>�І\O�Ť��V��<���\ni���P��s'N��m��{���q�i|m*�U��X<e5�x�~��PQ��;�*�:��}��$J�j�az!�������'����n�*js�׆��tJ��\�ߢ{QB��9��;�R�2�ĺ.�)�����#�U����'i��4��M_t��l�
�{���G�Dښ6]2�eW&�{e'���2I�-���`��Q!'��g��z�z�a�ߠ��y�},6�fXU"�]A!�[gP�>��x4ᆷ�Qb�2�S�K�'ӛ���Y_G���}ߑ����c��}q��PTķmz��F#�C/���IT�O�\ʆ��lp�xC���[���FM@:�j9n$��^��:�;w��"���5���b�O���ZC�w
���F_	3Y�8G�p�\2��/V<w��M��B;��Q���5�!+�#L�$c^J�Y7�6�FT�*:?�:[9��-xZ���D^q)<Rȭ�#o$�@�~~�����B��!@�������bFթ�!�Ÿ�'㎔H�5�)��x�x�p�^4�e7�H3���H���d��y�\��\A�x����~.��P���!�^�j��P�v��0)V�t���h��"yOnN�d,�������c���"��t�
�k��/�h������<���zWըձ���*�F��Yo�˭s����
yQ��s�`tm����s~���N%�R�\$�.�S�����x<}���d?�QL��������X��-���'X]H�l���ݘDoHC�B��+�'CD�q����K:�
U\��\N.�9G=à}��Р[ڣh./irUUz��[:G�]
���鬨��4.R�jr��f�J��R��h�8��r�]���{*	3�ᯔ�!���$���=�xƥ�q��a�QB��O/��*2�YGNi�UVcŷ�'��s�ԩE{�B�=t�>(궯�Gݜn�s��� h"wo�׀���:�88J�S���T�1�9f�Iu�_ZR��M�U9��}�Y�P�kI�����ȹR<C5S<���G��6��h��&v��3L �g�Z�C�Wxb�.UsՄ)5b���֌0�X}���D�]���~�Xڑ���⽗��</7��M�Ue�w�a;:C�L�e�I���Y��5�*�-�U����z��p�t�?�C"�b<��X�/��X��Hތ.f�G�X��]�H��Q{�$�!���A��JÏ��C�&@�uv�������.yH�8�ip��gqV�-չ��G��=�0��U��J�q���8�+O��H�W��n�cz<�N�讍�5$��U4s��D�&���6��
U�Z��0{M�cO匿�%Ԉ� ��.�F��>*޽~N�!o$�CƘH12����g�OV?�~�=!���[���F|��_5}�	�}_��Z����HG>�i�g�D�
�CW:f��¨�W�#�u�	U�3��0�abr7m��ɕN�
a?��������zE�_��כ�Vlg�ݴr;w�
�`�	?�\�f`t����YG�e� H�R�d��K&G���֭�8 ��ɏ��E��/��,�s�:q�#�j�d|�"�R��T:�U�l̎��q�#�*��,�l.�
��~�P���`"��+�|�>X�֖��X�f���P��=5�"���Q�5-&�Ũ�sp]��y
�z17h;�^J�T��M��h�9-9
KI~�Zg����p�h5���}~E��Y��u��fvYP�jU����˟�!I���&#�F��;x�ܕn��`�v3&�	%{�֠@q�Pj��S��J�L/+�-hI�CT��<�DB�=��4+R~��M�s�B�:y_<��܍5��ݦ�S�"c�x�c`d``�����%��?S�d����v��fx�b:h[."��0�ww)�[��݆�;�X��Y(x��4ܝ�rf�N���Hs�Z�	RHW}�AU�t�R�H'�Jf�H�}�l�w%������r8�NH�"�D@��>Di*�]�̶P�E^G�=��6��h�1�p�L�2�PA\I1
�+"
�2���T�Q��?`A�W~�5a
�����&�c�����-�2�I�|D�C��_@!����H&�$�$�lRN
�ѓ,���;e�F��Q��E�kx�-��P�k�e۶m۶�!۶5��8d۶�o��J��1hz�
�:xރ��°<�G��p5���W(/*�����-�֡]�:�Ρ[�,n���x"����=����w$#iA��d-�I��#SO���t9�L_��0�*�:���v�}���^�o,���x1^���� >���G�i~M=�P1AL��yq[��dO9TN��U^UBUV��vuA�k�3�|������>�/���b�)gj����YeΙ[晉��Fl����}��~s�]~W�us�7ٝu7�婏����o�1~���W���o�w�w�!c�ʇ�oX��b�"<�v8]�x�c`d``���Ɛ��!#%d�x�}��ME?���Dqw����^woW`dfb^J�r���?�I2�]u��o��k,i���Fi��I�i�ӄ~�\�}��A��(�ͨ�k�#K��s3k��҉��+ʔg�tI�$v("(̎Q,�W*�(xw�5"?����6��ӯ��6�L���Y��ǧM�=��k��~�C�-���I�hjO�Ԃ):�סjw�qQݪ�
(I��B��1|:Ca{�5G�_.�5ձ�h�~�0q_�/�r�
�^4B�_^T����n���I2�����UXx�l��A�m�m+{�i�8Ac� {����?��������zld�/~l���-��H�6��0�v�m{�#j?�8H�!��p�QǸ"�N:E�ig�9���]�]2@��!���5f��	��LS5ùYj�3Ϧ��,�ͷX�ʎ5e�eW\u�}�\w� x@B(�(�l�W��a�l���xn����~	)JX1"D��q$I)I��2dɑWCw�1����Q�EJ��ȤJ�:
�4iɡ�'���ӎ>��3aʌ9��X�a����Ȱ'a�	�-lџb`�c.�1���o��Q]RV~�л���}{�{�=�N���Q����t���U��e��O�q��Y|U�/�fu�8��{ζ]ۢk�@noa�r��)���8���S��G��=#�Q��qD/�g�M#���'u/��x���Y���׹Q%�fQ1��8��?��ox�j�v46�v������S(�*/��!}��o\Z�&>q���L
-�r	�R�_}�G��|Z[��@0_0��hi��ǝk��r�� � y­���|�m�H�K��7n�׏�O�����W>���痜�-��`�5��د}~}X⊗'���
� 7sn�'���m��+��j�m����5r� ��[�nv'��=�:�����z1m[��Do�kvͪ���jF5���Y�|�
�8�:�"�Z1���_�S��PK���\̉�PP.P. build/0c658d1bd687fc3b8ae1.woff2nu�[���wOF2.Pb`-�� ��`?STATD�
�x�S�6$�  �l�NRUGh���M��@n'J"h�QTQd�M*�fj�@D%�*UIij�(+��Z[�	9Z5�S�s�U�b
�(�m�'/{^:�]��#�R�ߊI�%?>A�Ԣ�z
ÍaGh�\��Ơ���C\��.!�wkx£5�x~[�s�%�JV/h�"�� Vc'�
>ݬ�]�mlE�1Y��M��N������ �;�;���c�6�m�&i���*���g�S�x7�O%3�z~���G(H)��Is
/j-���^�p�v[�C������e��v�ti�v��9R� �̗4Jd�/{�[�˓ڄ�BV��5����J5x#�O;�����FKZ�Pƅ�� v\����4i���ȃs#�3�j�Ɏ������4�}�7Y�v�CQ�.%��ﭤ}�[��y%�N�H:�����[!&)h;U���2E��K[_����J���Mϼ�QW�\��<�?�Uۅ�V��J���u�M�<�}BF�I�(�U�ʠ"U��ǗH	���~I�pXW蕱l7ec�s-G�7�Rq��
Ox�6���s����OW������Ȃ��Ž�a2�Xr�pyB��!�!b��h��xI���bU�:��&���b<�'�W^Attp���!XB��o��?X��d�!��2��5J0BL��R���<	v��-�`�����`�04&������{P��Bb2,�0 �z��^�����@nV���{�,u�Yʰ�+����>s0�j&c @��ߔ��|Ӈ^���n�م:j�0x/��mD���H�lrcQ����1�<�ɆL�H�m���F%����F����\L���0���w^x������iu'���=�C���^���1��B\�7z�L�ǻ�P���&����v��Ѕ�k#Ԟ�`�k�M�8%����T�V�5��mg���u՛\㴇S�F
=��obި�8��y|i��Ƨ�5�gw�79.�9i]�ZH������7��;�@/ӻ��
S8���	�D�J>��#��!'k����6�N�V�.f|�MW�TO��A�s
��0�@�p�z�g�3������{���������_7������,��;� Ȕ���H1쥾���VB�\�r>�1|`�	�&�R;�H��ħ)�TU�R k��J�b��DҚH���Dr5�t��t�t�[�xڞ�*��Q�D��W�%y�T�e���`��Kk�:�eD����3sa���78}��J��z֝�u���ޓ��'�߭�>i�xB,Xr���H|�F�HQ�����s�]�b���e.w�+]#����w��";\���

��|\��qME�p#n�͸KZ�} �0�L�!Aqx"�L�bY�:#�6,�9\_�.��FJ
�J�1�-{��h|�d����D���U�b�"-����Û�����oĉNӹg2#(O$�)T,k+��.�6�.�/�PGR#%�R���3Me�b�s#(O$�)T��bs�<�@�ۯ�`4�]�N:FP�H"S�X֒�f��FL�HI�T�5���FṢ����;~�A�`��$2��e�Wg�I,v8��uq$5RR(Uj���7xeD@ """�c�_�cAf��vm�@H�$I�tΑ$I:�6+�*��|v����M|>��_��U����Id
��OUUU�]v�~H��Ol��{��ÿ͆@0���D�B�Z����3���������Hj��P�Ԛ���`4�Le{����/�W��V?|C�`��$2��1Yl����%�|��)s띟�A=�h�<8<����/M<:<��8Y�n�)�R�)�k�b�N�����eъ�E�"r����(����/����_�T5����er��J^35��%�?ʯ�6���ٷ@�qe�`A���),�a�kĘ�	l�*o�b�������tj�su���LO�P<��Ƨ�L2�b�A��q�b����`E}��������vH���g{���X�p�q��`&qf7-f�|aHgA��\bC��K��
Ў�j̲B�j�4��8	�u���:Xr�B�`	��L�e�4|������pC�2r�d$*l$ cxHӑ\4%�a`R�h12�S˝%�]P�	�e1��r�*�_+<t����/�z0��x���6��D'�*Z�$}���$Ԛ�@�5A&ȸm0����&B�\%�tRݽ��8v�|�M��
���+{�g�$�F�v��#\		E���K��xf<K�,�  ��JM�C�	�3c����X��}ٓ=��>��|��_��՚WeY���<y��6 `�����&�c��y�q���=t�%����s�p�Q�}�M�&6c,Y����[��>S�w0p�N�u��bHE�f��$S�,s**���j�s3�*nN�ǺⅫ~:���}�^z�o�s�/OC��~�k_0�㑓���ݶ�N�����АQѱ�3aʌ=���q�̅W���'$�G�K�0�BD.R�$	��Ȑ)K�ʔ�$��B�F�Q�����pS�k�끠i0d	��`���<�!��ZM�.��@�28�Y~yI9�g���Z�ަS+D�0��I�a#i��~Qic��rB~���L�E�a��E�M�;r"5�!��/�0�I2��tXv�;�S�>��Ŗ�h<Bu���a�������\8�آ�c�x!I���8�W�Z�n^�?bx4u��fEډ�˘�
�YbDԺ�
�Q��l'I�Ⱦ�v�z��n�Wc�:l_�=�6���j�7�������nEP���Υq<�Rv�3ۇ�l}�ؑդ��)��XKt5)���Q0.Ѐ&� "۠��-C�%�,
���>@*��x�<�i�G�d�Ah��w1�3�Z�h���i�=�'�'d��#j������-�πk������C�'Id����:k�X�$n������g�<6V@�)RX������$�)̖`M�	~�;�Ói���fސ�;�v��bZ�,n�Pu �Yd��yf��np�;�e��1K�,���4s��u��q���[ˍ,�!{����̇'I�r�����M��q*�3���
ُ�m�y2*�|.����E-���\:�ie;`��
y����CC��m�Bx�(~w����H3q'��@����"�猨h�A:j���O`�3�j�$�,8ďEU��D�����ϥfG=�ŋԍ�(?˦�!���P�*1��8w��|��ASh*DW�1���}>��b�EX9��h<+}�@���qի�#��iYՉ��4�!s��{n�c5#*~-�""��}�$YN���cٕ�q�`y�%� %���v���ȑ����������玅�>�Ǻ�ߋ�ݝ���
~�%(t�>V5E?������~���F�	�(�ͭ�_�W{?L�
^|���*j�@��m+��?#�?E�NE*d�h<����|�=��ɂ�IV�S���n�E�uToӧ���!�
�l7�����p��ܧ�0E���9���#XL~��٨��F���E�B?z�$�W[?a����I`� ��kYՄJ�lX�b
�O<��sk�?9$&��R:K����䧸�h
�Y�S�Rc�o�%I{��U�l`҂<�XML�p�ڎ��U�u��CS3��F�j��	�2�RȖi`����e��O8^�u���PԠЧ.6�m*4��h���S�̣��#_�����xJao͚��(����&(�(R���5*���_��S�%���SFJ,�Bxwa�=-�!UJ'i�P��3�adY��C�P{Q�����d0�ǚZ��|Oɺ�[ѷ�y^
�#&[d��Y�(c�T� In��C�`�y
�L��}'�sAvt !�My���{�-��O~/kS)4)��c	3��r�ߑ�tӓR��RQr5e���f^�k��\�.���/Q��P��A~p�!av ���䀞�Y�2��$�a�!���U���$5&Ϭ��j�d�T�)6]SA��Xw-��fͼ��g��-٣]92��~%��vy�E��'�W.��RNuP�R!�}�����NE�l���]��0ӝ�(��I�$z���n��ї��b�R�USn�i��pJߋ�g�Z������ׂ�%#g?�ݤ��5�Ü���nC �.� s9(�7#�4���L�,�����_Α*��uE�`�_�R��y]�	n�U[����操�t�G<�k��:n3G��IM.��]�<Ҳ�O�ޠ������o�1�����N?D
^����lj�	K�Xd�� :���5���o:�c0�������4@gt߹�h��}�1U���:B��~��3�� ���#�K�Tyv��ʓ�:[2�]�'�\�"4����T%��R��2�/���H/�$��k���N.
�!Н��异��2�h��_��
�o�M4Y,��VG~5�GP�r)=b��7�O!*8|:c,�)ʲW��#��3�X:�|2���H�p_�_��`�����Nߝ�%^�>�H4�����X80Ȣ���o�Pk�ؤ��d�@v��Lu��e�(�0�4�.m�E���.����\�_�~�]T{��}t�OKV��v��|H86:�˼>�����=䴂 ����qSIB�G%���mކvXQ����4H�t�k��q[;{�0Fb�͙SCɆ=�$`o�����ǁ��f��F�ٮI�2����}:U|wvN�N�݄͋h��r�D��ͻ����[I_jR�f0���^*��D�K�9�U�m����0�le�7A��]:��u 5��6ϲ� 6��4�w�Kd���+_fl+�1��Y�)����Qc;�K�m�Q��A~�q��|_b���ګW���1m���˚W��H��X	�na�|�u��6֡Qc�%^����n_�R��/X;��g��'����j�u�Wm�e�Bb��i��kh�����Ȓ��K*=���ˣXփ��A��F��X���޻L&A�,d;U;8��g;0;��>>�΋֡��SR^NN��zl %���]Ⱦ�������=�-GH�<,��|��Ռ��Ї������c]m���;�>iz���uK[�C���G[JZ�jv �Vt=ٕ�BPȪ�h�O(h�Eu�r-չs��^n{���U�����ϰnۣ:T������������c�[{�x	�{����Oa=ΉW�jY����g����f�W����
�k��G�V�c9\G�!ɲz3AO:+�� �HF[�2ԟ�BN��&^g(iaY�l
-z�		л�a	ֱ���`�Z�uT��m���u��b�+�6n��Z�
��5>ֹؗ��f��w��D��H��
�/�6<����3��ґ\{�ZG�~�+���dH�M����;Ե�
TS�;&/�u{����*`�8�ѹ��LC��i��z�ܝU")��K��P�c2�j\�Ϸw_��$����
9�n�r��A��Oɵ����r��;<�����m���X�xD�X���>�Ɯ֘���1&���dS+ޓ�:�|����	-�
�/�J=�RO^��;�S����J�/u��<��ؕ��"���~f�¥��8$K��֩L&�^T��%�f�R�H�ez��z2�H�f3�%}@��]U�x�1��(ڊ���!6_i�b؝P��tu�Q���|bn?fS-���E�a�K�[9)�@%.�]��Xj�A(�Faf]��JLH�n'Kü#uB��|��8�1�9�\��O��Ff��8gq��2�[�+%EZ���v<�zp�`�A�#��^j%�^����Ϭ�
M@i��y�r�&��aE�67mn�Qf0�P��j��N�r�!8����ۥ4����+���,"S�ʲ��UYTF>�La��W��PwbI't���E}���\��3�C��p�������T�u��	���@%���.�H��4]�E����ڢ�9����˗U�d�c���V��Nhp�3����?\V�A��0
�T��
�B�`"����&����d3'S2�R��d��_�_���@�"�(�R�Vea����XQ[ٛ�o��&����o�n>:޻)W��I$��F��`W�ͣ8o��e��6�{8�+��{Ͽ�d�`�*�En�)���r_'H�]z������m,�"'����㼷K�4C�Te��$t��Ka7��� ��	Ȗ��P�0b�|=Qpf:�o��L��>�����Z��������U�\�y�.U4.*��$FsH��&��(��\��K��]�eZ�f����	l�ni���vHC9f��"T��4B�m�(�n�͚]we��D���"�3�'ҷB2�M)HdF��f�Le #b�Ɲ�V�*�H�JR��Sh{ޕ��A�ET����J�ּ[���,�LM��* ��t�-��\m� �!<t7�-�y|�:
����'XDD����gƿ��<�)�0���*z�� �Q���z4w!T�X��,[�CZ�s�����շ�Ћ����+���b�zg��[ّ�o����)�� S���L�L�m�#����B�����T���G�k!�<���s�UV�^#�:�J��$�[��}x(;/-��檜<q[i�x��.o�V�b5���V����*���hU����2G��Ƥؓ�����#zSS�4��m��NW�hS#E��N��q�*+k:��%nv��x��m�r���)O|��2����L��̞C]��7�yɯ�S���Mn���#��zD����zD,�;�{H���Bn��@�(����@�%5M���p}�g��z�2��pC���:�3�����K,ժ�����H[�L��ܶ�o\�p��t|9�9�x
��P̴i3���B��-��j�YŮ�GR�or��A����o�s���k
����:���m��J_Rw��Ω4�4t�ͥ���U�����֝I����o#ʫժ�V+��T���*�����f1(�"
96�3���+񑡜n�~���wru���kv;+�TNw�NY�w�V�)���64��H�� v[ǒ�zEqpf��[�:eI�)��Cf5K�9�[WYъb2�P��|�U�bu��U�u��NM״u�b�4��ר�o$G��G㑘,������x�r_�?6�G-���,�����̦}s��O�R��&�u��ޯ��2*̲�y��T"���`N��ދq�[�p���x����bT@W�qkfG�Eo��o'Y!�'�m�?אr�y�#��i<rK1E�D��Jdʍ�+�J'��-�	�mz�/I�W��@NJӯ/>>ח-��׏�ӥ`ɺ�/Ɍ���I�-��8�qy+�Z��R�L���R_��+z#��>;�lok.b%Ά���<�>�f
´m>ci�e�vq��*����W���;�(��0b�f��^O:@����Z8mg���N69Ym%=85�[e���]&k�`�cD��
�<���"1�@��d�1tjI�q�5��&�*��

%�g"�;�I���z���ڼ��#~:>��u�܈�n���N�����ާ����_�VM�[`�4w6���R'��+��Ws7�����ޗE2�mj�2��kߪ�
E�^b~ ��:�d��sA������v�G{Y�*�K�D���߹!ʕn) y��0'�םYk�Z�����7ipz�b�߅/f����Q�~ggt�r
T��y��k]��=Dx�
Y�g�g�!��Z�I?����T��l/�U�e�`��rSN��U�'�����7��\bX1���<�
Pr+f�8�9�殯��,&R��?s�ȼl�A�ä���)�h�G��A��X�٘t��m{7���Բ���'/+�����|z�QH���
�Cq�y1��g9�g�zr��[�-C{7����VfZ��
�aV�]�I+C>��N�$� �폫�
y��g�����k�ձ��o|G���A0A�$�Y�Cy�6�L��{�u�`Q�Ge�����#Vs����|?�{K�fI���^Lyq鋍�/�zJSyj#(��;�b�2�����/���˭���Q�av�#zf��Ǭ�
[�Ȳ�Ü�1I��t�$�A�4�(�.��mYͮ�~��;�{L�.f����n����YC���w3u���
Q7�ld[�A���.�`a��vc�]�)ѻz!��ĔL���Dx�.)D���U-��8wk��V�yZٴ咼��m�[x��Fu�G �:E�doPk���}�w$5��jt
������vn�e@��4�d�,�,Vߪ��r��K
ͫ����Sx�L%{�d&�2T��Ksn����Ɩ_i�я
E�7��s�$<�j_g@��/r��n.��y����g�V{�	��i7��m��1eUT��l��“g��^ƨk�o/V+u���?,�)O�#�3�Z��x^}��@t�S�oʛ�h��\�W�V��F+�5L�Om��a��B�[���'�Y5���f8a�xX�9Y�����kJ|x��8x��ͻw���V�6KW��q�lQ4��H�h<;[�I%��2��Q����Xܡ�vd�ԦH���ؐ�r7<;��?D��Gη^R�Ɔ	J����q��
+
W��]�%�=�ϲs ��}�������4�q{�5P����X��	ޟ�a���.�{7��>����K�\}����2o�ګ�c�Lͫ�hywh�X��-!'��Q�*���s,J�G�j�O�ٴT�i�����)������v�_�@�t�\�+��z�O��B���ݽfO�lry<6@����@Dz�ۙ�^�]�WW%�0�й1���(j%'�����Q��X
&y���,�w<�c��j��c�y𴥲Aa*(5�N�r��n�i)o�oڜ�b��q�{;�o��|���A���1^��W?��}zm׮�v]{u�l��8��bt
�4��E>}".�{G���x�-���U)���=�I�x�`�-��Ĕ�S��ъN�rd+;X���K�����F��g�\d��H�>p���{�_>��Ԣ-�]v|ľ<�X���s`�jޡ�̣��m�B�SI�}�?/4A���"�Q0R�;a{��7G�́�7	�����B�K�1?�HS�<t_R:L��5���:N�9y�o�b����X�=W�ţ��Tv�X�@J�ŷDM���X��H��X����� ��wLmߩT��d9�/��2�r�����L���J�-��]S�;
�<��tLF�/켹��U��[��~�
���\MI���^IMy�n��hvO��qz�m���W�-Z7��e��oZni4dAN�m�.��p1���|pI*��<��|W�&���]��9�k��
;8��˲u��O�S�ɘi�����~����8�_Y�,��wr��W�,���\��Z��� `q�ᐊC��KQ�^�>{3��7�hƩ�|��~t6�1͘�i2�88u�~�p������Æ���KO��:�؟���݊:�f�~71n��RZ������E���8l�Lo�3��شu�z�g�ųX�>}����~���<np	��Y,��Y*�S]i��J�b�å�Xo��K|Z�TEcw����FS1%[�D˵�r���I���M|J}�>m]������n��KY_:ې9۔����j�؞x����{I˕EO+7e��QM��4�+V��hX<��e���
ǚS�DwE�v�0��j�{P�-4����<�z{�32\�h�L�L��4H��_��S��_��T�FZ�%�>Τ�_�V���	��{	zۨSjK�q��������:�@�B���G5y�]�@��~���fo[����$�Gh����K��ߍy�Ԗ�8��ƫ�lmU����B�H�P����d�οP;���5���_��rR��A���,��2=bڱ�Jq�;c��؅�v���Q���C@@��S�6~�u�����{�r	S��Nh)�*�8�!�o$p�/�9���'~����#0*���k�)ʎ�	������@)es���ޥ��Eꌏ�#Hܤ󟛐h36͚�b|�1�+���E=���<��m�U�-�d$���ux��K��v��͛�{�'[��ȹ�d�f�[�?�1��N�z'��4gg44mgߩɿ��P�Z�K����n�?��)?�|�!�++`(0��FW΂k�s�OvY|��vIE��˵��N19Q��a��?e6����)��x�R`=����6
ޑ�R6�¸�����O#�c����]�Ww	�(v�?!s������
emSS���6��2�:r���x���o�FAM@+�g��0��0L��=���X��
�6"�0��;禂=�j)�d�����?MP��/:���<�c��A�+<c%�Al�f��0)��
��>���JN����'�!���m�I�	S3���F�T`'�yf�D>
U�4^� )H!B�ߓ��5#��a5H2!�i=�=�K,o���\��M�O�rH��ܼ+�����6C�y�^�j40�di]ad������|�fJB����(F�ͯ�ܽ���D�H�ApL
q0�0�:����i��	����!�J���� 0�1X֑oG���KW1oJ�J�j��+ƁZ�e;��Pp���F^��x��A�@����;
7�>�nOx�J4��K�I��ԉ"�H�[������pd!�_��C����f$���1�X�I=N���p2����R�	`7€Ũ)ރDL0N�PE�^���5S��fm��FM$|��r�k:ֈ����U���)b�CYӳ��Eҽ�s��k
�l
��U�B|��2T����[@0fqQ���=�A"?��,�O�hA���}���#�4C�����/��فb����uUjEʽ��y�rS[�=�*5NW�<���
�H��S�NJJ
3�]��򀁩{������6��*w��A��pU��g�:u���H^����7q}�n���]Kr��w~�����j�I%���"k:\;�}�͢�P��E��\��'�ii_i4k		��B�H��Wv�tc�3�X[LpD�2e�6G�\M6�$y�(�M�"ld�t�j��o�'TDCt�@L�Bld���I��e�E�Ye�M��e�9�7^N9���t�<�y0el��ló�E��Q�	�g#�8�L,�J�s�eǝЪ�{�q���f�g���)��t�Q�e���f�_N"p9Z��v���'A�	�6*qEZ��{��b���
�����/\���k�[���g�'R��(��	�?�pG���u����]%i�����Ր�uW6�*��MgoD��qR��R)�����h�
!���+�"TR֑�u)TK� �G,�"И@ ��`�&�U!ީ�r����"O�:�cT�~'e�LD�g�_���� ��a���j_��3�e7�U-�F:��Hl�F0
�
���M)�\�P�'.�jT�0���p����i�_ga�Id��!,PK���\mҬ�pp build/promotion-widget.asset.phpnu�[���<?php return array('dependencies' => array('wp-dom-ready', 'wp-element'), 'version' => '6c05e450e9d92239760e');
PK���\-7�I�=�=build/f2b6d272f68d05e1513a.woffnu�[���wOFF=�cDGDEFXs�}�GPOS�:
�N��GSUB��a�E�OS/2	�Q``A�KSTAT	�;D�g�cmap
8��ho
-gasp�glyf�)3@���d\head5,66 Whhea5d#$�hmtx5�o Y&loca7�Ob>maxp9� �name:@1$Upost;,�N��x�́����*	 $H�$�P��`O�G�S̆�~�w8��P��"�9s��f�[v��GN���Uo��S_���W�5� #�҂ʂ�&4���k��)�xq?�]$x�d��#E�{��xֶm۶m�L�m۶�·m۶m��[�֛S���J��b�29z�L�+�홧�`��p��U��i�[�{�s�
jnZ#"I2����*F1`IG�c�'��TMj&���w����;����Q���>W~X{U��M
��������AC��W�� �b�_�i?۷��}���j�ۓ���k�ۍ��ʕv�8�NNm��bO�k���fobjx�	��6�Z����ښ�շ�ryP�8��������y�E�\��-0n�{�_e���<ӟ��F�%�(&��7��g��y��<>�1�[���EX�G�;�8(���}ǚ������g�l+�h�c��19֯��ԑ�[�f�%���|A����3�o����=zl�D�?�b�Z;0�ó��_��x!������>1�+����C:��\��S
�(����h�I3�Ӑ��5}Dg�1�.�b��$1��g1k�J��'���%������:>�����Js��R��U�#|Z���S�̖'��B�ΤX�@R��<LY�
��g�/�?����_�]n3�s��mf�m��R��B��r-[Ўb�҇j�?��h0U4a�h�"�ь��̞�G�tNo���S�}�Q���c)k�´�^$�-2��~귊��E��"�1��HyJ�<�s�&;e�ݓ�����[g�[��%�KY��w��7H��7H1�о`i�����̷��333��S��������Bػ��=k��@��6o���/���R�Z4�	-�@g�Ʒ�w�HF1��,`1KY�rV��U�f
kYGe|�}ؗ�؟˹�Gy�(e�XY��U*��
�����N�Z�2��n-�.�68q�rQ�q��4�3��pkqww�����J�����<If�	�,��Žpq��.v����c?�4ܜ	)�dȒ#O�e*T�Q��
MZ�]�ХG�CFLx̔9m�0��,����=I�M��;�ɛ��l�
��΄v����^o��Ѱ3���Kg���O0u�ݎ����S!E�Yr�)P�L�*5�4��B�m�;t��g��3eN�3̳�"K,��Da�u6�d+� ����"M�,9�(Q�B�u�t�ңπ!#�X�ˬ���\v$�z�WC�4���S�D�
Uj�i�V��h�ޡK�>����)sڜa�Yb��$	����&[n�\���R�nN^)�dȒ#O�e*T�Q�aUmҢ�z�.=�2b�c��is�yXd�e�8��=�艐"M�,9�(Q�B�u��I������3`Ȉ	��2���Y`�%�Yq�Ye�
6�r�;�?��oW�*�l���z|��G�#���H�?���G�#���H����?���G�#���H��?�?�?�?�?�?�?�?�:�y���gC������_�_�<V+����c��Xy�<V+����c��ֿXy�<V+����c���/��﯎���ێd;��|��KH�&C�y
�(S�J�:�y��o�I���:t��g��3eN�3̳�"K,��5WYg�M��~A8�|NO>
���}��:�K�D>�vH�&C�y
�(S�J�:m:t��g��S�o�·x�m��^AFϝ�fm��m۶ݠ�֍Y7N6�ո�k���K���Ù�s�3罝ƍ=q&����L��D��Ց�#������=�0l~G�O�8�#�g6��3�O�H���`8b�I���Ek�H
��B5\�� G�� /KjŊM[��r�M\_�}�
�nܲb#�ţ�~q��Y\+.߼k�vn�
f�l�T�(�y1)��b@l�)^�&CVqJ��=��v�'�`�'�Q�Kz\�T���F�>�(������|pt'N@s6�+9���mP���;�Wl<�t�r�K\�bi
ګ�!���mq�c>a�f�3]�c��վ30П@����oݕHIԜ�߳~Қ�s�rF�a,��h�	)3��͗oZ�D�RGg��O[�+�y���'똦^�2W1���O_d�x�c`a�e��������3�7�f�f�c0b�a@
�@*��sehd�Ue������2�=��d���=@J�����x�c`B&0��T��Q�dg�$�0��Y�r�@9&Fn�	@j�
���e��6x�m��k���m�w϶m�ȶ�4�v��m۶m��v�Eq��C�Xu�+�B>��Mw+��+������x�����rD��BQ2z2z7�<�H&:&:'�%s޺��"/{Wo#��_\�=��w�y���p+��n>{��o\�qr�H��}w��=w��֮��J�*�s��5���;���Vm��֛f�s6�`��:d��F�n��N8渉6
�I/��r�)��
(��H�c����e�x�[���,6�g���>���|�G?��/����QTq�UTIeUUS[u���B;-r����%�U#���-���IC
1gm69�6Dck2�`���B)��V�e�U6��W>�$=�qOxƓ�x�^��׽�yU|���G>�/��[��_~�?|���J(��R�*���j���
xV9+���r+,�
$����xڵ{`U��{3�F�˲�,iT�.Y�-�j�%˽;�C�S%�����6j�zG;��Pv��r�r}{�Ȳ����Ѹ$��������7ψB��9j݂h� dֹt^�ε���
��Ѓ��r�BT�p��:���8e`�.�.>z���Ƹ'.�3�b�R�s�Q�o5�1�9�a�`�[X�}�_�k�W�o������@���<o����l����y+�%��h�7���o.f忬�1�.ʅ����a%�r���.�w�����:>������=�
x#L�R�efS#3r"�2��--��!	�O%3ٌ�e����U���6�;��v�s��T>4r��˜TV��D��+���:R�u��Lx�7NR�N=�X��n�/[�	*3�X��b$--�#�5�)�i��E������'����X$�{:+W�w��'�U���ʅ�wO\���Nw:����乥�˪��pGv&�x|Q_������;����	p워�4��V�WkqX���~Q�����=����i[[L&qV押7�f36�:̝D	�&>�P ��4QA���u�
�zU���_ѹ8�-SEwV���o<�{�ʅ�X����C�0��S�J�2dW�c
�����(fүn%�칮�jg��.�yG��'�Ĺ*��������fB�%��x���W�xX%�]����Ms��_�GW�W�o�ck�W�o����󼉞@���H��"Z�'�Y����Q��`��	��Mf3Y��޷�c}je킏Lv�3�5��`a�\�`l�߫~X�)ŭ��q�8����;���5<q^y��j./���S�e�}Yv)�?�@h�M⛓3f2�E�8�2�,��
�xsZ�1ts�=@|XS�Z^fA�^N�_E�*��n�r�Q���ü�Y�Bܾtg��O�yƀ�A��n0�l��6�~�	@K[����;?'� ���Zބ;���I�6Po��R������P��|��U�/�u�}�=��)Y���䉶:M>3;ч��L]�Yk�Af���w����AA�w��������d�ww�[�/�A��q?�w5�po��?�qbAHv78N���f;�_�׀��0
��?0����om�y��;����Q|��?�\�F �a5��6�����G�aLf���O�{�/W��czQ(	��	v�#p1�.[�9(FM���bvK$�`��K�j���m=4F>�i��y�:�kd��G�(3ۏL�}lCv�
���m�_=3}U�y�5��c�fУ+�+������@K?s�7�����$�n쨃�!K2ϐ�����
���g�ښ�A#�*�1t���JM����w����g����=���sd�j`�,~�@������>¾Uo��
u�Xu��C�^)�!b(i/i�4ܢ����^�x^(k�m^(��CxF�f _��=	�UW�v�\�ȫ{n](Gm�e�	a�xMn���&�
]rk�2�iku�C�Uʎ��u�:g�홠#y�YwI�Dj�ZI
�3�ő��&�/G�
`�JԲU(���1��<�%�P�,<Б���fd������ξ�,�c����(̖F��Q�!5jE�-�2c��'L�5�R��I��.>`���_1�
��_ܵ�Tޙ����7@&�?x�nE�S���b3㇛?	��g͙�{�l�/�ʩM�E�x]i�NzO�wY��sRId�K�{�{���Bd�d�G��̈�N�}��F��Zs��~Fz$������J�Sǻ�{7Y1�l�~����`�F����:�H=�M��$�d)>�_��GM�M���A�[��|�[4-+���9�`G�S�C��͝�)�x1:MuL��CW������P��u�[e:EG��5��͉���FM�?Rޞ�����$w&<�`�,���?TRz�Ϧ���.�N(�5NP�&�\�zpm��wN�ɽ	����9�ٽ�(�V��V�wh?�v����4~��9�+��iE������F��~x���Ϝ�Mt��>z� 䢉�?2>k�;������D�_/(�#]Yu����V�n���B?�W�]����������4��a��?�g���wr/>�x�u��q��-��c��p�¸��Q' �4�nN�$���#o-b��>��q��
p��c_����>1��bM�b���2p�9�K��_Q�Qα����U���hЋP�E�M���ô��&
��U.y����b�m�80j&f~HX0�tG36���b��ߵ��?o.i��8eo���2�LvT�
�q��G���Z�?/�%�흫�W�o@g�Z�~��X����[|�����F����E�t
��ė�dR)�G3~x!€E�qo�K?�%◲���%Eܓd�<�a�Ry���)�8��,��9����M�T�!=��b�yK�R_�J��:ce�p߀TO�Ǣ��$�.w(g�����e]ٌ�-�aqb\=<����L��c�:�Sߟ�Q_8�8Z��D�6�6�`F�f>�!\	�?�B�c���*���LD�r�=�r�I��W�Z+h6\O�� d7�}˺�&6⯯�,¨�j)��$}�y/!�&7�3��O\2��ʩ�5}��lN&��%Rs���ae��᱃}Μ��%�3S�ΰ�4�xQGp�Yս�՚��5%�'Оz:z{��Us]R��]Is��BNXW �w_W���u�8��
�K��,�e�����Z��J���E�ϒ����[˻��o튨Tc�g[LZƬ�N�%��q�hk1�:=�RMH��d2k9���ˬe��#C�u�!�a�Gc�H��׵ckG�
vv��\��f���l�s"Jh�C�R��:�̇�Ӗ�\W�¦�`���{%�������?��bp����E��WI�_����x���y��V��p�<{W�/�@߸���x�w��p��27�f���CdH�M�
.(���!S��mi�y�6�mu��@~lT���b��7I�"m��(��2M]
�R�+�Vp� �3s�gc)�W.x�.�J��T�&�J5t^�v��#�Ƀ�Ȩ�,��|$>��,�blc
�Q��-�iqV��\m�.?����!O��b�Lz��g�����_�3)�2M�48�H�3޻q��DHՒ�mP�����4�/�/�~���Q��Y����/�)^��L�>�\���&��IN�쏧�V��o�L��q�W��3�|����|i�������:���w飄�w�Z�M���7Ah�����f�E�F����
L��n�$�YIXc���5'7��M�*��S����ƅ�``e���^�;B&s@ae`�	0���ۻx��K�)+(`��/r�~b��Ls������AR�7[�N
��€����fתz��g��bI׃A-��w=8e�1P�.��քV��Ɋ�)w��Sy�>���ٶ�6��ê�!����V���x+�#��E��(>Ys���L�[���:�_7��N>+�$d�DM�D�'jW#ٻU�hhOL��8T�U+'�h�K$gsr�}@9p��r�:������@�D4�E�H�D���8X�Wz���F�6˛�(���k_G���:[='gZ��eR���	����L����v7���kx������t��5�;���gL�f�L��!��ob1�:E����
/K����Nr�����+=���/o3��Q[:m��ໄ��p*e���*��GЭ���r�3�3w��s�*���9jtQ�� B&b�ks4����@ج=0,�Y�&��f��XtZ��<u|X���٬q�ԕ�$
T㯀쥉��u���'��r�:�b��1��c���k��ά;�S�=�>-?2�x�t�X'��dH�
�i*>����7�zՋ0nI�WM��xgF�/�c̅Z�Î�n�d�v.��CB,^��~Č�����\S�B�xXR��z��`4WHo.L+j�D$1����&�;�0�~S�aq*U�b01�%ZY[«s)��H�h'>��ju7��LV��y�	s�mNѷ�PZ�!g�����i5��L�B}�d��rL�)�w( �糁�3o���
=��V�\���:�y����4�ngѕ�q4��T��nC�f�d��d9��`Y��S�[&,W~<!i�(�-fgL9Zž�=��`( WTtJ��	k_�O�Ҝl6�����w�~)$������>~b��4:.�o����l��6��ܜ���{�������c��B_\��qz�9�$�W����%��f��+&v�n��/H	�=���J#D'��R�E��Y��y~���D��)n���_�]���&���0��'�)�?�欅�m}��M[?����_��.�r��7,�F|�ؤKM����BFkH��nv���/ZR�W4����2�Op��-=)����L<��C��8Hg��/�);�/r����v�;�%|~���V%�o�z
�t-�_��\�%��7ז��D���JX�i�,ћ�JG���E�X��Lj]�]��s�DZ�ڢ'cu�ݝvg0�Ӎ�I�,<&RޯDra���y5V�K[+��]�$�!o�a<n_N*��X�\"��RW�?�
�Hؓ��sO�^؜7��n/l�1�u������j�PW�bM��*aGrb����G&vݿ0:t���UCCW�N]U'2��C�cM�ED�%8������n���o�FR�z��8
7w��@l;��%��J~�g𯺑�+q1Z�ē�=�1���jR5cڝ�m	ɥC廝i�L�U5W_�~�!��$��N{Kd$�ٔOo��jI�4�a����o��E��Md�Ԋ��94��_tN�TC2K�IH��٢	��X;w@���:���X���I;z�Y϶��C�+�I�G�j��������$��P�u����l:��"�*Զ���^���A4���;�ŰD�a�Yv(�-��m�6۔]���2��{����(�e��Z��zN��L� ��is���l��x�Q�Uc�Û��J�_{�b[�Y>�C�٧���l���*��V�7�C���1��W�Q�U�:Qt���H��Ũ��,%LEC�b�&?��������������ڳ����!G莍wJ�Uev���7oK��9�y�v-kv��vo���&ҥ@=V�$���/�\�>�U��7[�ե�X�yhv��28"�fV*�_��7�򆕣�$d�D�ah��ϩT���2�;E��\6rp05�����3�t���`L,����%L�2���Y�F�f�+;K����f��g�f�Cl����-�}x���vV\=�x���<���a�;jY!@	�yg�27}�`
xzhCH�T�̜SH/z�v"�.�͛�����rOK�U�y"�
7o]#x�sU���`�<	Q���
�H��!z8.���Г���K$�M���k��<��4`ţ{�V
�Npx��a�1K4��x��{0��<|��	^�WS�ڧ��k�������Nާ���|�u!��	��C""�Nx������6�Ɨ���n�_!&B�Ÿ�=�D@�x?�{�r����Q$n�Gk�A*�3�?��I2Ϗ��1�����O�$�g���f��y�g	$X�:�D8����/�3#�+�E��M'�5�B�3�)���R���b��9�]��ݚ��(M�׊�:���Vl�O!éQ�Ƭ\���~��j�m@"6Qe�M�1���
�0PƟ?�Q�b_�V���b�rqgp��h��=����jrI<X7�ʿ���n{�ҩ
[]l�>T��
�ˀ)280ň�@#d��b��YM=��g��*�Λ�E�x+���9��ٍ~m�:�e
�l�6�tF�`]�g���V�&�p�]F���ѷw�=�����m|n�b
pobJ�b��ߌDF����q_��z��u�GNz���8>/��*Y2	q�z��u��}
���Ɉ]N�_U*�F�S��:�}
I��u��`҇���J���b��J�^Q<��Ajv\��3c�i�!=�+hd��t�]h	i;�I�M��:}����o(������H�n��ޘ�ߝ7�SjE�գ�|�`n�eۃ1�3�V@N75#����HW~�/
��
�*Y�R����;�R�$O�r�I�詔f�<oxX�eR�T:S�1Pk)Y�tà�K,��p-�q��iw�Ŵ���R	��L�T2Q�L,Sz��b��acN��I����s�8�ƣ@�Ui����=���5i�M�ֺ@�F�P��d�̔��H@��X�:�>�RD� G#�6�zv��w�E=����=�p����7w�X��Oq���� ����=!?�A�~�����.���|{���'��_����p�v�&��-�{�o���~/�^��}�E��������/�ec+k۔��mҵ��Zg�:��Rƍ�6nA�F[���ƅ}�_~�����пCe����S���Z`b֨kS�4;o4
o�*��#Z���D�PQ���W�a~��%� TìM��<kÅ��U�9��
�3e�}�Q"C�~���c����x
+���4�S�,N���N���l��(�L��F��Ps����
>;9?7(̡mS�.�s|�?��<ń�u@I��DE:y���t
�^Y��Ϸ����$#/���uu����!�l0I���E����i��OZ(��E\����B~C�Q����lw���d�ߍ���M�XC	{Qx>9E*)��8�&J�FRY�'1�������k�H��o!�����ٻ�0f��d�z׵r���z��j�,��hհ
a��%�_�4��Sb���H�N���ȓ�R{�n[	�5j%Q�b|~�z�DPL>�����Ϛ3���Թ��bm�~���
����g�}�]��;��q�+���,)J�Ks�E�j�~�P�R�xDwC�Ñr�|?���H���?��S]��z���~���k<�_�~˯'��A|l��>C�!�h[�aj��*�B��A#��LN�)t�#2j,ad&��Qd����>��aՏ����=*Vaq��g),�:W�(%�S�imX�&Ynk|��u|	B<���*�m�:4�ݨ��i��#fͼ�?��4h4ۻ�w��Ʈ��[?3?w�Gz���f.��V��$��7G����u����N�V]��=�����{o���`x���d8`j܃?�Ͽ\�|��%+J32�ji+����Oj�I|~�[ejW|�S�952K��{�z��ryW]��B&s>=w~���}��S}z
(@3V�����{��'&�M�Qa�!
���@Ej���Ǭ2���ޥ�Y�z�H��*��飝�������2���*�w�9�π�
`�����*�/S-��
/釉��Ы�셁(�W>q�j��q�|�a��`[+^^����+�[��}�W �5�Q]�W�:�-�|��!"�'���?>����~����F�}�u�_�?����ڸ���tZ���F[(>	���`i 	�	
�Gg�g��ʜ�x|���-�|���oc���Й̉��c���nf������p�K����tj'�n�	��C��z�(�O����8'b�'��
P�l���P�CU4��{�Z|����d��Zޖ_�ǫ_��k��<�+�Vo>���[����H;J�A_R&9|�B�ƀBY?�T��
��H�cQ���ֳ��|R��޵7��m�`�6�LF�<}�ɬTY{�����+��/�ܖ�z�ams�&Gaou`w���3���֞ޘ��=�}ba�����\���~�;��C#������
�j+�G6�z⮹X�f›�d�p�!�����
q2��3�)�}
�])�f&"�#�$h�D��"�糱ŀ�>�%܌�+�ND}t�o�+J�V��G�<�:{*e�������j�X��vQg��Fu϶h|)O,��:>��z6�E\�xm8���Aò��x�~�K_��)��z���ʼn�g�lnW��5�Ο���z�	���)D�n4|ʞq���X�y�/s��Dܰ
��}'�ѐ8ɏH$�H>�/Wf���-W�3���uI6��H<�z�L����*V&?Gg0�
��u�rE�&��<�v�3��;�
���[����[wg�
n���-��u;�R�6�Y��?�$��n�1�ӨF4J5�L;�S��B��* �d5�`NY#g�������YUIwz�!F֙�M����͸���}7
�^6ͪ��ơ٣�jM�ESsw,jT�}2uVo�\�׵�0�k0�t$r��Z����5[���~��Ly����
�ݰn��!$��.�E	�ޗN�A����Yf�k��l*�岮�]9xj���S��A��;[,�[S�=�-�N����s�����Ȋ���C��Şܶj 8��'��������t�ZǞl�T�۳�.�Io&s���I~�Ð�
��v	gM�G�c���&?�+�}-��W�q+��Opq���ڰ��G�ۊ��/��������uY��p���m���.GB,j��bځ��-z}�O��W�N�?��˃8�g|\����o��w����b��{ph��w�^���Pmo�����%W蛀n�%�\)!���OL�|v]q7��7~����y�cj�ɜ�G��Y5W���:C�Z��s�-!rt�m���g��V�H�%'�Z4"�f��BN�����$�6rxͬ%��SR*�0Klh�X6�r�āT���)��W%�������X�Ȭ4�&i:O{0�UD�V*�ѢpW�@�F��Tq��fJ�K�Pt ��D�d�¦�Kv�z>��R�4���1�;L�Ľ�;�(�D�AE�
�V8��{�3D�$��!Kn YC���gLaW,%�����%Xn���Ӻ��c툋Ge���
��b*�2)�>{Pʄ�6�-*ef߮�Dc�c�Y̢I��j|&���#R��lKG�Z�-�tOb¬]�����HC
�eF�,F%��;��5���݄b���>r;�ْ?)n������\Ԣ���M��y�-~�dzCI9��L�v{�
,�s��E4�H�3��w����X�C�i:��6����tdb!:�n�*�ٚ0��T�?Z�"L�k���7�,!qy��-z�*@"q4{�F�#Ei[�g֧����b�i�{�ߛ��*Ρ2����1x|zNl�h3�3��o�p��QY��s�,�wB��J/�A�r�$�Iz�l�5��`�[��n��,��X>��;�o�*w7<>�p�/0�]�;%2j~d���<�QAJ�oB����	����I����'��=A�:�%��.�*���
��j�m�MY���L^����/]�@�C�K�6��%�o�=q���m�%o�
�,�vJ���h����̚2۰�
_��wS�����ʚ�hڦ3�Ҵ����I�J~8��D<&�4�_��/�ߵ
|��#��S�=`B~�I�$����9��m'��G�}��c#���������f)����k*�>�܏Ba$�T��y�J�Ǐi���'�5��'��O����=T}�b�`�E?���nd�#�p>�m���~o
V�Eμ^oյz��R1��4*�Qau+d��xl��
i��UgV\�3B��?��)
6{D��w��]���S�/����4�9<qZj���ɓ�2�C��?�`i���4Wf6a>j7Z�ᨵL.ϰ�p��w���O��;��z]~8���X��9�+�8A��uP;����)�����{�d�]��>1/٥��p$V�I��p$P�2��o���15�U��1(J���C��*<��
������LO�#�%�c	I	�,����-	�1	���sq�~��Ƴ�g�sc8½{r�U*L�9�'�?� ���Yx��8��K��1�e�}�
/�J�*G��o�s��i�=�q͟��p?�'`�R�уd�S�9dt8�&�����LF���P=BU����T�꫉����,|�Ȯ�BK�����_�����u��te#U�暙�1@u�{a�F�eR������%c��"O0��T'[���`��Ha�)�H�Z���'Q:��<��7aK�{c���`��ڴT$�ڣ�T\���l��(�d���S��b�)��F�V�D�[mN�N�k���)k�^�2�$%e'�i���=p3���U���}dF��J����f#��"��8�on��9��N=�_UY����;�S)���o�<��_�o6Ȋf�,������wA���.Hޗ�w�x��2���@��;��BW�_<��܍5��ݦ�S�"c�x�c`d``�����%��?S�d���#���x�b:´�}|P=���a~gNm۶�}k۶mk��k�^۶j۶�ӯv��`�͏	���%����t>L?�E�=��e�`�ojjeI1�=�#W�ѹ	��仮 ��Q!Ơ=�t�{[�t$)����y��]�G:��c�������������y�0��ލ*^��.W�t�Mջ�,2��U�K�[�śg1��7�TvUB_��O�=U��%s�a�ν������X?��*Jz��G�P�{�K�d��/����l	�m�f�0��M�xsJx
�p:�<�:��W���Z[��>�F2\R��ԐL�&}��$�K��ʴ���u���i��S��IJ��䳱1*���h�LC�JS�Z)��\�rm�K��4c]�F0:d��*3G=����4 >��"l���H]񀏧�5"��Q��0����`[Y�0{"����$
@|��!���y��I�hcȰ1�=N{�`�%�X�[z\a]I�n��)i��
I��6�4�a�L�7�����G��H�t�Bs4��0�N6��f����ƴ��K��\���g�����2^���3��[��}��g�7��BI��+��h ]:�|()�^�H�$C���+�x�g�h�I�̱vdZ�?�ɚ��x�%��0дY�5]�%�P�m۶���m۶m۶m۶�?��@.PT�@3�	�K�-��Zq�#�]�%��G<�S�>�H~*��?�߆�0
�k�6�\w���2��(��x.d�넃�K�+B�!eD�Qs��B��=�
}����B/��J����/���I��RG���`'��q-�����$���?��rf���A�-�'�o埡����{J%��K9��&1��d$yH	R�t&����'�ՈZL�NS/�S�K����o�t0M��-t=B��+�}�ҳ� +�*�:�!k�:�>l(��.i!���F[�=Ѿ�e��L}��S?�_�o��78�y��Fkc���xof6�5���s�y�<e^6��-�R��VYk�uºm���ۢ��ٙ�<v	����nO��GG�E�F�EG��p,G�X�Nly\�����r�8���Nu��3���sn9?�Tn.���ݽ��d/�Wԫ���x#�
�u﩯�����~v?�_�/�+���x�c`d``�`e`cHc`�#�x�}��ME?���Dqw����^woW`dfb^J�r���?�I2�]u��o��k,i���Fi��I�i�ӄ~�\�}��A��(�ͨ�k�#K��s3k��҉��+ʔg�tI�$v("(̎Q,�W*�(xw�5"?����6��ӯ��6�L���Y��ǧM�=��k��~�C�-���I�hjO�Ԃ):�סjw�qQݪ�
(I��B��1|:Ca{�5G�_.�5ձ�h�~�0q_�/�r�
�^4B�_^T����n���I2�����UXx�l��Z&��˶m�ύm۶m۞�ضm���\����
tF�Ը���h�,��ȈOL����~B	c2��>�oDE41|�?�E���#�����a9�-n�Dɤ�J��?��"�LZњ2�Й�b63��NӅ�̣�tg>Y�zГ^�&��,e�LXB�ʌ��?X�@V��լ�k�� *����ag-��:F0�Q������'q�W�p�O���G沐��d-��N�r����,��M�򐧼�-��O�
P����SO�
U��1V�"q�_���	��,�؆-f8�NQ�Ɓ�ܣ#��0��=�}�G\�*/y�)Vc�v�����f�(f3/0W[8�X쨢���?���y:(�+A�2(I�JQ�Ҕ�e��N�!�BrɣȬ�
2�i����aφ;D��6�+vU/�&��RbW;A�ͷ,��Ϟ��4'��^��Zo]鵲���x�.��Tu��0-~�}�OޑDX�
W&ygig�'�#�frd/� �B���Wb�S�V��3�č�d�Th��ő�!���D t� :���V��#��Y�l���z#����b�q�}s|��]v�D�_��(�Yo�r[��~�7���0��{�Z]�����I�]�<39w9���ؤ4�Y��PK���\��Bbuild/main.js.mapnu�[���{"version":3,"file":"main.js","mappings":"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","sources":["webpack://header-footer-elementor/webpack/runtime/create fake namespace object","webpack://header-footer-elementor/./node_modules/path-to-regexp/dist/index.js","webpack://header-footer-elementor/./node_modules/react-dom/client.js","webpack://header-footer-elementor/external window \"ReactDOM\"","webpack://header-footer-elementor/./node_modules/classnames/index.js","webpack://header-footer-elementor/./node_modules/querystringify/index.js","webpack://header-footer-elementor/webpack/bootstrap","webpack://header-footer-elementor/webpack/runtime/compat get default export","webpack://header-footer-elementor/webpack/runtime/define property getters","webpack://header-footer-elementor/webpack/runtime/hasOwnProperty shorthand","webpack://header-footer-elementor/webpack/runtime/make namespace object","webpack://header-footer-elementor/external window [\"wp\",\"domReady\"]","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/slicedToArray.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/nonIterableRest.js","webpack://header-footer-elementor/external window \"React\"","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/typeof.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/toPropertyKey.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/toPrimitive.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/createClass.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/defineProperty.js","webpack://header-footer-elementor/external window [\"wp\",\"element\"]","webpack://header-footer-elementor/./node_modules/history/index.js","webpack://header-footer-elementor/./src/router/utils.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/extends.js","webpack://header-footer-elementor/./src/router/context.js","webpack://header-footer-elementor/./src/router/route.js","webpack://header-footer-elementor/./src/router/link.js","webpack://header-footer-elementor/./src/router/index.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/classCallCheck.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/inherits.js","webpack://header-footer-elementor/external window \"ReactJSXRuntime\"","webpack://header-footer-elementor/./node_modules/tailwind-merge/dist/bundle-mjs.mjs","webpack://header-footer-elementor/./node_modules/clsx/dist/clsx.mjs","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/utilities/functions.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/container/container-styles.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/container/container-utils.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/container/grid-container.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/container/container.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/topbar/topbar.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/button/button.es.js","webpack://header-footer-elementor/./node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.mjs","webpack://header-footer-elementor/./node_modules/@floating-ui/react/dist/floating-ui.react.utils.mjs","webpack://header-footer-elementor/./node_modules/tabbable/dist/index.esm.js","webpack://header-footer-elementor/./node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs","webpack://header-footer-elementor/./node_modules/@floating-ui/core/dist/floating-ui.core.mjs","webpack://header-footer-elementor/./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs","webpack://header-footer-elementor/./node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs","webpack://header-footer-elementor/./node_modules/@floating-ui/react/dist/floating-ui.react.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/components/create-proxy.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/utils/is-animation-controls.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/utils/is-keyframes-target.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/shallow-compare.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/is-variant-label.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/resolve-variants.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/resolve-dynamic-variants.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/variant-props.mjs","webpack://header-footer-elementor/./node_modules/motion-utils/dist/es/memo.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/utils/supports/scroll-timeline.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/animation/controls/BaseGroup.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/animation/controls/Group.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/animation/utils/get-value-transition.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/animation/generators/utils/calc-duration.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/animation/generators/utils/is-generator.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/animation/waapi/utils/attach-timeline.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/utils/is-bezier-definition.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/utils/supports/flags.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/utils/supports/memo.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/utils/supports/linear-easing.mjs","webpack://header-footer-elementor/./node_modules/motion-utils/dist/es/progress.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/animation/waapi/utils/linear.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/animation/waapi/utils/easing.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/gestures/drag/state/is-active.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/gestures/utils/setup.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/utils/resolve-elements.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/gestures/hover.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/gestures/utils/is-node-or-child.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/gestures/utils/is-primary-pointer.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/gestures/press/utils/state.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/gestures/press/utils/keyboard.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/gestures/press/index.mjs","webpack://header-footer-elementor/./node_modules/motion-utils/dist/es/time-conversion.mjs","webpack://header-footer-elementor/./node_modules/motion-utils/dist/es/noop.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/html/utils/keys-transform.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/html/utils/keys-position.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/resolve-value.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/frameloop/batcher.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/frameloop/render-step.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/frameloop/frame.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/frameloop/sync-time.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/array.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/subscription-manager.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/velocity-per-second.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/setters.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/utils/is-motion-value.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/use-will-change/add-will-change.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/use-will-change/is.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/optimized-appear/data-id.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/optimized-appear/get-appear-id.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/use-instant-transition-state.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/easing/cubic-bezier.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/easing/modifiers/mirror.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/easing/modifiers/reverse.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/easing/back.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/easing/anticipate.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/easing/circ.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/is-zero-value-string.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/clamp.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/numbers/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/utils/sanitize.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/utils/float-regex.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/utils/single-color-regex.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/color/utils.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/utils/is-nullish.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/color/rgba.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/color/hex.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/numbers/units.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/color/hsla.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/color/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/utils/color-regex.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/complex/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/types/complex/filter.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/value-types/number-browser.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/value-types/transform.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/value-types/type-int.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/value-types/number.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/value-types/defaults.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/value-types/animatable-none.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/html/utils/make-none-animatable.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/utils/unit-conversion.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/KeyframesResolver.mjs","webpack://header-footer-elementor/./node_modules/motion-utils/dist/es/errors.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/is-numerical-string.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/utils/is-css-variable.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/utils/css-variables-conversion.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/value-types/test.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/value-types/dimensions.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/value-types/type-auto.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/DOMKeyframesResolver.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/utils/is-none.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/utils/is-animatable.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/animators/utils/can-animate.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/animators/BaseAnimation.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/mix/number.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/hsla-to-rgba.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/mix/immediate.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/mix/color.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/pipe.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/mix/visibility.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/mix/complex.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/mix/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/generators/utils/velocity.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/generators/spring/defaults.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/generators/spring/find.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/generators/spring/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/generators/inertia.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/easing/ease.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/easing/utils/map.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/generators/keyframes.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/easing/utils/is-easing-array.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/offsets/time.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/offsets/default.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/offsets/fill.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/interpolate.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/animators/MainThreadAnimation.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/animators/utils/accelerated-values.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/animators/AcceleratedAnimation.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/animators/waapi/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/utils/default-transitions.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/interfaces/motion-value.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/utils/is-transition-defined.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/interfaces/visual-element-target.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/interfaces/visual-element-variant.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/get-variant-context.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/animation-state.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/interfaces/visual-element.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/Feature.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/animation/exit.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/animations.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/animation/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/events/add-dom-event.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/events/event-info.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/events/add-pointer-event.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/distance.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/gestures/pan/PanSession.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/is-ref-object.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/geometry/delta-calc.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/gestures/drag/utils/constraints.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/geometry/models.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/utils/each-axis.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/geometry/conversion.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/utils/has-transform.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/geometry/delta-apply.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/utils/measure.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/get-context-window.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/gestures/drag/VisualElementDragControls.mjs","webpack://header-footer-elementor/./node_modules/motion-dom/dist/es/gestures/drag/state/set-active.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/gestures/pan/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/context/PresenceContext.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/context/LayoutGroupContext.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/node/state.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/styles/scale-border-radius.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/styles/scale-box-shadow.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/styles/scale-correction.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/frameloop/microtask.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/compare-by-depth.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/flat-tree.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/value/utils/resolve-motion-value.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/animation/mix-values.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/geometry/copy.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/geometry/delta-remove.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/geometry/utils.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/shared/stack.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/node/create-projection-node.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/utils/is-svg-element.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/delay.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/animation/animate/single-value.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/styles/transform.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/node/DocumentProjectionNode.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/projection/node/HTMLProjectionNode.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/drag.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/gestures/drag/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/gestures/hover.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/gestures/press.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/viewport/observers.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/viewport/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/gestures.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/gestures/focus.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/layout.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/context/LazyContext.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/context/MotionConfigContext.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/context/MotionContext/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/is-controlling-variants.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/context/MotionContext/create.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/is-browser.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/definitions.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/utils/symbol.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/utils/use-visual-element.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/context/MotionContext/utils.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/features/load-features.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/lowercase-elements.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/utils/is-svg-component.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/use-constant.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/utils/use-visual-state.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/value-types/get-as-type.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/html/utils/build-transform.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/html/utils/build-styles.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/utils/path.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/utils/transform-origin.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/utils/build-attrs.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/html/utils/create-render-state.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/utils/is-svg-tag.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/html/utils/render.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/utils/camel-case-attrs.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/utils/render.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/utils/is-forced-motion-value.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/html/utils/scrape-motion-values.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/utils/scrape-motion-values.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/config-motion.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/utils/create-render-state.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/html/config-motion.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/html/use-props.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/motion/utils/valid-prop.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/utils/filter-props.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/use-props.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/use-render.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/components/create-factory.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/reduced-motion/state.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/value-types/find.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/store.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/VisualElement.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/utils/reduced-motion/index.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/utils/motion-values.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/DOMVisualElement.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/html/HTMLVisualElement.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/svg/SVGVisualElement.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/dom/create-visual-element.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/components/motion/proxy.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/render/components/motion/create.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/components/AnimatePresence/utils.mjs","webpack://header-footer-elementor/./node_modules/framer-motion/dist/es/components/AnimatePresence/index.mjs","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/shared/src/utils.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/defaultAttributes.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/Icon.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/createLucideIcon.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/icons/chevron-down.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/menu-item/menu-item.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/dropdown-menu/dropdown-menu.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/icons/x.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/badge/badge.es.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/shared/src/utils.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/defaultAttributes.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/Icon.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/createLucideIcon.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/arrow-up-right.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/circle-question-mark.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/file-text.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/headset.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/user.js","webpack://header-footer-elementor/external window [\"wp\",\"i18n\"]","webpack://header-footer-elementor/./src/admin/settings/routes.js","webpack://header-footer-elementor/./node_modules/whats-new-rss/dist/react/useWhatsNewRSS.js","webpack://header-footer-elementor/./src/Components/NavMenu.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/iterableToArray.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/icons/info.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/icons/check.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/icons/triangle-alert.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/icons/trash-2.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/toaster/utils.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/tooltip/tooltip.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/label/label.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/switch/switch.es.js","webpack://header-footer-elementor/./node_modules/nanoid/index.browser.js","webpack://header-footer-elementor/./node_modules/nanoid/url-alphabet/index.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/monitor.js","webpack://header-footer-elementor/external window [\"wp\",\"apiFetch\"]","webpack://header-footer-elementor/./src/Components/Dashboard/WidgetItem.jsx","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/skeleton/skeleton.es.js","webpack://header-footer-elementor/./src/Components/Dashboard/Widgets.jsx","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/title/title.es.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/headphones.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/book-open-text.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/notepad-text.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/star.js","webpack://header-footer-elementor/./src/Components/Dashboard/QuickAccess.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/plus.js","webpack://header-footer-elementor/./src/Components/Dashboard/WelcomeContainer.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/rocket.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/check.js","webpack://header-footer-elementor/./src/Components/Dashboard/UltimateFeatures.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js","webpack://header-footer-elementor/external window \"regeneratorRuntime\"","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/dialog/dialog.es.js","webpack://header-footer-elementor/./src/Components/Dashboard/ExtendWebsiteWidget.jsx","webpack://header-footer-elementor/./src/Components/Dashboard/ExtendWebsite.jsx","webpack://header-footer-elementor/./src/Components/UpgradeNotice.jsx","webpack://header-footer-elementor/./src/Components/Dashboard/Dashboard.jsx","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/search.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/trash-2.js","webpack://header-footer-elementor/./src/Components/Widgets/Features/FeatureWidgets.jsx","webpack://header-footer-elementor/./src/Components/Widgets/UltimateWidgetFeatures.jsx","webpack://header-footer-elementor/./src/Components/Widgets/Features.jsx","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/zap.js","webpack://header-footer-elementor/./src/Components/Templates/ExploreTemplates.jsx","webpack://header-footer-elementor/./src/Components/Templates/Templates.jsx","webpack://header-footer-elementor/./src/Components/Settings/Sidebar.jsx","webpack://header-footer-elementor/./src/Components/Settings/Content.jsx","webpack://header-footer-elementor/./node_modules/goober/dist/goober.modern.js","webpack://header-footer-elementor/./node_modules/react-hot-toast/dist/index.mjs","webpack://header-footer-elementor/./src/Components/Settings/ThemeSupport.jsx","webpack://header-footer-elementor/./src/Components/Settings/VersionControl.jsx","webpack://header-footer-elementor/./src/Components/Settings/UsageTracking.jsx","webpack://header-footer-elementor/./src/Components/Dashboard/MyAccount.jsx","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/lock.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/move-up-right.js","webpack://header-footer-elementor/./src/Components/Settings/Branding.jsx","webpack://header-footer-elementor/./src/Components/Settings/Settings.jsx","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/toaster/controller.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/toaster/component-style.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/hoc/withSingleton.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/toaster/toaster.es.js","webpack://header-footer-elementor/./src/lib/bsf-learn/useBsfLearn.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/icons/minus.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/icons/plus.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/accordion/accordion.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/text/styles.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/text/text.es.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/chevron-right.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/external-link.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/video.js","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/info.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/BsfLearnStep.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/BsfLearnChapters.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/BsfLearnSkeleton.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/learn-how/Button.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/learn-how/Checklist.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/learn-how/Image.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/learn-how/Link.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/learn-how/List.js","webpack://header-footer-elementor/./src/lib/bsf-learn/helpers.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/learn-how/Paragraph.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/learn-how/Video.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/learn-how/RenderContent.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/LearnHowDialog.js","webpack://header-footer-elementor/./src/lib/bsf-learn/components/BsfLearn.js","webpack://header-footer-elementor/./src/Components/Learn/Learn.jsx","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/x.js","webpack://header-footer-elementor/./src/Components/Compare/FreevsPro.jsx","webpack://header-footer-elementor/./src/Components/Compare/Upgrade.jsx","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/progress-steps/utils.es.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/progress-steps/progress-steps.es.js","webpack://header-footer-elementor/./src/Components/Onboarding/Create.jsx","webpack://header-footer-elementor/./src/Components/Onboarding/ExtendOnboardingWidget.jsx","webpack://header-footer-elementor/./node_modules/lucide-react/dist/esm/icons/chevron-left.js","webpack://header-footer-elementor/./src/Components/Onboarding/index.js","webpack://header-footer-elementor/./src/Components/Onboarding/WelcomeNew.jsx","webpack://header-footer-elementor/./src/Components/Onboarding/ExtendOnboarding.jsx","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js","webpack://header-footer-elementor/./node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js","webpack://header-footer-elementor/./src/Components/Onboarding/Features.jsx","webpack://header-footer-elementor/./src/Components/Onboarding/Onboarding.jsx","webpack://header-footer-elementor/./src/router/customRouter.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/node_modules/lucide-react/dist/esm/icons/loader-circle.js","webpack://header-footer-elementor/./node_modules/@bsf/force-ui/dist/components/loader/loader.es.js","webpack://header-footer-elementor/./src/App.js","webpack://header-footer-elementor/./src/index.js"],"sourcesContent":["var getProto = Object.getPrototypeOf ? (obj) => (Object.getPrototypeOf(obj)) : (obj) => (obj.__proto__);\nvar leafPrototypes;\n// create a fake namespace object\n// mode & 1: value is a module id, require it\n// mode & 2: merge all properties of value into the ns\n// mode & 4: return value when already ns object\n// mode & 16: return value when it's Promise-like\n// mode & 8|1: behave like require\n__webpack_require__.t = function(value, mode) {\n\tif(mode & 1) value = this(value);\n\tif(mode & 8) return value;\n\tif(typeof value === 'object' && value) {\n\t\tif((mode & 4) && value.__esModule) return value;\n\t\tif((mode & 16) && typeof value.then === 'function') return value;\n\t}\n\tvar ns = Object.create(null);\n\t__webpack_require__.r(ns);\n\tvar def = {};\n\tleafPrototypes = leafPrototypes || [null, getProto({}), getProto([]), getProto(getProto)];\n\tfor(var current = mode & 2 && value; typeof current == 'object' && !~leafPrototypes.indexOf(current); current = getProto(current)) {\n\t\tObject.getOwnPropertyNames(current).forEach((key) => (def[key] = () => (value[key])));\n\t}\n\tdef['default'] = () => (value);\n\t__webpack_require__.d(ns, def);\n\treturn ns;\n};","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.TokenData = void 0;\nexports.parse = parse;\nexports.compile = compile;\nexports.match = match;\nexports.pathToRegexp = pathToRegexp;\nexports.stringify = stringify;\nconst DEFAULT_DELIMITER = \"/\";\nconst NOOP_VALUE = (value) => value;\nconst ID_START = /^[$_\\p{ID_Start}]$/u;\nconst ID_CONTINUE = /^[$\\u200c\\u200d\\p{ID_Continue}]$/u;\nconst DEBUG_URL = \"https://git.new/pathToRegexpError\";\nconst SIMPLE_TOKENS = {\n    // Groups.\n    \"{\": \"{\",\n    \"}\": \"}\",\n    // Reserved.\n    \"(\": \"(\",\n    \")\": \")\",\n    \"[\": \"[\",\n    \"]\": \"]\",\n    \"+\": \"+\",\n    \"?\": \"?\",\n    \"!\": \"!\",\n};\n/**\n * Escape text for stringify to path.\n */\nfunction escapeText(str) {\n    return str.replace(/[{}()\\[\\]+?!:*]/g, \"\\\\$&\");\n}\n/**\n * Escape a regular expression string.\n */\nfunction escape(str) {\n    return str.replace(/[.+*?^${}()[\\]|/\\\\]/g, \"\\\\$&\");\n}\n/**\n * Tokenize input string.\n */\nfunction* lexer(str) {\n    const chars = [...str];\n    let i = 0;\n    function name() {\n        let value = \"\";\n        if (ID_START.test(chars[++i])) {\n            value += chars[i];\n            while (ID_CONTINUE.test(chars[++i])) {\n                value += chars[i];\n            }\n        }\n        else if (chars[i] === '\"') {\n            let pos = i;\n            while (i < chars.length) {\n                if (chars[++i] === '\"') {\n                    i++;\n                    pos = 0;\n                    break;\n                }\n                if (chars[i] === \"\\\\\") {\n                    value += chars[++i];\n                }\n                else {\n                    value += chars[i];\n                }\n            }\n            if (pos) {\n                throw new TypeError(`Unterminated quote at ${pos}: ${DEBUG_URL}`);\n            }\n        }\n        if (!value) {\n            throw new TypeError(`Missing parameter name at ${i}: ${DEBUG_URL}`);\n        }\n        return value;\n    }\n    while (i < chars.length) {\n        const value = chars[i];\n        const type = SIMPLE_TOKENS[value];\n        if (type) {\n            yield { type, index: i++, value };\n        }\n        else if (value === \"\\\\\") {\n            yield { type: \"ESCAPED\", index: i++, value: chars[i++] };\n        }\n        else if (value === \":\") {\n            const value = name();\n            yield { type: \"PARAM\", index: i, value };\n        }\n        else if (value === \"*\") {\n            const value = name();\n            yield { type: \"WILDCARD\", index: i, value };\n        }\n        else {\n            yield { type: \"CHAR\", index: i, value: chars[i++] };\n        }\n    }\n    return { type: \"END\", index: i, value: \"\" };\n}\nclass Iter {\n    constructor(tokens) {\n        this.tokens = tokens;\n    }\n    peek() {\n        if (!this._peek) {\n            const next = this.tokens.next();\n            this._peek = next.value;\n        }\n        return this._peek;\n    }\n    tryConsume(type) {\n        const token = this.peek();\n        if (token.type !== type)\n            return;\n        this._peek = undefined; // Reset after consumed.\n        return token.value;\n    }\n    consume(type) {\n        const value = this.tryConsume(type);\n        if (value !== undefined)\n            return value;\n        const { type: nextType, index } = this.peek();\n        throw new TypeError(`Unexpected ${nextType} at ${index}, expected ${type}: ${DEBUG_URL}`);\n    }\n    text() {\n        let result = \"\";\n        let value;\n        while ((value = this.tryConsume(\"CHAR\") || this.tryConsume(\"ESCAPED\"))) {\n            result += value;\n        }\n        return result;\n    }\n}\n/**\n * Tokenized path instance.\n */\nclass TokenData {\n    constructor(tokens) {\n        this.tokens = tokens;\n    }\n}\nexports.TokenData = TokenData;\n/**\n * Parse a string for the raw tokens.\n */\nfunction parse(str, options = {}) {\n    const { encodePath = NOOP_VALUE } = options;\n    const it = new Iter(lexer(str));\n    function consume(endType) {\n        const tokens = [];\n        while (true) {\n            const path = it.text();\n            if (path)\n                tokens.push({ type: \"text\", value: encodePath(path) });\n            const param = it.tryConsume(\"PARAM\");\n            if (param) {\n                tokens.push({\n                    type: \"param\",\n                    name: param,\n                });\n                continue;\n            }\n            const wildcard = it.tryConsume(\"WILDCARD\");\n            if (wildcard) {\n                tokens.push({\n                    type: \"wildcard\",\n                    name: wildcard,\n                });\n                continue;\n            }\n            const open = it.tryConsume(\"{\");\n            if (open) {\n                tokens.push({\n                    type: \"group\",\n                    tokens: consume(\"}\"),\n                });\n                continue;\n            }\n            it.consume(endType);\n            return tokens;\n        }\n    }\n    const tokens = consume(\"END\");\n    return new TokenData(tokens);\n}\n/**\n * Compile a string to a template function for the path.\n */\nfunction compile(path, options = {}) {\n    const { encode = encodeURIComponent, delimiter = DEFAULT_DELIMITER } = options;\n    const data = path instanceof TokenData ? path : parse(path, options);\n    const fn = tokensToFunction(data.tokens, delimiter, encode);\n    return function path(data = {}) {\n        const [path, ...missing] = fn(data);\n        if (missing.length) {\n            throw new TypeError(`Missing parameters: ${missing.join(\", \")}`);\n        }\n        return path;\n    };\n}\nfunction tokensToFunction(tokens, delimiter, encode) {\n    const encoders = tokens.map((token) => tokenToFunction(token, delimiter, encode));\n    return (data) => {\n        const result = [\"\"];\n        for (const encoder of encoders) {\n            const [value, ...extras] = encoder(data);\n            result[0] += value;\n            result.push(...extras);\n        }\n        return result;\n    };\n}\n/**\n * Convert a single token into a path building function.\n */\nfunction tokenToFunction(token, delimiter, encode) {\n    if (token.type === \"text\")\n        return () => [token.value];\n    if (token.type === \"group\") {\n        const fn = tokensToFunction(token.tokens, delimiter, encode);\n        return (data) => {\n            const [value, ...missing] = fn(data);\n            if (!missing.length)\n                return [value];\n            return [\"\"];\n        };\n    }\n    const encodeValue = encode || NOOP_VALUE;\n    if (token.type === \"wildcard\" && encode !== false) {\n        return (data) => {\n            const value = data[token.name];\n            if (value == null)\n                return [\"\", token.name];\n            if (!Array.isArray(value) || value.length === 0) {\n                throw new TypeError(`Expected \"${token.name}\" to be a non-empty array`);\n            }\n            return [\n                value\n                    .map((value, index) => {\n                    if (typeof value !== \"string\") {\n                        throw new TypeError(`Expected \"${token.name}/${index}\" to be a string`);\n                    }\n                    return encodeValue(value);\n                })\n                    .join(delimiter),\n            ];\n        };\n    }\n    return (data) => {\n        const value = data[token.name];\n        if (value == null)\n            return [\"\", token.name];\n        if (typeof value !== \"string\") {\n            throw new TypeError(`Expected \"${token.name}\" to be a string`);\n        }\n        return [encodeValue(value)];\n    };\n}\n/**\n * Transform a path into a match function.\n */\nfunction match(path, options = {}) {\n    const { decode = decodeURIComponent, delimiter = DEFAULT_DELIMITER } = options;\n    const { regexp, keys } = pathToRegexp(path, options);\n    const decoders = keys.map((key) => {\n        if (decode === false)\n            return NOOP_VALUE;\n        if (key.type === \"param\")\n            return decode;\n        return (value) => value.split(delimiter).map(decode);\n    });\n    return function match(input) {\n        const m = regexp.exec(input);\n        if (!m)\n            return false;\n        const path = m[0];\n        const params = Object.create(null);\n        for (let i = 1; i < m.length; i++) {\n            if (m[i] === undefined)\n                continue;\n            const key = keys[i - 1];\n            const decoder = decoders[i - 1];\n            params[key.name] = decoder(m[i]);\n        }\n        return { path, params };\n    };\n}\nfunction pathToRegexp(path, options = {}) {\n    const { delimiter = DEFAULT_DELIMITER, end = true, sensitive = false, trailing = true, } = options;\n    const keys = [];\n    const sources = [];\n    const flags = sensitive ? \"\" : \"i\";\n    const paths = Array.isArray(path) ? path : [path];\n    const items = paths.map((path) => path instanceof TokenData ? path : parse(path, options));\n    for (const { tokens } of items) {\n        for (const seq of flatten(tokens, 0, [])) {\n            const regexp = sequenceToRegExp(seq, delimiter, keys);\n            sources.push(regexp);\n        }\n    }\n    let pattern = `^(?:${sources.join(\"|\")})`;\n    if (trailing)\n        pattern += `(?:${escape(delimiter)}$)?`;\n    pattern += end ? \"$\" : `(?=${escape(delimiter)}|$)`;\n    const regexp = new RegExp(pattern, flags);\n    return { regexp, keys };\n}\n/**\n * Generate a flat list of sequence tokens from the given tokens.\n */\nfunction* flatten(tokens, index, init) {\n    if (index === tokens.length) {\n        return yield init;\n    }\n    const token = tokens[index];\n    if (token.type === \"group\") {\n        const fork = init.slice();\n        for (const seq of flatten(token.tokens, 0, fork)) {\n            yield* flatten(tokens, index + 1, seq);\n        }\n    }\n    else {\n        init.push(token);\n    }\n    yield* flatten(tokens, index + 1, init);\n}\n/**\n * Transform a flat sequence of tokens into a regular expression.\n */\nfunction sequenceToRegExp(tokens, delimiter, keys) {\n    let result = \"\";\n    let backtrack = \"\";\n    let isSafeSegmentParam = true;\n    for (let i = 0; i < tokens.length; i++) {\n        const token = tokens[i];\n        if (token.type === \"text\") {\n            result += escape(token.value);\n            backtrack += token.value;\n            isSafeSegmentParam || (isSafeSegmentParam = token.value.includes(delimiter));\n            continue;\n        }\n        if (token.type === \"param\" || token.type === \"wildcard\") {\n            if (!isSafeSegmentParam && !backtrack) {\n                throw new TypeError(`Missing text after \"${token.name}\": ${DEBUG_URL}`);\n            }\n            if (token.type === \"param\") {\n                result += `(${negate(delimiter, isSafeSegmentParam ? \"\" : backtrack)}+)`;\n            }\n            else {\n                result += `([\\\\s\\\\S]+)`;\n            }\n            keys.push(token);\n            backtrack = \"\";\n            isSafeSegmentParam = false;\n            continue;\n        }\n    }\n    return result;\n}\nfunction negate(delimiter, backtrack) {\n    if (backtrack.length < 2) {\n        if (delimiter.length < 2)\n            return `[^${escape(delimiter + backtrack)}]`;\n        return `(?:(?!${escape(delimiter)})[^${escape(backtrack)}])`;\n    }\n    if (delimiter.length < 2) {\n        return `(?:(?!${escape(backtrack)})[^${escape(delimiter)}])`;\n    }\n    return `(?:(?!${escape(backtrack)}|${escape(delimiter)})[\\\\s\\\\S])`;\n}\n/**\n * Stringify token data into a path string.\n */\nfunction stringify(data) {\n    return data.tokens\n        .map(function stringifyToken(token, index, tokens) {\n        if (token.type === \"text\")\n            return escapeText(token.value);\n        if (token.type === \"group\") {\n            return `{${token.tokens.map(stringifyToken).join(\"\")}}`;\n        }\n        const isSafe = isNameSafe(token.name) && isNextNameSafe(tokens[index + 1]);\n        const key = isSafe ? token.name : JSON.stringify(token.name);\n        if (token.type === \"param\")\n            return `:${key}`;\n        if (token.type === \"wildcard\")\n            return `*${key}`;\n        throw new TypeError(`Unexpected token: ${token}`);\n    })\n        .join(\"\");\n}\nfunction isNameSafe(name) {\n    const [first, ...rest] = name;\n    if (!ID_START.test(first))\n        return false;\n    return rest.every((char) => ID_CONTINUE.test(char));\n}\nfunction isNextNameSafe(token) {\n    if ((token === null || token === void 0 ? void 0 : token.type) !== \"text\")\n        return true;\n    return !ID_CONTINUE.test(token.value[0]);\n}\n//# sourceMappingURL=index.js.map","'use strict';\n\nvar m = require('react-dom');\nif (process.env.NODE_ENV === 'production') {\n  exports.createRoot = m.createRoot;\n  exports.hydrateRoot = m.hydrateRoot;\n} else {\n  var i = m.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;\n  exports.createRoot = function(c, o) {\n    i.usingClientEntryPoint = true;\n    try {\n      return m.createRoot(c, o);\n    } finally {\n      i.usingClientEntryPoint = false;\n    }\n  };\n  exports.hydrateRoot = function(c, h, o) {\n    i.usingClientEntryPoint = true;\n    try {\n      return m.hydrateRoot(c, h, o);\n    } finally {\n      i.usingClientEntryPoint = false;\n    }\n  };\n}\n","module.exports = window[\"ReactDOM\"];","/*!\n\tCopyright (c) 2018 Jed Watson.\n\tLicensed under the MIT License (MIT), see\n\thttp://jedwatson.github.io/classnames\n*/\n/* global define */\n\n(function () {\n\t'use strict';\n\n\tvar hasOwn = {}.hasOwnProperty;\n\n\tfunction classNames () {\n\t\tvar classes = '';\n\n\t\tfor (var i = 0; i < arguments.length; i++) {\n\t\t\tvar arg = arguments[i];\n\t\t\tif (arg) {\n\t\t\t\tclasses = appendClass(classes, parseValue(arg));\n\t\t\t}\n\t\t}\n\n\t\treturn classes;\n\t}\n\n\tfunction parseValue (arg) {\n\t\tif (typeof arg === 'string' || typeof arg === 'number') {\n\t\t\treturn arg;\n\t\t}\n\n\t\tif (typeof arg !== 'object') {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (Array.isArray(arg)) {\n\t\t\treturn classNames.apply(null, arg);\n\t\t}\n\n\t\tif (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {\n\t\t\treturn arg.toString();\n\t\t}\n\n\t\tvar classes = '';\n\n\t\tfor (var key in arg) {\n\t\t\tif (hasOwn.call(arg, key) && arg[key]) {\n\t\t\t\tclasses = appendClass(classes, key);\n\t\t\t}\n\t\t}\n\n\t\treturn classes;\n\t}\n\n\tfunction appendClass (value, newClass) {\n\t\tif (!newClass) {\n\t\t\treturn value;\n\t\t}\n\t\n\t\tif (value) {\n\t\t\treturn value + ' ' + newClass;\n\t\t}\n\t\n\t\treturn value + newClass;\n\t}\n\n\tif (typeof module !== 'undefined' && module.exports) {\n\t\tclassNames.default = classNames;\n\t\tmodule.exports = classNames;\n\t} else if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) {\n\t\t// register as 'classnames', consistent with npm package name\n\t\tdefine('classnames', [], function () {\n\t\t\treturn classNames;\n\t\t});\n\t} else {\n\t\twindow.classNames = classNames;\n\t}\n}());\n","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n  , undef;\n\n/**\n * Decode a URI encoded string.\n *\n * @param {String} input The URI encoded string.\n * @returns {String|Null} The decoded string.\n * @api private\n */\nfunction decode(input) {\n  try {\n    return decodeURIComponent(input.replace(/\\+/g, ' '));\n  } catch (e) {\n    return null;\n  }\n}\n\n/**\n * Attempts to encode a given input.\n *\n * @param {String} input The string that needs to be encoded.\n * @returns {String|Null} The encoded string.\n * @api private\n */\nfunction encode(input) {\n  try {\n    return encodeURIComponent(input);\n  } catch (e) {\n    return null;\n  }\n}\n\n/**\n * Simple query string parser.\n *\n * @param {String} query The query string that needs to be parsed.\n * @returns {Object}\n * @api public\n */\nfunction querystring(query) {\n  var parser = /([^=?#&]+)=?([^&]*)/g\n    , result = {}\n    , part;\n\n  while (part = parser.exec(query)) {\n    var key = decode(part[1])\n      , value = decode(part[2]);\n\n    //\n    // Prevent overriding of existing properties. This ensures that build-in\n    // methods like `toString` or __proto__ are not overriden by malicious\n    // querystrings.\n    //\n    // In the case if failed decoding, we want to omit the key/value pairs\n    // from the result.\n    //\n    if (key === null || value === null || key in result) continue;\n    result[key] = value;\n  }\n\n  return result;\n}\n\n/**\n * Transform a query string to an object.\n *\n * @param {Object} obj Object that should be transformed.\n * @param {String} prefix Optional prefix.\n * @returns {String}\n * @api public\n */\nfunction querystringify(obj, prefix) {\n  prefix = prefix || '';\n\n  var pairs = []\n    , value\n    , key;\n\n  //\n  // Optionally prefix with a '?' if needed\n  //\n  if ('string' !== typeof prefix) prefix = '?';\n\n  for (key in obj) {\n    if (has.call(obj, key)) {\n      value = obj[key];\n\n      //\n      // Edge cases where we actually want to encode the value to an empty\n      // string instead of the stringified value.\n      //\n      if (!value && (value === null || value === undef || isNaN(value))) {\n        value = '';\n      }\n\n      key = encode(key);\n      value = encode(value);\n\n      //\n      // If we failed to encode the strings, we should bail out as we don't\n      // want to add invalid strings to the query.\n      //\n      if (key === null || value === null) continue;\n      pairs.push(key +'='+ value);\n    }\n  }\n\n  return pairs.length ? prefix + pairs.join('&') : '';\n}\n\n//\n// Expose the module.\n//\nexports.stringify = querystringify;\nexports.parse = querystring;\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","const __WEBPACK_NAMESPACE_OBJECT__ = window[\"wp\"][\"domReady\"];","function _arrayLikeToArray(r, a) {\n  (null == a || a > r.length) && (a = r.length);\n  for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];\n  return n;\n}\nexport { _arrayLikeToArray as default };","import arrayLikeToArray from \"./arrayLikeToArray.js\";\nfunction _unsupportedIterableToArray(r, a) {\n  if (r) {\n    if (\"string\" == typeof r) return arrayLikeToArray(r, a);\n    var t = {}.toString.call(r).slice(8, -1);\n    return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? arrayLikeToArray(r, a) : void 0;\n  }\n}\nexport { _unsupportedIterableToArray as default };","import arrayWithHoles from \"./arrayWithHoles.js\";\nimport iterableToArrayLimit from \"./iterableToArrayLimit.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableRest from \"./nonIterableRest.js\";\nfunction _slicedToArray(r, e) {\n  return arrayWithHoles(r) || iterableToArrayLimit(r, e) || unsupportedIterableToArray(r, e) || nonIterableRest();\n}\nexport { _slicedToArray as default };","function _arrayWithHoles(r) {\n  if (Array.isArray(r)) return r;\n}\nexport { _arrayWithHoles as default };","function _iterableToArrayLimit(r, l) {\n  var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"];\n  if (null != t) {\n    var e,\n      n,\n      i,\n      u,\n      a = [],\n      f = !0,\n      o = !1;\n    try {\n      if (i = (t = t.call(r)).next, 0 === l) {\n        if (Object(t) !== t) return;\n        f = !1;\n      } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);\n    } catch (r) {\n      o = !0, n = r;\n    } finally {\n      try {\n        if (!f && null != t[\"return\"] && (u = t[\"return\"](), Object(u) !== u)) return;\n      } finally {\n        if (o) throw n;\n      }\n    }\n    return a;\n  }\n}\nexport { _iterableToArrayLimit as default };","function _nonIterableRest() {\n  throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\nexport { _nonIterableRest as default };","const __WEBPACK_NAMESPACE_OBJECT__ = window[\"React\"];","function _typeof(o) {\n  \"@babel/helpers - typeof\";\n\n  return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n    return typeof o;\n  } : function (o) {\n    return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n  }, _typeof(o);\n}\nexport { _typeof as default };","import _typeof from \"./typeof.js\";\nimport toPrimitive from \"./toPrimitive.js\";\nfunction toPropertyKey(t) {\n  var i = toPrimitive(t, \"string\");\n  return \"symbol\" == _typeof(i) ? i : i + \"\";\n}\nexport { toPropertyKey as default };","import _typeof from \"./typeof.js\";\nfunction toPrimitive(t, r) {\n  if (\"object\" != _typeof(t) || !t) return t;\n  var e = t[Symbol.toPrimitive];\n  if (void 0 !== e) {\n    var i = e.call(t, r || \"default\");\n    if (\"object\" != _typeof(i)) return i;\n    throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n  }\n  return (\"string\" === r ? String : Number)(t);\n}\nexport { toPrimitive as default };","import toPropertyKey from \"./toPropertyKey.js\";\nfunction _defineProperties(e, r) {\n  for (var t = 0; t < r.length; t++) {\n    var o = r[t];\n    o.enumerable = o.enumerable || !1, o.configurable = !0, \"value\" in o && (o.writable = !0), Object.defineProperty(e, toPropertyKey(o.key), o);\n  }\n}\nfunction _createClass(e, r, t) {\n  return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, \"prototype\", {\n    writable: !1\n  }), e;\n}\nexport { _createClass as default };","function _getPrototypeOf(t) {\n  return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) {\n    return t.__proto__ || Object.getPrototypeOf(t);\n  }, _getPrototypeOf(t);\n}\nexport { _getPrototypeOf as default };","function _setPrototypeOf(t, e) {\n  return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {\n    return t.__proto__ = e, t;\n  }, _setPrototypeOf(t, e);\n}\nexport { _setPrototypeOf as default };","import toPropertyKey from \"./toPropertyKey.js\";\nfunction _defineProperty(e, r, t) {\n  return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {\n    value: t,\n    enumerable: !0,\n    configurable: !0,\n    writable: !0\n  }) : e[r] = t, e;\n}\nexport { _defineProperty as default };","const __WEBPACK_NAMESPACE_OBJECT__ = window[\"wp\"][\"element\"];","import _extends from '@babel/runtime/helpers/esm/extends';\n\n/**\r\n * Actions represent the type of change to a location value.\r\n *\r\n * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#action\r\n */\nvar Action;\n\n(function (Action) {\n  /**\r\n   * A POP indicates a change to an arbitrary index in the history stack, such\r\n   * as a back or forward navigation. It does not describe the direction of the\r\n   * navigation, only that the current index changed.\r\n   *\r\n   * Note: This is the default action for newly created history objects.\r\n   */\n  Action[\"Pop\"] = \"POP\";\n  /**\r\n   * A PUSH indicates a new entry being added to the history stack, such as when\r\n   * a link is clicked and a new page loads. When this happens, all subsequent\r\n   * entries in the stack are lost.\r\n   */\n\n  Action[\"Push\"] = \"PUSH\";\n  /**\r\n   * A REPLACE indicates the entry at the current index in the history stack\r\n   * being replaced by a new one.\r\n   */\n\n  Action[\"Replace\"] = \"REPLACE\";\n})(Action || (Action = {}));\n\nvar readOnly = process.env.NODE_ENV !== \"production\" ? function (obj) {\n  return Object.freeze(obj);\n} : function (obj) {\n  return obj;\n};\n\nfunction warning(cond, message) {\n  if (!cond) {\n    // eslint-disable-next-line no-console\n    if (typeof console !== 'undefined') console.warn(message);\n\n    try {\n      // Welcome to debugging history!\n      //\n      // This error is thrown as a convenience so you can more easily\n      // find the source for a warning that appears in the console by\n      // enabling \"pause on exceptions\" in your JavaScript debugger.\n      throw new Error(message); // eslint-disable-next-line no-empty\n    } catch (e) {}\n  }\n}\n\nvar BeforeUnloadEventType = 'beforeunload';\nvar HashChangeEventType = 'hashchange';\nvar PopStateEventType = 'popstate';\n/**\r\n * Browser history stores the location in regular URLs. This is the standard for\r\n * most web apps, but it requires some configuration on the server to ensure you\r\n * serve the same app at multiple URLs.\r\n *\r\n * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#createbrowserhistory\r\n */\n\nfunction createBrowserHistory(options) {\n  if (options === void 0) {\n    options = {};\n  }\n\n  var _options = options,\n      _options$window = _options.window,\n      window = _options$window === void 0 ? document.defaultView : _options$window;\n  var globalHistory = window.history;\n\n  function getIndexAndLocation() {\n    var _window$location = window.location,\n        pathname = _window$location.pathname,\n        search = _window$location.search,\n        hash = _window$location.hash;\n    var state = globalHistory.state || {};\n    return [state.idx, readOnly({\n      pathname: pathname,\n      search: search,\n      hash: hash,\n      state: state.usr || null,\n      key: state.key || 'default'\n    })];\n  }\n\n  var blockedPopTx = null;\n\n  function handlePop() {\n    if (blockedPopTx) {\n      blockers.call(blockedPopTx);\n      blockedPopTx = null;\n    } else {\n      var nextAction = Action.Pop;\n\n      var _getIndexAndLocation = getIndexAndLocation(),\n          nextIndex = _getIndexAndLocation[0],\n          nextLocation = _getIndexAndLocation[1];\n\n      if (blockers.length) {\n        if (nextIndex != null) {\n          var delta = index - nextIndex;\n\n          if (delta) {\n            // Revert the POP\n            blockedPopTx = {\n              action: nextAction,\n              location: nextLocation,\n              retry: function retry() {\n                go(delta * -1);\n              }\n            };\n            go(delta);\n          }\n        } else {\n          // Trying to POP to a location with no index. We did not create\n          // this location, so we can't effectively block the navigation.\n          process.env.NODE_ENV !== \"production\" ? warning(false, // TODO: Write up a doc that explains our blocking strategy in\n          // detail and link to it here so people can understand better what\n          // is going on and how to avoid it.\n          \"You are trying to block a POP navigation to a location that was not \" + \"created by the history library. The block will fail silently in \" + \"production, but in general you should do all navigation with the \" + \"history library (instead of using window.history.pushState directly) \" + \"to avoid this situation.\") : void 0;\n        }\n      } else {\n        applyTx(nextAction);\n      }\n    }\n  }\n\n  window.addEventListener(PopStateEventType, handlePop);\n  var action = Action.Pop;\n\n  var _getIndexAndLocation2 = getIndexAndLocation(),\n      index = _getIndexAndLocation2[0],\n      location = _getIndexAndLocation2[1];\n\n  var listeners = createEvents();\n  var blockers = createEvents();\n\n  if (index == null) {\n    index = 0;\n    globalHistory.replaceState(_extends({}, globalHistory.state, {\n      idx: index\n    }), '');\n  }\n\n  function createHref(to) {\n    return typeof to === 'string' ? to : createPath(to);\n  } // state defaults to `null` because `window.history.state` does\n\n\n  function getNextLocation(to, state) {\n    if (state === void 0) {\n      state = null;\n    }\n\n    return readOnly(_extends({\n      pathname: location.pathname,\n      hash: '',\n      search: ''\n    }, typeof to === 'string' ? parsePath(to) : to, {\n      state: state,\n      key: createKey()\n    }));\n  }\n\n  function getHistoryStateAndUrl(nextLocation, index) {\n    return [{\n      usr: nextLocation.state,\n      key: nextLocation.key,\n      idx: index\n    }, createHref(nextLocation)];\n  }\n\n  function allowTx(action, location, retry) {\n    return !blockers.length || (blockers.call({\n      action: action,\n      location: location,\n      retry: retry\n    }), false);\n  }\n\n  function applyTx(nextAction) {\n    action = nextAction;\n\n    var _getIndexAndLocation3 = getIndexAndLocation();\n\n    index = _getIndexAndLocation3[0];\n    location = _getIndexAndLocation3[1];\n    listeners.call({\n      action: action,\n      location: location\n    });\n  }\n\n  function push(to, state) {\n    var nextAction = Action.Push;\n    var nextLocation = getNextLocation(to, state);\n\n    function retry() {\n      push(to, state);\n    }\n\n    if (allowTx(nextAction, nextLocation, retry)) {\n      var _getHistoryStateAndUr = getHistoryStateAndUrl(nextLocation, index + 1),\n          historyState = _getHistoryStateAndUr[0],\n          url = _getHistoryStateAndUr[1]; // TODO: Support forced reloading\n      // try...catch because iOS limits us to 100 pushState calls :/\n\n\n      try {\n        globalHistory.pushState(historyState, '', url);\n      } catch (error) {\n        // They are going to lose state here, but there is no real\n        // way to warn them about it since the page will refresh...\n        window.location.assign(url);\n      }\n\n      applyTx(nextAction);\n    }\n  }\n\n  function replace(to, state) {\n    var nextAction = Action.Replace;\n    var nextLocation = getNextLocation(to, state);\n\n    function retry() {\n      replace(to, state);\n    }\n\n    if (allowTx(nextAction, nextLocation, retry)) {\n      var _getHistoryStateAndUr2 = getHistoryStateAndUrl(nextLocation, index),\n          historyState = _getHistoryStateAndUr2[0],\n          url = _getHistoryStateAndUr2[1]; // TODO: Support forced reloading\n\n\n      globalHistory.replaceState(historyState, '', url);\n      applyTx(nextAction);\n    }\n  }\n\n  function go(delta) {\n    globalHistory.go(delta);\n  }\n\n  var history = {\n    get action() {\n      return action;\n    },\n\n    get location() {\n      return location;\n    },\n\n    createHref: createHref,\n    push: push,\n    replace: replace,\n    go: go,\n    back: function back() {\n      go(-1);\n    },\n    forward: function forward() {\n      go(1);\n    },\n    listen: function listen(listener) {\n      return listeners.push(listener);\n    },\n    block: function block(blocker) {\n      var unblock = blockers.push(blocker);\n\n      if (blockers.length === 1) {\n        window.addEventListener(BeforeUnloadEventType, promptBeforeUnload);\n      }\n\n      return function () {\n        unblock(); // Remove the beforeunload listener so the document may\n        // still be salvageable in the pagehide event.\n        // See https://html.spec.whatwg.org/#unloading-documents\n\n        if (!blockers.length) {\n          window.removeEventListener(BeforeUnloadEventType, promptBeforeUnload);\n        }\n      };\n    }\n  };\n  return history;\n}\n/**\r\n * Hash history stores the location in window.location.hash. This makes it ideal\r\n * for situations where you don't want to send the location to the server for\r\n * some reason, either because you do cannot configure it or the URL space is\r\n * reserved for something else.\r\n *\r\n * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#createhashhistory\r\n */\n\nfunction createHashHistory(options) {\n  if (options === void 0) {\n    options = {};\n  }\n\n  var _options2 = options,\n      _options2$window = _options2.window,\n      window = _options2$window === void 0 ? document.defaultView : _options2$window;\n  var globalHistory = window.history;\n\n  function getIndexAndLocation() {\n    var _parsePath = parsePath(window.location.hash.substr(1)),\n        _parsePath$pathname = _parsePath.pathname,\n        pathname = _parsePath$pathname === void 0 ? '/' : _parsePath$pathname,\n        _parsePath$search = _parsePath.search,\n        search = _parsePath$search === void 0 ? '' : _parsePath$search,\n        _parsePath$hash = _parsePath.hash,\n        hash = _parsePath$hash === void 0 ? '' : _parsePath$hash;\n\n    var state = globalHistory.state || {};\n    return [state.idx, readOnly({\n      pathname: pathname,\n      search: search,\n      hash: hash,\n      state: state.usr || null,\n      key: state.key || 'default'\n    })];\n  }\n\n  var blockedPopTx = null;\n\n  function handlePop() {\n    if (blockedPopTx) {\n      blockers.call(blockedPopTx);\n      blockedPopTx = null;\n    } else {\n      var nextAction = Action.Pop;\n\n      var _getIndexAndLocation4 = getIndexAndLocation(),\n          nextIndex = _getIndexAndLocation4[0],\n          nextLocation = _getIndexAndLocation4[1];\n\n      if (blockers.length) {\n        if (nextIndex != null) {\n          var delta = index - nextIndex;\n\n          if (delta) {\n            // Revert the POP\n            blockedPopTx = {\n              action: nextAction,\n              location: nextLocation,\n              retry: function retry() {\n                go(delta * -1);\n              }\n            };\n            go(delta);\n          }\n        } else {\n          // Trying to POP to a location with no index. We did not create\n          // this location, so we can't effectively block the navigation.\n          process.env.NODE_ENV !== \"production\" ? warning(false, // TODO: Write up a doc that explains our blocking strategy in\n          // detail and link to it here so people can understand better\n          // what is going on and how to avoid it.\n          \"You are trying to block a POP navigation to a location that was not \" + \"created by the history library. The block will fail silently in \" + \"production, but in general you should do all navigation with the \" + \"history library (instead of using window.history.pushState directly) \" + \"to avoid this situation.\") : void 0;\n        }\n      } else {\n        applyTx(nextAction);\n      }\n    }\n  }\n\n  window.addEventListener(PopStateEventType, handlePop); // popstate does not fire on hashchange in IE 11 and old (trident) Edge\n  // https://developer.mozilla.org/de/docs/Web/API/Window/popstate_event\n\n  window.addEventListener(HashChangeEventType, function () {\n    var _getIndexAndLocation5 = getIndexAndLocation(),\n        nextLocation = _getIndexAndLocation5[1]; // Ignore extraneous hashchange events.\n\n\n    if (createPath(nextLocation) !== createPath(location)) {\n      handlePop();\n    }\n  });\n  var action = Action.Pop;\n\n  var _getIndexAndLocation6 = getIndexAndLocation(),\n      index = _getIndexAndLocation6[0],\n      location = _getIndexAndLocation6[1];\n\n  var listeners = createEvents();\n  var blockers = createEvents();\n\n  if (index == null) {\n    index = 0;\n    globalHistory.replaceState(_extends({}, globalHistory.state, {\n      idx: index\n    }), '');\n  }\n\n  function getBaseHref() {\n    var base = document.querySelector('base');\n    var href = '';\n\n    if (base && base.getAttribute('href')) {\n      var url = window.location.href;\n      var hashIndex = url.indexOf('#');\n      href = hashIndex === -1 ? url : url.slice(0, hashIndex);\n    }\n\n    return href;\n  }\n\n  function createHref(to) {\n    return getBaseHref() + '#' + (typeof to === 'string' ? to : createPath(to));\n  }\n\n  function getNextLocation(to, state) {\n    if (state === void 0) {\n      state = null;\n    }\n\n    return readOnly(_extends({\n      pathname: location.pathname,\n      hash: '',\n      search: ''\n    }, typeof to === 'string' ? parsePath(to) : to, {\n      state: state,\n      key: createKey()\n    }));\n  }\n\n  function getHistoryStateAndUrl(nextLocation, index) {\n    return [{\n      usr: nextLocation.state,\n      key: nextLocation.key,\n      idx: index\n    }, createHref(nextLocation)];\n  }\n\n  function allowTx(action, location, retry) {\n    return !blockers.length || (blockers.call({\n      action: action,\n      location: location,\n      retry: retry\n    }), false);\n  }\n\n  function applyTx(nextAction) {\n    action = nextAction;\n\n    var _getIndexAndLocation7 = getIndexAndLocation();\n\n    index = _getIndexAndLocation7[0];\n    location = _getIndexAndLocation7[1];\n    listeners.call({\n      action: action,\n      location: location\n    });\n  }\n\n  function push(to, state) {\n    var nextAction = Action.Push;\n    var nextLocation = getNextLocation(to, state);\n\n    function retry() {\n      push(to, state);\n    }\n\n    process.env.NODE_ENV !== \"production\" ? warning(nextLocation.pathname.charAt(0) === '/', \"Relative pathnames are not supported in hash history.push(\" + JSON.stringify(to) + \")\") : void 0;\n\n    if (allowTx(nextAction, nextLocation, retry)) {\n      var _getHistoryStateAndUr3 = getHistoryStateAndUrl(nextLocation, index + 1),\n          historyState = _getHistoryStateAndUr3[0],\n          url = _getHistoryStateAndUr3[1]; // TODO: Support forced reloading\n      // try...catch because iOS limits us to 100 pushState calls :/\n\n\n      try {\n        globalHistory.pushState(historyState, '', url);\n      } catch (error) {\n        // They are going to lose state here, but there is no real\n        // way to warn them about it since the page will refresh...\n        window.location.assign(url);\n      }\n\n      applyTx(nextAction);\n    }\n  }\n\n  function replace(to, state) {\n    var nextAction = Action.Replace;\n    var nextLocation = getNextLocation(to, state);\n\n    function retry() {\n      replace(to, state);\n    }\n\n    process.env.NODE_ENV !== \"production\" ? warning(nextLocation.pathname.charAt(0) === '/', \"Relative pathnames are not supported in hash history.replace(\" + JSON.stringify(to) + \")\") : void 0;\n\n    if (allowTx(nextAction, nextLocation, retry)) {\n      var _getHistoryStateAndUr4 = getHistoryStateAndUrl(nextLocation, index),\n          historyState = _getHistoryStateAndUr4[0],\n          url = _getHistoryStateAndUr4[1]; // TODO: Support forced reloading\n\n\n      globalHistory.replaceState(historyState, '', url);\n      applyTx(nextAction);\n    }\n  }\n\n  function go(delta) {\n    globalHistory.go(delta);\n  }\n\n  var history = {\n    get action() {\n      return action;\n    },\n\n    get location() {\n      return location;\n    },\n\n    createHref: createHref,\n    push: push,\n    replace: replace,\n    go: go,\n    back: function back() {\n      go(-1);\n    },\n    forward: function forward() {\n      go(1);\n    },\n    listen: function listen(listener) {\n      return listeners.push(listener);\n    },\n    block: function block(blocker) {\n      var unblock = blockers.push(blocker);\n\n      if (blockers.length === 1) {\n        window.addEventListener(BeforeUnloadEventType, promptBeforeUnload);\n      }\n\n      return function () {\n        unblock(); // Remove the beforeunload listener so the document may\n        // still be salvageable in the pagehide event.\n        // See https://html.spec.whatwg.org/#unloading-documents\n\n        if (!blockers.length) {\n          window.removeEventListener(BeforeUnloadEventType, promptBeforeUnload);\n        }\n      };\n    }\n  };\n  return history;\n}\n/**\r\n * Memory history stores the current location in memory. It is designed for use\r\n * in stateful non-browser environments like tests and React Native.\r\n *\r\n * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#creatememoryhistory\r\n */\n\nfunction createMemoryHistory(options) {\n  if (options === void 0) {\n    options = {};\n  }\n\n  var _options3 = options,\n      _options3$initialEntr = _options3.initialEntries,\n      initialEntries = _options3$initialEntr === void 0 ? ['/'] : _options3$initialEntr,\n      initialIndex = _options3.initialIndex;\n  var entries = initialEntries.map(function (entry) {\n    var location = readOnly(_extends({\n      pathname: '/',\n      search: '',\n      hash: '',\n      state: null,\n      key: createKey()\n    }, typeof entry === 'string' ? parsePath(entry) : entry));\n    process.env.NODE_ENV !== \"production\" ? warning(location.pathname.charAt(0) === '/', \"Relative pathnames are not supported in createMemoryHistory({ initialEntries }) (invalid entry: \" + JSON.stringify(entry) + \")\") : void 0;\n    return location;\n  });\n  var index = clamp(initialIndex == null ? entries.length - 1 : initialIndex, 0, entries.length - 1);\n  var action = Action.Pop;\n  var location = entries[index];\n  var listeners = createEvents();\n  var blockers = createEvents();\n\n  function createHref(to) {\n    return typeof to === 'string' ? to : createPath(to);\n  }\n\n  function getNextLocation(to, state) {\n    if (state === void 0) {\n      state = null;\n    }\n\n    return readOnly(_extends({\n      pathname: location.pathname,\n      search: '',\n      hash: ''\n    }, typeof to === 'string' ? parsePath(to) : to, {\n      state: state,\n      key: createKey()\n    }));\n  }\n\n  function allowTx(action, location, retry) {\n    return !blockers.length || (blockers.call({\n      action: action,\n      location: location,\n      retry: retry\n    }), false);\n  }\n\n  function applyTx(nextAction, nextLocation) {\n    action = nextAction;\n    location = nextLocation;\n    listeners.call({\n      action: action,\n      location: location\n    });\n  }\n\n  function push(to, state) {\n    var nextAction = Action.Push;\n    var nextLocation = getNextLocation(to, state);\n\n    function retry() {\n      push(to, state);\n    }\n\n    process.env.NODE_ENV !== \"production\" ? warning(location.pathname.charAt(0) === '/', \"Relative pathnames are not supported in memory history.push(\" + JSON.stringify(to) + \")\") : void 0;\n\n    if (allowTx(nextAction, nextLocation, retry)) {\n      index += 1;\n      entries.splice(index, entries.length, nextLocation);\n      applyTx(nextAction, nextLocation);\n    }\n  }\n\n  function replace(to, state) {\n    var nextAction = Action.Replace;\n    var nextLocation = getNextLocation(to, state);\n\n    function retry() {\n      replace(to, state);\n    }\n\n    process.env.NODE_ENV !== \"production\" ? warning(location.pathname.charAt(0) === '/', \"Relative pathnames are not supported in memory history.replace(\" + JSON.stringify(to) + \")\") : void 0;\n\n    if (allowTx(nextAction, nextLocation, retry)) {\n      entries[index] = nextLocation;\n      applyTx(nextAction, nextLocation);\n    }\n  }\n\n  function go(delta) {\n    var nextIndex = clamp(index + delta, 0, entries.length - 1);\n    var nextAction = Action.Pop;\n    var nextLocation = entries[nextIndex];\n\n    function retry() {\n      go(delta);\n    }\n\n    if (allowTx(nextAction, nextLocation, retry)) {\n      index = nextIndex;\n      applyTx(nextAction, nextLocation);\n    }\n  }\n\n  var history = {\n    get index() {\n      return index;\n    },\n\n    get action() {\n      return action;\n    },\n\n    get location() {\n      return location;\n    },\n\n    createHref: createHref,\n    push: push,\n    replace: replace,\n    go: go,\n    back: function back() {\n      go(-1);\n    },\n    forward: function forward() {\n      go(1);\n    },\n    listen: function listen(listener) {\n      return listeners.push(listener);\n    },\n    block: function block(blocker) {\n      return blockers.push(blocker);\n    }\n  };\n  return history;\n} ////////////////////////////////////////////////////////////////////////////////\n// UTILS\n////////////////////////////////////////////////////////////////////////////////\n\nfunction clamp(n, lowerBound, upperBound) {\n  return Math.min(Math.max(n, lowerBound), upperBound);\n}\n\nfunction promptBeforeUnload(event) {\n  // Cancel the event.\n  event.preventDefault(); // Chrome (and legacy IE) requires returnValue to be set.\n\n  event.returnValue = '';\n}\n\nfunction createEvents() {\n  var handlers = [];\n  return {\n    get length() {\n      return handlers.length;\n    },\n\n    push: function push(fn) {\n      handlers.push(fn);\n      return function () {\n        handlers = handlers.filter(function (handler) {\n          return handler !== fn;\n        });\n      };\n    },\n    call: function call(arg) {\n      handlers.forEach(function (fn) {\n        return fn && fn(arg);\n      });\n    }\n  };\n}\n\nfunction createKey() {\n  return Math.random().toString(36).substr(2, 8);\n}\n/**\r\n * Creates a string URL path from the given pathname, search, and hash components.\r\n *\r\n * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#createpath\r\n */\n\n\nfunction createPath(_ref) {\n  var _ref$pathname = _ref.pathname,\n      pathname = _ref$pathname === void 0 ? '/' : _ref$pathname,\n      _ref$search = _ref.search,\n      search = _ref$search === void 0 ? '' : _ref$search,\n      _ref$hash = _ref.hash,\n      hash = _ref$hash === void 0 ? '' : _ref$hash;\n  if (search && search !== '?') pathname += search.charAt(0) === '?' ? search : '?' + search;\n  if (hash && hash !== '#') pathname += hash.charAt(0) === '#' ? hash : '#' + hash;\n  return pathname;\n}\n/**\r\n * Parses a string URL path into its separate pathname, search, and hash components.\r\n *\r\n * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#parsepath\r\n */\n\nfunction parsePath(path) {\n  var parsedPath = {};\n\n  if (path) {\n    var hashIndex = path.indexOf('#');\n\n    if (hashIndex >= 0) {\n      parsedPath.hash = path.substr(hashIndex);\n      path = path.substr(0, hashIndex);\n    }\n\n    var searchIndex = path.indexOf('?');\n\n    if (searchIndex >= 0) {\n      parsedPath.search = path.substr(searchIndex);\n      path = path.substr(0, searchIndex);\n    }\n\n    if (path) {\n      parsedPath.pathname = path;\n    }\n  }\n\n  return parsedPath;\n}\n\nexport { Action, createBrowserHistory, createHashHistory, createMemoryHistory, createPath, parsePath };\n//# sourceMappingURL=index.js.map\n","import qs from \"querystringify\";\nexport function locationToRoute(location) {\n  // location comes from the history package\n  return {\n    path: location.pathname,\n    hash: location.hash,\n    query: qs.parse(location.search),\n  };\n}\n","function _extends() {\n  return _extends = Object.assign ? Object.assign.bind() : function (n) {\n    for (var e = 1; e < arguments.length; e++) {\n      var t = arguments[e];\n      for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);\n    }\n    return n;\n  }, _extends.apply(null, arguments);\n}\nexport { _extends as default };","import { createBrowserHistory } from \"history\";\nimport { locationToRoute } from \"./utils\";\n\nexport const history = createBrowserHistory();\nexport const RouterContext = wp.element.createContext({\n  route: locationToRoute(history.location),\n});\n","import { RouterContext } from \"./context\";\nconst { useContext } = wp.element;\nimport { match } from \"path-to-regexp\";\nlet prev = \"\";\n\nexport function Route({ path, onRoute, children }) {\n  // Extract route from RouterContext\n  const { route } = useContext(RouterContext);\n\n  const checkMatch = match(`${path}`);\n  const matched = checkMatch(`${route.hash.substr(1)}`);\n\n  if (!matched) {\n    return null;\n  }\n\n  if (onRoute) {\n    if (prev !== matched.path) {\n      onRoute();\n    }\n    prev = matched.path;\n  }\n\n  return <div>{wp.element.cloneElement(children, { route: matched })}</div>;\n}\n","const { useContext } = wp.element;\nimport { RouterContext, history } from \"./context\";\nimport classNames from \"classnames\";\nimport { match } from \"path-to-regexp\";\n\nexport function Link(props) {\n  const { to, onClick, children, activeClassName } = props;\n  const { route } = useContext(RouterContext);\n\n  let state = { ...props };\n  delete state.activeClassName;\n\n  const isActive = () => {\n    const checkMatch = match(`${to}`);\n    return checkMatch(`${route.hash.substr(1)}`);\n  };\n\n  const handleClick = (e) => {\n    e.preventDefault();\n    \n    if (route.path === to && ! e.target.classList.contains('hfe-user-icon')) {\n      return;\n    }\n    // Trigger onClick prop manually.\n    if (onClick) {\n      onClick(e);\n    }\n\n    if (to === \"elementor-hf\" && hfeSettingsData.header_footer_builder ) {\n      window.location.href = hfeSettingsData.header_footer_builder;\n      return;\n    }\n\n    const { search } = history.location;\n    const expectedPage = \"admin.php?page=hfe\";\n    const currentHash = window.location.hash;\n\n      // Verify if the current URL is as expected\n      if (!search.includes(expectedPage) || !currentHash.includes(to)) {\n        // Redirect to the expected URL\n        window.location.href = `${hfeSettingsData.hfe_settings_url}#${to}`;\n        return;\n    }\n\n    if (!to.includes('settings')) {\n      // Remove &tab from the URL.\n      const newSearch = search.replace(/&tab=[^&]*/, '');\n      // Use history API to navigate page.\n      history.push(`${newSearch}#${to}`);\n    } else {\n      const changeSearch = search + '&tab=1';\n\n      if (e.target.classList.contains('hfe-user-icon') && window.location.hash.includes('settings')) {\n        window.location.href = `${changeSearch}#${to}`;\n      } else {\n        // Use history API to navigate page.\n        history.push(`${search}#${to}`);\n      }\n    }\n\n  };\n\n  return (\n    <a\n      {...state}\n      className={classNames({ [activeClassName]: isActive() }, props.className)}\n      onClick={handleClick}\n    >\n      {children}\n    </a>\n  );\n}\n","import { Component } from \"@wordpress/element\";\nimport { locationToRoute } from \"./utils\";\nimport { history, RouterContext } from \"./context\";\nimport { Route } from \"./route\";\nimport { Link } from \"./link\";\nimport { match } from \"path-to-regexp\";\n\nclass Router extends Component {\n  constructor(props) {\n    super(props);\n\n    // Convert our routes into an array for easy 404 checking\n    this.routes = Object.keys(props.routes).map(\n      (key) => props.routes[key].path\n    );\n\n    // Listen for path changes from the history API\n    this.unlisten = history.listen(this.handleRouteChange);\n\n    const route = locationToRoute(history.location);\n    const { search } = history.location;\n\n    // Define the initial RouterContext value\n    this.state = {\n      route,\n      defaultRoute: props?.defaultRoute\n        ? `${search}#${props?.defaultRoute}`\n        : `${search}#/`,\n    };\n  }\n\n  componentWillUnmount() {\n    // Stop listening for changes if the Router component unmounts\n    this.unlisten();\n  }\n\n  handleRouteChange = (location) => {\n    localStorage.setItem('hfeSelectedItemId', '1');\n    const route = locationToRoute(location?.location);\n    this.setState({ route: route });\n  };\n\n  render() {\n    // Define our variables\n    const { children, NotFound } = this.props;\n    const { route, defaultRoute } = this.state;\n\n    if (!route.hash) {\n      history.push(defaultRoute);\n      return <div></div>;\n    }\n\n    let matched = false;\n    // match route\n    (this.routes || []).forEach((name) => {\n      const checkMatch = match(route.hash.substr(1));\n      const isMatched = checkMatch(`${route.hash.substr(1)}`);\n      if (!isMatched) {\n        return;\n      }\n      matched = {\n        name,\n        data: isMatched,\n      };\n    });\n\n    const routerContextValue = { route, matched };\n\n    // Check if 404 if no route matched\n    const is404 = !matched;\n\n    return (\n      <RouterContext.Provider value={routerContextValue}>\n        {is404 ? <div>Not found</div> : children}\n      </RouterContext.Provider>\n    );\n  }\n}\nexport { history, RouterContext, Router, Route, Link };\n","function _classCallCheck(a, n) {\n  if (!(a instanceof n)) throw new TypeError(\"Cannot call a class as a function\");\n}\nexport { _classCallCheck as default };","import _typeof from \"./typeof.js\";\nimport assertThisInitialized from \"./assertThisInitialized.js\";\nfunction _possibleConstructorReturn(t, e) {\n  if (e && (\"object\" == _typeof(e) || \"function\" == typeof e)) return e;\n  if (void 0 !== e) throw new TypeError(\"Derived constructors may only return object or undefined\");\n  return assertThisInitialized(t);\n}\nexport { _possibleConstructorReturn as default };","function _assertThisInitialized(e) {\n  if (void 0 === e) throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n  return e;\n}\nexport { _assertThisInitialized as default };","import setPrototypeOf from \"./setPrototypeOf.js\";\nfunction _inherits(t, e) {\n  if (\"function\" != typeof e && null !== e) throw new TypeError(\"Super expression must either be null or a function\");\n  t.prototype = Object.create(e && e.prototype, {\n    constructor: {\n      value: t,\n      writable: !0,\n      configurable: !0\n    }\n  }), Object.defineProperty(t, \"prototype\", {\n    writable: !1\n  }), e && setPrototypeOf(t, e);\n}\nexport { _inherits as default };","const __WEBPACK_NAMESPACE_OBJECT__ = window[\"ReactJSXRuntime\"];","const CLASS_PART_SEPARATOR = '-';\nconst createClassGroupUtils = config => {\n  const classMap = createClassMap(config);\n  const {\n    conflictingClassGroups,\n    conflictingClassGroupModifiers\n  } = config;\n  const getClassGroupId = className => {\n    const classParts = className.split(CLASS_PART_SEPARATOR);\n    // Classes like `-inset-1` produce an empty string as first classPart. We assume that classes for negative values are used correctly and remove it from classParts.\n    if (classParts[0] === '' && classParts.length !== 1) {\n      classParts.shift();\n    }\n    return getGroupRecursive(classParts, classMap) || getGroupIdForArbitraryProperty(className);\n  };\n  const getConflictingClassGroupIds = (classGroupId, hasPostfixModifier) => {\n    const conflicts = conflictingClassGroups[classGroupId] || [];\n    if (hasPostfixModifier && conflictingClassGroupModifiers[classGroupId]) {\n      return [...conflicts, ...conflictingClassGroupModifiers[classGroupId]];\n    }\n    return conflicts;\n  };\n  return {\n    getClassGroupId,\n    getConflictingClassGroupIds\n  };\n};\nconst getGroupRecursive = (classParts, classPartObject) => {\n  if (classParts.length === 0) {\n    return classPartObject.classGroupId;\n  }\n  const currentClassPart = classParts[0];\n  const nextClassPartObject = classPartObject.nextPart.get(currentClassPart);\n  const classGroupFromNextClassPart = nextClassPartObject ? getGroupRecursive(classParts.slice(1), nextClassPartObject) : undefined;\n  if (classGroupFromNextClassPart) {\n    return classGroupFromNextClassPart;\n  }\n  if (classPartObject.validators.length === 0) {\n    return undefined;\n  }\n  const classRest = classParts.join(CLASS_PART_SEPARATOR);\n  return classPartObject.validators.find(({\n    validator\n  }) => validator(classRest))?.classGroupId;\n};\nconst arbitraryPropertyRegex = /^\\[(.+)\\]$/;\nconst getGroupIdForArbitraryProperty = className => {\n  if (arbitraryPropertyRegex.test(className)) {\n    const arbitraryPropertyClassName = arbitraryPropertyRegex.exec(className)[1];\n    const property = arbitraryPropertyClassName?.substring(0, arbitraryPropertyClassName.indexOf(':'));\n    if (property) {\n      // I use two dots here because one dot is used as prefix for class groups in plugins\n      return 'arbitrary..' + property;\n    }\n  }\n};\n/**\n * Exported for testing only\n */\nconst createClassMap = config => {\n  const {\n    theme,\n    prefix\n  } = config;\n  const classMap = {\n    nextPart: new Map(),\n    validators: []\n  };\n  const prefixedClassGroupEntries = getPrefixedClassGroupEntries(Object.entries(config.classGroups), prefix);\n  prefixedClassGroupEntries.forEach(([classGroupId, classGroup]) => {\n    processClassesRecursively(classGroup, classMap, classGroupId, theme);\n  });\n  return classMap;\n};\nconst processClassesRecursively = (classGroup, classPartObject, classGroupId, theme) => {\n  classGroup.forEach(classDefinition => {\n    if (typeof classDefinition === 'string') {\n      const classPartObjectToEdit = classDefinition === '' ? classPartObject : getPart(classPartObject, classDefinition);\n      classPartObjectToEdit.classGroupId = classGroupId;\n      return;\n    }\n    if (typeof classDefinition === 'function') {\n      if (isThemeGetter(classDefinition)) {\n        processClassesRecursively(classDefinition(theme), classPartObject, classGroupId, theme);\n        return;\n      }\n      classPartObject.validators.push({\n        validator: classDefinition,\n        classGroupId\n      });\n      return;\n    }\n    Object.entries(classDefinition).forEach(([key, classGroup]) => {\n      processClassesRecursively(classGroup, getPart(classPartObject, key), classGroupId, theme);\n    });\n  });\n};\nconst getPart = (classPartObject, path) => {\n  let currentClassPartObject = classPartObject;\n  path.split(CLASS_PART_SEPARATOR).forEach(pathPart => {\n    if (!currentClassPartObject.nextPart.has(pathPart)) {\n      currentClassPartObject.nextPart.set(pathPart, {\n        nextPart: new Map(),\n        validators: []\n      });\n    }\n    currentClassPartObject = currentClassPartObject.nextPart.get(pathPart);\n  });\n  return currentClassPartObject;\n};\nconst isThemeGetter = func => func.isThemeGetter;\nconst getPrefixedClassGroupEntries = (classGroupEntries, prefix) => {\n  if (!prefix) {\n    return classGroupEntries;\n  }\n  return classGroupEntries.map(([classGroupId, classGroup]) => {\n    const prefixedClassGroup = classGroup.map(classDefinition => {\n      if (typeof classDefinition === 'string') {\n        return prefix + classDefinition;\n      }\n      if (typeof classDefinition === 'object') {\n        return Object.fromEntries(Object.entries(classDefinition).map(([key, value]) => [prefix + key, value]));\n      }\n      return classDefinition;\n    });\n    return [classGroupId, prefixedClassGroup];\n  });\n};\n\n// LRU cache inspired from hashlru (https://github.com/dominictarr/hashlru/blob/v1.0.4/index.js) but object replaced with Map to improve performance\nconst createLruCache = maxCacheSize => {\n  if (maxCacheSize < 1) {\n    return {\n      get: () => undefined,\n      set: () => {}\n    };\n  }\n  let cacheSize = 0;\n  let cache = new Map();\n  let previousCache = new Map();\n  const update = (key, value) => {\n    cache.set(key, value);\n    cacheSize++;\n    if (cacheSize > maxCacheSize) {\n      cacheSize = 0;\n      previousCache = cache;\n      cache = new Map();\n    }\n  };\n  return {\n    get(key) {\n      let value = cache.get(key);\n      if (value !== undefined) {\n        return value;\n      }\n      if ((value = previousCache.get(key)) !== undefined) {\n        update(key, value);\n        return value;\n      }\n    },\n    set(key, value) {\n      if (cache.has(key)) {\n        cache.set(key, value);\n      } else {\n        update(key, value);\n      }\n    }\n  };\n};\nconst IMPORTANT_MODIFIER = '!';\nconst createParseClassName = config => {\n  const {\n    separator,\n    experimentalParseClassName\n  } = config;\n  const isSeparatorSingleCharacter = separator.length === 1;\n  const firstSeparatorCharacter = separator[0];\n  const separatorLength = separator.length;\n  // parseClassName inspired by https://github.com/tailwindlabs/tailwindcss/blob/v3.2.2/src/util/splitAtTopLevelOnly.js\n  const parseClassName = className => {\n    const modifiers = [];\n    let bracketDepth = 0;\n    let modifierStart = 0;\n    let postfixModifierPosition;\n    for (let index = 0; index < className.length; index++) {\n      let currentCharacter = className[index];\n      if (bracketDepth === 0) {\n        if (currentCharacter === firstSeparatorCharacter && (isSeparatorSingleCharacter || className.slice(index, index + separatorLength) === separator)) {\n          modifiers.push(className.slice(modifierStart, index));\n          modifierStart = index + separatorLength;\n          continue;\n        }\n        if (currentCharacter === '/') {\n          postfixModifierPosition = index;\n          continue;\n        }\n      }\n      if (currentCharacter === '[') {\n        bracketDepth++;\n      } else if (currentCharacter === ']') {\n        bracketDepth--;\n      }\n    }\n    const baseClassNameWithImportantModifier = modifiers.length === 0 ? className : className.substring(modifierStart);\n    const hasImportantModifier = baseClassNameWithImportantModifier.startsWith(IMPORTANT_MODIFIER);\n    const baseClassName = hasImportantModifier ? baseClassNameWithImportantModifier.substring(1) : baseClassNameWithImportantModifier;\n    const maybePostfixModifierPosition = postfixModifierPosition && postfixModifierPosition > modifierStart ? postfixModifierPosition - modifierStart : undefined;\n    return {\n      modifiers,\n      hasImportantModifier,\n      baseClassName,\n      maybePostfixModifierPosition\n    };\n  };\n  if (experimentalParseClassName) {\n    return className => experimentalParseClassName({\n      className,\n      parseClassName\n    });\n  }\n  return parseClassName;\n};\n/**\n * Sorts modifiers according to following schema:\n * - Predefined modifiers are sorted alphabetically\n * - When an arbitrary variant appears, it must be preserved which modifiers are before and after it\n */\nconst sortModifiers = modifiers => {\n  if (modifiers.length <= 1) {\n    return modifiers;\n  }\n  const sortedModifiers = [];\n  let unsortedModifiers = [];\n  modifiers.forEach(modifier => {\n    const isArbitraryVariant = modifier[0] === '[';\n    if (isArbitraryVariant) {\n      sortedModifiers.push(...unsortedModifiers.sort(), modifier);\n      unsortedModifiers = [];\n    } else {\n      unsortedModifiers.push(modifier);\n    }\n  });\n  sortedModifiers.push(...unsortedModifiers.sort());\n  return sortedModifiers;\n};\nconst createConfigUtils = config => ({\n  cache: createLruCache(config.cacheSize),\n  parseClassName: createParseClassName(config),\n  ...createClassGroupUtils(config)\n});\nconst SPLIT_CLASSES_REGEX = /\\s+/;\nconst mergeClassList = (classList, configUtils) => {\n  const {\n    parseClassName,\n    getClassGroupId,\n    getConflictingClassGroupIds\n  } = configUtils;\n  /**\n   * Set of classGroupIds in following format:\n   * `{importantModifier}{variantModifiers}{classGroupId}`\n   * @example 'float'\n   * @example 'hover:focus:bg-color'\n   * @example 'md:!pr'\n   */\n  const classGroupsInConflict = [];\n  const classNames = classList.trim().split(SPLIT_CLASSES_REGEX);\n  let result = '';\n  for (let index = classNames.length - 1; index >= 0; index -= 1) {\n    const originalClassName = classNames[index];\n    const {\n      modifiers,\n      hasImportantModifier,\n      baseClassName,\n      maybePostfixModifierPosition\n    } = parseClassName(originalClassName);\n    let hasPostfixModifier = Boolean(maybePostfixModifierPosition);\n    let classGroupId = getClassGroupId(hasPostfixModifier ? baseClassName.substring(0, maybePostfixModifierPosition) : baseClassName);\n    if (!classGroupId) {\n      if (!hasPostfixModifier) {\n        // Not a Tailwind class\n        result = originalClassName + (result.length > 0 ? ' ' + result : result);\n        continue;\n      }\n      classGroupId = getClassGroupId(baseClassName);\n      if (!classGroupId) {\n        // Not a Tailwind class\n        result = originalClassName + (result.length > 0 ? ' ' + result : result);\n        continue;\n      }\n      hasPostfixModifier = false;\n    }\n    const variantModifier = sortModifiers(modifiers).join(':');\n    const modifierId = hasImportantModifier ? variantModifier + IMPORTANT_MODIFIER : variantModifier;\n    const classId = modifierId + classGroupId;\n    if (classGroupsInConflict.includes(classId)) {\n      // Tailwind class omitted due to conflict\n      continue;\n    }\n    classGroupsInConflict.push(classId);\n    const conflictGroups = getConflictingClassGroupIds(classGroupId, hasPostfixModifier);\n    for (let i = 0; i < conflictGroups.length; ++i) {\n      const group = conflictGroups[i];\n      classGroupsInConflict.push(modifierId + group);\n    }\n    // Tailwind class not in conflict\n    result = originalClassName + (result.length > 0 ? ' ' + result : result);\n  }\n  return result;\n};\n\n/**\n * The code in this file is copied from https://github.com/lukeed/clsx and modified to suit the needs of tailwind-merge better.\n *\n * Specifically:\n * - Runtime code from https://github.com/lukeed/clsx/blob/v1.2.1/src/index.js\n * - TypeScript types from https://github.com/lukeed/clsx/blob/v1.2.1/clsx.d.ts\n *\n * Original code has MIT license: Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)\n */\nfunction twJoin() {\n  let index = 0;\n  let argument;\n  let resolvedValue;\n  let string = '';\n  while (index < arguments.length) {\n    if (argument = arguments[index++]) {\n      if (resolvedValue = toValue(argument)) {\n        string && (string += ' ');\n        string += resolvedValue;\n      }\n    }\n  }\n  return string;\n}\nconst toValue = mix => {\n  if (typeof mix === 'string') {\n    return mix;\n  }\n  let resolvedValue;\n  let string = '';\n  for (let k = 0; k < mix.length; k++) {\n    if (mix[k]) {\n      if (resolvedValue = toValue(mix[k])) {\n        string && (string += ' ');\n        string += resolvedValue;\n      }\n    }\n  }\n  return string;\n};\nfunction createTailwindMerge(createConfigFirst, ...createConfigRest) {\n  let configUtils;\n  let cacheGet;\n  let cacheSet;\n  let functionToCall = initTailwindMerge;\n  function initTailwindMerge(classList) {\n    const config = createConfigRest.reduce((previousConfig, createConfigCurrent) => createConfigCurrent(previousConfig), createConfigFirst());\n    configUtils = createConfigUtils(config);\n    cacheGet = configUtils.cache.get;\n    cacheSet = configUtils.cache.set;\n    functionToCall = tailwindMerge;\n    return tailwindMerge(classList);\n  }\n  function tailwindMerge(classList) {\n    const cachedResult = cacheGet(classList);\n    if (cachedResult) {\n      return cachedResult;\n    }\n    const result = mergeClassList(classList, configUtils);\n    cacheSet(classList, result);\n    return result;\n  }\n  return function callTailwindMerge() {\n    return functionToCall(twJoin.apply(null, arguments));\n  };\n}\nconst fromTheme = key => {\n  const themeGetter = theme => theme[key] || [];\n  themeGetter.isThemeGetter = true;\n  return themeGetter;\n};\nconst arbitraryValueRegex = /^\\[(?:([a-z-]+):)?(.+)\\]$/i;\nconst fractionRegex = /^\\d+\\/\\d+$/;\nconst stringLengths = /*#__PURE__*/new Set(['px', 'full', 'screen']);\nconst tshirtUnitRegex = /^(\\d+(\\.\\d+)?)?(xs|sm|md|lg|xl)$/;\nconst lengthUnitRegex = /\\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\\b(calc|min|max|clamp)\\(.+\\)|^0$/;\nconst colorFunctionRegex = /^(rgba?|hsla?|hwb|(ok)?(lab|lch))\\(.+\\)$/;\n// Shadow always begins with x and y offset separated by underscore optionally prepended by inset\nconst shadowRegex = /^(inset_)?-?((\\d+)?\\.?(\\d+)[a-z]+|0)_-?((\\d+)?\\.?(\\d+)[a-z]+|0)/;\nconst imageRegex = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\\(.+\\)$/;\nconst isLength = value => isNumber(value) || stringLengths.has(value) || fractionRegex.test(value);\nconst isArbitraryLength = value => getIsArbitraryValue(value, 'length', isLengthOnly);\nconst isNumber = value => Boolean(value) && !Number.isNaN(Number(value));\nconst isArbitraryNumber = value => getIsArbitraryValue(value, 'number', isNumber);\nconst isInteger = value => Boolean(value) && Number.isInteger(Number(value));\nconst isPercent = value => value.endsWith('%') && isNumber(value.slice(0, -1));\nconst isArbitraryValue = value => arbitraryValueRegex.test(value);\nconst isTshirtSize = value => tshirtUnitRegex.test(value);\nconst sizeLabels = /*#__PURE__*/new Set(['length', 'size', 'percentage']);\nconst isArbitrarySize = value => getIsArbitraryValue(value, sizeLabels, isNever);\nconst isArbitraryPosition = value => getIsArbitraryValue(value, 'position', isNever);\nconst imageLabels = /*#__PURE__*/new Set(['image', 'url']);\nconst isArbitraryImage = value => getIsArbitraryValue(value, imageLabels, isImage);\nconst isArbitraryShadow = value => getIsArbitraryValue(value, '', isShadow);\nconst isAny = () => true;\nconst getIsArbitraryValue = (value, label, testValue) => {\n  const result = arbitraryValueRegex.exec(value);\n  if (result) {\n    if (result[1]) {\n      return typeof label === 'string' ? result[1] === label : label.has(result[1]);\n    }\n    return testValue(result[2]);\n  }\n  return false;\n};\nconst isLengthOnly = value =>\n// `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.\n// For example, `hsl(0 0% 0%)` would be classified as a length without this check.\n// I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.\nlengthUnitRegex.test(value) && !colorFunctionRegex.test(value);\nconst isNever = () => false;\nconst isShadow = value => shadowRegex.test(value);\nconst isImage = value => imageRegex.test(value);\nconst validators = /*#__PURE__*/Object.defineProperty({\n  __proto__: null,\n  isAny,\n  isArbitraryImage,\n  isArbitraryLength,\n  isArbitraryNumber,\n  isArbitraryPosition,\n  isArbitraryShadow,\n  isArbitrarySize,\n  isArbitraryValue,\n  isInteger,\n  isLength,\n  isNumber,\n  isPercent,\n  isTshirtSize\n}, Symbol.toStringTag, {\n  value: 'Module'\n});\nconst getDefaultConfig = () => {\n  const colors = fromTheme('colors');\n  const spacing = fromTheme('spacing');\n  const blur = fromTheme('blur');\n  const brightness = fromTheme('brightness');\n  const borderColor = fromTheme('borderColor');\n  const borderRadius = fromTheme('borderRadius');\n  const borderSpacing = fromTheme('borderSpacing');\n  const borderWidth = fromTheme('borderWidth');\n  const contrast = fromTheme('contrast');\n  const grayscale = fromTheme('grayscale');\n  const hueRotate = fromTheme('hueRotate');\n  const invert = fromTheme('invert');\n  const gap = fromTheme('gap');\n  const gradientColorStops = fromTheme('gradientColorStops');\n  const gradientColorStopPositions = fromTheme('gradientColorStopPositions');\n  const inset = fromTheme('inset');\n  const margin = fromTheme('margin');\n  const opacity = fromTheme('opacity');\n  const padding = fromTheme('padding');\n  const saturate = fromTheme('saturate');\n  const scale = fromTheme('scale');\n  const sepia = fromTheme('sepia');\n  const skew = fromTheme('skew');\n  const space = fromTheme('space');\n  const translate = fromTheme('translate');\n  const getOverscroll = () => ['auto', 'contain', 'none'];\n  const getOverflow = () => ['auto', 'hidden', 'clip', 'visible', 'scroll'];\n  const getSpacingWithAutoAndArbitrary = () => ['auto', isArbitraryValue, spacing];\n  const getSpacingWithArbitrary = () => [isArbitraryValue, spacing];\n  const getLengthWithEmptyAndArbitrary = () => ['', isLength, isArbitraryLength];\n  const getNumberWithAutoAndArbitrary = () => ['auto', isNumber, isArbitraryValue];\n  const getPositions = () => ['bottom', 'center', 'left', 'left-bottom', 'left-top', 'right', 'right-bottom', 'right-top', 'top'];\n  const getLineStyles = () => ['solid', 'dashed', 'dotted', 'double', 'none'];\n  const getBlendModes = () => ['normal', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dodge', 'color-burn', 'hard-light', 'soft-light', 'difference', 'exclusion', 'hue', 'saturation', 'color', 'luminosity'];\n  const getAlign = () => ['start', 'end', 'center', 'between', 'around', 'evenly', 'stretch'];\n  const getZeroAndEmpty = () => ['', '0', isArbitraryValue];\n  const getBreaks = () => ['auto', 'avoid', 'all', 'avoid-page', 'page', 'left', 'right', 'column'];\n  const getNumberAndArbitrary = () => [isNumber, isArbitraryValue];\n  return {\n    cacheSize: 500,\n    separator: ':',\n    theme: {\n      colors: [isAny],\n      spacing: [isLength, isArbitraryLength],\n      blur: ['none', '', isTshirtSize, isArbitraryValue],\n      brightness: getNumberAndArbitrary(),\n      borderColor: [colors],\n      borderRadius: ['none', '', 'full', isTshirtSize, isArbitraryValue],\n      borderSpacing: getSpacingWithArbitrary(),\n      borderWidth: getLengthWithEmptyAndArbitrary(),\n      contrast: getNumberAndArbitrary(),\n      grayscale: getZeroAndEmpty(),\n      hueRotate: getNumberAndArbitrary(),\n      invert: getZeroAndEmpty(),\n      gap: getSpacingWithArbitrary(),\n      gradientColorStops: [colors],\n      gradientColorStopPositions: [isPercent, isArbitraryLength],\n      inset: getSpacingWithAutoAndArbitrary(),\n      margin: getSpacingWithAutoAndArbitrary(),\n      opacity: getNumberAndArbitrary(),\n      padding: getSpacingWithArbitrary(),\n      saturate: getNumberAndArbitrary(),\n      scale: getNumberAndArbitrary(),\n      sepia: getZeroAndEmpty(),\n      skew: getNumberAndArbitrary(),\n      space: getSpacingWithArbitrary(),\n      translate: getSpacingWithArbitrary()\n    },\n    classGroups: {\n      // Layout\n      /**\n       * Aspect Ratio\n       * @see https://tailwindcss.com/docs/aspect-ratio\n       */\n      aspect: [{\n        aspect: ['auto', 'square', 'video', isArbitraryValue]\n      }],\n      /**\n       * Container\n       * @see https://tailwindcss.com/docs/container\n       */\n      container: ['container'],\n      /**\n       * Columns\n       * @see https://tailwindcss.com/docs/columns\n       */\n      columns: [{\n        columns: [isTshirtSize]\n      }],\n      /**\n       * Break After\n       * @see https://tailwindcss.com/docs/break-after\n       */\n      'break-after': [{\n        'break-after': getBreaks()\n      }],\n      /**\n       * Break Before\n       * @see https://tailwindcss.com/docs/break-before\n       */\n      'break-before': [{\n        'break-before': getBreaks()\n      }],\n      /**\n       * Break Inside\n       * @see https://tailwindcss.com/docs/break-inside\n       */\n      'break-inside': [{\n        'break-inside': ['auto', 'avoid', 'avoid-page', 'avoid-column']\n      }],\n      /**\n       * Box Decoration Break\n       * @see https://tailwindcss.com/docs/box-decoration-break\n       */\n      'box-decoration': [{\n        'box-decoration': ['slice', 'clone']\n      }],\n      /**\n       * Box Sizing\n       * @see https://tailwindcss.com/docs/box-sizing\n       */\n      box: [{\n        box: ['border', 'content']\n      }],\n      /**\n       * Display\n       * @see https://tailwindcss.com/docs/display\n       */\n      display: ['block', 'inline-block', 'inline', 'flex', 'inline-flex', 'table', 'inline-table', 'table-caption', 'table-cell', 'table-column', 'table-column-group', 'table-footer-group', 'table-header-group', 'table-row-group', 'table-row', 'flow-root', 'grid', 'inline-grid', 'contents', 'list-item', 'hidden'],\n      /**\n       * Floats\n       * @see https://tailwindcss.com/docs/float\n       */\n      float: [{\n        float: ['right', 'left', 'none', 'start', 'end']\n      }],\n      /**\n       * Clear\n       * @see https://tailwindcss.com/docs/clear\n       */\n      clear: [{\n        clear: ['left', 'right', 'both', 'none', 'start', 'end']\n      }],\n      /**\n       * Isolation\n       * @see https://tailwindcss.com/docs/isolation\n       */\n      isolation: ['isolate', 'isolation-auto'],\n      /**\n       * Object Fit\n       * @see https://tailwindcss.com/docs/object-fit\n       */\n      'object-fit': [{\n        object: ['contain', 'cover', 'fill', 'none', 'scale-down']\n      }],\n      /**\n       * Object Position\n       * @see https://tailwindcss.com/docs/object-position\n       */\n      'object-position': [{\n        object: [...getPositions(), isArbitraryValue]\n      }],\n      /**\n       * Overflow\n       * @see https://tailwindcss.com/docs/overflow\n       */\n      overflow: [{\n        overflow: getOverflow()\n      }],\n      /**\n       * Overflow X\n       * @see https://tailwindcss.com/docs/overflow\n       */\n      'overflow-x': [{\n        'overflow-x': getOverflow()\n      }],\n      /**\n       * Overflow Y\n       * @see https://tailwindcss.com/docs/overflow\n       */\n      'overflow-y': [{\n        'overflow-y': getOverflow()\n      }],\n      /**\n       * Overscroll Behavior\n       * @see https://tailwindcss.com/docs/overscroll-behavior\n       */\n      overscroll: [{\n        overscroll: getOverscroll()\n      }],\n      /**\n       * Overscroll Behavior X\n       * @see https://tailwindcss.com/docs/overscroll-behavior\n       */\n      'overscroll-x': [{\n        'overscroll-x': getOverscroll()\n      }],\n      /**\n       * Overscroll Behavior Y\n       * @see https://tailwindcss.com/docs/overscroll-behavior\n       */\n      'overscroll-y': [{\n        'overscroll-y': getOverscroll()\n      }],\n      /**\n       * Position\n       * @see https://tailwindcss.com/docs/position\n       */\n      position: ['static', 'fixed', 'absolute', 'relative', 'sticky'],\n      /**\n       * Top / Right / Bottom / Left\n       * @see https://tailwindcss.com/docs/top-right-bottom-left\n       */\n      inset: [{\n        inset: [inset]\n      }],\n      /**\n       * Right / Left\n       * @see https://tailwindcss.com/docs/top-right-bottom-left\n       */\n      'inset-x': [{\n        'inset-x': [inset]\n      }],\n      /**\n       * Top / Bottom\n       * @see https://tailwindcss.com/docs/top-right-bottom-left\n       */\n      'inset-y': [{\n        'inset-y': [inset]\n      }],\n      /**\n       * Start\n       * @see https://tailwindcss.com/docs/top-right-bottom-left\n       */\n      start: [{\n        start: [inset]\n      }],\n      /**\n       * End\n       * @see https://tailwindcss.com/docs/top-right-bottom-left\n       */\n      end: [{\n        end: [inset]\n      }],\n      /**\n       * Top\n       * @see https://tailwindcss.com/docs/top-right-bottom-left\n       */\n      top: [{\n        top: [inset]\n      }],\n      /**\n       * Right\n       * @see https://tailwindcss.com/docs/top-right-bottom-left\n       */\n      right: [{\n        right: [inset]\n      }],\n      /**\n       * Bottom\n       * @see https://tailwindcss.com/docs/top-right-bottom-left\n       */\n      bottom: [{\n        bottom: [inset]\n      }],\n      /**\n       * Left\n       * @see https://tailwindcss.com/docs/top-right-bottom-left\n       */\n      left: [{\n        left: [inset]\n      }],\n      /**\n       * Visibility\n       * @see https://tailwindcss.com/docs/visibility\n       */\n      visibility: ['visible', 'invisible', 'collapse'],\n      /**\n       * Z-Index\n       * @see https://tailwindcss.com/docs/z-index\n       */\n      z: [{\n        z: ['auto', isInteger, isArbitraryValue]\n      }],\n      // Flexbox and Grid\n      /**\n       * Flex Basis\n       * @see https://tailwindcss.com/docs/flex-basis\n       */\n      basis: [{\n        basis: getSpacingWithAutoAndArbitrary()\n      }],\n      /**\n       * Flex Direction\n       * @see https://tailwindcss.com/docs/flex-direction\n       */\n      'flex-direction': [{\n        flex: ['row', 'row-reverse', 'col', 'col-reverse']\n      }],\n      /**\n       * Flex Wrap\n       * @see https://tailwindcss.com/docs/flex-wrap\n       */\n      'flex-wrap': [{\n        flex: ['wrap', 'wrap-reverse', 'nowrap']\n      }],\n      /**\n       * Flex\n       * @see https://tailwindcss.com/docs/flex\n       */\n      flex: [{\n        flex: ['1', 'auto', 'initial', 'none', isArbitraryValue]\n      }],\n      /**\n       * Flex Grow\n       * @see https://tailwindcss.com/docs/flex-grow\n       */\n      grow: [{\n        grow: getZeroAndEmpty()\n      }],\n      /**\n       * Flex Shrink\n       * @see https://tailwindcss.com/docs/flex-shrink\n       */\n      shrink: [{\n        shrink: getZeroAndEmpty()\n      }],\n      /**\n       * Order\n       * @see https://tailwindcss.com/docs/order\n       */\n      order: [{\n        order: ['first', 'last', 'none', isInteger, isArbitraryValue]\n      }],\n      /**\n       * Grid Template Columns\n       * @see https://tailwindcss.com/docs/grid-template-columns\n       */\n      'grid-cols': [{\n        'grid-cols': [isAny]\n      }],\n      /**\n       * Grid Column Start / End\n       * @see https://tailwindcss.com/docs/grid-column\n       */\n      'col-start-end': [{\n        col: ['auto', {\n          span: ['full', isInteger, isArbitraryValue]\n        }, isArbitraryValue]\n      }],\n      /**\n       * Grid Column Start\n       * @see https://tailwindcss.com/docs/grid-column\n       */\n      'col-start': [{\n        'col-start': getNumberWithAutoAndArbitrary()\n      }],\n      /**\n       * Grid Column End\n       * @see https://tailwindcss.com/docs/grid-column\n       */\n      'col-end': [{\n        'col-end': getNumberWithAutoAndArbitrary()\n      }],\n      /**\n       * Grid Template Rows\n       * @see https://tailwindcss.com/docs/grid-template-rows\n       */\n      'grid-rows': [{\n        'grid-rows': [isAny]\n      }],\n      /**\n       * Grid Row Start / End\n       * @see https://tailwindcss.com/docs/grid-row\n       */\n      'row-start-end': [{\n        row: ['auto', {\n          span: [isInteger, isArbitraryValue]\n        }, isArbitraryValue]\n      }],\n      /**\n       * Grid Row Start\n       * @see https://tailwindcss.com/docs/grid-row\n       */\n      'row-start': [{\n        'row-start': getNumberWithAutoAndArbitrary()\n      }],\n      /**\n       * Grid Row End\n       * @see https://tailwindcss.com/docs/grid-row\n       */\n      'row-end': [{\n        'row-end': getNumberWithAutoAndArbitrary()\n      }],\n      /**\n       * Grid Auto Flow\n       * @see https://tailwindcss.com/docs/grid-auto-flow\n       */\n      'grid-flow': [{\n        'grid-flow': ['row', 'col', 'dense', 'row-dense', 'col-dense']\n      }],\n      /**\n       * Grid Auto Columns\n       * @see https://tailwindcss.com/docs/grid-auto-columns\n       */\n      'auto-cols': [{\n        'auto-cols': ['auto', 'min', 'max', 'fr', isArbitraryValue]\n      }],\n      /**\n       * Grid Auto Rows\n       * @see https://tailwindcss.com/docs/grid-auto-rows\n       */\n      'auto-rows': [{\n        'auto-rows': ['auto', 'min', 'max', 'fr', isArbitraryValue]\n      }],\n      /**\n       * Gap\n       * @see https://tailwindcss.com/docs/gap\n       */\n      gap: [{\n        gap: [gap]\n      }],\n      /**\n       * Gap X\n       * @see https://tailwindcss.com/docs/gap\n       */\n      'gap-x': [{\n        'gap-x': [gap]\n      }],\n      /**\n       * Gap Y\n       * @see https://tailwindcss.com/docs/gap\n       */\n      'gap-y': [{\n        'gap-y': [gap]\n      }],\n      /**\n       * Justify Content\n       * @see https://tailwindcss.com/docs/justify-content\n       */\n      'justify-content': [{\n        justify: ['normal', ...getAlign()]\n      }],\n      /**\n       * Justify Items\n       * @see https://tailwindcss.com/docs/justify-items\n       */\n      'justify-items': [{\n        'justify-items': ['start', 'end', 'center', 'stretch']\n      }],\n      /**\n       * Justify Self\n       * @see https://tailwindcss.com/docs/justify-self\n       */\n      'justify-self': [{\n        'justify-self': ['auto', 'start', 'end', 'center', 'stretch']\n      }],\n      /**\n       * Align Content\n       * @see https://tailwindcss.com/docs/align-content\n       */\n      'align-content': [{\n        content: ['normal', ...getAlign(), 'baseline']\n      }],\n      /**\n       * Align Items\n       * @see https://tailwindcss.com/docs/align-items\n       */\n      'align-items': [{\n        items: ['start', 'end', 'center', 'baseline', 'stretch']\n      }],\n      /**\n       * Align Self\n       * @see https://tailwindcss.com/docs/align-self\n       */\n      'align-self': [{\n        self: ['auto', 'start', 'end', 'center', 'stretch', 'baseline']\n      }],\n      /**\n       * Place Content\n       * @see https://tailwindcss.com/docs/place-content\n       */\n      'place-content': [{\n        'place-content': [...getAlign(), 'baseline']\n      }],\n      /**\n       * Place Items\n       * @see https://tailwindcss.com/docs/place-items\n       */\n      'place-items': [{\n        'place-items': ['start', 'end', 'center', 'baseline', 'stretch']\n      }],\n      /**\n       * Place Self\n       * @see https://tailwindcss.com/docs/place-self\n       */\n      'place-self': [{\n        'place-self': ['auto', 'start', 'end', 'center', 'stretch']\n      }],\n      // Spacing\n      /**\n       * Padding\n       * @see https://tailwindcss.com/docs/padding\n       */\n      p: [{\n        p: [padding]\n      }],\n      /**\n       * Padding X\n       * @see https://tailwindcss.com/docs/padding\n       */\n      px: [{\n        px: [padding]\n      }],\n      /**\n       * Padding Y\n       * @see https://tailwindcss.com/docs/padding\n       */\n      py: [{\n        py: [padding]\n      }],\n      /**\n       * Padding Start\n       * @see https://tailwindcss.com/docs/padding\n       */\n      ps: [{\n        ps: [padding]\n      }],\n      /**\n       * Padding End\n       * @see https://tailwindcss.com/docs/padding\n       */\n      pe: [{\n        pe: [padding]\n      }],\n      /**\n       * Padding Top\n       * @see https://tailwindcss.com/docs/padding\n       */\n      pt: [{\n        pt: [padding]\n      }],\n      /**\n       * Padding Right\n       * @see https://tailwindcss.com/docs/padding\n       */\n      pr: [{\n        pr: [padding]\n      }],\n      /**\n       * Padding Bottom\n       * @see https://tailwindcss.com/docs/padding\n       */\n      pb: [{\n        pb: [padding]\n      }],\n      /**\n       * Padding Left\n       * @see https://tailwindcss.com/docs/padding\n       */\n      pl: [{\n        pl: [padding]\n      }],\n      /**\n       * Margin\n       * @see https://tailwindcss.com/docs/margin\n       */\n      m: [{\n        m: [margin]\n      }],\n      /**\n       * Margin X\n       * @see https://tailwindcss.com/docs/margin\n       */\n      mx: [{\n        mx: [margin]\n      }],\n      /**\n       * Margin Y\n       * @see https://tailwindcss.com/docs/margin\n       */\n      my: [{\n        my: [margin]\n      }],\n      /**\n       * Margin Start\n       * @see https://tailwindcss.com/docs/margin\n       */\n      ms: [{\n        ms: [margin]\n      }],\n      /**\n       * Margin End\n       * @see https://tailwindcss.com/docs/margin\n       */\n      me: [{\n        me: [margin]\n      }],\n      /**\n       * Margin Top\n       * @see https://tailwindcss.com/docs/margin\n       */\n      mt: [{\n        mt: [margin]\n      }],\n      /**\n       * Margin Right\n       * @see https://tailwindcss.com/docs/margin\n       */\n      mr: [{\n        mr: [margin]\n      }],\n      /**\n       * Margin Bottom\n       * @see https://tailwindcss.com/docs/margin\n       */\n      mb: [{\n        mb: [margin]\n      }],\n      /**\n       * Margin Left\n       * @see https://tailwindcss.com/docs/margin\n       */\n      ml: [{\n        ml: [margin]\n      }],\n      /**\n       * Space Between X\n       * @see https://tailwindcss.com/docs/space\n       */\n      'space-x': [{\n        'space-x': [space]\n      }],\n      /**\n       * Space Between X Reverse\n       * @see https://tailwindcss.com/docs/space\n       */\n      'space-x-reverse': ['space-x-reverse'],\n      /**\n       * Space Between Y\n       * @see https://tailwindcss.com/docs/space\n       */\n      'space-y': [{\n        'space-y': [space]\n      }],\n      /**\n       * Space Between Y Reverse\n       * @see https://tailwindcss.com/docs/space\n       */\n      'space-y-reverse': ['space-y-reverse'],\n      // Sizing\n      /**\n       * Width\n       * @see https://tailwindcss.com/docs/width\n       */\n      w: [{\n        w: ['auto', 'min', 'max', 'fit', 'svw', 'lvw', 'dvw', isArbitraryValue, spacing]\n      }],\n      /**\n       * Min-Width\n       * @see https://tailwindcss.com/docs/min-width\n       */\n      'min-w': [{\n        'min-w': [isArbitraryValue, spacing, 'min', 'max', 'fit']\n      }],\n      /**\n       * Max-Width\n       * @see https://tailwindcss.com/docs/max-width\n       */\n      'max-w': [{\n        'max-w': [isArbitraryValue, spacing, 'none', 'full', 'min', 'max', 'fit', 'prose', {\n          screen: [isTshirtSize]\n        }, isTshirtSize]\n      }],\n      /**\n       * Height\n       * @see https://tailwindcss.com/docs/height\n       */\n      h: [{\n        h: [isArbitraryValue, spacing, 'auto', 'min', 'max', 'fit', 'svh', 'lvh', 'dvh']\n      }],\n      /**\n       * Min-Height\n       * @see https://tailwindcss.com/docs/min-height\n       */\n      'min-h': [{\n        'min-h': [isArbitraryValue, spacing, 'min', 'max', 'fit', 'svh', 'lvh', 'dvh']\n      }],\n      /**\n       * Max-Height\n       * @see https://tailwindcss.com/docs/max-height\n       */\n      'max-h': [{\n        'max-h': [isArbitraryValue, spacing, 'min', 'max', 'fit', 'svh', 'lvh', 'dvh']\n      }],\n      /**\n       * Size\n       * @see https://tailwindcss.com/docs/size\n       */\n      size: [{\n        size: [isArbitraryValue, spacing, 'auto', 'min', 'max', 'fit']\n      }],\n      // Typography\n      /**\n       * Font Size\n       * @see https://tailwindcss.com/docs/font-size\n       */\n      'font-size': [{\n        text: ['base', isTshirtSize, isArbitraryLength]\n      }],\n      /**\n       * Font Smoothing\n       * @see https://tailwindcss.com/docs/font-smoothing\n       */\n      'font-smoothing': ['antialiased', 'subpixel-antialiased'],\n      /**\n       * Font Style\n       * @see https://tailwindcss.com/docs/font-style\n       */\n      'font-style': ['italic', 'not-italic'],\n      /**\n       * Font Weight\n       * @see https://tailwindcss.com/docs/font-weight\n       */\n      'font-weight': [{\n        font: ['thin', 'extralight', 'light', 'normal', 'medium', 'semibold', 'bold', 'extrabold', 'black', isArbitraryNumber]\n      }],\n      /**\n       * Font Family\n       * @see https://tailwindcss.com/docs/font-family\n       */\n      'font-family': [{\n        font: [isAny]\n      }],\n      /**\n       * Font Variant Numeric\n       * @see https://tailwindcss.com/docs/font-variant-numeric\n       */\n      'fvn-normal': ['normal-nums'],\n      /**\n       * Font Variant Numeric\n       * @see https://tailwindcss.com/docs/font-variant-numeric\n       */\n      'fvn-ordinal': ['ordinal'],\n      /**\n       * Font Variant Numeric\n       * @see https://tailwindcss.com/docs/font-variant-numeric\n       */\n      'fvn-slashed-zero': ['slashed-zero'],\n      /**\n       * Font Variant Numeric\n       * @see https://tailwindcss.com/docs/font-variant-numeric\n       */\n      'fvn-figure': ['lining-nums', 'oldstyle-nums'],\n      /**\n       * Font Variant Numeric\n       * @see https://tailwindcss.com/docs/font-variant-numeric\n       */\n      'fvn-spacing': ['proportional-nums', 'tabular-nums'],\n      /**\n       * Font Variant Numeric\n       * @see https://tailwindcss.com/docs/font-variant-numeric\n       */\n      'fvn-fraction': ['diagonal-fractions', 'stacked-fractions'],\n      /**\n       * Letter Spacing\n       * @see https://tailwindcss.com/docs/letter-spacing\n       */\n      tracking: [{\n        tracking: ['tighter', 'tight', 'normal', 'wide', 'wider', 'widest', isArbitraryValue]\n      }],\n      /**\n       * Line Clamp\n       * @see https://tailwindcss.com/docs/line-clamp\n       */\n      'line-clamp': [{\n        'line-clamp': ['none', isNumber, isArbitraryNumber]\n      }],\n      /**\n       * Line Height\n       * @see https://tailwindcss.com/docs/line-height\n       */\n      leading: [{\n        leading: ['none', 'tight', 'snug', 'normal', 'relaxed', 'loose', isLength, isArbitraryValue]\n      }],\n      /**\n       * List Style Image\n       * @see https://tailwindcss.com/docs/list-style-image\n       */\n      'list-image': [{\n        'list-image': ['none', isArbitraryValue]\n      }],\n      /**\n       * List Style Type\n       * @see https://tailwindcss.com/docs/list-style-type\n       */\n      'list-style-type': [{\n        list: ['none', 'disc', 'decimal', isArbitraryValue]\n      }],\n      /**\n       * List Style Position\n       * @see https://tailwindcss.com/docs/list-style-position\n       */\n      'list-style-position': [{\n        list: ['inside', 'outside']\n      }],\n      /**\n       * Placeholder Color\n       * @deprecated since Tailwind CSS v3.0.0\n       * @see https://tailwindcss.com/docs/placeholder-color\n       */\n      'placeholder-color': [{\n        placeholder: [colors]\n      }],\n      /**\n       * Placeholder Opacity\n       * @see https://tailwindcss.com/docs/placeholder-opacity\n       */\n      'placeholder-opacity': [{\n        'placeholder-opacity': [opacity]\n      }],\n      /**\n       * Text Alignment\n       * @see https://tailwindcss.com/docs/text-align\n       */\n      'text-alignment': [{\n        text: ['left', 'center', 'right', 'justify', 'start', 'end']\n      }],\n      /**\n       * Text Color\n       * @see https://tailwindcss.com/docs/text-color\n       */\n      'text-color': [{\n        text: [colors]\n      }],\n      /**\n       * Text Opacity\n       * @see https://tailwindcss.com/docs/text-opacity\n       */\n      'text-opacity': [{\n        'text-opacity': [opacity]\n      }],\n      /**\n       * Text Decoration\n       * @see https://tailwindcss.com/docs/text-decoration\n       */\n      'text-decoration': ['underline', 'overline', 'line-through', 'no-underline'],\n      /**\n       * Text Decoration Style\n       * @see https://tailwindcss.com/docs/text-decoration-style\n       */\n      'text-decoration-style': [{\n        decoration: [...getLineStyles(), 'wavy']\n      }],\n      /**\n       * Text Decoration Thickness\n       * @see https://tailwindcss.com/docs/text-decoration-thickness\n       */\n      'text-decoration-thickness': [{\n        decoration: ['auto', 'from-font', isLength, isArbitraryLength]\n      }],\n      /**\n       * Text Underline Offset\n       * @see https://tailwindcss.com/docs/text-underline-offset\n       */\n      'underline-offset': [{\n        'underline-offset': ['auto', isLength, isArbitraryValue]\n      }],\n      /**\n       * Text Decoration Color\n       * @see https://tailwindcss.com/docs/text-decoration-color\n       */\n      'text-decoration-color': [{\n        decoration: [colors]\n      }],\n      /**\n       * Text Transform\n       * @see https://tailwindcss.com/docs/text-transform\n       */\n      'text-transform': ['uppercase', 'lowercase', 'capitalize', 'normal-case'],\n      /**\n       * Text Overflow\n       * @see https://tailwindcss.com/docs/text-overflow\n       */\n      'text-overflow': ['truncate', 'text-ellipsis', 'text-clip'],\n      /**\n       * Text Wrap\n       * @see https://tailwindcss.com/docs/text-wrap\n       */\n      'text-wrap': [{\n        text: ['wrap', 'nowrap', 'balance', 'pretty']\n      }],\n      /**\n       * Text Indent\n       * @see https://tailwindcss.com/docs/text-indent\n       */\n      indent: [{\n        indent: getSpacingWithArbitrary()\n      }],\n      /**\n       * Vertical Alignment\n       * @see https://tailwindcss.com/docs/vertical-align\n       */\n      'vertical-align': [{\n        align: ['baseline', 'top', 'middle', 'bottom', 'text-top', 'text-bottom', 'sub', 'super', isArbitraryValue]\n      }],\n      /**\n       * Whitespace\n       * @see https://tailwindcss.com/docs/whitespace\n       */\n      whitespace: [{\n        whitespace: ['normal', 'nowrap', 'pre', 'pre-line', 'pre-wrap', 'break-spaces']\n      }],\n      /**\n       * Word Break\n       * @see https://tailwindcss.com/docs/word-break\n       */\n      break: [{\n        break: ['normal', 'words', 'all', 'keep']\n      }],\n      /**\n       * Hyphens\n       * @see https://tailwindcss.com/docs/hyphens\n       */\n      hyphens: [{\n        hyphens: ['none', 'manual', 'auto']\n      }],\n      /**\n       * Content\n       * @see https://tailwindcss.com/docs/content\n       */\n      content: [{\n        content: ['none', isArbitraryValue]\n      }],\n      // Backgrounds\n      /**\n       * Background Attachment\n       * @see https://tailwindcss.com/docs/background-attachment\n       */\n      'bg-attachment': [{\n        bg: ['fixed', 'local', 'scroll']\n      }],\n      /**\n       * Background Clip\n       * @see https://tailwindcss.com/docs/background-clip\n       */\n      'bg-clip': [{\n        'bg-clip': ['border', 'padding', 'content', 'text']\n      }],\n      /**\n       * Background Opacity\n       * @deprecated since Tailwind CSS v3.0.0\n       * @see https://tailwindcss.com/docs/background-opacity\n       */\n      'bg-opacity': [{\n        'bg-opacity': [opacity]\n      }],\n      /**\n       * Background Origin\n       * @see https://tailwindcss.com/docs/background-origin\n       */\n      'bg-origin': [{\n        'bg-origin': ['border', 'padding', 'content']\n      }],\n      /**\n       * Background Position\n       * @see https://tailwindcss.com/docs/background-position\n       */\n      'bg-position': [{\n        bg: [...getPositions(), isArbitraryPosition]\n      }],\n      /**\n       * Background Repeat\n       * @see https://tailwindcss.com/docs/background-repeat\n       */\n      'bg-repeat': [{\n        bg: ['no-repeat', {\n          repeat: ['', 'x', 'y', 'round', 'space']\n        }]\n      }],\n      /**\n       * Background Size\n       * @see https://tailwindcss.com/docs/background-size\n       */\n      'bg-size': [{\n        bg: ['auto', 'cover', 'contain', isArbitrarySize]\n      }],\n      /**\n       * Background Image\n       * @see https://tailwindcss.com/docs/background-image\n       */\n      'bg-image': [{\n        bg: ['none', {\n          'gradient-to': ['t', 'tr', 'r', 'br', 'b', 'bl', 'l', 'tl']\n        }, isArbitraryImage]\n      }],\n      /**\n       * Background Color\n       * @see https://tailwindcss.com/docs/background-color\n       */\n      'bg-color': [{\n        bg: [colors]\n      }],\n      /**\n       * Gradient Color Stops From Position\n       * @see https://tailwindcss.com/docs/gradient-color-stops\n       */\n      'gradient-from-pos': [{\n        from: [gradientColorStopPositions]\n      }],\n      /**\n       * Gradient Color Stops Via Position\n       * @see https://tailwindcss.com/docs/gradient-color-stops\n       */\n      'gradient-via-pos': [{\n        via: [gradientColorStopPositions]\n      }],\n      /**\n       * Gradient Color Stops To Position\n       * @see https://tailwindcss.com/docs/gradient-color-stops\n       */\n      'gradient-to-pos': [{\n        to: [gradientColorStopPositions]\n      }],\n      /**\n       * Gradient Color Stops From\n       * @see https://tailwindcss.com/docs/gradient-color-stops\n       */\n      'gradient-from': [{\n        from: [gradientColorStops]\n      }],\n      /**\n       * Gradient Color Stops Via\n       * @see https://tailwindcss.com/docs/gradient-color-stops\n       */\n      'gradient-via': [{\n        via: [gradientColorStops]\n      }],\n      /**\n       * Gradient Color Stops To\n       * @see https://tailwindcss.com/docs/gradient-color-stops\n       */\n      'gradient-to': [{\n        to: [gradientColorStops]\n      }],\n      // Borders\n      /**\n       * Border Radius\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      rounded: [{\n        rounded: [borderRadius]\n      }],\n      /**\n       * Border Radius Start\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-s': [{\n        'rounded-s': [borderRadius]\n      }],\n      /**\n       * Border Radius End\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-e': [{\n        'rounded-e': [borderRadius]\n      }],\n      /**\n       * Border Radius Top\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-t': [{\n        'rounded-t': [borderRadius]\n      }],\n      /**\n       * Border Radius Right\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-r': [{\n        'rounded-r': [borderRadius]\n      }],\n      /**\n       * Border Radius Bottom\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-b': [{\n        'rounded-b': [borderRadius]\n      }],\n      /**\n       * Border Radius Left\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-l': [{\n        'rounded-l': [borderRadius]\n      }],\n      /**\n       * Border Radius Start Start\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-ss': [{\n        'rounded-ss': [borderRadius]\n      }],\n      /**\n       * Border Radius Start End\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-se': [{\n        'rounded-se': [borderRadius]\n      }],\n      /**\n       * Border Radius End End\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-ee': [{\n        'rounded-ee': [borderRadius]\n      }],\n      /**\n       * Border Radius End Start\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-es': [{\n        'rounded-es': [borderRadius]\n      }],\n      /**\n       * Border Radius Top Left\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-tl': [{\n        'rounded-tl': [borderRadius]\n      }],\n      /**\n       * Border Radius Top Right\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-tr': [{\n        'rounded-tr': [borderRadius]\n      }],\n      /**\n       * Border Radius Bottom Right\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-br': [{\n        'rounded-br': [borderRadius]\n      }],\n      /**\n       * Border Radius Bottom Left\n       * @see https://tailwindcss.com/docs/border-radius\n       */\n      'rounded-bl': [{\n        'rounded-bl': [borderRadius]\n      }],\n      /**\n       * Border Width\n       * @see https://tailwindcss.com/docs/border-width\n       */\n      'border-w': [{\n        border: [borderWidth]\n      }],\n      /**\n       * Border Width X\n       * @see https://tailwindcss.com/docs/border-width\n       */\n      'border-w-x': [{\n        'border-x': [borderWidth]\n      }],\n      /**\n       * Border Width Y\n       * @see https://tailwindcss.com/docs/border-width\n       */\n      'border-w-y': [{\n        'border-y': [borderWidth]\n      }],\n      /**\n       * Border Width Start\n       * @see https://tailwindcss.com/docs/border-width\n       */\n      'border-w-s': [{\n        'border-s': [borderWidth]\n      }],\n      /**\n       * Border Width End\n       * @see https://tailwindcss.com/docs/border-width\n       */\n      'border-w-e': [{\n        'border-e': [borderWidth]\n      }],\n      /**\n       * Border Width Top\n       * @see https://tailwindcss.com/docs/border-width\n       */\n      'border-w-t': [{\n        'border-t': [borderWidth]\n      }],\n      /**\n       * Border Width Right\n       * @see https://tailwindcss.com/docs/border-width\n       */\n      'border-w-r': [{\n        'border-r': [borderWidth]\n      }],\n      /**\n       * Border Width Bottom\n       * @see https://tailwindcss.com/docs/border-width\n       */\n      'border-w-b': [{\n        'border-b': [borderWidth]\n      }],\n      /**\n       * Border Width Left\n       * @see https://tailwindcss.com/docs/border-width\n       */\n      'border-w-l': [{\n        'border-l': [borderWidth]\n      }],\n      /**\n       * Border Opacity\n       * @see https://tailwindcss.com/docs/border-opacity\n       */\n      'border-opacity': [{\n        'border-opacity': [opacity]\n      }],\n      /**\n       * Border Style\n       * @see https://tailwindcss.com/docs/border-style\n       */\n      'border-style': [{\n        border: [...getLineStyles(), 'hidden']\n      }],\n      /**\n       * Divide Width X\n       * @see https://tailwindcss.com/docs/divide-width\n       */\n      'divide-x': [{\n        'divide-x': [borderWidth]\n      }],\n      /**\n       * Divide Width X Reverse\n       * @see https://tailwindcss.com/docs/divide-width\n       */\n      'divide-x-reverse': ['divide-x-reverse'],\n      /**\n       * Divide Width Y\n       * @see https://tailwindcss.com/docs/divide-width\n       */\n      'divide-y': [{\n        'divide-y': [borderWidth]\n      }],\n      /**\n       * Divide Width Y Reverse\n       * @see https://tailwindcss.com/docs/divide-width\n       */\n      'divide-y-reverse': ['divide-y-reverse'],\n      /**\n       * Divide Opacity\n       * @see https://tailwindcss.com/docs/divide-opacity\n       */\n      'divide-opacity': [{\n        'divide-opacity': [opacity]\n      }],\n      /**\n       * Divide Style\n       * @see https://tailwindcss.com/docs/divide-style\n       */\n      'divide-style': [{\n        divide: getLineStyles()\n      }],\n      /**\n       * Border Color\n       * @see https://tailwindcss.com/docs/border-color\n       */\n      'border-color': [{\n        border: [borderColor]\n      }],\n      /**\n       * Border Color X\n       * @see https://tailwindcss.com/docs/border-color\n       */\n      'border-color-x': [{\n        'border-x': [borderColor]\n      }],\n      /**\n       * Border Color Y\n       * @see https://tailwindcss.com/docs/border-color\n       */\n      'border-color-y': [{\n        'border-y': [borderColor]\n      }],\n      /**\n       * Border Color S\n       * @see https://tailwindcss.com/docs/border-color\n       */\n      'border-color-s': [{\n        'border-s': [borderColor]\n      }],\n      /**\n       * Border Color E\n       * @see https://tailwindcss.com/docs/border-color\n       */\n      'border-color-e': [{\n        'border-e': [borderColor]\n      }],\n      /**\n       * Border Color Top\n       * @see https://tailwindcss.com/docs/border-color\n       */\n      'border-color-t': [{\n        'border-t': [borderColor]\n      }],\n      /**\n       * Border Color Right\n       * @see https://tailwindcss.com/docs/border-color\n       */\n      'border-color-r': [{\n        'border-r': [borderColor]\n      }],\n      /**\n       * Border Color Bottom\n       * @see https://tailwindcss.com/docs/border-color\n       */\n      'border-color-b': [{\n        'border-b': [borderColor]\n      }],\n      /**\n       * Border Color Left\n       * @see https://tailwindcss.com/docs/border-color\n       */\n      'border-color-l': [{\n        'border-l': [borderColor]\n      }],\n      /**\n       * Divide Color\n       * @see https://tailwindcss.com/docs/divide-color\n       */\n      'divide-color': [{\n        divide: [borderColor]\n      }],\n      /**\n       * Outline Style\n       * @see https://tailwindcss.com/docs/outline-style\n       */\n      'outline-style': [{\n        outline: ['', ...getLineStyles()]\n      }],\n      /**\n       * Outline Offset\n       * @see https://tailwindcss.com/docs/outline-offset\n       */\n      'outline-offset': [{\n        'outline-offset': [isLength, isArbitraryValue]\n      }],\n      /**\n       * Outline Width\n       * @see https://tailwindcss.com/docs/outline-width\n       */\n      'outline-w': [{\n        outline: [isLength, isArbitraryLength]\n      }],\n      /**\n       * Outline Color\n       * @see https://tailwindcss.com/docs/outline-color\n       */\n      'outline-color': [{\n        outline: [colors]\n      }],\n      /**\n       * Ring Width\n       * @see https://tailwindcss.com/docs/ring-width\n       */\n      'ring-w': [{\n        ring: getLengthWithEmptyAndArbitrary()\n      }],\n      /**\n       * Ring Width Inset\n       * @see https://tailwindcss.com/docs/ring-width\n       */\n      'ring-w-inset': ['ring-inset'],\n      /**\n       * Ring Color\n       * @see https://tailwindcss.com/docs/ring-color\n       */\n      'ring-color': [{\n        ring: [colors]\n      }],\n      /**\n       * Ring Opacity\n       * @see https://tailwindcss.com/docs/ring-opacity\n       */\n      'ring-opacity': [{\n        'ring-opacity': [opacity]\n      }],\n      /**\n       * Ring Offset Width\n       * @see https://tailwindcss.com/docs/ring-offset-width\n       */\n      'ring-offset-w': [{\n        'ring-offset': [isLength, isArbitraryLength]\n      }],\n      /**\n       * Ring Offset Color\n       * @see https://tailwindcss.com/docs/ring-offset-color\n       */\n      'ring-offset-color': [{\n        'ring-offset': [colors]\n      }],\n      // Effects\n      /**\n       * Box Shadow\n       * @see https://tailwindcss.com/docs/box-shadow\n       */\n      shadow: [{\n        shadow: ['', 'inner', 'none', isTshirtSize, isArbitraryShadow]\n      }],\n      /**\n       * Box Shadow Color\n       * @see https://tailwindcss.com/docs/box-shadow-color\n       */\n      'shadow-color': [{\n        shadow: [isAny]\n      }],\n      /**\n       * Opacity\n       * @see https://tailwindcss.com/docs/opacity\n       */\n      opacity: [{\n        opacity: [opacity]\n      }],\n      /**\n       * Mix Blend Mode\n       * @see https://tailwindcss.com/docs/mix-blend-mode\n       */\n      'mix-blend': [{\n        'mix-blend': [...getBlendModes(), 'plus-lighter', 'plus-darker']\n      }],\n      /**\n       * Background Blend Mode\n       * @see https://tailwindcss.com/docs/background-blend-mode\n       */\n      'bg-blend': [{\n        'bg-blend': getBlendModes()\n      }],\n      // Filters\n      /**\n       * Filter\n       * @deprecated since Tailwind CSS v3.0.0\n       * @see https://tailwindcss.com/docs/filter\n       */\n      filter: [{\n        filter: ['', 'none']\n      }],\n      /**\n       * Blur\n       * @see https://tailwindcss.com/docs/blur\n       */\n      blur: [{\n        blur: [blur]\n      }],\n      /**\n       * Brightness\n       * @see https://tailwindcss.com/docs/brightness\n       */\n      brightness: [{\n        brightness: [brightness]\n      }],\n      /**\n       * Contrast\n       * @see https://tailwindcss.com/docs/contrast\n       */\n      contrast: [{\n        contrast: [contrast]\n      }],\n      /**\n       * Drop Shadow\n       * @see https://tailwindcss.com/docs/drop-shadow\n       */\n      'drop-shadow': [{\n        'drop-shadow': ['', 'none', isTshirtSize, isArbitraryValue]\n      }],\n      /**\n       * Grayscale\n       * @see https://tailwindcss.com/docs/grayscale\n       */\n      grayscale: [{\n        grayscale: [grayscale]\n      }],\n      /**\n       * Hue Rotate\n       * @see https://tailwindcss.com/docs/hue-rotate\n       */\n      'hue-rotate': [{\n        'hue-rotate': [hueRotate]\n      }],\n      /**\n       * Invert\n       * @see https://tailwindcss.com/docs/invert\n       */\n      invert: [{\n        invert: [invert]\n      }],\n      /**\n       * Saturate\n       * @see https://tailwindcss.com/docs/saturate\n       */\n      saturate: [{\n        saturate: [saturate]\n      }],\n      /**\n       * Sepia\n       * @see https://tailwindcss.com/docs/sepia\n       */\n      sepia: [{\n        sepia: [sepia]\n      }],\n      /**\n       * Backdrop Filter\n       * @deprecated since Tailwind CSS v3.0.0\n       * @see https://tailwindcss.com/docs/backdrop-filter\n       */\n      'backdrop-filter': [{\n        'backdrop-filter': ['', 'none']\n      }],\n      /**\n       * Backdrop Blur\n       * @see https://tailwindcss.com/docs/backdrop-blur\n       */\n      'backdrop-blur': [{\n        'backdrop-blur': [blur]\n      }],\n      /**\n       * Backdrop Brightness\n       * @see https://tailwindcss.com/docs/backdrop-brightness\n       */\n      'backdrop-brightness': [{\n        'backdrop-brightness': [brightness]\n      }],\n      /**\n       * Backdrop Contrast\n       * @see https://tailwindcss.com/docs/backdrop-contrast\n       */\n      'backdrop-contrast': [{\n        'backdrop-contrast': [contrast]\n      }],\n      /**\n       * Backdrop Grayscale\n       * @see https://tailwindcss.com/docs/backdrop-grayscale\n       */\n      'backdrop-grayscale': [{\n        'backdrop-grayscale': [grayscale]\n      }],\n      /**\n       * Backdrop Hue Rotate\n       * @see https://tailwindcss.com/docs/backdrop-hue-rotate\n       */\n      'backdrop-hue-rotate': [{\n        'backdrop-hue-rotate': [hueRotate]\n      }],\n      /**\n       * Backdrop Invert\n       * @see https://tailwindcss.com/docs/backdrop-invert\n       */\n      'backdrop-invert': [{\n        'backdrop-invert': [invert]\n      }],\n      /**\n       * Backdrop Opacity\n       * @see https://tailwindcss.com/docs/backdrop-opacity\n       */\n      'backdrop-opacity': [{\n        'backdrop-opacity': [opacity]\n      }],\n      /**\n       * Backdrop Saturate\n       * @see https://tailwindcss.com/docs/backdrop-saturate\n       */\n      'backdrop-saturate': [{\n        'backdrop-saturate': [saturate]\n      }],\n      /**\n       * Backdrop Sepia\n       * @see https://tailwindcss.com/docs/backdrop-sepia\n       */\n      'backdrop-sepia': [{\n        'backdrop-sepia': [sepia]\n      }],\n      // Tables\n      /**\n       * Border Collapse\n       * @see https://tailwindcss.com/docs/border-collapse\n       */\n      'border-collapse': [{\n        border: ['collapse', 'separate']\n      }],\n      /**\n       * Border Spacing\n       * @see https://tailwindcss.com/docs/border-spacing\n       */\n      'border-spacing': [{\n        'border-spacing': [borderSpacing]\n      }],\n      /**\n       * Border Spacing X\n       * @see https://tailwindcss.com/docs/border-spacing\n       */\n      'border-spacing-x': [{\n        'border-spacing-x': [borderSpacing]\n      }],\n      /**\n       * Border Spacing Y\n       * @see https://tailwindcss.com/docs/border-spacing\n       */\n      'border-spacing-y': [{\n        'border-spacing-y': [borderSpacing]\n      }],\n      /**\n       * Table Layout\n       * @see https://tailwindcss.com/docs/table-layout\n       */\n      'table-layout': [{\n        table: ['auto', 'fixed']\n      }],\n      /**\n       * Caption Side\n       * @see https://tailwindcss.com/docs/caption-side\n       */\n      caption: [{\n        caption: ['top', 'bottom']\n      }],\n      // Transitions and Animation\n      /**\n       * Tranisition Property\n       * @see https://tailwindcss.com/docs/transition-property\n       */\n      transition: [{\n        transition: ['none', 'all', '', 'colors', 'opacity', 'shadow', 'transform', isArbitraryValue]\n      }],\n      /**\n       * Transition Duration\n       * @see https://tailwindcss.com/docs/transition-duration\n       */\n      duration: [{\n        duration: getNumberAndArbitrary()\n      }],\n      /**\n       * Transition Timing Function\n       * @see https://tailwindcss.com/docs/transition-timing-function\n       */\n      ease: [{\n        ease: ['linear', 'in', 'out', 'in-out', isArbitraryValue]\n      }],\n      /**\n       * Transition Delay\n       * @see https://tailwindcss.com/docs/transition-delay\n       */\n      delay: [{\n        delay: getNumberAndArbitrary()\n      }],\n      /**\n       * Animation\n       * @see https://tailwindcss.com/docs/animation\n       */\n      animate: [{\n        animate: ['none', 'spin', 'ping', 'pulse', 'bounce', isArbitraryValue]\n      }],\n      // Transforms\n      /**\n       * Transform\n       * @see https://tailwindcss.com/docs/transform\n       */\n      transform: [{\n        transform: ['', 'gpu', 'none']\n      }],\n      /**\n       * Scale\n       * @see https://tailwindcss.com/docs/scale\n       */\n      scale: [{\n        scale: [scale]\n      }],\n      /**\n       * Scale X\n       * @see https://tailwindcss.com/docs/scale\n       */\n      'scale-x': [{\n        'scale-x': [scale]\n      }],\n      /**\n       * Scale Y\n       * @see https://tailwindcss.com/docs/scale\n       */\n      'scale-y': [{\n        'scale-y': [scale]\n      }],\n      /**\n       * Rotate\n       * @see https://tailwindcss.com/docs/rotate\n       */\n      rotate: [{\n        rotate: [isInteger, isArbitraryValue]\n      }],\n      /**\n       * Translate X\n       * @see https://tailwindcss.com/docs/translate\n       */\n      'translate-x': [{\n        'translate-x': [translate]\n      }],\n      /**\n       * Translate Y\n       * @see https://tailwindcss.com/docs/translate\n       */\n      'translate-y': [{\n        'translate-y': [translate]\n      }],\n      /**\n       * Skew X\n       * @see https://tailwindcss.com/docs/skew\n       */\n      'skew-x': [{\n        'skew-x': [skew]\n      }],\n      /**\n       * Skew Y\n       * @see https://tailwindcss.com/docs/skew\n       */\n      'skew-y': [{\n        'skew-y': [skew]\n      }],\n      /**\n       * Transform Origin\n       * @see https://tailwindcss.com/docs/transform-origin\n       */\n      'transform-origin': [{\n        origin: ['center', 'top', 'top-right', 'right', 'bottom-right', 'bottom', 'bottom-left', 'left', 'top-left', isArbitraryValue]\n      }],\n      // Interactivity\n      /**\n       * Accent Color\n       * @see https://tailwindcss.com/docs/accent-color\n       */\n      accent: [{\n        accent: ['auto', colors]\n      }],\n      /**\n       * Appearance\n       * @see https://tailwindcss.com/docs/appearance\n       */\n      appearance: [{\n        appearance: ['none', 'auto']\n      }],\n      /**\n       * Cursor\n       * @see https://tailwindcss.com/docs/cursor\n       */\n      cursor: [{\n        cursor: ['auto', 'default', 'pointer', 'wait', 'text', 'move', 'help', 'not-allowed', 'none', 'context-menu', 'progress', 'cell', 'crosshair', 'vertical-text', 'alias', 'copy', 'no-drop', 'grab', 'grabbing', 'all-scroll', 'col-resize', 'row-resize', 'n-resize', 'e-resize', 's-resize', 'w-resize', 'ne-resize', 'nw-resize', 'se-resize', 'sw-resize', 'ew-resize', 'ns-resize', 'nesw-resize', 'nwse-resize', 'zoom-in', 'zoom-out', isArbitraryValue]\n      }],\n      /**\n       * Caret Color\n       * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities\n       */\n      'caret-color': [{\n        caret: [colors]\n      }],\n      /**\n       * Pointer Events\n       * @see https://tailwindcss.com/docs/pointer-events\n       */\n      'pointer-events': [{\n        'pointer-events': ['none', 'auto']\n      }],\n      /**\n       * Resize\n       * @see https://tailwindcss.com/docs/resize\n       */\n      resize: [{\n        resize: ['none', 'y', 'x', '']\n      }],\n      /**\n       * Scroll Behavior\n       * @see https://tailwindcss.com/docs/scroll-behavior\n       */\n      'scroll-behavior': [{\n        scroll: ['auto', 'smooth']\n      }],\n      /**\n       * Scroll Margin\n       * @see https://tailwindcss.com/docs/scroll-margin\n       */\n      'scroll-m': [{\n        'scroll-m': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Margin X\n       * @see https://tailwindcss.com/docs/scroll-margin\n       */\n      'scroll-mx': [{\n        'scroll-mx': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Margin Y\n       * @see https://tailwindcss.com/docs/scroll-margin\n       */\n      'scroll-my': [{\n        'scroll-my': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Margin Start\n       * @see https://tailwindcss.com/docs/scroll-margin\n       */\n      'scroll-ms': [{\n        'scroll-ms': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Margin End\n       * @see https://tailwindcss.com/docs/scroll-margin\n       */\n      'scroll-me': [{\n        'scroll-me': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Margin Top\n       * @see https://tailwindcss.com/docs/scroll-margin\n       */\n      'scroll-mt': [{\n        'scroll-mt': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Margin Right\n       * @see https://tailwindcss.com/docs/scroll-margin\n       */\n      'scroll-mr': [{\n        'scroll-mr': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Margin Bottom\n       * @see https://tailwindcss.com/docs/scroll-margin\n       */\n      'scroll-mb': [{\n        'scroll-mb': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Margin Left\n       * @see https://tailwindcss.com/docs/scroll-margin\n       */\n      'scroll-ml': [{\n        'scroll-ml': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Padding\n       * @see https://tailwindcss.com/docs/scroll-padding\n       */\n      'scroll-p': [{\n        'scroll-p': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Padding X\n       * @see https://tailwindcss.com/docs/scroll-padding\n       */\n      'scroll-px': [{\n        'scroll-px': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Padding Y\n       * @see https://tailwindcss.com/docs/scroll-padding\n       */\n      'scroll-py': [{\n        'scroll-py': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Padding Start\n       * @see https://tailwindcss.com/docs/scroll-padding\n       */\n      'scroll-ps': [{\n        'scroll-ps': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Padding End\n       * @see https://tailwindcss.com/docs/scroll-padding\n       */\n      'scroll-pe': [{\n        'scroll-pe': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Padding Top\n       * @see https://tailwindcss.com/docs/scroll-padding\n       */\n      'scroll-pt': [{\n        'scroll-pt': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Padding Right\n       * @see https://tailwindcss.com/docs/scroll-padding\n       */\n      'scroll-pr': [{\n        'scroll-pr': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Padding Bottom\n       * @see https://tailwindcss.com/docs/scroll-padding\n       */\n      'scroll-pb': [{\n        'scroll-pb': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Padding Left\n       * @see https://tailwindcss.com/docs/scroll-padding\n       */\n      'scroll-pl': [{\n        'scroll-pl': getSpacingWithArbitrary()\n      }],\n      /**\n       * Scroll Snap Align\n       * @see https://tailwindcss.com/docs/scroll-snap-align\n       */\n      'snap-align': [{\n        snap: ['start', 'end', 'center', 'align-none']\n      }],\n      /**\n       * Scroll Snap Stop\n       * @see https://tailwindcss.com/docs/scroll-snap-stop\n       */\n      'snap-stop': [{\n        snap: ['normal', 'always']\n      }],\n      /**\n       * Scroll Snap Type\n       * @see https://tailwindcss.com/docs/scroll-snap-type\n       */\n      'snap-type': [{\n        snap: ['none', 'x', 'y', 'both']\n      }],\n      /**\n       * Scroll Snap Type Strictness\n       * @see https://tailwindcss.com/docs/scroll-snap-type\n       */\n      'snap-strictness': [{\n        snap: ['mandatory', 'proximity']\n      }],\n      /**\n       * Touch Action\n       * @see https://tailwindcss.com/docs/touch-action\n       */\n      touch: [{\n        touch: ['auto', 'none', 'manipulation']\n      }],\n      /**\n       * Touch Action X\n       * @see https://tailwindcss.com/docs/touch-action\n       */\n      'touch-x': [{\n        'touch-pan': ['x', 'left', 'right']\n      }],\n      /**\n       * Touch Action Y\n       * @see https://tailwindcss.com/docs/touch-action\n       */\n      'touch-y': [{\n        'touch-pan': ['y', 'up', 'down']\n      }],\n      /**\n       * Touch Action Pinch Zoom\n       * @see https://tailwindcss.com/docs/touch-action\n       */\n      'touch-pz': ['touch-pinch-zoom'],\n      /**\n       * User Select\n       * @see https://tailwindcss.com/docs/user-select\n       */\n      select: [{\n        select: ['none', 'text', 'all', 'auto']\n      }],\n      /**\n       * Will Change\n       * @see https://tailwindcss.com/docs/will-change\n       */\n      'will-change': [{\n        'will-change': ['auto', 'scroll', 'contents', 'transform', isArbitraryValue]\n      }],\n      // SVG\n      /**\n       * Fill\n       * @see https://tailwindcss.com/docs/fill\n       */\n      fill: [{\n        fill: [colors, 'none']\n      }],\n      /**\n       * Stroke Width\n       * @see https://tailwindcss.com/docs/stroke-width\n       */\n      'stroke-w': [{\n        stroke: [isLength, isArbitraryLength, isArbitraryNumber]\n      }],\n      /**\n       * Stroke\n       * @see https://tailwindcss.com/docs/stroke\n       */\n      stroke: [{\n        stroke: [colors, 'none']\n      }],\n      // Accessibility\n      /**\n       * Screen Readers\n       * @see https://tailwindcss.com/docs/screen-readers\n       */\n      sr: ['sr-only', 'not-sr-only'],\n      /**\n       * Forced Color Adjust\n       * @see https://tailwindcss.com/docs/forced-color-adjust\n       */\n      'forced-color-adjust': [{\n        'forced-color-adjust': ['auto', 'none']\n      }]\n    },\n    conflictingClassGroups: {\n      overflow: ['overflow-x', 'overflow-y'],\n      overscroll: ['overscroll-x', 'overscroll-y'],\n      inset: ['inset-x', 'inset-y', 'start', 'end', 'top', 'right', 'bottom', 'left'],\n      'inset-x': ['right', 'left'],\n      'inset-y': ['top', 'bottom'],\n      flex: ['basis', 'grow', 'shrink'],\n      gap: ['gap-x', 'gap-y'],\n      p: ['px', 'py', 'ps', 'pe', 'pt', 'pr', 'pb', 'pl'],\n      px: ['pr', 'pl'],\n      py: ['pt', 'pb'],\n      m: ['mx', 'my', 'ms', 'me', 'mt', 'mr', 'mb', 'ml'],\n      mx: ['mr', 'ml'],\n      my: ['mt', 'mb'],\n      size: ['w', 'h'],\n      'font-size': ['leading'],\n      'fvn-normal': ['fvn-ordinal', 'fvn-slashed-zero', 'fvn-figure', 'fvn-spacing', 'fvn-fraction'],\n      'fvn-ordinal': ['fvn-normal'],\n      'fvn-slashed-zero': ['fvn-normal'],\n      'fvn-figure': ['fvn-normal'],\n      'fvn-spacing': ['fvn-normal'],\n      'fvn-fraction': ['fvn-normal'],\n      'line-clamp': ['display', 'overflow'],\n      rounded: ['rounded-s', 'rounded-e', 'rounded-t', 'rounded-r', 'rounded-b', 'rounded-l', 'rounded-ss', 'rounded-se', 'rounded-ee', 'rounded-es', 'rounded-tl', 'rounded-tr', 'rounded-br', 'rounded-bl'],\n      'rounded-s': ['rounded-ss', 'rounded-es'],\n      'rounded-e': ['rounded-se', 'rounded-ee'],\n      'rounded-t': ['rounded-tl', 'rounded-tr'],\n      'rounded-r': ['rounded-tr', 'rounded-br'],\n      'rounded-b': ['rounded-br', 'rounded-bl'],\n      'rounded-l': ['rounded-tl', 'rounded-bl'],\n      'border-spacing': ['border-spacing-x', 'border-spacing-y'],\n      'border-w': ['border-w-s', 'border-w-e', 'border-w-t', 'border-w-r', 'border-w-b', 'border-w-l'],\n      'border-w-x': ['border-w-r', 'border-w-l'],\n      'border-w-y': ['border-w-t', 'border-w-b'],\n      'border-color': ['border-color-s', 'border-color-e', 'border-color-t', 'border-color-r', 'border-color-b', 'border-color-l'],\n      'border-color-x': ['border-color-r', 'border-color-l'],\n      'border-color-y': ['border-color-t', 'border-color-b'],\n      'scroll-m': ['scroll-mx', 'scroll-my', 'scroll-ms', 'scroll-me', 'scroll-mt', 'scroll-mr', 'scroll-mb', 'scroll-ml'],\n      'scroll-mx': ['scroll-mr', 'scroll-ml'],\n      'scroll-my': ['scroll-mt', 'scroll-mb'],\n      'scroll-p': ['scroll-px', 'scroll-py', 'scroll-ps', 'scroll-pe', 'scroll-pt', 'scroll-pr', 'scroll-pb', 'scroll-pl'],\n      'scroll-px': ['scroll-pr', 'scroll-pl'],\n      'scroll-py': ['scroll-pt', 'scroll-pb'],\n      touch: ['touch-x', 'touch-y', 'touch-pz'],\n      'touch-x': ['touch'],\n      'touch-y': ['touch'],\n      'touch-pz': ['touch']\n    },\n    conflictingClassGroupModifiers: {\n      'font-size': ['leading']\n    }\n  };\n};\n\n/**\n * @param baseConfig Config where other config will be merged into. This object will be mutated.\n * @param configExtension Partial config to merge into the `baseConfig`.\n */\nconst mergeConfigs = (baseConfig, {\n  cacheSize,\n  prefix,\n  separator,\n  experimentalParseClassName,\n  extend = {},\n  override = {}\n}) => {\n  overrideProperty(baseConfig, 'cacheSize', cacheSize);\n  overrideProperty(baseConfig, 'prefix', prefix);\n  overrideProperty(baseConfig, 'separator', separator);\n  overrideProperty(baseConfig, 'experimentalParseClassName', experimentalParseClassName);\n  for (const configKey in override) {\n    overrideConfigProperties(baseConfig[configKey], override[configKey]);\n  }\n  for (const key in extend) {\n    mergeConfigProperties(baseConfig[key], extend[key]);\n  }\n  return baseConfig;\n};\nconst overrideProperty = (baseObject, overrideKey, overrideValue) => {\n  if (overrideValue !== undefined) {\n    baseObject[overrideKey] = overrideValue;\n  }\n};\nconst overrideConfigProperties = (baseObject, overrideObject) => {\n  if (overrideObject) {\n    for (const key in overrideObject) {\n      overrideProperty(baseObject, key, overrideObject[key]);\n    }\n  }\n};\nconst mergeConfigProperties = (baseObject, mergeObject) => {\n  if (mergeObject) {\n    for (const key in mergeObject) {\n      const mergeValue = mergeObject[key];\n      if (mergeValue !== undefined) {\n        baseObject[key] = (baseObject[key] || []).concat(mergeValue);\n      }\n    }\n  }\n};\nconst extendTailwindMerge = (configExtension, ...createConfig) => typeof configExtension === 'function' ? createTailwindMerge(getDefaultConfig, configExtension, ...createConfig) : createTailwindMerge(() => mergeConfigs(getDefaultConfig(), configExtension), ...createConfig);\nconst twMerge = /*#__PURE__*/createTailwindMerge(getDefaultConfig);\nexport { createTailwindMerge, extendTailwindMerge, fromTheme, getDefaultConfig, mergeConfigs, twJoin, twMerge, validators };\n//# sourceMappingURL=bundle-mjs.mjs.map\n","function r(e){var t,f,n=\"\";if(\"string\"==typeof e||\"number\"==typeof e)n+=e;else if(\"object\"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=\" \"),n+=f)}else for(f in e)e[f]&&(n&&(n+=\" \"),n+=f);return n}export function clsx(){for(var e,t,f=0,n=\"\",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=\" \"),n+=t);return n}export default clsx;","import { twMerge as n } from \"tailwind-merge\";\nimport { clsx as l } from \"clsx\";\nconst a = (...r) => n(l(...r)), i = (...r) => (...o) => r.forEach((t) => t?.(...o)), g = (r) => {\n  const o = {\n    0: \"gap-0\",\n    xxs: \"gap-1\",\n    xs: \"gap-2\",\n    sm: \"gap-3\",\n    md: \"gap-4\",\n    lg: \"gap-5\",\n    xl: \"gap-6\",\n    \"2xl\": \"gap-8\"\n  };\n  return o[r] || o.md;\n}, d = {\n  1: \"grid-cols-1\",\n  2: \"grid-cols-2\",\n  3: \"grid-cols-3\",\n  4: \"grid-cols-4\",\n  5: \"grid-cols-5\",\n  6: \"grid-cols-6\",\n  7: \"grid-cols-7\",\n  8: \"grid-cols-8\",\n  9: \"grid-cols-9\",\n  10: \"grid-cols-10\",\n  11: \"grid-cols-11\",\n  12: \"grid-cols-12\"\n}, f = () => {\n  const r = window.navigator?.userAgentData?.platform || window.navigator.platform, o = [\n    \"macOS\",\n    \"Macintosh\",\n    \"MacIntel\",\n    \"MacPPC\",\n    \"Mac68K\"\n  ], t = [\"Win32\", \"Win64\", \"Windows\", \"WinCE\"];\n  let e = \"null\";\n  return o.includes(r) ? e = \"Mac OS\" : t.includes(r) && (e = \"Windows\"), e;\n}, u = (r) => r < 1024 ? `${r} bytes` : r < 1024 * 1024 ? `${(r / 1024).toFixed(2)} KB` : r < 1024 * 1024 * 1024 ? `${(r / (1024 * 1024)).toFixed(2)} MB` : `${(r / (1024 * 1024 * 1024)).toFixed(2)} GB`, m = {\n  set: (r, o) => {\n    if (!(typeof window > \"u\"))\n      try {\n        localStorage.setItem(r, JSON.stringify(o));\n      } catch (t) {\n        console.error(t);\n      }\n  },\n  get: (r) => {\n    if (typeof window > \"u\")\n      return null;\n    try {\n      const o = localStorage.getItem(r);\n      return o ? JSON.parse(o) : null;\n    } catch (o) {\n      return console.error(o), null;\n    }\n  },\n  remove: (r) => {\n    if (!(typeof window > \"u\"))\n      try {\n        localStorage.removeItem(r);\n      } catch (o) {\n        console.error(o);\n      }\n  }\n};\nexport {\n  i as callAll,\n  a as cn,\n  d as columnClasses,\n  u as formatFileSize,\n  g as getGapClass,\n  f as getOperatingSystem,\n  m as safeLocalStorage\n};\n//# sourceMappingURL=functions.es.js.map\n","const l = {\n  sm: {\n    1: \"grid-cols-1\",\n    2: \"grid-cols-2\",\n    3: \"grid-cols-3\",\n    4: \"grid-cols-4\",\n    5: \"grid-cols-5\",\n    6: \"grid-cols-6\",\n    7: \"grid-cols-7\",\n    8: \"grid-cols-8\",\n    9: \"grid-cols-9\",\n    10: \"grid-cols-10\",\n    11: \"grid-cols-11\",\n    12: \"grid-cols-12\"\n  },\n  md: {\n    1: \"md:grid-cols-1\",\n    2: \"md:grid-cols-2\",\n    3: \"md:grid-cols-3\",\n    4: \"md:grid-cols-4\",\n    5: \"md:grid-cols-5\",\n    6: \"md:grid-cols-6\",\n    7: \"md:grid-cols-7\",\n    8: \"md:grid-cols-8\",\n    9: \"md:grid-cols-9\",\n    10: \"md:grid-cols-10\",\n    11: \"md:grid-cols-11\",\n    12: \"md:grid-cols-12\"\n  },\n  lg: {\n    1: \"lg:grid-cols-1\",\n    2: \"lg:grid-cols-2\",\n    3: \"lg:grid-cols-3\",\n    4: \"lg:grid-cols-4\",\n    5: \"lg:grid-cols-5\",\n    6: \"lg:grid-cols-6\",\n    7: \"lg:grid-cols-7\",\n    8: \"lg:grid-cols-8\",\n    9: \"lg:grid-cols-9\",\n    10: \"lg:grid-cols-10\",\n    11: \"lg:grid-cols-11\",\n    12: \"lg:grid-cols-12\"\n  }\n}, s = {\n  sm: {\n    xs: \"gap-2\",\n    sm: \"gap-4\",\n    md: \"gap-5\",\n    lg: \"gap-6\",\n    xl: \"gap-6\",\n    \"2xl\": \"gap-8\"\n  },\n  md: {\n    xs: \"md:gap-2\",\n    sm: \"md:gap-4\",\n    md: \"md:gap-5\",\n    lg: \"md:gap-6\",\n    xl: \"md:gap-6\",\n    \"2xl\": \"md:gap-8\"\n  },\n  lg: {\n    xs: \"lg:gap-2\",\n    sm: \"lg:gap-4\",\n    md: \"lg:gap-5\",\n    lg: \"lg:gap-6\",\n    xl: \"lg:gap-6\",\n    \"2xl\": \"lg:gap-8\"\n  }\n}, e = {\n  sm: {\n    xs: \"gap-x-2\",\n    sm: \"gap-x-4\",\n    md: \"gap-x-5\",\n    lg: \"gap-x-6\",\n    xl: \"gap-x-6\",\n    \"2xl\": \"gap-x-8\"\n  },\n  md: {\n    xs: \"md:gap-x-2\",\n    sm: \"md:gap-x-4\",\n    md: \"md:gap-x-5\",\n    lg: \"md:gap-x-6\",\n    xl: \"md:gap-x-6\",\n    \"2xl\": \"md:gap-x-8\"\n  },\n  lg: {\n    xs: \"lg:gap-x-2\",\n    sm: \"lg:gap-x-4\",\n    md: \"lg:gap-x-5\",\n    lg: \"lg:gap-x-6\",\n    xl: \"lg:gap-x-6\",\n    \"2xl\": \"lg:gap-x-8\"\n  }\n}, r = {\n  sm: {\n    xs: \"gap-y-2\",\n    sm: \"gap-y-4\",\n    md: \"gap-y-5\",\n    lg: \"gap-y-6\",\n    xl: \"gap-y-6\",\n    \"2xl\": \"gap-y-8\"\n  },\n  md: {\n    xs: \"md:gap-y-2\",\n    sm: \"md:gap-y-4\",\n    md: \"md:gap-y-5\",\n    lg: \"md:gap-y-6\",\n    xl: \"md:gap-y-6\",\n    \"2xl\": \"md:gap-y-8\"\n  },\n  lg: {\n    xs: \"lg:gap-y-2\",\n    sm: \"lg:gap-y-4\",\n    md: \"lg:gap-y-5\",\n    lg: \"lg:gap-y-6\",\n    xl: \"lg:gap-y-6\",\n    \"2xl\": \"lg:gap-y-8\"\n  }\n}, t = {\n  sm: {\n    1: \"col-span-1\",\n    2: \"col-span-2\",\n    3: \"col-span-3\",\n    4: \"col-span-4\",\n    5: \"col-span-5\",\n    6: \"col-span-6\",\n    7: \"col-span-7\",\n    8: \"col-span-8\",\n    9: \"col-span-9\",\n    10: \"col-span-10\",\n    11: \"col-span-11\",\n    12: \"col-span-12\"\n  },\n  md: {\n    1: \"md:col-span-1\",\n    2: \"md:col-span-2\",\n    3: \"md:col-span-3\",\n    4: \"md:col-span-4\",\n    5: \"md:col-span-5\",\n    6: \"md:col-span-6\",\n    7: \"md:col-span-7\",\n    8: \"md:col-span-8\",\n    9: \"md:col-span-9\",\n    10: \"md:col-span-10\",\n    11: \"md:col-span-11\",\n    12: \"md:col-span-12\"\n  },\n  lg: {\n    1: \"lg:col-span-1\",\n    2: \"lg:col-span-2\",\n    3: \"lg:col-span-3\",\n    4: \"lg:col-span-4\",\n    5: \"lg:col-span-5\",\n    6: \"lg:col-span-6\",\n    7: \"lg:col-span-7\",\n    8: \"lg:col-span-8\",\n    9: \"lg:col-span-9\",\n    10: \"lg:col-span-10\",\n    11: \"lg:col-span-11\",\n    12: \"lg:col-span-12\"\n  }\n}, d = {\n  sm: {\n    1: \"col-start-1\",\n    2: \"col-start-2\",\n    3: \"col-start-3\",\n    4: \"col-start-4\",\n    5: \"col-start-5\",\n    6: \"col-start-6\",\n    7: \"col-start-7\",\n    8: \"col-start-8\",\n    9: \"col-start-9\",\n    10: \"col-start-10\",\n    11: \"col-start-11\",\n    12: \"col-start-12\"\n  },\n  md: {\n    1: \"md:col-start-1\",\n    2: \"md:col-start-2\",\n    3: \"md:col-start-3\",\n    4: \"md:col-start-4\",\n    5: \"md:col-start-5\",\n    6: \"md:col-start-6\",\n    7: \"md:col-start-7\",\n    8: \"md:col-start-8\",\n    9: \"md:col-start-9\",\n    10: \"md:col-start-10\",\n    11: \"md:col-start-11\",\n    12: \"md:col-start-12\"\n  },\n  lg: {\n    1: \"lg:col-start-1\",\n    2: \"lg:col-start-2\",\n    3: \"lg:col-start-3\",\n    4: \"lg:col-start-4\",\n    5: \"lg:col-start-5\",\n    6: \"lg:col-start-6\",\n    7: \"lg:col-start-7\",\n    8: \"lg:col-start-8\",\n    9: \"lg:col-start-9\",\n    10: \"lg:col-start-10\",\n    11: \"lg:col-start-11\",\n    12: \"lg:col-start-12\"\n  }\n}, o = {\n  sm: {\n    row: \"grid-flow-row\",\n    column: \"grid-flow-col\",\n    \"row-dense\": \"grid-flow-row-dense\",\n    \"column-dense\": \"grid-flow-col-dense\"\n  },\n  md: {\n    row: \"md:grid-flow-row\",\n    column: \"md:grid-flow-col\",\n    \"row-dense\": \"md:grid-flow-row-dense\",\n    \"column-dense\": \"md:grid-flow-col-dense\"\n  },\n  lg: {\n    row: \"lg:grid-flow-row\",\n    column: \"lg:grid-flow-col\",\n    \"row-dense\": \"lg:grid-flow-row-dense\",\n    \"column-dense\": \"lg:grid-flow-col-dense\"\n  }\n}, g = {\n  sm: {\n    normal: \"justify-normal\",\n    start: \"justify-start\",\n    end: \"justify-end\",\n    center: \"justify-center\",\n    between: \"justify-between\",\n    around: \"justify-around\",\n    evenly: \"justify-evenly\",\n    stretch: \"justify-stretch\"\n  },\n  md: {\n    normal: \"md:justify-normal\",\n    start: \"md:justify-start\",\n    end: \"md:justify-end\",\n    center: \"md:justify-center\",\n    between: \"md:justify-between\",\n    around: \"md:justify-around\",\n    evenly: \"md:justify-evenly\",\n    stretch: \"md:justify-stretch\"\n  },\n  lg: {\n    normal: \"lg:justify-normal\",\n    start: \"lg:justify-start\",\n    end: \"lg:justify-end\",\n    center: \"lg:justify-center\",\n    between: \"lg:justify-between\",\n    around: \"lg:justify-around\",\n    evenly: \"lg:justify-evenly\",\n    stretch: \"lg:justify-stretch\"\n  }\n}, a = {\n  sm: {\n    start: \"items-start\",\n    end: \"items-end\",\n    center: \"items-center\",\n    baseline: \"items-baseline\",\n    stretch: \"items-stretch\"\n  },\n  md: {\n    start: \"md:items-start\",\n    end: \"md:items-end\",\n    center: \"md:items-center\",\n    baseline: \"md:items-baseline\",\n    stretch: \"md:items-stretch\"\n  },\n  lg: {\n    start: \"lg:items-start\",\n    end: \"lg:items-end\",\n    center: \"lg:items-center\",\n    baseline: \"lg:items-baseline\",\n    stretch: \"lg:items-stretch\"\n  }\n}, m = {\n  sm: {\n    start: \"self-start\",\n    end: \"self-end\",\n    center: \"self-center\",\n    baseline: \"self-baseline\",\n    stretch: \"self-stretch\"\n  },\n  md: {\n    start: \"md:self-start\",\n    end: \"md:self-end\",\n    center: \"md:self-center\",\n    baseline: \"md:self-baseline\",\n    stretch: \"md:self-stretch\"\n  },\n  lg: {\n    start: \"lg:self-start\",\n    end: \"lg:self-end\",\n    center: \"lg:self-center\",\n    baseline: \"lg:self-baseline\",\n    stretch: \"lg:self-stretch\"\n  }\n}, c = {\n  sm: {\n    auto: \"justify-self-auto\",\n    start: \"justify-self-start\",\n    end: \"justify-self-end\",\n    center: \"justify-self-center\",\n    baseline: \"justify-self-baseline\",\n    stretch: \"justify-self-stretch\"\n  },\n  md: {\n    auto: \"md:justify-self-auto\",\n    start: \"md:justify-self-start\",\n    end: \"md:justify-self-end\",\n    center: \"md:justify-self-center\",\n    baseline: \"md:justify-self-baseline\",\n    stretch: \"md:justify-self-stretch\"\n  },\n  lg: {\n    auto: \"lg:justify-self-auto\",\n    start: \"lg:justify-self-start\",\n    end: \"lg:justify-self-end\",\n    center: \"lg:justify-self-center\",\n    baseline: \"lg:justify-self-baseline\",\n    stretch: \"lg:justify-self-stretch\"\n  }\n}, n = {\n  sm: {\n    row: \"flex-row\",\n    \"row-reverse\": \"flex-row-reverse\",\n    column: \"flex-col\",\n    \"column-reverse\": \"flex-col-reverse\"\n  },\n  md: {\n    row: \"md:flex-row\",\n    \"row-reverse\": \"md:flex-row-reverse\",\n    column: \"md:flex-col\",\n    \"column-reverse\": \"md:flex-col-reverse\"\n  },\n  lg: {\n    row: \"lg:flex-row\",\n    \"row-reverse\": \"lg:flex-row-reverse\",\n    column: \"lg:flex-col\",\n    \"column-reverse\": \"lg:flex-col-reverse\"\n  }\n}, i = {\n  sm: {\n    wrap: \"flex-wrap\",\n    \"wrap-reverse\": \"flex-wrap-reverse\",\n    nowrap: \"flex-nowrap\"\n  },\n  md: {\n    wrap: \"md:flex-wrap\",\n    \"wrap-reverse\": \"md:flex-wrap-reverse\",\n    nowrap: \"md:flex-nowrap\"\n  },\n  lg: {\n    wrap: \"lg:flex-wrap\",\n    \"wrap-reverse\": \"lg:flex-wrap-reverse\",\n    nowrap: \"lg:flex-nowrap\"\n  }\n}, f = {\n  sm: {\n    1: \"w-full\",\n    2: \"w-1/2\",\n    3: \"w-1/3\",\n    4: \"w-1/4\",\n    5: \"w-1/5\",\n    6: \"w-1/6\",\n    7: \"w-1/7\",\n    8: \"w-1/8\",\n    9: \"w-1/9\",\n    10: \"w-1/10\",\n    11: \"w-1/11\",\n    12: \"w-1/12\"\n  },\n  md: {\n    1: \"md:w-full\",\n    2: \"md:w-1/2\",\n    3: \"md:w-1/3\",\n    4: \"md:w-1/4\",\n    5: \"md:w-1/5\",\n    6: \"md:w-1/6\",\n    7: \"md:w-1/7\",\n    8: \"md:w-1/8\",\n    9: \"md:w-1/9\",\n    10: \"md:w-1/10\",\n    11: \"md:w-1/11\",\n    12: \"md:w-1/12\"\n  },\n  lg: {\n    1: \"lg:w-full\",\n    2: \"lg:w-1/2\",\n    3: \"lg:w-1/3\",\n    4: \"lg:w-1/4\",\n    5: \"lg:w-1/5\",\n    6: \"lg:w-1/6\",\n    7: \"lg:w-1/7\",\n    8: \"lg:w-1/8\",\n    9: \"lg:w-1/9\",\n    10: \"lg:w-1/10\",\n    11: \"lg:w-1/11\",\n    12: \"lg:w-1/12\"\n  }\n}, p = {\n  sm: {\n    1: \"order-1\",\n    2: \"order-2\",\n    3: \"order-3\",\n    4: \"order-4\",\n    5: \"order-5\",\n    6: \"order-6\",\n    7: \"order-7\",\n    8: \"order-8\",\n    9: \"order-9\",\n    10: \"order-10\",\n    11: \"order-11\",\n    12: \"order-12\",\n    first: \"order-first\",\n    last: \"order-last\",\n    none: \"order-none\"\n  },\n  md: {\n    1: \"md:order-1\",\n    2: \"md:order-2\",\n    3: \"md:order-3\",\n    4: \"md:order-4\",\n    5: \"md:order-5\",\n    6: \"md:order-6\",\n    7: \"md:order-7\",\n    8: \"md:order-8\",\n    9: \"md:order-9\",\n    10: \"md:order-10\",\n    11: \"md:order-11\",\n    12: \"md:order-12\",\n    first: \"md:order-first\",\n    last: \"md:order-last\",\n    none: \"md:order-none\"\n  },\n  lg: {\n    1: \"lg:order-1\",\n    2: \"lg:order-2\",\n    3: \"lg:order-3\",\n    4: \"lg:order-4\",\n    5: \"lg:order-5\",\n    6: \"lg:order-6\",\n    7: \"lg:order-7\",\n    8: \"lg:order-8\",\n    9: \"lg:order-9\",\n    10: \"lg:order-10\",\n    11: \"lg:order-11\",\n    12: \"lg:order-12\",\n    first: \"lg:order-first\",\n    last: \"lg:order-last\",\n    none: \"lg:order-none\"\n  }\n}, w = {\n  sm: {\n    0: \"grow-0\",\n    1: \"grow\"\n  },\n  md: {\n    0: \"md:grow-0\",\n    1: \"md:grow\"\n  },\n  lg: {\n    0: \"lg:grow-0\",\n    1: \"lg:grow\"\n  }\n}, u = {\n  sm: {\n    0: \"shrink-0\",\n    1: \"shrink\"\n  },\n  md: {\n    0: \"md:shrink-0\",\n    1: \"md:shrink\"\n  },\n  lg: {\n    0: \"lg:shrink-0\",\n    1: \"lg:shrink\"\n  }\n};\nexport {\n  a as alignClassNames,\n  m as alignSelfClassNames,\n  f as flexColumnClassNames,\n  n as flexDirectionClassNames,\n  w as flexGrowClassNames,\n  p as flexOrderClassNames,\n  u as flexShrinkClassNames,\n  i as flexWrapClassNames,\n  s as gapClassNames,\n  e as gapXClassNames,\n  r as gapYClassNames,\n  t as gridColSpanClassNames,\n  d as gridColStartClassNames,\n  l as gridColumnClassNames,\n  o as gridFlowClassNames,\n  g as justifyClassNames,\n  c as justifySelfClassNames\n};\n//# sourceMappingURL=container-styles.es.js.map\n","const p = (o, r, i, c = \"sm\") => {\n  const t = [];\n  switch (typeof o) {\n    case \"object\":\n      for (const [n, e] of Object.entries(o))\n        r[n] && t.push(\n          r?.[n]?.[e] ?? r?.[n]?.[i?.[n]] ?? \"\"\n        );\n      break;\n    case \"string\":\n    case \"number\":\n      const b = c;\n      t.push(\n        r?.[b]?.[o] ?? r?.[b]?.[i?.[b]] ?? \"\"\n      );\n      break;\n    default:\n      if (o === void 0)\n        break;\n      t.push(\n        r?.[c]?.[i] ?? \"\"\n      );\n      break;\n  }\n  return t.join(\" \");\n};\nexport {\n  p as getClassNames\n};\n//# sourceMappingURL=container-utils.es.js.map\n","import { jsx as c } from \"react/jsx-runtime\";\nimport { cn as g } from \"../../utilities/functions.es.js\";\nimport { gridColumnClassNames as x, gapClassNames as F, gapXClassNames as G, gapYClassNames as I, alignClassNames as X, justifyClassNames as Y, gridFlowClassNames as h, gridColSpanClassNames as k, gridColStartClassNames as q, alignSelfClassNames as z, justifySelfClassNames as A } from \"./container-styles.es.js\";\nimport { getClassNames as s } from \"./container-utils.es.js\";\nconst B = ({\n  className: a,\n  cols: l,\n  gap: e,\n  gapX: o,\n  gapY: m,\n  align: t,\n  justify: r,\n  gridFlow: i,\n  colsSubGrid: C = !1,\n  rowsSubGrid: n = !1,\n  autoRows: N = !1,\n  autoCols: f = !1,\n  children: d,\n  ...u\n}) => {\n  const p = s(l, x, 1), S = s(e, F, \"sm\"), j = s(o, G, \"\"), w = s(m, I, \"\"), y = s(t, X, \"\"), b = s(r, Y, \"\"), v = s(i, h, \"\");\n  return /* @__PURE__ */ c(\n    \"div\",\n    {\n      className: g(\n        \"grid\",\n        {\n          \"grid-cols-subgrid\": C,\n          \"grid-rows-subgrid\": n,\n          \"auto-cols-auto\": f,\n          \"auto-rows-auto\": N\n        },\n        p,\n        S,\n        j,\n        w,\n        y,\n        b,\n        v,\n        a\n      ),\n      ...u,\n      children: d\n    }\n  );\n}, D = ({\n  className: a,\n  children: l,\n  colSpan: e,\n  colStart: o,\n  alignSelf: m,\n  justifySelf: t,\n  ...r\n}) => {\n  const i = s(e, k, 0), C = s(\n    o,\n    q,\n    0\n  ), n = s(\n    m,\n    z,\n    \"\"\n  ), N = s(\n    t,\n    A,\n    \"\"\n  );\n  return /* @__PURE__ */ c(\n    \"div\",\n    {\n      className: g(\n        i,\n        C,\n        n,\n        N,\n        a\n      ),\n      ...r,\n      children: l\n    }\n  );\n};\nB.Item = D;\nexport {\n  D as GridItem,\n  B as default\n};\n//# sourceMappingURL=grid-container.es.js.map\n","import { jsx as e } from \"react/jsx-runtime\";\nimport { createContext as O, useContext as h } from \"react\";\nimport { cn as I } from \"../../utilities/functions.es.js\";\nimport v from \"./grid-container.es.js\";\nimport { getClassNames as s } from \"./container-utils.es.js\";\nimport { flexWrapClassNames as B, gapClassNames as D, gapXClassNames as P, gapYClassNames as W, flexDirectionClassNames as q, justifyClassNames as z, alignClassNames as A, alignSelfClassNames as E, justifySelfClassNames as F, flexGrowClassNames as H, flexShrinkClassNames as J, flexOrderClassNames as K, flexColumnClassNames as L } from \"./container-styles.es.js\";\nconst g = O({}), M = () => h(g), S = ({\n  containerType: a = \"flex\",\n  // flex, (grid - functionality not implemented)\n  gap: r = \"sm\",\n  // xs, sm, md, lg, xl, 2xl\n  gapX: m,\n  gapY: t,\n  direction: N,\n  // row, row-reverse, column, column reverse\n  justify: o,\n  // justify-content (normal, start, end, center, between, around, evenly, stretch)\n  align: n,\n  // align-items (start, end, center, baseline, stretch)\n  wrap: c,\n  // nowrap, wrap, wrap-reverse\n  cols: l,\n  className: C,\n  children: i,\n  ...f\n}) => {\n  if (a === \"grid\")\n    return /* @__PURE__ */ e(\n      g.Provider,\n      {\n        value: {\n          containerType: a\n        },\n        children: /* @__PURE__ */ e(\n          v,\n          {\n            className: C,\n            gap: r,\n            gapX: m,\n            gapY: t,\n            cols: l,\n            children: i,\n            align: n,\n            justify: o,\n            ...f\n          }\n        )\n      }\n    );\n  const d = s(c, B, \"\"), u = s(r, D, \"sm\"), x = s(m, P, \"\"), p = s(t, W, \"\"), w = s(\n    N,\n    q,\n    \"\"\n  ), j = s(\n    o,\n    z,\n    \"\"\n  ), k = s(n, A, \"\"), y = I(\n    \"flex\",\n    d,\n    u,\n    x,\n    p,\n    w,\n    j,\n    k,\n    C\n  ), G = () => a === \"flex\" ? /* @__PURE__ */ e(\"div\", { className: y, children: i }) : /* @__PURE__ */ e(\n    v,\n    {\n      className: C,\n      gap: r,\n      gapX: m,\n      gapY: t,\n      cols: l,\n      children: i,\n      align: n,\n      justify: o,\n      ...f\n    }\n  );\n  return /* @__PURE__ */ e(\n    g.Provider,\n    {\n      value: {\n        containerType: a,\n        cols: l\n      },\n      children: G()\n    }\n  );\n}, b = ({\n  grow: a,\n  shrink: r,\n  order: m,\n  alignSelf: t,\n  justifySelf: N,\n  className: o,\n  children: n,\n  ...c\n}) => {\n  const { containerType: l, cols: C } = M();\n  if (l === \"grid\")\n    return /* @__PURE__ */ e(\n      v.Item,\n      {\n        className: o,\n        alignSelf: t,\n        justifySelf: N,\n        children: n,\n        ...c\n      }\n    );\n  const i = s(\n    t,\n    E,\n    \"\"\n  ), f = s(\n    N,\n    F,\n    \"\"\n  ), d = s(a, H, 0), u = s(r, J, 0), x = s(m, K, 0), p = s(C, L, 1);\n  return /* @__PURE__ */ e(\n    \"div\",\n    {\n      className: I(\n        \"box-border\",\n        d,\n        u,\n        x,\n        i,\n        f,\n        p,\n        o\n      ),\n      children: n\n    }\n  );\n};\nS.Item = b;\nS.displayName = \"Container\";\nb.displayName = \"Container.Item\";\nexport {\n  S as Container,\n  b as Item,\n  S as default\n};\n//# sourceMappingURL=container.es.js.map\n","import { jsx as r } from \"react/jsx-runtime\";\nimport { cn as a, getGapClass as l } from \"../../utilities/functions.es.js\";\nconst i = ({\n  children: e,\n  gap: t = \"lg\",\n  className: s,\n  ...m\n}) => /* @__PURE__ */ r(\n  \"div\",\n  {\n    className: a(\n      \"w-full box-border flex items-center justify-between bg-background-primary p-5 min-h-16\",\n      l(t),\n      s\n    ),\n    ...m,\n    children: e\n  }\n);\ni.displayName = \"Topbar\";\nconst n = ({ gap: e = \"sm\", children: t, className: s }) => /* @__PURE__ */ r(\"div\", { className: a(\"flex items-center\", l(e), s), children: t });\nn.displayName = \"Topbar.Left\";\nconst c = ({\n  gap: e = \"md\",\n  children: t,\n  align: s = \"center\",\n  className: m\n}) => {\n  const f = {\n    left: \"justify-start\",\n    center: \"justify-center\",\n    right: \"justify-end\"\n  }[s];\n  return /* @__PURE__ */ r(\n    \"div\",\n    {\n      className: a(\n        \"flex items-center grow\",\n        l(e),\n        f,\n        m\n      ),\n      children: t\n    }\n  );\n};\nc.displayName = \"Topbar.Middle\";\nconst o = ({ gap: e = \"sm\", children: t, className: s }) => /* @__PURE__ */ r(\"div\", { className: a(\"flex items-center\", l(e), s), children: t });\no.displayName = \"Topbar.Right\";\nconst d = ({ children: e, className: t }) => /* @__PURE__ */ r(\n  \"div\",\n  {\n    className: a(\"flex items-center [&>svg]:block h-full\", t),\n    children: e\n  }\n);\nd.displayName = \"Topbar.Item\";\ni.Left = n;\ni.Middle = c;\ni.Right = o;\ni.Item = d;\nexport {\n  d as Item,\n  n as Left,\n  c as Middle,\n  o as Right,\n  i as Topbar,\n  i as default\n};\n//# sourceMappingURL=topbar.es.js.map\n","import { jsxs as z, jsx as o } from \"react/jsx-runtime\";\nimport { forwardRef as j, Fragment as l } from \"react\";\nimport { cn as B } from \"../../utilities/functions.es.js\";\nconst R = j(\n  (u, b) => {\n    const {\n      variant: n = \"primary\",\n      // primary, secondary, outline, ghost, link\n      size: g = \"md\",\n      // xs, sm, md, lg\n      type: c = \"button\",\n      tag: h = \"button\",\n      className: m,\n      children: r,\n      disabled: t = !1,\n      destructive: s = !1,\n      // true, false\n      icon: e = null,\n      // icon component\n      iconPosition: v = \"left\",\n      // left, right,\n      loading: f = !1,\n      ...p\n    } = u, x = \"outline outline-1 border-none cursor-pointer transition-colors duration-300 ease-in-out text-xs font-semibold focus:ring-2 focus:ring-toggle-on focus:ring-offset-2 disabled:text-text-disabled\", y = s && \"focus:ring-focus-error\", w = f ? \"opacity-50 disabled:cursor-not-allowed\" : \"\", N = {\n      primary: \"text-text-on-color bg-button-primary hover:bg-button-primary-hover outline-button-primary hover:outline-button-primary-hover shadow-xs disabled:shadow-none focus:shadow-none disabled:bg-button-disabled disabled:outline-button-disabled\",\n      secondary: \"text-text-on-color bg-button-secondary hover:bg-button-secondary-hover outline-button-secondary hover:outline-button-secondary-hover shadow-xs focus:shadow-none disabled:shadow-none disabled:bg-button-disabled disabled:outline-button-disabled\",\n      outline: \"text-button-tertiary-color outline-border-subtle bg-button-tertiary shadow-sm focus:shadow-none hover:bg-button-tertiary-hover hover:outline-border-subtle disabled:bg-button-tertiary disabled:outline-border-disabled\",\n      ghost: \"text-text-primary bg-transparent outline-transparent hover:bg-button-tertiary-hover\",\n      link: \"outline-none text-link-primary bg-transparent hover:text-link-primary-hover hover:underline p-0 border-0 leading-none\"\n    }[n], C = s && !t ? {\n      primary: \"bg-button-danger hover:bg-button-danger-hover outline-button-danger hover:outline-button-danger-hover\",\n      secondary: \"bg-button-danger hover:bg-button-danger-hover outline-button-danger hover:outline-button-danger-hover\",\n      outline: \"text-button-danger outline outline-1 outline-button-danger hover:outline-button-danger bg-button-tertiary hover:bg-field-background-error\",\n      ghost: \"text-button-danger hover:bg-field-background-error\",\n      link: \"text-button-danger hover:text-button-danger-secondary\"\n    }[n] : \"\", k = {\n      xs: \"p-1 rounded [&>svg]:size-4\",\n      sm: \"p-2 rounded [&>svg]:size-4 gap-0.5\",\n      md: \"p-2.5 rounded-md text-sm [&>svg]:size-5 gap-1\",\n      lg: \"p-3 rounded-lg text-base [&>svg]:size-6 gap-1\"\n    }[g];\n    let a, i = null, d = \"\";\n    return e && (d = \"flex items-center justify-center\", v === \"left\" ? a = e : i = e), /* @__PURE__ */ z(\n      h,\n      {\n        ref: b,\n        type: c,\n        className: B(\n          d,\n          x,\n          k,\n          N,\n          C,\n          y,\n          w,\n          {\n            \"cursor-default\": t\n          },\n          m\n        ),\n        disabled: t,\n        ...p,\n        children: [\n          /* @__PURE__ */ o(l, { children: a }, \"left-icon\"),\n          r ? /* @__PURE__ */ o(\"span\", { className: \"px-1\", children: r }) : null,\n          /* @__PURE__ */ o(l, { children: i }, \"right-icon\")\n        ]\n      }\n    );\n  }\n);\nR.displayName = \"Button\";\nexport {\n  R as default\n};\n//# sourceMappingURL=button.es.js.map\n","function hasWindow() {\n  return typeof window !== 'undefined';\n}\nfunction getNodeName(node) {\n  if (isNode(node)) {\n    return (node.nodeName || '').toLowerCase();\n  }\n  // Mocked nodes in testing environments may not be instances of Node. By\n  // returning `#document` an infinite loop won't occur.\n  // https://github.com/floating-ui/floating-ui/issues/2317\n  return '#document';\n}\nfunction getWindow(node) {\n  var _node$ownerDocument;\n  return (node == null || (_node$ownerDocument = node.ownerDocument) == null ? void 0 : _node$ownerDocument.defaultView) || window;\n}\nfunction getDocumentElement(node) {\n  var _ref;\n  return (_ref = (isNode(node) ? node.ownerDocument : node.document) || window.document) == null ? void 0 : _ref.documentElement;\n}\nfunction isNode(value) {\n  if (!hasWindow()) {\n    return false;\n  }\n  return value instanceof Node || value instanceof getWindow(value).Node;\n}\nfunction isElement(value) {\n  if (!hasWindow()) {\n    return false;\n  }\n  return value instanceof Element || value instanceof getWindow(value).Element;\n}\nfunction isHTMLElement(value) {\n  if (!hasWindow()) {\n    return false;\n  }\n  return value instanceof HTMLElement || value instanceof getWindow(value).HTMLElement;\n}\nfunction isShadowRoot(value) {\n  if (!hasWindow() || typeof ShadowRoot === 'undefined') {\n    return false;\n  }\n  return value instanceof ShadowRoot || value instanceof getWindow(value).ShadowRoot;\n}\nfunction isOverflowElement(element) {\n  const {\n    overflow,\n    overflowX,\n    overflowY,\n    display\n  } = getComputedStyle(element);\n  return /auto|scroll|overlay|hidden|clip/.test(overflow + overflowY + overflowX) && !['inline', 'contents'].includes(display);\n}\nfunction isTableElement(element) {\n  return ['table', 'td', 'th'].includes(getNodeName(element));\n}\nfunction isTopLayer(element) {\n  return [':popover-open', ':modal'].some(selector => {\n    try {\n      return element.matches(selector);\n    } catch (e) {\n      return false;\n    }\n  });\n}\nfunction isContainingBlock(elementOrCss) {\n  const webkit = isWebKit();\n  const css = isElement(elementOrCss) ? getComputedStyle(elementOrCss) : elementOrCss;\n\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n  // https://drafts.csswg.org/css-transforms-2/#individual-transforms\n  return ['transform', 'translate', 'scale', 'rotate', 'perspective'].some(value => css[value] ? css[value] !== 'none' : false) || (css.containerType ? css.containerType !== 'normal' : false) || !webkit && (css.backdropFilter ? css.backdropFilter !== 'none' : false) || !webkit && (css.filter ? css.filter !== 'none' : false) || ['transform', 'translate', 'scale', 'rotate', 'perspective', 'filter'].some(value => (css.willChange || '').includes(value)) || ['paint', 'layout', 'strict', 'content'].some(value => (css.contain || '').includes(value));\n}\nfunction getContainingBlock(element) {\n  let currentNode = getParentNode(element);\n  while (isHTMLElement(currentNode) && !isLastTraversableNode(currentNode)) {\n    if (isContainingBlock(currentNode)) {\n      return currentNode;\n    } else if (isTopLayer(currentNode)) {\n      return null;\n    }\n    currentNode = getParentNode(currentNode);\n  }\n  return null;\n}\nfunction isWebKit() {\n  if (typeof CSS === 'undefined' || !CSS.supports) return false;\n  return CSS.supports('-webkit-backdrop-filter', 'none');\n}\nfunction isLastTraversableNode(node) {\n  return ['html', 'body', '#document'].includes(getNodeName(node));\n}\nfunction getComputedStyle(element) {\n  return getWindow(element).getComputedStyle(element);\n}\nfunction getNodeScroll(element) {\n  if (isElement(element)) {\n    return {\n      scrollLeft: element.scrollLeft,\n      scrollTop: element.scrollTop\n    };\n  }\n  return {\n    scrollLeft: element.scrollX,\n    scrollTop: element.scrollY\n  };\n}\nfunction getParentNode(node) {\n  if (getNodeName(node) === 'html') {\n    return node;\n  }\n  const result =\n  // Step into the shadow DOM of the parent of a slotted node.\n  node.assignedSlot ||\n  // DOM Element detected.\n  node.parentNode ||\n  // ShadowRoot detected.\n  isShadowRoot(node) && node.host ||\n  // Fallback.\n  getDocumentElement(node);\n  return isShadowRoot(result) ? result.host : result;\n}\nfunction getNearestOverflowAncestor(node) {\n  const parentNode = getParentNode(node);\n  if (isLastTraversableNode(parentNode)) {\n    return node.ownerDocument ? node.ownerDocument.body : node.body;\n  }\n  if (isHTMLElement(parentNode) && isOverflowElement(parentNode)) {\n    return parentNode;\n  }\n  return getNearestOverflowAncestor(parentNode);\n}\nfunction getOverflowAncestors(node, list, traverseIframes) {\n  var _node$ownerDocument2;\n  if (list === void 0) {\n    list = [];\n  }\n  if (traverseIframes === void 0) {\n    traverseIframes = true;\n  }\n  const scrollableAncestor = getNearestOverflowAncestor(node);\n  const isBody = scrollableAncestor === ((_node$ownerDocument2 = node.ownerDocument) == null ? void 0 : _node$ownerDocument2.body);\n  const win = getWindow(scrollableAncestor);\n  if (isBody) {\n    const frameElement = getFrameElement(win);\n    return list.concat(win, win.visualViewport || [], isOverflowElement(scrollableAncestor) ? scrollableAncestor : [], frameElement && traverseIframes ? getOverflowAncestors(frameElement) : []);\n  }\n  return list.concat(scrollableAncestor, getOverflowAncestors(scrollableAncestor, [], traverseIframes));\n}\nfunction getFrameElement(win) {\n  return win.parent && Object.getPrototypeOf(win.parent) ? win.frameElement : null;\n}\n\nexport { getComputedStyle, getContainingBlock, getDocumentElement, getFrameElement, getNearestOverflowAncestor, getNodeName, getNodeScroll, getOverflowAncestors, getParentNode, getWindow, isContainingBlock, isElement, isHTMLElement, isLastTraversableNode, isNode, isOverflowElement, isShadowRoot, isTableElement, isTopLayer, isWebKit };\n","import { isShadowRoot, isHTMLElement } from '@floating-ui/utils/dom';\n\nfunction activeElement(doc) {\n  let activeElement = doc.activeElement;\n  while (((_activeElement = activeElement) == null || (_activeElement = _activeElement.shadowRoot) == null ? void 0 : _activeElement.activeElement) != null) {\n    var _activeElement;\n    activeElement = activeElement.shadowRoot.activeElement;\n  }\n  return activeElement;\n}\nfunction contains(parent, child) {\n  if (!parent || !child) {\n    return false;\n  }\n  const rootNode = child.getRootNode == null ? void 0 : child.getRootNode();\n\n  // First, attempt with faster native method\n  if (parent.contains(child)) {\n    return true;\n  }\n\n  // then fallback to custom implementation with Shadow DOM support\n  if (rootNode && isShadowRoot(rootNode)) {\n    let next = child;\n    while (next) {\n      if (parent === next) {\n        return true;\n      }\n      // @ts-ignore\n      next = next.parentNode || next.host;\n    }\n  }\n\n  // Give up, the result is false\n  return false;\n}\n// Avoid Chrome DevTools blue warning.\nfunction getPlatform() {\n  const uaData = navigator.userAgentData;\n  if (uaData != null && uaData.platform) {\n    return uaData.platform;\n  }\n  return navigator.platform;\n}\nfunction getUserAgent() {\n  const uaData = navigator.userAgentData;\n  if (uaData && Array.isArray(uaData.brands)) {\n    return uaData.brands.map(_ref => {\n      let {\n        brand,\n        version\n      } = _ref;\n      return brand + \"/\" + version;\n    }).join(' ');\n  }\n  return navigator.userAgent;\n}\n\n// License: https://github.com/adobe/react-spectrum/blob/b35d5c02fe900badccd0cf1a8f23bb593419f238/packages/@react-aria/utils/src/isVirtualEvent.ts\nfunction isVirtualClick(event) {\n  // FIXME: Firefox is now emitting a deprecation warning for `mozInputSource`.\n  // Try to find a workaround for this. `react-aria` source still has the check.\n  if (event.mozInputSource === 0 && event.isTrusted) {\n    return true;\n  }\n  if (isAndroid() && event.pointerType) {\n    return event.type === 'click' && event.buttons === 1;\n  }\n  return event.detail === 0 && !event.pointerType;\n}\nfunction isVirtualPointerEvent(event) {\n  if (isJSDOM()) return false;\n  return !isAndroid() && event.width === 0 && event.height === 0 || isAndroid() && event.width === 1 && event.height === 1 && event.pressure === 0 && event.detail === 0 && event.pointerType === 'mouse' ||\n  // iOS VoiceOver returns 0.333• for width/height.\n  event.width < 1 && event.height < 1 && event.pressure === 0 && event.detail === 0 && event.pointerType === 'touch';\n}\nfunction isSafari() {\n  // Chrome DevTools does not complain about navigator.vendor\n  return /apple/i.test(navigator.vendor);\n}\nfunction isAndroid() {\n  const re = /android/i;\n  return re.test(getPlatform()) || re.test(getUserAgent());\n}\nfunction isMac() {\n  return getPlatform().toLowerCase().startsWith('mac') && !navigator.maxTouchPoints;\n}\nfunction isJSDOM() {\n  return getUserAgent().includes('jsdom/');\n}\nfunction isMouseLikePointerType(pointerType, strict) {\n  // On some Linux machines with Chromium, mouse inputs return a `pointerType`\n  // of \"pen\": https://github.com/floating-ui/floating-ui/issues/2015\n  const values = ['mouse', 'pen'];\n  if (!strict) {\n    values.push('', undefined);\n  }\n  return values.includes(pointerType);\n}\nfunction isReactEvent(event) {\n  return 'nativeEvent' in event;\n}\nfunction isRootElement(element) {\n  return element.matches('html,body');\n}\nfunction getDocument(node) {\n  return (node == null ? void 0 : node.ownerDocument) || document;\n}\nfunction isEventTargetWithin(event, node) {\n  if (node == null) {\n    return false;\n  }\n  if ('composedPath' in event) {\n    return event.composedPath().includes(node);\n  }\n\n  // TS thinks `event` is of type never as it assumes all browsers support composedPath, but browsers without shadow dom don't\n  const e = event;\n  return e.target != null && node.contains(e.target);\n}\nfunction getTarget(event) {\n  if ('composedPath' in event) {\n    return event.composedPath()[0];\n  }\n\n  // TS thinks `event` is of type never as it assumes all browsers support\n  // `composedPath()`, but browsers without shadow DOM don't.\n  return event.target;\n}\nconst TYPEABLE_SELECTOR = \"input:not([type='hidden']):not([disabled]),\" + \"[contenteditable]:not([contenteditable='false']),textarea:not([disabled])\";\nfunction isTypeableElement(element) {\n  return isHTMLElement(element) && element.matches(TYPEABLE_SELECTOR);\n}\nfunction stopEvent(event) {\n  event.preventDefault();\n  event.stopPropagation();\n}\nfunction isTypeableCombobox(element) {\n  if (!element) return false;\n  return element.getAttribute('role') === 'combobox' && isTypeableElement(element);\n}\n\nexport { TYPEABLE_SELECTOR, activeElement, contains, getDocument, getPlatform, getTarget, getUserAgent, isAndroid, isEventTargetWithin, isJSDOM, isMac, isMouseLikePointerType, isReactEvent, isRootElement, isSafari, isTypeableCombobox, isTypeableElement, isVirtualClick, isVirtualPointerEvent, stopEvent };\n","/*!\n* tabbable 6.2.0\n* @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE\n*/\n// NOTE: separate `:not()` selectors has broader browser support than the newer\n//  `:not([inert], [inert] *)` (Feb 2023)\n// CAREFUL: JSDom does not support `:not([inert] *)` as a selector; using it causes\n//  the entire query to fail, resulting in no nodes found, which will break a lot\n//  of things... so we have to rely on JS to identify nodes inside an inert container\nvar candidateSelectors = ['input:not([inert])', 'select:not([inert])', 'textarea:not([inert])', 'a[href]:not([inert])', 'button:not([inert])', '[tabindex]:not(slot):not([inert])', 'audio[controls]:not([inert])', 'video[controls]:not([inert])', '[contenteditable]:not([contenteditable=\"false\"]):not([inert])', 'details>summary:first-of-type:not([inert])', 'details:not([inert])'];\nvar candidateSelector = /* #__PURE__ */candidateSelectors.join(',');\nvar NoElement = typeof Element === 'undefined';\nvar matches = NoElement ? function () {} : Element.prototype.matches || Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;\nvar getRootNode = !NoElement && Element.prototype.getRootNode ? function (element) {\n  var _element$getRootNode;\n  return element === null || element === void 0 ? void 0 : (_element$getRootNode = element.getRootNode) === null || _element$getRootNode === void 0 ? void 0 : _element$getRootNode.call(element);\n} : function (element) {\n  return element === null || element === void 0 ? void 0 : element.ownerDocument;\n};\n\n/**\n * Determines if a node is inert or in an inert ancestor.\n * @param {Element} [node]\n * @param {boolean} [lookUp] If true and `node` is not inert, looks up at ancestors to\n *  see if any of them are inert. If false, only `node` itself is considered.\n * @returns {boolean} True if inert itself or by way of being in an inert ancestor.\n *  False if `node` is falsy.\n */\nvar isInert = function isInert(node, lookUp) {\n  var _node$getAttribute;\n  if (lookUp === void 0) {\n    lookUp = true;\n  }\n  // CAREFUL: JSDom does not support inert at all, so we can't use the `HTMLElement.inert`\n  //  JS API property; we have to check the attribute, which can either be empty or 'true';\n  //  if it's `null` (not specified) or 'false', it's an active element\n  var inertAtt = node === null || node === void 0 ? void 0 : (_node$getAttribute = node.getAttribute) === null || _node$getAttribute === void 0 ? void 0 : _node$getAttribute.call(node, 'inert');\n  var inert = inertAtt === '' || inertAtt === 'true';\n\n  // NOTE: this could also be handled with `node.matches('[inert], :is([inert] *)')`\n  //  if it weren't for `matches()` not being a function on shadow roots; the following\n  //  code works for any kind of node\n  // CAREFUL: JSDom does not appear to support certain selectors like `:not([inert] *)`\n  //  so it likely would not support `:is([inert] *)` either...\n  var result = inert || lookUp && node && isInert(node.parentNode); // recursive\n\n  return result;\n};\n\n/**\n * Determines if a node's content is editable.\n * @param {Element} [node]\n * @returns True if it's content-editable; false if it's not or `node` is falsy.\n */\nvar isContentEditable = function isContentEditable(node) {\n  var _node$getAttribute2;\n  // CAREFUL: JSDom does not support the `HTMLElement.isContentEditable` API so we have\n  //  to use the attribute directly to check for this, which can either be empty or 'true';\n  //  if it's `null` (not specified) or 'false', it's a non-editable element\n  var attValue = node === null || node === void 0 ? void 0 : (_node$getAttribute2 = node.getAttribute) === null || _node$getAttribute2 === void 0 ? void 0 : _node$getAttribute2.call(node, 'contenteditable');\n  return attValue === '' || attValue === 'true';\n};\n\n/**\n * @param {Element} el container to check in\n * @param {boolean} includeContainer add container to check\n * @param {(node: Element) => boolean} filter filter candidates\n * @returns {Element[]}\n */\nvar getCandidates = function getCandidates(el, includeContainer, filter) {\n  // even if `includeContainer=false`, we still have to check it for inertness because\n  //  if it's inert, all its children are inert\n  if (isInert(el)) {\n    return [];\n  }\n  var candidates = Array.prototype.slice.apply(el.querySelectorAll(candidateSelector));\n  if (includeContainer && matches.call(el, candidateSelector)) {\n    candidates.unshift(el);\n  }\n  candidates = candidates.filter(filter);\n  return candidates;\n};\n\n/**\n * @callback GetShadowRoot\n * @param {Element} element to check for shadow root\n * @returns {ShadowRoot|boolean} ShadowRoot if available or boolean indicating if a shadowRoot is attached but not available.\n */\n\n/**\n * @callback ShadowRootFilter\n * @param {Element} shadowHostNode the element which contains shadow content\n * @returns {boolean} true if a shadow root could potentially contain valid candidates.\n */\n\n/**\n * @typedef {Object} CandidateScope\n * @property {Element} scopeParent contains inner candidates\n * @property {Element[]} candidates list of candidates found in the scope parent\n */\n\n/**\n * @typedef {Object} IterativeOptions\n * @property {GetShadowRoot|boolean} getShadowRoot true if shadow support is enabled; falsy if not;\n *  if a function, implies shadow support is enabled and either returns the shadow root of an element\n *  or a boolean stating if it has an undisclosed shadow root\n * @property {(node: Element) => boolean} filter filter candidates\n * @property {boolean} flatten if true then result will flatten any CandidateScope into the returned list\n * @property {ShadowRootFilter} shadowRootFilter filter shadow roots;\n */\n\n/**\n * @param {Element[]} elements list of element containers to match candidates from\n * @param {boolean} includeContainer add container list to check\n * @param {IterativeOptions} options\n * @returns {Array.<Element|CandidateScope>}\n */\nvar getCandidatesIteratively = function getCandidatesIteratively(elements, includeContainer, options) {\n  var candidates = [];\n  var elementsToCheck = Array.from(elements);\n  while (elementsToCheck.length) {\n    var element = elementsToCheck.shift();\n    if (isInert(element, false)) {\n      // no need to look up since we're drilling down\n      // anything inside this container will also be inert\n      continue;\n    }\n    if (element.tagName === 'SLOT') {\n      // add shadow dom slot scope (slot itself cannot be focusable)\n      var assigned = element.assignedElements();\n      var content = assigned.length ? assigned : element.children;\n      var nestedCandidates = getCandidatesIteratively(content, true, options);\n      if (options.flatten) {\n        candidates.push.apply(candidates, nestedCandidates);\n      } else {\n        candidates.push({\n          scopeParent: element,\n          candidates: nestedCandidates\n        });\n      }\n    } else {\n      // check candidate element\n      var validCandidate = matches.call(element, candidateSelector);\n      if (validCandidate && options.filter(element) && (includeContainer || !elements.includes(element))) {\n        candidates.push(element);\n      }\n\n      // iterate over shadow content if possible\n      var shadowRoot = element.shadowRoot ||\n      // check for an undisclosed shadow\n      typeof options.getShadowRoot === 'function' && options.getShadowRoot(element);\n\n      // no inert look up because we're already drilling down and checking for inertness\n      //  on the way down, so all containers to this root node should have already been\n      //  vetted as non-inert\n      var validShadowRoot = !isInert(shadowRoot, false) && (!options.shadowRootFilter || options.shadowRootFilter(element));\n      if (shadowRoot && validShadowRoot) {\n        // add shadow dom scope IIF a shadow root node was given; otherwise, an undisclosed\n        //  shadow exists, so look at light dom children as fallback BUT create a scope for any\n        //  child candidates found because they're likely slotted elements (elements that are\n        //  children of the web component element (which has the shadow), in the light dom, but\n        //  slotted somewhere _inside_ the undisclosed shadow) -- the scope is created below,\n        //  _after_ we return from this recursive call\n        var _nestedCandidates = getCandidatesIteratively(shadowRoot === true ? element.children : shadowRoot.children, true, options);\n        if (options.flatten) {\n          candidates.push.apply(candidates, _nestedCandidates);\n        } else {\n          candidates.push({\n            scopeParent: element,\n            candidates: _nestedCandidates\n          });\n        }\n      } else {\n        // there's not shadow so just dig into the element's (light dom) children\n        //  __without__ giving the element special scope treatment\n        elementsToCheck.unshift.apply(elementsToCheck, element.children);\n      }\n    }\n  }\n  return candidates;\n};\n\n/**\n * @private\n * Determines if the node has an explicitly specified `tabindex` attribute.\n * @param {HTMLElement} node\n * @returns {boolean} True if so; false if not.\n */\nvar hasTabIndex = function hasTabIndex(node) {\n  return !isNaN(parseInt(node.getAttribute('tabindex'), 10));\n};\n\n/**\n * Determine the tab index of a given node.\n * @param {HTMLElement} node\n * @returns {number} Tab order (negative, 0, or positive number).\n * @throws {Error} If `node` is falsy.\n */\nvar getTabIndex = function getTabIndex(node) {\n  if (!node) {\n    throw new Error('No node provided');\n  }\n  if (node.tabIndex < 0) {\n    // in Chrome, <details/>, <audio controls/> and <video controls/> elements get a default\n    // `tabIndex` of -1 when the 'tabindex' attribute isn't specified in the DOM,\n    // yet they are still part of the regular tab order; in FF, they get a default\n    // `tabIndex` of 0; since Chrome still puts those elements in the regular tab\n    // order, consider their tab index to be 0.\n    // Also browsers do not return `tabIndex` correctly for contentEditable nodes;\n    // so if they don't have a tabindex attribute specifically set, assume it's 0.\n    if ((/^(AUDIO|VIDEO|DETAILS)$/.test(node.tagName) || isContentEditable(node)) && !hasTabIndex(node)) {\n      return 0;\n    }\n  }\n  return node.tabIndex;\n};\n\n/**\n * Determine the tab index of a given node __for sort order purposes__.\n * @param {HTMLElement} node\n * @param {boolean} [isScope] True for a custom element with shadow root or slot that, by default,\n *  has tabIndex -1, but needs to be sorted by document order in order for its content to be\n *  inserted into the correct sort position.\n * @returns {number} Tab order (negative, 0, or positive number).\n */\nvar getSortOrderTabIndex = function getSortOrderTabIndex(node, isScope) {\n  var tabIndex = getTabIndex(node);\n  if (tabIndex < 0 && isScope && !hasTabIndex(node)) {\n    return 0;\n  }\n  return tabIndex;\n};\nvar sortOrderedTabbables = function sortOrderedTabbables(a, b) {\n  return a.tabIndex === b.tabIndex ? a.documentOrder - b.documentOrder : a.tabIndex - b.tabIndex;\n};\nvar isInput = function isInput(node) {\n  return node.tagName === 'INPUT';\n};\nvar isHiddenInput = function isHiddenInput(node) {\n  return isInput(node) && node.type === 'hidden';\n};\nvar isDetailsWithSummary = function isDetailsWithSummary(node) {\n  var r = node.tagName === 'DETAILS' && Array.prototype.slice.apply(node.children).some(function (child) {\n    return child.tagName === 'SUMMARY';\n  });\n  return r;\n};\nvar getCheckedRadio = function getCheckedRadio(nodes, form) {\n  for (var i = 0; i < nodes.length; i++) {\n    if (nodes[i].checked && nodes[i].form === form) {\n      return nodes[i];\n    }\n  }\n};\nvar isTabbableRadio = function isTabbableRadio(node) {\n  if (!node.name) {\n    return true;\n  }\n  var radioScope = node.form || getRootNode(node);\n  var queryRadios = function queryRadios(name) {\n    return radioScope.querySelectorAll('input[type=\"radio\"][name=\"' + name + '\"]');\n  };\n  var radioSet;\n  if (typeof window !== 'undefined' && typeof window.CSS !== 'undefined' && typeof window.CSS.escape === 'function') {\n    radioSet = queryRadios(window.CSS.escape(node.name));\n  } else {\n    try {\n      radioSet = queryRadios(node.name);\n    } catch (err) {\n      // eslint-disable-next-line no-console\n      console.error('Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s', err.message);\n      return false;\n    }\n  }\n  var checked = getCheckedRadio(radioSet, node.form);\n  return !checked || checked === node;\n};\nvar isRadio = function isRadio(node) {\n  return isInput(node) && node.type === 'radio';\n};\nvar isNonTabbableRadio = function isNonTabbableRadio(node) {\n  return isRadio(node) && !isTabbableRadio(node);\n};\n\n// determines if a node is ultimately attached to the window's document\nvar isNodeAttached = function isNodeAttached(node) {\n  var _nodeRoot;\n  // The root node is the shadow root if the node is in a shadow DOM; some document otherwise\n  //  (but NOT _the_ document; see second 'If' comment below for more).\n  // If rootNode is shadow root, it'll have a host, which is the element to which the shadow\n  //  is attached, and the one we need to check if it's in the document or not (because the\n  //  shadow, and all nodes it contains, is never considered in the document since shadows\n  //  behave like self-contained DOMs; but if the shadow's HOST, which is part of the document,\n  //  is hidden, or is not in the document itself but is detached, it will affect the shadow's\n  //  visibility, including all the nodes it contains). The host could be any normal node,\n  //  or a custom element (i.e. web component). Either way, that's the one that is considered\n  //  part of the document, not the shadow root, nor any of its children (i.e. the node being\n  //  tested).\n  // To further complicate things, we have to look all the way up until we find a shadow HOST\n  //  that is attached (or find none) because the node might be in nested shadows...\n  // If rootNode is not a shadow root, it won't have a host, and so rootNode should be the\n  //  document (per the docs) and while it's a Document-type object, that document does not\n  //  appear to be the same as the node's `ownerDocument` for some reason, so it's safer\n  //  to ignore the rootNode at this point, and use `node.ownerDocument`. Otherwise,\n  //  using `rootNode.contains(node)` will _always_ be true we'll get false-positives when\n  //  node is actually detached.\n  // NOTE: If `nodeRootHost` or `node` happens to be the `document` itself (which is possible\n  //  if a tabbable/focusable node was quickly added to the DOM, focused, and then removed\n  //  from the DOM as in https://github.com/focus-trap/focus-trap-react/issues/905), then\n  //  `ownerDocument` will be `null`, hence the optional chaining on it.\n  var nodeRoot = node && getRootNode(node);\n  var nodeRootHost = (_nodeRoot = nodeRoot) === null || _nodeRoot === void 0 ? void 0 : _nodeRoot.host;\n\n  // in some cases, a detached node will return itself as the root instead of a document or\n  //  shadow root object, in which case, we shouldn't try to look further up the host chain\n  var attached = false;\n  if (nodeRoot && nodeRoot !== node) {\n    var _nodeRootHost, _nodeRootHost$ownerDo, _node$ownerDocument;\n    attached = !!((_nodeRootHost = nodeRootHost) !== null && _nodeRootHost !== void 0 && (_nodeRootHost$ownerDo = _nodeRootHost.ownerDocument) !== null && _nodeRootHost$ownerDo !== void 0 && _nodeRootHost$ownerDo.contains(nodeRootHost) || node !== null && node !== void 0 && (_node$ownerDocument = node.ownerDocument) !== null && _node$ownerDocument !== void 0 && _node$ownerDocument.contains(node));\n    while (!attached && nodeRootHost) {\n      var _nodeRoot2, _nodeRootHost2, _nodeRootHost2$ownerD;\n      // since it's not attached and we have a root host, the node MUST be in a nested shadow DOM,\n      //  which means we need to get the host's host and check if that parent host is contained\n      //  in (i.e. attached to) the document\n      nodeRoot = getRootNode(nodeRootHost);\n      nodeRootHost = (_nodeRoot2 = nodeRoot) === null || _nodeRoot2 === void 0 ? void 0 : _nodeRoot2.host;\n      attached = !!((_nodeRootHost2 = nodeRootHost) !== null && _nodeRootHost2 !== void 0 && (_nodeRootHost2$ownerD = _nodeRootHost2.ownerDocument) !== null && _nodeRootHost2$ownerD !== void 0 && _nodeRootHost2$ownerD.contains(nodeRootHost));\n    }\n  }\n  return attached;\n};\nvar isZeroArea = function isZeroArea(node) {\n  var _node$getBoundingClie = node.getBoundingClientRect(),\n    width = _node$getBoundingClie.width,\n    height = _node$getBoundingClie.height;\n  return width === 0 && height === 0;\n};\nvar isHidden = function isHidden(node, _ref) {\n  var displayCheck = _ref.displayCheck,\n    getShadowRoot = _ref.getShadowRoot;\n  // NOTE: visibility will be `undefined` if node is detached from the document\n  //  (see notes about this further down), which means we will consider it visible\n  //  (this is legacy behavior from a very long way back)\n  // NOTE: we check this regardless of `displayCheck=\"none\"` because this is a\n  //  _visibility_ check, not a _display_ check\n  if (getComputedStyle(node).visibility === 'hidden') {\n    return true;\n  }\n  var isDirectSummary = matches.call(node, 'details>summary:first-of-type');\n  var nodeUnderDetails = isDirectSummary ? node.parentElement : node;\n  if (matches.call(nodeUnderDetails, 'details:not([open]) *')) {\n    return true;\n  }\n  if (!displayCheck || displayCheck === 'full' || displayCheck === 'legacy-full') {\n    if (typeof getShadowRoot === 'function') {\n      // figure out if we should consider the node to be in an undisclosed shadow and use the\n      //  'non-zero-area' fallback\n      var originalNode = node;\n      while (node) {\n        var parentElement = node.parentElement;\n        var rootNode = getRootNode(node);\n        if (parentElement && !parentElement.shadowRoot && getShadowRoot(parentElement) === true // check if there's an undisclosed shadow\n        ) {\n          // node has an undisclosed shadow which means we can only treat it as a black box, so we\n          //  fall back to a non-zero-area test\n          return isZeroArea(node);\n        } else if (node.assignedSlot) {\n          // iterate up slot\n          node = node.assignedSlot;\n        } else if (!parentElement && rootNode !== node.ownerDocument) {\n          // cross shadow boundary\n          node = rootNode.host;\n        } else {\n          // iterate up normal dom\n          node = parentElement;\n        }\n      }\n      node = originalNode;\n    }\n    // else, `getShadowRoot` might be true, but all that does is enable shadow DOM support\n    //  (i.e. it does not also presume that all nodes might have undisclosed shadows); or\n    //  it might be a falsy value, which means shadow DOM support is disabled\n\n    // Since we didn't find it sitting in an undisclosed shadow (or shadows are disabled)\n    //  now we can just test to see if it would normally be visible or not, provided it's\n    //  attached to the main document.\n    // NOTE: We must consider case where node is inside a shadow DOM and given directly to\n    //  `isTabbable()` or `isFocusable()` -- regardless of `getShadowRoot` option setting.\n\n    if (isNodeAttached(node)) {\n      // this works wherever the node is: if there's at least one client rect, it's\n      //  somehow displayed; it also covers the CSS 'display: contents' case where the\n      //  node itself is hidden in place of its contents; and there's no need to search\n      //  up the hierarchy either\n      return !node.getClientRects().length;\n    }\n\n    // Else, the node isn't attached to the document, which means the `getClientRects()`\n    //  API will __always__ return zero rects (this can happen, for example, if React\n    //  is used to render nodes onto a detached tree, as confirmed in this thread:\n    //  https://github.com/facebook/react/issues/9117#issuecomment-284228870)\n    //\n    // It also means that even window.getComputedStyle(node).display will return `undefined`\n    //  because styles are only computed for nodes that are in the document.\n    //\n    // NOTE: THIS HAS BEEN THE CASE FOR YEARS. It is not new, nor is it caused by tabbable\n    //  somehow. Though it was never stated officially, anyone who has ever used tabbable\n    //  APIs on nodes in detached containers has actually implicitly used tabbable in what\n    //  was later (as of v5.2.0 on Apr 9, 2021) called `displayCheck=\"none\"` mode -- essentially\n    //  considering __everything__ to be visible because of the innability to determine styles.\n    //\n    // v6.0.0: As of this major release, the default 'full' option __no longer treats detached\n    //  nodes as visible with the 'none' fallback.__\n    if (displayCheck !== 'legacy-full') {\n      return true; // hidden\n    }\n    // else, fallback to 'none' mode and consider the node visible\n  } else if (displayCheck === 'non-zero-area') {\n    // NOTE: Even though this tests that the node's client rect is non-zero to determine\n    //  whether it's displayed, and that a detached node will __always__ have a zero-area\n    //  client rect, we don't special-case for whether the node is attached or not. In\n    //  this mode, we do want to consider nodes that have a zero area to be hidden at all\n    //  times, and that includes attached or not.\n    return isZeroArea(node);\n  }\n\n  // visible, as far as we can tell, or per current `displayCheck=none` mode, we assume\n  //  it's visible\n  return false;\n};\n\n// form fields (nested) inside a disabled fieldset are not focusable/tabbable\n//  unless they are in the _first_ <legend> element of the top-most disabled\n//  fieldset\nvar isDisabledFromFieldset = function isDisabledFromFieldset(node) {\n  if (/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(node.tagName)) {\n    var parentNode = node.parentElement;\n    // check if `node` is contained in a disabled <fieldset>\n    while (parentNode) {\n      if (parentNode.tagName === 'FIELDSET' && parentNode.disabled) {\n        // look for the first <legend> among the children of the disabled <fieldset>\n        for (var i = 0; i < parentNode.children.length; i++) {\n          var child = parentNode.children.item(i);\n          // when the first <legend> (in document order) is found\n          if (child.tagName === 'LEGEND') {\n            // if its parent <fieldset> is not nested in another disabled <fieldset>,\n            // return whether `node` is a descendant of its first <legend>\n            return matches.call(parentNode, 'fieldset[disabled] *') ? true : !child.contains(node);\n          }\n        }\n        // the disabled <fieldset> containing `node` has no <legend>\n        return true;\n      }\n      parentNode = parentNode.parentElement;\n    }\n  }\n\n  // else, node's tabbable/focusable state should not be affected by a fieldset's\n  //  enabled/disabled state\n  return false;\n};\nvar isNodeMatchingSelectorFocusable = function isNodeMatchingSelectorFocusable(options, node) {\n  if (node.disabled ||\n  // we must do an inert look up to filter out any elements inside an inert ancestor\n  //  because we're limited in the type of selectors we can use in JSDom (see related\n  //  note related to `candidateSelectors`)\n  isInert(node) || isHiddenInput(node) || isHidden(node, options) ||\n  // For a details element with a summary, the summary element gets the focus\n  isDetailsWithSummary(node) || isDisabledFromFieldset(node)) {\n    return false;\n  }\n  return true;\n};\nvar isNodeMatchingSelectorTabbable = function isNodeMatchingSelectorTabbable(options, node) {\n  if (isNonTabbableRadio(node) || getTabIndex(node) < 0 || !isNodeMatchingSelectorFocusable(options, node)) {\n    return false;\n  }\n  return true;\n};\nvar isValidShadowRootTabbable = function isValidShadowRootTabbable(shadowHostNode) {\n  var tabIndex = parseInt(shadowHostNode.getAttribute('tabindex'), 10);\n  if (isNaN(tabIndex) || tabIndex >= 0) {\n    return true;\n  }\n  // If a custom element has an explicit negative tabindex,\n  // browsers will not allow tab targeting said element's children.\n  return false;\n};\n\n/**\n * @param {Array.<Element|CandidateScope>} candidates\n * @returns Element[]\n */\nvar sortByOrder = function sortByOrder(candidates) {\n  var regularTabbables = [];\n  var orderedTabbables = [];\n  candidates.forEach(function (item, i) {\n    var isScope = !!item.scopeParent;\n    var element = isScope ? item.scopeParent : item;\n    var candidateTabindex = getSortOrderTabIndex(element, isScope);\n    var elements = isScope ? sortByOrder(item.candidates) : element;\n    if (candidateTabindex === 0) {\n      isScope ? regularTabbables.push.apply(regularTabbables, elements) : regularTabbables.push(element);\n    } else {\n      orderedTabbables.push({\n        documentOrder: i,\n        tabIndex: candidateTabindex,\n        item: item,\n        isScope: isScope,\n        content: elements\n      });\n    }\n  });\n  return orderedTabbables.sort(sortOrderedTabbables).reduce(function (acc, sortable) {\n    sortable.isScope ? acc.push.apply(acc, sortable.content) : acc.push(sortable.content);\n    return acc;\n  }, []).concat(regularTabbables);\n};\nvar tabbable = function tabbable(container, options) {\n  options = options || {};\n  var candidates;\n  if (options.getShadowRoot) {\n    candidates = getCandidatesIteratively([container], options.includeContainer, {\n      filter: isNodeMatchingSelectorTabbable.bind(null, options),\n      flatten: false,\n      getShadowRoot: options.getShadowRoot,\n      shadowRootFilter: isValidShadowRootTabbable\n    });\n  } else {\n    candidates = getCandidates(container, options.includeContainer, isNodeMatchingSelectorTabbable.bind(null, options));\n  }\n  return sortByOrder(candidates);\n};\nvar focusable = function focusable(container, options) {\n  options = options || {};\n  var candidates;\n  if (options.getShadowRoot) {\n    candidates = getCandidatesIteratively([container], options.includeContainer, {\n      filter: isNodeMatchingSelectorFocusable.bind(null, options),\n      flatten: true,\n      getShadowRoot: options.getShadowRoot\n    });\n  } else {\n    candidates = getCandidates(container, options.includeContainer, isNodeMatchingSelectorFocusable.bind(null, options));\n  }\n  return candidates;\n};\nvar isTabbable = function isTabbable(node, options) {\n  options = options || {};\n  if (!node) {\n    throw new Error('No node provided');\n  }\n  if (matches.call(node, candidateSelector) === false) {\n    return false;\n  }\n  return isNodeMatchingSelectorTabbable(options, node);\n};\nvar focusableCandidateSelector = /* #__PURE__ */candidateSelectors.concat('iframe').join(',');\nvar isFocusable = function isFocusable(node, options) {\n  options = options || {};\n  if (!node) {\n    throw new Error('No node provided');\n  }\n  if (matches.call(node, focusableCandidateSelector) === false) {\n    return false;\n  }\n  return isNodeMatchingSelectorFocusable(options, node);\n};\n\nexport { focusable, getTabIndex, isFocusable, isTabbable, tabbable };\n//# sourceMappingURL=index.esm.js.map\n","/**\n * Custom positioning reference element.\n * @see https://floating-ui.com/docs/virtual-elements\n */\n\nconst sides = ['top', 'right', 'bottom', 'left'];\nconst alignments = ['start', 'end'];\nconst placements = /*#__PURE__*/sides.reduce((acc, side) => acc.concat(side, side + \"-\" + alignments[0], side + \"-\" + alignments[1]), []);\nconst min = Math.min;\nconst max = Math.max;\nconst round = Math.round;\nconst floor = Math.floor;\nconst createCoords = v => ({\n  x: v,\n  y: v\n});\nconst oppositeSideMap = {\n  left: 'right',\n  right: 'left',\n  bottom: 'top',\n  top: 'bottom'\n};\nconst oppositeAlignmentMap = {\n  start: 'end',\n  end: 'start'\n};\nfunction clamp(start, value, end) {\n  return max(start, min(value, end));\n}\nfunction evaluate(value, param) {\n  return typeof value === 'function' ? value(param) : value;\n}\nfunction getSide(placement) {\n  return placement.split('-')[0];\n}\nfunction getAlignment(placement) {\n  return placement.split('-')[1];\n}\nfunction getOppositeAxis(axis) {\n  return axis === 'x' ? 'y' : 'x';\n}\nfunction getAxisLength(axis) {\n  return axis === 'y' ? 'height' : 'width';\n}\nfunction getSideAxis(placement) {\n  return ['top', 'bottom'].includes(getSide(placement)) ? 'y' : 'x';\n}\nfunction getAlignmentAxis(placement) {\n  return getOppositeAxis(getSideAxis(placement));\n}\nfunction getAlignmentSides(placement, rects, rtl) {\n  if (rtl === void 0) {\n    rtl = false;\n  }\n  const alignment = getAlignment(placement);\n  const alignmentAxis = getAlignmentAxis(placement);\n  const length = getAxisLength(alignmentAxis);\n  let mainAlignmentSide = alignmentAxis === 'x' ? alignment === (rtl ? 'end' : 'start') ? 'right' : 'left' : alignment === 'start' ? 'bottom' : 'top';\n  if (rects.reference[length] > rects.floating[length]) {\n    mainAlignmentSide = getOppositePlacement(mainAlignmentSide);\n  }\n  return [mainAlignmentSide, getOppositePlacement(mainAlignmentSide)];\n}\nfunction getExpandedPlacements(placement) {\n  const oppositePlacement = getOppositePlacement(placement);\n  return [getOppositeAlignmentPlacement(placement), oppositePlacement, getOppositeAlignmentPlacement(oppositePlacement)];\n}\nfunction getOppositeAlignmentPlacement(placement) {\n  return placement.replace(/start|end/g, alignment => oppositeAlignmentMap[alignment]);\n}\nfunction getSideList(side, isStart, rtl) {\n  const lr = ['left', 'right'];\n  const rl = ['right', 'left'];\n  const tb = ['top', 'bottom'];\n  const bt = ['bottom', 'top'];\n  switch (side) {\n    case 'top':\n    case 'bottom':\n      if (rtl) return isStart ? rl : lr;\n      return isStart ? lr : rl;\n    case 'left':\n    case 'right':\n      return isStart ? tb : bt;\n    default:\n      return [];\n  }\n}\nfunction getOppositeAxisPlacements(placement, flipAlignment, direction, rtl) {\n  const alignment = getAlignment(placement);\n  let list = getSideList(getSide(placement), direction === 'start', rtl);\n  if (alignment) {\n    list = list.map(side => side + \"-\" + alignment);\n    if (flipAlignment) {\n      list = list.concat(list.map(getOppositeAlignmentPlacement));\n    }\n  }\n  return list;\n}\nfunction getOppositePlacement(placement) {\n  return placement.replace(/left|right|bottom|top/g, side => oppositeSideMap[side]);\n}\nfunction expandPaddingObject(padding) {\n  return {\n    top: 0,\n    right: 0,\n    bottom: 0,\n    left: 0,\n    ...padding\n  };\n}\nfunction getPaddingObject(padding) {\n  return typeof padding !== 'number' ? expandPaddingObject(padding) : {\n    top: padding,\n    right: padding,\n    bottom: padding,\n    left: padding\n  };\n}\nfunction rectToClientRect(rect) {\n  const {\n    x,\n    y,\n    width,\n    height\n  } = rect;\n  return {\n    width,\n    height,\n    top: y,\n    left: x,\n    right: x + width,\n    bottom: y + height,\n    x,\n    y\n  };\n}\n\nexport { alignments, clamp, createCoords, evaluate, expandPaddingObject, floor, getAlignment, getAlignmentAxis, getAlignmentSides, getAxisLength, getExpandedPlacements, getOppositeAlignmentPlacement, getOppositeAxis, getOppositeAxisPlacements, getOppositePlacement, getPaddingObject, getSide, getSideAxis, max, min, placements, rectToClientRect, round, sides };\n","import { getSideAxis, getAlignmentAxis, getAxisLength, getSide, getAlignment, evaluate, getPaddingObject, rectToClientRect, min, clamp, placements, getAlignmentSides, getOppositeAlignmentPlacement, getOppositePlacement, getExpandedPlacements, getOppositeAxisPlacements, sides, max, getOppositeAxis } from '@floating-ui/utils';\nexport { rectToClientRect } from '@floating-ui/utils';\n\nfunction computeCoordsFromPlacement(_ref, placement, rtl) {\n  let {\n    reference,\n    floating\n  } = _ref;\n  const sideAxis = getSideAxis(placement);\n  const alignmentAxis = getAlignmentAxis(placement);\n  const alignLength = getAxisLength(alignmentAxis);\n  const side = getSide(placement);\n  const isVertical = sideAxis === 'y';\n  const commonX = reference.x + reference.width / 2 - floating.width / 2;\n  const commonY = reference.y + reference.height / 2 - floating.height / 2;\n  const commonAlign = reference[alignLength] / 2 - floating[alignLength] / 2;\n  let coords;\n  switch (side) {\n    case 'top':\n      coords = {\n        x: commonX,\n        y: reference.y - floating.height\n      };\n      break;\n    case 'bottom':\n      coords = {\n        x: commonX,\n        y: reference.y + reference.height\n      };\n      break;\n    case 'right':\n      coords = {\n        x: reference.x + reference.width,\n        y: commonY\n      };\n      break;\n    case 'left':\n      coords = {\n        x: reference.x - floating.width,\n        y: commonY\n      };\n      break;\n    default:\n      coords = {\n        x: reference.x,\n        y: reference.y\n      };\n  }\n  switch (getAlignment(placement)) {\n    case 'start':\n      coords[alignmentAxis] -= commonAlign * (rtl && isVertical ? -1 : 1);\n      break;\n    case 'end':\n      coords[alignmentAxis] += commonAlign * (rtl && isVertical ? -1 : 1);\n      break;\n  }\n  return coords;\n}\n\n/**\n * Computes the `x` and `y` coordinates that will place the floating element\n * next to a given reference element.\n *\n * This export does not have any `platform` interface logic. You will need to\n * write one for the platform you are using Floating UI with.\n */\nconst computePosition = async (reference, floating, config) => {\n  const {\n    placement = 'bottom',\n    strategy = 'absolute',\n    middleware = [],\n    platform\n  } = config;\n  const validMiddleware = middleware.filter(Boolean);\n  const rtl = await (platform.isRTL == null ? void 0 : platform.isRTL(floating));\n  let rects = await platform.getElementRects({\n    reference,\n    floating,\n    strategy\n  });\n  let {\n    x,\n    y\n  } = computeCoordsFromPlacement(rects, placement, rtl);\n  let statefulPlacement = placement;\n  let middlewareData = {};\n  let resetCount = 0;\n  for (let i = 0; i < validMiddleware.length; i++) {\n    const {\n      name,\n      fn\n    } = validMiddleware[i];\n    const {\n      x: nextX,\n      y: nextY,\n      data,\n      reset\n    } = await fn({\n      x,\n      y,\n      initialPlacement: placement,\n      placement: statefulPlacement,\n      strategy,\n      middlewareData,\n      rects,\n      platform,\n      elements: {\n        reference,\n        floating\n      }\n    });\n    x = nextX != null ? nextX : x;\n    y = nextY != null ? nextY : y;\n    middlewareData = {\n      ...middlewareData,\n      [name]: {\n        ...middlewareData[name],\n        ...data\n      }\n    };\n    if (reset && resetCount <= 50) {\n      resetCount++;\n      if (typeof reset === 'object') {\n        if (reset.placement) {\n          statefulPlacement = reset.placement;\n        }\n        if (reset.rects) {\n          rects = reset.rects === true ? await platform.getElementRects({\n            reference,\n            floating,\n            strategy\n          }) : reset.rects;\n        }\n        ({\n          x,\n          y\n        } = computeCoordsFromPlacement(rects, statefulPlacement, rtl));\n      }\n      i = -1;\n    }\n  }\n  return {\n    x,\n    y,\n    placement: statefulPlacement,\n    strategy,\n    middlewareData\n  };\n};\n\n/**\n * Resolves with an object of overflow side offsets that determine how much the\n * element is overflowing a given clipping boundary on each side.\n * - positive = overflowing the boundary by that number of pixels\n * - negative = how many pixels left before it will overflow\n * - 0 = lies flush with the boundary\n * @see https://floating-ui.com/docs/detectOverflow\n */\nasync function detectOverflow(state, options) {\n  var _await$platform$isEle;\n  if (options === void 0) {\n    options = {};\n  }\n  const {\n    x,\n    y,\n    platform,\n    rects,\n    elements,\n    strategy\n  } = state;\n  const {\n    boundary = 'clippingAncestors',\n    rootBoundary = 'viewport',\n    elementContext = 'floating',\n    altBoundary = false,\n    padding = 0\n  } = evaluate(options, state);\n  const paddingObject = getPaddingObject(padding);\n  const altContext = elementContext === 'floating' ? 'reference' : 'floating';\n  const element = elements[altBoundary ? altContext : elementContext];\n  const clippingClientRect = rectToClientRect(await platform.getClippingRect({\n    element: ((_await$platform$isEle = await (platform.isElement == null ? void 0 : platform.isElement(element))) != null ? _await$platform$isEle : true) ? element : element.contextElement || (await (platform.getDocumentElement == null ? void 0 : platform.getDocumentElement(elements.floating))),\n    boundary,\n    rootBoundary,\n    strategy\n  }));\n  const rect = elementContext === 'floating' ? {\n    x,\n    y,\n    width: rects.floating.width,\n    height: rects.floating.height\n  } : rects.reference;\n  const offsetParent = await (platform.getOffsetParent == null ? void 0 : platform.getOffsetParent(elements.floating));\n  const offsetScale = (await (platform.isElement == null ? void 0 : platform.isElement(offsetParent))) ? (await (platform.getScale == null ? void 0 : platform.getScale(offsetParent))) || {\n    x: 1,\n    y: 1\n  } : {\n    x: 1,\n    y: 1\n  };\n  const elementClientRect = rectToClientRect(platform.convertOffsetParentRelativeRectToViewportRelativeRect ? await platform.convertOffsetParentRelativeRectToViewportRelativeRect({\n    elements,\n    rect,\n    offsetParent,\n    strategy\n  }) : rect);\n  return {\n    top: (clippingClientRect.top - elementClientRect.top + paddingObject.top) / offsetScale.y,\n    bottom: (elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom) / offsetScale.y,\n    left: (clippingClientRect.left - elementClientRect.left + paddingObject.left) / offsetScale.x,\n    right: (elementClientRect.right - clippingClientRect.right + paddingObject.right) / offsetScale.x\n  };\n}\n\n/**\n * Provides data to position an inner element of the floating element so that it\n * appears centered to the reference element.\n * @see https://floating-ui.com/docs/arrow\n */\nconst arrow = options => ({\n  name: 'arrow',\n  options,\n  async fn(state) {\n    const {\n      x,\n      y,\n      placement,\n      rects,\n      platform,\n      elements,\n      middlewareData\n    } = state;\n    // Since `element` is required, we don't Partial<> the type.\n    const {\n      element,\n      padding = 0\n    } = evaluate(options, state) || {};\n    if (element == null) {\n      return {};\n    }\n    const paddingObject = getPaddingObject(padding);\n    const coords = {\n      x,\n      y\n    };\n    const axis = getAlignmentAxis(placement);\n    const length = getAxisLength(axis);\n    const arrowDimensions = await platform.getDimensions(element);\n    const isYAxis = axis === 'y';\n    const minProp = isYAxis ? 'top' : 'left';\n    const maxProp = isYAxis ? 'bottom' : 'right';\n    const clientProp = isYAxis ? 'clientHeight' : 'clientWidth';\n    const endDiff = rects.reference[length] + rects.reference[axis] - coords[axis] - rects.floating[length];\n    const startDiff = coords[axis] - rects.reference[axis];\n    const arrowOffsetParent = await (platform.getOffsetParent == null ? void 0 : platform.getOffsetParent(element));\n    let clientSize = arrowOffsetParent ? arrowOffsetParent[clientProp] : 0;\n\n    // DOM platform can return `window` as the `offsetParent`.\n    if (!clientSize || !(await (platform.isElement == null ? void 0 : platform.isElement(arrowOffsetParent)))) {\n      clientSize = elements.floating[clientProp] || rects.floating[length];\n    }\n    const centerToReference = endDiff / 2 - startDiff / 2;\n\n    // If the padding is large enough that it causes the arrow to no longer be\n    // centered, modify the padding so that it is centered.\n    const largestPossiblePadding = clientSize / 2 - arrowDimensions[length] / 2 - 1;\n    const minPadding = min(paddingObject[minProp], largestPossiblePadding);\n    const maxPadding = min(paddingObject[maxProp], largestPossiblePadding);\n\n    // Make sure the arrow doesn't overflow the floating element if the center\n    // point is outside the floating element's bounds.\n    const min$1 = minPadding;\n    const max = clientSize - arrowDimensions[length] - maxPadding;\n    const center = clientSize / 2 - arrowDimensions[length] / 2 + centerToReference;\n    const offset = clamp(min$1, center, max);\n\n    // If the reference is small enough that the arrow's padding causes it to\n    // to point to nothing for an aligned placement, adjust the offset of the\n    // floating element itself. To ensure `shift()` continues to take action,\n    // a single reset is performed when this is true.\n    const shouldAddOffset = !middlewareData.arrow && getAlignment(placement) != null && center !== offset && rects.reference[length] / 2 - (center < min$1 ? minPadding : maxPadding) - arrowDimensions[length] / 2 < 0;\n    const alignmentOffset = shouldAddOffset ? center < min$1 ? center - min$1 : center - max : 0;\n    return {\n      [axis]: coords[axis] + alignmentOffset,\n      data: {\n        [axis]: offset,\n        centerOffset: center - offset - alignmentOffset,\n        ...(shouldAddOffset && {\n          alignmentOffset\n        })\n      },\n      reset: shouldAddOffset\n    };\n  }\n});\n\nfunction getPlacementList(alignment, autoAlignment, allowedPlacements) {\n  const allowedPlacementsSortedByAlignment = alignment ? [...allowedPlacements.filter(placement => getAlignment(placement) === alignment), ...allowedPlacements.filter(placement => getAlignment(placement) !== alignment)] : allowedPlacements.filter(placement => getSide(placement) === placement);\n  return allowedPlacementsSortedByAlignment.filter(placement => {\n    if (alignment) {\n      return getAlignment(placement) === alignment || (autoAlignment ? getOppositeAlignmentPlacement(placement) !== placement : false);\n    }\n    return true;\n  });\n}\n/**\n * Optimizes the visibility of the floating element by choosing the placement\n * that has the most space available automatically, without needing to specify a\n * preferred placement. Alternative to `flip`.\n * @see https://floating-ui.com/docs/autoPlacement\n */\nconst autoPlacement = function (options) {\n  if (options === void 0) {\n    options = {};\n  }\n  return {\n    name: 'autoPlacement',\n    options,\n    async fn(state) {\n      var _middlewareData$autoP, _middlewareData$autoP2, _placementsThatFitOnE;\n      const {\n        rects,\n        middlewareData,\n        placement,\n        platform,\n        elements\n      } = state;\n      const {\n        crossAxis = false,\n        alignment,\n        allowedPlacements = placements,\n        autoAlignment = true,\n        ...detectOverflowOptions\n      } = evaluate(options, state);\n      const placements$1 = alignment !== undefined || allowedPlacements === placements ? getPlacementList(alignment || null, autoAlignment, allowedPlacements) : allowedPlacements;\n      const overflow = await detectOverflow(state, detectOverflowOptions);\n      const currentIndex = ((_middlewareData$autoP = middlewareData.autoPlacement) == null ? void 0 : _middlewareData$autoP.index) || 0;\n      const currentPlacement = placements$1[currentIndex];\n      if (currentPlacement == null) {\n        return {};\n      }\n      const alignmentSides = getAlignmentSides(currentPlacement, rects, await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating)));\n\n      // Make `computeCoords` start from the right place.\n      if (placement !== currentPlacement) {\n        return {\n          reset: {\n            placement: placements$1[0]\n          }\n        };\n      }\n      const currentOverflows = [overflow[getSide(currentPlacement)], overflow[alignmentSides[0]], overflow[alignmentSides[1]]];\n      const allOverflows = [...(((_middlewareData$autoP2 = middlewareData.autoPlacement) == null ? void 0 : _middlewareData$autoP2.overflows) || []), {\n        placement: currentPlacement,\n        overflows: currentOverflows\n      }];\n      const nextPlacement = placements$1[currentIndex + 1];\n\n      // There are more placements to check.\n      if (nextPlacement) {\n        return {\n          data: {\n            index: currentIndex + 1,\n            overflows: allOverflows\n          },\n          reset: {\n            placement: nextPlacement\n          }\n        };\n      }\n      const placementsSortedByMostSpace = allOverflows.map(d => {\n        const alignment = getAlignment(d.placement);\n        return [d.placement, alignment && crossAxis ?\n        // Check along the mainAxis and main crossAxis side.\n        d.overflows.slice(0, 2).reduce((acc, v) => acc + v, 0) :\n        // Check only the mainAxis.\n        d.overflows[0], d.overflows];\n      }).sort((a, b) => a[1] - b[1]);\n      const placementsThatFitOnEachSide = placementsSortedByMostSpace.filter(d => d[2].slice(0,\n      // Aligned placements should not check their opposite crossAxis\n      // side.\n      getAlignment(d[0]) ? 2 : 3).every(v => v <= 0));\n      const resetPlacement = ((_placementsThatFitOnE = placementsThatFitOnEachSide[0]) == null ? void 0 : _placementsThatFitOnE[0]) || placementsSortedByMostSpace[0][0];\n      if (resetPlacement !== placement) {\n        return {\n          data: {\n            index: currentIndex + 1,\n            overflows: allOverflows\n          },\n          reset: {\n            placement: resetPlacement\n          }\n        };\n      }\n      return {};\n    }\n  };\n};\n\n/**\n * Optimizes the visibility of the floating element by flipping the `placement`\n * in order to keep it in view when the preferred placement(s) will overflow the\n * clipping boundary. Alternative to `autoPlacement`.\n * @see https://floating-ui.com/docs/flip\n */\nconst flip = function (options) {\n  if (options === void 0) {\n    options = {};\n  }\n  return {\n    name: 'flip',\n    options,\n    async fn(state) {\n      var _middlewareData$arrow, _middlewareData$flip;\n      const {\n        placement,\n        middlewareData,\n        rects,\n        initialPlacement,\n        platform,\n        elements\n      } = state;\n      const {\n        mainAxis: checkMainAxis = true,\n        crossAxis: checkCrossAxis = true,\n        fallbackPlacements: specifiedFallbackPlacements,\n        fallbackStrategy = 'bestFit',\n        fallbackAxisSideDirection = 'none',\n        flipAlignment = true,\n        ...detectOverflowOptions\n      } = evaluate(options, state);\n\n      // If a reset by the arrow was caused due to an alignment offset being\n      // added, we should skip any logic now since `flip()` has already done its\n      // work.\n      // https://github.com/floating-ui/floating-ui/issues/2549#issuecomment-1719601643\n      if ((_middlewareData$arrow = middlewareData.arrow) != null && _middlewareData$arrow.alignmentOffset) {\n        return {};\n      }\n      const side = getSide(placement);\n      const initialSideAxis = getSideAxis(initialPlacement);\n      const isBasePlacement = getSide(initialPlacement) === initialPlacement;\n      const rtl = await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating));\n      const fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipAlignment ? [getOppositePlacement(initialPlacement)] : getExpandedPlacements(initialPlacement));\n      const hasFallbackAxisSideDirection = fallbackAxisSideDirection !== 'none';\n      if (!specifiedFallbackPlacements && hasFallbackAxisSideDirection) {\n        fallbackPlacements.push(...getOppositeAxisPlacements(initialPlacement, flipAlignment, fallbackAxisSideDirection, rtl));\n      }\n      const placements = [initialPlacement, ...fallbackPlacements];\n      const overflow = await detectOverflow(state, detectOverflowOptions);\n      const overflows = [];\n      let overflowsData = ((_middlewareData$flip = middlewareData.flip) == null ? void 0 : _middlewareData$flip.overflows) || [];\n      if (checkMainAxis) {\n        overflows.push(overflow[side]);\n      }\n      if (checkCrossAxis) {\n        const sides = getAlignmentSides(placement, rects, rtl);\n        overflows.push(overflow[sides[0]], overflow[sides[1]]);\n      }\n      overflowsData = [...overflowsData, {\n        placement,\n        overflows\n      }];\n\n      // One or more sides is overflowing.\n      if (!overflows.every(side => side <= 0)) {\n        var _middlewareData$flip2, _overflowsData$filter;\n        const nextIndex = (((_middlewareData$flip2 = middlewareData.flip) == null ? void 0 : _middlewareData$flip2.index) || 0) + 1;\n        const nextPlacement = placements[nextIndex];\n        if (nextPlacement) {\n          var _overflowsData$;\n          const ignoreCrossAxisOverflow = checkCrossAxis === 'alignment' ? initialSideAxis !== getSideAxis(nextPlacement) : false;\n          const hasInitialMainAxisOverflow = ((_overflowsData$ = overflowsData[0]) == null ? void 0 : _overflowsData$.overflows[0]) > 0;\n          if (!ignoreCrossAxisOverflow || hasInitialMainAxisOverflow) {\n            // Try next placement and re-run the lifecycle.\n            return {\n              data: {\n                index: nextIndex,\n                overflows: overflowsData\n              },\n              reset: {\n                placement: nextPlacement\n              }\n            };\n          }\n        }\n\n        // First, find the candidates that fit on the mainAxis side of overflow,\n        // then find the placement that fits the best on the main crossAxis side.\n        let resetPlacement = (_overflowsData$filter = overflowsData.filter(d => d.overflows[0] <= 0).sort((a, b) => a.overflows[1] - b.overflows[1])[0]) == null ? void 0 : _overflowsData$filter.placement;\n\n        // Otherwise fallback.\n        if (!resetPlacement) {\n          switch (fallbackStrategy) {\n            case 'bestFit':\n              {\n                var _overflowsData$filter2;\n                const placement = (_overflowsData$filter2 = overflowsData.filter(d => {\n                  if (hasFallbackAxisSideDirection) {\n                    const currentSideAxis = getSideAxis(d.placement);\n                    return currentSideAxis === initialSideAxis ||\n                    // Create a bias to the `y` side axis due to horizontal\n                    // reading directions favoring greater width.\n                    currentSideAxis === 'y';\n                  }\n                  return true;\n                }).map(d => [d.placement, d.overflows.filter(overflow => overflow > 0).reduce((acc, overflow) => acc + overflow, 0)]).sort((a, b) => a[1] - b[1])[0]) == null ? void 0 : _overflowsData$filter2[0];\n                if (placement) {\n                  resetPlacement = placement;\n                }\n                break;\n              }\n            case 'initialPlacement':\n              resetPlacement = initialPlacement;\n              break;\n          }\n        }\n        if (placement !== resetPlacement) {\n          return {\n            reset: {\n              placement: resetPlacement\n            }\n          };\n        }\n      }\n      return {};\n    }\n  };\n};\n\nfunction getSideOffsets(overflow, rect) {\n  return {\n    top: overflow.top - rect.height,\n    right: overflow.right - rect.width,\n    bottom: overflow.bottom - rect.height,\n    left: overflow.left - rect.width\n  };\n}\nfunction isAnySideFullyClipped(overflow) {\n  return sides.some(side => overflow[side] >= 0);\n}\n/**\n * Provides data to hide the floating element in applicable situations, such as\n * when it is not in the same clipping context as the reference element.\n * @see https://floating-ui.com/docs/hide\n */\nconst hide = function (options) {\n  if (options === void 0) {\n    options = {};\n  }\n  return {\n    name: 'hide',\n    options,\n    async fn(state) {\n      const {\n        rects\n      } = state;\n      const {\n        strategy = 'referenceHidden',\n        ...detectOverflowOptions\n      } = evaluate(options, state);\n      switch (strategy) {\n        case 'referenceHidden':\n          {\n            const overflow = await detectOverflow(state, {\n              ...detectOverflowOptions,\n              elementContext: 'reference'\n            });\n            const offsets = getSideOffsets(overflow, rects.reference);\n            return {\n              data: {\n                referenceHiddenOffsets: offsets,\n                referenceHidden: isAnySideFullyClipped(offsets)\n              }\n            };\n          }\n        case 'escaped':\n          {\n            const overflow = await detectOverflow(state, {\n              ...detectOverflowOptions,\n              altBoundary: true\n            });\n            const offsets = getSideOffsets(overflow, rects.floating);\n            return {\n              data: {\n                escapedOffsets: offsets,\n                escaped: isAnySideFullyClipped(offsets)\n              }\n            };\n          }\n        default:\n          {\n            return {};\n          }\n      }\n    }\n  };\n};\n\nfunction getBoundingRect(rects) {\n  const minX = min(...rects.map(rect => rect.left));\n  const minY = min(...rects.map(rect => rect.top));\n  const maxX = max(...rects.map(rect => rect.right));\n  const maxY = max(...rects.map(rect => rect.bottom));\n  return {\n    x: minX,\n    y: minY,\n    width: maxX - minX,\n    height: maxY - minY\n  };\n}\nfunction getRectsByLine(rects) {\n  const sortedRects = rects.slice().sort((a, b) => a.y - b.y);\n  const groups = [];\n  let prevRect = null;\n  for (let i = 0; i < sortedRects.length; i++) {\n    const rect = sortedRects[i];\n    if (!prevRect || rect.y - prevRect.y > prevRect.height / 2) {\n      groups.push([rect]);\n    } else {\n      groups[groups.length - 1].push(rect);\n    }\n    prevRect = rect;\n  }\n  return groups.map(rect => rectToClientRect(getBoundingRect(rect)));\n}\n/**\n * Provides improved positioning for inline reference elements that can span\n * over multiple lines, such as hyperlinks or range selections.\n * @see https://floating-ui.com/docs/inline\n */\nconst inline = function (options) {\n  if (options === void 0) {\n    options = {};\n  }\n  return {\n    name: 'inline',\n    options,\n    async fn(state) {\n      const {\n        placement,\n        elements,\n        rects,\n        platform,\n        strategy\n      } = state;\n      // A MouseEvent's client{X,Y} coords can be up to 2 pixels off a\n      // ClientRect's bounds, despite the event listener being triggered. A\n      // padding of 2 seems to handle this issue.\n      const {\n        padding = 2,\n        x,\n        y\n      } = evaluate(options, state);\n      const nativeClientRects = Array.from((await (platform.getClientRects == null ? void 0 : platform.getClientRects(elements.reference))) || []);\n      const clientRects = getRectsByLine(nativeClientRects);\n      const fallback = rectToClientRect(getBoundingRect(nativeClientRects));\n      const paddingObject = getPaddingObject(padding);\n      function getBoundingClientRect() {\n        // There are two rects and they are disjoined.\n        if (clientRects.length === 2 && clientRects[0].left > clientRects[1].right && x != null && y != null) {\n          // Find the first rect in which the point is fully inside.\n          return clientRects.find(rect => x > rect.left - paddingObject.left && x < rect.right + paddingObject.right && y > rect.top - paddingObject.top && y < rect.bottom + paddingObject.bottom) || fallback;\n        }\n\n        // There are 2 or more connected rects.\n        if (clientRects.length >= 2) {\n          if (getSideAxis(placement) === 'y') {\n            const firstRect = clientRects[0];\n            const lastRect = clientRects[clientRects.length - 1];\n            const isTop = getSide(placement) === 'top';\n            const top = firstRect.top;\n            const bottom = lastRect.bottom;\n            const left = isTop ? firstRect.left : lastRect.left;\n            const right = isTop ? firstRect.right : lastRect.right;\n            const width = right - left;\n            const height = bottom - top;\n            return {\n              top,\n              bottom,\n              left,\n              right,\n              width,\n              height,\n              x: left,\n              y: top\n            };\n          }\n          const isLeftSide = getSide(placement) === 'left';\n          const maxRight = max(...clientRects.map(rect => rect.right));\n          const minLeft = min(...clientRects.map(rect => rect.left));\n          const measureRects = clientRects.filter(rect => isLeftSide ? rect.left === minLeft : rect.right === maxRight);\n          const top = measureRects[0].top;\n          const bottom = measureRects[measureRects.length - 1].bottom;\n          const left = minLeft;\n          const right = maxRight;\n          const width = right - left;\n          const height = bottom - top;\n          return {\n            top,\n            bottom,\n            left,\n            right,\n            width,\n            height,\n            x: left,\n            y: top\n          };\n        }\n        return fallback;\n      }\n      const resetRects = await platform.getElementRects({\n        reference: {\n          getBoundingClientRect\n        },\n        floating: elements.floating,\n        strategy\n      });\n      if (rects.reference.x !== resetRects.reference.x || rects.reference.y !== resetRects.reference.y || rects.reference.width !== resetRects.reference.width || rects.reference.height !== resetRects.reference.height) {\n        return {\n          reset: {\n            rects: resetRects\n          }\n        };\n      }\n      return {};\n    }\n  };\n};\n\n// For type backwards-compatibility, the `OffsetOptions` type was also\n// Derivable.\n\nasync function convertValueToCoords(state, options) {\n  const {\n    placement,\n    platform,\n    elements\n  } = state;\n  const rtl = await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating));\n  const side = getSide(placement);\n  const alignment = getAlignment(placement);\n  const isVertical = getSideAxis(placement) === 'y';\n  const mainAxisMulti = ['left', 'top'].includes(side) ? -1 : 1;\n  const crossAxisMulti = rtl && isVertical ? -1 : 1;\n  const rawValue = evaluate(options, state);\n\n  // eslint-disable-next-line prefer-const\n  let {\n    mainAxis,\n    crossAxis,\n    alignmentAxis\n  } = typeof rawValue === 'number' ? {\n    mainAxis: rawValue,\n    crossAxis: 0,\n    alignmentAxis: null\n  } : {\n    mainAxis: rawValue.mainAxis || 0,\n    crossAxis: rawValue.crossAxis || 0,\n    alignmentAxis: rawValue.alignmentAxis\n  };\n  if (alignment && typeof alignmentAxis === 'number') {\n    crossAxis = alignment === 'end' ? alignmentAxis * -1 : alignmentAxis;\n  }\n  return isVertical ? {\n    x: crossAxis * crossAxisMulti,\n    y: mainAxis * mainAxisMulti\n  } : {\n    x: mainAxis * mainAxisMulti,\n    y: crossAxis * crossAxisMulti\n  };\n}\n\n/**\n * Modifies the placement by translating the floating element along the\n * specified axes.\n * A number (shorthand for `mainAxis` or distance), or an axes configuration\n * object may be passed.\n * @see https://floating-ui.com/docs/offset\n */\nconst offset = function (options) {\n  if (options === void 0) {\n    options = 0;\n  }\n  return {\n    name: 'offset',\n    options,\n    async fn(state) {\n      var _middlewareData$offse, _middlewareData$arrow;\n      const {\n        x,\n        y,\n        placement,\n        middlewareData\n      } = state;\n      const diffCoords = await convertValueToCoords(state, options);\n\n      // If the placement is the same and the arrow caused an alignment offset\n      // then we don't need to change the positioning coordinates.\n      if (placement === ((_middlewareData$offse = middlewareData.offset) == null ? void 0 : _middlewareData$offse.placement) && (_middlewareData$arrow = middlewareData.arrow) != null && _middlewareData$arrow.alignmentOffset) {\n        return {};\n      }\n      return {\n        x: x + diffCoords.x,\n        y: y + diffCoords.y,\n        data: {\n          ...diffCoords,\n          placement\n        }\n      };\n    }\n  };\n};\n\n/**\n * Optimizes the visibility of the floating element by shifting it in order to\n * keep it in view when it will overflow the clipping boundary.\n * @see https://floating-ui.com/docs/shift\n */\nconst shift = function (options) {\n  if (options === void 0) {\n    options = {};\n  }\n  return {\n    name: 'shift',\n    options,\n    async fn(state) {\n      const {\n        x,\n        y,\n        placement\n      } = state;\n      const {\n        mainAxis: checkMainAxis = true,\n        crossAxis: checkCrossAxis = false,\n        limiter = {\n          fn: _ref => {\n            let {\n              x,\n              y\n            } = _ref;\n            return {\n              x,\n              y\n            };\n          }\n        },\n        ...detectOverflowOptions\n      } = evaluate(options, state);\n      const coords = {\n        x,\n        y\n      };\n      const overflow = await detectOverflow(state, detectOverflowOptions);\n      const crossAxis = getSideAxis(getSide(placement));\n      const mainAxis = getOppositeAxis(crossAxis);\n      let mainAxisCoord = coords[mainAxis];\n      let crossAxisCoord = coords[crossAxis];\n      if (checkMainAxis) {\n        const minSide = mainAxis === 'y' ? 'top' : 'left';\n        const maxSide = mainAxis === 'y' ? 'bottom' : 'right';\n        const min = mainAxisCoord + overflow[minSide];\n        const max = mainAxisCoord - overflow[maxSide];\n        mainAxisCoord = clamp(min, mainAxisCoord, max);\n      }\n      if (checkCrossAxis) {\n        const minSide = crossAxis === 'y' ? 'top' : 'left';\n        const maxSide = crossAxis === 'y' ? 'bottom' : 'right';\n        const min = crossAxisCoord + overflow[minSide];\n        const max = crossAxisCoord - overflow[maxSide];\n        crossAxisCoord = clamp(min, crossAxisCoord, max);\n      }\n      const limitedCoords = limiter.fn({\n        ...state,\n        [mainAxis]: mainAxisCoord,\n        [crossAxis]: crossAxisCoord\n      });\n      return {\n        ...limitedCoords,\n        data: {\n          x: limitedCoords.x - x,\n          y: limitedCoords.y - y,\n          enabled: {\n            [mainAxis]: checkMainAxis,\n            [crossAxis]: checkCrossAxis\n          }\n        }\n      };\n    }\n  };\n};\n/**\n * Built-in `limiter` that will stop `shift()` at a certain point.\n */\nconst limitShift = function (options) {\n  if (options === void 0) {\n    options = {};\n  }\n  return {\n    options,\n    fn(state) {\n      const {\n        x,\n        y,\n        placement,\n        rects,\n        middlewareData\n      } = state;\n      const {\n        offset = 0,\n        mainAxis: checkMainAxis = true,\n        crossAxis: checkCrossAxis = true\n      } = evaluate(options, state);\n      const coords = {\n        x,\n        y\n      };\n      const crossAxis = getSideAxis(placement);\n      const mainAxis = getOppositeAxis(crossAxis);\n      let mainAxisCoord = coords[mainAxis];\n      let crossAxisCoord = coords[crossAxis];\n      const rawOffset = evaluate(offset, state);\n      const computedOffset = typeof rawOffset === 'number' ? {\n        mainAxis: rawOffset,\n        crossAxis: 0\n      } : {\n        mainAxis: 0,\n        crossAxis: 0,\n        ...rawOffset\n      };\n      if (checkMainAxis) {\n        const len = mainAxis === 'y' ? 'height' : 'width';\n        const limitMin = rects.reference[mainAxis] - rects.floating[len] + computedOffset.mainAxis;\n        const limitMax = rects.reference[mainAxis] + rects.reference[len] - computedOffset.mainAxis;\n        if (mainAxisCoord < limitMin) {\n          mainAxisCoord = limitMin;\n        } else if (mainAxisCoord > limitMax) {\n          mainAxisCoord = limitMax;\n        }\n      }\n      if (checkCrossAxis) {\n        var _middlewareData$offse, _middlewareData$offse2;\n        const len = mainAxis === 'y' ? 'width' : 'height';\n        const isOriginSide = ['top', 'left'].includes(getSide(placement));\n        const limitMin = rects.reference[crossAxis] - rects.floating[len] + (isOriginSide ? ((_middlewareData$offse = middlewareData.offset) == null ? void 0 : _middlewareData$offse[crossAxis]) || 0 : 0) + (isOriginSide ? 0 : computedOffset.crossAxis);\n        const limitMax = rects.reference[crossAxis] + rects.reference[len] + (isOriginSide ? 0 : ((_middlewareData$offse2 = middlewareData.offset) == null ? void 0 : _middlewareData$offse2[crossAxis]) || 0) - (isOriginSide ? computedOffset.crossAxis : 0);\n        if (crossAxisCoord < limitMin) {\n          crossAxisCoord = limitMin;\n        } else if (crossAxisCoord > limitMax) {\n          crossAxisCoord = limitMax;\n        }\n      }\n      return {\n        [mainAxis]: mainAxisCoord,\n        [crossAxis]: crossAxisCoord\n      };\n    }\n  };\n};\n\n/**\n * Provides data that allows you to change the size of the floating element —\n * for instance, prevent it from overflowing the clipping boundary or match the\n * width of the reference element.\n * @see https://floating-ui.com/docs/size\n */\nconst size = function (options) {\n  if (options === void 0) {\n    options = {};\n  }\n  return {\n    name: 'size',\n    options,\n    async fn(state) {\n      var _state$middlewareData, _state$middlewareData2;\n      const {\n        placement,\n        rects,\n        platform,\n        elements\n      } = state;\n      const {\n        apply = () => {},\n        ...detectOverflowOptions\n      } = evaluate(options, state);\n      const overflow = await detectOverflow(state, detectOverflowOptions);\n      const side = getSide(placement);\n      const alignment = getAlignment(placement);\n      const isYAxis = getSideAxis(placement) === 'y';\n      const {\n        width,\n        height\n      } = rects.floating;\n      let heightSide;\n      let widthSide;\n      if (side === 'top' || side === 'bottom') {\n        heightSide = side;\n        widthSide = alignment === ((await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating))) ? 'start' : 'end') ? 'left' : 'right';\n      } else {\n        widthSide = side;\n        heightSide = alignment === 'end' ? 'top' : 'bottom';\n      }\n      const maximumClippingHeight = height - overflow.top - overflow.bottom;\n      const maximumClippingWidth = width - overflow.left - overflow.right;\n      const overflowAvailableHeight = min(height - overflow[heightSide], maximumClippingHeight);\n      const overflowAvailableWidth = min(width - overflow[widthSide], maximumClippingWidth);\n      const noShift = !state.middlewareData.shift;\n      let availableHeight = overflowAvailableHeight;\n      let availableWidth = overflowAvailableWidth;\n      if ((_state$middlewareData = state.middlewareData.shift) != null && _state$middlewareData.enabled.x) {\n        availableWidth = maximumClippingWidth;\n      }\n      if ((_state$middlewareData2 = state.middlewareData.shift) != null && _state$middlewareData2.enabled.y) {\n        availableHeight = maximumClippingHeight;\n      }\n      if (noShift && !alignment) {\n        const xMin = max(overflow.left, 0);\n        const xMax = max(overflow.right, 0);\n        const yMin = max(overflow.top, 0);\n        const yMax = max(overflow.bottom, 0);\n        if (isYAxis) {\n          availableWidth = width - 2 * (xMin !== 0 || xMax !== 0 ? xMin + xMax : max(overflow.left, overflow.right));\n        } else {\n          availableHeight = height - 2 * (yMin !== 0 || yMax !== 0 ? yMin + yMax : max(overflow.top, overflow.bottom));\n        }\n      }\n      await apply({\n        ...state,\n        availableWidth,\n        availableHeight\n      });\n      const nextDimensions = await platform.getDimensions(elements.floating);\n      if (width !== nextDimensions.width || height !== nextDimensions.height) {\n        return {\n          reset: {\n            rects: true\n          }\n        };\n      }\n      return {};\n    }\n  };\n};\n\nexport { arrow, autoPlacement, computePosition, detectOverflow, flip, hide, inline, limitShift, offset, shift, size };\n","import { rectToClientRect, arrow as arrow$1, autoPlacement as autoPlacement$1, detectOverflow as detectOverflow$1, flip as flip$1, hide as hide$1, inline as inline$1, limitShift as limitShift$1, offset as offset$1, shift as shift$1, size as size$1, computePosition as computePosition$1 } from '@floating-ui/core';\nimport { round, createCoords, max, min, floor } from '@floating-ui/utils';\nimport { getComputedStyle, isHTMLElement, isElement, getWindow, isWebKit, getFrameElement, getNodeScroll, getDocumentElement, isTopLayer, getNodeName, isOverflowElement, getOverflowAncestors, getParentNode, isLastTraversableNode, isContainingBlock, isTableElement, getContainingBlock } from '@floating-ui/utils/dom';\nexport { getOverflowAncestors } from '@floating-ui/utils/dom';\n\nfunction getCssDimensions(element) {\n  const css = getComputedStyle(element);\n  // In testing environments, the `width` and `height` properties are empty\n  // strings for SVG elements, returning NaN. Fallback to `0` in this case.\n  let width = parseFloat(css.width) || 0;\n  let height = parseFloat(css.height) || 0;\n  const hasOffset = isHTMLElement(element);\n  const offsetWidth = hasOffset ? element.offsetWidth : width;\n  const offsetHeight = hasOffset ? element.offsetHeight : height;\n  const shouldFallback = round(width) !== offsetWidth || round(height) !== offsetHeight;\n  if (shouldFallback) {\n    width = offsetWidth;\n    height = offsetHeight;\n  }\n  return {\n    width,\n    height,\n    $: shouldFallback\n  };\n}\n\nfunction unwrapElement(element) {\n  return !isElement(element) ? element.contextElement : element;\n}\n\nfunction getScale(element) {\n  const domElement = unwrapElement(element);\n  if (!isHTMLElement(domElement)) {\n    return createCoords(1);\n  }\n  const rect = domElement.getBoundingClientRect();\n  const {\n    width,\n    height,\n    $\n  } = getCssDimensions(domElement);\n  let x = ($ ? round(rect.width) : rect.width) / width;\n  let y = ($ ? round(rect.height) : rect.height) / height;\n\n  // 0, NaN, or Infinity should always fallback to 1.\n\n  if (!x || !Number.isFinite(x)) {\n    x = 1;\n  }\n  if (!y || !Number.isFinite(y)) {\n    y = 1;\n  }\n  return {\n    x,\n    y\n  };\n}\n\nconst noOffsets = /*#__PURE__*/createCoords(0);\nfunction getVisualOffsets(element) {\n  const win = getWindow(element);\n  if (!isWebKit() || !win.visualViewport) {\n    return noOffsets;\n  }\n  return {\n    x: win.visualViewport.offsetLeft,\n    y: win.visualViewport.offsetTop\n  };\n}\nfunction shouldAddVisualOffsets(element, isFixed, floatingOffsetParent) {\n  if (isFixed === void 0) {\n    isFixed = false;\n  }\n  if (!floatingOffsetParent || isFixed && floatingOffsetParent !== getWindow(element)) {\n    return false;\n  }\n  return isFixed;\n}\n\nfunction getBoundingClientRect(element, includeScale, isFixedStrategy, offsetParent) {\n  if (includeScale === void 0) {\n    includeScale = false;\n  }\n  if (isFixedStrategy === void 0) {\n    isFixedStrategy = false;\n  }\n  const clientRect = element.getBoundingClientRect();\n  const domElement = unwrapElement(element);\n  let scale = createCoords(1);\n  if (includeScale) {\n    if (offsetParent) {\n      if (isElement(offsetParent)) {\n        scale = getScale(offsetParent);\n      }\n    } else {\n      scale = getScale(element);\n    }\n  }\n  const visualOffsets = shouldAddVisualOffsets(domElement, isFixedStrategy, offsetParent) ? getVisualOffsets(domElement) : createCoords(0);\n  let x = (clientRect.left + visualOffsets.x) / scale.x;\n  let y = (clientRect.top + visualOffsets.y) / scale.y;\n  let width = clientRect.width / scale.x;\n  let height = clientRect.height / scale.y;\n  if (domElement) {\n    const win = getWindow(domElement);\n    const offsetWin = offsetParent && isElement(offsetParent) ? getWindow(offsetParent) : offsetParent;\n    let currentWin = win;\n    let currentIFrame = getFrameElement(currentWin);\n    while (currentIFrame && offsetParent && offsetWin !== currentWin) {\n      const iframeScale = getScale(currentIFrame);\n      const iframeRect = currentIFrame.getBoundingClientRect();\n      const css = getComputedStyle(currentIFrame);\n      const left = iframeRect.left + (currentIFrame.clientLeft + parseFloat(css.paddingLeft)) * iframeScale.x;\n      const top = iframeRect.top + (currentIFrame.clientTop + parseFloat(css.paddingTop)) * iframeScale.y;\n      x *= iframeScale.x;\n      y *= iframeScale.y;\n      width *= iframeScale.x;\n      height *= iframeScale.y;\n      x += left;\n      y += top;\n      currentWin = getWindow(currentIFrame);\n      currentIFrame = getFrameElement(currentWin);\n    }\n  }\n  return rectToClientRect({\n    width,\n    height,\n    x,\n    y\n  });\n}\n\n// If <html> has a CSS width greater than the viewport, then this will be\n// incorrect for RTL.\nfunction getWindowScrollBarX(element, rect) {\n  const leftScroll = getNodeScroll(element).scrollLeft;\n  if (!rect) {\n    return getBoundingClientRect(getDocumentElement(element)).left + leftScroll;\n  }\n  return rect.left + leftScroll;\n}\n\nfunction getHTMLOffset(documentElement, scroll, ignoreScrollbarX) {\n  if (ignoreScrollbarX === void 0) {\n    ignoreScrollbarX = false;\n  }\n  const htmlRect = documentElement.getBoundingClientRect();\n  const x = htmlRect.left + scroll.scrollLeft - (ignoreScrollbarX ? 0 :\n  // RTL <body> scrollbar.\n  getWindowScrollBarX(documentElement, htmlRect));\n  const y = htmlRect.top + scroll.scrollTop;\n  return {\n    x,\n    y\n  };\n}\n\nfunction convertOffsetParentRelativeRectToViewportRelativeRect(_ref) {\n  let {\n    elements,\n    rect,\n    offsetParent,\n    strategy\n  } = _ref;\n  const isFixed = strategy === 'fixed';\n  const documentElement = getDocumentElement(offsetParent);\n  const topLayer = elements ? isTopLayer(elements.floating) : false;\n  if (offsetParent === documentElement || topLayer && isFixed) {\n    return rect;\n  }\n  let scroll = {\n    scrollLeft: 0,\n    scrollTop: 0\n  };\n  let scale = createCoords(1);\n  const offsets = createCoords(0);\n  const isOffsetParentAnElement = isHTMLElement(offsetParent);\n  if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {\n    if (getNodeName(offsetParent) !== 'body' || isOverflowElement(documentElement)) {\n      scroll = getNodeScroll(offsetParent);\n    }\n    if (isHTMLElement(offsetParent)) {\n      const offsetRect = getBoundingClientRect(offsetParent);\n      scale = getScale(offsetParent);\n      offsets.x = offsetRect.x + offsetParent.clientLeft;\n      offsets.y = offsetRect.y + offsetParent.clientTop;\n    }\n  }\n  const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll, true) : createCoords(0);\n  return {\n    width: rect.width * scale.x,\n    height: rect.height * scale.y,\n    x: rect.x * scale.x - scroll.scrollLeft * scale.x + offsets.x + htmlOffset.x,\n    y: rect.y * scale.y - scroll.scrollTop * scale.y + offsets.y + htmlOffset.y\n  };\n}\n\nfunction getClientRects(element) {\n  return Array.from(element.getClientRects());\n}\n\n// Gets the entire size of the scrollable document area, even extending outside\n// of the `<html>` and `<body>` rect bounds if horizontally scrollable.\nfunction getDocumentRect(element) {\n  const html = getDocumentElement(element);\n  const scroll = getNodeScroll(element);\n  const body = element.ownerDocument.body;\n  const width = max(html.scrollWidth, html.clientWidth, body.scrollWidth, body.clientWidth);\n  const height = max(html.scrollHeight, html.clientHeight, body.scrollHeight, body.clientHeight);\n  let x = -scroll.scrollLeft + getWindowScrollBarX(element);\n  const y = -scroll.scrollTop;\n  if (getComputedStyle(body).direction === 'rtl') {\n    x += max(html.clientWidth, body.clientWidth) - width;\n  }\n  return {\n    width,\n    height,\n    x,\n    y\n  };\n}\n\nfunction getViewportRect(element, strategy) {\n  const win = getWindow(element);\n  const html = getDocumentElement(element);\n  const visualViewport = win.visualViewport;\n  let width = html.clientWidth;\n  let height = html.clientHeight;\n  let x = 0;\n  let y = 0;\n  if (visualViewport) {\n    width = visualViewport.width;\n    height = visualViewport.height;\n    const visualViewportBased = isWebKit();\n    if (!visualViewportBased || visualViewportBased && strategy === 'fixed') {\n      x = visualViewport.offsetLeft;\n      y = visualViewport.offsetTop;\n    }\n  }\n  return {\n    width,\n    height,\n    x,\n    y\n  };\n}\n\n// Returns the inner client rect, subtracting scrollbars if present.\nfunction getInnerBoundingClientRect(element, strategy) {\n  const clientRect = getBoundingClientRect(element, true, strategy === 'fixed');\n  const top = clientRect.top + element.clientTop;\n  const left = clientRect.left + element.clientLeft;\n  const scale = isHTMLElement(element) ? getScale(element) : createCoords(1);\n  const width = element.clientWidth * scale.x;\n  const height = element.clientHeight * scale.y;\n  const x = left * scale.x;\n  const y = top * scale.y;\n  return {\n    width,\n    height,\n    x,\n    y\n  };\n}\nfunction getClientRectFromClippingAncestor(element, clippingAncestor, strategy) {\n  let rect;\n  if (clippingAncestor === 'viewport') {\n    rect = getViewportRect(element, strategy);\n  } else if (clippingAncestor === 'document') {\n    rect = getDocumentRect(getDocumentElement(element));\n  } else if (isElement(clippingAncestor)) {\n    rect = getInnerBoundingClientRect(clippingAncestor, strategy);\n  } else {\n    const visualOffsets = getVisualOffsets(element);\n    rect = {\n      x: clippingAncestor.x - visualOffsets.x,\n      y: clippingAncestor.y - visualOffsets.y,\n      width: clippingAncestor.width,\n      height: clippingAncestor.height\n    };\n  }\n  return rectToClientRect(rect);\n}\nfunction hasFixedPositionAncestor(element, stopNode) {\n  const parentNode = getParentNode(element);\n  if (parentNode === stopNode || !isElement(parentNode) || isLastTraversableNode(parentNode)) {\n    return false;\n  }\n  return getComputedStyle(parentNode).position === 'fixed' || hasFixedPositionAncestor(parentNode, stopNode);\n}\n\n// A \"clipping ancestor\" is an `overflow` element with the characteristic of\n// clipping (or hiding) child elements. This returns all clipping ancestors\n// of the given element up the tree.\nfunction getClippingElementAncestors(element, cache) {\n  const cachedResult = cache.get(element);\n  if (cachedResult) {\n    return cachedResult;\n  }\n  let result = getOverflowAncestors(element, [], false).filter(el => isElement(el) && getNodeName(el) !== 'body');\n  let currentContainingBlockComputedStyle = null;\n  const elementIsFixed = getComputedStyle(element).position === 'fixed';\n  let currentNode = elementIsFixed ? getParentNode(element) : element;\n\n  // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n  while (isElement(currentNode) && !isLastTraversableNode(currentNode)) {\n    const computedStyle = getComputedStyle(currentNode);\n    const currentNodeIsContaining = isContainingBlock(currentNode);\n    if (!currentNodeIsContaining && computedStyle.position === 'fixed') {\n      currentContainingBlockComputedStyle = null;\n    }\n    const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === 'static' && !!currentContainingBlockComputedStyle && ['absolute', 'fixed'].includes(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);\n    if (shouldDropCurrentNode) {\n      // Drop non-containing blocks.\n      result = result.filter(ancestor => ancestor !== currentNode);\n    } else {\n      // Record last containing block for next iteration.\n      currentContainingBlockComputedStyle = computedStyle;\n    }\n    currentNode = getParentNode(currentNode);\n  }\n  cache.set(element, result);\n  return result;\n}\n\n// Gets the maximum area that the element is visible in due to any number of\n// clipping ancestors.\nfunction getClippingRect(_ref) {\n  let {\n    element,\n    boundary,\n    rootBoundary,\n    strategy\n  } = _ref;\n  const elementClippingAncestors = boundary === 'clippingAncestors' ? isTopLayer(element) ? [] : getClippingElementAncestors(element, this._c) : [].concat(boundary);\n  const clippingAncestors = [...elementClippingAncestors, rootBoundary];\n  const firstClippingAncestor = clippingAncestors[0];\n  const clippingRect = clippingAncestors.reduce((accRect, clippingAncestor) => {\n    const rect = getClientRectFromClippingAncestor(element, clippingAncestor, strategy);\n    accRect.top = max(rect.top, accRect.top);\n    accRect.right = min(rect.right, accRect.right);\n    accRect.bottom = min(rect.bottom, accRect.bottom);\n    accRect.left = max(rect.left, accRect.left);\n    return accRect;\n  }, getClientRectFromClippingAncestor(element, firstClippingAncestor, strategy));\n  return {\n    width: clippingRect.right - clippingRect.left,\n    height: clippingRect.bottom - clippingRect.top,\n    x: clippingRect.left,\n    y: clippingRect.top\n  };\n}\n\nfunction getDimensions(element) {\n  const {\n    width,\n    height\n  } = getCssDimensions(element);\n  return {\n    width,\n    height\n  };\n}\n\nfunction getRectRelativeToOffsetParent(element, offsetParent, strategy) {\n  const isOffsetParentAnElement = isHTMLElement(offsetParent);\n  const documentElement = getDocumentElement(offsetParent);\n  const isFixed = strategy === 'fixed';\n  const rect = getBoundingClientRect(element, true, isFixed, offsetParent);\n  let scroll = {\n    scrollLeft: 0,\n    scrollTop: 0\n  };\n  const offsets = createCoords(0);\n\n  // If the <body> scrollbar appears on the left (e.g. RTL systems). Use\n  // Firefox with layout.scrollbar.side = 3 in about:config to test this.\n  function setLeftRTLScrollbarOffset() {\n    offsets.x = getWindowScrollBarX(documentElement);\n  }\n  if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {\n    if (getNodeName(offsetParent) !== 'body' || isOverflowElement(documentElement)) {\n      scroll = getNodeScroll(offsetParent);\n    }\n    if (isOffsetParentAnElement) {\n      const offsetRect = getBoundingClientRect(offsetParent, true, isFixed, offsetParent);\n      offsets.x = offsetRect.x + offsetParent.clientLeft;\n      offsets.y = offsetRect.y + offsetParent.clientTop;\n    } else if (documentElement) {\n      setLeftRTLScrollbarOffset();\n    }\n  }\n  if (isFixed && !isOffsetParentAnElement && documentElement) {\n    setLeftRTLScrollbarOffset();\n  }\n  const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll) : createCoords(0);\n  const x = rect.left + scroll.scrollLeft - offsets.x - htmlOffset.x;\n  const y = rect.top + scroll.scrollTop - offsets.y - htmlOffset.y;\n  return {\n    x,\n    y,\n    width: rect.width,\n    height: rect.height\n  };\n}\n\nfunction isStaticPositioned(element) {\n  return getComputedStyle(element).position === 'static';\n}\n\nfunction getTrueOffsetParent(element, polyfill) {\n  if (!isHTMLElement(element) || getComputedStyle(element).position === 'fixed') {\n    return null;\n  }\n  if (polyfill) {\n    return polyfill(element);\n  }\n  let rawOffsetParent = element.offsetParent;\n\n  // Firefox returns the <html> element as the offsetParent if it's non-static,\n  // while Chrome and Safari return the <body> element. The <body> element must\n  // be used to perform the correct calculations even if the <html> element is\n  // non-static.\n  if (getDocumentElement(element) === rawOffsetParent) {\n    rawOffsetParent = rawOffsetParent.ownerDocument.body;\n  }\n  return rawOffsetParent;\n}\n\n// Gets the closest ancestor positioned element. Handles some edge cases,\n// such as table ancestors and cross browser bugs.\nfunction getOffsetParent(element, polyfill) {\n  const win = getWindow(element);\n  if (isTopLayer(element)) {\n    return win;\n  }\n  if (!isHTMLElement(element)) {\n    let svgOffsetParent = getParentNode(element);\n    while (svgOffsetParent && !isLastTraversableNode(svgOffsetParent)) {\n      if (isElement(svgOffsetParent) && !isStaticPositioned(svgOffsetParent)) {\n        return svgOffsetParent;\n      }\n      svgOffsetParent = getParentNode(svgOffsetParent);\n    }\n    return win;\n  }\n  let offsetParent = getTrueOffsetParent(element, polyfill);\n  while (offsetParent && isTableElement(offsetParent) && isStaticPositioned(offsetParent)) {\n    offsetParent = getTrueOffsetParent(offsetParent, polyfill);\n  }\n  if (offsetParent && isLastTraversableNode(offsetParent) && isStaticPositioned(offsetParent) && !isContainingBlock(offsetParent)) {\n    return win;\n  }\n  return offsetParent || getContainingBlock(element) || win;\n}\n\nconst getElementRects = async function (data) {\n  const getOffsetParentFn = this.getOffsetParent || getOffsetParent;\n  const getDimensionsFn = this.getDimensions;\n  const floatingDimensions = await getDimensionsFn(data.floating);\n  return {\n    reference: getRectRelativeToOffsetParent(data.reference, await getOffsetParentFn(data.floating), data.strategy),\n    floating: {\n      x: 0,\n      y: 0,\n      width: floatingDimensions.width,\n      height: floatingDimensions.height\n    }\n  };\n};\n\nfunction isRTL(element) {\n  return getComputedStyle(element).direction === 'rtl';\n}\n\nconst platform = {\n  convertOffsetParentRelativeRectToViewportRelativeRect,\n  getDocumentElement,\n  getClippingRect,\n  getOffsetParent,\n  getElementRects,\n  getClientRects,\n  getDimensions,\n  getScale,\n  isElement,\n  isRTL\n};\n\nfunction rectsAreEqual(a, b) {\n  return a.x === b.x && a.y === b.y && a.width === b.width && a.height === b.height;\n}\n\n// https://samthor.au/2021/observing-dom/\nfunction observeMove(element, onMove) {\n  let io = null;\n  let timeoutId;\n  const root = getDocumentElement(element);\n  function cleanup() {\n    var _io;\n    clearTimeout(timeoutId);\n    (_io = io) == null || _io.disconnect();\n    io = null;\n  }\n  function refresh(skip, threshold) {\n    if (skip === void 0) {\n      skip = false;\n    }\n    if (threshold === void 0) {\n      threshold = 1;\n    }\n    cleanup();\n    const elementRectForRootMargin = element.getBoundingClientRect();\n    const {\n      left,\n      top,\n      width,\n      height\n    } = elementRectForRootMargin;\n    if (!skip) {\n      onMove();\n    }\n    if (!width || !height) {\n      return;\n    }\n    const insetTop = floor(top);\n    const insetRight = floor(root.clientWidth - (left + width));\n    const insetBottom = floor(root.clientHeight - (top + height));\n    const insetLeft = floor(left);\n    const rootMargin = -insetTop + \"px \" + -insetRight + \"px \" + -insetBottom + \"px \" + -insetLeft + \"px\";\n    const options = {\n      rootMargin,\n      threshold: max(0, min(1, threshold)) || 1\n    };\n    let isFirstUpdate = true;\n    function handleObserve(entries) {\n      const ratio = entries[0].intersectionRatio;\n      if (ratio !== threshold) {\n        if (!isFirstUpdate) {\n          return refresh();\n        }\n        if (!ratio) {\n          // If the reference is clipped, the ratio is 0. Throttle the refresh\n          // to prevent an infinite loop of updates.\n          timeoutId = setTimeout(() => {\n            refresh(false, 1e-7);\n          }, 1000);\n        } else {\n          refresh(false, ratio);\n        }\n      }\n      if (ratio === 1 && !rectsAreEqual(elementRectForRootMargin, element.getBoundingClientRect())) {\n        // It's possible that even though the ratio is reported as 1, the\n        // element is not actually fully within the IntersectionObserver's root\n        // area anymore. This can happen under performance constraints. This may\n        // be a bug in the browser's IntersectionObserver implementation. To\n        // work around this, we compare the element's bounding rect now with\n        // what it was at the time we created the IntersectionObserver. If they\n        // are not equal then the element moved, so we refresh.\n        refresh();\n      }\n      isFirstUpdate = false;\n    }\n\n    // Older browsers don't support a `document` as the root and will throw an\n    // error.\n    try {\n      io = new IntersectionObserver(handleObserve, {\n        ...options,\n        // Handle <iframe>s\n        root: root.ownerDocument\n      });\n    } catch (_e) {\n      io = new IntersectionObserver(handleObserve, options);\n    }\n    io.observe(element);\n  }\n  refresh(true);\n  return cleanup;\n}\n\n/**\n * Automatically updates the position of the floating element when necessary.\n * Should only be called when the floating element is mounted on the DOM or\n * visible on the screen.\n * @returns cleanup function that should be invoked when the floating element is\n * removed from the DOM or hidden from the screen.\n * @see https://floating-ui.com/docs/autoUpdate\n */\nfunction autoUpdate(reference, floating, update, options) {\n  if (options === void 0) {\n    options = {};\n  }\n  const {\n    ancestorScroll = true,\n    ancestorResize = true,\n    elementResize = typeof ResizeObserver === 'function',\n    layoutShift = typeof IntersectionObserver === 'function',\n    animationFrame = false\n  } = options;\n  const referenceEl = unwrapElement(reference);\n  const ancestors = ancestorScroll || ancestorResize ? [...(referenceEl ? getOverflowAncestors(referenceEl) : []), ...getOverflowAncestors(floating)] : [];\n  ancestors.forEach(ancestor => {\n    ancestorScroll && ancestor.addEventListener('scroll', update, {\n      passive: true\n    });\n    ancestorResize && ancestor.addEventListener('resize', update);\n  });\n  const cleanupIo = referenceEl && layoutShift ? observeMove(referenceEl, update) : null;\n  let reobserveFrame = -1;\n  let resizeObserver = null;\n  if (elementResize) {\n    resizeObserver = new ResizeObserver(_ref => {\n      let [firstEntry] = _ref;\n      if (firstEntry && firstEntry.target === referenceEl && resizeObserver) {\n        // Prevent update loops when using the `size` middleware.\n        // https://github.com/floating-ui/floating-ui/issues/1740\n        resizeObserver.unobserve(floating);\n        cancelAnimationFrame(reobserveFrame);\n        reobserveFrame = requestAnimationFrame(() => {\n          var _resizeObserver;\n          (_resizeObserver = resizeObserver) == null || _resizeObserver.observe(floating);\n        });\n      }\n      update();\n    });\n    if (referenceEl && !animationFrame) {\n      resizeObserver.observe(referenceEl);\n    }\n    resizeObserver.observe(floating);\n  }\n  let frameId;\n  let prevRefRect = animationFrame ? getBoundingClientRect(reference) : null;\n  if (animationFrame) {\n    frameLoop();\n  }\n  function frameLoop() {\n    const nextRefRect = getBoundingClientRect(reference);\n    if (prevRefRect && !rectsAreEqual(prevRefRect, nextRefRect)) {\n      update();\n    }\n    prevRefRect = nextRefRect;\n    frameId = requestAnimationFrame(frameLoop);\n  }\n  update();\n  return () => {\n    var _resizeObserver2;\n    ancestors.forEach(ancestor => {\n      ancestorScroll && ancestor.removeEventListener('scroll', update);\n      ancestorResize && ancestor.removeEventListener('resize', update);\n    });\n    cleanupIo == null || cleanupIo();\n    (_resizeObserver2 = resizeObserver) == null || _resizeObserver2.disconnect();\n    resizeObserver = null;\n    if (animationFrame) {\n      cancelAnimationFrame(frameId);\n    }\n  };\n}\n\n/**\n * Resolves with an object of overflow side offsets that determine how much the\n * element is overflowing a given clipping boundary on each side.\n * - positive = overflowing the boundary by that number of pixels\n * - negative = how many pixels left before it will overflow\n * - 0 = lies flush with the boundary\n * @see https://floating-ui.com/docs/detectOverflow\n */\nconst detectOverflow = detectOverflow$1;\n\n/**\n * Modifies the placement by translating the floating element along the\n * specified axes.\n * A number (shorthand for `mainAxis` or distance), or an axes configuration\n * object may be passed.\n * @see https://floating-ui.com/docs/offset\n */\nconst offset = offset$1;\n\n/**\n * Optimizes the visibility of the floating element by choosing the placement\n * that has the most space available automatically, without needing to specify a\n * preferred placement. Alternative to `flip`.\n * @see https://floating-ui.com/docs/autoPlacement\n */\nconst autoPlacement = autoPlacement$1;\n\n/**\n * Optimizes the visibility of the floating element by shifting it in order to\n * keep it in view when it will overflow the clipping boundary.\n * @see https://floating-ui.com/docs/shift\n */\nconst shift = shift$1;\n\n/**\n * Optimizes the visibility of the floating element by flipping the `placement`\n * in order to keep it in view when the preferred placement(s) will overflow the\n * clipping boundary. Alternative to `autoPlacement`.\n * @see https://floating-ui.com/docs/flip\n */\nconst flip = flip$1;\n\n/**\n * Provides data that allows you to change the size of the floating element —\n * for instance, prevent it from overflowing the clipping boundary or match the\n * width of the reference element.\n * @see https://floating-ui.com/docs/size\n */\nconst size = size$1;\n\n/**\n * Provides data to hide the floating element in applicable situations, such as\n * when it is not in the same clipping context as the reference element.\n * @see https://floating-ui.com/docs/hide\n */\nconst hide = hide$1;\n\n/**\n * Provides data to position an inner element of the floating element so that it\n * appears centered to the reference element.\n * @see https://floating-ui.com/docs/arrow\n */\nconst arrow = arrow$1;\n\n/**\n * Provides improved positioning for inline reference elements that can span\n * over multiple lines, such as hyperlinks or range selections.\n * @see https://floating-ui.com/docs/inline\n */\nconst inline = inline$1;\n\n/**\n * Built-in `limiter` that will stop `shift()` at a certain point.\n */\nconst limitShift = limitShift$1;\n\n/**\n * Computes the `x` and `y` coordinates that will place the floating element\n * next to a given reference element.\n */\nconst computePosition = (reference, floating, options) => {\n  // This caches the expensive `getClippingElementAncestors` function so that\n  // multiple lifecycle resets re-use the same result. It only lives for a\n  // single call. If other functions become expensive, we can add them as well.\n  const cache = new Map();\n  const mergedOptions = {\n    platform,\n    ...options\n  };\n  const platformWithCache = {\n    ...mergedOptions.platform,\n    _c: cache\n  };\n  return computePosition$1(reference, floating, {\n    ...mergedOptions,\n    platform: platformWithCache\n  });\n};\n\nexport { arrow, autoPlacement, autoUpdate, computePosition, detectOverflow, flip, hide, inline, limitShift, offset, platform, shift, size };\n","import { computePosition, arrow as arrow$2, offset as offset$1, shift as shift$1, limitShift as limitShift$1, flip as flip$1, size as size$1, autoPlacement as autoPlacement$1, hide as hide$1, inline as inline$1 } from '@floating-ui/dom';\nexport { autoUpdate, computePosition, detectOverflow, getOverflowAncestors, platform } from '@floating-ui/dom';\nimport * as React from 'react';\nimport { useLayoutEffect, useEffect } from 'react';\nimport * as ReactDOM from 'react-dom';\n\nvar index = typeof document !== 'undefined' ? useLayoutEffect : useEffect;\n\n// Fork of `fast-deep-equal` that only does the comparisons we need and compares\n// functions\nfunction deepEqual(a, b) {\n  if (a === b) {\n    return true;\n  }\n  if (typeof a !== typeof b) {\n    return false;\n  }\n  if (typeof a === 'function' && a.toString() === b.toString()) {\n    return true;\n  }\n  let length;\n  let i;\n  let keys;\n  if (a && b && typeof a === 'object') {\n    if (Array.isArray(a)) {\n      length = a.length;\n      if (length !== b.length) return false;\n      for (i = length; i-- !== 0;) {\n        if (!deepEqual(a[i], b[i])) {\n          return false;\n        }\n      }\n      return true;\n    }\n    keys = Object.keys(a);\n    length = keys.length;\n    if (length !== Object.keys(b).length) {\n      return false;\n    }\n    for (i = length; i-- !== 0;) {\n      if (!{}.hasOwnProperty.call(b, keys[i])) {\n        return false;\n      }\n    }\n    for (i = length; i-- !== 0;) {\n      const key = keys[i];\n      if (key === '_owner' && a.$$typeof) {\n        continue;\n      }\n      if (!deepEqual(a[key], b[key])) {\n        return false;\n      }\n    }\n    return true;\n  }\n  return a !== a && b !== b;\n}\n\nfunction getDPR(element) {\n  if (typeof window === 'undefined') {\n    return 1;\n  }\n  const win = element.ownerDocument.defaultView || window;\n  return win.devicePixelRatio || 1;\n}\n\nfunction roundByDPR(element, value) {\n  const dpr = getDPR(element);\n  return Math.round(value * dpr) / dpr;\n}\n\nfunction useLatestRef(value) {\n  const ref = React.useRef(value);\n  index(() => {\n    ref.current = value;\n  });\n  return ref;\n}\n\n/**\n * Provides data to position a floating element.\n * @see https://floating-ui.com/docs/useFloating\n */\nfunction useFloating(options) {\n  if (options === void 0) {\n    options = {};\n  }\n  const {\n    placement = 'bottom',\n    strategy = 'absolute',\n    middleware = [],\n    platform,\n    elements: {\n      reference: externalReference,\n      floating: externalFloating\n    } = {},\n    transform = true,\n    whileElementsMounted,\n    open\n  } = options;\n  const [data, setData] = React.useState({\n    x: 0,\n    y: 0,\n    strategy,\n    placement,\n    middlewareData: {},\n    isPositioned: false\n  });\n  const [latestMiddleware, setLatestMiddleware] = React.useState(middleware);\n  if (!deepEqual(latestMiddleware, middleware)) {\n    setLatestMiddleware(middleware);\n  }\n  const [_reference, _setReference] = React.useState(null);\n  const [_floating, _setFloating] = React.useState(null);\n  const setReference = React.useCallback(node => {\n    if (node !== referenceRef.current) {\n      referenceRef.current = node;\n      _setReference(node);\n    }\n  }, []);\n  const setFloating = React.useCallback(node => {\n    if (node !== floatingRef.current) {\n      floatingRef.current = node;\n      _setFloating(node);\n    }\n  }, []);\n  const referenceEl = externalReference || _reference;\n  const floatingEl = externalFloating || _floating;\n  const referenceRef = React.useRef(null);\n  const floatingRef = React.useRef(null);\n  const dataRef = React.useRef(data);\n  const hasWhileElementsMounted = whileElementsMounted != null;\n  const whileElementsMountedRef = useLatestRef(whileElementsMounted);\n  const platformRef = useLatestRef(platform);\n  const openRef = useLatestRef(open);\n  const update = React.useCallback(() => {\n    if (!referenceRef.current || !floatingRef.current) {\n      return;\n    }\n    const config = {\n      placement,\n      strategy,\n      middleware: latestMiddleware\n    };\n    if (platformRef.current) {\n      config.platform = platformRef.current;\n    }\n    computePosition(referenceRef.current, floatingRef.current, config).then(data => {\n      const fullData = {\n        ...data,\n        // The floating element's position may be recomputed while it's closed\n        // but still mounted (such as when transitioning out). To ensure\n        // `isPositioned` will be `false` initially on the next open, avoid\n        // setting it to `true` when `open === false` (must be specified).\n        isPositioned: openRef.current !== false\n      };\n      if (isMountedRef.current && !deepEqual(dataRef.current, fullData)) {\n        dataRef.current = fullData;\n        ReactDOM.flushSync(() => {\n          setData(fullData);\n        });\n      }\n    });\n  }, [latestMiddleware, placement, strategy, platformRef, openRef]);\n  index(() => {\n    if (open === false && dataRef.current.isPositioned) {\n      dataRef.current.isPositioned = false;\n      setData(data => ({\n        ...data,\n        isPositioned: false\n      }));\n    }\n  }, [open]);\n  const isMountedRef = React.useRef(false);\n  index(() => {\n    isMountedRef.current = true;\n    return () => {\n      isMountedRef.current = false;\n    };\n  }, []);\n  index(() => {\n    if (referenceEl) referenceRef.current = referenceEl;\n    if (floatingEl) floatingRef.current = floatingEl;\n    if (referenceEl && floatingEl) {\n      if (whileElementsMountedRef.current) {\n        return whileElementsMountedRef.current(referenceEl, floatingEl, update);\n      }\n      update();\n    }\n  }, [referenceEl, floatingEl, update, whileElementsMountedRef, hasWhileElementsMounted]);\n  const refs = React.useMemo(() => ({\n    reference: referenceRef,\n    floating: floatingRef,\n    setReference,\n    setFloating\n  }), [setReference, setFloating]);\n  const elements = React.useMemo(() => ({\n    reference: referenceEl,\n    floating: floatingEl\n  }), [referenceEl, floatingEl]);\n  const floatingStyles = React.useMemo(() => {\n    const initialStyles = {\n      position: strategy,\n      left: 0,\n      top: 0\n    };\n    if (!elements.floating) {\n      return initialStyles;\n    }\n    const x = roundByDPR(elements.floating, data.x);\n    const y = roundByDPR(elements.floating, data.y);\n    if (transform) {\n      return {\n        ...initialStyles,\n        transform: \"translate(\" + x + \"px, \" + y + \"px)\",\n        ...(getDPR(elements.floating) >= 1.5 && {\n          willChange: 'transform'\n        })\n      };\n    }\n    return {\n      position: strategy,\n      left: x,\n      top: y\n    };\n  }, [strategy, transform, elements.floating, data.x, data.y]);\n  return React.useMemo(() => ({\n    ...data,\n    update,\n    refs,\n    elements,\n    floatingStyles\n  }), [data, update, refs, elements, floatingStyles]);\n}\n\n/**\n * Provides data to position an inner element of the floating element so that it\n * appears centered to the reference element.\n * This wraps the core `arrow` middleware to allow React refs as the element.\n * @see https://floating-ui.com/docs/arrow\n */\nconst arrow$1 = options => {\n  function isRef(value) {\n    return {}.hasOwnProperty.call(value, 'current');\n  }\n  return {\n    name: 'arrow',\n    options,\n    fn(state) {\n      const {\n        element,\n        padding\n      } = typeof options === 'function' ? options(state) : options;\n      if (element && isRef(element)) {\n        if (element.current != null) {\n          return arrow$2({\n            element: element.current,\n            padding\n          }).fn(state);\n        }\n        return {};\n      }\n      if (element) {\n        return arrow$2({\n          element,\n          padding\n        }).fn(state);\n      }\n      return {};\n    }\n  };\n};\n\n/**\n * Modifies the placement by translating the floating element along the\n * specified axes.\n * A number (shorthand for `mainAxis` or distance), or an axes configuration\n * object may be passed.\n * @see https://floating-ui.com/docs/offset\n */\nconst offset = (options, deps) => ({\n  ...offset$1(options),\n  options: [options, deps]\n});\n\n/**\n * Optimizes the visibility of the floating element by shifting it in order to\n * keep it in view when it will overflow the clipping boundary.\n * @see https://floating-ui.com/docs/shift\n */\nconst shift = (options, deps) => ({\n  ...shift$1(options),\n  options: [options, deps]\n});\n\n/**\n * Built-in `limiter` that will stop `shift()` at a certain point.\n */\nconst limitShift = (options, deps) => ({\n  ...limitShift$1(options),\n  options: [options, deps]\n});\n\n/**\n * Optimizes the visibility of the floating element by flipping the `placement`\n * in order to keep it in view when the preferred placement(s) will overflow the\n * clipping boundary. Alternative to `autoPlacement`.\n * @see https://floating-ui.com/docs/flip\n */\nconst flip = (options, deps) => ({\n  ...flip$1(options),\n  options: [options, deps]\n});\n\n/**\n * Provides data that allows you to change the size of the floating element —\n * for instance, prevent it from overflowing the clipping boundary or match the\n * width of the reference element.\n * @see https://floating-ui.com/docs/size\n */\nconst size = (options, deps) => ({\n  ...size$1(options),\n  options: [options, deps]\n});\n\n/**\n * Optimizes the visibility of the floating element by choosing the placement\n * that has the most space available automatically, without needing to specify a\n * preferred placement. Alternative to `flip`.\n * @see https://floating-ui.com/docs/autoPlacement\n */\nconst autoPlacement = (options, deps) => ({\n  ...autoPlacement$1(options),\n  options: [options, deps]\n});\n\n/**\n * Provides data to hide the floating element in applicable situations, such as\n * when it is not in the same clipping context as the reference element.\n * @see https://floating-ui.com/docs/hide\n */\nconst hide = (options, deps) => ({\n  ...hide$1(options),\n  options: [options, deps]\n});\n\n/**\n * Provides improved positioning for inline reference elements that can span\n * over multiple lines, such as hyperlinks or range selections.\n * @see https://floating-ui.com/docs/inline\n */\nconst inline = (options, deps) => ({\n  ...inline$1(options),\n  options: [options, deps]\n});\n\n/**\n * Provides data to position an inner element of the floating element so that it\n * appears centered to the reference element.\n * This wraps the core `arrow` middleware to allow React refs as the element.\n * @see https://floating-ui.com/docs/arrow\n */\nconst arrow = (options, deps) => ({\n  ...arrow$1(options),\n  options: [options, deps]\n});\n\nexport { arrow, autoPlacement, flip, hide, inline, limitShift, offset, shift, size, useFloating };\n","import * as React from 'react';\nimport { useLayoutEffect, useEffect, useRef } from 'react';\nimport { stopEvent, getDocument, isMouseLikePointerType, contains, activeElement, isSafari, isTypeableCombobox, isVirtualClick, isVirtualPointerEvent, getTarget, getPlatform, isTypeableElement, isReactEvent, isRootElement, isEventTargetWithin, isMac, getUserAgent } from '@floating-ui/react/utils';\nimport { floor, evaluate, max, min, round } from '@floating-ui/utils';\nimport { getComputedStyle, isElement, getNodeName, isHTMLElement, getWindow, isLastTraversableNode, getParentNode, isWebKit } from '@floating-ui/utils/dom';\nimport { tabbable, isTabbable } from 'tabbable';\nimport * as ReactDOM from 'react-dom';\nimport { getOverflowAncestors, useFloating as useFloating$1, offset, detectOverflow } from '@floating-ui/react-dom';\nexport { arrow, autoPlacement, autoUpdate, computePosition, detectOverflow, flip, getOverflowAncestors, hide, inline, limitShift, offset, platform, shift, size } from '@floating-ui/react-dom';\n\n/**\n * Merges an array of refs into a single memoized callback ref or `null`.\n * @see https://floating-ui.com/docs/react-utils#usemergerefs\n */\nfunction useMergeRefs(refs) {\n  return React.useMemo(() => {\n    if (refs.every(ref => ref == null)) {\n      return null;\n    }\n    return value => {\n      refs.forEach(ref => {\n        if (typeof ref === 'function') {\n          ref(value);\n        } else if (ref != null) {\n          ref.current = value;\n        }\n      });\n    };\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, refs);\n}\n\n// https://github.com/mui/material-ui/issues/41190#issuecomment-2040873379\nconst SafeReact = {\n  ...React\n};\n\nconst useInsertionEffect = SafeReact.useInsertionEffect;\nconst useSafeInsertionEffect = useInsertionEffect || (fn => fn());\nfunction useEffectEvent(callback) {\n  const ref = React.useRef(() => {\n    if (process.env.NODE_ENV !== \"production\") {\n      throw new Error('Cannot call an event handler while rendering.');\n    }\n  });\n  useSafeInsertionEffect(() => {\n    ref.current = callback;\n  });\n  return React.useCallback(function () {\n    for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n      args[_key] = arguments[_key];\n    }\n    return ref.current == null ? void 0 : ref.current(...args);\n  }, []);\n}\n\nconst ARROW_UP = 'ArrowUp';\nconst ARROW_DOWN = 'ArrowDown';\nconst ARROW_LEFT = 'ArrowLeft';\nconst ARROW_RIGHT = 'ArrowRight';\nfunction isDifferentRow(index, cols, prevRow) {\n  return Math.floor(index / cols) !== prevRow;\n}\nfunction isIndexOutOfBounds(listRef, index) {\n  return index < 0 || index >= listRef.current.length;\n}\nfunction getMinIndex(listRef, disabledIndices) {\n  return findNonDisabledIndex(listRef, {\n    disabledIndices\n  });\n}\nfunction getMaxIndex(listRef, disabledIndices) {\n  return findNonDisabledIndex(listRef, {\n    decrement: true,\n    startingIndex: listRef.current.length,\n    disabledIndices\n  });\n}\nfunction findNonDisabledIndex(listRef, _temp) {\n  let {\n    startingIndex = -1,\n    decrement = false,\n    disabledIndices,\n    amount = 1\n  } = _temp === void 0 ? {} : _temp;\n  const list = listRef.current;\n  let index = startingIndex;\n  do {\n    index += decrement ? -amount : amount;\n  } while (index >= 0 && index <= list.length - 1 && isDisabled(list, index, disabledIndices));\n  return index;\n}\nfunction getGridNavigatedIndex(elementsRef, _ref) {\n  let {\n    event,\n    orientation,\n    loop,\n    rtl,\n    cols,\n    disabledIndices,\n    minIndex,\n    maxIndex,\n    prevIndex,\n    stopEvent: stop = false\n  } = _ref;\n  let nextIndex = prevIndex;\n  if (event.key === ARROW_UP) {\n    stop && stopEvent(event);\n    if (prevIndex === -1) {\n      nextIndex = maxIndex;\n    } else {\n      nextIndex = findNonDisabledIndex(elementsRef, {\n        startingIndex: nextIndex,\n        amount: cols,\n        decrement: true,\n        disabledIndices\n      });\n      if (loop && (prevIndex - cols < minIndex || nextIndex < 0)) {\n        const col = prevIndex % cols;\n        const maxCol = maxIndex % cols;\n        const offset = maxIndex - (maxCol - col);\n        if (maxCol === col) {\n          nextIndex = maxIndex;\n        } else {\n          nextIndex = maxCol > col ? offset : offset - cols;\n        }\n      }\n    }\n    if (isIndexOutOfBounds(elementsRef, nextIndex)) {\n      nextIndex = prevIndex;\n    }\n  }\n  if (event.key === ARROW_DOWN) {\n    stop && stopEvent(event);\n    if (prevIndex === -1) {\n      nextIndex = minIndex;\n    } else {\n      nextIndex = findNonDisabledIndex(elementsRef, {\n        startingIndex: prevIndex,\n        amount: cols,\n        disabledIndices\n      });\n      if (loop && prevIndex + cols > maxIndex) {\n        nextIndex = findNonDisabledIndex(elementsRef, {\n          startingIndex: prevIndex % cols - cols,\n          amount: cols,\n          disabledIndices\n        });\n      }\n    }\n    if (isIndexOutOfBounds(elementsRef, nextIndex)) {\n      nextIndex = prevIndex;\n    }\n  }\n\n  // Remains on the same row/column.\n  if (orientation === 'both') {\n    const prevRow = floor(prevIndex / cols);\n    if (event.key === (rtl ? ARROW_LEFT : ARROW_RIGHT)) {\n      stop && stopEvent(event);\n      if (prevIndex % cols !== cols - 1) {\n        nextIndex = findNonDisabledIndex(elementsRef, {\n          startingIndex: prevIndex,\n          disabledIndices\n        });\n        if (loop && isDifferentRow(nextIndex, cols, prevRow)) {\n          nextIndex = findNonDisabledIndex(elementsRef, {\n            startingIndex: prevIndex - prevIndex % cols - 1,\n            disabledIndices\n          });\n        }\n      } else if (loop) {\n        nextIndex = findNonDisabledIndex(elementsRef, {\n          startingIndex: prevIndex - prevIndex % cols - 1,\n          disabledIndices\n        });\n      }\n      if (isDifferentRow(nextIndex, cols, prevRow)) {\n        nextIndex = prevIndex;\n      }\n    }\n    if (event.key === (rtl ? ARROW_RIGHT : ARROW_LEFT)) {\n      stop && stopEvent(event);\n      if (prevIndex % cols !== 0) {\n        nextIndex = findNonDisabledIndex(elementsRef, {\n          startingIndex: prevIndex,\n          decrement: true,\n          disabledIndices\n        });\n        if (loop && isDifferentRow(nextIndex, cols, prevRow)) {\n          nextIndex = findNonDisabledIndex(elementsRef, {\n            startingIndex: prevIndex + (cols - prevIndex % cols),\n            decrement: true,\n            disabledIndices\n          });\n        }\n      } else if (loop) {\n        nextIndex = findNonDisabledIndex(elementsRef, {\n          startingIndex: prevIndex + (cols - prevIndex % cols),\n          decrement: true,\n          disabledIndices\n        });\n      }\n      if (isDifferentRow(nextIndex, cols, prevRow)) {\n        nextIndex = prevIndex;\n      }\n    }\n    const lastRow = floor(maxIndex / cols) === prevRow;\n    if (isIndexOutOfBounds(elementsRef, nextIndex)) {\n      if (loop && lastRow) {\n        nextIndex = event.key === (rtl ? ARROW_RIGHT : ARROW_LEFT) ? maxIndex : findNonDisabledIndex(elementsRef, {\n          startingIndex: prevIndex - prevIndex % cols - 1,\n          disabledIndices\n        });\n      } else {\n        nextIndex = prevIndex;\n      }\n    }\n  }\n  return nextIndex;\n}\n\n/** For each cell index, gets the item index that occupies that cell */\nfunction buildCellMap(sizes, cols, dense) {\n  const cellMap = [];\n  let startIndex = 0;\n  sizes.forEach((_ref2, index) => {\n    let {\n      width,\n      height\n    } = _ref2;\n    if (width > cols) {\n      if (process.env.NODE_ENV !== \"production\") {\n        throw new Error(\"[Floating UI]: Invalid grid - item width at index \" + index + \" is greater than grid columns\");\n      }\n    }\n    let itemPlaced = false;\n    if (dense) {\n      startIndex = 0;\n    }\n    while (!itemPlaced) {\n      const targetCells = [];\n      for (let i = 0; i < width; i++) {\n        for (let j = 0; j < height; j++) {\n          targetCells.push(startIndex + i + j * cols);\n        }\n      }\n      if (startIndex % cols + width <= cols && targetCells.every(cell => cellMap[cell] == null)) {\n        targetCells.forEach(cell => {\n          cellMap[cell] = index;\n        });\n        itemPlaced = true;\n      } else {\n        startIndex++;\n      }\n    }\n  });\n\n  // convert into a non-sparse array\n  return [...cellMap];\n}\n\n/** Gets cell index of an item's corner or -1 when index is -1. */\nfunction getCellIndexOfCorner(index, sizes, cellMap, cols, corner) {\n  if (index === -1) return -1;\n  const firstCellIndex = cellMap.indexOf(index);\n  const sizeItem = sizes[index];\n  switch (corner) {\n    case 'tl':\n      return firstCellIndex;\n    case 'tr':\n      if (!sizeItem) {\n        return firstCellIndex;\n      }\n      return firstCellIndex + sizeItem.width - 1;\n    case 'bl':\n      if (!sizeItem) {\n        return firstCellIndex;\n      }\n      return firstCellIndex + (sizeItem.height - 1) * cols;\n    case 'br':\n      return cellMap.lastIndexOf(index);\n  }\n}\n\n/** Gets all cell indices that correspond to the specified indices */\nfunction getCellIndices(indices, cellMap) {\n  return cellMap.flatMap((index, cellIndex) => indices.includes(index) ? [cellIndex] : []);\n}\nfunction isDisabled(list, index, disabledIndices) {\n  if (disabledIndices) {\n    return disabledIndices.includes(index);\n  }\n  const element = list[index];\n  return element == null || element.hasAttribute('disabled') || element.getAttribute('aria-disabled') === 'true';\n}\n\nvar index = typeof document !== 'undefined' ? useLayoutEffect : useEffect;\n\nfunction sortByDocumentPosition(a, b) {\n  const position = a.compareDocumentPosition(b);\n  if (position & Node.DOCUMENT_POSITION_FOLLOWING || position & Node.DOCUMENT_POSITION_CONTAINED_BY) {\n    return -1;\n  }\n  if (position & Node.DOCUMENT_POSITION_PRECEDING || position & Node.DOCUMENT_POSITION_CONTAINS) {\n    return 1;\n  }\n  return 0;\n}\nfunction areMapsEqual(map1, map2) {\n  if (map1.size !== map2.size) {\n    return false;\n  }\n  for (const [key, value] of map1.entries()) {\n    if (value !== map2.get(key)) {\n      return false;\n    }\n  }\n  return true;\n}\nconst FloatingListContext = /*#__PURE__*/React.createContext({\n  register: () => {},\n  unregister: () => {},\n  map: /*#__PURE__*/new Map(),\n  elementsRef: {\n    current: []\n  }\n});\n/**\n * Provides context for a list of items within the floating element.\n * @see https://floating-ui.com/docs/FloatingList\n */\nfunction FloatingList(props) {\n  const {\n    children,\n    elementsRef,\n    labelsRef\n  } = props;\n  const [map, setMap] = React.useState(() => new Map());\n  const register = React.useCallback(node => {\n    setMap(prevMap => new Map(prevMap).set(node, null));\n  }, []);\n  const unregister = React.useCallback(node => {\n    setMap(prevMap => {\n      const map = new Map(prevMap);\n      map.delete(node);\n      return map;\n    });\n  }, []);\n  index(() => {\n    const newMap = new Map(map);\n    const nodes = Array.from(newMap.keys()).sort(sortByDocumentPosition);\n    nodes.forEach((node, index) => {\n      newMap.set(node, index);\n    });\n    if (!areMapsEqual(map, newMap)) {\n      setMap(newMap);\n    }\n  }, [map]);\n  return /*#__PURE__*/React.createElement(FloatingListContext.Provider, {\n    value: React.useMemo(() => ({\n      register,\n      unregister,\n      map,\n      elementsRef,\n      labelsRef\n    }), [register, unregister, map, elementsRef, labelsRef])\n  }, children);\n}\n/**\n * Used to register a list item and its index (DOM position) in the\n * `FloatingList`.\n * @see https://floating-ui.com/docs/FloatingList#uselistitem\n */\nfunction useListItem(props) {\n  if (props === void 0) {\n    props = {};\n  }\n  const {\n    label\n  } = props;\n  const {\n    register,\n    unregister,\n    map,\n    elementsRef,\n    labelsRef\n  } = React.useContext(FloatingListContext);\n  const [index$1, setIndex] = React.useState(null);\n  const componentRef = React.useRef(null);\n  const ref = React.useCallback(node => {\n    componentRef.current = node;\n    if (index$1 !== null) {\n      elementsRef.current[index$1] = node;\n      if (labelsRef) {\n        var _node$textContent;\n        const isLabelDefined = label !== undefined;\n        labelsRef.current[index$1] = isLabelDefined ? label : (_node$textContent = node == null ? void 0 : node.textContent) != null ? _node$textContent : null;\n      }\n    }\n  }, [index$1, elementsRef, labelsRef, label]);\n  index(() => {\n    const node = componentRef.current;\n    if (node) {\n      register(node);\n      return () => {\n        unregister(node);\n      };\n    }\n  }, [register, unregister]);\n  index(() => {\n    const index = componentRef.current ? map.get(componentRef.current) : null;\n    if (index != null) {\n      setIndex(index);\n    }\n  }, [map]);\n  return React.useMemo(() => ({\n    ref,\n    index: index$1 == null ? -1 : index$1\n  }), [index$1, ref]);\n}\n\nfunction renderJsx(render, computedProps) {\n  if (typeof render === 'function') {\n    return render(computedProps);\n  }\n  if (render) {\n    return /*#__PURE__*/React.cloneElement(render, computedProps);\n  }\n  return /*#__PURE__*/React.createElement(\"div\", computedProps);\n}\nconst CompositeContext = /*#__PURE__*/React.createContext({\n  activeIndex: 0,\n  onNavigate: () => {}\n});\nconst horizontalKeys = [ARROW_LEFT, ARROW_RIGHT];\nconst verticalKeys = [ARROW_UP, ARROW_DOWN];\nconst allKeys = [...horizontalKeys, ...verticalKeys];\n\n/**\n * Creates a single tab stop whose items are navigated by arrow keys, which\n * provides list navigation outside of floating element contexts.\n *\n * This is useful to enable navigation of a list of items that aren’t part of a\n * floating element. A menubar is an example of a composite, with each reference\n * element being an item.\n * @see https://floating-ui.com/docs/Composite\n */\nconst Composite = /*#__PURE__*/React.forwardRef(function Composite(props, forwardedRef) {\n  const {\n    render,\n    orientation = 'both',\n    loop = true,\n    rtl = false,\n    cols = 1,\n    disabledIndices,\n    activeIndex: externalActiveIndex,\n    onNavigate: externalSetActiveIndex,\n    itemSizes,\n    dense = false,\n    ...domProps\n  } = props;\n  const [internalActiveIndex, internalSetActiveIndex] = React.useState(0);\n  const activeIndex = externalActiveIndex != null ? externalActiveIndex : internalActiveIndex;\n  const onNavigate = useEffectEvent(externalSetActiveIndex != null ? externalSetActiveIndex : internalSetActiveIndex);\n  const elementsRef = React.useRef([]);\n  const renderElementProps = render && typeof render !== 'function' ? render.props : {};\n  const contextValue = React.useMemo(() => ({\n    activeIndex,\n    onNavigate\n  }), [activeIndex, onNavigate]);\n  const isGrid = cols > 1;\n  function handleKeyDown(event) {\n    if (!allKeys.includes(event.key)) return;\n    let nextIndex = activeIndex;\n    const minIndex = getMinIndex(elementsRef, disabledIndices);\n    const maxIndex = getMaxIndex(elementsRef, disabledIndices);\n    const horizontalEndKey = rtl ? ARROW_LEFT : ARROW_RIGHT;\n    const horizontalStartKey = rtl ? ARROW_RIGHT : ARROW_LEFT;\n    if (isGrid) {\n      const sizes = itemSizes || Array.from({\n        length: elementsRef.current.length\n      }, () => ({\n        width: 1,\n        height: 1\n      }));\n      // To calculate movements on the grid, we use hypothetical cell indices\n      // as if every item was 1x1, then convert back to real indices.\n      const cellMap = buildCellMap(sizes, cols, dense);\n      const minGridIndex = cellMap.findIndex(index => index != null && !isDisabled(elementsRef.current, index, disabledIndices));\n      // last enabled index\n      const maxGridIndex = cellMap.reduce((foundIndex, index, cellIndex) => index != null && !isDisabled(elementsRef.current, index, disabledIndices) ? cellIndex : foundIndex, -1);\n      const maybeNextIndex = cellMap[getGridNavigatedIndex({\n        current: cellMap.map(itemIndex => itemIndex ? elementsRef.current[itemIndex] : null)\n      }, {\n        event,\n        orientation,\n        loop,\n        rtl,\n        cols,\n        // treat undefined (empty grid spaces) as disabled indices so we\n        // don't end up in them\n        disabledIndices: getCellIndices([...(disabledIndices || elementsRef.current.map((_, index) => isDisabled(elementsRef.current, index) ? index : undefined)), undefined], cellMap),\n        minIndex: minGridIndex,\n        maxIndex: maxGridIndex,\n        prevIndex: getCellIndexOfCorner(activeIndex > maxIndex ? minIndex : activeIndex, sizes, cellMap, cols,\n        // use a corner matching the edge closest to the direction we're\n        // moving in so we don't end up in the same item. Prefer\n        // top/left over bottom/right.\n        event.key === ARROW_DOWN ? 'bl' : event.key === horizontalEndKey ? 'tr' : 'tl')\n      })];\n      if (maybeNextIndex != null) {\n        nextIndex = maybeNextIndex;\n      }\n    }\n    const toEndKeys = {\n      horizontal: [horizontalEndKey],\n      vertical: [ARROW_DOWN],\n      both: [horizontalEndKey, ARROW_DOWN]\n    }[orientation];\n    const toStartKeys = {\n      horizontal: [horizontalStartKey],\n      vertical: [ARROW_UP],\n      both: [horizontalStartKey, ARROW_UP]\n    }[orientation];\n    const preventedKeys = isGrid ? allKeys : {\n      horizontal: horizontalKeys,\n      vertical: verticalKeys,\n      both: allKeys\n    }[orientation];\n    if (nextIndex === activeIndex && [...toEndKeys, ...toStartKeys].includes(event.key)) {\n      if (loop && nextIndex === maxIndex && toEndKeys.includes(event.key)) {\n        nextIndex = minIndex;\n      } else if (loop && nextIndex === minIndex && toStartKeys.includes(event.key)) {\n        nextIndex = maxIndex;\n      } else {\n        nextIndex = findNonDisabledIndex(elementsRef, {\n          startingIndex: nextIndex,\n          decrement: toStartKeys.includes(event.key),\n          disabledIndices\n        });\n      }\n    }\n    if (nextIndex !== activeIndex && !isIndexOutOfBounds(elementsRef, nextIndex)) {\n      var _elementsRef$current$;\n      event.stopPropagation();\n      if (preventedKeys.includes(event.key)) {\n        event.preventDefault();\n      }\n      onNavigate(nextIndex);\n      (_elementsRef$current$ = elementsRef.current[nextIndex]) == null || _elementsRef$current$.focus();\n    }\n  }\n  const computedProps = {\n    ...domProps,\n    ...renderElementProps,\n    ref: forwardedRef,\n    'aria-orientation': orientation === 'both' ? undefined : orientation,\n    onKeyDown(e) {\n      domProps.onKeyDown == null || domProps.onKeyDown(e);\n      renderElementProps.onKeyDown == null || renderElementProps.onKeyDown(e);\n      handleKeyDown(e);\n    }\n  };\n  return /*#__PURE__*/React.createElement(CompositeContext.Provider, {\n    value: contextValue\n  }, /*#__PURE__*/React.createElement(FloatingList, {\n    elementsRef: elementsRef\n  }, renderJsx(render, computedProps)));\n});\n/**\n * @see https://floating-ui.com/docs/Composite\n */\nconst CompositeItem = /*#__PURE__*/React.forwardRef(function CompositeItem(props, forwardedRef) {\n  const {\n    render,\n    ...domProps\n  } = props;\n  const renderElementProps = render && typeof render !== 'function' ? render.props : {};\n  const {\n    activeIndex,\n    onNavigate\n  } = React.useContext(CompositeContext);\n  const {\n    ref,\n    index\n  } = useListItem();\n  const mergedRef = useMergeRefs([ref, forwardedRef, renderElementProps.ref]);\n  const isActive = activeIndex === index;\n  const computedProps = {\n    ...domProps,\n    ...renderElementProps,\n    ref: mergedRef,\n    tabIndex: isActive ? 0 : -1,\n    'data-active': isActive ? '' : undefined,\n    onFocus(e) {\n      domProps.onFocus == null || domProps.onFocus(e);\n      renderElementProps.onFocus == null || renderElementProps.onFocus(e);\n      onNavigate(index);\n    }\n  };\n  return renderJsx(render, computedProps);\n});\n\nfunction _extends() {\n  _extends = Object.assign ? Object.assign.bind() : function (target) {\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var key in source) {\n        if (Object.prototype.hasOwnProperty.call(source, key)) {\n          target[key] = source[key];\n        }\n      }\n    }\n    return target;\n  };\n  return _extends.apply(this, arguments);\n}\n\nlet serverHandoffComplete = false;\nlet count = 0;\nconst genId = () => // Ensure the id is unique with multiple independent versions of Floating UI\n// on <React 18\n\"floating-ui-\" + Math.random().toString(36).slice(2, 6) + count++;\nfunction useFloatingId() {\n  const [id, setId] = React.useState(() => serverHandoffComplete ? genId() : undefined);\n  index(() => {\n    if (id == null) {\n      setId(genId());\n    }\n    // eslint-disable-next-line react-hooks/exhaustive-deps\n  }, []);\n  React.useEffect(() => {\n    serverHandoffComplete = true;\n  }, []);\n  return id;\n}\nconst useReactId = SafeReact.useId;\n\n/**\n * Uses React 18's built-in `useId()` when available, or falls back to a\n * slightly less performant (requiring a double render) implementation for\n * earlier React versions.\n * @see https://floating-ui.com/docs/react-utils#useid\n */\nconst useId = useReactId || useFloatingId;\n\nlet devMessageSet;\nif (process.env.NODE_ENV !== \"production\") {\n  devMessageSet = /*#__PURE__*/new Set();\n}\nfunction warn() {\n  var _devMessageSet;\n  for (var _len = arguments.length, messages = new Array(_len), _key = 0; _key < _len; _key++) {\n    messages[_key] = arguments[_key];\n  }\n  const message = \"Floating UI: \" + messages.join(' ');\n  if (!((_devMessageSet = devMessageSet) != null && _devMessageSet.has(message))) {\n    var _devMessageSet2;\n    (_devMessageSet2 = devMessageSet) == null || _devMessageSet2.add(message);\n    console.warn(message);\n  }\n}\nfunction error() {\n  var _devMessageSet3;\n  for (var _len2 = arguments.length, messages = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n    messages[_key2] = arguments[_key2];\n  }\n  const message = \"Floating UI: \" + messages.join(' ');\n  if (!((_devMessageSet3 = devMessageSet) != null && _devMessageSet3.has(message))) {\n    var _devMessageSet4;\n    (_devMessageSet4 = devMessageSet) == null || _devMessageSet4.add(message);\n    console.error(message);\n  }\n}\n\n/**\n * Renders a pointing arrow triangle.\n * @see https://floating-ui.com/docs/FloatingArrow\n */\nconst FloatingArrow = /*#__PURE__*/React.forwardRef(function FloatingArrow(props, ref) {\n  const {\n    context: {\n      placement,\n      elements: {\n        floating\n      },\n      middlewareData: {\n        arrow,\n        shift\n      }\n    },\n    width = 14,\n    height = 7,\n    tipRadius = 0,\n    strokeWidth = 0,\n    staticOffset,\n    stroke,\n    d,\n    style: {\n      transform,\n      ...restStyle\n    } = {},\n    ...rest\n  } = props;\n  if (process.env.NODE_ENV !== \"production\") {\n    if (!ref) {\n      warn('The `ref` prop is required for `FloatingArrow`.');\n    }\n  }\n  const clipPathId = useId();\n  const [isRTL, setIsRTL] = React.useState(false);\n\n  // https://github.com/floating-ui/floating-ui/issues/2932\n  index(() => {\n    if (!floating) return;\n    const isRTL = getComputedStyle(floating).direction === 'rtl';\n    if (isRTL) {\n      setIsRTL(true);\n    }\n  }, [floating]);\n  if (!floating) {\n    return null;\n  }\n  const [side, alignment] = placement.split('-');\n  const isVerticalSide = side === 'top' || side === 'bottom';\n  let computedStaticOffset = staticOffset;\n  if (isVerticalSide && shift != null && shift.x || !isVerticalSide && shift != null && shift.y) {\n    computedStaticOffset = null;\n  }\n\n  // Strokes must be double the border width, this ensures the stroke's width\n  // works as you'd expect.\n  const computedStrokeWidth = strokeWidth * 2;\n  const halfStrokeWidth = computedStrokeWidth / 2;\n  const svgX = width / 2 * (tipRadius / -8 + 1);\n  const svgY = height / 2 * tipRadius / 4;\n  const isCustomShape = !!d;\n  const yOffsetProp = computedStaticOffset && alignment === 'end' ? 'bottom' : 'top';\n  let xOffsetProp = computedStaticOffset && alignment === 'end' ? 'right' : 'left';\n  if (computedStaticOffset && isRTL) {\n    xOffsetProp = alignment === 'end' ? 'left' : 'right';\n  }\n  const arrowX = (arrow == null ? void 0 : arrow.x) != null ? computedStaticOffset || arrow.x : '';\n  const arrowY = (arrow == null ? void 0 : arrow.y) != null ? computedStaticOffset || arrow.y : '';\n  const dValue = d || 'M0,0' + (\" H\" + width) + (\" L\" + (width - svgX) + \",\" + (height - svgY)) + (\" Q\" + width / 2 + \",\" + height + \" \" + svgX + \",\" + (height - svgY)) + ' Z';\n  const rotation = {\n    top: isCustomShape ? 'rotate(180deg)' : '',\n    left: isCustomShape ? 'rotate(90deg)' : 'rotate(-90deg)',\n    bottom: isCustomShape ? '' : 'rotate(180deg)',\n    right: isCustomShape ? 'rotate(-90deg)' : 'rotate(90deg)'\n  }[side];\n  return /*#__PURE__*/React.createElement(\"svg\", _extends({}, rest, {\n    \"aria-hidden\": true,\n    ref: ref,\n    width: isCustomShape ? width : width + computedStrokeWidth,\n    height: width,\n    viewBox: \"0 0 \" + width + \" \" + (height > width ? height : width),\n    style: {\n      position: 'absolute',\n      pointerEvents: 'none',\n      [xOffsetProp]: arrowX,\n      [yOffsetProp]: arrowY,\n      [side]: isVerticalSide || isCustomShape ? '100%' : \"calc(100% - \" + computedStrokeWidth / 2 + \"px)\",\n      transform: [rotation, transform].filter(t => !!t).join(' '),\n      ...restStyle\n    }\n  }), computedStrokeWidth > 0 && /*#__PURE__*/React.createElement(\"path\", {\n    clipPath: \"url(#\" + clipPathId + \")\",\n    fill: \"none\",\n    stroke: stroke\n    // Account for the stroke on the fill path rendered below.\n    ,\n    strokeWidth: computedStrokeWidth + (d ? 0 : 1),\n    d: dValue\n  }), /*#__PURE__*/React.createElement(\"path\", {\n    stroke: computedStrokeWidth && !d ? rest.fill : 'none',\n    d: dValue\n  }), /*#__PURE__*/React.createElement(\"clipPath\", {\n    id: clipPathId\n  }, /*#__PURE__*/React.createElement(\"rect\", {\n    x: -halfStrokeWidth,\n    y: halfStrokeWidth * (isCustomShape ? -1 : 1),\n    width: width + computedStrokeWidth,\n    height: width\n  })));\n});\n\nfunction createPubSub() {\n  const map = new Map();\n  return {\n    emit(event, data) {\n      var _map$get;\n      (_map$get = map.get(event)) == null || _map$get.forEach(handler => handler(data));\n    },\n    on(event, listener) {\n      map.set(event, [...(map.get(event) || []), listener]);\n    },\n    off(event, listener) {\n      var _map$get2;\n      map.set(event, ((_map$get2 = map.get(event)) == null ? void 0 : _map$get2.filter(l => l !== listener)) || []);\n    }\n  };\n}\n\nconst FloatingNodeContext = /*#__PURE__*/React.createContext(null);\nconst FloatingTreeContext = /*#__PURE__*/React.createContext(null);\n\n/**\n * Returns the parent node id for nested floating elements, if available.\n * Returns `null` for top-level floating elements.\n */\nconst useFloatingParentNodeId = () => {\n  var _React$useContext;\n  return ((_React$useContext = React.useContext(FloatingNodeContext)) == null ? void 0 : _React$useContext.id) || null;\n};\n\n/**\n * Returns the nearest floating tree context, if available.\n */\nconst useFloatingTree = () => React.useContext(FloatingTreeContext);\n\n/**\n * Registers a node into the `FloatingTree`, returning its id.\n * @see https://floating-ui.com/docs/FloatingTree\n */\nfunction useFloatingNodeId(customParentId) {\n  const id = useId();\n  const tree = useFloatingTree();\n  const reactParentId = useFloatingParentNodeId();\n  const parentId = customParentId || reactParentId;\n  index(() => {\n    const node = {\n      id,\n      parentId\n    };\n    tree == null || tree.addNode(node);\n    return () => {\n      tree == null || tree.removeNode(node);\n    };\n  }, [tree, id, parentId]);\n  return id;\n}\n/**\n * Provides parent node context for nested floating elements.\n * @see https://floating-ui.com/docs/FloatingTree\n */\nfunction FloatingNode(props) {\n  const {\n    children,\n    id\n  } = props;\n  const parentId = useFloatingParentNodeId();\n  return /*#__PURE__*/React.createElement(FloatingNodeContext.Provider, {\n    value: React.useMemo(() => ({\n      id,\n      parentId\n    }), [id, parentId])\n  }, children);\n}\n/**\n * Provides context for nested floating elements when they are not children of\n * each other on the DOM.\n * This is not necessary in all cases, except when there must be explicit communication between parent and child floating elements. It is necessary for:\n * - The `bubbles` option in the `useDismiss()` Hook\n * - Nested virtual list navigation\n * - Nested floating elements that each open on hover\n * - Custom communication between parent and child floating elements\n * @see https://floating-ui.com/docs/FloatingTree\n */\nfunction FloatingTree(props) {\n  const {\n    children\n  } = props;\n  const nodesRef = React.useRef([]);\n  const addNode = React.useCallback(node => {\n    nodesRef.current = [...nodesRef.current, node];\n  }, []);\n  const removeNode = React.useCallback(node => {\n    nodesRef.current = nodesRef.current.filter(n => n !== node);\n  }, []);\n  const events = React.useState(() => createPubSub())[0];\n  return /*#__PURE__*/React.createElement(FloatingTreeContext.Provider, {\n    value: React.useMemo(() => ({\n      nodesRef,\n      addNode,\n      removeNode,\n      events\n    }), [addNode, removeNode, events])\n  }, children);\n}\n\nfunction createAttribute(name) {\n  return \"data-floating-ui-\" + name;\n}\n\nfunction useLatestRef(value) {\n  const ref = useRef(value);\n  index(() => {\n    ref.current = value;\n  });\n  return ref;\n}\n\nconst safePolygonIdentifier = /*#__PURE__*/createAttribute('safe-polygon');\nfunction getDelay(value, prop, pointerType) {\n  if (pointerType && !isMouseLikePointerType(pointerType)) {\n    return 0;\n  }\n  if (typeof value === 'number') {\n    return value;\n  }\n  return value == null ? void 0 : value[prop];\n}\n/**\n * Opens the floating element while hovering over the reference element, like\n * CSS `:hover`.\n * @see https://floating-ui.com/docs/useHover\n */\nfunction useHover(context, props) {\n  if (props === void 0) {\n    props = {};\n  }\n  const {\n    open,\n    onOpenChange,\n    dataRef,\n    events,\n    elements\n  } = context;\n  const {\n    enabled = true,\n    delay = 0,\n    handleClose = null,\n    mouseOnly = false,\n    restMs = 0,\n    move = true\n  } = props;\n  const tree = useFloatingTree();\n  const parentId = useFloatingParentNodeId();\n  const handleCloseRef = useLatestRef(handleClose);\n  const delayRef = useLatestRef(delay);\n  const openRef = useLatestRef(open);\n  const pointerTypeRef = React.useRef();\n  const timeoutRef = React.useRef(-1);\n  const handlerRef = React.useRef();\n  const restTimeoutRef = React.useRef(-1);\n  const blockMouseMoveRef = React.useRef(true);\n  const performedPointerEventsMutationRef = React.useRef(false);\n  const unbindMouseMoveRef = React.useRef(() => {});\n  const restTimeoutPendingRef = React.useRef(false);\n  const isHoverOpen = React.useCallback(() => {\n    var _dataRef$current$open;\n    const type = (_dataRef$current$open = dataRef.current.openEvent) == null ? void 0 : _dataRef$current$open.type;\n    return (type == null ? void 0 : type.includes('mouse')) && type !== 'mousedown';\n  }, [dataRef]);\n\n  // When closing before opening, clear the delay timeouts to cancel it\n  // from showing.\n  React.useEffect(() => {\n    if (!enabled) return;\n    function onOpenChange(_ref) {\n      let {\n        open\n      } = _ref;\n      if (!open) {\n        clearTimeout(timeoutRef.current);\n        clearTimeout(restTimeoutRef.current);\n        blockMouseMoveRef.current = true;\n        restTimeoutPendingRef.current = false;\n      }\n    }\n    events.on('openchange', onOpenChange);\n    return () => {\n      events.off('openchange', onOpenChange);\n    };\n  }, [enabled, events]);\n  React.useEffect(() => {\n    if (!enabled) return;\n    if (!handleCloseRef.current) return;\n    if (!open) return;\n    function onLeave(event) {\n      if (isHoverOpen()) {\n        onOpenChange(false, event, 'hover');\n      }\n    }\n    const html = getDocument(elements.floating).documentElement;\n    html.addEventListener('mouseleave', onLeave);\n    return () => {\n      html.removeEventListener('mouseleave', onLeave);\n    };\n  }, [elements.floating, open, onOpenChange, enabled, handleCloseRef, isHoverOpen]);\n  const closeWithDelay = React.useCallback(function (event, runElseBranch, reason) {\n    if (runElseBranch === void 0) {\n      runElseBranch = true;\n    }\n    if (reason === void 0) {\n      reason = 'hover';\n    }\n    const closeDelay = getDelay(delayRef.current, 'close', pointerTypeRef.current);\n    if (closeDelay && !handlerRef.current) {\n      clearTimeout(timeoutRef.current);\n      timeoutRef.current = window.setTimeout(() => onOpenChange(false, event, reason), closeDelay);\n    } else if (runElseBranch) {\n      clearTimeout(timeoutRef.current);\n      onOpenChange(false, event, reason);\n    }\n  }, [delayRef, onOpenChange]);\n  const cleanupMouseMoveHandler = useEffectEvent(() => {\n    unbindMouseMoveRef.current();\n    handlerRef.current = undefined;\n  });\n  const clearPointerEvents = useEffectEvent(() => {\n    if (performedPointerEventsMutationRef.current) {\n      const body = getDocument(elements.floating).body;\n      body.style.pointerEvents = '';\n      body.removeAttribute(safePolygonIdentifier);\n      performedPointerEventsMutationRef.current = false;\n    }\n  });\n  const isClickLikeOpenEvent = useEffectEvent(() => {\n    return dataRef.current.openEvent ? ['click', 'mousedown'].includes(dataRef.current.openEvent.type) : false;\n  });\n\n  // Registering the mouse events on the reference directly to bypass React's\n  // delegation system. If the cursor was on a disabled element and then entered\n  // the reference (no gap), `mouseenter` doesn't fire in the delegation system.\n  React.useEffect(() => {\n    if (!enabled) return;\n    function onMouseEnter(event) {\n      clearTimeout(timeoutRef.current);\n      blockMouseMoveRef.current = false;\n      if (mouseOnly && !isMouseLikePointerType(pointerTypeRef.current) || restMs > 0 && !getDelay(delayRef.current, 'open')) {\n        return;\n      }\n      const openDelay = getDelay(delayRef.current, 'open', pointerTypeRef.current);\n      if (openDelay) {\n        timeoutRef.current = window.setTimeout(() => {\n          if (!openRef.current) {\n            onOpenChange(true, event, 'hover');\n          }\n        }, openDelay);\n      } else if (!open) {\n        onOpenChange(true, event, 'hover');\n      }\n    }\n    function onMouseLeave(event) {\n      if (isClickLikeOpenEvent()) return;\n      unbindMouseMoveRef.current();\n      const doc = getDocument(elements.floating);\n      clearTimeout(restTimeoutRef.current);\n      restTimeoutPendingRef.current = false;\n      if (handleCloseRef.current && dataRef.current.floatingContext) {\n        // Prevent clearing `onScrollMouseLeave` timeout.\n        if (!open) {\n          clearTimeout(timeoutRef.current);\n        }\n        handlerRef.current = handleCloseRef.current({\n          ...dataRef.current.floatingContext,\n          tree,\n          x: event.clientX,\n          y: event.clientY,\n          onClose() {\n            clearPointerEvents();\n            cleanupMouseMoveHandler();\n            if (!isClickLikeOpenEvent()) {\n              closeWithDelay(event, true, 'safe-polygon');\n            }\n          }\n        });\n        const handler = handlerRef.current;\n        doc.addEventListener('mousemove', handler);\n        unbindMouseMoveRef.current = () => {\n          doc.removeEventListener('mousemove', handler);\n        };\n        return;\n      }\n\n      // Allow interactivity without `safePolygon` on touch devices. With a\n      // pointer, a short close delay is an alternative, so it should work\n      // consistently.\n      const shouldClose = pointerTypeRef.current === 'touch' ? !contains(elements.floating, event.relatedTarget) : true;\n      if (shouldClose) {\n        closeWithDelay(event);\n      }\n    }\n\n    // Ensure the floating element closes after scrolling even if the pointer\n    // did not move.\n    // https://github.com/floating-ui/floating-ui/discussions/1692\n    function onScrollMouseLeave(event) {\n      if (isClickLikeOpenEvent()) return;\n      if (!dataRef.current.floatingContext) return;\n      handleCloseRef.current == null || handleCloseRef.current({\n        ...dataRef.current.floatingContext,\n        tree,\n        x: event.clientX,\n        y: event.clientY,\n        onClose() {\n          clearPointerEvents();\n          cleanupMouseMoveHandler();\n          if (!isClickLikeOpenEvent()) {\n            closeWithDelay(event);\n          }\n        }\n      })(event);\n    }\n    if (isElement(elements.domReference)) {\n      var _elements$floating;\n      const ref = elements.domReference;\n      open && ref.addEventListener('mouseleave', onScrollMouseLeave);\n      (_elements$floating = elements.floating) == null || _elements$floating.addEventListener('mouseleave', onScrollMouseLeave);\n      move && ref.addEventListener('mousemove', onMouseEnter, {\n        once: true\n      });\n      ref.addEventListener('mouseenter', onMouseEnter);\n      ref.addEventListener('mouseleave', onMouseLeave);\n      return () => {\n        var _elements$floating2;\n        open && ref.removeEventListener('mouseleave', onScrollMouseLeave);\n        (_elements$floating2 = elements.floating) == null || _elements$floating2.removeEventListener('mouseleave', onScrollMouseLeave);\n        move && ref.removeEventListener('mousemove', onMouseEnter);\n        ref.removeEventListener('mouseenter', onMouseEnter);\n        ref.removeEventListener('mouseleave', onMouseLeave);\n      };\n    }\n  }, [elements, enabled, context, mouseOnly, restMs, move, closeWithDelay, cleanupMouseMoveHandler, clearPointerEvents, onOpenChange, open, openRef, tree, delayRef, handleCloseRef, dataRef, isClickLikeOpenEvent]);\n\n  // Block pointer-events of every element other than the reference and floating\n  // while the floating element is open and has a `handleClose` handler. Also\n  // handles nested floating elements.\n  // https://github.com/floating-ui/floating-ui/issues/1722\n  index(() => {\n    var _handleCloseRef$curre;\n    if (!enabled) return;\n    if (open && (_handleCloseRef$curre = handleCloseRef.current) != null && _handleCloseRef$curre.__options.blockPointerEvents && isHoverOpen()) {\n      performedPointerEventsMutationRef.current = true;\n      const floatingEl = elements.floating;\n      if (isElement(elements.domReference) && floatingEl) {\n        var _tree$nodesRef$curren;\n        const body = getDocument(elements.floating).body;\n        body.setAttribute(safePolygonIdentifier, '');\n        const ref = elements.domReference;\n        const parentFloating = tree == null || (_tree$nodesRef$curren = tree.nodesRef.current.find(node => node.id === parentId)) == null || (_tree$nodesRef$curren = _tree$nodesRef$curren.context) == null ? void 0 : _tree$nodesRef$curren.elements.floating;\n        if (parentFloating) {\n          parentFloating.style.pointerEvents = '';\n        }\n        body.style.pointerEvents = 'none';\n        ref.style.pointerEvents = 'auto';\n        floatingEl.style.pointerEvents = 'auto';\n        return () => {\n          body.style.pointerEvents = '';\n          ref.style.pointerEvents = '';\n          floatingEl.style.pointerEvents = '';\n        };\n      }\n    }\n  }, [enabled, open, parentId, elements, tree, handleCloseRef, isHoverOpen]);\n  index(() => {\n    if (!open) {\n      pointerTypeRef.current = undefined;\n      restTimeoutPendingRef.current = false;\n      cleanupMouseMoveHandler();\n      clearPointerEvents();\n    }\n  }, [open, cleanupMouseMoveHandler, clearPointerEvents]);\n  React.useEffect(() => {\n    return () => {\n      cleanupMouseMoveHandler();\n      clearTimeout(timeoutRef.current);\n      clearTimeout(restTimeoutRef.current);\n      clearPointerEvents();\n    };\n  }, [enabled, elements.domReference, cleanupMouseMoveHandler, clearPointerEvents]);\n  const reference = React.useMemo(() => {\n    function setPointerRef(event) {\n      pointerTypeRef.current = event.pointerType;\n    }\n    return {\n      onPointerDown: setPointerRef,\n      onPointerEnter: setPointerRef,\n      onMouseMove(event) {\n        const {\n          nativeEvent\n        } = event;\n        function handleMouseMove() {\n          if (!blockMouseMoveRef.current && !openRef.current) {\n            onOpenChange(true, nativeEvent, 'hover');\n          }\n        }\n        if (mouseOnly && !isMouseLikePointerType(pointerTypeRef.current)) {\n          return;\n        }\n        if (open || restMs === 0) {\n          return;\n        }\n\n        // Ignore insignificant movements to account for tremors.\n        if (restTimeoutPendingRef.current && event.movementX ** 2 + event.movementY ** 2 < 2) {\n          return;\n        }\n        clearTimeout(restTimeoutRef.current);\n        if (pointerTypeRef.current === 'touch') {\n          handleMouseMove();\n        } else {\n          restTimeoutPendingRef.current = true;\n          restTimeoutRef.current = window.setTimeout(handleMouseMove, restMs);\n        }\n      }\n    };\n  }, [mouseOnly, onOpenChange, open, openRef, restMs]);\n  const floating = React.useMemo(() => ({\n    onMouseEnter() {\n      clearTimeout(timeoutRef.current);\n    },\n    onMouseLeave(event) {\n      if (!isClickLikeOpenEvent()) {\n        closeWithDelay(event.nativeEvent, false);\n      }\n    }\n  }), [closeWithDelay, isClickLikeOpenEvent]);\n  return React.useMemo(() => enabled ? {\n    reference,\n    floating\n  } : {}, [enabled, reference, floating]);\n}\n\nconst NOOP = () => {};\nconst FloatingDelayGroupContext = /*#__PURE__*/React.createContext({\n  delay: 0,\n  initialDelay: 0,\n  timeoutMs: 0,\n  currentId: null,\n  setCurrentId: NOOP,\n  setState: NOOP,\n  isInstantPhase: false\n});\n\n/**\n * @deprecated\n * Use the return value of `useDelayGroup()` instead.\n */\nconst useDelayGroupContext = () => React.useContext(FloatingDelayGroupContext);\n/**\n * Provides context for a group of floating elements that should share a\n * `delay`.\n * @see https://floating-ui.com/docs/FloatingDelayGroup\n */\nfunction FloatingDelayGroup(props) {\n  const {\n    children,\n    delay,\n    timeoutMs = 0\n  } = props;\n  const [state, setState] = React.useReducer((prev, next) => ({\n    ...prev,\n    ...next\n  }), {\n    delay,\n    timeoutMs,\n    initialDelay: delay,\n    currentId: null,\n    isInstantPhase: false\n  });\n  const initialCurrentIdRef = React.useRef(null);\n  const setCurrentId = React.useCallback(currentId => {\n    setState({\n      currentId\n    });\n  }, []);\n  index(() => {\n    if (state.currentId) {\n      if (initialCurrentIdRef.current === null) {\n        initialCurrentIdRef.current = state.currentId;\n      } else if (!state.isInstantPhase) {\n        setState({\n          isInstantPhase: true\n        });\n      }\n    } else {\n      if (state.isInstantPhase) {\n        setState({\n          isInstantPhase: false\n        });\n      }\n      initialCurrentIdRef.current = null;\n    }\n  }, [state.currentId, state.isInstantPhase]);\n  return /*#__PURE__*/React.createElement(FloatingDelayGroupContext.Provider, {\n    value: React.useMemo(() => ({\n      ...state,\n      setState,\n      setCurrentId\n    }), [state, setCurrentId])\n  }, children);\n}\n/**\n * Enables grouping when called inside a component that's a child of a\n * `FloatingDelayGroup`.\n * @see https://floating-ui.com/docs/FloatingDelayGroup\n */\nfunction useDelayGroup(context, options) {\n  if (options === void 0) {\n    options = {};\n  }\n  const {\n    open,\n    onOpenChange,\n    floatingId\n  } = context;\n  const {\n    id: optionId,\n    enabled = true\n  } = options;\n  const id = optionId != null ? optionId : floatingId;\n  const groupContext = useDelayGroupContext();\n  const {\n    currentId,\n    setCurrentId,\n    initialDelay,\n    setState,\n    timeoutMs\n  } = groupContext;\n  index(() => {\n    if (!enabled) return;\n    if (!currentId) return;\n    setState({\n      delay: {\n        open: 1,\n        close: getDelay(initialDelay, 'close')\n      }\n    });\n    if (currentId !== id) {\n      onOpenChange(false);\n    }\n  }, [enabled, id, onOpenChange, setState, currentId, initialDelay]);\n  index(() => {\n    function unset() {\n      onOpenChange(false);\n      setState({\n        delay: initialDelay,\n        currentId: null\n      });\n    }\n    if (!enabled) return;\n    if (!currentId) return;\n    if (!open && currentId === id) {\n      if (timeoutMs) {\n        const timeout = window.setTimeout(unset, timeoutMs);\n        return () => {\n          clearTimeout(timeout);\n        };\n      }\n      unset();\n    }\n  }, [enabled, open, setState, currentId, id, onOpenChange, initialDelay, timeoutMs]);\n  index(() => {\n    if (!enabled) return;\n    if (setCurrentId === NOOP || !open) return;\n    setCurrentId(id);\n  }, [enabled, open, setCurrentId, id]);\n  return groupContext;\n}\n\nlet rafId = 0;\nfunction enqueueFocus(el, options) {\n  if (options === void 0) {\n    options = {};\n  }\n  const {\n    preventScroll = false,\n    cancelPrevious = true,\n    sync = false\n  } = options;\n  cancelPrevious && cancelAnimationFrame(rafId);\n  const exec = () => el == null ? void 0 : el.focus({\n    preventScroll\n  });\n  if (sync) {\n    exec();\n  } else {\n    rafId = requestAnimationFrame(exec);\n  }\n}\n\nfunction getAncestors(nodes, id) {\n  var _nodes$find;\n  let allAncestors = [];\n  let currentParentId = (_nodes$find = nodes.find(node => node.id === id)) == null ? void 0 : _nodes$find.parentId;\n  while (currentParentId) {\n    const currentNode = nodes.find(node => node.id === currentParentId);\n    currentParentId = currentNode == null ? void 0 : currentNode.parentId;\n    if (currentNode) {\n      allAncestors = allAncestors.concat(currentNode);\n    }\n  }\n  return allAncestors;\n}\n\nfunction getChildren(nodes, id) {\n  let allChildren = nodes.filter(node => {\n    var _node$context;\n    return node.parentId === id && ((_node$context = node.context) == null ? void 0 : _node$context.open);\n  });\n  let currentChildren = allChildren;\n  while (currentChildren.length) {\n    currentChildren = nodes.filter(node => {\n      var _currentChildren;\n      return (_currentChildren = currentChildren) == null ? void 0 : _currentChildren.some(n => {\n        var _node$context2;\n        return node.parentId === n.id && ((_node$context2 = node.context) == null ? void 0 : _node$context2.open);\n      });\n    });\n    allChildren = allChildren.concat(currentChildren);\n  }\n  return allChildren;\n}\nfunction getDeepestNode(nodes, id) {\n  let deepestNodeId;\n  let maxDepth = -1;\n  function findDeepest(nodeId, depth) {\n    if (depth > maxDepth) {\n      deepestNodeId = nodeId;\n      maxDepth = depth;\n    }\n    const children = getChildren(nodes, nodeId);\n    children.forEach(child => {\n      findDeepest(child.id, depth + 1);\n    });\n  }\n  findDeepest(id, 0);\n  return nodes.find(node => node.id === deepestNodeId);\n}\n\n// Modified to add conditional `aria-hidden` support:\n// https://github.com/theKashey/aria-hidden/blob/9220c8f4a4fd35f63bee5510a9f41a37264382d4/src/index.ts\nlet counterMap = /*#__PURE__*/new WeakMap();\nlet uncontrolledElementsSet = /*#__PURE__*/new WeakSet();\nlet markerMap = {};\nlet lockCount$1 = 0;\nconst supportsInert = () => typeof HTMLElement !== 'undefined' && 'inert' in HTMLElement.prototype;\nconst unwrapHost = node => node && (node.host || unwrapHost(node.parentNode));\nconst correctElements = (parent, targets) => targets.map(target => {\n  if (parent.contains(target)) {\n    return target;\n  }\n  const correctedTarget = unwrapHost(target);\n  if (parent.contains(correctedTarget)) {\n    return correctedTarget;\n  }\n  return null;\n}).filter(x => x != null);\nfunction applyAttributeToOthers(uncorrectedAvoidElements, body, ariaHidden, inert) {\n  const markerName = 'data-floating-ui-inert';\n  const controlAttribute = inert ? 'inert' : ariaHidden ? 'aria-hidden' : null;\n  const avoidElements = correctElements(body, uncorrectedAvoidElements);\n  const elementsToKeep = new Set();\n  const elementsToStop = new Set(avoidElements);\n  const hiddenElements = [];\n  if (!markerMap[markerName]) {\n    markerMap[markerName] = new WeakMap();\n  }\n  const markerCounter = markerMap[markerName];\n  avoidElements.forEach(keep);\n  deep(body);\n  elementsToKeep.clear();\n  function keep(el) {\n    if (!el || elementsToKeep.has(el)) {\n      return;\n    }\n    elementsToKeep.add(el);\n    el.parentNode && keep(el.parentNode);\n  }\n  function deep(parent) {\n    if (!parent || elementsToStop.has(parent)) {\n      return;\n    }\n    [].forEach.call(parent.children, node => {\n      if (getNodeName(node) === 'script') return;\n      if (elementsToKeep.has(node)) {\n        deep(node);\n      } else {\n        const attr = controlAttribute ? node.getAttribute(controlAttribute) : null;\n        const alreadyHidden = attr !== null && attr !== 'false';\n        const counterValue = (counterMap.get(node) || 0) + 1;\n        const markerValue = (markerCounter.get(node) || 0) + 1;\n        counterMap.set(node, counterValue);\n        markerCounter.set(node, markerValue);\n        hiddenElements.push(node);\n        if (counterValue === 1 && alreadyHidden) {\n          uncontrolledElementsSet.add(node);\n        }\n        if (markerValue === 1) {\n          node.setAttribute(markerName, '');\n        }\n        if (!alreadyHidden && controlAttribute) {\n          node.setAttribute(controlAttribute, 'true');\n        }\n      }\n    });\n  }\n  lockCount$1++;\n  return () => {\n    hiddenElements.forEach(element => {\n      const counterValue = (counterMap.get(element) || 0) - 1;\n      const markerValue = (markerCounter.get(element) || 0) - 1;\n      counterMap.set(element, counterValue);\n      markerCounter.set(element, markerValue);\n      if (!counterValue) {\n        if (!uncontrolledElementsSet.has(element) && controlAttribute) {\n          element.removeAttribute(controlAttribute);\n        }\n        uncontrolledElementsSet.delete(element);\n      }\n      if (!markerValue) {\n        element.removeAttribute(markerName);\n      }\n    });\n    lockCount$1--;\n    if (!lockCount$1) {\n      counterMap = new WeakMap();\n      counterMap = new WeakMap();\n      uncontrolledElementsSet = new WeakSet();\n      markerMap = {};\n    }\n  };\n}\nfunction markOthers(avoidElements, ariaHidden, inert) {\n  if (ariaHidden === void 0) {\n    ariaHidden = false;\n  }\n  if (inert === void 0) {\n    inert = false;\n  }\n  const body = getDocument(avoidElements[0]).body;\n  return applyAttributeToOthers(avoidElements.concat(Array.from(body.querySelectorAll('[aria-live]'))), body, ariaHidden, inert);\n}\n\nconst getTabbableOptions = () => ({\n  getShadowRoot: true,\n  displayCheck:\n  // JSDOM does not support the `tabbable` library. To solve this we can\n  // check if `ResizeObserver` is a real function (not polyfilled), which\n  // determines if the current environment is JSDOM-like.\n  typeof ResizeObserver === 'function' && ResizeObserver.toString().includes('[native code]') ? 'full' : 'none'\n});\nfunction getTabbableIn(container, direction) {\n  const allTabbable = tabbable(container, getTabbableOptions());\n  if (direction === 'prev') {\n    allTabbable.reverse();\n  }\n  const activeIndex = allTabbable.indexOf(activeElement(getDocument(container)));\n  const nextTabbableElements = allTabbable.slice(activeIndex + 1);\n  return nextTabbableElements[0];\n}\nfunction getNextTabbable() {\n  return getTabbableIn(document.body, 'next');\n}\nfunction getPreviousTabbable() {\n  return getTabbableIn(document.body, 'prev');\n}\nfunction isOutsideEvent(event, container) {\n  const containerElement = container || event.currentTarget;\n  const relatedTarget = event.relatedTarget;\n  return !relatedTarget || !contains(containerElement, relatedTarget);\n}\nfunction disableFocusInside(container) {\n  const tabbableElements = tabbable(container, getTabbableOptions());\n  tabbableElements.forEach(element => {\n    element.dataset.tabindex = element.getAttribute('tabindex') || '';\n    element.setAttribute('tabindex', '-1');\n  });\n}\nfunction enableFocusInside(container) {\n  const elements = container.querySelectorAll('[data-tabindex]');\n  elements.forEach(element => {\n    const tabindex = element.dataset.tabindex;\n    delete element.dataset.tabindex;\n    if (tabindex) {\n      element.setAttribute('tabindex', tabindex);\n    } else {\n      element.removeAttribute('tabindex');\n    }\n  });\n}\n\n// See Diego Haz's Sandbox for making this logic work well on Safari/iOS:\n// https://codesandbox.io/s/tabbable-portal-f4tng?file=/src/FocusTrap.tsx\n\nconst HIDDEN_STYLES = {\n  border: 0,\n  clip: 'rect(0 0 0 0)',\n  height: '1px',\n  margin: '-1px',\n  overflow: 'hidden',\n  padding: 0,\n  position: 'fixed',\n  whiteSpace: 'nowrap',\n  width: '1px',\n  top: 0,\n  left: 0\n};\nlet timeoutId;\nfunction setActiveElementOnTab(event) {\n  if (event.key === 'Tab') {\n    event.target;\n    clearTimeout(timeoutId);\n  }\n}\nconst FocusGuard = /*#__PURE__*/React.forwardRef(function FocusGuard(props, ref) {\n  const [role, setRole] = React.useState();\n  index(() => {\n    if (isSafari()) {\n      // Unlike other screen readers such as NVDA and JAWS, the virtual cursor\n      // on VoiceOver does trigger the onFocus event, so we can use the focus\n      // trap element. On Safari, only buttons trigger the onFocus event.\n      // NB: \"group\" role in the Sandbox no longer appears to work, must be a\n      // button role.\n      setRole('button');\n    }\n    document.addEventListener('keydown', setActiveElementOnTab);\n    return () => {\n      document.removeEventListener('keydown', setActiveElementOnTab);\n    };\n  }, []);\n  const restProps = {\n    ref,\n    tabIndex: 0,\n    // Role is only for VoiceOver\n    role,\n    'aria-hidden': role ? undefined : true,\n    [createAttribute('focus-guard')]: '',\n    style: HIDDEN_STYLES\n  };\n  return /*#__PURE__*/React.createElement(\"span\", _extends({}, props, restProps));\n});\n\nconst PortalContext = /*#__PURE__*/React.createContext(null);\nconst attr = /*#__PURE__*/createAttribute('portal');\n/**\n * @see https://floating-ui.com/docs/FloatingPortal#usefloatingportalnode\n */\nfunction useFloatingPortalNode(props) {\n  if (props === void 0) {\n    props = {};\n  }\n  const {\n    id,\n    root\n  } = props;\n  const uniqueId = useId();\n  const portalContext = usePortalContext();\n  const [portalNode, setPortalNode] = React.useState(null);\n  const portalNodeRef = React.useRef(null);\n  index(() => {\n    return () => {\n      portalNode == null || portalNode.remove();\n      // Allow the subsequent layout effects to create a new node on updates.\n      // The portal node will still be cleaned up on unmount.\n      // https://github.com/floating-ui/floating-ui/issues/2454\n      queueMicrotask(() => {\n        portalNodeRef.current = null;\n      });\n    };\n  }, [portalNode]);\n  index(() => {\n    // Wait for the uniqueId to be generated before creating the portal node in\n    // React <18 (using `useFloatingId` instead of the native `useId`).\n    // https://github.com/floating-ui/floating-ui/issues/2778\n    if (!uniqueId) return;\n    if (portalNodeRef.current) return;\n    const existingIdRoot = id ? document.getElementById(id) : null;\n    if (!existingIdRoot) return;\n    const subRoot = document.createElement('div');\n    subRoot.id = uniqueId;\n    subRoot.setAttribute(attr, '');\n    existingIdRoot.appendChild(subRoot);\n    portalNodeRef.current = subRoot;\n    setPortalNode(subRoot);\n  }, [id, uniqueId]);\n  index(() => {\n    // Wait for the root to exist before creating the portal node. The root must\n    // be stored in state, not a ref, for this to work reactively.\n    if (root === null) return;\n    if (!uniqueId) return;\n    if (portalNodeRef.current) return;\n    let container = root || (portalContext == null ? void 0 : portalContext.portalNode);\n    if (container && !isElement(container)) container = container.current;\n    container = container || document.body;\n    let idWrapper = null;\n    if (id) {\n      idWrapper = document.createElement('div');\n      idWrapper.id = id;\n      container.appendChild(idWrapper);\n    }\n    const subRoot = document.createElement('div');\n    subRoot.id = uniqueId;\n    subRoot.setAttribute(attr, '');\n    container = idWrapper || container;\n    container.appendChild(subRoot);\n    portalNodeRef.current = subRoot;\n    setPortalNode(subRoot);\n  }, [id, root, uniqueId, portalContext]);\n  return portalNode;\n}\n/**\n * Portals the floating element into a given container element — by default,\n * outside of the app root and into the body.\n * This is necessary to ensure the floating element can appear outside any\n * potential parent containers that cause clipping (such as `overflow: hidden`),\n * while retaining its location in the React tree.\n * @see https://floating-ui.com/docs/FloatingPortal\n */\nfunction FloatingPortal(props) {\n  const {\n    children,\n    id,\n    root,\n    preserveTabOrder = true\n  } = props;\n  const portalNode = useFloatingPortalNode({\n    id,\n    root\n  });\n  const [focusManagerState, setFocusManagerState] = React.useState(null);\n  const beforeOutsideRef = React.useRef(null);\n  const afterOutsideRef = React.useRef(null);\n  const beforeInsideRef = React.useRef(null);\n  const afterInsideRef = React.useRef(null);\n  const modal = focusManagerState == null ? void 0 : focusManagerState.modal;\n  const open = focusManagerState == null ? void 0 : focusManagerState.open;\n  const shouldRenderGuards =\n  // The FocusManager and therefore floating element are currently open/\n  // rendered.\n  !!focusManagerState &&\n  // Guards are only for non-modal focus management.\n  !focusManagerState.modal &&\n  // Don't render if unmount is transitioning.\n  focusManagerState.open && preserveTabOrder && !!(root || portalNode);\n\n  // https://codesandbox.io/s/tabbable-portal-f4tng?file=/src/TabbablePortal.tsx\n  React.useEffect(() => {\n    if (!portalNode || !preserveTabOrder || modal) {\n      return;\n    }\n\n    // Make sure elements inside the portal element are tabbable only when the\n    // portal has already been focused, either by tabbing into a focus trap\n    // element outside or using the mouse.\n    function onFocus(event) {\n      if (portalNode && isOutsideEvent(event)) {\n        const focusing = event.type === 'focusin';\n        const manageFocus = focusing ? enableFocusInside : disableFocusInside;\n        manageFocus(portalNode);\n      }\n    }\n    // Listen to the event on the capture phase so they run before the focus\n    // trap elements onFocus prop is called.\n    portalNode.addEventListener('focusin', onFocus, true);\n    portalNode.addEventListener('focusout', onFocus, true);\n    return () => {\n      portalNode.removeEventListener('focusin', onFocus, true);\n      portalNode.removeEventListener('focusout', onFocus, true);\n    };\n  }, [portalNode, preserveTabOrder, modal]);\n  React.useEffect(() => {\n    if (!portalNode) return;\n    if (open) return;\n    enableFocusInside(portalNode);\n  }, [open, portalNode]);\n  return /*#__PURE__*/React.createElement(PortalContext.Provider, {\n    value: React.useMemo(() => ({\n      preserveTabOrder,\n      beforeOutsideRef,\n      afterOutsideRef,\n      beforeInsideRef,\n      afterInsideRef,\n      portalNode,\n      setFocusManagerState\n    }), [preserveTabOrder, portalNode])\n  }, shouldRenderGuards && portalNode && /*#__PURE__*/React.createElement(FocusGuard, {\n    \"data-type\": \"outside\",\n    ref: beforeOutsideRef,\n    onFocus: event => {\n      if (isOutsideEvent(event, portalNode)) {\n        var _beforeInsideRef$curr;\n        (_beforeInsideRef$curr = beforeInsideRef.current) == null || _beforeInsideRef$curr.focus();\n      } else {\n        const prevTabbable = getPreviousTabbable() || (focusManagerState == null ? void 0 : focusManagerState.refs.domReference.current);\n        prevTabbable == null || prevTabbable.focus();\n      }\n    }\n  }), shouldRenderGuards && portalNode && /*#__PURE__*/React.createElement(\"span\", {\n    \"aria-owns\": portalNode.id,\n    style: HIDDEN_STYLES\n  }), portalNode && /*#__PURE__*/ReactDOM.createPortal(children, portalNode), shouldRenderGuards && portalNode && /*#__PURE__*/React.createElement(FocusGuard, {\n    \"data-type\": \"outside\",\n    ref: afterOutsideRef,\n    onFocus: event => {\n      if (isOutsideEvent(event, portalNode)) {\n        var _afterInsideRef$curre;\n        (_afterInsideRef$curre = afterInsideRef.current) == null || _afterInsideRef$curre.focus();\n      } else {\n        const nextTabbable = getNextTabbable() || (focusManagerState == null ? void 0 : focusManagerState.refs.domReference.current);\n        nextTabbable == null || nextTabbable.focus();\n        (focusManagerState == null ? void 0 : focusManagerState.closeOnFocusOut) && (focusManagerState == null ? void 0 : focusManagerState.onOpenChange(false, event.nativeEvent, 'focus-out'));\n      }\n    }\n  }));\n}\nconst usePortalContext = () => React.useContext(PortalContext);\n\nconst FOCUSABLE_ATTRIBUTE = 'data-floating-ui-focusable';\nfunction getFloatingFocusElement(floatingElement) {\n  if (!floatingElement) {\n    return null;\n  }\n  // Try to find the element that has `{...getFloatingProps()}` spread on it.\n  // This indicates the floating element is acting as a positioning wrapper, and\n  // so focus should be managed on the child element with the event handlers and\n  // aria props.\n  return floatingElement.hasAttribute(FOCUSABLE_ATTRIBUTE) ? floatingElement : floatingElement.querySelector(\"[\" + FOCUSABLE_ATTRIBUTE + \"]\") || floatingElement;\n}\n\nconst LIST_LIMIT = 20;\nlet previouslyFocusedElements = [];\nfunction addPreviouslyFocusedElement(element) {\n  previouslyFocusedElements = previouslyFocusedElements.filter(el => el.isConnected);\n  let tabbableEl = element;\n  if (!tabbableEl || getNodeName(tabbableEl) === 'body') return;\n  if (!isTabbable(tabbableEl, getTabbableOptions())) {\n    const tabbableChild = tabbable(tabbableEl, getTabbableOptions())[0];\n    if (tabbableChild) {\n      tabbableEl = tabbableChild;\n    }\n  }\n  previouslyFocusedElements.push(tabbableEl);\n  if (previouslyFocusedElements.length > LIST_LIMIT) {\n    previouslyFocusedElements = previouslyFocusedElements.slice(-LIST_LIMIT);\n  }\n}\nfunction getPreviouslyFocusedElement() {\n  return previouslyFocusedElements.slice().reverse().find(el => el.isConnected);\n}\nconst VisuallyHiddenDismiss = /*#__PURE__*/React.forwardRef(function VisuallyHiddenDismiss(props, ref) {\n  return /*#__PURE__*/React.createElement(\"button\", _extends({}, props, {\n    type: \"button\",\n    ref: ref,\n    tabIndex: -1,\n    style: HIDDEN_STYLES\n  }));\n});\n/**\n * Provides focus management for the floating element.\n * @see https://floating-ui.com/docs/FloatingFocusManager\n */\nfunction FloatingFocusManager(props) {\n  const {\n    context,\n    children,\n    disabled = false,\n    order = ['content'],\n    guards: _guards = true,\n    initialFocus = 0,\n    returnFocus = true,\n    restoreFocus = false,\n    modal = true,\n    visuallyHiddenDismiss = false,\n    closeOnFocusOut = true\n  } = props;\n  const {\n    open,\n    refs,\n    nodeId,\n    onOpenChange,\n    events,\n    dataRef,\n    floatingId,\n    elements: {\n      domReference,\n      floating\n    }\n  } = context;\n  const ignoreInitialFocus = typeof initialFocus === 'number' && initialFocus < 0;\n  // If the reference is a combobox and is typeable (e.g. input/textarea),\n  // there are different focus semantics. The guards should not be rendered, but\n  // aria-hidden should be applied to all nodes still. Further, the visually\n  // hidden dismiss button should only appear at the end of the list, not the\n  // start.\n  const isUntrappedTypeableCombobox = isTypeableCombobox(domReference) && ignoreInitialFocus;\n\n  // Force the guards to be rendered if the `inert` attribute is not supported.\n  const guards = supportsInert() ? _guards : true;\n  const orderRef = useLatestRef(order);\n  const initialFocusRef = useLatestRef(initialFocus);\n  const returnFocusRef = useLatestRef(returnFocus);\n  const tree = useFloatingTree();\n  const portalContext = usePortalContext();\n  const startDismissButtonRef = React.useRef(null);\n  const endDismissButtonRef = React.useRef(null);\n  const preventReturnFocusRef = React.useRef(false);\n  const isPointerDownRef = React.useRef(false);\n  const tabbableIndexRef = React.useRef(-1);\n  const isInsidePortal = portalContext != null;\n  const floatingFocusElement = getFloatingFocusElement(floating);\n  const getTabbableContent = useEffectEvent(function (container) {\n    if (container === void 0) {\n      container = floatingFocusElement;\n    }\n    return container ? tabbable(container, getTabbableOptions()) : [];\n  });\n  const getTabbableElements = useEffectEvent(container => {\n    const content = getTabbableContent(container);\n    return orderRef.current.map(type => {\n      if (domReference && type === 'reference') {\n        return domReference;\n      }\n      if (floatingFocusElement && type === 'floating') {\n        return floatingFocusElement;\n      }\n      return content;\n    }).filter(Boolean).flat();\n  });\n  React.useEffect(() => {\n    if (disabled) return;\n    if (!modal) return;\n    function onKeyDown(event) {\n      if (event.key === 'Tab') {\n        // The focus guards have nothing to focus, so we need to stop the event.\n        if (contains(floatingFocusElement, activeElement(getDocument(floatingFocusElement))) && getTabbableContent().length === 0 && !isUntrappedTypeableCombobox) {\n          stopEvent(event);\n        }\n        const els = getTabbableElements();\n        const target = getTarget(event);\n        if (orderRef.current[0] === 'reference' && target === domReference) {\n          stopEvent(event);\n          if (event.shiftKey) {\n            enqueueFocus(els[els.length - 1]);\n          } else {\n            enqueueFocus(els[1]);\n          }\n        }\n        if (orderRef.current[1] === 'floating' && target === floatingFocusElement && event.shiftKey) {\n          stopEvent(event);\n          enqueueFocus(els[0]);\n        }\n      }\n    }\n    const doc = getDocument(floatingFocusElement);\n    doc.addEventListener('keydown', onKeyDown);\n    return () => {\n      doc.removeEventListener('keydown', onKeyDown);\n    };\n  }, [disabled, domReference, floatingFocusElement, modal, orderRef, isUntrappedTypeableCombobox, getTabbableContent, getTabbableElements]);\n  React.useEffect(() => {\n    if (disabled) return;\n    if (!floating) return;\n    function handleFocusIn(event) {\n      const target = getTarget(event);\n      const tabbableContent = getTabbableContent();\n      const tabbableIndex = tabbableContent.indexOf(target);\n      if (tabbableIndex !== -1) {\n        tabbableIndexRef.current = tabbableIndex;\n      }\n    }\n    floating.addEventListener('focusin', handleFocusIn);\n    return () => {\n      floating.removeEventListener('focusin', handleFocusIn);\n    };\n  }, [disabled, floating, getTabbableContent]);\n  React.useEffect(() => {\n    if (disabled) return;\n    if (!closeOnFocusOut) return;\n\n    // In Safari, buttons lose focus when pressing them.\n    function handlePointerDown() {\n      isPointerDownRef.current = true;\n      setTimeout(() => {\n        isPointerDownRef.current = false;\n      });\n    }\n    function handleFocusOutside(event) {\n      const relatedTarget = event.relatedTarget;\n      queueMicrotask(() => {\n        const movedToUnrelatedNode = !(contains(domReference, relatedTarget) || contains(floating, relatedTarget) || contains(relatedTarget, floating) || contains(portalContext == null ? void 0 : portalContext.portalNode, relatedTarget) || relatedTarget != null && relatedTarget.hasAttribute(createAttribute('focus-guard')) || tree && (getChildren(tree.nodesRef.current, nodeId).find(node => {\n          var _node$context, _node$context2;\n          return contains((_node$context = node.context) == null ? void 0 : _node$context.elements.floating, relatedTarget) || contains((_node$context2 = node.context) == null ? void 0 : _node$context2.elements.domReference, relatedTarget);\n        }) || getAncestors(tree.nodesRef.current, nodeId).find(node => {\n          var _node$context3, _node$context4;\n          return ((_node$context3 = node.context) == null ? void 0 : _node$context3.elements.floating) === relatedTarget || ((_node$context4 = node.context) == null ? void 0 : _node$context4.elements.domReference) === relatedTarget;\n        })));\n\n        // Restore focus to the previous tabbable element index to prevent\n        // focus from being lost outside the floating tree.\n        if (restoreFocus && movedToUnrelatedNode && activeElement(getDocument(floatingFocusElement)) === getDocument(floatingFocusElement).body) {\n          // Let `FloatingPortal` effect knows that focus is still inside the\n          // floating tree.\n          if (isHTMLElement(floatingFocusElement)) {\n            floatingFocusElement.focus();\n          }\n          const prevTabbableIndex = tabbableIndexRef.current;\n          const tabbableContent = getTabbableContent();\n          const nodeToFocus = tabbableContent[prevTabbableIndex] || tabbableContent[tabbableContent.length - 1] || floatingFocusElement;\n          if (isHTMLElement(nodeToFocus)) {\n            nodeToFocus.focus();\n          }\n        }\n\n        // Focus did not move inside the floating tree, and there are no tabbable\n        // portal guards to handle closing.\n        if ((isUntrappedTypeableCombobox ? true : !modal) && relatedTarget && movedToUnrelatedNode && !isPointerDownRef.current &&\n        // Fix React 18 Strict Mode returnFocus due to double rendering.\n        relatedTarget !== getPreviouslyFocusedElement()) {\n          preventReturnFocusRef.current = true;\n          onOpenChange(false, event, 'focus-out');\n        }\n      });\n    }\n    if (floating && isHTMLElement(domReference)) {\n      domReference.addEventListener('focusout', handleFocusOutside);\n      domReference.addEventListener('pointerdown', handlePointerDown);\n      floating.addEventListener('focusout', handleFocusOutside);\n      return () => {\n        domReference.removeEventListener('focusout', handleFocusOutside);\n        domReference.removeEventListener('pointerdown', handlePointerDown);\n        floating.removeEventListener('focusout', handleFocusOutside);\n      };\n    }\n  }, [disabled, domReference, floating, floatingFocusElement, modal, nodeId, tree, portalContext, onOpenChange, closeOnFocusOut, restoreFocus, getTabbableContent, isUntrappedTypeableCombobox]);\n  React.useEffect(() => {\n    var _portalContext$portal;\n    if (disabled) return;\n\n    // Don't hide portals nested within the parent portal.\n    const portalNodes = Array.from((portalContext == null || (_portalContext$portal = portalContext.portalNode) == null ? void 0 : _portalContext$portal.querySelectorAll(\"[\" + createAttribute('portal') + \"]\")) || []);\n    if (floating) {\n      const insideElements = [floating, ...portalNodes, startDismissButtonRef.current, endDismissButtonRef.current, orderRef.current.includes('reference') || isUntrappedTypeableCombobox ? domReference : null].filter(x => x != null);\n      const cleanup = modal || isUntrappedTypeableCombobox ? markOthers(insideElements, guards, !guards) : markOthers(insideElements);\n      return () => {\n        cleanup();\n      };\n    }\n  }, [disabled, domReference, floating, modal, orderRef, portalContext, isUntrappedTypeableCombobox, guards]);\n  index(() => {\n    if (disabled || !isHTMLElement(floatingFocusElement)) return;\n    const doc = getDocument(floatingFocusElement);\n    const previouslyFocusedElement = activeElement(doc);\n\n    // Wait for any layout effect state setters to execute to set `tabIndex`.\n    queueMicrotask(() => {\n      const focusableElements = getTabbableElements(floatingFocusElement);\n      const initialFocusValue = initialFocusRef.current;\n      const elToFocus = (typeof initialFocusValue === 'number' ? focusableElements[initialFocusValue] : initialFocusValue.current) || floatingFocusElement;\n      const focusAlreadyInsideFloatingEl = contains(floatingFocusElement, previouslyFocusedElement);\n      if (!ignoreInitialFocus && !focusAlreadyInsideFloatingEl && open) {\n        enqueueFocus(elToFocus, {\n          preventScroll: elToFocus === floatingFocusElement\n        });\n      }\n    });\n  }, [disabled, open, floatingFocusElement, ignoreInitialFocus, getTabbableElements, initialFocusRef]);\n  index(() => {\n    if (disabled || !floatingFocusElement) return;\n    let preventReturnFocusScroll = false;\n    const doc = getDocument(floatingFocusElement);\n    const previouslyFocusedElement = activeElement(doc);\n    const contextData = dataRef.current;\n    let openEvent = contextData.openEvent;\n    addPreviouslyFocusedElement(previouslyFocusedElement);\n\n    // Dismissing via outside press should always ignore `returnFocus` to\n    // prevent unwanted scrolling.\n    function onOpenChange(_ref) {\n      let {\n        open,\n        reason,\n        event,\n        nested\n      } = _ref;\n      if (open) {\n        openEvent = event;\n      }\n      if (reason === 'escape-key' && refs.domReference.current) {\n        addPreviouslyFocusedElement(refs.domReference.current);\n      }\n      if (reason === 'hover' && event.type === 'mouseleave') {\n        preventReturnFocusRef.current = true;\n      }\n      if (reason !== 'outside-press') return;\n      if (nested) {\n        preventReturnFocusRef.current = false;\n        preventReturnFocusScroll = true;\n      } else {\n        preventReturnFocusRef.current = !(isVirtualClick(event) || isVirtualPointerEvent(event));\n      }\n    }\n    events.on('openchange', onOpenChange);\n    const fallbackEl = doc.createElement('span');\n    fallbackEl.setAttribute('tabindex', '-1');\n    fallbackEl.setAttribute('aria-hidden', 'true');\n    Object.assign(fallbackEl.style, HIDDEN_STYLES);\n    if (isInsidePortal && domReference) {\n      domReference.insertAdjacentElement('afterend', fallbackEl);\n    }\n    function getReturnElement() {\n      if (typeof returnFocusRef.current === 'boolean') {\n        return getPreviouslyFocusedElement() || fallbackEl;\n      }\n      return returnFocusRef.current.current || fallbackEl;\n    }\n    return () => {\n      events.off('openchange', onOpenChange);\n      const activeEl = activeElement(doc);\n      const isFocusInsideFloatingTree = contains(floating, activeEl) || tree && getChildren(tree.nodesRef.current, nodeId).some(node => {\n        var _node$context5;\n        return contains((_node$context5 = node.context) == null ? void 0 : _node$context5.elements.floating, activeEl);\n      });\n      const shouldFocusReference = isFocusInsideFloatingTree || openEvent && ['click', 'mousedown'].includes(openEvent.type);\n      if (shouldFocusReference && refs.domReference.current) {\n        addPreviouslyFocusedElement(refs.domReference.current);\n      }\n      const returnElement = getReturnElement();\n      queueMicrotask(() => {\n        if (\n        // eslint-disable-next-line react-hooks/exhaustive-deps\n        returnFocusRef.current && !preventReturnFocusRef.current && isHTMLElement(returnElement) && (\n        // If the focus moved somewhere else after mount, avoid returning focus\n        // since it likely entered a different element which should be\n        // respected: https://github.com/floating-ui/floating-ui/issues/2607\n        returnElement !== activeEl && activeEl !== doc.body ? isFocusInsideFloatingTree : true)) {\n          returnElement.focus({\n            preventScroll: preventReturnFocusScroll\n          });\n        }\n        fallbackEl.remove();\n      });\n    };\n  }, [disabled, floating, floatingFocusElement, returnFocusRef, dataRef, refs, events, tree, nodeId, isInsidePortal, domReference]);\n  React.useEffect(() => {\n    // The `returnFocus` cleanup behavior is inside a microtask; ensure we\n    // wait for it to complete before resetting the flag.\n    queueMicrotask(() => {\n      preventReturnFocusRef.current = false;\n    });\n  }, [disabled]);\n\n  // Synchronize the `context` & `modal` value to the FloatingPortal context.\n  // It will decide whether or not it needs to render its own guards.\n  index(() => {\n    if (disabled) return;\n    if (!portalContext) return;\n    portalContext.setFocusManagerState({\n      modal,\n      closeOnFocusOut,\n      open,\n      onOpenChange,\n      refs\n    });\n    return () => {\n      portalContext.setFocusManagerState(null);\n    };\n  }, [disabled, portalContext, modal, open, onOpenChange, refs, closeOnFocusOut]);\n  index(() => {\n    if (disabled) return;\n    if (!floatingFocusElement) return;\n    if (typeof MutationObserver !== 'function') return;\n    if (ignoreInitialFocus) return;\n    const handleMutation = () => {\n      const tabIndex = floatingFocusElement.getAttribute('tabindex');\n      const tabbableContent = getTabbableContent();\n      const activeEl = activeElement(getDocument(floating));\n      const tabbableIndex = tabbableContent.indexOf(activeEl);\n      if (tabbableIndex !== -1) {\n        tabbableIndexRef.current = tabbableIndex;\n      }\n      if (orderRef.current.includes('floating') || activeEl !== refs.domReference.current && tabbableContent.length === 0) {\n        if (tabIndex !== '0') {\n          floatingFocusElement.setAttribute('tabindex', '0');\n        }\n      } else if (tabIndex !== '-1') {\n        floatingFocusElement.setAttribute('tabindex', '-1');\n      }\n    };\n    handleMutation();\n    const observer = new MutationObserver(handleMutation);\n    observer.observe(floatingFocusElement, {\n      childList: true,\n      subtree: true,\n      attributes: true\n    });\n    return () => {\n      observer.disconnect();\n    };\n  }, [disabled, floating, floatingFocusElement, refs, orderRef, getTabbableContent, ignoreInitialFocus]);\n  function renderDismissButton(location) {\n    if (disabled || !visuallyHiddenDismiss || !modal) {\n      return null;\n    }\n    return /*#__PURE__*/React.createElement(VisuallyHiddenDismiss, {\n      ref: location === 'start' ? startDismissButtonRef : endDismissButtonRef,\n      onClick: event => onOpenChange(false, event.nativeEvent)\n    }, typeof visuallyHiddenDismiss === 'string' ? visuallyHiddenDismiss : 'Dismiss');\n  }\n  const shouldRenderGuards = !disabled && guards && (modal ? !isUntrappedTypeableCombobox : true) && (isInsidePortal || modal);\n  return /*#__PURE__*/React.createElement(React.Fragment, null, shouldRenderGuards && /*#__PURE__*/React.createElement(FocusGuard, {\n    \"data-type\": \"inside\",\n    ref: portalContext == null ? void 0 : portalContext.beforeInsideRef,\n    onFocus: event => {\n      if (modal) {\n        const els = getTabbableElements();\n        enqueueFocus(order[0] === 'reference' ? els[0] : els[els.length - 1]);\n      } else if (portalContext != null && portalContext.preserveTabOrder && portalContext.portalNode) {\n        preventReturnFocusRef.current = false;\n        if (isOutsideEvent(event, portalContext.portalNode)) {\n          const nextTabbable = getNextTabbable() || domReference;\n          nextTabbable == null || nextTabbable.focus();\n        } else {\n          var _portalContext$before;\n          (_portalContext$before = portalContext.beforeOutsideRef.current) == null || _portalContext$before.focus();\n        }\n      }\n    }\n  }), !isUntrappedTypeableCombobox && renderDismissButton('start'), children, renderDismissButton('end'), shouldRenderGuards && /*#__PURE__*/React.createElement(FocusGuard, {\n    \"data-type\": \"inside\",\n    ref: portalContext == null ? void 0 : portalContext.afterInsideRef,\n    onFocus: event => {\n      if (modal) {\n        enqueueFocus(getTabbableElements()[0]);\n      } else if (portalContext != null && portalContext.preserveTabOrder && portalContext.portalNode) {\n        if (closeOnFocusOut) {\n          preventReturnFocusRef.current = true;\n        }\n        if (isOutsideEvent(event, portalContext.portalNode)) {\n          const prevTabbable = getPreviousTabbable() || domReference;\n          prevTabbable == null || prevTabbable.focus();\n        } else {\n          var _portalContext$afterO;\n          (_portalContext$afterO = portalContext.afterOutsideRef.current) == null || _portalContext$afterO.focus();\n        }\n      }\n    }\n  }));\n}\n\nlet lockCount = 0;\nfunction enableScrollLock() {\n  const isIOS = /iP(hone|ad|od)|iOS/.test(getPlatform());\n  const bodyStyle = document.body.style;\n  // RTL <body> scrollbar\n  const scrollbarX = Math.round(document.documentElement.getBoundingClientRect().left) + document.documentElement.scrollLeft;\n  const paddingProp = scrollbarX ? 'paddingLeft' : 'paddingRight';\n  const scrollbarWidth = window.innerWidth - document.documentElement.clientWidth;\n  const scrollX = bodyStyle.left ? parseFloat(bodyStyle.left) : window.scrollX;\n  const scrollY = bodyStyle.top ? parseFloat(bodyStyle.top) : window.scrollY;\n  bodyStyle.overflow = 'hidden';\n  if (scrollbarWidth) {\n    bodyStyle[paddingProp] = scrollbarWidth + \"px\";\n  }\n\n  // Only iOS doesn't respect `overflow: hidden` on document.body, and this\n  // technique has fewer side effects.\n  if (isIOS) {\n    var _window$visualViewpor, _window$visualViewpor2;\n    // iOS 12 does not support `visualViewport`.\n    const offsetLeft = ((_window$visualViewpor = window.visualViewport) == null ? void 0 : _window$visualViewpor.offsetLeft) || 0;\n    const offsetTop = ((_window$visualViewpor2 = window.visualViewport) == null ? void 0 : _window$visualViewpor2.offsetTop) || 0;\n    Object.assign(bodyStyle, {\n      position: 'fixed',\n      top: -(scrollY - Math.floor(offsetTop)) + \"px\",\n      left: -(scrollX - Math.floor(offsetLeft)) + \"px\",\n      right: '0'\n    });\n  }\n  return () => {\n    Object.assign(bodyStyle, {\n      overflow: '',\n      [paddingProp]: ''\n    });\n    if (isIOS) {\n      Object.assign(bodyStyle, {\n        position: '',\n        top: '',\n        left: '',\n        right: ''\n      });\n      window.scrollTo(scrollX, scrollY);\n    }\n  };\n}\nlet cleanup = () => {};\n\n/**\n * Provides base styling for a fixed overlay element to dim content or block\n * pointer events behind a floating element.\n * It's a regular `<div>`, so it can be styled via any CSS solution you prefer.\n * @see https://floating-ui.com/docs/FloatingOverlay\n */\nconst FloatingOverlay = /*#__PURE__*/React.forwardRef(function FloatingOverlay(props, ref) {\n  const {\n    lockScroll = false,\n    ...rest\n  } = props;\n  index(() => {\n    if (!lockScroll) return;\n    lockCount++;\n    if (lockCount === 1) {\n      cleanup = enableScrollLock();\n    }\n    return () => {\n      lockCount--;\n      if (lockCount === 0) {\n        cleanup();\n      }\n    };\n  }, [lockScroll]);\n  return /*#__PURE__*/React.createElement(\"div\", _extends({\n    ref: ref\n  }, rest, {\n    style: {\n      position: 'fixed',\n      overflow: 'auto',\n      top: 0,\n      right: 0,\n      bottom: 0,\n      left: 0,\n      ...rest.style\n    }\n  }));\n});\n\nfunction isButtonTarget(event) {\n  return isHTMLElement(event.target) && event.target.tagName === 'BUTTON';\n}\nfunction isSpaceIgnored(element) {\n  return isTypeableElement(element);\n}\n/**\n * Opens or closes the floating element when clicking the reference element.\n * @see https://floating-ui.com/docs/useClick\n */\nfunction useClick(context, props) {\n  if (props === void 0) {\n    props = {};\n  }\n  const {\n    open,\n    onOpenChange,\n    dataRef,\n    elements: {\n      domReference\n    }\n  } = context;\n  const {\n    enabled = true,\n    event: eventOption = 'click',\n    toggle = true,\n    ignoreMouse = false,\n    keyboardHandlers = true,\n    stickIfOpen = true\n  } = props;\n  const pointerTypeRef = React.useRef();\n  const didKeyDownRef = React.useRef(false);\n  const reference = React.useMemo(() => ({\n    onPointerDown(event) {\n      pointerTypeRef.current = event.pointerType;\n    },\n    onMouseDown(event) {\n      const pointerType = pointerTypeRef.current;\n\n      // Ignore all buttons except for the \"main\" button.\n      // https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button\n      if (event.button !== 0) return;\n      if (eventOption === 'click') return;\n      if (isMouseLikePointerType(pointerType, true) && ignoreMouse) return;\n      if (open && toggle && (dataRef.current.openEvent && stickIfOpen ? dataRef.current.openEvent.type === 'mousedown' : true)) {\n        onOpenChange(false, event.nativeEvent, 'click');\n      } else {\n        // Prevent stealing focus from the floating element\n        event.preventDefault();\n        onOpenChange(true, event.nativeEvent, 'click');\n      }\n    },\n    onClick(event) {\n      const pointerType = pointerTypeRef.current;\n      if (eventOption === 'mousedown' && pointerTypeRef.current) {\n        pointerTypeRef.current = undefined;\n        return;\n      }\n      if (isMouseLikePointerType(pointerType, true) && ignoreMouse) return;\n      if (open && toggle && (dataRef.current.openEvent && stickIfOpen ? dataRef.current.openEvent.type === 'click' : true)) {\n        onOpenChange(false, event.nativeEvent, 'click');\n      } else {\n        onOpenChange(true, event.nativeEvent, 'click');\n      }\n    },\n    onKeyDown(event) {\n      pointerTypeRef.current = undefined;\n      if (event.defaultPrevented || !keyboardHandlers || isButtonTarget(event)) {\n        return;\n      }\n      if (event.key === ' ' && !isSpaceIgnored(domReference)) {\n        // Prevent scrolling\n        event.preventDefault();\n        didKeyDownRef.current = true;\n      }\n      if (event.key === 'Enter') {\n        if (open && toggle) {\n          onOpenChange(false, event.nativeEvent, 'click');\n        } else {\n          onOpenChange(true, event.nativeEvent, 'click');\n        }\n      }\n    },\n    onKeyUp(event) {\n      if (event.defaultPrevented || !keyboardHandlers || isButtonTarget(event) || isSpaceIgnored(domReference)) {\n        return;\n      }\n      if (event.key === ' ' && didKeyDownRef.current) {\n        didKeyDownRef.current = false;\n        if (open && toggle) {\n          onOpenChange(false, event.nativeEvent, 'click');\n        } else {\n          onOpenChange(true, event.nativeEvent, 'click');\n        }\n      }\n    }\n  }), [dataRef, domReference, eventOption, ignoreMouse, keyboardHandlers, onOpenChange, open, stickIfOpen, toggle]);\n  return React.useMemo(() => enabled ? {\n    reference\n  } : {}, [enabled, reference]);\n}\n\nfunction createVirtualElement(domElement, data) {\n  let offsetX = null;\n  let offsetY = null;\n  let isAutoUpdateEvent = false;\n  return {\n    contextElement: domElement || undefined,\n    getBoundingClientRect() {\n      var _data$dataRef$current;\n      const domRect = (domElement == null ? void 0 : domElement.getBoundingClientRect()) || {\n        width: 0,\n        height: 0,\n        x: 0,\n        y: 0\n      };\n      const isXAxis = data.axis === 'x' || data.axis === 'both';\n      const isYAxis = data.axis === 'y' || data.axis === 'both';\n      const canTrackCursorOnAutoUpdate = ['mouseenter', 'mousemove'].includes(((_data$dataRef$current = data.dataRef.current.openEvent) == null ? void 0 : _data$dataRef$current.type) || '') && data.pointerType !== 'touch';\n      let width = domRect.width;\n      let height = domRect.height;\n      let x = domRect.x;\n      let y = domRect.y;\n      if (offsetX == null && data.x && isXAxis) {\n        offsetX = domRect.x - data.x;\n      }\n      if (offsetY == null && data.y && isYAxis) {\n        offsetY = domRect.y - data.y;\n      }\n      x -= offsetX || 0;\n      y -= offsetY || 0;\n      width = 0;\n      height = 0;\n      if (!isAutoUpdateEvent || canTrackCursorOnAutoUpdate) {\n        width = data.axis === 'y' ? domRect.width : 0;\n        height = data.axis === 'x' ? domRect.height : 0;\n        x = isXAxis && data.x != null ? data.x : x;\n        y = isYAxis && data.y != null ? data.y : y;\n      } else if (isAutoUpdateEvent && !canTrackCursorOnAutoUpdate) {\n        height = data.axis === 'x' ? domRect.height : height;\n        width = data.axis === 'y' ? domRect.width : width;\n      }\n      isAutoUpdateEvent = true;\n      return {\n        width,\n        height,\n        x,\n        y,\n        top: y,\n        right: x + width,\n        bottom: y + height,\n        left: x\n      };\n    }\n  };\n}\nfunction isMouseBasedEvent(event) {\n  return event != null && event.clientX != null;\n}\n/**\n * Positions the floating element relative to a client point (in the viewport),\n * such as the mouse position. By default, it follows the mouse cursor.\n * @see https://floating-ui.com/docs/useClientPoint\n */\nfunction useClientPoint(context, props) {\n  if (props === void 0) {\n    props = {};\n  }\n  const {\n    open,\n    dataRef,\n    elements: {\n      floating,\n      domReference\n    },\n    refs\n  } = context;\n  const {\n    enabled = true,\n    axis = 'both',\n    x = null,\n    y = null\n  } = props;\n  const initialRef = React.useRef(false);\n  const cleanupListenerRef = React.useRef(null);\n  const [pointerType, setPointerType] = React.useState();\n  const [reactive, setReactive] = React.useState([]);\n  const setReference = useEffectEvent((x, y) => {\n    if (initialRef.current) return;\n\n    // Prevent setting if the open event was not a mouse-like one\n    // (e.g. focus to open, then hover over the reference element).\n    // Only apply if the event exists.\n    if (dataRef.current.openEvent && !isMouseBasedEvent(dataRef.current.openEvent)) {\n      return;\n    }\n    refs.setPositionReference(createVirtualElement(domReference, {\n      x,\n      y,\n      axis,\n      dataRef,\n      pointerType\n    }));\n  });\n  const handleReferenceEnterOrMove = useEffectEvent(event => {\n    if (x != null || y != null) return;\n    if (!open) {\n      setReference(event.clientX, event.clientY);\n    } else if (!cleanupListenerRef.current) {\n      // If there's no cleanup, there's no listener, but we want to ensure\n      // we add the listener if the cursor landed on the floating element and\n      // then back on the reference (i.e. it's interactive).\n      setReactive([]);\n    }\n  });\n\n  // If the pointer is a mouse-like pointer, we want to continue following the\n  // mouse even if the floating element is transitioning out. On touch\n  // devices, this is undesirable because the floating element will move to\n  // the dismissal touch point.\n  const openCheck = isMouseLikePointerType(pointerType) ? floating : open;\n  const addListener = React.useCallback(() => {\n    // Explicitly specified `x`/`y` coordinates shouldn't add a listener.\n    if (!openCheck || !enabled || x != null || y != null) return;\n    const win = getWindow(floating);\n    function handleMouseMove(event) {\n      const target = getTarget(event);\n      if (!contains(floating, target)) {\n        setReference(event.clientX, event.clientY);\n      } else {\n        win.removeEventListener('mousemove', handleMouseMove);\n        cleanupListenerRef.current = null;\n      }\n    }\n    if (!dataRef.current.openEvent || isMouseBasedEvent(dataRef.current.openEvent)) {\n      win.addEventListener('mousemove', handleMouseMove);\n      const cleanup = () => {\n        win.removeEventListener('mousemove', handleMouseMove);\n        cleanupListenerRef.current = null;\n      };\n      cleanupListenerRef.current = cleanup;\n      return cleanup;\n    }\n    refs.setPositionReference(domReference);\n  }, [openCheck, enabled, x, y, floating, dataRef, refs, domReference, setReference]);\n  React.useEffect(() => {\n    return addListener();\n  }, [addListener, reactive]);\n  React.useEffect(() => {\n    if (enabled && !floating) {\n      initialRef.current = false;\n    }\n  }, [enabled, floating]);\n  React.useEffect(() => {\n    if (!enabled && open) {\n      initialRef.current = true;\n    }\n  }, [enabled, open]);\n  index(() => {\n    if (enabled && (x != null || y != null)) {\n      initialRef.current = false;\n      setReference(x, y);\n    }\n  }, [enabled, x, y, setReference]);\n  const reference = React.useMemo(() => {\n    function setPointerTypeRef(_ref) {\n      let {\n        pointerType\n      } = _ref;\n      setPointerType(pointerType);\n    }\n    return {\n      onPointerDown: setPointerTypeRef,\n      onPointerEnter: setPointerTypeRef,\n      onMouseMove: handleReferenceEnterOrMove,\n      onMouseEnter: handleReferenceEnterOrMove\n    };\n  }, [handleReferenceEnterOrMove]);\n  return React.useMemo(() => enabled ? {\n    reference\n  } : {}, [enabled, reference]);\n}\n\nconst bubbleHandlerKeys = {\n  pointerdown: 'onPointerDown',\n  mousedown: 'onMouseDown',\n  click: 'onClick'\n};\nconst captureHandlerKeys = {\n  pointerdown: 'onPointerDownCapture',\n  mousedown: 'onMouseDownCapture',\n  click: 'onClickCapture'\n};\nconst normalizeProp = normalizable => {\n  var _normalizable$escapeK, _normalizable$outside;\n  return {\n    escapeKey: typeof normalizable === 'boolean' ? normalizable : (_normalizable$escapeK = normalizable == null ? void 0 : normalizable.escapeKey) != null ? _normalizable$escapeK : false,\n    outsidePress: typeof normalizable === 'boolean' ? normalizable : (_normalizable$outside = normalizable == null ? void 0 : normalizable.outsidePress) != null ? _normalizable$outside : true\n  };\n};\n/**\n * Closes the floating element when a dismissal is requested — by default, when\n * the user presses the `escape` key or outside of the floating element.\n * @see https://floating-ui.com/docs/useDismiss\n */\nfunction useDismiss(context, props) {\n  if (props === void 0) {\n    props = {};\n  }\n  const {\n    open,\n    onOpenChange,\n    elements,\n    dataRef\n  } = context;\n  const {\n    enabled = true,\n    escapeKey = true,\n    outsidePress: unstable_outsidePress = true,\n    outsidePressEvent = 'pointerdown',\n    referencePress = false,\n    referencePressEvent = 'pointerdown',\n    ancestorScroll = false,\n    bubbles,\n    capture\n  } = props;\n  const tree = useFloatingTree();\n  const outsidePressFn = useEffectEvent(typeof unstable_outsidePress === 'function' ? unstable_outsidePress : () => false);\n  const outsidePress = typeof unstable_outsidePress === 'function' ? outsidePressFn : unstable_outsidePress;\n  const insideReactTreeRef = React.useRef(false);\n  const endedOrStartedInsideRef = React.useRef(false);\n  const {\n    escapeKey: escapeKeyBubbles,\n    outsidePress: outsidePressBubbles\n  } = normalizeProp(bubbles);\n  const {\n    escapeKey: escapeKeyCapture,\n    outsidePress: outsidePressCapture\n  } = normalizeProp(capture);\n  const isComposingRef = React.useRef(false);\n  const closeOnEscapeKeyDown = useEffectEvent(event => {\n    var _dataRef$current$floa;\n    if (!open || !enabled || !escapeKey || event.key !== 'Escape') {\n      return;\n    }\n\n    // Wait until IME is settled. Pressing `Escape` while composing should\n    // close the compose menu, but not the floating element.\n    if (isComposingRef.current) {\n      return;\n    }\n    const nodeId = (_dataRef$current$floa = dataRef.current.floatingContext) == null ? void 0 : _dataRef$current$floa.nodeId;\n    const children = tree ? getChildren(tree.nodesRef.current, nodeId) : [];\n    if (!escapeKeyBubbles) {\n      event.stopPropagation();\n      if (children.length > 0) {\n        let shouldDismiss = true;\n        children.forEach(child => {\n          var _child$context;\n          if ((_child$context = child.context) != null && _child$context.open && !child.context.dataRef.current.__escapeKeyBubbles) {\n            shouldDismiss = false;\n            return;\n          }\n        });\n        if (!shouldDismiss) {\n          return;\n        }\n      }\n    }\n    onOpenChange(false, isReactEvent(event) ? event.nativeEvent : event, 'escape-key');\n  });\n  const closeOnEscapeKeyDownCapture = useEffectEvent(event => {\n    var _getTarget2;\n    const callback = () => {\n      var _getTarget;\n      closeOnEscapeKeyDown(event);\n      (_getTarget = getTarget(event)) == null || _getTarget.removeEventListener('keydown', callback);\n    };\n    (_getTarget2 = getTarget(event)) == null || _getTarget2.addEventListener('keydown', callback);\n  });\n  const closeOnPressOutside = useEffectEvent(event => {\n    var _dataRef$current$floa2;\n    // Given developers can stop the propagation of the synthetic event,\n    // we can only be confident with a positive value.\n    const insideReactTree = insideReactTreeRef.current;\n    insideReactTreeRef.current = false;\n\n    // When click outside is lazy (`click` event), handle dragging.\n    // Don't close if:\n    // - The click started inside the floating element.\n    // - The click ended inside the floating element.\n    const endedOrStartedInside = endedOrStartedInsideRef.current;\n    endedOrStartedInsideRef.current = false;\n    if (outsidePressEvent === 'click' && endedOrStartedInside) {\n      return;\n    }\n    if (insideReactTree) {\n      return;\n    }\n    if (typeof outsidePress === 'function' && !outsidePress(event)) {\n      return;\n    }\n    const target = getTarget(event);\n    const inertSelector = \"[\" + createAttribute('inert') + \"]\";\n    const markers = getDocument(elements.floating).querySelectorAll(inertSelector);\n    let targetRootAncestor = isElement(target) ? target : null;\n    while (targetRootAncestor && !isLastTraversableNode(targetRootAncestor)) {\n      const nextParent = getParentNode(targetRootAncestor);\n      if (isLastTraversableNode(nextParent) || !isElement(nextParent)) {\n        break;\n      }\n      targetRootAncestor = nextParent;\n    }\n\n    // Check if the click occurred on a third-party element injected after the\n    // floating element rendered.\n    if (markers.length && isElement(target) && !isRootElement(target) &&\n    // Clicked on a direct ancestor (e.g. FloatingOverlay).\n    !contains(target, elements.floating) &&\n    // If the target root element contains none of the markers, then the\n    // element was injected after the floating element rendered.\n    Array.from(markers).every(marker => !contains(targetRootAncestor, marker))) {\n      return;\n    }\n\n    // Check if the click occurred on the scrollbar\n    if (isHTMLElement(target) && floating) {\n      // In Firefox, `target.scrollWidth > target.clientWidth` for inline\n      // elements.\n      const canScrollX = target.clientWidth > 0 && target.scrollWidth > target.clientWidth;\n      const canScrollY = target.clientHeight > 0 && target.scrollHeight > target.clientHeight;\n      let xCond = canScrollY && event.offsetX > target.clientWidth;\n\n      // In some browsers it is possible to change the <body> (or window)\n      // scrollbar to the left side, but is very rare and is difficult to\n      // check for. Plus, for modal dialogs with backdrops, it is more\n      // important that the backdrop is checked but not so much the window.\n      if (canScrollY) {\n        const isRTL = getComputedStyle(target).direction === 'rtl';\n        if (isRTL) {\n          xCond = event.offsetX <= target.offsetWidth - target.clientWidth;\n        }\n      }\n      if (xCond || canScrollX && event.offsetY > target.clientHeight) {\n        return;\n      }\n    }\n    const nodeId = (_dataRef$current$floa2 = dataRef.current.floatingContext) == null ? void 0 : _dataRef$current$floa2.nodeId;\n    const targetIsInsideChildren = tree && getChildren(tree.nodesRef.current, nodeId).some(node => {\n      var _node$context;\n      return isEventTargetWithin(event, (_node$context = node.context) == null ? void 0 : _node$context.elements.floating);\n    });\n    if (isEventTargetWithin(event, elements.floating) || isEventTargetWithin(event, elements.domReference) || targetIsInsideChildren) {\n      return;\n    }\n    const children = tree ? getChildren(tree.nodesRef.current, nodeId) : [];\n    if (children.length > 0) {\n      let shouldDismiss = true;\n      children.forEach(child => {\n        var _child$context2;\n        if ((_child$context2 = child.context) != null && _child$context2.open && !child.context.dataRef.current.__outsidePressBubbles) {\n          shouldDismiss = false;\n          return;\n        }\n      });\n      if (!shouldDismiss) {\n        return;\n      }\n    }\n    onOpenChange(false, event, 'outside-press');\n  });\n  const closeOnPressOutsideCapture = useEffectEvent(event => {\n    var _getTarget4;\n    const callback = () => {\n      var _getTarget3;\n      closeOnPressOutside(event);\n      (_getTarget3 = getTarget(event)) == null || _getTarget3.removeEventListener(outsidePressEvent, callback);\n    };\n    (_getTarget4 = getTarget(event)) == null || _getTarget4.addEventListener(outsidePressEvent, callback);\n  });\n  React.useEffect(() => {\n    if (!open || !enabled) {\n      return;\n    }\n    dataRef.current.__escapeKeyBubbles = escapeKeyBubbles;\n    dataRef.current.__outsidePressBubbles = outsidePressBubbles;\n    let compositionTimeout = -1;\n    function onScroll(event) {\n      onOpenChange(false, event, 'ancestor-scroll');\n    }\n    function handleCompositionStart() {\n      window.clearTimeout(compositionTimeout);\n      isComposingRef.current = true;\n    }\n    function handleCompositionEnd() {\n      // Safari fires `compositionend` before `keydown`, so we need to wait\n      // until the next tick to set `isComposing` to `false`.\n      // https://bugs.webkit.org/show_bug.cgi?id=165004\n      compositionTimeout = window.setTimeout(() => {\n        isComposingRef.current = false;\n      },\n      // 0ms or 1ms don't work in Safari. 5ms appears to consistently work.\n      // Only apply to WebKit for the test to remain 0ms.\n      isWebKit() ? 5 : 0);\n    }\n    const doc = getDocument(elements.floating);\n    if (escapeKey) {\n      doc.addEventListener('keydown', escapeKeyCapture ? closeOnEscapeKeyDownCapture : closeOnEscapeKeyDown, escapeKeyCapture);\n      doc.addEventListener('compositionstart', handleCompositionStart);\n      doc.addEventListener('compositionend', handleCompositionEnd);\n    }\n    outsidePress && doc.addEventListener(outsidePressEvent, outsidePressCapture ? closeOnPressOutsideCapture : closeOnPressOutside, outsidePressCapture);\n    let ancestors = [];\n    if (ancestorScroll) {\n      if (isElement(elements.domReference)) {\n        ancestors = getOverflowAncestors(elements.domReference);\n      }\n      if (isElement(elements.floating)) {\n        ancestors = ancestors.concat(getOverflowAncestors(elements.floating));\n      }\n      if (!isElement(elements.reference) && elements.reference && elements.reference.contextElement) {\n        ancestors = ancestors.concat(getOverflowAncestors(elements.reference.contextElement));\n      }\n    }\n\n    // Ignore the visual viewport for scrolling dismissal (allow pinch-zoom)\n    ancestors = ancestors.filter(ancestor => {\n      var _doc$defaultView;\n      return ancestor !== ((_doc$defaultView = doc.defaultView) == null ? void 0 : _doc$defaultView.visualViewport);\n    });\n    ancestors.forEach(ancestor => {\n      ancestor.addEventListener('scroll', onScroll, {\n        passive: true\n      });\n    });\n    return () => {\n      if (escapeKey) {\n        doc.removeEventListener('keydown', escapeKeyCapture ? closeOnEscapeKeyDownCapture : closeOnEscapeKeyDown, escapeKeyCapture);\n        doc.removeEventListener('compositionstart', handleCompositionStart);\n        doc.removeEventListener('compositionend', handleCompositionEnd);\n      }\n      outsidePress && doc.removeEventListener(outsidePressEvent, outsidePressCapture ? closeOnPressOutsideCapture : closeOnPressOutside, outsidePressCapture);\n      ancestors.forEach(ancestor => {\n        ancestor.removeEventListener('scroll', onScroll);\n      });\n      window.clearTimeout(compositionTimeout);\n    };\n  }, [dataRef, elements, escapeKey, outsidePress, outsidePressEvent, open, onOpenChange, ancestorScroll, enabled, escapeKeyBubbles, outsidePressBubbles, closeOnEscapeKeyDown, escapeKeyCapture, closeOnEscapeKeyDownCapture, closeOnPressOutside, outsidePressCapture, closeOnPressOutsideCapture]);\n  React.useEffect(() => {\n    insideReactTreeRef.current = false;\n  }, [outsidePress, outsidePressEvent]);\n  const reference = React.useMemo(() => ({\n    onKeyDown: closeOnEscapeKeyDown,\n    [bubbleHandlerKeys[referencePressEvent]]: event => {\n      if (referencePress) {\n        onOpenChange(false, event.nativeEvent, 'reference-press');\n      }\n    }\n  }), [closeOnEscapeKeyDown, onOpenChange, referencePress, referencePressEvent]);\n  const floating = React.useMemo(() => ({\n    onKeyDown: closeOnEscapeKeyDown,\n    onMouseDown() {\n      endedOrStartedInsideRef.current = true;\n    },\n    onMouseUp() {\n      endedOrStartedInsideRef.current = true;\n    },\n    [captureHandlerKeys[outsidePressEvent]]: () => {\n      insideReactTreeRef.current = true;\n    }\n  }), [closeOnEscapeKeyDown, outsidePressEvent]);\n  return React.useMemo(() => enabled ? {\n    reference,\n    floating\n  } : {}, [enabled, reference, floating]);\n}\n\nfunction useFloatingRootContext(options) {\n  const {\n    open = false,\n    onOpenChange: onOpenChangeProp,\n    elements: elementsProp\n  } = options;\n  const floatingId = useId();\n  const dataRef = React.useRef({});\n  const [events] = React.useState(() => createPubSub());\n  const nested = useFloatingParentNodeId() != null;\n  if (process.env.NODE_ENV !== \"production\") {\n    const optionDomReference = elementsProp.reference;\n    if (optionDomReference && !isElement(optionDomReference)) {\n      error('Cannot pass a virtual element to the `elements.reference` option,', 'as it must be a real DOM element. Use `refs.setPositionReference()`', 'instead.');\n    }\n  }\n  const [positionReference, setPositionReference] = React.useState(elementsProp.reference);\n  const onOpenChange = useEffectEvent((open, event, reason) => {\n    dataRef.current.openEvent = open ? event : undefined;\n    events.emit('openchange', {\n      open,\n      event,\n      reason,\n      nested\n    });\n    onOpenChangeProp == null || onOpenChangeProp(open, event, reason);\n  });\n  const refs = React.useMemo(() => ({\n    setPositionReference\n  }), []);\n  const elements = React.useMemo(() => ({\n    reference: positionReference || elementsProp.reference || null,\n    floating: elementsProp.floating || null,\n    domReference: elementsProp.reference\n  }), [positionReference, elementsProp.reference, elementsProp.floating]);\n  return React.useMemo(() => ({\n    dataRef,\n    open,\n    onOpenChange,\n    elements,\n    events,\n    floatingId,\n    refs\n  }), [open, onOpenChange, elements, events, floatingId, refs]);\n}\n\n/**\n * Provides data to position a floating element and context to add interactions.\n * @see https://floating-ui.com/docs/useFloating\n */\nfunction useFloating(options) {\n  if (options === void 0) {\n    options = {};\n  }\n  const {\n    nodeId\n  } = options;\n  const internalRootContext = useFloatingRootContext({\n    ...options,\n    elements: {\n      reference: null,\n      floating: null,\n      ...options.elements\n    }\n  });\n  const rootContext = options.rootContext || internalRootContext;\n  const computedElements = rootContext.elements;\n  const [_domReference, setDomReference] = React.useState(null);\n  const [positionReference, _setPositionReference] = React.useState(null);\n  const optionDomReference = computedElements == null ? void 0 : computedElements.domReference;\n  const domReference = optionDomReference || _domReference;\n  const domReferenceRef = React.useRef(null);\n  const tree = useFloatingTree();\n  index(() => {\n    if (domReference) {\n      domReferenceRef.current = domReference;\n    }\n  }, [domReference]);\n  const position = useFloating$1({\n    ...options,\n    elements: {\n      ...computedElements,\n      ...(positionReference && {\n        reference: positionReference\n      })\n    }\n  });\n  const setPositionReference = React.useCallback(node => {\n    const computedPositionReference = isElement(node) ? {\n      getBoundingClientRect: () => node.getBoundingClientRect(),\n      contextElement: node\n    } : node;\n    // Store the positionReference in state if the DOM reference is specified externally via the\n    // `elements.reference` option. This ensures that it won't be overridden on future renders.\n    _setPositionReference(computedPositionReference);\n    position.refs.setReference(computedPositionReference);\n  }, [position.refs]);\n  const setReference = React.useCallback(node => {\n    if (isElement(node) || node === null) {\n      domReferenceRef.current = node;\n      setDomReference(node);\n    }\n\n    // Backwards-compatibility for passing a virtual element to `reference`\n    // after it has set the DOM reference.\n    if (isElement(position.refs.reference.current) || position.refs.reference.current === null ||\n    // Don't allow setting virtual elements using the old technique back to\n    // `null` to support `positionReference` + an unstable `reference`\n    // callback ref.\n    node !== null && !isElement(node)) {\n      position.refs.setReference(node);\n    }\n  }, [position.refs]);\n  const refs = React.useMemo(() => ({\n    ...position.refs,\n    setReference,\n    setPositionReference,\n    domReference: domReferenceRef\n  }), [position.refs, setReference, setPositionReference]);\n  const elements = React.useMemo(() => ({\n    ...position.elements,\n    domReference: domReference\n  }), [position.elements, domReference]);\n  const context = React.useMemo(() => ({\n    ...position,\n    ...rootContext,\n    refs,\n    elements,\n    nodeId\n  }), [position, refs, elements, nodeId, rootContext]);\n  index(() => {\n    rootContext.dataRef.current.floatingContext = context;\n    const node = tree == null ? void 0 : tree.nodesRef.current.find(node => node.id === nodeId);\n    if (node) {\n      node.context = context;\n    }\n  });\n  return React.useMemo(() => ({\n    ...position,\n    context,\n    refs,\n    elements\n  }), [position, refs, elements, context]);\n}\n\n/**\n * Opens the floating element while the reference element has focus, like CSS\n * `:focus`.\n * @see https://floating-ui.com/docs/useFocus\n */\nfunction useFocus(context, props) {\n  if (props === void 0) {\n    props = {};\n  }\n  const {\n    open,\n    onOpenChange,\n    events,\n    dataRef,\n    elements\n  } = context;\n  const {\n    enabled = true,\n    visibleOnly = true\n  } = props;\n  const blockFocusRef = React.useRef(false);\n  const timeoutRef = React.useRef();\n  const keyboardModalityRef = React.useRef(true);\n  React.useEffect(() => {\n    if (!enabled) return;\n    const win = getWindow(elements.domReference);\n\n    // If the reference was focused and the user left the tab/window, and the\n    // floating element was not open, the focus should be blocked when they\n    // return to the tab/window.\n    function onBlur() {\n      if (!open && isHTMLElement(elements.domReference) && elements.domReference === activeElement(getDocument(elements.domReference))) {\n        blockFocusRef.current = true;\n      }\n    }\n    function onKeyDown() {\n      keyboardModalityRef.current = true;\n    }\n    win.addEventListener('blur', onBlur);\n    win.addEventListener('keydown', onKeyDown, true);\n    return () => {\n      win.removeEventListener('blur', onBlur);\n      win.removeEventListener('keydown', onKeyDown, true);\n    };\n  }, [elements.domReference, open, enabled]);\n  React.useEffect(() => {\n    if (!enabled) return;\n    function onOpenChange(_ref) {\n      let {\n        reason\n      } = _ref;\n      if (reason === 'reference-press' || reason === 'escape-key') {\n        blockFocusRef.current = true;\n      }\n    }\n    events.on('openchange', onOpenChange);\n    return () => {\n      events.off('openchange', onOpenChange);\n    };\n  }, [events, enabled]);\n  React.useEffect(() => {\n    return () => {\n      clearTimeout(timeoutRef.current);\n    };\n  }, []);\n  const reference = React.useMemo(() => ({\n    onPointerDown(event) {\n      if (isVirtualPointerEvent(event.nativeEvent)) return;\n      keyboardModalityRef.current = false;\n    },\n    onMouseLeave() {\n      blockFocusRef.current = false;\n    },\n    onFocus(event) {\n      if (blockFocusRef.current) return;\n      const target = getTarget(event.nativeEvent);\n      if (visibleOnly && isElement(target)) {\n        try {\n          // Mac Safari unreliably matches `:focus-visible` on the reference\n          // if focus was outside the page initially - use the fallback\n          // instead.\n          if (isSafari() && isMac()) throw Error();\n          if (!target.matches(':focus-visible')) return;\n        } catch (e) {\n          // Old browsers will throw an error when using `:focus-visible`.\n          if (!keyboardModalityRef.current && !isTypeableElement(target)) {\n            return;\n          }\n        }\n      }\n      onOpenChange(true, event.nativeEvent, 'focus');\n    },\n    onBlur(event) {\n      blockFocusRef.current = false;\n      const relatedTarget = event.relatedTarget;\n      const nativeEvent = event.nativeEvent;\n\n      // Hit the non-modal focus management portal guard. Focus will be\n      // moved into the floating element immediately after.\n      const movedToFocusGuard = isElement(relatedTarget) && relatedTarget.hasAttribute(createAttribute('focus-guard')) && relatedTarget.getAttribute('data-type') === 'outside';\n\n      // Wait for the window blur listener to fire.\n      timeoutRef.current = window.setTimeout(() => {\n        var _dataRef$current$floa;\n        const activeEl = activeElement(elements.domReference ? elements.domReference.ownerDocument : document);\n\n        // Focus left the page, keep it open.\n        if (!relatedTarget && activeEl === elements.domReference) return;\n\n        // When focusing the reference element (e.g. regular click), then\n        // clicking into the floating element, prevent it from hiding.\n        // Note: it must be focusable, e.g. `tabindex=\"-1\"`.\n        // We can not rely on relatedTarget to point to the correct element\n        // as it will only point to the shadow host of the newly focused element\n        // and not the element that actually has received focus if it is located\n        // inside a shadow root.\n        if (contains((_dataRef$current$floa = dataRef.current.floatingContext) == null ? void 0 : _dataRef$current$floa.refs.floating.current, activeEl) || contains(elements.domReference, activeEl) || movedToFocusGuard) {\n          return;\n        }\n        onOpenChange(false, nativeEvent, 'focus');\n      });\n    }\n  }), [dataRef, elements.domReference, onOpenChange, visibleOnly]);\n  return React.useMemo(() => enabled ? {\n    reference\n  } : {}, [enabled, reference]);\n}\n\nconst ACTIVE_KEY = 'active';\nconst SELECTED_KEY = 'selected';\nfunction mergeProps(userProps, propsList, elementKey) {\n  const map = new Map();\n  const isItem = elementKey === 'item';\n  let domUserProps = userProps;\n  if (isItem && userProps) {\n    const {\n      [ACTIVE_KEY]: _,\n      [SELECTED_KEY]: __,\n      ...validProps\n    } = userProps;\n    domUserProps = validProps;\n  }\n  return {\n    ...(elementKey === 'floating' && {\n      tabIndex: -1,\n      [FOCUSABLE_ATTRIBUTE]: ''\n    }),\n    ...domUserProps,\n    ...propsList.map(value => {\n      const propsOrGetProps = value ? value[elementKey] : null;\n      if (typeof propsOrGetProps === 'function') {\n        return userProps ? propsOrGetProps(userProps) : null;\n      }\n      return propsOrGetProps;\n    }).concat(userProps).reduce((acc, props) => {\n      if (!props) {\n        return acc;\n      }\n      Object.entries(props).forEach(_ref => {\n        let [key, value] = _ref;\n        if (isItem && [ACTIVE_KEY, SELECTED_KEY].includes(key)) {\n          return;\n        }\n        if (key.indexOf('on') === 0) {\n          if (!map.has(key)) {\n            map.set(key, []);\n          }\n          if (typeof value === 'function') {\n            var _map$get;\n            (_map$get = map.get(key)) == null || _map$get.push(value);\n            acc[key] = function () {\n              var _map$get2;\n              for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n                args[_key] = arguments[_key];\n              }\n              return (_map$get2 = map.get(key)) == null ? void 0 : _map$get2.map(fn => fn(...args)).find(val => val !== undefined);\n            };\n          }\n        } else {\n          acc[key] = value;\n        }\n      });\n      return acc;\n    }, {})\n  };\n}\n/**\n * Merges an array of interaction hooks' props into prop getters, allowing\n * event handler functions to be composed together without overwriting one\n * another.\n * @see https://floating-ui.com/docs/useInteractions\n */\nfunction useInteractions(propsList) {\n  if (propsList === void 0) {\n    propsList = [];\n  }\n  const referenceDeps = propsList.map(key => key == null ? void 0 : key.reference);\n  const floatingDeps = propsList.map(key => key == null ? void 0 : key.floating);\n  const itemDeps = propsList.map(key => key == null ? void 0 : key.item);\n  const getReferenceProps = React.useCallback(userProps => mergeProps(userProps, propsList, 'reference'),\n  // eslint-disable-next-line react-hooks/exhaustive-deps\n  referenceDeps);\n  const getFloatingProps = React.useCallback(userProps => mergeProps(userProps, propsList, 'floating'),\n  // eslint-disable-next-line react-hooks/exhaustive-deps\n  floatingDeps);\n  const getItemProps = React.useCallback(userProps => mergeProps(userProps, propsList, 'item'),\n  // eslint-disable-next-line react-hooks/exhaustive-deps\n  itemDeps);\n  return React.useMemo(() => ({\n    getReferenceProps,\n    getFloatingProps,\n    getItemProps\n  }), [getReferenceProps, getFloatingProps, getItemProps]);\n}\n\nlet isPreventScrollSupported = false;\nfunction doSwitch(orientation, vertical, horizontal) {\n  switch (orientation) {\n    case 'vertical':\n      return vertical;\n    case 'horizontal':\n      return horizontal;\n    default:\n      return vertical || horizontal;\n  }\n}\nfunction isMainOrientationKey(key, orientation) {\n  const vertical = key === ARROW_UP || key === ARROW_DOWN;\n  const horizontal = key === ARROW_LEFT || key === ARROW_RIGHT;\n  return doSwitch(orientation, vertical, horizontal);\n}\nfunction isMainOrientationToEndKey(key, orientation, rtl) {\n  const vertical = key === ARROW_DOWN;\n  const horizontal = rtl ? key === ARROW_LEFT : key === ARROW_RIGHT;\n  return doSwitch(orientation, vertical, horizontal) || key === 'Enter' || key === ' ' || key === '';\n}\nfunction isCrossOrientationOpenKey(key, orientation, rtl) {\n  const vertical = rtl ? key === ARROW_LEFT : key === ARROW_RIGHT;\n  const horizontal = key === ARROW_DOWN;\n  return doSwitch(orientation, vertical, horizontal);\n}\nfunction isCrossOrientationCloseKey(key, orientation, rtl) {\n  const vertical = rtl ? key === ARROW_RIGHT : key === ARROW_LEFT;\n  const horizontal = key === ARROW_UP;\n  return doSwitch(orientation, vertical, horizontal);\n}\n/**\n * Adds arrow key-based navigation of a list of items, either using real DOM\n * focus or virtual focus.\n * @see https://floating-ui.com/docs/useListNavigation\n */\nfunction useListNavigation(context, props) {\n  const {\n    open,\n    onOpenChange,\n    elements\n  } = context;\n  const {\n    listRef,\n    activeIndex,\n    onNavigate: unstable_onNavigate = () => {},\n    enabled = true,\n    selectedIndex = null,\n    allowEscape = false,\n    loop = false,\n    nested = false,\n    rtl = false,\n    virtual = false,\n    focusItemOnOpen = 'auto',\n    focusItemOnHover = true,\n    openOnArrowKeyDown = true,\n    disabledIndices = undefined,\n    orientation = 'vertical',\n    cols = 1,\n    scrollItemIntoView = true,\n    virtualItemRef,\n    itemSizes,\n    dense = false\n  } = props;\n  if (process.env.NODE_ENV !== \"production\") {\n    if (allowEscape) {\n      if (!loop) {\n        warn('`useListNavigation` looping must be enabled to allow escaping.');\n      }\n      if (!virtual) {\n        warn('`useListNavigation` must be virtual to allow escaping.');\n      }\n    }\n    if (orientation === 'vertical' && cols > 1) {\n      warn('In grid list navigation mode (`cols` > 1), the `orientation` should', 'be either \"horizontal\" or \"both\".');\n    }\n  }\n  const floatingFocusElement = getFloatingFocusElement(elements.floating);\n  const floatingFocusElementRef = useLatestRef(floatingFocusElement);\n  const parentId = useFloatingParentNodeId();\n  const tree = useFloatingTree();\n  const onNavigate = useEffectEvent(unstable_onNavigate);\n  const typeableComboboxReference = isTypeableCombobox(elements.domReference);\n  const focusItemOnOpenRef = React.useRef(focusItemOnOpen);\n  const indexRef = React.useRef(selectedIndex != null ? selectedIndex : -1);\n  const keyRef = React.useRef(null);\n  const isPointerModalityRef = React.useRef(true);\n  const previousOnNavigateRef = React.useRef(onNavigate);\n  const previousMountedRef = React.useRef(!!elements.floating);\n  const previousOpenRef = React.useRef(open);\n  const forceSyncFocus = React.useRef(false);\n  const forceScrollIntoViewRef = React.useRef(false);\n  const disabledIndicesRef = useLatestRef(disabledIndices);\n  const latestOpenRef = useLatestRef(open);\n  const scrollItemIntoViewRef = useLatestRef(scrollItemIntoView);\n  const selectedIndexRef = useLatestRef(selectedIndex);\n  const [activeId, setActiveId] = React.useState();\n  const [virtualId, setVirtualId] = React.useState();\n  const focusItem = useEffectEvent(function (listRef, indexRef, forceScrollIntoView) {\n    if (forceScrollIntoView === void 0) {\n      forceScrollIntoView = false;\n    }\n    function runFocus(item) {\n      if (virtual) {\n        setActiveId(item.id);\n        tree == null || tree.events.emit('virtualfocus', item);\n        if (virtualItemRef) {\n          virtualItemRef.current = item;\n        }\n      } else {\n        enqueueFocus(item, {\n          preventScroll: true,\n          // Mac Safari does not move the virtual cursor unless the focus call\n          // is sync. However, for the very first focus call, we need to wait\n          // for the position to be ready in order to prevent unwanted\n          // scrolling. This means the virtual cursor will not move to the first\n          // item when first opening the floating element, but will on\n          // subsequent calls. `preventScroll` is supported in modern Safari,\n          // so we can use that instead.\n          // iOS Safari must be async or the first item will not be focused.\n          sync: isMac() && isSafari() ? isPreventScrollSupported || forceSyncFocus.current : false\n        });\n      }\n    }\n    const initialItem = listRef.current[indexRef.current];\n    if (initialItem) {\n      runFocus(initialItem);\n    }\n    requestAnimationFrame(() => {\n      const waitedItem = listRef.current[indexRef.current] || initialItem;\n      if (!waitedItem) return;\n      if (!initialItem) {\n        runFocus(waitedItem);\n      }\n      const scrollIntoViewOptions = scrollItemIntoViewRef.current;\n      const shouldScrollIntoView = scrollIntoViewOptions && item && (forceScrollIntoView || !isPointerModalityRef.current);\n      if (shouldScrollIntoView) {\n        // JSDOM doesn't support `.scrollIntoView()` but it's widely supported\n        // by all browsers.\n        waitedItem.scrollIntoView == null || waitedItem.scrollIntoView(typeof scrollIntoViewOptions === 'boolean' ? {\n          block: 'nearest',\n          inline: 'nearest'\n        } : scrollIntoViewOptions);\n      }\n    });\n  });\n  index(() => {\n    document.createElement('div').focus({\n      get preventScroll() {\n        isPreventScrollSupported = true;\n        return false;\n      }\n    });\n  }, []);\n\n  // Sync `selectedIndex` to be the `activeIndex` upon opening the floating\n  // element. Also, reset `activeIndex` upon closing the floating element.\n  index(() => {\n    if (!enabled) return;\n    if (open && elements.floating) {\n      if (focusItemOnOpenRef.current && selectedIndex != null) {\n        // Regardless of the pointer modality, we want to ensure the selected\n        // item comes into view when the floating element is opened.\n        forceScrollIntoViewRef.current = true;\n        indexRef.current = selectedIndex;\n        onNavigate(selectedIndex);\n      }\n    } else if (previousMountedRef.current) {\n      // Since the user can specify `onNavigate` conditionally\n      // (onNavigate: open ? setActiveIndex : setSelectedIndex),\n      // we store and call the previous function.\n      indexRef.current = -1;\n      previousOnNavigateRef.current(null);\n    }\n  }, [enabled, open, elements.floating, selectedIndex, onNavigate]);\n\n  // Sync `activeIndex` to be the focused item while the floating element is\n  // open.\n  index(() => {\n    if (!enabled) return;\n    if (open && elements.floating) {\n      if (activeIndex == null) {\n        forceSyncFocus.current = false;\n        if (selectedIndexRef.current != null) {\n          return;\n        }\n\n        // Reset while the floating element was open (e.g. the list changed).\n        if (previousMountedRef.current) {\n          indexRef.current = -1;\n          focusItem(listRef, indexRef);\n        }\n\n        // Initial sync.\n        if ((!previousOpenRef.current || !previousMountedRef.current) && focusItemOnOpenRef.current && (keyRef.current != null || focusItemOnOpenRef.current === true && keyRef.current == null)) {\n          let runs = 0;\n          const waitForListPopulated = () => {\n            if (listRef.current[0] == null) {\n              // Avoid letting the browser paint if possible on the first try,\n              // otherwise use rAF. Don't try more than twice, since something\n              // is wrong otherwise.\n              if (runs < 2) {\n                const scheduler = runs ? requestAnimationFrame : queueMicrotask;\n                scheduler(waitForListPopulated);\n              }\n              runs++;\n            } else {\n              indexRef.current = keyRef.current == null || isMainOrientationToEndKey(keyRef.current, orientation, rtl) || nested ? getMinIndex(listRef, disabledIndicesRef.current) : getMaxIndex(listRef, disabledIndicesRef.current);\n              keyRef.current = null;\n              onNavigate(indexRef.current);\n            }\n          };\n          waitForListPopulated();\n        }\n      } else if (!isIndexOutOfBounds(listRef, activeIndex)) {\n        indexRef.current = activeIndex;\n        focusItem(listRef, indexRef, forceScrollIntoViewRef.current);\n        forceScrollIntoViewRef.current = false;\n      }\n    }\n  }, [enabled, open, elements.floating, activeIndex, selectedIndexRef, nested, listRef, orientation, rtl, onNavigate, focusItem, disabledIndicesRef]);\n\n  // Ensure the parent floating element has focus when a nested child closes\n  // to allow arrow key navigation to work after the pointer leaves the child.\n  index(() => {\n    var _nodes$find;\n    if (!enabled || elements.floating || !tree || virtual || !previousMountedRef.current) {\n      return;\n    }\n    const nodes = tree.nodesRef.current;\n    const parent = (_nodes$find = nodes.find(node => node.id === parentId)) == null || (_nodes$find = _nodes$find.context) == null ? void 0 : _nodes$find.elements.floating;\n    const activeEl = activeElement(getDocument(elements.floating));\n    const treeContainsActiveEl = nodes.some(node => node.context && contains(node.context.elements.floating, activeEl));\n    if (parent && !treeContainsActiveEl && isPointerModalityRef.current) {\n      parent.focus({\n        preventScroll: true\n      });\n    }\n  }, [enabled, elements.floating, tree, parentId, virtual]);\n  index(() => {\n    if (!enabled) return;\n    if (!tree) return;\n    if (!virtual) return;\n    if (parentId) return;\n    function handleVirtualFocus(item) {\n      setVirtualId(item.id);\n      if (virtualItemRef) {\n        virtualItemRef.current = item;\n      }\n    }\n    tree.events.on('virtualfocus', handleVirtualFocus);\n    return () => {\n      tree.events.off('virtualfocus', handleVirtualFocus);\n    };\n  }, [enabled, tree, virtual, parentId, virtualItemRef]);\n  index(() => {\n    previousOnNavigateRef.current = onNavigate;\n    previousMountedRef.current = !!elements.floating;\n  });\n  index(() => {\n    if (!open) {\n      keyRef.current = null;\n    }\n  }, [open]);\n  index(() => {\n    previousOpenRef.current = open;\n  }, [open]);\n  const hasActiveIndex = activeIndex != null;\n  const item = React.useMemo(() => {\n    function syncCurrentTarget(currentTarget) {\n      if (!open) return;\n      const index = listRef.current.indexOf(currentTarget);\n      if (index !== -1) {\n        onNavigate(index);\n      }\n    }\n    const props = {\n      onFocus(_ref) {\n        let {\n          currentTarget\n        } = _ref;\n        syncCurrentTarget(currentTarget);\n      },\n      onClick: _ref2 => {\n        let {\n          currentTarget\n        } = _ref2;\n        return currentTarget.focus({\n          preventScroll: true\n        });\n      },\n      // Safari\n      ...(focusItemOnHover && {\n        onMouseMove(_ref3) {\n          let {\n            currentTarget\n          } = _ref3;\n          syncCurrentTarget(currentTarget);\n        },\n        onPointerLeave(_ref4) {\n          let {\n            pointerType\n          } = _ref4;\n          if (!isPointerModalityRef.current || pointerType === 'touch') {\n            return;\n          }\n          indexRef.current = -1;\n          focusItem(listRef, indexRef);\n          onNavigate(null);\n          if (!virtual) {\n            enqueueFocus(floatingFocusElementRef.current, {\n              preventScroll: true\n            });\n          }\n        }\n      })\n    };\n    return props;\n  }, [open, floatingFocusElementRef, focusItem, focusItemOnHover, listRef, onNavigate, virtual]);\n  const commonOnKeyDown = useEffectEvent(event => {\n    isPointerModalityRef.current = false;\n    forceSyncFocus.current = true;\n\n    // When composing a character, Chrome fires ArrowDown twice. Firefox/Safari\n    // don't appear to suffer from this. `event.isComposing` is avoided due to\n    // Safari not supporting it properly (although it's not needed in the first\n    // place for Safari, just avoiding any possible issues).\n    if (event.which === 229) {\n      return;\n    }\n\n    // If the floating element is animating out, ignore navigation. Otherwise,\n    // the `activeIndex` gets set to 0 despite not being open so the next time\n    // the user ArrowDowns, the first item won't be focused.\n    if (!latestOpenRef.current && event.currentTarget === floatingFocusElementRef.current) {\n      return;\n    }\n    if (nested && isCrossOrientationCloseKey(event.key, orientation, rtl)) {\n      stopEvent(event);\n      onOpenChange(false, event.nativeEvent, 'list-navigation');\n      if (isHTMLElement(elements.domReference)) {\n        if (virtual) {\n          tree == null || tree.events.emit('virtualfocus', elements.domReference);\n        } else {\n          elements.domReference.focus();\n        }\n      }\n      return;\n    }\n    const currentIndex = indexRef.current;\n    const minIndex = getMinIndex(listRef, disabledIndices);\n    const maxIndex = getMaxIndex(listRef, disabledIndices);\n    if (!typeableComboboxReference) {\n      if (event.key === 'Home') {\n        stopEvent(event);\n        indexRef.current = minIndex;\n        onNavigate(indexRef.current);\n      }\n      if (event.key === 'End') {\n        stopEvent(event);\n        indexRef.current = maxIndex;\n        onNavigate(indexRef.current);\n      }\n    }\n\n    // Grid navigation.\n    if (cols > 1) {\n      const sizes = itemSizes || Array.from({\n        length: listRef.current.length\n      }, () => ({\n        width: 1,\n        height: 1\n      }));\n      // To calculate movements on the grid, we use hypothetical cell indices\n      // as if every item was 1x1, then convert back to real indices.\n      const cellMap = buildCellMap(sizes, cols, dense);\n      const minGridIndex = cellMap.findIndex(index => index != null && !isDisabled(listRef.current, index, disabledIndices));\n      // last enabled index\n      const maxGridIndex = cellMap.reduce((foundIndex, index, cellIndex) => index != null && !isDisabled(listRef.current, index, disabledIndices) ? cellIndex : foundIndex, -1);\n      const index = cellMap[getGridNavigatedIndex({\n        current: cellMap.map(itemIndex => itemIndex != null ? listRef.current[itemIndex] : null)\n      }, {\n        event,\n        orientation,\n        loop,\n        rtl,\n        cols,\n        // treat undefined (empty grid spaces) as disabled indices so we\n        // don't end up in them\n        disabledIndices: getCellIndices([...(disabledIndices || listRef.current.map((_, index) => isDisabled(listRef.current, index) ? index : undefined)), undefined], cellMap),\n        minIndex: minGridIndex,\n        maxIndex: maxGridIndex,\n        prevIndex: getCellIndexOfCorner(indexRef.current > maxIndex ? minIndex : indexRef.current, sizes, cellMap, cols,\n        // use a corner matching the edge closest to the direction\n        // we're moving in so we don't end up in the same item. Prefer\n        // top/left over bottom/right.\n        event.key === ARROW_DOWN ? 'bl' : event.key === (rtl ? ARROW_LEFT : ARROW_RIGHT) ? 'tr' : 'tl'),\n        stopEvent: true\n      })];\n      if (index != null) {\n        indexRef.current = index;\n        onNavigate(indexRef.current);\n      }\n      if (orientation === 'both') {\n        return;\n      }\n    }\n    if (isMainOrientationKey(event.key, orientation)) {\n      stopEvent(event);\n\n      // Reset the index if no item is focused.\n      if (open && !virtual && activeElement(event.currentTarget.ownerDocument) === event.currentTarget) {\n        indexRef.current = isMainOrientationToEndKey(event.key, orientation, rtl) ? minIndex : maxIndex;\n        onNavigate(indexRef.current);\n        return;\n      }\n      if (isMainOrientationToEndKey(event.key, orientation, rtl)) {\n        if (loop) {\n          indexRef.current = currentIndex >= maxIndex ? allowEscape && currentIndex !== listRef.current.length ? -1 : minIndex : findNonDisabledIndex(listRef, {\n            startingIndex: currentIndex,\n            disabledIndices\n          });\n        } else {\n          indexRef.current = Math.min(maxIndex, findNonDisabledIndex(listRef, {\n            startingIndex: currentIndex,\n            disabledIndices\n          }));\n        }\n      } else {\n        if (loop) {\n          indexRef.current = currentIndex <= minIndex ? allowEscape && currentIndex !== -1 ? listRef.current.length : maxIndex : findNonDisabledIndex(listRef, {\n            startingIndex: currentIndex,\n            decrement: true,\n            disabledIndices\n          });\n        } else {\n          indexRef.current = Math.max(minIndex, findNonDisabledIndex(listRef, {\n            startingIndex: currentIndex,\n            decrement: true,\n            disabledIndices\n          }));\n        }\n      }\n      if (isIndexOutOfBounds(listRef, indexRef.current)) {\n        onNavigate(null);\n      } else {\n        onNavigate(indexRef.current);\n      }\n    }\n  });\n  const ariaActiveDescendantProp = React.useMemo(() => {\n    return virtual && open && hasActiveIndex && {\n      'aria-activedescendant': virtualId || activeId\n    };\n  }, [virtual, open, hasActiveIndex, virtualId, activeId]);\n  const floating = React.useMemo(() => {\n    return {\n      'aria-orientation': orientation === 'both' ? undefined : orientation,\n      ...(!isTypeableCombobox(elements.domReference) && ariaActiveDescendantProp),\n      onKeyDown: commonOnKeyDown,\n      onPointerMove() {\n        isPointerModalityRef.current = true;\n      }\n    };\n  }, [ariaActiveDescendantProp, commonOnKeyDown, elements.domReference, orientation]);\n  const reference = React.useMemo(() => {\n    function checkVirtualMouse(event) {\n      if (focusItemOnOpen === 'auto' && isVirtualClick(event.nativeEvent)) {\n        focusItemOnOpenRef.current = true;\n      }\n    }\n    function checkVirtualPointer(event) {\n      // `pointerdown` fires first, reset the state then perform the checks.\n      focusItemOnOpenRef.current = focusItemOnOpen;\n      if (focusItemOnOpen === 'auto' && isVirtualPointerEvent(event.nativeEvent)) {\n        focusItemOnOpenRef.current = true;\n      }\n    }\n    return {\n      ...ariaActiveDescendantProp,\n      onKeyDown(event) {\n        isPointerModalityRef.current = false;\n        const isArrowKey = event.key.startsWith('Arrow');\n        const isHomeOrEndKey = ['Home', 'End'].includes(event.key);\n        const isMoveKey = isArrowKey || isHomeOrEndKey;\n        const isCrossOpenKey = isCrossOrientationOpenKey(event.key, orientation, rtl);\n        const isCrossCloseKey = isCrossOrientationCloseKey(event.key, orientation, rtl);\n        const isMainKey = isMainOrientationKey(event.key, orientation);\n        const isNavigationKey = (nested ? isCrossOpenKey : isMainKey) || event.key === 'Enter' || event.key.trim() === '';\n        if (virtual && open) {\n          const rootNode = tree == null ? void 0 : tree.nodesRef.current.find(node => node.parentId == null);\n          const deepestNode = tree && rootNode ? getDeepestNode(tree.nodesRef.current, rootNode.id) : null;\n          if (isMoveKey && deepestNode && virtualItemRef) {\n            const eventObject = new KeyboardEvent('keydown', {\n              key: event.key,\n              bubbles: true\n            });\n            if (isCrossOpenKey || isCrossCloseKey) {\n              var _deepestNode$context, _deepestNode$context2;\n              const isCurrentTarget = ((_deepestNode$context = deepestNode.context) == null ? void 0 : _deepestNode$context.elements.domReference) === event.currentTarget;\n              const dispatchItem = isCrossCloseKey && !isCurrentTarget ? (_deepestNode$context2 = deepestNode.context) == null ? void 0 : _deepestNode$context2.elements.domReference : isCrossOpenKey ? listRef.current.find(item => (item == null ? void 0 : item.id) === activeId) : null;\n              if (dispatchItem) {\n                stopEvent(event);\n                dispatchItem.dispatchEvent(eventObject);\n                setVirtualId(undefined);\n              }\n            }\n            if ((isMainKey || isHomeOrEndKey) && deepestNode.context) {\n              if (deepestNode.context.open && deepestNode.parentId && event.currentTarget !== deepestNode.context.elements.domReference) {\n                var _deepestNode$context$;\n                stopEvent(event);\n                (_deepestNode$context$ = deepestNode.context.elements.domReference) == null || _deepestNode$context$.dispatchEvent(eventObject);\n                return;\n              }\n            }\n          }\n          return commonOnKeyDown(event);\n        }\n\n        // If a floating element should not open on arrow key down, avoid\n        // setting `activeIndex` while it's closed.\n        if (!open && !openOnArrowKeyDown && isArrowKey) {\n          return;\n        }\n        if (isNavigationKey) {\n          keyRef.current = nested && isMainKey ? null : event.key;\n        }\n        if (nested) {\n          if (isCrossOpenKey) {\n            stopEvent(event);\n            if (open) {\n              indexRef.current = getMinIndex(listRef, disabledIndicesRef.current);\n              onNavigate(indexRef.current);\n            } else {\n              onOpenChange(true, event.nativeEvent, 'list-navigation');\n            }\n          }\n          return;\n        }\n        if (isMainKey) {\n          if (selectedIndex != null) {\n            indexRef.current = selectedIndex;\n          }\n          stopEvent(event);\n          if (!open && openOnArrowKeyDown) {\n            onOpenChange(true, event.nativeEvent, 'list-navigation');\n          } else {\n            commonOnKeyDown(event);\n          }\n          if (open) {\n            onNavigate(indexRef.current);\n          }\n        }\n      },\n      onFocus() {\n        if (open && !virtual) {\n          onNavigate(null);\n        }\n      },\n      onPointerDown: checkVirtualPointer,\n      onMouseDown: checkVirtualMouse,\n      onClick: checkVirtualMouse\n    };\n  }, [activeId, ariaActiveDescendantProp, commonOnKeyDown, disabledIndicesRef, focusItemOnOpen, listRef, nested, onNavigate, onOpenChange, open, openOnArrowKeyDown, orientation, rtl, selectedIndex, tree, virtual, virtualItemRef]);\n  return React.useMemo(() => enabled ? {\n    reference,\n    floating,\n    item\n  } : {}, [enabled, reference, floating, item]);\n}\n\nconst componentRoleToAriaRoleMap = /*#__PURE__*/new Map([['select', 'listbox'], ['combobox', 'listbox'], ['label', false]]);\n\n/**\n * Adds base screen reader props to the reference and floating elements for a\n * given floating element `role`.\n * @see https://floating-ui.com/docs/useRole\n */\nfunction useRole(context, props) {\n  var _componentRoleToAriaR;\n  if (props === void 0) {\n    props = {};\n  }\n  const {\n    open,\n    floatingId\n  } = context;\n  const {\n    enabled = true,\n    role = 'dialog'\n  } = props;\n  const ariaRole = (_componentRoleToAriaR = componentRoleToAriaRoleMap.get(role)) != null ? _componentRoleToAriaR : role;\n  const referenceId = useId();\n  const parentId = useFloatingParentNodeId();\n  const isNested = parentId != null;\n  const reference = React.useMemo(() => {\n    if (ariaRole === 'tooltip' || role === 'label') {\n      return {\n        [\"aria-\" + (role === 'label' ? 'labelledby' : 'describedby')]: open ? floatingId : undefined\n      };\n    }\n    return {\n      'aria-expanded': open ? 'true' : 'false',\n      'aria-haspopup': ariaRole === 'alertdialog' ? 'dialog' : ariaRole,\n      'aria-controls': open ? floatingId : undefined,\n      ...(ariaRole === 'listbox' && {\n        role: 'combobox'\n      }),\n      ...(ariaRole === 'menu' && {\n        id: referenceId\n      }),\n      ...(ariaRole === 'menu' && isNested && {\n        role: 'menuitem'\n      }),\n      ...(role === 'select' && {\n        'aria-autocomplete': 'none'\n      }),\n      ...(role === 'combobox' && {\n        'aria-autocomplete': 'list'\n      })\n    };\n  }, [ariaRole, floatingId, isNested, open, referenceId, role]);\n  const floating = React.useMemo(() => {\n    const floatingProps = {\n      id: floatingId,\n      ...(ariaRole && {\n        role: ariaRole\n      })\n    };\n    if (ariaRole === 'tooltip' || role === 'label') {\n      return floatingProps;\n    }\n    return {\n      ...floatingProps,\n      ...(ariaRole === 'menu' && {\n        'aria-labelledby': referenceId\n      })\n    };\n  }, [ariaRole, floatingId, referenceId, role]);\n  const item = React.useCallback(_ref => {\n    let {\n      active,\n      selected\n    } = _ref;\n    const commonProps = {\n      role: 'option',\n      ...(active && {\n        id: floatingId + \"-option\"\n      })\n    };\n\n    // For `menu`, we are unable to tell if the item is a `menuitemradio`\n    // or `menuitemcheckbox`. For backwards-compatibility reasons, also\n    // avoid defaulting to `menuitem` as it may overwrite custom role props.\n    switch (role) {\n      case 'select':\n        return {\n          ...commonProps,\n          'aria-selected': active && selected\n        };\n      case 'combobox':\n        {\n          return {\n            ...commonProps,\n            ...(active && {\n              'aria-selected': true\n            })\n          };\n        }\n    }\n    return {};\n  }, [floatingId, role]);\n  return React.useMemo(() => enabled ? {\n    reference,\n    floating,\n    item\n  } : {}, [enabled, reference, floating, item]);\n}\n\n// Converts a JS style key like `backgroundColor` to a CSS transition-property\n// like `background-color`.\nconst camelCaseToKebabCase = str => str.replace(/[A-Z]+(?![a-z])|[A-Z]/g, ($, ofs) => (ofs ? '-' : '') + $.toLowerCase());\nfunction execWithArgsOrReturn(valueOrFn, args) {\n  return typeof valueOrFn === 'function' ? valueOrFn(args) : valueOrFn;\n}\nfunction useDelayUnmount(open, durationMs) {\n  const [isMounted, setIsMounted] = React.useState(open);\n  if (open && !isMounted) {\n    setIsMounted(true);\n  }\n  React.useEffect(() => {\n    if (!open && isMounted) {\n      const timeout = setTimeout(() => setIsMounted(false), durationMs);\n      return () => clearTimeout(timeout);\n    }\n  }, [open, isMounted, durationMs]);\n  return isMounted;\n}\n/**\n * Provides a status string to apply CSS transitions to a floating element,\n * correctly handling placement-aware transitions.\n * @see https://floating-ui.com/docs/useTransition#usetransitionstatus\n */\nfunction useTransitionStatus(context, props) {\n  if (props === void 0) {\n    props = {};\n  }\n  const {\n    open,\n    elements: {\n      floating\n    }\n  } = context;\n  const {\n    duration = 250\n  } = props;\n  const isNumberDuration = typeof duration === 'number';\n  const closeDuration = (isNumberDuration ? duration : duration.close) || 0;\n  const [status, setStatus] = React.useState('unmounted');\n  const isMounted = useDelayUnmount(open, closeDuration);\n  if (!isMounted && status === 'close') {\n    setStatus('unmounted');\n  }\n  index(() => {\n    if (!floating) return;\n    if (open) {\n      setStatus('initial');\n      const frame = requestAnimationFrame(() => {\n        setStatus('open');\n      });\n      return () => {\n        cancelAnimationFrame(frame);\n      };\n    }\n    setStatus('close');\n  }, [open, floating]);\n  return {\n    isMounted,\n    status\n  };\n}\n/**\n * Provides styles to apply CSS transitions to a floating element, correctly\n * handling placement-aware transitions. Wrapper around `useTransitionStatus`.\n * @see https://floating-ui.com/docs/useTransition#usetransitionstyles\n */\nfunction useTransitionStyles(context, props) {\n  if (props === void 0) {\n    props = {};\n  }\n  const {\n    initial: unstable_initial = {\n      opacity: 0\n    },\n    open: unstable_open,\n    close: unstable_close,\n    common: unstable_common,\n    duration = 250\n  } = props;\n  const placement = context.placement;\n  const side = placement.split('-')[0];\n  const fnArgs = React.useMemo(() => ({\n    side,\n    placement\n  }), [side, placement]);\n  const isNumberDuration = typeof duration === 'number';\n  const openDuration = (isNumberDuration ? duration : duration.open) || 0;\n  const closeDuration = (isNumberDuration ? duration : duration.close) || 0;\n  const [styles, setStyles] = React.useState(() => ({\n    ...execWithArgsOrReturn(unstable_common, fnArgs),\n    ...execWithArgsOrReturn(unstable_initial, fnArgs)\n  }));\n  const {\n    isMounted,\n    status\n  } = useTransitionStatus(context, {\n    duration\n  });\n  const initialRef = useLatestRef(unstable_initial);\n  const openRef = useLatestRef(unstable_open);\n  const closeRef = useLatestRef(unstable_close);\n  const commonRef = useLatestRef(unstable_common);\n  index(() => {\n    const initialStyles = execWithArgsOrReturn(initialRef.current, fnArgs);\n    const closeStyles = execWithArgsOrReturn(closeRef.current, fnArgs);\n    const commonStyles = execWithArgsOrReturn(commonRef.current, fnArgs);\n    const openStyles = execWithArgsOrReturn(openRef.current, fnArgs) || Object.keys(initialStyles).reduce((acc, key) => {\n      acc[key] = '';\n      return acc;\n    }, {});\n    if (status === 'initial') {\n      setStyles(styles => ({\n        transitionProperty: styles.transitionProperty,\n        ...commonStyles,\n        ...initialStyles\n      }));\n    }\n    if (status === 'open') {\n      setStyles({\n        transitionProperty: Object.keys(openStyles).map(camelCaseToKebabCase).join(','),\n        transitionDuration: openDuration + \"ms\",\n        ...commonStyles,\n        ...openStyles\n      });\n    }\n    if (status === 'close') {\n      const styles = closeStyles || initialStyles;\n      setStyles({\n        transitionProperty: Object.keys(styles).map(camelCaseToKebabCase).join(','),\n        transitionDuration: closeDuration + \"ms\",\n        ...commonStyles,\n        ...styles\n      });\n    }\n  }, [closeDuration, closeRef, initialRef, openRef, commonRef, openDuration, status, fnArgs]);\n  return {\n    isMounted,\n    styles\n  };\n}\n\n/**\n * Provides a matching callback that can be used to focus an item as the user\n * types, often used in tandem with `useListNavigation()`.\n * @see https://floating-ui.com/docs/useTypeahead\n */\nfunction useTypeahead(context, props) {\n  var _ref;\n  const {\n    open,\n    dataRef\n  } = context;\n  const {\n    listRef,\n    activeIndex,\n    onMatch: unstable_onMatch,\n    onTypingChange: unstable_onTypingChange,\n    enabled = true,\n    findMatch = null,\n    resetMs = 750,\n    ignoreKeys = [],\n    selectedIndex = null\n  } = props;\n  const timeoutIdRef = React.useRef();\n  const stringRef = React.useRef('');\n  const prevIndexRef = React.useRef((_ref = selectedIndex != null ? selectedIndex : activeIndex) != null ? _ref : -1);\n  const matchIndexRef = React.useRef(null);\n  const onMatch = useEffectEvent(unstable_onMatch);\n  const onTypingChange = useEffectEvent(unstable_onTypingChange);\n  const findMatchRef = useLatestRef(findMatch);\n  const ignoreKeysRef = useLatestRef(ignoreKeys);\n  index(() => {\n    if (open) {\n      clearTimeout(timeoutIdRef.current);\n      matchIndexRef.current = null;\n      stringRef.current = '';\n    }\n  }, [open]);\n  index(() => {\n    // Sync arrow key navigation but not typeahead navigation.\n    if (open && stringRef.current === '') {\n      var _ref2;\n      prevIndexRef.current = (_ref2 = selectedIndex != null ? selectedIndex : activeIndex) != null ? _ref2 : -1;\n    }\n  }, [open, selectedIndex, activeIndex]);\n  const setTypingChange = useEffectEvent(value => {\n    if (value) {\n      if (!dataRef.current.typing) {\n        dataRef.current.typing = value;\n        onTypingChange(value);\n      }\n    } else {\n      if (dataRef.current.typing) {\n        dataRef.current.typing = value;\n        onTypingChange(value);\n      }\n    }\n  });\n  const onKeyDown = useEffectEvent(event => {\n    function getMatchingIndex(list, orderedList, string) {\n      const str = findMatchRef.current ? findMatchRef.current(orderedList, string) : orderedList.find(text => (text == null ? void 0 : text.toLocaleLowerCase().indexOf(string.toLocaleLowerCase())) === 0);\n      return str ? list.indexOf(str) : -1;\n    }\n    const listContent = listRef.current;\n    if (stringRef.current.length > 0 && stringRef.current[0] !== ' ') {\n      if (getMatchingIndex(listContent, listContent, stringRef.current) === -1) {\n        setTypingChange(false);\n      } else if (event.key === ' ') {\n        stopEvent(event);\n      }\n    }\n    if (listContent == null || ignoreKeysRef.current.includes(event.key) ||\n    // Character key.\n    event.key.length !== 1 ||\n    // Modifier key.\n    event.ctrlKey || event.metaKey || event.altKey) {\n      return;\n    }\n    if (open && event.key !== ' ') {\n      stopEvent(event);\n      setTypingChange(true);\n    }\n\n    // Bail out if the list contains a word like \"llama\" or \"aaron\". TODO:\n    // allow it in this case, too.\n    const allowRapidSuccessionOfFirstLetter = listContent.every(text => {\n      var _text$, _text$2;\n      return text ? ((_text$ = text[0]) == null ? void 0 : _text$.toLocaleLowerCase()) !== ((_text$2 = text[1]) == null ? void 0 : _text$2.toLocaleLowerCase()) : true;\n    });\n\n    // Allows the user to cycle through items that start with the same letter\n    // in rapid succession.\n    if (allowRapidSuccessionOfFirstLetter && stringRef.current === event.key) {\n      stringRef.current = '';\n      prevIndexRef.current = matchIndexRef.current;\n    }\n    stringRef.current += event.key;\n    clearTimeout(timeoutIdRef.current);\n    timeoutIdRef.current = setTimeout(() => {\n      stringRef.current = '';\n      prevIndexRef.current = matchIndexRef.current;\n      setTypingChange(false);\n    }, resetMs);\n    const prevIndex = prevIndexRef.current;\n    const index = getMatchingIndex(listContent, [...listContent.slice((prevIndex || 0) + 1), ...listContent.slice(0, (prevIndex || 0) + 1)], stringRef.current);\n    if (index !== -1) {\n      onMatch(index);\n      matchIndexRef.current = index;\n    } else if (event.key !== ' ') {\n      stringRef.current = '';\n      setTypingChange(false);\n    }\n  });\n  const reference = React.useMemo(() => ({\n    onKeyDown\n  }), [onKeyDown]);\n  const floating = React.useMemo(() => {\n    return {\n      onKeyDown,\n      onKeyUp(event) {\n        if (event.key === ' ') {\n          setTypingChange(false);\n        }\n      }\n    };\n  }, [onKeyDown, setTypingChange]);\n  return React.useMemo(() => enabled ? {\n    reference,\n    floating\n  } : {}, [enabled, reference, floating]);\n}\n\nfunction getArgsWithCustomFloatingHeight(state, height) {\n  return {\n    ...state,\n    rects: {\n      ...state.rects,\n      floating: {\n        ...state.rects.floating,\n        height\n      }\n    }\n  };\n}\n/**\n * Positions the floating element such that an inner element inside of it is\n * anchored to the reference element.\n * @see https://floating-ui.com/docs/inner\n */\nconst inner = props => ({\n  name: 'inner',\n  options: props,\n  async fn(state) {\n    const {\n      listRef,\n      overflowRef,\n      onFallbackChange,\n      offset: innerOffset = 0,\n      index = 0,\n      minItemsVisible = 4,\n      referenceOverflowThreshold = 0,\n      scrollRef,\n      ...detectOverflowOptions\n    } = evaluate(props, state);\n    const {\n      rects,\n      elements: {\n        floating\n      }\n    } = state;\n    const item = listRef.current[index];\n    const scrollEl = (scrollRef == null ? void 0 : scrollRef.current) || floating;\n\n    // Valid combinations:\n    // 1. Floating element is the scrollRef and has a border (default)\n    // 2. Floating element is not the scrollRef, floating element has a border\n    // 3. Floating element is not the scrollRef, scrollRef has a border\n    // Floating > {...getFloatingProps()} wrapper > scrollRef > items is not\n    // allowed as VoiceOver doesn't work.\n    const clientTop = floating.clientTop || scrollEl.clientTop;\n    const floatingIsBordered = floating.clientTop !== 0;\n    const scrollElIsBordered = scrollEl.clientTop !== 0;\n    const floatingIsScrollEl = floating === scrollEl;\n    if (process.env.NODE_ENV !== \"production\") {\n      if (!state.placement.startsWith('bottom')) {\n        warn('`placement` side must be \"bottom\" when using the `inner`', 'middleware.');\n      }\n    }\n    if (!item) {\n      return {};\n    }\n    const nextArgs = {\n      ...state,\n      ...(await offset(-item.offsetTop - floating.clientTop - rects.reference.height / 2 - item.offsetHeight / 2 - innerOffset).fn(state))\n    };\n    const overflow = await detectOverflow(getArgsWithCustomFloatingHeight(nextArgs, scrollEl.scrollHeight + clientTop + floating.clientTop), detectOverflowOptions);\n    const refOverflow = await detectOverflow(nextArgs, {\n      ...detectOverflowOptions,\n      elementContext: 'reference'\n    });\n    const diffY = max(0, overflow.top);\n    const nextY = nextArgs.y + diffY;\n    const isScrollable = scrollEl.scrollHeight > scrollEl.clientHeight;\n    const rounder = isScrollable ? v => v : round;\n    const maxHeight = rounder(max(0, scrollEl.scrollHeight + (floatingIsBordered && floatingIsScrollEl || scrollElIsBordered ? clientTop * 2 : 0) - diffY - max(0, overflow.bottom)));\n    scrollEl.style.maxHeight = maxHeight + \"px\";\n    scrollEl.scrollTop = diffY;\n\n    // There is not enough space, fallback to standard anchored positioning\n    if (onFallbackChange) {\n      const shouldFallback = scrollEl.offsetHeight < item.offsetHeight * min(minItemsVisible, listRef.current.length) - 1 || refOverflow.top >= -referenceOverflowThreshold || refOverflow.bottom >= -referenceOverflowThreshold;\n      ReactDOM.flushSync(() => onFallbackChange(shouldFallback));\n    }\n    if (overflowRef) {\n      overflowRef.current = await detectOverflow(getArgsWithCustomFloatingHeight({\n        ...nextArgs,\n        y: nextY\n      }, scrollEl.offsetHeight + clientTop + floating.clientTop), detectOverflowOptions);\n    }\n    return {\n      y: nextY\n    };\n  }\n});\n/**\n * Changes the `inner` middleware's `offset` upon a `wheel` event to\n * expand the floating element's height, revealing more list items.\n * @see https://floating-ui.com/docs/inner\n */\nfunction useInnerOffset(context, props) {\n  const {\n    open,\n    elements\n  } = context;\n  const {\n    enabled = true,\n    overflowRef,\n    scrollRef,\n    onChange: unstable_onChange\n  } = props;\n  const onChange = useEffectEvent(unstable_onChange);\n  const controlledScrollingRef = React.useRef(false);\n  const prevScrollTopRef = React.useRef(null);\n  const initialOverflowRef = React.useRef(null);\n  React.useEffect(() => {\n    if (!enabled) return;\n    function onWheel(e) {\n      if (e.ctrlKey || !el || overflowRef.current == null) {\n        return;\n      }\n      const dY = e.deltaY;\n      const isAtTop = overflowRef.current.top >= -0.5;\n      const isAtBottom = overflowRef.current.bottom >= -0.5;\n      const remainingScroll = el.scrollHeight - el.clientHeight;\n      const sign = dY < 0 ? -1 : 1;\n      const method = dY < 0 ? 'max' : 'min';\n      if (el.scrollHeight <= el.clientHeight) {\n        return;\n      }\n      if (!isAtTop && dY > 0 || !isAtBottom && dY < 0) {\n        e.preventDefault();\n        ReactDOM.flushSync(() => {\n          onChange(d => d + Math[method](dY, remainingScroll * sign));\n        });\n      } else if (/firefox/i.test(getUserAgent())) {\n        // Needed to propagate scrolling during momentum scrolling phase once\n        // it gets limited by the boundary. UX improvement, not critical.\n        el.scrollTop += dY;\n      }\n    }\n    const el = (scrollRef == null ? void 0 : scrollRef.current) || elements.floating;\n    if (open && el) {\n      el.addEventListener('wheel', onWheel);\n\n      // Wait for the position to be ready.\n      requestAnimationFrame(() => {\n        prevScrollTopRef.current = el.scrollTop;\n        if (overflowRef.current != null) {\n          initialOverflowRef.current = {\n            ...overflowRef.current\n          };\n        }\n      });\n      return () => {\n        prevScrollTopRef.current = null;\n        initialOverflowRef.current = null;\n        el.removeEventListener('wheel', onWheel);\n      };\n    }\n  }, [enabled, open, elements.floating, overflowRef, scrollRef, onChange]);\n  const floating = React.useMemo(() => ({\n    onKeyDown() {\n      controlledScrollingRef.current = true;\n    },\n    onWheel() {\n      controlledScrollingRef.current = false;\n    },\n    onPointerMove() {\n      controlledScrollingRef.current = false;\n    },\n    onScroll() {\n      const el = (scrollRef == null ? void 0 : scrollRef.current) || elements.floating;\n      if (!overflowRef.current || !el || !controlledScrollingRef.current) {\n        return;\n      }\n      if (prevScrollTopRef.current !== null) {\n        const scrollDiff = el.scrollTop - prevScrollTopRef.current;\n        if (overflowRef.current.bottom < -0.5 && scrollDiff < -1 || overflowRef.current.top < -0.5 && scrollDiff > 1) {\n          ReactDOM.flushSync(() => onChange(d => d + scrollDiff));\n        }\n      }\n\n      // [Firefox] Wait for the height change to have been applied.\n      requestAnimationFrame(() => {\n        prevScrollTopRef.current = el.scrollTop;\n      });\n    }\n  }), [elements.floating, onChange, overflowRef, scrollRef]);\n  return React.useMemo(() => enabled ? {\n    floating\n  } : {}, [enabled, floating]);\n}\n\nfunction isPointInPolygon(point, polygon) {\n  const [x, y] = point;\n  let isInside = false;\n  const length = polygon.length;\n  for (let i = 0, j = length - 1; i < length; j = i++) {\n    const [xi, yi] = polygon[i] || [0, 0];\n    const [xj, yj] = polygon[j] || [0, 0];\n    const intersect = yi >= y !== yj >= y && x <= (xj - xi) * (y - yi) / (yj - yi) + xi;\n    if (intersect) {\n      isInside = !isInside;\n    }\n  }\n  return isInside;\n}\nfunction isInside(point, rect) {\n  return point[0] >= rect.x && point[0] <= rect.x + rect.width && point[1] >= rect.y && point[1] <= rect.y + rect.height;\n}\n/**\n * Generates a safe polygon area that the user can traverse without closing the\n * floating element once leaving the reference element.\n * @see https://floating-ui.com/docs/useHover#safepolygon\n */\nfunction safePolygon(options) {\n  if (options === void 0) {\n    options = {};\n  }\n  const {\n    buffer = 0.5,\n    blockPointerEvents = false,\n    requireIntent = true\n  } = options;\n  let timeoutId;\n  let hasLanded = false;\n  let lastX = null;\n  let lastY = null;\n  let lastCursorTime = performance.now();\n  function getCursorSpeed(x, y) {\n    const currentTime = performance.now();\n    const elapsedTime = currentTime - lastCursorTime;\n    if (lastX === null || lastY === null || elapsedTime === 0) {\n      lastX = x;\n      lastY = y;\n      lastCursorTime = currentTime;\n      return null;\n    }\n    const deltaX = x - lastX;\n    const deltaY = y - lastY;\n    const distance = Math.sqrt(deltaX * deltaX + deltaY * deltaY);\n    const speed = distance / elapsedTime; // px / ms\n\n    lastX = x;\n    lastY = y;\n    lastCursorTime = currentTime;\n    return speed;\n  }\n  const fn = _ref => {\n    let {\n      x,\n      y,\n      placement,\n      elements,\n      onClose,\n      nodeId,\n      tree\n    } = _ref;\n    return function onMouseMove(event) {\n      function close() {\n        clearTimeout(timeoutId);\n        onClose();\n      }\n      clearTimeout(timeoutId);\n      if (!elements.domReference || !elements.floating || placement == null || x == null || y == null) {\n        return;\n      }\n      const {\n        clientX,\n        clientY\n      } = event;\n      const clientPoint = [clientX, clientY];\n      const target = getTarget(event);\n      const isLeave = event.type === 'mouseleave';\n      const isOverFloatingEl = contains(elements.floating, target);\n      const isOverReferenceEl = contains(elements.domReference, target);\n      const refRect = elements.domReference.getBoundingClientRect();\n      const rect = elements.floating.getBoundingClientRect();\n      const side = placement.split('-')[0];\n      const cursorLeaveFromRight = x > rect.right - rect.width / 2;\n      const cursorLeaveFromBottom = y > rect.bottom - rect.height / 2;\n      const isOverReferenceRect = isInside(clientPoint, refRect);\n      const isFloatingWider = rect.width > refRect.width;\n      const isFloatingTaller = rect.height > refRect.height;\n      const left = (isFloatingWider ? refRect : rect).left;\n      const right = (isFloatingWider ? refRect : rect).right;\n      const top = (isFloatingTaller ? refRect : rect).top;\n      const bottom = (isFloatingTaller ? refRect : rect).bottom;\n      if (isOverFloatingEl) {\n        hasLanded = true;\n        if (!isLeave) {\n          return;\n        }\n      }\n      if (isOverReferenceEl) {\n        hasLanded = false;\n      }\n      if (isOverReferenceEl && !isLeave) {\n        hasLanded = true;\n        return;\n      }\n\n      // Prevent overlapping floating element from being stuck in an open-close\n      // loop: https://github.com/floating-ui/floating-ui/issues/1910\n      if (isLeave && isElement(event.relatedTarget) && contains(elements.floating, event.relatedTarget)) {\n        return;\n      }\n\n      // If any nested child is open, abort.\n      if (tree && getChildren(tree.nodesRef.current, nodeId).some(_ref2 => {\n        let {\n          context\n        } = _ref2;\n        return context == null ? void 0 : context.open;\n      })) {\n        return;\n      }\n\n      // If the pointer is leaving from the opposite side, the \"buffer\" logic\n      // creates a point where the floating element remains open, but should be\n      // ignored.\n      // A constant of 1 handles floating point rounding errors.\n      if (side === 'top' && y >= refRect.bottom - 1 || side === 'bottom' && y <= refRect.top + 1 || side === 'left' && x >= refRect.right - 1 || side === 'right' && x <= refRect.left + 1) {\n        return close();\n      }\n\n      // Ignore when the cursor is within the rectangular trough between the\n      // two elements. Since the triangle is created from the cursor point,\n      // which can start beyond the ref element's edge, traversing back and\n      // forth from the ref to the floating element can cause it to close. This\n      // ensures it always remains open in that case.\n      let rectPoly = [];\n      switch (side) {\n        case 'top':\n          rectPoly = [[left, refRect.top + 1], [left, rect.bottom - 1], [right, rect.bottom - 1], [right, refRect.top + 1]];\n          break;\n        case 'bottom':\n          rectPoly = [[left, rect.top + 1], [left, refRect.bottom - 1], [right, refRect.bottom - 1], [right, rect.top + 1]];\n          break;\n        case 'left':\n          rectPoly = [[rect.right - 1, bottom], [rect.right - 1, top], [refRect.left + 1, top], [refRect.left + 1, bottom]];\n          break;\n        case 'right':\n          rectPoly = [[refRect.right - 1, bottom], [refRect.right - 1, top], [rect.left + 1, top], [rect.left + 1, bottom]];\n          break;\n      }\n      function getPolygon(_ref3) {\n        let [x, y] = _ref3;\n        switch (side) {\n          case 'top':\n            {\n              const cursorPointOne = [isFloatingWider ? x + buffer / 2 : cursorLeaveFromRight ? x + buffer * 4 : x - buffer * 4, y + buffer + 1];\n              const cursorPointTwo = [isFloatingWider ? x - buffer / 2 : cursorLeaveFromRight ? x + buffer * 4 : x - buffer * 4, y + buffer + 1];\n              const commonPoints = [[rect.left, cursorLeaveFromRight ? rect.bottom - buffer : isFloatingWider ? rect.bottom - buffer : rect.top], [rect.right, cursorLeaveFromRight ? isFloatingWider ? rect.bottom - buffer : rect.top : rect.bottom - buffer]];\n              return [cursorPointOne, cursorPointTwo, ...commonPoints];\n            }\n          case 'bottom':\n            {\n              const cursorPointOne = [isFloatingWider ? x + buffer / 2 : cursorLeaveFromRight ? x + buffer * 4 : x - buffer * 4, y - buffer];\n              const cursorPointTwo = [isFloatingWider ? x - buffer / 2 : cursorLeaveFromRight ? x + buffer * 4 : x - buffer * 4, y - buffer];\n              const commonPoints = [[rect.left, cursorLeaveFromRight ? rect.top + buffer : isFloatingWider ? rect.top + buffer : rect.bottom], [rect.right, cursorLeaveFromRight ? isFloatingWider ? rect.top + buffer : rect.bottom : rect.top + buffer]];\n              return [cursorPointOne, cursorPointTwo, ...commonPoints];\n            }\n          case 'left':\n            {\n              const cursorPointOne = [x + buffer + 1, isFloatingTaller ? y + buffer / 2 : cursorLeaveFromBottom ? y + buffer * 4 : y - buffer * 4];\n              const cursorPointTwo = [x + buffer + 1, isFloatingTaller ? y - buffer / 2 : cursorLeaveFromBottom ? y + buffer * 4 : y - buffer * 4];\n              const commonPoints = [[cursorLeaveFromBottom ? rect.right - buffer : isFloatingTaller ? rect.right - buffer : rect.left, rect.top], [cursorLeaveFromBottom ? isFloatingTaller ? rect.right - buffer : rect.left : rect.right - buffer, rect.bottom]];\n              return [...commonPoints, cursorPointOne, cursorPointTwo];\n            }\n          case 'right':\n            {\n              const cursorPointOne = [x - buffer, isFloatingTaller ? y + buffer / 2 : cursorLeaveFromBottom ? y + buffer * 4 : y - buffer * 4];\n              const cursorPointTwo = [x - buffer, isFloatingTaller ? y - buffer / 2 : cursorLeaveFromBottom ? y + buffer * 4 : y - buffer * 4];\n              const commonPoints = [[cursorLeaveFromBottom ? rect.left + buffer : isFloatingTaller ? rect.left + buffer : rect.right, rect.top], [cursorLeaveFromBottom ? isFloatingTaller ? rect.left + buffer : rect.right : rect.left + buffer, rect.bottom]];\n              return [cursorPointOne, cursorPointTwo, ...commonPoints];\n            }\n        }\n      }\n      if (isPointInPolygon([clientX, clientY], rectPoly)) {\n        return;\n      }\n      if (hasLanded && !isOverReferenceRect) {\n        return close();\n      }\n      if (!isLeave && requireIntent) {\n        const cursorSpeed = getCursorSpeed(event.clientX, event.clientY);\n        const cursorSpeedThreshold = 0.1;\n        if (cursorSpeed !== null && cursorSpeed < cursorSpeedThreshold) {\n          return close();\n        }\n      }\n      if (!isPointInPolygon([clientX, clientY], getPolygon([x, y]))) {\n        close();\n      } else if (!hasLanded && requireIntent) {\n        timeoutId = window.setTimeout(close, 40);\n      }\n    };\n  };\n  fn.__options = {\n    blockPointerEvents\n  };\n  return fn;\n}\n\nexport { Composite, CompositeItem, FloatingArrow, FloatingDelayGroup, FloatingFocusManager, FloatingList, FloatingNode, FloatingOverlay, FloatingPortal, FloatingTree, inner, safePolygon, useClick, useClientPoint, useDelayGroup, useDelayGroupContext, useDismiss, useFloating, useFloatingNodeId, useFloatingParentNodeId, useFloatingPortalNode, useFloatingRootContext, useFloatingTree, useFocus, useHover, useId, useInnerOffset, useInteractions, useListItem, useListNavigation, useMergeRefs, useRole, useTransitionStatus, useTransitionStyles, useTypeahead };\n","import { warnOnce } from '../../utils/warn-once.mjs';\n\nfunction createDOMMotionComponentProxy(componentFactory) {\n    if (typeof Proxy === \"undefined\") {\n        return componentFactory;\n    }\n    /**\n     * A cache of generated `motion` components, e.g `motion.div`, `motion.input` etc.\n     * Rather than generating them anew every render.\n     */\n    const componentCache = new Map();\n    const deprecatedFactoryFunction = (...args) => {\n        if (process.env.NODE_ENV !== \"production\") {\n            warnOnce(false, \"motion() is deprecated. Use motion.create() instead.\");\n        }\n        return componentFactory(...args);\n    };\n    return new Proxy(deprecatedFactoryFunction, {\n        /**\n         * Called when `motion` is referenced with a prop: `motion.div`, `motion.input` etc.\n         * The prop name is passed through as `key` and we can use that to generate a `motion`\n         * DOM component with that name.\n         */\n        get: (_target, key) => {\n            if (key === \"create\")\n                return componentFactory;\n            /**\n             * If this element doesn't exist in the component cache, create it and cache.\n             */\n            if (!componentCache.has(key)) {\n                componentCache.set(key, componentFactory(key));\n            }\n            return componentCache.get(key);\n        },\n    });\n}\n\nexport { createDOMMotionComponentProxy };\n","function isAnimationControls(v) {\n    return (v !== null &&\n        typeof v === \"object\" &&\n        typeof v.start === \"function\");\n}\n\nexport { isAnimationControls };\n","const isKeyframesTarget = (v) => {\n    return Array.isArray(v);\n};\n\nexport { isKeyframesTarget };\n","function shallowCompare(next, prev) {\n    if (!Array.isArray(prev))\n        return false;\n    const prevLength = prev.length;\n    if (prevLength !== next.length)\n        return false;\n    for (let i = 0; i < prevLength; i++) {\n        if (prev[i] !== next[i])\n            return false;\n    }\n    return true;\n}\n\nexport { shallowCompare };\n","/**\n * Decides if the supplied variable is variant label\n */\nfunction isVariantLabel(v) {\n    return typeof v === \"string\" || Array.isArray(v);\n}\n\nexport { isVariantLabel };\n","function getValueState(visualElement) {\n    const state = [{}, {}];\n    visualElement === null || visualElement === void 0 ? void 0 : visualElement.values.forEach((value, key) => {\n        state[0][key] = value.get();\n        state[1][key] = value.getVelocity();\n    });\n    return state;\n}\nfunction resolveVariantFromProps(props, definition, custom, visualElement) {\n    /**\n     * If the variant definition is a function, resolve.\n     */\n    if (typeof definition === \"function\") {\n        const [current, velocity] = getValueState(visualElement);\n        definition = definition(custom !== undefined ? custom : props.custom, current, velocity);\n    }\n    /**\n     * If the variant definition is a variant label, or\n     * the function returned a variant label, resolve.\n     */\n    if (typeof definition === \"string\") {\n        definition = props.variants && props.variants[definition];\n    }\n    /**\n     * At this point we've resolved both functions and variant labels,\n     * but the resolved variant label might itself have been a function.\n     * If so, resolve. This can only have returned a valid target object.\n     */\n    if (typeof definition === \"function\") {\n        const [current, velocity] = getValueState(visualElement);\n        definition = definition(custom !== undefined ? custom : props.custom, current, velocity);\n    }\n    return definition;\n}\n\nexport { resolveVariantFromProps };\n","import { resolveVariantFromProps } from './resolve-variants.mjs';\n\nfunction resolveVariant(visualElement, definition, custom) {\n    const props = visualElement.getProps();\n    return resolveVariantFromProps(props, definition, custom !== undefined ? custom : props.custom, visualElement);\n}\n\nexport { resolveVariant };\n","const variantPriorityOrder = [\n    \"animate\",\n    \"whileInView\",\n    \"whileFocus\",\n    \"whileHover\",\n    \"whileTap\",\n    \"whileDrag\",\n    \"exit\",\n];\nconst variantProps = [\"initial\", ...variantPriorityOrder];\n\nexport { variantPriorityOrder, variantProps };\n","/*#__NO_SIDE_EFFECTS__*/\nfunction memo(callback) {\n    let result;\n    return () => {\n        if (result === undefined)\n            result = callback();\n        return result;\n    };\n}\n\nexport { memo };\n","import { memo } from 'motion-utils';\n\nconst supportsScrollTimeline = memo(() => window.ScrollTimeline !== undefined);\n\nexport { supportsScrollTimeline };\n","import { supportsScrollTimeline } from '../../utils/supports/scroll-timeline.mjs';\n\nclass BaseGroupPlaybackControls {\n    constructor(animations) {\n        // Bound to accomodate common `return animation.stop` pattern\n        this.stop = () => this.runAll(\"stop\");\n        this.animations = animations.filter(Boolean);\n    }\n    get finished() {\n        // Support for new finished Promise and legacy thennable API\n        return Promise.all(this.animations.map((animation) => \"finished\" in animation ? animation.finished : animation));\n    }\n    /**\n     * TODO: Filter out cancelled or stopped animations before returning\n     */\n    getAll(propName) {\n        return this.animations[0][propName];\n    }\n    setAll(propName, newValue) {\n        for (let i = 0; i < this.animations.length; i++) {\n            this.animations[i][propName] = newValue;\n        }\n    }\n    attachTimeline(timeline, fallback) {\n        const subscriptions = this.animations.map((animation) => {\n            if (supportsScrollTimeline() && animation.attachTimeline) {\n                return animation.attachTimeline(timeline);\n            }\n            else if (typeof fallback === \"function\") {\n                return fallback(animation);\n            }\n        });\n        return () => {\n            subscriptions.forEach((cancel, i) => {\n                cancel && cancel();\n                this.animations[i].stop();\n            });\n        };\n    }\n    get time() {\n        return this.getAll(\"time\");\n    }\n    set time(time) {\n        this.setAll(\"time\", time);\n    }\n    get speed() {\n        return this.getAll(\"speed\");\n    }\n    set speed(speed) {\n        this.setAll(\"speed\", speed);\n    }\n    get startTime() {\n        return this.getAll(\"startTime\");\n    }\n    get duration() {\n        let max = 0;\n        for (let i = 0; i < this.animations.length; i++) {\n            max = Math.max(max, this.animations[i].duration);\n        }\n        return max;\n    }\n    runAll(methodName) {\n        this.animations.forEach((controls) => controls[methodName]());\n    }\n    flatten() {\n        this.runAll(\"flatten\");\n    }\n    play() {\n        this.runAll(\"play\");\n    }\n    pause() {\n        this.runAll(\"pause\");\n    }\n    cancel() {\n        this.runAll(\"cancel\");\n    }\n    complete() {\n        this.runAll(\"complete\");\n    }\n}\n\nexport { BaseGroupPlaybackControls };\n","import { BaseGroupPlaybackControls } from './BaseGroup.mjs';\n\n/**\n * TODO: This is a temporary class to support the legacy\n * thennable API\n */\nclass GroupPlaybackControls extends BaseGroupPlaybackControls {\n    then(onResolve, onReject) {\n        return Promise.all(this.animations).then(onResolve).catch(onReject);\n    }\n}\n\nexport { GroupPlaybackControls };\n","function getValueTransition(transition, key) {\n    return transition\n        ? transition[key] ||\n            transition[\"default\"] ||\n            transition\n        : undefined;\n}\n\nexport { getValueTransition };\n","/**\n * Implement a practical max duration for keyframe generation\n * to prevent infinite loops\n */\nconst maxGeneratorDuration = 20000;\nfunction calcGeneratorDuration(generator) {\n    let duration = 0;\n    const timeStep = 50;\n    let state = generator.next(duration);\n    while (!state.done && duration < maxGeneratorDuration) {\n        duration += timeStep;\n        state = generator.next(duration);\n    }\n    return duration >= maxGeneratorDuration ? Infinity : duration;\n}\n\nexport { calcGeneratorDuration, maxGeneratorDuration };\n","function isGenerator(type) {\n    return typeof type === \"function\";\n}\n\nexport { isGenerator };\n","function attachTimeline(animation, timeline) {\n    animation.timeline = timeline;\n    animation.onfinish = null;\n}\n\nexport { attachTimeline };\n","const isBezierDefinition = (easing) => Array.isArray(easing) && typeof easing[0] === \"number\";\n\nexport { isBezierDefinition };\n","/**\n * Add the ability for test suites to manually set support flags\n * to better test more environments.\n */\nconst supportsFlags = {\n    linearEasing: undefined,\n};\n\nexport { supportsFlags };\n","import { memo } from 'motion-utils';\nimport { supportsFlags } from './flags.mjs';\n\nfunction memoSupports(callback, supportsFlag) {\n    const memoized = memo(callback);\n    return () => { var _a; return (_a = supportsFlags[supportsFlag]) !== null && _a !== void 0 ? _a : memoized(); };\n}\n\nexport { memoSupports };\n","import { memoSupports } from './memo.mjs';\n\nconst supportsLinearEasing = /*@__PURE__*/ memoSupports(() => {\n    try {\n        document\n            .createElement(\"div\")\n            .animate({ opacity: 0 }, { easing: \"linear(0, 1)\" });\n    }\n    catch (e) {\n        return false;\n    }\n    return true;\n}, \"linearEasing\");\n\nexport { supportsLinearEasing };\n","/*\n  Progress within given range\n\n  Given a lower limit and an upper limit, we return the progress\n  (expressed as a number 0-1) represented by the given value, and\n  limit that progress to within 0-1.\n\n  @param [number]: Lower limit\n  @param [number]: Upper limit\n  @param [number]: Value to find progress within given range\n  @return [number]: Progress of value within range as expressed 0-1\n*/\n/*#__NO_SIDE_EFFECTS__*/\nconst progress = (from, to, value) => {\n    const toFromDifference = to - from;\n    return toFromDifference === 0 ? 1 : (value - from) / toFromDifference;\n};\n\nexport { progress };\n","import { progress } from 'motion-utils';\n\nconst generateLinearEasing = (easing, duration, // as milliseconds\nresolution = 10 // as milliseconds\n) => {\n    let points = \"\";\n    const numPoints = Math.max(Math.round(duration / resolution), 2);\n    for (let i = 0; i < numPoints; i++) {\n        points += easing(progress(0, numPoints - 1, i)) + \", \";\n    }\n    return `linear(${points.substring(0, points.length - 2)})`;\n};\n\nexport { generateLinearEasing };\n","import { isBezierDefinition } from '../../../utils/is-bezier-definition.mjs';\nimport { supportsLinearEasing } from '../../../utils/supports/linear-easing.mjs';\nimport { generateLinearEasing } from './linear.mjs';\n\nfunction isWaapiSupportedEasing(easing) {\n    return Boolean((typeof easing === \"function\" && supportsLinearEasing()) ||\n        !easing ||\n        (typeof easing === \"string\" &&\n            (easing in supportedWaapiEasing || supportsLinearEasing())) ||\n        isBezierDefinition(easing) ||\n        (Array.isArray(easing) && easing.every(isWaapiSupportedEasing)));\n}\nconst cubicBezierAsString = ([a, b, c, d]) => `cubic-bezier(${a}, ${b}, ${c}, ${d})`;\nconst supportedWaapiEasing = {\n    linear: \"linear\",\n    ease: \"ease\",\n    easeIn: \"ease-in\",\n    easeOut: \"ease-out\",\n    easeInOut: \"ease-in-out\",\n    circIn: /*@__PURE__*/ cubicBezierAsString([0, 0.65, 0.55, 1]),\n    circOut: /*@__PURE__*/ cubicBezierAsString([0.55, 0, 1, 0.45]),\n    backIn: /*@__PURE__*/ cubicBezierAsString([0.31, 0.01, 0.66, -0.59]),\n    backOut: /*@__PURE__*/ cubicBezierAsString([0.33, 1.53, 0.69, 0.99]),\n};\nfunction mapEasingToNativeEasing(easing, duration) {\n    if (!easing) {\n        return undefined;\n    }\n    else if (typeof easing === \"function\" && supportsLinearEasing()) {\n        return generateLinearEasing(easing, duration);\n    }\n    else if (isBezierDefinition(easing)) {\n        return cubicBezierAsString(easing);\n    }\n    else if (Array.isArray(easing)) {\n        return easing.map((segmentEasing) => mapEasingToNativeEasing(segmentEasing, duration) ||\n            supportedWaapiEasing.easeOut);\n    }\n    else {\n        return supportedWaapiEasing[easing];\n    }\n}\n\nexport { cubicBezierAsString, isWaapiSupportedEasing, mapEasingToNativeEasing, supportedWaapiEasing };\n","const isDragging = {\n    x: false,\n    y: false,\n};\nfunction isDragActive() {\n    return isDragging.x || isDragging.y;\n}\n\nexport { isDragActive, isDragging };\n","import { resolveElements } from '../../utils/resolve-elements.mjs';\n\nfunction setupGesture(elementOrSelector, options) {\n    const elements = resolveElements(elementOrSelector);\n    const gestureAbortController = new AbortController();\n    const eventOptions = {\n        passive: true,\n        ...options,\n        signal: gestureAbortController.signal,\n    };\n    const cancel = () => gestureAbortController.abort();\n    return [elements, eventOptions, cancel];\n}\n\nexport { setupGesture };\n","function resolveElements(elementOrSelector, scope, selectorCache) {\n    var _a;\n    if (elementOrSelector instanceof Element) {\n        return [elementOrSelector];\n    }\n    else if (typeof elementOrSelector === \"string\") {\n        let root = document;\n        if (scope) {\n            // TODO: Refactor to utils package\n            // invariant(\n            //     Boolean(scope.current),\n            //     \"Scope provided, but no element detected.\"\n            // )\n            root = scope.current;\n        }\n        const elements = (_a = selectorCache === null || selectorCache === void 0 ? void 0 : selectorCache[elementOrSelector]) !== null && _a !== void 0 ? _a : root.querySelectorAll(elementOrSelector);\n        return elements ? Array.from(elements) : [];\n    }\n    return Array.from(elementOrSelector);\n}\n\nexport { resolveElements };\n","import { isDragActive } from './drag/state/is-active.mjs';\nimport { setupGesture } from './utils/setup.mjs';\n\n/**\n * Filter out events that are not pointer events, or are triggering\n * while a Motion gesture is active.\n */\nfunction filterEvents(callback) {\n    return (event) => {\n        if (event.pointerType === \"touch\" || isDragActive())\n            return;\n        callback(event);\n    };\n}\n/**\n * Create a hover gesture. hover() is different to .addEventListener(\"pointerenter\")\n * in that it has an easier syntax, filters out polyfilled touch events, interoperates\n * with drag gestures, and automatically removes the \"pointerennd\" event listener when the hover ends.\n *\n * @public\n */\nfunction hover(elementOrSelector, onHoverStart, options = {}) {\n    const [elements, eventOptions, cancel] = setupGesture(elementOrSelector, options);\n    const onPointerEnter = filterEvents((enterEvent) => {\n        const { target } = enterEvent;\n        const onHoverEnd = onHoverStart(enterEvent);\n        if (typeof onHoverEnd !== \"function\" || !target)\n            return;\n        const onPointerLeave = filterEvents((leaveEvent) => {\n            onHoverEnd(leaveEvent);\n            target.removeEventListener(\"pointerleave\", onPointerLeave);\n        });\n        target.addEventListener(\"pointerleave\", onPointerLeave, eventOptions);\n    });\n    elements.forEach((element) => {\n        element.addEventListener(\"pointerenter\", onPointerEnter, eventOptions);\n    });\n    return cancel;\n}\n\nexport { hover };\n","/**\n * Recursively traverse up the tree to check whether the provided child node\n * is the parent or a descendant of it.\n *\n * @param parent - Element to find\n * @param child - Element to test against parent\n */\nconst isNodeOrChild = (parent, child) => {\n    if (!child) {\n        return false;\n    }\n    else if (parent === child) {\n        return true;\n    }\n    else {\n        return isNodeOrChild(parent, child.parentElement);\n    }\n};\n\nexport { isNodeOrChild };\n","const isPrimaryPointer = (event) => {\n    if (event.pointerType === \"mouse\") {\n        return typeof event.button !== \"number\" || event.button <= 0;\n    }\n    else {\n        /**\n         * isPrimary is true for all mice buttons, whereas every touch point\n         * is regarded as its own input. So subsequent concurrent touch points\n         * will be false.\n         *\n         * Specifically match against false here as incomplete versions of\n         * PointerEvents in very old browser might have it set as undefined.\n         */\n        return event.isPrimary !== false;\n    }\n};\n\nexport { isPrimaryPointer };\n","const focusableElements = new Set([\n    \"BUTTON\",\n    \"INPUT\",\n    \"SELECT\",\n    \"TEXTAREA\",\n    \"A\",\n]);\nfunction isElementKeyboardAccessible(element) {\n    return (focusableElements.has(element.tagName) ||\n        element.tabIndex !== -1);\n}\n\nexport { isElementKeyboardAccessible };\n","const isPressing = new WeakSet();\n\nexport { isPressing };\n","import { isPressing } from './state.mjs';\n\n/**\n * Filter out events that are not \"Enter\" keys.\n */\nfunction filterEvents(callback) {\n    return (event) => {\n        if (event.key !== \"Enter\")\n            return;\n        callback(event);\n    };\n}\nfunction firePointerEvent(target, type) {\n    target.dispatchEvent(new PointerEvent(\"pointer\" + type, { isPrimary: true, bubbles: true }));\n}\nconst enableKeyboardPress = (focusEvent, eventOptions) => {\n    const element = focusEvent.currentTarget;\n    if (!element)\n        return;\n    const handleKeydown = filterEvents(() => {\n        if (isPressing.has(element))\n            return;\n        firePointerEvent(element, \"down\");\n        const handleKeyup = filterEvents(() => {\n            firePointerEvent(element, \"up\");\n        });\n        const handleBlur = () => firePointerEvent(element, \"cancel\");\n        element.addEventListener(\"keyup\", handleKeyup, eventOptions);\n        element.addEventListener(\"blur\", handleBlur, eventOptions);\n    });\n    element.addEventListener(\"keydown\", handleKeydown, eventOptions);\n    /**\n     * Add an event listener that fires on blur to remove the keydown events.\n     */\n    element.addEventListener(\"blur\", () => element.removeEventListener(\"keydown\", handleKeydown), eventOptions);\n};\n\nexport { enableKeyboardPress };\n","import { isDragActive } from '../drag/state/is-active.mjs';\nimport { isNodeOrChild } from '../utils/is-node-or-child.mjs';\nimport { isPrimaryPointer } from '../utils/is-primary-pointer.mjs';\nimport { setupGesture } from '../utils/setup.mjs';\nimport { isElementKeyboardAccessible } from './utils/is-keyboard-accessible.mjs';\nimport { enableKeyboardPress } from './utils/keyboard.mjs';\nimport { isPressing } from './utils/state.mjs';\n\n/**\n * Filter out events that are not primary pointer events, or are triggering\n * while a Motion gesture is active.\n */\nfunction isValidPressEvent(event) {\n    return isPrimaryPointer(event) && !isDragActive();\n}\n/**\n * Create a press gesture.\n *\n * Press is different to `\"pointerdown\"`, `\"pointerup\"` in that it\n * automatically filters out secondary pointer events like right\n * click and multitouch.\n *\n * It also adds accessibility support for keyboards, where\n * an element with a press gesture will receive focus and\n *  trigger on Enter `\"keydown\"` and `\"keyup\"` events.\n *\n * This is different to a browser's `\"click\"` event, which does\n * respond to keyboards but only for the `\"click\"` itself, rather\n * than the press start and end/cancel. The element also needs\n * to be focusable for this to work, whereas a press gesture will\n * make an element focusable by default.\n *\n * @public\n */\nfunction press(elementOrSelector, onPressStart, options = {}) {\n    const [elements, eventOptions, cancelEvents] = setupGesture(elementOrSelector, options);\n    const startPress = (startEvent) => {\n        const element = startEvent.currentTarget;\n        if (!isValidPressEvent(startEvent) || isPressing.has(element))\n            return;\n        isPressing.add(element);\n        const onPressEnd = onPressStart(startEvent);\n        const onPointerEnd = (endEvent, success) => {\n            window.removeEventListener(\"pointerup\", onPointerUp);\n            window.removeEventListener(\"pointercancel\", onPointerCancel);\n            if (!isValidPressEvent(endEvent) || !isPressing.has(element)) {\n                return;\n            }\n            isPressing.delete(element);\n            if (typeof onPressEnd === \"function\") {\n                onPressEnd(endEvent, { success });\n            }\n        };\n        const onPointerUp = (upEvent) => {\n            onPointerEnd(upEvent, options.useGlobalTarget ||\n                isNodeOrChild(element, upEvent.target));\n        };\n        const onPointerCancel = (cancelEvent) => {\n            onPointerEnd(cancelEvent, false);\n        };\n        window.addEventListener(\"pointerup\", onPointerUp, eventOptions);\n        window.addEventListener(\"pointercancel\", onPointerCancel, eventOptions);\n    };\n    elements.forEach((element) => {\n        if (!isElementKeyboardAccessible(element) &&\n            element.getAttribute(\"tabindex\") === null) {\n            element.tabIndex = 0;\n        }\n        const target = options.useGlobalTarget ? window : element;\n        target.addEventListener(\"pointerdown\", startPress, eventOptions);\n        element.addEventListener(\"focus\", (event) => enableKeyboardPress(event, eventOptions), eventOptions);\n    });\n    return cancelEvents;\n}\n\nexport { press };\n","/**\n * Converts seconds to milliseconds\n *\n * @param seconds - Time in seconds.\n * @return milliseconds - Converted time in milliseconds.\n */\n/*#__NO_SIDE_EFFECTS__*/\nconst secondsToMilliseconds = (seconds) => seconds * 1000;\n/*#__NO_SIDE_EFFECTS__*/\nconst millisecondsToSeconds = (milliseconds) => milliseconds / 1000;\n\nexport { millisecondsToSeconds, secondsToMilliseconds };\n","/*#__NO_SIDE_EFFECTS__*/\nconst noop = (any) => any;\n\nexport { noop };\n","/**\n * Generate a list of every possible transform key.\n */\nconst transformPropOrder = [\n    \"transformPerspective\",\n    \"x\",\n    \"y\",\n    \"z\",\n    \"translateX\",\n    \"translateY\",\n    \"translateZ\",\n    \"scale\",\n    \"scaleX\",\n    \"scaleY\",\n    \"rotate\",\n    \"rotateX\",\n    \"rotateY\",\n    \"rotateZ\",\n    \"skew\",\n    \"skewX\",\n    \"skewY\",\n];\n/**\n * A quick lookup for transform props.\n */\nconst transformProps = new Set(transformPropOrder);\n\nexport { transformPropOrder, transformProps };\n","import { transformPropOrder } from './keys-transform.mjs';\n\nconst positionalKeys = new Set([\n    \"width\",\n    \"height\",\n    \"top\",\n    \"left\",\n    \"right\",\n    \"bottom\",\n    ...transformPropOrder,\n]);\n\nexport { positionalKeys };\n","import { isKeyframesTarget } from '../animation/utils/is-keyframes-target.mjs';\n\nconst isCustomValue = (v) => {\n    return Boolean(v && typeof v === \"object\" && v.mix && v.toValue);\n};\nconst resolveFinalValueInKeyframes = (v) => {\n    // TODO maybe throw if v.length - 1 is placeholder token?\n    return isKeyframesTarget(v) ? v[v.length - 1] || 0 : v;\n};\n\nexport { isCustomValue, resolveFinalValueInKeyframes };\n","import { MotionGlobalConfig } from '../utils/GlobalConfig.mjs';\nimport { createRenderStep } from './render-step.mjs';\n\nconst stepsOrder = [\n    \"read\", // Read\n    \"resolveKeyframes\", // Write/Read/Write/Read\n    \"update\", // Compute\n    \"preRender\", // Compute\n    \"render\", // Write\n    \"postRender\", // Compute\n];\nconst maxElapsed = 40;\nfunction createRenderBatcher(scheduleNextBatch, allowKeepAlive) {\n    let runNextFrame = false;\n    let useDefaultElapsed = true;\n    const state = {\n        delta: 0.0,\n        timestamp: 0.0,\n        isProcessing: false,\n    };\n    const flagRunNextFrame = () => (runNextFrame = true);\n    const steps = stepsOrder.reduce((acc, key) => {\n        acc[key] = createRenderStep(flagRunNextFrame);\n        return acc;\n    }, {});\n    const { read, resolveKeyframes, update, preRender, render, postRender } = steps;\n    const processBatch = () => {\n        const timestamp = MotionGlobalConfig.useManualTiming\n            ? state.timestamp\n            : performance.now();\n        runNextFrame = false;\n        state.delta = useDefaultElapsed\n            ? 1000 / 60\n            : Math.max(Math.min(timestamp - state.timestamp, maxElapsed), 1);\n        state.timestamp = timestamp;\n        state.isProcessing = true;\n        // Unrolled render loop for better per-frame performance\n        read.process(state);\n        resolveKeyframes.process(state);\n        update.process(state);\n        preRender.process(state);\n        render.process(state);\n        postRender.process(state);\n        state.isProcessing = false;\n        if (runNextFrame && allowKeepAlive) {\n            useDefaultElapsed = false;\n            scheduleNextBatch(processBatch);\n        }\n    };\n    const wake = () => {\n        runNextFrame = true;\n        useDefaultElapsed = true;\n        if (!state.isProcessing) {\n            scheduleNextBatch(processBatch);\n        }\n    };\n    const schedule = stepsOrder.reduce((acc, key) => {\n        const step = steps[key];\n        acc[key] = (process, keepAlive = false, immediate = false) => {\n            if (!runNextFrame)\n                wake();\n            return step.schedule(process, keepAlive, immediate);\n        };\n        return acc;\n    }, {});\n    const cancel = (process) => {\n        for (let i = 0; i < stepsOrder.length; i++) {\n            steps[stepsOrder[i]].cancel(process);\n        }\n    };\n    return { schedule, cancel, state, steps };\n}\n\nexport { createRenderBatcher, stepsOrder };\n","function createRenderStep(runNextFrame) {\n    /**\n     * We create and reuse two queues, one to queue jobs for the current frame\n     * and one for the next. We reuse to avoid triggering GC after x frames.\n     */\n    let thisFrame = new Set();\n    let nextFrame = new Set();\n    /**\n     * Track whether we're currently processing jobs in this step. This way\n     * we can decide whether to schedule new jobs for this frame or next.\n     */\n    let isProcessing = false;\n    let flushNextFrame = false;\n    /**\n     * A set of processes which were marked keepAlive when scheduled.\n     */\n    const toKeepAlive = new WeakSet();\n    let latestFrameData = {\n        delta: 0.0,\n        timestamp: 0.0,\n        isProcessing: false,\n    };\n    function triggerCallback(callback) {\n        if (toKeepAlive.has(callback)) {\n            step.schedule(callback);\n            runNextFrame();\n        }\n        callback(latestFrameData);\n    }\n    const step = {\n        /**\n         * Schedule a process to run on the next frame.\n         */\n        schedule: (callback, keepAlive = false, immediate = false) => {\n            const addToCurrentFrame = immediate && isProcessing;\n            const queue = addToCurrentFrame ? thisFrame : nextFrame;\n            if (keepAlive)\n                toKeepAlive.add(callback);\n            if (!queue.has(callback))\n                queue.add(callback);\n            return callback;\n        },\n        /**\n         * Cancel the provided callback from running on the next frame.\n         */\n        cancel: (callback) => {\n            nextFrame.delete(callback);\n            toKeepAlive.delete(callback);\n        },\n        /**\n         * Execute all schedule callbacks.\n         */\n        process: (frameData) => {\n            latestFrameData = frameData;\n            /**\n             * If we're already processing we've probably been triggered by a flushSync\n             * inside an existing process. Instead of executing, mark flushNextFrame\n             * as true and ensure we flush the following frame at the end of this one.\n             */\n            if (isProcessing) {\n                flushNextFrame = true;\n                return;\n            }\n            isProcessing = true;\n            [thisFrame, nextFrame] = [nextFrame, thisFrame];\n            // Execute this frame\n            thisFrame.forEach(triggerCallback);\n            // Clear the frame so no callbacks remain. This is to avoid\n            // memory leaks should this render step not run for a while.\n            thisFrame.clear();\n            isProcessing = false;\n            if (flushNextFrame) {\n                flushNextFrame = false;\n                step.process(frameData);\n            }\n        },\n    };\n    return step;\n}\n\nexport { createRenderStep };\n","import { noop } from 'motion-utils';\nimport { createRenderBatcher } from './batcher.mjs';\n\nconst { schedule: frame, cancel: cancelFrame, state: frameData, steps: frameSteps, } = createRenderBatcher(typeof requestAnimationFrame !== \"undefined\" ? requestAnimationFrame : noop, true);\n\nexport { cancelFrame, frame, frameData, frameSteps };\n","import { MotionGlobalConfig } from '../utils/GlobalConfig.mjs';\nimport { frameData } from './frame.mjs';\n\nlet now;\nfunction clearTime() {\n    now = undefined;\n}\n/**\n * An eventloop-synchronous alternative to performance.now().\n *\n * Ensures that time measurements remain consistent within a synchronous context.\n * Usually calling performance.now() twice within the same synchronous context\n * will return different values which isn't useful for animations when we're usually\n * trying to sync animations to the same frame.\n */\nconst time = {\n    now: () => {\n        if (now === undefined) {\n            time.set(frameData.isProcessing || MotionGlobalConfig.useManualTiming\n                ? frameData.timestamp\n                : performance.now());\n        }\n        return now;\n    },\n    set: (newTime) => {\n        now = newTime;\n        queueMicrotask(clearTime);\n    },\n};\n\nexport { time };\n","function addUniqueItem(arr, item) {\n    if (arr.indexOf(item) === -1)\n        arr.push(item);\n}\nfunction removeItem(arr, item) {\n    const index = arr.indexOf(item);\n    if (index > -1)\n        arr.splice(index, 1);\n}\n// Adapted from array-move\nfunction moveItem([...arr], fromIndex, toIndex) {\n    const startIndex = fromIndex < 0 ? arr.length + fromIndex : fromIndex;\n    if (startIndex >= 0 && startIndex < arr.length) {\n        const endIndex = toIndex < 0 ? arr.length + toIndex : toIndex;\n        const [item] = arr.splice(fromIndex, 1);\n        arr.splice(endIndex, 0, item);\n    }\n    return arr;\n}\n\nexport { addUniqueItem, moveItem, removeItem };\n","import { addUniqueItem, removeItem } from './array.mjs';\n\nclass SubscriptionManager {\n    constructor() {\n        this.subscriptions = [];\n    }\n    add(handler) {\n        addUniqueItem(this.subscriptions, handler);\n        return () => removeItem(this.subscriptions, handler);\n    }\n    notify(a, b, c) {\n        const numSubscriptions = this.subscriptions.length;\n        if (!numSubscriptions)\n            return;\n        if (numSubscriptions === 1) {\n            /**\n             * If there's only a single handler we can just call it without invoking a loop.\n             */\n            this.subscriptions[0](a, b, c);\n        }\n        else {\n            for (let i = 0; i < numSubscriptions; i++) {\n                /**\n                 * Check whether the handler exists before firing as it's possible\n                 * the subscriptions were modified during this loop running.\n                 */\n                const handler = this.subscriptions[i];\n                handler && handler(a, b, c);\n            }\n        }\n    }\n    getSize() {\n        return this.subscriptions.length;\n    }\n    clear() {\n        this.subscriptions.length = 0;\n    }\n}\n\nexport { SubscriptionManager };\n","/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/\nfunction velocityPerSecond(velocity, frameDuration) {\n    return frameDuration ? velocity * (1000 / frameDuration) : 0;\n}\n\nexport { velocityPerSecond };\n","import { time } from '../frameloop/sync-time.mjs';\nimport { SubscriptionManager } from '../utils/subscription-manager.mjs';\nimport { velocityPerSecond } from '../utils/velocity-per-second.mjs';\nimport { warnOnce } from '../utils/warn-once.mjs';\nimport { frame } from '../frameloop/frame.mjs';\n\n/**\n * Maximum time between the value of two frames, beyond which we\n * assume the velocity has since been 0.\n */\nconst MAX_VELOCITY_DELTA = 30;\nconst isFloat = (value) => {\n    return !isNaN(parseFloat(value));\n};\nconst collectMotionValues = {\n    current: undefined,\n};\n/**\n * `MotionValue` is used to track the state and velocity of motion values.\n *\n * @public\n */\nclass MotionValue {\n    /**\n     * @param init - The initiating value\n     * @param config - Optional configuration options\n     *\n     * -  `transformer`: A function to transform incoming values with.\n     *\n     * @internal\n     */\n    constructor(init, options = {}) {\n        /**\n         * This will be replaced by the build step with the latest version number.\n         * When MotionValues are provided to motion components, warn if versions are mixed.\n         */\n        this.version = \"11.18.2\";\n        /**\n         * Tracks whether this value can output a velocity. Currently this is only true\n         * if the value is numerical, but we might be able to widen the scope here and support\n         * other value types.\n         *\n         * @internal\n         */\n        this.canTrackVelocity = null;\n        /**\n         * An object containing a SubscriptionManager for each active event.\n         */\n        this.events = {};\n        this.updateAndNotify = (v, render = true) => {\n            const currentTime = time.now();\n            /**\n             * If we're updating the value during another frame or eventloop\n             * than the previous frame, then the we set the previous frame value\n             * to current.\n             */\n            if (this.updatedAt !== currentTime) {\n                this.setPrevFrameValue();\n            }\n            this.prev = this.current;\n            this.setCurrent(v);\n            // Update update subscribers\n            if (this.current !== this.prev && this.events.change) {\n                this.events.change.notify(this.current);\n            }\n            // Update render subscribers\n            if (render && this.events.renderRequest) {\n                this.events.renderRequest.notify(this.current);\n            }\n        };\n        this.hasAnimated = false;\n        this.setCurrent(init);\n        this.owner = options.owner;\n    }\n    setCurrent(current) {\n        this.current = current;\n        this.updatedAt = time.now();\n        if (this.canTrackVelocity === null && current !== undefined) {\n            this.canTrackVelocity = isFloat(this.current);\n        }\n    }\n    setPrevFrameValue(prevFrameValue = this.current) {\n        this.prevFrameValue = prevFrameValue;\n        this.prevUpdatedAt = this.updatedAt;\n    }\n    /**\n     * Adds a function that will be notified when the `MotionValue` is updated.\n     *\n     * It returns a function that, when called, will cancel the subscription.\n     *\n     * When calling `onChange` inside a React component, it should be wrapped with the\n     * `useEffect` hook. As it returns an unsubscribe function, this should be returned\n     * from the `useEffect` function to ensure you don't add duplicate subscribers..\n     *\n     * ```jsx\n     * export const MyComponent = () => {\n     *   const x = useMotionValue(0)\n     *   const y = useMotionValue(0)\n     *   const opacity = useMotionValue(1)\n     *\n     *   useEffect(() => {\n     *     function updateOpacity() {\n     *       const maxXY = Math.max(x.get(), y.get())\n     *       const newOpacity = transform(maxXY, [0, 100], [1, 0])\n     *       opacity.set(newOpacity)\n     *     }\n     *\n     *     const unsubscribeX = x.on(\"change\", updateOpacity)\n     *     const unsubscribeY = y.on(\"change\", updateOpacity)\n     *\n     *     return () => {\n     *       unsubscribeX()\n     *       unsubscribeY()\n     *     }\n     *   }, [])\n     *\n     *   return <motion.div style={{ x }} />\n     * }\n     * ```\n     *\n     * @param subscriber - A function that receives the latest value.\n     * @returns A function that, when called, will cancel this subscription.\n     *\n     * @deprecated\n     */\n    onChange(subscription) {\n        if (process.env.NODE_ENV !== \"production\") {\n            warnOnce(false, `value.onChange(callback) is deprecated. Switch to value.on(\"change\", callback).`);\n        }\n        return this.on(\"change\", subscription);\n    }\n    on(eventName, callback) {\n        if (!this.events[eventName]) {\n            this.events[eventName] = new SubscriptionManager();\n        }\n        const unsubscribe = this.events[eventName].add(callback);\n        if (eventName === \"change\") {\n            return () => {\n                unsubscribe();\n                /**\n                 * If we have no more change listeners by the start\n                 * of the next frame, stop active animations.\n                 */\n                frame.read(() => {\n                    if (!this.events.change.getSize()) {\n                        this.stop();\n                    }\n                });\n            };\n        }\n        return unsubscribe;\n    }\n    clearListeners() {\n        for (const eventManagers in this.events) {\n            this.events[eventManagers].clear();\n        }\n    }\n    /**\n     * Attaches a passive effect to the `MotionValue`.\n     *\n     * @internal\n     */\n    attach(passiveEffect, stopPassiveEffect) {\n        this.passiveEffect = passiveEffect;\n        this.stopPassiveEffect = stopPassiveEffect;\n    }\n    /**\n     * Sets the state of the `MotionValue`.\n     *\n     * @remarks\n     *\n     * ```jsx\n     * const x = useMotionValue(0)\n     * x.set(10)\n     * ```\n     *\n     * @param latest - Latest value to set.\n     * @param render - Whether to notify render subscribers. Defaults to `true`\n     *\n     * @public\n     */\n    set(v, render = true) {\n        if (!render || !this.passiveEffect) {\n            this.updateAndNotify(v, render);\n        }\n        else {\n            this.passiveEffect(v, this.updateAndNotify);\n        }\n    }\n    setWithVelocity(prev, current, delta) {\n        this.set(current);\n        this.prev = undefined;\n        this.prevFrameValue = prev;\n        this.prevUpdatedAt = this.updatedAt - delta;\n    }\n    /**\n     * Set the state of the `MotionValue`, stopping any active animations,\n     * effects, and resets velocity to `0`.\n     */\n    jump(v, endAnimation = true) {\n        this.updateAndNotify(v);\n        this.prev = v;\n        this.prevUpdatedAt = this.prevFrameValue = undefined;\n        endAnimation && this.stop();\n        if (this.stopPassiveEffect)\n            this.stopPassiveEffect();\n    }\n    /**\n     * Returns the latest state of `MotionValue`\n     *\n     * @returns - The latest state of `MotionValue`\n     *\n     * @public\n     */\n    get() {\n        if (collectMotionValues.current) {\n            collectMotionValues.current.push(this);\n        }\n        return this.current;\n    }\n    /**\n     * @public\n     */\n    getPrevious() {\n        return this.prev;\n    }\n    /**\n     * Returns the latest velocity of `MotionValue`\n     *\n     * @returns - The latest velocity of `MotionValue`. Returns `0` if the state is non-numerical.\n     *\n     * @public\n     */\n    getVelocity() {\n        const currentTime = time.now();\n        if (!this.canTrackVelocity ||\n            this.prevFrameValue === undefined ||\n            currentTime - this.updatedAt > MAX_VELOCITY_DELTA) {\n            return 0;\n        }\n        const delta = Math.min(this.updatedAt - this.prevUpdatedAt, MAX_VELOCITY_DELTA);\n        // Casts because of parseFloat's poor typing\n        return velocityPerSecond(parseFloat(this.current) -\n            parseFloat(this.prevFrameValue), delta);\n    }\n    /**\n     * Registers a new animation to control this `MotionValue`. Only one\n     * animation can drive a `MotionValue` at one time.\n     *\n     * ```jsx\n     * value.start()\n     * ```\n     *\n     * @param animation - A function that starts the provided animation\n     *\n     * @internal\n     */\n    start(startAnimation) {\n        this.stop();\n        return new Promise((resolve) => {\n            this.hasAnimated = true;\n            this.animation = startAnimation(resolve);\n            if (this.events.animationStart) {\n                this.events.animationStart.notify();\n            }\n        }).then(() => {\n            if (this.events.animationComplete) {\n                this.events.animationComplete.notify();\n            }\n            this.clearAnimation();\n        });\n    }\n    /**\n     * Stop the currently active animation.\n     *\n     * @public\n     */\n    stop() {\n        if (this.animation) {\n            this.animation.stop();\n            if (this.events.animationCancel) {\n                this.events.animationCancel.notify();\n            }\n        }\n        this.clearAnimation();\n    }\n    /**\n     * Returns `true` if this value is currently animating.\n     *\n     * @public\n     */\n    isAnimating() {\n        return !!this.animation;\n    }\n    clearAnimation() {\n        delete this.animation;\n    }\n    /**\n     * Destroy and clean up subscribers to this `MotionValue`.\n     *\n     * The `MotionValue` hooks like `useMotionValue` and `useTransform` automatically\n     * handle the lifecycle of the returned `MotionValue`, so this method is only necessary if you've manually\n     * created a `MotionValue` via the `motionValue` function.\n     *\n     * @public\n     */\n    destroy() {\n        this.clearListeners();\n        this.stop();\n        if (this.stopPassiveEffect) {\n            this.stopPassiveEffect();\n        }\n    }\n}\nfunction motionValue(init, options) {\n    return new MotionValue(init, options);\n}\n\nexport { MotionValue, collectMotionValues, motionValue };\n","import { resolveFinalValueInKeyframes } from '../../utils/resolve-value.mjs';\nimport { motionValue } from '../../value/index.mjs';\nimport { resolveVariant } from './resolve-dynamic-variants.mjs';\n\n/**\n * Set VisualElement's MotionValue, creating a new MotionValue for it if\n * it doesn't exist.\n */\nfunction setMotionValue(visualElement, key, value) {\n    if (visualElement.hasValue(key)) {\n        visualElement.getValue(key).set(value);\n    }\n    else {\n        visualElement.addValue(key, motionValue(value));\n    }\n}\nfunction setTarget(visualElement, definition) {\n    const resolved = resolveVariant(visualElement, definition);\n    let { transitionEnd = {}, transition = {}, ...target } = resolved || {};\n    target = { ...target, ...transitionEnd };\n    for (const key in target) {\n        const value = resolveFinalValueInKeyframes(target[key]);\n        setMotionValue(visualElement, key, value);\n    }\n}\n\nexport { setTarget };\n","const isMotionValue = (value) => Boolean(value && value.getVelocity);\n\nexport { isMotionValue };\n","import { isWillChangeMotionValue } from './is.mjs';\n\nfunction addValueToWillChange(visualElement, key) {\n    const willChange = visualElement.getValue(\"willChange\");\n    /**\n     * It could be that a user has set willChange to a regular MotionValue,\n     * in which case we can't add the value to it.\n     */\n    if (isWillChangeMotionValue(willChange)) {\n        return willChange.add(key);\n    }\n}\n\nexport { addValueToWillChange };\n","import { isMotionValue } from '../utils/is-motion-value.mjs';\n\nfunction isWillChangeMotionValue(value) {\n    return Boolean(isMotionValue(value) && value.add);\n}\n\nexport { isWillChangeMotionValue };\n","/**\n * Convert camelCase to dash-case properties.\n */\nconst camelToDash = (str) => str.replace(/([a-z])([A-Z])/gu, \"$1-$2\").toLowerCase();\n\nexport { camelToDash };\n","import { camelToDash } from '../../render/dom/utils/camel-to-dash.mjs';\n\nconst optimizedAppearDataId = \"framerAppearId\";\nconst optimizedAppearDataAttribute = \"data-\" + camelToDash(optimizedAppearDataId);\n\nexport { optimizedAppearDataAttribute, optimizedAppearDataId };\n","import { optimizedAppearDataAttribute } from './data-id.mjs';\n\nfunction getOptimisedAppearId(visualElement) {\n    return visualElement.props[optimizedAppearDataAttribute];\n}\n\nexport { getOptimisedAppearId };\n","const instantAnimationState = {\n    current: false,\n};\n\nexport { instantAnimationState };\n","import { noop } from 'motion-utils';\n\n/*\n  Bezier function generator\n  This has been modified from Gaëtan Renaudeau's BezierEasing\n  https://github.com/gre/bezier-easing/blob/master/src/index.js\n  https://github.com/gre/bezier-easing/blob/master/LICENSE\n  \n  I've removed the newtonRaphsonIterate algo because in benchmarking it\n  wasn't noticiably faster than binarySubdivision, indeed removing it\n  usually improved times, depending on the curve.\n  I also removed the lookup table, as for the added bundle size and loop we're\n  only cutting ~4 or so subdivision iterations. I bumped the max iterations up\n  to 12 to compensate and this still tended to be faster for no perceivable\n  loss in accuracy.\n  Usage\n    const easeOut = cubicBezier(.17,.67,.83,.67);\n    const x = easeOut(0.5); // returns 0.627...\n*/\n// Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2.\nconst calcBezier = (t, a1, a2) => (((1.0 - 3.0 * a2 + 3.0 * a1) * t + (3.0 * a2 - 6.0 * a1)) * t + 3.0 * a1) *\n    t;\nconst subdivisionPrecision = 0.0000001;\nconst subdivisionMaxIterations = 12;\nfunction binarySubdivide(x, lowerBound, upperBound, mX1, mX2) {\n    let currentX;\n    let currentT;\n    let i = 0;\n    do {\n        currentT = lowerBound + (upperBound - lowerBound) / 2.0;\n        currentX = calcBezier(currentT, mX1, mX2) - x;\n        if (currentX > 0.0) {\n            upperBound = currentT;\n        }\n        else {\n            lowerBound = currentT;\n        }\n    } while (Math.abs(currentX) > subdivisionPrecision &&\n        ++i < subdivisionMaxIterations);\n    return currentT;\n}\nfunction cubicBezier(mX1, mY1, mX2, mY2) {\n    // If this is a linear gradient, return linear easing\n    if (mX1 === mY1 && mX2 === mY2)\n        return noop;\n    const getTForX = (aX) => binarySubdivide(aX, 0, 1, mX1, mX2);\n    // If animation is at start/end, return t without easing\n    return (t) => t === 0 || t === 1 ? t : calcBezier(getTForX(t), mY1, mY2);\n}\n\nexport { cubicBezier };\n","// Accepts an easing function and returns a new one that outputs mirrored values for\n// the second half of the animation. Turns easeIn into easeInOut.\nconst mirrorEasing = (easing) => (p) => p <= 0.5 ? easing(2 * p) / 2 : (2 - easing(2 * (1 - p))) / 2;\n\nexport { mirrorEasing };\n","// Accepts an easing function and returns a new one that outputs reversed values.\n// Turns easeIn into easeOut.\nconst reverseEasing = (easing) => (p) => 1 - easing(1 - p);\n\nexport { reverseEasing };\n","import { cubicBezier } from './cubic-bezier.mjs';\nimport { mirrorEasing } from './modifiers/mirror.mjs';\nimport { reverseEasing } from './modifiers/reverse.mjs';\n\nconst backOut = /*@__PURE__*/ cubicBezier(0.33, 1.53, 0.69, 0.99);\nconst backIn = /*@__PURE__*/ reverseEasing(backOut);\nconst backInOut = /*@__PURE__*/ mirrorEasing(backIn);\n\nexport { backIn, backInOut, backOut };\n","import { backIn } from './back.mjs';\n\nconst anticipate = (p) => (p *= 2) < 1 ? 0.5 * backIn(p) : 0.5 * (2 - Math.pow(2, -10 * (p - 1)));\n\nexport { anticipate };\n","import { mirrorEasing } from './modifiers/mirror.mjs';\nimport { reverseEasing } from './modifiers/reverse.mjs';\n\nconst circIn = (p) => 1 - Math.sin(Math.acos(p));\nconst circOut = reverseEasing(circIn);\nconst circInOut = mirrorEasing(circIn);\n\nexport { circIn, circInOut, circOut };\n","/**\n * Check if the value is a zero value string like \"0px\" or \"0%\"\n */\nconst isZeroValueString = (v) => /^0[^.\\s]+$/u.test(v);\n\nexport { isZeroValueString };\n","const clamp = (min, max, v) => {\n    if (v > max)\n        return max;\n    if (v < min)\n        return min;\n    return v;\n};\n\nexport { clamp };\n","import { clamp } from '../../../utils/clamp.mjs';\n\nconst number = {\n    test: (v) => typeof v === \"number\",\n    parse: parseFloat,\n    transform: (v) => v,\n};\nconst alpha = {\n    ...number,\n    transform: (v) => clamp(0, 1, v),\n};\nconst scale = {\n    ...number,\n    default: 1,\n};\n\nexport { alpha, number, scale };\n","// If this number is a decimal, make it just five decimal places\n// to avoid exponents\nconst sanitize = (v) => Math.round(v * 100000) / 100000;\n\nexport { sanitize };\n","const floatRegex = /-?(?:\\d+(?:\\.\\d+)?|\\.\\d+)/gu;\n\nexport { floatRegex };\n","const singleColorRegex = /^(?:#[\\da-f]{3,8}|(?:rgb|hsl)a?\\((?:-?[\\d.]+%?[,\\s]+){2}-?[\\d.]+%?\\s*(?:[,/]\\s*)?(?:\\b\\d+(?:\\.\\d+)?|\\.\\d+)?%?\\))$/iu;\n\nexport { singleColorRegex };\n","import { floatRegex } from '../utils/float-regex.mjs';\nimport { isNullish } from '../utils/is-nullish.mjs';\nimport { singleColorRegex } from '../utils/single-color-regex.mjs';\n\n/**\n * Returns true if the provided string is a color, ie rgba(0,0,0,0) or #000,\n * but false if a number or multiple colors\n */\nconst isColorString = (type, testProp) => (v) => {\n    return Boolean((typeof v === \"string\" &&\n        singleColorRegex.test(v) &&\n        v.startsWith(type)) ||\n        (testProp &&\n            !isNullish(v) &&\n            Object.prototype.hasOwnProperty.call(v, testProp)));\n};\nconst splitColor = (aName, bName, cName) => (v) => {\n    if (typeof v !== \"string\")\n        return v;\n    const [a, b, c, alpha] = v.match(floatRegex);\n    return {\n        [aName]: parseFloat(a),\n        [bName]: parseFloat(b),\n        [cName]: parseFloat(c),\n        alpha: alpha !== undefined ? parseFloat(alpha) : 1,\n    };\n};\n\nexport { isColorString, splitColor };\n","function isNullish(v) {\n    return v == null;\n}\n\nexport { isNullish };\n","import { clamp } from '../../../utils/clamp.mjs';\nimport { alpha, number } from '../numbers/index.mjs';\nimport { sanitize } from '../utils/sanitize.mjs';\nimport { isColorString, splitColor } from './utils.mjs';\n\nconst clampRgbUnit = (v) => clamp(0, 255, v);\nconst rgbUnit = {\n    ...number,\n    transform: (v) => Math.round(clampRgbUnit(v)),\n};\nconst rgba = {\n    test: /*@__PURE__*/ isColorString(\"rgb\", \"red\"),\n    parse: /*@__PURE__*/ splitColor(\"red\", \"green\", \"blue\"),\n    transform: ({ red, green, blue, alpha: alpha$1 = 1 }) => \"rgba(\" +\n        rgbUnit.transform(red) +\n        \", \" +\n        rgbUnit.transform(green) +\n        \", \" +\n        rgbUnit.transform(blue) +\n        \", \" +\n        sanitize(alpha.transform(alpha$1)) +\n        \")\",\n};\n\nexport { rgbUnit, rgba };\n","import { rgba } from './rgba.mjs';\nimport { isColorString } from './utils.mjs';\n\nfunction parseHex(v) {\n    let r = \"\";\n    let g = \"\";\n    let b = \"\";\n    let a = \"\";\n    // If we have 6 characters, ie #FF0000\n    if (v.length > 5) {\n        r = v.substring(1, 3);\n        g = v.substring(3, 5);\n        b = v.substring(5, 7);\n        a = v.substring(7, 9);\n        // Or we have 3 characters, ie #F00\n    }\n    else {\n        r = v.substring(1, 2);\n        g = v.substring(2, 3);\n        b = v.substring(3, 4);\n        a = v.substring(4, 5);\n        r += r;\n        g += g;\n        b += b;\n        a += a;\n    }\n    return {\n        red: parseInt(r, 16),\n        green: parseInt(g, 16),\n        blue: parseInt(b, 16),\n        alpha: a ? parseInt(a, 16) / 255 : 1,\n    };\n}\nconst hex = {\n    test: /*@__PURE__*/ isColorString(\"#\"),\n    parse: parseHex,\n    transform: rgba.transform,\n};\n\nexport { hex };\n","const createUnitType = (unit) => ({\n    test: (v) => typeof v === \"string\" && v.endsWith(unit) && v.split(\" \").length === 1,\n    parse: parseFloat,\n    transform: (v) => `${v}${unit}`,\n});\nconst degrees = /*@__PURE__*/ createUnitType(\"deg\");\nconst percent = /*@__PURE__*/ createUnitType(\"%\");\nconst px = /*@__PURE__*/ createUnitType(\"px\");\nconst vh = /*@__PURE__*/ createUnitType(\"vh\");\nconst vw = /*@__PURE__*/ createUnitType(\"vw\");\nconst progressPercentage = {\n    ...percent,\n    parse: (v) => percent.parse(v) / 100,\n    transform: (v) => percent.transform(v * 100),\n};\n\nexport { degrees, percent, progressPercentage, px, vh, vw };\n","import { alpha } from '../numbers/index.mjs';\nimport { percent } from '../numbers/units.mjs';\nimport { sanitize } from '../utils/sanitize.mjs';\nimport { isColorString, splitColor } from './utils.mjs';\n\nconst hsla = {\n    test: /*@__PURE__*/ isColorString(\"hsl\", \"hue\"),\n    parse: /*@__PURE__*/ splitColor(\"hue\", \"saturation\", \"lightness\"),\n    transform: ({ hue, saturation, lightness, alpha: alpha$1 = 1 }) => {\n        return (\"hsla(\" +\n            Math.round(hue) +\n            \", \" +\n            percent.transform(sanitize(saturation)) +\n            \", \" +\n            percent.transform(sanitize(lightness)) +\n            \", \" +\n            sanitize(alpha.transform(alpha$1)) +\n            \")\");\n    },\n};\n\nexport { hsla };\n","import { hex } from './hex.mjs';\nimport { hsla } from './hsla.mjs';\nimport { rgba } from './rgba.mjs';\n\nconst color = {\n    test: (v) => rgba.test(v) || hex.test(v) || hsla.test(v),\n    parse: (v) => {\n        if (rgba.test(v)) {\n            return rgba.parse(v);\n        }\n        else if (hsla.test(v)) {\n            return hsla.parse(v);\n        }\n        else {\n            return hex.parse(v);\n        }\n    },\n    transform: (v) => {\n        return typeof v === \"string\"\n            ? v\n            : v.hasOwnProperty(\"red\")\n                ? rgba.transform(v)\n                : hsla.transform(v);\n    },\n};\n\nexport { color };\n","const colorRegex = /(?:#[\\da-f]{3,8}|(?:rgb|hsl)a?\\((?:-?[\\d.]+%?[,\\s]+){2}-?[\\d.]+%?\\s*(?:[,/]\\s*)?(?:\\b\\d+(?:\\.\\d+)?|\\.\\d+)?%?\\))/giu;\n\nexport { colorRegex };\n","import { color } from '../color/index.mjs';\nimport { colorRegex } from '../utils/color-regex.mjs';\nimport { floatRegex } from '../utils/float-regex.mjs';\nimport { sanitize } from '../utils/sanitize.mjs';\n\nfunction test(v) {\n    var _a, _b;\n    return (isNaN(v) &&\n        typeof v === \"string\" &&\n        (((_a = v.match(floatRegex)) === null || _a === void 0 ? void 0 : _a.length) || 0) +\n            (((_b = v.match(colorRegex)) === null || _b === void 0 ? void 0 : _b.length) || 0) >\n            0);\n}\nconst NUMBER_TOKEN = \"number\";\nconst COLOR_TOKEN = \"color\";\nconst VAR_TOKEN = \"var\";\nconst VAR_FUNCTION_TOKEN = \"var(\";\nconst SPLIT_TOKEN = \"${}\";\n// this regex consists of the `singleCssVariableRegex|rgbHSLValueRegex|digitRegex`\nconst complexRegex = /var\\s*\\(\\s*--(?:[\\w-]+\\s*|[\\w-]+\\s*,(?:\\s*[^)(\\s]|\\s*\\((?:[^)(]|\\([^)(]*\\))*\\))+\\s*)\\)|#[\\da-f]{3,8}|(?:rgb|hsl)a?\\((?:-?[\\d.]+%?[,\\s]+){2}-?[\\d.]+%?\\s*(?:[,/]\\s*)?(?:\\b\\d+(?:\\.\\d+)?|\\.\\d+)?%?\\)|-?(?:\\d+(?:\\.\\d+)?|\\.\\d+)/giu;\nfunction analyseComplexValue(value) {\n    const originalValue = value.toString();\n    const values = [];\n    const indexes = {\n        color: [],\n        number: [],\n        var: [],\n    };\n    const types = [];\n    let i = 0;\n    const tokenised = originalValue.replace(complexRegex, (parsedValue) => {\n        if (color.test(parsedValue)) {\n            indexes.color.push(i);\n            types.push(COLOR_TOKEN);\n            values.push(color.parse(parsedValue));\n        }\n        else if (parsedValue.startsWith(VAR_FUNCTION_TOKEN)) {\n            indexes.var.push(i);\n            types.push(VAR_TOKEN);\n            values.push(parsedValue);\n        }\n        else {\n            indexes.number.push(i);\n            types.push(NUMBER_TOKEN);\n            values.push(parseFloat(parsedValue));\n        }\n        ++i;\n        return SPLIT_TOKEN;\n    });\n    const split = tokenised.split(SPLIT_TOKEN);\n    return { values, split, indexes, types };\n}\nfunction parseComplexValue(v) {\n    return analyseComplexValue(v).values;\n}\nfunction createTransformer(source) {\n    const { split, types } = analyseComplexValue(source);\n    const numSections = split.length;\n    return (v) => {\n        let output = \"\";\n        for (let i = 0; i < numSections; i++) {\n            output += split[i];\n            if (v[i] !== undefined) {\n                const type = types[i];\n                if (type === NUMBER_TOKEN) {\n                    output += sanitize(v[i]);\n                }\n                else if (type === COLOR_TOKEN) {\n                    output += color.transform(v[i]);\n                }\n                else {\n                    output += v[i];\n                }\n            }\n        }\n        return output;\n    };\n}\nconst convertNumbersToZero = (v) => typeof v === \"number\" ? 0 : v;\nfunction getAnimatableNone(v) {\n    const parsed = parseComplexValue(v);\n    const transformer = createTransformer(v);\n    return transformer(parsed.map(convertNumbersToZero));\n}\nconst complex = {\n    test,\n    parse: parseComplexValue,\n    createTransformer,\n    getAnimatableNone,\n};\n\nexport { analyseComplexValue, complex };\n","import { complex } from './index.mjs';\nimport { floatRegex } from '../utils/float-regex.mjs';\n\n/**\n * Properties that should default to 1 or 100%\n */\nconst maxDefaults = new Set([\"brightness\", \"contrast\", \"saturate\", \"opacity\"]);\nfunction applyDefaultFilter(v) {\n    const [name, value] = v.slice(0, -1).split(\"(\");\n    if (name === \"drop-shadow\")\n        return v;\n    const [number] = value.match(floatRegex) || [];\n    if (!number)\n        return v;\n    const unit = value.replace(number, \"\");\n    let defaultValue = maxDefaults.has(name) ? 1 : 0;\n    if (number !== value)\n        defaultValue *= 100;\n    return name + \"(\" + defaultValue + unit + \")\";\n}\nconst functionRegex = /\\b([a-z-]*)\\(.*?\\)/gu;\nconst filter = {\n    ...complex,\n    getAnimatableNone: (v) => {\n        const functions = v.match(functionRegex);\n        return functions ? functions.map(applyDefaultFilter).join(\" \") : v;\n    },\n};\n\nexport { filter };\n","import { px } from '../../../value/types/numbers/units.mjs';\n\nconst browserNumberValueTypes = {\n    // Border props\n    borderWidth: px,\n    borderTopWidth: px,\n    borderRightWidth: px,\n    borderBottomWidth: px,\n    borderLeftWidth: px,\n    borderRadius: px,\n    radius: px,\n    borderTopLeftRadius: px,\n    borderTopRightRadius: px,\n    borderBottomRightRadius: px,\n    borderBottomLeftRadius: px,\n    // Positioning props\n    width: px,\n    maxWidth: px,\n    height: px,\n    maxHeight: px,\n    top: px,\n    right: px,\n    bottom: px,\n    left: px,\n    // Spacing props\n    padding: px,\n    paddingTop: px,\n    paddingRight: px,\n    paddingBottom: px,\n    paddingLeft: px,\n    margin: px,\n    marginTop: px,\n    marginRight: px,\n    marginBottom: px,\n    marginLeft: px,\n    // Misc\n    backgroundPositionX: px,\n    backgroundPositionY: px,\n};\n\nexport { browserNumberValueTypes };\n","import { scale, alpha } from '../../../value/types/numbers/index.mjs';\nimport { degrees, px, progressPercentage } from '../../../value/types/numbers/units.mjs';\n\nconst transformValueTypes = {\n    rotate: degrees,\n    rotateX: degrees,\n    rotateY: degrees,\n    rotateZ: degrees,\n    scale,\n    scaleX: scale,\n    scaleY: scale,\n    scaleZ: scale,\n    skew: degrees,\n    skewX: degrees,\n    skewY: degrees,\n    distance: px,\n    translateX: px,\n    translateY: px,\n    translateZ: px,\n    x: px,\n    y: px,\n    z: px,\n    perspective: px,\n    transformPerspective: px,\n    opacity: alpha,\n    originX: progressPercentage,\n    originY: progressPercentage,\n    originZ: px,\n};\n\nexport { transformValueTypes };\n","import { number } from '../../../value/types/numbers/index.mjs';\n\nconst int = {\n    ...number,\n    transform: Math.round,\n};\n\nexport { int };\n","import { alpha } from '../../../value/types/numbers/index.mjs';\nimport { px } from '../../../value/types/numbers/units.mjs';\nimport { browserNumberValueTypes } from './number-browser.mjs';\nimport { transformValueTypes } from './transform.mjs';\nimport { int } from './type-int.mjs';\n\nconst numberValueTypes = {\n    ...browserNumberValueTypes,\n    ...transformValueTypes,\n    zIndex: int,\n    size: px,\n    // SVG\n    fillOpacity: alpha,\n    strokeOpacity: alpha,\n    numOctaves: int,\n};\n\nexport { numberValueTypes };\n","import { color } from '../../../value/types/color/index.mjs';\nimport { filter } from '../../../value/types/complex/filter.mjs';\nimport { numberValueTypes } from './number.mjs';\n\n/**\n * A map of default value types for common values\n */\nconst defaultValueTypes = {\n    ...numberValueTypes,\n    // Color props\n    color,\n    backgroundColor: color,\n    outlineColor: color,\n    fill: color,\n    stroke: color,\n    // Border props\n    borderColor: color,\n    borderTopColor: color,\n    borderRightColor: color,\n    borderBottomColor: color,\n    borderLeftColor: color,\n    filter,\n    WebkitFilter: filter,\n};\n/**\n * Gets the default ValueType for the provided value key\n */\nconst getDefaultValueType = (key) => defaultValueTypes[key];\n\nexport { defaultValueTypes, getDefaultValueType };\n","import { complex } from '../../../value/types/complex/index.mjs';\nimport { filter } from '../../../value/types/complex/filter.mjs';\nimport { getDefaultValueType } from './defaults.mjs';\n\nfunction getAnimatableNone(key, value) {\n    let defaultValueType = getDefaultValueType(key);\n    if (defaultValueType !== filter)\n        defaultValueType = complex;\n    // If value is not recognised as animatable, ie \"none\", create an animatable version origin based on the target\n    return defaultValueType.getAnimatableNone\n        ? defaultValueType.getAnimatableNone(value)\n        : undefined;\n}\n\nexport { getAnimatableNone };\n","import { analyseComplexValue } from '../../../value/types/complex/index.mjs';\nimport { getAnimatableNone } from '../../dom/value-types/animatable-none.mjs';\n\n/**\n * If we encounter keyframes like \"none\" or \"0\" and we also have keyframes like\n * \"#fff\" or \"200px 200px\" we want to find a keyframe to serve as a template for\n * the \"none\" keyframes. In this case \"#fff\" or \"200px 200px\" - then these get turned into\n * zero equivalents, i.e. \"#fff0\" or \"0px 0px\".\n */\nconst invalidTemplates = new Set([\"auto\", \"none\", \"0\"]);\nfunction makeNoneKeyframesAnimatable(unresolvedKeyframes, noneKeyframeIndexes, name) {\n    let i = 0;\n    let animatableTemplate = undefined;\n    while (i < unresolvedKeyframes.length && !animatableTemplate) {\n        const keyframe = unresolvedKeyframes[i];\n        if (typeof keyframe === \"string\" &&\n            !invalidTemplates.has(keyframe) &&\n            analyseComplexValue(keyframe).values.length) {\n            animatableTemplate = unresolvedKeyframes[i];\n        }\n        i++;\n    }\n    if (animatableTemplate && name) {\n        for (const noneIndex of noneKeyframeIndexes) {\n            unresolvedKeyframes[noneIndex] = getAnimatableNone(name, animatableTemplate);\n        }\n    }\n}\n\nexport { makeNoneKeyframesAnimatable };\n","import { number } from '../../../value/types/numbers/index.mjs';\nimport { px } from '../../../value/types/numbers/units.mjs';\nimport { transformPropOrder } from '../../html/utils/keys-transform.mjs';\n\nconst isNumOrPxType = (v) => v === number || v === px;\nconst getPosFromMatrix = (matrix, pos) => parseFloat(matrix.split(\", \")[pos]);\nconst getTranslateFromMatrix = (pos2, pos3) => (_bbox, { transform }) => {\n    if (transform === \"none\" || !transform)\n        return 0;\n    const matrix3d = transform.match(/^matrix3d\\((.+)\\)$/u);\n    if (matrix3d) {\n        return getPosFromMatrix(matrix3d[1], pos3);\n    }\n    else {\n        const matrix = transform.match(/^matrix\\((.+)\\)$/u);\n        if (matrix) {\n            return getPosFromMatrix(matrix[1], pos2);\n        }\n        else {\n            return 0;\n        }\n    }\n};\nconst transformKeys = new Set([\"x\", \"y\", \"z\"]);\nconst nonTranslationalTransformKeys = transformPropOrder.filter((key) => !transformKeys.has(key));\nfunction removeNonTranslationalTransform(visualElement) {\n    const removedTransforms = [];\n    nonTranslationalTransformKeys.forEach((key) => {\n        const value = visualElement.getValue(key);\n        if (value !== undefined) {\n            removedTransforms.push([key, value.get()]);\n            value.set(key.startsWith(\"scale\") ? 1 : 0);\n        }\n    });\n    return removedTransforms;\n}\nconst positionalValues = {\n    // Dimensions\n    width: ({ x }, { paddingLeft = \"0\", paddingRight = \"0\" }) => x.max - x.min - parseFloat(paddingLeft) - parseFloat(paddingRight),\n    height: ({ y }, { paddingTop = \"0\", paddingBottom = \"0\" }) => y.max - y.min - parseFloat(paddingTop) - parseFloat(paddingBottom),\n    top: (_bbox, { top }) => parseFloat(top),\n    left: (_bbox, { left }) => parseFloat(left),\n    bottom: ({ y }, { top }) => parseFloat(top) + (y.max - y.min),\n    right: ({ x }, { left }) => parseFloat(left) + (x.max - x.min),\n    // Transform\n    x: getTranslateFromMatrix(4, 13),\n    y: getTranslateFromMatrix(5, 14),\n};\n// Alias translate longform names\npositionalValues.translateX = positionalValues.x;\npositionalValues.translateY = positionalValues.y;\n\nexport { isNumOrPxType, positionalValues, removeNonTranslationalTransform };\n","import { removeNonTranslationalTransform } from '../dom/utils/unit-conversion.mjs';\nimport { frame } from '../../frameloop/frame.mjs';\n\nconst toResolve = new Set();\nlet isScheduled = false;\nlet anyNeedsMeasurement = false;\nfunction measureAllKeyframes() {\n    if (anyNeedsMeasurement) {\n        const resolversToMeasure = Array.from(toResolve).filter((resolver) => resolver.needsMeasurement);\n        const elementsToMeasure = new Set(resolversToMeasure.map((resolver) => resolver.element));\n        const transformsToRestore = new Map();\n        /**\n         * Write pass\n         * If we're measuring elements we want to remove bounding box-changing transforms.\n         */\n        elementsToMeasure.forEach((element) => {\n            const removedTransforms = removeNonTranslationalTransform(element);\n            if (!removedTransforms.length)\n                return;\n            transformsToRestore.set(element, removedTransforms);\n            element.render();\n        });\n        // Read\n        resolversToMeasure.forEach((resolver) => resolver.measureInitialState());\n        // Write\n        elementsToMeasure.forEach((element) => {\n            element.render();\n            const restore = transformsToRestore.get(element);\n            if (restore) {\n                restore.forEach(([key, value]) => {\n                    var _a;\n                    (_a = element.getValue(key)) === null || _a === void 0 ? void 0 : _a.set(value);\n                });\n            }\n        });\n        // Read\n        resolversToMeasure.forEach((resolver) => resolver.measureEndState());\n        // Write\n        resolversToMeasure.forEach((resolver) => {\n            if (resolver.suspendedScrollY !== undefined) {\n                window.scrollTo(0, resolver.suspendedScrollY);\n            }\n        });\n    }\n    anyNeedsMeasurement = false;\n    isScheduled = false;\n    toResolve.forEach((resolver) => resolver.complete());\n    toResolve.clear();\n}\nfunction readAllKeyframes() {\n    toResolve.forEach((resolver) => {\n        resolver.readKeyframes();\n        if (resolver.needsMeasurement) {\n            anyNeedsMeasurement = true;\n        }\n    });\n}\nfunction flushKeyframeResolvers() {\n    readAllKeyframes();\n    measureAllKeyframes();\n}\nclass KeyframeResolver {\n    constructor(unresolvedKeyframes, onComplete, name, motionValue, element, isAsync = false) {\n        /**\n         * Track whether this resolver has completed. Once complete, it never\n         * needs to attempt keyframe resolution again.\n         */\n        this.isComplete = false;\n        /**\n         * Track whether this resolver is async. If it is, it'll be added to the\n         * resolver queue and flushed in the next frame. Resolvers that aren't going\n         * to trigger read/write thrashing don't need to be async.\n         */\n        this.isAsync = false;\n        /**\n         * Track whether this resolver needs to perform a measurement\n         * to resolve its keyframes.\n         */\n        this.needsMeasurement = false;\n        /**\n         * Track whether this resolver is currently scheduled to resolve\n         * to allow it to be cancelled and resumed externally.\n         */\n        this.isScheduled = false;\n        this.unresolvedKeyframes = [...unresolvedKeyframes];\n        this.onComplete = onComplete;\n        this.name = name;\n        this.motionValue = motionValue;\n        this.element = element;\n        this.isAsync = isAsync;\n    }\n    scheduleResolve() {\n        this.isScheduled = true;\n        if (this.isAsync) {\n            toResolve.add(this);\n            if (!isScheduled) {\n                isScheduled = true;\n                frame.read(readAllKeyframes);\n                frame.resolveKeyframes(measureAllKeyframes);\n            }\n        }\n        else {\n            this.readKeyframes();\n            this.complete();\n        }\n    }\n    readKeyframes() {\n        const { unresolvedKeyframes, name, element, motionValue } = this;\n        /**\n         * If a keyframe is null, we hydrate it either by reading it from\n         * the instance, or propagating from previous keyframes.\n         */\n        for (let i = 0; i < unresolvedKeyframes.length; i++) {\n            if (unresolvedKeyframes[i] === null) {\n                /**\n                 * If the first keyframe is null, we need to find its value by sampling the element\n                 */\n                if (i === 0) {\n                    const currentValue = motionValue === null || motionValue === void 0 ? void 0 : motionValue.get();\n                    const finalKeyframe = unresolvedKeyframes[unresolvedKeyframes.length - 1];\n                    if (currentValue !== undefined) {\n                        unresolvedKeyframes[0] = currentValue;\n                    }\n                    else if (element && name) {\n                        const valueAsRead = element.readValue(name, finalKeyframe);\n                        if (valueAsRead !== undefined && valueAsRead !== null) {\n                            unresolvedKeyframes[0] = valueAsRead;\n                        }\n                    }\n                    if (unresolvedKeyframes[0] === undefined) {\n                        unresolvedKeyframes[0] = finalKeyframe;\n                    }\n                    if (motionValue && currentValue === undefined) {\n                        motionValue.set(unresolvedKeyframes[0]);\n                    }\n                }\n                else {\n                    unresolvedKeyframes[i] = unresolvedKeyframes[i - 1];\n                }\n            }\n        }\n    }\n    setFinalKeyframe() { }\n    measureInitialState() { }\n    renderEndStyles() { }\n    measureEndState() { }\n    complete() {\n        this.isComplete = true;\n        this.onComplete(this.unresolvedKeyframes, this.finalKeyframe);\n        toResolve.delete(this);\n    }\n    cancel() {\n        if (!this.isComplete) {\n            this.isScheduled = false;\n            toResolve.delete(this);\n        }\n    }\n    resume() {\n        if (!this.isComplete)\n            this.scheduleResolve();\n    }\n}\n\nexport { KeyframeResolver, flushKeyframeResolvers };\n","import { noop } from './noop.mjs';\n\nlet warning = noop;\nlet invariant = noop;\nif (process.env.NODE_ENV !== \"production\") {\n    warning = (check, message) => {\n        if (!check && typeof console !== \"undefined\") {\n            console.warn(message);\n        }\n    };\n    invariant = (check, message) => {\n        if (!check) {\n            throw new Error(message);\n        }\n    };\n}\n\nexport { invariant, warning };\n","/**\n * Check if value is a numerical string, ie a string that is purely a number eg \"100\" or \"-100.1\"\n */\nconst isNumericalString = (v) => /^-?(?:\\d+(?:\\.\\d+)?|\\.\\d+)$/u.test(v);\n\nexport { isNumericalString };\n","const checkStringStartsWith = (token) => (key) => typeof key === \"string\" && key.startsWith(token);\nconst isCSSVariableName = \n/*@__PURE__*/ checkStringStartsWith(\"--\");\nconst startsAsVariableToken = \n/*@__PURE__*/ checkStringStartsWith(\"var(--\");\nconst isCSSVariableToken = (value) => {\n    const startsWithToken = startsAsVariableToken(value);\n    if (!startsWithToken)\n        return false;\n    // Ensure any comments are stripped from the value as this can harm performance of the regex.\n    return singleCssVariableRegex.test(value.split(\"/*\")[0].trim());\n};\nconst singleCssVariableRegex = /var\\(--(?:[\\w-]+\\s*|[\\w-]+\\s*,(?:\\s*[^)(\\s]|\\s*\\((?:[^)(]|\\([^)(]*\\))*\\))+\\s*)\\)$/iu;\n\nexport { isCSSVariableName, isCSSVariableToken };\n","import { invariant } from 'motion-utils';\nimport { isNumericalString } from '../../../utils/is-numerical-string.mjs';\nimport { isCSSVariableToken } from './is-css-variable.mjs';\n\n/**\n * Parse Framer's special CSS variable format into a CSS token and a fallback.\n *\n * ```\n * `var(--foo, #fff)` => [`--foo`, '#fff']\n * ```\n *\n * @param current\n */\nconst splitCSSVariableRegex = \n// eslint-disable-next-line redos-detector/no-unsafe-regex -- false positive, as it can match a lot of words\n/^var\\(--(?:([\\w-]+)|([\\w-]+), ?([a-zA-Z\\d ()%#.,-]+))\\)/u;\nfunction parseCSSVariable(current) {\n    const match = splitCSSVariableRegex.exec(current);\n    if (!match)\n        return [,];\n    const [, token1, token2, fallback] = match;\n    return [`--${token1 !== null && token1 !== void 0 ? token1 : token2}`, fallback];\n}\nconst maxDepth = 4;\nfunction getVariableValue(current, element, depth = 1) {\n    invariant(depth <= maxDepth, `Max CSS variable fallback depth detected in property \"${current}\". This may indicate a circular fallback dependency.`);\n    const [token, fallback] = parseCSSVariable(current);\n    // No CSS variable detected\n    if (!token)\n        return;\n    // Attempt to read this CSS variable off the element\n    const resolved = window.getComputedStyle(element).getPropertyValue(token);\n    if (resolved) {\n        const trimmed = resolved.trim();\n        return isNumericalString(trimmed) ? parseFloat(trimmed) : trimmed;\n    }\n    return isCSSVariableToken(fallback)\n        ? getVariableValue(fallback, element, depth + 1)\n        : fallback;\n}\n\nexport { getVariableValue, parseCSSVariable };\n","/**\n * Tests a provided value against a ValueType\n */\nconst testValueType = (v) => (type) => type.test(v);\n\nexport { testValueType };\n","import { number } from '../../../value/types/numbers/index.mjs';\nimport { px, percent, degrees, vw, vh } from '../../../value/types/numbers/units.mjs';\nimport { testValueType } from './test.mjs';\nimport { auto } from './type-auto.mjs';\n\n/**\n * A list of value types commonly used for dimensions\n */\nconst dimensionValueTypes = [number, px, percent, degrees, vw, vh, auto];\n/**\n * Tests a dimensional value against the list of dimension ValueTypes\n */\nconst findDimensionValueType = (v) => dimensionValueTypes.find(testValueType(v));\n\nexport { dimensionValueTypes, findDimensionValueType };\n","/**\n * ValueType for \"auto\"\n */\nconst auto = {\n    test: (v) => v === \"auto\",\n    parse: (v) => v,\n};\n\nexport { auto };\n","import { isNone } from '../../animation/utils/is-none.mjs';\nimport { positionalKeys } from '../html/utils/keys-position.mjs';\nimport { makeNoneKeyframesAnimatable } from '../html/utils/make-none-animatable.mjs';\nimport { KeyframeResolver } from '../utils/KeyframesResolver.mjs';\nimport { getVariableValue } from './utils/css-variables-conversion.mjs';\nimport { isCSSVariableToken } from './utils/is-css-variable.mjs';\nimport { isNumOrPxType, positionalValues } from './utils/unit-conversion.mjs';\nimport { findDimensionValueType } from './value-types/dimensions.mjs';\n\nclass DOMKeyframesResolver extends KeyframeResolver {\n    constructor(unresolvedKeyframes, onComplete, name, motionValue, element) {\n        super(unresolvedKeyframes, onComplete, name, motionValue, element, true);\n    }\n    readKeyframes() {\n        const { unresolvedKeyframes, element, name } = this;\n        if (!element || !element.current)\n            return;\n        super.readKeyframes();\n        /**\n         * If any keyframe is a CSS variable, we need to find its value by sampling the element\n         */\n        for (let i = 0; i < unresolvedKeyframes.length; i++) {\n            let keyframe = unresolvedKeyframes[i];\n            if (typeof keyframe === \"string\") {\n                keyframe = keyframe.trim();\n                if (isCSSVariableToken(keyframe)) {\n                    const resolved = getVariableValue(keyframe, element.current);\n                    if (resolved !== undefined) {\n                        unresolvedKeyframes[i] = resolved;\n                    }\n                    if (i === unresolvedKeyframes.length - 1) {\n                        this.finalKeyframe = keyframe;\n                    }\n                }\n            }\n        }\n        /**\n         * Resolve \"none\" values. We do this potentially twice - once before and once after measuring keyframes.\n         * This could be seen as inefficient but it's a trade-off to avoid measurements in more situations, which\n         * have a far bigger performance impact.\n         */\n        this.resolveNoneKeyframes();\n        /**\n         * Check to see if unit type has changed. If so schedule jobs that will\n         * temporarily set styles to the destination keyframes.\n         * Skip if we have more than two keyframes or this isn't a positional value.\n         * TODO: We can throw if there are multiple keyframes and the value type changes.\n         */\n        if (!positionalKeys.has(name) || unresolvedKeyframes.length !== 2) {\n            return;\n        }\n        const [origin, target] = unresolvedKeyframes;\n        const originType = findDimensionValueType(origin);\n        const targetType = findDimensionValueType(target);\n        /**\n         * Either we don't recognise these value types or we can animate between them.\n         */\n        if (originType === targetType)\n            return;\n        /**\n         * If both values are numbers or pixels, we can animate between them by\n         * converting them to numbers.\n         */\n        if (isNumOrPxType(originType) && isNumOrPxType(targetType)) {\n            for (let i = 0; i < unresolvedKeyframes.length; i++) {\n                const value = unresolvedKeyframes[i];\n                if (typeof value === \"string\") {\n                    unresolvedKeyframes[i] = parseFloat(value);\n                }\n            }\n        }\n        else {\n            /**\n             * Else, the only way to resolve this is by measuring the element.\n             */\n            this.needsMeasurement = true;\n        }\n    }\n    resolveNoneKeyframes() {\n        const { unresolvedKeyframes, name } = this;\n        const noneKeyframeIndexes = [];\n        for (let i = 0; i < unresolvedKeyframes.length; i++) {\n            if (isNone(unresolvedKeyframes[i])) {\n                noneKeyframeIndexes.push(i);\n            }\n        }\n        if (noneKeyframeIndexes.length) {\n            makeNoneKeyframesAnimatable(unresolvedKeyframes, noneKeyframeIndexes, name);\n        }\n    }\n    measureInitialState() {\n        const { element, unresolvedKeyframes, name } = this;\n        if (!element || !element.current)\n            return;\n        if (name === \"height\") {\n            this.suspendedScrollY = window.pageYOffset;\n        }\n        this.measuredOrigin = positionalValues[name](element.measureViewportBox(), window.getComputedStyle(element.current));\n        unresolvedKeyframes[0] = this.measuredOrigin;\n        // Set final key frame to measure after next render\n        const measureKeyframe = unresolvedKeyframes[unresolvedKeyframes.length - 1];\n        if (measureKeyframe !== undefined) {\n            element.getValue(name, measureKeyframe).jump(measureKeyframe, false);\n        }\n    }\n    measureEndState() {\n        var _a;\n        const { element, name, unresolvedKeyframes } = this;\n        if (!element || !element.current)\n            return;\n        const value = element.getValue(name);\n        value && value.jump(this.measuredOrigin, false);\n        const finalKeyframeIndex = unresolvedKeyframes.length - 1;\n        const finalKeyframe = unresolvedKeyframes[finalKeyframeIndex];\n        unresolvedKeyframes[finalKeyframeIndex] = positionalValues[name](element.measureViewportBox(), window.getComputedStyle(element.current));\n        if (finalKeyframe !== null && this.finalKeyframe === undefined) {\n            this.finalKeyframe = finalKeyframe;\n        }\n        // If we removed transform values, reapply them before the next render\n        if ((_a = this.removedTransforms) === null || _a === void 0 ? void 0 : _a.length) {\n            this.removedTransforms.forEach(([unsetTransformName, unsetTransformValue]) => {\n                element\n                    .getValue(unsetTransformName)\n                    .set(unsetTransformValue);\n            });\n        }\n        this.resolveNoneKeyframes();\n    }\n}\n\nexport { DOMKeyframesResolver };\n","import { isZeroValueString } from '../../utils/is-zero-value-string.mjs';\n\nfunction isNone(value) {\n    if (typeof value === \"number\") {\n        return value === 0;\n    }\n    else if (value !== null) {\n        return value === \"none\" || value === \"0\" || isZeroValueString(value);\n    }\n    else {\n        return true;\n    }\n}\n\nexport { isNone };\n","import { complex } from '../../value/types/complex/index.mjs';\n\n/**\n * Check if a value is animatable. Examples:\n *\n * ✅: 100, \"100px\", \"#fff\"\n * ❌: \"block\", \"url(2.jpg)\"\n * @param value\n *\n * @internal\n */\nconst isAnimatable = (value, name) => {\n    // If the list of keys tat might be non-animatable grows, replace with Set\n    if (name === \"zIndex\")\n        return false;\n    // If it's a number or a keyframes array, we can animate it. We might at some point\n    // need to do a deep isAnimatable check of keyframes, or let Popmotion handle this,\n    // but for now lets leave it like this for performance reasons\n    if (typeof value === \"number\" || Array.isArray(value))\n        return true;\n    if (typeof value === \"string\" && // It's animatable if we have a string\n        (complex.test(value) || value === \"0\") && // And it contains numbers and/or colors\n        !value.startsWith(\"url(\") // Unless it starts with \"url(\"\n    ) {\n        return true;\n    }\n    return false;\n};\n\nexport { isAnimatable };\n","import { isGenerator } from 'motion-dom';\nimport { warning } from 'motion-utils';\nimport { isAnimatable } from '../../utils/is-animatable.mjs';\n\nfunction hasKeyframesChanged(keyframes) {\n    const current = keyframes[0];\n    if (keyframes.length === 1)\n        return true;\n    for (let i = 0; i < keyframes.length; i++) {\n        if (keyframes[i] !== current)\n            return true;\n    }\n}\nfunction canAnimate(keyframes, name, type, velocity) {\n    /**\n     * Check if we're able to animate between the start and end keyframes,\n     * and throw a warning if we're attempting to animate between one that's\n     * animatable and another that isn't.\n     */\n    const originKeyframe = keyframes[0];\n    if (originKeyframe === null)\n        return false;\n    /**\n     * These aren't traditionally animatable but we do support them.\n     * In future we could look into making this more generic or replacing\n     * this function with mix() === mixImmediate\n     */\n    if (name === \"display\" || name === \"visibility\")\n        return true;\n    const targetKeyframe = keyframes[keyframes.length - 1];\n    const isOriginAnimatable = isAnimatable(originKeyframe, name);\n    const isTargetAnimatable = isAnimatable(targetKeyframe, name);\n    warning(isOriginAnimatable === isTargetAnimatable, `You are trying to animate ${name} from \"${originKeyframe}\" to \"${targetKeyframe}\". ${originKeyframe} is not an animatable value - to enable this animation set ${originKeyframe} to a value animatable to ${targetKeyframe} via the \\`style\\` property.`);\n    // Always skip if any of these are true\n    if (!isOriginAnimatable || !isTargetAnimatable) {\n        return false;\n    }\n    return (hasKeyframesChanged(keyframes) ||\n        ((type === \"spring\" || isGenerator(type)) && velocity));\n}\n\nexport { canAnimate };\n","const isNotNull = (value) => value !== null;\nfunction getFinalKeyframe(keyframes, { repeat, repeatType = \"loop\" }, finalKeyframe) {\n    const resolvedKeyframes = keyframes.filter(isNotNull);\n    const index = repeat && repeatType !== \"loop\" && repeat % 2 === 1\n        ? 0\n        : resolvedKeyframes.length - 1;\n    return !index || finalKeyframe === undefined\n        ? resolvedKeyframes[index]\n        : finalKeyframe;\n}\n\nexport { getFinalKeyframe };\n","import { time } from '../../frameloop/sync-time.mjs';\nimport { flushKeyframeResolvers } from '../../render/utils/KeyframesResolver.mjs';\nimport { instantAnimationState } from '../../utils/use-instant-transition-state.mjs';\nimport { canAnimate } from './utils/can-animate.mjs';\nimport { getFinalKeyframe } from './waapi/utils/get-final-keyframe.mjs';\n\n/**\n * Maximum time allowed between an animation being created and it being\n * resolved for us to use the latter as the start time.\n *\n * This is to ensure that while we prefer to \"start\" an animation as soon\n * as it's triggered, we also want to avoid a visual jump if there's a big delay\n * between these two moments.\n */\nconst MAX_RESOLVE_DELAY = 40;\nclass BaseAnimation {\n    constructor({ autoplay = true, delay = 0, type = \"keyframes\", repeat = 0, repeatDelay = 0, repeatType = \"loop\", ...options }) {\n        // Track whether the animation has been stopped. Stopped animations won't restart.\n        this.isStopped = false;\n        this.hasAttemptedResolve = false;\n        this.createdAt = time.now();\n        this.options = {\n            autoplay,\n            delay,\n            type,\n            repeat,\n            repeatDelay,\n            repeatType,\n            ...options,\n        };\n        this.updateFinishedPromise();\n    }\n    /**\n     * This method uses the createdAt and resolvedAt to calculate the\n     * animation startTime. *Ideally*, we would use the createdAt time as t=0\n     * as the following frame would then be the first frame of the animation in\n     * progress, which would feel snappier.\n     *\n     * However, if there's a delay (main thread work) between the creation of\n     * the animation and the first commited frame, we prefer to use resolvedAt\n     * to avoid a sudden jump into the animation.\n     */\n    calcStartTime() {\n        if (!this.resolvedAt)\n            return this.createdAt;\n        return this.resolvedAt - this.createdAt > MAX_RESOLVE_DELAY\n            ? this.resolvedAt\n            : this.createdAt;\n    }\n    /**\n     * A getter for resolved data. If keyframes are not yet resolved, accessing\n     * this.resolved will synchronously flush all pending keyframe resolvers.\n     * This is a deoptimisation, but at its worst still batches read/writes.\n     */\n    get resolved() {\n        if (!this._resolved && !this.hasAttemptedResolve) {\n            flushKeyframeResolvers();\n        }\n        return this._resolved;\n    }\n    /**\n     * A method to be called when the keyframes resolver completes. This method\n     * will check if its possible to run the animation and, if not, skip it.\n     * Otherwise, it will call initPlayback on the implementing class.\n     */\n    onKeyframesResolved(keyframes, finalKeyframe) {\n        this.resolvedAt = time.now();\n        this.hasAttemptedResolve = true;\n        const { name, type, velocity, delay, onComplete, onUpdate, isGenerator, } = this.options;\n        /**\n         * If we can't animate this value with the resolved keyframes\n         * then we should complete it immediately.\n         */\n        if (!isGenerator && !canAnimate(keyframes, name, type, velocity)) {\n            // Finish immediately\n            if (instantAnimationState.current || !delay) {\n                onUpdate &&\n                    onUpdate(getFinalKeyframe(keyframes, this.options, finalKeyframe));\n                onComplete && onComplete();\n                this.resolveFinishedPromise();\n                return;\n            }\n            // Finish after a delay\n            else {\n                this.options.duration = 0;\n            }\n        }\n        const resolvedAnimation = this.initPlayback(keyframes, finalKeyframe);\n        if (resolvedAnimation === false)\n            return;\n        this._resolved = {\n            keyframes,\n            finalKeyframe,\n            ...resolvedAnimation,\n        };\n        this.onPostResolved();\n    }\n    onPostResolved() { }\n    /**\n     * Allows the returned animation to be awaited or promise-chained. Currently\n     * resolves when the animation finishes at all but in a future update could/should\n     * reject if its cancels.\n     */\n    then(resolve, reject) {\n        return this.currentFinishedPromise.then(resolve, reject);\n    }\n    flatten() {\n        this.options.type = \"keyframes\";\n        this.options.ease = \"linear\";\n    }\n    updateFinishedPromise() {\n        this.currentFinishedPromise = new Promise((resolve) => {\n            this.resolveFinishedPromise = resolve;\n        });\n    }\n}\n\nexport { BaseAnimation };\n","/*\n  Value in range from progress\n\n  Given a lower limit and an upper limit, we return the value within\n  that range as expressed by progress (usually a number from 0 to 1)\n\n  So progress = 0.5 would change\n\n  from -------- to\n\n  to\n\n  from ---- to\n\n  E.g. from = 10, to = 20, progress = 0.5 => 15\n\n  @param [number]: Lower limit of range\n  @param [number]: Upper limit of range\n  @param [number]: The progress between lower and upper limits expressed 0-1\n  @return [number]: Value as calculated from progress within range (not limited within range)\n*/\nconst mixNumber = (from, to, progress) => {\n    return from + (to - from) * progress;\n};\n\nexport { mixNumber };\n","// Adapted from https://gist.github.com/mjackson/5311256\nfunction hueToRgb(p, q, t) {\n    if (t < 0)\n        t += 1;\n    if (t > 1)\n        t -= 1;\n    if (t < 1 / 6)\n        return p + (q - p) * 6 * t;\n    if (t < 1 / 2)\n        return q;\n    if (t < 2 / 3)\n        return p + (q - p) * (2 / 3 - t) * 6;\n    return p;\n}\nfunction hslaToRgba({ hue, saturation, lightness, alpha }) {\n    hue /= 360;\n    saturation /= 100;\n    lightness /= 100;\n    let red = 0;\n    let green = 0;\n    let blue = 0;\n    if (!saturation) {\n        red = green = blue = lightness;\n    }\n    else {\n        const q = lightness < 0.5\n            ? lightness * (1 + saturation)\n            : lightness + saturation - lightness * saturation;\n        const p = 2 * lightness - q;\n        red = hueToRgb(p, q, hue + 1 / 3);\n        green = hueToRgb(p, q, hue);\n        blue = hueToRgb(p, q, hue - 1 / 3);\n    }\n    return {\n        red: Math.round(red * 255),\n        green: Math.round(green * 255),\n        blue: Math.round(blue * 255),\n        alpha,\n    };\n}\n\nexport { hslaToRgba };\n","function mixImmediate(a, b) {\n    return (p) => (p > 0 ? b : a);\n}\n\nexport { mixImmediate };\n","import { mixNumber } from './number.mjs';\nimport { warning } from 'motion-utils';\nimport { hslaToRgba } from '../hsla-to-rgba.mjs';\nimport { hex } from '../../value/types/color/hex.mjs';\nimport { rgba } from '../../value/types/color/rgba.mjs';\nimport { hsla } from '../../value/types/color/hsla.mjs';\nimport { mixImmediate } from './immediate.mjs';\n\n// Linear color space blending\n// Explained https://www.youtube.com/watch?v=LKnqECcg6Gw\n// Demonstrated http://codepen.io/osublake/pen/xGVVaN\nconst mixLinearColor = (from, to, v) => {\n    const fromExpo = from * from;\n    const expo = v * (to * to - fromExpo) + fromExpo;\n    return expo < 0 ? 0 : Math.sqrt(expo);\n};\nconst colorTypes = [hex, rgba, hsla];\nconst getColorType = (v) => colorTypes.find((type) => type.test(v));\nfunction asRGBA(color) {\n    const type = getColorType(color);\n    warning(Boolean(type), `'${color}' is not an animatable color. Use the equivalent color code instead.`);\n    if (!Boolean(type))\n        return false;\n    let model = type.parse(color);\n    if (type === hsla) {\n        // TODO Remove this cast - needed since Motion's stricter typing\n        model = hslaToRgba(model);\n    }\n    return model;\n}\nconst mixColor = (from, to) => {\n    const fromRGBA = asRGBA(from);\n    const toRGBA = asRGBA(to);\n    if (!fromRGBA || !toRGBA) {\n        return mixImmediate(from, to);\n    }\n    const blended = { ...fromRGBA };\n    return (v) => {\n        blended.red = mixLinearColor(fromRGBA.red, toRGBA.red, v);\n        blended.green = mixLinearColor(fromRGBA.green, toRGBA.green, v);\n        blended.blue = mixLinearColor(fromRGBA.blue, toRGBA.blue, v);\n        blended.alpha = mixNumber(fromRGBA.alpha, toRGBA.alpha, v);\n        return rgba.transform(blended);\n    };\n};\n\nexport { mixColor, mixLinearColor };\n","/**\n * Pipe\n * Compose other transformers to run linearily\n * pipe(min(20), max(40))\n * @param  {...functions} transformers\n * @return {function}\n */\nconst combineFunctions = (a, b) => (v) => b(a(v));\nconst pipe = (...transformers) => transformers.reduce(combineFunctions);\n\nexport { pipe };\n","const invisibleValues = new Set([\"none\", \"hidden\"]);\n/**\n * Returns a function that, when provided a progress value between 0 and 1,\n * will return the \"none\" or \"hidden\" string only when the progress is that of\n * the origin or target.\n */\nfunction mixVisibility(origin, target) {\n    if (invisibleValues.has(origin)) {\n        return (p) => (p <= 0 ? origin : target);\n    }\n    else {\n        return (p) => (p >= 1 ? target : origin);\n    }\n}\n\nexport { invisibleValues, mixVisibility };\n","import { mixNumber as mixNumber$1 } from './number.mjs';\nimport { mixColor } from './color.mjs';\nimport { pipe } from '../pipe.mjs';\nimport { warning } from 'motion-utils';\nimport { color } from '../../value/types/color/index.mjs';\nimport { complex, analyseComplexValue } from '../../value/types/complex/index.mjs';\nimport { isCSSVariableToken } from '../../render/dom/utils/is-css-variable.mjs';\nimport { invisibleValues, mixVisibility } from './visibility.mjs';\nimport { mixImmediate } from './immediate.mjs';\n\nfunction mixNumber(a, b) {\n    return (p) => mixNumber$1(a, b, p);\n}\nfunction getMixer(a) {\n    if (typeof a === \"number\") {\n        return mixNumber;\n    }\n    else if (typeof a === \"string\") {\n        return isCSSVariableToken(a)\n            ? mixImmediate\n            : color.test(a)\n                ? mixColor\n                : mixComplex;\n    }\n    else if (Array.isArray(a)) {\n        return mixArray;\n    }\n    else if (typeof a === \"object\") {\n        return color.test(a) ? mixColor : mixObject;\n    }\n    return mixImmediate;\n}\nfunction mixArray(a, b) {\n    const output = [...a];\n    const numValues = output.length;\n    const blendValue = a.map((v, i) => getMixer(v)(v, b[i]));\n    return (p) => {\n        for (let i = 0; i < numValues; i++) {\n            output[i] = blendValue[i](p);\n        }\n        return output;\n    };\n}\nfunction mixObject(a, b) {\n    const output = { ...a, ...b };\n    const blendValue = {};\n    for (const key in output) {\n        if (a[key] !== undefined && b[key] !== undefined) {\n            blendValue[key] = getMixer(a[key])(a[key], b[key]);\n        }\n    }\n    return (v) => {\n        for (const key in blendValue) {\n            output[key] = blendValue[key](v);\n        }\n        return output;\n    };\n}\nfunction matchOrder(origin, target) {\n    var _a;\n    const orderedOrigin = [];\n    const pointers = { color: 0, var: 0, number: 0 };\n    for (let i = 0; i < target.values.length; i++) {\n        const type = target.types[i];\n        const originIndex = origin.indexes[type][pointers[type]];\n        const originValue = (_a = origin.values[originIndex]) !== null && _a !== void 0 ? _a : 0;\n        orderedOrigin[i] = originValue;\n        pointers[type]++;\n    }\n    return orderedOrigin;\n}\nconst mixComplex = (origin, target) => {\n    const template = complex.createTransformer(target);\n    const originStats = analyseComplexValue(origin);\n    const targetStats = analyseComplexValue(target);\n    const canInterpolate = originStats.indexes.var.length === targetStats.indexes.var.length &&\n        originStats.indexes.color.length === targetStats.indexes.color.length &&\n        originStats.indexes.number.length >= targetStats.indexes.number.length;\n    if (canInterpolate) {\n        if ((invisibleValues.has(origin) &&\n            !targetStats.values.length) ||\n            (invisibleValues.has(target) &&\n                !originStats.values.length)) {\n            return mixVisibility(origin, target);\n        }\n        return pipe(mixArray(matchOrder(originStats, targetStats), targetStats.values), template);\n    }\n    else {\n        warning(true, `Complex values '${origin}' and '${target}' too different to mix. Ensure all colors are of the same type, and that each contains the same quantity of number and color values. Falling back to instant transition.`);\n        return mixImmediate(origin, target);\n    }\n};\n\nexport { getMixer, mixArray, mixComplex, mixObject };\n","import { getMixer } from './complex.mjs';\nimport { mixNumber } from './number.mjs';\n\nfunction mix(from, to, p) {\n    if (typeof from === \"number\" &&\n        typeof to === \"number\" &&\n        typeof p === \"number\") {\n        return mixNumber(from, to, p);\n    }\n    const mixer = getMixer(from);\n    return mixer(from, to);\n}\n\nexport { mix };\n","import { velocityPerSecond } from '../../../utils/velocity-per-second.mjs';\n\nconst velocitySampleDuration = 5; // ms\nfunction calcGeneratorVelocity(resolveValue, t, current) {\n    const prevT = Math.max(t - velocitySampleDuration, 0);\n    return velocityPerSecond(current - resolveValue(prevT), t - prevT);\n}\n\nexport { calcGeneratorVelocity };\n","const springDefaults = {\n    // Default spring physics\n    stiffness: 100,\n    damping: 10,\n    mass: 1.0,\n    velocity: 0.0,\n    // Default duration/bounce-based options\n    duration: 800, // in ms\n    bounce: 0.3,\n    visualDuration: 0.3, // in seconds\n    // Rest thresholds\n    restSpeed: {\n        granular: 0.01,\n        default: 2,\n    },\n    restDelta: {\n        granular: 0.005,\n        default: 0.5,\n    },\n    // Limits\n    minDuration: 0.01, // in seconds\n    maxDuration: 10.0, // in seconds\n    minDamping: 0.05,\n    maxDamping: 1,\n};\n\nexport { springDefaults };\n","import { warning, secondsToMilliseconds, millisecondsToSeconds } from 'motion-utils';\nimport { clamp } from '../../../utils/clamp.mjs';\nimport { springDefaults } from './defaults.mjs';\n\nconst safeMin = 0.001;\nfunction findSpring({ duration = springDefaults.duration, bounce = springDefaults.bounce, velocity = springDefaults.velocity, mass = springDefaults.mass, }) {\n    let envelope;\n    let derivative;\n    warning(duration <= secondsToMilliseconds(springDefaults.maxDuration), \"Spring duration must be 10 seconds or less\");\n    let dampingRatio = 1 - bounce;\n    /**\n     * Restrict dampingRatio and duration to within acceptable ranges.\n     */\n    dampingRatio = clamp(springDefaults.minDamping, springDefaults.maxDamping, dampingRatio);\n    duration = clamp(springDefaults.minDuration, springDefaults.maxDuration, millisecondsToSeconds(duration));\n    if (dampingRatio < 1) {\n        /**\n         * Underdamped spring\n         */\n        envelope = (undampedFreq) => {\n            const exponentialDecay = undampedFreq * dampingRatio;\n            const delta = exponentialDecay * duration;\n            const a = exponentialDecay - velocity;\n            const b = calcAngularFreq(undampedFreq, dampingRatio);\n            const c = Math.exp(-delta);\n            return safeMin - (a / b) * c;\n        };\n        derivative = (undampedFreq) => {\n            const exponentialDecay = undampedFreq * dampingRatio;\n            const delta = exponentialDecay * duration;\n            const d = delta * velocity + velocity;\n            const e = Math.pow(dampingRatio, 2) * Math.pow(undampedFreq, 2) * duration;\n            const f = Math.exp(-delta);\n            const g = calcAngularFreq(Math.pow(undampedFreq, 2), dampingRatio);\n            const factor = -envelope(undampedFreq) + safeMin > 0 ? -1 : 1;\n            return (factor * ((d - e) * f)) / g;\n        };\n    }\n    else {\n        /**\n         * Critically-damped spring\n         */\n        envelope = (undampedFreq) => {\n            const a = Math.exp(-undampedFreq * duration);\n            const b = (undampedFreq - velocity) * duration + 1;\n            return -safeMin + a * b;\n        };\n        derivative = (undampedFreq) => {\n            const a = Math.exp(-undampedFreq * duration);\n            const b = (velocity - undampedFreq) * (duration * duration);\n            return a * b;\n        };\n    }\n    const initialGuess = 5 / duration;\n    const undampedFreq = approximateRoot(envelope, derivative, initialGuess);\n    duration = secondsToMilliseconds(duration);\n    if (isNaN(undampedFreq)) {\n        return {\n            stiffness: springDefaults.stiffness,\n            damping: springDefaults.damping,\n            duration,\n        };\n    }\n    else {\n        const stiffness = Math.pow(undampedFreq, 2) * mass;\n        return {\n            stiffness,\n            damping: dampingRatio * 2 * Math.sqrt(mass * stiffness),\n            duration,\n        };\n    }\n}\nconst rootIterations = 12;\nfunction approximateRoot(envelope, derivative, initialGuess) {\n    let result = initialGuess;\n    for (let i = 1; i < rootIterations; i++) {\n        result = result - envelope(result) / derivative(result);\n    }\n    return result;\n}\nfunction calcAngularFreq(undampedFreq, dampingRatio) {\n    return undampedFreq * Math.sqrt(1 - dampingRatio * dampingRatio);\n}\n\nexport { calcAngularFreq, findSpring };\n","import { calcGeneratorDuration, maxGeneratorDuration, generateLinearEasing } from 'motion-dom';\nimport { millisecondsToSeconds, secondsToMilliseconds } from 'motion-utils';\nimport { clamp } from '../../../utils/clamp.mjs';\nimport { calcGeneratorVelocity } from '../utils/velocity.mjs';\nimport { springDefaults } from './defaults.mjs';\nimport { findSpring, calcAngularFreq } from './find.mjs';\n\nconst durationKeys = [\"duration\", \"bounce\"];\nconst physicsKeys = [\"stiffness\", \"damping\", \"mass\"];\nfunction isSpringType(options, keys) {\n    return keys.some((key) => options[key] !== undefined);\n}\nfunction getSpringOptions(options) {\n    let springOptions = {\n        velocity: springDefaults.velocity,\n        stiffness: springDefaults.stiffness,\n        damping: springDefaults.damping,\n        mass: springDefaults.mass,\n        isResolvedFromDuration: false,\n        ...options,\n    };\n    // stiffness/damping/mass overrides duration/bounce\n    if (!isSpringType(options, physicsKeys) &&\n        isSpringType(options, durationKeys)) {\n        if (options.visualDuration) {\n            const visualDuration = options.visualDuration;\n            const root = (2 * Math.PI) / (visualDuration * 1.2);\n            const stiffness = root * root;\n            const damping = 2 *\n                clamp(0.05, 1, 1 - (options.bounce || 0)) *\n                Math.sqrt(stiffness);\n            springOptions = {\n                ...springOptions,\n                mass: springDefaults.mass,\n                stiffness,\n                damping,\n            };\n        }\n        else {\n            const derived = findSpring(options);\n            springOptions = {\n                ...springOptions,\n                ...derived,\n                mass: springDefaults.mass,\n            };\n            springOptions.isResolvedFromDuration = true;\n        }\n    }\n    return springOptions;\n}\nfunction spring(optionsOrVisualDuration = springDefaults.visualDuration, bounce = springDefaults.bounce) {\n    const options = typeof optionsOrVisualDuration !== \"object\"\n        ? {\n            visualDuration: optionsOrVisualDuration,\n            keyframes: [0, 1],\n            bounce,\n        }\n        : optionsOrVisualDuration;\n    let { restSpeed, restDelta } = options;\n    const origin = options.keyframes[0];\n    const target = options.keyframes[options.keyframes.length - 1];\n    /**\n     * This is the Iterator-spec return value. We ensure it's mutable rather than using a generator\n     * to reduce GC during animation.\n     */\n    const state = { done: false, value: origin };\n    const { stiffness, damping, mass, duration, velocity, isResolvedFromDuration, } = getSpringOptions({\n        ...options,\n        velocity: -millisecondsToSeconds(options.velocity || 0),\n    });\n    const initialVelocity = velocity || 0.0;\n    const dampingRatio = damping / (2 * Math.sqrt(stiffness * mass));\n    const initialDelta = target - origin;\n    const undampedAngularFreq = millisecondsToSeconds(Math.sqrt(stiffness / mass));\n    /**\n     * If we're working on a granular scale, use smaller defaults for determining\n     * when the spring is finished.\n     *\n     * These defaults have been selected emprically based on what strikes a good\n     * ratio between feeling good and finishing as soon as changes are imperceptible.\n     */\n    const isGranularScale = Math.abs(initialDelta) < 5;\n    restSpeed || (restSpeed = isGranularScale\n        ? springDefaults.restSpeed.granular\n        : springDefaults.restSpeed.default);\n    restDelta || (restDelta = isGranularScale\n        ? springDefaults.restDelta.granular\n        : springDefaults.restDelta.default);\n    let resolveSpring;\n    if (dampingRatio < 1) {\n        const angularFreq = calcAngularFreq(undampedAngularFreq, dampingRatio);\n        // Underdamped spring\n        resolveSpring = (t) => {\n            const envelope = Math.exp(-dampingRatio * undampedAngularFreq * t);\n            return (target -\n                envelope *\n                    (((initialVelocity +\n                        dampingRatio * undampedAngularFreq * initialDelta) /\n                        angularFreq) *\n                        Math.sin(angularFreq * t) +\n                        initialDelta * Math.cos(angularFreq * t)));\n        };\n    }\n    else if (dampingRatio === 1) {\n        // Critically damped spring\n        resolveSpring = (t) => target -\n            Math.exp(-undampedAngularFreq * t) *\n                (initialDelta +\n                    (initialVelocity + undampedAngularFreq * initialDelta) * t);\n    }\n    else {\n        // Overdamped spring\n        const dampedAngularFreq = undampedAngularFreq * Math.sqrt(dampingRatio * dampingRatio - 1);\n        resolveSpring = (t) => {\n            const envelope = Math.exp(-dampingRatio * undampedAngularFreq * t);\n            // When performing sinh or cosh values can hit Infinity so we cap them here\n            const freqForT = Math.min(dampedAngularFreq * t, 300);\n            return (target -\n                (envelope *\n                    ((initialVelocity +\n                        dampingRatio * undampedAngularFreq * initialDelta) *\n                        Math.sinh(freqForT) +\n                        dampedAngularFreq *\n                            initialDelta *\n                            Math.cosh(freqForT))) /\n                    dampedAngularFreq);\n        };\n    }\n    const generator = {\n        calculatedDuration: isResolvedFromDuration ? duration || null : null,\n        next: (t) => {\n            const current = resolveSpring(t);\n            if (!isResolvedFromDuration) {\n                let currentVelocity = 0.0;\n                /**\n                 * We only need to calculate velocity for under-damped springs\n                 * as over- and critically-damped springs can't overshoot, so\n                 * checking only for displacement is enough.\n                 */\n                if (dampingRatio < 1) {\n                    currentVelocity =\n                        t === 0\n                            ? secondsToMilliseconds(initialVelocity)\n                            : calcGeneratorVelocity(resolveSpring, t, current);\n                }\n                const isBelowVelocityThreshold = Math.abs(currentVelocity) <= restSpeed;\n                const isBelowDisplacementThreshold = Math.abs(target - current) <= restDelta;\n                state.done =\n                    isBelowVelocityThreshold && isBelowDisplacementThreshold;\n            }\n            else {\n                state.done = t >= duration;\n            }\n            state.value = state.done ? target : current;\n            return state;\n        },\n        toString: () => {\n            const calculatedDuration = Math.min(calcGeneratorDuration(generator), maxGeneratorDuration);\n            const easing = generateLinearEasing((progress) => generator.next(calculatedDuration * progress).value, calculatedDuration, 30);\n            return calculatedDuration + \"ms \" + easing;\n        },\n    };\n    return generator;\n}\n\nexport { spring };\n","import { spring } from './spring/index.mjs';\nimport { calcGeneratorVelocity } from './utils/velocity.mjs';\n\nfunction inertia({ keyframes, velocity = 0.0, power = 0.8, timeConstant = 325, bounceDamping = 10, bounceStiffness = 500, modifyTarget, min, max, restDelta = 0.5, restSpeed, }) {\n    const origin = keyframes[0];\n    const state = {\n        done: false,\n        value: origin,\n    };\n    const isOutOfBounds = (v) => (min !== undefined && v < min) || (max !== undefined && v > max);\n    const nearestBoundary = (v) => {\n        if (min === undefined)\n            return max;\n        if (max === undefined)\n            return min;\n        return Math.abs(min - v) < Math.abs(max - v) ? min : max;\n    };\n    let amplitude = power * velocity;\n    const ideal = origin + amplitude;\n    const target = modifyTarget === undefined ? ideal : modifyTarget(ideal);\n    /**\n     * If the target has changed we need to re-calculate the amplitude, otherwise\n     * the animation will start from the wrong position.\n     */\n    if (target !== ideal)\n        amplitude = target - origin;\n    const calcDelta = (t) => -amplitude * Math.exp(-t / timeConstant);\n    const calcLatest = (t) => target + calcDelta(t);\n    const applyFriction = (t) => {\n        const delta = calcDelta(t);\n        const latest = calcLatest(t);\n        state.done = Math.abs(delta) <= restDelta;\n        state.value = state.done ? target : latest;\n    };\n    /**\n     * Ideally this would resolve for t in a stateless way, we could\n     * do that by always precalculating the animation but as we know\n     * this will be done anyway we can assume that spring will\n     * be discovered during that.\n     */\n    let timeReachedBoundary;\n    let spring$1;\n    const checkCatchBoundary = (t) => {\n        if (!isOutOfBounds(state.value))\n            return;\n        timeReachedBoundary = t;\n        spring$1 = spring({\n            keyframes: [state.value, nearestBoundary(state.value)],\n            velocity: calcGeneratorVelocity(calcLatest, t, state.value), // TODO: This should be passing * 1000\n            damping: bounceDamping,\n            stiffness: bounceStiffness,\n            restDelta,\n            restSpeed,\n        });\n    };\n    checkCatchBoundary(0);\n    return {\n        calculatedDuration: null,\n        next: (t) => {\n            /**\n             * We need to resolve the friction to figure out if we need a\n             * spring but we don't want to do this twice per frame. So here\n             * we flag if we updated for this frame and later if we did\n             * we can skip doing it again.\n             */\n            let hasUpdatedFrame = false;\n            if (!spring$1 && timeReachedBoundary === undefined) {\n                hasUpdatedFrame = true;\n                applyFriction(t);\n                checkCatchBoundary(t);\n            }\n            /**\n             * If we have a spring and the provided t is beyond the moment the friction\n             * animation crossed the min/max boundary, use the spring.\n             */\n            if (timeReachedBoundary !== undefined && t >= timeReachedBoundary) {\n                return spring$1.next(t - timeReachedBoundary);\n            }\n            else {\n                !hasUpdatedFrame && applyFriction(t);\n                return state;\n            }\n        },\n    };\n}\n\nexport { inertia };\n","import { cubicBezier } from './cubic-bezier.mjs';\n\nconst easeIn = /*@__PURE__*/ cubicBezier(0.42, 0, 1, 1);\nconst easeOut = /*@__PURE__*/ cubicBezier(0, 0, 0.58, 1);\nconst easeInOut = /*@__PURE__*/ cubicBezier(0.42, 0, 0.58, 1);\n\nexport { easeIn, easeInOut, easeOut };\n","import { isBezierDefinition } from 'motion-dom';\nimport { invariant, noop } from 'motion-utils';\nimport { anticipate } from '../anticipate.mjs';\nimport { backIn, backInOut, backOut } from '../back.mjs';\nimport { circIn, circInOut, circOut } from '../circ.mjs';\nimport { cubicBezier } from '../cubic-bezier.mjs';\nimport { easeIn, easeInOut, easeOut } from '../ease.mjs';\n\nconst easingLookup = {\n    linear: noop,\n    easeIn,\n    easeInOut,\n    easeOut,\n    circIn,\n    circInOut,\n    circOut,\n    backIn,\n    backInOut,\n    backOut,\n    anticipate,\n};\nconst easingDefinitionToFunction = (definition) => {\n    if (isBezierDefinition(definition)) {\n        // If cubic bezier definition, create bezier curve\n        invariant(definition.length === 4, `Cubic bezier arrays must contain four numerical values.`);\n        const [x1, y1, x2, y2] = definition;\n        return cubicBezier(x1, y1, x2, y2);\n    }\n    else if (typeof definition === \"string\") {\n        // Else lookup from table\n        invariant(easingLookup[definition] !== undefined, `Invalid easing type '${definition}'`);\n        return easingLookup[definition];\n    }\n    return definition;\n};\n\nexport { easingDefinitionToFunction };\n","import { easeInOut } from '../../easing/ease.mjs';\nimport { isEasingArray } from '../../easing/utils/is-easing-array.mjs';\nimport { easingDefinitionToFunction } from '../../easing/utils/map.mjs';\nimport { interpolate } from '../../utils/interpolate.mjs';\nimport { defaultOffset } from '../../utils/offsets/default.mjs';\nimport { convertOffsetToTimes } from '../../utils/offsets/time.mjs';\n\nfunction defaultEasing(values, easing) {\n    return values.map(() => easing || easeInOut).splice(0, values.length - 1);\n}\nfunction keyframes({ duration = 300, keyframes: keyframeValues, times, ease = \"easeInOut\", }) {\n    /**\n     * Easing functions can be externally defined as strings. Here we convert them\n     * into actual functions.\n     */\n    const easingFunctions = isEasingArray(ease)\n        ? ease.map(easingDefinitionToFunction)\n        : easingDefinitionToFunction(ease);\n    /**\n     * This is the Iterator-spec return value. We ensure it's mutable rather than using a generator\n     * to reduce GC during animation.\n     */\n    const state = {\n        done: false,\n        value: keyframeValues[0],\n    };\n    /**\n     * Create a times array based on the provided 0-1 offsets\n     */\n    const absoluteTimes = convertOffsetToTimes(\n    // Only use the provided offsets if they're the correct length\n    // TODO Maybe we should warn here if there's a length mismatch\n    times && times.length === keyframeValues.length\n        ? times\n        : defaultOffset(keyframeValues), duration);\n    const mapTimeToKeyframe = interpolate(absoluteTimes, keyframeValues, {\n        ease: Array.isArray(easingFunctions)\n            ? easingFunctions\n            : defaultEasing(keyframeValues, easingFunctions),\n    });\n    return {\n        calculatedDuration: duration,\n        next: (t) => {\n            state.value = mapTimeToKeyframe(t);\n            state.done = t >= duration;\n            return state;\n        },\n    };\n}\n\nexport { defaultEasing, keyframes };\n","const isEasingArray = (ease) => {\n    return Array.isArray(ease) && typeof ease[0] !== \"number\";\n};\n\nexport { isEasingArray };\n","function convertOffsetToTimes(offset, duration) {\n    return offset.map((o) => o * duration);\n}\n\nexport { convertOffsetToTimes };\n","import { fillOffset } from './fill.mjs';\n\nfunction defaultOffset(arr) {\n    const offset = [0];\n    fillOffset(offset, arr.length - 1);\n    return offset;\n}\n\nexport { defaultOffset };\n","import { progress } from 'motion-utils';\nimport { mixNumber } from '../mix/number.mjs';\n\nfunction fillOffset(offset, remaining) {\n    const min = offset[offset.length - 1];\n    for (let i = 1; i <= remaining; i++) {\n        const offsetProgress = progress(0, remaining, i);\n        offset.push(mixNumber(min, 1, offsetProgress));\n    }\n}\n\nexport { fillOffset };\n","import { invariant, noop, progress } from 'motion-utils';\nimport { clamp } from './clamp.mjs';\nimport { mix } from './mix/index.mjs';\nimport { pipe } from './pipe.mjs';\n\nfunction createMixers(output, ease, customMixer) {\n    const mixers = [];\n    const mixerFactory = customMixer || mix;\n    const numMixers = output.length - 1;\n    for (let i = 0; i < numMixers; i++) {\n        let mixer = mixerFactory(output[i], output[i + 1]);\n        if (ease) {\n            const easingFunction = Array.isArray(ease) ? ease[i] || noop : ease;\n            mixer = pipe(easingFunction, mixer);\n        }\n        mixers.push(mixer);\n    }\n    return mixers;\n}\n/**\n * Create a function that maps from a numerical input array to a generic output array.\n *\n * Accepts:\n *   - Numbers\n *   - Colors (hex, hsl, hsla, rgb, rgba)\n *   - Complex (combinations of one or more numbers or strings)\n *\n * ```jsx\n * const mixColor = interpolate([0, 1], ['#fff', '#000'])\n *\n * mixColor(0.5) // 'rgba(128, 128, 128, 1)'\n * ```\n *\n * TODO Revist this approach once we've moved to data models for values,\n * probably not needed to pregenerate mixer functions.\n *\n * @public\n */\nfunction interpolate(input, output, { clamp: isClamp = true, ease, mixer } = {}) {\n    const inputLength = input.length;\n    invariant(inputLength === output.length, \"Both input and output ranges must be the same length\");\n    /**\n     * If we're only provided a single input, we can just make a function\n     * that returns the output.\n     */\n    if (inputLength === 1)\n        return () => output[0];\n    if (inputLength === 2 && output[0] === output[1])\n        return () => output[1];\n    const isZeroDeltaRange = input[0] === input[1];\n    // If input runs highest -> lowest, reverse both arrays\n    if (input[0] > input[inputLength - 1]) {\n        input = [...input].reverse();\n        output = [...output].reverse();\n    }\n    const mixers = createMixers(output, ease, mixer);\n    const numMixers = mixers.length;\n    const interpolator = (v) => {\n        if (isZeroDeltaRange && v < input[0])\n            return output[0];\n        let i = 0;\n        if (numMixers > 1) {\n            for (; i < input.length - 2; i++) {\n                if (v < input[i + 1])\n                    break;\n            }\n        }\n        const progressInRange = progress(input[i], input[i + 1], v);\n        return mixers[i](progressInRange);\n    };\n    return isClamp\n        ? (v) => interpolator(clamp(input[0], input[inputLength - 1], v))\n        : interpolator;\n}\n\nexport { interpolate };\n","import { time } from '../../../frameloop/sync-time.mjs';\nimport { frame, cancelFrame, frameData } from '../../../frameloop/frame.mjs';\n\nconst frameloopDriver = (update) => {\n    const passTimestamp = ({ timestamp }) => update(timestamp);\n    return {\n        start: () => frame.update(passTimestamp, true),\n        stop: () => cancelFrame(passTimestamp),\n        /**\n         * If we're processing this frame we can use the\n         * framelocked timestamp to keep things in sync.\n         */\n        now: () => (frameData.isProcessing ? frameData.timestamp : time.now()),\n    };\n};\n\nexport { frameloopDriver };\n","import { isGenerator, calcGeneratorDuration } from 'motion-dom';\nimport { invariant, millisecondsToSeconds, secondsToMilliseconds } from 'motion-utils';\nimport { KeyframeResolver } from '../../render/utils/KeyframesResolver.mjs';\nimport { clamp } from '../../utils/clamp.mjs';\nimport { mix } from '../../utils/mix/index.mjs';\nimport { pipe } from '../../utils/pipe.mjs';\nimport { inertia } from '../generators/inertia.mjs';\nimport { keyframes } from '../generators/keyframes.mjs';\nimport { spring } from '../generators/spring/index.mjs';\nimport { BaseAnimation } from './BaseAnimation.mjs';\nimport { frameloopDriver } from './drivers/driver-frameloop.mjs';\nimport { getFinalKeyframe } from './waapi/utils/get-final-keyframe.mjs';\n\nconst generators = {\n    decay: inertia,\n    inertia,\n    tween: keyframes,\n    keyframes: keyframes,\n    spring,\n};\nconst percentToProgress = (percent) => percent / 100;\n/**\n * Animation that runs on the main thread. Designed to be WAAPI-spec in the subset of\n * features we expose publically. Mostly the compatibility is to ensure visual identity\n * between both WAAPI and main thread animations.\n */\nclass MainThreadAnimation extends BaseAnimation {\n    constructor(options) {\n        super(options);\n        /**\n         * The time at which the animation was paused.\n         */\n        this.holdTime = null;\n        /**\n         * The time at which the animation was cancelled.\n         */\n        this.cancelTime = null;\n        /**\n         * The current time of the animation.\n         */\n        this.currentTime = 0;\n        /**\n         * Playback speed as a factor. 0 would be stopped, -1 reverse and 2 double speed.\n         */\n        this.playbackSpeed = 1;\n        /**\n         * The state of the animation to apply when the animation is resolved. This\n         * allows calls to the public API to control the animation before it is resolved,\n         * without us having to resolve it first.\n         */\n        this.pendingPlayState = \"running\";\n        /**\n         * The time at which the animation was started.\n         */\n        this.startTime = null;\n        this.state = \"idle\";\n        /**\n         * This method is bound to the instance to fix a pattern where\n         * animation.stop is returned as a reference from a useEffect.\n         */\n        this.stop = () => {\n            this.resolver.cancel();\n            this.isStopped = true;\n            if (this.state === \"idle\")\n                return;\n            this.teardown();\n            const { onStop } = this.options;\n            onStop && onStop();\n        };\n        const { name, motionValue, element, keyframes } = this.options;\n        const KeyframeResolver$1 = (element === null || element === void 0 ? void 0 : element.KeyframeResolver) || KeyframeResolver;\n        const onResolved = (resolvedKeyframes, finalKeyframe) => this.onKeyframesResolved(resolvedKeyframes, finalKeyframe);\n        this.resolver = new KeyframeResolver$1(keyframes, onResolved, name, motionValue, element);\n        this.resolver.scheduleResolve();\n    }\n    flatten() {\n        super.flatten();\n        // If we've already resolved the animation, re-initialise it\n        if (this._resolved) {\n            Object.assign(this._resolved, this.initPlayback(this._resolved.keyframes));\n        }\n    }\n    initPlayback(keyframes$1) {\n        const { type = \"keyframes\", repeat = 0, repeatDelay = 0, repeatType, velocity = 0, } = this.options;\n        const generatorFactory = isGenerator(type)\n            ? type\n            : generators[type] || keyframes;\n        /**\n         * If our generator doesn't support mixing numbers, we need to replace keyframes with\n         * [0, 100] and then make a function that maps that to the actual keyframes.\n         *\n         * 100 is chosen instead of 1 as it works nicer with spring animations.\n         */\n        let mapPercentToKeyframes;\n        let mirroredGenerator;\n        if (generatorFactory !== keyframes &&\n            typeof keyframes$1[0] !== \"number\") {\n            if (process.env.NODE_ENV !== \"production\") {\n                invariant(keyframes$1.length === 2, `Only two keyframes currently supported with spring and inertia animations. Trying to animate ${keyframes$1}`);\n            }\n            mapPercentToKeyframes = pipe(percentToProgress, mix(keyframes$1[0], keyframes$1[1]));\n            keyframes$1 = [0, 100];\n        }\n        const generator = generatorFactory({ ...this.options, keyframes: keyframes$1 });\n        /**\n         * If we have a mirror repeat type we need to create a second generator that outputs the\n         * mirrored (not reversed) animation and later ping pong between the two generators.\n         */\n        if (repeatType === \"mirror\") {\n            mirroredGenerator = generatorFactory({\n                ...this.options,\n                keyframes: [...keyframes$1].reverse(),\n                velocity: -velocity,\n            });\n        }\n        /**\n         * If duration is undefined and we have repeat options,\n         * we need to calculate a duration from the generator.\n         *\n         * We set it to the generator itself to cache the duration.\n         * Any timeline resolver will need to have already precalculated\n         * the duration by this step.\n         */\n        if (generator.calculatedDuration === null) {\n            generator.calculatedDuration = calcGeneratorDuration(generator);\n        }\n        const { calculatedDuration } = generator;\n        const resolvedDuration = calculatedDuration + repeatDelay;\n        const totalDuration = resolvedDuration * (repeat + 1) - repeatDelay;\n        return {\n            generator,\n            mirroredGenerator,\n            mapPercentToKeyframes,\n            calculatedDuration,\n            resolvedDuration,\n            totalDuration,\n        };\n    }\n    onPostResolved() {\n        const { autoplay = true } = this.options;\n        this.play();\n        if (this.pendingPlayState === \"paused\" || !autoplay) {\n            this.pause();\n        }\n        else {\n            this.state = this.pendingPlayState;\n        }\n    }\n    tick(timestamp, sample = false) {\n        const { resolved } = this;\n        // If the animations has failed to resolve, return the final keyframe.\n        if (!resolved) {\n            const { keyframes } = this.options;\n            return { done: true, value: keyframes[keyframes.length - 1] };\n        }\n        const { finalKeyframe, generator, mirroredGenerator, mapPercentToKeyframes, keyframes, calculatedDuration, totalDuration, resolvedDuration, } = resolved;\n        if (this.startTime === null)\n            return generator.next(0);\n        const { delay, repeat, repeatType, repeatDelay, onUpdate } = this.options;\n        /**\n         * requestAnimationFrame timestamps can come through as lower than\n         * the startTime as set by performance.now(). Here we prevent this,\n         * though in the future it could be possible to make setting startTime\n         * a pending operation that gets resolved here.\n         */\n        if (this.speed > 0) {\n            this.startTime = Math.min(this.startTime, timestamp);\n        }\n        else if (this.speed < 0) {\n            this.startTime = Math.min(timestamp - totalDuration / this.speed, this.startTime);\n        }\n        // Update currentTime\n        if (sample) {\n            this.currentTime = timestamp;\n        }\n        else if (this.holdTime !== null) {\n            this.currentTime = this.holdTime;\n        }\n        else {\n            // Rounding the time because floating point arithmetic is not always accurate, e.g. 3000.367 - 1000.367 =\n            // 2000.0000000000002. This is a problem when we are comparing the currentTime with the duration, for\n            // example.\n            this.currentTime =\n                Math.round(timestamp - this.startTime) * this.speed;\n        }\n        // Rebase on delay\n        const timeWithoutDelay = this.currentTime - delay * (this.speed >= 0 ? 1 : -1);\n        const isInDelayPhase = this.speed >= 0\n            ? timeWithoutDelay < 0\n            : timeWithoutDelay > totalDuration;\n        this.currentTime = Math.max(timeWithoutDelay, 0);\n        // If this animation has finished, set the current time  to the total duration.\n        if (this.state === \"finished\" && this.holdTime === null) {\n            this.currentTime = totalDuration;\n        }\n        let elapsed = this.currentTime;\n        let frameGenerator = generator;\n        if (repeat) {\n            /**\n             * Get the current progress (0-1) of the animation. If t is >\n             * than duration we'll get values like 2.5 (midway through the\n             * third iteration)\n             */\n            const progress = Math.min(this.currentTime, totalDuration) / resolvedDuration;\n            /**\n             * Get the current iteration (0 indexed). For instance the floor of\n             * 2.5 is 2.\n             */\n            let currentIteration = Math.floor(progress);\n            /**\n             * Get the current progress of the iteration by taking the remainder\n             * so 2.5 is 0.5 through iteration 2\n             */\n            let iterationProgress = progress % 1.0;\n            /**\n             * If iteration progress is 1 we count that as the end\n             * of the previous iteration.\n             */\n            if (!iterationProgress && progress >= 1) {\n                iterationProgress = 1;\n            }\n            iterationProgress === 1 && currentIteration--;\n            currentIteration = Math.min(currentIteration, repeat + 1);\n            /**\n             * Reverse progress if we're not running in \"normal\" direction\n             */\n            const isOddIteration = Boolean(currentIteration % 2);\n            if (isOddIteration) {\n                if (repeatType === \"reverse\") {\n                    iterationProgress = 1 - iterationProgress;\n                    if (repeatDelay) {\n                        iterationProgress -= repeatDelay / resolvedDuration;\n                    }\n                }\n                else if (repeatType === \"mirror\") {\n                    frameGenerator = mirroredGenerator;\n                }\n            }\n            elapsed = clamp(0, 1, iterationProgress) * resolvedDuration;\n        }\n        /**\n         * If we're in negative time, set state as the initial keyframe.\n         * This prevents delay: x, duration: 0 animations from finishing\n         * instantly.\n         */\n        const state = isInDelayPhase\n            ? { done: false, value: keyframes[0] }\n            : frameGenerator.next(elapsed);\n        if (mapPercentToKeyframes) {\n            state.value = mapPercentToKeyframes(state.value);\n        }\n        let { done } = state;\n        if (!isInDelayPhase && calculatedDuration !== null) {\n            done =\n                this.speed >= 0\n                    ? this.currentTime >= totalDuration\n                    : this.currentTime <= 0;\n        }\n        const isAnimationFinished = this.holdTime === null &&\n            (this.state === \"finished\" || (this.state === \"running\" && done));\n        if (isAnimationFinished && finalKeyframe !== undefined) {\n            state.value = getFinalKeyframe(keyframes, this.options, finalKeyframe);\n        }\n        if (onUpdate) {\n            onUpdate(state.value);\n        }\n        if (isAnimationFinished) {\n            this.finish();\n        }\n        return state;\n    }\n    get duration() {\n        const { resolved } = this;\n        return resolved ? millisecondsToSeconds(resolved.calculatedDuration) : 0;\n    }\n    get time() {\n        return millisecondsToSeconds(this.currentTime);\n    }\n    set time(newTime) {\n        newTime = secondsToMilliseconds(newTime);\n        this.currentTime = newTime;\n        if (this.holdTime !== null || this.speed === 0) {\n            this.holdTime = newTime;\n        }\n        else if (this.driver) {\n            this.startTime = this.driver.now() - newTime / this.speed;\n        }\n    }\n    get speed() {\n        return this.playbackSpeed;\n    }\n    set speed(newSpeed) {\n        const hasChanged = this.playbackSpeed !== newSpeed;\n        this.playbackSpeed = newSpeed;\n        if (hasChanged) {\n            this.time = millisecondsToSeconds(this.currentTime);\n        }\n    }\n    play() {\n        if (!this.resolver.isScheduled) {\n            this.resolver.resume();\n        }\n        if (!this._resolved) {\n            this.pendingPlayState = \"running\";\n            return;\n        }\n        if (this.isStopped)\n            return;\n        const { driver = frameloopDriver, onPlay, startTime } = this.options;\n        if (!this.driver) {\n            this.driver = driver((timestamp) => this.tick(timestamp));\n        }\n        onPlay && onPlay();\n        const now = this.driver.now();\n        if (this.holdTime !== null) {\n            this.startTime = now - this.holdTime;\n        }\n        else if (!this.startTime) {\n            this.startTime = startTime !== null && startTime !== void 0 ? startTime : this.calcStartTime();\n        }\n        else if (this.state === \"finished\") {\n            this.startTime = now;\n        }\n        if (this.state === \"finished\") {\n            this.updateFinishedPromise();\n        }\n        this.cancelTime = this.startTime;\n        this.holdTime = null;\n        /**\n         * Set playState to running only after we've used it in\n         * the previous logic.\n         */\n        this.state = \"running\";\n        this.driver.start();\n    }\n    pause() {\n        var _a;\n        if (!this._resolved) {\n            this.pendingPlayState = \"paused\";\n            return;\n        }\n        this.state = \"paused\";\n        this.holdTime = (_a = this.currentTime) !== null && _a !== void 0 ? _a : 0;\n    }\n    complete() {\n        if (this.state !== \"running\") {\n            this.play();\n        }\n        this.pendingPlayState = this.state = \"finished\";\n        this.holdTime = null;\n    }\n    finish() {\n        this.teardown();\n        this.state = \"finished\";\n        const { onComplete } = this.options;\n        onComplete && onComplete();\n    }\n    cancel() {\n        if (this.cancelTime !== null) {\n            this.tick(this.cancelTime);\n        }\n        this.teardown();\n        this.updateFinishedPromise();\n    }\n    teardown() {\n        this.state = \"idle\";\n        this.stopDriver();\n        this.resolveFinishedPromise();\n        this.updateFinishedPromise();\n        this.startTime = this.cancelTime = null;\n        this.resolver.cancel();\n    }\n    stopDriver() {\n        if (!this.driver)\n            return;\n        this.driver.stop();\n        this.driver = undefined;\n    }\n    sample(time) {\n        this.startTime = 0;\n        return this.tick(time, true);\n    }\n}\n// Legacy interface\nfunction animateValue(options) {\n    return new MainThreadAnimation(options);\n}\n\nexport { MainThreadAnimation, animateValue };\n","/**\n * A list of values that can be hardware-accelerated.\n */\nconst acceleratedValues = new Set([\n    \"opacity\",\n    \"clipPath\",\n    \"filter\",\n    \"transform\",\n    // TODO: Can be accelerated but currently disabled until https://issues.chromium.org/issues/41491098 is resolved\n    // or until we implement support for linear() easing.\n    // \"background-color\"\n]);\n\nexport { acceleratedValues };\n","import { memo } from 'motion-utils';\n\nconst supportsWaapi = /*@__PURE__*/ memo(() => Object.hasOwnProperty.call(Element.prototype, \"animate\"));\n\nexport { supportsWaapi };\n","import { supportsLinearEasing, attachTimeline, isGenerator, isWaapiSupportedEasing } from 'motion-dom';\nimport { millisecondsToSeconds, secondsToMilliseconds, noop } from 'motion-utils';\nimport { anticipate } from '../../easing/anticipate.mjs';\nimport { backInOut } from '../../easing/back.mjs';\nimport { circInOut } from '../../easing/circ.mjs';\nimport { DOMKeyframesResolver } from '../../render/dom/DOMKeyframesResolver.mjs';\nimport { BaseAnimation } from './BaseAnimation.mjs';\nimport { MainThreadAnimation } from './MainThreadAnimation.mjs';\nimport { acceleratedValues } from './utils/accelerated-values.mjs';\nimport { startWaapiAnimation } from './waapi/index.mjs';\nimport { getFinalKeyframe } from './waapi/utils/get-final-keyframe.mjs';\nimport { supportsWaapi } from './waapi/utils/supports-waapi.mjs';\n\n/**\n * 10ms is chosen here as it strikes a balance between smooth\n * results (more than one keyframe per frame at 60fps) and\n * keyframe quantity.\n */\nconst sampleDelta = 10; //ms\n/**\n * Implement a practical max duration for keyframe generation\n * to prevent infinite loops\n */\nconst maxDuration = 20000;\n/**\n * Check if an animation can run natively via WAAPI or requires pregenerated keyframes.\n * WAAPI doesn't support spring or function easings so we run these as JS animation before\n * handing off.\n */\nfunction requiresPregeneratedKeyframes(options) {\n    return (isGenerator(options.type) ||\n        options.type === \"spring\" ||\n        !isWaapiSupportedEasing(options.ease));\n}\nfunction pregenerateKeyframes(keyframes, options) {\n    /**\n     * Create a main-thread animation to pregenerate keyframes.\n     * We sample this at regular intervals to generate keyframes that we then\n     * linearly interpolate between.\n     */\n    const sampleAnimation = new MainThreadAnimation({\n        ...options,\n        keyframes,\n        repeat: 0,\n        delay: 0,\n        isGenerator: true,\n    });\n    let state = { done: false, value: keyframes[0] };\n    const pregeneratedKeyframes = [];\n    /**\n     * Bail after 20 seconds of pre-generated keyframes as it's likely\n     * we're heading for an infinite loop.\n     */\n    let t = 0;\n    while (!state.done && t < maxDuration) {\n        state = sampleAnimation.sample(t);\n        pregeneratedKeyframes.push(state.value);\n        t += sampleDelta;\n    }\n    return {\n        times: undefined,\n        keyframes: pregeneratedKeyframes,\n        duration: t - sampleDelta,\n        ease: \"linear\",\n    };\n}\nconst unsupportedEasingFunctions = {\n    anticipate,\n    backInOut,\n    circInOut,\n};\nfunction isUnsupportedEase(key) {\n    return key in unsupportedEasingFunctions;\n}\nclass AcceleratedAnimation extends BaseAnimation {\n    constructor(options) {\n        super(options);\n        const { name, motionValue, element, keyframes } = this.options;\n        this.resolver = new DOMKeyframesResolver(keyframes, (resolvedKeyframes, finalKeyframe) => this.onKeyframesResolved(resolvedKeyframes, finalKeyframe), name, motionValue, element);\n        this.resolver.scheduleResolve();\n    }\n    initPlayback(keyframes, finalKeyframe) {\n        let { duration = 300, times, ease, type, motionValue, name, startTime, } = this.options;\n        /**\n         * If element has since been unmounted, return false to indicate\n         * the animation failed to initialised.\n         */\n        if (!motionValue.owner || !motionValue.owner.current) {\n            return false;\n        }\n        /**\n         * If the user has provided an easing function name that isn't supported\n         * by WAAPI (like \"anticipate\"), we need to provide the corressponding\n         * function. This will later get converted to a linear() easing function.\n         */\n        if (typeof ease === \"string\" &&\n            supportsLinearEasing() &&\n            isUnsupportedEase(ease)) {\n            ease = unsupportedEasingFunctions[ease];\n        }\n        /**\n         * If this animation needs pre-generated keyframes then generate.\n         */\n        if (requiresPregeneratedKeyframes(this.options)) {\n            const { onComplete, onUpdate, motionValue, element, ...options } = this.options;\n            const pregeneratedAnimation = pregenerateKeyframes(keyframes, options);\n            keyframes = pregeneratedAnimation.keyframes;\n            // If this is a very short animation, ensure we have\n            // at least two keyframes to animate between as older browsers\n            // can't animate between a single keyframe.\n            if (keyframes.length === 1) {\n                keyframes[1] = keyframes[0];\n            }\n            duration = pregeneratedAnimation.duration;\n            times = pregeneratedAnimation.times;\n            ease = pregeneratedAnimation.ease;\n            type = \"keyframes\";\n        }\n        const animation = startWaapiAnimation(motionValue.owner.current, name, keyframes, { ...this.options, duration, times, ease });\n        // Override the browser calculated startTime with one synchronised to other JS\n        // and WAAPI animations starting this event loop.\n        animation.startTime = startTime !== null && startTime !== void 0 ? startTime : this.calcStartTime();\n        if (this.pendingTimeline) {\n            attachTimeline(animation, this.pendingTimeline);\n            this.pendingTimeline = undefined;\n        }\n        else {\n            /**\n             * Prefer the `onfinish` prop as it's more widely supported than\n             * the `finished` promise.\n             *\n             * Here, we synchronously set the provided MotionValue to the end\n             * keyframe. If we didn't, when the WAAPI animation is finished it would\n             * be removed from the element which would then revert to its old styles.\n             */\n            animation.onfinish = () => {\n                const { onComplete } = this.options;\n                motionValue.set(getFinalKeyframe(keyframes, this.options, finalKeyframe));\n                onComplete && onComplete();\n                this.cancel();\n                this.resolveFinishedPromise();\n            };\n        }\n        return {\n            animation,\n            duration,\n            times,\n            type,\n            ease,\n            keyframes: keyframes,\n        };\n    }\n    get duration() {\n        const { resolved } = this;\n        if (!resolved)\n            return 0;\n        const { duration } = resolved;\n        return millisecondsToSeconds(duration);\n    }\n    get time() {\n        const { resolved } = this;\n        if (!resolved)\n            return 0;\n        const { animation } = resolved;\n        return millisecondsToSeconds(animation.currentTime || 0);\n    }\n    set time(newTime) {\n        const { resolved } = this;\n        if (!resolved)\n            return;\n        const { animation } = resolved;\n        animation.currentTime = secondsToMilliseconds(newTime);\n    }\n    get speed() {\n        const { resolved } = this;\n        if (!resolved)\n            return 1;\n        const { animation } = resolved;\n        return animation.playbackRate;\n    }\n    set speed(newSpeed) {\n        const { resolved } = this;\n        if (!resolved)\n            return;\n        const { animation } = resolved;\n        animation.playbackRate = newSpeed;\n    }\n    get state() {\n        const { resolved } = this;\n        if (!resolved)\n            return \"idle\";\n        const { animation } = resolved;\n        return animation.playState;\n    }\n    get startTime() {\n        const { resolved } = this;\n        if (!resolved)\n            return null;\n        const { animation } = resolved;\n        // Coerce to number as TypeScript incorrectly types this\n        // as CSSNumberish\n        return animation.startTime;\n    }\n    /**\n     * Replace the default DocumentTimeline with another AnimationTimeline.\n     * Currently used for scroll animations.\n     */\n    attachTimeline(timeline) {\n        if (!this._resolved) {\n            this.pendingTimeline = timeline;\n        }\n        else {\n            const { resolved } = this;\n            if (!resolved)\n                return noop;\n            const { animation } = resolved;\n            attachTimeline(animation, timeline);\n        }\n        return noop;\n    }\n    play() {\n        if (this.isStopped)\n            return;\n        const { resolved } = this;\n        if (!resolved)\n            return;\n        const { animation } = resolved;\n        if (animation.playState === \"finished\") {\n            this.updateFinishedPromise();\n        }\n        animation.play();\n    }\n    pause() {\n        const { resolved } = this;\n        if (!resolved)\n            return;\n        const { animation } = resolved;\n        animation.pause();\n    }\n    stop() {\n        this.resolver.cancel();\n        this.isStopped = true;\n        if (this.state === \"idle\")\n            return;\n        this.resolveFinishedPromise();\n        this.updateFinishedPromise();\n        const { resolved } = this;\n        if (!resolved)\n            return;\n        const { animation, keyframes, duration, type, ease, times } = resolved;\n        if (animation.playState === \"idle\" ||\n            animation.playState === \"finished\") {\n            return;\n        }\n        /**\n         * WAAPI doesn't natively have any interruption capabilities.\n         *\n         * Rather than read commited styles back out of the DOM, we can\n         * create a renderless JS animation and sample it twice to calculate\n         * its current value, \"previous\" value, and therefore allow\n         * Motion to calculate velocity for any subsequent animation.\n         */\n        if (this.time) {\n            const { motionValue, onUpdate, onComplete, element, ...options } = this.options;\n            const sampleAnimation = new MainThreadAnimation({\n                ...options,\n                keyframes,\n                duration,\n                type,\n                ease,\n                times,\n                isGenerator: true,\n            });\n            const sampleTime = secondsToMilliseconds(this.time);\n            motionValue.setWithVelocity(sampleAnimation.sample(sampleTime - sampleDelta).value, sampleAnimation.sample(sampleTime).value, sampleDelta);\n        }\n        const { onStop } = this.options;\n        onStop && onStop();\n        this.cancel();\n    }\n    complete() {\n        const { resolved } = this;\n        if (!resolved)\n            return;\n        resolved.animation.finish();\n    }\n    cancel() {\n        const { resolved } = this;\n        if (!resolved)\n            return;\n        resolved.animation.cancel();\n    }\n    static supports(options) {\n        const { motionValue, name, repeatDelay, repeatType, damping, type } = options;\n        if (!motionValue ||\n            !motionValue.owner ||\n            !(motionValue.owner.current instanceof HTMLElement)) {\n            return false;\n        }\n        const { onUpdate, transformTemplate } = motionValue.owner.getProps();\n        return (supportsWaapi() &&\n            name &&\n            acceleratedValues.has(name) &&\n            /**\n             * If we're outputting values to onUpdate then we can't use WAAPI as there's\n             * no way to read the value from WAAPI every frame.\n             */\n            !onUpdate &&\n            !transformTemplate &&\n            !repeatDelay &&\n            repeatType !== \"mirror\" &&\n            damping !== 0 &&\n            type !== \"inertia\");\n    }\n}\n\nexport { AcceleratedAnimation };\n","import { mapEasingToNativeEasing } from 'motion-dom';\n\nfunction startWaapiAnimation(element, valueName, keyframes, { delay = 0, duration = 300, repeat = 0, repeatType = \"loop\", ease = \"easeInOut\", times, } = {}) {\n    const keyframeOptions = { [valueName]: keyframes };\n    if (times)\n        keyframeOptions.offset = times;\n    const easing = mapEasingToNativeEasing(ease, duration);\n    /**\n     * If this is an easing array, apply to keyframes, not animation as a whole\n     */\n    if (Array.isArray(easing))\n        keyframeOptions.easing = easing;\n    return element.animate(keyframeOptions, {\n        delay,\n        duration,\n        easing: !Array.isArray(easing) ? easing : \"linear\",\n        fill: \"both\",\n        iterations: repeat + 1,\n        direction: repeatType === \"reverse\" ? \"alternate\" : \"normal\",\n    });\n}\n\nexport { startWaapiAnimation };\n","import { transformProps } from '../../render/html/utils/keys-transform.mjs';\n\nconst underDampedSpring = {\n    type: \"spring\",\n    stiffness: 500,\n    damping: 25,\n    restSpeed: 10,\n};\nconst criticallyDampedSpring = (target) => ({\n    type: \"spring\",\n    stiffness: 550,\n    damping: target === 0 ? 2 * Math.sqrt(550) : 30,\n    restSpeed: 10,\n});\nconst keyframesTransition = {\n    type: \"keyframes\",\n    duration: 0.8,\n};\n/**\n * Default easing curve is a slightly shallower version of\n * the default browser easing curve.\n */\nconst ease = {\n    type: \"keyframes\",\n    ease: [0.25, 0.1, 0.35, 1],\n    duration: 0.3,\n};\nconst getDefaultTransition = (valueKey, { keyframes }) => {\n    if (keyframes.length > 2) {\n        return keyframesTransition;\n    }\n    else if (transformProps.has(valueKey)) {\n        return valueKey.startsWith(\"scale\")\n            ? criticallyDampedSpring(keyframes[1])\n            : underDampedSpring;\n    }\n    return ease;\n};\n\nexport { getDefaultTransition };\n","import { getValueTransition, GroupPlaybackControls } from 'motion-dom';\nimport { secondsToMilliseconds } from 'motion-utils';\nimport { frame } from '../../frameloop/frame.mjs';\nimport { MotionGlobalConfig } from '../../utils/GlobalConfig.mjs';\nimport { instantAnimationState } from '../../utils/use-instant-transition-state.mjs';\nimport { AcceleratedAnimation } from '../animators/AcceleratedAnimation.mjs';\nimport { MainThreadAnimation } from '../animators/MainThreadAnimation.mjs';\nimport { getFinalKeyframe } from '../animators/waapi/utils/get-final-keyframe.mjs';\nimport { getDefaultTransition } from '../utils/default-transitions.mjs';\nimport { isTransitionDefined } from '../utils/is-transition-defined.mjs';\n\nconst animateMotionValue = (name, value, target, transition = {}, element, isHandoff) => (onComplete) => {\n    const valueTransition = getValueTransition(transition, name) || {};\n    /**\n     * Most transition values are currently completely overwritten by value-specific\n     * transitions. In the future it'd be nicer to blend these transitions. But for now\n     * delay actually does inherit from the root transition if not value-specific.\n     */\n    const delay = valueTransition.delay || transition.delay || 0;\n    /**\n     * Elapsed isn't a public transition option but can be passed through from\n     * optimized appear effects in milliseconds.\n     */\n    let { elapsed = 0 } = transition;\n    elapsed = elapsed - secondsToMilliseconds(delay);\n    let options = {\n        keyframes: Array.isArray(target) ? target : [null, target],\n        ease: \"easeOut\",\n        velocity: value.getVelocity(),\n        ...valueTransition,\n        delay: -elapsed,\n        onUpdate: (v) => {\n            value.set(v);\n            valueTransition.onUpdate && valueTransition.onUpdate(v);\n        },\n        onComplete: () => {\n            onComplete();\n            valueTransition.onComplete && valueTransition.onComplete();\n        },\n        name,\n        motionValue: value,\n        element: isHandoff ? undefined : element,\n    };\n    /**\n     * If there's no transition defined for this value, we can generate\n     * unqiue transition settings for this value.\n     */\n    if (!isTransitionDefined(valueTransition)) {\n        options = {\n            ...options,\n            ...getDefaultTransition(name, options),\n        };\n    }\n    /**\n     * Both WAAPI and our internal animation functions use durations\n     * as defined by milliseconds, while our external API defines them\n     * as seconds.\n     */\n    if (options.duration) {\n        options.duration = secondsToMilliseconds(options.duration);\n    }\n    if (options.repeatDelay) {\n        options.repeatDelay = secondsToMilliseconds(options.repeatDelay);\n    }\n    if (options.from !== undefined) {\n        options.keyframes[0] = options.from;\n    }\n    let shouldSkip = false;\n    if (options.type === false ||\n        (options.duration === 0 && !options.repeatDelay)) {\n        options.duration = 0;\n        if (options.delay === 0) {\n            shouldSkip = true;\n        }\n    }\n    if (instantAnimationState.current ||\n        MotionGlobalConfig.skipAnimations) {\n        shouldSkip = true;\n        options.duration = 0;\n        options.delay = 0;\n    }\n    /**\n     * If we can or must skip creating the animation, and apply only\n     * the final keyframe, do so. We also check once keyframes are resolved but\n     * this early check prevents the need to create an animation at all.\n     */\n    if (shouldSkip && !isHandoff && value.get() !== undefined) {\n        const finalKeyframe = getFinalKeyframe(options.keyframes, valueTransition);\n        if (finalKeyframe !== undefined) {\n            frame.update(() => {\n                options.onUpdate(finalKeyframe);\n                options.onComplete();\n            });\n            // We still want to return some animation controls here rather\n            // than returning undefined\n            return new GroupPlaybackControls([]);\n        }\n    }\n    /**\n     * Animate via WAAPI if possible. If this is a handoff animation, the optimised animation will be running via\n     * WAAPI. Therefore, this animation must be JS to ensure it runs \"under\" the\n     * optimised animation.\n     */\n    if (!isHandoff && AcceleratedAnimation.supports(options)) {\n        return new AcceleratedAnimation(options);\n    }\n    else {\n        return new MainThreadAnimation(options);\n    }\n};\n\nexport { animateMotionValue };\n","/**\n * Decide whether a transition is defined on a given Transition.\n * This filters out orchestration options and returns true\n * if any options are left.\n */\nfunction isTransitionDefined({ when, delay: _delay, delayChildren, staggerChildren, staggerDirection, repeat, repeatType, repeatDelay, from, elapsed, ...transition }) {\n    return !!Object.keys(transition).length;\n}\n\nexport { isTransitionDefined };\n","import { getValueTransition } from 'motion-dom';\nimport { positionalKeys } from '../../render/html/utils/keys-position.mjs';\nimport { setTarget } from '../../render/utils/setters.mjs';\nimport { addValueToWillChange } from '../../value/use-will-change/add-will-change.mjs';\nimport { getOptimisedAppearId } from '../optimized-appear/get-appear-id.mjs';\nimport { animateMotionValue } from './motion-value.mjs';\nimport { frame } from '../../frameloop/frame.mjs';\n\n/**\n * Decide whether we should block this animation. Previously, we achieved this\n * just by checking whether the key was listed in protectedKeys, but this\n * posed problems if an animation was triggered by afterChildren and protectedKeys\n * had been set to true in the meantime.\n */\nfunction shouldBlockAnimation({ protectedKeys, needsAnimating }, key) {\n    const shouldBlock = protectedKeys.hasOwnProperty(key) && needsAnimating[key] !== true;\n    needsAnimating[key] = false;\n    return shouldBlock;\n}\nfunction animateTarget(visualElement, targetAndTransition, { delay = 0, transitionOverride, type } = {}) {\n    var _a;\n    let { transition = visualElement.getDefaultTransition(), transitionEnd, ...target } = targetAndTransition;\n    if (transitionOverride)\n        transition = transitionOverride;\n    const animations = [];\n    const animationTypeState = type &&\n        visualElement.animationState &&\n        visualElement.animationState.getState()[type];\n    for (const key in target) {\n        const value = visualElement.getValue(key, (_a = visualElement.latestValues[key]) !== null && _a !== void 0 ? _a : null);\n        const valueTarget = target[key];\n        if (valueTarget === undefined ||\n            (animationTypeState &&\n                shouldBlockAnimation(animationTypeState, key))) {\n            continue;\n        }\n        const valueTransition = {\n            delay,\n            ...getValueTransition(transition || {}, key),\n        };\n        /**\n         * If this is the first time a value is being animated, check\n         * to see if we're handling off from an existing animation.\n         */\n        let isHandoff = false;\n        if (window.MotionHandoffAnimation) {\n            const appearId = getOptimisedAppearId(visualElement);\n            if (appearId) {\n                const startTime = window.MotionHandoffAnimation(appearId, key, frame);\n                if (startTime !== null) {\n                    valueTransition.startTime = startTime;\n                    isHandoff = true;\n                }\n            }\n        }\n        addValueToWillChange(visualElement, key);\n        value.start(animateMotionValue(key, value, valueTarget, visualElement.shouldReduceMotion && positionalKeys.has(key)\n            ? { type: false }\n            : valueTransition, visualElement, isHandoff));\n        const animation = value.animation;\n        if (animation) {\n            animations.push(animation);\n        }\n    }\n    if (transitionEnd) {\n        Promise.all(animations).then(() => {\n            frame.update(() => {\n                transitionEnd && setTarget(visualElement, transitionEnd);\n            });\n        });\n    }\n    return animations;\n}\n\nexport { animateTarget };\n","import { resolveVariant } from '../../render/utils/resolve-dynamic-variants.mjs';\nimport { animateTarget } from './visual-element-target.mjs';\n\nfunction animateVariant(visualElement, variant, options = {}) {\n    var _a;\n    const resolved = resolveVariant(visualElement, variant, options.type === \"exit\"\n        ? (_a = visualElement.presenceContext) === null || _a === void 0 ? void 0 : _a.custom\n        : undefined);\n    let { transition = visualElement.getDefaultTransition() || {} } = resolved || {};\n    if (options.transitionOverride) {\n        transition = options.transitionOverride;\n    }\n    /**\n     * If we have a variant, create a callback that runs it as an animation.\n     * Otherwise, we resolve a Promise immediately for a composable no-op.\n     */\n    const getAnimation = resolved\n        ? () => Promise.all(animateTarget(visualElement, resolved, options))\n        : () => Promise.resolve();\n    /**\n     * If we have children, create a callback that runs all their animations.\n     * Otherwise, we resolve a Promise immediately for a composable no-op.\n     */\n    const getChildAnimations = visualElement.variantChildren && visualElement.variantChildren.size\n        ? (forwardDelay = 0) => {\n            const { delayChildren = 0, staggerChildren, staggerDirection, } = transition;\n            return animateChildren(visualElement, variant, delayChildren + forwardDelay, staggerChildren, staggerDirection, options);\n        }\n        : () => Promise.resolve();\n    /**\n     * If the transition explicitly defines a \"when\" option, we need to resolve either\n     * this animation or all children animations before playing the other.\n     */\n    const { when } = transition;\n    if (when) {\n        const [first, last] = when === \"beforeChildren\"\n            ? [getAnimation, getChildAnimations]\n            : [getChildAnimations, getAnimation];\n        return first().then(() => last());\n    }\n    else {\n        return Promise.all([getAnimation(), getChildAnimations(options.delay)]);\n    }\n}\nfunction animateChildren(visualElement, variant, delayChildren = 0, staggerChildren = 0, staggerDirection = 1, options) {\n    const animations = [];\n    const maxStaggerDuration = (visualElement.variantChildren.size - 1) * staggerChildren;\n    const generateStaggerDuration = staggerDirection === 1\n        ? (i = 0) => i * staggerChildren\n        : (i = 0) => maxStaggerDuration - i * staggerChildren;\n    Array.from(visualElement.variantChildren)\n        .sort(sortByTreeOrder)\n        .forEach((child, i) => {\n        child.notify(\"AnimationStart\", variant);\n        animations.push(animateVariant(child, variant, {\n            ...options,\n            delay: delayChildren + generateStaggerDuration(i),\n        }).then(() => child.notify(\"AnimationComplete\", variant)));\n    });\n    return Promise.all(animations);\n}\nfunction sortByTreeOrder(a, b) {\n    return a.sortNodePosition(b);\n}\n\nexport { animateVariant, sortByTreeOrder };\n","import { isVariantLabel } from './is-variant-label.mjs';\nimport { variantProps } from './variant-props.mjs';\n\nconst numVariantProps = variantProps.length;\nfunction getVariantContext(visualElement) {\n    if (!visualElement)\n        return undefined;\n    if (!visualElement.isControllingVariants) {\n        const context = visualElement.parent\n            ? getVariantContext(visualElement.parent) || {}\n            : {};\n        if (visualElement.props.initial !== undefined) {\n            context.initial = visualElement.props.initial;\n        }\n        return context;\n    }\n    const context = {};\n    for (let i = 0; i < numVariantProps; i++) {\n        const name = variantProps[i];\n        const prop = visualElement.props[name];\n        if (isVariantLabel(prop) || prop === false) {\n            context[name] = prop;\n        }\n    }\n    return context;\n}\n\nexport { getVariantContext };\n","import { isAnimationControls } from '../../animation/utils/is-animation-controls.mjs';\nimport { isKeyframesTarget } from '../../animation/utils/is-keyframes-target.mjs';\nimport { shallowCompare } from '../../utils/shallow-compare.mjs';\nimport { isVariantLabel } from './is-variant-label.mjs';\nimport { resolveVariant } from './resolve-dynamic-variants.mjs';\nimport { variantPriorityOrder } from './variant-props.mjs';\nimport { animateVisualElement } from '../../animation/interfaces/visual-element.mjs';\nimport { getVariantContext } from './get-variant-context.mjs';\n\nconst reversePriorityOrder = [...variantPriorityOrder].reverse();\nconst numAnimationTypes = variantPriorityOrder.length;\nfunction animateList(visualElement) {\n    return (animations) => Promise.all(animations.map(({ animation, options }) => animateVisualElement(visualElement, animation, options)));\n}\nfunction createAnimationState(visualElement) {\n    let animate = animateList(visualElement);\n    let state = createState();\n    let isInitialRender = true;\n    /**\n     * This function will be used to reduce the animation definitions for\n     * each active animation type into an object of resolved values for it.\n     */\n    const buildResolvedTypeValues = (type) => (acc, definition) => {\n        var _a;\n        const resolved = resolveVariant(visualElement, definition, type === \"exit\"\n            ? (_a = visualElement.presenceContext) === null || _a === void 0 ? void 0 : _a.custom\n            : undefined);\n        if (resolved) {\n            const { transition, transitionEnd, ...target } = resolved;\n            acc = { ...acc, ...target, ...transitionEnd };\n        }\n        return acc;\n    };\n    /**\n     * This just allows us to inject mocked animation functions\n     * @internal\n     */\n    function setAnimateFunction(makeAnimator) {\n        animate = makeAnimator(visualElement);\n    }\n    /**\n     * When we receive new props, we need to:\n     * 1. Create a list of protected keys for each type. This is a directory of\n     *    value keys that are currently being \"handled\" by types of a higher priority\n     *    so that whenever an animation is played of a given type, these values are\n     *    protected from being animated.\n     * 2. Determine if an animation type needs animating.\n     * 3. Determine if any values have been removed from a type and figure out\n     *    what to animate those to.\n     */\n    function animateChanges(changedActiveType) {\n        const { props } = visualElement;\n        const context = getVariantContext(visualElement.parent) || {};\n        /**\n         * A list of animations that we'll build into as we iterate through the animation\n         * types. This will get executed at the end of the function.\n         */\n        const animations = [];\n        /**\n         * Keep track of which values have been removed. Then, as we hit lower priority\n         * animation types, we can check if they contain removed values and animate to that.\n         */\n        const removedKeys = new Set();\n        /**\n         * A dictionary of all encountered keys. This is an object to let us build into and\n         * copy it without iteration. Each time we hit an animation type we set its protected\n         * keys - the keys its not allowed to animate - to the latest version of this object.\n         */\n        let encounteredKeys = {};\n        /**\n         * If a variant has been removed at a given index, and this component is controlling\n         * variant animations, we want to ensure lower-priority variants are forced to animate.\n         */\n        let removedVariantIndex = Infinity;\n        /**\n         * Iterate through all animation types in reverse priority order. For each, we want to\n         * detect which values it's handling and whether or not they've changed (and therefore\n         * need to be animated). If any values have been removed, we want to detect those in\n         * lower priority props and flag for animation.\n         */\n        for (let i = 0; i < numAnimationTypes; i++) {\n            const type = reversePriorityOrder[i];\n            const typeState = state[type];\n            const prop = props[type] !== undefined\n                ? props[type]\n                : context[type];\n            const propIsVariant = isVariantLabel(prop);\n            /**\n             * If this type has *just* changed isActive status, set activeDelta\n             * to that status. Otherwise set to null.\n             */\n            const activeDelta = type === changedActiveType ? typeState.isActive : null;\n            if (activeDelta === false)\n                removedVariantIndex = i;\n            /**\n             * If this prop is an inherited variant, rather than been set directly on the\n             * component itself, we want to make sure we allow the parent to trigger animations.\n             *\n             * TODO: Can probably change this to a !isControllingVariants check\n             */\n            let isInherited = prop === context[type] &&\n                prop !== props[type] &&\n                propIsVariant;\n            /**\n             *\n             */\n            if (isInherited &&\n                isInitialRender &&\n                visualElement.manuallyAnimateOnMount) {\n                isInherited = false;\n            }\n            /**\n             * Set all encountered keys so far as the protected keys for this type. This will\n             * be any key that has been animated or otherwise handled by active, higher-priortiy types.\n             */\n            typeState.protectedKeys = { ...encounteredKeys };\n            // Check if we can skip analysing this prop early\n            if (\n            // If it isn't active and hasn't *just* been set as inactive\n            (!typeState.isActive && activeDelta === null) ||\n                // If we didn't and don't have any defined prop for this animation type\n                (!prop && !typeState.prevProp) ||\n                // Or if the prop doesn't define an animation\n                isAnimationControls(prop) ||\n                typeof prop === \"boolean\") {\n                continue;\n            }\n            /**\n             * As we go look through the values defined on this type, if we detect\n             * a changed value or a value that was removed in a higher priority, we set\n             * this to true and add this prop to the animation list.\n             */\n            const variantDidChange = checkVariantsDidChange(typeState.prevProp, prop);\n            let shouldAnimateType = variantDidChange ||\n                // If we're making this variant active, we want to always make it active\n                (type === changedActiveType &&\n                    typeState.isActive &&\n                    !isInherited &&\n                    propIsVariant) ||\n                // If we removed a higher-priority variant (i is in reverse order)\n                (i > removedVariantIndex && propIsVariant);\n            let handledRemovedValues = false;\n            /**\n             * As animations can be set as variant lists, variants or target objects, we\n             * coerce everything to an array if it isn't one already\n             */\n            const definitionList = Array.isArray(prop) ? prop : [prop];\n            /**\n             * Build an object of all the resolved values. We'll use this in the subsequent\n             * animateChanges calls to determine whether a value has changed.\n             */\n            let resolvedValues = definitionList.reduce(buildResolvedTypeValues(type), {});\n            if (activeDelta === false)\n                resolvedValues = {};\n            /**\n             * Now we need to loop through all the keys in the prev prop and this prop,\n             * and decide:\n             * 1. If the value has changed, and needs animating\n             * 2. If it has been removed, and needs adding to the removedKeys set\n             * 3. If it has been removed in a higher priority type and needs animating\n             * 4. If it hasn't been removed in a higher priority but hasn't changed, and\n             *    needs adding to the type's protectedKeys list.\n             */\n            const { prevResolvedValues = {} } = typeState;\n            const allKeys = {\n                ...prevResolvedValues,\n                ...resolvedValues,\n            };\n            const markToAnimate = (key) => {\n                shouldAnimateType = true;\n                if (removedKeys.has(key)) {\n                    handledRemovedValues = true;\n                    removedKeys.delete(key);\n                }\n                typeState.needsAnimating[key] = true;\n                const motionValue = visualElement.getValue(key);\n                if (motionValue)\n                    motionValue.liveStyle = false;\n            };\n            for (const key in allKeys) {\n                const next = resolvedValues[key];\n                const prev = prevResolvedValues[key];\n                // If we've already handled this we can just skip ahead\n                if (encounteredKeys.hasOwnProperty(key))\n                    continue;\n                /**\n                 * If the value has changed, we probably want to animate it.\n                 */\n                let valueHasChanged = false;\n                if (isKeyframesTarget(next) && isKeyframesTarget(prev)) {\n                    valueHasChanged = !shallowCompare(next, prev);\n                }\n                else {\n                    valueHasChanged = next !== prev;\n                }\n                if (valueHasChanged) {\n                    if (next !== undefined && next !== null) {\n                        // If next is defined and doesn't equal prev, it needs animating\n                        markToAnimate(key);\n                    }\n                    else {\n                        // If it's undefined, it's been removed.\n                        removedKeys.add(key);\n                    }\n                }\n                else if (next !== undefined && removedKeys.has(key)) {\n                    /**\n                     * If next hasn't changed and it isn't undefined, we want to check if it's\n                     * been removed by a higher priority\n                     */\n                    markToAnimate(key);\n                }\n                else {\n                    /**\n                     * If it hasn't changed, we add it to the list of protected values\n                     * to ensure it doesn't get animated.\n                     */\n                    typeState.protectedKeys[key] = true;\n                }\n            }\n            /**\n             * Update the typeState so next time animateChanges is called we can compare the\n             * latest prop and resolvedValues to these.\n             */\n            typeState.prevProp = prop;\n            typeState.prevResolvedValues = resolvedValues;\n            /**\n             *\n             */\n            if (typeState.isActive) {\n                encounteredKeys = { ...encounteredKeys, ...resolvedValues };\n            }\n            if (isInitialRender && visualElement.blockInitialAnimation) {\n                shouldAnimateType = false;\n            }\n            /**\n             * If this is an inherited prop we want to skip this animation\n             * unless the inherited variants haven't changed on this render.\n             */\n            const willAnimateViaParent = isInherited && variantDidChange;\n            const needsAnimating = !willAnimateViaParent || handledRemovedValues;\n            if (shouldAnimateType && needsAnimating) {\n                animations.push(...definitionList.map((animation) => ({\n                    animation: animation,\n                    options: { type },\n                })));\n            }\n        }\n        /**\n         * If there are some removed value that haven't been dealt with,\n         * we need to create a new animation that falls back either to the value\n         * defined in the style prop, or the last read value.\n         */\n        if (removedKeys.size) {\n            const fallbackAnimation = {};\n            removedKeys.forEach((key) => {\n                const fallbackTarget = visualElement.getBaseTarget(key);\n                const motionValue = visualElement.getValue(key);\n                if (motionValue)\n                    motionValue.liveStyle = true;\n                // @ts-expect-error - @mattgperry to figure if we should do something here\n                fallbackAnimation[key] = fallbackTarget !== null && fallbackTarget !== void 0 ? fallbackTarget : null;\n            });\n            animations.push({ animation: fallbackAnimation });\n        }\n        let shouldAnimate = Boolean(animations.length);\n        if (isInitialRender &&\n            (props.initial === false || props.initial === props.animate) &&\n            !visualElement.manuallyAnimateOnMount) {\n            shouldAnimate = false;\n        }\n        isInitialRender = false;\n        return shouldAnimate ? animate(animations) : Promise.resolve();\n    }\n    /**\n     * Change whether a certain animation type is active.\n     */\n    function setActive(type, isActive) {\n        var _a;\n        // If the active state hasn't changed, we can safely do nothing here\n        if (state[type].isActive === isActive)\n            return Promise.resolve();\n        // Propagate active change to children\n        (_a = visualElement.variantChildren) === null || _a === void 0 ? void 0 : _a.forEach((child) => { var _a; return (_a = child.animationState) === null || _a === void 0 ? void 0 : _a.setActive(type, isActive); });\n        state[type].isActive = isActive;\n        const animations = animateChanges(type);\n        for (const key in state) {\n            state[key].protectedKeys = {};\n        }\n        return animations;\n    }\n    return {\n        animateChanges,\n        setActive,\n        setAnimateFunction,\n        getState: () => state,\n        reset: () => {\n            state = createState();\n            isInitialRender = true;\n        },\n    };\n}\nfunction checkVariantsDidChange(prev, next) {\n    if (typeof next === \"string\") {\n        return next !== prev;\n    }\n    else if (Array.isArray(next)) {\n        return !shallowCompare(next, prev);\n    }\n    return false;\n}\nfunction createTypeState(isActive = false) {\n    return {\n        isActive,\n        protectedKeys: {},\n        needsAnimating: {},\n        prevResolvedValues: {},\n    };\n}\nfunction createState() {\n    return {\n        animate: createTypeState(true),\n        whileInView: createTypeState(),\n        whileHover: createTypeState(),\n        whileTap: createTypeState(),\n        whileDrag: createTypeState(),\n        whileFocus: createTypeState(),\n        exit: createTypeState(),\n    };\n}\n\nexport { checkVariantsDidChange, createAnimationState };\n","import { resolveVariant } from '../../render/utils/resolve-dynamic-variants.mjs';\nimport { animateTarget } from './visual-element-target.mjs';\nimport { animateVariant } from './visual-element-variant.mjs';\n\nfunction animateVisualElement(visualElement, definition, options = {}) {\n    visualElement.notify(\"AnimationStart\", definition);\n    let animation;\n    if (Array.isArray(definition)) {\n        const animations = definition.map((variant) => animateVariant(visualElement, variant, options));\n        animation = Promise.all(animations);\n    }\n    else if (typeof definition === \"string\") {\n        animation = animateVariant(visualElement, definition, options);\n    }\n    else {\n        const resolvedDefinition = typeof definition === \"function\"\n            ? resolveVariant(visualElement, definition, options.custom)\n            : definition;\n        animation = Promise.all(animateTarget(visualElement, resolvedDefinition, options));\n    }\n    return animation.then(() => {\n        visualElement.notify(\"AnimationComplete\", definition);\n    });\n}\n\nexport { animateVisualElement };\n","class Feature {\n    constructor(node) {\n        this.isMounted = false;\n        this.node = node;\n    }\n    update() { }\n}\n\nexport { Feature };\n","import { Feature } from '../Feature.mjs';\n\nlet id = 0;\nclass ExitAnimationFeature extends Feature {\n    constructor() {\n        super(...arguments);\n        this.id = id++;\n    }\n    update() {\n        if (!this.node.presenceContext)\n            return;\n        const { isPresent, onExitComplete } = this.node.presenceContext;\n        const { isPresent: prevIsPresent } = this.node.prevPresenceContext || {};\n        if (!this.node.animationState || isPresent === prevIsPresent) {\n            return;\n        }\n        const exitAnimation = this.node.animationState.setActive(\"exit\", !isPresent);\n        if (onExitComplete && !isPresent) {\n            exitAnimation.then(() => onExitComplete(this.id));\n        }\n    }\n    mount() {\n        const { register } = this.node.presenceContext || {};\n        if (register) {\n            this.unmount = register(this.id);\n        }\n    }\n    unmount() { }\n}\n\nexport { ExitAnimationFeature };\n","import { AnimationFeature } from './animation/index.mjs';\nimport { ExitAnimationFeature } from './animation/exit.mjs';\n\nconst animations = {\n    animation: {\n        Feature: AnimationFeature,\n    },\n    exit: {\n        Feature: ExitAnimationFeature,\n    },\n};\n\nexport { animations };\n","import { isAnimationControls } from '../../../animation/utils/is-animation-controls.mjs';\nimport { createAnimationState } from '../../../render/utils/animation-state.mjs';\nimport { Feature } from '../Feature.mjs';\n\nclass AnimationFeature extends Feature {\n    /**\n     * We dynamically generate the AnimationState manager as it contains a reference\n     * to the underlying animation library. We only want to load that if we load this,\n     * so people can optionally code split it out using the `m` component.\n     */\n    constructor(node) {\n        super(node);\n        node.animationState || (node.animationState = createAnimationState(node));\n    }\n    updateAnimationControlsSubscription() {\n        const { animate } = this.node.getProps();\n        if (isAnimationControls(animate)) {\n            this.unmountControls = animate.subscribe(this.node);\n        }\n    }\n    /**\n     * Subscribe any provided AnimationControls to the component's VisualElement\n     */\n    mount() {\n        this.updateAnimationControlsSubscription();\n    }\n    update() {\n        const { animate } = this.node.getProps();\n        const { animate: prevAnimate } = this.node.prevProps || {};\n        if (animate !== prevAnimate) {\n            this.updateAnimationControlsSubscription();\n        }\n    }\n    unmount() {\n        var _a;\n        this.node.animationState.reset();\n        (_a = this.unmountControls) === null || _a === void 0 ? void 0 : _a.call(this);\n    }\n}\n\nexport { AnimationFeature };\n","function addDomEvent(target, eventName, handler, options = { passive: true }) {\n    target.addEventListener(eventName, handler, options);\n    return () => target.removeEventListener(eventName, handler);\n}\n\nexport { addDomEvent };\n","import { isPrimaryPointer } from 'motion-dom';\n\nfunction extractEventInfo(event) {\n    return {\n        point: {\n            x: event.pageX,\n            y: event.pageY,\n        },\n    };\n}\nconst addPointerInfo = (handler) => {\n    return (event) => isPrimaryPointer(event) && handler(event, extractEventInfo(event));\n};\n\nexport { addPointerInfo, extractEventInfo };\n","import { addDomEvent } from './add-dom-event.mjs';\nimport { addPointerInfo } from './event-info.mjs';\n\nfunction addPointerEvent(target, eventName, handler, options) {\n    return addDomEvent(target, eventName, addPointerInfo(handler), options);\n}\n\nexport { addPointerEvent };\n","const distance = (a, b) => Math.abs(a - b);\nfunction distance2D(a, b) {\n    // Multi-dimensional\n    const xDelta = distance(a.x, b.x);\n    const yDelta = distance(a.y, b.y);\n    return Math.sqrt(xDelta ** 2 + yDelta ** 2);\n}\n\nexport { distance, distance2D };\n","import { isPrimaryPointer } from 'motion-dom';\nimport { secondsToMilliseconds, millisecondsToSeconds } from 'motion-utils';\nimport { addPointerEvent } from '../../events/add-pointer-event.mjs';\nimport { extractEventInfo } from '../../events/event-info.mjs';\nimport { distance2D } from '../../utils/distance.mjs';\nimport { pipe } from '../../utils/pipe.mjs';\nimport { frame, cancelFrame, frameData } from '../../frameloop/frame.mjs';\n\n/**\n * @internal\n */\nclass PanSession {\n    constructor(event, handlers, { transformPagePoint, contextWindow, dragSnapToOrigin = false, } = {}) {\n        /**\n         * @internal\n         */\n        this.startEvent = null;\n        /**\n         * @internal\n         */\n        this.lastMoveEvent = null;\n        /**\n         * @internal\n         */\n        this.lastMoveEventInfo = null;\n        /**\n         * @internal\n         */\n        this.handlers = {};\n        /**\n         * @internal\n         */\n        this.contextWindow = window;\n        this.updatePoint = () => {\n            if (!(this.lastMoveEvent && this.lastMoveEventInfo))\n                return;\n            const info = getPanInfo(this.lastMoveEventInfo, this.history);\n            const isPanStarted = this.startEvent !== null;\n            // Only start panning if the offset is larger than 3 pixels. If we make it\n            // any larger than this we'll want to reset the pointer history\n            // on the first update to avoid visual snapping to the cursoe.\n            const isDistancePastThreshold = distance2D(info.offset, { x: 0, y: 0 }) >= 3;\n            if (!isPanStarted && !isDistancePastThreshold)\n                return;\n            const { point } = info;\n            const { timestamp } = frameData;\n            this.history.push({ ...point, timestamp });\n            const { onStart, onMove } = this.handlers;\n            if (!isPanStarted) {\n                onStart && onStart(this.lastMoveEvent, info);\n                this.startEvent = this.lastMoveEvent;\n            }\n            onMove && onMove(this.lastMoveEvent, info);\n        };\n        this.handlePointerMove = (event, info) => {\n            this.lastMoveEvent = event;\n            this.lastMoveEventInfo = transformPoint(info, this.transformPagePoint);\n            // Throttle mouse move event to once per frame\n            frame.update(this.updatePoint, true);\n        };\n        this.handlePointerUp = (event, info) => {\n            this.end();\n            const { onEnd, onSessionEnd, resumeAnimation } = this.handlers;\n            if (this.dragSnapToOrigin)\n                resumeAnimation && resumeAnimation();\n            if (!(this.lastMoveEvent && this.lastMoveEventInfo))\n                return;\n            const panInfo = getPanInfo(event.type === \"pointercancel\"\n                ? this.lastMoveEventInfo\n                : transformPoint(info, this.transformPagePoint), this.history);\n            if (this.startEvent && onEnd) {\n                onEnd(event, panInfo);\n            }\n            onSessionEnd && onSessionEnd(event, panInfo);\n        };\n        // If we have more than one touch, don't start detecting this gesture\n        if (!isPrimaryPointer(event))\n            return;\n        this.dragSnapToOrigin = dragSnapToOrigin;\n        this.handlers = handlers;\n        this.transformPagePoint = transformPagePoint;\n        this.contextWindow = contextWindow || window;\n        const info = extractEventInfo(event);\n        const initialInfo = transformPoint(info, this.transformPagePoint);\n        const { point } = initialInfo;\n        const { timestamp } = frameData;\n        this.history = [{ ...point, timestamp }];\n        const { onSessionStart } = handlers;\n        onSessionStart &&\n            onSessionStart(event, getPanInfo(initialInfo, this.history));\n        this.removeListeners = pipe(addPointerEvent(this.contextWindow, \"pointermove\", this.handlePointerMove), addPointerEvent(this.contextWindow, \"pointerup\", this.handlePointerUp), addPointerEvent(this.contextWindow, \"pointercancel\", this.handlePointerUp));\n    }\n    updateHandlers(handlers) {\n        this.handlers = handlers;\n    }\n    end() {\n        this.removeListeners && this.removeListeners();\n        cancelFrame(this.updatePoint);\n    }\n}\nfunction transformPoint(info, transformPagePoint) {\n    return transformPagePoint ? { point: transformPagePoint(info.point) } : info;\n}\nfunction subtractPoint(a, b) {\n    return { x: a.x - b.x, y: a.y - b.y };\n}\nfunction getPanInfo({ point }, history) {\n    return {\n        point,\n        delta: subtractPoint(point, lastDevicePoint(history)),\n        offset: subtractPoint(point, startDevicePoint(history)),\n        velocity: getVelocity(history, 0.1),\n    };\n}\nfunction startDevicePoint(history) {\n    return history[0];\n}\nfunction lastDevicePoint(history) {\n    return history[history.length - 1];\n}\nfunction getVelocity(history, timeDelta) {\n    if (history.length < 2) {\n        return { x: 0, y: 0 };\n    }\n    let i = history.length - 1;\n    let timestampedPoint = null;\n    const lastPoint = lastDevicePoint(history);\n    while (i >= 0) {\n        timestampedPoint = history[i];\n        if (lastPoint.timestamp - timestampedPoint.timestamp >\n            secondsToMilliseconds(timeDelta)) {\n            break;\n        }\n        i--;\n    }\n    if (!timestampedPoint) {\n        return { x: 0, y: 0 };\n    }\n    const time = millisecondsToSeconds(lastPoint.timestamp - timestampedPoint.timestamp);\n    if (time === 0) {\n        return { x: 0, y: 0 };\n    }\n    const currentVelocity = {\n        x: (lastPoint.x - timestampedPoint.x) / time,\n        y: (lastPoint.y - timestampedPoint.y) / time,\n    };\n    if (currentVelocity.x === Infinity) {\n        currentVelocity.x = 0;\n    }\n    if (currentVelocity.y === Infinity) {\n        currentVelocity.y = 0;\n    }\n    return currentVelocity;\n}\n\nexport { PanSession };\n","function isRefObject(ref) {\n    return (ref &&\n        typeof ref === \"object\" &&\n        Object.prototype.hasOwnProperty.call(ref, \"current\"));\n}\n\nexport { isRefObject };\n","import { mixNumber } from '../../utils/mix/number.mjs';\n\nconst SCALE_PRECISION = 0.0001;\nconst SCALE_MIN = 1 - SCALE_PRECISION;\nconst SCALE_MAX = 1 + SCALE_PRECISION;\nconst TRANSLATE_PRECISION = 0.01;\nconst TRANSLATE_MIN = 0 - TRANSLATE_PRECISION;\nconst TRANSLATE_MAX = 0 + TRANSLATE_PRECISION;\nfunction calcLength(axis) {\n    return axis.max - axis.min;\n}\nfunction isNear(value, target, maxDistance) {\n    return Math.abs(value - target) <= maxDistance;\n}\nfunction calcAxisDelta(delta, source, target, origin = 0.5) {\n    delta.origin = origin;\n    delta.originPoint = mixNumber(source.min, source.max, delta.origin);\n    delta.scale = calcLength(target) / calcLength(source);\n    delta.translate =\n        mixNumber(target.min, target.max, delta.origin) - delta.originPoint;\n    if ((delta.scale >= SCALE_MIN && delta.scale <= SCALE_MAX) ||\n        isNaN(delta.scale)) {\n        delta.scale = 1.0;\n    }\n    if ((delta.translate >= TRANSLATE_MIN &&\n        delta.translate <= TRANSLATE_MAX) ||\n        isNaN(delta.translate)) {\n        delta.translate = 0.0;\n    }\n}\nfunction calcBoxDelta(delta, source, target, origin) {\n    calcAxisDelta(delta.x, source.x, target.x, origin ? origin.originX : undefined);\n    calcAxisDelta(delta.y, source.y, target.y, origin ? origin.originY : undefined);\n}\nfunction calcRelativeAxis(target, relative, parent) {\n    target.min = parent.min + relative.min;\n    target.max = target.min + calcLength(relative);\n}\nfunction calcRelativeBox(target, relative, parent) {\n    calcRelativeAxis(target.x, relative.x, parent.x);\n    calcRelativeAxis(target.y, relative.y, parent.y);\n}\nfunction calcRelativeAxisPosition(target, layout, parent) {\n    target.min = layout.min - parent.min;\n    target.max = target.min + calcLength(layout);\n}\nfunction calcRelativePosition(target, layout, parent) {\n    calcRelativeAxisPosition(target.x, layout.x, parent.x);\n    calcRelativeAxisPosition(target.y, layout.y, parent.y);\n}\n\nexport { calcAxisDelta, calcBoxDelta, calcLength, calcRelativeAxis, calcRelativeAxisPosition, calcRelativeBox, calcRelativePosition, isNear };\n","import { progress } from 'motion-utils';\nimport { calcLength } from '../../../projection/geometry/delta-calc.mjs';\nimport { clamp } from '../../../utils/clamp.mjs';\nimport { mixNumber } from '../../../utils/mix/number.mjs';\n\n/**\n * Apply constraints to a point. These constraints are both physical along an\n * axis, and an elastic factor that determines how much to constrain the point\n * by if it does lie outside the defined parameters.\n */\nfunction applyConstraints(point, { min, max }, elastic) {\n    if (min !== undefined && point < min) {\n        // If we have a min point defined, and this is outside of that, constrain\n        point = elastic\n            ? mixNumber(min, point, elastic.min)\n            : Math.max(point, min);\n    }\n    else if (max !== undefined && point > max) {\n        // If we have a max point defined, and this is outside of that, constrain\n        point = elastic\n            ? mixNumber(max, point, elastic.max)\n            : Math.min(point, max);\n    }\n    return point;\n}\n/**\n * Calculate constraints in terms of the viewport when defined relatively to the\n * measured axis. This is measured from the nearest edge, so a max constraint of 200\n * on an axis with a max value of 300 would return a constraint of 500 - axis length\n */\nfunction calcRelativeAxisConstraints(axis, min, max) {\n    return {\n        min: min !== undefined ? axis.min + min : undefined,\n        max: max !== undefined\n            ? axis.max + max - (axis.max - axis.min)\n            : undefined,\n    };\n}\n/**\n * Calculate constraints in terms of the viewport when\n * defined relatively to the measured bounding box.\n */\nfunction calcRelativeConstraints(layoutBox, { top, left, bottom, right }) {\n    return {\n        x: calcRelativeAxisConstraints(layoutBox.x, left, right),\n        y: calcRelativeAxisConstraints(layoutBox.y, top, bottom),\n    };\n}\n/**\n * Calculate viewport constraints when defined as another viewport-relative axis\n */\nfunction calcViewportAxisConstraints(layoutAxis, constraintsAxis) {\n    let min = constraintsAxis.min - layoutAxis.min;\n    let max = constraintsAxis.max - layoutAxis.max;\n    // If the constraints axis is actually smaller than the layout axis then we can\n    // flip the constraints\n    if (constraintsAxis.max - constraintsAxis.min <\n        layoutAxis.max - layoutAxis.min) {\n        [min, max] = [max, min];\n    }\n    return { min, max };\n}\n/**\n * Calculate viewport constraints when defined as another viewport-relative box\n */\nfunction calcViewportConstraints(layoutBox, constraintsBox) {\n    return {\n        x: calcViewportAxisConstraints(layoutBox.x, constraintsBox.x),\n        y: calcViewportAxisConstraints(layoutBox.y, constraintsBox.y),\n    };\n}\n/**\n * Calculate a transform origin relative to the source axis, between 0-1, that results\n * in an asthetically pleasing scale/transform needed to project from source to target.\n */\nfunction calcOrigin(source, target) {\n    let origin = 0.5;\n    const sourceLength = calcLength(source);\n    const targetLength = calcLength(target);\n    if (targetLength > sourceLength) {\n        origin = progress(target.min, target.max - sourceLength, source.min);\n    }\n    else if (sourceLength > targetLength) {\n        origin = progress(source.min, source.max - targetLength, target.min);\n    }\n    return clamp(0, 1, origin);\n}\n/**\n * Rebase the calculated viewport constraints relative to the layout.min point.\n */\nfunction rebaseAxisConstraints(layout, constraints) {\n    const relativeConstraints = {};\n    if (constraints.min !== undefined) {\n        relativeConstraints.min = constraints.min - layout.min;\n    }\n    if (constraints.max !== undefined) {\n        relativeConstraints.max = constraints.max - layout.min;\n    }\n    return relativeConstraints;\n}\nconst defaultElastic = 0.35;\n/**\n * Accepts a dragElastic prop and returns resolved elastic values for each axis.\n */\nfunction resolveDragElastic(dragElastic = defaultElastic) {\n    if (dragElastic === false) {\n        dragElastic = 0;\n    }\n    else if (dragElastic === true) {\n        dragElastic = defaultElastic;\n    }\n    return {\n        x: resolveAxisElastic(dragElastic, \"left\", \"right\"),\n        y: resolveAxisElastic(dragElastic, \"top\", \"bottom\"),\n    };\n}\nfunction resolveAxisElastic(dragElastic, minLabel, maxLabel) {\n    return {\n        min: resolvePointElastic(dragElastic, minLabel),\n        max: resolvePointElastic(dragElastic, maxLabel),\n    };\n}\nfunction resolvePointElastic(dragElastic, label) {\n    return typeof dragElastic === \"number\"\n        ? dragElastic\n        : dragElastic[label] || 0;\n}\n\nexport { applyConstraints, calcOrigin, calcRelativeAxisConstraints, calcRelativeConstraints, calcViewportAxisConstraints, calcViewportConstraints, defaultElastic, rebaseAxisConstraints, resolveAxisElastic, resolveDragElastic, resolvePointElastic };\n","const createAxisDelta = () => ({\n    translate: 0,\n    scale: 1,\n    origin: 0,\n    originPoint: 0,\n});\nconst createDelta = () => ({\n    x: createAxisDelta(),\n    y: createAxisDelta(),\n});\nconst createAxis = () => ({ min: 0, max: 0 });\nconst createBox = () => ({\n    x: createAxis(),\n    y: createAxis(),\n});\n\nexport { createAxis, createAxisDelta, createBox, createDelta };\n","function eachAxis(callback) {\n    return [callback(\"x\"), callback(\"y\")];\n}\n\nexport { eachAxis };\n","/**\n * Bounding boxes tend to be defined as top, left, right, bottom. For various operations\n * it's easier to consider each axis individually. This function returns a bounding box\n * as a map of single-axis min/max values.\n */\nfunction convertBoundingBoxToBox({ top, left, right, bottom, }) {\n    return {\n        x: { min: left, max: right },\n        y: { min: top, max: bottom },\n    };\n}\nfunction convertBoxToBoundingBox({ x, y }) {\n    return { top: y.min, right: x.max, bottom: y.max, left: x.min };\n}\n/**\n * Applies a TransformPoint function to a bounding box. TransformPoint is usually a function\n * provided by Framer to allow measured points to be corrected for device scaling. This is used\n * when measuring DOM elements and DOM event points.\n */\nfunction transformBoxPoints(point, transformPoint) {\n    if (!transformPoint)\n        return point;\n    const topLeft = transformPoint({ x: point.left, y: point.top });\n    const bottomRight = transformPoint({ x: point.right, y: point.bottom });\n    return {\n        top: topLeft.y,\n        left: topLeft.x,\n        bottom: bottomRight.y,\n        right: bottomRight.x,\n    };\n}\n\nexport { convertBoundingBoxToBox, convertBoxToBoundingBox, transformBoxPoints };\n","function isIdentityScale(scale) {\n    return scale === undefined || scale === 1;\n}\nfunction hasScale({ scale, scaleX, scaleY }) {\n    return (!isIdentityScale(scale) ||\n        !isIdentityScale(scaleX) ||\n        !isIdentityScale(scaleY));\n}\nfunction hasTransform(values) {\n    return (hasScale(values) ||\n        has2DTranslate(values) ||\n        values.z ||\n        values.rotate ||\n        values.rotateX ||\n        values.rotateY ||\n        values.skewX ||\n        values.skewY);\n}\nfunction has2DTranslate(values) {\n    return is2DTranslate(values.x) || is2DTranslate(values.y);\n}\nfunction is2DTranslate(value) {\n    return value && value !== \"0%\";\n}\n\nexport { has2DTranslate, hasScale, hasTransform };\n","import { mixNumber } from '../../utils/mix/number.mjs';\nimport { hasTransform } from '../utils/has-transform.mjs';\n\n/**\n * Scales a point based on a factor and an originPoint\n */\nfunction scalePoint(point, scale, originPoint) {\n    const distanceFromOrigin = point - originPoint;\n    const scaled = scale * distanceFromOrigin;\n    return originPoint + scaled;\n}\n/**\n * Applies a translate/scale delta to a point\n */\nfunction applyPointDelta(point, translate, scale, originPoint, boxScale) {\n    if (boxScale !== undefined) {\n        point = scalePoint(point, boxScale, originPoint);\n    }\n    return scalePoint(point, scale, originPoint) + translate;\n}\n/**\n * Applies a translate/scale delta to an axis\n */\nfunction applyAxisDelta(axis, translate = 0, scale = 1, originPoint, boxScale) {\n    axis.min = applyPointDelta(axis.min, translate, scale, originPoint, boxScale);\n    axis.max = applyPointDelta(axis.max, translate, scale, originPoint, boxScale);\n}\n/**\n * Applies a translate/scale delta to a box\n */\nfunction applyBoxDelta(box, { x, y }) {\n    applyAxisDelta(box.x, x.translate, x.scale, x.originPoint);\n    applyAxisDelta(box.y, y.translate, y.scale, y.originPoint);\n}\nconst TREE_SCALE_SNAP_MIN = 0.999999999999;\nconst TREE_SCALE_SNAP_MAX = 1.0000000000001;\n/**\n * Apply a tree of deltas to a box. We do this to calculate the effect of all the transforms\n * in a tree upon our box before then calculating how to project it into our desired viewport-relative box\n *\n * This is the final nested loop within updateLayoutDelta for future refactoring\n */\nfunction applyTreeDeltas(box, treeScale, treePath, isSharedTransition = false) {\n    const treeLength = treePath.length;\n    if (!treeLength)\n        return;\n    // Reset the treeScale\n    treeScale.x = treeScale.y = 1;\n    let node;\n    let delta;\n    for (let i = 0; i < treeLength; i++) {\n        node = treePath[i];\n        delta = node.projectionDelta;\n        /**\n         * TODO: Prefer to remove this, but currently we have motion components with\n         * display: contents in Framer.\n         */\n        const { visualElement } = node.options;\n        if (visualElement &&\n            visualElement.props.style &&\n            visualElement.props.style.display === \"contents\") {\n            continue;\n        }\n        if (isSharedTransition &&\n            node.options.layoutScroll &&\n            node.scroll &&\n            node !== node.root) {\n            transformBox(box, {\n                x: -node.scroll.offset.x,\n                y: -node.scroll.offset.y,\n            });\n        }\n        if (delta) {\n            // Incoporate each ancestor's scale into a culmulative treeScale for this component\n            treeScale.x *= delta.x.scale;\n            treeScale.y *= delta.y.scale;\n            // Apply each ancestor's calculated delta into this component's recorded layout box\n            applyBoxDelta(box, delta);\n        }\n        if (isSharedTransition && hasTransform(node.latestValues)) {\n            transformBox(box, node.latestValues);\n        }\n    }\n    /**\n     * Snap tree scale back to 1 if it's within a non-perceivable threshold.\n     * This will help reduce useless scales getting rendered.\n     */\n    if (treeScale.x < TREE_SCALE_SNAP_MAX &&\n        treeScale.x > TREE_SCALE_SNAP_MIN) {\n        treeScale.x = 1.0;\n    }\n    if (treeScale.y < TREE_SCALE_SNAP_MAX &&\n        treeScale.y > TREE_SCALE_SNAP_MIN) {\n        treeScale.y = 1.0;\n    }\n}\nfunction translateAxis(axis, distance) {\n    axis.min = axis.min + distance;\n    axis.max = axis.max + distance;\n}\n/**\n * Apply a transform to an axis from the latest resolved motion values.\n * This function basically acts as a bridge between a flat motion value map\n * and applyAxisDelta\n */\nfunction transformAxis(axis, axisTranslate, axisScale, boxScale, axisOrigin = 0.5) {\n    const originPoint = mixNumber(axis.min, axis.max, axisOrigin);\n    // Apply the axis delta to the final axis\n    applyAxisDelta(axis, axisTranslate, axisScale, originPoint, boxScale);\n}\n/**\n * Apply a transform to a box from the latest resolved motion values.\n */\nfunction transformBox(box, transform) {\n    transformAxis(box.x, transform.x, transform.scaleX, transform.scale, transform.originX);\n    transformAxis(box.y, transform.y, transform.scaleY, transform.scale, transform.originY);\n}\n\nexport { applyAxisDelta, applyBoxDelta, applyPointDelta, applyTreeDeltas, scalePoint, transformAxis, transformBox, translateAxis };\n","import { convertBoundingBoxToBox, transformBoxPoints } from '../geometry/conversion.mjs';\nimport { translateAxis } from '../geometry/delta-apply.mjs';\n\nfunction measureViewportBox(instance, transformPoint) {\n    return convertBoundingBoxToBox(transformBoxPoints(instance.getBoundingClientRect(), transformPoint));\n}\nfunction measurePageBox(element, rootProjectionNode, transformPagePoint) {\n    const viewportBox = measureViewportBox(element, transformPagePoint);\n    const { scroll } = rootProjectionNode;\n    if (scroll) {\n        translateAxis(viewportBox.x, scroll.offset.x);\n        translateAxis(viewportBox.y, scroll.offset.y);\n    }\n    return viewportBox;\n}\n\nexport { measurePageBox, measureViewportBox };\n","// Fixes https://github.com/motiondivision/motion/issues/2270\nconst getContextWindow = ({ current }) => {\n    return current ? current.ownerDocument.defaultView : null;\n};\n\nexport { getContextWindow };\n","import { invariant } from 'motion-utils';\nimport { setDragLock } from 'motion-dom';\nimport { PanSession } from '../pan/PanSession.mjs';\nimport { isRefObject } from '../../utils/is-ref-object.mjs';\nimport { addPointerEvent } from '../../events/add-pointer-event.mjs';\nimport { applyConstraints, calcRelativeConstraints, resolveDragElastic, rebaseAxisConstraints, calcViewportConstraints, calcOrigin, defaultElastic } from './utils/constraints.mjs';\nimport { createBox } from '../../projection/geometry/models.mjs';\nimport { eachAxis } from '../../projection/utils/each-axis.mjs';\nimport { measurePageBox } from '../../projection/utils/measure.mjs';\nimport { extractEventInfo } from '../../events/event-info.mjs';\nimport { convertBoxToBoundingBox, convertBoundingBoxToBox } from '../../projection/geometry/conversion.mjs';\nimport { addDomEvent } from '../../events/add-dom-event.mjs';\nimport { calcLength } from '../../projection/geometry/delta-calc.mjs';\nimport { mixNumber } from '../../utils/mix/number.mjs';\nimport { percent } from '../../value/types/numbers/units.mjs';\nimport { animateMotionValue } from '../../animation/interfaces/motion-value.mjs';\nimport { getContextWindow } from '../../utils/get-context-window.mjs';\nimport { addValueToWillChange } from '../../value/use-will-change/add-will-change.mjs';\nimport { frame } from '../../frameloop/frame.mjs';\n\nconst elementDragControls = new WeakMap();\n/**\n *\n */\n// let latestPointerEvent: PointerEvent\nclass VisualElementDragControls {\n    constructor(visualElement) {\n        this.openDragLock = null;\n        this.isDragging = false;\n        this.currentDirection = null;\n        this.originPoint = { x: 0, y: 0 };\n        /**\n         * The permitted boundaries of travel, in pixels.\n         */\n        this.constraints = false;\n        this.hasMutatedConstraints = false;\n        /**\n         * The per-axis resolved elastic values.\n         */\n        this.elastic = createBox();\n        this.visualElement = visualElement;\n    }\n    start(originEvent, { snapToCursor = false } = {}) {\n        /**\n         * Don't start dragging if this component is exiting\n         */\n        const { presenceContext } = this.visualElement;\n        if (presenceContext && presenceContext.isPresent === false)\n            return;\n        const onSessionStart = (event) => {\n            const { dragSnapToOrigin } = this.getProps();\n            // Stop or pause any animations on both axis values immediately. This allows the user to throw and catch\n            // the component.\n            dragSnapToOrigin ? this.pauseAnimation() : this.stopAnimation();\n            if (snapToCursor) {\n                this.snapToCursor(extractEventInfo(event).point);\n            }\n        };\n        const onStart = (event, info) => {\n            // Attempt to grab the global drag gesture lock - maybe make this part of PanSession\n            const { drag, dragPropagation, onDragStart } = this.getProps();\n            if (drag && !dragPropagation) {\n                if (this.openDragLock)\n                    this.openDragLock();\n                this.openDragLock = setDragLock(drag);\n                // If we don 't have the lock, don't start dragging\n                if (!this.openDragLock)\n                    return;\n            }\n            this.isDragging = true;\n            this.currentDirection = null;\n            this.resolveConstraints();\n            if (this.visualElement.projection) {\n                this.visualElement.projection.isAnimationBlocked = true;\n                this.visualElement.projection.target = undefined;\n            }\n            /**\n             * Record gesture origin\n             */\n            eachAxis((axis) => {\n                let current = this.getAxisMotionValue(axis).get() || 0;\n                /**\n                 * If the MotionValue is a percentage value convert to px\n                 */\n                if (percent.test(current)) {\n                    const { projection } = this.visualElement;\n                    if (projection && projection.layout) {\n                        const measuredAxis = projection.layout.layoutBox[axis];\n                        if (measuredAxis) {\n                            const length = calcLength(measuredAxis);\n                            current = length * (parseFloat(current) / 100);\n                        }\n                    }\n                }\n                this.originPoint[axis] = current;\n            });\n            // Fire onDragStart event\n            if (onDragStart) {\n                frame.postRender(() => onDragStart(event, info));\n            }\n            addValueToWillChange(this.visualElement, \"transform\");\n            const { animationState } = this.visualElement;\n            animationState && animationState.setActive(\"whileDrag\", true);\n        };\n        const onMove = (event, info) => {\n            // latestPointerEvent = event\n            const { dragPropagation, dragDirectionLock, onDirectionLock, onDrag, } = this.getProps();\n            // If we didn't successfully receive the gesture lock, early return.\n            if (!dragPropagation && !this.openDragLock)\n                return;\n            const { offset } = info;\n            // Attempt to detect drag direction if directionLock is true\n            if (dragDirectionLock && this.currentDirection === null) {\n                this.currentDirection = getCurrentDirection(offset);\n                // If we've successfully set a direction, notify listener\n                if (this.currentDirection !== null) {\n                    onDirectionLock && onDirectionLock(this.currentDirection);\n                }\n                return;\n            }\n            // Update each point with the latest position\n            this.updateAxis(\"x\", info.point, offset);\n            this.updateAxis(\"y\", info.point, offset);\n            /**\n             * Ideally we would leave the renderer to fire naturally at the end of\n             * this frame but if the element is about to change layout as the result\n             * of a re-render we want to ensure the browser can read the latest\n             * bounding box to ensure the pointer and element don't fall out of sync.\n             */\n            this.visualElement.render();\n            /**\n             * This must fire after the render call as it might trigger a state\n             * change which itself might trigger a layout update.\n             */\n            onDrag && onDrag(event, info);\n        };\n        const onSessionEnd = (event, info) => this.stop(event, info);\n        const resumeAnimation = () => eachAxis((axis) => {\n            var _a;\n            return this.getAnimationState(axis) === \"paused\" &&\n                ((_a = this.getAxisMotionValue(axis).animation) === null || _a === void 0 ? void 0 : _a.play());\n        });\n        const { dragSnapToOrigin } = this.getProps();\n        this.panSession = new PanSession(originEvent, {\n            onSessionStart,\n            onStart,\n            onMove,\n            onSessionEnd,\n            resumeAnimation,\n        }, {\n            transformPagePoint: this.visualElement.getTransformPagePoint(),\n            dragSnapToOrigin,\n            contextWindow: getContextWindow(this.visualElement),\n        });\n    }\n    stop(event, info) {\n        const isDragging = this.isDragging;\n        this.cancel();\n        if (!isDragging)\n            return;\n        const { velocity } = info;\n        this.startAnimation(velocity);\n        const { onDragEnd } = this.getProps();\n        if (onDragEnd) {\n            frame.postRender(() => onDragEnd(event, info));\n        }\n    }\n    cancel() {\n        this.isDragging = false;\n        const { projection, animationState } = this.visualElement;\n        if (projection) {\n            projection.isAnimationBlocked = false;\n        }\n        this.panSession && this.panSession.end();\n        this.panSession = undefined;\n        const { dragPropagation } = this.getProps();\n        if (!dragPropagation && this.openDragLock) {\n            this.openDragLock();\n            this.openDragLock = null;\n        }\n        animationState && animationState.setActive(\"whileDrag\", false);\n    }\n    updateAxis(axis, _point, offset) {\n        const { drag } = this.getProps();\n        // If we're not dragging this axis, do an early return.\n        if (!offset || !shouldDrag(axis, drag, this.currentDirection))\n            return;\n        const axisValue = this.getAxisMotionValue(axis);\n        let next = this.originPoint[axis] + offset[axis];\n        // Apply constraints\n        if (this.constraints && this.constraints[axis]) {\n            next = applyConstraints(next, this.constraints[axis], this.elastic[axis]);\n        }\n        axisValue.set(next);\n    }\n    resolveConstraints() {\n        var _a;\n        const { dragConstraints, dragElastic } = this.getProps();\n        const layout = this.visualElement.projection &&\n            !this.visualElement.projection.layout\n            ? this.visualElement.projection.measure(false)\n            : (_a = this.visualElement.projection) === null || _a === void 0 ? void 0 : _a.layout;\n        const prevConstraints = this.constraints;\n        if (dragConstraints && isRefObject(dragConstraints)) {\n            if (!this.constraints) {\n                this.constraints = this.resolveRefConstraints();\n            }\n        }\n        else {\n            if (dragConstraints && layout) {\n                this.constraints = calcRelativeConstraints(layout.layoutBox, dragConstraints);\n            }\n            else {\n                this.constraints = false;\n            }\n        }\n        this.elastic = resolveDragElastic(dragElastic);\n        /**\n         * If we're outputting to external MotionValues, we want to rebase the measured constraints\n         * from viewport-relative to component-relative.\n         */\n        if (prevConstraints !== this.constraints &&\n            layout &&\n            this.constraints &&\n            !this.hasMutatedConstraints) {\n            eachAxis((axis) => {\n                if (this.constraints !== false &&\n                    this.getAxisMotionValue(axis)) {\n                    this.constraints[axis] = rebaseAxisConstraints(layout.layoutBox[axis], this.constraints[axis]);\n                }\n            });\n        }\n    }\n    resolveRefConstraints() {\n        const { dragConstraints: constraints, onMeasureDragConstraints } = this.getProps();\n        if (!constraints || !isRefObject(constraints))\n            return false;\n        const constraintsElement = constraints.current;\n        invariant(constraintsElement !== null, \"If `dragConstraints` is set as a React ref, that ref must be passed to another component's `ref` prop.\");\n        const { projection } = this.visualElement;\n        // TODO\n        if (!projection || !projection.layout)\n            return false;\n        const constraintsBox = measurePageBox(constraintsElement, projection.root, this.visualElement.getTransformPagePoint());\n        let measuredConstraints = calcViewportConstraints(projection.layout.layoutBox, constraintsBox);\n        /**\n         * If there's an onMeasureDragConstraints listener we call it and\n         * if different constraints are returned, set constraints to that\n         */\n        if (onMeasureDragConstraints) {\n            const userConstraints = onMeasureDragConstraints(convertBoxToBoundingBox(measuredConstraints));\n            this.hasMutatedConstraints = !!userConstraints;\n            if (userConstraints) {\n                measuredConstraints = convertBoundingBoxToBox(userConstraints);\n            }\n        }\n        return measuredConstraints;\n    }\n    startAnimation(velocity) {\n        const { drag, dragMomentum, dragElastic, dragTransition, dragSnapToOrigin, onDragTransitionEnd, } = this.getProps();\n        const constraints = this.constraints || {};\n        const momentumAnimations = eachAxis((axis) => {\n            if (!shouldDrag(axis, drag, this.currentDirection)) {\n                return;\n            }\n            let transition = (constraints && constraints[axis]) || {};\n            if (dragSnapToOrigin)\n                transition = { min: 0, max: 0 };\n            /**\n             * Overdamp the boundary spring if `dragElastic` is disabled. There's still a frame\n             * of spring animations so we should look into adding a disable spring option to `inertia`.\n             * We could do something here where we affect the `bounceStiffness` and `bounceDamping`\n             * using the value of `dragElastic`.\n             */\n            const bounceStiffness = dragElastic ? 200 : 1000000;\n            const bounceDamping = dragElastic ? 40 : 10000000;\n            const inertia = {\n                type: \"inertia\",\n                velocity: dragMomentum ? velocity[axis] : 0,\n                bounceStiffness,\n                bounceDamping,\n                timeConstant: 750,\n                restDelta: 1,\n                restSpeed: 10,\n                ...dragTransition,\n                ...transition,\n            };\n            // If we're not animating on an externally-provided `MotionValue` we can use the\n            // component's animation controls which will handle interactions with whileHover (etc),\n            // otherwise we just have to animate the `MotionValue` itself.\n            return this.startAxisValueAnimation(axis, inertia);\n        });\n        // Run all animations and then resolve the new drag constraints.\n        return Promise.all(momentumAnimations).then(onDragTransitionEnd);\n    }\n    startAxisValueAnimation(axis, transition) {\n        const axisValue = this.getAxisMotionValue(axis);\n        addValueToWillChange(this.visualElement, axis);\n        return axisValue.start(animateMotionValue(axis, axisValue, 0, transition, this.visualElement, false));\n    }\n    stopAnimation() {\n        eachAxis((axis) => this.getAxisMotionValue(axis).stop());\n    }\n    pauseAnimation() {\n        eachAxis((axis) => { var _a; return (_a = this.getAxisMotionValue(axis).animation) === null || _a === void 0 ? void 0 : _a.pause(); });\n    }\n    getAnimationState(axis) {\n        var _a;\n        return (_a = this.getAxisMotionValue(axis).animation) === null || _a === void 0 ? void 0 : _a.state;\n    }\n    /**\n     * Drag works differently depending on which props are provided.\n     *\n     * - If _dragX and _dragY are provided, we output the gesture delta directly to those motion values.\n     * - Otherwise, we apply the delta to the x/y motion values.\n     */\n    getAxisMotionValue(axis) {\n        const dragKey = `_drag${axis.toUpperCase()}`;\n        const props = this.visualElement.getProps();\n        const externalMotionValue = props[dragKey];\n        return externalMotionValue\n            ? externalMotionValue\n            : this.visualElement.getValue(axis, (props.initial\n                ? props.initial[axis]\n                : undefined) || 0);\n    }\n    snapToCursor(point) {\n        eachAxis((axis) => {\n            const { drag } = this.getProps();\n            // If we're not dragging this axis, do an early return.\n            if (!shouldDrag(axis, drag, this.currentDirection))\n                return;\n            const { projection } = this.visualElement;\n            const axisValue = this.getAxisMotionValue(axis);\n            if (projection && projection.layout) {\n                const { min, max } = projection.layout.layoutBox[axis];\n                axisValue.set(point[axis] - mixNumber(min, max, 0.5));\n            }\n        });\n    }\n    /**\n     * When the viewport resizes we want to check if the measured constraints\n     * have changed and, if so, reposition the element within those new constraints\n     * relative to where it was before the resize.\n     */\n    scalePositionWithinConstraints() {\n        if (!this.visualElement.current)\n            return;\n        const { drag, dragConstraints } = this.getProps();\n        const { projection } = this.visualElement;\n        if (!isRefObject(dragConstraints) || !projection || !this.constraints)\n            return;\n        /**\n         * Stop current animations as there can be visual glitching if we try to do\n         * this mid-animation\n         */\n        this.stopAnimation();\n        /**\n         * Record the relative position of the dragged element relative to the\n         * constraints box and save as a progress value.\n         */\n        const boxProgress = { x: 0, y: 0 };\n        eachAxis((axis) => {\n            const axisValue = this.getAxisMotionValue(axis);\n            if (axisValue && this.constraints !== false) {\n                const latest = axisValue.get();\n                boxProgress[axis] = calcOrigin({ min: latest, max: latest }, this.constraints[axis]);\n            }\n        });\n        /**\n         * Update the layout of this element and resolve the latest drag constraints\n         */\n        const { transformTemplate } = this.visualElement.getProps();\n        this.visualElement.current.style.transform = transformTemplate\n            ? transformTemplate({}, \"\")\n            : \"none\";\n        projection.root && projection.root.updateScroll();\n        projection.updateLayout();\n        this.resolveConstraints();\n        /**\n         * For each axis, calculate the current progress of the layout axis\n         * within the new constraints.\n         */\n        eachAxis((axis) => {\n            if (!shouldDrag(axis, drag, null))\n                return;\n            /**\n             * Calculate a new transform based on the previous box progress\n             */\n            const axisValue = this.getAxisMotionValue(axis);\n            const { min, max } = this.constraints[axis];\n            axisValue.set(mixNumber(min, max, boxProgress[axis]));\n        });\n    }\n    addListeners() {\n        if (!this.visualElement.current)\n            return;\n        elementDragControls.set(this.visualElement, this);\n        const element = this.visualElement.current;\n        /**\n         * Attach a pointerdown event listener on this DOM element to initiate drag tracking.\n         */\n        const stopPointerListener = addPointerEvent(element, \"pointerdown\", (event) => {\n            const { drag, dragListener = true } = this.getProps();\n            drag && dragListener && this.start(event);\n        });\n        const measureDragConstraints = () => {\n            const { dragConstraints } = this.getProps();\n            if (isRefObject(dragConstraints) && dragConstraints.current) {\n                this.constraints = this.resolveRefConstraints();\n            }\n        };\n        const { projection } = this.visualElement;\n        const stopMeasureLayoutListener = projection.addEventListener(\"measure\", measureDragConstraints);\n        if (projection && !projection.layout) {\n            projection.root && projection.root.updateScroll();\n            projection.updateLayout();\n        }\n        frame.read(measureDragConstraints);\n        /**\n         * Attach a window resize listener to scale the draggable target within its defined\n         * constraints as the window resizes.\n         */\n        const stopResizeListener = addDomEvent(window, \"resize\", () => this.scalePositionWithinConstraints());\n        /**\n         * If the element's layout changes, calculate the delta and apply that to\n         * the drag gesture's origin point.\n         */\n        const stopLayoutUpdateListener = projection.addEventListener(\"didUpdate\", (({ delta, hasLayoutChanged }) => {\n            if (this.isDragging && hasLayoutChanged) {\n                eachAxis((axis) => {\n                    const motionValue = this.getAxisMotionValue(axis);\n                    if (!motionValue)\n                        return;\n                    this.originPoint[axis] += delta[axis].translate;\n                    motionValue.set(motionValue.get() + delta[axis].translate);\n                });\n                this.visualElement.render();\n            }\n        }));\n        return () => {\n            stopResizeListener();\n            stopPointerListener();\n            stopMeasureLayoutListener();\n            stopLayoutUpdateListener && stopLayoutUpdateListener();\n        };\n    }\n    getProps() {\n        const props = this.visualElement.getProps();\n        const { drag = false, dragDirectionLock = false, dragPropagation = false, dragConstraints = false, dragElastic = defaultElastic, dragMomentum = true, } = props;\n        return {\n            ...props,\n            drag,\n            dragDirectionLock,\n            dragPropagation,\n            dragConstraints,\n            dragElastic,\n            dragMomentum,\n        };\n    }\n}\nfunction shouldDrag(direction, drag, currentDirection) {\n    return ((drag === true || drag === direction) &&\n        (currentDirection === null || currentDirection === direction));\n}\n/**\n * Based on an x/y offset determine the current drag direction. If both axis' offsets are lower\n * than the provided threshold, return `null`.\n *\n * @param offset - The x/y offset from origin.\n * @param lockThreshold - (Optional) - the minimum absolute offset before we can determine a drag direction.\n */\nfunction getCurrentDirection(offset, lockThreshold = 10) {\n    let direction = null;\n    if (Math.abs(offset.y) > lockThreshold) {\n        direction = \"y\";\n    }\n    else if (Math.abs(offset.x) > lockThreshold) {\n        direction = \"x\";\n    }\n    return direction;\n}\n\nexport { VisualElementDragControls, elementDragControls };\n","import { isDragging } from './is-active.mjs';\n\nfunction setDragLock(axis) {\n    if (axis === \"x\" || axis === \"y\") {\n        if (isDragging[axis]) {\n            return null;\n        }\n        else {\n            isDragging[axis] = true;\n            return () => {\n                isDragging[axis] = false;\n            };\n        }\n    }\n    else {\n        if (isDragging.x || isDragging.y) {\n            return null;\n        }\n        else {\n            isDragging.x = isDragging.y = true;\n            return () => {\n                isDragging.x = isDragging.y = false;\n            };\n        }\n    }\n}\n\nexport { setDragLock };\n","import { PanSession } from './PanSession.mjs';\nimport { addPointerEvent } from '../../events/add-pointer-event.mjs';\nimport { Feature } from '../../motion/features/Feature.mjs';\nimport { noop } from 'motion-utils';\nimport { getContextWindow } from '../../utils/get-context-window.mjs';\nimport { frame } from '../../frameloop/frame.mjs';\n\nconst asyncHandler = (handler) => (event, info) => {\n    if (handler) {\n        frame.postRender(() => handler(event, info));\n    }\n};\nclass PanGesture extends Feature {\n    constructor() {\n        super(...arguments);\n        this.removePointerDownListener = noop;\n    }\n    onPointerDown(pointerDownEvent) {\n        this.session = new PanSession(pointerDownEvent, this.createPanHandlers(), {\n            transformPagePoint: this.node.getTransformPagePoint(),\n            contextWindow: getContextWindow(this.node),\n        });\n    }\n    createPanHandlers() {\n        const { onPanSessionStart, onPanStart, onPan, onPanEnd } = this.node.getProps();\n        return {\n            onSessionStart: asyncHandler(onPanSessionStart),\n            onStart: asyncHandler(onPanStart),\n            onMove: onPan,\n            onEnd: (event, info) => {\n                delete this.session;\n                if (onPanEnd) {\n                    frame.postRender(() => onPanEnd(event, info));\n                }\n            },\n        };\n    }\n    mount() {\n        this.removePointerDownListener = addPointerEvent(this.node.current, \"pointerdown\", (event) => this.onPointerDown(event));\n    }\n    update() {\n        this.session && this.session.updateHandlers(this.createPanHandlers());\n    }\n    unmount() {\n        this.removePointerDownListener();\n        this.session && this.session.end();\n    }\n}\n\nexport { PanGesture };\n","\"use client\";\nimport { createContext } from 'react';\n\n/**\n * @public\n */\nconst PresenceContext = createContext(null);\n\nexport { PresenceContext };\n","import { useContext, useId, useEffect, useCallback } from 'react';\nimport { PresenceContext } from '../../context/PresenceContext.mjs';\n\n/**\n * When a component is the child of `AnimatePresence`, it can use `usePresence`\n * to access information about whether it's still present in the React tree.\n *\n * ```jsx\n * import { usePresence } from \"framer-motion\"\n *\n * export const Component = () => {\n *   const [isPresent, safeToRemove] = usePresence()\n *\n *   useEffect(() => {\n *     !isPresent && setTimeout(safeToRemove, 1000)\n *   }, [isPresent])\n *\n *   return <div />\n * }\n * ```\n *\n * If `isPresent` is `false`, it means that a component has been removed the tree, but\n * `AnimatePresence` won't really remove it until `safeToRemove` has been called.\n *\n * @public\n */\nfunction usePresence(subscribe = true) {\n    const context = useContext(PresenceContext);\n    if (context === null)\n        return [true, null];\n    const { isPresent, onExitComplete, register } = context;\n    // It's safe to call the following hooks conditionally (after an early return) because the context will always\n    // either be null or non-null for the lifespan of the component.\n    const id = useId();\n    useEffect(() => {\n        if (subscribe)\n            register(id);\n    }, [subscribe]);\n    const safeToRemove = useCallback(() => subscribe && onExitComplete && onExitComplete(id), [id, onExitComplete, subscribe]);\n    return !isPresent && onExitComplete ? [false, safeToRemove] : [true];\n}\n/**\n * Similar to `usePresence`, except `useIsPresent` simply returns whether or not the component is present.\n * There is no `safeToRemove` function.\n *\n * ```jsx\n * import { useIsPresent } from \"framer-motion\"\n *\n * export const Component = () => {\n *   const isPresent = useIsPresent()\n *\n *   useEffect(() => {\n *     !isPresent && console.log(\"I've been removed!\")\n *   }, [isPresent])\n *\n *   return <div />\n * }\n * ```\n *\n * @public\n */\nfunction useIsPresent() {\n    return isPresent(useContext(PresenceContext));\n}\nfunction isPresent(context) {\n    return context === null ? true : context.isPresent;\n}\n\nexport { isPresent, useIsPresent, usePresence };\n","\"use client\";\nimport { createContext } from 'react';\n\nconst LayoutGroupContext = createContext({});\n\nexport { LayoutGroupContext };\n","\"use client\";\nimport { createContext } from 'react';\n\n/**\n * Internal, exported only for usage in Framer\n */\nconst SwitchLayoutGroupContext = createContext({});\n\nexport { SwitchLayoutGroupContext };\n","/**\n * This should only ever be modified on the client otherwise it'll\n * persist through server requests. If we need instanced states we\n * could lazy-init via root.\n */\nconst globalProjectionState = {\n    /**\n     * Global flag as to whether the tree has animated since the last time\n     * we resized the window\n     */\n    hasAnimatedSinceResize: true,\n    /**\n     * We set this to true once, on the first update. Any nodes added to the tree beyond that\n     * update will be given a `data-projection-id` attribute.\n     */\n    hasEverUpdated: false,\n};\n\nexport { globalProjectionState };\n","import { px } from '../../value/types/numbers/units.mjs';\n\nfunction pixelsToPercent(pixels, axis) {\n    if (axis.max === axis.min)\n        return 0;\n    return (pixels / (axis.max - axis.min)) * 100;\n}\n/**\n * We always correct borderRadius as a percentage rather than pixels to reduce paints.\n * For example, if you are projecting a box that is 100px wide with a 10px borderRadius\n * into a box that is 200px wide with a 20px borderRadius, that is actually a 10%\n * borderRadius in both states. If we animate between the two in pixels that will trigger\n * a paint each time. If we animate between the two in percentage we'll avoid a paint.\n */\nconst correctBorderRadius = {\n    correct: (latest, node) => {\n        if (!node.target)\n            return latest;\n        /**\n         * If latest is a string, if it's a percentage we can return immediately as it's\n         * going to be stretched appropriately. Otherwise, if it's a pixel, convert it to a number.\n         */\n        if (typeof latest === \"string\") {\n            if (px.test(latest)) {\n                latest = parseFloat(latest);\n            }\n            else {\n                return latest;\n            }\n        }\n        /**\n         * If latest is a number, it's a pixel value. We use the current viewportBox to calculate that\n         * pixel value as a percentage of each axis\n         */\n        const x = pixelsToPercent(latest, node.target.x);\n        const y = pixelsToPercent(latest, node.target.y);\n        return `${x}% ${y}%`;\n    },\n};\n\nexport { correctBorderRadius, pixelsToPercent };\n","import { mixNumber } from '../../utils/mix/number.mjs';\nimport { complex } from '../../value/types/complex/index.mjs';\n\nconst correctBoxShadow = {\n    correct: (latest, { treeScale, projectionDelta }) => {\n        const original = latest;\n        const shadow = complex.parse(latest);\n        // TODO: Doesn't support multiple shadows\n        if (shadow.length > 5)\n            return original;\n        const template = complex.createTransformer(latest);\n        const offset = typeof shadow[0] !== \"number\" ? 1 : 0;\n        // Calculate the overall context scale\n        const xScale = projectionDelta.x.scale * treeScale.x;\n        const yScale = projectionDelta.y.scale * treeScale.y;\n        shadow[0 + offset] /= xScale;\n        shadow[1 + offset] /= yScale;\n        /**\n         * Ideally we'd correct x and y scales individually, but because blur and\n         * spread apply to both we have to take a scale average and apply that instead.\n         * We could potentially improve the outcome of this by incorporating the ratio between\n         * the two scales.\n         */\n        const averageScale = mixNumber(xScale, yScale, 0.5);\n        // Blur\n        if (typeof shadow[2 + offset] === \"number\")\n            shadow[2 + offset] /= averageScale;\n        // Spread\n        if (typeof shadow[3 + offset] === \"number\")\n            shadow[3 + offset] /= averageScale;\n        return template(shadow);\n    },\n};\n\nexport { correctBoxShadow };\n","const scaleCorrectors = {};\nfunction addScaleCorrector(correctors) {\n    Object.assign(scaleCorrectors, correctors);\n}\n\nexport { addScaleCorrector, scaleCorrectors };\n","import { createRenderBatcher } from './batcher.mjs';\n\nconst { schedule: microtask, cancel: cancelMicrotask } = createRenderBatcher(queueMicrotask, false);\n\nexport { cancelMicrotask, microtask };\n","\"use client\";\nimport { jsx } from 'react/jsx-runtime';\nimport { useContext, Component } from 'react';\nimport { usePresence } from '../../../components/AnimatePresence/use-presence.mjs';\nimport { LayoutGroupContext } from '../../../context/LayoutGroupContext.mjs';\nimport { SwitchLayoutGroupContext } from '../../../context/SwitchLayoutGroupContext.mjs';\nimport { globalProjectionState } from '../../../projection/node/state.mjs';\nimport { correctBorderRadius } from '../../../projection/styles/scale-border-radius.mjs';\nimport { correctBoxShadow } from '../../../projection/styles/scale-box-shadow.mjs';\nimport { addScaleCorrector } from '../../../projection/styles/scale-correction.mjs';\nimport { microtask } from '../../../frameloop/microtask.mjs';\nimport { frame } from '../../../frameloop/frame.mjs';\n\nclass MeasureLayoutWithContext extends Component {\n    /**\n     * This only mounts projection nodes for components that\n     * need measuring, we might want to do it for all components\n     * in order to incorporate transforms\n     */\n    componentDidMount() {\n        const { visualElement, layoutGroup, switchLayoutGroup, layoutId } = this.props;\n        const { projection } = visualElement;\n        addScaleCorrector(defaultScaleCorrectors);\n        if (projection) {\n            if (layoutGroup.group)\n                layoutGroup.group.add(projection);\n            if (switchLayoutGroup && switchLayoutGroup.register && layoutId) {\n                switchLayoutGroup.register(projection);\n            }\n            projection.root.didUpdate();\n            projection.addEventListener(\"animationComplete\", () => {\n                this.safeToRemove();\n            });\n            projection.setOptions({\n                ...projection.options,\n                onExitComplete: () => this.safeToRemove(),\n            });\n        }\n        globalProjectionState.hasEverUpdated = true;\n    }\n    getSnapshotBeforeUpdate(prevProps) {\n        const { layoutDependency, visualElement, drag, isPresent } = this.props;\n        const projection = visualElement.projection;\n        if (!projection)\n            return null;\n        /**\n         * TODO: We use this data in relegate to determine whether to\n         * promote a previous element. There's no guarantee its presence data\n         * will have updated by this point - if a bug like this arises it will\n         * have to be that we markForRelegation and then find a new lead some other way,\n         * perhaps in didUpdate\n         */\n        projection.isPresent = isPresent;\n        if (drag ||\n            prevProps.layoutDependency !== layoutDependency ||\n            layoutDependency === undefined) {\n            projection.willUpdate();\n        }\n        else {\n            this.safeToRemove();\n        }\n        if (prevProps.isPresent !== isPresent) {\n            if (isPresent) {\n                projection.promote();\n            }\n            else if (!projection.relegate()) {\n                /**\n                 * If there's another stack member taking over from this one,\n                 * it's in charge of the exit animation and therefore should\n                 * be in charge of the safe to remove. Otherwise we call it here.\n                 */\n                frame.postRender(() => {\n                    const stack = projection.getStack();\n                    if (!stack || !stack.members.length) {\n                        this.safeToRemove();\n                    }\n                });\n            }\n        }\n        return null;\n    }\n    componentDidUpdate() {\n        const { projection } = this.props.visualElement;\n        if (projection) {\n            projection.root.didUpdate();\n            microtask.postRender(() => {\n                if (!projection.currentAnimation && projection.isLead()) {\n                    this.safeToRemove();\n                }\n            });\n        }\n    }\n    componentWillUnmount() {\n        const { visualElement, layoutGroup, switchLayoutGroup: promoteContext, } = this.props;\n        const { projection } = visualElement;\n        if (projection) {\n            projection.scheduleCheckAfterUnmount();\n            if (layoutGroup && layoutGroup.group)\n                layoutGroup.group.remove(projection);\n            if (promoteContext && promoteContext.deregister)\n                promoteContext.deregister(projection);\n        }\n    }\n    safeToRemove() {\n        const { safeToRemove } = this.props;\n        safeToRemove && safeToRemove();\n    }\n    render() {\n        return null;\n    }\n}\nfunction MeasureLayout(props) {\n    const [isPresent, safeToRemove] = usePresence();\n    const layoutGroup = useContext(LayoutGroupContext);\n    return (jsx(MeasureLayoutWithContext, { ...props, layoutGroup: layoutGroup, switchLayoutGroup: useContext(SwitchLayoutGroupContext), isPresent: isPresent, safeToRemove: safeToRemove }));\n}\nconst defaultScaleCorrectors = {\n    borderRadius: {\n        ...correctBorderRadius,\n        applyTo: [\n            \"borderTopLeftRadius\",\n            \"borderTopRightRadius\",\n            \"borderBottomLeftRadius\",\n            \"borderBottomRightRadius\",\n        ],\n    },\n    borderTopLeftRadius: correctBorderRadius,\n    borderTopRightRadius: correctBorderRadius,\n    borderBottomLeftRadius: correctBorderRadius,\n    borderBottomRightRadius: correctBorderRadius,\n    boxShadow: correctBoxShadow,\n};\n\nexport { MeasureLayout };\n","const compareByDepth = (a, b) => a.depth - b.depth;\n\nexport { compareByDepth };\n","import { addUniqueItem, removeItem } from '../../utils/array.mjs';\nimport { compareByDepth } from './compare-by-depth.mjs';\n\nclass FlatTree {\n    constructor() {\n        this.children = [];\n        this.isDirty = false;\n    }\n    add(child) {\n        addUniqueItem(this.children, child);\n        this.isDirty = true;\n    }\n    remove(child) {\n        removeItem(this.children, child);\n        this.isDirty = true;\n    }\n    forEach(callback) {\n        this.isDirty && this.children.sort(compareByDepth);\n        this.isDirty = false;\n        this.children.forEach(callback);\n    }\n}\n\nexport { FlatTree };\n","import { isCustomValue } from '../../utils/resolve-value.mjs';\nimport { isMotionValue } from './is-motion-value.mjs';\n\n/**\n * If the provided value is a MotionValue, this returns the actual value, otherwise just the value itself\n *\n * TODO: Remove and move to library\n */\nfunction resolveMotionValue(value) {\n    const unwrappedValue = isMotionValue(value) ? value.get() : value;\n    return isCustomValue(unwrappedValue)\n        ? unwrappedValue.toValue()\n        : unwrappedValue;\n}\n\nexport { resolveMotionValue };\n","import { progress, noop } from 'motion-utils';\nimport { circOut } from '../../easing/circ.mjs';\nimport { mixNumber } from '../../utils/mix/number.mjs';\nimport { percent, px } from '../../value/types/numbers/units.mjs';\n\nconst borders = [\"TopLeft\", \"TopRight\", \"BottomLeft\", \"BottomRight\"];\nconst numBorders = borders.length;\nconst asNumber = (value) => typeof value === \"string\" ? parseFloat(value) : value;\nconst isPx = (value) => typeof value === \"number\" || px.test(value);\nfunction mixValues(target, follow, lead, progress, shouldCrossfadeOpacity, isOnlyMember) {\n    if (shouldCrossfadeOpacity) {\n        target.opacity = mixNumber(0, \n        // TODO Reinstate this if only child\n        lead.opacity !== undefined ? lead.opacity : 1, easeCrossfadeIn(progress));\n        target.opacityExit = mixNumber(follow.opacity !== undefined ? follow.opacity : 1, 0, easeCrossfadeOut(progress));\n    }\n    else if (isOnlyMember) {\n        target.opacity = mixNumber(follow.opacity !== undefined ? follow.opacity : 1, lead.opacity !== undefined ? lead.opacity : 1, progress);\n    }\n    /**\n     * Mix border radius\n     */\n    for (let i = 0; i < numBorders; i++) {\n        const borderLabel = `border${borders[i]}Radius`;\n        let followRadius = getRadius(follow, borderLabel);\n        let leadRadius = getRadius(lead, borderLabel);\n        if (followRadius === undefined && leadRadius === undefined)\n            continue;\n        followRadius || (followRadius = 0);\n        leadRadius || (leadRadius = 0);\n        const canMix = followRadius === 0 ||\n            leadRadius === 0 ||\n            isPx(followRadius) === isPx(leadRadius);\n        if (canMix) {\n            target[borderLabel] = Math.max(mixNumber(asNumber(followRadius), asNumber(leadRadius), progress), 0);\n            if (percent.test(leadRadius) || percent.test(followRadius)) {\n                target[borderLabel] += \"%\";\n            }\n        }\n        else {\n            target[borderLabel] = leadRadius;\n        }\n    }\n    /**\n     * Mix rotation\n     */\n    if (follow.rotate || lead.rotate) {\n        target.rotate = mixNumber(follow.rotate || 0, lead.rotate || 0, progress);\n    }\n}\nfunction getRadius(values, radiusName) {\n    return values[radiusName] !== undefined\n        ? values[radiusName]\n        : values.borderRadius;\n}\n// /**\n//  * We only want to mix the background color if there's a follow element\n//  * that we're not crossfading opacity between. For instance with switch\n//  * AnimateSharedLayout animations, this helps the illusion of a continuous\n//  * element being animated but also cuts down on the number of paints triggered\n//  * for elements where opacity is doing that work for us.\n//  */\n// if (\n//     !hasFollowElement &&\n//     latestLeadValues.backgroundColor &&\n//     latestFollowValues.backgroundColor\n// ) {\n//     /**\n//      * This isn't ideal performance-wise as mixColor is creating a new function every frame.\n//      * We could probably create a mixer that runs at the start of the animation but\n//      * the idea behind the crossfader is that it runs dynamically between two potentially\n//      * changing targets (ie opacity or borderRadius may be animating independently via variants)\n//      */\n//     leadState.backgroundColor = followState.backgroundColor = mixColor(\n//         latestFollowValues.backgroundColor as string,\n//         latestLeadValues.backgroundColor as string\n//     )(p)\n// }\nconst easeCrossfadeIn = /*@__PURE__*/ compress(0, 0.5, circOut);\nconst easeCrossfadeOut = /*@__PURE__*/ compress(0.5, 0.95, noop);\nfunction compress(min, max, easing) {\n    return (p) => {\n        // Could replace ifs with clamp\n        if (p < min)\n            return 0;\n        if (p > max)\n            return 1;\n        return easing(progress(min, max, p));\n    };\n}\n\nexport { mixValues };\n","/**\n * Reset an axis to the provided origin box.\n *\n * This is a mutative operation.\n */\nfunction copyAxisInto(axis, originAxis) {\n    axis.min = originAxis.min;\n    axis.max = originAxis.max;\n}\n/**\n * Reset a box to the provided origin box.\n *\n * This is a mutative operation.\n */\nfunction copyBoxInto(box, originBox) {\n    copyAxisInto(box.x, originBox.x);\n    copyAxisInto(box.y, originBox.y);\n}\n/**\n * Reset a delta to the provided origin box.\n *\n * This is a mutative operation.\n */\nfunction copyAxisDeltaInto(delta, originDelta) {\n    delta.translate = originDelta.translate;\n    delta.scale = originDelta.scale;\n    delta.originPoint = originDelta.originPoint;\n    delta.origin = originDelta.origin;\n}\n\nexport { copyAxisDeltaInto, copyAxisInto, copyBoxInto };\n","import { mixNumber } from '../../utils/mix/number.mjs';\nimport { percent } from '../../value/types/numbers/units.mjs';\nimport { scalePoint } from './delta-apply.mjs';\n\n/**\n * Remove a delta from a point. This is essentially the steps of applyPointDelta in reverse\n */\nfunction removePointDelta(point, translate, scale, originPoint, boxScale) {\n    point -= translate;\n    point = scalePoint(point, 1 / scale, originPoint);\n    if (boxScale !== undefined) {\n        point = scalePoint(point, 1 / boxScale, originPoint);\n    }\n    return point;\n}\n/**\n * Remove a delta from an axis. This is essentially the steps of applyAxisDelta in reverse\n */\nfunction removeAxisDelta(axis, translate = 0, scale = 1, origin = 0.5, boxScale, originAxis = axis, sourceAxis = axis) {\n    if (percent.test(translate)) {\n        translate = parseFloat(translate);\n        const relativeProgress = mixNumber(sourceAxis.min, sourceAxis.max, translate / 100);\n        translate = relativeProgress - sourceAxis.min;\n    }\n    if (typeof translate !== \"number\")\n        return;\n    let originPoint = mixNumber(originAxis.min, originAxis.max, origin);\n    if (axis === originAxis)\n        originPoint -= translate;\n    axis.min = removePointDelta(axis.min, translate, scale, originPoint, boxScale);\n    axis.max = removePointDelta(axis.max, translate, scale, originPoint, boxScale);\n}\n/**\n * Remove a transforms from an axis. This is essentially the steps of applyAxisTransforms in reverse\n * and acts as a bridge between motion values and removeAxisDelta\n */\nfunction removeAxisTransforms(axis, transforms, [key, scaleKey, originKey], origin, sourceAxis) {\n    removeAxisDelta(axis, transforms[key], transforms[scaleKey], transforms[originKey], transforms.scale, origin, sourceAxis);\n}\n/**\n * The names of the motion values we want to apply as translation, scale and origin.\n */\nconst xKeys = [\"x\", \"scaleX\", \"originX\"];\nconst yKeys = [\"y\", \"scaleY\", \"originY\"];\n/**\n * Remove a transforms from an box. This is essentially the steps of applyAxisBox in reverse\n * and acts as a bridge between motion values and removeAxisDelta\n */\nfunction removeBoxTransforms(box, transforms, originBox, sourceBox) {\n    removeAxisTransforms(box.x, transforms, xKeys, originBox ? originBox.x : undefined, sourceBox ? sourceBox.x : undefined);\n    removeAxisTransforms(box.y, transforms, yKeys, originBox ? originBox.y : undefined, sourceBox ? sourceBox.y : undefined);\n}\n\nexport { removeAxisDelta, removeAxisTransforms, removeBoxTransforms, removePointDelta };\n","import { calcLength } from './delta-calc.mjs';\n\nfunction isAxisDeltaZero(delta) {\n    return delta.translate === 0 && delta.scale === 1;\n}\nfunction isDeltaZero(delta) {\n    return isAxisDeltaZero(delta.x) && isAxisDeltaZero(delta.y);\n}\nfunction axisEquals(a, b) {\n    return a.min === b.min && a.max === b.max;\n}\nfunction boxEquals(a, b) {\n    return axisEquals(a.x, b.x) && axisEquals(a.y, b.y);\n}\nfunction axisEqualsRounded(a, b) {\n    return (Math.round(a.min) === Math.round(b.min) &&\n        Math.round(a.max) === Math.round(b.max));\n}\nfunction boxEqualsRounded(a, b) {\n    return axisEqualsRounded(a.x, b.x) && axisEqualsRounded(a.y, b.y);\n}\nfunction aspectRatio(box) {\n    return calcLength(box.x) / calcLength(box.y);\n}\nfunction axisDeltaEquals(a, b) {\n    return (a.translate === b.translate &&\n        a.scale === b.scale &&\n        a.originPoint === b.originPoint);\n}\n\nexport { aspectRatio, axisDeltaEquals, axisEquals, axisEqualsRounded, boxEquals, boxEqualsRounded, isDeltaZero };\n","import { addUniqueItem, removeItem } from '../../utils/array.mjs';\n\nclass NodeStack {\n    constructor() {\n        this.members = [];\n    }\n    add(node) {\n        addUniqueItem(this.members, node);\n        node.scheduleRender();\n    }\n    remove(node) {\n        removeItem(this.members, node);\n        if (node === this.prevLead) {\n            this.prevLead = undefined;\n        }\n        if (node === this.lead) {\n            const prevLead = this.members[this.members.length - 1];\n            if (prevLead) {\n                this.promote(prevLead);\n            }\n        }\n    }\n    relegate(node) {\n        const indexOfNode = this.members.findIndex((member) => node === member);\n        if (indexOfNode === 0)\n            return false;\n        /**\n         * Find the next projection node that is present\n         */\n        let prevLead;\n        for (let i = indexOfNode; i >= 0; i--) {\n            const member = this.members[i];\n            if (member.isPresent !== false) {\n                prevLead = member;\n                break;\n            }\n        }\n        if (prevLead) {\n            this.promote(prevLead);\n            return true;\n        }\n        else {\n            return false;\n        }\n    }\n    promote(node, preserveFollowOpacity) {\n        const prevLead = this.lead;\n        if (node === prevLead)\n            return;\n        this.prevLead = prevLead;\n        this.lead = node;\n        node.show();\n        if (prevLead) {\n            prevLead.instance && prevLead.scheduleRender();\n            node.scheduleRender();\n            node.resumeFrom = prevLead;\n            if (preserveFollowOpacity) {\n                node.resumeFrom.preserveOpacity = true;\n            }\n            if (prevLead.snapshot) {\n                node.snapshot = prevLead.snapshot;\n                node.snapshot.latestValues =\n                    prevLead.animationValues || prevLead.latestValues;\n            }\n            if (node.root && node.root.isUpdating) {\n                node.isLayoutDirty = true;\n            }\n            const { crossfade } = node.options;\n            if (crossfade === false) {\n                prevLead.hide();\n            }\n            /**\n             * TODO:\n             *   - Test border radius when previous node was deleted\n             *   - boxShadow mixing\n             *   - Shared between element A in scrolled container and element B (scroll stays the same or changes)\n             *   - Shared between element A in transformed container and element B (transform stays the same or changes)\n             *   - Shared between element A in scrolled page and element B (scroll stays the same or changes)\n             * ---\n             *   - Crossfade opacity of root nodes\n             *   - layoutId changes after animation\n             *   - layoutId changes mid animation\n             */\n        }\n    }\n    exitAnimationComplete() {\n        this.members.forEach((node) => {\n            const { options, resumingFrom } = node;\n            options.onExitComplete && options.onExitComplete();\n            if (resumingFrom) {\n                resumingFrom.options.onExitComplete &&\n                    resumingFrom.options.onExitComplete();\n            }\n        });\n    }\n    scheduleRender() {\n        this.members.forEach((node) => {\n            node.instance && node.scheduleRender(false);\n        });\n    }\n    /**\n     * Clear any leads that have been removed this render to prevent them from being\n     * used in future animations and to prevent memory leaks\n     */\n    removeLeadSnapshot() {\n        if (this.lead && this.lead.snapshot) {\n            this.lead.snapshot = undefined;\n        }\n    }\n}\n\nexport { NodeStack };\n","import { getValueTransition } from 'motion-dom';\nimport { noop } from 'motion-utils';\nimport { animateSingleValue } from '../../animation/animate/single-value.mjs';\nimport { getOptimisedAppearId } from '../../animation/optimized-appear/get-appear-id.mjs';\nimport { cancelFrame, frameData, frameSteps, frame } from '../../frameloop/frame.mjs';\nimport { microtask } from '../../frameloop/microtask.mjs';\nimport { time } from '../../frameloop/sync-time.mjs';\nimport { isSVGElement } from '../../render/dom/utils/is-svg-element.mjs';\nimport { FlatTree } from '../../render/utils/flat-tree.mjs';\nimport { clamp } from '../../utils/clamp.mjs';\nimport { delay } from '../../utils/delay.mjs';\nimport { mixNumber } from '../../utils/mix/number.mjs';\nimport { SubscriptionManager } from '../../utils/subscription-manager.mjs';\nimport { resolveMotionValue } from '../../value/utils/resolve-motion-value.mjs';\nimport { mixValues } from '../animation/mix-values.mjs';\nimport { copyBoxInto, copyAxisDeltaInto } from '../geometry/copy.mjs';\nimport { translateAxis, transformBox, applyBoxDelta, applyTreeDeltas } from '../geometry/delta-apply.mjs';\nimport { calcRelativePosition, calcRelativeBox, calcBoxDelta, calcLength, isNear } from '../geometry/delta-calc.mjs';\nimport { removeBoxTransforms } from '../geometry/delta-remove.mjs';\nimport { createBox, createDelta } from '../geometry/models.mjs';\nimport { boxEqualsRounded, isDeltaZero, axisDeltaEquals, aspectRatio, boxEquals } from '../geometry/utils.mjs';\nimport { NodeStack } from '../shared/stack.mjs';\nimport { scaleCorrectors } from '../styles/scale-correction.mjs';\nimport { buildProjectionTransform } from '../styles/transform.mjs';\nimport { eachAxis } from '../utils/each-axis.mjs';\nimport { hasTransform, hasScale, has2DTranslate } from '../utils/has-transform.mjs';\nimport { globalProjectionState } from './state.mjs';\n\nconst metrics = {\n    type: \"projectionFrame\",\n    totalNodes: 0,\n    resolvedTargetDeltas: 0,\n    recalculatedProjection: 0,\n};\nconst isDebug = typeof window !== \"undefined\" && window.MotionDebug !== undefined;\nconst transformAxes = [\"\", \"X\", \"Y\", \"Z\"];\nconst hiddenVisibility = { visibility: \"hidden\" };\n/**\n * We use 1000 as the animation target as 0-1000 maps better to pixels than 0-1\n * which has a noticeable difference in spring animations\n */\nconst animationTarget = 1000;\nlet id = 0;\nfunction resetDistortingTransform(key, visualElement, values, sharedAnimationValues) {\n    const { latestValues } = visualElement;\n    // Record the distorting transform and then temporarily set it to 0\n    if (latestValues[key]) {\n        values[key] = latestValues[key];\n        visualElement.setStaticValue(key, 0);\n        if (sharedAnimationValues) {\n            sharedAnimationValues[key] = 0;\n        }\n    }\n}\nfunction cancelTreeOptimisedTransformAnimations(projectionNode) {\n    projectionNode.hasCheckedOptimisedAppear = true;\n    if (projectionNode.root === projectionNode)\n        return;\n    const { visualElement } = projectionNode.options;\n    if (!visualElement)\n        return;\n    const appearId = getOptimisedAppearId(visualElement);\n    if (window.MotionHasOptimisedAnimation(appearId, \"transform\")) {\n        const { layout, layoutId } = projectionNode.options;\n        window.MotionCancelOptimisedAnimation(appearId, \"transform\", frame, !(layout || layoutId));\n    }\n    const { parent } = projectionNode;\n    if (parent && !parent.hasCheckedOptimisedAppear) {\n        cancelTreeOptimisedTransformAnimations(parent);\n    }\n}\nfunction createProjectionNode({ attachResizeListener, defaultParent, measureScroll, checkIsScrollRoot, resetTransform, }) {\n    return class ProjectionNode {\n        constructor(latestValues = {}, parent = defaultParent === null || defaultParent === void 0 ? void 0 : defaultParent()) {\n            /**\n             * A unique ID generated for every projection node.\n             */\n            this.id = id++;\n            /**\n             * An id that represents a unique session instigated by startUpdate.\n             */\n            this.animationId = 0;\n            /**\n             * A Set containing all this component's children. This is used to iterate\n             * through the children.\n             *\n             * TODO: This could be faster to iterate as a flat array stored on the root node.\n             */\n            this.children = new Set();\n            /**\n             * Options for the node. We use this to configure what kind of layout animations\n             * we should perform (if any).\n             */\n            this.options = {};\n            /**\n             * We use this to detect when its safe to shut down part of a projection tree.\n             * We have to keep projecting children for scale correction and relative projection\n             * until all their parents stop performing layout animations.\n             */\n            this.isTreeAnimating = false;\n            this.isAnimationBlocked = false;\n            /**\n             * Flag to true if we think this layout has been changed. We can't always know this,\n             * currently we set it to true every time a component renders, or if it has a layoutDependency\n             * if that has changed between renders. Additionally, components can be grouped by LayoutGroup\n             * and if one node is dirtied, they all are.\n             */\n            this.isLayoutDirty = false;\n            /**\n             * Flag to true if we think the projection calculations for this node needs\n             * recalculating as a result of an updated transform or layout animation.\n             */\n            this.isProjectionDirty = false;\n            /**\n             * Flag to true if the layout *or* transform has changed. This then gets propagated\n             * throughout the projection tree, forcing any element below to recalculate on the next frame.\n             */\n            this.isSharedProjectionDirty = false;\n            /**\n             * Flag transform dirty. This gets propagated throughout the whole tree but is only\n             * respected by shared nodes.\n             */\n            this.isTransformDirty = false;\n            /**\n             * Block layout updates for instant layout transitions throughout the tree.\n             */\n            this.updateManuallyBlocked = false;\n            this.updateBlockedByResize = false;\n            /**\n             * Set to true between the start of the first `willUpdate` call and the end of the `didUpdate`\n             * call.\n             */\n            this.isUpdating = false;\n            /**\n             * If this is an SVG element we currently disable projection transforms\n             */\n            this.isSVG = false;\n            /**\n             * Flag to true (during promotion) if a node doing an instant layout transition needs to reset\n             * its projection styles.\n             */\n            this.needsReset = false;\n            /**\n             * Flags whether this node should have its transform reset prior to measuring.\n             */\n            this.shouldResetTransform = false;\n            /**\n             * Store whether this node has been checked for optimised appear animations. As\n             * effects fire bottom-up, and we want to look up the tree for appear animations,\n             * this makes sure we only check each path once, stopping at nodes that\n             * have already been checked.\n             */\n            this.hasCheckedOptimisedAppear = false;\n            /**\n             * An object representing the calculated contextual/accumulated/tree scale.\n             * This will be used to scale calculcated projection transforms, as these are\n             * calculated in screen-space but need to be scaled for elements to layoutly\n             * make it to their calculated destinations.\n             *\n             * TODO: Lazy-init\n             */\n            this.treeScale = { x: 1, y: 1 };\n            /**\n             *\n             */\n            this.eventHandlers = new Map();\n            this.hasTreeAnimated = false;\n            // Note: Currently only running on root node\n            this.updateScheduled = false;\n            this.scheduleUpdate = () => this.update();\n            this.projectionUpdateScheduled = false;\n            this.checkUpdateFailed = () => {\n                if (this.isUpdating) {\n                    this.isUpdating = false;\n                    this.clearAllSnapshots();\n                }\n            };\n            /**\n             * This is a multi-step process as shared nodes might be of different depths. Nodes\n             * are sorted by depth order, so we need to resolve the entire tree before moving to\n             * the next step.\n             */\n            this.updateProjection = () => {\n                this.projectionUpdateScheduled = false;\n                /**\n                 * Reset debug counts. Manually resetting rather than creating a new\n                 * object each frame.\n                 */\n                if (isDebug) {\n                    metrics.totalNodes =\n                        metrics.resolvedTargetDeltas =\n                            metrics.recalculatedProjection =\n                                0;\n                }\n                this.nodes.forEach(propagateDirtyNodes);\n                this.nodes.forEach(resolveTargetDelta);\n                this.nodes.forEach(calcProjection);\n                this.nodes.forEach(cleanDirtyNodes);\n                if (isDebug) {\n                    window.MotionDebug.record(metrics);\n                }\n            };\n            /**\n             * Frame calculations\n             */\n            this.resolvedRelativeTargetAt = 0.0;\n            this.hasProjected = false;\n            this.isVisible = true;\n            this.animationProgress = 0;\n            /**\n             * Shared layout\n             */\n            // TODO Only running on root node\n            this.sharedNodes = new Map();\n            this.latestValues = latestValues;\n            this.root = parent ? parent.root || parent : this;\n            this.path = parent ? [...parent.path, parent] : [];\n            this.parent = parent;\n            this.depth = parent ? parent.depth + 1 : 0;\n            for (let i = 0; i < this.path.length; i++) {\n                this.path[i].shouldResetTransform = true;\n            }\n            if (this.root === this)\n                this.nodes = new FlatTree();\n        }\n        addEventListener(name, handler) {\n            if (!this.eventHandlers.has(name)) {\n                this.eventHandlers.set(name, new SubscriptionManager());\n            }\n            return this.eventHandlers.get(name).add(handler);\n        }\n        notifyListeners(name, ...args) {\n            const subscriptionManager = this.eventHandlers.get(name);\n            subscriptionManager && subscriptionManager.notify(...args);\n        }\n        hasListeners(name) {\n            return this.eventHandlers.has(name);\n        }\n        /**\n         * Lifecycles\n         */\n        mount(instance, isLayoutDirty = this.root.hasTreeAnimated) {\n            if (this.instance)\n                return;\n            this.isSVG = isSVGElement(instance);\n            this.instance = instance;\n            const { layoutId, layout, visualElement } = this.options;\n            if (visualElement && !visualElement.current) {\n                visualElement.mount(instance);\n            }\n            this.root.nodes.add(this);\n            this.parent && this.parent.children.add(this);\n            if (isLayoutDirty && (layout || layoutId)) {\n                this.isLayoutDirty = true;\n            }\n            if (attachResizeListener) {\n                let cancelDelay;\n                const resizeUnblockUpdate = () => (this.root.updateBlockedByResize = false);\n                attachResizeListener(instance, () => {\n                    this.root.updateBlockedByResize = true;\n                    cancelDelay && cancelDelay();\n                    cancelDelay = delay(resizeUnblockUpdate, 250);\n                    if (globalProjectionState.hasAnimatedSinceResize) {\n                        globalProjectionState.hasAnimatedSinceResize = false;\n                        this.nodes.forEach(finishAnimation);\n                    }\n                });\n            }\n            if (layoutId) {\n                this.root.registerSharedNode(layoutId, this);\n            }\n            // Only register the handler if it requires layout animation\n            if (this.options.animate !== false &&\n                visualElement &&\n                (layoutId || layout)) {\n                this.addEventListener(\"didUpdate\", ({ delta, hasLayoutChanged, hasRelativeTargetChanged, layout: newLayout, }) => {\n                    if (this.isTreeAnimationBlocked()) {\n                        this.target = undefined;\n                        this.relativeTarget = undefined;\n                        return;\n                    }\n                    // TODO: Check here if an animation exists\n                    const layoutTransition = this.options.transition ||\n                        visualElement.getDefaultTransition() ||\n                        defaultLayoutTransition;\n                    const { onLayoutAnimationStart, onLayoutAnimationComplete, } = visualElement.getProps();\n                    /**\n                     * The target layout of the element might stay the same,\n                     * but its position relative to its parent has changed.\n                     */\n                    const targetChanged = !this.targetLayout ||\n                        !boxEqualsRounded(this.targetLayout, newLayout) ||\n                        hasRelativeTargetChanged;\n                    /**\n                     * If the layout hasn't seemed to have changed, it might be that the\n                     * element is visually in the same place in the document but its position\n                     * relative to its parent has indeed changed. So here we check for that.\n                     */\n                    const hasOnlyRelativeTargetChanged = !hasLayoutChanged && hasRelativeTargetChanged;\n                    if (this.options.layoutRoot ||\n                        (this.resumeFrom && this.resumeFrom.instance) ||\n                        hasOnlyRelativeTargetChanged ||\n                        (hasLayoutChanged &&\n                            (targetChanged || !this.currentAnimation))) {\n                        if (this.resumeFrom) {\n                            this.resumingFrom = this.resumeFrom;\n                            this.resumingFrom.resumingFrom = undefined;\n                        }\n                        this.setAnimationOrigin(delta, hasOnlyRelativeTargetChanged);\n                        const animationOptions = {\n                            ...getValueTransition(layoutTransition, \"layout\"),\n                            onPlay: onLayoutAnimationStart,\n                            onComplete: onLayoutAnimationComplete,\n                        };\n                        if (visualElement.shouldReduceMotion ||\n                            this.options.layoutRoot) {\n                            animationOptions.delay = 0;\n                            animationOptions.type = false;\n                        }\n                        this.startAnimation(animationOptions);\n                    }\n                    else {\n                        /**\n                         * If the layout hasn't changed and we have an animation that hasn't started yet,\n                         * finish it immediately. Otherwise it will be animating from a location\n                         * that was probably never commited to screen and look like a jumpy box.\n                         */\n                        if (!hasLayoutChanged) {\n                            finishAnimation(this);\n                        }\n                        if (this.isLead() && this.options.onExitComplete) {\n                            this.options.onExitComplete();\n                        }\n                    }\n                    this.targetLayout = newLayout;\n                });\n            }\n        }\n        unmount() {\n            this.options.layoutId && this.willUpdate();\n            this.root.nodes.remove(this);\n            const stack = this.getStack();\n            stack && stack.remove(this);\n            this.parent && this.parent.children.delete(this);\n            this.instance = undefined;\n            cancelFrame(this.updateProjection);\n        }\n        // only on the root\n        blockUpdate() {\n            this.updateManuallyBlocked = true;\n        }\n        unblockUpdate() {\n            this.updateManuallyBlocked = false;\n        }\n        isUpdateBlocked() {\n            return this.updateManuallyBlocked || this.updateBlockedByResize;\n        }\n        isTreeAnimationBlocked() {\n            return (this.isAnimationBlocked ||\n                (this.parent && this.parent.isTreeAnimationBlocked()) ||\n                false);\n        }\n        // Note: currently only running on root node\n        startUpdate() {\n            if (this.isUpdateBlocked())\n                return;\n            this.isUpdating = true;\n            this.nodes && this.nodes.forEach(resetSkewAndRotation);\n            this.animationId++;\n        }\n        getTransformTemplate() {\n            const { visualElement } = this.options;\n            return visualElement && visualElement.getProps().transformTemplate;\n        }\n        willUpdate(shouldNotifyListeners = true) {\n            this.root.hasTreeAnimated = true;\n            if (this.root.isUpdateBlocked()) {\n                this.options.onExitComplete && this.options.onExitComplete();\n                return;\n            }\n            /**\n             * If we're running optimised appear animations then these must be\n             * cancelled before measuring the DOM. This is so we can measure\n             * the true layout of the element rather than the WAAPI animation\n             * which will be unaffected by the resetSkewAndRotate step.\n             *\n             * Note: This is a DOM write. Worst case scenario is this is sandwiched\n             * between other snapshot reads which will cause unnecessary style recalculations.\n             * This has to happen here though, as we don't yet know which nodes will need\n             * snapshots in startUpdate(), but we only want to cancel optimised animations\n             * if a layout animation measurement is actually going to be affected by them.\n             */\n            if (window.MotionCancelOptimisedAnimation &&\n                !this.hasCheckedOptimisedAppear) {\n                cancelTreeOptimisedTransformAnimations(this);\n            }\n            !this.root.isUpdating && this.root.startUpdate();\n            if (this.isLayoutDirty)\n                return;\n            this.isLayoutDirty = true;\n            for (let i = 0; i < this.path.length; i++) {\n                const node = this.path[i];\n                node.shouldResetTransform = true;\n                node.updateScroll(\"snapshot\");\n                if (node.options.layoutRoot) {\n                    node.willUpdate(false);\n                }\n            }\n            const { layoutId, layout } = this.options;\n            if (layoutId === undefined && !layout)\n                return;\n            const transformTemplate = this.getTransformTemplate();\n            this.prevTransformTemplateValue = transformTemplate\n                ? transformTemplate(this.latestValues, \"\")\n                : undefined;\n            this.updateSnapshot();\n            shouldNotifyListeners && this.notifyListeners(\"willUpdate\");\n        }\n        update() {\n            this.updateScheduled = false;\n            const updateWasBlocked = this.isUpdateBlocked();\n            // When doing an instant transition, we skip the layout update,\n            // but should still clean up the measurements so that the next\n            // snapshot could be taken correctly.\n            if (updateWasBlocked) {\n                this.unblockUpdate();\n                this.clearAllSnapshots();\n                this.nodes.forEach(clearMeasurements);\n                return;\n            }\n            if (!this.isUpdating) {\n                this.nodes.forEach(clearIsLayoutDirty);\n            }\n            this.isUpdating = false;\n            /**\n             * Write\n             */\n            this.nodes.forEach(resetTransformStyle);\n            /**\n             * Read ==================\n             */\n            // Update layout measurements of updated children\n            this.nodes.forEach(updateLayout);\n            /**\n             * Write\n             */\n            // Notify listeners that the layout is updated\n            this.nodes.forEach(notifyLayoutUpdate);\n            this.clearAllSnapshots();\n            /**\n             * Manually flush any pending updates. Ideally\n             * we could leave this to the following requestAnimationFrame but this seems\n             * to leave a flash of incorrectly styled content.\n             */\n            const now = time.now();\n            frameData.delta = clamp(0, 1000 / 60, now - frameData.timestamp);\n            frameData.timestamp = now;\n            frameData.isProcessing = true;\n            frameSteps.update.process(frameData);\n            frameSteps.preRender.process(frameData);\n            frameSteps.render.process(frameData);\n            frameData.isProcessing = false;\n        }\n        didUpdate() {\n            if (!this.updateScheduled) {\n                this.updateScheduled = true;\n                microtask.read(this.scheduleUpdate);\n            }\n        }\n        clearAllSnapshots() {\n            this.nodes.forEach(clearSnapshot);\n            this.sharedNodes.forEach(removeLeadSnapshots);\n        }\n        scheduleUpdateProjection() {\n            if (!this.projectionUpdateScheduled) {\n                this.projectionUpdateScheduled = true;\n                frame.preRender(this.updateProjection, false, true);\n            }\n        }\n        scheduleCheckAfterUnmount() {\n            /**\n             * If the unmounting node is in a layoutGroup and did trigger a willUpdate,\n             * we manually call didUpdate to give a chance to the siblings to animate.\n             * Otherwise, cleanup all snapshots to prevents future nodes from reusing them.\n             */\n            frame.postRender(() => {\n                if (this.isLayoutDirty) {\n                    this.root.didUpdate();\n                }\n                else {\n                    this.root.checkUpdateFailed();\n                }\n            });\n        }\n        /**\n         * Update measurements\n         */\n        updateSnapshot() {\n            if (this.snapshot || !this.instance)\n                return;\n            this.snapshot = this.measure();\n        }\n        updateLayout() {\n            if (!this.instance)\n                return;\n            // TODO: Incorporate into a forwarded scroll offset\n            this.updateScroll();\n            if (!(this.options.alwaysMeasureLayout && this.isLead()) &&\n                !this.isLayoutDirty) {\n                return;\n            }\n            /**\n             * When a node is mounted, it simply resumes from the prevLead's\n             * snapshot instead of taking a new one, but the ancestors scroll\n             * might have updated while the prevLead is unmounted. We need to\n             * update the scroll again to make sure the layout we measure is\n             * up to date.\n             */\n            if (this.resumeFrom && !this.resumeFrom.instance) {\n                for (let i = 0; i < this.path.length; i++) {\n                    const node = this.path[i];\n                    node.updateScroll();\n                }\n            }\n            const prevLayout = this.layout;\n            this.layout = this.measure(false);\n            this.layoutCorrected = createBox();\n            this.isLayoutDirty = false;\n            this.projectionDelta = undefined;\n            this.notifyListeners(\"measure\", this.layout.layoutBox);\n            const { visualElement } = this.options;\n            visualElement &&\n                visualElement.notify(\"LayoutMeasure\", this.layout.layoutBox, prevLayout ? prevLayout.layoutBox : undefined);\n        }\n        updateScroll(phase = \"measure\") {\n            let needsMeasurement = Boolean(this.options.layoutScroll && this.instance);\n            if (this.scroll &&\n                this.scroll.animationId === this.root.animationId &&\n                this.scroll.phase === phase) {\n                needsMeasurement = false;\n            }\n            if (needsMeasurement) {\n                const isRoot = checkIsScrollRoot(this.instance);\n                this.scroll = {\n                    animationId: this.root.animationId,\n                    phase,\n                    isRoot,\n                    offset: measureScroll(this.instance),\n                    wasRoot: this.scroll ? this.scroll.isRoot : isRoot,\n                };\n            }\n        }\n        resetTransform() {\n            if (!resetTransform)\n                return;\n            const isResetRequested = this.isLayoutDirty ||\n                this.shouldResetTransform ||\n                this.options.alwaysMeasureLayout;\n            const hasProjection = this.projectionDelta && !isDeltaZero(this.projectionDelta);\n            const transformTemplate = this.getTransformTemplate();\n            const transformTemplateValue = transformTemplate\n                ? transformTemplate(this.latestValues, \"\")\n                : undefined;\n            const transformTemplateHasChanged = transformTemplateValue !== this.prevTransformTemplateValue;\n            if (isResetRequested &&\n                (hasProjection ||\n                    hasTransform(this.latestValues) ||\n                    transformTemplateHasChanged)) {\n                resetTransform(this.instance, transformTemplateValue);\n                this.shouldResetTransform = false;\n                this.scheduleRender();\n            }\n        }\n        measure(removeTransform = true) {\n            const pageBox = this.measurePageBox();\n            let layoutBox = this.removeElementScroll(pageBox);\n            /**\n             * Measurements taken during the pre-render stage\n             * still have transforms applied so we remove them\n             * via calculation.\n             */\n            if (removeTransform) {\n                layoutBox = this.removeTransform(layoutBox);\n            }\n            roundBox(layoutBox);\n            return {\n                animationId: this.root.animationId,\n                measuredBox: pageBox,\n                layoutBox,\n                latestValues: {},\n                source: this.id,\n            };\n        }\n        measurePageBox() {\n            var _a;\n            const { visualElement } = this.options;\n            if (!visualElement)\n                return createBox();\n            const box = visualElement.measureViewportBox();\n            const wasInScrollRoot = ((_a = this.scroll) === null || _a === void 0 ? void 0 : _a.wasRoot) || this.path.some(checkNodeWasScrollRoot);\n            if (!wasInScrollRoot) {\n                // Remove viewport scroll to give page-relative coordinates\n                const { scroll } = this.root;\n                if (scroll) {\n                    translateAxis(box.x, scroll.offset.x);\n                    translateAxis(box.y, scroll.offset.y);\n                }\n            }\n            return box;\n        }\n        removeElementScroll(box) {\n            var _a;\n            const boxWithoutScroll = createBox();\n            copyBoxInto(boxWithoutScroll, box);\n            if ((_a = this.scroll) === null || _a === void 0 ? void 0 : _a.wasRoot) {\n                return boxWithoutScroll;\n            }\n            /**\n             * Performance TODO: Keep a cumulative scroll offset down the tree\n             * rather than loop back up the path.\n             */\n            for (let i = 0; i < this.path.length; i++) {\n                const node = this.path[i];\n                const { scroll, options } = node;\n                if (node !== this.root && scroll && options.layoutScroll) {\n                    /**\n                     * If this is a new scroll root, we want to remove all previous scrolls\n                     * from the viewport box.\n                     */\n                    if (scroll.wasRoot) {\n                        copyBoxInto(boxWithoutScroll, box);\n                    }\n                    translateAxis(boxWithoutScroll.x, scroll.offset.x);\n                    translateAxis(boxWithoutScroll.y, scroll.offset.y);\n                }\n            }\n            return boxWithoutScroll;\n        }\n        applyTransform(box, transformOnly = false) {\n            const withTransforms = createBox();\n            copyBoxInto(withTransforms, box);\n            for (let i = 0; i < this.path.length; i++) {\n                const node = this.path[i];\n                if (!transformOnly &&\n                    node.options.layoutScroll &&\n                    node.scroll &&\n                    node !== node.root) {\n                    transformBox(withTransforms, {\n                        x: -node.scroll.offset.x,\n                        y: -node.scroll.offset.y,\n                    });\n                }\n                if (!hasTransform(node.latestValues))\n                    continue;\n                transformBox(withTransforms, node.latestValues);\n            }\n            if (hasTransform(this.latestValues)) {\n                transformBox(withTransforms, this.latestValues);\n            }\n            return withTransforms;\n        }\n        removeTransform(box) {\n            const boxWithoutTransform = createBox();\n            copyBoxInto(boxWithoutTransform, box);\n            for (let i = 0; i < this.path.length; i++) {\n                const node = this.path[i];\n                if (!node.instance)\n                    continue;\n                if (!hasTransform(node.latestValues))\n                    continue;\n                hasScale(node.latestValues) && node.updateSnapshot();\n                const sourceBox = createBox();\n                const nodeBox = node.measurePageBox();\n                copyBoxInto(sourceBox, nodeBox);\n                removeBoxTransforms(boxWithoutTransform, node.latestValues, node.snapshot ? node.snapshot.layoutBox : undefined, sourceBox);\n            }\n            if (hasTransform(this.latestValues)) {\n                removeBoxTransforms(boxWithoutTransform, this.latestValues);\n            }\n            return boxWithoutTransform;\n        }\n        setTargetDelta(delta) {\n            this.targetDelta = delta;\n            this.root.scheduleUpdateProjection();\n            this.isProjectionDirty = true;\n        }\n        setOptions(options) {\n            this.options = {\n                ...this.options,\n                ...options,\n                crossfade: options.crossfade !== undefined ? options.crossfade : true,\n            };\n        }\n        clearMeasurements() {\n            this.scroll = undefined;\n            this.layout = undefined;\n            this.snapshot = undefined;\n            this.prevTransformTemplateValue = undefined;\n            this.targetDelta = undefined;\n            this.target = undefined;\n            this.isLayoutDirty = false;\n        }\n        forceRelativeParentToResolveTarget() {\n            if (!this.relativeParent)\n                return;\n            /**\n             * If the parent target isn't up-to-date, force it to update.\n             * This is an unfortunate de-optimisation as it means any updating relative\n             * projection will cause all the relative parents to recalculate back\n             * up the tree.\n             */\n            if (this.relativeParent.resolvedRelativeTargetAt !==\n                frameData.timestamp) {\n                this.relativeParent.resolveTargetDelta(true);\n            }\n        }\n        resolveTargetDelta(forceRecalculation = false) {\n            var _a;\n            /**\n             * Once the dirty status of nodes has been spread through the tree, we also\n             * need to check if we have a shared node of a different depth that has itself\n             * been dirtied.\n             */\n            const lead = this.getLead();\n            this.isProjectionDirty || (this.isProjectionDirty = lead.isProjectionDirty);\n            this.isTransformDirty || (this.isTransformDirty = lead.isTransformDirty);\n            this.isSharedProjectionDirty || (this.isSharedProjectionDirty = lead.isSharedProjectionDirty);\n            const isShared = Boolean(this.resumingFrom) || this !== lead;\n            /**\n             * We don't use transform for this step of processing so we don't\n             * need to check whether any nodes have changed transform.\n             */\n            const canSkip = !(forceRecalculation ||\n                (isShared && this.isSharedProjectionDirty) ||\n                this.isProjectionDirty ||\n                ((_a = this.parent) === null || _a === void 0 ? void 0 : _a.isProjectionDirty) ||\n                this.attemptToResolveRelativeTarget ||\n                this.root.updateBlockedByResize);\n            if (canSkip)\n                return;\n            const { layout, layoutId } = this.options;\n            /**\n             * If we have no layout, we can't perform projection, so early return\n             */\n            if (!this.layout || !(layout || layoutId))\n                return;\n            this.resolvedRelativeTargetAt = frameData.timestamp;\n            /**\n             * If we don't have a targetDelta but do have a layout, we can attempt to resolve\n             * a relativeParent. This will allow a component to perform scale correction\n             * even if no animation has started.\n             */\n            if (!this.targetDelta && !this.relativeTarget) {\n                const relativeParent = this.getClosestProjectingParent();\n                if (relativeParent &&\n                    relativeParent.layout &&\n                    this.animationProgress !== 1) {\n                    this.relativeParent = relativeParent;\n                    this.forceRelativeParentToResolveTarget();\n                    this.relativeTarget = createBox();\n                    this.relativeTargetOrigin = createBox();\n                    calcRelativePosition(this.relativeTargetOrigin, this.layout.layoutBox, relativeParent.layout.layoutBox);\n                    copyBoxInto(this.relativeTarget, this.relativeTargetOrigin);\n                }\n                else {\n                    this.relativeParent = this.relativeTarget = undefined;\n                }\n            }\n            /**\n             * If we have no relative target or no target delta our target isn't valid\n             * for this frame.\n             */\n            if (!this.relativeTarget && !this.targetDelta)\n                return;\n            /**\n             * Lazy-init target data structure\n             */\n            if (!this.target) {\n                this.target = createBox();\n                this.targetWithTransforms = createBox();\n            }\n            /**\n             * If we've got a relative box for this component, resolve it into a target relative to the parent.\n             */\n            if (this.relativeTarget &&\n                this.relativeTargetOrigin &&\n                this.relativeParent &&\n                this.relativeParent.target) {\n                this.forceRelativeParentToResolveTarget();\n                calcRelativeBox(this.target, this.relativeTarget, this.relativeParent.target);\n                /**\n                 * If we've only got a targetDelta, resolve it into a target\n                 */\n            }\n            else if (this.targetDelta) {\n                if (Boolean(this.resumingFrom)) {\n                    // TODO: This is creating a new object every frame\n                    this.target = this.applyTransform(this.layout.layoutBox);\n                }\n                else {\n                    copyBoxInto(this.target, this.layout.layoutBox);\n                }\n                applyBoxDelta(this.target, this.targetDelta);\n            }\n            else {\n                /**\n                 * If no target, use own layout as target\n                 */\n                copyBoxInto(this.target, this.layout.layoutBox);\n            }\n            /**\n             * If we've been told to attempt to resolve a relative target, do so.\n             */\n            if (this.attemptToResolveRelativeTarget) {\n                this.attemptToResolveRelativeTarget = false;\n                const relativeParent = this.getClosestProjectingParent();\n                if (relativeParent &&\n                    Boolean(relativeParent.resumingFrom) ===\n                        Boolean(this.resumingFrom) &&\n                    !relativeParent.options.layoutScroll &&\n                    relativeParent.target &&\n                    this.animationProgress !== 1) {\n                    this.relativeParent = relativeParent;\n                    this.forceRelativeParentToResolveTarget();\n                    this.relativeTarget = createBox();\n                    this.relativeTargetOrigin = createBox();\n                    calcRelativePosition(this.relativeTargetOrigin, this.target, relativeParent.target);\n                    copyBoxInto(this.relativeTarget, this.relativeTargetOrigin);\n                }\n                else {\n                    this.relativeParent = this.relativeTarget = undefined;\n                }\n            }\n            /**\n             * Increase debug counter for resolved target deltas\n             */\n            if (isDebug) {\n                metrics.resolvedTargetDeltas++;\n            }\n        }\n        getClosestProjectingParent() {\n            if (!this.parent ||\n                hasScale(this.parent.latestValues) ||\n                has2DTranslate(this.parent.latestValues)) {\n                return undefined;\n            }\n            if (this.parent.isProjecting()) {\n                return this.parent;\n            }\n            else {\n                return this.parent.getClosestProjectingParent();\n            }\n        }\n        isProjecting() {\n            return Boolean((this.relativeTarget ||\n                this.targetDelta ||\n                this.options.layoutRoot) &&\n                this.layout);\n        }\n        calcProjection() {\n            var _a;\n            const lead = this.getLead();\n            const isShared = Boolean(this.resumingFrom) || this !== lead;\n            let canSkip = true;\n            /**\n             * If this is a normal layout animation and neither this node nor its nearest projecting\n             * is dirty then we can't skip.\n             */\n            if (this.isProjectionDirty || ((_a = this.parent) === null || _a === void 0 ? void 0 : _a.isProjectionDirty)) {\n                canSkip = false;\n            }\n            /**\n             * If this is a shared layout animation and this node's shared projection is dirty then\n             * we can't skip.\n             */\n            if (isShared &&\n                (this.isSharedProjectionDirty || this.isTransformDirty)) {\n                canSkip = false;\n            }\n            /**\n             * If we have resolved the target this frame we must recalculate the\n             * projection to ensure it visually represents the internal calculations.\n             */\n            if (this.resolvedRelativeTargetAt === frameData.timestamp) {\n                canSkip = false;\n            }\n            if (canSkip)\n                return;\n            const { layout, layoutId } = this.options;\n            /**\n             * If this section of the tree isn't animating we can\n             * delete our target sources for the following frame.\n             */\n            this.isTreeAnimating = Boolean((this.parent && this.parent.isTreeAnimating) ||\n                this.currentAnimation ||\n                this.pendingAnimation);\n            if (!this.isTreeAnimating) {\n                this.targetDelta = this.relativeTarget = undefined;\n            }\n            if (!this.layout || !(layout || layoutId))\n                return;\n            /**\n             * Reset the corrected box with the latest values from box, as we're then going\n             * to perform mutative operations on it.\n             */\n            copyBoxInto(this.layoutCorrected, this.layout.layoutBox);\n            /**\n             * Record previous tree scales before updating.\n             */\n            const prevTreeScaleX = this.treeScale.x;\n            const prevTreeScaleY = this.treeScale.y;\n            /**\n             * Apply all the parent deltas to this box to produce the corrected box. This\n             * is the layout box, as it will appear on screen as a result of the transforms of its parents.\n             */\n            applyTreeDeltas(this.layoutCorrected, this.treeScale, this.path, isShared);\n            /**\n             * If this layer needs to perform scale correction but doesn't have a target,\n             * use the layout as the target.\n             */\n            if (lead.layout &&\n                !lead.target &&\n                (this.treeScale.x !== 1 || this.treeScale.y !== 1)) {\n                lead.target = lead.layout.layoutBox;\n                lead.targetWithTransforms = createBox();\n            }\n            const { target } = lead;\n            if (!target) {\n                /**\n                 * If we don't have a target to project into, but we were previously\n                 * projecting, we want to remove the stored transform and schedule\n                 * a render to ensure the elements reflect the removed transform.\n                 */\n                if (this.prevProjectionDelta) {\n                    this.createProjectionDeltas();\n                    this.scheduleRender();\n                }\n                return;\n            }\n            if (!this.projectionDelta || !this.prevProjectionDelta) {\n                this.createProjectionDeltas();\n            }\n            else {\n                copyAxisDeltaInto(this.prevProjectionDelta.x, this.projectionDelta.x);\n                copyAxisDeltaInto(this.prevProjectionDelta.y, this.projectionDelta.y);\n            }\n            /**\n             * Update the delta between the corrected box and the target box before user-set transforms were applied.\n             * This will allow us to calculate the corrected borderRadius and boxShadow to compensate\n             * for our layout reprojection, but still allow them to be scaled correctly by the user.\n             * It might be that to simplify this we may want to accept that user-set scale is also corrected\n             * and we wouldn't have to keep and calc both deltas, OR we could support a user setting\n             * to allow people to choose whether these styles are corrected based on just the\n             * layout reprojection or the final bounding box.\n             */\n            calcBoxDelta(this.projectionDelta, this.layoutCorrected, target, this.latestValues);\n            if (this.treeScale.x !== prevTreeScaleX ||\n                this.treeScale.y !== prevTreeScaleY ||\n                !axisDeltaEquals(this.projectionDelta.x, this.prevProjectionDelta.x) ||\n                !axisDeltaEquals(this.projectionDelta.y, this.prevProjectionDelta.y)) {\n                this.hasProjected = true;\n                this.scheduleRender();\n                this.notifyListeners(\"projectionUpdate\", target);\n            }\n            /**\n             * Increase debug counter for recalculated projections\n             */\n            if (isDebug) {\n                metrics.recalculatedProjection++;\n            }\n        }\n        hide() {\n            this.isVisible = false;\n            // TODO: Schedule render\n        }\n        show() {\n            this.isVisible = true;\n            // TODO: Schedule render\n        }\n        scheduleRender(notifyAll = true) {\n            var _a;\n            (_a = this.options.visualElement) === null || _a === void 0 ? void 0 : _a.scheduleRender();\n            if (notifyAll) {\n                const stack = this.getStack();\n                stack && stack.scheduleRender();\n            }\n            if (this.resumingFrom && !this.resumingFrom.instance) {\n                this.resumingFrom = undefined;\n            }\n        }\n        createProjectionDeltas() {\n            this.prevProjectionDelta = createDelta();\n            this.projectionDelta = createDelta();\n            this.projectionDeltaWithTransform = createDelta();\n        }\n        setAnimationOrigin(delta, hasOnlyRelativeTargetChanged = false) {\n            const snapshot = this.snapshot;\n            const snapshotLatestValues = snapshot\n                ? snapshot.latestValues\n                : {};\n            const mixedValues = { ...this.latestValues };\n            const targetDelta = createDelta();\n            if (!this.relativeParent ||\n                !this.relativeParent.options.layoutRoot) {\n                this.relativeTarget = this.relativeTargetOrigin = undefined;\n            }\n            this.attemptToResolveRelativeTarget = !hasOnlyRelativeTargetChanged;\n            const relativeLayout = createBox();\n            const snapshotSource = snapshot ? snapshot.source : undefined;\n            const layoutSource = this.layout ? this.layout.source : undefined;\n            const isSharedLayoutAnimation = snapshotSource !== layoutSource;\n            const stack = this.getStack();\n            const isOnlyMember = !stack || stack.members.length <= 1;\n            const shouldCrossfadeOpacity = Boolean(isSharedLayoutAnimation &&\n                !isOnlyMember &&\n                this.options.crossfade === true &&\n                !this.path.some(hasOpacityCrossfade));\n            this.animationProgress = 0;\n            let prevRelativeTarget;\n            this.mixTargetDelta = (latest) => {\n                const progress = latest / 1000;\n                mixAxisDelta(targetDelta.x, delta.x, progress);\n                mixAxisDelta(targetDelta.y, delta.y, progress);\n                this.setTargetDelta(targetDelta);\n                if (this.relativeTarget &&\n                    this.relativeTargetOrigin &&\n                    this.layout &&\n                    this.relativeParent &&\n                    this.relativeParent.layout) {\n                    calcRelativePosition(relativeLayout, this.layout.layoutBox, this.relativeParent.layout.layoutBox);\n                    mixBox(this.relativeTarget, this.relativeTargetOrigin, relativeLayout, progress);\n                    /**\n                     * If this is an unchanged relative target we can consider the\n                     * projection not dirty.\n                     */\n                    if (prevRelativeTarget &&\n                        boxEquals(this.relativeTarget, prevRelativeTarget)) {\n                        this.isProjectionDirty = false;\n                    }\n                    if (!prevRelativeTarget)\n                        prevRelativeTarget = createBox();\n                    copyBoxInto(prevRelativeTarget, this.relativeTarget);\n                }\n                if (isSharedLayoutAnimation) {\n                    this.animationValues = mixedValues;\n                    mixValues(mixedValues, snapshotLatestValues, this.latestValues, progress, shouldCrossfadeOpacity, isOnlyMember);\n                }\n                this.root.scheduleUpdateProjection();\n                this.scheduleRender();\n                this.animationProgress = progress;\n            };\n            this.mixTargetDelta(this.options.layoutRoot ? 1000 : 0);\n        }\n        startAnimation(options) {\n            this.notifyListeners(\"animationStart\");\n            this.currentAnimation && this.currentAnimation.stop();\n            if (this.resumingFrom && this.resumingFrom.currentAnimation) {\n                this.resumingFrom.currentAnimation.stop();\n            }\n            if (this.pendingAnimation) {\n                cancelFrame(this.pendingAnimation);\n                this.pendingAnimation = undefined;\n            }\n            /**\n             * Start the animation in the next frame to have a frame with progress 0,\n             * where the target is the same as when the animation started, so we can\n             * calculate the relative positions correctly for instant transitions.\n             */\n            this.pendingAnimation = frame.update(() => {\n                globalProjectionState.hasAnimatedSinceResize = true;\n                this.currentAnimation = animateSingleValue(0, animationTarget, {\n                    ...options,\n                    onUpdate: (latest) => {\n                        this.mixTargetDelta(latest);\n                        options.onUpdate && options.onUpdate(latest);\n                    },\n                    onComplete: () => {\n                        options.onComplete && options.onComplete();\n                        this.completeAnimation();\n                    },\n                });\n                if (this.resumingFrom) {\n                    this.resumingFrom.currentAnimation = this.currentAnimation;\n                }\n                this.pendingAnimation = undefined;\n            });\n        }\n        completeAnimation() {\n            if (this.resumingFrom) {\n                this.resumingFrom.currentAnimation = undefined;\n                this.resumingFrom.preserveOpacity = undefined;\n            }\n            const stack = this.getStack();\n            stack && stack.exitAnimationComplete();\n            this.resumingFrom =\n                this.currentAnimation =\n                    this.animationValues =\n                        undefined;\n            this.notifyListeners(\"animationComplete\");\n        }\n        finishAnimation() {\n            if (this.currentAnimation) {\n                this.mixTargetDelta && this.mixTargetDelta(animationTarget);\n                this.currentAnimation.stop();\n            }\n            this.completeAnimation();\n        }\n        applyTransformsToTarget() {\n            const lead = this.getLead();\n            let { targetWithTransforms, target, layout, latestValues } = lead;\n            if (!targetWithTransforms || !target || !layout)\n                return;\n            /**\n             * If we're only animating position, and this element isn't the lead element,\n             * then instead of projecting into the lead box we instead want to calculate\n             * a new target that aligns the two boxes but maintains the layout shape.\n             */\n            if (this !== lead &&\n                this.layout &&\n                layout &&\n                shouldAnimatePositionOnly(this.options.animationType, this.layout.layoutBox, layout.layoutBox)) {\n                target = this.target || createBox();\n                const xLength = calcLength(this.layout.layoutBox.x);\n                target.x.min = lead.target.x.min;\n                target.x.max = target.x.min + xLength;\n                const yLength = calcLength(this.layout.layoutBox.y);\n                target.y.min = lead.target.y.min;\n                target.y.max = target.y.min + yLength;\n            }\n            copyBoxInto(targetWithTransforms, target);\n            /**\n             * Apply the latest user-set transforms to the targetBox to produce the targetBoxFinal.\n             * This is the final box that we will then project into by calculating a transform delta and\n             * applying it to the corrected box.\n             */\n            transformBox(targetWithTransforms, latestValues);\n            /**\n             * Update the delta between the corrected box and the final target box, after\n             * user-set transforms are applied to it. This will be used by the renderer to\n             * create a transform style that will reproject the element from its layout layout\n             * into the desired bounding box.\n             */\n            calcBoxDelta(this.projectionDeltaWithTransform, this.layoutCorrected, targetWithTransforms, latestValues);\n        }\n        registerSharedNode(layoutId, node) {\n            if (!this.sharedNodes.has(layoutId)) {\n                this.sharedNodes.set(layoutId, new NodeStack());\n            }\n            const stack = this.sharedNodes.get(layoutId);\n            stack.add(node);\n            const config = node.options.initialPromotionConfig;\n            node.promote({\n                transition: config ? config.transition : undefined,\n                preserveFollowOpacity: config && config.shouldPreserveFollowOpacity\n                    ? config.shouldPreserveFollowOpacity(node)\n                    : undefined,\n            });\n        }\n        isLead() {\n            const stack = this.getStack();\n            return stack ? stack.lead === this : true;\n        }\n        getLead() {\n            var _a;\n            const { layoutId } = this.options;\n            return layoutId ? ((_a = this.getStack()) === null || _a === void 0 ? void 0 : _a.lead) || this : this;\n        }\n        getPrevLead() {\n            var _a;\n            const { layoutId } = this.options;\n            return layoutId ? (_a = this.getStack()) === null || _a === void 0 ? void 0 : _a.prevLead : undefined;\n        }\n        getStack() {\n            const { layoutId } = this.options;\n            if (layoutId)\n                return this.root.sharedNodes.get(layoutId);\n        }\n        promote({ needsReset, transition, preserveFollowOpacity, } = {}) {\n            const stack = this.getStack();\n            if (stack)\n                stack.promote(this, preserveFollowOpacity);\n            if (needsReset) {\n                this.projectionDelta = undefined;\n                this.needsReset = true;\n            }\n            if (transition)\n                this.setOptions({ transition });\n        }\n        relegate() {\n            const stack = this.getStack();\n            if (stack) {\n                return stack.relegate(this);\n            }\n            else {\n                return false;\n            }\n        }\n        resetSkewAndRotation() {\n            const { visualElement } = this.options;\n            if (!visualElement)\n                return;\n            // If there's no detected skew or rotation values, we can early return without a forced render.\n            let hasDistortingTransform = false;\n            /**\n             * An unrolled check for rotation values. Most elements don't have any rotation and\n             * skipping the nested loop and new object creation is 50% faster.\n             */\n            const { latestValues } = visualElement;\n            if (latestValues.z ||\n                latestValues.rotate ||\n                latestValues.rotateX ||\n                latestValues.rotateY ||\n                latestValues.rotateZ ||\n                latestValues.skewX ||\n                latestValues.skewY) {\n                hasDistortingTransform = true;\n            }\n            // If there's no distorting values, we don't need to do any more.\n            if (!hasDistortingTransform)\n                return;\n            const resetValues = {};\n            if (latestValues.z) {\n                resetDistortingTransform(\"z\", visualElement, resetValues, this.animationValues);\n            }\n            // Check the skew and rotate value of all axes and reset to 0\n            for (let i = 0; i < transformAxes.length; i++) {\n                resetDistortingTransform(`rotate${transformAxes[i]}`, visualElement, resetValues, this.animationValues);\n                resetDistortingTransform(`skew${transformAxes[i]}`, visualElement, resetValues, this.animationValues);\n            }\n            // Force a render of this element to apply the transform with all skews and rotations\n            // set to 0.\n            visualElement.render();\n            // Put back all the values we reset\n            for (const key in resetValues) {\n                visualElement.setStaticValue(key, resetValues[key]);\n                if (this.animationValues) {\n                    this.animationValues[key] = resetValues[key];\n                }\n            }\n            // Schedule a render for the next frame. This ensures we won't visually\n            // see the element with the reset rotate value applied.\n            visualElement.scheduleRender();\n        }\n        getProjectionStyles(styleProp) {\n            var _a, _b;\n            if (!this.instance || this.isSVG)\n                return undefined;\n            if (!this.isVisible) {\n                return hiddenVisibility;\n            }\n            const styles = {\n                visibility: \"\",\n            };\n            const transformTemplate = this.getTransformTemplate();\n            if (this.needsReset) {\n                this.needsReset = false;\n                styles.opacity = \"\";\n                styles.pointerEvents =\n                    resolveMotionValue(styleProp === null || styleProp === void 0 ? void 0 : styleProp.pointerEvents) || \"\";\n                styles.transform = transformTemplate\n                    ? transformTemplate(this.latestValues, \"\")\n                    : \"none\";\n                return styles;\n            }\n            const lead = this.getLead();\n            if (!this.projectionDelta || !this.layout || !lead.target) {\n                const emptyStyles = {};\n                if (this.options.layoutId) {\n                    emptyStyles.opacity =\n                        this.latestValues.opacity !== undefined\n                            ? this.latestValues.opacity\n                            : 1;\n                    emptyStyles.pointerEvents =\n                        resolveMotionValue(styleProp === null || styleProp === void 0 ? void 0 : styleProp.pointerEvents) || \"\";\n                }\n                if (this.hasProjected && !hasTransform(this.latestValues)) {\n                    emptyStyles.transform = transformTemplate\n                        ? transformTemplate({}, \"\")\n                        : \"none\";\n                    this.hasProjected = false;\n                }\n                return emptyStyles;\n            }\n            const valuesToRender = lead.animationValues || lead.latestValues;\n            this.applyTransformsToTarget();\n            styles.transform = buildProjectionTransform(this.projectionDeltaWithTransform, this.treeScale, valuesToRender);\n            if (transformTemplate) {\n                styles.transform = transformTemplate(valuesToRender, styles.transform);\n            }\n            const { x, y } = this.projectionDelta;\n            styles.transformOrigin = `${x.origin * 100}% ${y.origin * 100}% 0`;\n            if (lead.animationValues) {\n                /**\n                 * If the lead component is animating, assign this either the entering/leaving\n                 * opacity\n                 */\n                styles.opacity =\n                    lead === this\n                        ? (_b = (_a = valuesToRender.opacity) !== null && _a !== void 0 ? _a : this.latestValues.opacity) !== null && _b !== void 0 ? _b : 1\n                        : this.preserveOpacity\n                            ? this.latestValues.opacity\n                            : valuesToRender.opacityExit;\n            }\n            else {\n                /**\n                 * Or we're not animating at all, set the lead component to its layout\n                 * opacity and other components to hidden.\n                 */\n                styles.opacity =\n                    lead === this\n                        ? valuesToRender.opacity !== undefined\n                            ? valuesToRender.opacity\n                            : \"\"\n                        : valuesToRender.opacityExit !== undefined\n                            ? valuesToRender.opacityExit\n                            : 0;\n            }\n            /**\n             * Apply scale correction\n             */\n            for (const key in scaleCorrectors) {\n                if (valuesToRender[key] === undefined)\n                    continue;\n                const { correct, applyTo } = scaleCorrectors[key];\n                /**\n                 * Only apply scale correction to the value if we have an\n                 * active projection transform. Otherwise these values become\n                 * vulnerable to distortion if the element changes size without\n                 * a corresponding layout animation.\n                 */\n                const corrected = styles.transform === \"none\"\n                    ? valuesToRender[key]\n                    : correct(valuesToRender[key], lead);\n                if (applyTo) {\n                    const num = applyTo.length;\n                    for (let i = 0; i < num; i++) {\n                        styles[applyTo[i]] = corrected;\n                    }\n                }\n                else {\n                    styles[key] = corrected;\n                }\n            }\n            /**\n             * Disable pointer events on follow components. This is to ensure\n             * that if a follow component covers a lead component it doesn't block\n             * pointer events on the lead.\n             */\n            if (this.options.layoutId) {\n                styles.pointerEvents =\n                    lead === this\n                        ? resolveMotionValue(styleProp === null || styleProp === void 0 ? void 0 : styleProp.pointerEvents) || \"\"\n                        : \"none\";\n            }\n            return styles;\n        }\n        clearSnapshot() {\n            this.resumeFrom = this.snapshot = undefined;\n        }\n        // Only run on root\n        resetTree() {\n            this.root.nodes.forEach((node) => { var _a; return (_a = node.currentAnimation) === null || _a === void 0 ? void 0 : _a.stop(); });\n            this.root.nodes.forEach(clearMeasurements);\n            this.root.sharedNodes.clear();\n        }\n    };\n}\nfunction updateLayout(node) {\n    node.updateLayout();\n}\nfunction notifyLayoutUpdate(node) {\n    var _a;\n    const snapshot = ((_a = node.resumeFrom) === null || _a === void 0 ? void 0 : _a.snapshot) || node.snapshot;\n    if (node.isLead() &&\n        node.layout &&\n        snapshot &&\n        node.hasListeners(\"didUpdate\")) {\n        const { layoutBox: layout, measuredBox: measuredLayout } = node.layout;\n        const { animationType } = node.options;\n        const isShared = snapshot.source !== node.layout.source;\n        // TODO Maybe we want to also resize the layout snapshot so we don't trigger\n        // animations for instance if layout=\"size\" and an element has only changed position\n        if (animationType === \"size\") {\n            eachAxis((axis) => {\n                const axisSnapshot = isShared\n                    ? snapshot.measuredBox[axis]\n                    : snapshot.layoutBox[axis];\n                const length = calcLength(axisSnapshot);\n                axisSnapshot.min = layout[axis].min;\n                axisSnapshot.max = axisSnapshot.min + length;\n            });\n        }\n        else if (shouldAnimatePositionOnly(animationType, snapshot.layoutBox, layout)) {\n            eachAxis((axis) => {\n                const axisSnapshot = isShared\n                    ? snapshot.measuredBox[axis]\n                    : snapshot.layoutBox[axis];\n                const length = calcLength(layout[axis]);\n                axisSnapshot.max = axisSnapshot.min + length;\n                /**\n                 * Ensure relative target gets resized and rerendererd\n                 */\n                if (node.relativeTarget && !node.currentAnimation) {\n                    node.isProjectionDirty = true;\n                    node.relativeTarget[axis].max =\n                        node.relativeTarget[axis].min + length;\n                }\n            });\n        }\n        const layoutDelta = createDelta();\n        calcBoxDelta(layoutDelta, layout, snapshot.layoutBox);\n        const visualDelta = createDelta();\n        if (isShared) {\n            calcBoxDelta(visualDelta, node.applyTransform(measuredLayout, true), snapshot.measuredBox);\n        }\n        else {\n            calcBoxDelta(visualDelta, layout, snapshot.layoutBox);\n        }\n        const hasLayoutChanged = !isDeltaZero(layoutDelta);\n        let hasRelativeTargetChanged = false;\n        if (!node.resumeFrom) {\n            const relativeParent = node.getClosestProjectingParent();\n            /**\n             * If the relativeParent is itself resuming from a different element then\n             * the relative snapshot is not relavent\n             */\n            if (relativeParent && !relativeParent.resumeFrom) {\n                const { snapshot: parentSnapshot, layout: parentLayout } = relativeParent;\n                if (parentSnapshot && parentLayout) {\n                    const relativeSnapshot = createBox();\n                    calcRelativePosition(relativeSnapshot, snapshot.layoutBox, parentSnapshot.layoutBox);\n                    const relativeLayout = createBox();\n                    calcRelativePosition(relativeLayout, layout, parentLayout.layoutBox);\n                    if (!boxEqualsRounded(relativeSnapshot, relativeLayout)) {\n                        hasRelativeTargetChanged = true;\n                    }\n                    if (relativeParent.options.layoutRoot) {\n                        node.relativeTarget = relativeLayout;\n                        node.relativeTargetOrigin = relativeSnapshot;\n                        node.relativeParent = relativeParent;\n                    }\n                }\n            }\n        }\n        node.notifyListeners(\"didUpdate\", {\n            layout,\n            snapshot,\n            delta: visualDelta,\n            layoutDelta,\n            hasLayoutChanged,\n            hasRelativeTargetChanged,\n        });\n    }\n    else if (node.isLead()) {\n        const { onExitComplete } = node.options;\n        onExitComplete && onExitComplete();\n    }\n    /**\n     * Clearing transition\n     * TODO: Investigate why this transition is being passed in as {type: false } from Framer\n     * and why we need it at all\n     */\n    node.options.transition = undefined;\n}\nfunction propagateDirtyNodes(node) {\n    /**\n     * Increase debug counter for nodes encountered this frame\n     */\n    if (isDebug) {\n        metrics.totalNodes++;\n    }\n    if (!node.parent)\n        return;\n    /**\n     * If this node isn't projecting, propagate isProjectionDirty. It will have\n     * no performance impact but it will allow the next child that *is* projecting\n     * but *isn't* dirty to just check its parent to see if *any* ancestor needs\n     * correcting.\n     */\n    if (!node.isProjecting()) {\n        node.isProjectionDirty = node.parent.isProjectionDirty;\n    }\n    /**\n     * Propagate isSharedProjectionDirty and isTransformDirty\n     * throughout the whole tree. A future revision can take another look at\n     * this but for safety we still recalcualte shared nodes.\n     */\n    node.isSharedProjectionDirty || (node.isSharedProjectionDirty = Boolean(node.isProjectionDirty ||\n        node.parent.isProjectionDirty ||\n        node.parent.isSharedProjectionDirty));\n    node.isTransformDirty || (node.isTransformDirty = node.parent.isTransformDirty);\n}\nfunction cleanDirtyNodes(node) {\n    node.isProjectionDirty =\n        node.isSharedProjectionDirty =\n            node.isTransformDirty =\n                false;\n}\nfunction clearSnapshot(node) {\n    node.clearSnapshot();\n}\nfunction clearMeasurements(node) {\n    node.clearMeasurements();\n}\nfunction clearIsLayoutDirty(node) {\n    node.isLayoutDirty = false;\n}\nfunction resetTransformStyle(node) {\n    const { visualElement } = node.options;\n    if (visualElement && visualElement.getProps().onBeforeLayoutMeasure) {\n        visualElement.notify(\"BeforeLayoutMeasure\");\n    }\n    node.resetTransform();\n}\nfunction finishAnimation(node) {\n    node.finishAnimation();\n    node.targetDelta = node.relativeTarget = node.target = undefined;\n    node.isProjectionDirty = true;\n}\nfunction resolveTargetDelta(node) {\n    node.resolveTargetDelta();\n}\nfunction calcProjection(node) {\n    node.calcProjection();\n}\nfunction resetSkewAndRotation(node) {\n    node.resetSkewAndRotation();\n}\nfunction removeLeadSnapshots(stack) {\n    stack.removeLeadSnapshot();\n}\nfunction mixAxisDelta(output, delta, p) {\n    output.translate = mixNumber(delta.translate, 0, p);\n    output.scale = mixNumber(delta.scale, 1, p);\n    output.origin = delta.origin;\n    output.originPoint = delta.originPoint;\n}\nfunction mixAxis(output, from, to, p) {\n    output.min = mixNumber(from.min, to.min, p);\n    output.max = mixNumber(from.max, to.max, p);\n}\nfunction mixBox(output, from, to, p) {\n    mixAxis(output.x, from.x, to.x, p);\n    mixAxis(output.y, from.y, to.y, p);\n}\nfunction hasOpacityCrossfade(node) {\n    return (node.animationValues && node.animationValues.opacityExit !== undefined);\n}\nconst defaultLayoutTransition = {\n    duration: 0.45,\n    ease: [0.4, 0, 0.1, 1],\n};\nconst userAgentContains = (string) => typeof navigator !== \"undefined\" &&\n    navigator.userAgent &&\n    navigator.userAgent.toLowerCase().includes(string);\n/**\n * Measured bounding boxes must be rounded in Safari and\n * left untouched in Chrome, otherwise non-integer layouts within scaled-up elements\n * can appear to jump.\n */\nconst roundPoint = userAgentContains(\"applewebkit/\") && !userAgentContains(\"chrome/\")\n    ? Math.round\n    : noop;\nfunction roundAxis(axis) {\n    // Round to the nearest .5 pixels to support subpixel layouts\n    axis.min = roundPoint(axis.min);\n    axis.max = roundPoint(axis.max);\n}\nfunction roundBox(box) {\n    roundAxis(box.x);\n    roundAxis(box.y);\n}\nfunction shouldAnimatePositionOnly(animationType, snapshot, layout) {\n    return (animationType === \"position\" ||\n        (animationType === \"preserve-aspect\" &&\n            !isNear(aspectRatio(snapshot), aspectRatio(layout), 0.2)));\n}\nfunction checkNodeWasScrollRoot(node) {\n    var _a;\n    return node !== node.root && ((_a = node.scroll) === null || _a === void 0 ? void 0 : _a.wasRoot);\n}\n\nexport { cleanDirtyNodes, createProjectionNode, mixAxis, mixAxisDelta, mixBox, propagateDirtyNodes };\n","function isSVGElement(element) {\n    return element instanceof SVGElement && element.tagName !== \"svg\";\n}\n\nexport { isSVGElement };\n","import { secondsToMilliseconds } from 'motion-utils';\nimport { time } from '../frameloop/sync-time.mjs';\nimport { frame, cancelFrame } from '../frameloop/frame.mjs';\n\n/**\n * Timeout defined in ms\n */\nfunction delay(callback, timeout) {\n    const start = time.now();\n    const checkElapsed = ({ timestamp }) => {\n        const elapsed = timestamp - start;\n        if (elapsed >= timeout) {\n            cancelFrame(checkElapsed);\n            callback(elapsed - timeout);\n        }\n    };\n    frame.read(checkElapsed, true);\n    return () => cancelFrame(checkElapsed);\n}\nfunction delayInSeconds(callback, timeout) {\n    return delay(callback, secondsToMilliseconds(timeout));\n}\n\nexport { delay, delayInSeconds };\n","import { motionValue } from '../../value/index.mjs';\nimport { isMotionValue } from '../../value/utils/is-motion-value.mjs';\nimport { animateMotionValue } from '../interfaces/motion-value.mjs';\n\nfunction animateSingleValue(value, keyframes, options) {\n    const motionValue$1 = isMotionValue(value) ? value : motionValue(value);\n    motionValue$1.start(animateMotionValue(\"\", motionValue$1, keyframes, options));\n    return motionValue$1.animation;\n}\n\nexport { animateSingleValue };\n","function buildProjectionTransform(delta, treeScale, latestTransform) {\n    let transform = \"\";\n    /**\n     * The translations we use to calculate are always relative to the viewport coordinate space.\n     * But when we apply scales, we also scale the coordinate space of an element and its children.\n     * For instance if we have a treeScale (the culmination of all parent scales) of 0.5 and we need\n     * to move an element 100 pixels, we actually need to move it 200 in within that scaled space.\n     */\n    const xTranslate = delta.x.translate / treeScale.x;\n    const yTranslate = delta.y.translate / treeScale.y;\n    const zTranslate = (latestTransform === null || latestTransform === void 0 ? void 0 : latestTransform.z) || 0;\n    if (xTranslate || yTranslate || zTranslate) {\n        transform = `translate3d(${xTranslate}px, ${yTranslate}px, ${zTranslate}px) `;\n    }\n    /**\n     * Apply scale correction for the tree transform.\n     * This will apply scale to the screen-orientated axes.\n     */\n    if (treeScale.x !== 1 || treeScale.y !== 1) {\n        transform += `scale(${1 / treeScale.x}, ${1 / treeScale.y}) `;\n    }\n    if (latestTransform) {\n        const { transformPerspective, rotate, rotateX, rotateY, skewX, skewY } = latestTransform;\n        if (transformPerspective)\n            transform = `perspective(${transformPerspective}px) ${transform}`;\n        if (rotate)\n            transform += `rotate(${rotate}deg) `;\n        if (rotateX)\n            transform += `rotateX(${rotateX}deg) `;\n        if (rotateY)\n            transform += `rotateY(${rotateY}deg) `;\n        if (skewX)\n            transform += `skewX(${skewX}deg) `;\n        if (skewY)\n            transform += `skewY(${skewY}deg) `;\n    }\n    /**\n     * Apply scale to match the size of the element to the size we want it.\n     * This will apply scale to the element-orientated axes.\n     */\n    const elementScaleX = delta.x.scale * treeScale.x;\n    const elementScaleY = delta.y.scale * treeScale.y;\n    if (elementScaleX !== 1 || elementScaleY !== 1) {\n        transform += `scale(${elementScaleX}, ${elementScaleY})`;\n    }\n    return transform || \"none\";\n}\n\nexport { buildProjectionTransform };\n","import { createProjectionNode } from './create-projection-node.mjs';\nimport { addDomEvent } from '../../events/add-dom-event.mjs';\n\nconst DocumentProjectionNode = createProjectionNode({\n    attachResizeListener: (ref, notify) => addDomEvent(ref, \"resize\", notify),\n    measureScroll: () => ({\n        x: document.documentElement.scrollLeft || document.body.scrollLeft,\n        y: document.documentElement.scrollTop || document.body.scrollTop,\n    }),\n    checkIsScrollRoot: () => true,\n});\n\nexport { DocumentProjectionNode };\n","import { createProjectionNode } from './create-projection-node.mjs';\nimport { DocumentProjectionNode } from './DocumentProjectionNode.mjs';\n\nconst rootProjectionNode = {\n    current: undefined,\n};\nconst HTMLProjectionNode = createProjectionNode({\n    measureScroll: (instance) => ({\n        x: instance.scrollLeft,\n        y: instance.scrollTop,\n    }),\n    defaultParent: () => {\n        if (!rootProjectionNode.current) {\n            const documentNode = new DocumentProjectionNode({});\n            documentNode.mount(window);\n            documentNode.setOptions({ layoutScroll: true });\n            rootProjectionNode.current = documentNode;\n        }\n        return rootProjectionNode.current;\n    },\n    resetTransform: (instance, value) => {\n        instance.style.transform = value !== undefined ? value : \"none\";\n    },\n    checkIsScrollRoot: (instance) => Boolean(window.getComputedStyle(instance).position === \"fixed\"),\n});\n\nexport { HTMLProjectionNode, rootProjectionNode };\n","import { DragGesture } from '../../gestures/drag/index.mjs';\nimport { PanGesture } from '../../gestures/pan/index.mjs';\nimport { MeasureLayout } from './layout/MeasureLayout.mjs';\nimport { HTMLProjectionNode } from '../../projection/node/HTMLProjectionNode.mjs';\n\nconst drag = {\n    pan: {\n        Feature: PanGesture,\n    },\n    drag: {\n        Feature: DragGesture,\n        ProjectionNode: HTMLProjectionNode,\n        MeasureLayout,\n    },\n};\n\nexport { drag };\n","import { Feature } from '../../motion/features/Feature.mjs';\nimport { noop } from 'motion-utils';\nimport { VisualElementDragControls } from './VisualElementDragControls.mjs';\n\nclass DragGesture extends Feature {\n    constructor(node) {\n        super(node);\n        this.removeGroupControls = noop;\n        this.removeListeners = noop;\n        this.controls = new VisualElementDragControls(node);\n    }\n    mount() {\n        // If we've been provided a DragControls for manual control over the drag gesture,\n        // subscribe this component to it on mount.\n        const { dragControls } = this.node.getProps();\n        if (dragControls) {\n            this.removeGroupControls = dragControls.subscribe(this.controls);\n        }\n        this.removeListeners = this.controls.addListeners() || noop;\n    }\n    unmount() {\n        this.removeGroupControls();\n        this.removeListeners();\n    }\n}\n\nexport { DragGesture };\n","import { Feature } from '../motion/features/Feature.mjs';\nimport { hover } from 'motion-dom';\nimport { extractEventInfo } from '../events/event-info.mjs';\nimport { frame } from '../frameloop/frame.mjs';\n\nfunction handleHoverEvent(node, event, lifecycle) {\n    const { props } = node;\n    if (node.animationState && props.whileHover) {\n        node.animationState.setActive(\"whileHover\", lifecycle === \"Start\");\n    }\n    const eventName = (\"onHover\" + lifecycle);\n    const callback = props[eventName];\n    if (callback) {\n        frame.postRender(() => callback(event, extractEventInfo(event)));\n    }\n}\nclass HoverGesture extends Feature {\n    mount() {\n        const { current } = this.node;\n        if (!current)\n            return;\n        this.unmount = hover(current, (startEvent) => {\n            handleHoverEvent(this.node, startEvent, \"Start\");\n            return (endEvent) => handleHoverEvent(this.node, endEvent, \"End\");\n        });\n    }\n    unmount() { }\n}\n\nexport { HoverGesture };\n","import { Feature } from '../motion/features/Feature.mjs';\nimport { press } from 'motion-dom';\nimport { extractEventInfo } from '../events/event-info.mjs';\nimport { frame } from '../frameloop/frame.mjs';\n\nfunction handlePressEvent(node, event, lifecycle) {\n    const { props } = node;\n    if (node.animationState && props.whileTap) {\n        node.animationState.setActive(\"whileTap\", lifecycle === \"Start\");\n    }\n    const eventName = (\"onTap\" + (lifecycle === \"End\" ? \"\" : lifecycle));\n    const callback = props[eventName];\n    if (callback) {\n        frame.postRender(() => callback(event, extractEventInfo(event)));\n    }\n}\nclass PressGesture extends Feature {\n    mount() {\n        const { current } = this.node;\n        if (!current)\n            return;\n        this.unmount = press(current, (startEvent) => {\n            handlePressEvent(this.node, startEvent, \"Start\");\n            return (endEvent, { success }) => handlePressEvent(this.node, endEvent, success ? \"End\" : \"Cancel\");\n        }, { useGlobalTarget: this.node.props.globalTapTarget });\n    }\n    unmount() { }\n}\n\nexport { PressGesture };\n","/**\n * Map an IntersectionHandler callback to an element. We only ever make one handler for one\n * element, so even though these handlers might all be triggered by different\n * observers, we can keep them in the same map.\n */\nconst observerCallbacks = new WeakMap();\n/**\n * Multiple observers can be created for multiple element/document roots. Each with\n * different settings. So here we store dictionaries of observers to each root,\n * using serialised settings (threshold/margin) as lookup keys.\n */\nconst observers = new WeakMap();\nconst fireObserverCallback = (entry) => {\n    const callback = observerCallbacks.get(entry.target);\n    callback && callback(entry);\n};\nconst fireAllObserverCallbacks = (entries) => {\n    entries.forEach(fireObserverCallback);\n};\nfunction initIntersectionObserver({ root, ...options }) {\n    const lookupRoot = root || document;\n    /**\n     * If we don't have an observer lookup map for this root, create one.\n     */\n    if (!observers.has(lookupRoot)) {\n        observers.set(lookupRoot, {});\n    }\n    const rootObservers = observers.get(lookupRoot);\n    const key = JSON.stringify(options);\n    /**\n     * If we don't have an observer for this combination of root and settings,\n     * create one.\n     */\n    if (!rootObservers[key]) {\n        rootObservers[key] = new IntersectionObserver(fireAllObserverCallbacks, { root, ...options });\n    }\n    return rootObservers[key];\n}\nfunction observeIntersection(element, options, callback) {\n    const rootInteresectionObserver = initIntersectionObserver(options);\n    observerCallbacks.set(element, callback);\n    rootInteresectionObserver.observe(element);\n    return () => {\n        observerCallbacks.delete(element);\n        rootInteresectionObserver.unobserve(element);\n    };\n}\n\nexport { observeIntersection };\n","import { Feature } from '../Feature.mjs';\nimport { observeIntersection } from './observers.mjs';\n\nconst thresholdNames = {\n    some: 0,\n    all: 1,\n};\nclass InViewFeature extends Feature {\n    constructor() {\n        super(...arguments);\n        this.hasEnteredView = false;\n        this.isInView = false;\n    }\n    startObserver() {\n        this.unmount();\n        const { viewport = {} } = this.node.getProps();\n        const { root, margin: rootMargin, amount = \"some\", once } = viewport;\n        const options = {\n            root: root ? root.current : undefined,\n            rootMargin,\n            threshold: typeof amount === \"number\" ? amount : thresholdNames[amount],\n        };\n        const onIntersectionUpdate = (entry) => {\n            const { isIntersecting } = entry;\n            /**\n             * If there's been no change in the viewport state, early return.\n             */\n            if (this.isInView === isIntersecting)\n                return;\n            this.isInView = isIntersecting;\n            /**\n             * Handle hasEnteredView. If this is only meant to run once, and\n             * element isn't visible, early return. Otherwise set hasEnteredView to true.\n             */\n            if (once && !isIntersecting && this.hasEnteredView) {\n                return;\n            }\n            else if (isIntersecting) {\n                this.hasEnteredView = true;\n            }\n            if (this.node.animationState) {\n                this.node.animationState.setActive(\"whileInView\", isIntersecting);\n            }\n            /**\n             * Use the latest committed props rather than the ones in scope\n             * when this observer is created\n             */\n            const { onViewportEnter, onViewportLeave } = this.node.getProps();\n            const callback = isIntersecting ? onViewportEnter : onViewportLeave;\n            callback && callback(entry);\n        };\n        return observeIntersection(this.node.current, options, onIntersectionUpdate);\n    }\n    mount() {\n        this.startObserver();\n    }\n    update() {\n        if (typeof IntersectionObserver === \"undefined\")\n            return;\n        const { props, prevProps } = this.node;\n        const hasOptionsChanged = [\"amount\", \"margin\", \"root\"].some(hasViewportOptionChanged(props, prevProps));\n        if (hasOptionsChanged) {\n            this.startObserver();\n        }\n    }\n    unmount() { }\n}\nfunction hasViewportOptionChanged({ viewport = {} }, { viewport: prevViewport = {} } = {}) {\n    return (name) => viewport[name] !== prevViewport[name];\n}\n\nexport { InViewFeature };\n","import { HoverGesture } from '../../gestures/hover.mjs';\nimport { FocusGesture } from '../../gestures/focus.mjs';\nimport { PressGesture } from '../../gestures/press.mjs';\nimport { InViewFeature } from './viewport/index.mjs';\n\nconst gestureAnimations = {\n    inView: {\n        Feature: InViewFeature,\n    },\n    tap: {\n        Feature: PressGesture,\n    },\n    focus: {\n        Feature: FocusGesture,\n    },\n    hover: {\n        Feature: HoverGesture,\n    },\n};\n\nexport { gestureAnimations };\n","import { addDomEvent } from '../events/add-dom-event.mjs';\nimport { Feature } from '../motion/features/Feature.mjs';\nimport { pipe } from '../utils/pipe.mjs';\n\nclass FocusGesture extends Feature {\n    constructor() {\n        super(...arguments);\n        this.isActive = false;\n    }\n    onFocus() {\n        let isFocusVisible = false;\n        /**\n         * If this element doesn't match focus-visible then don't\n         * apply whileHover. But, if matches throws that focus-visible\n         * is not a valid selector then in that browser outline styles will be applied\n         * to the element by default and we want to match that behaviour with whileFocus.\n         */\n        try {\n            isFocusVisible = this.node.current.matches(\":focus-visible\");\n        }\n        catch (e) {\n            isFocusVisible = true;\n        }\n        if (!isFocusVisible || !this.node.animationState)\n            return;\n        this.node.animationState.setActive(\"whileFocus\", true);\n        this.isActive = true;\n    }\n    onBlur() {\n        if (!this.isActive || !this.node.animationState)\n            return;\n        this.node.animationState.setActive(\"whileFocus\", false);\n        this.isActive = false;\n    }\n    mount() {\n        this.unmount = pipe(addDomEvent(this.node.current, \"focus\", () => this.onFocus()), addDomEvent(this.node.current, \"blur\", () => this.onBlur()));\n    }\n    unmount() { }\n}\n\nexport { FocusGesture };\n","import { HTMLProjectionNode } from '../../projection/node/HTMLProjectionNode.mjs';\nimport { MeasureLayout } from './layout/MeasureLayout.mjs';\n\nconst layout = {\n    layout: {\n        ProjectionNode: HTMLProjectionNode,\n        MeasureLayout,\n    },\n};\n\nexport { layout };\n","\"use client\";\nimport { createContext } from 'react';\n\nconst LazyContext = createContext({ strict: false });\n\nexport { LazyContext };\n","\"use client\";\nimport { createContext } from 'react';\n\n/**\n * @public\n */\nconst MotionConfigContext = createContext({\n    transformPagePoint: (p) => p,\n    isStatic: false,\n    reducedMotion: \"never\",\n});\n\nexport { MotionConfigContext };\n","\"use client\";\nimport { createContext } from 'react';\n\nconst MotionContext = createContext({});\n\nexport { MotionContext };\n","import { isAnimationControls } from '../../animation/utils/is-animation-controls.mjs';\nimport { isVariantLabel } from './is-variant-label.mjs';\nimport { variantProps } from './variant-props.mjs';\n\nfunction isControllingVariants(props) {\n    return (isAnimationControls(props.animate) ||\n        variantProps.some((name) => isVariantLabel(props[name])));\n}\nfunction isVariantNode(props) {\n    return Boolean(isControllingVariants(props) || props.variants);\n}\n\nexport { isControllingVariants, isVariantNode };\n","import { useContext, useMemo } from 'react';\nimport { MotionContext } from './index.mjs';\nimport { getCurrentTreeVariants } from './utils.mjs';\n\nfunction useCreateMotionContext(props) {\n    const { initial, animate } = getCurrentTreeVariants(props, useContext(MotionContext));\n    return useMemo(() => ({ initial, animate }), [variantLabelsAsDependency(initial), variantLabelsAsDependency(animate)]);\n}\nfunction variantLabelsAsDependency(prop) {\n    return Array.isArray(prop) ? prop.join(\" \") : prop;\n}\n\nexport { useCreateMotionContext };\n","const isBrowser = typeof window !== \"undefined\";\n\nexport { isBrowser };\n","const featureProps = {\n    animation: [\n        \"animate\",\n        \"variants\",\n        \"whileHover\",\n        \"whileTap\",\n        \"exit\",\n        \"whileInView\",\n        \"whileFocus\",\n        \"whileDrag\",\n    ],\n    exit: [\"exit\"],\n    drag: [\"drag\", \"dragControls\"],\n    focus: [\"whileFocus\"],\n    hover: [\"whileHover\", \"onHoverStart\", \"onHoverEnd\"],\n    tap: [\"whileTap\", \"onTap\", \"onTapStart\", \"onTapCancel\"],\n    pan: [\"onPan\", \"onPanStart\", \"onPanSessionStart\", \"onPanEnd\"],\n    inView: [\"whileInView\", \"onViewportEnter\", \"onViewportLeave\"],\n    layout: [\"layout\", \"layoutId\"],\n};\nconst featureDefinitions = {};\nfor (const key in featureProps) {\n    featureDefinitions[key] = {\n        isEnabled: (props) => featureProps[key].some((name) => !!props[name]),\n    };\n}\n\nexport { featureDefinitions };\n","const motionComponentSymbol = Symbol.for(\"motionComponentSymbol\");\n\nexport { motionComponentSymbol };\n","import { useCallback } from 'react';\nimport { isRefObject } from '../../utils/is-ref-object.mjs';\n\n/**\n * Creates a ref function that, when called, hydrates the provided\n * external ref and VisualElement.\n */\nfunction useMotionRef(visualState, visualElement, externalRef) {\n    return useCallback((instance) => {\n        if (instance) {\n            visualState.onMount && visualState.onMount(instance);\n        }\n        if (visualElement) {\n            if (instance) {\n                visualElement.mount(instance);\n            }\n            else {\n                visualElement.unmount();\n            }\n        }\n        if (externalRef) {\n            if (typeof externalRef === \"function\") {\n                externalRef(instance);\n            }\n            else if (isRefObject(externalRef)) {\n                externalRef.current = instance;\n            }\n        }\n    }, \n    /**\n     * Only pass a new ref callback to React if we've received a visual element\n     * factory. Otherwise we'll be mounting/remounting every time externalRef\n     * or other dependencies change.\n     */\n    [visualElement]);\n}\n\nexport { useMotionRef };\n","import { useLayoutEffect, useEffect } from 'react';\nimport { isBrowser } from './is-browser.mjs';\n\nconst useIsomorphicLayoutEffect = isBrowser ? useLayoutEffect : useEffect;\n\nexport { useIsomorphicLayoutEffect };\n","import { useContext, useRef, useInsertionEffect, useEffect } from 'react';\nimport { PresenceContext } from '../../context/PresenceContext.mjs';\nimport { MotionContext } from '../../context/MotionContext/index.mjs';\nimport { useIsomorphicLayoutEffect } from '../../utils/use-isomorphic-effect.mjs';\nimport { LazyContext } from '../../context/LazyContext.mjs';\nimport { MotionConfigContext } from '../../context/MotionConfigContext.mjs';\nimport { optimizedAppearDataAttribute } from '../../animation/optimized-appear/data-id.mjs';\nimport { microtask } from '../../frameloop/microtask.mjs';\nimport { isRefObject } from '../../utils/is-ref-object.mjs';\nimport { SwitchLayoutGroupContext } from '../../context/SwitchLayoutGroupContext.mjs';\n\nfunction useVisualElement(Component, visualState, props, createVisualElement, ProjectionNodeConstructor) {\n    var _a, _b;\n    const { visualElement: parent } = useContext(MotionContext);\n    const lazyContext = useContext(LazyContext);\n    const presenceContext = useContext(PresenceContext);\n    const reducedMotionConfig = useContext(MotionConfigContext).reducedMotion;\n    const visualElementRef = useRef(null);\n    /**\n     * If we haven't preloaded a renderer, check to see if we have one lazy-loaded\n     */\n    createVisualElement = createVisualElement || lazyContext.renderer;\n    if (!visualElementRef.current && createVisualElement) {\n        visualElementRef.current = createVisualElement(Component, {\n            visualState,\n            parent,\n            props,\n            presenceContext,\n            blockInitialAnimation: presenceContext\n                ? presenceContext.initial === false\n                : false,\n            reducedMotionConfig,\n        });\n    }\n    const visualElement = visualElementRef.current;\n    /**\n     * Load Motion gesture and animation features. These are rendered as renderless\n     * components so each feature can optionally make use of React lifecycle methods.\n     */\n    const initialLayoutGroupConfig = useContext(SwitchLayoutGroupContext);\n    if (visualElement &&\n        !visualElement.projection &&\n        ProjectionNodeConstructor &&\n        (visualElement.type === \"html\" || visualElement.type === \"svg\")) {\n        createProjectionNode(visualElementRef.current, props, ProjectionNodeConstructor, initialLayoutGroupConfig);\n    }\n    const isMounted = useRef(false);\n    useInsertionEffect(() => {\n        /**\n         * Check the component has already mounted before calling\n         * `update` unnecessarily. This ensures we skip the initial update.\n         */\n        if (visualElement && isMounted.current) {\n            visualElement.update(props, presenceContext);\n        }\n    });\n    /**\n     * Cache this value as we want to know whether HandoffAppearAnimations\n     * was present on initial render - it will be deleted after this.\n     */\n    const optimisedAppearId = props[optimizedAppearDataAttribute];\n    const wantsHandoff = useRef(Boolean(optimisedAppearId) &&\n        !((_a = window.MotionHandoffIsComplete) === null || _a === void 0 ? void 0 : _a.call(window, optimisedAppearId)) &&\n        ((_b = window.MotionHasOptimisedAnimation) === null || _b === void 0 ? void 0 : _b.call(window, optimisedAppearId)));\n    useIsomorphicLayoutEffect(() => {\n        if (!visualElement)\n            return;\n        isMounted.current = true;\n        window.MotionIsMounted = true;\n        visualElement.updateFeatures();\n        microtask.render(visualElement.render);\n        /**\n         * Ideally this function would always run in a useEffect.\n         *\n         * However, if we have optimised appear animations to handoff from,\n         * it needs to happen synchronously to ensure there's no flash of\n         * incorrect styles in the event of a hydration error.\n         *\n         * So if we detect a situtation where optimised appear animations\n         * are running, we use useLayoutEffect to trigger animations.\n         */\n        if (wantsHandoff.current && visualElement.animationState) {\n            visualElement.animationState.animateChanges();\n        }\n    });\n    useEffect(() => {\n        if (!visualElement)\n            return;\n        if (!wantsHandoff.current && visualElement.animationState) {\n            visualElement.animationState.animateChanges();\n        }\n        if (wantsHandoff.current) {\n            // This ensures all future calls to animateChanges() in this component will run in useEffect\n            queueMicrotask(() => {\n                var _a;\n                (_a = window.MotionHandoffMarkAsComplete) === null || _a === void 0 ? void 0 : _a.call(window, optimisedAppearId);\n            });\n            wantsHandoff.current = false;\n        }\n    });\n    return visualElement;\n}\nfunction createProjectionNode(visualElement, props, ProjectionNodeConstructor, initialPromotionConfig) {\n    const { layoutId, layout, drag, dragConstraints, layoutScroll, layoutRoot, } = props;\n    visualElement.projection = new ProjectionNodeConstructor(visualElement.latestValues, props[\"data-framer-portal-id\"]\n        ? undefined\n        : getClosestProjectingNode(visualElement.parent));\n    visualElement.projection.setOptions({\n        layoutId,\n        layout,\n        alwaysMeasureLayout: Boolean(drag) || (dragConstraints && isRefObject(dragConstraints)),\n        visualElement,\n        /**\n         * TODO: Update options in an effect. This could be tricky as it'll be too late\n         * to update by the time layout animations run.\n         * We also need to fix this safeToRemove by linking it up to the one returned by usePresence,\n         * ensuring it gets called if there's no potential layout animations.\n         *\n         */\n        animationType: typeof layout === \"string\" ? layout : \"both\",\n        initialPromotionConfig,\n        layoutScroll,\n        layoutRoot,\n    });\n}\nfunction getClosestProjectingNode(visualElement) {\n    if (!visualElement)\n        return undefined;\n    return visualElement.options.allowProjection !== false\n        ? visualElement.projection\n        : getClosestProjectingNode(visualElement.parent);\n}\n\nexport { useVisualElement };\n","\"use client\";\nimport { jsxs, jsx } from 'react/jsx-runtime';\nimport { warning, invariant } from 'motion-utils';\nimport { forwardRef, useContext } from 'react';\nimport { LayoutGroupContext } from '../context/LayoutGroupContext.mjs';\nimport { LazyContext } from '../context/LazyContext.mjs';\nimport { MotionConfigContext } from '../context/MotionConfigContext.mjs';\nimport { MotionContext } from '../context/MotionContext/index.mjs';\nimport { useCreateMotionContext } from '../context/MotionContext/create.mjs';\nimport { isBrowser } from '../utils/is-browser.mjs';\nimport { featureDefinitions } from './features/definitions.mjs';\nimport { loadFeatures } from './features/load-features.mjs';\nimport { motionComponentSymbol } from './utils/symbol.mjs';\nimport { useMotionRef } from './utils/use-motion-ref.mjs';\nimport { useVisualElement } from './utils/use-visual-element.mjs';\n\n/**\n * Create a `motion` component.\n *\n * This function accepts a Component argument, which can be either a string (ie \"div\"\n * for `motion.div`), or an actual React component.\n *\n * Alongside this is a config option which provides a way of rendering the provided\n * component \"offline\", or outside the React render cycle.\n */\nfunction createRendererMotionComponent({ preloadedFeatures, createVisualElement, useRender, useVisualState, Component, }) {\n    var _a, _b;\n    preloadedFeatures && loadFeatures(preloadedFeatures);\n    function MotionComponent(props, externalRef) {\n        /**\n         * If we need to measure the element we load this functionality in a\n         * separate class component in order to gain access to getSnapshotBeforeUpdate.\n         */\n        let MeasureLayout;\n        const configAndProps = {\n            ...useContext(MotionConfigContext),\n            ...props,\n            layoutId: useLayoutId(props),\n        };\n        const { isStatic } = configAndProps;\n        const context = useCreateMotionContext(props);\n        const visualState = useVisualState(props, isStatic);\n        if (!isStatic && isBrowser) {\n            useStrictMode(configAndProps, preloadedFeatures);\n            const layoutProjection = getProjectionFunctionality(configAndProps);\n            MeasureLayout = layoutProjection.MeasureLayout;\n            /**\n             * Create a VisualElement for this component. A VisualElement provides a common\n             * interface to renderer-specific APIs (ie DOM/Three.js etc) as well as\n             * providing a way of rendering to these APIs outside of the React render loop\n             * for more performant animations and interactions\n             */\n            context.visualElement = useVisualElement(Component, visualState, configAndProps, createVisualElement, layoutProjection.ProjectionNode);\n        }\n        /**\n         * The mount order and hierarchy is specific to ensure our element ref\n         * is hydrated by the time features fire their effects.\n         */\n        return (jsxs(MotionContext.Provider, { value: context, children: [MeasureLayout && context.visualElement ? (jsx(MeasureLayout, { visualElement: context.visualElement, ...configAndProps })) : null, useRender(Component, props, useMotionRef(visualState, context.visualElement, externalRef), visualState, isStatic, context.visualElement)] }));\n    }\n    MotionComponent.displayName = `motion.${typeof Component === \"string\"\n        ? Component\n        : `create(${(_b = (_a = Component.displayName) !== null && _a !== void 0 ? _a : Component.name) !== null && _b !== void 0 ? _b : \"\"})`}`;\n    const ForwardRefMotionComponent = forwardRef(MotionComponent);\n    ForwardRefMotionComponent[motionComponentSymbol] = Component;\n    return ForwardRefMotionComponent;\n}\nfunction useLayoutId({ layoutId }) {\n    const layoutGroupId = useContext(LayoutGroupContext).id;\n    return layoutGroupId && layoutId !== undefined\n        ? layoutGroupId + \"-\" + layoutId\n        : layoutId;\n}\nfunction useStrictMode(configAndProps, preloadedFeatures) {\n    const isStrict = useContext(LazyContext).strict;\n    /**\n     * If we're in development mode, check to make sure we're not rendering a motion component\n     * as a child of LazyMotion, as this will break the file-size benefits of using it.\n     */\n    if (process.env.NODE_ENV !== \"production\" &&\n        preloadedFeatures &&\n        isStrict) {\n        const strictMessage = \"You have rendered a `motion` component within a `LazyMotion` component. This will break tree shaking. Import and render a `m` component instead.\";\n        configAndProps.ignoreStrict\n            ? warning(false, strictMessage)\n            : invariant(false, strictMessage);\n    }\n}\nfunction getProjectionFunctionality(props) {\n    const { drag, layout } = featureDefinitions;\n    if (!drag && !layout)\n        return {};\n    const combined = { ...drag, ...layout };\n    return {\n        MeasureLayout: (drag === null || drag === void 0 ? void 0 : drag.isEnabled(props)) || (layout === null || layout === void 0 ? void 0 : layout.isEnabled(props))\n            ? combined.MeasureLayout\n            : undefined,\n        ProjectionNode: combined.ProjectionNode,\n    };\n}\n\nexport { createRendererMotionComponent };\n","import { isVariantLabel } from '../../render/utils/is-variant-label.mjs';\nimport { isControllingVariants } from '../../render/utils/is-controlling-variants.mjs';\n\nfunction getCurrentTreeVariants(props, context) {\n    if (isControllingVariants(props)) {\n        const { initial, animate } = props;\n        return {\n            initial: initial === false || isVariantLabel(initial)\n                ? initial\n                : undefined,\n            animate: isVariantLabel(animate) ? animate : undefined,\n        };\n    }\n    return props.inherit !== false ? context : {};\n}\n\nexport { getCurrentTreeVariants };\n","import { featureDefinitions } from './definitions.mjs';\n\nfunction loadFeatures(features) {\n    for (const key in features) {\n        featureDefinitions[key] = {\n            ...featureDefinitions[key],\n            ...features[key],\n        };\n    }\n}\n\nexport { loadFeatures };\n","/**\n * We keep these listed separately as we use the lowercase tag names as part\n * of the runtime bundle to detect SVG components\n */\nconst lowercaseSVGElements = [\n    \"animate\",\n    \"circle\",\n    \"defs\",\n    \"desc\",\n    \"ellipse\",\n    \"g\",\n    \"image\",\n    \"line\",\n    \"filter\",\n    \"marker\",\n    \"mask\",\n    \"metadata\",\n    \"path\",\n    \"pattern\",\n    \"polygon\",\n    \"polyline\",\n    \"rect\",\n    \"stop\",\n    \"switch\",\n    \"symbol\",\n    \"svg\",\n    \"text\",\n    \"tspan\",\n    \"use\",\n    \"view\",\n];\n\nexport { lowercaseSVGElements };\n","import { lowercaseSVGElements } from '../../svg/lowercase-elements.mjs';\n\nfunction isSVGComponent(Component) {\n    if (\n    /**\n     * If it's not a string, it's a custom React component. Currently we only support\n     * HTML custom React components.\n     */\n    typeof Component !== \"string\" ||\n        /**\n         * If it contains a dash, the element is a custom HTML webcomponent.\n         */\n        Component.includes(\"-\")) {\n        return false;\n    }\n    else if (\n    /**\n     * If it's in our list of lowercase SVG tags, it's an SVG component\n     */\n    lowercaseSVGElements.indexOf(Component) > -1 ||\n        /**\n         * If it contains a capital letter, it's an SVG component\n         */\n        /[A-Z]/u.test(Component)) {\n        return true;\n    }\n    return false;\n}\n\nexport { isSVGComponent };\n","import { useRef } from 'react';\n\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on. By using `useConstant`\n * you can ensure that initialisers don't execute twice or more.\n */\nfunction useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport { useConstant };\n","import { useContext } from 'react';\nimport { isAnimationControls } from '../../animation/utils/is-animation-controls.mjs';\nimport { MotionContext } from '../../context/MotionContext/index.mjs';\nimport { PresenceContext } from '../../context/PresenceContext.mjs';\nimport { isControllingVariants, isVariantNode } from '../../render/utils/is-controlling-variants.mjs';\nimport { resolveVariantFromProps } from '../../render/utils/resolve-variants.mjs';\nimport { useConstant } from '../../utils/use-constant.mjs';\nimport { resolveMotionValue } from '../../value/utils/resolve-motion-value.mjs';\n\nfunction makeState({ scrapeMotionValuesFromProps, createRenderState, onUpdate, }, props, context, presenceContext) {\n    const state = {\n        latestValues: makeLatestValues(props, context, presenceContext, scrapeMotionValuesFromProps),\n        renderState: createRenderState(),\n    };\n    if (onUpdate) {\n        /**\n         * onMount works without the VisualElement because it could be\n         * called before the VisualElement payload has been hydrated.\n         * (e.g. if someone is using m components <m.circle />)\n         */\n        state.onMount = (instance) => onUpdate({ props, current: instance, ...state });\n        state.onUpdate = (visualElement) => onUpdate(visualElement);\n    }\n    return state;\n}\nconst makeUseVisualState = (config) => (props, isStatic) => {\n    const context = useContext(MotionContext);\n    const presenceContext = useContext(PresenceContext);\n    const make = () => makeState(config, props, context, presenceContext);\n    return isStatic ? make() : useConstant(make);\n};\nfunction makeLatestValues(props, context, presenceContext, scrapeMotionValues) {\n    const values = {};\n    const motionValues = scrapeMotionValues(props, {});\n    for (const key in motionValues) {\n        values[key] = resolveMotionValue(motionValues[key]);\n    }\n    let { initial, animate } = props;\n    const isControllingVariants$1 = isControllingVariants(props);\n    const isVariantNode$1 = isVariantNode(props);\n    if (context &&\n        isVariantNode$1 &&\n        !isControllingVariants$1 &&\n        props.inherit !== false) {\n        if (initial === undefined)\n            initial = context.initial;\n        if (animate === undefined)\n            animate = context.animate;\n    }\n    let isInitialAnimationBlocked = presenceContext\n        ? presenceContext.initial === false\n        : false;\n    isInitialAnimationBlocked = isInitialAnimationBlocked || initial === false;\n    const variantToSet = isInitialAnimationBlocked ? animate : initial;\n    if (variantToSet &&\n        typeof variantToSet !== \"boolean\" &&\n        !isAnimationControls(variantToSet)) {\n        const list = Array.isArray(variantToSet) ? variantToSet : [variantToSet];\n        for (let i = 0; i < list.length; i++) {\n            const resolved = resolveVariantFromProps(props, list[i]);\n            if (resolved) {\n                const { transitionEnd, transition, ...target } = resolved;\n                for (const key in target) {\n                    let valueTarget = target[key];\n                    if (Array.isArray(valueTarget)) {\n                        /**\n                         * Take final keyframe if the initial animation is blocked because\n                         * we want to initialise at the end of that blocked animation.\n                         */\n                        const index = isInitialAnimationBlocked\n                            ? valueTarget.length - 1\n                            : 0;\n                        valueTarget = valueTarget[index];\n                    }\n                    if (valueTarget !== null) {\n                        values[key] = valueTarget;\n                    }\n                }\n                for (const key in transitionEnd) {\n                    values[key] = transitionEnd[key];\n                }\n            }\n        }\n    }\n    return values;\n}\n\nexport { makeUseVisualState };\n","/**\n * Provided a value and a ValueType, returns the value as that value type.\n */\nconst getValueAsType = (value, type) => {\n    return type && typeof value === \"number\"\n        ? type.transform(value)\n        : value;\n};\n\nexport { getValueAsType };\n","import { getValueAsType } from '../../dom/value-types/get-as-type.mjs';\nimport { numberValueTypes } from '../../dom/value-types/number.mjs';\nimport { transformPropOrder } from './keys-transform.mjs';\n\nconst translateAlias = {\n    x: \"translateX\",\n    y: \"translateY\",\n    z: \"translateZ\",\n    transformPerspective: \"perspective\",\n};\nconst numTransforms = transformPropOrder.length;\n/**\n * Build a CSS transform style from individual x/y/scale etc properties.\n *\n * This outputs with a default order of transforms/scales/rotations, this can be customised by\n * providing a transformTemplate function.\n */\nfunction buildTransform(latestValues, transform, transformTemplate) {\n    // The transform string we're going to build into.\n    let transformString = \"\";\n    let transformIsDefault = true;\n    /**\n     * Loop over all possible transforms in order, adding the ones that\n     * are present to the transform string.\n     */\n    for (let i = 0; i < numTransforms; i++) {\n        const key = transformPropOrder[i];\n        const value = latestValues[key];\n        if (value === undefined)\n            continue;\n        let valueIsDefault = true;\n        if (typeof value === \"number\") {\n            valueIsDefault = value === (key.startsWith(\"scale\") ? 1 : 0);\n        }\n        else {\n            valueIsDefault = parseFloat(value) === 0;\n        }\n        if (!valueIsDefault || transformTemplate) {\n            const valueAsType = getValueAsType(value, numberValueTypes[key]);\n            if (!valueIsDefault) {\n                transformIsDefault = false;\n                const transformName = translateAlias[key] || key;\n                transformString += `${transformName}(${valueAsType}) `;\n            }\n            if (transformTemplate) {\n                transform[key] = valueAsType;\n            }\n        }\n    }\n    transformString = transformString.trim();\n    // If we have a custom `transform` template, pass our transform values and\n    // generated transformString to that before returning\n    if (transformTemplate) {\n        transformString = transformTemplate(transform, transformIsDefault ? \"\" : transformString);\n    }\n    else if (transformIsDefault) {\n        transformString = \"none\";\n    }\n    return transformString;\n}\n\nexport { buildTransform };\n","import { isCSSVariableName } from '../../dom/utils/is-css-variable.mjs';\nimport { getValueAsType } from '../../dom/value-types/get-as-type.mjs';\nimport { numberValueTypes } from '../../dom/value-types/number.mjs';\nimport { buildTransform } from './build-transform.mjs';\nimport { transformProps } from './keys-transform.mjs';\n\nfunction buildHTMLStyles(state, latestValues, transformTemplate) {\n    const { style, vars, transformOrigin } = state;\n    // Track whether we encounter any transform or transformOrigin values.\n    let hasTransform = false;\n    let hasTransformOrigin = false;\n    /**\n     * Loop over all our latest animated values and decide whether to handle them\n     * as a style or CSS variable.\n     *\n     * Transforms and transform origins are kept separately for further processing.\n     */\n    for (const key in latestValues) {\n        const value = latestValues[key];\n        if (transformProps.has(key)) {\n            // If this is a transform, flag to enable further transform processing\n            hasTransform = true;\n            continue;\n        }\n        else if (isCSSVariableName(key)) {\n            vars[key] = value;\n            continue;\n        }\n        else {\n            // Convert the value to its default value type, ie 0 -> \"0px\"\n            const valueAsType = getValueAsType(value, numberValueTypes[key]);\n            if (key.startsWith(\"origin\")) {\n                // If this is a transform origin, flag and enable further transform-origin processing\n                hasTransformOrigin = true;\n                transformOrigin[key] =\n                    valueAsType;\n            }\n            else {\n                style[key] = valueAsType;\n            }\n        }\n    }\n    if (!latestValues.transform) {\n        if (hasTransform || transformTemplate) {\n            style.transform = buildTransform(latestValues, state.transform, transformTemplate);\n        }\n        else if (style.transform) {\n            /**\n             * If we have previously created a transform but currently don't have any,\n             * reset transform style to none.\n             */\n            style.transform = \"none\";\n        }\n    }\n    /**\n     * Build a transformOrigin style. Uses the same defaults as the browser for\n     * undefined origins.\n     */\n    if (hasTransformOrigin) {\n        const { originX = \"50%\", originY = \"50%\", originZ = 0, } = transformOrigin;\n        style.transformOrigin = `${originX} ${originY} ${originZ}`;\n    }\n}\n\nexport { buildHTMLStyles };\n","import { px } from '../../../value/types/numbers/units.mjs';\n\nconst dashKeys = {\n    offset: \"stroke-dashoffset\",\n    array: \"stroke-dasharray\",\n};\nconst camelKeys = {\n    offset: \"strokeDashoffset\",\n    array: \"strokeDasharray\",\n};\n/**\n * Build SVG path properties. Uses the path's measured length to convert\n * our custom pathLength, pathSpacing and pathOffset into stroke-dashoffset\n * and stroke-dasharray attributes.\n *\n * This function is mutative to reduce per-frame GC.\n */\nfunction buildSVGPath(attrs, length, spacing = 1, offset = 0, useDashCase = true) {\n    // Normalise path length by setting SVG attribute pathLength to 1\n    attrs.pathLength = 1;\n    // We use dash case when setting attributes directly to the DOM node and camel case\n    // when defining props on a React component.\n    const keys = useDashCase ? dashKeys : camelKeys;\n    // Build the dash offset\n    attrs[keys.offset] = px.transform(-offset);\n    // Build the dash array\n    const pathLength = px.transform(length);\n    const pathSpacing = px.transform(spacing);\n    attrs[keys.array] = `${pathLength} ${pathSpacing}`;\n}\n\nexport { buildSVGPath };\n","import { px } from '../../../value/types/numbers/units.mjs';\n\nfunction calcOrigin(origin, offset, size) {\n    return typeof origin === \"string\"\n        ? origin\n        : px.transform(offset + size * origin);\n}\n/**\n * The SVG transform origin defaults are different to CSS and is less intuitive,\n * so we use the measured dimensions of the SVG to reconcile these.\n */\nfunction calcSVGTransformOrigin(dimensions, originX, originY) {\n    const pxOriginX = calcOrigin(originX, dimensions.x, dimensions.width);\n    const pxOriginY = calcOrigin(originY, dimensions.y, dimensions.height);\n    return `${pxOriginX} ${pxOriginY}`;\n}\n\nexport { calcSVGTransformOrigin };\n","import { buildHTMLStyles } from '../../html/utils/build-styles.mjs';\nimport { buildSVGPath } from './path.mjs';\nimport { calcSVGTransformOrigin } from './transform-origin.mjs';\n\n/**\n * Build SVG visual attrbutes, like cx and style.transform\n */\nfunction buildSVGAttrs(state, { attrX, attrY, attrScale, originX, originY, pathLength, pathSpacing = 1, pathOffset = 0, \n// This is object creation, which we try to avoid per-frame.\n...latest }, isSVGTag, transformTemplate) {\n    buildHTMLStyles(state, latest, transformTemplate);\n    /**\n     * For svg tags we just want to make sure viewBox is animatable and treat all the styles\n     * as normal HTML tags.\n     */\n    if (isSVGTag) {\n        if (state.style.viewBox) {\n            state.attrs.viewBox = state.style.viewBox;\n        }\n        return;\n    }\n    state.attrs = state.style;\n    state.style = {};\n    const { attrs, style, dimensions } = state;\n    /**\n     * However, we apply transforms as CSS transforms. So if we detect a transform we take it from attrs\n     * and copy it into style.\n     */\n    if (attrs.transform) {\n        if (dimensions)\n            style.transform = attrs.transform;\n        delete attrs.transform;\n    }\n    // Parse transformOrigin\n    if (dimensions &&\n        (originX !== undefined || originY !== undefined || style.transform)) {\n        style.transformOrigin = calcSVGTransformOrigin(dimensions, originX !== undefined ? originX : 0.5, originY !== undefined ? originY : 0.5);\n    }\n    // Render attrX/attrY/attrScale as attributes\n    if (attrX !== undefined)\n        attrs.x = attrX;\n    if (attrY !== undefined)\n        attrs.y = attrY;\n    if (attrScale !== undefined)\n        attrs.scale = attrScale;\n    // Build SVG path if one has been defined\n    if (pathLength !== undefined) {\n        buildSVGPath(attrs, pathLength, pathSpacing, pathOffset, false);\n    }\n}\n\nexport { buildSVGAttrs };\n","const createHtmlRenderState = () => ({\n    style: {},\n    transform: {},\n    transformOrigin: {},\n    vars: {},\n});\n\nexport { createHtmlRenderState };\n","const isSVGTag = (tag) => typeof tag === \"string\" && tag.toLowerCase() === \"svg\";\n\nexport { isSVGTag };\n","function renderHTML(element, { style, vars }, styleProp, projection) {\n    Object.assign(element.style, style, projection && projection.getProjectionStyles(styleProp));\n    // Loop over any CSS variables and assign those.\n    for (const key in vars) {\n        element.style.setProperty(key, vars[key]);\n    }\n}\n\nexport { renderHTML };\n","/**\n * A set of attribute names that are always read/written as camel case.\n */\nconst camelCaseAttributes = new Set([\n    \"baseFrequency\",\n    \"diffuseConstant\",\n    \"kernelMatrix\",\n    \"kernelUnitLength\",\n    \"keySplines\",\n    \"keyTimes\",\n    \"limitingConeAngle\",\n    \"markerHeight\",\n    \"markerWidth\",\n    \"numOctaves\",\n    \"targetX\",\n    \"targetY\",\n    \"surfaceScale\",\n    \"specularConstant\",\n    \"specularExponent\",\n    \"stdDeviation\",\n    \"tableValues\",\n    \"viewBox\",\n    \"gradientTransform\",\n    \"pathLength\",\n    \"startOffset\",\n    \"textLength\",\n    \"lengthAdjust\",\n]);\n\nexport { camelCaseAttributes };\n","import { camelToDash } from '../../dom/utils/camel-to-dash.mjs';\nimport { renderHTML } from '../../html/utils/render.mjs';\nimport { camelCaseAttributes } from './camel-case-attrs.mjs';\n\nfunction renderSVG(element, renderState, _styleProp, projection) {\n    renderHTML(element, renderState, undefined, projection);\n    for (const key in renderState.attrs) {\n        element.setAttribute(!camelCaseAttributes.has(key) ? camelToDash(key) : key, renderState.attrs[key]);\n    }\n}\n\nexport { renderSVG };\n","import { scaleCorrectors } from '../../projection/styles/scale-correction.mjs';\nimport { transformProps } from '../../render/html/utils/keys-transform.mjs';\n\nfunction isForcedMotionValue(key, { layout, layoutId }) {\n    return (transformProps.has(key) ||\n        key.startsWith(\"origin\") ||\n        ((layout || layoutId !== undefined) &&\n            (!!scaleCorrectors[key] || key === \"opacity\")));\n}\n\nexport { isForcedMotionValue };\n","import { isForcedMotionValue } from '../../../motion/utils/is-forced-motion-value.mjs';\nimport { isMotionValue } from '../../../value/utils/is-motion-value.mjs';\n\nfunction scrapeMotionValuesFromProps(props, prevProps, visualElement) {\n    var _a;\n    const { style } = props;\n    const newValues = {};\n    for (const key in style) {\n        if (isMotionValue(style[key]) ||\n            (prevProps.style &&\n                isMotionValue(prevProps.style[key])) ||\n            isForcedMotionValue(key, props) ||\n            ((_a = visualElement === null || visualElement === void 0 ? void 0 : visualElement.getValue(key)) === null || _a === void 0 ? void 0 : _a.liveStyle) !== undefined) {\n            newValues[key] = style[key];\n        }\n    }\n    return newValues;\n}\n\nexport { scrapeMotionValuesFromProps };\n","import { isMotionValue } from '../../../value/utils/is-motion-value.mjs';\nimport { transformPropOrder } from '../../html/utils/keys-transform.mjs';\nimport { scrapeMotionValuesFromProps as scrapeMotionValuesFromProps$1 } from '../../html/utils/scrape-motion-values.mjs';\n\nfunction scrapeMotionValuesFromProps(props, prevProps, visualElement) {\n    const newValues = scrapeMotionValuesFromProps$1(props, prevProps, visualElement);\n    for (const key in props) {\n        if (isMotionValue(props[key]) ||\n            isMotionValue(prevProps[key])) {\n            const targetKey = transformPropOrder.indexOf(key) !== -1\n                ? \"attr\" + key.charAt(0).toUpperCase() + key.substring(1)\n                : key;\n            newValues[targetKey] = props[key];\n        }\n    }\n    return newValues;\n}\n\nexport { scrapeMotionValuesFromProps };\n","import { frame } from '../../frameloop/frame.mjs';\nimport { makeUseVisualState } from '../../motion/utils/use-visual-state.mjs';\nimport { transformProps } from '../html/utils/keys-transform.mjs';\nimport { buildSVGAttrs } from './utils/build-attrs.mjs';\nimport { createSvgRenderState } from './utils/create-render-state.mjs';\nimport { isSVGTag } from './utils/is-svg-tag.mjs';\nimport { renderSVG } from './utils/render.mjs';\nimport { scrapeMotionValuesFromProps } from './utils/scrape-motion-values.mjs';\n\nfunction updateSVGDimensions(instance, renderState) {\n    try {\n        renderState.dimensions =\n            typeof instance.getBBox === \"function\"\n                ? instance.getBBox()\n                : instance.getBoundingClientRect();\n    }\n    catch (e) {\n        // Most likely trying to measure an unrendered element under Firefox\n        renderState.dimensions = {\n            x: 0,\n            y: 0,\n            width: 0,\n            height: 0,\n        };\n    }\n}\nconst layoutProps = [\"x\", \"y\", \"width\", \"height\", \"cx\", \"cy\", \"r\"];\nconst svgMotionConfig = {\n    useVisualState: makeUseVisualState({\n        scrapeMotionValuesFromProps: scrapeMotionValuesFromProps,\n        createRenderState: createSvgRenderState,\n        onUpdate: ({ props, prevProps, current, renderState, latestValues, }) => {\n            if (!current)\n                return;\n            let hasTransform = !!props.drag;\n            if (!hasTransform) {\n                for (const key in latestValues) {\n                    if (transformProps.has(key)) {\n                        hasTransform = true;\n                        break;\n                    }\n                }\n            }\n            if (!hasTransform)\n                return;\n            let needsMeasure = !prevProps;\n            if (prevProps) {\n                /**\n                 * Check the layout props for changes, if any are found we need to\n                 * measure the element again.\n                 */\n                for (let i = 0; i < layoutProps.length; i++) {\n                    const key = layoutProps[i];\n                    if (props[key] !==\n                        prevProps[key]) {\n                        needsMeasure = true;\n                    }\n                }\n            }\n            if (!needsMeasure)\n                return;\n            frame.read(() => {\n                updateSVGDimensions(current, renderState);\n                frame.render(() => {\n                    buildSVGAttrs(renderState, latestValues, isSVGTag(current.tagName), props.transformTemplate);\n                    renderSVG(current, renderState);\n                });\n            });\n        },\n    }),\n};\n\nexport { svgMotionConfig };\n","import { createHtmlRenderState } from '../../html/utils/create-render-state.mjs';\n\nconst createSvgRenderState = () => ({\n    ...createHtmlRenderState(),\n    attrs: {},\n});\n\nexport { createSvgRenderState };\n","import { makeUseVisualState } from '../../motion/utils/use-visual-state.mjs';\nimport { scrapeMotionValuesFromProps } from './utils/scrape-motion-values.mjs';\nimport { createHtmlRenderState } from './utils/create-render-state.mjs';\n\nconst htmlMotionConfig = {\n    useVisualState: makeUseVisualState({\n        scrapeMotionValuesFromProps,\n        createRenderState: createHtmlRenderState,\n    }),\n};\n\nexport { htmlMotionConfig };\n","import { useMemo } from 'react';\nimport { isForcedMotionValue } from '../../motion/utils/is-forced-motion-value.mjs';\nimport { isMotionValue } from '../../value/utils/is-motion-value.mjs';\nimport { buildHTMLStyles } from './utils/build-styles.mjs';\nimport { createHtmlRenderState } from './utils/create-render-state.mjs';\n\nfunction copyRawValuesOnly(target, source, props) {\n    for (const key in source) {\n        if (!isMotionValue(source[key]) && !isForcedMotionValue(key, props)) {\n            target[key] = source[key];\n        }\n    }\n}\nfunction useInitialMotionValues({ transformTemplate }, visualState) {\n    return useMemo(() => {\n        const state = createHtmlRenderState();\n        buildHTMLStyles(state, visualState, transformTemplate);\n        return Object.assign({}, state.vars, state.style);\n    }, [visualState]);\n}\nfunction useStyle(props, visualState) {\n    const styleProp = props.style || {};\n    const style = {};\n    /**\n     * Copy non-Motion Values straight into style\n     */\n    copyRawValuesOnly(style, styleProp, props);\n    Object.assign(style, useInitialMotionValues(props, visualState));\n    return style;\n}\nfunction useHTMLProps(props, visualState) {\n    // The `any` isn't ideal but it is the type of createElement props argument\n    const htmlProps = {};\n    const style = useStyle(props, visualState);\n    if (props.drag && props.dragListener !== false) {\n        // Disable the ghost element when a user drags\n        htmlProps.draggable = false;\n        // Disable text selection\n        style.userSelect =\n            style.WebkitUserSelect =\n                style.WebkitTouchCallout =\n                    \"none\";\n        // Disable scrolling on the draggable direction\n        style.touchAction =\n            props.drag === true\n                ? \"none\"\n                : `pan-${props.drag === \"x\" ? \"y\" : \"x\"}`;\n    }\n    if (props.tabIndex === undefined &&\n        (props.onTap || props.onTapStart || props.whileTap)) {\n        htmlProps.tabIndex = 0;\n    }\n    htmlProps.style = style;\n    return htmlProps;\n}\n\nexport { copyRawValuesOnly, useHTMLProps };\n","/**\n * A list of all valid MotionProps.\n *\n * @privateRemarks\n * This doesn't throw if a `MotionProp` name is missing - it should.\n */\nconst validMotionProps = new Set([\n    \"animate\",\n    \"exit\",\n    \"variants\",\n    \"initial\",\n    \"style\",\n    \"values\",\n    \"variants\",\n    \"transition\",\n    \"transformTemplate\",\n    \"custom\",\n    \"inherit\",\n    \"onBeforeLayoutMeasure\",\n    \"onAnimationStart\",\n    \"onAnimationComplete\",\n    \"onUpdate\",\n    \"onDragStart\",\n    \"onDrag\",\n    \"onDragEnd\",\n    \"onMeasureDragConstraints\",\n    \"onDirectionLock\",\n    \"onDragTransitionEnd\",\n    \"_dragX\",\n    \"_dragY\",\n    \"onHoverStart\",\n    \"onHoverEnd\",\n    \"onViewportEnter\",\n    \"onViewportLeave\",\n    \"globalTapTarget\",\n    \"ignoreStrict\",\n    \"viewport\",\n]);\n/**\n * Check whether a prop name is a valid `MotionProp` key.\n *\n * @param key - Name of the property to check\n * @returns `true` is key is a valid `MotionProp`.\n *\n * @public\n */\nfunction isValidMotionProp(key) {\n    return (key.startsWith(\"while\") ||\n        (key.startsWith(\"drag\") && key !== \"draggable\") ||\n        key.startsWith(\"layout\") ||\n        key.startsWith(\"onTap\") ||\n        key.startsWith(\"onPan\") ||\n        key.startsWith(\"onLayout\") ||\n        validMotionProps.has(key));\n}\n\nexport { isValidMotionProp };\n","import { isValidMotionProp } from '../../../motion/utils/valid-prop.mjs';\n\nlet shouldForward = (key) => !isValidMotionProp(key);\nfunction loadExternalIsValidProp(isValidProp) {\n    if (!isValidProp)\n        return;\n    // Explicitly filter our events\n    shouldForward = (key) => key.startsWith(\"on\") ? !isValidMotionProp(key) : isValidProp(key);\n}\n/**\n * Emotion and Styled Components both allow users to pass through arbitrary props to their components\n * to dynamically generate CSS. They both use the `@emotion/is-prop-valid` package to determine which\n * of these should be passed to the underlying DOM node.\n *\n * However, when styling a Motion component `styled(motion.div)`, both packages pass through *all* props\n * as it's seen as an arbitrary component rather than a DOM node. Motion only allows arbitrary props\n * passed through the `custom` prop so it doesn't *need* the payload or computational overhead of\n * `@emotion/is-prop-valid`, however to fix this problem we need to use it.\n *\n * By making it an optionalDependency we can offer this functionality only in the situations where it's\n * actually required.\n */\ntry {\n    /**\n     * We attempt to import this package but require won't be defined in esm environments, in that case\n     * isPropValid will have to be provided via `MotionContext`. In a 6.0.0 this should probably be removed\n     * in favour of explicit injection.\n     */\n    loadExternalIsValidProp(require(\"@emotion/is-prop-valid\").default);\n}\ncatch (_a) {\n    // We don't need to actually do anything here - the fallback is the existing `isPropValid`.\n}\nfunction filterProps(props, isDom, forwardMotionProps) {\n    const filteredProps = {};\n    for (const key in props) {\n        /**\n         * values is considered a valid prop by Emotion, so if it's present\n         * this will be rendered out to the DOM unless explicitly filtered.\n         *\n         * We check the type as it could be used with the `feColorMatrix`\n         * element, which we support.\n         */\n        if (key === \"values\" && typeof props.values === \"object\")\n            continue;\n        if (shouldForward(key) ||\n            (forwardMotionProps === true && isValidMotionProp(key)) ||\n            (!isDom && !isValidMotionProp(key)) ||\n            // If trying to use native HTML drag events, forward drag listeners\n            (props[\"draggable\"] &&\n                key.startsWith(\"onDrag\"))) {\n            filteredProps[key] =\n                props[key];\n        }\n    }\n    return filteredProps;\n}\n\nexport { filterProps, loadExternalIsValidProp };\n","import { useMemo } from 'react';\nimport { copyRawValuesOnly } from '../html/use-props.mjs';\nimport { buildSVGAttrs } from './utils/build-attrs.mjs';\nimport { createSvgRenderState } from './utils/create-render-state.mjs';\nimport { isSVGTag } from './utils/is-svg-tag.mjs';\n\nfunction useSVGProps(props, visualState, _isStatic, Component) {\n    const visualProps = useMemo(() => {\n        const state = createSvgRenderState();\n        buildSVGAttrs(state, visualState, isSVGTag(Component), props.transformTemplate);\n        return {\n            ...state.attrs,\n            style: { ...state.style },\n        };\n    }, [visualState]);\n    if (props.style) {\n        const rawStyles = {};\n        copyRawValuesOnly(rawStyles, props.style, props);\n        visualProps.style = { ...rawStyles, ...visualProps.style };\n    }\n    return visualProps;\n}\n\nexport { useSVGProps };\n","import { Fragment, useMemo, createElement } from 'react';\nimport { useHTMLProps } from '../html/use-props.mjs';\nimport { filterProps } from './utils/filter-props.mjs';\nimport { isSVGComponent } from './utils/is-svg-component.mjs';\nimport { useSVGProps } from '../svg/use-props.mjs';\nimport { isMotionValue } from '../../value/utils/is-motion-value.mjs';\n\nfunction createUseRender(forwardMotionProps = false) {\n    const useRender = (Component, props, ref, { latestValues }, isStatic) => {\n        const useVisualProps = isSVGComponent(Component)\n            ? useSVGProps\n            : useHTMLProps;\n        const visualProps = useVisualProps(props, latestValues, isStatic, Component);\n        const filteredProps = filterProps(props, typeof Component === \"string\", forwardMotionProps);\n        const elementProps = Component !== Fragment\n            ? { ...filteredProps, ...visualProps, ref }\n            : {};\n        /**\n         * If component has been handed a motion value as its child,\n         * memoise its initial value and render that. Subsequent updates\n         * will be handled by the onChange handler\n         */\n        const { children } = props;\n        const renderedChildren = useMemo(() => (isMotionValue(children) ? children.get() : children), [children]);\n        return createElement(Component, {\n            ...elementProps,\n            children: renderedChildren,\n        });\n    };\n    return useRender;\n}\n\nexport { createUseRender };\n","import { createRendererMotionComponent } from '../../motion/index.mjs';\nimport { isSVGComponent } from '../dom/utils/is-svg-component.mjs';\nimport { svgMotionConfig } from '../svg/config-motion.mjs';\nimport { htmlMotionConfig } from '../html/config-motion.mjs';\nimport { createUseRender } from '../dom/use-render.mjs';\n\nfunction createMotionComponentFactory(preloadedFeatures, createVisualElement) {\n    return function createMotionComponent(Component, { forwardMotionProps } = { forwardMotionProps: false }) {\n        const baseConfig = isSVGComponent(Component)\n            ? svgMotionConfig\n            : htmlMotionConfig;\n        const config = {\n            ...baseConfig,\n            preloadedFeatures,\n            useRender: createUseRender(forwardMotionProps),\n            createVisualElement,\n            Component,\n        };\n        return createRendererMotionComponent(config);\n    };\n}\n\nexport { createMotionComponentFactory };\n","// Does this device prefer reduced motion? Returns `null` server-side.\nconst prefersReducedMotion = { current: null };\nconst hasReducedMotionListener = { current: false };\n\nexport { hasReducedMotionListener, prefersReducedMotion };\n","import { color } from '../../../value/types/color/index.mjs';\nimport { complex } from '../../../value/types/complex/index.mjs';\nimport { dimensionValueTypes } from './dimensions.mjs';\nimport { testValueType } from './test.mjs';\n\n/**\n * A list of all ValueTypes\n */\nconst valueTypes = [...dimensionValueTypes, color, complex];\n/**\n * Tests a value against the list of ValueTypes\n */\nconst findValueType = (v) => valueTypes.find(testValueType(v));\n\nexport { findValueType };\n","const visualElementStore = new WeakMap();\n\nexport { visualElementStore };\n","import { time } from '../frameloop/sync-time.mjs';\nimport { featureDefinitions } from '../motion/features/definitions.mjs';\nimport { createBox } from '../projection/geometry/models.mjs';\nimport { isNumericalString } from '../utils/is-numerical-string.mjs';\nimport { isZeroValueString } from '../utils/is-zero-value-string.mjs';\nimport { initPrefersReducedMotion } from '../utils/reduced-motion/index.mjs';\nimport { hasReducedMotionListener, prefersReducedMotion } from '../utils/reduced-motion/state.mjs';\nimport { SubscriptionManager } from '../utils/subscription-manager.mjs';\nimport { warnOnce } from '../utils/warn-once.mjs';\nimport { motionValue } from '../value/index.mjs';\nimport { complex } from '../value/types/complex/index.mjs';\nimport { isMotionValue } from '../value/utils/is-motion-value.mjs';\nimport { getAnimatableNone } from './dom/value-types/animatable-none.mjs';\nimport { findValueType } from './dom/value-types/find.mjs';\nimport { transformProps } from './html/utils/keys-transform.mjs';\nimport { visualElementStore } from './store.mjs';\nimport { isControllingVariants, isVariantNode } from './utils/is-controlling-variants.mjs';\nimport { KeyframeResolver } from './utils/KeyframesResolver.mjs';\nimport { updateMotionValuesFromProps } from './utils/motion-values.mjs';\nimport { resolveVariantFromProps } from './utils/resolve-variants.mjs';\nimport { frame, cancelFrame } from '../frameloop/frame.mjs';\n\nconst propEventHandlers = [\n    \"AnimationStart\",\n    \"AnimationComplete\",\n    \"Update\",\n    \"BeforeLayoutMeasure\",\n    \"LayoutMeasure\",\n    \"LayoutAnimationStart\",\n    \"LayoutAnimationComplete\",\n];\n/**\n * A VisualElement is an imperative abstraction around UI elements such as\n * HTMLElement, SVGElement, Three.Object3D etc.\n */\nclass VisualElement {\n    /**\n     * This method takes React props and returns found MotionValues. For example, HTML\n     * MotionValues will be found within the style prop, whereas for Three.js within attribute arrays.\n     *\n     * This isn't an abstract method as it needs calling in the constructor, but it is\n     * intended to be one.\n     */\n    scrapeMotionValuesFromProps(_props, _prevProps, _visualElement) {\n        return {};\n    }\n    constructor({ parent, props, presenceContext, reducedMotionConfig, blockInitialAnimation, visualState, }, options = {}) {\n        /**\n         * A reference to the current underlying Instance, e.g. a HTMLElement\n         * or Three.Mesh etc.\n         */\n        this.current = null;\n        /**\n         * A set containing references to this VisualElement's children.\n         */\n        this.children = new Set();\n        /**\n         * Determine what role this visual element should take in the variant tree.\n         */\n        this.isVariantNode = false;\n        this.isControllingVariants = false;\n        /**\n         * Decides whether this VisualElement should animate in reduced motion\n         * mode.\n         *\n         * TODO: This is currently set on every individual VisualElement but feels\n         * like it could be set globally.\n         */\n        this.shouldReduceMotion = null;\n        /**\n         * A map of all motion values attached to this visual element. Motion\n         * values are source of truth for any given animated value. A motion\n         * value might be provided externally by the component via props.\n         */\n        this.values = new Map();\n        this.KeyframeResolver = KeyframeResolver;\n        /**\n         * Cleanup functions for active features (hover/tap/exit etc)\n         */\n        this.features = {};\n        /**\n         * A map of every subscription that binds the provided or generated\n         * motion values onChange listeners to this visual element.\n         */\n        this.valueSubscriptions = new Map();\n        /**\n         * A reference to the previously-provided motion values as returned\n         * from scrapeMotionValuesFromProps. We use the keys in here to determine\n         * if any motion values need to be removed after props are updated.\n         */\n        this.prevMotionValues = {};\n        /**\n         * An object containing a SubscriptionManager for each active event.\n         */\n        this.events = {};\n        /**\n         * An object containing an unsubscribe function for each prop event subscription.\n         * For example, every \"Update\" event can have multiple subscribers via\n         * VisualElement.on(), but only one of those can be defined via the onUpdate prop.\n         */\n        this.propEventSubscriptions = {};\n        this.notifyUpdate = () => this.notify(\"Update\", this.latestValues);\n        this.render = () => {\n            if (!this.current)\n                return;\n            this.triggerBuild();\n            this.renderInstance(this.current, this.renderState, this.props.style, this.projection);\n        };\n        this.renderScheduledAt = 0.0;\n        this.scheduleRender = () => {\n            const now = time.now();\n            if (this.renderScheduledAt < now) {\n                this.renderScheduledAt = now;\n                frame.render(this.render, false, true);\n            }\n        };\n        const { latestValues, renderState, onUpdate } = visualState;\n        this.onUpdate = onUpdate;\n        this.latestValues = latestValues;\n        this.baseTarget = { ...latestValues };\n        this.initialValues = props.initial ? { ...latestValues } : {};\n        this.renderState = renderState;\n        this.parent = parent;\n        this.props = props;\n        this.presenceContext = presenceContext;\n        this.depth = parent ? parent.depth + 1 : 0;\n        this.reducedMotionConfig = reducedMotionConfig;\n        this.options = options;\n        this.blockInitialAnimation = Boolean(blockInitialAnimation);\n        this.isControllingVariants = isControllingVariants(props);\n        this.isVariantNode = isVariantNode(props);\n        if (this.isVariantNode) {\n            this.variantChildren = new Set();\n        }\n        this.manuallyAnimateOnMount = Boolean(parent && parent.current);\n        /**\n         * Any motion values that are provided to the element when created\n         * aren't yet bound to the element, as this would technically be impure.\n         * However, we iterate through the motion values and set them to the\n         * initial values for this component.\n         *\n         * TODO: This is impure and we should look at changing this to run on mount.\n         * Doing so will break some tests but this isn't necessarily a breaking change,\n         * more a reflection of the test.\n         */\n        const { willChange, ...initialMotionValues } = this.scrapeMotionValuesFromProps(props, {}, this);\n        for (const key in initialMotionValues) {\n            const value = initialMotionValues[key];\n            if (latestValues[key] !== undefined && isMotionValue(value)) {\n                value.set(latestValues[key], false);\n            }\n        }\n    }\n    mount(instance) {\n        this.current = instance;\n        visualElementStore.set(instance, this);\n        if (this.projection && !this.projection.instance) {\n            this.projection.mount(instance);\n        }\n        if (this.parent && this.isVariantNode && !this.isControllingVariants) {\n            this.removeFromVariantTree = this.parent.addVariantChild(this);\n        }\n        this.values.forEach((value, key) => this.bindToMotionValue(key, value));\n        if (!hasReducedMotionListener.current) {\n            initPrefersReducedMotion();\n        }\n        this.shouldReduceMotion =\n            this.reducedMotionConfig === \"never\"\n                ? false\n                : this.reducedMotionConfig === \"always\"\n                    ? true\n                    : prefersReducedMotion.current;\n        if (process.env.NODE_ENV !== \"production\") {\n            warnOnce(this.shouldReduceMotion !== true, \"You have Reduced Motion enabled on your device. Animations may not appear as expected.\");\n        }\n        if (this.parent)\n            this.parent.children.add(this);\n        this.update(this.props, this.presenceContext);\n    }\n    unmount() {\n        visualElementStore.delete(this.current);\n        this.projection && this.projection.unmount();\n        cancelFrame(this.notifyUpdate);\n        cancelFrame(this.render);\n        this.valueSubscriptions.forEach((remove) => remove());\n        this.valueSubscriptions.clear();\n        this.removeFromVariantTree && this.removeFromVariantTree();\n        this.parent && this.parent.children.delete(this);\n        for (const key in this.events) {\n            this.events[key].clear();\n        }\n        for (const key in this.features) {\n            const feature = this.features[key];\n            if (feature) {\n                feature.unmount();\n                feature.isMounted = false;\n            }\n        }\n        this.current = null;\n    }\n    bindToMotionValue(key, value) {\n        if (this.valueSubscriptions.has(key)) {\n            this.valueSubscriptions.get(key)();\n        }\n        const valueIsTransform = transformProps.has(key);\n        const removeOnChange = value.on(\"change\", (latestValue) => {\n            this.latestValues[key] = latestValue;\n            this.props.onUpdate && frame.preRender(this.notifyUpdate);\n            if (valueIsTransform && this.projection) {\n                this.projection.isTransformDirty = true;\n            }\n        });\n        const removeOnRenderRequest = value.on(\"renderRequest\", this.scheduleRender);\n        let removeSyncCheck;\n        if (window.MotionCheckAppearSync) {\n            removeSyncCheck = window.MotionCheckAppearSync(this, key, value);\n        }\n        this.valueSubscriptions.set(key, () => {\n            removeOnChange();\n            removeOnRenderRequest();\n            if (removeSyncCheck)\n                removeSyncCheck();\n            if (value.owner)\n                value.stop();\n        });\n    }\n    sortNodePosition(other) {\n        /**\n         * If these nodes aren't even of the same type we can't compare their depth.\n         */\n        if (!this.current ||\n            !this.sortInstanceNodePosition ||\n            this.type !== other.type) {\n            return 0;\n        }\n        return this.sortInstanceNodePosition(this.current, other.current);\n    }\n    updateFeatures() {\n        let key = \"animation\";\n        for (key in featureDefinitions) {\n            const featureDefinition = featureDefinitions[key];\n            if (!featureDefinition)\n                continue;\n            const { isEnabled, Feature: FeatureConstructor } = featureDefinition;\n            /**\n             * If this feature is enabled but not active, make a new instance.\n             */\n            if (!this.features[key] &&\n                FeatureConstructor &&\n                isEnabled(this.props)) {\n                this.features[key] = new FeatureConstructor(this);\n            }\n            /**\n             * If we have a feature, mount or update it.\n             */\n            if (this.features[key]) {\n                const feature = this.features[key];\n                if (feature.isMounted) {\n                    feature.update();\n                }\n                else {\n                    feature.mount();\n                    feature.isMounted = true;\n                }\n            }\n        }\n    }\n    triggerBuild() {\n        this.build(this.renderState, this.latestValues, this.props);\n    }\n    /**\n     * Measure the current viewport box with or without transforms.\n     * Only measures axis-aligned boxes, rotate and skew must be manually\n     * removed with a re-render to work.\n     */\n    measureViewportBox() {\n        return this.current\n            ? this.measureInstanceViewportBox(this.current, this.props)\n            : createBox();\n    }\n    getStaticValue(key) {\n        return this.latestValues[key];\n    }\n    setStaticValue(key, value) {\n        this.latestValues[key] = value;\n    }\n    /**\n     * Update the provided props. Ensure any newly-added motion values are\n     * added to our map, old ones removed, and listeners updated.\n     */\n    update(props, presenceContext) {\n        if (props.transformTemplate || this.props.transformTemplate) {\n            this.scheduleRender();\n        }\n        this.prevProps = this.props;\n        this.props = props;\n        this.prevPresenceContext = this.presenceContext;\n        this.presenceContext = presenceContext;\n        /**\n         * Update prop event handlers ie onAnimationStart, onAnimationComplete\n         */\n        for (let i = 0; i < propEventHandlers.length; i++) {\n            const key = propEventHandlers[i];\n            if (this.propEventSubscriptions[key]) {\n                this.propEventSubscriptions[key]();\n                delete this.propEventSubscriptions[key];\n            }\n            const listenerName = (\"on\" + key);\n            const listener = props[listenerName];\n            if (listener) {\n                this.propEventSubscriptions[key] = this.on(key, listener);\n            }\n        }\n        this.prevMotionValues = updateMotionValuesFromProps(this, this.scrapeMotionValuesFromProps(props, this.prevProps, this), this.prevMotionValues);\n        if (this.handleChildMotionValue) {\n            this.handleChildMotionValue();\n        }\n        this.onUpdate && this.onUpdate(this);\n    }\n    getProps() {\n        return this.props;\n    }\n    /**\n     * Returns the variant definition with a given name.\n     */\n    getVariant(name) {\n        return this.props.variants ? this.props.variants[name] : undefined;\n    }\n    /**\n     * Returns the defined default transition on this component.\n     */\n    getDefaultTransition() {\n        return this.props.transition;\n    }\n    getTransformPagePoint() {\n        return this.props.transformPagePoint;\n    }\n    getClosestVariantNode() {\n        return this.isVariantNode\n            ? this\n            : this.parent\n                ? this.parent.getClosestVariantNode()\n                : undefined;\n    }\n    /**\n     * Add a child visual element to our set of children.\n     */\n    addVariantChild(child) {\n        const closestVariantNode = this.getClosestVariantNode();\n        if (closestVariantNode) {\n            closestVariantNode.variantChildren &&\n                closestVariantNode.variantChildren.add(child);\n            return () => closestVariantNode.variantChildren.delete(child);\n        }\n    }\n    /**\n     * Add a motion value and bind it to this visual element.\n     */\n    addValue(key, value) {\n        // Remove existing value if it exists\n        const existingValue = this.values.get(key);\n        if (value !== existingValue) {\n            if (existingValue)\n                this.removeValue(key);\n            this.bindToMotionValue(key, value);\n            this.values.set(key, value);\n            this.latestValues[key] = value.get();\n        }\n    }\n    /**\n     * Remove a motion value and unbind any active subscriptions.\n     */\n    removeValue(key) {\n        this.values.delete(key);\n        const unsubscribe = this.valueSubscriptions.get(key);\n        if (unsubscribe) {\n            unsubscribe();\n            this.valueSubscriptions.delete(key);\n        }\n        delete this.latestValues[key];\n        this.removeValueFromRenderState(key, this.renderState);\n    }\n    /**\n     * Check whether we have a motion value for this key\n     */\n    hasValue(key) {\n        return this.values.has(key);\n    }\n    getValue(key, defaultValue) {\n        if (this.props.values && this.props.values[key]) {\n            return this.props.values[key];\n        }\n        let value = this.values.get(key);\n        if (value === undefined && defaultValue !== undefined) {\n            value = motionValue(defaultValue === null ? undefined : defaultValue, { owner: this });\n            this.addValue(key, value);\n        }\n        return value;\n    }\n    /**\n     * If we're trying to animate to a previously unencountered value,\n     * we need to check for it in our state and as a last resort read it\n     * directly from the instance (which might have performance implications).\n     */\n    readValue(key, target) {\n        var _a;\n        let value = this.latestValues[key] !== undefined || !this.current\n            ? this.latestValues[key]\n            : (_a = this.getBaseTargetFromProps(this.props, key)) !== null && _a !== void 0 ? _a : this.readValueFromInstance(this.current, key, this.options);\n        if (value !== undefined && value !== null) {\n            if (typeof value === \"string\" &&\n                (isNumericalString(value) || isZeroValueString(value))) {\n                // If this is a number read as a string, ie \"0\" or \"200\", convert it to a number\n                value = parseFloat(value);\n            }\n            else if (!findValueType(value) && complex.test(target)) {\n                value = getAnimatableNone(key, target);\n            }\n            this.setBaseTarget(key, isMotionValue(value) ? value.get() : value);\n        }\n        return isMotionValue(value) ? value.get() : value;\n    }\n    /**\n     * Set the base target to later animate back to. This is currently\n     * only hydrated on creation and when we first read a value.\n     */\n    setBaseTarget(key, value) {\n        this.baseTarget[key] = value;\n    }\n    /**\n     * Find the base target for a value thats been removed from all animation\n     * props.\n     */\n    getBaseTarget(key) {\n        var _a;\n        const { initial } = this.props;\n        let valueFromInitial;\n        if (typeof initial === \"string\" || typeof initial === \"object\") {\n            const variant = resolveVariantFromProps(this.props, initial, (_a = this.presenceContext) === null || _a === void 0 ? void 0 : _a.custom);\n            if (variant) {\n                valueFromInitial = variant[key];\n            }\n        }\n        /**\n         * If this value still exists in the current initial variant, read that.\n         */\n        if (initial && valueFromInitial !== undefined) {\n            return valueFromInitial;\n        }\n        /**\n         * Alternatively, if this VisualElement config has defined a getBaseTarget\n         * so we can read the value from an alternative source, try that.\n         */\n        const target = this.getBaseTargetFromProps(this.props, key);\n        if (target !== undefined && !isMotionValue(target))\n            return target;\n        /**\n         * If the value was initially defined on initial, but it doesn't any more,\n         * return undefined. Otherwise return the value as initially read from the DOM.\n         */\n        return this.initialValues[key] !== undefined &&\n            valueFromInitial === undefined\n            ? undefined\n            : this.baseTarget[key];\n    }\n    on(eventName, callback) {\n        if (!this.events[eventName]) {\n            this.events[eventName] = new SubscriptionManager();\n        }\n        return this.events[eventName].add(callback);\n    }\n    notify(eventName, ...args) {\n        if (this.events[eventName]) {\n            this.events[eventName].notify(...args);\n        }\n    }\n}\n\nexport { VisualElement };\n","import { isBrowser } from '../is-browser.mjs';\nimport { hasReducedMotionListener, prefersReducedMotion } from './state.mjs';\n\nfunction initPrefersReducedMotion() {\n    hasReducedMotionListener.current = true;\n    if (!isBrowser)\n        return;\n    if (window.matchMedia) {\n        const motionMediaQuery = window.matchMedia(\"(prefers-reduced-motion)\");\n        const setReducedMotionPreferences = () => (prefersReducedMotion.current = motionMediaQuery.matches);\n        motionMediaQuery.addListener(setReducedMotionPreferences);\n        setReducedMotionPreferences();\n    }\n    else {\n        prefersReducedMotion.current = false;\n    }\n}\n\nexport { initPrefersReducedMotion };\n","import { warnOnce } from '../../utils/warn-once.mjs';\nimport { motionValue } from '../../value/index.mjs';\nimport { isMotionValue } from '../../value/utils/is-motion-value.mjs';\n\nfunction updateMotionValuesFromProps(element, next, prev) {\n    for (const key in next) {\n        const nextValue = next[key];\n        const prevValue = prev[key];\n        if (isMotionValue(nextValue)) {\n            /**\n             * If this is a motion value found in props or style, we want to add it\n             * to our visual element's motion value map.\n             */\n            element.addValue(key, nextValue);\n            /**\n             * Check the version of the incoming motion value with this version\n             * and warn against mismatches.\n             */\n            if (process.env.NODE_ENV === \"development\") {\n                warnOnce(nextValue.version === \"11.18.2\", `Attempting to mix Motion versions ${nextValue.version} with 11.18.2 may not work as expected.`);\n            }\n        }\n        else if (isMotionValue(prevValue)) {\n            /**\n             * If we're swapping from a motion value to a static value,\n             * create a new motion value from that\n             */\n            element.addValue(key, motionValue(nextValue, { owner: element }));\n        }\n        else if (prevValue !== nextValue) {\n            /**\n             * If this is a flat value that has changed, update the motion value\n             * or create one if it doesn't exist. We only want to do this if we're\n             * not handling the value with our animation state.\n             */\n            if (element.hasValue(key)) {\n                const existingValue = element.getValue(key);\n                if (existingValue.liveStyle === true) {\n                    existingValue.jump(nextValue);\n                }\n                else if (!existingValue.hasAnimated) {\n                    existingValue.set(nextValue);\n                }\n            }\n            else {\n                const latestValue = element.getStaticValue(key);\n                element.addValue(key, motionValue(latestValue !== undefined ? latestValue : nextValue, { owner: element }));\n            }\n        }\n    }\n    // Handle removed values\n    for (const key in prev) {\n        if (next[key] === undefined)\n            element.removeValue(key);\n    }\n    return next;\n}\n\nexport { updateMotionValuesFromProps };\n","import { VisualElement } from '../VisualElement.mjs';\nimport { DOMKeyframesResolver } from './DOMKeyframesResolver.mjs';\nimport { isMotionValue } from '../../value/utils/is-motion-value.mjs';\n\nclass DOMVisualElement extends VisualElement {\n    constructor() {\n        super(...arguments);\n        this.KeyframeResolver = DOMKeyframesResolver;\n    }\n    sortInstanceNodePosition(a, b) {\n        /**\n         * compareDocumentPosition returns a bitmask, by using the bitwise &\n         * we're returning true if 2 in that bitmask is set to true. 2 is set\n         * to true if b preceeds a.\n         */\n        return a.compareDocumentPosition(b) & 2 ? 1 : -1;\n    }\n    getBaseTargetFromProps(props, key) {\n        return props.style\n            ? props.style[key]\n            : undefined;\n    }\n    removeValueFromRenderState(key, { vars, style }) {\n        delete vars[key];\n        delete style[key];\n    }\n    handleChildMotionValue() {\n        if (this.childSubscription) {\n            this.childSubscription();\n            delete this.childSubscription;\n        }\n        const { children } = this.props;\n        if (isMotionValue(children)) {\n            this.childSubscription = children.on(\"change\", (latest) => {\n                if (this.current) {\n                    this.current.textContent = `${latest}`;\n                }\n            });\n        }\n    }\n}\n\nexport { DOMVisualElement };\n","import { measureViewportBox } from '../../projection/utils/measure.mjs';\nimport { DOMVisualElement } from '../dom/DOMVisualElement.mjs';\nimport { isCSSVariableName } from '../dom/utils/is-css-variable.mjs';\nimport { getDefaultValueType } from '../dom/value-types/defaults.mjs';\nimport { buildHTMLStyles } from './utils/build-styles.mjs';\nimport { transformProps } from './utils/keys-transform.mjs';\nimport { renderHTML } from './utils/render.mjs';\nimport { scrapeMotionValuesFromProps } from './utils/scrape-motion-values.mjs';\n\nfunction getComputedStyle(element) {\n    return window.getComputedStyle(element);\n}\nclass HTMLVisualElement extends DOMVisualElement {\n    constructor() {\n        super(...arguments);\n        this.type = \"html\";\n        this.renderInstance = renderHTML;\n    }\n    readValueFromInstance(instance, key) {\n        if (transformProps.has(key)) {\n            const defaultType = getDefaultValueType(key);\n            return defaultType ? defaultType.default || 0 : 0;\n        }\n        else {\n            const computedStyle = getComputedStyle(instance);\n            const value = (isCSSVariableName(key)\n                ? computedStyle.getPropertyValue(key)\n                : computedStyle[key]) || 0;\n            return typeof value === \"string\" ? value.trim() : value;\n        }\n    }\n    measureInstanceViewportBox(instance, { transformPagePoint }) {\n        return measureViewportBox(instance, transformPagePoint);\n    }\n    build(renderState, latestValues, props) {\n        buildHTMLStyles(renderState, latestValues, props.transformTemplate);\n    }\n    scrapeMotionValuesFromProps(props, prevProps, visualElement) {\n        return scrapeMotionValuesFromProps(props, prevProps, visualElement);\n    }\n}\n\nexport { HTMLVisualElement, getComputedStyle };\n","import { createBox } from '../../projection/geometry/models.mjs';\nimport { DOMVisualElement } from '../dom/DOMVisualElement.mjs';\nimport { camelToDash } from '../dom/utils/camel-to-dash.mjs';\nimport { getDefaultValueType } from '../dom/value-types/defaults.mjs';\nimport { transformProps } from '../html/utils/keys-transform.mjs';\nimport { buildSVGAttrs } from './utils/build-attrs.mjs';\nimport { camelCaseAttributes } from './utils/camel-case-attrs.mjs';\nimport { isSVGTag } from './utils/is-svg-tag.mjs';\nimport { renderSVG } from './utils/render.mjs';\nimport { scrapeMotionValuesFromProps } from './utils/scrape-motion-values.mjs';\n\nclass SVGVisualElement extends DOMVisualElement {\n    constructor() {\n        super(...arguments);\n        this.type = \"svg\";\n        this.isSVGTag = false;\n        this.measureInstanceViewportBox = createBox;\n    }\n    getBaseTargetFromProps(props, key) {\n        return props[key];\n    }\n    readValueFromInstance(instance, key) {\n        if (transformProps.has(key)) {\n            const defaultType = getDefaultValueType(key);\n            return defaultType ? defaultType.default || 0 : 0;\n        }\n        key = !camelCaseAttributes.has(key) ? camelToDash(key) : key;\n        return instance.getAttribute(key);\n    }\n    scrapeMotionValuesFromProps(props, prevProps, visualElement) {\n        return scrapeMotionValuesFromProps(props, prevProps, visualElement);\n    }\n    build(renderState, latestValues, props) {\n        buildSVGAttrs(renderState, latestValues, this.isSVGTag, props.transformTemplate);\n    }\n    renderInstance(instance, renderState, styleProp, projection) {\n        renderSVG(instance, renderState, styleProp, projection);\n    }\n    mount(instance) {\n        this.isSVGTag = isSVGTag(instance.tagName);\n        super.mount(instance);\n    }\n}\n\nexport { SVGVisualElement };\n","import { Fragment } from 'react';\nimport { HTMLVisualElement } from '../html/HTMLVisualElement.mjs';\nimport { SVGVisualElement } from '../svg/SVGVisualElement.mjs';\nimport { isSVGComponent } from './utils/is-svg-component.mjs';\n\nconst createDomVisualElement = (Component, options) => {\n    return isSVGComponent(Component)\n        ? new SVGVisualElement(options)\n        : new HTMLVisualElement(options, {\n            allowProjection: Component !== Fragment,\n        });\n};\n\nexport { createDomVisualElement };\n","import { createDOMMotionComponentProxy } from '../create-proxy.mjs';\nimport { createMotionComponent } from './create.mjs';\n\nconst motion = /*@__PURE__*/ createDOMMotionComponentProxy(createMotionComponent);\n\nexport { motion };\n","import { animations } from '../../../motion/features/animations.mjs';\nimport { drag } from '../../../motion/features/drag.mjs';\nimport { gestureAnimations } from '../../../motion/features/gestures.mjs';\nimport { layout } from '../../../motion/features/layout.mjs';\nimport { createMotionComponentFactory } from '../create-factory.mjs';\nimport { createDomVisualElement } from '../../dom/create-visual-element.mjs';\n\nconst createMotionComponent = /*@__PURE__*/ createMotionComponentFactory({\n    ...animations,\n    ...gestureAnimations,\n    ...drag,\n    ...layout,\n}, createDomVisualElement);\n\nexport { createMotionComponent };\n","\"use client\";\nimport { jsx } from 'react/jsx-runtime';\nimport * as React from 'react';\nimport { useId, useRef, useContext, useInsertionEffect } from 'react';\nimport { MotionConfigContext } from '../../context/MotionConfigContext.mjs';\n\n/**\n * Measurement functionality has to be within a separate component\n * to leverage snapshot lifecycle.\n */\nclass PopChildMeasure extends React.Component {\n    getSnapshotBeforeUpdate(prevProps) {\n        const element = this.props.childRef.current;\n        if (element && prevProps.isPresent && !this.props.isPresent) {\n            const size = this.props.sizeRef.current;\n            size.height = element.offsetHeight || 0;\n            size.width = element.offsetWidth || 0;\n            size.top = element.offsetTop;\n            size.left = element.offsetLeft;\n        }\n        return null;\n    }\n    /**\n     * Required with getSnapshotBeforeUpdate to stop React complaining.\n     */\n    componentDidUpdate() { }\n    render() {\n        return this.props.children;\n    }\n}\nfunction PopChild({ children, isPresent }) {\n    const id = useId();\n    const ref = useRef(null);\n    const size = useRef({\n        width: 0,\n        height: 0,\n        top: 0,\n        left: 0,\n    });\n    const { nonce } = useContext(MotionConfigContext);\n    /**\n     * We create and inject a style block so we can apply this explicit\n     * sizing in a non-destructive manner by just deleting the style block.\n     *\n     * We can't apply size via render as the measurement happens\n     * in getSnapshotBeforeUpdate (post-render), likewise if we apply the\n     * styles directly on the DOM node, we might be overwriting\n     * styles set via the style prop.\n     */\n    useInsertionEffect(() => {\n        const { width, height, top, left } = size.current;\n        if (isPresent || !ref.current || !width || !height)\n            return;\n        ref.current.dataset.motionPopId = id;\n        const style = document.createElement(\"style\");\n        if (nonce)\n            style.nonce = nonce;\n        document.head.appendChild(style);\n        if (style.sheet) {\n            style.sheet.insertRule(`\n          [data-motion-pop-id=\"${id}\"] {\n            position: absolute !important;\n            width: ${width}px !important;\n            height: ${height}px !important;\n            top: ${top}px !important;\n            left: ${left}px !important;\n          }\n        `);\n        }\n        return () => {\n            document.head.removeChild(style);\n        };\n    }, [isPresent]);\n    return (jsx(PopChildMeasure, { isPresent: isPresent, childRef: ref, sizeRef: size, children: React.cloneElement(children, { ref }) }));\n}\n\nexport { PopChild };\n","\"use client\";\nimport { jsx } from 'react/jsx-runtime';\nimport * as React from 'react';\nimport { useId, useCallback, useMemo } from 'react';\nimport { PresenceContext } from '../../context/PresenceContext.mjs';\nimport { useConstant } from '../../utils/use-constant.mjs';\nimport { PopChild } from './PopChild.mjs';\n\nconst PresenceChild = ({ children, initial, isPresent, onExitComplete, custom, presenceAffectsLayout, mode, }) => {\n    const presenceChildren = useConstant(newChildrenMap);\n    const id = useId();\n    const memoizedOnExitComplete = useCallback((childId) => {\n        presenceChildren.set(childId, true);\n        for (const isComplete of presenceChildren.values()) {\n            if (!isComplete)\n                return; // can stop searching when any is incomplete\n        }\n        onExitComplete && onExitComplete();\n    }, [presenceChildren, onExitComplete]);\n    const context = useMemo(() => ({\n        id,\n        initial,\n        isPresent,\n        custom,\n        onExitComplete: memoizedOnExitComplete,\n        register: (childId) => {\n            presenceChildren.set(childId, false);\n            return () => presenceChildren.delete(childId);\n        },\n    }), \n    /**\n     * If the presence of a child affects the layout of the components around it,\n     * we want to make a new context value to ensure they get re-rendered\n     * so they can detect that layout change.\n     */\n    presenceAffectsLayout\n        ? [Math.random(), memoizedOnExitComplete]\n        : [isPresent, memoizedOnExitComplete]);\n    useMemo(() => {\n        presenceChildren.forEach((_, key) => presenceChildren.set(key, false));\n    }, [isPresent]);\n    /**\n     * If there's no `motion` components to fire exit animations, we want to remove this\n     * component immediately.\n     */\n    React.useEffect(() => {\n        !isPresent &&\n            !presenceChildren.size &&\n            onExitComplete &&\n            onExitComplete();\n    }, [isPresent]);\n    if (mode === \"popLayout\") {\n        children = jsx(PopChild, { isPresent: isPresent, children: children });\n    }\n    return (jsx(PresenceContext.Provider, { value: context, children: children }));\n};\nfunction newChildrenMap() {\n    return new Map();\n}\n\nexport { PresenceChild };\n","import { Children, isValidElement } from 'react';\n\nconst getChildKey = (child) => child.key || \"\";\nfunction onlyElements(children) {\n    const filtered = [];\n    // We use forEach here instead of map as map mutates the component key by preprending `.$`\n    Children.forEach(children, (child) => {\n        if (isValidElement(child))\n            filtered.push(child);\n    });\n    return filtered;\n}\n\nexport { getChildKey, onlyElements };\n","\"use client\";\nimport { jsx, Fragment } from 'react/jsx-runtime';\nimport { useMemo, useRef, useState, useContext } from 'react';\nimport { LayoutGroupContext } from '../../context/LayoutGroupContext.mjs';\nimport { useConstant } from '../../utils/use-constant.mjs';\nimport { PresenceChild } from './PresenceChild.mjs';\nimport { usePresence } from './use-presence.mjs';\nimport { onlyElements, getChildKey } from './utils.mjs';\nimport { useIsomorphicLayoutEffect } from '../../utils/use-isomorphic-effect.mjs';\n\n/**\n * `AnimatePresence` enables the animation of components that have been removed from the tree.\n *\n * When adding/removing more than a single child, every child **must** be given a unique `key` prop.\n *\n * Any `motion` components that have an `exit` property defined will animate out when removed from\n * the tree.\n *\n * ```jsx\n * import { motion, AnimatePresence } from 'framer-motion'\n *\n * export const Items = ({ items }) => (\n *   <AnimatePresence>\n *     {items.map(item => (\n *       <motion.div\n *         key={item.id}\n *         initial={{ opacity: 0 }}\n *         animate={{ opacity: 1 }}\n *         exit={{ opacity: 0 }}\n *       />\n *     ))}\n *   </AnimatePresence>\n * )\n * ```\n *\n * You can sequence exit animations throughout a tree using variants.\n *\n * If a child contains multiple `motion` components with `exit` props, it will only unmount the child\n * once all `motion` components have finished animating out. Likewise, any components using\n * `usePresence` all need to call `safeToRemove`.\n *\n * @public\n */\nconst AnimatePresence = ({ children, custom, initial = true, onExitComplete, presenceAffectsLayout = true, mode = \"sync\", propagate = false, }) => {\n    const [isParentPresent, safeToRemove] = usePresence(propagate);\n    /**\n     * Filter any children that aren't ReactElements. We can only track components\n     * between renders with a props.key.\n     */\n    const presentChildren = useMemo(() => onlyElements(children), [children]);\n    /**\n     * Track the keys of the currently rendered children. This is used to\n     * determine which children are exiting.\n     */\n    const presentKeys = propagate && !isParentPresent ? [] : presentChildren.map(getChildKey);\n    /**\n     * If `initial={false}` we only want to pass this to components in the first render.\n     */\n    const isInitialRender = useRef(true);\n    /**\n     * A ref containing the currently present children. When all exit animations\n     * are complete, we use this to re-render the component with the latest children\n     * *committed* rather than the latest children *rendered*.\n     */\n    const pendingPresentChildren = useRef(presentChildren);\n    /**\n     * Track which exiting children have finished animating out.\n     */\n    const exitComplete = useConstant(() => new Map());\n    /**\n     * Save children to render as React state. To ensure this component is concurrent-safe,\n     * we check for exiting children via an effect.\n     */\n    const [diffedChildren, setDiffedChildren] = useState(presentChildren);\n    const [renderedChildren, setRenderedChildren] = useState(presentChildren);\n    useIsomorphicLayoutEffect(() => {\n        isInitialRender.current = false;\n        pendingPresentChildren.current = presentChildren;\n        /**\n         * Update complete status of exiting children.\n         */\n        for (let i = 0; i < renderedChildren.length; i++) {\n            const key = getChildKey(renderedChildren[i]);\n            if (!presentKeys.includes(key)) {\n                if (exitComplete.get(key) !== true) {\n                    exitComplete.set(key, false);\n                }\n            }\n            else {\n                exitComplete.delete(key);\n            }\n        }\n    }, [renderedChildren, presentKeys.length, presentKeys.join(\"-\")]);\n    const exitingChildren = [];\n    if (presentChildren !== diffedChildren) {\n        let nextChildren = [...presentChildren];\n        /**\n         * Loop through all the currently rendered components and decide which\n         * are exiting.\n         */\n        for (let i = 0; i < renderedChildren.length; i++) {\n            const child = renderedChildren[i];\n            const key = getChildKey(child);\n            if (!presentKeys.includes(key)) {\n                nextChildren.splice(i, 0, child);\n                exitingChildren.push(child);\n            }\n        }\n        /**\n         * If we're in \"wait\" mode, and we have exiting children, we want to\n         * only render these until they've all exited.\n         */\n        if (mode === \"wait\" && exitingChildren.length) {\n            nextChildren = exitingChildren;\n        }\n        setRenderedChildren(onlyElements(nextChildren));\n        setDiffedChildren(presentChildren);\n        /**\n         * Early return to ensure once we've set state with the latest diffed\n         * children, we can immediately re-render.\n         */\n        return;\n    }\n    if (process.env.NODE_ENV !== \"production\" &&\n        mode === \"wait\" &&\n        renderedChildren.length > 1) {\n        console.warn(`You're attempting to animate multiple children within AnimatePresence, but its mode is set to \"wait\". This will lead to odd visual behaviour.`);\n    }\n    /**\n     * If we've been provided a forceRender function by the LayoutGroupContext,\n     * we can use it to force a re-render amongst all surrounding components once\n     * all components have finished animating out.\n     */\n    const { forceRender } = useContext(LayoutGroupContext);\n    return (jsx(Fragment, { children: renderedChildren.map((child) => {\n            const key = getChildKey(child);\n            const isPresent = propagate && !isParentPresent\n                ? false\n                : presentChildren === renderedChildren ||\n                    presentKeys.includes(key);\n            const onExit = () => {\n                if (exitComplete.has(key)) {\n                    exitComplete.set(key, true);\n                }\n                else {\n                    return;\n                }\n                let isEveryExitComplete = true;\n                exitComplete.forEach((isExitComplete) => {\n                    if (!isExitComplete)\n                        isEveryExitComplete = false;\n                });\n                if (isEveryExitComplete) {\n                    forceRender === null || forceRender === void 0 ? void 0 : forceRender();\n                    setRenderedChildren(pendingPresentChildren.current);\n                    propagate && (safeToRemove === null || safeToRemove === void 0 ? void 0 : safeToRemove());\n                    onExitComplete && onExitComplete();\n                }\n            };\n            return (jsx(PresenceChild, { isPresent: isPresent, initial: !isInitialRender.current || initial\n                    ? undefined\n                    : false, custom: isPresent ? undefined : custom, presenceAffectsLayout: presenceAffectsLayout, mode: mode, onExitComplete: isPresent ? undefined : onExit, children: child }, key));\n        }) }));\n};\n\nexport { AnimatePresence };\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, \"$1-$2\").toLowerCase();\nconst mergeClasses = (...classes) => classes.filter((className, index, array) => {\n  return Boolean(className) && array.indexOf(className) === index;\n}).join(\" \");\n\nexport { mergeClasses, toKebabCase };\n//# sourceMappingURL=utils.js.map\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nvar defaultAttributes = {\n  xmlns: \"http://www.w3.org/2000/svg\",\n  width: 24,\n  height: 24,\n  viewBox: \"0 0 24 24\",\n  fill: \"none\",\n  stroke: \"currentColor\",\n  strokeWidth: 2,\n  strokeLinecap: \"round\",\n  strokeLinejoin: \"round\"\n};\n\nexport { defaultAttributes as default };\n//# sourceMappingURL=defaultAttributes.js.map\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport { forwardRef, createElement } from 'react';\nimport defaultAttributes from './defaultAttributes.js';\nimport { mergeClasses } from './shared/src/utils.js';\n\nconst Icon = forwardRef(\n  ({\n    color = \"currentColor\",\n    size = 24,\n    strokeWidth = 2,\n    absoluteStrokeWidth,\n    className = \"\",\n    children,\n    iconNode,\n    ...rest\n  }, ref) => {\n    return createElement(\n      \"svg\",\n      {\n        ref,\n        ...defaultAttributes,\n        width: size,\n        height: size,\n        stroke: color,\n        strokeWidth: absoluteStrokeWidth ? Number(strokeWidth) * 24 / Number(size) : strokeWidth,\n        className: mergeClasses(\"lucide\", className),\n        ...rest\n      },\n      [\n        ...iconNode.map(([tag, attrs]) => createElement(tag, attrs)),\n        ...Array.isArray(children) ? children : [children]\n      ]\n    );\n  }\n);\n\nexport { Icon as default };\n//# sourceMappingURL=Icon.js.map\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport { forwardRef, createElement } from 'react';\nimport { mergeClasses, toKebabCase } from './shared/src/utils.js';\nimport Icon from './Icon.js';\n\nconst createLucideIcon = (iconName, iconNode) => {\n  const Component = forwardRef(\n    ({ className, ...props }, ref) => createElement(Icon, {\n      ref,\n      iconNode,\n      className: mergeClasses(`lucide-${toKebabCase(iconName)}`, className),\n      ...props\n    })\n  );\n  Component.displayName = `${iconName}`;\n  return Component;\n};\n\nexport { createLucideIcon as default };\n//# sourceMappingURL=createLucideIcon.js.map\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst ChevronDown = createLucideIcon(\"ChevronDown\", [\n  [\"path\", { d: \"m6 9 6 6 6-6\", key: \"qrunsl\" }]\n]);\n\nexport { ChevronDown as default };\n//# sourceMappingURL=chevron-down.js.map\n","import { jsx as e, jsxs as g } from \"react/jsx-runtime\";\nimport { createContext as A, useState as y, useContext as D } from \"react\";\nimport { motion as b, AnimatePresence as E } from \"framer-motion\";\nimport { ChevronDown as K } from \"lucide-react\";\nimport { cn as o } from \"../../utilities/functions.es.js\";\nconst C = A({}), N = () => D(C), l = ({ size: t = \"md\", children: a, className: s }) => /* @__PURE__ */ e(C.Provider, { value: { size: t }, children: /* @__PURE__ */ e(\"div\", { className: o(\"flex flex-col bg-background-primary p-2\", s), children: a }) });\nl.displayName = \"Menu\";\nconst M = ({\n  heading: t,\n  arrow: a = !1,\n  showArrowOnHover: s = !1,\n  // Prop to toggle hover-based arrow display\n  open: r = !0,\n  onClick: i,\n  children: c,\n  className: m\n}) => {\n  const [n, x] = y(r), [v, u] = y(!1), { size: p } = N(), d = \"text-text-primary bg-transparent cursor-pointer flex justify-between items-center gap-1\", k = {\n    sm: \"text-xs\",\n    md: \"text-sm\"\n  }[p ?? \"md\"], w = {\n    sm: \"size-4\",\n    md: \"size-5\"\n  }[p ?? \"md\"], h = () => {\n    x(!n), i && i(!n);\n  }, S = {\n    open: { rotate: 180 },\n    closed: { rotate: 0 }\n  }, L = {\n    open: { height: \"auto\", opacity: 1 },\n    closed: { height: 0, opacity: 0 }\n  }, V = {\n    visible: { opacity: 1 },\n    hidden: { opacity: 0 }\n  }, j = () => s ? n || v ? \"visible\" : \"hidden\" : \"visible\";\n  return /* @__PURE__ */ g(\"div\", { children: [\n    !!t && /* @__PURE__ */ g(\n      \"div\",\n      {\n        role: \"button\",\n        tabIndex: 0,\n        onClick: h,\n        onKeyDown: (f) => {\n          (f.key === \"Enter\" || f.key === \" \") && h();\n        },\n        onMouseEnter: () => s && u(!0),\n        onMouseLeave: () => s && u(!1),\n        className: o(\n          d,\n          k,\n          t ? \"p-1\" : \"p-0\",\n          m\n        ),\n        \"aria-expanded\": n,\n        children: [\n          /* @__PURE__ */ e(\"span\", { className: \"text-text-tertiary\", children: t }),\n          a && /* @__PURE__ */ e(\n            b.span,\n            {\n              className: \"flex items-center text-border-strong\",\n              initial: \"hidden\",\n              animate: j(),\n              exit: \"hidden\",\n              variants: V,\n              transition: { duration: 0.15 },\n              children: /* @__PURE__ */ e(\n                b.span,\n                {\n                  className: \"inline-flex p-1\",\n                  variants: S,\n                  animate: n ? \"open\" : \"closed\",\n                  transition: { duration: 0.15 },\n                  children: /* @__PURE__ */ e(\n                    K,\n                    {\n                      className: o(\"shrink-0\", w)\n                    }\n                  )\n                }\n              )\n            }\n          )\n        ]\n      }\n    ),\n    /* @__PURE__ */ e(E, { initial: !1, children: n && /* @__PURE__ */ e(\n      b.ul,\n      {\n        role: \"menu\",\n        variants: L,\n        initial: \"closed\",\n        animate: \"open\",\n        exit: \"closed\",\n        transition: { duration: 0.3, ease: \"easeInOut\" },\n        className: \"overflow flex gap-0.5 flex-col m-0 bg-white rounded p-0\",\n        children: c\n      }\n    ) })\n  ] });\n};\nM.displayName = \"Menu.List\";\nconst z = ({\n  disabled: t = !1,\n  active: a,\n  onClick: s,\n  children: r,\n  className: i\n}) => {\n  const { size: c } = N(), m = \"flex p-1 gap-1 items-center bg-transparent border-none rounded text-text-secondary cursor-pointer m-0\", n = {\n    sm: \"[&>svg]:size-4 [&>svg]:m-1 [&>*:not(svg)]:mx-1 [&>*:not(svg)]:my-0.5 text-sm\",\n    md: \"[&>svg]:size-5 [&>svg]:m-1.5 [&>*:not(svg)]:m-1 text-base\"\n  }[c ?? \"md\"];\n  return /* @__PURE__ */ e(\n    \"li\",\n    {\n      role: \"menuitem\",\n      tabIndex: 0,\n      onClick: s,\n      onKeyDown: (d) => {\n        (d.key === \"Enter\" || d.key === \" \") && s?.();\n      },\n      className: o(\n        m,\n        n,\n        \"hover:bg-background-secondary hover:text-text-primary\",\n        t ? \"text-text-disabled hover:text-text-disabled cursor-not-allowed hover:bg-transparent\" : \"\",\n        a ? \"text-icon-primary [&>svg]:text-icon-interactive bg-background-secondary\" : \"\",\n        \"transition-colors duration-300 ease-in-out\",\n        i\n      ),\n      children: r\n    }\n  );\n};\nz.displayName = \"Menu.Item\";\nconst I = ({\n  variant: t = \"solid\",\n  className: a\n}) => {\n  const s = {\n    solid: \"border-solid\",\n    dashed: \"border-dashed\",\n    dotted: \"border-dotted\",\n    double: \"border-double\",\n    hidden: \"border-hidden\",\n    none: \"border-none\"\n  }[t];\n  return /* @__PURE__ */ e(\"li\", { className: \"m-0 p-0 list-none\", role: \"separator\", \"aria-hidden\": \"true\", children: /* @__PURE__ */ e(\n    \"hr\",\n    {\n      className: o(\n        \"w-full border-0 border-t border-border-subtle\",\n        s,\n        a\n      )\n    }\n  ) });\n};\nI.displayName = \"Menu.Separator\";\nl.List = M;\nl.Item = z;\nl.Separator = I;\nexport {\n  l as Menu,\n  z as MenuItem,\n  M as MenuList,\n  I as MenuSeparator,\n  l as default\n};\n//# sourceMappingURL=menu-item.es.js.map\n","import { jsx as s, jsxs as V } from \"react/jsx-runtime\";\nimport l, { createContext as h, useState as j, cloneElement as M, isValidElement as g, Fragment as U, useContext as q } from \"react\";\nimport { useFloating as z, offset as B, flip as G, shift as H, autoUpdate as J, useClick as K, useDismiss as Q, useRole as X, useInteractions as Y, useTransitionStyles as Z, FloatingPortal as _ } from \"@floating-ui/react\";\nimport { cn as u, callAll as w } from \"../../utilities/functions.es.js\";\nimport { Menu as c } from \"../menu-item/menu-item.es.js\";\nconst y = h({}), C = () => q(y), a = ({\n  placement: e = \"bottom\",\n  offset: o = 10,\n  boundary: n = \"clippingAncestors\",\n  children: t,\n  className: m\n}) => {\n  const [f, i] = j(!1), { refs: p, floatingStyles: S, context: d } = z({\n    open: f,\n    onOpenChange: i,\n    placement: e,\n    strategy: \"fixed\",\n    middleware: [\n      B(o),\n      G({ boundary: n }),\n      H({ boundary: n })\n    ],\n    whileElementsMounted: J\n  }), I = K(d), E = Q(d), F = X(d, { role: \"menu\" }), { getReferenceProps: R, getFloatingProps: L } = Y([\n    I,\n    E,\n    F\n  ]), { isMounted: T, styles: W } = Z(d, {\n    duration: 150,\n    initial: { opacity: 0, scale: 0.95 },\n    open: { opacity: 1, scale: 1 },\n    close: { opacity: 0, scale: 0.95 }\n  }), A = () => i((r) => !r), O = () => i(!1);\n  return /* @__PURE__ */ s(\n    y.Provider,\n    {\n      value: {\n        refs: p,\n        handleClose: O,\n        isMounted: T,\n        styles: W,\n        floatingStyles: S,\n        getFloatingProps: L\n      },\n      children: /* @__PURE__ */ V(\"div\", { className: u(\"relative inline-block\", m), children: [\n        l.Children.map(t, (r) => l.isValidElement(r) && r?.type?.displayName === \"DropdownMenu.Trigger\" ? M(r, {\n          ref: p.setReference,\n          onClick: A,\n          ...R()\n        }) : null),\n        l.Children.toArray(t).filter(\n          (r) => l.isValidElement(r) && [\n            \"DropdownMenu.Portal\",\n            \"DropdownMenu.ContentWrapper\"\n          ].includes(\n            r.type.displayName || \"\"\n          )\n        ).map((r) => r)\n      ] })\n    }\n  );\n};\na.displayName = \"DropdownMenu\";\nconst D = ({\n  children: e,\n  className: o\n}) => {\n  const { refs: n, floatingStyles: t, getFloatingProps: m, isMounted: f, styles: i } = C();\n  return f && /* @__PURE__ */ s(\n    \"div\",\n    {\n      ref: n.setFloating,\n      className: o,\n      style: {\n        ...t,\n        ...i\n      },\n      ...m(),\n      children: l.Children.map(e, (p) => p?.type?.displayName === \"DropdownMenu.Content\" ? p : null)\n    }\n  );\n};\nD.displayName = \"DropdownMenu.ContentWrapper\";\nconst N = ({\n  children: e,\n  root: o,\n  id: n\n}) => /* @__PURE__ */ s(_, { id: n, root: o, children: e });\nN.displayName = \"DropdownMenu.Portal\";\nconst x = l.forwardRef(({ children: e, className: o, ...n }, t) => g(e) ? l.cloneElement(e, {\n  className: u(o, e.props.className),\n  ref: t,\n  ...n\n}) : /* @__PURE__ */ s(\n  \"div\",\n  {\n    ref: t,\n    className: u(\"cursor-pointer\", o),\n    role: \"button\",\n    tabIndex: 0,\n    ...n,\n    children: e\n  }\n));\nx.displayName = \"DropdownMenu.Trigger\";\nconst P = ({\n  children: e,\n  className: o,\n  ...n\n}) => /* @__PURE__ */ s(\n  \"div\",\n  {\n    className: u(\n      \"border border-solid border-border-subtle rounded-md shadow-lg overflow-hidden\",\n      o\n    ),\n    children: /* @__PURE__ */ s(c, { ...n, children: e })\n  }\n);\nP.displayName = \"DropdownMenu.Content\";\nconst b = (e) => /* @__PURE__ */ s(c.List, { ...e });\nb.displayName = \"DropdownMenu.List\";\nconst k = ({\n  children: e,\n  as: o = c.Item,\n  ...n\n}) => {\n  const { handleClose: t } = C();\n  return e ? o === U && g(e) ? M(e, {\n    onClick: w(\n      e.props?.onClick,\n      t\n    )\n  }) : /* @__PURE__ */ s(\n    o,\n    {\n      ...n,\n      className: u(\"px-2\", n.className),\n      onClick: w(n.onClick, t),\n      children: e\n    }\n  ) : null;\n};\nk.displayName = \"DropdownMenu.Item\";\nconst v = (e) => /* @__PURE__ */ s(c.Separator, { ...e });\nv.displayName = \"DropdownMenu.Separator\";\na.Trigger = x;\na.Content = P;\na.List = b;\na.Item = k;\na.Separator = v;\na.Portal = N;\na.ContentWrapper = D;\nexport {\n  a as DropdownMenu,\n  P as DropdownMenuContent,\n  D as DropdownMenuContentWrapper,\n  k as DropdownMenuItem,\n  b as DropdownMenuList,\n  N as DropdownMenuPortal,\n  v as DropdownMenuSeparator,\n  x as DropdownMenuTrigger,\n  a as default\n};\n//# sourceMappingURL=dropdown-menu.es.js.map\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst X = createLucideIcon(\"X\", [\n  [\"path\", { d: \"M18 6 6 18\", key: \"1bl5f8\" }],\n  [\"path\", { d: \"m6 6 12 12\", key: \"d8bk6v\" }]\n]);\n\nexport { X as default };\n//# sourceMappingURL=x.js.map\n","import { jsxs as i, jsx as e } from \"react/jsx-runtime\";\nimport { forwardRef as C } from \"react\";\nimport { cn as d } from \"../../utilities/functions.es.js\";\nimport { X as N } from \"lucide-react\";\nconst j = C(\n  ({\n    label: r = \"\",\n    size: s = \"sm\",\n    // xxs, xs, sm, md, lg\n    className: c = \"\",\n    type: u = \"pill\",\n    // pill, rounded\n    variant: a = \"neutral\",\n    // neutral, red, yellow, green, blue, inverse\n    icon: l = null,\n    disabled: b = !1,\n    onClose: x = () => {\n    },\n    closable: p = !1,\n    onMouseDown: m = () => {\n    },\n    disableHover: v = !1\n  }, y) => {\n    const h = \"font-medium border-badge-border-gray flex items-center justify-center border border-solid box-border max-w-full transition-colors duration-150 ease-in-out\", f = {\n      xxs: \"py-0.5 px-0.5 text-xs h-4\",\n      xs: \"py-0.5 px-1 text-xs h-5\",\n      sm: \"py-1 px-1.5 text-xs h-6\",\n      md: \"py-1 px-1.5 text-sm h-7\",\n      lg: \"py-1 px-1.5 text-base h-8\"\n    }, k = {\n      pill: \"rounded-full\",\n      rounded: \"rounded\"\n    }, w = {\n      neutral: \"hover:bg-badge-hover-gray\",\n      red: \"hover:bg-badge-hover-red\",\n      yellow: \"hover:bg-badge-hover-yellow\",\n      green: \"hover:bg-badge-hover-green\",\n      blue: \"hover:bg-badge-hover-sky\",\n      inverse: \"hover:bg-badge-hover-inverse\",\n      disabled: \"hover:bg-badge-hover-disabled\"\n    }, t = {\n      neutral: \"bg-badge-background-gray text-badge-color-gray border-badge-border-gray\",\n      red: \"bg-badge-background-red text-badge-color-red border-badge-border-red\",\n      yellow: \"bg-badge-background-yellow text-badge-color-yellow border-badge-border-yellow\",\n      green: \"bg-badge-background-green text-badge-color-green border-badge-border-green\",\n      blue: \"bg-badge-background-sky text-badge-color-sky border-badge-border-sky\",\n      inverse: \"bg-background-inverse text-text-inverse border-background-inverse\",\n      disabled: \"bg-badge-background-disabled text-badge-color-disabled border-badge-border-disabled disabled cursor-not-allowed\"\n    };\n    let o = \"\", n = \"group relative justify-center flex items-center cursor-pointer\";\n    const g = {\n      xxs: \"[&>svg]:size-3\",\n      xs: \"[&>svg]:size-3\",\n      sm: \"[&>svg]:size-3\",\n      md: \"[&>svg]:size-4\",\n      lg: \"[&>svg]:size-5\"\n    };\n    return b ? (o = t.disabled, n += \" cursor-not-allowed disabled\") : o = t[a], r ? /* @__PURE__ */ i(\n      \"span\",\n      {\n        className: d(\n          h,\n          f[s],\n          k[u],\n          \"gap-0.5\",\n          o,\n          !v && w[a],\n          c\n        ),\n        ref: y,\n        children: [\n          l ? /* @__PURE__ */ e(\n            \"span\",\n            {\n              className: d(\n                \"justify-center flex items-center\",\n                g[s]\n              ),\n              children: l\n            }\n          ) : null,\n          /* @__PURE__ */ e(\"span\", { className: \"px-1 truncate inline-block\", children: r }),\n          p && /* @__PURE__ */ i(\n            \"span\",\n            {\n              className: d(n, g[s]),\n              onMouseDown: m,\n              role: \"button\",\n              tabIndex: 0,\n              ...!b && {\n                onClick: x\n              },\n              children: [\n                /* @__PURE__ */ e(\"span\", { className: \"sr-only\", children: `Remove ${r}` }),\n                /* @__PURE__ */ e(N, {}),\n                /* @__PURE__ */ e(\"span\", { className: \"absolute -inset-1\" })\n              ]\n            }\n          )\n        ]\n      }\n    ) : null;\n  }\n);\nj.displayName = \"Badge\";\nexport {\n  j as default\n};\n//# sourceMappingURL=badge.es.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, \"$1-$2\").toLowerCase();\nconst toCamelCase = (string) => string.replace(\n  /^([A-Z])|[\\s-_]+(\\w)/g,\n  (match, p1, p2) => p2 ? p2.toUpperCase() : p1.toLowerCase()\n);\nconst toPascalCase = (string) => {\n  const camelCase = toCamelCase(string);\n  return camelCase.charAt(0).toUpperCase() + camelCase.slice(1);\n};\nconst mergeClasses = (...classes) => classes.filter((className, index, array) => {\n  return Boolean(className) && className.trim() !== \"\" && array.indexOf(className) === index;\n}).join(\" \").trim();\nconst hasA11yProp = (props) => {\n  for (const prop in props) {\n    if (prop.startsWith(\"aria-\") || prop === \"role\" || prop === \"title\") {\n      return true;\n    }\n  }\n};\n\nexport { hasA11yProp, mergeClasses, toCamelCase, toKebabCase, toPascalCase };\n//# sourceMappingURL=utils.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nvar defaultAttributes = {\n  xmlns: \"http://www.w3.org/2000/svg\",\n  width: 24,\n  height: 24,\n  viewBox: \"0 0 24 24\",\n  fill: \"none\",\n  stroke: \"currentColor\",\n  strokeWidth: 2,\n  strokeLinecap: \"round\",\n  strokeLinejoin: \"round\"\n};\n\nexport { defaultAttributes as default };\n//# sourceMappingURL=defaultAttributes.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport { forwardRef, createElement } from 'react';\nimport defaultAttributes from './defaultAttributes.js';\nimport { mergeClasses, hasA11yProp } from './shared/src/utils.js';\n\nconst Icon = forwardRef(\n  ({\n    color = \"currentColor\",\n    size = 24,\n    strokeWidth = 2,\n    absoluteStrokeWidth,\n    className = \"\",\n    children,\n    iconNode,\n    ...rest\n  }, ref) => createElement(\n    \"svg\",\n    {\n      ref,\n      ...defaultAttributes,\n      width: size,\n      height: size,\n      stroke: color,\n      strokeWidth: absoluteStrokeWidth ? Number(strokeWidth) * 24 / Number(size) : strokeWidth,\n      className: mergeClasses(\"lucide\", className),\n      ...!children && !hasA11yProp(rest) && { \"aria-hidden\": \"true\" },\n      ...rest\n    },\n    [\n      ...iconNode.map(([tag, attrs]) => createElement(tag, attrs)),\n      ...Array.isArray(children) ? children : [children]\n    ]\n  )\n);\n\nexport { Icon as default };\n//# sourceMappingURL=Icon.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport { forwardRef, createElement } from 'react';\nimport { mergeClasses, toKebabCase, toPascalCase } from './shared/src/utils.js';\nimport Icon from './Icon.js';\n\nconst createLucideIcon = (iconName, iconNode) => {\n  const Component = forwardRef(\n    ({ className, ...props }, ref) => createElement(Icon, {\n      ref,\n      iconNode,\n      className: mergeClasses(\n        `lucide-${toKebabCase(toPascalCase(iconName))}`,\n        `lucide-${iconName}`,\n        className\n      ),\n      ...props\n    })\n  );\n  Component.displayName = toPascalCase(iconName);\n  return Component;\n};\n\nexport { createLucideIcon as default };\n//# sourceMappingURL=createLucideIcon.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"path\", { d: \"M7 7h10v10\", key: \"1tivn9\" }],\n  [\"path\", { d: \"M7 17 17 7\", key: \"1vkiza\" }]\n];\nconst ArrowUpRight = createLucideIcon(\"arrow-up-right\", __iconNode);\n\nexport { __iconNode, ArrowUpRight as default };\n//# sourceMappingURL=arrow-up-right.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"circle\", { cx: \"12\", cy: \"12\", r: \"10\", key: \"1mglay\" }],\n  [\"path\", { d: \"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3\", key: \"1u773s\" }],\n  [\"path\", { d: \"M12 17h.01\", key: \"p32p05\" }]\n];\nconst CircleQuestionMark = createLucideIcon(\"circle-question-mark\", __iconNode);\n\nexport { __iconNode, CircleQuestionMark as default };\n//# sourceMappingURL=circle-question-mark.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\n    \"path\",\n    {\n      d: \"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z\",\n      key: \"1oefj6\"\n    }\n  ],\n  [\"path\", { d: \"M14 2v5a1 1 0 0 0 1 1h5\", key: \"wfsgrz\" }],\n  [\"path\", { d: \"M10 9H8\", key: \"b1mrlr\" }],\n  [\"path\", { d: \"M16 13H8\", key: \"t4e002\" }],\n  [\"path\", { d: \"M16 17H8\", key: \"z1uh3a\" }]\n];\nconst FileText = createLucideIcon(\"file-text\", __iconNode);\n\nexport { __iconNode, FileText as default };\n//# sourceMappingURL=file-text.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\n    \"path\",\n    {\n      d: \"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z\",\n      key: \"12oyoe\"\n    }\n  ],\n  [\"path\", { d: \"M21 16v2a4 4 0 0 1-4 4h-5\", key: \"1x7m43\" }]\n];\nconst Headset = createLucideIcon(\"headset\", __iconNode);\n\nexport { __iconNode, Headset as default };\n//# sourceMappingURL=headset.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"path\", { d: \"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2\", key: \"975kel\" }],\n  [\"circle\", { cx: \"12\", cy: \"7\", r: \"4\", key: \"17ys0d\" }]\n];\nconst User = createLucideIcon(\"user\", __iconNode);\n\nexport { __iconNode, User as default };\n//# sourceMappingURL=user.js.map\n","const __WEBPACK_NAMESPACE_OBJECT__ = window[\"wp\"][\"i18n\"];","export const routes = {\n    dashboard: {\n        path: \"dashboard\",\n    },\n    widgets: {\n        path: \"widgets\",\n    },\n    templates: {\n        path: \"templates\",\n    },\n    learn: {\n        path: \"learn\",\n    },\n    settings: {\n        path: \"settings\",\n    },\n    onboarding: {\n        path: \"onboarding\",\n    },\n    upgrade: {\n        path: \"upgrade\",\n    },\n    headerFooterBuilder: { \n        path: \"elementor-hf\" \n    },\n    onboardingsuccess: { \n        path: \"onboardingsuccess\" \n    }\n}","/**\n * === Whats New RSS ===\n *\n * Version: 1.0.6\n * Generated on: 25th June, 2024\n * Documentation: https://github.com/brainstormforce/whats-new-rss/blob/master/README.md\n */\n\nimport { useEffect, useRef } from \"react\";\nvar __assign = (this && this.__assign) || function () {\n    __assign = Object.assign || function(t) {\n        for (var s, i = 1, n = arguments.length; i < n; i++) {\n            s = arguments[i];\n            for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n                t[p] = s[p];\n        }\n        return t;\n    };\n    return __assign.apply(this, arguments);\n};\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n    return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n    function verb(n) { return function (v) { return step([n, v]); }; }\n    function step(op) {\n        if (f) throw new TypeError(\"Generator is already executing.\");\n        while (g && (g = 0, op[0] && (_ = 0)), _) try {\n            if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n            if (y = 0, t) op = [op[0] & 2, t.value];\n            switch (op[0]) {\n                case 0: case 1: t = op; break;\n                case 4: _.label++; return { value: op[1], done: false };\n                case 5: _.label++; y = op[1]; op = [0]; continue;\n                case 7: op = _.ops.pop(); _.trys.pop(); continue;\n                default:\n                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n                    if (t[2]) _.ops.pop();\n                    _.trys.pop(); continue;\n            }\n            op = body.call(thisArg, _);\n        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n    }\n};\nvar WhatsNewRSSDefaultArgs = {\n    rssFeedURL: '',\n    selector: '',\n    loaderIcon: \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" viewBox=\\\"0 0 100 100\\\" preserveAspectRatio=\\\"xMidYMid\\\">\\n\\t<circle cx=\\\"50\\\" cy=\\\"50\\\" fill=\\\"none\\\" stroke=\\\"#9f9f9f\\\" stroke-width=\\\"10\\\" r=\\\"35\\\" stroke-dasharray=\\\"164.93361431346415 56.97787143782138\\\">\\n\\t\\t<animateTransform attributeName=\\\"transform\\\" type=\\\"rotate\\\" repeatCount=\\\"indefinite\\\" dur=\\\"1s\\\" values=\\\"0 50 50;360 50 50\\\" keyTimes=\\\"0;1\\\"></animateTransform>\\n\\t</circle>\\n\\t</svg>\",\n    viewAll: {\n        link: '',\n        label: 'View All',\n    },\n    triggerButton: {\n        icon: \"<svg width=\\\"20\\\" height=\\\"20\\\" viewBox=\\\"0 0 20 20\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"M8.61703 13.1998C8.04294 13.1503 7.46192 13.125 6.875 13.125H6.25C4.17893 13.125 2.5 11.4461 2.5 9.375C2.5 7.30393 4.17893 5.625 6.25 5.625H6.875C7.46192 5.625 8.04294 5.59972 8.61703 5.55018M8.61703 13.1998C8.82774 14.0012 9.1031 14.7764 9.43719 15.5195C9.64341 15.9782 9.48685 16.5273 9.05134 16.7787L8.50441 17.0945C8.04492 17.3598 7.45466 17.1921 7.23201 16.7106C6.70983 15.5811 6.30451 14.3866 6.03155 13.1425M8.61703 13.1998C8.29598 11.9787 8.125 10.6968 8.125 9.375C8.125 8.05316 8.29598 6.77125 8.61703 5.55018M8.61703 13.1998C11.25 13.427 13.737 14.1643 15.9789 15.3124M8.61703 5.55018C11.25 5.323 13.737 4.58569 15.9789 3.43757M15.9789 3.43757C15.8808 3.12162 15.7751 2.80903 15.662 2.5M15.9789 3.43757C16.4247 4.87356 16.7131 6.37885 16.8238 7.93326M15.9789 15.3124C15.8808 15.6284 15.7751 15.941 15.662 16.25M15.9789 15.3124C16.4247 13.8764 16.7131 12.3711 16.8238 10.8167M16.8238 7.93326C17.237 8.2772 17.5 8.79539 17.5 9.375C17.5 9.95461 17.237 10.4728 16.8238 10.8167M16.8238 7.93326C16.8578 8.40942 16.875 8.8902 16.875 9.375C16.875 9.8598 16.8578 10.3406 16.8238 10.8167\\\" stroke=\\\"#94A3B8\\\" stroke-width=\\\"1.5\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/></svg>\",\n        beforeBtn: '',\n        afterBtn: '',\n        className: '',\n        onClick: function () { },\n    },\n    notification: {\n        setLastPostUnixTime: null,\n        getLastPostUnixTime: null\n    },\n    flyout: {\n        title: \"What's New?\",\n        innerContent: {\n            titleLink: true,\n            additionalClasses: []\n        },\n        excerpt: {\n            wordLimit: 500,\n            moreSymbol: '&hellip;',\n            readMore: {\n                label: 'Read More',\n                className: '',\n            }\n        },\n        className: '',\n        closeOnEsc: true,\n        closeOnOverlayClick: true,\n        closeBtnIcon: \"<svg width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" fill=\\\"none\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\"><path d=\\\"M6 18L18 6M6 6L18 18\\\" stroke=\\\"#94A3B8\\\" stroke-width=\\\"1.5\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/></svg>\",\n        formatDate: null,\n        onOpen: function () { },\n        onClose: function () { },\n        onReady: function () { },\n    }\n};\nvar WhatsNewRSS = /** @class */ (function () {\n    /**\n     * Initialize our class.\n     *\n     * @param {ConstructorArgs} args\n     */\n    function WhatsNewRSS(args) {\n        this.rssFeedURLs = [];\n        /**\n         * UnixTime stamp of the last seen or read post.\n         */\n        this.lastPostUnixTime = 0;\n        /**\n         * UnixTime stamp of the last seen or read post for multi feeds by feed key.\n         */\n        this.multiLastPostUnixTime = {};\n        /**\n         * Total number of new notification counts.\n         */\n        this.notificationsCount = 0;\n        /**\n         * Notification counts for multi feeds by feed key.\n         */\n        this.multiNotificationCount = {};\n        /**\n         * Check if has new feeds.\n         */\n        this.hasNewFeeds = false;\n        /**\n         * Check if has new feeds in multi feeds mode.\n         */\n        this.multiHasNewFeeds = {};\n        this.validateArgs(args);\n        this.parseDefaults(args);\n        this.setElement();\n        if (!this.getElement()) {\n            console.warn('WNR: Cannot find element with', this.getArgs().selector);\n            return;\n        }\n        this.setID();\n        this.setRSSFeedURLs();\n        WhatsNewRSSCacheUtils.setInstanceID(this.getID());\n        this.RSS_Fetch_Instance = new WhatsNewRSSFetch(this);\n        this.RSS_View_Instance = new WhatsNewRSSView(this);\n        this.setNotificationsCount();\n        this.setTriggers();\n    }\n    ;\n    /**\n     * Validate the passed arguments in constructor.\n     *\n     * @param {ConstructorArgs} args\n     */\n    WhatsNewRSS.prototype.validateArgs = function (args) {\n        [\"rssFeedURL\", \"selector\"].map(function (requiredArg) {\n            if (!args[requiredArg]) {\n                throw new Error(\"\".concat(requiredArg, \" is a required argument. It cannot be empty or undefined.\"));\n            }\n            switch (requiredArg) {\n                case 'rssFeedURL':\n                    var arg = args[requiredArg];\n                    if (Array.isArray(arg)) {\n                        arg.forEach(function (rssFeedURL) {\n                            if (!(rssFeedURL === null || rssFeedURL === void 0 ? void 0 : rssFeedURL.key)) {\n                                throw new Error(\"The parameter \\\"key\\\" is required for \\\"\".concat(requiredArg, \"\\\" parameter in multi-feed mode.\"));\n                            }\n                            if (rssFeedURL.key.includes(' ')) {\n                                throw new Error(\"The parameter \\\"key\\\" cannot have spaces for \\\"\".concat(requiredArg, \"\\\" parameter in multi-feed mode. Ref Key: \\\"\").concat(rssFeedURL.key, \"\\\"\"));\n                            }\n                        });\n                    }\n                    break;\n                default:\n                    break;\n            }\n        });\n    };\n    /**\n     * Parse the arguments passed by the user with the defaults.\n     *\n     * @param {ConstructorArgs} args\n     */\n    WhatsNewRSS.prototype.parseDefaults = function (args) {\n        var _a, _b;\n        this.args = __assign(__assign(__assign({}, WhatsNewRSSDefaultArgs), args), { viewAll: __assign(__assign({}, WhatsNewRSSDefaultArgs.viewAll), args === null || args === void 0 ? void 0 : args.viewAll), triggerButton: __assign(__assign({}, WhatsNewRSSDefaultArgs.triggerButton), args === null || args === void 0 ? void 0 : args.triggerButton), flyout: __assign(__assign(__assign({}, WhatsNewRSSDefaultArgs.flyout), args === null || args === void 0 ? void 0 : args.flyout), { innerContent: __assign(__assign({}, WhatsNewRSSDefaultArgs.flyout.innerContent), (_a = args === null || args === void 0 ? void 0 : args.flyout) === null || _a === void 0 ? void 0 : _a.innerContent), excerpt: __assign(__assign({}, WhatsNewRSSDefaultArgs.flyout.excerpt), (_b = args === null || args === void 0 ? void 0 : args.flyout) === null || _b === void 0 ? void 0 : _b.excerpt) }) });\n    };\n    /**\n     * Returns parsed args.\n     *\n     * @returns {ConstructorArgs}\n     */\n    WhatsNewRSS.prototype.getArgs = function () {\n        return this.args;\n    };\n    /**\n     * Sets the HTML element queried using passed selector.\n     */\n    WhatsNewRSS.prototype.setElement = function () {\n        this.element = document.querySelector(this.args.selector);\n    };\n    /**\n     * Returns the html element according to the selector.\n     *\n     * @returns {HTMLElement}\n     */\n    WhatsNewRSS.prototype.getElement = function () {\n        return this.element;\n    };\n    /**\n     * Creates unique ID for current instance, that can be used by the library elements.\n     */\n    WhatsNewRSS.prototype.setID = function () {\n        var data = [this.getArgs().selector];\n        var rssFeedURL = this.getArgs().rssFeedURL;\n        if (Array.isArray(rssFeedURL)) {\n            rssFeedURL.forEach(function (_rssFeedURL) {\n                data.push(_rssFeedURL.key);\n            });\n        }\n        else {\n            data.push(rssFeedURL);\n        }\n        this.ID = btoa(data.join('-')).slice(-12).replace(/=/g, '');\n    };\n    /**\n     * Whether or not multiple feed urls is provided or not.\n     *\n     * @returns {boolean}\n     */\n    WhatsNewRSS.prototype.isMultiFeedRSS = function () {\n        return 'string' !== typeof this.getArgs().rssFeedURL;\n    };\n    WhatsNewRSS.prototype.setRSSFeedURLs = function () {\n        var _this = this;\n        var rssFeedURL = this.getArgs().rssFeedURL;\n        if (!this.isMultiFeedRSS()) {\n            this.rssFeedURLs.push({\n                key: null,\n                label: '',\n                url: rssFeedURL.toString(),\n            });\n        }\n        else {\n            if (Array.isArray(rssFeedURL)) {\n                rssFeedURL.forEach(function (_item) {\n                    _this.rssFeedURLs.push(_item);\n                });\n            }\n        }\n    };\n    WhatsNewRSS.prototype.getRSSFeedURLs = function () {\n        return this.rssFeedURLs;\n    };\n    /**\n     * Returns the current instance unique ID.\n     *\n     * @returns {string}\n     */\n    WhatsNewRSS.prototype.getID = function () {\n        return this.ID;\n    };\n    /**\n     * Checks and counts new notification for the notification badge.\n     */\n    WhatsNewRSS.prototype.setNotificationsCount = function () {\n        return __awaiter(this, void 0, void 0, function () {\n            var _this = this;\n            return __generator(this, function (_a) {\n                switch (_a.label) {\n                    case 0: return [4 /*yield*/, Promise.all(this.getRSSFeedURLs().map(function (_a) {\n                            var key = _a.key;\n                            return __awaiter(_this, void 0, void 0, function () {\n                                var lastPostUnixTime;\n                                return __generator(this, function (_b) {\n                                    switch (_b.label) {\n                                        case 0:\n                                            lastPostUnixTime = 0;\n                                            if (!('function' === typeof this.getArgs().notification.getLastPostUnixTime)) return [3 /*break*/, 2];\n                                            return [4 /*yield*/, this.getArgs().notification.getLastPostUnixTime(key, this)];\n                                        case 1:\n                                            lastPostUnixTime = _b.sent();\n                                            return [3 /*break*/, 3];\n                                        case 2:\n                                            lastPostUnixTime = WhatsNewRSSCacheUtils.getLastPostUnixTime(key);\n                                            _b.label = 3;\n                                        case 3:\n                                            if (this.isMultiFeedRSS()) {\n                                                this.multiLastPostUnixTime[key] = +lastPostUnixTime;\n                                            }\n                                            else {\n                                                this.lastPostUnixTime = +lastPostUnixTime;\n                                            }\n                                            return [2 /*return*/];\n                                    }\n                                });\n                            });\n                        }))];\n                    case 1:\n                        _a.sent();\n                        return [4 /*yield*/, this.RSS_Fetch_Instance.fetchData()\n                                .then(function (res) {\n                                Object.keys(res).forEach(function (key) {\n                                    var data = res[key];\n                                    if (!data.length) {\n                                        return;\n                                    }\n                                    _this.multiNotificationCount[key] = 0;\n                                    var currentPostUnixTime = +data[0].date;\n                                    var lastPostUnixTime = _this.isMultiFeedRSS() ? _this.multiLastPostUnixTime[key] : _this.lastPostUnixTime;\n                                    if (currentPostUnixTime > lastPostUnixTime) {\n                                        data.forEach(function (item) {\n                                            if (item.date > lastPostUnixTime) {\n                                                if (_this.isMultiFeedRSS()) {\n                                                    _this.multiNotificationCount[key]++;\n                                                    _this.multiHasNewFeeds[key] = true;\n                                                }\n                                                // Keep a record of total notifications even in multi-feed mode.\n                                                _this.notificationsCount++;\n                                                _this.hasNewFeeds = true;\n                                            }\n                                        });\n                                        _this.RSS_View_Instance.setNotification(_this.notificationsCount);\n                                    }\n                                });\n                            })];\n                    case 2:\n                        _a.sent();\n                        return [2 /*return*/];\n                }\n            });\n        });\n    };\n    /**\n     * Returns total number of new notifications.\n     *\n     * @returns {number}\n     */\n    WhatsNewRSS.prototype.getNotificationsCount = function () {\n        return this.notificationsCount;\n    };\n    /**\n     * Sets the triggers for the library, eg: close, open, fetch.\n     */\n    WhatsNewRSS.prototype.setTriggers = function () {\n        var _this = this;\n        var triggerButton = document.getElementById(this.RSS_View_Instance.getTriggerButtonID());\n        var flyout = document.getElementById(this.RSS_View_Instance.getFlyoutID());\n        var flyoutInner = flyout.querySelector('.whats-new-rss-flyout-inner-content');\n        var flyoutCloseBtn = document.getElementById(this.RSS_View_Instance.getFlyoutCloseBtnID());\n        var multiFeedNav = document.getElementById(this.RSS_View_Instance.getFlyoutMultiFeedNavID());\n        var injectContents = function (key) {\n            /**\n             * Fetch data on flyout open.\n             */\n            _this.RSS_Fetch_Instance.fetchData()\n                .then(function (res) {\n                flyoutInner.innerHTML = '';\n                var data = res[key];\n                if (!data.length) {\n                    return;\n                }\n                var currentPostUnixTime = +data[0].date;\n                var lastPostUnixTime = _this.isMultiFeedRSS() ? _this.multiLastPostUnixTime[key] : _this.lastPostUnixTime;\n                data.forEach(function (item) {\n                    var isNewPost = !!lastPostUnixTime ? item.date > lastPostUnixTime : false;\n                    var contentTitle = _this.getArgs().flyout.innerContent.titleLink ?\n                        \"<a href=\\\"\".concat(item.postLink, \"\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<h2>\").concat(item.title, \"</h2>\\n\\t\\t\\t\\t\\t\\t\\t</a>\")\n                        :\n                            \"<h2>\".concat(item.title, \"</h2>\");\n                    var innerContent = \"\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"rss-content-header\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p>\".concat(_this.RSS_View_Instance.formatDate(new Date(item.date)), \"</p>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\").concat(contentTitle, \"\\n\\t\\t\\t\\t\\t\\t\\t\\t</div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\").concat(_this.RSS_View_Instance.createExcerpt(item.description, item.postLink, _this.getArgs().flyout.excerpt), \"\\n\\t\\t\\t\\t\\t\\t\\t\\t\").concat(_this.RSS_View_Instance.listChildrenPosts(item.children), \"\\n\\t\\t\\t\\t\\t\\t\\t\");\n                    var additionalClasses = _this.getArgs().flyout.innerContent.additionalClasses;\n                    if (!!key) {\n                        additionalClasses.push('`inner-content-item-feed-key-${key}`');\n                    }\n                    flyoutInner.innerHTML += _this.RSS_View_Instance.innerContentWrapper(innerContent, isNewPost, additionalClasses.join(' '));\n                });\n                if (_this.getArgs().viewAll.link) {\n                    // If we have link provided for the view all button then append a view all button at the end of the contents.\n                    flyoutInner.innerHTML += _this.RSS_View_Instance.innerContentWrapper(\"\\n\\t\\t\\t\\t\\t\\t\\t<a href=\\\"\".concat(_this.getArgs().viewAll.link, \"\\\" class=\\\"button view-all\\\">\").concat(_this.getArgs().viewAll.label, \"</a>\\n\\t\\t\\t\\t\\t\\t\\t\"));\n                }\n                _this.RSS_View_Instance.setIsLoading(false);\n                flyout.classList.add('ready');\n                _this.getArgs().flyout.onReady(_this);\n                /**\n                 * Change focus to flyout on flyout ready.\n                 */\n                flyout.focus();\n                // Set the last latest post date for notification handling.\n                if (!_this.isMultiFeedRSS()) {\n                    _this.lastPostUnixTime = currentPostUnixTime;\n                    if (_this.hasNewFeeds) {\n                        if ('function' === typeof _this.getArgs().notification.setLastPostUnixTime) {\n                            _this.getArgs().notification.setLastPostUnixTime(currentPostUnixTime, key);\n                        }\n                        else {\n                            WhatsNewRSSCacheUtils.setLastPostUnixTime(currentPostUnixTime, key);\n                        }\n                    }\n                }\n            });\n        };\n        /**\n         * Open flyout on trigger button click.\n         * Flyout has three states: `closed | open | ready`\n         */\n        triggerButton.addEventListener(\"click\", function (e) {\n            e.preventDefault();\n            _this.getArgs().triggerButton.onClick(_this);\n            _this.RSS_View_Instance.setIsLoading(true);\n            flyout.classList.remove('closed');\n            flyout.classList.add('open');\n            document.body.classList.add('whats-new-rss-is-active');\n            _this.getArgs().flyout.onOpen(_this);\n            if (!_this.isMultiFeedRSS()) {\n                return injectContents(null);\n            }\n            var navBtns = multiFeedNav.querySelectorAll('button');\n            navBtns.forEach(function (navBtn) {\n                _this.RSS_View_Instance.setMultiFeedTabNotificationCount(navBtn.dataset.feedKey, _this.multiNotificationCount[navBtn.dataset.feedKey]);\n                navBtn.addEventListener('click', function (e) {\n                    e.preventDefault();\n                    var currentFeedKey = navBtn.dataset.feedKey;\n                    _this.multiNotificationCount[currentFeedKey] = 0;\n                    _this.RSS_Fetch_Instance.fetchData()\n                        .then(function (res) {\n                        var currentPostUnixTime = res[currentFeedKey][0].date;\n                        _this.multiLastPostUnixTime[currentFeedKey] = currentPostUnixTime;\n                        if (true === _this.multiHasNewFeeds[currentFeedKey]) {\n                            if ('function' === typeof _this.getArgs().notification.setLastPostUnixTime) {\n                                _this.getArgs().notification.setLastPostUnixTime(currentPostUnixTime, currentFeedKey);\n                            }\n                            else {\n                                WhatsNewRSSCacheUtils.setLastPostUnixTime(currentPostUnixTime, currentFeedKey);\n                            }\n                        }\n                        _this.multiHasNewFeeds[currentFeedKey] = false;\n                    });\n                    navBtns.forEach(function (navBtn) {\n                        navBtn.classList.remove('selected');\n                        var feedKey = navBtn.dataset.feedKey;\n                        var innerContentClassName = \".inner-content-item-feed-key-\".concat(feedKey);\n                        document.querySelectorAll(innerContentClassName).forEach(function (item) {\n                            if (currentFeedKey !== feedKey) {\n                                item.classList.add('hidden');\n                            }\n                            else {\n                                item.classList.remove('hidden');\n                            }\n                        });\n                    });\n                    navBtn.classList.add('selected');\n                    injectContents(currentFeedKey);\n                });\n            });\n            navBtns[0].click();\n        });\n        /**\n         * Handle events for the closing of the flyout.\n         */\n        var handleFlyoutClose = function () {\n            flyout.classList.add('closed');\n            flyout.classList.remove('open');\n            flyout.classList.remove('ready');\n            document.body.classList.remove('whats-new-rss-is-active');\n            if (_this.isMultiFeedRSS()) {\n                _this.RSS_View_Instance.setNotification(Object.values(_this.multiNotificationCount).filter(Boolean).length);\n            }\n            else {\n                _this.hasNewFeeds = false;\n                _this.RSS_View_Instance.setNotification(false);\n            }\n            flyoutInner.innerHTML = '';\n            _this.getArgs().flyout.onClose(_this);\n            /**\n             * Change focus back to trigger button after flyout close.\n             */\n            triggerButton.focus();\n        };\n        if (this.getArgs().flyout.closeOnEsc) {\n            document.addEventListener('keydown', function (e) {\n                if ('Escape' !== e.key)\n                    return;\n                if (!flyout.classList.contains('open'))\n                    return;\n                handleFlyoutClose();\n            });\n        }\n        if (this.getArgs().flyout.closeOnOverlayClick) {\n            flyout.querySelector('.whats-new-rss-flyout-overlay').addEventListener('click', handleFlyoutClose);\n        }\n        flyoutCloseBtn.addEventListener('click', handleFlyoutClose);\n    };\n    return WhatsNewRSS;\n}());\nvar WhatsNewRSSCacheUtils = /** @class */ (function () {\n    function WhatsNewRSSCacheUtils() {\n    }\n    WhatsNewRSSCacheUtils.setInstanceID = function (instanceID) {\n        if (!this.instanceID) {\n            this.instanceID = instanceID;\n        }\n    };\n    WhatsNewRSSCacheUtils.prefixer = function (key, prefixKey) {\n        if (prefixKey === void 0) { prefixKey = ''; }\n        if (!this.instanceID) {\n            throw new Error('Instance ID not set.');\n        }\n        return !!prefixKey ? \"\".concat(this.keys[key], \"-\").concat(this.instanceID, \"-\").concat(prefixKey) : \"\".concat(this.keys[key], \"-\").concat(this.instanceID);\n    };\n    WhatsNewRSSCacheUtils._setDataExpiry = function (prefixKey) {\n        if (prefixKey === void 0) { prefixKey = ''; }\n        var expiryInSeconds = 86400; // Defaults to 24 hours.\n        var now = new Date();\n        var expiry = now.getTime() + (expiryInSeconds * 1000);\n        sessionStorage.setItem(this.prefixer('SESSION_DATA_EXPIRY', prefixKey), JSON.stringify(expiry));\n    };\n    WhatsNewRSSCacheUtils._isDataExpired = function (prefixKey) {\n        if (prefixKey === void 0) { prefixKey = ''; }\n        var key = this.prefixer('SESSION_DATA_EXPIRY', prefixKey);\n        var value = window.sessionStorage.getItem(key);\n        if (!value) {\n            return true;\n        }\n        var expiry = JSON.parse(value);\n        var now = new Date();\n        if (now.getTime() > expiry) {\n            window.sessionStorage.removeItem(key);\n            return true;\n        }\n        return false;\n    };\n    WhatsNewRSSCacheUtils.setSessionData = function (data, prefixKey) {\n        if (prefixKey === void 0) { prefixKey = ''; }\n        this._setDataExpiry(prefixKey);\n        return window.sessionStorage.setItem(this.prefixer('SESSION', prefixKey), data);\n    };\n    WhatsNewRSSCacheUtils.getSessionData = function (prefixKey) {\n        if (prefixKey === void 0) { prefixKey = ''; }\n        if (!this._isDataExpired(prefixKey)) {\n            return window.sessionStorage.getItem(this.prefixer('SESSION', prefixKey));\n        }\n        return '{}';\n    };\n    WhatsNewRSSCacheUtils.setLastPostUnixTime = function (unixTime, prefixKey) {\n        if (prefixKey === void 0) { prefixKey = ''; }\n        return window.localStorage.setItem(this.prefixer('LAST_LATEST_POST', prefixKey), unixTime.toString());\n    };\n    WhatsNewRSSCacheUtils.getLastPostUnixTime = function (prefixKey) {\n        if (prefixKey === void 0) { prefixKey = ''; }\n        return +window.localStorage.getItem(this.prefixer('LAST_LATEST_POST', prefixKey));\n    };\n    WhatsNewRSSCacheUtils.keys = {\n        SESSION_DATA_EXPIRY: \"whats-new-cache-expiry\",\n        LAST_LATEST_POST: \"whats-new-last-unixtime\",\n        SESSION: \"whats-new-cache\"\n    };\n    return WhatsNewRSSCacheUtils;\n}());\n/**\n * Class for handling the data fetching.\n * It also handles the session caching of the fetched data internally.\n */\nvar WhatsNewRSSFetch = /** @class */ (function () {\n    function WhatsNewRSSFetch(RSS) {\n        var _this = this;\n        this.data = {};\n        this.RSS = RSS;\n        this.RSS.getRSSFeedURLs().forEach(function (feed) {\n            var sessionCache = JSON.parse(WhatsNewRSSCacheUtils.getSessionData(feed.key));\n            if (sessionCache && sessionCache.length) {\n                _this.data[feed.key] = sessionCache;\n            }\n        });\n    }\n    WhatsNewRSSFetch.prototype.fetchData = function () {\n        return __awaiter(this, void 0, void 0, function () {\n            var fetchPromises;\n            var _this = this;\n            return __generator(this, function (_a) {\n                switch (_a.label) {\n                    case 0:\n                        if (Object.keys(this.data).length) {\n                            return [2 /*return*/, this.data];\n                        }\n                        fetchPromises = this.RSS.getRSSFeedURLs().map(function (feed) { return __awaiter(_this, void 0, void 0, function () {\n                            var res, data, parser, xmlDoc, items;\n                            var _this = this;\n                            return __generator(this, function (_a) {\n                                switch (_a.label) {\n                                    case 0:\n                                        this.data[feed.key] = [];\n                                        return [4 /*yield*/, fetch(feed.url)];\n                                    case 1:\n                                        res = _a.sent();\n                                        return [4 /*yield*/, res.text()];\n                                    case 2:\n                                        data = _a.sent();\n                                        /**\n                                         * There was an issue with the xml content parse\n                                         * And during parse we were getting \"<parsererror>\" because of the ‘raquo’ entity.\n                                         */\n                                        data = data.replace(/&raquo;/g, '&amp;raquo;');\n                                        parser = new DOMParser();\n                                        xmlDoc = parser.parseFromString(data, 'text/xml');\n                                        items = xmlDoc.querySelectorAll('item');\n                                        items.forEach(function (item) {\n                                            var _a;\n                                            var title = item.querySelector('title').textContent;\n                                            var link = item.querySelector('link').textContent;\n                                            var contentEncoded = item.querySelector('content\\\\:encoded, encoded');\n                                            var content = contentEncoded ? contentEncoded.textContent : '';\n                                            var rssDate = item.querySelector('pubDate').innerHTML;\n                                            _this.data[feed.key].push({\n                                                title: title,\n                                                date: !!rssDate ? +new Date(rssDate) : null,\n                                                postLink: link,\n                                                description: content.replace(/<a\\b((?:(?!target=)[^>])*)>/g, '<a$1 target=\"_blank\">').replace(/<p>\\s*<\\/p>/g, ''),\n                                                children: JSON.parse(((_a = item.querySelector('children')) === null || _a === void 0 ? void 0 : _a.innerHTML) || '{}')\n                                            });\n                                        });\n                                        WhatsNewRSSCacheUtils.setSessionData(JSON.stringify(this.data[feed.key]), feed.key);\n                                        return [2 /*return*/];\n                                }\n                            });\n                        }); });\n                        return [4 /*yield*/, Promise.all(fetchPromises)];\n                    case 1:\n                        _a.sent();\n                        return [2 /*return*/, this.data];\n                }\n            });\n        });\n    };\n    return WhatsNewRSSFetch;\n}());\n/**\n * The class for handling library trigger button and flyout elements.\n * It also provides some necessary methods that can be used during development.\n */\nvar WhatsNewRSSView = /** @class */ (function () {\n    function WhatsNewRSSView(RSS) {\n        this.RSS = RSS;\n        this.createTriggerButton();\n        this.createFlyOut();\n    }\n    WhatsNewRSSView.prototype.getTriggerButtonID = function () {\n        return \"whats-new-rss-btn-\".concat(this.RSS.getID());\n    };\n    WhatsNewRSSView.prototype.getFlyoutID = function () {\n        return \"whats-new-rss-flyout-\".concat(this.RSS.getID());\n    };\n    WhatsNewRSSView.prototype.getFlyoutCloseBtnID = function () {\n        return \"whats-new-rss-flyout-close-\".concat(this.RSS.getID());\n    };\n    WhatsNewRSSView.prototype.getFlyoutMultiFeedNavID = function () {\n        return \"whats-new-rss-flyout-multi-feed-nav-\".concat(this.RSS.getID());\n    };\n    WhatsNewRSSView.prototype.setIsLoading = function (isLoading) {\n        if (isLoading === void 0) { isLoading = false; }\n        var flyoutWrapper = document.getElementById(this.getFlyoutID());\n        if (isLoading) {\n            flyoutWrapper.classList.add('is-loading');\n        }\n        else {\n            flyoutWrapper.classList.remove('is-loading');\n        }\n    };\n    WhatsNewRSSView.prototype.setNotification = function (notificationsCount) {\n        var notificationBadge = document.querySelector(\"#\".concat(this.getTriggerButtonID(), \" .whats-new-rss-notification-badge\"));\n        if (!!notificationsCount) {\n            if (this.RSS.isMultiFeedRSS()) {\n                notificationBadge.innerHTML = '';\n                notificationBadge.classList.add('is-multi-feed');\n            }\n            else {\n                notificationBadge.innerHTML = notificationsCount > 9 ? \"9+\" : notificationsCount.toString();\n            }\n            notificationBadge.classList.remove('hide');\n        }\n        else {\n            notificationBadge.classList.add('hide');\n        }\n    };\n    WhatsNewRSSView.prototype.createTriggerButton = function () {\n        var button = \"\\n\\t\\t\".concat(this.RSS.getArgs().triggerButton.beforeBtn, \"\\n\\t\\t<a class=\\\"whats-new-rss-trigger-button\\\" id=\\\"\").concat(this.getTriggerButtonID(), \"\\\">\\n\\t\\t\\t\").concat(this.RSS.getArgs().triggerButton.icon, \"\\n\\t\\t\\t<div class=\\\"whats-new-rss-notification-badge hide\\\">0</div>\\n\\t\\t</a>\\n\\t\\t\").concat(this.RSS.getArgs().triggerButton.afterBtn, \"\\n\\t\\t\");\n        this.RSS.getElement().innerHTML += button;\n    };\n    WhatsNewRSSView.prototype.createFlyOut = function () {\n        var wrapperClasses = [\n            'whats-new-rss-flyout',\n            'closed',\n        ];\n        if (this.RSS.getArgs().flyout.className) {\n            wrapperClasses.push(this.RSS.getArgs().flyout.className);\n        }\n        var multiFeedNav = [];\n        if (this.RSS.isMultiFeedRSS()) {\n            multiFeedNav.push(\"<nav id=\\\"\".concat(this.getFlyoutMultiFeedNavID(), \"\\\" class=\\\"whats-new-rss-multi-feed-nav\\\">\"));\n            this.RSS.getRSSFeedURLs().forEach(function (feed) {\n                multiFeedNav.push(\"<button type=\\\"button\\\" data-feed-key=\\\"\".concat(feed.key, \"\\\">\\n\\t\\t\\t\\t\\t\\t\").concat(feed.label, \"\\n\\t\\t\\t\\t\\t\\t<div class=\\\"new-notification-count\\\"></div>\\n\\t\\t\\t\\t\\t</button>\\n\\t\\t\\t\\t\\t\"));\n            });\n            multiFeedNav.push('</nav>');\n        }\n        var flyoutWrapper = document.createElement('div');\n        flyoutWrapper.setAttribute('id', this.getFlyoutID());\n        flyoutWrapper.setAttribute('class', wrapperClasses.join(' '));\n        flyoutWrapper.setAttribute('role', 'dialog');\n        flyoutWrapper.innerHTML = \"\\n\\t\\t<div class=\\\"whats-new-rss-flyout-contents\\\">\\n\\n\\t\\t\\t<div class=\\\"whats-new-rss-flyout-inner-header\\\">\\n\\n\\t\\t\\t\\t<div class=\\\"whats-new-rss-flyout-inner-header__title-icon-wrapper\\\">\\n\\t\\t\\t\\t\\t<h3>\".concat(this.RSS.getArgs().flyout.title, \"</h3>\\n\\n\\t\\t\\t\\t\\t<span class=\\\"whats-new-rss-flyout-inner-header__loading-icon\\\">\\n\\t\\t\\t\\t\\t\").concat(this.RSS.getArgs().loaderIcon, \"\\n\\t\\t\\t\\t\\t</span>\\n\\t\\t\\t\\t</div>\\n\\n\\t\\t\\t\\t<button type=\\\"button\\\" id=\\\"\").concat(this.getFlyoutCloseBtnID(), \"\\\">\").concat(this.RSS.getArgs().flyout.closeBtnIcon, \"</button>\\n\\t\\t\\t</div>\\n\\n\\t\\t\\t\").concat(multiFeedNav.join(''), \"\\n\\n\\t\\t\\t<div class=\\\"whats-new-rss-flyout-inner-content\\\">\\n\\t\\t\\t\\t<div class=\\\"skeleton-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"skeleton-row whats-new-rss-flyout-inner-content-item\\\"></div>\\n\\t\\t\\t\\t\\t<div class=\\\"skeleton-row whats-new-rss-flyout-inner-content-item\\\"></div>\\n\\t\\t\\t\\t\\t<div class=\\\"skeleton-row whats-new-rss-flyout-inner-content-item\\\"></div>\\n\\t\\t\\t\\t</div>\\n\\t\\t\\t</div>\\n\\n\\t\\t</div>\\n\\n\\t\\t<div class=\\\"whats-new-rss-flyout-overlay\\\"></div>\\n\\t\\t\");\n        document.body.appendChild(flyoutWrapper);\n    };\n    WhatsNewRSSView.prototype.setMultiFeedTabNotificationCount = function (key, notificationCount) {\n        if (notificationCount === void 0) { notificationCount = 0; }\n        var tabBtn = document.querySelector(\"#\".concat(this.getFlyoutMultiFeedNavID(), \" button[data-feed-key=\\\"\").concat(key, \"\\\"]\"));\n        if (!tabBtn) {\n            return;\n        }\n        var el = tabBtn.querySelector('.new-notification-count');\n        if (notificationCount) {\n            var _count = notificationCount > 9 ? '9+' : notificationCount;\n            el.innerHTML = _count.toString();\n        }\n        else {\n            el.innerHTML = '';\n        }\n    };\n    WhatsNewRSSView.prototype.innerContentWrapper = function (content, isNewPost, additionalClasses) {\n        if (isNewPost === void 0) { isNewPost = false; }\n        if (additionalClasses === void 0) { additionalClasses = ''; }\n        var classes = ['whats-new-rss-flyout-inner-content-item'];\n        if (isNewPost) {\n            classes.push('rss-new-post');\n        }\n        if (!!additionalClasses) {\n            classes.push(additionalClasses);\n        }\n        return \"\\n\\t\\t<div class=\\\"\".concat(classes.join(' '), \"\\\">\\n\\t\\t\\t\").concat(isNewPost ? '<small class=\"new-post-badge\">New ✨</small>' : '', \"\\n\\t\\t\\t\").concat(content, \"\\n\\t\\t</div>\\n\\t\\t\");\n    };\n    WhatsNewRSSView.prototype.createExcerpt = function (content, readMoreLink, options) {\n        var wordLimit = options.wordLimit, moreSymbol = options.moreSymbol, readMore = options.readMore;\n        if (!wordLimit) {\n            return content;\n        }\n        var plainText = content.replace(/<[^>]*>/g, '');\n        var words = plainText.split(/\\s+/);\n        var rawExcerpt = words.slice(0, wordLimit).join(' ');\n        if (moreSymbol) {\n            rawExcerpt += moreSymbol;\n        }\n        if (wordLimit > words.length) {\n            return content;\n        }\n        if (!!readMoreLink && !!(readMore === null || readMore === void 0 ? void 0 : readMore.label)) {\n            return \"<p>\".concat(rawExcerpt, \" <a href=\\\"\").concat(readMoreLink, \"\\\" target=\\\"_blank\\\" class=\\\"\").concat(readMore.className, \"\\\">\").concat(readMore.label, \"</a></p>\");\n        }\n        return \"<p>\".concat(rawExcerpt, \"</p>\");\n    };\n    WhatsNewRSSView.prototype.listChildrenPosts = function (children) {\n        var _this = this;\n        var _children = Object.values(children);\n        if (!_children.length)\n            return '';\n        var details = document.createElement('details');\n        var summary = document.createElement('summary');\n        var itemsWrapper = document.createElement('div');\n        _children.forEach(function (child) {\n            var postContentDoc = new DOMParser().parseFromString(child.post_content, 'text/html');\n            var itemDiv = document.createElement('div');\n            itemDiv.classList.add('sub-version-item');\n            itemDiv.innerHTML = \"\\n\\t\\t\\t\\t<div class=\\\"sub-version-header\\\">\\n\\t\\t\\t\\t\\t<h4 class=\\\"sub-version-title\\\">\".concat(child.post_title, \"</h4>\\n\\t\\t\\t\\t\\t<span class=\\\"sub-version-date\\\">\").concat(_this.formatDate(new Date(child.post_date)), \"</span>\\n\\t\\t\\t\\t</div>\\n\\t\\t\\t\\t<div class=\\\"sub-version-content\\\">\").concat(postContentDoc.documentElement.textContent, \"</div>\\n\\t\\t\\t\");\n            itemsWrapper.appendChild(itemDiv);\n        });\n        summary.innerHTML = '<p class=\"text-see-more\">See More</p><p class=\"text-see-less\">See Less</p>';\n        details.appendChild(summary);\n        details.appendChild(itemsWrapper);\n        itemsWrapper.classList.add('sub-version-items-wrapper');\n        details.classList.add('whats-new-rss-sub-version-details');\n        return details.outerHTML;\n    };\n    WhatsNewRSSView.prototype.formatDate = function (date) {\n        if ('function' === typeof this.RSS.getArgs().flyout.formatDate) {\n            return this.RSS.getArgs().flyout.formatDate(date);\n        }\n        var currentDate = new Date();\n        var timestamp = date.getTime();\n        var currentTimestamp = currentDate.getTime();\n        var difference = currentTimestamp - timestamp;\n        // Define time intervals in milliseconds\n        var minute = 60 * 1000;\n        var hour = minute * 60;\n        var day = hour * 24;\n        var week = day * 7;\n        var month = day * 30; // Rough estimate, assuming 30 days in a month\n        if (difference < minute) {\n            return 'Just now';\n        }\n        else if (difference < hour) {\n            var minutes = Math.floor(difference / minute);\n            return \"\".concat(minutes, \" minute\").concat(minutes > 1 ? 's' : '', \" ago\");\n        }\n        else if (difference < day) {\n            var hours = Math.floor(difference / hour);\n            return \"\".concat(hours, \" hour\").concat(hours > 1 ? 's' : '', \" ago\");\n        }\n        else if (difference < week) {\n            var days = Math.floor(difference / day);\n            return \"\".concat(days, \" day\").concat(days > 1 ? 's' : '', \" ago\");\n        }\n        else if (difference < month) {\n            var weeks = Math.floor(difference / week);\n            return \"\".concat(weeks, \" week\").concat(weeks > 1 ? 's' : '', \" ago\");\n        }\n        else {\n            // Handle months and years accordingly\n            // This is a rough estimate and may not be accurate in all cases\n            var months = Math.floor(difference / month);\n            return \"\".concat(months, \" month\").concat(months > 1 ? 's' : '', \" ago\");\n        }\n    };\n    return WhatsNewRSSView;\n}());\n\nasync function getCSS() {\n    return `.whats-new-rss-is-active{overflow:hidden}.whats-new-rss-trigger-button{display:flex;align-items:center;position:relative;width:auto;padding:5px;cursor:pointer}.whats-new-rss-trigger-button .whats-new-rss-notification-badge{position:absolute;top:-8px;right:-5px;width:20px;font-size:10px;line-height:20px;text-align:center;border-radius:10px;color:#fff;background:red;transition:transform .2s ease-in-out}.whats-new-rss-trigger-button .whats-new-rss-notification-badge.is-multi-feed{top:-2px;right:-2px;font-size:0;width:10px;height:10px}.whats-new-rss-trigger-button .whats-new-rss-notification-badge.hide{display:none}.whats-new-rss-trigger-button:hover .whats-new-rss-notification-badge{transform:scale(1.2)}.whats-new-rss-flyout{position:fixed;top:0;right:0;bottom:0;width:100%;z-index:99999;transition:visibility .3s ease-in-out;font-family:Arial,Helvetica,sans-serif}.whats-new-rss-flyout .lightbox-trigger,.whats-new-rss-flyout.hidden{display:none}.whats-new-rss-flyout.is-loading .whats-new-rss-flyout-inner-header__loading-icon{display:block;margin:auto}.whats-new-rss-flyout.is-loading .whats-new-rss-flyout-inner-header__loading-icon svg{display:block;background:0 0;width:25px;height:25px}.whats-new-rss-flyout .whats-new-rss-flyout-contents{position:fixed;display:flex;right:0;width:30%;height:100%;flex-direction:column;background-color:#fff;transition:transform .3s ease-in-out;z-index:9999}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header{display:flex;justify-content:space-between;align-items:center;padding:16px 20px 16px 24px;border-bottom:1px solid #ccc}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header button{border:none;background:0 0;font-size:30px;cursor:pointer;color:#94a3b8;padding:0;margin:0;box-shadow:none}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header .whats-new-rss-flyout-inner-header__title-icon-wrapper{display:flex;gap:10px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header .whats-new-rss-flyout-inner-header__title-icon-wrapper h3{margin:0;padding:0;color:#0f172a;font-weight:600;font-size:16px;line-height:24px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav{display:flex;padding:0 30px;border-bottom:1px solid #ccc;gap:2em;overflow:auto;white-space:nowrap}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button{position:relative;background:0 0;color:inherit;padding:15px 0;border-bottom:2px solid transparent}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button:focus,.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button:hover{border-color:inherit}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button.selected{border-color:#5d5d5d}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button .new-notification-count{position:absolute;top:0;right:-10px;width:20px;font-size:10px;line-height:20px;text-align:center;border-radius:10px;color:#fff;background:red}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content{flex:1;overflow-y:auto}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .skeleton-container{margin:30px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item{border-bottom:1px solid #d8dfe9;padding:30px 24px;color:#475569;font-weight:400;font-size:14px;line-height:20px;display:flex;flex-direction:column;gap:13px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item>*{margin:0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item.skeleton-row{height:25vh;margin:40px 0;background:linear-gradient(90deg,#eee 25%,#ddd 50%,#eee 75%);background-size:200% 100%;animation:shimmer 1.5s infinite}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item.rss-new-post{position:relative}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item.rss-new-post .new-post-badge{background:#ff3d3d;border-radius:5px;position:absolute;right:45px;padding:0 5px;color:#fff}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item .rss-content-header{display:flex;flex-direction:column;gap:15px;padding:0 0 8px 0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item .rss-content-header p{color:#94a3b8;margin:0;padding:0;font-weight:600;font-size:14px;line-height:16px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item .rss-content-header h2{margin:0;color:#0f172a;font-weight:700;line-height:28px;font-size:20px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h2{font-weight:700;font-size:18px;line-height:24px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h3{font-weight:700;font-size:16px;line-height:22px;margin-top:12px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h4{font-weight:700;font-size:15px;line-height:20px;margin-top:12px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h5{font-weight:700;font-size:14px;line-height:18px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h6{font-weight:700;font-size:13px;line-height:16px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item p{padding:0;font-size:14px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item p:last-child{margin-bottom:0;padding-bottom:0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item a{color:#1170ff;text-decoration:none}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item figure{margin:10px 0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item figure.wp-block-embed.is-type-video{position:relative;width:100%;height:0;padding-bottom:56.25%}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item figure iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item video{vertical-align:middle;width:100%}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item strong{font-weight:600}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ol,.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ul{padding-inline-start:20px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ol li,.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ul li{margin-bottom:5px}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ul{list-style-type:disc}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ol{list-style-type:decimal}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details{line-height:20px;font-size:.9em;margin:10px 0;background:#f9fafb}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary{display:flex;justify-content:space-between;cursor:pointer;padding:20px 15px;height:1em;line-height:20px;font-weight:800}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary::after{content:'⌃';font-size:20px;transform:rotateX(180deg);font-weight:800}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary .text-see-more{display:block}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary .text-see-less{display:none}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary{border-bottom:1px solid #e2e8f0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary::after{transform:rotateX(45deg)}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary .text-see-more{display:none}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary .text-see-less{display:block}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details .sub-version-item{position:relative;padding:1em;border-bottom:1px solid #e2e8f0}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details .sub-version-item .sub-version-header{display:flex;justify-content:space-between}.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details .sub-version-item .sub-version-content{margin-top:1em}.whats-new-rss-flyout .whats-new-rss-flyout-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,.5);transition:all .3s ease-in-out}.whats-new-rss-flyout.closed{visibility:hidden}.whats-new-rss-flyout.closed .whats-new-rss-flyout-overlay{opacity:0;visibility:hidden}.whats-new-rss-flyout.closed .whats-new-rss-flyout-contents{transform:translateX(100%)}.whats-new-rss-flyout .whats-new-rss-flyout-inner-header__loading-icon{display:none}@keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}@media screen and (max-width:1024px){.whats-new-rss-flyout .whats-new-rss-flyout-contents{width:40%}}@media screen and (max-width:768px){.whats-new-rss-flyout .whats-new-rss-flyout-contents{width:85%}}`;\n}\n\nasync function addStyleIfNotExists() {\n    const styleId = 'whats-new-rss-styles';\n    if (!document.getElementById(styleId)) {\n        const style = document.createElement('style');\n        style.id = styleId;\n        style.innerHTML = await getCSS();\n        document.head.appendChild(style);\n    }\n}\n\n\nfunction createWhatsNewRSSInstance(args) {\n    return new WhatsNewRSS(args);\n}\n\nfunction useWhatsNewRSS({ selector, ...rest }) {\n    const instanceRef = useRef(null);\n\n    useEffect(() => {\n        addStyleIfNotExists();\n\n        if (!instanceRef.current) {\n            instanceRef.current = createWhatsNewRSSInstance({ selector, ...rest });\n        }\n\n        // Cleanup function\n        return () => {\n            if (instanceRef.current && typeof instanceRef.current.destroy === 'function') {\n                instanceRef.current.destroy();\n            }\n        };\n    }, [selector, ...Object.values(rest)]); // Adjust dependencies as needed\n\n    return instanceRef.current;\n}\n\nexport default useWhatsNewRSS;\n\n","import React, { useEffect, useState } from \"react\";\nimport { Topbar, Button, Badge, DropdownMenu } from \"@bsf/force-ui\";\nimport {\n\tArrowUpRight,\n\tCircleHelp,\n\tFileText,\n\tHeadset,\n\tHouse,\n\tUser,\n} from \"lucide-react\";\nimport { __ } from \"@wordpress/i18n\";\nimport { routes } from \"../admin/settings/routes\";\nimport { Link } from \"../router/index\";\nimport useWhatsNewRSS from \"whats-new-rss\";\n\nfunction updateNavMenuActiveState() {\n\tconst currentPath = window.location.hash;\n\tconst menuItems = document.querySelectorAll(\n\t\t\"#adminmenu #toplevel_page_hfe a\"\n\t);\n\n\tmenuItems.forEach((item) => {\n\t\tconst href = item.getAttribute(\"href\");\n\t\tconst parentLi = item.closest(\"li\");\n\t\tconst itemText = item.textContent.trim();\n\n\t\tif (\n\t\t\thref &&\n\t\t\t(currentPath.includes(href.split(\"#\")[1]) ||\n\t\t\t\t(\"#dashboard\" === currentPath && itemText === \"Dashboard\"))\n\t\t) {\n\t\t\tparentLi.classList.add(\"current\");\n\t\t} else {\n\t\t\tparentLi.classList.remove(\"current\");\n\t\t}\n\t});\n}\n\nconst NavMenu = () => {\n\tconst [isDropdownOpen, setIsDropdownOpen] = useState(false);\n\n\tuseEffect(() => {\n\t\tupdateNavMenuActiveState();\n\t\twindow.addEventListener(\"hashchange\", updateNavMenuActiveState);\n\n\t\treturn () => {\n\t\t\twindow.removeEventListener(\"hashchange\", updateNavMenuActiveState);\n\t\t};\n\t}, []);\n\n\t// Get the current URL's hash part (after the #).\n\tconst currentPath = window.location.hash;\n\n\tconst isActive = (path) => currentPath.includes(path);\n\n\tconst linkStyle = (path) => ({\n\t\tcolor: isActive(path) ? \"#111827\" : \"#4B5563\",\n\t\tborderBottom: isActive(path) ? \"2px solid #6005FF\" : \"none\",\n\t\tpaddingBottom: \"22px\",\n\t\tmarginBottom: \"-16px\",\n\t});\n\n\tconst handleRedirect = (url) => {\n\t\twindow.open(url, \"_blank\");\n\t\tsetIsDropdownOpen(false);\n\t};\n\n\tuseWhatsNewRSS({\n\t\trssFeedURL: \"https://ultimateelementor.com/whats-new/feed/\",\n\t\tselector: \"#hfe-whats-new\",\n\t\ttriggerButton: {\n\t\t\tbeforeBtn:\n\t\t\t\t'<div class=\"w-4 sm:w-8 h-8 sm:h-10 flex items-center whitespace-nowrap justify-center cursor-pointer rounded-full border border-slate-200\">',\n\t\t\ticon: '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"#434141\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-megaphone\"><path d=\"m3 11 18-5v12L3 14v-3z\"></path><path d=\"M11.6 16.8a3 3 0 1 1-5.8-1.6\"></path></svg>',\n\t\t\tafterBtn: \"</div>\",\n\t\t},\n\t\tflyout: {\n\t\t\ttitle: __(\"What's New?\", \"header-footer-elementor\"),\n\t\t\tformatDate: (date) => {\n\t\t\t\tconst dayOfWeek = date.toLocaleDateString(\"en-US\", {\n\t\t\t\t\tweekday: \"long\",\n\t\t\t\t});\n\t\t\t\tconst month = date.toLocaleDateString(\"en-US\", {\n\t\t\t\t\tmonth: \"long\",\n\t\t\t\t});\n\t\t\t\tconst day = date.getDate();\n\t\t\t\tconst year = date.getFullYear();\n\n\t\t\t\treturn `${dayOfWeek} ${month} ${day}, ${year}`;\n\t\t\t},\n\t\t},\n\t});\n\n\treturn (\n\t\t<Topbar\n\t\t\tclassName=\"hfe-nav-menu relative\"\n\t\t\tstyle={{\n\t\t\t\twidth: \"unset\",\n\t\t\t\tpadding: \"0.5rem\",\n\t\t\t\tzIndex: \"9\",\n\t\t\t\tpaddingTop: \"1rem\",\n\t\t\t}}\n\t\t>\n\t\t\t<div className=\"flex flex-col lg:flex-row items-start md:items-center w-full\">\n\t\t\t\t{/* Top row on mobile: Logo and Nav menu */}\n\t\t\t\t<div className=\"flex flex-row md:items-center md:gap-8 w-full\">\n\t\t\t\t\t<Topbar.Left>\n\t\t\t\t\t\t<Topbar.Item>\n\t\t\t\t\t\t\t<Link to={routes.dashboard.path}>\n\t\t\t\t\t\t\t\t<img\n\t\t\t\t\t\t\t\t\tsrc={`${hfeSettingsData.icon_url}`}\n\t\t\t\t\t\t\t\t\talt=\"Icon\"\n\t\t\t\t\t\t\t\t\tclassName=\"ml-4 cursor-pointer\"\n\t\t\t\t\t\t\t\t\tstyle={{ height: \"35px\", width: \"35px\" }}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</Link>\n\t\t\t\t\t\t</Topbar.Item>\n\t\t\t\t\t</Topbar.Left>\n\t\t\t\t\t<Topbar.Middle className=\"flex-grow\" align=\"left\">\n\t\t\t\t\t\t<Topbar.Item>\n\t\t\t\t\t\t\t<nav className=\"flex flex-wrap gap-6 mt-2 md:mt-0 cursor-pointer\">\n\t\t\t\t\t\t\t\t<Link\n\t\t\t\t\t\t\t\t\tto={routes.dashboard.path}\n\t\t\t\t\t\t\t\t\tclassName={`${\n\t\t\t\t\t\t\t\t\t\tisActive(\"dashboard\")\n\t\t\t\t\t\t\t\t\t\t\t? \"active-link\"\n\t\t\t\t\t\t\t\t\t\t\t: \"\"\n\t\t\t\t\t\t\t\t\t}`}\n\t\t\t\t\t\t\t\t\tstyle={linkStyle(\"dashboard\")}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{__(\"Dashboard\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\t</Link>\n\t\t\t\t\t\t\t\t<Link\n\t\t\t\t\t\t\t\t\tto={routes.headerFooterBuilder.path}\n\t\t\t\t\t\t\t\t\tclassName={`${\n\t\t\t\t\t\t\t\t\t\tisActive(\n\t\t\t\t\t\t\t\t\t\t\t\"edit.php?post_type=elementor-hf\"\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t? \"active-link\"\n\t\t\t\t\t\t\t\t\t\t\t: \"\"\n\t\t\t\t\t\t\t\t\t}`}\n\t\t\t\t\t\t\t\t\tstyle={linkStyle(\n\t\t\t\t\t\t\t\t\t\t\"edit.php?post_type=elementor-hf\"\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\t\t\t\tconsole.log(\n\t\t\t\t\t\t\t\t\t\t\t\"Navigating to Header & Footer Builder\"\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\"Header & Footer\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t</Link>\n\t\t\t\t\t\t\t\t<Link\n\t\t\t\t\t\t\t\t\tto={routes.widgets.path}\n\t\t\t\t\t\t\t\t\tclassName={`${\n\t\t\t\t\t\t\t\t\t\tisActive(\"widgets\") ? \"active-link\" : \"\"\n\t\t\t\t\t\t\t\t\t}`}\n\t\t\t\t\t\t\t\t\tstyle={linkStyle(\"widgets\")}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{__(\"Widgets\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\t</Link>\n\t\t\t\t\t\t\t\t<Link\n\t\t\t\t\t\t\t\t\tto={routes.learn.path}\n\t\t\t\t\t\t\t\t\tclassName={`${\n\t\t\t\t\t\t\t\t\t\tisActive(\"learn\") ? \"active-link\" : \"\"\n\t\t\t\t\t\t\t\t\t}`}\n\t\t\t\t\t\t\t\t\tstyle={linkStyle(\"learn\")}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{__(\"Learn\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\t</Link>\n\t\t\t\t\t\t\t\t<Link\n\t\t\t\t\t\t\t\t\tto={routes.settings.path}\n\t\t\t\t\t\t\t\t\tclassName={`${\n\t\t\t\t\t\t\t\t\t\tisActive(\"settings\")\n\t\t\t\t\t\t\t\t\t\t\t? \"active-link\"\n\t\t\t\t\t\t\t\t\t\t\t: \"\"\n\t\t\t\t\t\t\t\t\t}`}\n\t\t\t\t\t\t\t\t\tstyle={linkStyle(\"settings\")}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{__(\"Settings\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\t</Link>\n\t\t\t\t\t\t\t\t<Link\n\t\t\t\t\t\t\t\t\tto={routes.upgrade.path}\n\t\t\t\t\t\t\t\t\tclassName={`${\n\t\t\t\t\t\t\t\t\t\tisActive(\"upgrade\") ? \"active-link\" : \"\"\n\t\t\t\t\t\t\t\t\t}`}\n\t\t\t\t\t\t\t\t\tstyle={linkStyle(\"upgrade\")}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\"Free vs Pro\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t</Link>\n\t\t\t\t\t\t\t</nav>\n\t\t\t\t\t\t</Topbar.Item>\n\t\t\t\t\t\t<Topbar.Item>\n\t\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\t\ticon={<ArrowUpRight />}\n\t\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\t\tvariant=\"ghost\"\n\t\t\t\t\t\t\t\tclassName=\"hfe-remove-ring mb-2\"\n\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\tcolor: \"#6005FF\",\n\t\t\t\t\t\t\t\t\t// paddingBottom: \"10px\",\n\t\t\t\t\t\t\t\t\tbackground: \"none\",\n\t\t\t\t\t\t\t\t\tborder: \"none\",\n\t\t\t\t\t\t\t\t\tpadding: 0,\n\t\t\t\t\t\t\t\t\tcursor: \"pointer\",\n\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\tonClick={() =>\n\t\t\t\t\t\t\t\t\thandleRedirect(\n\t\t\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=navigation-bar&utm_campaign=uae-lite-upgrade\"\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{__(\"Get Full Control\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t</Topbar.Item>\n\t\t\t\t\t</Topbar.Middle>\n\t\t\t\t\t<Topbar.Right className=\"gap-4\">\n\t\t\t\t\t\t<Topbar.Item>\n\t\t\t\t\t\t\t<DropdownMenu placement=\"bottom-end\">\n\t\t\t\t\t\t\t\t<DropdownMenu.Trigger>\n\t\t\t\t\t\t\t\t\t<Badge\n\t\t\t\t\t\t\t\t\t\tlabel={__(\n\t\t\t\t\t\t\t\t\t\t\t\"Free\",\n\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\t\t\t\tvariant=\"neutral\"\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t<span className=\"sr-only\">Open Menu</span>\n\t\t\t\t\t\t\t\t</DropdownMenu.Trigger>\n\t\t\t\t\t\t\t\t<DropdownMenu.Portal>\n\t\t\t\t\t\t\t\t<DropdownMenu.ContentWrapper>\n\t\t\t\t\t\t\t\t<DropdownMenu.Content className=\"w-60\">\n\t\t\t\t\t\t\t\t\t\t<DropdownMenu.List>\n\t\t\t\t\t\t\t\t\t\t\t<DropdownMenu.Item>\n\t\t\t\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"Version\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t</DropdownMenu.Item>\n\t\t\t\t\t\t\t\t\t\t\t<DropdownMenu.Item>\n\t\t\t\t\t\t\t\t\t\t\t\t<div className=\"flex justify-between w-full\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${hfeSettingsData.uaelite_current_version}`}\n\t\t\t\t\t\t\t\t\t\t\t\t\t<Badge\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlabel={__(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"Free\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvariant=\"neutral\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t\t</DropdownMenu.Item>\n\t\t\t\t\t\t\t\t\t\t</DropdownMenu.List>\n\t\t\t\t\t\t\t\t\t</DropdownMenu.Content>\n\t\t\t\t\t\t\t\t</DropdownMenu.ContentWrapper>\n\t\t\t\t\t\t\t\t</DropdownMenu.Portal>\n\t\t\t\t\t\t\t</DropdownMenu>\n\t\t\t\t\t\t</Topbar.Item>\n\t\t\t\t\t\t<Topbar.Item className=\"gap-4 cursor-pointer\">\n\t\t\t\t\t\t\t<DropdownMenu placement=\"bottom-end\">\n\t\t\t\t\t\t\t\t<DropdownMenu.Trigger>\n\t\t\t\t\t\t\t\t\t<CircleHelp />\n\t\t\t\t\t\t\t\t</DropdownMenu.Trigger>\n\t\t\t\t\t\t\t\t<DropdownMenu.Portal>\n\t\t\t\t\t\t\t\t<DropdownMenu.ContentWrapper>\n\t\t\t\t\t\t\t\t<DropdownMenu.Content className=\"w-60\">\n\t\t\t\t\t\t\t\t\t\t<DropdownMenu.List>\n\t\t\t\t\t\t\t\t\t\t\t<DropdownMenu.Item>\n\t\t\t\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"Useful Resources\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t</DropdownMenu.Item>\n\t\t\t\t\t\t\t\t\t\t\t<DropdownMenu.Item\n\t\t\t\t\t\t\t\t\t\t\t\tclassName=\"text-text-primary\"\n\t\t\t\t\t\t\t\t\t\t\t\tstyle={{ color: \"black\" }}\n\t\t\t\t\t\t\t\t\t\t\t\tonClick={() =>\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleRedirect(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/docs/getting-started-with-ultimate-addons-for-elementor-lite/\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t<FileText\n\t\t\t\t\t\t\t\t\t\t\t\t\tstyle={{ color: \"black\" }}\n\t\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"Getting Started\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t</DropdownMenu.Item>\n\t\t\t\t\t\t\t\t\t\t\t<DropdownMenu.Item\n\t\t\t\t\t\t\t\t\t\t\t\tonClick={() =>\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleRedirect(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/docs-category/widgets/\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t<FileText />\n\t\t\t\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"How to use widgets\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t</DropdownMenu.Item>\n\t\t\t\t\t\t\t\t\t\t\t<DropdownMenu.Item\n\t\t\t\t\t\t\t\t\t\t\t\tonClick={() =>\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleRedirect(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/docs-category/features/\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t<FileText />\n\t\t\t\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"How to use features\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t</DropdownMenu.Item>\n\t\t\t\t\t\t\t\t\t\t\t<DropdownMenu.Item\n\t\t\t\t\t\t\t\t\t\t\t\tonClick={() =>\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleRedirect(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/docs-category/templates/\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t<FileText />\n\t\t\t\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"How to use templates\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t</DropdownMenu.Item>\n\t\t\t\t\t\t\t\t\t\t\t<DropdownMenu.Item\n\t\t\t\t\t\t\t\t\t\t\t\tonClick={() =>\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleRedirect(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/contact/\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t<Headset />\n\t\t\t\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"Contact us\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t</DropdownMenu.Item>\n\t\t\t\t\t\t\t\t\t\t</DropdownMenu.List>\n\t\t\t\t\t\t\t\t\t</DropdownMenu.Content>\n\t\t\t\t\t\t\t\t</DropdownMenu.ContentWrapper>\n\t\t\t\t\t\t\t\t</DropdownMenu.Portal>\n\t\t\t\t\t\t\t</DropdownMenu>\n\t\t\t\t\t\t\t<div className=\"pb-1\" id=\"hfe-whats-new\"></div>\n\t\t\t\t\t\t</Topbar.Item>\n\t\t\t\t\t\t<Link to={routes.settings.path}>\n\t\t\t\t\t\t\t<User\n\t\t\t\t\t\t\t\tclassName=\"cursor-pointer hfe-user-icon\"\n\t\t\t\t\t\t\t\tstyle={{ color: \"black\" }}\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t</Link>\n\t\t\t\t\t</Topbar.Right>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</Topbar>\n\t);\n};\n\nexport default NavMenu;\n","import arrayWithoutHoles from \"./arrayWithoutHoles.js\";\nimport iterableToArray from \"./iterableToArray.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableSpread from \"./nonIterableSpread.js\";\nfunction _toConsumableArray(r) {\n  return arrayWithoutHoles(r) || iterableToArray(r) || unsupportedIterableToArray(r) || nonIterableSpread();\n}\nexport { _toConsumableArray as default };","import arrayLikeToArray from \"./arrayLikeToArray.js\";\nfunction _arrayWithoutHoles(r) {\n  if (Array.isArray(r)) return arrayLikeToArray(r);\n}\nexport { _arrayWithoutHoles as default };","function _iterableToArray(r) {\n  if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r);\n}\nexport { _iterableToArray as default };","function _nonIterableSpread() {\n  throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\nexport { _nonIterableSpread as default };","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst Info = createLucideIcon(\"Info\", [\n  [\"circle\", { cx: \"12\", cy: \"12\", r: \"10\", key: \"1mglay\" }],\n  [\"path\", { d: \"M12 16v-4\", key: \"1dtifu\" }],\n  [\"path\", { d: \"M12 8h.01\", key: \"e9boi3\" }]\n]);\n\nexport { Info as default };\n//# sourceMappingURL=info.js.map\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst Check = createLucideIcon(\"Check\", [[\"path\", { d: \"M20 6 9 17l-5-5\", key: \"1gmf2c\" }]]);\n\nexport { Check as default };\n//# sourceMappingURL=check.js.map\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst TriangleAlert = createLucideIcon(\"TriangleAlert\", [\n  [\n    \"path\",\n    {\n      d: \"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3\",\n      key: \"wmoenq\"\n    }\n  ],\n  [\"path\", { d: \"M12 9v4\", key: \"juzpu7\" }],\n  [\"path\", { d: \"M12 17h.01\", key: \"p32p05\" }]\n]);\n\nexport { TriangleAlert as default };\n//# sourceMappingURL=triangle-alert.js.map\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst Trash2 = createLucideIcon(\"Trash2\", [\n  [\"path\", { d: \"M3 6h18\", key: \"d0wm0j\" }],\n  [\"path\", { d: \"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6\", key: \"4alrt4\" }],\n  [\"path\", { d: \"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2\", key: \"v07s0e\" }],\n  [\"line\", { x1: \"10\", x2: \"10\", y1: \"11\", y2: \"17\", key: \"1uufr5\" }],\n  [\"line\", { x1: \"14\", x2: \"14\", y1: \"11\", y2: \"17\", key: \"xtxkd\" }]\n]);\n\nexport { Trash2 as default };\n//# sourceMappingURL=trash-2.js.map\n","import { jsx as a } from \"react/jsx-runtime\";\nimport { isValidElement as m, cloneElement as x } from \"react\";\nimport { Info as c, Check as g, AlertTriangle as f, Trash2 as d } from \"lucide-react\";\nimport { cn as n } from \"../../utilities/functions.es.js\";\nimport u from \"../button/button.es.js\";\nconst l = \"light\", p = \"neutral\", v = \"button\", h = ({\n  theme: t = l,\n  variant: r = p\n}) => {\n  let e = t === \"light\" ? \"text-icon-secondary\" : \"text-icon-inverse\";\n  return e = {\n    info: t === \"light\" ? \"text-support-info\" : \"text-support-info-inverse\",\n    success: t === \"light\" ? \"text-support-success\" : \"text-support-success-inverse\",\n    warning: t === \"light\" ? \"text-support-warning\" : \"text-support-warning-inverse\",\n    error: t === \"light\" ? \"text-support-error\" : \"text-support-error-inverse\"\n  }[r] || e, e;\n}, E = ({\n  icon: t,\n  theme: r = l,\n  variant: e = p\n}) => {\n  const s = \"[&>svg]:h-5 [&>svg]:w-5\", o = h({ theme: r, variant: e });\n  if (t && m(t))\n    return x(t, {\n      className: n(\n        s,\n        o,\n        t?.props?.className ?? \"\"\n      )\n    });\n  const i = {\n    neutral: /* @__PURE__ */ a(c, { className: n(s, o) }),\n    info: /* @__PURE__ */ a(c, { className: n(s, o) }),\n    success: /* @__PURE__ */ a(g, { className: n(s, o) }),\n    warning: /* @__PURE__ */ a(f, { className: n(s, o) }),\n    error: /* @__PURE__ */ a(d, { className: n(s, o) })\n  };\n  return i[e] || i.neutral;\n}, y = ({\n  actionType: t = v,\n  onAction: r = () => {\n  },\n  actionLabel: e = \"\",\n  theme: s = l\n}) => {\n  const o = \"focus:ring-0 focus:ring-offset-0 ring-offset-0 focus:outline-none\";\n  let i = \"text-button-primary border-button-primary hover:border-button-primary hover:text-button-primary-hover\";\n  switch (s === \"dark\" && (i = \"text-text-inverse border-text-inverse hover:border-text-inverse hover:text-text-inverse\"), t) {\n    case \"button\":\n      return /* @__PURE__ */ a(\n        u,\n        {\n          variant: \"outline\",\n          size: \"xs\",\n          onClick: r,\n          className: n(\n            \"rounded\",\n            o,\n            i,\n            s === \"dark\" ? \"bg-transparent hover:bg-transparent\" : \"bg-white hover:bg-white\"\n          ),\n          children: e\n        }\n      );\n    case \"link\":\n      return /* @__PURE__ */ a(\n        u,\n        {\n          variant: \"link\",\n          size: \"xs\",\n          onClick: r,\n          className: n(o, i),\n          children: e\n        }\n      );\n    default:\n      return null;\n  }\n}, A = ({\n  theme: t = l,\n  title: r = \"\",\n  inline: e = !1\n}) => r ? /* @__PURE__ */ a(\n  \"span\",\n  {\n    className: n(\n      \"block\",\n      {\n        light: \"text-text-primary\",\n        dark: \"text-text-inverse\"\n      }[t],\n      \"text-sm leading-5 font-semibold\",\n      e ? \"inline\" : \"block\"\n    ),\n    children: r\n  }\n) : null, I = ({\n  theme: t = l,\n  content: r = \"\",\n  inline: e = !1\n}) => r ? /* @__PURE__ */ a(\n  \"span\",\n  {\n    className: n(\n      {\n        light: \"text-text-primary\",\n        dark: \"text-text-inverse\"\n      }[t],\n      \"block text-sm [&_*]:text-sm leading-5 [&_*]:leading-5 font-normal [word-break:break-word]\",\n      e ? \"inline\" : \"block\"\n    ),\n    children: r\n  }\n) : null, _ = (...t) => (r) => {\n  t.forEach((e) => {\n    typeof e == \"function\" ? e(r) : e && (e.current = r);\n  });\n};\nexport {\n  y as getAction,\n  I as getContent,\n  E as getIcon,\n  h as getIconColor,\n  A as getTitle,\n  _ as mergeRefs\n};\n//# sourceMappingURL=utils.es.js.map\n","import { jsxs as i, jsx as t } from \"react/jsx-runtime\";\nimport { useMemo as U, useState as V, useRef as q, Fragment as g, isValidElement as B, cloneElement as G } from \"react\";\nimport { useFloating as J, offset as K, flip as L, shift as Q, arrow as W, autoUpdate as X, useClick as Y, useHover as Z, safePolygon as _, useFocus as $, useDismiss as ee, useRole as oe, useInteractions as te, useTransitionStyles as se, FloatingPortal as le, FloatingArrow as ne } from \"@floating-ui/react\";\nimport { cn as r } from \"../../utilities/functions.es.js\";\nimport { mergeRefs as ae } from \"../toaster/utils.es.js\";\nconst ie = ({\n  variant: c = \"dark\",\n  // 'light' | 'dark';\n  placement: h = \"bottom\",\n  //  | 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end';\n  title: d = \"\",\n  content: f,\n  arrow: x = !1,\n  open: l,\n  setOpen: n,\n  children: s,\n  className: w,\n  tooltipPortalRoot: b,\n  // Root element where the dropdown will be rendered.\n  tooltipPortalId: k,\n  // Id of the dropdown portal where the dropdown will be rendered.\n  boundary: p = \"clippingAncestors\",\n  strategy: y = \"fixed\",\n  // 'fixed' | 'absolute';\n  offset: C = 8,\n  // Offset option or number value. Default is 8.\n  triggers: a = [\"hover\", \"focus\"],\n  // 'click' | 'hover' | 'focus';\n  interactive: v = !1\n}) => {\n  const o = U(\n    () => typeof l == \"boolean\" && typeof n == \"function\",\n    [l, n]\n  ), [F, N] = V(!1), m = q(null), { refs: u, floatingStyles: R, context: e } = J({\n    open: o ? l : F,\n    onOpenChange: o ? n : N,\n    placement: h,\n    strategy: y,\n    middleware: [\n      K(C),\n      L({ boundary: p }),\n      // Ensure this is correctly cast\n      Q({ boundary: p }),\n      // Ensure this is correctly cast\n      W({ element: m })\n    ],\n    whileElementsMounted: X\n  }), P = Y(e, {\n    enabled: !o && a.includes(\"click\")\n  }), E = Z(e, {\n    move: !1,\n    enabled: !o && a.includes(\"hover\"),\n    ...v && { handleClose: _() }\n  }), M = $(e, {\n    enabled: !o && a.includes(\"focus\")\n  }), S = ee(e), T = oe(e, { role: \"tooltip\" }), { getReferenceProps: j, getFloatingProps: A } = te([\n    P,\n    E,\n    M,\n    S,\n    T\n  ]), { isMounted: I, styles: z } = se(e, {\n    duration: 150,\n    initial: { opacity: 0 },\n    open: { opacity: 1 },\n    close: { opacity: 0 }\n  }), D = \"absolute z-20 py-2 px-3 rounded-md text-xs leading-4 shadow-soft-shadow-lg\", H = {\n    light: \"bg-tooltip-background-light text-text-primary\",\n    dark: \"bg-tooltip-background-dark text-text-on-color\"\n  }[c], O = c === \"dark\" ? \"text-tooltip-background-dark\" : \"text-tooltip-background-light\";\n  return /* @__PURE__ */ i(g, { children: [\n    B(s) && /* @__PURE__ */ t(g, { children: G(s, {\n      ref: ae(\n        s.ref,\n        u.setReference\n      ),\n      className: r(s.props.className),\n      ...j()\n    }) }, \"tooltip-reference\"),\n    /* @__PURE__ */ t(le, { id: k, root: b, children: I && /* @__PURE__ */ i(\n      \"div\",\n      {\n        className: r(\n          D,\n          H,\n          \"max-w-80 w-fit\",\n          w\n        ),\n        ref: u.setFloating,\n        style: {\n          ...R,\n          ...z\n        },\n        ...A(),\n        children: [\n          /* @__PURE__ */ i(\"div\", { children: [\n            !!d && /* @__PURE__ */ t(\n              \"span\",\n              {\n                className: \"font-semibold\",\n                children: d\n              },\n              \"tooltip-title\"\n            ),\n            !!f && /* @__PURE__ */ t(\n              \"div\",\n              {\n                className: \"font-normal\",\n                children: f\n              },\n              \"tooltip-content\"\n            )\n          ] }),\n          x && /* @__PURE__ */ t(\n            ne,\n            {\n              ref: m,\n              context: e,\n              className: r(\"fill-current\", O)\n            }\n          )\n        ]\n      }\n    ) })\n  ] });\n};\nie.displayName = \"Tooltip\";\nexport {\n  ie as Tooltip,\n  ie as default\n};\n//# sourceMappingURL=tooltip.es.js.map\n","import { jsx as b } from \"react/jsx-runtime\";\nimport { cn as p } from \"../../utilities/functions.es.js\";\nimport { forwardRef as u } from \"react\";\nconst c = u(\n  ({\n    children: e = null,\n    tag: l = \"label\",\n    size: r = \"sm\",\n    // xs, sm, md\n    className: a = \"\",\n    variant: t = \"neutral\",\n    // neutral, help, error, disabled\n    required: o = !1,\n    ...d\n  }, f) => {\n    const i = \"font-medium text-field-label flex items-center gap-0.5\", n = {\n      xs: \"text-xs [&>*]:text-xs [&>svg]:h-3 [&>svg]:w-3\",\n      sm: \"text-sm [&>*]:text-sm [&>svg]:h-4 [&>svg]:w-4\",\n      md: \"text-base [&>*]:text-base [&>svg]:h-5 [&>svg]:w-5\"\n    }, x = {\n      neutral: \"text-field-label [&>*]:text-field-label\",\n      help: \"text-field-helper [&>*]:text-field-helper\",\n      error: \"text-support-error [&>*]:text-support-error\",\n      disabled: \"text-field-color-disabled disabled cursor-not-allowed [&>*]:text-field-color-disabled\"\n    }, m = {\n      neutral: \"\",\n      help: \"font-normal\",\n      error: \"font-normal\",\n      disabled: \"\"\n    };\n    if (!e)\n      return null;\n    let s = \"\";\n    return o && (s = \"after:content-['*'] after:text-field-required after:ml-0.5\"), /* @__PURE__ */ b(\n      l,\n      {\n        ref: f,\n        className: p(\n          i,\n          n[r],\n          x[t],\n          s,\n          m?.[t],\n          a\n        ),\n        ...d,\n        children: e\n      }\n    );\n  }\n);\nc.displayName = \"Label\";\nexport {\n  c as default\n};\n//# sourceMappingURL=label.es.js.map\n","import { jsx as a, jsxs as d } from \"react/jsx-runtime\";\nimport { forwardRef as A, useMemo as C, useState as E, useCallback as F, isValidElement as H } from \"react\";\nimport { nanoid as I } from \"nanoid\";\nimport { cn as t } from \"../../utilities/functions.es.js\";\nimport N from \"../label/label.es.js\";\nconst M = ({\n  label: e,\n  switchId: g,\n  disabled: r = !1,\n  children: c,\n  size: s\n}) => {\n  const o = {\n    xs: \"text-xs leading-4 font-medium\",\n    sm: \"text-sm leading-5 font-medium\",\n    md: \"text-base leading-6 font-medium\"\n  }, h = {\n    xs: \"text-xs leading-4 font-normal\",\n    sm: \"text-sm leading-5 font-normal\",\n    md: \"text-sm leading-5 font-normal\"\n  }, f = {\n    xs: \"space-y-0.5\",\n    sm: \"space-y-0.5\",\n    md: \"space-y-1\"\n  };\n  if (H(e))\n    return /* @__PURE__ */ d(\n      \"div\",\n      {\n        className: t(\"inline-flex items-center gap-3\", \"items-start\"),\n        children: [\n          c,\n          e\n        ]\n      }\n    );\n  const u = () => {\n    const { heading: n = \"\", description: l = \"\" } = e || {};\n    return /* @__PURE__ */ d(\"div\", { className: t(\"space-y-0.5\", f[s]), children: [\n      n && /* @__PURE__ */ a(\n        N,\n        {\n          htmlFor: g,\n          className: t(\"m-0\", o[s]),\n          ...r && { variant: \"disabled\" },\n          children: n\n        }\n      ),\n      l && /* @__PURE__ */ a(\n        N,\n        {\n          tag: \"p\",\n          variant: \"help\",\n          className: t(\n            \"text-sm font-normal leading-5 m-0\",\n            h[s]\n          ),\n          ...r && { variant: \"disabled\" },\n          children: l\n        }\n      )\n    ] });\n  }, p = !e?.heading && !e?.description, i = !e?.heading || !e?.description ? \"items-center\" : \"items-start\";\n  return p ? c : /* @__PURE__ */ d(\"div\", { className: t(\"inline-flex\", i, \"gap-3\"), children: [\n    c,\n    u()\n  ] });\n}, R = ({\n  id: e,\n  onChange: g,\n  value: r,\n  defaultValue: c = !1,\n  size: s = \"sm\",\n  disabled: o = !1,\n  label: h = { heading: \"\", description: \"\" },\n  name: f,\n  className: b,\n  ...u\n}, p) => {\n  const i = s === \"lg\" ? \"md\" : s, n = C(() => typeof r < \"u\", [r]), l = C(() => e || `switch-${I()}`, []), [w, D] = E(c), m = \"primary\", z = F(\n    () => n ? r : w,\n    [n, r, w]\n  ), L = (j) => {\n    if (o)\n      return;\n    const y = j.target.checked;\n    n || D(y), typeof g == \"function\" && g(y);\n  }, x = {\n    primary: {\n      input: \"bg-toggle-off checked:bg-toggle-on focus:ring focus:ring-toggle-on focus:ring-offset-2 border border-solid border-toggle-off-border checked:border-toggle-on-border shadow-toggleContainer focus:outline-none checked:focus:border-toggle-on-border focus:border-toggle-off-border\",\n      toggleDial: \"bg-toggle-dial-background shadow-toggleDial\"\n    }\n  }, S = {\n    primary: {\n      input: \"group-hover/switch:bg-toggle-off-hover checked:group-hover/switch:bg-toggle-on-hover checked:group-hover/switch:border-toggle-on-border\"\n    }\n  }, v = {\n    md: {\n      container: \"w-11 h-6\",\n      toggleDial: \"size-4 peer-checked:translate-x-5\"\n    },\n    sm: {\n      container: \"w-10 h-5\",\n      toggleDial: \"size-3 peer-checked:translate-x-5\"\n    },\n    xs: {\n      container: \"w-8 h-4\",\n      toggleDial: \"size-2.5 peer-checked:translate-x-3.75\"\n    }\n  }, V = {\n    md: \"group-hover/switch:size-5 group-focus-within/switch:size-5 not-rtl:group-focus-within/switch:left-0.5 rtl:group-focus-within/switch:right-0.5 not-rtl:group-hover/switch:left-0.5 rtl:group-hover/switch:right-0.5\",\n    sm: \"group-hover/switch:size-4 group-focus-within/switch:size-4 not-rtl:group-focus-within/switch:left-0.5 rtl:group-focus-within/switch:right-0.5 not-rtl:group-hover/switch:left-0.5 rtl:group-hover/switch:right-0.5\",\n    xs: \"group-hover/switch:size-3.25 group-focus-within/switch:size-3.25 not-rtl:group-focus-within/switch:left-0.5 rtl:group-focus-within/switch:right-0.5 not-rtl:group-hover/switch:left-0.5 rtl:group-hover/switch:right-0.5\"\n  }, k = {\n    input: \"bg-toggle-off-disabled disabled:border-transparent disabled:cursor-not-allowed checked:disabled:bg-toggle-on-disabled disabled:shadow-toggle-disabled\",\n    toggleDial: \"peer-disabled:cursor-not-allowed\"\n  };\n  return /* @__PURE__ */ a(\n    M,\n    {\n      label: h,\n      switchId: l,\n      disabled: o,\n      size: i,\n      children: /* @__PURE__ */ d(\n        \"div\",\n        {\n          className: t(\n            \"relative group/switch inline-block cursor-pointer rounded-full shrink-0\",\n            v[i].container,\n            b\n          ),\n          children: [\n            /* @__PURE__ */ a(\n              \"input\",\n              {\n                ref: p,\n                id: l,\n                type: \"checkbox\",\n                className: t(\n                  \"peer appearance-none absolute rounded-full cursor-pointer transition-colors duration-300 h-full w-full  before:content-[''] checked:before:content-[''] m-0 checked:[background-image:none]\",\n                  x[m].input,\n                  o && k.input,\n                  !o && S[m].input\n                ),\n                checked: z(),\n                onChange: L,\n                disabled: o,\n                name: f,\n                ...u\n              }\n            ),\n            /* @__PURE__ */ a(\n              \"label\",\n              {\n                htmlFor: l,\n                className: t(\n                  \"peer/toggle-dial bg-white border rounded-full absolute cursor-pointer shadow-md before:content[''] before:transition-opacity before:opacity-0 hover:before:opacity-10 before:hidden border-none transition-all duration-300 top-2/4 not-rtl:left-1 rtl:right-1 -translate-y-2/4 before:w-10 before:h-10 before:rounded-full before:absolute before:top-2/4 not-rtl:before:left-2/4 rtl:before:right-2/4 before:-translate-y-2/4 before:-translate-x-2/4\",\n                  v[i].toggleDial,\n                  x[m].toggleDial,\n                  o && k.toggleDial,\n                  !o && V[i]\n                )\n              }\n            )\n          ]\n        }\n      )\n    }\n  );\n}, $ = A(R);\n$.displayName = \"Switch\";\nexport {\n  R as SwitchComponent,\n  M as SwitchLabel,\n  $ as default\n};\n//# sourceMappingURL=switch.es.js.map\n","/* @ts-self-types=\"./index.d.ts\" */\nimport { urlAlphabet as scopedUrlAlphabet } from './url-alphabet/index.js'\nexport { urlAlphabet } from './url-alphabet/index.js'\nexport let random = bytes => crypto.getRandomValues(new Uint8Array(bytes))\nexport let customRandom = (alphabet, defaultSize, getRandom) => {\n  let mask = (2 << Math.log2(alphabet.length - 1)) - 1\n  let step = -~((1.6 * mask * defaultSize) / alphabet.length)\n  return (size = defaultSize) => {\n    let id = ''\n    while (true) {\n      let bytes = getRandom(step)\n      let j = step | 0\n      while (j--) {\n        id += alphabet[bytes[j] & mask] || ''\n        if (id.length >= size) return id\n      }\n    }\n  }\n}\nexport let customAlphabet = (alphabet, size = 21) =>\n  customRandom(alphabet, size | 0, random)\nexport let nanoid = (size = 21) => {\n  let id = ''\n  let bytes = crypto.getRandomValues(new Uint8Array((size |= 0)))\n  while (size--) {\n    id += scopedUrlAlphabet[bytes[size] & 63]\n  }\n  return id\n}\n","export const urlAlphabet =\n  'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"rect\", { width: \"20\", height: \"14\", x: \"2\", y: \"3\", rx: \"2\", key: \"48i651\" }],\n  [\"line\", { x1: \"8\", x2: \"16\", y1: \"21\", y2: \"21\", key: \"1svkeh\" }],\n  [\"line\", { x1: \"12\", x2: \"12\", y1: \"17\", y2: \"21\", key: \"vw1qmm\" }]\n];\nconst Monitor = createLucideIcon(\"monitor\", __iconNode);\n\nexport { __iconNode, Monitor as default };\n//# sourceMappingURL=monitor.js.map\n","const __WEBPACK_NAMESPACE_OBJECT__ = window[\"wp\"][\"apiFetch\"];","import React, { useEffect, useState } from \"react\";\nimport { Container, Switch, Tooltip, Badge } from \"@bsf/force-ui\";\nimport { InfoIcon, FileText, Monitor } from \"lucide-react\";\nimport apiFetch from \"@wordpress/api-fetch\";\nimport { __ } from \"@wordpress/i18n\";\n\n// Create a queue to manage AJAX requests\nconst requestQueue = [];\n\nconst processQueue = () => {\n\tif (requestQueue.length === 0) return;\n\n\t// Take the first item from the queue and run it\n\tconst currentRequest = requestQueue.shift();\n\tcurrentRequest();\n};\n\nconst WidgetItem = ({ widget, updateCounter, showTooltip }) => {\n\tconst {\n\t\tid,\n\t\ticon,\n\t\ttitle,\n\t\tinfoText,\n\t\tis_pro,\n\t\tis_active,\n\t\tslug,\n\t\tdemo_url,\n\t\tdoc_url,\n\t\tdescription,\n\t\tis_new,\n\t} = widget;\n\n\t// Track the active state of the widget using React state\n\tconst [isActive, setIsActive] = useState(widget.is_active);\n\tconst [isLoading, setIsLoading] = useState(false);\n\tconst [isTooltipOpen, setIsTooltipOpen] = useState(false);\n\tconst [isDemoTooltipOpen, setIsDemoTooltipOpen] = useState(false);\n\n\tuseEffect(() => {\n\t\t// Update local state when the widget prop changes\n\t\tsetIsActive(widget.is_active);\n\t}, [widget.is_active, updateCounter]);\n\n\tconst apiCall = (activateWidget) => {\n\t\tconst action = activateWidget\n\t\t\t? \"hfe_deactivate_widget\"\n\t\t\t: \"hfe_activate_widget\";\n\n\t\tconst formData = new window.FormData();\n\t\tformData.append(\"action\", action);\n\t\tformData.append(\"nonce\", hfe_admin_data.nonce);\n\t\tformData.append(\"module_id\", id);\n\t\tformData.append(\"is_pro\", is_pro);\n\n\t\ttry {\n\t\t\tconst data = apiFetch({\n\t\t\t\turl: hfe_admin_data.ajax_url,\n\t\t\t\tmethod: \"POST\",\n\t\t\t\tbody: formData,\n\t\t\t});\n\n\t\t\tif (data.success) {\n\t\t\t\tsetIsActive(isActive); // Update the active state after the request\n\t\t\t} else if (data.error) {\n\t\t\t}\n\t\t} catch (err) {\n\t\t} finally {\n\t\t\tsetIsLoading(false); // Always stop the loading spinner\n\t\t\tprocessQueue();\n\t\t}\n\t};\n\n\tconst handleSwitchChange = () => {\n\t\tif (isLoading) return;\n\n\t\tsetIsLoading(true);\n\n\t\tif (isActive) {\n\t\t\t// Add the request to the queue\n\t\t\tsetIsActive(false);\n\t\t\trequestQueue.push(() => apiCall(isActive));\n\t\t} else {\n\t\t\t// Add the request to the queue\n\t\t\tsetIsActive(true);\n\t\t\trequestQueue.push(() => apiCall(isActive));\n\t\t}\n\t\tif (requestQueue.length === 1) {\n\t\t\t// Start processing the queue if no other request is being processed\n\t\t\tprocessQueue();\n\t\t}\n\t};\n\n\treturn (\n\t\t<>\n\t\t\t<style dangerouslySetInnerHTML={{\n\t\t\t\t__html: `\n\t\t\t\t\t.hfe-uae-pro-link:focus,\n\t\t\t\t\t.hfe-uae-pro-link:active,\n\t\t\t\t\t.hfe-uae-pro-link:hover,\n\t\t\t\t\t.hfe-uae-pro-link:focus-visible {\n\t\t\t\t\t\toutline: none !important;\n\t\t\t\t\t\tbox-shadow: none !important;\n\t\t\t\t\t\tborder: none !important;\n\t\t\t\t\t}\n\t\t\t\t`\n\t\t\t}} />\n\t\t\t<Container\n\t\t\t\talign=\"center\"\n\t\t\t\tcontainerType=\"flex\"\n\t\t\t\tdirection=\"column\"\n\t\t\t\tjustify=\"between\"\n\t\t\t\tgap=\"\"\n\t\t\t>\n\t\t\t{/* Top section with icon and switch/badge */}\n\t\t\t<div className=\"flex items-start justify-between w-full mb-4\">\n\t\t\t\t<div\n\t\t\t\t\tclassName={`h-10 w-10 ${icon?.props}`}\n\t\t\t\t\tstyle={{ fontSize: \"22px\" }}\n\t\t\t\t>\n\t\t\t\t\t{icon}\n\t\t\t\t</div>\n\n\t\t\t\t<div className=\"flex items-center gap-x-2\">\n\t\t\t\t\t{is_pro ? (\n\t\t\t\t\t\t<Tooltip\n\t\t\t\t\t\t\tarrow\n\t\t\t\t\t\t\tcontent={\n\t\t\t\t\t\t\t\t<div style={{ textAlign: \"left\", maxWidth: \"280px\" }}>\n\t\t\t\t\t\t\t\t\t<div style={{ \n\t\t\t\t\t\t\t\t\t\tdisplay: \"flex\", \n\t\t\t\t\t\t\t\t\t\talignItems: \"center\", \n\t\t\t\t\t\t\t\t\t\tmarginBottom: \"8px\",\n\t\t\t\t\t\t\t\t\t\tgap: \"6px\"\n\t\t\t\t\t\t\t\t\t}}>\n\t\t\t\t\t\t\t\t\t\t<span style={{\n\t\t\t\t\t\t\t\t\t\t\tfontSize: \"14px\",\n\t\t\t\t\t\t\t\t\t\t\tfontWeight: \"600\",\n\t\t\t\t\t\t\t\t\t\t\tcolor: \"#ffffff\",\n\t\t\t\t\t\t\t\t\t\t\tlineHeight: \"1.2\"\n\t\t\t\t\t\t\t\t\t\t}}>\n\t\t\t\t\t\t\t\t\t\t\t{title}\n\t\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t\t\t<span style={{\n\t\t\t\t\t\t\t\t\t\t\tbackgroundColor: \"#C026D3\",\n\t\t\t\t\t\t\t\t\t\t\tcolor: \"#ffffff\",\n\t\t\t\t\t\t\t\t\t\t\tfontSize: \"10px\",\n\t\t\t\t\t\t\t\t\t\t\tfontWeight: \"600\",\n\t\t\t\t\t\t\t\t\t\t\tpadding: \"2px 6px\",\n\t\t\t\t\t\t\t\t\t\t\tborderRadius: \"4px\",\n\t\t\t\t\t\t\t\t\t\t\ttextTransform: \"uppercase\",\n\t\t\t\t\t\t\t\t\t\t\tletterSpacing: \"0.5px\"\n\t\t\t\t\t\t\t\t\t\t}}>\n\t\t\t\t\t\t\t\t\t\t\t{__(\"PRO\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t<p style={{\n\t\t\t\t\t\t\t\t\t\tfontSize: \"12px\",\n\t\t\t\t\t\t\t\t\t\tcolor: \"#E5E7EB\",\n\t\t\t\t\t\t\t\t\t\tmargin: \"0 0 12px 0\",\n\t\t\t\t\t\t\t\t\t\tlineHeight: \"1.4\"\n\t\t\t\t\t\t\t\t\t}}>\n\t\t\t\t\t\t\t\t\t\t{description}\n\t\t\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\t\thref=\"https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=pro-widgets&utm_campaign=uae-upgrade\"\n\t\t\t\t\t\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\t\t\t\t\t\trel=\"noopener noreferrer\"\n\t\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\t\tcolor: \"#C026D3\",\n\t\t\t\t\t\t\t\t\t\t\ttextDecoration: \"none\",\n\t\t\t\t\t\t\t\t\t\t\toutline: \"none\",\n\t\t\t\t\t\t\t\t\t\t\tfontSize: \"12px\",\n\t\t\t\t\t\t\t\t\t\t\tfontWeight: \"600\"\n\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\tclassName=\"hfe-uae-pro-link focus:outline-none\"\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t{__(\"Get Full Control\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tplacement=\"bottom\"\n\t\t\t\t\t\t\tvariant=\"dark\"\n\t\t\t\t\t\t\tsize=\"md\"\n\t\t\t\t\t\t\ttriggers={[\"click\"]}\n\t\t\t\t\t\t\topen={isTooltipOpen}\n\t\t\t\t\t\t\tonOpenChange={setIsTooltipOpen}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<div \n\t\t\t\t\t\t\t\tonClick={() => setIsTooltipOpen(!isTooltipOpen)}\n\t\t\t\t\t\t\t\tstyle={{ cursor: \"pointer\" }}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t<Switch\n\t\t\t\t\t\t\t\t\tonChange={() => {}} // No action for pro widgets\n\t\t\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\t\t\tvalue={false} // Always off for pro widgets\n\t\t\t\t\t\t\t\t\tdisabled={true} // Disabled state\n\t\t\t\t\t\t\t\t\tstyle={{ outline: \"none\", cursor: \"default\", pointerEvents: \"none\" }}\n\t\t\t\t\t\t\t\t\tclassName=\"hfe-remove-ring outline-none\"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</Tooltip>\n\t\t\t\t\t) : (\n\t\t\t\t\t\t<Switch\n\t\t\t\t\t\t\tonChange={handleSwitchChange}\n\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\tvalue={isActive}\n\t\t\t\t\t\t\tstyle={{ outline: \"none\" }}\n\t\t\t\t\t\t\tclassName=\"hfe-remove-ring outline-none\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t)}\n\t\t\t\t</div>\n\t\t\t</div>\n\n\t\t\t{/* Title and info icon section */}\n\t\t\t<div className=\"flex items-start justify-between w-full\">\n\t\t\t\t<p\n\t\t\t\t\tclassName=\"text-sm font-medium text-text-primary m-0 w-full leading-tight flex items-center overflow-hidden\"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tdisplay: \"-webkit-box\",\n\t\t\t\t\t\tWebkitLineClamp: 1,\n\t\t\t\t\t\tWebkitBoxOrient: \"vertical\",\n\t\t\t\t\t\twordBreak: \"break-word\",\n\t\t\t\t\t}}\n\t\t\t\t>\n\t\t\t\t\t{title}\n\t\t\t\t</p>\n\t\t\t\t{/* {showTooltip && (\n\t\t\t\t\t<div className=\"ml-2\">\n\t\t\t\t\t\t\t<Tooltip\n\t\t\t\t\t\t\t\tarrow\n\t\t\t\t\t\t\t\tcontent={\n\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t<span className=\"text-xs font-semibold block mb-2\">\n\t\t\t\t\t\t\t\t\t\t\t{title}\n\t\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t\t\t<span className=\"block mb-2\">\n\t\t\t\t\t\t\t\t\t\t\t{description}\n\t\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t\t\t{doc_url && (\n\t\t\t\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\t\t\t\thref={doc_url}\n\t\t\t\t\t\t\t\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\t\t\t\t\t\t\t\trel=\"noopener noreferrer\"\n\t\t\t\t\t\t\t\t\t\t\t\tclassName=\"cursor-pointer\"\n\t\t\t\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\t\t\t\tcolor: \"#B498E5\",\n\t\t\t\t\t\t\t\t\t\t\t\t\ttextDecoration: \"none\",\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t<FileText\n\t\t\t\t\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolor: \"#B498E5\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\twidth: \"11px\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\theight: \"11px\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmarginRight: \"3px\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"Read Documentation\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tplacement=\"bottom\"\n\t\t\t\t\t\t\t\ttitle=\"\"\n\t\t\t\t\t\t\t\ttriggers={[\"click\"]}\n\t\t\t\t\t\t\t\tvariant=\"dark\"\n\t\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t<Monitor \n\t\t\t\t\t\t\t\t\tclassName=\"h-4 w-4\"\n\t\t\t\t\t\t\t\t\tsize={16}\n\t\t\t\t\t\t\t\t\tcolor=\"#A0A5B2\"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</Tooltip>\n\t\t\t\t\t</div>\n\t\t\t\t)} */}\n\n\t\t\t\t<div className=\"ml-2\">\n\t\t\t\t\t<Tooltip\n\t\t\t\t\t\tarrow\n\t\t\t\t\t\tcontent={\n\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t{demo_url && (\n\t\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\t\thref={demo_url}\n\t\t\t\t\t\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\t\t\t\t\t\trel=\"noopener noreferrer\"\n\t\t\t\t\t\t\t\t\t\tclassName=\"text-white focus:outline-none m-0 mb-1 hfe-remove-ring\"\n\t\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\t\ttextDecoration: \"none\",\n\t\t\t\t\t\t\t\t\t\t\tlineHeight: \"1.5rem\",\n\t\t\t\t\t\t\t\t\t\t\toutline: \"none\",\n\t\t\t\t\t\t\t\t\t\t\tborder: \"none\",\n\t\t\t\t\t\t\t\t\t\t\tboxShadow: \"none\",\n\t\t\t\t\t\t\t\t\t\t\tfontSize: \"12px\",\n\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\t\"View Demo\",\n\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t}\n\t\t\t\t\t\tplacement=\"bottom\"\n\t\t\t\t\t\ttitle=\"\"\n\t\t\t\t\t\ttriggers={[\"click\"]}\n\t\t\t\t\t\tvariant=\"dark\"\n\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\topen={isDemoTooltipOpen}\n\t\t\t\t\t\tonOpenChange={setIsDemoTooltipOpen}\n\t\t\t\t\t>\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tonClick={(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\t\tsetIsDemoTooltipOpen(!isDemoTooltipOpen);\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonMouseEnter={() => setIsDemoTooltipOpen(true)}\n\t\t\t\t\t\t\tonMouseLeave={() => setIsDemoTooltipOpen(false)}\n\t\t\t\t\t\t\tstyle={{ cursor: demo_url ? \"pointer\" : \"default\" }}\n\t\t\t\t\t\t\tclassName=\"inline-flex items-center\"\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<Monitor\n\t\t\t\t\t\t\t\tclassName=\"h-4 w-4\"\n\t\t\t\t\t\t\t\tsize={16}\n\t\t\t\t\t\t\t\tcolor=\"#A0A5B2\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</Tooltip>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</Container>\n\t\t</>\n\t);\n};\n\nexport default WidgetItem;\n","import { jsx as c } from \"react/jsx-runtime\";\nimport { cn as n } from \"../../utilities/functions.es.js\";\nconst o = ({\n  variant: r = \"rectangular\",\n  // rectangular, circular\n  className: a,\n  ...e\n}) => {\n  const t = {\n    circular: \"rounded-full bg-gray-200 \",\n    rectangular: \"rounded-md bg-gray-200\"\n  }[r], l = {\n    circular: \"size-10\",\n    rectangular: \"w-96 h-3\"\n  }[r];\n  return /* @__PURE__ */ c(\n    \"div\",\n    {\n      className: n(\n        t,\n        \"animate-pulse\",\n        l,\n        a\n      ),\n      ...e\n    }\n  );\n};\nexport {\n  o as default\n};\n//# sourceMappingURL=skeleton.es.js.map\n","import React, { useState, useEffect } from \"react\";\nimport WidgetItem from \"./WidgetItem\";\nimport { ArrowUpRight } from \"lucide-react\";\nimport { Container, Skeleton, Button } from \"@bsf/force-ui\";\nimport apiFetch from \"@wordpress/api-fetch\";\nimport { __ } from \"@wordpress/i18n\";\nimport { routes } from \"../../admin/settings/routes\";\nimport { Link } from \"../../router/index\";\n\nconst Widgets = () => {\n\tconst [allWidgetsData, setAllWidgetsData] = useState(null); // Initialize state.\n\tconst [loading, setLoading] = useState(true);\n\tconst [showTooltip, setShowTooltip] = useState(true); // Add state for showTooltip\n\n\tuseEffect(() => {\n\t\tconst fetchSettings = () => {\n\t\t\tsetLoading(true);\n\t\t\tapiFetch({\n\t\t\t\tpath: \"/hfe/v1/widgets\",\n\t\t\t\theaders: {\n\t\t\t\t\t\"Content-Type\": \"application/json\",\n\t\t\t\t\t\"X-WP-Nonce\": hfeSettingsData.hfe_nonce_action, // Use the correct nonce\n\t\t\t\t},\n\t\t\t})\n\t\t\t\t.then((data) => {\n\t\t\t\t\tconst widgetsData = convertToWidgetsArray(data);\n\t\t\t\t\tsetAllWidgetsData(widgetsData);\n\t\t\t\t\tsetLoading(false); // Stop loading\n\t\t\t\t})\n\t\t\t\t.catch((err) => {\n\t\t\t\t\tsetLoading(false); // Stop loading\n\t\t\t\t});\n\t\t};\n\n\t\tfetchSettings();\n\t}, []);\n\n\tfunction convertToWidgetsArray(data) {\n\t\tconst widgets = [];\n\n\t\tfor (const key in data) {\n\t\t\tif (data.hasOwnProperty(key)) {\n\t\t\t\tconst widget = data[key];\n\t\t\t\twidgets.push({\n\t\t\t\t\tid: key, // Using the key as 'widgetTitle'\n\t\t\t\t\tslug: widget.slug,\n\t\t\t\t\ttitle: widget.title,\n\t\t\t\t\tkeywords: widget.keywords,\n\t\t\t\t\ticon: <i className={widget.icon}></i>,\n\t\t\t\t\ttitle_url: widget.title_url,\n\t\t\t\t\tdefault: widget.default,\n\t\t\t\t\tdoc_url: widget.doc_url,\n\t\t\t\t\tis_pro: widget.is_pro,\n\t\t\t\t\tdescription: widget.description,\n\t\t\t\t\tis_active:\n\t\t\t\t\t\twidget.is_activate !== undefined\n\t\t\t\t\t\t\t? widget.is_activate\n\t\t\t\t\t\t\t: true, // Check if is_activate is set\n\t\t\t\t\tdemo_url:\n\t\t\t\t\t\twidget.demo_url !== undefined\n\t\t\t\t\t\t\t? widget.demo_url\n\t\t\t\t\t\t\t: widget.doc_url,\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t\treturn widgets;\n\t}\n\n\treturn (\n\t\t<div className=\"rounded-lg bg-white w-full mb-6\">\n\t\t\t<div\n\t\t\t\tclassName=\"flex items-center justify-between p-4\"\n\t\t\t\tstyle={{\n\t\t\t\t\tpaddingBottom: \"0\",\n\t\t\t\t}}\n\t\t\t>\n\t\t\t\t<p className=\"m-0 text-sm font-semibold text-text-primary\">\n\t\t\t\t\t{__(\"Widgets / Features\", \"header-footer-elementor\")}\n\t\t\t\t</p>\n\t\t\t\t\t<Button\n\t\t\t\t\t\ticon={<ArrowUpRight />}\n\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\tvariant=\"ghost\"\n\t\t\t\t\t\tclassName=\"hfe-remove-ring mb-2\"\n\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\tcolor: \"#6005FF\",\n\t\t\t\t\t\t\tbackground: \"none\",\n\t\t\t\t\t\t\tborder: \"none\",\n\t\t\t\t\t\t\tpadding: 0,\n\t\t\t\t\t\t\tcursor: \"pointer\",\n\t\t\t\t\t\t}}\n\t\t\t\t\t\tonClick={() =>\n\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=navigation-bar&utm_campaign=uae-lite-upgrade\",\n\t\t\t\t\t\t\t\t\"_blank\"\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\"Unlock All Features\", \"header-footer-elementor\")}\n\t\t\t\t\t</Button>\n\t\t\t</div>\n\t\t\t<div className=\"flex bg-black flex-col rounded-lg p-4\">\n\t\t\t\t{loading ? (\n\t\t\t\t\t<Container\n\t\t\t\t\t\talign=\"stretch\"\n\t\t\t\t\t\tclassName=\"p-2 gap-1.5 grid grid-cols-2 md:grid-cols-4\"\n\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\tbackgroundColor: \"#F9FAFB\",\n\t\t\t\t\t\t}}\n\t\t\t\t\t\tcontainerType=\"grid\"\n\t\t\t\t\t\tgap=\"\"\n\t\t\t\t\t\tjustify=\"start\"\n\t\t\t\t\t>\n\t\t\t\t\t\t{[...Array(16)].map((_, index) => (\n\t\t\t\t\t\t\t<Container.Item\n\t\t\t\t\t\t\t\tkey={index}\n\t\t\t\t\t\t\t\talignSelf=\"auto\"\n\t\t\t\t\t\t\t\tclassName=\"text-wrap rounded-md shadow-container-item bg-background-primary p-6 space-y-2\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t<Skeleton className=\"w-12 h-2 rounded-md\" />\n\t\t\t\t\t\t\t\t<Skeleton className=\"w-16 h-2 rounded-md\" />\n\t\t\t\t\t\t\t\t<Skeleton className=\"w-12 h-2 rounded-md\" />\n\t\t\t\t\t\t\t</Container.Item>\n\t\t\t\t\t\t))}\n\t\t\t\t\t</Container>\n\t\t\t\t) : (\n\t\t\t\t\t<Container\n\t\t\t\t\t\talign=\"stretch\"\n\t\t\t\t\t\tclassName=\"p-2 gap-1.5 grid grid-cols-2 md:grid-cols-4\"\n\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\tbackgroundColor: \"#F9FAFB\",\n\t\t\t\t\t\t}}\n\t\t\t\t\t\tcontainerType=\"grid\"\n\t\t\t\t\t\tgap=\"\"\n\t\t\t\t\t\tjustify=\"start\"\n\t\t\t\t\t>\n\t\t\t\t\t\t{allWidgetsData?.slice(10, 18).map((widget) => (\n\t\t\t\t\t\t\t<Container.Item\n\t\t\t\t\t\t\t\tkey={widget.id}\n\t\t\t\t\t\t\t\talignSelf=\"auto\"\n\t\t\t\t\t\t\t\tclassName=\"text-wrap rounded-md shadow-container-item bg-background-primary px-4\"\n\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\tpaddingTop: \"8px\",\n\t\t\t\t\t\t\t\t\tpaddingBottom: \"8px\",\n\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t<WidgetItem\n\t\t\t\t\t\t\t\t\twidget={widget}\n\t\t\t\t\t\t\t\t\tshowTooltip={showTooltip}\n\t\t\t\t\t\t\t\t\tkey={widget.id}\n\t\t\t\t\t\t\t\t\tupdateCounter={0}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</Container.Item>\n\t\t\t\t\t\t))}\n\t\t\t\t\t</Container>\n\t\t\t\t)}\n\t\t\t\t<div className=\"flex items-center justify-center gap-x-2 \">\n\t\t\t\t\t<Link\n\t\t\t\t\t\tto={routes.widgets.path}\n\t\t\t\t\t\tclassName=\"text-sm font-normal text-text-primary cursor-pointer\"\n\t\t\t\t\t\tstyle={{ lineHeight: \"1rem\", paddingTop: \"20px\" }}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\"View More Widgets\", \"header-footer-elementor\")}\n\t\t\t\t\t\t<ArrowUpRight\n\t\t\t\t\t\t\tclassName=\"ml-1 font-semibold\"\n\t\t\t\t\t\t\tsize={14}\n\t\t\t\t\t\t/>\n\t\t\t\t\t</Link>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t);\n};\n\nexport default Widgets;\n","import { jsxs as t, jsx as n } from \"react/jsx-runtime\";\nimport { cn as a } from \"../../utilities/functions.es.js\";\nconst C = ({\n  title: x = \"\",\n  description: g = \"\",\n  icon: e = null,\n  iconPosition: r = \"right\",\n  // left, right\n  tag: c = \"h2\",\n  // h1, h2, h3, h4, h5, h6\n  size: s = \"sm\",\n  // xs, sm, md, lg\n  className: d = \"\"\n}) => {\n  const m = {\n    xs: \"gap-1 [&>svg]:size-3.5\",\n    sm: \"gap-1 [&>svg]:size-4\",\n    md: \"gap-1.5 [&>svg]:size-5\",\n    lg: \"gap-1.5 [&>svg]:size-5\"\n  };\n  if (!x)\n    return null;\n  const l = () => /* @__PURE__ */ n(c, { className: a(\"font-semibold p-0 m-0\", {\n    xs: \"text-base [&>*]:text-base gap-1\",\n    sm: \"text-lg [&>*]:text-lg gap-1\",\n    md: \"text-xl [&>*]:text-xl gap-1.5\",\n    lg: \"text-2xl [&>*]:text-2xl gap-1.5\"\n  }[s]), children: x }), i = () => /* @__PURE__ */ n(\n    \"p\",\n    {\n      className: a(\n        \"text-text-secondary font-normal my-0\",\n        {\n          xs: \"text-sm\",\n          sm: \"text-sm\",\n          md: \"text-base\",\n          lg: \"text-base\"\n        }[s]\n      ),\n      children: g\n    }\n  );\n  return g ? /* @__PURE__ */ t(\"div\", { className: d, children: [\n    /* @__PURE__ */ t(\"div\", { children: [\n      e && r === \"left\" && /* @__PURE__ */ t(\"div\", { className: a(\"flex items-center\", m[s]), children: [\n        e,\n        l()\n      ] }),\n      e && r === \"right\" && /* @__PURE__ */ t(\"div\", { className: a(\"flex items-center\", m[s]), children: [\n        l(),\n        e\n      ] }),\n      !e && l()\n    ] }),\n    i()\n  ] }) : /* @__PURE__ */ t(\"div\", { className: d, children: [\n    e && r === \"left\" && /* @__PURE__ */ t(\"div\", { className: a(\"flex items-center\", m[s]), children: [\n      e,\n      l()\n    ] }),\n    e && r === \"right\" && /* @__PURE__ */ t(\"div\", { className: a(\"flex items-center\", m[s]), children: [\n      l(),\n      e\n    ] }),\n    !e && l()\n  ] });\n};\nexport {\n  C as Title,\n  C as default\n};\n//# sourceMappingURL=title.es.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\n    \"path\",\n    {\n      d: \"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3\",\n      key: \"1xhozi\"\n    }\n  ]\n];\nconst Headphones = createLucideIcon(\"headphones\", __iconNode);\n\nexport { __iconNode, Headphones as default };\n//# sourceMappingURL=headphones.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"path\", { d: \"M12 7v14\", key: \"1akyts\" }],\n  [\"path\", { d: \"M16 12h2\", key: \"7q9ll5\" }],\n  [\"path\", { d: \"M16 8h2\", key: \"msurwy\" }],\n  [\n    \"path\",\n    {\n      d: \"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z\",\n      key: \"ruj8y\"\n    }\n  ],\n  [\"path\", { d: \"M6 12h2\", key: \"32wvfc\" }],\n  [\"path\", { d: \"M6 8h2\", key: \"30oboj\" }]\n];\nconst BookOpenText = createLucideIcon(\"book-open-text\", __iconNode);\n\nexport { __iconNode, BookOpenText as default };\n//# sourceMappingURL=book-open-text.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"path\", { d: \"M8 2v4\", key: \"1cmpym\" }],\n  [\"path\", { d: \"M12 2v4\", key: \"3427ic\" }],\n  [\"path\", { d: \"M16 2v4\", key: \"4m81vk\" }],\n  [\"rect\", { width: \"16\", height: \"18\", x: \"4\", y: \"4\", rx: \"2\", key: \"1u9h20\" }],\n  [\"path\", { d: \"M8 10h6\", key: \"3oa6kw\" }],\n  [\"path\", { d: \"M8 14h8\", key: \"1fgep2\" }],\n  [\"path\", { d: \"M8 18h5\", key: \"17enja\" }]\n];\nconst NotepadText = createLucideIcon(\"notepad-text\", __iconNode);\n\nexport { __iconNode, NotepadText as default };\n//# sourceMappingURL=notepad-text.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\n    \"path\",\n    {\n      d: \"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z\",\n      key: \"r04s7s\"\n    }\n  ]\n];\nconst Star = createLucideIcon(\"star\", __iconNode);\n\nexport { __iconNode, Star as default };\n//# sourceMappingURL=star.js.map\n","import React from \"react\";\nimport { Title, Container, Button, Badge } from \"@bsf/force-ui\";\nimport { Headphones, HelpCircle, StarIcon, NotepadText, BookOpenText,Star } from \"lucide-react\";\nimport { __ } from \"@wordpress/i18n\";\n\nconst QuickAccess = () => {\n\treturn (\n\t\t<div\n\t\t\tclassName=\"box-border hfe-dashboard-quick-access p-4 bg-white rounded-lg shadow-md\"\n\t\t\tstyle={{\n\t\t\t\twidth: \"-webkit-fill-available\",\n\t\t\t}}\n\t\t>\n\t\t\t<Title\n\t\t\t\tclassName=\"mb-2\"\n\t\t\t\ticon={null}\n\t\t\t\ticonPosition=\"right\"\n\t\t\t\tsize=\"xs\"\n\t\t\t\ttag=\"h3\"\n\t\t\t\ttitle={__(\"Quick Access\", \"header-footer-elementor\")}\n\t\t\t/>\n\n\t\t\t<Container\n\t\t\t\talign=\"stretch\"\n\t\t\t\tclassName=\"p-1 rounded-lg bg-[#F9FAFB] gap-1\"\n\t\t\t\tcontainerType=\"flex\"\n\t\t\t\tdirection=\"column\"\n\t\t\t\tgap=\"\"\n\t\t\t\tjustify=\"start\"\n\t\t\t\tstyle={{\n\t\t\t\t\twidth: \"100%\",\n\t\t\t\t\tbackgroundColor: \"#F9FAFB\",\n\t\t\t\t}}\n\t\t\t>\n\t\t\t\t<Container.Item\n\t\t\t\t\talignSelf=\"auto\"\n\t\t\t\t\tclassName=\"p-4 bg-white flex items-center justify-between rounded-lg shadow-container-item\"\n\t\t\t\t\torder=\"none\"\n\t\t\t\t\tshrink={1}\n\t\t\t\t>\n\t\t\t\t\t<Button\n\t\t\t\t\t\tclassName=\"text-black hfe-remove-ring\"\n\t\t\t\t\t\ticon={<Headphones />}\n\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\tvariant=\"link\"\n\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/contact/\",\n\t\t\t\t\t\t\t\t\"_blank\"\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\"VIP Priority Support\", \"header-footer-elementor\")}\n\t\t\t\t\t</Button>\n\t\t\t\t\t<Badge\n\t\t\t\t\t\tlabel={__(\n\t\t\t\t\t\t\t\"PRO\",\n\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t)}\n\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\tvariant=\"inverse\"\n\t\t\t\t\t/>\n\t\t\t\t</Container.Item>\n\t\t\t\t<Container.Item\n\t\t\t\t\talignSelf=\"auto\"\n\t\t\t\t\tclassName=\"p-4 bg-white rounded-lg shadow-container-item\"\n\t\t\t\t\torder=\"none\"\n\t\t\t\t\tshrink={1}\n\t\t\t\t>\n\t\t\t\t\t<Button\n\t\t\t\t\t\tclassName=\"text-black hfe-remove-ring\"\n\t\t\t\t\t\ticon={<BookOpenText />}\n\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\tvariant=\"link\"\n\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/docs/getting-started-with-ultimate-addons-for-elementor-lite/\",\n\t\t\t\t\t\t\t\t\"_blank\"\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\"Knowledge Base\", \"header-footer-elementor\")}\n\t\t\t\t\t</Button>\n\t\t\t\t</Container.Item>\n\t\t\t\t<Container.Item className=\"p-4 bg-white rounded-lg shadow-container-item\">\n\t\t\t\t\t<Button\n\t\t\t\t\t\tclassName=\"text-black hfe-remove-ring\"\n\t\t\t\t\t\ticon={<HelpCircle />}\n\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\tvariant=\"link\"\n\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/docs/\",\n\t\t\t\t\t\t\t\t\"_blank\"\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\"Help Centre\", \"header-footer-elementor\")}\n\t\t\t\t\t</Button>\n\t\t\t\t</Container.Item>\n\t\t\t\t<Container.Item className=\"p-4 bg-white rounded-lg shadow-container-item\">\n\t\t\t\t\t<Button\n\t\t\t\t\t\tclassName=\"text-black hfe-remove-ring\"\n\t\t\t\t\t\ticon={<NotepadText />}\n\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\tvariant=\"link\"\n\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\"https://ideas.ultimateelementor.com/boards/feature-requests\",\n\t\t\t\t\t\t\t\t\"_blank\"\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\"Request a Feature\", \"header-footer-elementor\")}\n\t\t\t\t\t</Button>\n\t\t\t\t</Container.Item>\n\t\t\t\t<Container.Item className=\"p-4 bg-white rounded-lg shadow-container-item\">\n\t\t\t\t\t<Button\n\t\t\t\t\t\tclassName=\"text-black hfe-remove-ring\"\n\t\t\t\t\t\ticon={<Star />}\n\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\tvariant=\"link\"\n\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\"https://wordpress.org/support/plugin/header-footer-elementor/reviews/#new-post\",\n\t\t\t\t\t\t\t\t\"_blank\"\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\"Rate Us\", \"header-footer-elementor\")}\n\t\t\t\t\t</Button>\n\t\t\t\t</Container.Item>\n\t\t\t</Container>\n\t\t</div>\n\t);\n};\n\nexport default QuickAccess;\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"path\", { d: \"M5 12h14\", key: \"1ays0h\" }],\n  [\"path\", { d: \"M12 5v14\", key: \"s699le\" }]\n];\nconst Plus = createLucideIcon(\"plus\", __iconNode);\n\nexport { __iconNode, Plus as default };\n//# sourceMappingURL=plus.js.map\n","import React from \"react\";\nimport { Container, Title, Button } from \"@bsf/force-ui\";\nimport { ExternalLink, Plus } from \"lucide-react\";\nimport HeaderLine from '@components/HeaderLine'\nimport { __ } from \"@wordpress/i18n\";\n\nconst WelcomeContainer = () => {\n\treturn (\n\t\t<div>\n\t\t\t<Container\n\t\t\t\talign=\"center\"\n\t\t\t\tclassName=\"bg-background-primary border-[0.5px] border-subtle rounded-xl shadow-sm mb-6 p-8 flex flex-col lg:flex-row\"\n\t\t\t\tcontainerType=\"flex\"\n\t\t\t\tdirection=\"row\"\n\t\t\t\tgap=\"sm\"\n\t\t\t>\n\t\t\t\t<Container.Item shrink={1} className=\"flex-1\">\n\t\t\t\t\t<Title\n\t\t\t\t\t\tdescription=\"\"\n\t\t\t\t\t\ticon={null}\n\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\tclassName=\"max-w-lg\"\n\t\t\t\t\t\tsize=\"lg\"\n\t\t\t\t\t\ttag=\"h3\"\n\t\t\t\t\t\ttitle={__(\"Welcome to Ultimate Addons for Elementor!\", \"header-footer-elementor\")}\n\t\t\t\t\t/>\n\t\t\t\t\t<p className=\"text-sm font-medium text-text-tertiary m-0 mt-2\">\n\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\"Effortlessly design modern websites with UAE using our powerful range of widgets & features. Get started by selecting an option based on your needs.\",\n\t\t\t\t\t\t\t\"header-footer-elementor\"\n\t\t\t\t\t\t)}\n\t\t\t\t\t</p>\n\t\t\t\t\t<div className=\"flex items-center pt-6 gap-2 flex-wrap\">\n\t\t\t\t\t<Button\n\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\tvariant=\"primary\"\n\t\t\t\t\t\t\tclassName=\"text-[#6005FF] border-none hfe-remove-ring flex-shrink-0\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\tbackgroundColor: \"var(--Colors-Button-button-secondary, #DDD6FE)\",\n\t\t\t\t\t\t\t\ttransition: \"background-color 0.3s ease\",\n\t\t\t\t\t\t\t\tborder: \"none\",\n\t\t\t\t\t\t\t\toutline: 'none',       // Removes the default outline\n\t\t\t\t\t\t\t\tboxShadow: 'none',     // Removes the default box shadow\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonMouseEnter={(e) => {\n\t\t\t\t\t\t\t\te.currentTarget.style.backgroundColor = \"#4B00CC\";\n\t\t\t\t\t\t\t\te.currentTarget.style.color = \"#fff\";\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonMouseLeave={(e) => {\n\t\t\t\t\t\t\t\te.currentTarget.style.backgroundColor = \"var(--Colors-Button-button-secondary, #DDD6FE)\";\n\t\t\t\t\t\t\t\te.currentTarget.style.color = \"#6005FF\";\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\thfeSettingsData.hfe_post_url,\n\t\t\t\t\t\t\t\t\t\"_blank\"\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{__(\"Create Header/Footer\", \"header-footer-elementor\")}\n\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\ticon={<Plus />}\n\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\tvariant=\"outline\"\n\t\t\t\t\t\t\tclassName=\"hfe-remove-ring flex-shrink-0\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\tcolor: \"#000\",\n\t\t\t\t\t\t\t\tborderColor: \"#E9DFFC\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonMouseEnter={(e) =>\n\t\t\t\t\t\t\t\t(e.currentTarget.style.color =\n\t\t\t\t\t\t\t\t\t\"#000000\")\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tonMouseLeave={(e) =>\n\t\t\t\t\t\t\t\t(e.currentTarget.style.color =\n\t\t\t\t\t\t\t\t\t\"#000\") &&\n\t\t\t\t\t\t\t\t(e.currentTarget.style.borderColor =\n\t\t\t\t\t\t\t\t\t\"#E9DFFC\")\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\thfeSettingsData.elementor_page_url,\n\t\t\t\t\t\t\t\t\t\"_blank\"\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{__(\"Create New Page\", \"header-footer-elementor\")}\n\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\tcolor: \"black\",\n\t\t\t\t\t\t\t\tbackground: \"none\",\n\t\t\t\t\t\t\t\tborder: \"none\",\n\t\t\t\t\t\t\t\tpadding: 0,\n\t\t\t\t\t\t\t\tcursor: \"pointer\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tclassName=\"flex-shrink-0\"\n\t\t\t\t\t\t\tonMouseEnter={(e) =>\n\t\t\t\t\t\t\t\t(e.currentTarget.style.color = \"#6005ff\")\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tonMouseLeave={(e) =>\n\t\t\t\t\t\t\t\t(e.currentTarget.style.color = \"black\")\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/docs/getting-started-with-ultimate-addons-for-elementor-lite/\",\n\t\t\t\t\t\t\t\t\t\"_blank\"\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t</Container.Item>\n\t\t\t\t<Container.Item className=\"md:mt-0 mt-4 flex-shrink-0\">\n\t\t\t\t<iframe\n\t\t\t\t\t\twidth=\"280\"\n\t\t\t\t\t\theight=\"160\"\n\t\t\t\t\t\tsrc=\"https://www.youtube.com/embed/ZeogOxqdKJI\"\n\t\t\t\t\t\tframeBorder=\"0\"\n\t\t\t\t\t\tstyle={{ borderRadius: \"8px\" }}\n\t\t\t\t\t\tallow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\n\t\t\t\t\t\tallowFullScreen\n\t\t\t\t\t/>\n\t\t\t\t</Container.Item>\n\t\t\t</Container>\n\t\t</div>\n\t);\n};\nexport default WelcomeContainer;\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\n    \"path\",\n    {\n      d: \"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z\",\n      key: \"m3kijz\"\n    }\n  ],\n  [\n    \"path\",\n    {\n      d: \"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z\",\n      key: \"1fmvmk\"\n    }\n  ],\n  [\"path\", { d: \"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0\", key: \"1f8sc4\" }],\n  [\"path\", { d: \"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5\", key: \"qeys4\" }]\n];\nconst Rocket = createLucideIcon(\"rocket\", __iconNode);\n\nexport { __iconNode, Rocket as default };\n//# sourceMappingURL=rocket.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [[\"path\", { d: \"M20 6 9 17l-5-5\", key: \"1gmf2c\" }]];\nconst Check = createLucideIcon(\"check\", __iconNode);\n\nexport { __iconNode, Check as default };\n//# sourceMappingURL=check.js.map\n","import React from \"react\";\nimport { Container, Title, Button } from \"@bsf/force-ui\";\nimport { Rocket, Check } from \"lucide-react\";\nimport { __ } from \"@wordpress/i18n\";\n\nconst UltimateFeatures = () => {\n\treturn (\n\t\t<div>\n\t\t\t<Container\n\t\t\t\tclassName=\"bg-background-primary px-4 border-[0.5px] border-subtle rounded-xl shadow-sm\"\n\t\t\t\tcontainerType=\"flex\"\n\t\t\t\tdirection=\"column\"\n\t\t\t\tgap=\"xs\"\n\t\t\t>\n\t\t\t\t<Container.Item\n\t\t\t\t\tclassName=\"flex flex-col pt-6 justify-between\"\n\t\t\t\t\tstyle={{ width: \"65%\" }}\n\t\t\t\t>\n\t\t\t\t\t<Container.Item\n\t\t\t\t\t\tclassName=\"flex justify-center items-center\"\n\t\t\t\t\t\tstyle={{ width: \"34%\" }}\n\t\t\t\t\t>\n\t\t\t\t\t\t<img\n\t\t\t\t\t\t\tsrc={`${hfeSettingsData.augmented_reality}`}\n\t\t\t\t\t\t\talt={__(\n\t\t\t\t\t\t\t\t\"Column Showcase\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\tclassName=\"object-contain  w-full rounded\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t</Container.Item>\n\n\t\t\t\t\t{/* Title + Description */}\n\t\t\t\t\t<div className=\"pt-2 px-2 flex flex-col\">\n\t\t\t\t\t\t<Title\n\t\t\t\t\t\t\tdescription=\"\"\n\t\t\t\t\t\t\ticon={<Rocket />}\n\t\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\ttag=\"p\"\n\t\t\t\t\t\t\ttitle={__(\n\t\t\t\t\t\t\t\t\"Unlock Pro Widgets\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\tclassName=\"text-xs py-1  text-[#C026D3]\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t<Title\n\t\t\t\t\t\t\tdescription=\"\"\n\t\t\t\t\t\t\ticon=\"\"\n\t\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\t\ttag=\"h6\"\n\t\t\t\t\t\t\ttitle={\n\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\"Design Smarter with Ultimate Addons!\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t</>\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tclassName=\"py-1 text-[16px] font-normal  text-text-primary\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t<p className=\"m-0 text-base max-w-96 text-[#4F4E7C]\">\n\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\"Craft stunning websites faster with powerful widgets, advanced features, and total flexibility.\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</p>\n\t\t\t\t\t</div>\n\n\t\t\t\t\t{/* Features List */}\n\t\t\t\t\t<div className=\"grid grid-cols-1 md:grid-cols-2 gap-2 m-0 pt-2\">\n\t\t\t\t\t\t<ul className=\"list-none font-normal space-y-2 text-sm text-[#111827]\">\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"50+ Widgets\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Conversion Extensions\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Display Conditions\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"White Label\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"WooCommerce Builder\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\n\t\t\t\t\t\t<ul className=\"list-none font-normal space-y-2 text-sm text-[#111827]\">\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"200+ Section Blocks\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Form & Pop-up Builder\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Animation Effects\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Bloggers Toolkit\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Social Media Bundle\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</div>\n\t\t\t\t</Container.Item>\n\n\t\t\t\t\t{/* Upgrade Button */}\n\t\t\t\t\t<div className=\"flex items-center m-0 pb-4 w-full  justify-center\">\n\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\tvariant=\"primary\"\n\t\t\t\t\t\t\tclassName=\"bg-[#6005FF] w-full m-0 h-10 flex items-center justify-center hfe-remove-ring\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\tbackgroundColor: \"#6005FF\",\n\t\t\t\t\t\t\t\ttransition: \"background-color 0.3s ease\",\n\t\t\t\t\t\t\t\toutline: \"none\",\n\t\t\t\t\t\t\t\theight: \"40px\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonMouseEnter={(e) =>\n\t\t\t\t\t\t\t\t(e.currentTarget.style.backgroundColor =\n\t\t\t\t\t\t\t\t\t\"#4B00CC\")\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tonMouseLeave={(e) =>\n\t\t\t\t\t\t\t\t(e.currentTarget.style.backgroundColor =\n\t\t\t\t\t\t\t\t\t\"#6005FF\")\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=unlock-ultimate-feature&utm_campaign=uae-lite-upgrade\",\n\t\t\t\t\t\t\t\t\t\"_blank\",\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{__(\"View Plans\", \"header-footer-elementor\")}\n\t\t\t\t\t\t</Button>\n\t\t\t\t\t</div>\n\t\t\t</Container>\n\t\t</div>\n\t);\n};\n\nexport default UltimateFeatures;\n","function asyncGeneratorStep(n, t, e, r, o, a, c) {\n  try {\n    var i = n[a](c),\n      u = i.value;\n  } catch (n) {\n    return void e(n);\n  }\n  i.done ? t(u) : Promise.resolve(u).then(r, o);\n}\nfunction _asyncToGenerator(n) {\n  return function () {\n    var t = this,\n      e = arguments;\n    return new Promise(function (r, o) {\n      var a = n.apply(t, e);\n      function _next(n) {\n        asyncGeneratorStep(a, r, o, _next, _throw, \"next\", n);\n      }\n      function _throw(n) {\n        asyncGeneratorStep(a, r, o, _next, _throw, \"throw\", n);\n      }\n      _next(void 0);\n    });\n  };\n}\nexport { _asyncToGenerator as default };","const __WEBPACK_NAMESPACE_OBJECT__ = window[\"regeneratorRuntime\"];","import { jsxs as X, Fragment as k, jsx as i } from \"react/jsx-runtime\";\nimport { createContext as _, useState as $, useRef as N, useMemo as h, useCallback as G, isValidElement as J, cloneElement as B, useEffect as b, Fragment as w, useContext as Q } from \"react\";\nimport { AnimatePresence as E, motion as O } from \"framer-motion\";\nimport { callAll as W, cn as a } from \"../../utilities/functions.es.js\";\nimport { X as Y } from \"lucide-react\";\nimport { createPortal as Z } from \"react-dom\";\nconst R = _({}), u = () => Q(R), F = {\n  open: {\n    opacity: 1\n  },\n  exit: {\n    opacity: 0\n  }\n}, P = { duration: 0.2 }, r = ({\n  open: e,\n  setOpen: o,\n  children: n,\n  trigger: t = null,\n  className: c,\n  exitOnClickOutside: V = !1,\n  exitOnEsc: q = !0,\n  design: K = \"simple\",\n  scrollLock: M = !0\n}) => {\n  const x = e !== void 0 && o !== void 0, [g, m] = $(!1), f = N(null), v = N(null), l = h(\n    () => x ? e : g,\n    [e, g]\n  ), p = h(\n    () => x ? o : m,\n    [m, m]\n  ), y = () => {\n    l || p(!0);\n  }, d = () => {\n    l && p(!1);\n  }, U = G(() => J(t) ? B(t, {\n    onClick: W(y, t?.props?.onClick)\n  }) : typeof t == \"function\" ? t({ onClick: y }) : null, [t, y, d]), D = (s) => {\n    switch (s.key) {\n      case \"Escape\":\n        q && d();\n        break;\n    }\n  }, C = (s) => {\n    V && f.current && !f.current.contains(s.target) && d();\n  };\n  return b(() => (window.addEventListener(\"keydown\", D), document.addEventListener(\"mousedown\", C), () => {\n    window.removeEventListener(\"keydown\", D), document.removeEventListener(\"mousedown\", C);\n  }), [l]), b(() => {\n    if (!M)\n      return;\n    const s = document.querySelector(\"html\");\n    return l && s && (s.style.overflow = \"hidden\"), () => {\n      s && (s.style.overflow = \"\");\n    };\n  }, [l]), /* @__PURE__ */ X(k, { children: [\n    U(),\n    /* @__PURE__ */ i(\n      R.Provider,\n      {\n        value: {\n          open: l,\n          setOpen: p,\n          handleClose: d,\n          design: K,\n          dialogContainerRef: v,\n          dialogRef: f\n        },\n        children: /* @__PURE__ */ i(\n          \"div\",\n          {\n            ref: v,\n            className: a(\n              \"fixed z-999999 w-0 h-0 overflow-visible\",\n              c\n            ),\n            children: n\n          }\n        )\n      }\n    )\n  ] });\n};\nr.displayName = \"Dialog\";\nconst S = ({\n  children: e,\n  className: o\n}) => {\n  const { open: n, handleClose: t, dialogRef: c } = u();\n  return /* @__PURE__ */ i(E, { children: n && /* @__PURE__ */ i(\n    O.div,\n    {\n      className: \"fixed inset-0 overflow-y-auto\",\n      initial: \"exit\",\n      animate: \"open\",\n      exit: \"exit\",\n      variants: F,\n      role: \"dialog\",\n      transition: P,\n      children: /* @__PURE__ */ i(\"div\", { className: \"flex items-center justify-center min-h-full\", children: /* @__PURE__ */ i(\n        \"div\",\n        {\n          ref: c,\n          className: a(\n            \"flex flex-col gap-5 w-120 h-fit bg-background-primary border border-solid border-border-subtle rounded-xl shadow-soft-shadow-2xl my-5 overflow-hidden\",\n            o\n          ),\n          children: typeof e == \"function\" ? e({ close: t }) : e\n        }\n      ) })\n    }\n  ) });\n};\nS.displayName = \"Dialog.Panel\";\nconst T = ({\n  className: e,\n  ...o\n}) => {\n  const { open: n, dialogContainerRef: t } = u();\n  return t?.current ? /* @__PURE__ */ i(k, { children: Z(\n    /* @__PURE__ */ i(E, { children: n && /* @__PURE__ */ i(\n      O.div,\n      {\n        className: a(\n          \"fixed inset-0 -z-10 bg-background-inverse/90\",\n          e\n        ),\n        ...o,\n        initial: \"exit\",\n        animate: \"open\",\n        exit: \"exit\",\n        variants: F,\n        transition: P\n      }\n    ) }),\n    t.current\n  ) }) : null;\n};\nT.displayName = \"Dialog.Backdrop\";\nconst j = ({\n  children: e,\n  className: o,\n  ...n\n}) => /* @__PURE__ */ i(\"div\", { className: a(\"space-y-2 px-5 pt-5 pb-1\", o), ...n, children: e });\nj.displayName = \"Dialog.Header\";\nconst A = ({\n  children: e,\n  as: o = \"h3\",\n  className: n,\n  ...t\n}) => /* @__PURE__ */ i(\n  o,\n  {\n    className: a(\n      \"text-base font-semibold text-text-primary m-0 p-0\",\n      n\n    ),\n    ...t,\n    children: e\n  }\n);\nA.displayName = \"Dialog.Title\";\nconst I = ({\n  children: e,\n  as: o = \"p\",\n  className: n,\n  ...t\n}) => /* @__PURE__ */ i(\n  o,\n  {\n    className: a(\n      \"text-sm font-normal text-text-secondary my-0 ml-0 mr-1 p-0\",\n      n\n    ),\n    ...t,\n    children: e\n  }\n);\nI.displayName = \"Dialog.Description\";\nconst ee = ({\n  className: e,\n  ...o\n}) => /* @__PURE__ */ i(\n  \"button\",\n  {\n    className: a(\n      \"bg-transparent inline-flex justify-center items-center border-0 p-1 m-0 cursor-pointer focus:outline-none outline-none shadow-none\",\n      e\n    ),\n    \"aria-label\": \"Close dialog\",\n    ...o,\n    children: /* @__PURE__ */ i(Y, { className: \"size-4 text-text-primary shrink-0\" })\n  }\n), L = ({\n  children: e,\n  as: o = w,\n  ...n\n}) => {\n  const { handleClose: t } = u();\n  return e ? o === w ? typeof e == \"function\" ? e({\n    close: t\n  }) : B(e, {\n    onClick: t\n  }) : /* @__PURE__ */ i(o, { ...n, onClick: t, children: e }) : /* @__PURE__ */ i(ee, { onClick: t, ...n });\n};\nL.displayName = \"Dialog.CloseButton\";\nconst z = ({\n  children: e,\n  className: o,\n  ...n\n}) => /* @__PURE__ */ i(\"div\", { className: a(\"px-5\", o), ...n, children: e });\nz.displayName = \"Dialog.Body\";\nconst H = ({\n  children: e,\n  className: o\n}) => {\n  const { design: n, handleClose: t } = u(), c = () => e ? typeof e == \"function\" ? e({ close: t }) : e : null;\n  return /* @__PURE__ */ i(\n    \"div\",\n    {\n      className: a(\n        \"p-4 flex justify-end gap-3\",\n        {\n          \"bg-background-secondary\": n === \"footer-divided\"\n        },\n        o\n      ),\n      children: c()\n    }\n  );\n};\nH.displayName = \"Dialog.Footer\";\nr.Panel = S;\nr.Title = A;\nr.Description = I;\nr.CloseButton = L;\nr.Header = j;\nr.Body = z;\nr.Footer = H;\nr.Backdrop = T;\nexport {\n  ee as DefaultCloseButton,\n  T as DialogBackdrop,\n  z as DialogBody,\n  L as DialogCloseButton,\n  I as DialogDescription,\n  H as DialogFooter,\n  j as DialogHeader,\n  S as DialogPanel,\n  A as DialogTitle,\n  r as default\n};\n//# sourceMappingURL=dialog.es.js.map\n","import React, { useState } from \"react\";\nimport { Container, Button, Badge, Dialog } from \"@bsf/force-ui\";\nimport apiFetch from \"@wordpress/api-fetch\";\nimport { __ } from \"@wordpress/i18n\";\n\nconst ExtendWebsiteWidget = ({\n\tplugin,\n\tsetUpdateCounter, // Receive setUpdateCounter as a prop\n}) => {\n\tconst {\n\t\tpath,\n\t\tslug,\n\t\tsiteUrl,\n\t\ticon,\n\t\ttype,\n\t\tname,\n\t\tzipUrl,\n\t\tdesc,\n\t\twporg,\n\t\tisFree,\n\t\taction,\n\t\tstatus,\n\t\tsettings_url,\n\t} = plugin;\n\tconst [isDialogOpen, setIsDialogOpen] = useState(false);\n\tconst [pluginData, setPluginData] = useState(null);\n\n\tconst getAction = (status) => {\n\t\tif (status === \"Activated\") {\n\t\t\treturn \"site_redirect\";\n\t\t} else if (status === \"Installed\") {\n\t\t\treturn \"hfe_recommended_plugin_activate\";\n\t\t}\n\t\treturn \"hfe_recommended_plugin_install\";\n\t};\n\n\tconst handlePluginAction = (e) => {\n\t\tconst action = e.currentTarget.dataset.action;\n\t\tconst formData = new window.FormData();\n\t\tconst currentPluginData = {\n\t\t\tinit: e.currentTarget.dataset.init,\n\t\t\ttype: e.currentTarget.dataset.type,\n\t\t\tslug: e.currentTarget.dataset.slug,\n\t\t\tname: e.currentTarget.dataset.pluginname,\n\t\t};\n\n\t\tswitch (action) {\n\t\t\tcase \"hfe_recommended_plugin_activate\":\n\t\t\t\t// Confirmation only for theme activation\n\t\t\t\tif (currentPluginData.type === \"theme\") {\n\t\t\t\t\t// Show dialog for confirmation\n\t\t\t\t\tsetPluginData(currentPluginData);\n\t\t\t\t\tsetIsDialogOpen(true);\n\t\t\t\t} else {\n\t\t\t\t\t// Directly activate for non-theme plugins\n\t\t\t\t\tactivatePlugin(currentPluginData);\n\t\t\t\t}\n\t\t\t\tbreak;\n\n\t\t\tcase \"hfe_recommended_plugin_install\":\n\t\t\t\t// Installation process without any confirmation\n\t\t\t\tformData.append(\n\t\t\t\t\t\"action\",\n\t\t\t\t\tcurrentPluginData.type === \"theme\"\n\t\t\t\t\t\t? \"hfe_recommended_theme_install\"\n\t\t\t\t\t\t: \"hfe_recommended_plugin_install\",\n\t\t\t\t);\n\t\t\t\tformData.append(\"_ajax_nonce\", hfe_admin_data.installer_nonce);\n\t\t\t\tformData.append(\"slug\", currentPluginData.slug);\n\n\t\t\t\te.target.innerText = __(\n\t\t\t\t\t\"Installing...\",\n\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t);\n\n\t\t\t\tapiFetch({\n\t\t\t\t\turl: hfe_admin_data.ajax_url,\n\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\tbody: formData,\n\t\t\t\t}).then((data) => {\n\t\t\t\t\tif (data.success || data.errorCode === \"folder_exists\") {\n\t\t\t\t\t\te.target.innerText = __(\n\t\t\t\t\t\t\t\"Installed\",\n\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t);\n\t\t\t\t\t\tif (currentPluginData.type === \"theme\") {\n\t\t\t\t\t\t\t// Change button state to \"Activate\" after successful installation\n\t\t\t\t\t\t\tconst buttonElement = document.querySelector(\n\t\t\t\t\t\t\t\t`[data-slug=\"${currentPluginData.slug}\"]`,\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\tbuttonElement.dataset.action =\n\t\t\t\t\t\t\t\t\"hfe_recommended_plugin_activate\";\n\t\t\t\t\t\t\te.target.innerText = __(\n\t\t\t\t\t\t\t\t\"Activate\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tactivatePlugin(currentPluginData);\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\te.target.innerText = __(\n\t\t\t\t\t\t\t\"Install\",\n\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t);\n\t\t\t\t\t\talert(\n\t\t\t\t\t\t\tcurrentPluginData.type === \"theme\"\n\t\t\t\t\t\t\t\t? __(\n\t\t\t\t\t\t\t\t\t\t\"Theme installation failed. Please try again later.\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t  )\n\t\t\t\t\t\t\t\t: __(\n\t\t\t\t\t\t\t\t\t\t\"Plugin installation failed. Please try again later.\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t  ),\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tbreak;\n\n\t\t\tcase \"site_redirect\":\n\t\t\t\twindow.open(siteUrl, \"_blank\"); // Open siteUrl in a new tab\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\t// Do nothing.\n\t\t\t\tbreak;\n\t\t}\n\t};\n\n\tconst activatePlugin = (pluginData) => {\n\t\tsetIsDialogOpen(false);\n\t\tconst formData = new window.FormData();\n\t\tformData.append(\"action\", \"hfe_recommended_plugin_activate\");\n\t\tformData.append(\"nonce\", hfe_admin_data.nonce);\n\t\tformData.append(\"plugin\", pluginData.init);\n\t\tformData.append(\"type\", pluginData.type);\n\t\tformData.append(\"slug\", pluginData.slug);\n\n\t\tconst buttonElement = document.querySelector(\n\t\t\t`[data-slug=\"${pluginData.slug}\"]`,\n\t\t);\n\t\tconst spanElement = buttonElement.querySelector(\"span\");\n\n\t\tspanElement.innerText = __(\"Activating...\", \"header-footer-elementor\");\n\n\t\tapiFetch({\n\t\t\turl: hfe_admin_data.ajax_url,\n\t\t\tmethod: \"POST\",\n\t\t\tbody: formData,\n\t\t}).then((data) => {\n\t\t\tif (data.success) {\n\t\t\t\tif (spanElement) {\n\t\t\t\t\t// Check if spanElement is not null\n\t\t\t\t\tbuttonElement.style.color = \"#16A34A\";\n\t\t\t\t\tbuttonElement.dataset.action = \"site_redirect\";\n\t\t\t\t\tbuttonElement.classList.add(\"hfe-plugin-activated\");\n\t\t\t\t\tspanElement.innerText = __(\n\t\t\t\t\t\t\"Activated\",\n\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t);\n\t\t\t\t\twindow.open(settings_url, \"_blank\");\n\t\t\t\t\tsetTimeout(() => {\n\t\t\t\t\t\t// Reload the section or recall the REST API\n\t\t\t\t\t\tsetUpdateCounter((prev) => prev + 1);\n\t\t\t\t\t}, 5000);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (\"theme\" == pluginData.type) {\n\t\t\t\t\t// console.log(__(`Theme Activation failed, Please try again later.`, 'header-footer-elementor'));\n\t\t\t\t} else {\n\t\t\t\t\t// console.log(__(`Plugin Activation failed, Please try again later.`, 'header-footer-elementor'));\n\t\t\t\t}\n\t\t\t\tconst buttonElement = document.querySelector(\n\t\t\t\t\t`[data-slug=\"${pluginData.slug}\"]`,\n\t\t\t\t);\n\t\t\t\tif (buttonElement) {\n\t\t\t\t\t// Check if buttonElement is not null\n\t\t\t\t\tconst spanElement = buttonElement.querySelector(\"span\");\n\t\t\t\t\tif (spanElement) {\n\t\t\t\t\t\t// Check if spanElement is not null\n\t\t\t\t\t\tspanElement.innerText = __(\n\t\t\t\t\t\t\t\"Activate\",\n\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t};\n\n\treturn (\n\t\t<Container\n\t\t\talign=\"center\"\n\t\t\tcontainerType=\"flex\"\n\t\t\tdirection=\"column\"\n\t\t\tjustify=\"between\"\n\t\t\tgap=\"lg\"\n\t\t>\n\t\t\t<div className=\"flex items-center justify-between w-full\">\n\t\t\t\t<div className=\"h-5 w-5\">\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc={icon}\n\t\t\t\t\t\talt=\"Recommended Plugins/Themes\"\n\t\t\t\t\t\tclassName=\"w-full h-auto rounded cursor-pointer\"\n\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\twidth: \"140px\",\n\t\t\t\t\t\t\theight: \"140px\",\n\t\t\t\t\t\t\tmarginTop: \"-55px\",\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t</div>\n\n\t\t\t\t<div className=\"flex items-center gap-x-2\">\n\t\t\t\t\t{/* {isFree && (\n\t\t\t\t\t\t<Badge\n\t\t\t\t\t\t\tlabel={__(\"Free\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\ttype=\"pill\"\n\t\t\t\t\t\t\tvariant=\"green\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t)} */}\n\t\t\t\t\t<Dialog\n\t\t\t\t\t\tdesign=\"simple\"\n\t\t\t\t\t\topen={isDialogOpen}\n\t\t\t\t\t\tsetOpen={setIsDialogOpen}\n\t\t\t\t\t>\n\t\t\t\t\t\t<Dialog.Backdrop />\n\t\t\t\t\t\t<Dialog.Panel>\n\t\t\t\t\t\t\t<Dialog.Header>\n\t\t\t\t\t\t\t\t<div className=\"flex items-center justify-between\">\n\t\t\t\t\t\t\t\t\t<Dialog.Title>\n\t\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\t\"Activate Theme\",\n\t\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t</Dialog.Title>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<Dialog.Description>\n\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\"Are you sure you want to switch your current theme to Astra?\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t</Dialog.Description>\n\t\t\t\t\t\t\t</Dialog.Header>\n\t\t\t\t\t\t\t<Dialog.Footer>\n\t\t\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\t\t\tonClick={() => activatePlugin(pluginData)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{__(\"Yes\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\t\t\tvariant=\"outline\"\n\t\t\t\t\t\t\t\t\tonClick={() => setIsDialogOpen(false)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{__(\"Close\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t\t</Dialog.Footer>\n\t\t\t\t\t\t</Dialog.Panel>\n\t\t\t\t\t</Dialog>\n\t\t\t\t</div>\n\t\t\t</div>\n\n\t\t\t<div className=\"flex flex-col w-full pb-4\">\n\t\t\t\t<p\n\t\t\t\t\tclassName=\"text-base font-medium text-text-primary pb-1 m-0 cursor-pointer\"\n\t\t\t\t\tonClick={() => window.open(plugin.siteurl, \"_blank\")}\n\t\t\t\t\tstyle={{ marginTop: \"-8px\" }}\n\t\t\t\t>\n\t\t\t\t\t{__(name, \"header-footer-elementor\")}\n\t\t\t\t</p>\n\t\t\t\t<p className=\"text-sm font-medium text-text-tertiary m-0\">\n\t\t\t\t\t{__(desc, \"header-footer-elementor\")}\n\t\t\t\t</p>\n\t\t\t\t<div className=\"hfe-remove-ring\">\n\t\t\t\t\t<Button\n\t\t\t\t\t\tsize=\"sm\"\n\t\t\t\t\t\tclassName=\"cursor-pointer hfe-remove-ring bg-white hover:bg-gray-100 hover:text-gray-900 hover:shadow-md text-gray-800 rounded mt-4 px-2 py-2 transition-all duration-200 ease-in-out transform hover:scale-105 hover:border-gray-400\"\n\t\t\t\t\t\tonClick={handlePluginAction}\n\t\t\t\t\t\tdata-plugin={zipUrl}\n\t\t\t\t\t\tdata-type={type}\n\t\t\t\t\t\tdata-pluginname={name}\n\t\t\t\t\t\tdata-slug={slug}\n\t\t\t\t\t\tdata-site={siteUrl}\n\t\t\t\t\t\tdata-init={path}\n\t\t\t\t\t\tdata-action={getAction(status)}\n\t\t\t\t\t\tstyle={{ outline: \"none\", border: \"1px solid #ccc\" }}\n\t\t\t\t\t\tonMouseEnter={(e) =>\n\t\t\t\t\t\t\t(e.currentTarget.style.color = \"#5C2EDE\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tonMouseLeave={(e) =>\n\t\t\t\t\t\t\t(e.currentTarget.style.color = \"black\")\n\t\t\t\t\t\t}\n\t\t\t\t\t>\n\t\t\t\t\t\t{status === \"Activated\"\n\t\t\t\t\t\t\t? __(\"Visit Site\", \"header-footer-elementor\")\n\t\t\t\t\t\t\t: \"Installed\" === status\n\t\t\t\t\t\t\t? __(\"Activate\", \"header-footer-elementor\")\n\t\t\t\t\t\t\t: __(\n\t\t\t\t\t\t\t\t\t\"Install & Activate\",\n\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t  )}\n\t\t\t\t\t</Button>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</Container>\n\t);\n};\n\nexport default ExtendWebsiteWidget;\n","import React, { useState, useEffect } from 'react'\nimport ExtendWebsiteWidget from './ExtendWebsiteWidget';\nimport { Container, Skeleton } from \"@bsf/force-ui\";\nimport apiFetch from '@wordpress/api-fetch';\nimport { __ } from '@wordpress/i18n';\n\nconst ExtendWebsite = () => {\n\n    const [plugins, setPlugins] = useState([]);\n    const [loading, setLoading] = useState(true);\n    const [updateCounter, setUpdateCounter] = useState(0);\n    const [allInstalled, setAllInstalled] = useState(false);\n\n    useEffect(() => {\n        const fetchSettings = async () => {\n            setLoading(true);\n            try {\n                const data = await apiFetch({\n                    path: '/hfe/v1/plugins',\n                    headers: {\n                        'Content-Type': 'application/json',\n                        'X-WP-Nonce': hfeSettingsData.hfe_nonce_action,\n                    },\n                });\n                const pluginsData = convertToPluginsArray(data);\n                setPlugins(pluginsData);\n\n                // Check if all plugins are installed\n                const areAllInstalled = pluginsData.every(plugin => plugin.is_installed);\n                setAllInstalled(areAllInstalled);\n            } catch (err) {\n                console.error(\"Error fetching plugins:\", err);\n            } finally {\n                setLoading(false);\n            }\n        };\n\n        fetchSettings();\n    }, [updateCounter]);\n\n    function convertToPluginsArray(data) {\n        return Object.keys(data).map((key) => ({\n            path: key,\n            ...data[key],\n        }));\n    }\n\n    // If all plugins are installed, don't render the component\n    if (allInstalled) {\n        return null;\n    }\n\n    return (\n        <div className=\"rounded-lg bg-white w-full\">\n            <div className=\"flex items-center justify-between p-4\" style={{ paddingBottom: '0' }}>\n                <p className=\"m-0 text-sm font-semibold text-text-primary\">\n                    {__(\"Super Charge Your Workflow\", \"header-footer-elementor\")}\n                </p>\n                <div className=\"flex items-center gap-x-2 mr-7\"></div>\n            </div>\n            <div className=\"flex flex-col rounded-lg p-4\" style={{ backgroundColor: \"white\" }}>\n                {loading ? (\n                    <Container\n                        align=\"stretch\"\n                        className=\"gap-1 p-1 grid grid-cols-1 md:grid-cols-1\"\n                        containerType=\"grid\"\n                        justify=\"start\"\n                    >\n                        {[...Array(1)].map((_, index) => (\n                            <Container.Item\n                                key={index}\n                                alignSelf=\"auto\"\n                                style={{ height: '150px' }}\n                                className=\"text-wrap rounded-md shadow-container-item bg-[#F9FAFB] p-4\"\n                            >\n                                <div className=\"flex flex-col gap-6\" style={{ marginTop: '40px' }}>\n                                    <Skeleton className=\"w-12 h-2 rounded-md\" />\n                                    <Skeleton className=\"w-16 h-2 rounded-md\" />\n                                    <Skeleton className=\"w-12 h-2 rounded-md\" />\n                                </div>\n                            </Container.Item>\n                        ))}\n                    </Container>\n                ) : (\n                    <Container\n                        align=\"stretch\"\n                        className=\"gap-1 p-1 grid grid-cols-1 md:grid-cols-1\"\n                        containerType=\"grid\"\n                        justify=\"start\"\n                        style={{ backgroundColor: \"#F9FAFB\" }}\n                    >\n                        {plugins.slice(0, 1).map((plugin) => (\n                            <Container.Item\n                                key={plugin.slug}\n                                alignSelf=\"auto\"\n                                className=\"text-wrap rounded-md shadow-container-item bg-background-primary p-4\"\n                            >\n                                <ExtendWebsiteWidget plugin={plugin} setUpdateCounter={setUpdateCounter} />\n                            </Container.Item>\n                        ))}\n                    </Container>\n                )}\n            </div>\n        </div>\n    )\n}\n\nexport default ExtendWebsite;\n","import React, { useState } from \"react\";\nimport { __ } from \"@wordpress/i18n\";\n\nconst UpgradeNotice = () => {\n    // Check if upgrade notice was dismissed (handled by PHP via WordPress options)\n    const [showNotice, setShowNotice] = useState(() => {\n        return !(window.hfe_admin_data && window.hfe_admin_data.upgrade_notice_dismissed);\n    });\n\n    // Function to handle closing the upgrade notice\n    const handleCloseUpgradeNotice = async () => {\n        setShowNotice(false);\n        \n        if (!window.hfe_admin_data || !window.hfe_admin_data.ajax_url) {\n            return;\n        }\n        \n        try {\n            const response = await fetch(window.hfe_admin_data.ajax_url, {\n                method: 'POST',\n                headers: {\n                    'Content-Type': 'application/x-www-form-urlencoded',\n                },\n                body: new URLSearchParams({\n                    action: 'hfe_dismiss_upgrade_notice',\n                    nonce: window.hfe_admin_data.nonce,\n                }),\n            });\n\n        } catch (error) {\n        }\n    };\n\n    // Don't render anything if notice should not be shown\n    if (!showNotice) {\n        return null;\n    }\n\n    return (\n        <div\n            className=\"uae-upgrade p-3 d font-medium\"\n            style={{\n                backgroundColor: \"#E9E4FF\",\n                textAlign: \"center\",\n                fontSize: \"0.82rem\",\n                zIndex: \"9\",\n                position: \"relative\",\n            }}\n        >\n            <button\n                onClick={handleCloseUpgradeNotice}\n                style={{\n                    position: \"absolute\",\n                    top: \"5px\",\n                    right: \"10px\",\n                    background: \"none\",\n                    border: \"none\",\n                    fontSize: \"24px\",\n                    cursor: \"pointer\",\n                    color: \"#000\",\n                    width: \"32px\", // Explicit width\n                    height: \"32px\", // Explicit height for square dimensions\n                    display: \"flex\", // Flexbox for centering\n                    alignItems: \"center\", // Vertical centering\n                    justifyContent: \"center\", // Horizontal centering\n                }}\n                aria-label={__(\"Close Upgrade Notice\", \"header-footer-elementor\")}\n            >\n                &times;\n            </button>\n            <span>\n                {__(\n                    \"Design Without Limits: Access the features that top WordPress sites run on.\",\n                    \"header-footer-elementor\"\n                )}{\" \"}\n                <a\n                    href=\"https://ultimateelementor.com/pricing/?utm_source=uae-lite-navbar&utm_medium=upgrade-now&utm_campaign=uae-lite-upgrade\"\n                    target=\"_blank\"\n                    style={{ color: \"#000000\" }}\n                >\n                  <strong>  {__(\"Get Full Control\", \"header-footer-elementor\")} </strong>\n                </a>\n            </span>\n        </div>\n    );\n};\n\nexport default UpgradeNotice;\n","import { Container } from \"@bsf/force-ui\";\nimport NavMenu from '@components/NavMenu'\nimport React, { useEffect } from 'react'\nimport Widgets from './Widgets'\nimport TemplateSection from './TemplateSection'\nimport QuickAccess from './QuickAccess'\nimport WelcomeContainer from './WelcomeContainer'\nimport UltimateFeatures from './UltimateFeatures'\nimport ExtendWebsite from './ExtendWebsite'\nimport UpgradeNotice from \"@components/UpgradeNotice\";\n\nconst Dashboard = () => {\n    useEffect(() => {\n        const dashboardURL = \"admin.php?page=hfe#dashboard\";\n\n        // If the user lands on the dashboard, reset history\n        if (window.location.href.includes(dashboardURL)) {\n            window.history.pushState(null, \"\", dashboardURL);\n        }\n\n        const preventBackNavigation = (event) => {\n            if (window.location.href.includes(dashboardURL)) {\n                event.preventDefault();\n                window.history.pushState(null, \"\", dashboardURL);\n            }\n        };\n\n        // Prevent back navigation only on the dashboard\n        window.addEventListener(\"popstate\", preventBackNavigation);\n\n        return () => {\n            window.removeEventListener(\"popstate\", preventBackNavigation);\n        };\n    }, []);\n\n    return (\n        <>\n            <UpgradeNotice />\n            <NavMenu />\n            <div>\n                <Container\n                    align=\"stretch\"\n                    className=\"p-6 flex-col lg:flex-row box-border\"\n                    containerType=\"flex\"\n                    direction=\"row\"\n                    gap=\"sm\"\n                    justify=\"start\"\n                    style={{\n                        width: \"100%\",\n                    }}\n                >\n                    <Container.Item\n                        className=\"p-2 hfe-65-width\"\n                        alignSelf=\"auto\"\n                        order=\"none\"\n                        shrink={0}\n                    >\n                        <WelcomeContainer />\n                        <Widgets />\n                        <ExtendWebsite />\n                    </Container.Item>\n                    <Container.Item\n                        className=\"p-2 w-full hfe-35-width\"\n                        shrink={1}\n                    >\n                        <UltimateFeatures />\n                        <div className=\"pt-5\">\n                            <QuickAccess />\n                        </div>\n                    </Container.Item>\n                </Container>\n            </div>\n        </>\n    );\n}\n\nexport default Dashboard;\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"path\", { d: \"m21 21-4.34-4.34\", key: \"14j7rj\" }],\n  [\"circle\", { cx: \"11\", cy: \"11\", r: \"8\", key: \"4ej97u\" }]\n];\nconst Search = createLucideIcon(\"search\", __iconNode);\n\nexport { __iconNode, Search as default };\n//# sourceMappingURL=search.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"path\", { d: \"M10 11v6\", key: \"nco0om\" }],\n  [\"path\", { d: \"M14 11v6\", key: \"outv1u\" }],\n  [\"path\", { d: \"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6\", key: \"miytrc\" }],\n  [\"path\", { d: \"M3 6h18\", key: \"d0wm0j\" }],\n  [\"path\", { d: \"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\", key: \"e791ji\" }]\n];\nconst Trash2 = createLucideIcon(\"trash-2\", __iconNode);\n\nexport { __iconNode, Trash2 as default };\n//# sourceMappingURL=trash-2.js.map\n","import React, { useState, useEffect } from 'react';\nimport { Container, Button, Skeleton, Tooltip, Tabs } from \"@bsf/force-ui\";\nimport { LoaderCircle, SearchIcon, Trash2Icon } from \"lucide-react\";\nimport WidgetItem from '@components/Dashboard/WidgetItem';\nimport apiFetch from '@wordpress/api-fetch';\nimport { __ } from \"@wordpress/i18n\";\n\nconst FeatureWidgets = () => {\n\n    const [allWidgetsData, setAllWidgetsData] = useState(null); // Initialize state.\n    const [searchTerm, setSearchTerm] = useState('');\n    const [loadingActivate, setLoadingActivate] = useState(false); // Loading state for activate button\n    const [loadingDeactivate, setLoadingDeactivate] = useState(false);\n    const [loadingUnusedDeactivate, setLoadingUnusedDeactivate] = useState(false);\n    const [loading, setLoading] = useState(true);\n    const [updateCounter, setUpdateCounter] = useState(0);\n    const [showTooltip, setShowTooltip] = useState(true); // Add state for showTooltip\n    const [activeTab, setActiveTab] = useState(''); // Add state for active tab - start with no tab selected\n    \n    useEffect(() => {\n        const fetchSettings = () => {\n            setLoading(true);\n            apiFetch({\n                path: '/hfe/v1/widgets',\n                headers: {\n                    'Content-Type': 'application/json',\n                    'X-WP-Nonce': hfeSettingsData.hfe_nonce_action, // Use the correct nonce\n                },\n            })\n                .then((data) => {\n                    const widgetsData = convertToWidgetsArray(data)\n                    setAllWidgetsData(widgetsData);\n                    setLoading(false); // Stop loading\n                })\n                .catch((err) => {\n                    setLoading(false); // Stop loading\n                });\n        };\n\n        fetchSettings();\n    }, []);\n\n    // New function to handle search input change\n    const handleSearchChange = (event) => {\n        setSearchTerm(event.target.value.toLowerCase());\n    };\n\n    // Handle tab change\n    const handleTabChange = (activeSlug) => {\n        setActiveTab(activeSlug);\n        \n        // Trigger action based on tab selection\n        if (activeSlug === 'activate') {\n            handleActivateAll();\n        } else if (activeSlug === 'deactivateUnused') {\n            handleUnusedDeactivate();\n        }\n    };\n\n\n    // Filter widgets based on search term\n    const filteredWidgets = allWidgetsData?.filter(widget =>\n        widget.title.toLowerCase().includes(searchTerm) ||\n        widget.keywords?.some(keyword => keyword.toLowerCase().includes(searchTerm))\n    );\n\n    const handleActivateAll = async () => {\n        setLoadingActivate(true);\n\n        const formData = new window.FormData();\n        formData.append('action', 'hfe_bulk_activate_widgets');\n        formData.append('nonce', hfe_admin_data.nonce);\n\n        apiFetch({\n            url: hfe_admin_data.ajax_url,\n            method: 'POST',\n            body: formData,\n        }).then((data) => {\n            setLoadingActivate(false);\n            if (data.success) {\n                setAllWidgetsData(prevWidgets =>\n                    prevWidgets.map(widget => ({ ...widget, is_active: true }))\n                );\n                setUpdateCounter(prev => prev + 1);\n            } else if (data.error) {\n                setLoadingActivate(false);\n            }\n        }).catch((error) => {\n            setLoadingActivate(false);\n        });\n    };\n\n    const handleDeactivateAll = async () => {\n        setLoadingDeactivate(true);\n\n        const formData = new window.FormData();\n        formData.append('action', 'hfe_bulk_deactivate_widgets');\n        formData.append('nonce', hfe_admin_data.nonce);\n\n        apiFetch({\n            url: hfe_admin_data.ajax_url,\n            method: 'POST',\n            body: formData,\n        }).then((data) => {\n            setLoadingDeactivate(false);\n            if (data.success) {\n                setAllWidgetsData(prevWidgets =>\n                    prevWidgets.map(widget => ({ ...widget, is_active: false }))\n                );\n                setUpdateCounter(prev => prev + 1);\n            } else if (data.error) {\n            }\n        }).catch((error) => {\n            setLoadingDeactivate(false);\n        });\n    };\n\n    const handleUnusedDeactivate = async () => {\n        setLoadingUnusedDeactivate(true);\n    \n        const formData = new window.FormData();\n        formData.append('action', 'hfe_bulk_deactivate_unused_widgets');\n        formData.append('nonce', hfe_admin_data.nonce);\n    \n        apiFetch({\n            url: hfe_admin_data.ajax_url,\n            method: 'POST',\n            body: formData,\n        }).then((data) => {\n            setLoadingUnusedDeactivate(false);\n    \n            if (data.success && Array.isArray(data.data?.deactivated)) {\n                const deactivatedSlugs = data.data.deactivated;\n                setAllWidgetsData(prevWidgets =>\n                    prevWidgets.map(widget =>\n                        deactivatedSlugs.includes(widget.id)\n                            ? { ...widget, is_active: false }\n                            : widget\n                    )\n                );\n                setUpdateCounter(prev => prev + 1);\n            } else if (data.error) {\n            } else {\n            }\n        }).catch((error) => {\n            setLoadingUnusedDeactivate(false);\n        });\n    };\n    \n\n    function convertToWidgetsArray(data) {\n        const widgets = [];\n\n        for (const key in data) {\n            if (data.hasOwnProperty(key)) {\n                const widget = data[key];\n                widgets.push({\n                    id: key, // Using the key as 'widgetTitle'\n                    slug: widget.slug,\n                    title: widget.title,\n                    keywords: widget.keywords,\n                    icon: <i className={widget.icon}></i>,\n                    title_url: widget.title_url,\n                    default: widget.default,\n                    doc_url: widget.doc_url,\n                    is_pro: widget.is_pro,\n                    description: widget.description,\n                    is_active: widget.is_activate !== undefined ? widget.is_activate : true, // Check if is_activate is set\n                    demo_url: widget.demo_url !== undefined ? widget.demo_url : widget.doc_url\n                });\n            }\n        }\n\n        return widgets;\n    }\n\n    return (\n        <div className='rounded-lg bg-white w-full mb-4'>\n            <div className='flex flex-col md:flex-row md:items-center md:justify-between p-4'\n            style={{\n                paddingBottom: '0'\n            }}>\n                <p className='m-0 text-sm font-semibold text-text-primary mb-2 md:mb-0'>{__(\"Widgets / Features\", \"header-footer-elementor\")}</p>\n                <div className='flex flex-col md:flex-row items-center gap-y-2 md:gap-x-2 md:mr-7 relative'>\n                    <SearchIcon\n                        className=\"absolute top-1/2 transform -translate-y-1/2 text-gray-400\"\n                        style={{\n                            backgroundColor: '#F9FAFB',\n                            left: '2%',\n                            width: '18px',\n                            height: '18px'\n                        }} />\n                    <input\n                        type=\"search\"\n                        placeholder={__('Search...', 'header-footer-elementor')}\n                        className=\"mr-2 pl-10 w-full md:w-auto\"\n                        style={{\n                            height: '40px',\n                            borderColor: '#e0e0e0', // Default border color\n                            outline: 'none',       // Removes the default outline\n                            boxShadow: 'none',\n                            backgroundColor: '#F9FAFB',    // Removes the default box shadow\n                        }}\n                        onFocus={(e) => e.target.style.borderColor = '#6005FF'} // Apply focus color\n                        onBlur={(e) => e.target.style.borderColor = '#e0e0e0'}  // Revert to default color\n                        onChange={handleSearchChange}\n                    />\n                    <div className=\"flex flex-row gap-2 w-full md:w-auto\">\n                        <div style={{ width: '245px', minWidth: '245px'}}>\n                        <div\n\t\t\t\t\t\t\tclassName=\"flex justify-center items-center rounded-sm overflow-hidden\"\n\t\t\t\t\t\t\tstyle={ { border: '1.5px solid #e5e7eb', borderRadius: '0.25rem' } }\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\tclassName={`font-medium p-2 transition-all duration-300 ${(!!searchTerm || loadingActivate) ? 'cursor-not-allowed' : 'cursor-pointer hover:bg-button-tertiary-hover hover:outline-border-subtle'}`}\n\t\t\t\t\t\t\t\tstyle={ { \n\t\t\t\t\t\t\t\t\tborder: 'none', \n\t\t\t\t\t\t\t\t\tborderRight: '1.5px solid #e5e7eb',\n\t\t\t\t\t\t\t\t\topacity: (!!searchTerm || loadingActivate) ? 0.5 : 1,\n\t\t\t\t\t\t\t\t\tpointerEvents: (!!searchTerm || loadingActivate) ? 'none' : 'auto',\n\t\t\t\t\t\t\t\t\tcolor: (!!searchTerm || loadingActivate) ? '#A9ACB0' : 'inherit'\n\t\t\t\t\t\t\t\t} }\n\t\t\t\t\t\t\t\tonClick={ () => {\n\t\t\t\t\t\t\t\t\tif (!loadingActivate && !searchTerm) {\n\t\t\t\t\t\t\t\t\t\thandleActivateAll();\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} }\n\t\t\t\t\t\t\t>\n                                {__(\"Activate All\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\tclassName={`font-medium p-2 transition-all duration-300 ${(!!searchTerm || loadingUnusedDeactivate) ? 'cursor-not-allowed' : 'cursor-pointer hover:bg-button-tertiary-hover hover:outline-border-subtle'}`}\n\t\t\t\t\t\t\t\tstyle={ { \n\t\t\t\t\t\t\t\t\tborder: 'none',\n\t\t\t\t\t\t\t\t\topacity: (!!searchTerm || loadingUnusedDeactivate) ? 0.5 : 1,\n\t\t\t\t\t\t\t\t\tpointerEvents: (!!searchTerm || loadingUnusedDeactivate) ? 'none' : 'auto',\n\t\t\t\t\t\t\t\t\tcolor: (!!searchTerm || loadingUnusedDeactivate) ? '#A9ACB0' : 'inherit'\n\t\t\t\t\t\t\t\t} }\n\t\t\t\t\t\t\t\tonClick={ () => {\n\t\t\t\t\t\t\t\t\tif (!loadingUnusedDeactivate && !searchTerm) {\n\t\t\t\t\t\t\t\t\t\thandleUnusedDeactivate();\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} }\n\t\t\t\t\t\t\t>\n                                {__(\"Deactivate Unused\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n                        </div>\n                        <Tooltip\n                                arrow\n                                content={\n                                    <div>\n                                       <p>{loadingDeactivate ? __('Deactivating...', 'header-footer-elementor') : __('Deactivate All', 'header-footer-elementor')}</p>\n                                    </div>\n                                }\n                                placement=\"top\"\n                                title=\"\"\n                                triggers={[\n                                    'hover'\n                                ]}\n                                variant=\"dark\"\n                                size=\"xs\"\n                            >\n                            <Trash2Icon \n                            className=\"relative text-gray-400\"\n                            onClick={handleDeactivateAll}\n                            style={{\n                                backgroundColor: '#F9FAFB',\n                                top: '5%',\n                                margin: 'auto',\n                                width: '22px',\n                                height: '22px'\n                            }} />\n                        </Tooltip>\n                    </div>\n                </div>\n            </div>\n            <div className='flex bg-black flex-col rounded-lg p-4' style={{ minHeight: \"800px\" }}>\n                {loading ? (\n                    <Container\n                        align=\"stretch\"\n                        className=\"p-2 gap-1.5 grid grid-cols-2 md:grid-cols-4\"\n                        style={{\n                            backgroundColor: \"#F9FAFB\"\n                        }}\n                        containerType=\"grid\"\n                        gap=\"\"\n                        justify=\"start\"\n                    >\n                        {[...Array(30)].map((_, index) => (\n                            <Container.Item\n                                key={index}\n                                alignSelf=\"auto\"\n                                className=\"text-wrap rounded-md shadow-container-item bg-background-primary p-6 space-y-2\"\n                            >\n                                <Skeleton className='w-12 h-2 rounded-md' />\n                                <Skeleton className='w-16 h-2 rounded-md' />\n                                <Skeleton className='w-12 h-2 rounded-md' />\n                            </Container.Item>\n                        ))}\n                    </Container>\n                ) : (\n                    <Container\n                        align=\"stretch\"\n                        className=\"p-1 gap-1.5 grid-cols-2 md:grid-cols-4\"\n                        containerType=\"grid\"\n                        gap=\"\"\n                        justify=\"start\"\n                        style={{\n                            backgroundColor: '#F9FAFB',\n                        }}\n                    >\n                        {filteredWidgets?.map((widget) => (\n                            <Container.Item\n                                key={widget.id}\n                                alignSelf=\"auto\"\n                                style={{\n\t\t\t\t\t\t\t\t\tpaddingTop: \"8px\",\n\t\t\t\t\t\t\t\t\tpaddingBottom: \"8px\",\n\t\t\t\t\t\t\t\t}}\n                                className=\"text-wrap rounded-md shadow-container-item bg-background-primary px-4\"\n                            >\n                                <WidgetItem widget={{ ...widget, updateCounter }} showTooltip={showTooltip} key={widget.id} updateCounter={updateCounter} />\n                            </Container.Item>\n                        ))}\n                    </Container>\n                )}\n            </div>\n        </div>\n    )\n}\n\nexport default FeatureWidgets\n","import React from \"react\";\nimport { Container, Title, Button } from \"@bsf/force-ui\";\nimport { Rocket, Check } from \"lucide-react\";\nimport { __ } from \"@wordpress/i18n\";\n\nconst UltimateWidgetFeatures = () => {\n\treturn (\n\t\t<div>\n\t\t\t<Container\n\t\t\t\tclassName=\"bg-background-primary px-4 border-[0.5px] border-subtle rounded-xl shadow-sm\"\n\t\t\t\tcontainerType=\"flex\"\n\t\t\t\tdirection=\"column\"\n\t\t\t\tgap=\"xs\"\n\t\t\t>\n\t\t\t\t<Container.Item\n\t\t\t\t\tclassName=\"flex flex-col pt-6 justify-between\"\n\t\t\t\t\tstyle={{ width: \"65%\" }}\n\t\t\t\t>\n\t\t\t\t\t<Container.Item\n\t\t\t\t\t\tclassName=\"flex justify-center items-center\"\n\t\t\t\t\t\tstyle={{ width: \"34%\" }}\n\t\t\t\t\t>\n\t\t\t\t\t\t<img\n\t\t\t\t\t\t\tsrc={`${hfeSettingsData.augemented_url}`}\n\t\t\t\t\t\t\talt={__(\n\t\t\t\t\t\t\t\t\"Column Showcase\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\tstyle={{  height: \"250\" }}\n\t\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t\t\tclassName=\"object-cover rounded w-full\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t</Container.Item>\n\n\t\t\t\t\t{/* Title + Description */}\n\t\t\t\t\t<div className=\"pt-2 px-2 flex flex-col\">\n\t\t\t\t\t\t<Title\n\t\t\t\t\t\t\tdescription=\"\"\n\t\t\t\t\t\t\ticon={<Rocket />}\n\t\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\ttag=\"p\"\n\t\t\t\t\t\t\ttitle={__(\n\t\t\t\t\t\t\t\t\"Unlock Pro Widgets\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\tclassName=\"text-xs py-1  text-[#C026D3]\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t<Title\n\t\t\t\t\t\t\tdescription=\"\"\n\t\t\t\t\t\t\ticon=\"\"\n\t\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\t\ttag=\"h6\"\n\t\t\t\t\t\t\ttitle={\n\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\"Bring Your Vision to Life with UAE Pro\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t</>\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tclassName=\"py-1 text-[16px] font-normal  text-text-primary\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t<p className=\"m-0 text-base max-w-96 text-[#4F4E7C]\">\n\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\"Streamline your workflow, skip the repetitive tasks, and build modern, high-performance websites.\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</p>\n\t\t\t\t\t</div>\n\n\t\t\t\t\t{/* Features List */}\n\t\t\t\t\t<div className=\"grid grid-cols-1 md:grid-cols-2 gap-2 m-0 pt-2\">\n\t\t\t\t\t\t<ul className=\"list-none font-normal space-y-2 text-sm text-[#111827]\">\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"50+ Widgets\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Conversion Extensions\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Display Conditions\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"White Label\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Bloggers Toolkit\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\n\t\t\t\t\t\t<ul className=\"list-none font-normal space-y-2 text-sm text-[#111827]\">\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"200+ Section Blocks\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Form & Pop-up Builder\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Animation Effects\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"WooCommerce Builder\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li className=\"flex items-center gap-1 text-text-tertiary whitespace-nowrap\">\n\t\t\t\t\t\t\t\t<Check color=\"#6005FF\" size={16} className=\"flex-shrink-0\" />\n\t\t\t\t\t\t\t\t<span className=\"truncate\">{__(\"Social Media Bundle\", \"header-footer-elementor\")}</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</div>\n\t\t\t\t</Container.Item>\n\n\t\t\t\t\t{/* Upgrade Button */}\n\t\t\t\t\t<div className=\"flex items-center m-0 pb-4 w-full  justify-center\">\n\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\tvariant=\"primary\"\n\t\t\t\t\t\t\tclassName=\"bg-[#6005FF] w-full m-0 h-10 flex items-center justify-center hfe-remove-ring\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\tbackgroundColor: \"#6005FF\",\n\t\t\t\t\t\t\t\ttransition: \"background-color 0.3s ease\",\n\t\t\t\t\t\t\t\toutline: \"none\",\n\t\t\t\t\t\t\t\theight: \"40px\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonMouseEnter={(e) =>\n\t\t\t\t\t\t\t\t(e.currentTarget.style.backgroundColor =\n\t\t\t\t\t\t\t\t\t\"#4B00CC\")\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tonMouseLeave={(e) =>\n\t\t\t\t\t\t\t\t(e.currentTarget.style.backgroundColor =\n\t\t\t\t\t\t\t\t\t\"#6005FF\")\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\t\"https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=unlock-ultimate-feature&utm_campaign=uae-lite-upgrade\",\n\t\t\t\t\t\t\t\t\t\"_blank\",\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{__(\"Start Building Smarter\", \"header-footer-elementor\")}\n\t\t\t\t\t\t</Button>\n\t\t\t\t\t</div>\n\t\t\t</Container>\n\t\t</div>\n\t);\n};\n\nexport default UltimateWidgetFeatures;\n","import NavMenu from '@components/NavMenu'\nimport { Container } from \"@bsf/force-ui\";\nimport React from 'react'\nimport TemplateSection from '@components/Dashboard/TemplateSection';\nimport QuickAccess from '@components/Dashboard/QuickAccess';\nimport UltimateWidgets from './UltimateWidgets';\nimport FeatureWidgets from './Features/FeatureWidgets'\nimport UltimateWidgetFeatures from './UltimateWidgetFeatures';\nimport ExtendWebsite from '@components/Dashboard/ExtendWebsite';\nimport UpgradeNotice from \"@components/UpgradeNotice\";\n\nconst Features = () => {\n    return (\n        <>\n            <UpgradeNotice />\n            <NavMenu />\n            <div>\n                <Container\n                    align=\"stretch\"\n                    className=\"p-6 flex flex-col lg:flex-row box-border\"\n                    containerType=\"flex\"\n                    direction=\"row\"\n                    gap=\"sm\"\n                    justify=\"start\"\n                    style={{\n                        width: \"100%\",\n                    }}\n                >\n                    <Container.Item\n                        className=\"p-2 hfe-65-width\"\n                        alignSelf=\"auto\"\n                        order=\"none\"\n                        shrink={1}\n                    >\n                        <FeatureWidgets />\n                    </Container.Item>\n                    <Container.Item\n                        className=\"p-2 hfe-35-width hfe-sticky-right-sidebar\"\n                        shrink={1}\n                    >\n                        <UltimateWidgetFeatures />\n                        {/* <div className='pt-5'>\n                        <ExtendWebsite/>\n                        </div> */}\n                        <div className='mt-4'>\n                        <QuickAccess />\n                        </div>\n                    </Container.Item>\n                </Container>\n            </div>\n        </>\n    )\n}\n\nexport default Features","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\n    \"path\",\n    {\n      d: \"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z\",\n      key: \"1xq2db\"\n    }\n  ]\n];\nconst Zap = createLucideIcon(\"zap\", __iconNode);\n\nexport { __iconNode, Zap as default };\n//# sourceMappingURL=zap.js.map\n","import React, { useState, useEffect } from 'react';\nimport { Container, Title, Button } from \"@bsf/force-ui\";\nimport { Zap, Plus, Check } from \"lucide-react\";\nimport apiFetch from '@wordpress/api-fetch';\nimport { __ } from \"@wordpress/i18n\";\n\nconst ExploreTemplates = () => {\n\n\tconst [loading, setLoading] = useState(true);\n\tconst [templatesStatus, setTemplatesStatus] = useState(null); \n    const [redirectUrl, setRedirectUrl] = useState(null); \n\n\tconst templateData = [\n\t\t{\n\t\t\tid: 1,\n\t\t\ticon: \"\",\n\t\t\ttitle: __( \"250+ templates for every niche\", \"header-footer-elementor\" ),\n\t\t},\n\t\t{\n\t\t\tid: 2,\n\t\t\ticon: \"\",\n\t\t\ttitle: __( \"Modern, timeless designs\", \"header-footer-elementor\" ),\n\t\t},\n\t\t{\n\t\t\tid: 3,\n\t\t\ticon: \"\",\n\t\t\ttitle: __( \"Full design flexibility for easy customization\", \"header-footer-elementor\" ),\n\t\t},\n\t\t{\n\t\t\tid: 4,\n\t\t\ticon: \"\",\n\t\t\ttitle: __( \"100% responsive across all devices\", \"header-footer-elementor\" ),\n\t\t}\n\t];\n\n\tuseEffect(() => {\n        const fetchSettings = () => {\n            setLoading(true);\n            apiFetch({\n                path: '/hfe/v1/templates',\n                headers: {\n                    'Content-Type': 'application/json',\n                    'X-WP-Nonce': hfeSettingsData.hfe_nonce_action, // Use the correct nonce\n                },\n            })\n                .then((data) => {\n\t\t\t\t\tsetTemplatesStatus(data.templates_status);\n                    if (data.redirect_url) {\n                        setRedirectUrl(data.redirect_url); // Save URL in state variable\n                    }\n                    setLoading(false); // Stop loading\n                })\n                .catch((err) => {\n                    setLoading(false); // Stop loading\n                });\n        };\n\n        fetchSettings();\n    }, []);\n\n\tif( loading ) {\n\t\treturn;\n\t}\n\n\tconst button_text = 'Install' === templatesStatus ? __('Install Starter Templates', 'header-footer-elementor') : ( 'Installed' ? __('Activate Starter Templates', 'header-footer-elementor') : '');\n\n\tconst handleButtonClick = (e) => {\n\n\t\tif  (redirectUrl ) {\n\t\t\twindow.open(redirectUrl, '_blank');\n\t\t} else {\n\t\t\tconst buttonElement = document.querySelector('.hfe-starter-template-button span');\n\n\t\t\tconst formData = new window.FormData();\n\t\t\tformData.append( 'action', 'hfe_recommended_plugin_install' );\n\t\t\tformData.append( '_ajax_nonce', hfe_admin_data.installer_nonce );\n\t\t\tformData.append( 'slug', 'astra-sites' );\n\t\t\t\n\t\t\tif( buttonElement && templatesStatus === 'Install' ) {\n\n\t\t\t\tbuttonElement.innerText = __('Installing Starter Templates...', 'header-footer-elementor');\n\n\t\t\t\t// AJAX call to install the starter template.\n\t\t\t\tapiFetch({\n\t\t\t\t\turl: hfe_admin_data.ajax_url,\n\t\t\t\t\tmethod: 'POST',\n\t\t\t\t\tbody: formData,\n\t\t\t\t}).then((data) => {\n\t\t\t\t\tif (data.success || data.errorCode === 'folder_exists' ) {\n\t\t\t\t\t\tbuttonElement.innerText = __('Installed Starter Templates', 'header-footer-elementor');\n\t\t\t\t\t\tactivatePlugin();\n\t\t\t\t\t} else {\n\t\t\t\t\t\tbuttonElement.innerText = __('Install Starter Templates', 'header-footer-elementor');\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tif( buttonElement && templatesStatus === 'Installed' ) {\n\t\t\t\tbuttonElement.innerText = __('Activating Starter Templates...', 'header-footer-elementor');\n\t\t\t\tactivatePlugin();\n\t\t\t}\n\t\t}\n\t};\n\n\tconst activatePlugin = () => {\n\n        const formData = new window.FormData();\n\n\t\tconst st_pro_status = hfeSettingsData.st_pro_status;\n\t\tvar plugin_file = 'astra-sites/astra-sites.php';\n\t\tvar plugin_slug = 'astra-sites';\n\n\t\tif( 'Installed' === st_pro_status && ( 'Install' === hfeSettingsData.st_status || 'Installed' === hfeSettingsData.st_status ) ) {\n\t\t\tplugin_file = 'astra-pro-sites/astra-pro-sites.php';\n\t\t\tplugin_slug = 'astra-pro-sites';\n\t\t}\n\n        formData.append('action', 'hfe_recommended_plugin_activate');\n        formData.append('nonce', hfe_admin_data.nonce);\n        formData.append('plugin', plugin_file );\n        formData.append('type', 'plugin');\n        formData.append('slug', plugin_slug);\n\n        apiFetch({\n            url: hfe_admin_data.ajax_url,\n            method: 'POST',\n            body: formData,\n        }).then((data) => {\n            if (data.success) {\n                const buttonElement = document.querySelector('.hfe-starter-template-button');\n                if (buttonElement) { // Check if buttonElement is not null\n                    const spanElement = buttonElement.querySelector('span');\n                    if (spanElement) { // Check if spanElement is not null\n                        spanElement.innerText = __('Activating Starter Templates...', 'header-footer-elementor');\n                        buttonElement.classList.add('hfe-plugin-activated');\n                        spanElement.innerText = __('Activated Starter Templates', 'header-footer-elementor');\n                        location.reload();\n                    }\n                }\n            } else {\n                const buttonElement = document.querySelector('.hfe-starter-template-button');\n                if (buttonElement) { // Check if buttonElement is not null\n                    const spanElement = buttonElement.querySelector('span');\n                    if (spanElement) { // Check if spanElement is not null\n                        spanElement.innerText = __('Activate Starter Templates', 'header-footer-elementor');\n                    }\n                }\n            }\n        });\n    };\n\n\treturn (\n\t\t<div>\n\t\t\t<Container\n\t\t\t\tclassName=\"flex gap-2 flex-col md:flex-row bg-background-primary p-6 md:p-10 border-[0.5px] border-subtle rounded-xl shadow-sm flex-col-reverse\"\n\t\t\t\tcontainerType=\"flex\"\n\t\t\t\tgap=\"xs\"\n\t\t\t>\n\t\t\t\t{/* Left Column */}\n\t\t\t\t<Container.Item className=\"flex flex-col justify-between w-full mt-4  md:w-1/2 mb-4 md:mb-0\">\n\t\t\t\t\t<div>\n\t\t\t\t\t\t{/* Main Title */}\n\t\t\t\t\t\t<Title\n\t\t\t\t\t\t\tdescription=\"\"\n\t\t\t\t\t\t\ticon={<Zap />}\n\t\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\ttag=\"h6\"\n\t\t\t\t\t\t\ttitle={__(\"Design Your Website in Minutes\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\tclassName=\"text-xs font-semibold text-brand-primary-600 mb-2\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t{/* Subtitle */}\n\t\t\t\t\t\t<Title\n\t\t\t\t\t\t\tdescription=\"\"\n\t\t\t\t\t\t\ticon=\"\"\n\t\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\t\ttag=\"h6\"\n\t\t\t\t\t\t\ttitle={__(\"Build your website faster using our prebuilt templates\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\tclassName=\"py-1 text-sm mb-2\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t{/* Paragraph Description */}\n\t\t\t\t\t\t<p className=\"text-sm md:text-md m-0 text-text-secondary text-text-tertiary\">\n\t\t\t\t\t\t\t{__('Stop building your site from scratch. Use our professional templates for your stunning website. It is easy to customize and completely responsive. Explore hundreds of designs and bring your vision to life in no time.', 'header-footer-elementor')}\n\t\t\t\t\t\t</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t{/* Template List */}\n\t\t\t\t\t<div className=\"grid grid-cols-1 gap-1 my-4\">\n\t\t\t\t\t\t{templateData.map((template) => (\n\t\t\t\t\t\t\t<Title\n\t\t\t\t\t\t\t\tkey={template.id}\n\t\t\t\t\t\t\t\tdescription=\"\"\n\t\t\t\t\t\t\t\ticon={<Check className=\"text-brand-primary-600 mr-1 h-3 w-3\" />}\n\t\t\t\t\t\t\t\ticonPosition=\"left\"\n\t\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\t\ttag=\"h6\"\n\t\t\t\t\t\t\t\ttitle={__(template.title, 'header-footer-elementor')}\n\t\t\t\t\t\t\t\tclassName=\"\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t))}\n\t\t\t\t\t</div>\n\t\t\t\t\t{/* Buttons */}\n\t\t\t\t\t<div\n\t\t\t\t\t\tclassName=\"flex flex-col md:flex-row items-center pb-3 gap-4\"\n\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\tmarginTop: \"15px\",\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\ticon={<Plus />}\n\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\tvariant=\"secondary\"\n\t\t\t\t\t\t\tstyle={{ backgroundColor: \"#6005FF\", outlineWidth: \"0px\" }}\n\t\t\t\t\t\t\tclassName=\"w-auto hfe-starter-template-button hfe-remove-ring cursor-pointer\"\n\t\t\t\t\t\t\tonClick={handleButtonClick}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{ ( 'Activated' === templatesStatus ) ? __('Explore Templates', 'header-footer-elementor') : button_text }\n\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\ticon=\"\"\n\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\tvariant=\"ghost\"\n\t\t\t\t\t\t\tclassName=\"w-auto hfe-link-color hfe-remove-ring\"\n\t\t\t\t\t\t\tonClick={() => {\n                                window.open('https://startertemplates.com/', '_blank');\n                            }}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{__('Learn More', 'header-footer-elementor')}\n\t\t\t\t\t\t</Button>\n\t\t\t\t\t</div>\n\t\t\t\t</Container.Item>\n\n\t\t\t\t{/* Right Column with Image */}\n\t\t\t\t<Container.Item className=\"flex justify-center md:justify-end w-full md:w-1/2\">\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc={`${hfeSettingsData.template_url}`}\n\t\t\t\t\t\talt=\"Column Showcase\"\n\t\t\t\t\t\tclassName=\"object-contain w-full md:w-5/6\"\n\t\t\t\t\t/>\n\t\t\t\t</Container.Item>\n\t\t\t</Container>\n\t\t</div>\n\n\t)\n}\n\nexport default ExploreTemplates\n","import React from 'react'\nimport { Container } from \"@bsf/force-ui\";\nimport NavMenu from '@components/NavMenu';\nimport ExploreTemplates from './ExploreTemplates';\n\nconst Templates = () => {\n    return (\n        <>\n            <NavMenu />\n            <div className=\"\">\n                <Container\n                    align=\"stretch\"\n                    className=\"p-2\"\n                    containerType=\"flex\"\n                    direction=\"row\"\n                    gap=\"sm\"\n                    justify=\"center\"\n                    style={{\n                        width: \"100%\",\n                    }}\n                >\n                    <Container.Item\n                        className=\"p-2\"\n                        alignSelf=\"auto\"\n                        order=\"none\"\n                        shrink={1}\n                        style={{\n                            width: \"90%\",\n                        }}\n                    >\n                        {/* <WelcomeContainer />\n                        <Widgets /> */}\n                        <ExploreTemplates />\n                    </Container.Item>\n                </Container>\n            </div>\n        </>\n    )\n}\n\nexport default Templates\n","import React, { useState } from 'react'\n\nconst Sidebar = ({ items, onSelectItem }) => {\n  const [selectedItemId, setSelectedItemId] = useState(null); // State to track selected item\n\n  const handleSelectItem = (item) => {\n    setSelectedItemId(item.id); // Update selected item\n    onSelectItem(item); // Trigger onSelectItem callback\n  };\n\n  return (\n    <div style={{ padding: \"1rem\", width: \"100%\" }}>\n      {/* Loop through items to render main title, icon, and title */}\n      {items.map((item) => (\n        <div key={item.id} className=\"mb-2\">\n          {/* Main Title for each section */}\n          {item.main && (\n            <p className=\"text-sm text-text-tertiary font-normal mb-2\">\n              {item.main}\n            </p>\n          )}\n\n          {/* Each item with icon and title */}\n          <div\n            className={`h-10 flex items-center justify-start gap-2 px-2 rounded-md cursor-pointer ${selectedItemId === item.id ? 'bg-gray-100' : 'bg-background-primary'}`}\n            style={{\n              backgroundColor: selectedItemId === item.id ? '#F9FAFB' : '', // Apply background color when selected\n            }}\n            onClick={() => handleSelectItem(item)}\n          >\n            <span>\n              {selectedItemId === item.id ? item.selected : item.icon}\n            </span>\n            <p className=\"m-0 text-base font-normal\">{item.title}</p>\n          </div>\n        </div>\n      ))}\n    </div>\n  );\n};\n\nexport default Sidebar;\n","import React from 'react'\n\nconst Content = ({ selectedItem }) => {\n  return (\n    <div className=\"p-6\" style={{ marginLeft: '4px' }}>\n      <div>{selectedItem?.content}</div>\n    </div>\n  )\n}\n\nexport default Content\n","let e={data:\"\"},t=t=>\"object\"==typeof window?((t?t.querySelector(\"#_goober\"):window._goober)||Object.assign((t||document.head).appendChild(document.createElement(\"style\")),{innerHTML:\" \",id:\"_goober\"})).firstChild:t||e,r=e=>{let r=t(e),l=r.data;return r.data=\"\",l},l=/(?:([\\u0080-\\uFFFF\\w-%@]+) *:? *([^{;]+?);|([^;}{]*?) *{)|(}\\s*)/g,a=/\\/\\*[^]*?\\*\\/|  +/g,n=/\\n+/g,o=(e,t)=>{let r=\"\",l=\"\",a=\"\";for(let n in e){let c=e[n];\"@\"==n[0]?\"i\"==n[1]?r=n+\" \"+c+\";\":l+=\"f\"==n[1]?o(c,n):n+\"{\"+o(c,\"k\"==n[1]?\"\":t)+\"}\":\"object\"==typeof c?l+=o(c,t?t.replace(/([^,])+/g,e=>n.replace(/([^,]*:\\S+\\([^)]*\\))|([^,])+/g,t=>/&/.test(t)?t.replace(/&/g,e):e?e+\" \"+t:t)):n):null!=c&&(n=/^--/.test(n)?n:n.replace(/[A-Z]/g,\"-$&\").toLowerCase(),a+=o.p?o.p(n,c):n+\":\"+c+\";\")}return r+(t&&a?t+\"{\"+a+\"}\":a)+l},c={},s=e=>{if(\"object\"==typeof e){let t=\"\";for(let r in e)t+=r+s(e[r]);return t}return e},i=(e,t,r,i,p)=>{let u=s(e),d=c[u]||(c[u]=(e=>{let t=0,r=11;for(;t<e.length;)r=101*r+e.charCodeAt(t++)>>>0;return\"go\"+r})(u));if(!c[d]){let t=u!==e?e:(e=>{let t,r,o=[{}];for(;t=l.exec(e.replace(a,\"\"));)t[4]?o.shift():t[3]?(r=t[3].replace(n,\" \").trim(),o.unshift(o[0][r]=o[0][r]||{})):o[0][t[1]]=t[2].replace(n,\" \").trim();return o[0]})(e);c[d]=o(p?{[\"@keyframes \"+d]:t}:t,r?\"\":\".\"+d)}let f=r&&c.g?c.g:null;return r&&(c.g=c[d]),((e,t,r,l)=>{l?t.data=t.data.replace(l,e):-1===t.data.indexOf(e)&&(t.data=r?e+t.data:t.data+e)})(c[d],t,i,f),d},p=(e,t,r)=>e.reduce((e,l,a)=>{let n=t[a];if(n&&n.call){let e=n(r),t=e&&e.props&&e.props.className||/^go/.test(e)&&e;n=t?\".\"+t:e&&\"object\"==typeof e?e.props?\"\":o(e,\"\"):!1===e?\"\":e}return e+l+(null==n?\"\":n)},\"\");function u(e){let r=this||{},l=e.call?e(r.p):e;return i(l.unshift?l.raw?p(l,[].slice.call(arguments,1),r.p):l.reduce((e,t)=>Object.assign(e,t&&t.call?t(r.p):t),{}):l,t(r.target),r.g,r.o,r.k)}let d,f,g,b=u.bind({g:1}),h=u.bind({k:1});function m(e,t,r,l){o.p=t,d=e,f=r,g=l}function j(e,t){let r=this||{};return function(){let l=arguments;function a(n,o){let c=Object.assign({},n),s=c.className||a.className;r.p=Object.assign({theme:f&&f()},c),r.o=/ *go\\d+/.test(s),c.className=u.apply(r,l)+(s?\" \"+s:\"\"),t&&(c.ref=o);let i=e;return e[0]&&(i=c.as||e,delete c.as),g&&i[0]&&g(c),d(i,c)}return t?t(a):a}}export{u as css,r as extractCss,b as glob,h as keyframes,m as setup,j as styled};\n","\"use client\";\nvar W=e=>typeof e==\"function\",f=(e,t)=>W(e)?e(t):e;var F=(()=>{let e=0;return()=>(++e).toString()})(),A=(()=>{let e;return()=>{if(e===void 0&&typeof window<\"u\"){let t=matchMedia(\"(prefers-reduced-motion: reduce)\");e=!t||t.matches}return e}})();import{useEffect as H,useState as j,useRef as Q}from\"react\";var Y=20;var U=(e,t)=>{switch(t.type){case 0:return{...e,toasts:[t.toast,...e.toasts].slice(0,Y)};case 1:return{...e,toasts:e.toasts.map(o=>o.id===t.toast.id?{...o,...t.toast}:o)};case 2:let{toast:r}=t;return U(e,{type:e.toasts.find(o=>o.id===r.id)?1:0,toast:r});case 3:let{toastId:s}=t;return{...e,toasts:e.toasts.map(o=>o.id===s||s===void 0?{...o,dismissed:!0,visible:!1}:o)};case 4:return t.toastId===void 0?{...e,toasts:[]}:{...e,toasts:e.toasts.filter(o=>o.id!==t.toastId)};case 5:return{...e,pausedAt:t.time};case 6:let a=t.time-(e.pausedAt||0);return{...e,pausedAt:void 0,toasts:e.toasts.map(o=>({...o,pauseDuration:o.pauseDuration+a}))}}},P=[],y={toasts:[],pausedAt:void 0},u=e=>{y=U(y,e),P.forEach(t=>{t(y)})},q={blank:4e3,error:4e3,success:2e3,loading:1/0,custom:4e3},D=(e={})=>{let[t,r]=j(y),s=Q(y);H(()=>(s.current!==y&&r(y),P.push(r),()=>{let o=P.indexOf(r);o>-1&&P.splice(o,1)}),[]);let a=t.toasts.map(o=>{var n,i,p;return{...e,...e[o.type],...o,removeDelay:o.removeDelay||((n=e[o.type])==null?void 0:n.removeDelay)||(e==null?void 0:e.removeDelay),duration:o.duration||((i=e[o.type])==null?void 0:i.duration)||(e==null?void 0:e.duration)||q[o.type],style:{...e.style,...(p=e[o.type])==null?void 0:p.style,...o.style}}});return{...t,toasts:a}};var J=(e,t=\"blank\",r)=>({createdAt:Date.now(),visible:!0,dismissed:!1,type:t,ariaProps:{role:\"status\",\"aria-live\":\"polite\"},message:e,pauseDuration:0,...r,id:(r==null?void 0:r.id)||F()}),x=e=>(t,r)=>{let s=J(t,e,r);return u({type:2,toast:s}),s.id},c=(e,t)=>x(\"blank\")(e,t);c.error=x(\"error\");c.success=x(\"success\");c.loading=x(\"loading\");c.custom=x(\"custom\");c.dismiss=e=>{u({type:3,toastId:e})};c.remove=e=>u({type:4,toastId:e});c.promise=(e,t,r)=>{let s=c.loading(t.loading,{...r,...r==null?void 0:r.loading});return typeof e==\"function\"&&(e=e()),e.then(a=>{let o=t.success?f(t.success,a):void 0;return o?c.success(o,{id:s,...r,...r==null?void 0:r.success}):c.dismiss(s),a}).catch(a=>{let o=t.error?f(t.error,a):void 0;o?c.error(o,{id:s,...r,...r==null?void 0:r.error}):c.dismiss(s)}),e};import{useEffect as $,useCallback as L}from\"react\";var K=(e,t)=>{u({type:1,toast:{id:e,height:t}})},X=()=>{u({type:5,time:Date.now()})},b=new Map,Z=1e3,ee=(e,t=Z)=>{if(b.has(e))return;let r=setTimeout(()=>{b.delete(e),u({type:4,toastId:e})},t);b.set(e,r)},O=e=>{let{toasts:t,pausedAt:r}=D(e);$(()=>{if(r)return;let o=Date.now(),n=t.map(i=>{if(i.duration===1/0)return;let p=(i.duration||0)+i.pauseDuration-(o-i.createdAt);if(p<0){i.visible&&c.dismiss(i.id);return}return setTimeout(()=>c.dismiss(i.id),p)});return()=>{n.forEach(i=>i&&clearTimeout(i))}},[t,r]);let s=L(()=>{r&&u({type:6,time:Date.now()})},[r]),a=L((o,n)=>{let{reverseOrder:i=!1,gutter:p=8,defaultPosition:d}=n||{},h=t.filter(m=>(m.position||d)===(o.position||d)&&m.height),v=h.findIndex(m=>m.id===o.id),S=h.filter((m,E)=>E<v&&m.visible).length;return h.filter(m=>m.visible).slice(...i?[S+1]:[0,S]).reduce((m,E)=>m+(E.height||0)+p,0)},[t]);return $(()=>{t.forEach(o=>{if(o.dismissed)ee(o.id,o.removeDelay);else{let n=b.get(o.id);n&&(clearTimeout(n),b.delete(o.id))}})},[t]),{toasts:t,handlers:{updateHeight:K,startPause:X,endPause:s,calculateOffset:a}}};import*as l from\"react\";import{styled as B,keyframes as z}from\"goober\";import*as g from\"react\";import{styled as w,keyframes as me}from\"goober\";import{styled as te,keyframes as I}from\"goober\";var oe=I`\nfrom {\n  transform: scale(0) rotate(45deg);\n\topacity: 0;\n}\nto {\n transform: scale(1) rotate(45deg);\n  opacity: 1;\n}`,re=I`\nfrom {\n  transform: scale(0);\n  opacity: 0;\n}\nto {\n  transform: scale(1);\n  opacity: 1;\n}`,se=I`\nfrom {\n  transform: scale(0) rotate(90deg);\n\topacity: 0;\n}\nto {\n  transform: scale(1) rotate(90deg);\n\topacity: 1;\n}`,k=te(\"div\")`\n  width: 20px;\n  opacity: 0;\n  height: 20px;\n  border-radius: 10px;\n  background: ${e=>e.primary||\"#ff4b4b\"};\n  position: relative;\n  transform: rotate(45deg);\n\n  animation: ${oe} 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)\n    forwards;\n  animation-delay: 100ms;\n\n  &:after,\n  &:before {\n    content: '';\n    animation: ${re} 0.15s ease-out forwards;\n    animation-delay: 150ms;\n    position: absolute;\n    border-radius: 3px;\n    opacity: 0;\n    background: ${e=>e.secondary||\"#fff\"};\n    bottom: 9px;\n    left: 4px;\n    height: 2px;\n    width: 12px;\n  }\n\n  &:before {\n    animation: ${se} 0.15s ease-out forwards;\n    animation-delay: 180ms;\n    transform: rotate(90deg);\n  }\n`;import{styled as ae,keyframes as ie}from\"goober\";var ne=ie`\n  from {\n    transform: rotate(0deg);\n  }\n  to {\n    transform: rotate(360deg);\n  }\n`,V=ae(\"div\")`\n  width: 12px;\n  height: 12px;\n  box-sizing: border-box;\n  border: 2px solid;\n  border-radius: 100%;\n  border-color: ${e=>e.secondary||\"#e0e0e0\"};\n  border-right-color: ${e=>e.primary||\"#616161\"};\n  animation: ${ne} 1s linear infinite;\n`;import{styled as ce,keyframes as N}from\"goober\";var pe=N`\nfrom {\n  transform: scale(0) rotate(45deg);\n\topacity: 0;\n}\nto {\n  transform: scale(1) rotate(45deg);\n\topacity: 1;\n}`,de=N`\n0% {\n\theight: 0;\n\twidth: 0;\n\topacity: 0;\n}\n40% {\n  height: 0;\n\twidth: 6px;\n\topacity: 1;\n}\n100% {\n  opacity: 1;\n  height: 10px;\n}`,_=ce(\"div\")`\n  width: 20px;\n  opacity: 0;\n  height: 20px;\n  border-radius: 10px;\n  background: ${e=>e.primary||\"#61d345\"};\n  position: relative;\n  transform: rotate(45deg);\n\n  animation: ${pe} 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)\n    forwards;\n  animation-delay: 100ms;\n  &:after {\n    content: '';\n    box-sizing: border-box;\n    animation: ${de} 0.2s ease-out forwards;\n    opacity: 0;\n    animation-delay: 200ms;\n    position: absolute;\n    border-right: 2px solid;\n    border-bottom: 2px solid;\n    border-color: ${e=>e.secondary||\"#fff\"};\n    bottom: 6px;\n    left: 6px;\n    height: 10px;\n    width: 6px;\n  }\n`;var ue=w(\"div\")`\n  position: absolute;\n`,le=w(\"div\")`\n  position: relative;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  min-width: 20px;\n  min-height: 20px;\n`,fe=me`\nfrom {\n  transform: scale(0.6);\n  opacity: 0.4;\n}\nto {\n  transform: scale(1);\n  opacity: 1;\n}`,Te=w(\"div\")`\n  position: relative;\n  transform: scale(0.6);\n  opacity: 0.4;\n  min-width: 20px;\n  animation: ${fe} 0.3s 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275)\n    forwards;\n`,M=({toast:e})=>{let{icon:t,type:r,iconTheme:s}=e;return t!==void 0?typeof t==\"string\"?g.createElement(Te,null,t):t:r===\"blank\"?null:g.createElement(le,null,g.createElement(V,{...s}),r!==\"loading\"&&g.createElement(ue,null,r===\"error\"?g.createElement(k,{...s}):g.createElement(_,{...s})))};var ye=e=>`\n0% {transform: translate3d(0,${e*-200}%,0) scale(.6); opacity:.5;}\n100% {transform: translate3d(0,0,0) scale(1); opacity:1;}\n`,ge=e=>`\n0% {transform: translate3d(0,0,-1px) scale(1); opacity:1;}\n100% {transform: translate3d(0,${e*-150}%,-1px) scale(.6); opacity:0;}\n`,he=\"0%{opacity:0;} 100%{opacity:1;}\",xe=\"0%{opacity:1;} 100%{opacity:0;}\",be=B(\"div\")`\n  display: flex;\n  align-items: center;\n  background: #fff;\n  color: #363636;\n  line-height: 1.3;\n  will-change: transform;\n  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05);\n  max-width: 350px;\n  pointer-events: auto;\n  padding: 8px 10px;\n  border-radius: 8px;\n`,Se=B(\"div\")`\n  display: flex;\n  justify-content: center;\n  margin: 4px 10px;\n  color: inherit;\n  flex: 1 1 auto;\n  white-space: pre-line;\n`,Ae=(e,t)=>{let s=e.includes(\"top\")?1:-1,[a,o]=A()?[he,xe]:[ye(s),ge(s)];return{animation:t?`${z(a)} 0.35s cubic-bezier(.21,1.02,.73,1) forwards`:`${z(o)} 0.4s forwards cubic-bezier(.06,.71,.55,1)`}},C=l.memo(({toast:e,position:t,style:r,children:s})=>{let a=e.height?Ae(e.position||t||\"top-center\",e.visible):{opacity:0},o=l.createElement(M,{toast:e}),n=l.createElement(Se,{...e.ariaProps},f(e.message,e));return l.createElement(be,{className:e.className,style:{...a,...r,...e.style}},typeof s==\"function\"?s({icon:o,message:n}):l.createElement(l.Fragment,null,o,n))});import{css as Pe,setup as Re}from\"goober\";import*as T from\"react\";Re(T.createElement);var ve=({id:e,className:t,style:r,onHeightUpdate:s,children:a})=>{let o=T.useCallback(n=>{if(n){let i=()=>{let p=n.getBoundingClientRect().height;s(e,p)};i(),new MutationObserver(i).observe(n,{subtree:!0,childList:!0,characterData:!0})}},[e,s]);return T.createElement(\"div\",{ref:o,className:t,style:r},a)},Ee=(e,t)=>{let r=e.includes(\"top\"),s=r?{top:0}:{bottom:0},a=e.includes(\"center\")?{justifyContent:\"center\"}:e.includes(\"right\")?{justifyContent:\"flex-end\"}:{};return{left:0,right:0,display:\"flex\",position:\"absolute\",transition:A()?void 0:\"all 230ms cubic-bezier(.21,1.02,.73,1)\",transform:`translateY(${t*(r?1:-1)}px)`,...s,...a}},De=Pe`\n  z-index: 9999;\n  > * {\n    pointer-events: auto;\n  }\n`,R=16,Oe=({reverseOrder:e,position:t=\"top-center\",toastOptions:r,gutter:s,children:a,containerStyle:o,containerClassName:n})=>{let{toasts:i,handlers:p}=O(r);return T.createElement(\"div\",{id:\"_rht_toaster\",style:{position:\"fixed\",zIndex:9999,top:R,left:R,right:R,bottom:R,pointerEvents:\"none\",...o},className:n,onMouseEnter:p.startPause,onMouseLeave:p.endPause},i.map(d=>{let h=d.position||t,v=p.calculateOffset(d,{reverseOrder:e,gutter:s,defaultPosition:t}),S=Ee(h,v);return T.createElement(ve,{id:d.id,key:d.id,onHeightUpdate:p.updateHeight,className:d.visible?De:\"\",style:S},d.type===\"custom\"?f(d.message,d):a?a(d):T.createElement(C,{toast:d,position:h}))}))};var Vt=c;export{_ as CheckmarkIcon,k as ErrorIcon,V as LoaderIcon,C as ToastBar,M as ToastIcon,Oe as Toaster,Vt as default,f as resolveValue,c as toast,O as useToaster,D as useToasterStore};\n//# sourceMappingURL=index.mjs.map","import React, { useState, useEffect } from 'react';\nimport { Container, Title, Label } from \"@bsf/force-ui\";\nimport { __ } from '@wordpress/i18n';\nimport toast, { Toaster } from 'react-hot-toast';\n\nconst radioData = [\n    {\n        id: \"1\",\n        title: __('Option 1 (Recommended)', 'header-footer-elementor'),\n        description: __(\"This option will automatically replace your theme's header and footer files with custom templates from the plugin. It works with most themes and is selected by default.\", \"header-footer-elementor\"),\n        value: \"1\"\n    },\n    {\n        id: \"2\",\n        title: __('Option 2', 'header-footer-elementor'),\n        description: __(\"This option hides your theme's header and footer using CSS and displays custom templates from the plugin. Use this if Option 1 causes layout issues.\", \"header-footer-elementor\"),\n        value: \"2\"\n    }\n];\n\nconst ThemeSupport = () => {\n\n    if (\"no\" === hfeSettingsData.show_theme_support) {\n        return null;\n    }\n\n    // State to store the selected radio option\n    const [selectedOption, setSelectedOption] = useState(hfeSettingsData.theme_option);\n    const [isInitialLoad, setIsInitialLoad] = useState(true);\n\n    useEffect(() => {\n        setIsInitialLoad(false);\n    }, []);\n\n    const handleRadioChange = (event) => {\n        const newValue = event.target.value;\n        setSelectedOption(newValue); // Update the selected option in state.\n\n        // Only send the AJAX call if this is not the initial load.\n        if (!isInitialLoad) {\n            saveOption(newValue);\n        }\n    };\n\n    // Function to save the selected option.\n    const saveOption = async (option) => {\n        try {\n            const response = await fetch(hfe_admin_data.ajax_url, {\n                method: 'POST',\n                headers: {\n                    'Content-Type': 'application/x-www-form-urlencoded',\n                },\n                body: new URLSearchParams({\n                    action: 'save_theme_compatibility_option', // WordPress action for your AJAX handler.\n                    hfe_compatibility_option: option,\n                    nonce: hfe_admin_data.nonce // Nonce for security.\n                })\n            });\n\n            const result = await response.json();\n\n            if (result.success) {\n                toast.success(__('Settings saved successfully!', 'header-footer-elementor'));\n            } else {\n                toast.error(__('Failed to save settings!', 'header-footer-elementor'));\n            }\n        } catch (error) {\n            toast.error(__('Failed to save settings!', 'header-footer-elementor'));\n        }\n    };\n\n    return (\n        <>\n            <Title\n                description=\"\"\n                icon={null}\n                iconPosition=\"right\"\n                size=\"sm\"\n                tag=\"h2\"\n                title={__('Theme Support', 'header-footer-elementor')}\n            />\n            <Container\n                align=\"stretch\"\n                className=\"bg-background-primary p-6 rounded-lg\"\n                containerType=\"flex\"\n                direction=\"column\"\n                gap=\"sm\"\n                justify=\"start\"\n                style={{\n                    marginTop: \"24px\",\n                    maxWidth: \"696px\",\n                }}\n            >\n                <Container.Item className=\"flex flex-col space-y-1\">\n                    <p className='text-base font-semibold m-0'>{__('Select Option to Add Theme Support', 'header-footer-elementor')}</p>\n                    <p className='text-sm font-normal m-0'>\n                        {__(\n                            `To ensure compatibility between the header/footer and your theme, please choose one of the following options to enable theme support:`,\n                            'header-footer-elementor'\n                        )}\n                    </p>\n                </Container.Item>\n                <Container.Item\n                    className=\"p-2 space-y-4\"\n                    alignSelf=\"auto\"\n                    order=\"none\"\n                >\n                    {radioData.map((item) => (\n                        <div key={item.id} className='flex items-start gap-1 justify-center cursor-pointer'>\n                            <input\n                                id={item.id}\n                                value={item.value}\n                                type='radio'\n                                className='mt-1 cursor-pointer hfe-radio-field'\n                                name=\"theme-support-option\" // Group radio buttons\n                                onChange={handleRadioChange} // Track the change\n                                checked={selectedOption === item.value} // Controlled input\n                            />\n                            <div className='flex flex-col cursor-pointer'>\n                                <Label\n                                    size=\"sm\"\n                                    variant=\"neutral\"\n                                    className='text-sm font-semibold text-text-secondary cursor-pointer flex flex-col items-start justify-start'\n                                    htmlFor={item.id}\n                                >\n                                    {item.title}:\n                                    <p className='m-0 text-sm font-normal text-text-secondary cursor-pointer'>{item.description}</p>\n                                </Label>\n                            </div>\n                        </div>\n                    ))}\n                </Container.Item>\n\n                <div className='flex items-center p-4 border rounded-lg text-start' style={{\n                    paddingTop: '16px',\n                    paddingBottom: '16px',\n                    backgroundColor: \"#F3F0FF\",\n                }}>\n                    <p className='m-0 text-sm'>\n                        <strong>{__('Note:', 'header-footer-elementor')}</strong> {__('If neither option works, please contact your theme author to add support for this plugin.', 'header-footer-elementor')}\n                    </p>\n                </div>\n            </Container>\n\n            <Toaster\n                position=\"top-right\"\n                reverseOrder={false}\n                gutter={8}\n                containerStyle={{\n                    top: 20,\n                    right: 20,\n                    marginTop: '80px',\n                }}\n                toastOptions={{\n                    duration: 5000,\n                    style: {\n                        background: 'white',\n                    },\n                    success: {\n                        duration: 3000,\n                        style: {\n                            color: '',\n                        },\n                        iconTheme: {\n                            primary: '#6005ff',\n                            secondary: '#fff',\n                        },\n                    },\n                }}\n            />\n        </>\n    );\n};\n\nexport default ThemeSupport;\n","import React, { useState, useEffect, useRef } from 'react';\nimport { Container, Title, Button, Dialog } from \"@bsf/force-ui\";\nimport { __ } from '@wordpress/i18n';\n\nconst VersionControl = () => {\n\n    const previousLiteVersions = hfeSettingsData.uaelite_versions;\n\n    const liteVersionRef = useRef(previousLiteVersions ? previousLiteVersions[0].value : '');\n\n    const [liteVersionSelect, setLiteVersionSelect] = useState(previousLiteVersions ? previousLiteVersions[0].value : '');\n\n    const [freeproductSelect, setFreeproductSelect] = useState('elementor-header-footer');\n\n    const [openLitePopup, setOpenLitePopup] = useState(false);\n\n    useEffect(() => {\n    }, [openLitePopup]);\n\n    const onLiteCancelClick = () => {\n        setOpenLitePopup(false);\n    };\n\n    const onLiteContinueClick = () => {\n        const rollbackUrl = hfeSettingsData.uaelite_rollback_url.replace(\n            'VERSION',\n            liteVersionSelect\n        );\n        setOpenLitePopup(false);\n        window.location.href = rollbackUrl;\n    };\n\n    const handleLiteVersionChange = (event) => {\n        setLiteVersionSelect(event.target.value);\n    }\n\n    return (\n        <>\n            <Title\n                description=\"\"\n                icon={null}\n                iconPosition=\"right\"\n                size=\"sm\"\n                tag=\"h2\"\n                title={__('Version Control', 'header-footer-elementor')}\n            />\n            <div\n                className=\"box-border bg-background-primary p-6 rounded-lg\"\n                style={{\n                    marginTop: \"24px\",\n                }}\n            >\n                <Container\n                    align=\"center\"\n                    className=\"flex flex-col lg:flex-row\"\n                    containerType=\"flex\"\n                    direction=\"column\"\n                    gap=\"sm\"\n                    justify=\"start\"\n                >\n                    <Container.Item className=\"shrink flex flex-col space-y-1\">\n                        <p className=\"text-base font-semibold m-0\">\n                            {__(`Rollback to Previous Version`, 'header-footer-elementor')}\n                        </p>\n                        <p className=\"text-sm font-normal m-0\">\n                            {__('Experiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue.', 'header-footer-elementor')}\n                        </p>\n                    </Container.Item>\n                    <Container.Item\n                        className=\"p-2 flex space-y-4\"\n                        alignSelf=\"auto\"\n                        order=\"none\"\n                    >\n                        <div className=\"bsf-rollback-version\">\n                            <input type=\"hidden\" name=\"product-name\" id=\"bsf-product-name\" value={'header-footer-elementor'} />\n                            <select\n                                id=\"uaeliteVersionRollback\"\n                                ref={liteVersionRef}\n                                onBlur={() => {\n                                    setFreeproductSelect('elementor-header-footer');\n                                }}\n                                onChange={handleLiteVersionChange}\n                                style={{\n                                    padding: '8px',\n                                    marginRight: '10px',\n                                    marginTop: '16px',\n                                    cursor: 'pointer',\n                                    borderRadius: '4px',\n                                    height: '40px',\n                                    width: '100px',\n                                    outline: 'none',       // Removes the default outline\n                                    boxShadow: 'none',\n                                    // marginTop: '16px'     // Removes the default box shadow\n                                }}\n                                onFocus={(e) => e.target.style.borderColor = '#6005FF'} // Apply focus color\n                            >\n                                {previousLiteVersions.map((version) => (\n                                    <option key={version.value} value={version.value}>\n                                        {version.label}\n                                    </option>\n                                ))}\n                            </select>\n                        </div>\n\n                        <div className=\"flex flex-col cursor-pointer\">\n                            <Dialog\n                                design=\"simple\"\n                                exitOnEsc\n                                scrollLock\n                                open={openLitePopup} // Ensure Dialog is controlled by state\n                                setOpen={setOpenLitePopup} // Synchronize state\n                                trigger={<Button style={{ backgroundColor: '#6005ff' }}>{__('Rollback', 'header-footer-elementor')}</Button>}\n                            >\n                                <Dialog.Backdrop />\n                                <Dialog.Panel>\n                                    <Dialog.Header>\n                                        <div className=\"flex items-center justify-between\">\n                                            <Dialog.Title>\n                                                {__('Rollback to Previous Version', 'header-footer-elementor')}\n                                            </Dialog.Title>\n                                            <Dialog.CloseButton />\n                                        </div>\n                                    </Dialog.Header>\n                                    <Dialog.Body>\n                                        {__(`Are you sure you want to rollback to Ultimate Addons for Elementor v${liteVersionSelect}?`, 'header-footer-elementor')}\n                                    </Dialog.Body>\n                                    <Dialog.Footer>\n                                        <Button onClick={onLiteContinueClick}>\n                                            {__('Rollback', 'header-footer-elementor')}\n                                        </Button>\n                                        <Button onClick={onLiteCancelClick}>\n                                            {__('Cancel', 'header-footer-elementor')}\n                                        </Button>\n                                    </Dialog.Footer>\n                                </Dialog.Panel>\n                            </Dialog>\n                        </div>\n                    </Container.Item>\n                </Container>\n\n            </div>\n        </>\n    );\n}\n\nexport default VersionControl;\n","import React, { useState, useEffect, useRef } from 'react';\nimport { Container, Title, Button, Switch, Dialog } from \"@bsf/force-ui\";\nimport { __ } from '@wordpress/i18n';\nimport toast, { Toaster } from 'react-hot-toast';\n\n\nconst UsageTracking = () => {\n    const [isActive, setIsActive] = useState(true);\n    useEffect(() => {\n        setIsActive(hfeSettingsData.analytics_status === 'yes');\n    }, []);\n    const handleSwitchChange = async () => {\n        const newIsActive = !isActive;\n        setIsActive(newIsActive);\n\n        try {\n            const response = await fetch(hfe_admin_data.ajax_url, {\n                method: 'POST',\n                headers: {\n                    'Content-Type': 'application/x-www-form-urlencoded',\n                },\n                body: new URLSearchParams({\n                    action: 'save_analytics_option', // WordPress action for your AJAX handler.\n                    uae_usage_optin: newIsActive ? 'yes' : 'no',\n                    nonce: hfe_admin_data.nonce // Nonce for security.\n                })\n            });\n\n            const result = await response.json();\n\n            if (result.success) {\n                toast.success(__('Settings saved successfully!', 'header-footer-elementor'));\n            } else {\n                toast.error(__('Failed to save settings!', 'header-footer-elementor'));\n            }\n        } catch (error) {\n            toast.error(__('Failed to save settings!', 'header-footer-elementor'));\n        }\n\n        // setIsLoading(false);\n    };\n\n    return (\n        <>\n            <hr className=\"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle\" style={{ marginTop: '20px', marginBottom: '20px', borderColor: '#E5E7EB' }} />\n            <Container\n                align=\"center\"\n                className=\"flex flex-col lg:flex-row\"\n                containerType=\"flex\"\n                direction=\"column\"\n                gap=\"sm\"\n                justify=\"start\"\n            >\n                <Container.Item\n                    className=\"p-2 flex space-y-4\"\n                    alignSelf=\"auto\"\n                    order=\"none\"\n                >\n                    <div className='flex flex-row items-start justify-start px-1 gap-3'>\n                        <Switch\n                            onChange={handleSwitchChange}\n                            size='sm'\n                            value={isActive}\n                            className=\"hfe-remove-ring\"\n                        />\n                        <div className='flex flex-col justify-start px-1 gap-3'>\n                            <span className=\"font-normal text-text-primary m-0\">\n                                {__(\n                                    \"Help shape the future of Ultimate Addons for Elementor. Share how you use the plugin so we can build features that matter, fix issues faster, and make smarter decisions. \",\n                                    \"header-footer-elementor\"\n                                )}\n                                <a\n                                    href=\"https://store.brainstormforce.com/usage-tracking/?utm_source=wp_dashboard&utm_medium=general_settings&utm_campaign=usage_tracking\"\n                                    target=\"_blank\"\n                                    rel=\"noopener noreferrer\"\n                                    className=\"text-link-primary\"\n                                >\n                                    {__(\"Learn More\", \"header-footer-elementor\")}\n                                </a>\n                            </span>\n                        </div>\n                        <Toaster\n                            position=\"top-right\"\n                            reverseOrder={false}\n                            gutter={8}\n                            containerStyle={{\n                                top: 20,\n                                right: 20,\n                                marginTop: '40px',\n                            }}\n                            toastOptions={{\n                                duration: 1000,\n                                style: {\n                                    background: 'white',\n                                },\n                                success: {\n                                    duration: 2000,\n                                    style: {\n                                        color: '',\n                                    },\n                                    iconTheme: {\n                                        primary: '#6005ff',\n                                        secondary: '#fff',\n                                    },\n                                },\n                            }}\n                        />\n                    </div>\n                </Container.Item>\n            </Container>\n        </>\n    );\n}\n\nexport default UsageTracking;\n","import React, { useState } from 'react';\nimport { __ } from '@wordpress/i18n';\nimport { Container, Title, Button } from \"@bsf/force-ui\";\nimport { ArrowUpRight } from \"lucide-react\";\nimport UsageTracking from '@components/Settings/UsageTracking';\n\nconst MyAccount = () => {\n\n    return (\n        <>\n            <Title\n                description=\"\"\n                icon={null}\n                iconPosition=\"right\"\n                size=\"sm\"\n                tag=\"h2\"\n                title={__('My Account', 'header-footer-elementor')}\n            />\n              <div\n                className=\"\"\n                style={{\n                    marginTop: \"24px\",\n                }}\n            >\n            <Container\n                align=\"stretch\"\n                className=\"bg-background-primary p-6 rounded-lg\"\n                containerType=\"flex\"\n                direction=\"column\"\n                gap=\"sm\"\n                justify=\"start\"\n                style={{\n                    marginTop: \"24px\",\n                }}\n            >\n                <Container.Item className=\"flex flex-col space-y-2\"  style={{\n                    marginTop: \"24px\",\n                }}>\n                    <p className='text-base font-semibold m-0'>{__('License Key', 'header-footer-elementor')}</p>\n                    <p className='text-sm font-normal m-0'>{__('You are using the free version of Ultimate Addons for Elementor, no license key is needed. ')}</p>\n                </Container.Item>\n                <div className='flex items-center justify-between px-4 rounded-xl' style={{paddingTop: '6px' , paddingBottom: '6px', backgroundColor: \"#F3F0FF\"}}>\n                    <span className=\"flex flex-col items-left mt-2 text-base font-semibold\">\n                        {__('Build Better Websites With Ultimate Addons Pro', 'header-footer-elementor')}\n                        <p className='text-sm font-normal m-0 py-2' style={{ width: '500px'}}>{__('Unlock advanced addons to power up Elementor - smarter widgets, smoother workflows, and more creative freedom with UAE Pro.', 'header-footer-elementor')}</p>\n                    </span>\n                    <Button\n                            icon={<ArrowUpRight />}\n                            iconPosition=\"right\"\n                            variant=\"link\"\n                            style={{\n                                color: '#6005FF',\n                                borderColor: '#6005FF',\n                                transition: 'color 0.3s ease, border-color 0.3s ease',\n                                fontSize: '16px',\n                            }}\n                            className=\"hfe-remove-ring text-[#6005FF]\"\n                            onClick={() => {\n                                window.open(\"https://ultimateelementor.com/pricing/?utm_source=uae-lite-settings&utm_medium=My-accounts&utm_campaign=uae-lite-upgrade\", '_blank');\n                            }}\n                        >\n                            {__('Upgrade Now', 'header-footer-elementor')}\n                        </Button>\n                </div>\n                <UsageTracking />\n            </Container>\n             </div>\n        </>\n    );\n};\n\nexport default MyAccount;","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"rect\", { width: \"18\", height: \"11\", x: \"3\", y: \"11\", rx: \"2\", ry: \"2\", key: \"1w4ew1\" }],\n  [\"path\", { d: \"M7 11V7a5 5 0 0 1 10 0v4\", key: \"fwvmzm\" }]\n];\nconst Lock = createLucideIcon(\"lock\", __iconNode);\n\nexport { __iconNode, Lock as default };\n//# sourceMappingURL=lock.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"path\", { d: \"M13 5H19V11\", key: \"1n1gyv\" }],\n  [\"path\", { d: \"M19 5L5 19\", key: \"72u4yj\" }]\n];\nconst MoveUpRight = createLucideIcon(\"move-up-right\", __iconNode);\n\nexport { __iconNode, MoveUpRight as default };\n//# sourceMappingURL=move-up-right.js.map\n","import React, { useState } from 'react';\nimport { Container, Title, Button, Switch } from \"@bsf/force-ui\";\nimport { Lock,  MoveUpRight } from \"lucide-react\";\nimport { __ } from '@wordpress/i18n';\n\nconst Branding = () => {\n    const [settings, setSettings] = useState({\n        author: '',\n        author_url: '',\n        plugin_name: '',\n        short_name: '',\n        description: '',\n        hide_branding: false,\n        logo_url: '',\n        internal_help_links: false,\n        replace_logo: false\n    });\n\n    const handleChange = (name, value) => {\n        setSettings(prev => ({ ...prev, [name]: value }));\n    };\n\n    const handleSubmit = (e) => {\n        e.preventDefault();\n    };\n\n    return (\n        <form onSubmit={handleSubmit}>\n            <div className=\"rounded-lg\">\n\n                {/* White Label title OUTSIDE */}\n                <div\n                    className=\"flex flex-row items-center justify-between\"\n                    style={{ paddingBottom: '24px' }}\n                >\n                    <Title\n                        description=\"\"\n                        icon={null}\n                        iconPosition=\"right\"\n                        size=\"sm\"\n                        tag=\"h2\"\n                        title={__('White Label', \"header-footer-elementor\")}\n                    />\n                </div>\n\n                {/* Relative wrapper for overlay */}\n                <div className=\"relative\">\n\n                    {/* Disabled content wrapper (NO visual change) */}\n                    <div style={{ pointerEvents: 'none' }}>\n                        <Container\n                            align=\"stretch\"\n                            className=\"bg-background-primary p-6 rounded-lg\"\n                            containerType=\"flex\"\n                            direction=\"column\"\n                            gap=\"sm\"\n                            justify=\"start\"\n                            style={{ marginTop: \"24px\" }}\n                        >\n                            <div>\n                                <Container\n                                    align=\"stretch\"\n                                    className=\"flex flex-column bg-background-primary\"\n                                    containerType=\"flex\"\n                                    direction=\"column\"\n                                    style={{\n                                        padding: \"24px\",\n                                        borderRadius: \"8px\",\n                                    }}\n                                >\n                                    <Title\n                                        size=\"sm\"\n                                        tag=\"h2\"\n                                        title={__('Plugins Details', \"header-footer-elementor\")}\n                                        description={__('You can change the author name and plugin details that are displayed in the WordPress backend.', \"header-footer-elementor\")}\n                                    />\n\n                                    <div className=\"flex flex-row items-center mt-1 w-full gap-3\">\n                                        <Container.Item className=\"flex flex-col space-y-1 basis-1/2 flex-1\">\n                                            <div className='text-base text-field-label font-semibold m-0 mb-2'>Author</div>\n                                            <input\n                                                name=\"author\"\n                                                type=\"text\"\n                                                value={settings.author}\n                                                className='w-full border border-subtle px-2'\n                                                onChange={(e) => handleChange(e.target.name, e.target.value)}\n                                                placeholder={__('Brainstorm Force', \"header-footer-elementor\")}\n                                                style={{\n                                                    height: '48px',\n                                                    borderColor: '#e0e0e0',\n                                                    outline: 'none',\n                                                    boxShadow: 'none',\n                                                }}\n                                                onFocus={(e) => e.target.style.borderColor = '#6005FF'}\n                                                onBlur={(e) => e.target.style.borderColor = '#e0e0e0'}\n                                            />\n                                        </Container.Item>\n\n                                        <Container.Item className=\"flex flex-col space-y-1 basis-1/2 flex-1\">\n                                            <div className='text-base text-field-label font-semibold m-0 mb-2'>Author URL</div>\n                                            <input\n                                                name=\"author_url\"\n                                                className='w-full border border-subtle px-2'\n                                                type=\"url\"\n                                                value={settings.author_url}\n                                                onChange={(e) => handleChange(e.target.name, e.target.value)}\n                                                placeholder={__('https://www.brainstormforce.com', \"header-footer-elementor\")}\n                                                style={{\n                                                    height: '48px',\n                                                    borderColor: '#e0e0e0',\n                                                    outline: 'none',\n                                                    boxShadow: 'none',\n                                                }}\n                                                onFocus={(e) => e.target.style.borderColor = '#6005FF'}\n                                                onBlur={(e) => e.target.style.borderColor = '#e0e0e0'}\n                                            />\n                                        </Container.Item>\n                                    </div>\n\n                                    <div className=\"flex flex-row items-center mt-1 w-full gap-3\">\n                                        <Container.Item className=\"flex flex-col space-y-1 basis-1/2 flex-1\">\n                                            <div className='text-base text-field-label font-semibold m-0 mb-2'>{__('Plugin Name', \"header-footer-elementor\")}</div>\n                                            <input\n                                                name=\"plugin_name\"\n                                                type=\"text\"\n                                                className='w-full border border-subtle px-2'\n                                                value={settings.plugin_name}\n                                                onChange={(e) => handleChange(e.target.name, e.target.value)}\n                                                placeholder={__('Ultimate Addons', \"header-footer-elementor\")}\n                                                style={{\n                                                    height: '48px',\n                                                    borderColor: '#e0e0e0',\n                                                    outline: 'none',\n                                                    boxShadow: 'none',\n                                                }}\n                                                onFocus={(e) => e.target.style.borderColor = '#6005FF'}\n                                                onBlur={(e) => e.target.style.borderColor = '#e0e0e0'}\n                                            />\n                                        </Container.Item>\n\n                                        <Container.Item className=\"flex flex-col space-y-1 basis-1/2 flex-1\">\n                                            <div className='text-base text-field-label font-semibold m-0 mb-2'>{__('Plugin Short Name', \"header-footer-elementor\")}</div>\n                                            <input\n                                                name=\"short_name\"\n                                                type=\"text\"\n                                                className='w-full border border-subtle px-2'\n                                                value={settings.short_name}\n                                                onChange={(e) => handleChange(e.target.name, e.target.value)}\n                                                placeholder={__('UAE', \"header-footer-elementor\")}\n                                                style={{\n                                                    height: '48px',\n                                                    borderColor: '#e0e0e0',\n                                                    outline: 'none',\n                                                    boxShadow: 'none',\n                                                }}\n                                                onFocus={(e) => e.target.style.borderColor = '#6005FF'}\n                                                onBlur={(e) => e.target.style.borderColor = '#e0e0e0'}\n                                            />\n                                        </Container.Item>\n                                    </div>\n\n                                    <Container.Item className=\"flex flex-col w-full space-y-1 space-x-2\">\n                                        <div className='text-base text-field-label font-semibold m-0'>{__('Plugin Description', \"header-footer-elementor\")}</div>\n                                        <input\n                                            name=\"description\"\n                                            type=\"text\"\n                                            className='w-full border border-subtle'\n                                            value={settings.description}\n                                            onChange={(e) => handleChange(e.target.name, e.target.value)}\n                                            placeholder={__('Ultimate Addons is a premium extension for Elementor...', \"header-footer-elementor\")}\n                                            style={{\n                                                height: '48px',\n                                                borderColor: '#e0e0e0',\n                                                outline: 'none',\n                                                boxShadow: 'none',\n                                                marginTop: '16px'\n                                            }}\n                                            onFocus={(e) => e.target.style.borderColor = '#6005FF'}\n                                            onBlur={(e) => e.target.style.borderColor = '#e0e0e0'}\n                                        />\n                                    </Container.Item>\n\n                                    <div className='border border-subtle' style={{ height: '2px', backgroundColor: '#E5E7EB', marginTop: '6px' }} />\n\n                                    <Container.Item className=\"flex flex-col w-full space-y-1 space-x-2\">\n                                        <div className='flex flex-row items-center justify-between px-1'>\n                                            <Title\n                                                size=\"xs\"\n                                                tag=\"h3\"\n                                                title={__('Replace or Hide Logo', \"header-footer-elementor\")}\n                                                className=\"mt-4\"\n                                                description={__('Enable this option to hide the default logo or replace it with your own logo. (Note: To hide the logo, leave the logo URL field empty.)', \"header-footer-elementor\")}\n                                            />\n                                            <Switch\n                                                onChange={(e) => handleChange('replace_logo', e)}\n                                                size='md'\n                                                value={settings.replace_logo}\n                                                className=\"uael-remove-ring\"\n                                            />\n                                        </div>\n                                    </Container.Item>\n\n                                    {settings.replace_logo && (\n                                        <Container.Item className=\"flex flex-col w-full space-y-1 space-x-2\">\n                                            <div className='text-base text-field-label font-semibold m-0'>\n                                                {__('Enter logo URL to replace', \"header-footer-elementor\")}\n                                            </div>\n                                            <input\n                                                name=\"logo_url\"\n                                                type=\"url\"\n                                                className='w-full border border-subtle'\n                                                value={settings.logo_url}\n                                                onChange={(e) => handleChange(e.target.name, e.target.value)}\n                                                placeholder={__('https://www.example.com/logo.svg', \"header-footer-elementor\")}\n                                                style={{\n                                                    height: '48px',\n                                                    borderColor: '#e0e0e0',\n                                                    outline: 'none',\n                                                    boxShadow: 'none',\n                                                    marginTop: '16px'\n                                                }}\n                                                onFocus={(e) => e.target.style.borderColor = '#6005FF'}\n                                                onBlur={(e) => e.target.style.borderColor = '#e0e0e0'}\n                                            />\n                                        </Container.Item>\n                                    )}\n\n                                    <Container.Item className=\"flex flex-col w-full space-y-1 space-x-2\">\n                                        <div className='flex flex-row items-center justify-between px-1'>\n                                            <Title\n                                                size=\"xs\"\n                                                tag=\"h3\"\n                                                title={__('Hide White Label Settings', \"header-footer-elementor\")}\n                                                className=\"mt-4\"\n                                                description={__('Enabling this option will hide the White Label settings. To access it again, re-activate the plugin.', \"header-footer-elementor\")}\n                                            />\n                                            <Switch\n                                                onChange={(e) => handleChange('hide_branding', e)}\n                                                size='md'\n                                                value={settings.hide_branding}\n                                            />\n                                        </div>\n                                    </Container.Item>\n\n                                    <div className='border border-subtle' style={{ height: '2px', backgroundColor: '#E5E7EB', marginTop: '6px' }} />\n\n                                    <Container.Item className=\"flex flex-col w-full space-y-1 space-x-2\">\n                                        <Title size=\"sm\" tag=\"h2\" title={__('Elementor Editor Area', \"header-footer-elementor\")} className=\"mt-1\" />\n                                        <div className='flex flex-row items-center justify-between px-1'>\n                                            <Title\n                                                size=\"xs\"\n                                                tag=\"h3\"\n                                                title={__('Show Help Links', \"header-footer-elementor\")}\n                                                className=\"mt-4\"\n                                                description={__('Display internal help links in widget editor area.', \"header-footer-elementor\")}\n                                            />\n                                            <Switch\n                                                onChange={(e) => handleChange('internal_help_links', e)}\n                                                size='md'\n                                                value={settings.internal_help_links}\n                                            />\n                                        </div>\n                                    </Container.Item>\n\n                                </Container>\n                            </div>\n                        </Container>\n                    </div>\n\n                    {/* Popup overlay */}\n                    <div\n                        className=\"absolute inset-0 z-20 flex items-center justify-center\"\n                        style={{ backgroundColor: 'rgba(255,255,255,0.6)' }}\n                    >\n                        <div\n                            className=\"bg-white rounded-xl text-center\"\n                            style={{ width: 320, padding: '32px 28px', boxShadow: '-6px -6px 16px rgba(0,0,0,0.12), 12px 12px 30px rgba(0,0,0,0.18)', }}\n                        >\n\n                            <Lock size={32} className=\"text-gray-600\" />\n                            <h2 className=\"text-lg font-semibold mb-2\">\n                                {__('White Label Available in UAE Pro', \"header-footer-elementor\")}\n                            </h2>\n\n                            <p className=\"text-sm text-[#475569] mb-6\">\n                                {__('Remove UAE branding and customize the dashboard with your agency details.', \"header-footer-elementor\")}\n                            </p>\n\n                            <Button\n                                variant=\"primary\"\n                                className='rounded-md'\n                                style={{\n                                    backgroundColor: \"#6005FF\",\n                                    padding: '10px 22px',\n                                }}\n                                onClick={() =>\n                                    window.open(\n                                        'https://ultimateelementor.com/pricing/?utm_source=whitelabel&utm_medium=uaesettings',\n                                        '_blank'\n                                    )\n                                }\n                            >   \n                               <span className='px-1'>{__('Upgrade Now', \"header-footer-elementor\")}</span>\n                                <MoveUpRight  style={{\n                                    width: \"15px\",\n                                    height: '15px',\n                                    marginBottom: '-2px',\n                                    marginLeft: '2px',\n                                }}/>\n                            </Button>\n                        </div>\n                    </div>\n\n                </div>\n            </div>\n        </form>\n    );\n};\n\nexport default Branding;\n","import React, { useState, useEffect } from \"react\";\nimport { Container } from \"@bsf/force-ui\";\nimport Sidebar from \"./Sidebar\";\nimport Content from \"./Content\";\nimport NavMenu from \"@components/NavMenu\";\nimport ThemeSupport from \"./ThemeSupport\";\nimport VersionControl from \"./VersionControl\";\nimport MyAccount from \"@components/Dashboard/MyAccount\";\nimport Branding from './Branding';\nimport { __ } from \"@wordpress/i18n\";\n\nconst Settings = () => {\n    const items = [\n        {\n            id: 1,\n            icon: (\n                <img\n                    src={`${hfeSettingsData.user_url}`}\n                    alt={__(\"Custom SVG\", \"header-footer-elementor\")}\n                    className=\"object-contain\"\n                />\n            ),\n            selected: (\n                <img\n                    src={`${hfeSettingsData.user__selected_url}`}\n                    alt={__(\"Custom SVG\", \"header-footer-elementor\")}\n                    className=\"object-contain\"\n                />\n            ),\n            title: __(\"My Account\", \"header-footer-elementor\"),\n            content: <MyAccount />,\n        },\n        {\n            id: 2,\n            icon: (\n                <img\n                    src={`${hfeSettingsData.theme_url}`}\n                    alt={__(\"Custom SVG\", \"header-footer-elementor\")}\n                    className=\"object-contain\"\n                />\n            ),\n            selected: (\n                <img\n                    src={`${hfeSettingsData.theme_url_selected}`}\n                    alt={__(\"Custom SVG\", \"header-footer-elementor\")}\n                    className=\"object-contain\"\n                />\n            ),\n            main: __(\"Editor\", \"header-footer-elementor\"),\n            title: __(\"Theme Support\", \"header-footer-elementor\"),\n            content: <ThemeSupport />,\n        },\n        {\n            id: 3,\n            icon: (\n                <img\n                    src={`${hfeSettingsData.version_url}`}\n                    alt={__(\"Custom SVG\", \"header-footer-elementor\")}\n                    className=\"object-contain\"\n                />\n            ),\n            selected: (\n                <img\n                    src={`${hfeSettingsData.version__selected_url}`}\n                    alt={__(\"Custom SVG\", \"header-footer-elementor\")}\n                    className=\"object-contain\"\n                />\n            ),\n            main: __(\"Utilities\", \"header-footer-elementor\"),\n            title: __(\"Version Control\", \"header-footer-elementor\"),\n            content: <VersionControl />,\n        },\n         {\n            id: 4,\n            icon: (\n                <img\n                    src={`${hfeSettingsData.branding_url}`}\n                    alt=\"Custom SVG\"\n                    className=\"object-contain\"\n\n                />\n            ),\n            selected: (\n                <img\n                    src={`${hfeSettingsData.branding__selected_url}`}\n                    alt=\"Custom SVG\"\n                    className=\"object-contain\"\n                />\n            ),\n            main: '',\n            title: __('Branding', 'header-footer-elementor'),\n            content: <Branding />\n        },\n    ].filter((item) => {\n        if (\"no\" === hfeSettingsData.show_theme_support && item.id === 2) {\n            return false;\n        }\n\n        return true;\n    });\n\n    // Default state: Set 'My Account' (first item) as the default when the settings tab is clicked\n    const [selectedItem, setSelectedItem] = useState(() => {\n        const savedItemId = localStorage.getItem(\"hfeSelectedItemId\");\n        const savedItem = items.find((item) => item.id === Number(savedItemId));\n        return savedItem || items[0]; // Default to the first item if no saved item is found\n    });\n\n    useEffect(() => {\n        // Store selectedItemId in localStorage (or other persistent storage) to retain selection\n        localStorage.setItem(\"hfeSelectedItemId\", selectedItem.id.toString());\n    }, [selectedItem]);\n\n    useEffect(() => {\n        const params = new URLSearchParams(window.location.search);\n        const tab = params.get(\"tab\");\n        if (tab) {\n            const itemId = Number(tab);\n            const item = items.find((item) => item.id === itemId);\n            if (item) {\n                setSelectedItem(item);\n            }\n        }\n    }, []);\n\n    const handleSelectItem = (item) => {\n        setSelectedItem(item);\n    };\n\n    const handleSettingsTabClick = () => {\n        setSelectedItem(items[0]); // Set \"My Account\" as the default item when settings tab is clicked\n    };\n\n    return (\n        <>\n            <NavMenu onSettingsTabClick={handleSettingsTabClick} />\n            <div className=\"\">\n                <Container\n                    align=\"stretch\"\n                    className=\"p-1 flex-col lg:flex-row hfe-settings-page\"\n                    containerType=\"flex\"\n                    direction=\"row\"\n                    gap=\"sm\"\n                    justify=\"start\"\n                    style={{ height: \"100%\" }}\n                >\n                    <Container.Item\n                        className=\"p-2 hfe-sticky-outer-wrapper\"\n                        alignSelf=\"auto\"\n                        order=\"none\"\n                        shrink={1}\n                        style={{ backgroundColor: \"#ffffff\" }}\n                    >\n                        <div className=\"hfe-sticky-sidebar\">\n                            <Sidebar\n                                items={items}\n                                onSelectItem={handleSelectItem}\n                                selectedItemId={selectedItem.id}\n                            />\n                        </div>\n                    </Container.Item>\n                    <Container.Item\n                        className=\"p-2 flex w-full justify-center items-start hfe-hide-scrollbar\"\n                        alignSelf=\"auto\"\n                        order=\"none\"\n                        shrink={1}\n                        style={{\n                            height: \"calc(100vh - 1px)\",\n                            overflowY: \"auto\",\n                        }}\n                    >\n                        <div className=\"hfe-78-width\">\n                            <Content selectedItem={selectedItem} />\n                        </div>\n                    </Container.Item>\n                </Container>\n            </div>\n        </>\n    );\n};\n\nexport default Settings;\n","let c = 1;\nclass a {\n  #t;\n  #s;\n  constructor() {\n    this.#t = [], this.#s = [];\n  }\n  // Subscriber pattern.\n  subscribe(t) {\n    return this.#s.push(t), () => {\n      this.#s = this.#s.filter(\n        (s) => s !== t\n      );\n    };\n  }\n  // Publish a new toast.\n  publish(t) {\n    this.#s.forEach((s) => s(t));\n  }\n  // Add a new toast.\n  add(t) {\n    this.#t.push(t), this.publish(t);\n  }\n  // Remove a toast.\n  remove(t) {\n    return this.#t = this.#t.filter((s) => s.id !== t), t;\n  }\n  // Create a new toast.\n  create(t) {\n    const {\n      id: s = void 0,\n      message: e = \"\",\n      jsx: r = void 0,\n      ...n\n    } = t;\n    if (!e && typeof r != \"function\")\n      return;\n    const o = typeof s == \"number\" ? s : c++;\n    return this.#t.find((u) => u.id === o) && (this.#t = this.#t.map((u) => u.id === o ? (this.publish({\n      ...u,\n      title: e,\n      jsx: r,\n      ...n\n    }), { ...u, title: e, jsx: r, ...n }) : u)), this.add({ id: o, title: e, jsx: r, ...n }), o;\n  }\n  // Update a toast.\n  update(t, s) {\n    const { render: e = void 0 } = s;\n    let r = s;\n    switch (typeof e) {\n      case \"function\":\n        r = {\n          jsx: e,\n          ...s\n        };\n        break;\n      case \"string\":\n        r = {\n          title: e,\n          ...s\n        };\n        break;\n    }\n    this.#t = this.#t.map((n) => n.id === t ? (this.publish({ ...n, ...r }), { ...n, ...r }) : n);\n  }\n  // Dismiss toast.\n  dismiss(t) {\n    return t || this.#t.forEach(\n      (s) => this.#s.forEach(\n        (e) => e({ id: s.id, dismiss: !0 })\n      )\n    ), this.#s.forEach(\n      (s) => s({ id: t, dismiss: !0 })\n    ), t;\n  }\n  // History of toasts.\n  history() {\n    return this.#t;\n  }\n  // Types of toasts.\n  // Default toast.\n  default(t = \"\", s = {}) {\n    return this.create({ message: t, type: \"neutral\", ...s });\n  }\n  // Success toast.\n  success(t = \"\", s = {}) {\n    return this.create({ message: t, type: \"success\", ...s });\n  }\n  // Error toast.\n  error(t = \"\", s = {}) {\n    return this.create({ message: t, type: \"error\", ...s });\n  }\n  // Warning toast.\n  warning(t = \"\", s = {}) {\n    return this.create({ message: t, type: \"warning\", ...s });\n  }\n  // Info toast\n  info(t = \"\", s = {}) {\n    return this.create({ message: t, type: \"info\", ...s });\n  }\n  // Custom toast.\n  custom(t, s = {}) {\n    return this.create({\n      jsx: t,\n      type: \"custom\",\n      ...s\n    });\n  }\n}\nconst i = new a(), d = (h, t) => i.default(h, t), p = Object.seal(\n  Object.assign(\n    d,\n    {\n      success: i.success.bind(i),\n      error: i.error.bind(i),\n      warning: i.warning.bind(i),\n      info: i.info.bind(i),\n      custom: i.custom.bind(i),\n      dismiss: i.dismiss.bind(i),\n      update: i.update.bind(i)\n    },\n    {\n      getHistory: i.history.bind(i)\n    }\n  )\n);\nexport {\n  i as ToastState,\n  p as toast\n};\n//# sourceMappingURL=controller.es.js.map\n","const r = {\n  \"top-left\": \"top-0 bottom-0 left-0 justify-start items-start\",\n  \"top-right\": \"top-0 bottom-0 right-0 justify-start items-end\",\n  \"bottom-left\": \"top-0 bottom-0 left-0 justify-end items-start\",\n  \"bottom-right\": \"top-0 bottom-0 right-0 justify-end items-end\"\n}, t = {\n  stack: \"w-[22.5rem]\",\n  inline: \"lg:w-[47.5rem] w-full\"\n}, e = {\n  light: {\n    neutral: \"border-alert-border-neutral bg-alert-background-neutral\",\n    custom: \"border-alert-border-neutral bg-alert-background-neutral\",\n    info: \"border-alert-border-info bg-alert-background-info\",\n    success: \"border-alert-border-green bg-alert-background-green\",\n    warning: \"border-alert-border-warning bg-alert-background-warning\",\n    error: \"border-alert-border-danger bg-alert-background-danger\"\n  },\n  dark: \"bg-background-inverse border-background-inverse\"\n}, o = {\n  light: \"text-icon-secondary\",\n  dark: \"text-icon-inverse\"\n};\nexport {\n  o as closeIconClassNames,\n  t as containerVariantClassNames,\n  r as positionClassNames,\n  e as variantClassNames\n};\n//# sourceMappingURL=component-style.es.js.map\n","import { jsx as r } from \"react/jsx-runtime\";\nimport { memo as i } from \"react\";\nlet e = !1;\nconst u = (t) => i((n) => {\n  const o = n.singleTon;\n  return e && o ? null : (e = !0, /* @__PURE__ */ r(t, { ...n }));\n});\nexport {\n  u as default\n};\n//# sourceMappingURL=withSingleton.es.js.map\n","import { jsx as r, jsxs as g, Fragment as L } from \"react/jsx-runtime\";\nimport { useState as M, useEffect as N, useRef as k } from \"react\";\nimport { X as j } from \"lucide-react\";\nimport { ToastState as F } from \"./controller.es.js\";\nimport { cn as u } from \"../../utilities/functions.es.js\";\nimport { getIcon as T, getTitle as S, getContent as w, getAction as P } from \"./utils.es.js\";\nimport { positionClassNames as z, containerVariantClassNames as D, variantClassNames as h, closeIconClassNames as m } from \"./component-style.es.js\";\nimport { flushSync as R } from \"react-dom\";\nimport { AnimatePresence as V, motion as X } from \"framer-motion\";\nimport $ from \"../../hoc/withSingleton.es.js\";\nconst q = ({\n  position: n = \"top-right\",\n  // top-right/top-left/bottom-right/bottom-left\n  design: d = \"stack\",\n  // stack/inline\n  theme: f = \"light\",\n  // light/dark\n  className: y = \"\",\n  autoDismiss: l = !0,\n  // Auto dismiss the toast after a certain time.\n  dismissAfter: e = 5e3\n  // Time in milliseconds after which the toast will be dismissed.\n}) => {\n  const [p, o] = M([]);\n  N(() => {\n    F.subscribe((i) => {\n      if (i?.dismiss) {\n        o(\n          (s) => s.map(\n            (t) => t.id === i.id ? { ...t, dismiss: !0 } : t\n          )\n        );\n        return;\n      }\n      setTimeout(() => {\n        R(\n          () => o((s) => s.findIndex(\n            (c) => c.id === i.id\n          ) !== -1 ? s.map((c) => c.id === i.id ? { ...c, ...i } : c) : [...s, i])\n        );\n      });\n    });\n  }, []);\n  const a = (i) => {\n    o((s) => s.filter((t) => t.id !== i));\n  };\n  return /* @__PURE__ */ r(\n    \"ul\",\n    {\n      className: u(\n        \"fixed flex flex-col list-none z-20 p-10 pointer-events-none [&>li]:pointer-events-auto gap-3\",\n        z[n] ?? z[\"top-right\"],\n        y\n      ),\n      children: /* @__PURE__ */ r(V, { initial: !1, children: p.map((i) => /* @__PURE__ */ r(\n        X.li,\n        {\n          initial: { opacity: 0, y: 50, scale: 0.7 },\n          animate: { opacity: 1, y: 0, scale: 1 },\n          exit: {\n            opacity: 0,\n            scale: 0.6,\n            transition: { duration: 0.15 }\n          },\n          layoutId: `toast-${i.id}`,\n          children: /* @__PURE__ */ r(\n            B,\n            {\n              toastItem: i,\n              title: i.title,\n              content: i?.description,\n              icon: i?.icon ?? void 0,\n              design: i?.design ?? d,\n              autoDismiss: i?.autoDismiss ?? l,\n              dismissAfter: i?.dismissAfter ?? e,\n              removeToast: a,\n              variant: i.type,\n              theme: i?.theme ?? f\n            }\n          )\n        },\n        i.id\n      )) })\n    }\n  );\n}, B = ({\n  toastItem: n,\n  title: d = \"\",\n  content: f = \"\",\n  autoDismiss: y = !0,\n  dismissAfter: l = 5e3,\n  theme: e = \"light\",\n  // light/dark\n  design: p = \"stack\",\n  // inline/stack\n  icon: o,\n  variant: a = \"neutral\",\n  // neutral/info/success/warning/danger\n  removeToast: i\n  // Function to remove the toast.\n}) => {\n  const s = k(0), t = k(0), c = k(), C = (x, A = l) => {\n    if (!(!y || l < 0))\n      return s.current = (/* @__PURE__ */ new Date()).getTime(), setTimeout(() => {\n        typeof i == \"function\" && i(x.id);\n      }, A);\n  }, E = () => {\n    clearTimeout(c.current), t.current = (/* @__PURE__ */ new Date()).getTime();\n  }, _ = () => {\n    c.current = C(\n      n,\n      l - (t.current - s.current)\n    );\n  };\n  N(() => {\n    const x = l;\n    return c.current = C(n, x), () => {\n      clearTimeout(c.current);\n    };\n  }, []), N(() => {\n    !n?.dismiss || typeof i != \"function\" || i(n.id);\n  }, [n]);\n  const v = () => {\n    typeof i == \"function\" && n?.action?.onClick?.(() => i(n.id));\n  };\n  let b = null;\n  return p === \"stack\" && (b = /* @__PURE__ */ r(\n    \"div\",\n    {\n      className: u(\n        \"flex items-center justify-start p-4 gap-2 relative border border-solid rounded-md shadow-lg\",\n        e === \"dark\" ? h.dark : h.light?.[a],\n        D.stack\n      ),\n      onMouseEnter: E,\n      onMouseLeave: _,\n      children: n.type !== \"custom\" ? /* @__PURE__ */ g(L, { children: [\n        /* @__PURE__ */ r(\"div\", { className: \"self-start flex items-center justify-center [&_svg]:size-5 shrink-0\", children: T({ variant: a, icon: o, theme: e }) }),\n        /* @__PURE__ */ g(\"div\", { className: \"flex flex-col items-start justify-start gap-0.5 mr-6\", children: [\n          S({ title: d, theme: e }),\n          w({ content: f, theme: e }),\n          n?.action?.label && typeof n?.action?.onClick == \"function\" && /* eslint-disable */\n          /* @__PURE__ */ r(\"div\", { className: \"mt-2.5\", children: P({\n            actionLabel: n?.action?.label,\n            actionType: n?.action?.type ?? \"button\",\n            onAction: v,\n            theme: e\n          }) })\n        ] }),\n        /* @__PURE__ */ r(\"div\", { className: \"absolute right-4 top-4 [&_svg]:size-5\", children: /* @__PURE__ */ r(\n          \"button\",\n          {\n            className: u(\n              \"bg-transparent m-0 p-0 border-none focus:outline-none active:outline-none cursor-pointer\",\n              m[e] ?? m.light\n            ),\n            onClick: () => {\n              typeof i == \"function\" && i(n.id);\n            },\n            children: /* @__PURE__ */ r(j, {})\n          }\n        ) })\n      ] }) : n?.jsx?.({\n        close: () => i(n.id),\n        action: n?.action ? { ...n?.action, onClick: v } : null\n      })\n    }\n  )), p === \"inline\" && (b = /* @__PURE__ */ g(\n    \"div\",\n    {\n      className: u(\n        \"flex items-center justify-start p-3 gap-2 relative border border-solid rounded-md shadow-lg\",\n        e === \"dark\" ? h.dark : h.light?.[a],\n        D.inline\n      ),\n      children: [\n        /* @__PURE__ */ r(\"div\", { className: \"self-start flex items-center justify-center [&_svg]:size-5 shrink-0\", children: T({ variant: a, icon: o, theme: e }) }),\n        /* @__PURE__ */ g(\"div\", { className: \"flex items-start justify-start gap-1 mr-10 [&>span:first-child]:shrink-0\", children: [\n          S({ title: d, theme: e }),\n          w({ content: f, theme: e })\n        ] }),\n        /* @__PURE__ */ r(\"div\", { className: \"absolute right-3 top-3 [&_svg]:size-5\", children: /* @__PURE__ */ r(\n          \"button\",\n          {\n            className: u(\n              \"bg-transparent m-0 p-0 border-none focus:outline-none active:outline-none cursor-pointer\",\n              m[e] ?? m.light\n            ),\n            onClick: () => i(n.id),\n            children: /* @__PURE__ */ r(j, {})\n          }\n        ) })\n      ]\n    }\n  )), b;\n}, I = $(q);\nexport {\n  B as Toast,\n  q as Toaster,\n  I as default\n};\n//# sourceMappingURL=toaster.es.js.map\n","import { useState, useEffect, useMemo, useCallback } from 'react';\nimport apiFetch from '@wordpress/api-fetch';\nimport { toast } from '@bsf/force-ui';\nimport { __ } from '@wordpress/i18n';\n\n/**\n * Custom hook for managing Learn chapters and steps\n *\n * @param {Object} config - Configuration object\n * @param {Array} config.initialChapters - Array of chapter objects with steps\n * @param {string} config.saveEndpoint - API endpoint to save progress (optional)\n * @returns {Object} - Object containing chapters state and utility functions\n */\nconst useBsfLearn = ( {\n\tinitialChapters = [],\n\tsaveEndpoint = null,\n} = {} ) => {\n\tconst [ chapters, setChapters ] = useState( initialChapters );\n\tconst [ learnHowDialogOpen, setLearnHowDialogOpen ] = useState( false );\n\tconst [ currentLearnHowItem, setCurrentLearnHowItem ] = useState( null );\n\n\t// Update chapters when initialChapters changes (e.g., when API data loads)\n\tuseEffect( () => {\n\t\tif ( initialChapters.length > 0 ) {\n\t\t\tsetChapters( initialChapters );\n\t\t}\n\t}, [ initialChapters ] );\n\n\t/**\n\t * Update completion status of a specific step\n\t *\n\t * @param {string} chapterId - ID of the chapter containing the step\n\t * @param {string} stepId - ID of the step to update\n\t * @param {boolean} completed - New completion status\n\t */\n\tconst updateStepCompletion = useCallback(\n\t\t( chapterId, stepId, completed ) => {\n\t\t\t// Optimistically update UI\n\t\t\tsetChapters( ( prevChapters ) =>\n\t\t\t\tprevChapters.map( ( chapter ) =>\n\t\t\t\t\tchapter.id === chapterId\n\t\t\t\t\t\t? {\n\t\t\t\t\t\t\t\t...chapter,\n\t\t\t\t\t\t\t\tsteps: chapter.steps.map( ( step ) =>\n\t\t\t\t\t\t\t\t\tstep.id === stepId ? { ...step, completed } : step\n\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t  }\n\t\t\t\t\t\t: chapter\n\t\t\t\t)\n\t\t\t);\n\n\t\t\t// Save to API if endpoint is provided\n\t\t\tif ( saveEndpoint ) {\n\t\t\t\tapiFetch( {\n\t\t\t\t\tpath: saveEndpoint,\n\t\t\t\t\tmethod: 'POST',\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tchapterId,\n\t\t\t\t\t\tstepId,\n\t\t\t\t\t\tcompleted,\n\t\t\t\t\t},\n\t\t\t\t} ).catch( ( error ) => {\n\t\t\t\t\t// Revert UI state on error\n\t\t\t\t\tsetChapters( ( prevChapters ) =>\n\t\t\t\t\t\tprevChapters.map( ( chapter ) =>\n\t\t\t\t\t\t\tchapter.id === chapterId\n\t\t\t\t\t\t\t\t? {\n\t\t\t\t\t\t\t\t\t\t...chapter,\n\t\t\t\t\t\t\t\t\t\tsteps: chapter.steps.map( ( step ) =>\n\t\t\t\t\t\t\t\t\t\t\tstep.id === stepId ? { ...step, completed: ! completed } : step\n\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t  }\n\t\t\t\t\t\t\t\t: chapter\n\t\t\t\t\t\t)\n\t\t\t\t\t);\n\n\t\t\t\t\t// Show error toast\n\t\t\t\t\ttoast.error( __( 'Failed to save progress. Please try again.', 'astra' ) );\n\n\t\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\t\tconsole.error( 'Failed to save progress:', error );\n\t\t\t\t} );\n\t\t\t}\n\t\t},\n\t\t[ saveEndpoint ]\n\t);\n\n\t/**\n\t * Mark a step as completed\n\t *\n\t * @param {string} chapterId - ID of the chapter containing the step\n\t * @param {string} stepId - ID of the step to mark as completed\n\t */\n\tconst markStepCompleted = useCallback(\n\t\t( chapterId, stepId ) => {\n\t\t\tupdateStepCompletion( chapterId, stepId, true );\n\t\t},\n\t\t[ updateStepCompletion ]\n\t);\n\n\t/**\n\t * Mark a step as incomplete\n\t *\n\t * @param {string} chapterId - ID of the chapter containing the step\n\t * @param {string} stepId - ID of the step to mark as incomplete\n\t */\n\tconst markStepIncomplete = useCallback(\n\t\t( chapterId, stepId ) => {\n\t\t\tupdateStepCompletion( chapterId, stepId, false );\n\t\t},\n\t\t[ updateStepCompletion ]\n\t);\n\n\t/**\n\t * Reset all progress\n\t */\n\tconst resetProgress = useCallback( () => {\n\t\tsetChapters( ( prevChapters ) =>\n\t\t\tprevChapters.map( ( chapter ) => ( {\n\t\t\t\t...chapter,\n\t\t\t\tsteps: chapter.steps.map( ( step ) => ( { ...step, completed: false } ) ),\n\t\t\t} ) )\n\t\t);\n\t}, [] );\n\n\t/**\n\t * Get the first incomplete chapter ID\n\t * Used for default accordion open state\n\t */\n\tconst firstIncompleteChapterId = useMemo( () => {\n\t\tconst incompleteChapter = chapters.find(\n\t\t\t( chapter ) =>\n\t\t\t\tchapter.steps.length !==\n\t\t\t\tchapter.steps.filter( ( step ) => step.completed ).length\n\t\t);\n\t\treturn incompleteChapter?.id;\n\t}, [ chapters ] );\n\n\t/**\n\t * Get overall progress statistics\n\t */\n\tconst progressStats = useMemo( () => {\n\t\tconst totalSteps = chapters.reduce( ( sum, chapter ) => sum + chapter.steps.length, 0 );\n\t\tconst completedSteps = chapters.reduce(\n\t\t\t( sum, chapter ) =>\n\t\t\t\tsum + chapter.steps.filter( ( step ) => step.completed ).length,\n\t\t\t0\n\t\t);\n\t\tconst completionPercentage =\n\t\t\ttotalSteps > 0 ? Math.round( ( completedSteps / totalSteps ) * 100 ) : 0;\n\n\t\treturn {\n\t\t\ttotalChapters: chapters.length,\n\t\t\ttotalSteps,\n\t\t\tcompletedSteps,\n\t\t\tcompletionPercentage,\n\t\t\tisFullyCompleted: totalSteps > 0 && completedSteps === totalSteps,\n\t\t};\n\t}, [ chapters ] );\n\n\t/**\n\t * Get chapter-specific statistics\n\t *\n\t * @param {string} chapterId - ID of the chapter\n\t * @returns {Object} - Chapter statistics\n\t */\n\tconst getChapterStats = useCallback(\n\t\t( chapterId ) => {\n\t\t\tconst chapter = chapters.find( ( c ) => c.id === chapterId );\n\t\t\tif ( ! chapter ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tconst totalSteps = chapter.steps.length;\n\t\t\tconst completedSteps = chapter.steps.filter( ( step ) => step.completed ).length;\n\n\t\t\treturn {\n\t\t\t\ttotalSteps,\n\t\t\t\tcompletedSteps,\n\t\t\t\tisCompleted: totalSteps > 0 && completedSteps === totalSteps,\n\t\t\t\tcompletionPercentage:\n\t\t\t\t\ttotalSteps > 0 ? Math.round( ( completedSteps / totalSteps ) * 100 ) : 0,\n\t\t\t};\n\t\t},\n\t\t[ chapters ]\n\t);\n\n\t/**\n\t * Open the learn how dialog with specific content\n\t *\n\t * @param {Object} item - Learn content item to display\n\t */\n\tconst openLearnHowDialog = useCallback( ( item ) => {\n\t\tsetCurrentLearnHowItem( item );\n\t\tsetLearnHowDialogOpen( true );\n\t}, [] );\n\n\t/**\n\t * Close the learn how dialog\n\t */\n\tconst closeLearnHowDialog = useCallback( () => {\n\t\tsetLearnHowDialogOpen( false );\n\t\tsetCurrentLearnHowItem( null );\n\t}, [] );\n\n\treturn {\n\t\tchapters,\n\t\tupdateStepCompletion,\n\t\tmarkStepCompleted,\n\t\tmarkStepIncomplete,\n\t\tresetProgress,\n\t\tfirstIncompleteChapterId,\n\t\tprogressStats,\n\t\tgetChapterStats,\n\t\tlearnHowDialogOpen,\n\t\tcurrentLearnHowItem,\n\t\topenLearnHowDialog,\n\t\tcloseLearnHowDialog,\n\t\tsetLearnHowDialogOpen,\n\t};\n};\n\nexport default useBsfLearn;\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst Minus = createLucideIcon(\"Minus\", [[\"path\", { d: \"M5 12h14\", key: \"1ays0h\" }]]);\n\nexport { Minus as default };\n//# sourceMappingURL=minus.js.map\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst Plus = createLucideIcon(\"Plus\", [\n  [\"path\", { d: \"M5 12h14\", key: \"1ays0h\" }],\n  [\"path\", { d: \"M12 5v14\", key: \"s699le\" }]\n]);\n\nexport { Plus as default };\n//# sourceMappingURL=plus.js.map\n","import { jsx as r, jsxs as N } from \"react/jsx-runtime\";\nimport p, { useState as A } from \"react\";\nimport { ChevronDown as v, Minus as w, Plus as I } from \"lucide-react\";\nimport { AnimatePresence as T, motion as b } from \"framer-motion\";\nimport { cn as m } from \"../../utilities/functions.es.js\";\nconst y = ({\n  type: o = \"simple\",\n  defaultValue: t = [],\n  autoClose: n = !1,\n  disabled: i = !1,\n  children: s,\n  className: l\n}) => {\n  const [c, d] = A(\n    Array.isArray(t) ? t : [t]\n  ), f = (e) => {\n    d((a) => n ? a.includes(e) ? [] : [e] : a.includes(e) ? a.filter((u) => u !== e) : [...a, e]);\n  };\n  return /* @__PURE__ */ r(\"div\", { className: m(o === \"boxed\" ? \"space-y-3\" : \"\", l), children: p.Children.map(s, (e) => {\n    if (p.isValidElement(e) && \"value\" in e.props) {\n      const a = e.props.collapsible !== !1, u = a ? c.includes(e.props.value) : !0;\n      return p.cloneElement(\n        e,\n        {\n          isOpen: u,\n          onToggle: a ? () => f(e.props.value) : void 0,\n          type: o,\n          disabled: i || e.props.disabled\n        }\n      );\n    }\n    return e;\n  }) });\n};\ny.displayName = \"Accordion\";\nconst g = ({\n  isOpen: o,\n  onToggle: t,\n  type: n = \"simple\",\n  disabled: i = !1,\n  children: s,\n  className: l\n}) => {\n  const c = {\n    simple: \"border-0\",\n    separator: \"border-0 border-b border-solid border-border-subtle\",\n    boxed: \"border border-solid border-border-subtle rounded-md\"\n  }[n];\n  return /* @__PURE__ */ r(\"div\", { className: m(c, l), children: p.Children.map(\n    s,\n    (d) => p.isValidElement(d) ? p.cloneElement(d, {\n      isOpen: o,\n      onToggle: t,\n      type: n,\n      disabled: i\n    }) : d\n  ) });\n};\ng.displayName = \"Accordion.Item\";\nconst h = ({\n  onToggle: o,\n  isOpen: t,\n  iconType: n = \"arrow\",\n  collapsible: i = !0,\n  disabled: s = !1,\n  tag: l = \"h3\",\n  type: c = \"simple\",\n  children: d,\n  className: f,\n  ...x\n}) => {\n  const e = {\n    simple: \"px-2 py-3\",\n    separator: \"px-2 py-4\",\n    boxed: \"px-3 py-4\"\n  }[c], a = () => i ? n === \"arrow\" ? /* @__PURE__ */ r(\n    v,\n    {\n      className: m(\n        \"flex-shrink-0 text-icon-secondary size-5 transition-transform duration-300 ease-in-out\",\n        t ? \"rotate-180\" : \"rotate-0\"\n      )\n    }\n  ) : n === \"plus-minus\" ? /* @__PURE__ */ r(\n    b.span,\n    {\n      initial: { opacity: 0, rotate: t ? -180 : 0 },\n      animate: { opacity: 1, rotate: t ? 0 : 180 },\n      exit: { opacity: 0 },\n      transition: { duration: 0.3, ease: \"easeInOut\" },\n      className: \"flex items-center flex-shrink-0 text-icon-secondary\",\n      children: t ? /* @__PURE__ */ r(w, {}) : /* @__PURE__ */ r(I, {})\n    },\n    t ? \"minus\" : \"plus\"\n  ) : null : null;\n  return /* @__PURE__ */ r(l, { className: \"flex m-0 hover:bg-background-secondary transition duration-150 ease-in-out\", children: /* @__PURE__ */ N(\n    \"button\",\n    {\n      className: m(\n        \"flex w-full items-center justify-between text-sm font-medium transition-all appearance-none bg-transparent border-0 cursor-pointer gap-3\",\n        e,\n        s && \"cursor-not-allowed opacity-40\",\n        f\n      ),\n      onClick: !s && i ? o : void 0,\n      \"aria-expanded\": t,\n      disabled: s,\n      ...x,\n      children: [\n        /* @__PURE__ */ r(\"div\", { className: \"flex items-center gap-2 text-text-primary font-semibold text-left\", children: d }),\n        a()\n      ]\n    }\n  ) });\n};\nh.displayName = \"Accordion.Trigger\";\nconst C = ({\n  isOpen: o,\n  disabled: t = !1,\n  type: n = \"simple\",\n  children: i,\n  className: s\n}) => {\n  const l = {\n    open: {\n      height: \"auto\",\n      opacity: 1,\n      overflow: \"unset\",\n      transition: {\n        overflow: {\n          delay: 1\n        }\n      }\n    },\n    closed: {\n      height: 0,\n      opacity: 0,\n      overflow: \"hidden\"\n    }\n  }, c = {\n    simple: \"px-2 pb-3\",\n    separator: \"px-2 pb-4\",\n    boxed: \"px-3 pb-4\"\n  }[n];\n  return /* @__PURE__ */ r(T, { initial: !1, children: o && /* @__PURE__ */ r(\n    b.div,\n    {\n      variants: l,\n      initial: \"closed\",\n      animate: \"open\",\n      exit: \"closed\",\n      transition: { duration: 0.3, ease: \"easeInOut\" },\n      className: m(\n        \"text-text-secondary w-full text-sm transition-[height, opacity, transform] ease-in box-border\",\n        t && \"opacity-40\",\n        s\n      ),\n      \"aria-hidden\": !o,\n      children: /* @__PURE__ */ r(\"div\", { className: m(c), children: i })\n    },\n    \"content\"\n  ) });\n};\nC.displayName = \"Accordion.Content\";\nconst D = Object.assign(y, {\n  Item: g,\n  Trigger: h,\n  Content: C\n});\nexport {\n  y as Accordion,\n  C as AccordionContent,\n  g as AccordionItem,\n  h as AccordionTrigger,\n  D as default\n};\n//# sourceMappingURL=accordion.es.js.map\n","const t = {\n  400: \"font-normal\",\n  500: \"font-medium\",\n  600: \"font-semibold\",\n  700: \"font-bold\"\n}, e = {\n  36: \"text-4xl\",\n  30: \"text-3xl\",\n  24: \"text-2xl\",\n  20: \"text-xl\",\n  18: \"text-lg\",\n  16: \"text-base\",\n  14: \"text-sm\",\n  12: \"text-xs\"\n}, s = {\n  44: \"leading-11\",\n  38: \"leading-9.5\",\n  32: \"leading-8\",\n  30: \"leading-7.5\",\n  28: \"leading-7\",\n  24: \"leading-6\",\n  20: \"leading-5\",\n  16: \"leading-4\"\n}, a = {\n  2: \"tracking-2\"\n  // 2px\n}, n = {\n  brand600: \"text-brand-primary-600\",\n  link: \"text-link-primary\",\n  primary: \"text-text-primary\",\n  secondary: \"text-text-secondary\",\n  tertiary: \"text-text-tertiary\",\n  disabled: \"text-text-disabled\",\n  help: \"text-field-helper\",\n  label: \"text-field-label\",\n  info: \"text-support-info\",\n  success: \"text-support-success\",\n  warning: \"text-support-warning\",\n  error: \"text-support-error\",\n  inverse: \"text-text-on-color\"\n};\nexport {\n  n as fontColorClassNames,\n  e as fontSizeClassNames,\n  t as fontWeightClassNames,\n  a as letterSpacingClassNames,\n  s as lineHeightClassNames\n};\n//# sourceMappingURL=styles.es.js.map\n","import { jsx as C } from \"react/jsx-runtime\";\nimport { cn as l } from \"../../utilities/functions.es.js\";\nimport { fontColorClassNames as i, letterSpacingClassNames as N, lineHeightClassNames as c, fontSizeClassNames as x, fontWeightClassNames as u } from \"./styles.es.js\";\nimport { forwardRef as d } from \"react\";\nconst b = d(function({\n  as: r,\n  children: e,\n  weight: o,\n  size: s,\n  lineHeight: m,\n  letterSpacing: t,\n  color: a = \"primary\",\n  className: n,\n  ...f\n}, p) {\n  return /* @__PURE__ */ C(\n    r || \"p\",\n    {\n      ref: p,\n      className: l(\n        \"m-0 p-0\",\n        o ? u[o] : \"\",\n        s ? x[s] : \"\",\n        m ? c[m] : \"\",\n        t ? N[t] : \"\",\n        a ? i[a] : \"\",\n        n\n      ),\n      ...f,\n      children: e\n    }\n  );\n});\nexport {\n  b as Text,\n  b as default\n};\n//# sourceMappingURL=text.es.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [[\"path\", { d: \"m9 18 6-6-6-6\", key: \"mthhwq\" }]];\nconst ChevronRight = createLucideIcon(\"chevron-right\", __iconNode);\n\nexport { __iconNode, ChevronRight as default };\n//# sourceMappingURL=chevron-right.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"path\", { d: \"M15 3h6v6\", key: \"1q9fwt\" }],\n  [\"path\", { d: \"M10 14 21 3\", key: \"gplh6r\" }],\n  [\"path\", { d: \"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\", key: \"a6xqqp\" }]\n];\nconst ExternalLink = createLucideIcon(\"external-link\", __iconNode);\n\nexport { __iconNode, ExternalLink as default };\n//# sourceMappingURL=external-link.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\n    \"path\",\n    {\n      d: \"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5\",\n      key: \"ftymec\"\n    }\n  ],\n  [\"rect\", { x: \"2\", y: \"6\", width: \"14\", height: \"12\", rx: \"2\", key: \"158x01\" }]\n];\nconst Video = createLucideIcon(\"video\", __iconNode);\n\nexport { __iconNode, Video as default };\n//# sourceMappingURL=video.js.map\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"circle\", { cx: \"12\", cy: \"12\", r: \"10\", key: \"1mglay\" }],\n  [\"path\", { d: \"M12 16v-4\", key: \"1dtifu\" }],\n  [\"path\", { d: \"M12 8h.01\", key: \"e9boi3\" }]\n];\nconst Info = createLucideIcon(\"info\", __iconNode);\n\nexport { __iconNode, Info as default };\n//# sourceMappingURL=info.js.map\n","import { __ } from '@wordpress/i18n';\nimport { Button, Text, Tooltip, Badge } from '@bsf/force-ui';\nimport { useState, useEffect } from 'react';\nimport { ArrowUpRight, Check, Info, Video } from 'lucide-react';\n\n/**\n * Component for rendering a single learn step within a chapter\n *\n * @param {Object} props - Component props\n * @param {Object} props.step - Step data object\n * @param {string} props.chapterId - ID of the parent chapter\n * @param {boolean} props.isLast - Whether this is the last step in the chapter\n * @param {Function} props.onCompletionChange - Callback when step completion status changes\n * @param {Function} props.onLearnHowClick - Callback to open learn how dialog\n * @returns {JSX.Element|null} - Rendered step component\n */\nconst BsfLearnStep = ( { step, chapterId, isLast = false, onCompletionChange, onLearnHowClick } ) => {\n\tconst {\n\t\tid,\n\t\ttitle,\n\t\tdescription,\n\t\tlearn,\n\t\taction,\n\t\tcompleted = false,\n\t\tisPro = false,\n\t} = step;\n\n\tconst [ isCompleted, setIsCompleted ] = useState( completed );\n\n\t// Update local state when completed prop changes\n\tuseEffect( () => {\n\t\tsetIsCompleted( completed );\n\t}, [ completed ] );\n\n\tif ( ! id || ! title ) {\n\t\treturn null;\n\t}\n\n\tconst handleCompletion = () => {\n\t\tconst newStatus = ! isCompleted;\n\t\tsetIsCompleted( newStatus );\n\n\t\t// Call parent callback to update state\n\t\tif ( onCompletionChange ) {\n\t\t\tonCompletionChange( chapterId, id, newStatus );\n\t\t}\n\t};\n\n\tconst LearnIcon = () => {\n\t\tswitch ( learn?.type ) {\n\t\t\tcase 'video':\n\t\t\t\treturn <Video size={ 14 } />;\n\t\t\tcase 'link':\n\t\t\tdefault:\n\t\t\t\treturn <Info size={ 14 } />;\n\t\t}\n\t}\n\n\tconst handleLearnClick = () => {\n\t\tif ( learn?.type === 'link' ) {\n\t\t\twindow.open( learn?.url, '_blank', 'noopener,noreferrer' );\n\t\t\treturn;\n\t\t}\n\n\t\t// Open learn how dialog for other types (video, content, etc.)\n\t\tif ( onLearnHowClick && learn ) {\n\t\t\tonLearnHowClick( step );\n\t\t}\n\t};\n\n\tconst handleActionClick = () => {\n\t\tif ( action?.url ) {\n\t\t\tif ( action?.isExternal ) {\n\t\t\t\twindow.open( action?.url, '_blank', 'noopener,noreferrer' );\n\t\t\t} else {\n\t\t\t\t// Internal navigation\n\t\t\t\twindow.location.href = action?.url;\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tconsole.info( 'Empty or missing URL!!!' );\n\t};\n\n\tconst statusText = isCompleted\n\t\t? __( 'Mark as incomplete', 'astra' )\n\t\t: __( 'Mark as complete', 'astra' );\n\n\treturn (\n\t\t<div className={`py-4 sm:py-5 flex items-center gap-2 sm:gap-3 border-solid border-0 border-border-subtle ${ isLast ? '' : 'border-b-0.5' }`}>\n\t\t\t<Tooltip arrow content={ statusText } placement=\"top\" variant=\"dark\">\n\t\t\t\t<span\n\t\t\t\t\tclassName={ `self-start mt-[1px] flex justify-center items-center w-2 h-2 p-[3px] sm:p-[4px] rounded-full cursor-pointer border-[1.25px] border-solid ${\n                        isCompleted\n                            ? 'bg-support-success border-support-success-inverse'\n                            : 'border-border-strong [&:hover>svg]:text-border-strong'\n                    }` }\n\t\t\t\t\ttabIndex={ 0 }\n\t\t\t\t\taria-label={ statusText }\n\t\t\t\t\tonClick={ handleCompletion }\n\t\t\t\t\tonKeyDown={ ( e ) => {\n\t\t\t\t\t\tif ( e.key === 'Enter' || e.key === ' ' ) {\n\t\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\t\thandleCompletion();\n\t\t\t\t\t\t}\n\t\t\t\t\t} }\n\t\t\t\t>\n\t\t\t\t\t<Check\n\t\t\t\t\t\tclassName=\"text-icon-on-color sm:w-3.5 sm:h-3.5 transition-all duration-200\"\n\t\t\t\t\t\tsize={ 12 }\n\t\t\t\t\t\tstrokeWidth={ 1.5 }\n\t\t\t\t\t/>\n\t\t\t\t</span>\n\t\t\t</Tooltip>\n\n\t\t\t<div className=\"flex-1 flex items-center gap-2\">\n\t\t\t\t<div className=\"flex flex-col gap-1.5\">\n\t\t\t\t\t<Text\n\t\t\t\t\t\tclassName=\"flex-1\"\n\t\t\t\t\t\tsize={ 14 }\n\t\t\t\t\t\tweight={ 500 }\n\t\t\t\t\t\tcolor=\"primary\"\n\t\t\t\t\t>\n\t\t\t\t\t\t{ title }\n\t\t\t\t\t</Text>\n\t\t\t\t\t<Text\n\t\t\t\t\t\tclassName=\"flex-1 hidden sm:block\"\n\t\t\t\t\t\tsize={ 14 }\n\t\t\t\t\t\tcolor=\"secondary\"\n\t\t\t\t\t>\n\t\t\t\t\t\t{ description }\n\t\t\t\t\t</Text>\n\t\t\t\t</div>\n\t\t\t\t{ isPro && (\n\t\t\t\t\t<Badge\n\t\t\t\t\t\tlabel={ __( 'Pro', 'astra' ) }\n\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\ttype=\"pill\"\n\t\t\t\t\t\tvariant=\"inverse\"\n\t\t\t\t\t\tclassName=\"uppercase\"\n\t\t\t\t\t/>\n\t\t\t\t) }\n\t\t\t</div>\n\n\t\t\t{ learn && (\n\t\t\t\t<Tooltip arrow content={ learn?.label || __( 'Learn how', 'astra' ) } placement=\"top\" variant=\"dark\">\n\t\t\t\t\t<Button\n\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\tvariant=\"ghost\"\n\t\t\t\t\t\ticon={ <LearnIcon /> }\n\t\t\t\t\t\tonClick={ handleLearnClick }\n\t\t\t\t\t\tclassName=\"text-button-primary hover:bg-transparent outline-none\"\n\t\t\t\t\t/>\n\t\t\t\t</Tooltip>\n\t\t\t) }\n\n\t\t\t<Button\n\t\t\t\tclassName=\"px-3 gap-0.5 min-w-40 text-button-primary hover:bg-background-button-hover hover:outline-button-secondary\"\n\t\t\t\tsize=\"sm\"\n\t\t\t\tvariant=\"secondary\"\n\t\t\t\ticon={ <ArrowUpRight size={ 14 } /> }\n\t\t\t\ticonPosition=\"right\"\n\t\t\t\tonClick={ handleActionClick }\n\t\t\t>\n\t\t\t\t{ action?.label || __( 'Set Up', 'astra' ) }\n\t\t\t</Button>\n\t\t</div>\n\t);\n};\n\nexport default BsfLearnStep;\n","import { __, sprintf } from '@wordpress/i18n';\nimport { Accordion, Badge, Button, Text } from '@bsf/force-ui';\nimport { Check, ChevronRight, ExternalLink } from 'lucide-react';\nimport BsfLearnStep from './BsfLearnStep';\n\n/**\n * Component for rendering a learn chapter with steps\n *\n * @param {Object} props - Component props\n * @param {Object} props.chapters - Chapters data object\n * @param {string} props.defaultValue - Default chapter ID to open\n * @param {Function} props.onStepCompletionChange - Callback when step completion status changes\n * @param {Function} props.onLearnHowClick - Callback to open learn how dialog\n * @returns {JSX.Element} - Rendered chapter component\n */\nconst BsfLearnChapter = ( { chapters, defaultValue, onStepCompletionChange, onLearnHowClick } ) => {\n\n\tconst handleLearnHowClick = ( event, url ) => {\n\t\tevent.stopPropagation();\n\t\tif ( url ) {\n\t\t\twindow.open( url, '_blank', 'noopener,noreferrer' );\n\t\t\treturn;\n\t\t}\n\n\t\tconsole.info( 'Empty or missing URL!!!' );\n\t};\n\n\treturn (\n\t\t<Accordion\n\t\t\ttype=\"boxed\"\n\t\t\tautoClose={ true }\n\t\t\tdefaultValue={ defaultValue }\n\t\t>\n\t\t\t{ chapters.map( ( chapter ) => {\n\t\t\t\tconst {\n\t\t\t\t\tid,\n\t\t\t\t\ttitle,\n\t\t\t\t\tdescription,\n\t\t\t\t\turl,\n\t\t\t\t\tsteps,\n\t\t\t\t} = chapter;\n\n\t\t\t\tconst totalStepsCount = steps.length;\n\t\t\t\tconst completedStepsCount = steps.filter( ( step ) => step.completed ).length;\n\t\t\t\tconst isCompleted = totalStepsCount === completedStepsCount;\n\n\t\t\t\tconst getBadgeColor = () => {\n\t\t\t\t\tif ( isCompleted ) {\n\t\t\t\t\t\treturn 'green';\n\t\t\t\t\t}\n\t\t\t\t\tif ( completedStepsCount > 0 ) {\n\t\t\t\t\t\treturn 'blue';\n\t\t\t\t\t}\n\t\t\t\t\treturn 'gray';\n\t\t\t\t};\n\n\t\t\t\treturn (\n\t\t\t\t\t<Accordion.Item\n\t\t\t\t\t\tkey={ id }\n\t\t\t\t\t\tclassName=\"bg-background-primary border-0.5 [&:hover>h3]:bg-transparent rounded-lg overflow-hidden [&:has([aria-expanded='true'])]:shadow-xs transition-all duration-200 ease-in-out\"\n\t\t\t\t\t\tvalue={ id }\n\t\t\t\t\t>\n\t\t\t\t\t\t<Accordion.Trigger className=\"group p-3 sm:p-4 hover:bg-transparent [&>svg]:hidden [&>div]:flex-grow [&[aria-expanded='true']_.learn-chevron-right]:rotate-90 [&[aria-expanded='true']_.learn-more-btn]:flex\">\n\t\t\t\t\t\t\t<div className=\"flex items-center gap-2 sm:gap-3 flex-1\">\n\t\t\t\t\t\t\t\t<ChevronRight\n\t\t\t\t\t\t\t\t\tclassName=\"learn-chevron-right transition-transform duration-200 ease-in-out\"\n\t\t\t\t\t\t\t\t\tsize={ 20 }\n\t\t\t\t\t\t\t\t/>\n\n\t\t\t\t\t\t\t\t<div className=\"flex-1 text-left\">\n\t\t\t\t\t\t\t\t\t<Text size={ 14 } className=\"sm:text-base\" weight={ 600 }>\n\t\t\t\t\t\t\t\t\t\t{ title }\n\t\t\t\t\t\t\t\t\t</Text>\n\t\t\t\t\t\t\t\t</div>\n\n\t\t\t\t\t\t\t\t{ url && (\n\t\t\t\t\t\t\t\t\t<span\n\t\t\t\t\t\t\t\t\t\tclassName=\"hover:underline underline-offset-2 learn-more-btn hidden transition-all cursor-pointer text-link-primary outline-link-primary items-center gap-1 text-xs px-2 py-1\"\n\t\t\t\t\t\t\t\t\t\tonClick={ ( event ) => handleLearnHowClick( event, url ) }\n\t\t\t\t\t\t\t\t\t\trole=\"link\"\n\t\t\t\t\t\t\t\t\t\ttabIndex={ 0 }\n\t\t\t\t\t\t\t\t\t\tonKeyDown={ ( e ) => {\n\t\t\t\t\t\t\t\t\t\t\tif ( e.key === 'Enter' || e.key === ' ' ) {\n\t\t\t\t\t\t\t\t\t\t\t\thandleLearnHowClick( e, url );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t} }\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t<span className=\"hidden sm:inline\">\n\t\t\t\t\t\t\t\t\t\t\t{ __( 'Learn how', 'astra' ) }\n\t\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t\t\t<ExternalLink size={ 16 } strokeWidth={ 1.25 } />\n\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t) }\n\n\t\t\t\t\t\t\t\t<Badge\n\t\t\t\t\t\t\t\t\tclassName=\"relative overflow-hidden w-14 sm:w-[62px] text-xs\"\n\t\t\t\t\t\t\t\t\tlabel={\n\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t<span className=\"sr-only\">\n\t\t\t\t\t\t\t\t\t\t\t\t{ sprintf(\n\t\t\t\t\t\t\t\t\t\t\t\t\t// translators: %1$d is the number of completed steps, %2$d is the total number of steps.\n\t\t\t\t\t\t\t\t\t\t\t\t\t__( '%1$d of %2$d steps completed', 'astra' ),\n\t\t\t\t\t\t\t\t\t\t\t\t\tcompletedStepsCount,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttotalStepsCount\n\t\t\t\t\t\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t\t\t\t\t\t</span>\n\n\t\t\t\t\t\t\t\t\t\t\t<span className=\"flex items-center\">\n\t\t\t\t\t\t\t\t\t\t\t\t{ isCompleted && <Check size={ 12 } /> }\n\t\t\t\t\t\t\t\t\t\t\t\t<span className=\"px-1 relative z-10\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t{ completedStepsCount }/{ totalStepsCount }\n\t\t\t\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t\t\t\t</span>\n\n\t\t\t\t\t\t\t\t\t\t\t<span\n\t\t\t\t\t\t\t\t\t\t\t\tclassName=\"absolute h-full top-0 left-0 bg-[#BAE6FD]/40 transition-[width] duration-300 ease-in-out\"\n\t\t\t\t\t\t\t\t\t\t\t\tstyle={ {\n\t\t\t\t\t\t\t\t\t\t\t\t\twidth: `${ ( completedStepsCount / totalStepsCount ) * 100 }%`,\n\t\t\t\t\t\t\t\t\t\t\t\t} }\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t</>\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tvariant={ getBadgeColor() }\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</Accordion.Trigger>\n\n\t\t\t\t\t\t<Accordion.Content className=\"overflow-visible [&>div]:p-0\">\n\t\t\t\t\t\t\t{ description && (\n\t\t\t\t\t\t\t\t<Text\n\t\t\t\t\t\t\t\t\tclassName=\"px-3 sm:px-4 ml-7 mr-0 sm:mx-8 -mt-2 pb-4 pt-3 max-w-full sm:max-w-[72%]\"\n\t\t\t\t\t\t\t\t\tsize={ 14 }\n\t\t\t\t\t\t\t\t\tcolor=\"secondary\"\n\t\t\t\t\t\t\t\t\tweight={ 400 }\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{ description }\n\t\t\t\t\t\t\t\t</Text>\n\t\t\t\t\t\t\t) }\n\n\t\t\t\t\t\t\t<span className=\"block w-full h-[0.5px] bg-border-subtle\" />\n\n\t\t\t\t\t\t\t<div className=\"px-3 sm:px-4 flex flex-col bg-[#FCFCFD]\">\n\t\t\t\t\t\t\t\t{ steps.map( ( step, index ) => (\n\t\t\t\t\t\t\t\t\t<BsfLearnStep\n\t\t\t\t\t\t\t\t\t\tkey={ step.id }\n\t\t\t\t\t\t\t\t\t\tstep={ step }\n\t\t\t\t\t\t\t\t\t\tchapterId={ id }\n\t\t\t\t\t\t\t\t\t\tisLast={ index === steps.length - 1 }\n\t\t\t\t\t\t\t\t\t\tonCompletionChange={ onStepCompletionChange }\n\t\t\t\t\t\t\t\t\t\tonLearnHowClick={ onLearnHowClick }\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t) ) }\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</Accordion.Content>\n\t\t\t\t\t</Accordion.Item>\n\t\t\t\t)\n\t\t\t} ) }\n\t\t</Accordion>\n\t);\n};\n\nexport default BsfLearnChapter;\n","import { Skeleton } from '@bsf/force-ui';\n\n/**\n * Skeleton loading component for BsfLearn\n * Shows loading state while fetching chapters data from API\n *\n * @since 1.0.0\n */\nconst BsfLearnSkeleton = () => {\n\treturn (\n\t\t<>\n\t\t\t{/* First chapter skeleton (expanded view) */}\n\t\t\t<div className=\"border-0.5 border-solid border-border-subtle rounded-lg\">\n\t\t\t\t<Skeleton\n\t\t\t\t\tvariant=\"rectangular\"\n\t\t\t\t\tclassName=\"w-full h-14 rounded-b-none rounded-t-lg bg-background-secondary\"\n\t\t\t\t/>\n\n\t\t\t\t<div className=\"px-4\">\n\t\t\t\t\t{ Array( 4 )\n\t\t\t\t\t\t.fill( 0 )\n\t\t\t\t\t\t.map( ( _, index ) => (\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\tkey={ `step-skeleton-${ index }` }\n\t\t\t\t\t\t\t\tclassName=\"py-5 flex items-center gap-3\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t<Skeleton\n\t\t\t\t\t\t\t\t\tvariant=\"circular\"\n\t\t\t\t\t\t\t\t\tclassName=\"w-6 h-6 bg-background-secondary\"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<div className=\"flex-1\">\n\t\t\t\t\t\t\t\t\t<Skeleton\n\t\t\t\t\t\t\t\t\t\tvariant=\"rectangular\"\n\t\t\t\t\t\t\t\t\t\tclassName=\"w-2/3 h-5 bg-background-secondary\"\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<Skeleton\n\t\t\t\t\t\t\t\t\tvariant=\"rectangular\"\n\t\t\t\t\t\t\t\t\tclassName=\"w-[104px] h-8 bg-background-secondary\"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t) ) }\n\t\t\t\t</div>\n\t\t\t</div>\n\n\t\t\t{/* Remaining collapsed chapters */}\n\t\t\t{ Array( 4 )\n\t\t\t\t.fill( 0 )\n\t\t\t\t.map( ( _, index ) => (\n\t\t\t\t\t<Skeleton\n\t\t\t\t\t\tkey={ `skeleton-${ index }` }\n\t\t\t\t\t\tvariant=\"rectangular\"\n\t\t\t\t\t\tclassName=\"w-full h-14 rounded-lg bg-background-secondary\"\n\t\t\t\t\t/>\n\t\t\t\t) ) }\n\t\t</>\n\t);\n};\n\nexport default BsfLearnSkeleton;\n","import { Button as FUIButton } from '@bsf/force-ui';\nimport { forwardRef } from '@wordpress/element';\n\n/**\n * Button Component\n *\n * A wrapper around Force UI Button with customizable variant and onClick handler.\n *\n * @param {string} text - Button text\n * @param {string} variant - Button variant (primary|secondary|tertiary)\n * @param {Function} onClick - Click handler function\n */\nconst Button = ( { text, variant, onClick } ) => {\n\tconst handleOnClick = ( event ) => {\n\t\tif ( !! onClick && typeof onClick === 'function' ) {\n\t\t\tonClick( event );\n\t\t}\n\t};\n\n\treturn (\n\t\t<FUIButton\n\t\t\tvariant={ variant || 'primary' }\n\t\t\tsize=\"sm\"\n\t\t\tonClick={ handleOnClick }\n\t\t>\n\t\t\t{ text }\n\t\t</FUIButton>\n\t);\n};\n\nexport default forwardRef( Button );\n","import { Text } from '@bsf/force-ui';\nimport { __, sprintf } from '@wordpress/i18n';\n\n/**\n * Checklist Component\n *\n * Renders a numbered checklist of items with step labels.\n *\n * @param {Array} items - Array of checklist items\n * @param {string} items[].text - Item text\n */\nconst Checklist = ( { items } ) => {\n\treturn (\n\t\t<div className=\"space-y-2\">\n\t\t\t{ items.map( ( item, index ) => (\n\t\t\t\t<div key={ index } className=\"flex items-start gap-2\">\n\t\t\t\t\t<Text\n\t\t\t\t\t\tsize={ 14 }\n\t\t\t\t\t\tweight={ 600 }\n\t\t\t\t\t\tcolor=\"primary\"\n\t\t\t\t\t\tclassName=\"flex-shrink-0\"\n\t\t\t\t\t>\n\t\t\t\t\t\t{ sprintf(\n\t\t\t\t\t\t\t// translators: %s is the step number.\n\t\t\t\t\t\t\t__( 'Step %d:', 'astra' ),\n\t\t\t\t\t\t\tindex + 1\n\t\t\t\t\t\t) }\n\t\t\t\t\t</Text>\n\t\t\t\t\t<Text size={ 14 } color=\"secondary\">\n\t\t\t\t\t\t{ item.text }\n\t\t\t\t\t</Text>\n\t\t\t\t</div>\n\t\t\t) ) }\n\t\t</div>\n\t);\n};\n\nexport default Checklist;\n","import { useState } from 'react';\nimport { Skeleton } from '@bsf/force-ui';\n\n/**\n * Image component with loading skeleton\n *\n * @param {string} src - Image source URL\n * @param {string} alt - Image alt text\n */\nconst Image = ( { src, alt } ) => {\n\tconst [ isLoaded, setIsLoaded ] = useState( false );\n\n\treturn (\n\t\t<div className=\"relative w-full shadow-sm rounded-lg overflow-hidden\">\n\t\t\t{ ! isLoaded && (\n\t\t\t\t<Skeleton className=\"w-full h-64\" />\n\t\t\t) }\n\t\t\t<img\n\t\t\t\tsrc={ src }\n\t\t\t\talt={ alt || '' }\n\t\t\t\tclassName={ `w-full h-auto border-0.5 border-solid border-border-subtle ${ isLoaded ? 'block' : 'hidden' }` }\n\t\t\t\tonLoad={ () => setIsLoaded( true ) }\n\t\t\t/>\n\t\t</div>\n\t);\n};\n\nexport default Image;\n","import { Text } from '@bsf/force-ui';\n\n/**\n * Link Component\n *\n * Renders a link with optional prefix text.\n *\n * @param {string} prefix - Optional prefix text before the link\n * @param {string} text - Link text (defaults to url if not provided)\n * @param {string} url - Link URL\n * @param {string} target - Link target (defaults to '_blank')\n */\nconst Link = ( { prefix, text, url, target = '_blank' } ) => (\n\t<div className=\"text-sm flex gap-1\">\n\t\t{ prefix && <span>{ prefix }</span> }\n\t\t<Text\n\t\t\tas=\"a\"\n\t\t\thref={ url }\n\t\t\ttarget={ target }\n\t\t\tclassName=\"text-gs-primary underline\"\n\t\t>\n\t\t\t{ text || url }\n\t\t</Text>\n\t</div>\n);\n\nexport default Link;\n","import { Text } from '@bsf/force-ui';\n\n/**\n * List Component\n *\n * Renders a bulleted list of items.\n *\n * @param {Array} items - Array of list items (strings)\n */\nconst List = ( { items } ) => {\n\treturn (\n\t\t<ul className=\"list-disc ml-8\">\n\t\t\t{ items.map( ( item, index ) => (\n\t\t\t\t<li key={ index } className=\"my-0.5\">\n\t\t\t\t\t<Text size={ 14 } color=\"secondary\">\n\t\t\t\t\t\t{ item }\n\t\t\t\t\t</Text>\n\t\t\t\t</li>\n\t\t\t) ) }\n\t\t</ul>\n\t);\n};\n\nexport default List;\n","/**\n * Returns the class names.\n *\n * @param {...string} classes The class names.\n *\n * @return {string} Returns the class names.\n */\nexport const classNames = ( ...classes ) => classes.filter( Boolean ).join( ' ' );\n","import { Text } from '@bsf/force-ui';\nimport { classNames } from '../../helpers';\n\n/**\n * Paragraph Component\n *\n * Renders text as either a paragraph or heading.\n *\n * @param {string} text - Text content to display\n * @param {boolean} isHeading - If true, renders as h3 with heading styles\n */\nconst Paragraph = ( { text, isHeading = false } ) => (\n\t<Text\n\t\tas={ isHeading ? 'h3' : 'p' }\n\t\tweight={ isHeading ? 600 : 400 }\n\t\tsize={ isHeading ? 18 : 14 }\n\t\tcolor={ isHeading ? 'primary' : 'secondary' }\n\t\tclassName={ classNames( 'leading-relaxed', isHeading ? 'mt-4' : '' ) }\n\t>\n\t\t{ text }\n\t</Text>\n);\n\nexport default Paragraph;\n","/**\n * Video Component\n *\n * Renders an embedded video iframe with responsive aspect ratio.\n *\n * @param {string} url - Video embed URL\n * @param {string} title - Video title for accessibility\n */\nconst Video = ( { url, title } ) => (\n\t<div className=\"aspect-video rounded-lg bg-background-tertiary overflow-clip shadow-sm\">\n\t\t<iframe\n\t\t\tsrc={ url }\n\t\t\ttitle={ title }\n\t\t\tclassName=\"w-full h-full border-none\"\n\t\t\tallow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\n\t\t\tallowFullScreen\n\t\t/>\n\t</div>\n);\n\nexport default Video;\n","import Button from './Button';\nimport Checklist from './Checklist';\nimport Image from './Image';\nimport Link from './Link';\nimport List from './List';\nimport Paragraph from './Paragraph';\nimport Video from './Video';\n\n/**\n * RenderContent Component\n *\n * Dynamically renders different content types based on item type.\n * Supports: video, image, link, heading, paragraph/text, list, checklist, button.\n *\n * @param {Array} items - Array of content items to render\n * @param {string} items[].type - Content type (video|image|link|heading|paragraph|text|list|checklist|button)\n * @param {Object} items[].data - Data object for the content type\n * @param {string} items[].text - Text content for paragraph/heading types\n */\nconst RenderContent = ( { items } ) => {\n\t// Ensure items is always an array\n\tif ( ! Array.isArray( items ) ) {\n\t\titems = [ items ];\n\t}\n\n\treturn items?.map( ( item, index ) => {\n\t\tswitch ( item.type ) {\n\t\t\tcase 'video':\n\t\t\t\treturn (\n\t\t\t\t\t<Video\n\t\t\t\t\t\tkey={ index }\n\t\t\t\t\t\turl={ item.data.url }\n\t\t\t\t\t\ttitle={ item.data.title }\n\t\t\t\t\t/>\n\t\t\t\t);\n\t\t\tcase 'image':\n\t\t\t\treturn (\n\t\t\t\t\t<Image\n\t\t\t\t\t\tkey={ index }\n\t\t\t\t\t\tsrc={ item.data.src }\n\t\t\t\t\t\talt={ item.data.alt }\n\t\t\t\t\t/>\n\t\t\t\t);\n\t\t\tcase 'link':\n\t\t\t\treturn (\n\t\t\t\t\t<Link\n\t\t\t\t\t\tkey={ index }\n\t\t\t\t\t\tprefix={ item.prefix }\n\t\t\t\t\t\ttext={ item.data.text }\n\t\t\t\t\t\turl={ item.data.url }\n\t\t\t\t\t\ttarget={ item.data.target }\n\t\t\t\t\t/>\n\t\t\t\t);\n\t\t\tcase 'heading':\n\t\t\t\treturn <Paragraph key={ index } text={ item.text } isHeading />;\n\t\t\tcase 'paragraph':\n\t\t\tcase 'text':\n\t\t\t\treturn <Paragraph key={ index } text={ item.text } />;\n\t\t\tcase 'list':\n\t\t\t\treturn <List key={ index } items={ item.data.items } />;\n\t\t\tcase 'checklist':\n\t\t\t\treturn <Checklist key={ index } items={ item.data.items } />;\n\t\t\tcase 'button':\n\t\t\t\treturn (\n\t\t\t\t\t<Button\n\t\t\t\t\t\tkey={ index }\n\t\t\t\t\t\tonClick={ () =>\n\t\t\t\t\t\t\twindow.open( item.data.url, item.data.target )\n\t\t\t\t\t\t}\n\t\t\t\t\t\t{ ...item.data }\n\t\t\t\t\t/>\n\t\t\t\t);\n\t\t\tdefault:\n\t\t\t\treturn null;\n\t\t}\n\t} );\n};\n\nexport default RenderContent;\n","import { Dialog } from '@bsf/force-ui';\nimport RenderContent from './learn-how/RenderContent';\n\n/**\n * LearnHowDialog Component\n *\n * A dialog component for displaying educational content with various content types\n * (video, images, links, paragraphs, lists, checklists, buttons).\n *\n * @param {boolean} open - Controls dialog visibility\n * @param {Function} setOpen - Callback to update dialog open state\n * @param {Object} item - Content item with title and content array\n * @param {string} item.title - Dialog title\n * @param {Array} item.learn - Array of content items to render\n *\n * Usage:\n * const [isOpen, setIsOpen] = useState(false);\n * const contentItem = {\n *   title: 'Learn How',\n *   description: 'Description of the content',\n *   learn: [\n *     { type: 'link', content: { ... } }\n *     { type: 'dialog', content: { text: '...' } },\n *   ]\n * };\n *\n * <LearnHowDialog open={isOpen} setOpen={setIsOpen} item={contentItem} />\n */\nconst LearnHowDialog = ( { open = false, setOpen, item } ) => {\n\tconst handleDialogClose = () => {\n\t\tif ( setOpen && typeof setOpen === 'function' ) {\n\t\t\tsetOpen( false );\n\t\t}\n\t};\n\n\treturn (\n\t\t<Dialog\n\t\t\tdesign=\"simple\"\n\t\t\texitOnEsc\n\t\t\tscrollLock\n\t\t\texitOnClickOutside\n\t\t\topen={ open }\n\t\t\tsetOpen={ handleDialogClose }\n\t\t>\n\t\t\t<Dialog.Backdrop />\n\t\t\t<Dialog.Panel className=\"w-[90vw] max-w-5xl gap-2 max-h-[85vh] sm:max-h-[80vh] mx-auto\">\n\t\t\t\t<Dialog.Header className=\"px-4 sm:px-5 pb-0\">\n\t\t\t\t\t<div className=\"flex items-center justify-between\">\n\t\t\t\t\t\t<Dialog.Title className=\"text-base\">\n\t\t\t\t\t\t\t{ item?.title }\n\t\t\t\t\t\t</Dialog.Title>\n\t\t\t\t\t\t<Dialog.CloseButton />\n\t\t\t\t\t</div>\n\n\t\t\t\t\t<Dialog.Description>\n\t\t\t\t\t\t{ item?.description }\n\t\t\t\t\t</Dialog.Description>\n\t\t\t\t</Dialog.Header>\n\n\t\t\t\t<Dialog.Body className=\"pt-2 px-4 sm:px-5 pb-4 sm:pb-5 flex flex-col gap-2 sm:gap-2.5 overflow-auto\">\n\t\t\t\t\t<RenderContent items={ item?.learn?.content || {} } />\n\t\t\t\t</Dialog.Body>\n\t\t\t</Dialog.Panel>\n\t\t</Dialog>\n\t);\n};\n\nexport default LearnHowDialog;\n","import { useState, useEffect } from 'react';\nimport apiFetch from '@wordpress/api-fetch';\nimport { Toaster } from '@bsf/force-ui';\nimport useBsfLearn from '../useBsfLearn';\nimport BsfLearnChapters from './BsfLearnChapters';\nimport BsfLearnSkeleton from './BsfLearnSkeleton';\nimport LearnHowDialog from './LearnHowDialog';\n\n/**\n * Complete Learn component that manages chapters and steps\n *\n * This is a complete wrapper component that handles all the logic internally.\n * Just pass your chapters data OR API endpoints to fetch and save the data.\n *\n * @param {Object} props - Component props\n * @param {Array} props.chapters - Array of chapter objects with steps (optional if endpoints provided)\n * @param {Object} props.endpoints - API endpoints object (optional if chapters provided)\n * @param {string} props.endpoints.get - API endpoint to fetch chapters from\n * @param {string} props.endpoints.set - API endpoint to save progress to\n * @param {string} props.className - Optional className for wrapper\n * @param {Function} props.onProgressChange - Optional callback when progress changes\n * @returns {JSX.Element} - Rendered learn component\n *\n * @example\n * // With direct data\n * <BsfLearn\n *   chapters={chaptersData}\n * />\n *\n * @example\n * // With API endpoints\n * <BsfLearn\n *   endpoints={{\n *     get: \"/astra/v1/learn-chapters\",\n *     set: \"/astra/v1/learn-progress\"\n *   }}\n * />\n */\nconst BsfLearn = ( {\n\tchapters: initialChapters = [],\n\tendpoints = null,\n\tclassName = '',\n\tonProgressChange,\n} ) => {\n\tconst [ apiChapters, setApiChapters ] = useState( [] );\n\tconst [ isLoading, setIsLoading ] = useState( false );\n\tconst [ error, setError ] = useState( null );\n\n\t// Fetch chapters from API if endpoint is provided\n\tuseEffect( () => {\n\t\tif ( ! endpoints?.get ) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst abortController = new AbortController();\n\n\t\tsetIsLoading( true );\n\t\tsetError( null );\n\n\t\tapiFetch( {\n\t\t\tpath: endpoints.get,\n\t\t\tsignal: abortController.signal,\n\t\t} )\n\t\t\t.then( ( response ) => {\n\t\t\t\tsetApiChapters( response );\n\t\t\t\tsetIsLoading( false );\n\t\t\t} )\n\t\t\t.catch( ( err ) => {\n\t\t\t\tsetError( err.message || 'Failed to load chapters' );\n\t\t\t\tsetIsLoading( false );\n\t\t\t} );\n\n\t\treturn () => {\n\t\t\tabortController.abort();\n\t\t};\n\t}, [ endpoints?.get ] );\n\n\t// Determine which chapters to use - API data or prop data\n\tconst chaptersToUse = endpoints?.get ? apiChapters : initialChapters;\n\n\t// Initialize the hook with provided data\n\tconst {\n\t\tchapters,\n\t\tupdateStepCompletion,\n\t\tfirstIncompleteChapterId,\n\t\tprogressStats,\n\t\tlearnHowDialogOpen,\n\t\tcurrentLearnHowItem,\n\t\topenLearnHowDialog,\n\t\tsetLearnHowDialogOpen,\n\t} = useBsfLearn( {\n\t\tinitialChapters: chaptersToUse,\n\t\tsaveEndpoint: endpoints?.set,\n\t} );\n\n\t// Call progress change callback if provided\n\tif ( onProgressChange && typeof onProgressChange === 'function' ) {\n\t\tonProgressChange( progressStats );\n\t}\n\n\t// Show loading skeleton\n\tif ( isLoading ) {\n\t\treturn (\n\t\t\t<div className={ `flex flex-col gap-2 ${ className } !bg-transparent` }>\n\t\t\t\t<BsfLearnSkeleton />\n\t\t\t</div>\n\t\t);\n\t}\n\n\t// Show error message\n\tif ( error ) {\n\t\treturn (\n\t\t\t<div className={ className }>\n\t\t\t\t<div className=\"text-error p-4\">\n\t\t\t\t\t{ error }\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t);\n\t}\n\n\t// If no chapters, return null\n\tif ( ! chapters || chapters.length === 0 ) {\n\t\treturn null;\n\t}\n\n\treturn (\n\t\t<div className={ className }>\n\t\t\t<BsfLearnChapters\n\t\t\t\tchapters={ chapters }\n\t\t\t\tdefaultValue={ firstIncompleteChapterId }\n\t\t\t\tonStepCompletionChange={ updateStepCompletion }\n\t\t\t\tonLearnHowClick={ openLearnHowDialog }\n\t\t\t/>\n\n\t\t\t<LearnHowDialog\n\t\t\t\topen={ learnHowDialogOpen }\n\t\t\t\tsetOpen={ setLearnHowDialogOpen }\n\t\t\t\titem={ currentLearnHowItem }\n\t\t\t/>\n\n\t\t\t<Toaster\n\t\t\t\tposition=\"top-right\"\n\t\t\t\tdesign=\"stack\"\n\t\t\t\ttheme=\"light\"\n\t\t\t\tautoDismiss={ true }\n\t\t\t\tdismissAfter={ 5000 }\n\t\t\t/>\n\t\t</div>\n\t);\n};\n\nexport default BsfLearn;\n","import React, { useState } from 'react';\nimport { __ } from '@wordpress/i18n';\nimport BsfLearn from '../../lib/bsf-learn';\nimport { Button } from '@bsf/force-ui';\nimport { Video } from 'lucide-react';\nimport UpgradeNotice from \"@components/UpgradeNotice\";\nimport NavMenu from '@components/NavMenu';\n\nconst Learn = () => {\n    const [showVideo, setShowVideo] = useState(false);\n\n    const handleToggleVideo = () => {\n        setShowVideo(prevState => !prevState);\n    };\n\n    return (\n        <>\n            <UpgradeNotice />\n            <NavMenu />\n            <div className=\"bg-gray-50 min-h-[calc(100vh_-_8rem)]\">\n                <h1 className=\"sr-only\">{__('Learn', 'header-footer-elementor')}</h1>\n\n                <div className=\"max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 py-5\">\n                    <div className=\"max-w-3xl mx-auto px-4\">\n\n                        {/* Learn Component Container */}\n                        <div className=\"p-4 bg-background-primary rounded-xl flex flex-col gap-3 flex flex-col gap-4 sm:gap-8\">\n\n                            {/* Header Section */}\n                            <div className=\"px-1 flex justify-between relative flex-col items-start space-y-2\">\n                                <h2 className=\"m-0 p-0 font-semibold text-base text-text-primary\">\n                                    {__('Learn', 'header-footer-elementor')}\n                                </h2>\n                                <p className=\"m-0 p-0 text-sm text-text-primary\">\n                                    {__('Master UAE with our step-by-step guide and tutorials. Create stunning headers and footers with confidence.', 'header-footer-elementor')}\n                                </p>\n\n                                <Button\n                                    className=\"absolute right-0 whitespace-nowrap\"\n                                    variant=\"ghost\"\n                                    size=\"xs\"\n                                    icon={<Video className=\"w-4 h-4\" />}\n                                    onClick={handleToggleVideo}\n                                >\n                                    <span className=\"sm:inline-block\">\n                                        {showVideo ? __('Hide Video', 'header-footer-elementor') : __('Watch Video', 'header-footer-elementor')}\n                                    </span>\n                                </Button>\n                            </div>\n\n                            {/* Video Section */}\n                            <div className={`transition-all duration-700 ease-in-out overflow-hidden px-6 ${showVideo ? 'max-h-[800px] opacity-100 pb-6' : 'max-h-0 opacity-0 pb-0'\n                                }`}>\n                                {showVideo && (\n                                    <div className=\"relative rounded-lg shadow-lg aspect-video overflow-hidden\">\n                                        <iframe\n                                            className=\"w-full h-full\"\n                                            src=\"https://www.youtube-nocookie.com/embed/ZeogOxqdKJI?autoplay=1&enablejsapi=1&start=29&end=72\"\n                                            title=\"UAE Tutorial Video\"\n                                            allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\n                                            allowFullScreen\n                                        ></iframe>\n                                    </div>\n                                )}\n                            </div>\n\n                            {/* Learn Chapters */}\n                            <BsfLearn\n                                className=\"bg-background-secondary p-2 rounded-lg [&>div]:space-y-2\"\n                                endpoints={{\n                                    get: '/hfe/v1/get-learn-chapters',\n                                    set: '/hfe/v1/update-learn-progress'\n                                }}\n                            />\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </>\n    );\n};\n\nexport default Learn;","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [\n  [\"path\", { d: \"M18 6 6 18\", key: \"1bl5f8\" }],\n  [\"path\", { d: \"m6 6 12 12\", key: \"d8bk6v\" }]\n];\nconst X = createLucideIcon(\"x\", __iconNode);\n\nexport { __iconNode, X as default };\n//# sourceMappingURL=x.js.map\n","import React from \"react\";\nimport { Container, Button } from \"@bsf/force-ui\";\nimport { Check, X } from \"lucide-react\";\nimport { __ } from \"@wordpress/i18n\";\nimport { routes } from \"../../admin/settings/routes\";\nimport { Link } from \"../../router/index\";\nimport { ArrowUpRight } from \"lucide-react\";\n\nconst FreevsPro = () => {\n    const sections = [\n        {\n            title: __(\"Essentials\", \"header-footer-elementor\"),\n            items: [\n                { id: 1, content: __(\"White Label Option\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 2, content: __(\"24x7 Premium Support\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 3, content: __(\"User Portal / User Login\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n            ],\n        },\n        {\n            title: __(\"Content Widgets\", \"header-footer-elementor\"),\n            items: [\n                { id: 1, content: __(\"Advanced Heading\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 2, content: __(\"Business Hours\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 3, content: __(\"Content Toggle\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 4, content: __(\"Google Map\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 5, content: __(\"Image Gallery\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 6, content: __(\"Info Box\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 7, content: __(\"Modal Popup\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 8, content: __(\"Posts\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 9, content: __(\"Price List\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 10, content: __(\"Table\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 11, content: __(\"Info Card\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n                { id: 12, content: __(\"Video\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 13, content: __(\"Video Gallery\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 14, content: __(\"Basic Posts\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n                { id: 15, content: __(\"SVG Animator\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 16, content: __(\"Table of Contents\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 17, content: __(\"Counter\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n            ],\n        },\n        {\n            title: __(\"Creative Widgets\", \"header-footer-elementor\"),\n            items: [\n                { id: 1, content: __(\"Before After Slider\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 2, content: __(\"Countdown Timer\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 3, content: __(\"Welcome Music\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 4, content: __(\"Dual Color Heading\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 5, content: __(\"Fancy Heading\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 6, content: __(\"Hotspots\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 7, content: __(\"Login Form\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 8, content: __(\"Marketing Button\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 9, content: __(\"Multi Buttons\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 10, content: __(\"Off-Canvas\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 11, content: __(\"Retina Image\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 12, content: __(\"Team Member\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 13, content: __(\"Price Box\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 14, content: __(\"Timeline\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 15, content: __(\"User Registration Form\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 16, content: __(\"Retina Logo\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n            ],\n        },\n        {\n            title: __(\"Form Styler\", \"header-footer-elementor\"),\n            items: [\n                { id: 1, content: __(\"Contact Form 7 Styler\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 2, content: __(\"Gravity Form Styler\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 3, content: __(\"WP Fluent Forms Styler\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 4, content: __(\"WPForms Styler\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n            ],\n        },\n        {\n            title: __(\"SEO\", \"header-footer-elementor\"),\n            items: [\n                { id: 1, content: __(\"Business Reviews\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 2, content: __(\"How To Schema\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 3, content: __(\"FAQ Schema\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 4, content: __(\"Breadcrumbs\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n            ],\n        },\n        {\n            title: __(\"WooCommerce\", \"header-footer-elementor\"),\n            items: [\n                { id: 1, content: __(\"Woo – Add to Cart\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 2, content: __(\"Woo – Categories\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 3, content: __(\"Woo – Thank You Page\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 4, content: __(\"Woo – Checkout\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 5, content: __(\"Woo – Mini Cart\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 6, content: __(\"Woo – Products\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n\n                { id: 7, content: __(\"Woo – Product Grid\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n                { id: 8, content: __(\"Cart\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n            ],\n        },\n        {\n            title: __(\"Social\", \"header-footer-elementor\"),\n            items: [\n                { id: 1, content: __(\"Instagram Feed\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 2, content: __(\"X Feed\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 3, content: __(\"Social Share\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n            ],\n        },\n        {\n            title: __(\"Special Features\", \"header-footer-elementor\"),\n            items: [\n                { id: 1, content: __(\"Cross-Site Copy Paste\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 2, content: __(\"Presets\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 3, content: __(\"Particle Backgrounds\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 4, content: __(\"Party Propz\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 5, content: __(\"Scroll to Top\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n                { id: 6, content: __(\"Display Conditions\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 7, content: __(\"Sticky Header\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 8, content: __(\"UAE Duplicator\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n                { id: 9, content: __(\"Conditional Display\", \"header-footer-elementor\"), iconFree: false, iconPro: true },\n                { id: 10, content: __(\"Reading Progress Bar\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n            ],\n        },\n        {\n            title: __(\"Dynamic Header & Footer Widgets\", \"header-footer-elementor\"),\n            items: [\n                { id: 1, content: __(\"Site Logo\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n                { id: 2, content: __(\"Site Title\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n                { id: 3, content: __(\"Navigation Menu\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n                { id: 4, content: __(\"Page Title\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n                { id: 5, content: __(\"Search\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n                { id: 6, content: __(\"Site Tagline\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n                { id: 7, content: __(\"Copyright\", \"header-footer-elementor\"), iconFree: true, iconPro: false },\n            ],\n        },\n    ];\n\n\n\n    const renderIcon = (isAvailable) =>\n        isAvailable ? <Check color=\"#16A34A\" /> : <X color=\"#DC2626\" />;\n\n    const renderItems = (items) =>\n        items.map((item) => (\n            <div\n                key={item.id}\n                className=\"flex fle-row py-4 px-5 items-center h-4 justify-between rounded-lg shadow-container-item\"\n            >\n                <p className=\"text-sm text-text-secondary font-medium\">\n                    {item.content}\n                </p>\n                <div className=\"flex flex-row items-center justify-between\" style={{ gap: item.id === 10 && item.content === __(\"Navigation Menu\", \"header-footer-elementor\") ? \"10.7rem\" : \"12rem\" }}>\n                    <p className=\"text-sm text-text-primary font-medium\">\n                        {item.id === 10 && item.content === __(\"Navigation Menu\", \"header-footer-elementor\")\n                            ? item.iconPro\n                                ? __(\"Advanced\", \"header-footer-elementor\")\n                                : __(\"Basic\", \"header-footer-elementor\")\n                            : renderIcon(item.iconFree)}\n                    </p>\n                    <p\n                        className=\"text-sm text-text-primary font-medium\"\n                        style={{ marginRight: item.id === 10 && item.content === __(\"Navigation Menu\", \"header-footer-elementor\") ? \"25px\" : \"50px\" }}\n                    >\n                        {item.id === 10 && item.content === __(\"Navigation Menu\", \"header-footer-elementor\")\n                            ? item.iconPro\n                                ? __(\"Basic\", \"header-footer-elementor\")\n                                : __(\"Advanced\", \"header-footer-elementor\")\n                            : renderIcon(item.iconPro)}\n                    </p>\n                </div>\n            </div>\n        ));\n\n    return (\n        <div className=\"rounded-lg bg-white w-full mb-6\">\n            <div\n                className=\"flex items-center justify-between p-5\"\n                style={{ paddingBottom: \"0\" }}\n            >\n                <div className=\"flex flex-col\">\n                    <p className=\"m-0 text-xl font-semibold pt-4 pb-2 text-text-primary\">\n                        {__(\"Free Vs Pro\", \"header-footer-elementor\")}\n                    </p>\n                    <p className=\"m-0 text-sm font-normal pt-1 text-text-secondary\">\n                        {__(\"Ultimate Addons for Elementor Pro offers 50+ widgets and features!\", \"header-footer-elementor\")}\n                    </p>\n                    <p className=\"m-0 text-sm font-normal pt-1 text-text-secondary\">\n                        {__(\n                            \"Compare the popular features/widgets to find the best option for your website.\",\n                            \"header-footer-elementor\"\n                        )}\n                    </p>\n                </div>\n                <div className=\"flex items-center gap-x-2 mr-7 text-sm\">\n                    <Button\n                        iconPosition=\"right\"\n                        variant=\"primary\"\n                        style={{\n                            color: \"white\",\n                            borderColor: \"#6005FF\",\n                            transition: \"color 0.3s ease, border-color 0.3s ease\",\n                            backgroundColor: \"#6005ff\",\n                        }}\n                        className=\"hfe-remove-ring text-[#6005FF] text-base p-3.5\"\n                        onClick={() => {\n                            window.open(\n                                \"https://ultimateelementor.com/pricing/?utm_source=uae-lite-FreevsPro&utm_medium=get-uae-pro&utm_campaign=uae-lite-upgrade\",\n                                \"_blank\"\n                            );\n                        }}\n                    >\n                        {__(\"Upgrade Now\", \"header-footer-elementor\")}\n                    </Button>\n                </div>\n            </div>\n            <div className=\"px-4\">\n                <div className=\"flex flex-col space-y-2 pt-5\">\n                    {sections.map((section) => (\n                        <React.Fragment key={section.title}>\n                            <div\n                                className=\"flex fle-row py-4 px-5 items-center h-4 justify-between rounded-lg shadow-container-item\"\n                                style={{ backgroundColor: \"#F9FAFB\" }}\n                            >\n                                <p className=\"text-sm text-text-primary font-medium\">\n                                    {section.title}\n                                </p>\n                                <div\n                                    className=\"flex flex-row items-center\"\n                                    style={{ gap: \"12rem\" }}\n                                >\n                                    <p className=\"text-sm text-text-primary font-medium\">\n                                        {__(\"Free\", \"header-footer-elementor\")}\n                                    </p>\n                                    <p\n                                        className=\"text-sm text-text-primary font-medium\"\n                                        style={{ marginRight: \"50px\" }}\n                                    >\n                                        {__(\"Pro\", \"header-footer-elementor\")}\n                                    </p>\n                                </div>\n                            </div>\n                            {renderItems(section.items)}\n                        </React.Fragment>\n                    ))}\n                           <div className=\"flex items-center justify-center gap-x-2 \">\n\t\t\t\t\t<a\n\t\t\t\t\t\thref=\"https://ultimateelementor.com/pricing/?utm_source=uae-lite-dashboard&utm_medium=unlock-ultimate-feature&utm_campaign=uae-lite-upgrade\"\n\t\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\t\trel=\"noopener noreferrer\"\n\t\t\t\t\t\tclassName=\"text-sm font-normal text-text-primary cursor-pointer no-underline\"\n\t\t\t\t\t\tstyle={{ lineHeight: \"1rem\", paddingTop: \"10px\", paddingBottom: \"20px\", color: \"#6005FF\", textDecoration: \"none\", outline: \"none\", boxShadow: \"none\" }}\n\t\t\t\t\t\tonFocus={(e) => e.target.style.outline = \"none\"}\n\t\t\t\t\t\tonBlur={(e) => e.target.style.outline = \"none\"}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\"See all UAE Pro Features\", \"header-footer-elementor\")}\n\t\t\t\t\t\t<ArrowUpRight\n\t\t\t\t\t\t\tclassName=\"ml-1 font-semibold\"\n\t\t\t\t\t\t\tsize={14}\n                            color=\"#6005FF\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t</a>\n\t\t\t\t</div>\n                </div>\n            </div>\n        </div>\n    );\n};\n\nexport default FreevsPro;\n","import { Container } from \"@bsf/force-ui\";\nimport ExtendWebsite from \"@components/Dashboard/ExtendWebsite\";\nimport QuickAccess from \"@components/Dashboard/QuickAccess\";\nimport NavMenu from \"@components/NavMenu\";\nimport UpgradeNotice from \"@components/UpgradeNotice\";\nimport React from 'react'\nimport FreevsPro from \"./FreevsPro\";\nimport UltimateCompare from \"./UltimateCompare\";\nimport UltimateFeatures from \"@components/Dashboard/UltimateFeatures\";\n\n\nconst Upgrade = () => {\n\n    return (\n        <>\n            <UpgradeNotice />\n            <NavMenu />\n            <div>\n                <Container\n                    align=\"stretch\"\n                    className=\"p-6 flex-col lg:flex-row box-border\"\n                    containerType=\"flex\"\n                    direction=\"row\"\n                    gap=\"sm\"\n                    justify=\"start\"\n                    style={{\n                        width: \"100%\",\n                    }}\n                >\n                    <Container.Item\n                        className=\"p-2 hfe-65-width\"\n                        alignSelf=\"auto\"\n                        order=\"none\"\n                        shrink={0}\n                    >\n                        <FreevsPro />\n                    </Container.Item>\n                    <Container.Item\n                        className=\"p-2 w-full hfe-35-width hfe-sticky-right-sidebar\"\n                        shrink={1}\n                    >\n                        <UltimateFeatures />\n                        {/* <div className='pt-5'>\n                            <ExtendWebsite />\n                        </div> */}\n                        <div className='pt-4 mt-4'>\n                            <QuickAccess />\n                        </div>\n\n                    </Container.Item>\n                </Container>\n            </div>\n        </>\n    )\n}\n\nexport default Upgrade\n","import { cn as n } from \"../../utilities/functions.es.js\";\nconst d = (t, r, e, o) => {\n  const i = `absolute rounded-full transition-colors duration-500 ${e[o].dot}`;\n  return t === \"dot\" ? n(\n    i,\n    e[o].dot,\n    r ? \"bg-brand-primary-600\" : \"bg-text-tertiary\"\n  ) : t === \"number\" ? n(\n    i,\n    e[o].dot,\n    r ? \"text-brand-primary-600\" : \"text-text-tertiary\",\n    \"flex items-center justify-center\"\n  ) : t === \"icon\" ? n(\n    i,\n    r ? \"text-brand-primary-600\" : \"text-text-tertiary\",\n    \"flex items-center justify-center\"\n  ) : \"\";\n}, u = (t, r, e) => n(\n  \"relative flex items-center rounded-full justify-center transition-colors z-10 duration-500 ring-1\",\n  t ? \"ring-brand-primary-600\" : \"ring-border-subtle\",\n  r[e].ring\n), l = (t, r) => n(\n  \"rounded-full text-brand-primary-600 transition-colors duration-300\",\n  t[r].dot,\n  t[r].ring\n);\nexport {\n  l as completedStepCommonClasses,\n  d as getVariantClasses,\n  u as stepWrapperClasses\n};\n//# sourceMappingURL=utils.es.js.map\n","import { jsx as e, jsxs as N, Fragment as P } from \"react/jsx-runtime\";\nimport x from \"react\";\nimport { cn as c } from \"../../utilities/functions.es.js\";\nimport { Check as v, Plus as I } from \"lucide-react\";\nimport { completedStepCommonClasses as j, stepWrapperClasses as L, getVariantClasses as E } from \"./utils.es.js\";\nconst F = {\n  sm: {\n    dot: \"size-2.5\",\n    ring: \"size-5\",\n    numberIcon: \"size-5 text-tiny\",\n    icon: \"size-5\",\n    label: \"text-xs\"\n  },\n  md: {\n    dot: \"size-3\",\n    ring: \"size-6\",\n    numberIcon: \"size-6 text-sm\",\n    icon: \"size-6\",\n    label: \"text-sm\"\n  },\n  lg: {\n    dot: \"size-3.5\",\n    ring: \"size-7\",\n    numberIcon: \"size-7 text-md\",\n    icon: \"size-7\",\n    label: \"text-sm\"\n  }\n}, V = ({\n  variant: r = \"dot\",\n  size: f = \"sm\",\n  type: n = \"inline\",\n  currentStep: t = 1,\n  children: s,\n  className: l,\n  lineClassName: m = \"min-w-10\",\n  completedVariant: d = \"icon\",\n  completedIcon: o = /* @__PURE__ */ e(v, {}),\n  ...b\n}) => {\n  const p = x.Children.count(s);\n  t === -1 && (t = p + 1);\n  const a = x.Children.map(s, (u, i) => {\n    const g = i + 1 < t, h = i + 1 === t, C = i + 1 === p, y = {\n      isCompleted: g,\n      isCurrent: h,\n      sizeClasses: F,\n      size: f,\n      variant: r,\n      type: n,\n      isLast: C,\n      index: i,\n      lineClassName: m,\n      completedVariant: d,\n      completedIcon: o\n    };\n    return /* @__PURE__ */ e(x.Fragment, { children: x.isValidElement(u) ? x.cloneElement(u, y) : u }, i);\n  });\n  return /* @__PURE__ */ e(\n    \"div\",\n    {\n      className: c(\n        \"flex w-full\",\n        l,\n        n === \"inline\" ? \"items-center justify-between\" : \"\"\n      ),\n      ...b,\n      children: a\n    }\n  );\n}, z = ({\n  labelText: r = \"\",\n  icon: f = /* @__PURE__ */ e(I, {}),\n  isCurrent: n,\n  isCompleted: t,\n  className: s,\n  type: l,\n  variant: m,\n  sizeClasses: d,\n  size: o,\n  isLast: b,\n  index: p,\n  lineClassName: a,\n  completedVariant: u = \"icon\",\n  completedIcon: i = /* @__PURE__ */ e(v, {}),\n  ...g\n}) => {\n  const h = O(\n    m,\n    t,\n    n,\n    d,\n    o,\n    f,\n    p,\n    u,\n    i\n  ), C = {\n    lg: \"left-[calc(50%+14px)] right-[calc(-50%+14px)]\",\n    md: \"left-[calc(50%+12px)] right-[calc(-50%+12px)]\",\n    sm: \"left-[calc(50%+10px)] right-[calc(-50%+10px)]\"\n  }, y = {\n    lg: \"top-3.5\",\n    md: \"top-3\",\n    sm: \"top-2.5\"\n  }, w = () => {\n    if (r) {\n      const k = c(\n        d[o].label,\n        \"text-text-tertiary\",\n        n ? \"text-brand-primary-600\" : \"\",\n        \"break-word\",\n        // max width for inline and stack\n        l === \"stack\" ? \"mt-2 transform max-w-xs\" : \"mx-2 max-w-32\"\n      );\n      return /* @__PURE__ */ e(\"span\", { className: k, children: r });\n    }\n    return null;\n  }, S = () => {\n    if (!b) {\n      const k = c(\n        \"block\",\n        t ? \"border-brand-primary-600\" : \"border-border-subtle\",\n        a\n      );\n      return l === \"stack\" ? /* @__PURE__ */ e(\n        \"div\",\n        {\n          className: c(\n            \"relative\",\n            \"flex\",\n            \"border-solid\",\n            \"border-y\",\n            \"absolute\",\n            t ? \"border-brand-primary-600\" : \"border-border-subtle\",\n            y[o],\n            C[o]\n          ),\n          children: /* @__PURE__ */ e(\"span\", { className: \"block\" })\n        }\n      ) : /* @__PURE__ */ e(\"div\", { className: \"flex-1\", children: /* @__PURE__ */ e(\n        \"span\",\n        {\n          className: c(\n            \"mr-2 border-y border-solid\",\n            !r && \"ml-2\",\n            k\n          )\n        }\n      ) });\n    }\n    return null;\n  };\n  return l === \"stack\" ? /* @__PURE__ */ N(\"div\", { className: \"relative flex-1 justify-center\", children: [\n    /* @__PURE__ */ N(\n      \"div\",\n      {\n        className: c(\"flex items-center flex-col\", s),\n        ...g,\n        children: [\n          h,\n          w()\n        ]\n      }\n    ),\n    S()\n  ] }) : /* @__PURE__ */ N(P, { children: [\n    /* @__PURE__ */ N(\"div\", { className: c(\"flex items-center\", s), ...g, children: [\n      h,\n      w()\n    ] }),\n    S()\n  ] });\n};\nz.displayName = \"ProgressSteps.Step\";\nconst O = (r, f, n, t, s, l, m, d = \"icon\", o = /* @__PURE__ */ e(v, {})) => {\n  if (f)\n    return d === \"number\" ? /* @__PURE__ */ e(\n      \"span\",\n      {\n        className: c(\n          j(t, s),\n          \"flex items-center justify-center bg-brand-primary-600 text-text-on-color rounded-full\"\n        ),\n        children: m + 1\n      }\n    ) : /* @__PURE__ */ e(\"span\", { className: j(t, s), children: o });\n  const b = L(!!n, t, s), p = E(\n    r,\n    n,\n    t,\n    s\n  );\n  let a = null;\n  return r === \"number\" ? a = m + 1 : r === \"icon\" && l && (a = l), /* @__PURE__ */ e(\"span\", { className: b, children: /* @__PURE__ */ e(\"span\", { className: p, children: a }) });\n};\nV.Step = z;\nexport {\n  z as ProgressStep,\n  V as ProgressSteps,\n  O as createStepContent,\n  V as default\n};\n//# sourceMappingURL=progress-steps.es.js.map\n","import React, { useEffect, useState } from \"react\";\nimport { Container, Button, Switch, Title, Dialog, Input } from \"@bsf/force-ui\";\nimport { X, Check, Plus, ArrowRight, Package, CheckIcon } from \"lucide-react\";\nimport toast, { Toaster } from \"react-hot-toast\";\nimport { Link } from \"../../router/index\";\nimport { __ } from \"@wordpress/i18n\";\nimport { routes } from \"../../admin/settings/routes\";\n\nconst OnboardingBuild = ({ setCurrentStep, saveOnboardingAnalytics, stepsCompleted, stepsSkipped }) => {\n\tconst [isDialogOpen, setIsDialogOpen] = useState(false);\n\tconst [email, setEmail] = useState(\"\");\n\tconst [fname, setFname] = useState(\"\");\n\tconst [lname, setLname] = useState(\"\");\n\tconst [isActive, setIsActive] = useState(true);\n\tconst [errors, setErrors] = useState(\"\");\n\tconst [fnameerrors, setFnameErrors] = useState(\"\");\n\tconst [loading, setLoading] = useState(false);\n\n\tuseEffect(() => {\n\t\tsetEmail(hfeSettingsData.user_email);\n\t\tsetIsActive(hfeSettingsData.analytics_status === \"yes\");\n\n\t\t// Send onboarding analytics blob — user reached the success screen.\n\t\tconst completed = stepsCompleted?.current || JSON.parse( localStorage.getItem( 'hfe_onboarding_steps_completed' ) || '[]' );\n\t\tconst skipped   = stepsSkipped?.current || JSON.parse( localStorage.getItem( 'hfe_onboarding_steps_skipped' ) || '[]' );\n\t\tsaveOnboardingAnalytics( {\n\t\t\texitedEarly: false,\n\t\t\texitAtStep: '',\n\t\t\tcompletedSteps: completed,\n\t\t\tskippedSteps: skipped,\n\t\t} );\n\n\t\t// Clean up journey localStorage.\n\t\tlocalStorage.removeItem( 'hfe_onboarding_steps_completed' );\n\t\tlocalStorage.removeItem( 'hfe_onboarding_steps_skipped' );\n\n\t\thistory.pushState(null, \"\", window.location.href);\n\n\t\tconst handleBackButton = (event) => {\n\t\t\tevent.preventDefault();\n\t\t\tlocalStorage.setItem(\"currentStep\", \"2\");\n\t\t\twindow.location.reload();\n\t\t};\n\n\t\twindow.addEventListener(\"popstate\", handleBackButton);\n\n\t\treturn () => {\n\t\t\twindow.removeEventListener(\"popstate\", handleBackButton);\n\t\t};\n\t}, [hfeSettingsData.user_email]);\n\n\tconst handleSubmit = () => {\n\t\tlet hasError = false;\n\t\tconst emailRegex = /^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$/;\n\t\tif (!fname.trim()) {\n\t\t\tsetFnameErrors(\n\t\t\t\t__(\"This field is required\", \"header-footer-elementor\"),\n\t\t\t);\n\t\t\thasError = true;\n\t\t} else {\n\t\t\tsetFnameErrors(\"\");\n\t\t}\n\n\t\tif (!emailRegex.test(email)) {\n\t\t\tsetErrors(\n\t\t\t\t__(\n\t\t\t\t\t\"Entered email address is invalid!\",\n\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t),\n\t\t\t);\n\t\t\thasError = true;\n\t\t} else {\n\t\t\tsetErrors(\"\");\n\t\t}\n\n\t\tif (hasError) {\n\t\t\treturn;\n\t\t}\n\n\t\tsetErrors(\"\");\n\t\tsetFnameErrors(\"\");\n\t\tsetLoading(true);\n\t\tcallValidatedEmailWebhook(email, fname, lname);\n\t};\n\n\tconst handleSwitchChange = async () => {\n\t\tconst newIsActive = !isActive;\n\t\tsetIsActive(newIsActive);\n\n\t\ttry {\n\t\t\tconst response = await fetch(hfe_admin_data.ajax_url, {\n\t\t\t\tmethod: \"POST\",\n\t\t\t\theaders: {\n\t\t\t\t\t\"Content-Type\": \"application/x-www-form-urlencoded\",\n\t\t\t\t},\n\t\t\t\tbody: new URLSearchParams({\n\t\t\t\t\taction: \"save_analytics_option\", // WordPress action for your AJAX handler.\n\t\t\t\t\tuae_usage_optin: newIsActive ? \"yes\" : \"no\",\n\t\t\t\t\tnonce: hfe_admin_data.nonce, // Nonce for security.\n\t\t\t\t}),\n\t\t\t});\n\n\t\t\tconst result = await response.json();\n\n\t\t\tif (result.success) {\n\t\t\t\ttoast.success(\n\t\t\t\t\t__(\n\t\t\t\t\t\t\"Settings saved successfully!\",\n\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t),\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\ttoast.error(\n\t\t\t\t\t__(\"Failed to save settings!\", \"header-footer-elementor\"),\n\t\t\t\t);\n\t\t\t}\n\t\t} catch (error) {\n\t\t\ttoast.error(\n\t\t\t\t__(\"Failed to save settings!\", \"header-footer-elementor\"),\n\t\t\t);\n\t\t}\n\n\t\t// setIsLoading(false);\n\t};\n\n\tconst callValidatedEmailWebhook = (email, fname, lname) => {\n\t\tconst today = new Date().toISOString().split(\"T\")[0];\n\n\t\tconst params = new URLSearchParams({\n\t\t\temail: email,\n\t\t\tdate: today,\n\t\t\tfname: fname,\n\t\t\tlname: lname,\n\t\t});\n\n\t\tfetch(`/wp-json/hfe/v1/email-webhook/?${params.toString()}`, {\n\t\t\tmethod: \"POST\",\n\t\t\theaders: {\n\t\t\t\t\"Content-Type\": \"application/json\",\n\t\t\t\t\"X-WP-Nonce\": hfeSettingsData.hfe_nonce_action, // Use the correct nonce.\n\t\t\t},\n\t\t})\n\t\t\t.then((response) => {\n\t\t\t\tif (!response.ok) {\n\t\t\t\t\tthrow new Error(`HTTP error! Status: ${response.status}`);\n\t\t\t\t}\n\t\t\t\treturn response.json();\n\t\t\t})\n\t\t\t.then((data) => {\n\t\t\t\tif (\"success\" === data.message) {\n\t\t\t\t\tsetLoading(false);\n\t\t\t\t\twindow.location.href =\n\t\t\t\t\t\thfeSettingsData.onboarding_success_url;\n\t\t\t\t} else {\n\t\t\t\t\tsetLoading(false);\n\t\t\t\t\tconsole.warn(\"Unexpected webhook response:\", data);\n\t\t\t\t}\n\t\t\t})\n\t\t\t.catch((error) => {\n\t\t\t\tconsole.error(\"Error calling webhook:\", error);\n\t\t\t});\n\t};\n\n\treturn (\n\t\t<div\n\t\t\tclassName=\"bg-background-primary border-[0.5px] border-subtle rounded-xl shadow-sm mb-6 p-8\"\n\t\t\tstyle={{ width:\"672px\" }}\n\t\t>\n\t\t\t<div className=\"flex items-start hfe-display-flex\">\n\t\t\t\t{/* Left Content */}\n\t\t\t\t<div\n\t\t\t\t\tclassName=\"flex flex-col items-start\"\n\t\t\t\t\tstyle={{ paddingRight: \"35px\" }}\n\t\t\t\t>\n\t\t\t\t\t<h1\n\t\t\t\t\t\tclassName=\"text-text-primary m-0 mb-2\"\n\t\t\t\t\t\tstyle={{ fontSize: \"1.4rem\", lineHeight: \"1.3em\" }}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\"You’re All Set to Start Creating! 🚀\",\n\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t)}\n\t\t\t\t\t</h1>\n\t\t\t\t\t<span\n\t\t\t\t\t\tclassName=\"text-sm font-normal text-text-tertiary m-0 mb-4 \"\n\t\t\t\t\t\tstyle={{ lineHeight: \"1.6em\" }}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\"Ultimate Addons is ready to supercharge your Elementor workflow! Build faster, cleaner, and more creatively — with complete control over your site.\",\n\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t)}\n\t\t\t\t\t</span>\n\t\t\t\t\t<span className=\"font-semibold m-0 pt-2\">\n\t\t\t\t\t\t{__(\"What You Can Do Next:\", \"header-footer-elementor\")}\n\t\t\t\t\t</span>\n\n\t\t\t\t\t<ul\n\t\t\t\t\t\tclassName=\"font-normal\"\n\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\tfontSize: \"0.9rem\",\n\t\t\t\t\t\t\tlineHeight: \"1.6em\",\n\t\t\t\t\t\t\tcolor: \"#111827\",\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t<li\n\t\t\t\t\t\t\tclassName=\"font-normal\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\t\talignItems: \"center\",\n\t\t\t\t\t\t\t\tjustifyContent: \"flex-start\",\n\t\t\t\t\t\t\t\tgap: \"0.5rem\",\n\t\t\t\t\t\t\t\tcolor: \"#111827\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<CheckIcon color=\"#111827\" size={18} />\n\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\"Build a custom header\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li\n\t\t\t\t\t\t\tclassName=\"font-normal \"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\t\talignItems: \"center\",\n\t\t\t\t\t\t\t\tjustifyContent: \"flex-start\",\n\t\t\t\t\t\t\t\tgap: \"0.5rem\",\n\t\t\t\t\t\t\t\tcolor: \"#111827\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<CheckIcon color=\"#111827\" size={18} />\n\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\"Design your site footer\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li\n\t\t\t\t\t\t\tclassName=\"font-normal\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\t\talignItems: \"center\",\n\t\t\t\t\t\t\t\tjustifyContent: \"flex-start\",\n\t\t\t\t\t\t\t\tgap: \"0.5rem\",\n\t\t\t\t\t\t\t\tcolor: \"#111827\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<CheckIcon color=\"#111827\" size={18} />\n\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\"Create a new page\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<hr\n\t\t\t\t\t\tclassName=\"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle\"\n\t\t\t\t\t\tstyle={{ marginBottom: \"20px\", borderColor: \"#E5E7EB\" }}\n\t\t\t\t\t/>\n\t\t\t\t</div>\n\n\t\t\t\t{/* Right Content - Image */}\n\t\t\t\t<div className=\"\" style={{ textAlign: \"end\" }}>\n\t\t\t\t\t<img\n\t\t\t\t\t\talt=\"Build\"\n\t\t\t\t\t\tclassName=\"w-full object-contain\"\n\t\t\t\t\t\tstyle={{ height: \"130px\", width: \"160px\" }}\n\t\t\t\t\t\tsrc={`${hfeSettingsData.create_new}`}\n\t\t\t\t\t\tloading=\"lazy\"\n\t\t\t\t\t/>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<div className=\"flex flex-row pt-2 items-center justify-between gap-1 pb-4 hfe-display-flex\">\n\t\t\t\t<div className=\"flex items-center justify-start gap-3\">\n                    <Button\n\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\tvariant=\"outline\"\n\t\t\t\t\tclassName=\"hfe-remove-ring text-sm font-semibold\"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\t// backgroundColor: \"#fff\",\n\t\t\t\t\t\ttransition: \"background-color 0.3s ease\",\n\t\t\t\t\t}}\n\t\t\t\t\tonMouseEnter={(e) =>\n\t\t\t\t\t\t(e.currentTarget.style.backgroundColor = \"\")\n\t\t\t\t\t}\n\t\t\t\t\tonMouseLeave={(e) =>\n\t\t\t\t\t\t(e.currentTarget.style.backgroundColor = \"\")\n\t\t\t\t\t}\n\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\twindow.open(hfeSettingsData.hfe_post_url, \"_self\");\n\t\t\t\t\t}}\n\t\t\t\t>\n\t\t\t\t\t{__(\"Create New Header\", \"header-footer-elementor\")}\n\t\t\t\t</Button>\n\n\t\t\t\t   <Button\n\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\tvariant=\"outline\"\n\t\t\t\t\tclassName=\"hfe-remove-ring text-sm font-semibold\"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\t// backgroundColor: \"#fff\",\n\t\t\t\t\t\ttransition: \"background-color 0.3s ease\",\n\t\t\t\t\t}}\n\t\t\t\t\tonMouseEnter={(e) =>\n\t\t\t\t\t\t(e.currentTarget.style.backgroundColor = \"\")\n\t\t\t\t\t}\n\t\t\t\t\tonMouseLeave={(e) =>\n\t\t\t\t\t\t(e.currentTarget.style.backgroundColor = \"\")\n\t\t\t\t\t}\n\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\twindow.open(hfeSettingsData.hfe_post_url, \"_self\");\n\t\t\t\t\t}}\n\t\t\t\t>\n\t\t\t\t\t{__(\"Create New Footer\", \"header-footer-elementor\")}\n\t\t\t\t</Button>\n                </div>\n\t\t\t\t<Button\n\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\tvariant=\"outline\"\n\t\t\t\t\tclassName=\"hfe-remove-ring text-sm font-semibold\"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tcolor: \"\",\n\t\t\t\t\t\tborderColor: \"\",\n\t\t\t\t\t}}\n\t\t\t\t\tonMouseEnter={(e) =>\n\t\t\t\t\t\t(e.currentTarget.style.color = \"#000000\")\n\t\t\t\t\t}\n\t\t\t\t\tonMouseLeave={(e) =>\n\t\t\t\t\t\t(e.currentTarget.style.color = \"\") &&\n\t\t\t\t\t\t(e.currentTarget.style.borderColor = \"\")\n\t\t\t\t\t}\n\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\thfeSettingsData.elementor_page_url,\n\t\t\t\t\t\t\t\"_blank\",\n\t\t\t\t\t\t);\n\t\t\t\t\t}}\n\t\t\t\t>\n\t\t\t\t\t{__(\"Create New Page\", \"header-footer-elementor\")}\n\t\t\t\t</Button>\n\t\t\t</div>\n\t\t\t<Dialog\n\t\t\t\tdesign=\"simple\"\n\t\t\t\topen={isDialogOpen}\n\t\t\t\tsetOpen={setIsDialogOpen}\n\t\t\t>\n\t\t\t\t<Dialog.Backdrop />\n\t\t\t\t<Dialog.Panel>\n\t\t\t\t\t<Dialog.Header\n\t\t\t\t\t\tstyle={{ padding: \"30px\", marginBottom: \"0.5rem\" }}\n\t\t\t\t\t>\n\t\t\t\t\t\t<div className=\"flex items-center justify-between\">\n\t\t\t\t\t\t\t<div className=\"flex items-center justify-center\">\n\t\t\t\t\t\t\t\t<Dialog.Title\n\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\tfontSize: \"1.6rem\",\n\t\t\t\t\t\t\t\t\t\twidth: \"80%\",\n\t\t\t\t\t\t\t\t\t\tlineHeight: \"1.3em\",\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\"We have a special Reward just for you! 🎁\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t</Dialog.Title>\n\t\t\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\t\t\ticon={<X className=\"size-10\" />}\n\t\t\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\t\t\tsize=\"md\"\n\t\t\t\t\t\t\t\t\tvariant=\"ghost\"\n\t\t\t\t\t\t\t\t\tclassName=\"hfe-remove-ring self-start\"\n\t\t\t\t\t\t\t\t\tonClick={() => setIsDialogOpen(false)}\n\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\tmarginLeft: \"60px\",\n\t\t\t\t\t\t\t\t\t\tmarginBottom: \"20px\",\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<Dialog.Description\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\twidth: \"90%\",\n\t\t\t\t\t\t\t\tcolor: \"#64748B\",\n\t\t\t\t\t\t\t\tmarginTop: \"10px\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\"Enter your details to get special offer that we have for you and stay updated on UAE’s latest news and updates.\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</Dialog.Description>\n\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tclassName=\"flex w-full\"\n\t\t\t\t\t\t\tstyle={{ marginTop: \"15px\" }}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\tclassName=\"block\"\n\t\t\t\t\t\t\t\tstyle={{ width: \"50%\", paddingRight: \"13px\" }}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t<input\n\t\t\t\t\t\t\t\t\ttype=\"text\"\n\t\t\t\t\t\t\t\t\tplaceholder={__(\n\t\t\t\t\t\t\t\t\t\t\"First Name\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\tvalue={fname}\n\t\t\t\t\t\t\t\t\tclassName=\"h-12 border border-subtle px-2 w-full\"\n\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\tborderColor: \"#e0e0e0\", // Default border color.\n\t\t\t\t\t\t\t\t\t\toutline: \"none\", // Removes the default outline.\n\t\t\t\t\t\t\t\t\t\tboxShadow: \"none\", // Removes the default box shadow.\n\t\t\t\t\t\t\t\t\t\tmarginTop: \"5px\",\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\tonFocus={(e) =>\n\t\t\t\t\t\t\t\t\t\t(e.target.style.borderColor = \"#6005FF\")\n\t\t\t\t\t\t\t\t\t} // Apply focus color.\n\t\t\t\t\t\t\t\t\tonBlur={(e) =>\n\t\t\t\t\t\t\t\t\t\t(e.target.style.borderColor = \"#e0e0e0\")\n\t\t\t\t\t\t\t\t\t} // Revert to default color.\n\t\t\t\t\t\t\t\t\tonChange={(e) => {\n\t\t\t\t\t\t\t\t\t\tif (e && e.target) {\n\t\t\t\t\t\t\t\t\t\t\tsetFnameErrors(\"\");\n\t\t\t\t\t\t\t\t\t\t\tsetFname(e.target.value);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t{fnameerrors && (\n\t\t\t\t\t\t\t\t\t<span\n\t\t\t\t\t\t\t\t\t\tclassName=\"absolute color-text-danger text-xs text-sm font-normal\"\n\t\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\t\tcolor: \"#FF0000\",\n\t\t\t\t\t\t\t\t\t\t\tmarginTop: \"0px\",\n\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t{fnameerrors}\n\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div className=\"block\" style={{ width: \"50%\" }}>\n\t\t\t\t\t\t\t\t<input\n\t\t\t\t\t\t\t\t\ttype=\"text\"\n\t\t\t\t\t\t\t\t\tplaceholder={__(\n\t\t\t\t\t\t\t\t\t\t\"Last Name\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\tvalue={lname}\n\t\t\t\t\t\t\t\t\tclassName=\"h-12 border border-subtle px-2 w-full\"\n\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\tborderColor: \"#e0e0e0\", // Default border color.\n\t\t\t\t\t\t\t\t\t\toutline: \"none\", // Removes the default outline.\n\t\t\t\t\t\t\t\t\t\tboxShadow: \"none\", // Removes the default box shadow.\n\t\t\t\t\t\t\t\t\t\tmarginTop: \"5px\",\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\tonFocus={(e) =>\n\t\t\t\t\t\t\t\t\t\t(e.target.style.borderColor = \"#6005FF\")\n\t\t\t\t\t\t\t\t\t} // Apply focus color.\n\t\t\t\t\t\t\t\t\tonBlur={(e) =>\n\t\t\t\t\t\t\t\t\t\t(e.target.style.borderColor = \"#e0e0e0\")\n\t\t\t\t\t\t\t\t\t} // Revert to default color.\n\t\t\t\t\t\t\t\t\tonChange={(e) => {\n\t\t\t\t\t\t\t\t\t\tif (e && e.target) {\n\t\t\t\t\t\t\t\t\t\t\tsetLname(e.target.value);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\n\t\t\t\t\t\t<input\n\t\t\t\t\t\t\ttype=\"email\"\n\t\t\t\t\t\t\tplaceholder={__(\n\t\t\t\t\t\t\t\t\"Your Email Address\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\tvalue={email}\n\t\t\t\t\t\t\tclassName=\"h-12 border border-subtle px-2 w-full\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\tborderColor: \"#e0e0e0\", // Default border color\n\t\t\t\t\t\t\t\toutline: \"none\", // Removes the default outline\n\t\t\t\t\t\t\t\tboxShadow: \"none\", // Removes the default box shadow\n\t\t\t\t\t\t\t\tmarginTop: \"20px\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonFocus={(e) =>\n\t\t\t\t\t\t\t\t(e.target.style.borderColor = \"#6005FF\")\n\t\t\t\t\t\t\t} // Apply focus color.\n\t\t\t\t\t\t\tonBlur={(e) =>\n\t\t\t\t\t\t\t\t(e.target.style.borderColor = \"#e0e0e0\")\n\t\t\t\t\t\t\t} // Revert to default color.\n\t\t\t\t\t\t\tonChange={(e) => {\n\t\t\t\t\t\t\t\tif (e && e.target) {\n\t\t\t\t\t\t\t\t\tsetErrors(\"\");\n\t\t\t\t\t\t\t\t\tsetEmail(e.target.value);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t{errors && (\n\t\t\t\t\t\t\t<span\n\t\t\t\t\t\t\t\tclassName=\"absolute color-text-danger text-xs text-sm font-normal\"\n\t\t\t\t\t\t\t\tstyle={{ color: \"#FF0000\", marginTop: \"0px\" }}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{errors}\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t)}\n\n\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\ticon={\n\t\t\t\t\t\t\t\tloading ? (\n\t\t\t\t\t\t\t\t\t<LoaderCircle className=\"animate-spin\" />\n\t\t\t\t\t\t\t\t) : null\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\tvariant=\"primary\"\n\t\t\t\t\t\t\tclassName=\"bg-[#6005FF] hfe-remove-ring w-full mt-2\"\n\t\t\t\t\t\t\tdisabled={loading}\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\tbackgroundColor: \"#6005FF\",\n\t\t\t\t\t\t\t\ttransition: \"background-color 0.3s ease\",\n\t\t\t\t\t\t\t\tmarginTop: \"20px\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonMouseEnter={(e) =>\n\t\t\t\t\t\t\t\t(e.currentTarget.style.backgroundColor =\n\t\t\t\t\t\t\t\t\t\"#4B00CC\")\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tonMouseLeave={(e) =>\n\t\t\t\t\t\t\t\t(e.currentTarget.style.backgroundColor =\n\t\t\t\t\t\t\t\t\t\"#6005FF\")\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tonClick={handleSubmit}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{__(\"Submit\", \"header-footer-elementor\")}\n\t\t\t\t\t\t</Button>\n\t\t\t\t\t</Dialog.Header>\n\t\t\t\t</Dialog.Panel>\n\t\t\t</Dialog>\n\t\t</div>\n\t);\n};\n\nexport default OnboardingBuild;\n","import React, { useState } from 'react';\nimport { Container, Button, Dialog } from \"@bsf/force-ui\";\nimport apiFetch from '@wordpress/api-fetch';\nimport { __ } from '@wordpress/i18n';\n\nconst ExtendOnboardingWidget = ({\n    plugin,\n    setUpdateCounter, // Receive setUpdateCounter as a prop\n    onPluginSelect, // New prop to handle plugin selection\n}) => {\n    const {\n        path,\n        slug,\n        siteUrl,\n        icon,\n        type,\n        name,\n        zipUrl,\n        desc,\n        wporg,\n        isFree,\n        action,\n        status,\n        settings_url\n    } = plugin\n    const [isDialogOpen, setIsDialogOpen] = useState(false);\n    const [pluginData, setPluginData] = useState(null);\n    const [isChecked, setIsChecked] = useState(false);\n\n    const handleCheckboxChange = (e) => {\n        // Make sure e and e.target exist before accessing properties\n        const isCheckedValue = e.target.checked;\n        setIsChecked(isCheckedValue);\n        \n        // Call the parent component's function to track selected plugins\n        if (onPluginSelect) {\n            onPluginSelect({\n                slug,\n                path,\n                type,\n                name,\n                zipUrl,\n                status,\n                isChecked: isCheckedValue\n            });\n        }\n    };\n\n    const getAction = (status) => {\n        if (status === 'Activated') {\n            return 'site_redirect';\n        } else if (status === 'Installed') {\n            return 'hfe_recommended_plugin_activate';\n        }\n        return 'hfe_recommended_plugin_install';\n    };\n\n    const handlePluginAction = (e) => {\n        const action = e.currentTarget.dataset.action;\n        const formData = new window.FormData();\n        const currentPluginData = {\n            init: e.currentTarget.dataset.init,\n            type: e.currentTarget.dataset.type,\n            slug: e.currentTarget.dataset.slug,\n            name: e.currentTarget.dataset.pluginname,\n        };\n\n        switch (action) {\n            case 'hfe_recommended_plugin_activate':\n                // Confirmation only for theme activation\n                if (currentPluginData.type === 'theme') {\n                    // Show dialog for confirmation\n                    setPluginData(currentPluginData);\n                    setIsDialogOpen(true);\n                } else {\n                    // Directly activate for non-theme plugins\n                    activatePlugin(currentPluginData);\n                }\n                break;\n\n            case 'hfe_recommended_plugin_install':\n\n                // Installation process without any confirmation\n                formData.append(\n                    'action',\n                    currentPluginData.type === 'theme'\n                        ? 'hfe_recommended_theme_install'\n                        : 'hfe_recommended_plugin_install'\n                );\n                formData.append('_ajax_nonce', hfe_admin_data.installer_nonce);\n                formData.append('slug', currentPluginData.slug);\n\n                e.target.innerText = __('Installing...', 'header-footer-elementor');\n\n                apiFetch({\n                    url: hfe_admin_data.ajax_url,\n                    method: 'POST',\n                    body: formData,\n                }).then((data) => {\n                    if (data.success || data.errorCode === 'folder_exists') {\n                        e.target.innerText = __('Installed', 'header-footer-elementor');\n                        if( currentPluginData.type === 'theme' ) {\n                            // Change button state to \"Activate\" after successful installation\n                            const buttonElement = document.querySelector(`[data-slug=\"${currentPluginData.slug}\"]`);\n                            buttonElement.dataset.action = 'hfe_recommended_plugin_activate';\n                            e.target.innerText = __('Activate', 'header-footer-elementor');\n                        } else {\n                            activatePlugin(currentPluginData);\n                        }\n                    } else {\n                        e.target.innerText = __('Install', 'header-footer-elementor');\n                        alert(\n                            currentPluginData.type === 'theme'\n                                ? __('Theme installation failed. Please try again later.', 'header-footer-elementor')\n                                : __('Plugin installation failed. Please try again later.', 'header-footer-elementor')\n                        );\n                    }\n                });\n                break;\n\n            case 'site_redirect':\n                window.open(siteUrl, '_blank'); // Open siteUrl in a new tab\n                break;\n\n            default:\n                // Do nothing.\n                break;\n        }\n    };\n\n    const activatePlugin = (pluginData) => {\n        setIsDialogOpen(false);\n        const formData = new window.FormData();\n        formData.append('action', 'hfe_recommended_plugin_activate');\n        formData.append('nonce', hfe_admin_data.nonce);\n        formData.append('plugin', pluginData.init);\n        formData.append('type', pluginData.type);\n        formData.append('slug', pluginData.slug);\n\n        const buttonElement = document.querySelector(`[data-slug=\"${pluginData.slug}\"]`);\n        const spanElement = buttonElement.querySelector('span');\n\n        spanElement.innerText = __('Activating...', 'header-footer-elementor');\n\n        apiFetch({\n            url: hfe_admin_data.ajax_url,\n            method: 'POST',\n            body: formData,\n        }).then((data) => {            \n            if (data.success) {\n                if (spanElement) { // Check if spanElement is not null\n                    buttonElement.style.color = '#16A34A';\n                    buttonElement.dataset.action = 'site_redirect';\n                    buttonElement.classList.add('hfe-plugin-activated');\n                    spanElement.innerText = __('Activated', 'header-footer-elementor');\n                    window.open(settings_url, '_blank');\n                    setTimeout(() => {\n                        // Reload the section or recall the REST API\n                        setUpdateCounter(prev => prev + 1);\n                    }, 5000);\n                }\n            } else {\n                if ('theme' == pluginData.type) {\n                    // console.log(__(`Theme Activation failed, Please try again later.`, 'header-footer-elementor'));\n                } else {\n                    // console.log(__(`Plugin Activation failed, Please try again later.`, 'header-footer-elementor'));\n                }\n                const buttonElement = document.querySelector(`[data-slug=\"${pluginData.slug}\"]`);\n                if (buttonElement) { // Check if buttonElement is not null\n                    const spanElement = buttonElement.querySelector('span');\n                    if (spanElement) { // Check if spanElement is not null\n                        spanElement.innerText = __('Activate', 'header-footer-elementor');\n                    }\n                }\n            }\n        });\n    };\n\n    return (\n      <>\n      \t<style>\n\t\t\t\t{`\n                    .uae-role-checkbox {\n                        position: relative;\n                        width: 30px;\n                        height: 30px;\n                        -webkit-appearance: none;\n                        appearance: none;\n                        border: 2px solid #d1d5db; /* gray-300 */\n                        border-radius: 4px;\n                        cursor: pointer;\n                    }\n\n                    .uae-role-checkbox:checked {\n                        background-color: #240064;\n                        border-color: #0017E1;\n                    }\n\n                    .uae-role-checkbox:checked::after {\n                        content: '';\n                        position: absolute;\n                        top: 50%;\n                        left: 50%;\n                        width: 4px;\n                        height: 8px;\n                        border-right: 2px solid #fff;\n                        border-bottom: 2px solid #fff;\n                        transform: translate(-50%, -60%) rotate(45deg);\n                    }\n                `}\n\t\t\t</style>\n        <Container align=\"center\"\n            containerType=\"flex\"\n            direction=\"row\"\n            justify=\"between\"\n            gap=\"md\"\n        >\n            <div \n                className='flex items-center gap-x-3 flex-1 cursor-pointer'\n                onClick={(e) => {\n                    // Prevent checkbox toggle if clicking on the link\n                    if (e.target.closest('p.text-sm.font-medium')) {\n                        return;\n                    }\n                    // Toggle checkbox\n                    const newCheckedState = !isChecked;\n                    setIsChecked(newCheckedState);\n                    \n                    // Call the parent component's function to track selected plugins\n                    if (onPluginSelect) {\n                        onPluginSelect({\n                            slug,\n                            path,\n                            type,\n                            name,\n                            zipUrl,\n                            status,\n                            isChecked: newCheckedState\n                        });\n                    }\n                }}\n            >\n                <div className='h-6 w-6 flex-shrink-0'>\n                    <img\n                        src={icon}\n                        alt=\"Recommended Plugins/Themes\"\n                        className=\"w-full h-auto rounded\"\n                        style={{ width: \"24px\", height: \"24px\" }}\n                    />\n                </div>\n\n                <div className='flex flex-col pl-3 flex-1 min-w-0'>\n                    <p\n                        className='text-sm font-medium text-text-primary pb-1 m-0 cursor-pointer truncate'\n                        style={{ width: '230px'}}\n                        onClick={(e) => {\n                            e.stopPropagation();\n                            window.open(plugin.siteurl, '_blank');\n                        }}\n                    >{__(name, 'header-footer-elementor')}</p>\n                    <p className='text-sm font-normal text-text-tertiary m-0 truncate'>{__(desc, 'header-footer-elementor')}</p>\n                </div>\n                \n                <div className='flex-shrink-0 ml-2'>\n                    <input \n                        type=\"checkbox\"\n                        checked={isChecked}\n                        onChange={handleCheckboxChange}\n                        onClick={(e) => e.stopPropagation()}\n                        id={`plugin-${slug}`}\n                        className=\"uae-role-checkbox h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded\"\n                        data-plugin={zipUrl}\n                        data-type={type}\n                        data-pluginname={name}\n                        data-slug={slug}\n                        data-site={siteUrl}\n                        data-init={path}\n                        data-status={status}\n                    />\n                </div>\n            </div>\n            \n            <Dialog\n                design=\"simple\"\n                open={isDialogOpen}\n                setOpen={setIsDialogOpen}\n            >\n                <Dialog.Backdrop />\n                <Dialog.Panel>\n                    <Dialog.Header>\n                        <div className=\"flex items-center justify-between\">\n                            <Dialog.Title>\n                            {__('Activate Theme', 'header-footer-elementor')}\n                            </Dialog.Title>\n                        </div>\n                        <Dialog.Description>\n                            {__('Are you sure you want to switch your current theme to Astra?', 'header-footer-elementor')}\n                        </Dialog.Description>\n                    </Dialog.Header>\n                    <Dialog.Footer>\n                        <Button onClick={() => activatePlugin(pluginData)}>\n                            {__('Yes', 'header-footer-elementor')}\n                        </Button>\n                        <Button variant='outline' onClick={() => setIsDialogOpen(false)}>\n                            {__('Close', 'header-footer-elementor')}\n                        </Button>\n                    </Dialog.Footer>\n                </Dialog.Panel>\n            </Dialog>\n        </Container>\n      </>\n    )\n}\n\nexport default ExtendOnboardingWidget\n","/**\n * @license lucide-react v0.562.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst __iconNode = [[\"path\", { d: \"m15 18-6-6 6-6\", key: \"1wnfg3\" }]];\nconst ChevronLeft = createLucideIcon(\"chevron-left\", __iconNode);\n\nexport { __iconNode, ChevronLeft as default };\n//# sourceMappingURL=chevron-left.js.map\n","import React, { useEffect, useRef, useCallback } from \"react\";\nimport { Container, Topbar, Button, ProgressSteps } from \"@bsf/force-ui\";\nimport { Link } from \"../../router/link\";\nimport { routes } from \"../../admin/settings/routes\";\nimport { X } from \"lucide-react\";\nimport { __ } from \"@wordpress/i18n\";\nimport Build from \"./Build\";\nimport Create from \"./Create\";\nimport Welcome from \"./WelcomeNew\";\nimport Configure from \"./ExtendOnboarding\";\nimport Features from \"./Features\";\n\n// Full steps array including the hidden \"Success\" step\nconst allSteps = [\n    { label: \"\", component: Welcome },\n    { label: \"\", component: Configure },\n    { label: \"\", component: Features },\n    { label: \"\", component: Create }, // Hidden from progress bar\n];\n\n// Only visible steps for the top progress bar\nconst visibleSteps = allSteps.slice(0, 4); // Exclude \"Success\"\n\n// Step number → slug mapping.\nconst stepNames = { 1: 'welcome', 2: 'configure', 3: 'features', 4: 'success' };\n\n/**\n * Send the onboarding analytics blob to the server.\n *\n * @param {Object} data Analytics data with completed_steps, skipped_steps, etc.\n */\nconst saveOnboardingAnalytics = ( data ) => {\n    const body = new URLSearchParams();\n    body.append( 'action', 'hfe_save_onboarding_analytics' );\n    body.append( 'nonce', hfe_admin_data.nonce );\n    body.append( 'exited_early', data.exitedEarly ? 'true' : 'false' );\n    body.append( 'exit_at_step', data.exitAtStep || '' );\n\n    ( data.completedSteps || [] ).forEach( ( s ) => body.append( 'completed_steps[]', s ) );\n    ( data.skippedSteps || [] ).forEach( ( s ) => body.append( 'skipped_steps[]', s ) );\n\n    fetch( hfe_admin_data.ajax_url, {\n        method: 'POST',\n        headers: { 'Content-Type': 'application/x-www-form-urlencoded' },\n        body,\n    } ).catch( ( err ) => console.error( 'Onboarding analytics error:', err ) );\n};\n\nconst Onboarding = () => {\n    const [currentStep, setCurrentStep] = React.useState(() => {\n        const savedStep = localStorage.getItem(\"currentStep\");\n        return savedStep ? parseInt(savedStep, 10) : 1;\n    });\n\n    // Track which steps were completed vs skipped across the journey.\n    const stepsCompleted = useRef( JSON.parse( localStorage.getItem( 'hfe_onboarding_steps_completed' ) || '[]' ) );\n    const stepsSkipped   = useRef( JSON.parse( localStorage.getItem( 'hfe_onboarding_steps_skipped' ) || '[]' ) );\n\n    // Record a step as completed (localStorage only — no server call per step).\n    const markStepCompleted = useCallback( ( stepName ) => {\n        if ( ! stepsCompleted.current.includes( stepName ) ) {\n            stepsCompleted.current.push( stepName );\n            localStorage.setItem( 'hfe_onboarding_steps_completed', JSON.stringify( stepsCompleted.current ) );\n        }\n    }, [] );\n\n    // Record a step as skipped (localStorage only).\n    const markStepSkipped = useCallback( ( stepName ) => {\n        if ( ! stepsSkipped.current.includes( stepName ) ) {\n            stepsSkipped.current.push( stepName );\n            localStorage.setItem( 'hfe_onboarding_steps_skipped', JSON.stringify( stepsSkipped.current ) );\n        }\n    }, [] );\n\n    useEffect(() => {\n        localStorage.setItem(\"currentStep\", currentStep);\n    }, [currentStep]);\n\n    useEffect(() => {\n        const timer = setTimeout(() => {\n            localStorage.removeItem(\"currentStep\");\n        }, 180000); // 3 minutes\n\n        return () => clearTimeout(timer);\n    }, []);\n\n    // \"Exit Guided Setup\" — send blob with early exit flag, then clean up.\n    // Skip on step 4 (success) because the blob was already saved when Create mounted.\n    const handleExit = () => {\n        if ( currentStep >= 4 ) {\n            return;\n        }\n        saveOnboardingAnalytics( {\n            exitedEarly: true,\n            exitAtStep: stepNames[ currentStep ] || '',\n            completedSteps: stepsCompleted.current,\n            skippedSteps: stepsSkipped.current,\n        } );\n        localStorage.removeItem( 'hfe_onboarding_steps_completed' );\n        localStorage.removeItem( 'hfe_onboarding_steps_skipped' );\n    };\n\n    const StepComponent = allSteps[currentStep - 1]?.component;\n\n    return (\n        <div>\n            <div className=\"w-full\">\n                <div className=\"flex flex-col items-center justify-center\" style={{ marginTop: \"-38px\", marginBottom: \"24px\" }}>\n                    <Topbar className=\"bg-none\" style={{ background: \"none\" }}>\n                        <Topbar.Left>\n                            <Topbar.Item>\n                                {hfeSettingsData.icon_svg && (\n                                    <Link to={routes.dashboard.path}>\n                                        <img\n                                            src={`${hfeSettingsData.icon_new}`}\n                                            alt=\"Logo\"\n                                            className=\"cursor-pointer\"\n                                            style={{ height: \"35px\" }}\n                                        />\n                                    </Link>\n                                )}\n                            </Topbar.Item>\n                        </Topbar.Left>\n                        <Topbar.Middle>\n                            <Topbar.Item>\n                                <ProgressSteps\n                                    currentStep={Math.min(currentStep, visibleSteps.length)}\n                                    className=\"uae-steps\"\n                                    variant=\"number\"\n                                    completedVariant=\"number\"\n                                >\n                                    {visibleSteps.map((step, index) => (\n                                        <ProgressSteps.Step\n                                            key={index}\n                                            className=\"font-bold\"\n                                            labelText={step.label}\n                                            size=\"md\"\n                                        />\n                                    ))}\n                                </ProgressSteps>\n                            </Topbar.Item>\n                        </Topbar.Middle>\n                        <Topbar.Right>\n                            <Topbar.Item>\n                                <Link\n                                    className=\"hfe-remove-ring\"\n                                    to={routes.dashboard.path}\n                                    onClick={handleExit}\n                                >\n                               <div className=\"flex items-center cursor-pointer justify-center gap-1\">\n                                 <p style={{ fontSize: '0.9rem', color: '#111827' }}>{__('Exit Guided Setup', 'header-footer-elementor')}</p>\n                                    <Button\n                                        icon={<X className=\"size-4\" />}\n                                        iconPosition=\"right\"\n                                        size=\"xs\"\n                                        variant=\"ghost\"\n                                        className=\"hfe-remove-ring\"\n                                    ></Button>\n                               </div>\n                                </Link>\n                            </Topbar.Item>\n                        </Topbar.Right>\n                    </Topbar>\n                </div>\n            </div>\n\n            <div className=\"flex items-center justify-center\">\n                {StepComponent && (\n                    <StepComponent\n                        currentStep={currentStep}\n                        setCurrentStep={setCurrentStep}\n                        saveOnboardingAnalytics={saveOnboardingAnalytics}\n                        markStepCompleted={markStepCompleted}\n                        markStepSkipped={markStepSkipped}\n                        stepsCompleted={stepsCompleted}\n                        stepsSkipped={stepsSkipped}\n                    />\n                )}\n            </div>\n        </div>\n    );\n};\n\nexport default Onboarding;\n","import React from \"react\";\nimport { Button } from \"@bsf/force-ui\";\nimport { __ } from \"@wordpress/i18n\";\nimport { X, Check, Plus, ArrowRight, Package, CheckIcon } from \"lucide-react\";\n\nconst Welcome = ({ setCurrentStep, markStepCompleted }) => {\n\treturn (\n\t\t<div className=\"bg-background-primary border-[0.5px] items-start justify-center border-subtle rounded-xl shadow-sm p-8  flex flex-col\">\n\t\t\t<div className=\"px-1\">\n\t\t\t\t<div className=\"flex flex-col\">\n\t\t\t\t\t<h1\n\t\t\t\t\t\tclassName=\"text-text-primary m-0 mb-2 hfe-65-width\"\n\t\t\t\t\t\tstyle={{ fontSize: \"30px\", lineHeight: \"1.3em\" }}\n\t\t\t\t\t>\n\t\t\t\t\t\t<span className=\"block\">\n\t\t\t\t\t\t\t{__(\"Welcome to UAE\", \"header-footer-elementor\")}\n\t\t\t\t\t\t</span>\n\t\t\t\t\t</h1>\n\t\t\t\t\t<span\n\t\t\t\t\t\tclassName=\"text-md font-medium m-0 mb-4\"\n\t\t\t\t\t\tstyle={{ lineHeight: \"1.5em\", color: \"#111827\" }}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\"Your Ultimate Elementor Addons to build modern Elementor Websites.\",\n\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t)}\n\t\t\t\t\t</span>\n\t\t\t\t</div>\n\t\t\t\t<iframe\n\t\t\t\t\twidth=\"500\"\n\t\t\t\t\theight=\"280\"\n\t\t\t\t\tsrc=\"https://www.youtube.com/embed/YqWd3VYlxcY?modestbranding=1&showinfo=0&rel=0&controls=1\"\n\t\t\t\t\tframeBorder=\"0\"\n\t\t\t\t\tstyle={{ borderRadius: \"8px\" }}\n\t\t\t\t\tallow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\n\t\t\t\t\tallowFullScreen\n\t\t\t\t/>\n\n\t\t\t\t<ul\n\t\t\t\t\tclassName=\"list-none font-normal \"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tfontSize: \"0.9rem\",\n\t\t\t\t\t\tlineHeight: \"1.6em\",\n\t\t\t\t\t\tpaddingBottom: \"0.5rem\",\n\t\t\t\t\t\tcolor: \"#111827\",\n\t\t\t\t\t}}\n\t\t\t\t>\n\t\t\t\t\t<li\n\t\t\t\t\t\tclassName=\"none   \"\n\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\talignItems: \"center\",\n\t\t\t\t\t\t\tjustifyContent: \"flex-start\",\n\t\t\t\t\t\t\tgap: \"0.5rem\",\n\t\t\t\t\t\t\tcolor: \"#111827\",\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t<CheckIcon color=\"#111827\" size={18} />\n\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\"No bloat - disable unused widgets with one click\",\n\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t)}\n\t\t\t\t\t</li>\n\t\t\t\t\t<li\n\t\t\t\t\t\tclassName=\"none \"\n\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\talignItems: \"center\",\n\t\t\t\t\t\t\tjustifyContent: \"flex-start\",\n\t\t\t\t\t\t\tgap: \"0.5rem\",\n\t\t\t\t\t\t\tcolor: \"#111827\",\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t<CheckIcon color=\"#111827\" size={18} />\n\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\"Design headers & footers exactly where you want them\",\n\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t)}\n\t\t\t\t\t</li>\n\t\t\t\t\t<li\n\t\t\t\t\t\tclassName=\"none \"\n\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\talignItems: \"center\",\n\t\t\t\t\t\t\tjustifyContent: \"flex-start\",\n\t\t\t\t\t\t\tgap: \"0.5rem\",\n\t\t\t\t\t\t\tcolor: \"#111827\",\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t<CheckIcon color=\"#111827\" size={18} />\n\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\"Reliable support from experts when you need it\",\n\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t)}\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<hr\n\t\t\t\t\tclassName=\"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle\"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tmarginTop: \"20px\",\n\t\t\t\t\t\tmarginBottom: \"20px\",\n\t\t\t\t\t\tborderColor: \"#E5E7EB\",\n\t\t\t\t\t}}\n\t\t\t\t/>\n\t\t\t\t<Button\n\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\tvariant=\"primary\"\n\t\t\t\t\tclassName=\"bg-[#5C2EDE] hfe-remove-ring p-3 px-5 font-bold mt-2\"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tbackgroundColor: \"#5C2EDE\",\n\t\t\t\t\t\ttransition: \"background-color 0.3s ease\",\n\t\t\t\t\t}}\n\t\t\t\t\tonMouseEnter={(e) =>\n\t\t\t\t\t\t(e.currentTarget.style.backgroundColor = \"#5C2EDE\")\n\t\t\t\t\t}\n\t\t\t\t\tonMouseLeave={(e) =>\n\t\t\t\t\t\t(e.currentTarget.style.backgroundColor = \"#5C2EDE\")\n\t\t\t\t\t}\n\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\tmarkStepCompleted( 'welcome' );\n\t\t\t\t\t\tsetCurrentStep(2);\n\t\t\t\t\t}}\n\t\t\t\t>\n\t\t\t\t\t{__(\"Let's Get Started\", \"header-footer-elementor\")}\n\t\t\t\t</Button>\n\t\t\t</div>\n\t\t</div>\n\t);\n};\n\nexport default Welcome;\n","import React, { useState, useEffect } from \"react\";\nimport { Container, Skeleton, Button, Title } from \"@bsf/force-ui\";\nimport apiFetch from \"@wordpress/api-fetch\";\nimport { __ } from \"@wordpress/i18n\";\nimport ExtendOnboardingWidget from \"./ExtendOnboardingWidget\";\nimport { ChevronLeft, ChevronRight, ArrowRight } from \"lucide-react\";\nimport toast, { Toaster } from 'react-hot-toast';\n\nconst ExtendOnboarding = ({ setCurrentStep, markStepCompleted, markStepSkipped }) => {\n\tconst [plugins, setPlugins] = useState([]);\n\tconst [loading, setLoading] = useState(true);\n\tconst [updateCounter, setUpdateCounter] = useState(0);\n\tconst [allInstalled, setAllInstalled] = useState(false);\n\tconst [isActive, setIsActive] = useState(true);\n\tconst [selectedPlugins, setSelectedPlugins] = useState({});\n\tconst [formData, setFormData] = useState({\n\t\tfirstName: hfeSettingsData.user_fname ? hfeSettingsData.user_fname : \"\",\n\t\tlastName: hfeSettingsData.user_lname ? hfeSettingsData.user_lname : \"\",\n\t\temail: hfeSettingsData.user_email ? hfeSettingsData.user_email : \"\",\n\t\tdomain: hfeSettingsData.siteurl ? hfeSettingsData.siteurl : \"\",\n\t});\n\tconst [isFormSubmitted, setIsFormSubmitted] = useState(() => {\n\t\treturn localStorage.getItem(\"uaeFormSubmitted\") === \"true\";\n\t});\n\tconst [fieldErrors, setFieldErrors] = useState({});\n\n\tconst handleInputChange = (name, value) => {\n\t\tsetFieldErrors((prevErrors) => {\n\t\t\t// If there's an error for this field, remove it\n\t\t\tif (prevErrors[name]) {\n\t\t\t\tconst { [name]: removed, ...rest } = prevErrors;\n\t\t\t\treturn rest;\n\t\t\t}\n\t\t\treturn prevErrors; // No change if no error on this field\n\t\t});\n\t\tsetFormData((prev) => ({\n\t\t\t...prev,\n\t\t\t[name]: value,\n\t\t}));\n\t};\n\n\tuseEffect(() => {\n\t\t// Default consent to yes for new users. Returning users with an explicit 'no' keep their preference.\n\t\tsetIsActive(hfeSettingsData.analytics_status !== 'no');\n\t\tconst fetchSettings = async () => {\n\t\t\t\n\t\t\tsetLoading(true);\n\t\t\ttry {\n\t\t\t\tconst data = await apiFetch({\n\t\t\t\t\tpath: \"/hfe/v1/recommended-plugins\",\n\t\t\t\t\theaders: {\n\t\t\t\t\t\t\"Content-Type\": \"application/json\",\n\t\t\t\t\t\t\"X-WP-Nonce\": hfeSettingsData.hfe_nonce_action,\n\t\t\t\t\t},\n\t\t\t\t});\n\t\t\t\tconst pluginsData = convertToPluginsArray(data);\n\n\t\t\t\t// Filter out plugins that are already installed or activated\n\t\t\t\tconst uninstalledPlugins = pluginsData.filter(\n\t\t\t\t\t(plugin) =>\n\t\t\t\t\t\t!plugin.is_installed &&\n\t\t\t\t\t\tplugin.status !== \"Activated\" &&\n\t\t\t\t\t\tplugin.status !== \"Installed\",\n\t\t\t\t);\n\n\t\t\t\tsetPlugins(uninstalledPlugins);\n\n\t\t\t\t// If there are no uninstalled plugins, set allInstalled to true\n\t\t\t\tsetAllInstalled(uninstalledPlugins.length === 0);\n\t\t\t} catch (err) {\n\t\t\t\tconsole.error(\"Error fetching plugins:\", err);\n\t\t\t} finally {\n\t\t\t\tsetLoading(false);\n\t\t\t}\n\t\t};\n\n\t\tfetchSettings();\n\t}, [updateCounter]);\n\n\tconst handleNotifyChange = async () => {\n\n        const newIsActive = !isActive;\n        setIsActive(newIsActive);\n\n        try {\n            const response = await fetch(hfe_admin_data.ajax_url, {\n                method: 'POST',\n                headers: {\n                    'Content-Type': 'application/x-www-form-urlencoded',\n                },\n                body: new URLSearchParams({\n                    action: 'save_analytics_option', // WordPress action for your AJAX handler.\n                    uae_usage_optin: newIsActive ? 'yes' : 'no',\n                    nonce: hfe_admin_data.nonce // Nonce for security.\n                })\n            });\n\n            const result = await response.json();\n\n\t\t\tif (result.success) {\n                toast.success(__('Settings saved successfully!', 'header-footer-elementor'));\n\t\t\t\thfeSettingsData.analytics_status = newIsActive ? 'yes' : 'no';\n            } else {\n                toast.error(__('Failed to save settings!', 'header-footer-elementor'));\n            }\n        } catch (error) {\n            toast.error(__('Failed to save settings!', 'header-footer-elementor'));\n        }\n\n        // setIsLoading(false);\n    };\n\n\tfunction convertToPluginsArray(data) {\n\t\treturn Object.keys(data).map((key) => ({\n\t\t\tpath: key,\n\t\t\t...data[key],\n\t\t}));\n\t}\n\n\t// Handle plugin selection from checkbox\n\tconst handlePluginSelect = (pluginData) => {\n\t\tsetSelectedPlugins((prev) => ({\n\t\t\t...prev,\n\t\t\t[pluginData.slug]: {\n\t\t\t\t...pluginData,\n\t\t\t\tselected: pluginData.isChecked,\n\t\t\t},\n\t\t}));\n\t};\n\n\t// Bulk install selected plugins in the background\n\tconst installSelectedPluginsInBackground = async () => {\n\t\t// Get all selected plugins (they're already filtered to be uninstalled only)\n\t\tconst pluginsToInstall = Object.values(selectedPlugins).filter(\n\t\t\t(plugin) => plugin.selected,\n\t\t);\n\n\t\tif (pluginsToInstall.length === 0) {\n\t\t\t// If no plugins to install, just return\n\t\t\treturn;\n\t\t}\n\n\t\t// Start installation in background\n\t\tsetTimeout(async () => {\n\t\t\t// Install plugins one by one\n\t\t\tfor (const plugin of pluginsToInstall) {\n\t\t\t\tconst formData = new window.FormData();\n\t\t\t\tformData.append(\n\t\t\t\t\t\"action\",\n\t\t\t\t\tplugin.type === \"theme\"\n\t\t\t\t\t\t? \"hfe_recommended_theme_install\"\n\t\t\t\t\t\t: \"hfe_recommended_plugin_install\",\n\t\t\t\t);\n\t\t\t\tformData.append(\"_ajax_nonce\", hfe_admin_data.installer_nonce);\n\t\t\t\tformData.append(\"slug\", plugin.slug);\n\n\t\t\t\ttry {\n\t\t\t\t\tconst response = await apiFetch({\n\t\t\t\t\t\turl: hfe_admin_data.ajax_url,\n\t\t\t\t\t\tmethod: \"POST\",\n\t\t\t\t\t\tbody: formData,\n\t\t\t\t\t});\n\n\t\t\t\t\tif (\n\t\t\t\t\t\t!response.success &&\n\t\t\t\t\t\tresponse.errorCode !== \"folder_exists\"\n\t\t\t\t\t) {\n\t\t\t\t\t\tconsole.error(\n\t\t\t\t\t\t\t`Failed to install ${plugin.name}:`,\n\t\t\t\t\t\t\tresponse,\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t} catch (error) {\n\t\t\t\t\tconsole.error(`Error installing ${plugin.name}:`, error);\n\t\t\t\t}\n\t\t\t}\n\t\t}, 0);\n\t};\n\n\t// Call webhook with email data\n\tconst callEmailWebhook = (email, firstName, lastName, isActive, domain) => {\n\t\t// Only proceed if we have an email\n\t\tif (!email) {\n\t\t\t// Immediately proceed to next step if no email\n\t\t\tsetCurrentStep(3);\n\t\t\treturn;\n\t\t}\n\n\t\tconst today = new Date().toISOString().split('T')[0];\n\t\t// Get the domain if not provided\n\t\tconst siteDomain = domain || window.location.hostname;\n\n\t\tconst params = new URLSearchParams({\n\t\t\temail: email,\n\t\t\tdate: today,\n\t\t\tfname: firstName || '',\n\t\t\tlname: lastName || '',\n\t\t\tisActive: isActive ? 'yes' : 'no',\n\t\t});\n\n\t\tif (isActive) {\n\t\t\tparams.append('domain', siteDomain);\n\t\t}\n\n\t\tfetch(`/wp-json/hfe/v1/email-webhook/?${params.toString()}`, {\n\t\t\tmethod: 'POST',\n\t\t\theaders: {\n\t\t\t\t'Content-Type': 'application/json',\n\t\t\t\t'X-WP-Nonce': hfeSettingsData.hfe_nonce_action,\n\t\t\t},\n\t\t})\n\t\t.then((response) => {\n\t\t\tif (!response.ok) {\n\t\t\t\tthrow new Error(`HTTP error! Status: ${response.status}`);\n\t\t\t}\n\t\t\treturn response.json();\n\t\t})\n\t\t.then(data => {\n\t\t\tif (\"success\" === data.message) {\n\t\t\t\t// Proceed to next step after successful webhook call\n\t\t\t\tsetCurrentStep(3);\n\t\t\t} else {\n\t\t\t\tconsole.warn(\"Unexpected webhook response:\", data);\n\t\t\t\t// Still proceed to next step even if webhook response is unexpected\n\t\t\t\tsetCurrentStep(3);\n\t\t\t}\n\t\t})\n\t\t.catch(error => {\n\t\t\tconsole.error('Error calling webhook:', error);\n\t\t\t// Proceed to next step even if there's an error\n\t\t\tsetCurrentStep(3);\n\t\t});\n\t};\n\n\t// Save the current analytics consent state to the database.\n\tconst saveAnalyticsConsent = () => {\n\t\tfetch(hfe_admin_data.ajax_url, {\n\t\t\tmethod: 'POST',\n\t\t\theaders: { 'Content-Type': 'application/x-www-form-urlencoded' },\n\t\t\tbody: new URLSearchParams({\n\t\t\t\taction: 'save_analytics_option',\n\t\t\t\tuae_usage_optin: isActive ? 'yes' : 'no',\n\t\t\t\tnonce: hfe_admin_data.nonce,\n\t\t\t}),\n\t\t}).catch(() => {});\n\t};\n\n\t// Handle next button click\n\tconst handleNextClick = () => {\n\n\t\tif(  localStorage.getItem(\"uaeFormSubmitted\") === \"true\" && showPluginsSection )\n\t\t{\n\t\t\t// Start installation in background only if there are plugins to install\n\t\t\tif (plugins.length > 0) {\n\t\t\t\tinstallSelectedPluginsInBackground();\n\t\t\t}\n\t\t\tmarkStepCompleted( 'configure' );\n\t\t\tsetCurrentStep(3);\n\t\t}\n\t\telse{\n\t\t\tconst emailRegex = /^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$/;\n\t\t\tconst errors = {};\n\t\t\t\n\t\t\t// Check if fields are empty\n\t\t\tif (!formData.email?.trim()) {\n\t\t\t\terrors.email = __('This field is required', 'header-footer-elementor');\n\t\t\t} else if (!emailRegex.test(formData.email.trim())) {\n\t\t\t\terrors.email = __('Please enter a valid email address', 'header-footer-elementor');\n\t\t\t}\n\t\t\t\n\t\t\tif (!formData.firstName?.trim()) {\n\t\t\t\terrors.firstName = __('This field is required', 'header-footer-elementor');\n\t\t\t}\n\t\t\t\n\t\t\t// If there are errors, set them and return\n\t\t\tif (Object.keys(errors).length > 0) {\n\t\t\t\tsetFieldErrors(errors);\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t\n\t\t\t// Clear any previous errors\n\t\t\tsetFieldErrors({});\n\t\t\t\n\t\t\t// Start installation in background only if there are plugins to install\n\t\t\tif (plugins.length > 0) {\n\t\t\t\tinstallSelectedPluginsInBackground();\n\t\t\t}\n\t\t\t// Call email webhook\n\t\t\tcallEmailWebhook(formData.email, formData.firstName, formData.lastName, isActive, formData.domain);\n\t\t\tlocalStorage.setItem(\"uaeFormSubmitted\", \"true\");\n\t\t\tsetIsFormSubmitted(true);\n\t\t\tsaveAnalyticsConsent();\n\t\t\tmarkStepCompleted( 'configure' );\n\t\t\tsetCurrentStep(3);\n\t\t}\n\t\t\n\t};\n\n\t// If all plugins are installed or there are no plugins to show, only hide the plugins section\n\tconst showPluginsSection = !allInstalled && (loading || plugins.length > 0);\n\n\treturn (\n\t\t<>\n\t\t\t<style>\n\t\t\t\t{`\n                    .uae-role-checkbox {\n                        position: relative;\n                        width: 30px;\n                        height: 30px;\n                        -webkit-appearance: none;\n                        appearance: none;\n                        border: 2px solid #d1d5db; /* gray-300 */\n                        border-radius: 4px;\n                        cursor: pointer;\n                    }\n\n                    .uae-role-checkbox:focus {\n                        outline: none;\n                    }\n\n                    .uae-role-checkbox:checked {\n                        background-color: #5C2EDE !important; /* brand-primary-600 */\n                        border-color: #0017E1;\n                    }\n\n                    .uae-role-checkbox:checked::after {\n                        content: '';\n                        position: absolute;\n                        top: 50%;\n                        left: 50%;\n                        width: 4px;\n                        height: 8px;\n                        border-right: 2px solid #fff;\n                        border-bottom: 2px solid #fff;\n                        transform: translate(-50%, -60%) rotate(45deg);\n                    }\n\n\t\t\t\t\t.uae-error-field {\n\t\t\t\t\t\tborder-color: #dc3545 !important;\n\t\t\t\t\t}\n\n\t\t\t\t\t.uae-error-message {\n\t\t\t\t\t\tcolor: #dc3545;\n\t\t\t\t\t\tfont-size: 0.875rem;\n\t\t\t\t\t\tmargin-top: 0.25rem;\n\t\t\t\t\t}\n                `}\n\t\t\t</style>\n\t\t\t<div\n\t\t\t\tclassName=\"bg-background-primary border-[0.5px] items-start justify-center border-subtle p-4 rounded-xl shadow-sm mb-6 flex flex-col\"\n\t\t\t\tstyle={{ width: \"42.625rem\" }}\n\t\t\t>\n\t\t\t\t{showPluginsSection && (\n\t\t\t\t\t<div className=\"rounded-lg bg-white w-full\">\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tclassName=\"flex flex-col items-start justify-between\"\n\t\t\t\t\t\t\tstyle={{ paddingTop: \"1rem\", paddingLeft: \"1rem\", paddingRight: \"1rem\" }}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<p\n\t\t\t\t\t\t\t\tclassName=\"text-text-primary m-0 mb-2 hfe-65-width\"\n\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\tfontSize: \"24px\",\n\t\t\t\t\t\t\t\t\tlineHeight: \"1.3em\",\n\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\"Recommended Essentials\",\n\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t<span\n\t\t\t\t\t\t\t\tclassName=\"text-md font-normal text-text-secondary m-0 mb-2\"\n\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\tlineHeight: \"1.5em\",\n\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\"These free plugins add essential features to your website and help speed up your workflow. Select the plugins you want to install.\",\n\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t<div className=\"flex items-center gap-x-2 mr-7\"></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tclassName=\"flex flex-col rounded-lg\"\n\t\t\t\t\t\t\tstyle={{ backgroundColor: \"white\", paddingTop: \"1rem\", paddingLeft: \"1rem\", paddingRight: \"1rem\" }}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{loading ? (\n\t\t\t\t\t\t\t\t<Container\n\t\t\t\t\t\t\t\t\talign=\"stretch\"\n\t\t\t\t\t\t\t\t\tclassName=\"gap-1 p-1 grid grid-cols-1 md:grid-cols-2\"\n\t\t\t\t\t\t\t\t\tcontainerType=\"grid\"\n\t\t\t\t\t\t\t\t\tjustify=\"start\"\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{[...Array(2)].map((_, index) => (\n\t\t\t\t\t\t\t\t\t\t<Container.Item\n\t\t\t\t\t\t\t\t\t\t\tkey={index}\n\t\t\t\t\t\t\t\t\t\t\talignSelf=\"auto\"\n\t\t\t\t\t\t\t\t\t\t\tstyle={{ height: \"150px\" }}\n\t\t\t\t\t\t\t\t\t\t\tclassName=\"text-wrap rounded-md shadow-container-item bg-[#F9FAFB] p-4\"\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\t\t\t\t\tclassName=\"flex flex-col gap-6\"\n\t\t\t\t\t\t\t\t\t\t\t\tstyle={{ marginTop: \"40px\" }}\n\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t<Skeleton className=\"w-12 h-2 rounded-md\" />\n\t\t\t\t\t\t\t\t\t\t\t\t<Skeleton className=\"w-16 h-2 rounded-md\" />\n\t\t\t\t\t\t\t\t\t\t\t\t<Skeleton className=\"w-12 h-2 rounded-md\" />\n\t\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t</Container.Item>\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t</Container>\n\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t<Container\n\t\t\t\t\t\t\t\t\talign=\"stretch\"\n\t\t\t\t\t\t\t\t\tclassName=\"gap-1 p-1 grid grid-cols-1 md:grid-cols-1\"\n\t\t\t\t\t\t\t\t\tcontainerType=\"grid\"\n\t\t\t\t\t\t\t\t\tjustify=\"start\"\n\t\t\t\t\t\t\t\t\tstyle={{ backgroundColor: \"#F9FAFB\" }}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{plugins.slice(0, 3).map((plugin) => (\n\t\t\t\t\t\t\t\t\t\t<Container.Item\n\t\t\t\t\t\t\t\t\t\t\tkey={plugin.slug}\n\t\t\t\t\t\t\t\t\t\t\talignSelf=\"auto\"\n\t\t\t\t\t\t\t\t\t\t\tclassName=\"text-wrap rounded-md shadow-container-item bg-background-primary p-4\"\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t<ExtendOnboardingWidget\n\t\t\t\t\t\t\t\t\t\t\t\tplugin={plugin}\n\t\t\t\t\t\t\t\t\t\t\t\tsetUpdateCounter={\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetUpdateCounter\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\tonPluginSelect={\n\t\t\t\t\t\t\t\t\t\t\t\t\thandlePluginSelect\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t</Container.Item>\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t</Container>\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t)}\n\t\t\t\t{(!isFormSubmitted || !showPluginsSection) && (\n\t\t\t\t\t<div className=\"px-5 pt-3 bg-white rounded-lg\">\n\t\t\t\t\t\t<h3\n\t\t\t\t\t\t\tclassName={`text-base font-medium text-gray-900 ${\n\t\t\t\t\t\t\t\t!showPluginsSection ? \"text-xl mb-3\" : \"\"\n\t\t\t\t\t\t\t}`}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\"Get Important Notifications and Updates\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</h3>\n\t\t\t\t\t\t<div className=\"flex flex-row items-start gap-4 mb-4\">\n\t\t\t\t\t\t\t<div className=\"flex flex-col flex-1\">\n\t\t\t\t\t\t\t\t<label className=\"text-sm font-medium text-gray-700 mb-2\">\n\t\t\t\t\t\t\t\t\t{__(\"First Name\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\t</label>\n\t\t\t\t\t\t\t\t<input\n\t\t\t\t\t\t\t\t\ttype=\"text\"\n\t\t\t\t\t\t\t\t\tname=\"firstName\"\n\t\t\t\t\t\t\t\t\tvalue={formData.firstName}\n\t\t\t\t\t\t\t\t\tonChange={(e) =>\n\t\t\t\t\t\t\t\t\t\thandleInputChange(\n\t\t\t\t\t\t\t\t\t\t\t\"firstName\",\n\t\t\t\t\t\t\t\t\t\t\te.target.value,\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tclassName={`w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none hfe-remove-ring transition-colors ${fieldErrors.firstName ? 'uae-error-field' : ''}`}\n\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\theight: '48px',\n\t\t\t\t\t\t\t\t\t\tborderColor: '#e0e0e0',\n\t\t\t\t\t\t\t\t\t\toutline: 'none',\n\t\t\t\t\t\t\t\t\t\tfontSize: \"14px\",     \n\t\t\t\t\t\t\t\t\t\tboxShadow: 'none',\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t{fieldErrors.firstName && <span className=\"uae-error-message\">{fieldErrors.firstName}</span>}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div className=\"flex flex-col flex-1\">\n\t\t\t\t\t\t\t\t<label className=\"text-sm font-medium text-gray-700 mb-2\">\n\t\t\t\t\t\t\t\t\t{__(\"Last Name\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\t</label>\n\t\t\t\t\t\t\t\t<input\n\t\t\t\t\t\t\t\t\ttype=\"text\"\n\t\t\t\t\t\t\t\t\tname=\"lastName\"\n\t\t\t\t\t\t\t\t\tvalue={formData.lastName}\n\t\t\t\t\t\t\t\t\tonChange={(e) =>\n\t\t\t\t\t\t\t\t\t\thandleInputChange(\n\t\t\t\t\t\t\t\t\t\t\t\"lastName\",\n\t\t\t\t\t\t\t\t\t\t\te.target.value,\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tclassName=\"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none hfe-remove-ring transition-colors\"\n\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\theight: '48px',\n\t\t\t\t\t\t\t\t\t\tborderColor: '#e0e0e0',\n\t\t\t\t\t\t\t\t\t\toutline: 'none',\n\t\t\t\t\t\t\t\t\t\tfontSize: \"14px\",     \n\t\t\t\t\t\t\t\t\t\tboxShadow: 'none',\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div className=\"flex flex-row items-start gap-4 mb-4\">\n\t\t\t\t\t\t\t<div className=\"flex flex-col flex-1\">\n\t\t\t\t\t\t\t\t<label className=\"text-sm font-medium text-gray-700 mb-2\">\n\t\t\t\t\t\t\t\t\t{__(\"Email Address\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\t</label>\n\t\t\t\t\t\t\t\t<input\n\t\t\t\t\t\t\t\t\ttype=\"email\"\n\t\t\t\t\t\t\t\t\tname=\"email\"\n\t\t\t\t\t\t\t\t\tvalue={formData.email}\n\t\t\t\t\t\t\t\t\tonChange={(e) =>\n\t\t\t\t\t\t\t\t\t\thandleInputChange(\"email\", e.target.value)\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\tclassName={`w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-500 focus:border-purple-500 transition-colors ${fieldErrors.email ? 'uae-error-field' : ''}`}\n\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\t\t\theight: '48px',\n\t\t\t\t\t\t\t\t\t\t\t\tborderColor: '#e0e0e0', // Default border color\n\t\t\t\t\t\t\t\t\t\t\t\toutline: 'none',  // Removes the default outline\n\t\t\t\t\t\t\t\t\t\t\t\tfontSize: \"14px\",     \n\t\t\t\t\t\t\t\t\t\t\t\tboxShadow: 'none',     // Removes the default box shadow\n\t\t\t\t\t\t\t\t\t\t\t\t// marginTop: '16px'\n\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t{fieldErrors.email && <span className=\"uae-error-message\">{fieldErrors.email}</span>}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div className=\"flex items-start gap-1\">\n\t\t\t\t\t\t\t<input\n\t\t\t\t\t\t\t\ttype=\"checkbox\"\n\t\t\t\t\t\t\t\tid=\"notifications-checkbox\"\n\t\t\t\t\t\t\t\tchecked={isActive}\n\t\t\t\t\t\t\t\tonChange={handleNotifyChange}\n\t\t\t\t\t\t\t\tclassName=\"uae-role-checkbox mt-1 h-4 w-4 text-[#5C2EDE] focus:ring-[#5C2EDE] border-gray-300 rounded\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t<label\n\t\t\t\t\t\t\t\thtmlFor=\"notifications-checkbox\"\n\t\t\t\t\t\t\t\tclassName=\"text-sm text-gray-600 leading-relaxed\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\"Stay in the loop and help shape Ultimate Addons for Elementor! Get feature updates, and help us build a better Ultimate Addons for Elementor by sharing how you use the plugin. \",\n\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https://store.brainstormforce.com/privacy-policy/?utm_source=uae_onboarding&utm_medium=notification_updates&utm_campaign=privacy_policy\"\n\t\t\t\t\t\t\t\t\tclassName=\"text-sm text-text-primary\"\n\t\t\t\t\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\" Privacy Policy\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t</a>\n\t\t\t\t\t\t\t</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t)}\n\t\t\t\t<div className=\"flex w-full justify-between items-center hfe-onboarding-bottom\" style={{ paddingLeft: \"8px\", paddingRight: \"8px\", paddingTop: \"30px\" }}>\n\t\t\t\t\t<Button\n\t\t\t\t\t\tclassName=\"flex items-center gap-1 hfe-remove-ring\"\n\t\t\t\t\t\ticon={<ChevronLeft />}\n\t\t\t\t\t\tvariant=\"outline\"\n\t\t\t\t\t\tonClick={() => setCurrentStep(1)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\"Back\", \"header-footer-elementor\")}\n\t\t\t\t\t</Button>\n\t\t\t\t\t<div className=\"flex justify-between gap-3 items-center\" style={{ paddingRight: \"1.875rem\"}}>\n\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\tclassName=\"hfe-remove-ring text-text-tertiary\"\n\t\t\t\t\t\t\tvariant=\"ghost\"\n\t\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\t\tmarkStepSkipped( 'configure' );\n\t\t\t\t\t\t\t\tsetCurrentStep(3);\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t{__(\"Skip\", \"header-footer-elementor\")}\n\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\tclassName=\"flex items-center gap-1 hfe-remove-ring\"\n\t\t\t\t\t\t\ticon={<ChevronRight />}\n\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\tbackgroundColor: \"#5C2EDE\",\n\t\t\t\t\t\t\t\ttransition: \"background-color 0.3s ease\",\n\t\t\t\t\t\t\t\tpadding: \"12px\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonClick={handleNextClick}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{__(\"Next\", \"header-footer-elementor\")}\n\t\t\t\t\t\t</Button>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</>\n\t);\n};\n\nexport default ExtendOnboarding;\n","import objectWithoutPropertiesLoose from \"./objectWithoutPropertiesLoose.js\";\nfunction _objectWithoutProperties(e, t) {\n  if (null == e) return {};\n  var o,\n    r,\n    i = objectWithoutPropertiesLoose(e, t);\n  if (Object.getOwnPropertySymbols) {\n    var n = Object.getOwnPropertySymbols(e);\n    for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);\n  }\n  return i;\n}\nexport { _objectWithoutProperties as default };","function _objectWithoutPropertiesLoose(r, e) {\n  if (null == r) return {};\n  var t = {};\n  for (var n in r) if ({}.hasOwnProperty.call(r, n)) {\n    if (-1 !== e.indexOf(n)) continue;\n    t[n] = r[n];\n  }\n  return t;\n}\nexport { _objectWithoutPropertiesLoose as default };","import React, { useState, useEffect } from \"react\";\nimport {\n\tContainer,\n\tTitle,\n\tSwitch,\n\tButton,\n\tDialog,\n\tInput,\n\tBadge,\n} from \"@bsf/force-ui\";\nimport { __, sprintf } from \"@wordpress/i18n\";\nimport apiFetch from \"@wordpress/api-fetch\";\nimport { ChevronLeft, ChevronRight, ArrowRight } from \"lucide-react\";\nimport { Toaster, toast } from \"react-hot-toast\";\nimport { Link } from \"../../router/index\";\nimport { routes } from \"../../admin/settings/routes\";\n\nconst Features = ({ setCurrentStep, markStepCompleted, markStepSkipped }) => {\n\tconst [selectedFeatures, setSelectedFeatures] = useState({\n\t\theaderFooterBuilder: false,\n\t\tmegaMenu: false,\n\t\tmodalPopup: false,\n\t\twooCommerceWidgets: false,\n\t\tpremiumWidgets: false,\n\t});\n\n\tconst handleFeatureChange = (featureName) => {\n\t\tsetSelectedFeatures((prev) => ({\n\t\t\t...prev,\n\t\t\t[featureName]: !prev[featureName],\n\t\t}));\n\t};\n\n\tconst hasFreeFeaturesSelected =\n\t\tselectedFeatures.headerFooterBuilder || selectedFeatures.megaMenu;\n\tconst hasProFeaturesSelected =\n\t\tselectedFeatures.modalPopup ||\n\t\tselectedFeatures.wooCommerceWidgets ||\n\t\tselectedFeatures.premiumWidgets;\n\tconst hasAnyFeatureSelected =\n\t\thasFreeFeaturesSelected || hasProFeaturesSelected;\n\n\tconst handleUpgrade = () => {\n\t\twindow.open(\"https://ultimateelementor.com/pricing/?utm_source=wp-admin&utm_medium=onboarding&utm_campaign=uae-upgrade\", \"_blank\");\n\t};\n\n\treturn (\n\t\t<>\n\t\t\t<style>\n\t\t\t\t{`\n                    .uae-role-checkbox {\n                        position: relative;\n                        width: 30px;\n                        height: 30px;\n                        -webkit-appearance: none;\n                        appearance: none;\n                        border: 2px solid #d1d5db; /* gray-300 */\n                        border-radius: 4px;\n                        cursor: pointer;\n                        outline: none;\n                    }\n\n                    .uae-role-checkbox:focus {\n                        outline: none;\n                        box-shadow: none;\n                    }\n\n                    .uae-role-checkbox:checked {\n                        background-color: #5C2EDE;\n                        border-color: #0017E1;\n                        outline: none;\n                    }\n\n                    .uae-role-checkbox:checked::after {\n                        content: '';\n                        position: absolute;\n                        top: 50%;\n                        left: 50%;\n                        width: 4px;\n                        height: 8px;\n                        border-right: 2px solid #fff;\n                        border-bottom: 2px solid #fff;\n                        transform: translate(-50%, -60%) rotate(45deg);\n                    }\n                `}\n\t\t\t</style>\n\t\t\t<div\n\t\t\t\tclassName=\"box-border bg-background-primary p-6 rounded-lg\"\n\t\t\t\tstyle={{\n\t\t\t\t\twidth: \"42.625rem\",\n\t\t\t\t}}\n\t\t\t>\n\t\t\t\t<p\n\t\t\t\t\t\t\t\tclassName=\"text-text-primary m-0 mb-2 hfe-65-width\"\n\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\tfontSize: \"24px\",\n\t\t\t\t\t\t\t\t\tlineHeight: \"1.3em\",\n\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\"Select Your Features\",\n\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t</p>\n\t\t\t\t<span\n\t\t\t\t\tclassName=\"text-sm font-normal text-text-secondary\"\n\t\t\t\t\tstyle={{ lineHeight: \"1.5em\" }}\n\t\t\t\t>\n\t\t\t\t\t{__(\n\t\t\t\t\t\t\"Unlock more design control, faster setup, and powerful customization so you can build a better website, effortlessly.\",\n\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t)}\n\t\t\t\t</span>\n\t\t\t\t<div className=\"relative\" style={{ marginTop: \"20px\" }}>\n\t\t\t\t\t<div\n\t\t\t\t\t\tclassName=\"flex items-center justify-between gap-3 mt-5 cursor-pointer\"\n\t\t\t\t\t\tonClick={(e) => {\n\t\t\t\t\t\t\t// Toggle checkbox\n\t\t\t\t\t\t\thandleFeatureChange(\"headerFooterBuilder\");\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t<div className=\"flex flex-col space-y-1 flex-1\">\n\t\t\t\t\t\t\t<div className=\"flex items-center justify-start gap-1\">\n\t\t\t\t\t\t\t\t<div className=\"text-sm font-normal m-0\">\n\t\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\t\"Header & Footer Builder\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<Badge\n\t\t\t\t\t\t\t\t\tlabel={__(\n\t\t\t\t\t\t\t\t\t\t\"Free\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\t\t\ttype=\"pill\"\n\t\t\t\t\t\t\t\t\tvariant=\"green\"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\tclassName=\"text-sm font-normal m-0\"\n\t\t\t\t\t\t\t\tstyle={{ maxWidth: \"90%\", color: \"#9CA3AF\" }}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{sprintf(\n\t\t\t\t\t\t\t\t\t__(\n\t\t\t\t\t\t\t\t\t\t\"Assign headers and footers to specific pages or post types. This gives users complete layout control, something typically locked behind Pro plugins.\",\n\t\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tclassName=\"flex-shrink-0\"\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<input\n\t\t\t\t\t\t\t\ttype=\"checkbox\"\n\t\t\t\t\t\t\t\tchecked={selectedFeatures.headerFooterBuilder}\n\t\t\t\t\t\t\t\tonClick={(e) => e.stopPropagation()}\n\t\t\t\t\t\t\t\tonChange={() => handleFeatureChange(\"headerFooterBuilder\")}\n\t\t\t\t\t\t\t\tclassName=\"uae-role-checkbox w-5 h-5 outline-none\"\n\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\taccentColor: \"#240064\",\n\t\t\t\t\t\t\t\t\twidth: \"18px\",\n\t\t\t\t\t\t\t\t\theight: \"18px\",\n\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\n\t\t\t\t<hr\n\t\t\t\t\tclassName=\"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle\"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tmarginTop: \"10px\",\n\t\t\t\t\t\tmarginBottom: \"10px\",\n\t\t\t\t\t\tborderColor: \"#E5E7EB\",\n\t\t\t\t\t}}\n\t\t\t\t/>\n\n\t\t\t\t<div\n\t\t\t\t\tclassName=\"flex items-center justify-between gap-3 cursor-pointer\"\n\t\t\t\t\tonClick={() => handleFeatureChange(\"megaMenu\")}\n\t\t\t\t>\n\t\t\t\t\t<div className=\"flex flex-col space-y-1 flex-1\">\n\t\t\t\t\t\t<div className=\"flex items-center justify-start gap-1\">\n\t\t\t\t\t\t\t<div className=\"text-sm font-normal m-0\">\n\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\"Mega Menu & Navigation Widget\",\n\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<Badge\n\t\t\t\t\t\t\t\tlabel={__(\"Free\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\t\ttype=\"pill\"\n\t\t\t\t\t\t\t\tvariant=\"green\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tstyle={{ color: \"#9CA3AF\" }}\n\t\t\t\t\t\t\tclassName=\"text-sm font-normal m-0\"\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{sprintf(\n\t\t\t\t\t\t\t\t__(\n\t\t\t\t\t\t\t\t\t\"Save hours by copying Elementor sections, widgets, or pages from one website to another no need to rebuild layouts from scratch.\",\n\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div className=\"flex-shrink-0\">\n\t\t\t\t\t\t<input\n\t\t\t\t\t\t\ttype=\"checkbox\"\n\t\t\t\t\t\t\tchecked={selectedFeatures.megaMenu}\n\t\t\t\t\t\t\tonClick={(e) => e.stopPropagation()}\n\t\t\t\t\t\t\tonChange={() => handleFeatureChange(\"megaMenu\")}\n\t\t\t\t\t\t\tclassName=\"uae-role-checkbox w-5 h-5\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\taccentColor: \"#240064\",\n\t\t\t\t\t\t\t\twidth: \"18px\",\n\t\t\t\t\t\t\t\theight: \"18px\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\n\t\t\t\t<hr\n\t\t\t\t\tclassName=\"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle\"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tmarginTop: \"10px\",\n\t\t\t\t\t\tmarginBottom: \"10px\",\n\t\t\t\t\t\tborderColor: \"#E5E7EB\",\n\t\t\t\t\t}}\n\t\t\t\t/>\n\n\t\t\t\t<div\n\t\t\t\t\tclassName=\"flex items-center justify-between gap-3 cursor-pointer\"\n\t\t\t\t\tonClick={() => handleFeatureChange(\"modalPopup\")}\n\t\t\t\t>\n\t\t\t\t\t<div className=\"flex flex-col space-y-1 flex-1\">\n\t\t\t\t\t\t<div className=\"flex items-center justify-start gap-1\">\n\t\t\t\t\t\t\t<div className=\"text-sm font-normal m-0\">\n\t\t\t\t\t\t\t\t{__(\"Modal Popup\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<Badge\n\t\t\t\t\t\t\t\tlabel={__(\"Pro\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\t\ttype=\"pill\"\n\t\t\t\t\t\t\t\tvariant=\"inverse\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tstyle={{ color: \"#9CA3AF\" }}\n\t\t\t\t\t\t\tclassName=\"text-sm font-normal m-0\"\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{sprintf(\n\t\t\t\t\t\t\t\t__(\n\t\t\t\t\t\t\t\t\t\"Design eye-catching popups directly in Elementor collect leads, display promotions, or show messages without needing a separate popup plugin.\",\n\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div className=\"flex-shrink-0\">\n\t\t\t\t\t\t<input\n\t\t\t\t\t\t\ttype=\"checkbox\"\n\t\t\t\t\t\t\tchecked={selectedFeatures.modalPopup}\n\t\t\t\t\t\t\tonClick={(e) => e.stopPropagation()}\n\t\t\t\t\t\t\tonChange={() => handleFeatureChange(\"modalPopup\")}\n\t\t\t\t\t\t\tclassName=\"uae-role-checkbox w-5 h-5\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\taccentColor: \"#240064\",\n\t\t\t\t\t\t\t\twidth: \"18px\",\n\t\t\t\t\t\t\t\theight: \"18px\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\n\t\t\t\t<hr\n\t\t\t\t\tclassName=\"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle\"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tmarginTop: \"10px\",\n\t\t\t\t\t\tmarginBottom: \"10px\",\n\t\t\t\t\t\tborderColor: \"#E5E7EB\",\n\t\t\t\t\t}}\n\t\t\t\t/>\n\n\t\t\t\t<div\n\t\t\t\t\tclassName=\"flex items-center justify-between gap-3 cursor-pointer\"\n\t\t\t\t\tonClick={() => handleFeatureChange(\"wooCommerceWidgets\")}\n\t\t\t\t>\n\t\t\t\t\t<div className=\"flex flex-col space-y-1 flex-1\">\n\t\t\t\t\t\t<div className=\"flex items-center justify-start gap-1\">\n\t\t\t\t\t\t\t<div className=\"text-sm font-normal m-0\">\n\t\t\t\t\t\t\t\t{__(\"WooCommerce Widgets\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<Badge\n\t\t\t\t\t\t\t\tlabel={__(\"Pro\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\t\ttype=\"pill\"\n\t\t\t\t\t\t\t\tvariant=\"inverse\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tstyle={{ color: \"#9CA3AF\" }}\n\t\t\t\t\t\t\tclassName=\"text-sm font-normal m-0\"\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\"Design eye-catching popups directly in Elementor collect leads, display promotions, or show messages without needing a separate popup plugin.\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div className=\"flex-shrink-0\">\n\t\t\t\t\t\t<input\n\t\t\t\t\t\t\ttype=\"checkbox\"\n\t\t\t\t\t\t\tchecked={selectedFeatures.wooCommerceWidgets}\n\t\t\t\t\t\t\tonClick={(e) => e.stopPropagation()}\n\t\t\t\t\t\t\tonChange={() => handleFeatureChange(\"wooCommerceWidgets\")}\n\t\t\t\t\t\t\tclassName=\"uae-role-checkbox w-5 h-5\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\taccentColor: \"#240064\",\n\t\t\t\t\t\t\t\twidth: \"18px\",\n\t\t\t\t\t\t\t\theight: \"18px\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<hr\n\t\t\t\t\tclassName=\"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle\"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tmarginTop: \"10px\",\n\t\t\t\t\t\tmarginBottom: \"10px\",\n\t\t\t\t\t\tborderColor: \"#E5E7EB\",\n\t\t\t\t\t}}\n\t\t\t\t/>\n\t\t\t\t<div\n\t\t\t\t\tclassName=\"flex items-center justify-between gap-3 cursor-pointer\"\n\t\t\t\t\tonClick={() => handleFeatureChange(\"premiumWidgets\")}\n\t\t\t\t>\n\t\t\t\t\t<div className=\"flex flex-col space-y-1 flex-1\">\n\t\t\t\t\t\t<div className=\"flex items-center justify-start gap-1\">\n\t\t\t\t\t\t\t<div className=\"text-sm font-normal m-0\">\n\t\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\t\"50+ Premium Widgets & 200+ Templates\",\n\t\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<Badge\n\t\t\t\t\t\t\t\tlabel={__(\"Pro\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t\tsize=\"xs\"\n\t\t\t\t\t\t\t\ttype=\"pill\"\n\t\t\t\t\t\t\t\tvariant=\"inverse\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tstyle={{ color: \"#9CA3AF\" }}\n\t\t\t\t\t\t\tclassName=\"text-sm font-normal m-0\"\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\"Design eye-catching popups directly in Elementor collect leads, display promotions, or show messages without needing a separate popup plugin.\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div className=\"flex-shrink-0\">\n\t\t\t\t\t\t<input\n\t\t\t\t\t\t\ttype=\"checkbox\"\n\t\t\t\t\t\t\tchecked={selectedFeatures.premiumWidgets}\n\t\t\t\t\t\t\tonClick={(e) => e.stopPropagation()}\n\t\t\t\t\t\t\tonChange={() => handleFeatureChange(\"premiumWidgets\")}\n\t\t\t\t\t\t\tclassName=\"uae-role-checkbox w-5 h-5\"\n\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\taccentColor: \"#240064\",\n\t\t\t\t\t\t\t\twidth: \"18px\",\n\t\t\t\t\t\t\t\theight: \"18px\",\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div className=\"flex justify-between items-center px-2 hfe-onboarding-bottom\" style={{ paddingTop: \"30px\" }}>\n\t\t\t\t\t<Button\n\t\t\t\t\t\tclassName=\"flex items-center gap-1 outline-none hfe-remove-ring\"\n\t\t\t\t\t\ticon={<ChevronLeft />}\n\t\t\t\t\t\tvariant=\"outline\"\n\t\t\t\t\t\tonClick={() => setCurrentStep(2)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{__(\"Back\", \"header-footer-elementor\")}\n\t\t\t\t\t</Button>\n\t\t\t\t\t<div className=\"flex justify-start text-text-tertiary items-center gap-3\">\n\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\tclassName=\"hfe-remove-ring text-text-tertiary\"\n\t\t\t\t\t\t\tvariant=\"ghost\"\n\t\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\t\tmarkStepSkipped( 'features' );\n\t\t\t\t\t\t\t\tsetCurrentStep(4);\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t{__(\"Skip\", \"header-footer-elementor\")}\n\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t{hasProFeaturesSelected ? (\n\t\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\t\tclassName=\"flex items-center gap-1 hfe-remove-ring\"\n\t\t\t\t\t\t\t\ticon={<ChevronRight />}\n\t\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\tbackgroundColor: \"#5C2EDE\",\n\t\t\t\t\t\t\t\t\ttransition: \"background-color 0.3s ease\",\n\t\t\t\t\t\t\t\t\tpadding: \"12px\",\n\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\tonClick={handleUpgrade}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{__(\"Upgrade\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\t\tclassName=\"flex items-center gap-1 hfe-remove-ring\"\n\t\t\t\t\t\t\t\ticon={<ChevronRight  />}\n\t\t\t\t\t\t\t\ticonPosition=\"right\"\n\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\tbackgroundColor: \"#5C2EDE\",\n\t\t\t\t\t\t\t\t\ttransition: \"background-color 0.3s ease\",\n\t\t\t\t\t\t\t\t\tpadding: \"12px\",\n\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\t\t\tmarkStepCompleted( 'features' );\n\t\t\t\t\t\t\t\t\tsetCurrentStep(4);\n\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{__(\"Next\", \"header-footer-elementor\")}\n\t\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t)}\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t{hasProFeaturesSelected && (\n\t\t\t\t\t<div\n\t\t\t\t\t\tclassName=\"mt-4 p-3 rounded-lg border border-gray-400 bg-gray-50\"\n\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\tbackgroundColor: \"#F9FAFB\",\n\t\t\t\t\t\t\tborderColor: \"#E5E7EB\",\n\t\t\t\t\t\t\tmarginTop: \"16px\",\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\t<div className=\"text-sm border border-gray-400 text-gray-700 font-medium\">\n\t\t\t\t\t\t\t{__(\n\t\t\t\t\t\t\t\t\"You've picked Pro features upgrade to start using them.\",\n\t\t\t\t\t\t\t\t\"header-footer-elementor\",\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t)}\n\t\t\t</div>\n\t\t</>\n\t);\n};\n\nexport default Features;\n","import React, { useEffect } from 'react'\nimport OB from './index'\n\nconst Onboarding = () => {\n    useEffect(() => {\n        const body = document.body\n        body.classList.add('hfe-onboarding-fullscreen')\n\n        return () => {\n            body.classList.remove('hfe-onboarding-fullscreen')\n        }\n    }, [])\n\n    return (\n        <>\n        <OB />\n        </>\n    )\n}\n\nexport default Onboarding\n","import { Router, Route, Link } from './index';\nimport Dashboard from '@components/Dashboard/Dashboard';\nimport Features from '@components/Widgets/Features';\nimport Templates from '@components/Templates/Templates';\nimport Settings from '@components/Settings/Settings';\nimport Learn from '@components/Learn/Learn';\nimport { routes } from 'admin/settings/routes';\nimport Upgrade from '@components/Compare/Upgrade';\nimport Onboarding from '@components/Onboarding/Onboarding';\n\n\nconst CustomRouter = () => (\n  <Router routes={routes} defaultRoute={routes?.dashboard?.path}>\n    <Route path={routes.dashboard.path}><Dashboard /></Route>\n    <Route path={routes.onboarding.path}><Onboarding /></Route>\n    <Route path={routes.widgets.path}><Features /></Route>\n    <Route path={routes.templates.path}><Templates /></Route>\n    <Route path={routes.learn.path}><Learn /></Route>\n    <Route path={routes.settings.path}><Settings /></Route>\n    <Route path={routes.upgrade.path}><Upgrade /></Route>\n  </Router>\n);\n\nexport default CustomRouter;\n","/**\n * @license lucide-react v0.417.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nimport createLucideIcon from '../createLucideIcon.js';\n\nconst LoaderCircle = createLucideIcon(\"LoaderCircle\", [\n  [\"path\", { d: \"M21 12a9 9 0 1 1-6.219-8.56\", key: \"13zald\" }]\n]);\n\nexport { LoaderCircle as default };\n//# sourceMappingURL=loader-circle.js.map\n","import { jsx as r } from \"react/jsx-runtime\";\nimport { cn as n } from \"../../utilities/functions.es.js\";\nimport { LoaderCircle as o } from \"lucide-react\";\nconst d = ({\n  variant: a = \"primary\",\n  // primary, secondary\n  size: e = \"md\",\n  // sm, md, lg, xl,\n  icon: s = null,\n  className: m = \"\"\n}) => {\n  const i = {\n    primary: \"text-brand-primary-600\",\n    secondary: \"text-background-primary\"\n  }[a], t = {\n    sm: \"[&>svg]:size-4\",\n    md: \"[&>svg]:size-5\",\n    lg: \"[&>svg]:size-6\",\n    xl: \"[&>svg]:size-8\"\n  }[e];\n  return /* @__PURE__ */ r(\n    \"span\",\n    {\n      className: n(\"flex\", t, i, m),\n      children: s || /* @__PURE__ */ r(o, { className: \"animate-spin shrink-0\" })\n    }\n  );\n};\nexport {\n  d as Loader,\n  d as default\n};\n//# sourceMappingURL=loader.es.js.map\n","import { useState, useEffect } from \"react\";\nimport \"@fontsource/figtree\"; // Defaults to weight 400\nimport \"@fontsource/figtree/400.css\"; // Specify weight\nimport \"@fontsource/figtree/400-italic.css\"; // Specify weight and style\nimport CustomRouter from \"router/customRouter\";\nimport { Loader } from \"@bsf/force-ui\";\n\n\nconst App = () => {\n    const [loaded, setLoaded] = useState(false);\n    const [showTopBar, setShowTopBar] = useState(true); // State to manage the visibility of the top bar\n\n    // scroll top on route change\n    window.onhashchange = () => {\n        window.scrollTo(0, 0);\n    };\n\n    // Simulate loading (replace with actual loading logic if needed)\n    useEffect(() => {\n        setTimeout(() => {\n            setLoaded(true);\n        }, 1000); // Simulating a load delay of 1 second\n    }, []);\n\n    if (!loaded) {\n        return (\n            <div\n                className=\"loading-spinner flex items-center justify-center h-screen\"\n                style={{ background: \"#F9FAFB\" }}\n            >\n                <Loader icon={null} size=\"lg\" variant=\"primary\" />\n            </div>\n        );\n    }\n\n    return (\n        <div className=\"app-container font-figtree\">\n            <CustomRouter />\n        </div>\n    );\n};\n\nexport default App;\n","import { createRoot } from \"react-dom/client\"; // Import from react-dom/client for React 18\nimport domReady from \"@wordpress/dom-ready\";\nimport App from \"./App\";\nimport NavMenu from \"@components/NavMenu\";\nimport \"./styles.css\";\n\ndomReady(() => {\n    const rootElement = document.getElementById(\"hfe-settings-app\");\n    if (rootElement) {\n        const root = createRoot(rootElement); // Use createRoot() for React 18\n        root.render(<App />);\n    }\n\n    if (\n        \"yes\" === hfe_admin_data.show_view_all ||\n        window.location.href === hfeSettingsData.header_footer_builder ||\n        \"yes\" === hfeSettingsData.is_hfe_post\n    ) {\n        const navMenuElement = document.getElementById(\n            \"hfe-admin-top-bar-root\"\n        );\n        if (navMenuElement) {\n            const newDiv = document.createElement(\"div\");\n            newDiv.id = \"hfe-settings-app\";\n            navMenuElement.appendChild(newDiv);\n\n            const navMenuRoot = createRoot(newDiv);\n            navMenuRoot.render(<NavMenu />);\n        }\n    }\n});\n"],"names":["leafPrototypes","getProto","exports","path","options","decode","decodeURIComponent","delimiter","DEFAULT_DELIMITER","regexp","keys","end","sensitive","trailing","sources","flags","items","Array","isArray","map","TokenData","str","encodePath","NOOP_VALUE","it","Iter","chars","i","name","value","ID_START","test","ID_CONTINUE","pos","length","TypeError","DEBUG_URL","type","SIMPLE_TOKENS","index","lexer","tokens","consume","endType","text","push","param","tryConsume","wildcard","parse","seq","flatten","sequenceToRegExp","pattern","join","escape","RegExp","pathToRegexp","decoders","key","split","input","m","exec","params","Object","create","undefined","decoder","replace","constructor","this","peek","_peek","next","token","nextType","result","init","fork","slice","backtrack","isSafeSegmentParam","negate","includes","createRoot","hydrateRoot","module","window","hasOwn","hasOwnProperty","classNames","classes","arguments","arg","appendClass","parseValue","apply","toString","prototype","call","newClass","default","has","e","encode","encodeURIComponent","stringify","obj","prefix","pairs","isNaN","query","part","parser","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","__webpack_modules__","n","getter","__esModule","d","a","getPrototypeOf","t","mode","then","ns","r","def","current","indexOf","getOwnPropertyNames","forEach","definition","o","defineProperty","enumerable","get","prop","Symbol","toStringTag","_arrayLikeToArray","_unsupportedIterableToArray","from","l","iterator","u","f","done","_typeof","toPropertyKey","toPrimitive","String","_defineProperties","configurable","writable","_getPrototypeOf","setPrototypeOf","bind","__proto__","_setPrototypeOf","_defineProperty","Action","locationToRoute","location","pathname","hash","qs","search","assign","BeforeUnloadEventType","promptBeforeUnload","event","preventDefault","returnValue","createEvents","handlers","fn","filter","handler","history","_options$window","document","defaultView","globalHistory","getIndexAndLocation","_window$location","state","idx","usr","blockedPopTx","addEventListener","blockers","nextAction","Pop","_getIndexAndLocation","nextIndex","nextLocation","delta","action","retry","go","applyTx","_getIndexAndLocation2","listeners","createHref","to","_ref$pathname","_ref","_ref$search","_ref$hash","charAt","getNextLocation","parsedPath","hashIndex","substr","searchIndex","parsePath","Math","random","getHistoryStateAndUrl","allowTx","_getIndexAndLocation3","replaceState","Push","_getHistoryStateAndUr","historyState","url","pushState","error","Replace","_getHistoryStateAndUr2","back","forward","listen","listener","block","blocker","unblock","removeEventListener","createBrowserHistory","RouterContext","wp","element","createContext","route","useContext","prev","Route","onRoute","children","matched","match","concat","checkMatch","React","createElement","cloneElement","Link","props","onClick","activeClassName","_objectSpread","_extends","className","target","classList","contains","hfeSettingsData","header_footer_builder","href","currentHash","changeSearch","newSearch","hfe_settings_url","Router","_Component","_this","_classCallCheck","ReferenceError","_callSuper","localStorage","setItem","setState","routes","unlisten","handleRouteChange","defaultRoute","_inherits","_createClass","_this$props","_this$state","NotFound","isMatched","data","routerContextValue","is404","Provider","Component","createClassGroupUtils","config","classMap","createClassMap","conflictingClassGroups","conflictingClassGroupModifiers","getClassGroupId","classParts","shift","getGroupRecursive","getGroupIdForArbitraryProperty","getConflictingClassGroupIds","classGroupId","hasPostfixModifier","conflicts","classPartObject","currentClassPart","nextClassPartObject","nextPart","classGroupFromNextClassPart","validators","classRest","find","validator","arbitraryPropertyRegex","arbitraryPropertyClassName","property","substring","theme","Map","getPrefixedClassGroupEntries","entries","classGroups","classGroup","processClassesRecursively","classDefinition","isThemeGetter","getPart","currentClassPartObject","pathPart","set","func","classGroupEntries","fromEntries","createLruCache","maxCacheSize","cacheSize","cache","previousCache","update","createParseClassName","separator","experimentalParseClassName","isSeparatorSingleCharacter","firstSeparatorCharacter","separatorLength","parseClassName","modifiers","postfixModifierPosition","bracketDepth","modifierStart","currentCharacter","baseClassNameWithImportantModifier","hasImportantModifier","startsWith","baseClassName","maybePostfixModifierPosition","sortModifiers","sortedModifiers","unsortedModifiers","modifier","sort","SPLIT_CLASSES_REGEX","twJoin","argument","resolvedValue","string","toValue","mix","k","createTailwindMerge","createConfigFirst","createConfigRest","configUtils","cacheGet","cacheSet","functionToCall","reduce","previousConfig","createConfigCurrent","createConfigUtils","tailwindMerge","cachedResult","classGroupsInConflict","trim","originalClassName","Boolean","variantModifier","modifierId","classId","conflictGroups","group","mergeClassList","fromTheme","themeGetter","arbitraryValueRegex","fractionRegex","stringLengths","Set","tshirtUnitRegex","lengthUnitRegex","colorFunctionRegex","shadowRegex","imageRegex","isLength","isNumber","isArbitraryLength","getIsArbitraryValue","isLengthOnly","Number","isArbitraryNumber","isInteger","isPercent","endsWith","isArbitraryValue","isTshirtSize","sizeLabels","isArbitrarySize","isNever","isArbitraryPosition","imageLabels","isArbitraryImage","isImage","isArbitraryShadow","isShadow","isAny","label","testValue","getDefaultConfig","colors","spacing","blur","brightness","borderColor","borderRadius","borderSpacing","borderWidth","contrast","grayscale","hueRotate","invert","gap","gradientColorStops","gradientColorStopPositions","inset","margin","opacity","padding","saturate","scale","sepia","skew","space","translate","getSpacingWithAutoAndArbitrary","getSpacingWithArbitrary","getLengthWithEmptyAndArbitrary","getNumberWithAutoAndArbitrary","getZeroAndEmpty","getNumberAndArbitrary","aspect","container","columns","box","display","float","clear","isolation","object","overflow","overscroll","position","start","top","right","bottom","left","visibility","z","basis","flex","grow","shrink","order","col","span","row","justify","content","self","p","px","py","ps","pe","pt","pr","pb","pl","mx","my","ms","me","mt","mr","mb","ml","w","screen","h","size","font","tracking","leading","list","placeholder","decoration","indent","align","whitespace","break","hyphens","bg","repeat","via","rounded","border","divide","outline","ring","shadow","table","caption","transition","duration","ease","delay","animate","transform","rotate","origin","accent","appearance","cursor","caret","resize","scroll","snap","touch","select","fill","stroke","sr","twMerge","clsx","g","xxs","xs","sm","md","lg","xl","s","column","normal","center","between","around","evenly","stretch","baseline","auto","wrap","nowrap","first","last","none","c","b","B","cols","gapX","gapY","gridFlow","colsSubGrid","C","rowsSubGrid","autoRows","N","autoCols","S","j","y","v","Item","colSpan","colStart","alignSelf","justifySelf","containerType","direction","x","displayName","Left","Middle","Right","R","variant","tag","disabled","destructive","icon","iconPosition","loading","primary","secondary","ghost","link","ref","hasWindow","node","isNode","nodeName","toLowerCase","_node$ownerDocument","ownerDocument","getDocumentElement","documentElement","Node","isElement","Element","HTMLElement","isShadowRoot","ShadowRoot","isOverflowElement","overflowX","overflowY","isTableElement","isTopLayer","some","selector","matches","isContainingBlock","elementOrCss","webkit","isWebKit","css","backdropFilter","willChange","contain","CSS","supports","isLastTraversableNode","getComputedStyle","getNodeScroll","scrollLeft","scrollTop","scrollX","scrollY","getParentNode","assignedSlot","parentNode","host","getNearestOverflowAncestor","body","getOverflowAncestors","traverseIframes","_node$ownerDocument2","scrollableAncestor","isBody","win","frameElement","getFrameElement","visualViewport","parent","doc","activeElement","_activeElement","shadowRoot","child","rootNode","getRootNode","uaData","navigator","userAgentData","platform","brands","brand","version","userAgent","vendor","isAndroid","re","pointerType","strict","values","isEventTargetWithin","composedPath","isTypeableElement","candidateSelector","NoElement","msMatchesSelector","webkitMatchesSelector","_element$getRootNode","isInert","lookUp","_node$getAttribute","inertAtt","getAttribute","getCandidatesIteratively","elements","includeContainer","candidates","elementsToCheck","tagName","assigned","assignedElements","nestedCandidates","scopeParent","getShadowRoot","validShadowRoot","shadowRootFilter","_nestedCandidates","unshift","hasTabIndex","parseInt","getTabIndex","Error","tabIndex","_node$getAttribute2","attValue","isContentEditable","sortOrderedTabbables","documentOrder","isInput","isZeroArea","_node$getBoundingClie","getBoundingClientRect","width","height","isNodeMatchingSelectorFocusable","isHiddenInput","displayCheck","nodeUnderDetails","parentElement","originalNode","_nodeRoot","_nodeRootHost","_nodeRootHost$ownerDo","nodeRoot","nodeRootHost","attached","_nodeRoot2","_nodeRootHost2","_nodeRootHost2$ownerD","isNodeAttached","getClientRects","isHidden","isDetailsWithSummary","item","isDisabledFromFieldset","isNodeMatchingSelectorTabbable","isRadio","radioSet","radioScope","form","queryRadios","querySelectorAll","err","console","message","checked","nodes","getCheckedRadio","isTabbableRadio","isNonTabbableRadio","isValidShadowRootTabbable","shadowHostNode","sortByOrder","regularTabbables","orderedTabbables","isScope","candidateTabindex","getSortOrderTabIndex","acc","sortable","el","getCandidates","min","max","round","floor","createCoords","oppositeSideMap","oppositeAlignmentMap","placement","axis","getAxisLength","getAlignmentAxis","alignment","getOppositePlacement","side","expandPaddingObject","rect","computeCoordsFromPlacement","rtl","reference","floating","sideAxis","alignmentAxis","alignLength","isVertical","commonX","commonY","commonAlign","coords","async","_await$platform$isEle","rects","strategy","boundary","rootBoundary","elementContext","altBoundary","paddingObject","clippingClientRect","getClippingRect","contextElement","offsetParent","getOffsetParent","offsetScale","getScale","elementClientRect","convertOffsetParentRelativeRectToViewportRelativeRect","getCssDimensions","parseFloat","hasOffset","offsetWidth","offsetHeight","shouldFallback","$","unwrapElement","domElement","isFinite","noOffsets","getVisualOffsets","offsetLeft","offsetTop","includeScale","isFixedStrategy","clientRect","visualOffsets","isFixed","floatingOffsetParent","shouldAddVisualOffsets","offsetWin","currentWin","currentIFrame","iframeScale","iframeRect","clientLeft","paddingLeft","clientTop","paddingTop","getWindowScrollBarX","leftScroll","getHTMLOffset","ignoreScrollbarX","htmlRect","getClientRectFromClippingAncestor","clippingAncestor","html","clientWidth","clientHeight","visualViewportBased","getViewportRect","scrollWidth","scrollHeight","getDocumentRect","getInnerBoundingClientRect","hasFixedPositionAncestor","stopNode","getRectRelativeToOffsetParent","isOffsetParentAnElement","offsets","setLeftRTLScrollbarOffset","offsetRect","htmlOffset","isStaticPositioned","getTrueOffsetParent","polyfill","rawOffsetParent","svgOffsetParent","currentNode","getContainingBlock","topLayer","clippingAncestors","currentContainingBlockComputedStyle","elementIsFixed","computedStyle","currentNodeIsContaining","ancestor","getClippingElementAncestors","_c","firstClippingAncestor","clippingRect","accRect","getElementRects","getOffsetParentFn","getDimensionsFn","getDimensions","floatingDimensions","isRTL","rectsAreEqual","autoUpdate","ancestorScroll","ancestorResize","elementResize","ResizeObserver","layoutShift","IntersectionObserver","animationFrame","referenceEl","ancestors","passive","cleanupIo","onMove","timeoutId","io","root","cleanup","_io","clearTimeout","disconnect","refresh","skip","threshold","elementRectForRootMargin","rootMargin","isFirstUpdate","handleObserve","ratio","intersectionRatio","setTimeout","_e","observe","observeMove","frameId","reobserveFrame","resizeObserver","firstEntry","unobserve","cancelAnimationFrame","requestAnimationFrame","_resizeObserver","prevRefRect","frameLoop","nextRefRect","_resizeObserver2","_middlewareData$offse","_middlewareData$arrow","middlewareData","diffCoords","mainAxisMulti","crossAxisMulti","rawValue","mainAxis","crossAxis","convertValueToCoords","offset","arrow","alignmentOffset","checkMainAxis","checkCrossAxis","limiter","detectOverflowOptions","mainAxisCoord","crossAxisCoord","maxSide","limitedCoords","enabled","_middlewareData$flip","initialPlacement","fallbackPlacements","specifiedFallbackPlacements","fallbackStrategy","fallbackAxisSideDirection","flipAlignment","initialSideAxis","isBasePlacement","oppositePlacement","getExpandedPlacements","hasFallbackAxisSideDirection","isStart","lr","rl","tb","bt","getSideList","getOppositeAxisPlacements","placements","overflows","overflowsData","flip","sides","mainAlignmentSide","every","_middlewareData$flip2","_overflowsData$filter","nextPlacement","_overflowsData$","ignoreCrossAxisOverflow","hasInitialMainAxisOverflow","reset","resetPlacement","_overflowsData$filter2","currentSideAxis","arrowDimensions","isYAxis","minProp","maxProp","clientProp","endDiff","startDiff","arrowOffsetParent","clientSize","centerToReference","largestPossiblePadding","minPadding","maxPadding","min$1","shouldAddOffset","centerOffset","mergedOptions","platformWithCache","middleware","validMiddleware","statefulPlacement","resetCount","nextX","nextY","computePosition","useLayoutEffect","useEffect","deepEqual","$$typeof","getDPR","devicePixelRatio","roundByDPR","dpr","useLatestRef","arrow$1","deps","SafeReact","useSafeInsertionEffect","useInsertionEffect","useEffectEvent","callback","_len","args","_key","source","serverHandoffComplete","count","genId","useId","id","setId","FloatingArrow","context","tipRadius","strokeWidth","staticOffset","style","restStyle","rest","clipPathId","setIsRTL","isVerticalSide","computedStaticOffset","computedStrokeWidth","halfStrokeWidth","svgX","svgY","isCustomShape","yOffsetProp","xOffsetProp","arrowX","arrowY","dValue","rotation","viewBox","pointerEvents","clipPath","FloatingNodeContext","FloatingTreeContext","useFloatingParentNodeId","_React$useContext","useFloatingTree","createAttribute","useRef","safePolygonIdentifier","getDelay","getChildren","allChildren","_node$context","parentId","open","currentChildren","_currentChildren","_node$context2","getTabbableOptions","getTabbableIn","allTabbable","reverse","activeIndex","isOutsideEvent","containerElement","currentTarget","relatedTarget","disableFocusInside","dataset","tabindex","setAttribute","enableFocusInside","removeAttribute","HIDDEN_STYLES","clip","whiteSpace","setActiveElementOnTab","FocusGuard","role","setRole","restProps","PortalContext","attr","FloatingPortal","preserveTabOrder","portalNode","uniqueId","portalContext","usePortalContext","setPortalNode","portalNodeRef","remove","queueMicrotask","existingIdRoot","getElementById","subRoot","appendChild","idWrapper","useFloatingPortalNode","focusManagerState","setFocusManagerState","beforeOutsideRef","afterOutsideRef","beforeInsideRef","afterInsideRef","modal","shouldRenderGuards","onFocus","_beforeInsideRef$curr","focus","prevTabbable","refs","domReference","_afterInsideRef$curre","nextTabbable","closeOnFocusOut","onOpenChange","nativeEvent","FOCUSABLE_ATTRIBUTE","isButtonTarget","isSpaceIgnored","useClick","dataRef","eventOption","toggle","ignoreMouse","keyboardHandlers","stickIfOpen","pointerTypeRef","didKeyDownRef","onPointerDown","onMouseDown","button","openEvent","onKeyDown","defaultPrevented","onKeyUp","bubbleHandlerKeys","pointerdown","mousedown","click","captureHandlerKeys","normalizeProp","normalizable","_normalizable$escapeK","_normalizable$outside","escapeKey","outsidePress","useDismiss","unstable_outsidePress","outsidePressEvent","referencePress","referencePressEvent","bubbles","capture","tree","outsidePressFn","insideReactTreeRef","endedOrStartedInsideRef","escapeKeyBubbles","outsidePressBubbles","escapeKeyCapture","outsidePressCapture","isComposingRef","closeOnEscapeKeyDown","_dataRef$current$floa","nodeId","floatingContext","nodesRef","stopPropagation","shouldDismiss","_child$context","__escapeKeyBubbles","isReactEvent","closeOnEscapeKeyDownCapture","_getTarget2","_getTarget","closeOnPressOutside","_dataRef$current$floa2","insideReactTree","endedOrStartedInside","inertSelector","markers","targetRootAncestor","nextParent","marker","canScrollX","canScrollY","xCond","offsetX","offsetY","targetIsInsideChildren","_child$context2","__outsidePressBubbles","closeOnPressOutsideCapture","_getTarget4","_getTarget3","compositionTimeout","onScroll","handleCompositionStart","handleCompositionEnd","_doc$defaultView","onMouseUp","internalRootContext","onOpenChangeProp","elementsProp","floatingId","events","emit","_map$get","on","off","_map$get2","createPubSub","nested","positionReference","setPositionReference","reason","useFloatingRootContext","rootContext","computedElements","_domReference","setDomReference","_setPositionReference","domReferenceRef","externalReference","externalFloating","whileElementsMounted","setData","isPositioned","latestMiddleware","setLatestMiddleware","_reference","_setReference","_floating","_setFloating","setReference","referenceRef","setFloating","floatingRef","floatingEl","hasWhileElementsMounted","whileElementsMountedRef","platformRef","openRef","fullData","isMountedRef","floatingStyles","initialStyles","useFloating","computedPositionReference","useFocus","visibleOnly","blockFocusRef","timeoutRef","keyboardModalityRef","onBlur","pressure","detail","onMouseLeave","maxTouchPoints","movedToFocusGuard","hasAttribute","activeEl","ACTIVE_KEY","SELECTED_KEY","mergeProps","userProps","propsList","elementKey","isItem","domUserProps","_","__","validProps","propsOrGetProps","val","useInteractions","referenceDeps","floatingDeps","itemDeps","getReferenceProps","getFloatingProps","getItemProps","componentRoleToAriaRoleMap","useRole","_componentRoleToAriaR","ariaRole","referenceId","isNested","floatingProps","active","selected","commonProps","camelCaseToKebabCase","ofs","execWithArgsOrReturn","valueOrFn","useTransitionStyles","initial","unstable_initial","unstable_open","close","unstable_close","common","unstable_common","fnArgs","isNumberDuration","openDuration","closeDuration","styles","setStyles","isMounted","status","setStatus","durationMs","setIsMounted","timeout","useDelayUnmount","frame","useTransitionStatus","initialRef","closeRef","commonRef","closeStyles","commonStyles","openStyles","transitionProperty","transitionDuration","isPointInPolygon","point","polygon","isInside","xi","yi","xj","yj","safePolygon","buffer","blockPointerEvents","requireIntent","hasLanded","lastX","lastY","lastCursorTime","performance","now","onClose","clientX","clientY","clientPoint","isLeave","isOverFloatingEl","isOverReferenceEl","refRect","cursorLeaveFromRight","cursorLeaveFromBottom","isOverReferenceRect","isFloatingWider","isFloatingTaller","_ref2","rectPoly","cursorSpeed","currentTime","elapsedTime","deltaX","deltaY","distance","sqrt","getCursorSpeed","_ref3","cursorPointOne","cursorPointTwo","getPolygon","__options","createDOMMotionComponentProxy","componentFactory","Proxy","componentCache","_target","isAnimationControls","isKeyframesTarget","shallowCompare","prevLength","isVariantLabel","getValueState","visualElement","getVelocity","resolveVariantFromProps","custom","velocity","variants","resolveVariant","getProps","variantPriorityOrder","variantProps","memo","supportsScrollTimeline","ScrollTimeline","animations","stop","runAll","finished","Promise","all","animation","getAll","propName","setAll","newValue","attachTimeline","timeline","fallback","subscriptions","cancel","time","speed","startTime","methodName","controls","play","pause","complete","GroupPlaybackControls","onResolve","onReject","catch","maxGeneratorDuration","calcGeneratorDuration","generator","Infinity","isGenerator","onfinish","isBezierDefinition","easing","supportsFlags","linearEasing","memoSupports","supportsFlag","memoized","_a","supportsLinearEasing","progress","toFromDifference","generateLinearEasing","resolution","points","numPoints","isWaapiSupportedEasing","supportedWaapiEasing","cubicBezierAsString","linear","easeIn","easeOut","easeInOut","circIn","circOut","backIn","backOut","segmentEasing","isDragging","isDragActive","setupGesture","elementOrSelector","resolveElements","gestureAbortController","AbortController","signal","abort","filterEvents","isNodeOrChild","isPrimaryPointer","isPrimary","focusableElements","isPressing","WeakSet","firePointerEvent","dispatchEvent","PointerEvent","isValidPressEvent","seconds","millisecondsToSeconds","milliseconds","any","transformPropOrder","transformProps","positionalKeys","resolveFinalValueInKeyframes","stepsOrder","createRenderBatcher","scheduleNextBatch","allowKeepAlive","runNextFrame","useDefaultElapsed","timestamp","isProcessing","flagRunNextFrame","steps","thisFrame","nextFrame","flushNextFrame","toKeepAlive","latestFrameData","triggerCallback","step","schedule","keepAlive","immediate","queue","add","delete","process","frameData","createRenderStep","read","resolveKeyframes","preRender","render","postRender","processBatch","cancelFrame","frameSteps","clearTime","newTime","addUniqueItem","arr","removeItem","splice","SubscriptionManager","notify","numSubscriptions","getSize","velocityPerSecond","frameDuration","collectMotionValues","MotionValue","canTrackVelocity","updateAndNotify","updatedAt","setPrevFrameValue","setCurrent","change","renderRequest","hasAnimated","owner","prevFrameValue","prevUpdatedAt","onChange","subscription","eventName","unsubscribe","clearListeners","eventManagers","attach","passiveEffect","stopPassiveEffect","setWithVelocity","jump","endAnimation","getPrevious","startAnimation","resolve","animationStart","animationComplete","clearAnimation","animationCancel","isAnimating","destroy","motionValue","setMotionValue","hasValue","getValue","addValue","isMotionValue","addValueToWillChange","camelToDash","optimizedAppearDataAttribute","getOptimisedAppearId","calcBezier","a1","a2","cubicBezier","mX1","mY1","mX2","mY2","lowerBound","upperBound","currentX","currentT","abs","binarySubdivide","mirrorEasing","reverseEasing","backInOut","anticipate","pow","sin","acos","circInOut","isZeroValueString","number","alpha","sanitize","floatRegex","singleColorRegex","isColorString","testProp","isNullish","splitColor","aName","bName","cName","rgbUnit","clampRgbUnit","rgba","red","green","blue","alpha$1","hex","createUnitType","unit","degrees","percent","vh","vw","progressPercentage","hsla","hue","saturation","lightness","color","colorRegex","NUMBER_TOKEN","COLOR_TOKEN","complexRegex","analyseComplexValue","originalValue","indexes","var","types","parsedValue","parseComplexValue","createTransformer","numSections","output","convertNumbersToZero","complex","_b","getAnimatableNone","parsed","transformer","maxDefaults","applyDefaultFilter","defaultValue","functionRegex","functions","browserNumberValueTypes","borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth","radius","borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius","maxWidth","maxHeight","paddingRight","paddingBottom","marginTop","marginRight","marginBottom","marginLeft","backgroundPositionX","backgroundPositionY","transformValueTypes","rotateX","rotateY","rotateZ","scaleX","scaleY","scaleZ","skewX","skewY","translateX","translateY","translateZ","perspective","transformPerspective","originX","originY","originZ","numberValueTypes","zIndex","fillOpacity","strokeOpacity","numOctaves","defaultValueTypes","backgroundColor","outlineColor","borderTopColor","borderRightColor","borderBottomColor","borderLeftColor","WebkitFilter","getDefaultValueType","defaultValueType","invalidTemplates","isNumOrPxType","getPosFromMatrix","matrix","getTranslateFromMatrix","pos2","pos3","_bbox","matrix3d","transformKeys","nonTranslationalTransformKeys","positionalValues","toResolve","isScheduled","anyNeedsMeasurement","measureAllKeyframes","resolversToMeasure","resolver","needsMeasurement","elementsToMeasure","transformsToRestore","removedTransforms","removeNonTranslationalTransform","measureInitialState","restore","measureEndState","suspendedScrollY","scrollTo","readAllKeyframes","readKeyframes","KeyframeResolver","unresolvedKeyframes","onComplete","isAsync","isComplete","scheduleResolve","currentValue","finalKeyframe","valueAsRead","readValue","setFinalKeyframe","renderEndStyles","resume","invariant","isNumericalString","checkStringStartsWith","isCSSVariableName","startsAsVariableToken","isCSSVariableToken","singleCssVariableRegex","splitCSSVariableRegex","getVariableValue","depth","token1","token2","parseCSSVariable","resolved","getPropertyValue","trimmed","testValueType","dimensionValueTypes","findDimensionValueType","DOMKeyframesResolver","super","keyframe","resolveNoneKeyframes","originType","targetType","noneKeyframeIndexes","animatableTemplate","noneIndex","makeNoneKeyframesAnimatable","pageYOffset","measuredOrigin","measureViewportBox","measureKeyframe","finalKeyframeIndex","unsetTransformName","unsetTransformValue","isAnimatable","canAnimate","keyframes","originKeyframe","targetKeyframe","isOriginAnimatable","isTargetAnimatable","hasKeyframesChanged","isNotNull","getFinalKeyframe","repeatType","resolvedKeyframes","BaseAnimation","autoplay","repeatDelay","isStopped","hasAttemptedResolve","createdAt","updateFinishedPromise","calcStartTime","resolvedAt","_resolved","onKeyframesResolved","onUpdate","resolveFinishedPromise","resolvedAnimation","initPlayback","onPostResolved","reject","currentFinishedPromise","mixNumber","hueToRgb","q","mixImmediate","mixLinearColor","fromExpo","expo","colorTypes","asRGBA","getColorType","model","hslaToRgba","mixColor","fromRGBA","toRGBA","blended","combineFunctions","pipe","transformers","invisibleValues","getMixer","mixComplex","mixArray","mixObject","numValues","blendValue","template","originStats","targetStats","mixVisibility","orderedOrigin","pointers","originIndex","originValue","matchOrder","mixer","calcGeneratorVelocity","resolveValue","prevT","springDefaults","rootIterations","calcAngularFreq","undampedFreq","dampingRatio","durationKeys","physicsKeys","isSpringType","spring","optionsOrVisualDuration","bounce","visualDuration","restSpeed","restDelta","stiffness","damping","mass","isResolvedFromDuration","springOptions","PI","derived","envelope","derivative","exponentialDecay","exp","initialGuess","approximateRoot","findSpring","getSpringOptions","initialVelocity","initialDelta","undampedAngularFreq","isGranularScale","resolveSpring","angularFreq","cos","dampedAngularFreq","freqForT","sinh","cosh","calculatedDuration","currentVelocity","isBelowVelocityThreshold","isBelowDisplacementThreshold","inertia","power","timeConstant","bounceDamping","bounceStiffness","modifyTarget","nearestBoundary","amplitude","ideal","calcDelta","calcLatest","applyFriction","latest","timeReachedBoundary","spring$1","checkCatchBoundary","isOutOfBounds","hasUpdatedFrame","easingLookup","easingDefinitionToFunction","x1","y1","x2","y2","keyframeValues","times","easingFunctions","isEasingArray","absoluteTimes","convertOffsetToTimes","remaining","offsetProgress","fillOffset","defaultOffset","mapTimeToKeyframe","clamp","isClamp","inputLength","isZeroDeltaRange","mixers","customMixer","mixerFactory","numMixers","easingFunction","createMixers","interpolator","progressInRange","interpolate","frameloopDriver","passTimestamp","generators","decay","tween","percentToProgress","MainThreadAnimation","holdTime","cancelTime","playbackSpeed","pendingPlayState","teardown","onStop","KeyframeResolver$1","keyframes$1","generatorFactory","mapPercentToKeyframes","mirroredGenerator","resolvedDuration","totalDuration","tick","sample","timeWithoutDelay","isInDelayPhase","elapsed","frameGenerator","currentIteration","iterationProgress","isAnimationFinished","finish","driver","newSpeed","hasChanged","onPlay","stopDriver","acceleratedValues","supportsWaapi","unsupportedEasingFunctions","AcceleratedAnimation","pregeneratedAnimation","sampleAnimation","pregeneratedKeyframes","pregenerateKeyframes","valueName","keyframeOptions","iterations","startWaapiAnimation","pendingTimeline","playbackRate","playState","sampleTime","transformTemplate","underDampedSpring","keyframesTransition","getDefaultTransition","valueKey","animateMotionValue","isHandoff","valueTransition","when","_delay","delayChildren","staggerChildren","staggerDirection","isTransitionDefined","shouldSkip","shouldBlockAnimation","protectedKeys","needsAnimating","shouldBlock","animateTarget","targetAndTransition","transitionOverride","transitionEnd","animationTypeState","animationState","getState","latestValues","valueTarget","MotionHandoffAnimation","appearId","shouldReduceMotion","setTarget","animateVariant","presenceContext","getAnimation","getChildAnimations","variantChildren","forwardDelay","maxStaggerDuration","generateStaggerDuration","sortByTreeOrder","animateChildren","sortNodePosition","numVariantProps","getVariantContext","isControllingVariants","reversePriorityOrder","numAnimationTypes","createAnimationState","resolvedDefinition","animateVisualElement","animateList","createState","isInitialRender","buildResolvedTypeValues","animateChanges","changedActiveType","removedKeys","encounteredKeys","removedVariantIndex","typeState","propIsVariant","activeDelta","isActive","isInherited","manuallyAnimateOnMount","prevProp","variantDidChange","checkVariantsDidChange","shouldAnimateType","handledRemovedValues","definitionList","resolvedValues","prevResolvedValues","allKeys","markToAnimate","liveStyle","valueHasChanged","blockInitialAnimation","fallbackAnimation","fallbackTarget","getBaseTarget","shouldAnimate","setActive","setAnimateFunction","makeAnimator","createTypeState","whileInView","whileHover","whileTap","whileDrag","whileFocus","exit","Feature","updateAnimationControlsSubscription","unmountControls","subscribe","mount","prevAnimate","prevProps","unmount","isPresent","onExitComplete","prevIsPresent","prevPresenceContext","exitAnimation","register","addDomEvent","extractEventInfo","pageX","pageY","addPointerEvent","addPointerInfo","PanSession","transformPagePoint","contextWindow","dragSnapToOrigin","startEvent","lastMoveEvent","lastMoveEventInfo","updatePoint","info","getPanInfo","isPanStarted","isDistancePastThreshold","xDelta","yDelta","distance2D","onStart","handlePointerMove","transformPoint","handlePointerUp","onEnd","onSessionEnd","resumeAnimation","panInfo","initialInfo","onSessionStart","removeListeners","updateHandlers","subtractPoint","lastDevicePoint","startDevicePoint","timeDelta","timestampedPoint","lastPoint","isRefObject","calcLength","calcAxisDelta","originPoint","calcBoxDelta","calcRelativeAxis","relative","calcRelativeAxisPosition","layout","calcRelativePosition","calcRelativeAxisConstraints","calcViewportAxisConstraints","layoutAxis","constraintsAxis","defaultElastic","resolveAxisElastic","dragElastic","minLabel","maxLabel","resolvePointElastic","createBox","eachAxis","convertBoundingBoxToBox","isIdentityScale","hasScale","hasTransform","has2DTranslate","is2DTranslate","scalePoint","applyPointDelta","boxScale","applyAxisDelta","applyBoxDelta","TREE_SCALE_SNAP_MIN","TREE_SCALE_SNAP_MAX","translateAxis","transformAxis","axisTranslate","axisScale","axisOrigin","transformBox","instance","topLeft","bottomRight","transformBoxPoints","getContextWindow","elementDragControls","WeakMap","VisualElementDragControls","openDragLock","currentDirection","constraints","hasMutatedConstraints","elastic","originEvent","snapToCursor","panSession","pauseAnimation","stopAnimation","drag","dragPropagation","onDragStart","resolveConstraints","projection","isAnimationBlocked","getAxisMotionValue","measuredAxis","layoutBox","dragDirectionLock","onDirectionLock","onDrag","lockThreshold","getCurrentDirection","updateAxis","getAnimationState","getTransformPagePoint","onDragEnd","_point","shouldDrag","axisValue","applyConstraints","dragConstraints","measure","prevConstraints","resolveRefConstraints","calcRelativeConstraints","resolveDragElastic","relativeConstraints","rebaseAxisConstraints","onMeasureDragConstraints","constraintsElement","constraintsBox","rootProjectionNode","viewportBox","measurePageBox","measuredConstraints","calcViewportConstraints","userConstraints","convertBoxToBoundingBox","dragMomentum","dragTransition","onDragTransitionEnd","momentumAnimations","startAxisValueAnimation","dragKey","toUpperCase","scalePositionWithinConstraints","boxProgress","sourceLength","targetLength","calcOrigin","updateScroll","updateLayout","addListeners","stopPointerListener","dragListener","measureDragConstraints","stopMeasureLayoutListener","stopResizeListener","stopLayoutUpdateListener","hasLayoutChanged","asyncHandler","usePresence","safeToRemove","useCallback","LayoutGroupContext","SwitchLayoutGroupContext","globalProjectionState","hasAnimatedSinceResize","hasEverUpdated","pixelsToPercent","pixels","correctBorderRadius","correct","correctBoxShadow","treeScale","projectionDelta","original","xScale","yScale","averageScale","scaleCorrectors","microtask","cancelMicrotask","MeasureLayoutWithContext","componentDidMount","layoutGroup","switchLayoutGroup","layoutId","correctors","defaultScaleCorrectors","didUpdate","setOptions","getSnapshotBeforeUpdate","layoutDependency","willUpdate","promote","relegate","stack","getStack","members","componentDidUpdate","currentAnimation","isLead","componentWillUnmount","promoteContext","scheduleCheckAfterUnmount","deregister","MeasureLayout","jsx","applyTo","boxShadow","compareByDepth","FlatTree","isDirty","resolveMotionValue","unwrappedValue","isCustomValue","borders","numBorders","asNumber","isPx","getRadius","radiusName","easeCrossfadeIn","compress","easeCrossfadeOut","copyAxisInto","originAxis","copyBoxInto","originBox","copyAxisDeltaInto","originDelta","removePointDelta","removeAxisTransforms","transforms","scaleKey","originKey","sourceAxis","removeAxisDelta","xKeys","yKeys","removeBoxTransforms","sourceBox","isAxisDeltaZero","isDeltaZero","axisEquals","axisEqualsRounded","boxEqualsRounded","aspectRatio","axisDeltaEquals","NodeStack","scheduleRender","prevLead","lead","indexOfNode","findIndex","member","preserveFollowOpacity","show","resumeFrom","preserveOpacity","snapshot","animationValues","isUpdating","isLayoutDirty","crossfade","hide","exitAnimationComplete","resumingFrom","removeLeadSnapshot","metrics","totalNodes","resolvedTargetDeltas","recalculatedProjection","isDebug","MotionDebug","transformAxes","hiddenVisibility","resetDistortingTransform","sharedAnimationValues","setStaticValue","cancelTreeOptimisedTransformAnimations","projectionNode","hasCheckedOptimisedAppear","MotionHasOptimisedAnimation","MotionCancelOptimisedAnimation","createProjectionNode","attachResizeListener","defaultParent","measureScroll","checkIsScrollRoot","resetTransform","animationId","isTreeAnimating","isProjectionDirty","isSharedProjectionDirty","isTransformDirty","updateManuallyBlocked","updateBlockedByResize","isSVG","needsReset","shouldResetTransform","eventHandlers","hasTreeAnimated","updateScheduled","scheduleUpdate","projectionUpdateScheduled","checkUpdateFailed","clearAllSnapshots","updateProjection","propagateDirtyNodes","resolveTargetDelta","calcProjection","cleanDirtyNodes","record","resolvedRelativeTargetAt","hasProjected","isVisible","animationProgress","sharedNodes","notifyListeners","subscriptionManager","hasListeners","SVGElement","cancelDelay","resizeUnblockUpdate","checkElapsed","finishAnimation","registerSharedNode","hasRelativeTargetChanged","newLayout","isTreeAnimationBlocked","relativeTarget","layoutTransition","defaultLayoutTransition","onLayoutAnimationStart","onLayoutAnimationComplete","targetChanged","targetLayout","hasOnlyRelativeTargetChanged","layoutRoot","setAnimationOrigin","animationOptions","blockUpdate","unblockUpdate","isUpdateBlocked","startUpdate","resetSkewAndRotation","getTransformTemplate","shouldNotifyListeners","prevTransformTemplateValue","updateSnapshot","clearMeasurements","clearIsLayoutDirty","resetTransformStyle","notifyLayoutUpdate","clearSnapshot","removeLeadSnapshots","scheduleUpdateProjection","alwaysMeasureLayout","prevLayout","layoutCorrected","phase","layoutScroll","isRoot","wasRoot","isResetRequested","hasProjection","transformTemplateValue","transformTemplateHasChanged","removeTransform","pageBox","removeElementScroll","roundAxis","measuredBox","checkNodeWasScrollRoot","boxWithoutScroll","applyTransform","transformOnly","withTransforms","boxWithoutTransform","setTargetDelta","targetDelta","forceRelativeParentToResolveTarget","relativeParent","forceRecalculation","getLead","isShared","attemptToResolveRelativeTarget","getClosestProjectingParent","relativeTargetOrigin","targetWithTransforms","isProjecting","canSkip","pendingAnimation","prevTreeScaleX","prevTreeScaleY","treePath","isSharedTransition","treeLength","applyTreeDeltas","prevProjectionDelta","createProjectionDeltas","notifyAll","projectionDeltaWithTransform","snapshotLatestValues","mixedValues","relativeLayout","isSharedLayoutAnimation","isOnlyMember","shouldCrossfadeOpacity","hasOpacityCrossfade","prevRelativeTarget","mixTargetDelta","mixAxisDelta","mixAxis","mixBox","boxEquals","follow","opacityExit","borderLabel","followRadius","leadRadius","mixValues","motionValue$1","animateSingleValue","completeAnimation","applyTransformsToTarget","shouldAnimatePositionOnly","animationType","xLength","yLength","initialPromotionConfig","shouldPreserveFollowOpacity","getPrevLead","hasDistortingTransform","resetValues","getProjectionStyles","styleProp","emptyStyles","valuesToRender","latestTransform","xTranslate","yTranslate","zTranslate","elementScaleX","elementScaleY","buildProjectionTransform","transformOrigin","corrected","num","resetTree","measuredLayout","axisSnapshot","layoutDelta","visualDelta","parentSnapshot","parentLayout","relativeSnapshot","onBeforeLayoutMeasure","userAgentContains","roundPoint","DocumentProjectionNode","HTMLProjectionNode","documentNode","pan","removePointerDownListener","pointerDownEvent","session","createPanHandlers","onPanSessionStart","onPanStart","onPan","onPanEnd","removeGroupControls","dragControls","ProjectionNode","handleHoverEvent","lifecycle","handlePressEvent","observerCallbacks","observers","fireObserverCallback","entry","fireAllObserverCallbacks","thresholdNames","gestureAnimations","inView","hasEnteredView","isInView","startObserver","viewport","amount","once","rootInteresectionObserver","lookupRoot","rootObservers","JSON","initIntersectionObserver","observeIntersection","isIntersecting","onViewportEnter","onViewportLeave","prevViewport","hasViewportOptionChanged","tap","onPressStart","eventOptions","cancelEvents","startPress","onPressEnd","onPointerEnd","endEvent","success","onPointerUp","onPointerCancel","upEvent","useGlobalTarget","cancelEvent","isElementKeyboardAccessible","focusEvent","handleKeydown","handleKeyup","enableKeyboardPress","press","globalTapTarget","isFocusVisible","hover","onHoverStart","onPointerEnter","enterEvent","onHoverEnd","onPointerLeave","leaveEvent","LazyContext","MotionConfigContext","isStatic","reducedMotion","MotionContext","isVariantNode","variantLabelsAsDependency","isBrowser","featureProps","featureDefinitions","isEnabled","motionComponentSymbol","for","useMotionRef","visualState","externalRef","onMount","useIsomorphicLayoutEffect","useVisualElement","createVisualElement","ProjectionNodeConstructor","lazyContext","reducedMotionConfig","visualElementRef","renderer","initialLayoutGroupConfig","getClosestProjectingNode","optimisedAppearId","wantsHandoff","MotionHandoffIsComplete","MotionIsMounted","updateFeatures","MotionHandoffMarkAsComplete","allowProjection","createRendererMotionComponent","preloadedFeatures","useRender","useVisualState","MotionComponent","configAndProps","useLayoutId","inherit","getCurrentTreeVariants","useMemo","useCreateMotionContext","layoutProjection","combined","getProjectionFunctionality","jsxs","features","loadFeatures","ForwardRefMotionComponent","forwardRef","layoutGroupId","lowercaseSVGElements","isSVGComponent","useConstant","makeUseVisualState","make","scrapeMotionValuesFromProps","createRenderState","makeLatestValues","renderState","makeState","scrapeMotionValues","motionValues","isControllingVariants$1","isVariantNode$1","isInitialAnimationBlocked","variantToSet","getValueAsType","translateAlias","numTransforms","buildHTMLStyles","vars","hasTransformOrigin","valueAsType","transformString","transformIsDefault","valueIsDefault","buildTransform","dashKeys","array","camelKeys","buildSVGAttrs","attrX","attrY","attrScale","pathLength","pathSpacing","pathOffset","isSVGTag","attrs","dimensions","calcSVGTransformOrigin","useDashCase","buildSVGPath","renderHTML","setProperty","camelCaseAttributes","renderSVG","_styleProp","isForcedMotionValue","newValues","layoutProps","svgMotionConfig","needsMeasure","getBBox","updateSVGDimensions","htmlMotionConfig","copyRawValuesOnly","useHTMLProps","htmlProps","useInitialMotionValues","useStyle","draggable","userSelect","WebkitUserSelect","WebkitTouchCallout","touchAction","onTap","onTapStart","validMotionProps","isValidMotionProp","shouldForward","isValidProp","require","useSVGProps","_isStatic","visualProps","rawStyles","createUseRender","forwardMotionProps","filteredProps","isDom","filterProps","elementProps","Fragment","renderedChildren","createMotionComponentFactory","prefersReducedMotion","hasReducedMotionListener","valueTypes","visualElementStore","propEventHandlers","VisualElement","_props","_prevProps","_visualElement","valueSubscriptions","prevMotionValues","propEventSubscriptions","notifyUpdate","triggerBuild","renderInstance","renderScheduledAt","baseTarget","initialValues","initialMotionValues","removeFromVariantTree","addVariantChild","bindToMotionValue","matchMedia","motionMediaQuery","setReducedMotionPreferences","addListener","initPrefersReducedMotion","feature","valueIsTransform","removeOnChange","latestValue","removeOnRenderRequest","removeSyncCheck","MotionCheckAppearSync","other","sortInstanceNodePosition","featureDefinition","FeatureConstructor","build","measureInstanceViewportBox","getStaticValue","nextValue","prevValue","existingValue","removeValue","updateMotionValuesFromProps","handleChildMotionValue","getVariant","getClosestVariantNode","closestVariantNode","removeValueFromRenderState","getBaseTargetFromProps","readValueFromInstance","findValueType","setBaseTarget","valueFromInitial","DOMVisualElement","compareDocumentPosition","childSubscription","textContent","HTMLVisualElement","defaultType","SVGVisualElement","motion","PopChildMeasure","childRef","sizeRef","PopChild","nonce","motionPopId","head","sheet","insertRule","removeChild","PresenceChild","presenceAffectsLayout","presenceChildren","newChildrenMap","memoizedOnExitComplete","childId","getChildKey","onlyElements","filtered","Children","isValidElement","AnimatePresence","propagate","isParentPresent","presentChildren","presentKeys","pendingPresentChildren","exitComplete","diffedChildren","setDiffedChildren","useState","setRenderedChildren","exitingChildren","nextChildren","forceRender","isEveryExitComplete","isExitComplete","mergeClasses","defaultAttributes","xmlns","strokeLinecap","strokeLinejoin","Icon","absoluteStrokeWidth","iconNode","createLucideIcon","iconName","ChevronDown","heading","showArrowOnHover","onMouseEnter","visible","hidden","closed","ul","I","solid","dashed","dotted","double","List","Separator","E","F","L","T","W","A","handleClose","toArray","P","as","Trigger","Content","Portal","ContentWrapper","closable","disableHover","neutral","yellow","inverse","pill","toPascalCase","camelCase","p1","p2","toCamelCase","hasA11yProp","ArrowUpRight","CircleQuestionMark","cx","cy","FileText","Headset","User","dashboard","widgets","templates","learn","settings","onboarding","upgrade","headerFooterBuilder","onboardingsuccess","__assign","__awaiter","thisArg","_arguments","fulfilled","rejected","__generator","sent","trys","ops","verb","op","pop","WhatsNewRSSDefaultArgs","rssFeedURL","loaderIcon","viewAll","triggerButton","beforeBtn","afterBtn","notification","setLastPostUnixTime","getLastPostUnixTime","flyout","title","innerContent","titleLink","additionalClasses","excerpt","wordLimit","moreSymbol","readMore","closeOnEsc","closeOnOverlayClick","closeBtnIcon","formatDate","onOpen","onReady","WhatsNewRSS","rssFeedURLs","lastPostUnixTime","multiLastPostUnixTime","notificationsCount","multiNotificationCount","hasNewFeeds","multiHasNewFeeds","validateArgs","parseDefaults","setElement","getElement","setID","setRSSFeedURLs","WhatsNewRSSCacheUtils","setInstanceID","getID","RSS_Fetch_Instance","WhatsNewRSSFetch","RSS_View_Instance","WhatsNewRSSView","setNotificationsCount","setTriggers","warn","getArgs","requiredArg","querySelector","_rssFeedURL","ID","btoa","isMultiFeedRSS","_item","getRSSFeedURLs","fetchData","res","currentPostUnixTime","date","setNotification","getNotificationsCount","getTriggerButtonID","getFlyoutID","flyoutInner","flyoutCloseBtn","getFlyoutCloseBtnID","multiFeedNav","getFlyoutMultiFeedNavID","injectContents","innerHTML","isNewPost","contentTitle","postLink","Date","createExcerpt","description","listChildrenPosts","innerContentWrapper","setIsLoading","navBtns","navBtn","setMultiFeedTabNotificationCount","feedKey","currentFeedKey","innerContentClassName","handleFlyoutClose","instanceID","prefixer","prefixKey","_setDataExpiry","expiry","getTime","sessionStorage","_isDataExpired","getItem","setSessionData","getSessionData","unixTime","SESSION_DATA_EXPIRY","LAST_LATEST_POST","SESSION","RSS","feed","sessionCache","fetchPromises","fetch","DOMParser","parseFromString","contentEncoded","rssDate","createTriggerButton","createFlyOut","isLoading","flyoutWrapper","notificationBadge","wrapperClasses","notificationCount","tabBtn","_count","readMoreLink","words","rawExcerpt","_children","details","summary","itemsWrapper","postContentDoc","post_content","itemDiv","post_title","post_date","outerHTML","currentDate","difference","hour","minute","day","week","month","minutes","hours","days","weeks","months","updateNavMenuActiveState","currentPath","parentLi","closest","itemText","_useState2","_slicedToArray","setIsDropdownOpen","linkStyle","borderBottom","handleRedirect","instanceRef","styleId","getCSS","addStyleIfNotExists","useWhatsNewRSS","dayOfWeek","toLocaleDateString","weekday","getDate","year","getFullYear","Topbar","src","icon_url","alt","log","Button","background","DropdownMenu","Badge","uaelite_current_version","CircleHelp","_toConsumableArray","Info","TriangleAlert","Trash2","warning","actionType","onAction","actionLabel","inline","light","dark","ie","setOpen","tooltipPortalRoot","tooltipPortalId","triggers","interactive","mouseOnly","restMs","move","handleCloseRef","delayRef","handlerRef","restTimeoutRef","blockMouseMoveRef","performedPointerEventsMutationRef","unbindMouseMoveRef","restTimeoutPendingRef","isHoverOpen","_dataRef$current$open","onLeave","closeWithDelay","runElseBranch","closeDelay","cleanupMouseMoveHandler","clearPointerEvents","isClickLikeOpenEvent","_elements$floating","onScrollMouseLeave","_elements$floating2","openDelay","_handleCloseRef$curre","_tree$nodesRef$curren","parentFloating","setPointerRef","onMouseMove","handleMouseMove","movementX","movementY","M","H","O","required","help","switchId","htmlFor","bytes","crypto","getRandomValues","Uint8Array","D","toggleDial","Monitor","rx","requestQueue","processQueue","currentRequest","widget","updateCounter","showTooltip","is_pro","infoText","demo_url","is_active","slug","doc_url","is_new","setIsActive","_useState4","_useState6","isTooltipOpen","setIsTooltipOpen","_useState8","isDemoTooltipOpen","setIsDemoTooltipOpen","apiCall","activateWidget","formData","FormData","append","hfe_admin_data","apiFetch","ajax_url","method","dangerouslySetInnerHTML","__html","Container","fontSize","Tooltip","textAlign","alignItems","fontWeight","lineHeight","textTransform","letterSpacing","rel","textDecoration","Switch","WebkitLineClamp","WebkitBoxOrient","wordBreak","circular","rectangular","allWidgetsData","setAllWidgetsData","setLoading","headers","hfe_nonce_action","widgetsData","keywords","title_url","is_activate","convertToWidgetsArray","Skeleton","WidgetItem","Headphones","BookOpenText","NotepadText","Star","Title","HelpCircle","Plus","hfe_post_url","elementor_page_url","frameBorder","allow","allowFullScreen","Rocket","augmented_reality","Check","asyncGeneratorStep","_next","_throw","trigger","exitOnClickOutside","V","exitOnEsc","design","K","scrollLock","U","dialogContainerRef","dialogRef","div","ee","Panel","Description","CloseButton","Header","Body","Footer","Backdrop","plugin","setUpdateCounter","siteUrl","zipUrl","desc","wporg","isFree","settings_url","isDialogOpen","setIsDialogOpen","pluginData","setPluginData","activatePlugin","buttonElement","spanElement","innerText","Dialog","siteurl","currentPluginData","pluginname","installer_nonce","errorCode","alert","getAction","plugins","setPlugins","allInstalled","setAllInstalled","convertToPluginsArray","fetchSettings","_asyncToGenerator","_regeneratorRuntime","_callee","pluginsData","areAllInstalled","_context","is_installed","t0","ExtendWebsiteWidget","upgrade_notice_dismissed","showNotice","setShowNotice","handleCloseUpgradeNotice","abrupt","URLSearchParams","justifyContent","dashboardURL","preventBackNavigation","UpgradeNotice","NavMenu","WelcomeContainer","Widgets","ExtendWebsite","UltimateFeatures","QuickAccess","Search","searchTerm","setSearchTerm","loadingActivate","setLoadingActivate","loadingDeactivate","setLoadingDeactivate","_useState0","loadingUnusedDeactivate","setLoadingUnusedDeactivate","_useState10","_useState12","_useState14","_useState16","filteredWidgets","_widget$keywords","keyword","handleActivateAll","prevWidgets","handleDeactivateAll","_callee2","_context2","handleUnusedDeactivate","_callee3","_context3","_data$data","deactivated","deactivatedSlugs","SearchIcon","minWidth","borderRight","Trash2Icon","minHeight","augemented_url","FeatureWidgets","UltimateWidgetFeatures","templatesStatus","setTemplatesStatus","redirectUrl","setRedirectUrl","templateData","templates_status","redirect_url","button_text","plugin_file","plugin_slug","st_pro_status","st_status","reload","Zap","outlineWidth","template_url","ExploreTemplates","onSelectItem","selectedItemId","setSelectedItemId","main","handleSelectItem","selectedItem","_goober","firstChild","charCodeAt","raw","toasts","toast","toastId","dismissed","pausedAt","pauseDuration","blank","ariaProps","J","dismiss","promise","oe","se","ne","de","ue","le","fe","Te","iconTheme","ye","ge","be","Se","Ae","ve","onHeightUpdate","MutationObserver","subtree","childList","characterData","De","Oe","reverseOrder","toastOptions","gutter","containerStyle","containerClassName","removeDelay","defaultPosition","updateHeight","startPause","endPause","calculateOffset","Ee","Vt","radioData","show_theme_support","theme_option","selectedOption","setSelectedOption","isInitialLoad","setIsInitialLoad","handleRadioChange","saveOption","option","response","hfe_compatibility_option","json","_x","Label","Toaster","previousLiteVersions","uaelite_versions","liteVersionRef","liteVersionSelect","setLiteVersionSelect","setFreeproductSelect","openLitePopup","setOpenLitePopup","rollbackUrl","uaelite_rollback_url","analytics_status","handleSwitchChange","newIsActive","uae_usage_optin","UsageTracking","Lock","ry","MoveUpRight","author","author_url","plugin_name","short_name","hide_branding","logo_url","internal_help_links","replace_logo","setSettings","handleChange","onSubmit","user_url","user__selected_url","MyAccount","theme_url","theme_url_selected","ThemeSupport","version_url","version__selected_url","VersionControl","branding_url","branding__selected_url","Branding","savedItemId","setSelectedItem","tab","itemId","onSettingsTabClick","Sidebar","publish","seal","getHistory","toastItem","autoDismiss","dismissAfter","removeToast","singleTon","li","Minus","autoClose","collapsible","isOpen","onToggle","simple","boxed","iconType","brand600","tertiary","weight","ChevronRight","ExternalLink","Video","chapterId","_ref$isLast","isLast","onCompletionChange","onLearnHowClick","_step$completed","completed","_step$isPro","isPro","isCompleted","setIsCompleted","handleCompletion","newStatus","LearnIcon","statusText","Text","isExternal","chapters","onStepCompletionChange","handleLearnHowClick","Accordion","chapter","totalStepsCount","completedStepsCount","sprintf","BsfLearnStep","FUIButton","isLoaded","setIsLoaded","onLoad","_ref$target","_ref$isHeading","isHeading","_items","Image","Paragraph","Checklist","_item$learn","_ref$open","RenderContent","_ref$chapters","initialChapters","_ref$endpoints","endpoints","_ref$className","onProgressChange","apiChapters","setApiChapters","setError","abortController","_useBsfLearn","_ref$initialChapters","_ref$saveEndpoint","saveEndpoint","setChapters","learnHowDialogOpen","setLearnHowDialogOpen","currentLearnHowItem","setCurrentLearnHowItem","updateStepCompletion","stepId","prevChapters","markStepCompleted","markStepIncomplete","resetProgress","firstIncompleteChapterId","incompleteChapter","progressStats","totalSteps","sum","completedSteps","completionPercentage","totalChapters","isFullyCompleted","getChapterStats","openLearnHowDialog","closeLearnHowDialog","useBsfLearn","BsfLearnSkeleton","BsfLearnChapters","LearnHowDialog","showVideo","setShowVideo","prevState","BsfLearn","sections","iconFree","iconPro","renderIcon","isAvailable","X","section","FreevsPro","dot","numberIcon","currentStep","lineClassName","completedVariant","completedIcon","isCurrent","sizeClasses","labelText","Step","onPluginSelect","isChecked","setIsChecked","newCheckedState","isCheckedValue","ChevronLeft","allSteps","component","setCurrentStep","CheckIcon","markStepSkipped","selectedPlugins","setSelectedPlugins","firstName","user_fname","lastName","user_lname","email","user_email","domain","setFormData","isFormSubmitted","setIsFormSubmitted","fieldErrors","setFieldErrors","handleInputChange","prevErrors","getOwnPropertySymbols","propertyIsEnumerable","_objectWithoutProperties","_toPropertyKey","uninstalledPlugins","handleNotifyChange","handlePluginSelect","installSelectedPluginsInBackground","_ref4","_callee4","pluginsToInstall","_context4","_iterator","_step","_formData","_createForOfIteratorHelper","t1","showPluginsSection","ExtendOnboardingWidget","_formData$email","_formData$firstName","errors","today","toISOString","siteDomain","hostname","fname","lname","ok","callEmailWebhook","megaMenu","modalPopup","wooCommerceWidgets","premiumWidgets","selectedFeatures","setSelectedFeatures","handleFeatureChange","featureName","hasProFeaturesSelected","accentColor","saveOnboardingAnalytics","stepsCompleted","stepsSkipped","setEmail","setFname","setLname","setErrors","fnameerrors","setFnameErrors","skipped","exitedEarly","exitAtStep","skippedSteps","handleBackButton","create_new","LoaderCircle","hasError","onboarding_success_url","callValidatedEmailWebhook","visibleSteps","stepNames","_allSteps","_React$useState2","savedStep","stepName","timer","StepComponent","icon_svg","icon_new","ProgressSteps","OB","_routes$dashboard","Dashboard","Onboarding","Features","Templates","Learn","Settings","Upgrade","loaded","setLoaded","onhashchange","CustomRouter","Loader","domReady","rootElement","App","show_view_all","is_hfe_post","navMenuElement","newDiv"],"sourceRoot":""}PK���\�	���� build/022beb5767ebf3d54c2c.woff2nu�[���wOF2�8�b���`?STATD�
�P�7�t6$�d �l�3&1�p�I+��S�:dX��efT�1�nw�8���U\S�LU!�/P>�q���q`\N�׼r�$��}��YP����^��~$�<��?�)�چ�Q�Hh���VbL�Ψ�.]�[�(܏\ԏL]����{�'
P�0�f�ې�C&D(�<��\�/�M�^�(�T��ϝs��x<!����I��5RV?�����$j&d��U�D�i
'9�>�|H|��*�n���,�yD�N��Q5.��*m��]��;�ޞ#��� ��]�;	+"U�=u�յ�w7�&�p��`��
HF#��PQ�G(�E����M���S��&]��!�aw�����o�@� ��B\!n0�ě$�BH� H�pH�H�(H�xK"$	"�I�	�@dT��c���!Vy�ŐRe�
vH�E�-�6m�ݐeVBz�����g3d�m��@�99���3� 4�l����#CP��AC&MA@q��HU��Wu���Y ��W<�_����\~
/@�с\��*n\yA�@P`B8h(���o3*���A��6���h��\`-,���7;s��џ�<o\ɑ�>�,��+�/�<��far�ߌ_���}����]����Ex�~�+]/���;ٯu�>����h�s�7ty�S�8/�㻌��I`�J݃���Д�w�l��j�r*;�:
@9�����'b�#����d�0-G�[� �N����Nj���~Z�j�����1�W�SL5��@�`�u�ڿ�a�w!�M��x꤆��0��P�`uGU�JV�<\뭎݅Z�X��7�G��f\}E�@u�ԕ��nS;��B����(�"
������a�����0�(�lT�M��X�X�5H�Ё-��vvq�큖@c�.�9�7gr�q^�q�7��<��G���w+���܅
�����@�Y�l���_���BBF�2'��c����)(���:z
)V�M�e�[a�^�l��>�ppt*$TGE�$��G�O�C�)2��"�	��u�6�S'WtQ(/5�)�f!>w��p!P4*թ��*X6x�t�6�N�n�
�<�AzЃ�=��Og�6ȅ<(�B(�b(�2�C/Y%>;����c�F��|`�G�^ ������	s����F���v0��G'�)et!��'�)T*��H���m�
�C���y�φ�H#PI�H��@("�3Ph�+���{�
Ҥ����Д$��H���fh�.��x����`
�XWЋ^w7_<W@�_��k�@]d�?P1 
��� �t�/Ļ9 ��?U��ТĿ��)E��W���W�\)Dp:&��V�[�̻}��L!����?3a��py5�*���F�`dQe�;-�����_��s�kU�Z�L�����<�����o@nVe{y�-�c��N4�-�ۿ_���)$���<n
P�sW����2�������[��j���"�	�X�a�k*�ZDi�C�.�:��Ʋ�
l�%Z�g�$��H���Z��d�$�Fi6�Ja�T���Ii7��t�39���P�d�Lb��p�08AٜO�@��E����	9C��:^��R,�l}XT~�Т��X쩖!\<=�a^~�+��m)���=X�\�r/�f���.�J?I���"�(����(���Y�>�]x�o@L �2�>�c��CB'J:�Z�$��Of/^px��7����)����5$b��#��_:�WX�r'8҉c�a�����.ۯMf�n��[�
�p�k�Ip]5o�q���\�F��8fjLp�|�x��D.�l�A���l�:KOs7�8^������l�w�1��@eQ���r���L�,�⃰|{�1��K_�H�0��+��R��$�R�����5��aL�V�d�۳���'cη㨭K��ȵ�ǟ��t���D�m�M���siX}��gc����}�������0��k�h.@�[����b���~�s�'�?�@p�*NpL��-rgf�Z�B5�����C�K�d(�.Զ$ٟ�
e��J��R�+��t�n�A�}�ګh1�(B%!��s�g����ߊ}=�Q_��i�N�\���+}���}V��- f��V�7|\�O�k
c\���{���m�DKA���Z�s����-Iй�ݗ�_�mtT�l���N~��V�6]���[���<�������+���8i��ǥɳ׋{l��କ�ґ��v���hL�GG��V��	�C-�NV�)rG/O�(�~�̼��c6q�k�dN+	B�eˍ�!i�W���{����� e+�l������и�'�����[yԹ\;qb�ܚ4z��="���
������q�(��\�	P�����=��s�f�Uƞ���x"����`=u{z�~l�����͠����=�꽘����J.N�w�S�z��VZ���w879�;�4
8�~��YK�@1V��@t�^��k�*�&k��ن�m�Q]8;�&!ǘ\3&,�+�ܒ�bD�\c����Q���~��F���`5�h֭T���U}4��a�V�sU)�*C�t��-Ŋ:SݲaE�I��^����?i?�%��c�O+vFC��l���Qz5fP�k�ܒlJ���I�x��	F�ȑ�gHop�P
�]�J��5MWE��HT��Qf�bG�`�K�d_����1�����bZ��b��0ŷ�a{#��>ur�C�����h-3�@�oYL�����6�'@;���ƹ�T�+?���qkM�Z��筿ħ&���k�Mʄ%B����ף��_�"��E�t�E�͇�?�*L�)�W����j���+tɺ�o=��U�N�k5�q[�L�IXY�k��m;ke��W�)�RX���	���>)!�		[ف9sN_���Z��1=_��Q�%����0��:(���{ ���C�S���*�)�>Y�ч�p0�k�.gK�˓�_B75��||~��c_��N��-j͝��و�?��(7�m�H���ڲ:������vx��Z�7���~S��C���V��C�j� �$QdYK�a!ޠ�s�WI�D��/˜��F�4˜j��huB	S�k�zۙb��˜����jo+���	���ta4��4]��mX�|��<3�e�p*��ݠ��&ed�c�H�$4����p�"�+_hr�Ԑ�ΎJ�� �s�v9��J���2�g
=�6��,>�o��ڂL2N��w�#Wv+��XU���y�Ɠ�3�$;�O�g@@���A��4���
p(T2��ƍ� ���5Z����)yA��x��ѷUx��$�o�E��s_GM��7����6cs{j�'�bit;MK�Վ�,��&
o�i1\�d�(��D�eݚ�q6ט�b^�����?L(+�z�z!��iluz�#�_b@$�����Q����f7��g�5�6�� y<�ߒ\�U�[g��`~���h�q�#�0�Ț�lz��c�֞��2p�6"��xO�ٴN�ꧥ��
2�h���}���Da�6M<2���C����]wW{X[������z�\"�Qd5�f<�%�K�a�:�������J#�؝t=�$�%
5Ϝ�f]�.�,�$�,�uߺ ��ki`��!7O�Qk��$�,[�H�n`����x��w�BOՄ0�n����qIuI�X��vL5'�NRp�����ޢlvR^_b�D�)mnF�K$m� @��󗩪,L-���yf×�c<�k�u���L�G�T�.*��f[g!��h���˹1�h?F9/f ����Q�~��֑����s��f�����?���„�S�c�rۑ8�?�w�w�K�4�C�O����~�!��B�/�5~_��I/춿��H/���-}]O͎�-���vu����B���
X� Y�����ie����\��h���-=e�=f{	���qf�M/��_g��ԇû�(���k��QG�^s��{p~`���ڜhaЃoS��k?�@���$��B
�a8�*7��n���F���[#Yʆ����v��a�^�,�}9u%>��,)��X�?`�?X���9�k�v�)�3��;�<1�
"w��2R�P�P�`Bt���s�=�����yn���{̬{Կ�@,�4���������������"����u�G��>�����41��	��y�#���S����U"35j��Ȥ	_b��!"�1[�g�w���!h�1��� ���&`O��!�&��i�G�b��iJ|�乚�u���/;-��:-��Rk��Bܩa������Xţ2�o`�ġ�c��й�D�=ԺGr�1b����G�?{ X`�X�J�v[��b}b��O���o�m.��}���{$1�r�B�byr�Z1���T�1��](��;�4�U���]|jol�dg�_�5��7�D蠙�$ݺ��Oe��1�;[��R}��]�`�7����6�=e�Z�����2�{�ٶz}:�n���D�s�g��C���:����B݂�v��/f��m���b�+��=a�u�=�s��ۃ�5�:6�k��>�V�?6\qЀ7���AA��[wwO^��kY���˳�m�{�i�ߒsc�2Ӹ����@;&_�+��Ot�L�KI�9��=��]�NR�]g���{�O�u�R��3c���4�����y�sj�����8����׭�g��~��X@���LY����s3U-�)ϻ�*	=,jS�/�RHz^7��r5h�8��邀��.�wv�q���g���xy@?O�סn��_��ɛ8�ҷ��-cřiz��ܶ�2���At��;��
_�<B��fݤAK��McC ���Q����\��OT�:.���f��T��>;�ボt?��g=�m�G>��y+�����,���G`�~��.���*<�����YL�3!ȵ[D��ە�9�:6>��s���)��pKjG>8$�ߵ�gJ=3����_�w|����z��� qE�)c�x�����j���_��Ru��C��q�I|�������ab��<��mh���+���.9W�wq��Os�m��)+��F`[ߔ���5������{�d��5��<$��g'r��)��B�	���ws���I��צ���z,]��$KAx��ǼS�e���0��I����n���=<
�4us��;�M0:A�#`����� �W�U�A`D=�Y�@@�8W���!����P���H����4	-��d�>MSĚL�Hמv���C2��	h<b0�Ƴ�ѦA�f���Ԩ��ܭ�I�t��>�R���l��S�:
�p���Hd����<��N�j���r
e�J6v�N��!W�T��5jТG>��4�]F��Α��|6(ed����ioX�Q�.͙H^���'�E�m�>҈��"IU�+Rmc���t�Ď?ԍ�զ�l�R���GשWum��+��%Qu��0	d��;<���Z4tcH��(���h�h����7�Q�h���@�ȫ����ʷ����. N�Kl��}/�@A���+TX��1E�\d?z&J��R�Wj���qJ/W^��s�����<�)J�*Mz*/�!�� ���FxBFN�&%U�L6�A�>m�t�����Is9YX�f�+/[�����V���J�*S���*U�����W�/�(r�khU,�Ш��Z�jӮC�.ݖZfy��Cz{3P�{)Tm$���N��L�9l������i=X$\��n8����2�2��ʖH�+��>�td����]�\��o�c�T�H]U�K�m���k��d�ީ�պY��RÇLh��΋%2$*�96gN��0�����jéʞ:,'q��a���ƴ�;���Y��_�sq�^8�},�/�ɦ��^6������T?VT0!�)��Ν�i���QiT5���a�vj���e���ZGm��F�A��k��߄}�<&2����g{f#m4�3��-���&���m�m���a�����0:�]F��]���0��r�_�:�����o4�ƒ'M�����[Ŵ��_If��{��d���4��q��U���\s^�Gsk')[PK���\�dw���#.claude/analytics-data-reference.mdnu�[���# HFE (UAE Lite) — Analytics Data Reference

## Static Data (sent every 2-day cycle)

| Key | Example Value | Source |
|---|---|---|
| `free_version` | `2.8.5` | `HFE_VER` constant |
| `pro_version` | `1.44.1` or `""` | `UAEL_VERSION` constant (empty if Pro not active) |
| `site_language` | `en_US` | `get_locale()` |
| `elementor_version` | `3.35.8` | `ELEMENTOR_VERSION` constant |
| `elementor_pro_version` | `""` | `ELEMENTOR_PRO_VERSION` constant |
| `onboarding_triggered` | `yes` / `no` | `hfe_onboarding_triggered` option |
| `uaelite_subscription` | `yes` / `no` | `uaelite_subscription` option |
| `active_theme` | `astra` | `get_template()` |
| `is_theme_supported` | `true` / `false` | `hfe_is_theme_supported` option |

## Numeric Values (sent every 2-day cycle)

| Key | Description |
|---|---|
| `total_hfe_templates` | Count of published `elementor-hf` posts |
| Per-widget usage counts | e.g. `hfe-nav-menu: 3`, `hfe-site-logo: 5` (from `uae_widgets_usage_data_option`) |

## KPI Records (last 2 days, per day)

| Key | Description |
|---|---|
| `total_templates` | Published template count on that date |
| `total_hfe_widget_instances` | Sum of all HFE widget instances across templates |
| `modified_templates` | Templates modified on that date |

## Learn Progress

| Key | Description |
|---|---|
| `learn_chapters_completed` | Array of chapter IDs completed by any user on the site |

## One-Time Milestone Events

Events are queued in `hfe_usage_events_pending` and flushed into the `events_record` key in the payload. After sending, event names move to `hfe_usage_events_pushed` for dedup. Each event fires only once per site.

| Event Name | Event Value | Properties | Trigger |
|---|---|---|---|
| `plugin_activated` | Plugin version (e.g. `2.8.5`) | `{"source": "self"}` or `{"source": "astra"}` | `register_activation_hook` |
| `onboarding_completed` | `""` | `{}` | State-detected when `hfe_onboarding_triggered = 'yes'` |
| `first_template_published` | Post ID (e.g. `123`) | `{"template_type": "type_header"}` | `transition_post_status` — first `elementor-hf` post published |
| `learn_completed` | `""` | `{}` | REST `update-learn-progress` — when ALL chapters and ALL steps are completed |
| `theme_compat_changed` | `"1"` or `"2"` | `{}` | `save_theme_compatibility_option` AJAX handler |

## Event Flow

```
1. Action triggers → HFE_Analytics_Events::track() → saved to hfe_usage_events_pending (wp_options)
2. Every 2 days → bsf_core_stats filter → flush_pending() → events added to payload as events_record
3. wp_remote_post → analytics.brainstormforce.com/api/analytics/ → ClickHouse
4. Event names moved to hfe_usage_events_pushed (dedup) → pending cleared
```

## Files

| File | Role |
|---|---|
| `inc/class-hfe-analytics-events.php` | Analytics Events class (track, flush, dedup) |
| `inc/class-hfe-analytics.php` | BSF Analytics integration, static data, event hooks |
| `header-footer-elementor.php` | `plugin_activated` event in activation hook |
| `admin/class-hfe-addons-actions.php` | `theme_compat_changed` event |
| `inc/class-hfe-learn-api.php` | `learn_completed` event |

## GitHub

- Issue: https://github.com/brainstormforce/header-footer-elementor/issues/1598
- PR: https://github.com/brainstormforce/header-footer-elementor/pull/1599
PK���\���j��wpml-config.xmlnu�[���<wpml-config>
	<custom-types>
		<custom-type translate="1">elementor-hf</custom-type>
	</custom-types>
    <elementor-widgets>
    	<widget name="copyright">
			<conditions>
				<condition key="widgetType">copyright</condition>
			</conditions>
    		<fields>
        		<field type="Copyright Text">shortcode</field>
        		<field type="Copyright: Link">link>url</field>
    		</fields>
		</widget>
		<widget name="page-title">
			<conditions>
				<condition key="widgetType">page-title</condition>
			</conditions>
    		<fields>
        		<field type="Page Title: Before Title Text">before</field>
        		<field type="Page Title: After Title Text">after</field>
        		<field type="Page Title: Link">page_heading_link>url</field>
    		</fields>
		</widget>
		<widget name="retina">
			<conditions>
				<condition key="widgetType">retina</condition>
			</conditions>
    		<fields>
        		<field type="Retina Image: Custom Caption">caption</field>
        		<field type="Retina Image: Link">link>url</field>
    		</fields>
		</widget>
		<widget name="hfe-search-button">
			<conditions>
        		<condition key="widgetType">hfe-search-button</condition>
     		</conditions>
      		<fields>
        		<field type="Search Placeholder">placeholder</field>
      		</fields>
    	</widget>
		<widget name="site-logo">
			<conditions>
				<condition key="widgetType">site-logo</condition>
			</conditions>
    		<fields>
        		<field type="Site Logo: Custom Caption">caption</field>
        		<field type="Site Logo: Link">link>url</field>
    		</fields>
		</widget>
		<widget name="hfe-site-tagline">
			<conditions>
				<condition key="widgetType">hfe-site-tagline</condition>
			</conditions>
			<fields>
				<field type="Site Tagline: Before text">before</field>
				<field type="Site Tagline: After text">after</field>
			</fields>
		</widget>
		<widget name="hfe-site-title">
			<conditions>
				<condition key="widgetType">hfe-site-title</condition>
			</conditions>
			<fields>
				<field type="Site Title: Before text">before</field>
				<field type="Site Title: After text">after</field>
				<field type="Site Title: Custom link">heading_link>url</field>
			</fields>
		</widget>
		<widget name="hfe-breadcrumbs-widget">
			<conditions>
				<condition key="widgetType">hfe-breadcrumbs-widget</condition>
			</conditions>
			<fields>
				<field type="Breadcrumbs: Separators text">separator_text</field>
				<field type="Breadcrumbs: Home text">home_text</field>
				<field type="Breadcrumbs: Search text">search_text</field>
				<field type="Breadcrumbs: Custom text">error_text</field>
			</fields>
		</widget>
		<widget name="post-info-widget">
			<conditions>
				<condition key="widgetType">post-info-widget</condition>
			</conditions>
			<fields>
				<field type="Post Info: Before Text">text_prefix</field>
				<field type="Post Info: No Comments">string_no_comments</field>
				<field type="Post Info: One Comment">string_one_comment</field>
				<field type="Post Info: Comments">string_comments</field>
				<field type="Post Info: Custom">custom_text</field>
				<field type="Post Info: Custom URL">custom_url>url</field>
			</fields>
		</widget>
		<widget name="hfe-infocard">
			<conditions>
				<condition key="widgetType">hfe-infocard</condition>
			</conditions>
			<fields>
				<field type="Info Card: Title">infocard_title</field>
				<field type="Info Card: Description">infocard_description</field>
				<field type="Info Card: Link Text">infocard_link_text</field>
				<field type="Info Card: Button Text">infocard_button_text</field>
				<field type="Info Card: CTA URL">infocard_text_link>url</field>
			</fields>
		</widget>
		<widget name="hfe-counter">
			<conditions>
				<condition key="widgetType">hfe-counter</condition>
			</conditions>
			<fields>
				<field type="Counter: Title">title</field>
				<field type="Counter: Prefix">prefix</field>
				<field type="Counter: Suffix">suffix</field>
			</fields>
		</widget>
	</elementor-widgets>
</wpml-config>
PK���\�@��Z�Z�
readme.txtnu�[���=== Ultimate Addons for Elementor ===  
Contributors: @brainstormforce
Tags: elementor, elementor addons, elementor widgets, elementor template, header footer builder
Requires at least: 5.0  
Tested up to: 7.0
Requires PHP: 7.4  
Stable tag: 2.8.7
License: GPLv2 or later  
License URI: https://www.gnu.org/licenses/gpl-2.0.html  

Powerful Elementor addon with advanced Elementor widgets, templates, WooCommerce widgets & Header-Footer builder to build professional websites faster.

== Description ==
**Ultimate Addons for Elementor (UAE)** is a lightweight yet powerful Elementor addons plugin that extends Elementors capabilities with purposely built advanced **Elementor widgets**, **templates**, and **site-building features**. 

UAE has evolved into a trusted Elementor Addons used by **over 2 million websites** to design creative sections directly within Elementor—no coding required. 

The **free version of UAE** includes a hand-picked set of essential widgets like **Basic Posts**, **Info Card**, **Duplicator**, **Navigation Menu** and more—widgets that are genuinely useful for most websites. It also enables you to design headers and footers visually, and includes time-saving tools like **Post Duplicator**, improving your design process without cluttering your interface.

When you're ready to go further, [UAE Pro](https://ultimateelementor.com/?utm_source=wprepo&utm_medium=uaelite) unlocks a library of **50+ premium widgets**, **200+ pre-designed section blocks**, and advanced features like [Cross-Site Copy-Paste](https://ultimateelementor.com/widgets/cross-site-copy-paste/?utm_source=wprepo&utm_medium=uaelite), [Advanced Display Conditions](https://ultimateelementor.com/widgets/display-conditions/?utm_source=wprepo&utm_medium=uaelite), Form Stylers for popular form plugins, and visual effects like [Particle Backgrounds](https://ultimateelementor.com/widgets/particle-backgrounds/?utm_source=wprepo&utm_medium=uaelite). 

These features are built to save time and offer more design freedom—not just to impress, but to genuinely improve how you build and manage websites.

Whether you're just getting started with WordPress or managing multiple client sites, UAE - Elementor Addons gives you the **control**, **performance**, and **reliability** to design beautiful, high-converting websites efficiently.

[Try the live demo of Ultimate Addons for Elementor](https://app.zipwp.com/blueprint/ultimate-addons-for-elementor-demo-fas)

https://www.youtube.com/watch?v=6xH5n6YYNJE

## Why Choose UAE Elementor Addon ##

Ultimate Addons for Elementor equips you with tools that make page design faster, cleaner, and more creative. Whether you're just starting your web design journey or building complex websites for clients, UAE can help. 

### Why Over 2 Million Websites Use Ultimate Addons for Elementor: ###

* **Create Engaging Designs:** Build visually stunning sections with widgets that go beyond basic blocks. From Before/After sliders to particle backgrounds, everything is built to captivate, engage, and convert.

* **Copy Elementor Designs From One Domain to Another:** Use the Cross-Site Copy Paste feature to move sections and widgets between pages/sites, which streamlines the workflow and saves time.

* **Keep Your Website Light by Loading Only What Is Needed:** UAE loads code only for the widgets you use, which helps maintain site performance and supports SEO best practices.

* **Build Faster With 200+ Readymade Section Blocks:** Design faster with a massive library of pre-designed content sections. Just insert, customize, and publish. Ideal for agencies and freelancers seeking efficiency.

* **50+ Premium Widgets That Truly Matter:** UAE Pro includes over 50+ carefully crafted widgets. High-impact tools designed to solve real design challenges and boost functionality where it counts.

* **Works Seamlessly With Any WordPress Theme:** No theme lock-in or compatibility issues. UAE integrates smoothly with all compliant WordPress themes, including Astra.

* **Designed for Beginners, Loved by Pros:** Whether you're a DIY site builder or a seasoned designer, UAE strikes the balance between ease of use and advanced functionality.

* **Extend Elementor Without Plugin Overload:** UAE packs multiple high-utility widgets into one lightweight plugin. Avoid installing multiple third-party plugins that slow down your site or create conflicts.

### Free Widgets in Ultimate Addons for Elementor ###

* **[Basic Post](https://ultimateelementor.com/widgets/basic-posts/?utm_source=wprepo&utm_medium=uaelite)** – Display a list of your latest blog posts with layout options and styling controls.

* **[Woo Product Grid](https://ultimateelementor.com/widgets/woo-product-grid/?utm_source=wprepo&utm_medium=uaelite)** – Showcase WooCommerce products in a responsive, customizable grid layout.

* **[Counter](https://ultimateelementor.com/widgets/counter/?utm_source=wprepo&utm_medium=uaelite)** – Add animated number counters to highlight stats, achievements, or milestones.

* **[Navigation Menu](https://ultimateelementor.com/widgets/navigation/?utm_source=wprepo&utm_medium=uaelite)** – With this powerful Elementor nav menu addon (widget), you can build responsive menus that match your style.

* **[Site Logo](https://ultimateelementor.com/widgets/site-logo/?utm_source=wprepo&utm_medium=uaelite) & [Retina Logo](https://ultimateelementor.com/widgets/retina-logo/?utm_source=wprepo&utm_medium=uaelite)** – Showcase crisp branding across all devices.

* **[Site Title](https://ultimateelementor.com/widgets/site-title/?utm_source=wprepo&utm_medium=uaelite) & [Tagline](https://ultimateelementor.com/widgets/site-tagline/?utm_source=wprepo&utm_medium=uaelite)** – Display key identity elements clearly and elegantly.

* **[Search](https://ultimateelementor.com/widgets/search/?utm_source=wprepo&utm_medium=uaelite)** – Add fast, user-friendly search to your header or footer.

* **[Cart](https://ultimateelementor.com/widgets/cart/?utm_source=wprepo&utm_medium=uaelite)** – Integrate a shopping cart preview for WooCommerce stores.

* **[Page Title](https://ultimateelementor.com/widgets/page-title/?utm_source=wprepo&utm_medium=uaelite)** – Automatically show relevant page titles for better UX and SEO.

* **[Breadcrumbs](https://ultimateelementor.com/widgets/breadcrumbs/?utm_source=wprepo&utm_medium=uaelite)** – Improve site navigation and search engine visibility.

* **[Post Info](https://ultimateelementor.com/widgets/post-info/?utm_source=wprepo&utm_medium=uaelite)** – Display author, date, categories, and more for content clarity.

* **[Scroll to Top](https://ultimateelementor.com/widgets/scroll-to-top/?utm_source=wprepo&utm_medium=uaelite)** – Give users a seamless way to navigate with this handy scroll addon for Elementor.

* **[Reading Progress Bar](https://ultimateelementor.com/widgets/reading-progress-bar/?utm_source=wprepo&utm_medium=uaelite)** – Visually indicate article progress for better engagement.

* **[Info Card](https://ultimateelementor.com/widgets/info-card/?utm_source=wprepo&utm_medium=uaelite)** – Combine icons, headings, text, and CTAs in one flexible block.

* **[Copyright](https://ultimateelementor.com/widgets/copyright/?utm_source=wprepo&utm_medium=uaelite)** – Easily add site-wide copyright or legal text in the footer.

* **[Post Duplicator](https://ultimateelementor.com/widgets/duplicator/?utm_source=wprepo&utm_medium=uaelite&utm_campaign=wp-repo-uaelite)** – Instantly duplicate posts, pages, headers, footers, and custom blocks to speed up content creation and safely experiment with layouts.

Note: You can refer to our [step-by-step guide](https://ultimateelementor.com/docs/getting-started-with-ultimate-addons-for-elementor-lite/) that will help you set headers and footers quickly.

### How these Elementor widgets help: ###

* Design full headers and footers visually, no need for theme settings or extra plugins
* Create consistent layouts that look great on every device
* Boost productivity using essential, ready-to-use widgets and a powerful Post Duplicator to instantly clone posts or pages and jump-start new content.
* Improve user experience, accessibility, and on-page SEO
* Seamlessly works with any WordPress theme for complete design freedom

The free widgets in UAE give you a solid starting point to build fast, functional, and visually appealing websites, whether you're designing a landing page, a portfolio, or a complete site layout.

**🚀 [Upgrade to Ultimate Addons for Elementor Pro](https://ultimateelementor.com/pricing/?utm_source=wprepo&utm_medium=uaelite) and unlock limitless possibilities!**

### Content and Interaction Widgets ###

Create compelling, high-converting layouts with powerful content widgets designed for Elementor. UAE widgets help you deliver clear, engaging content experiences that are both informative and interactive. Great for business sites, blogs, service pages, and portfolios.

* **[SVG Animator](https://ultimateelementor.com/widgets/svg-animator/?utm_source=wprepo&utm_medium=uaelite)** – Animate SVG illustrations with ease using this widget. Great for adding visual interest and motion to your designs.

* **[Advanced Heading](https://ultimateelementor.com/widgets/advanced-heading/?utm_source=wprepo&utm_medium=uaelite)** – Design eye-catching headlines with layered styles and dynamic effects.

* **[Business Hours](https://ultimateelementor.com/widgets/business-hours/?utm_source=wprepo&utm_medium=uaelite)** – Display store or office hours clearly with styled layouts.

* **[Content Toggle (Popular)](https://ultimateelementor.com/widgets/content-toggle/?utm_source=wprepo&utm_medium=uaelite)** – Switch between content blocks for comparisons, FAQs, or pricing plans.

* **[Google Map](https://ultimateelementor.com/widgets/google-map/?utm_source=wprepo&utm_medium=uaelite)** – Add responsive, customizable location maps to boost trust and visibility.

* **[Image Gallery](https://ultimateelementor.com/widgets/image-gallery/?utm_source=wprepo&utm_medium=uaelite)** – Showcase multiple images in a clean, organized grid or masonry layout.

* **[Info Box](https://ultimateelementor.com/widgets/info-box/?utm_source=wprepo&utm_medium=uaelite)** – Combine icons, titles, and descriptions with CTA buttons in one elegant widget.

* **[Modal Popup (Popular)](https://ultimateelementor.com/widgets/modal-popup/?utm_source=wprepo&utm_medium=uaelite)** – Easily trigger stylish popups for promotions, lead generation, or key messages.

* **[Posts](https://ultimateelementor.com/widgets/posts/?utm_source=wprepo&utm_medium=uaelite)** – Showcase your latest blog posts or any custom post types with this visually appealing post grid addon for Elementor.

* **[Price List](https://ultimateelementor.com/widgets/price-list/?utm_source=wprepo&utm_medium=uaelite)** – Highlight products or services with pricing and description in a clean layout.

* **[Table](https://ultimateelementor.com/widgets/table/?utm_source=wprepo&utm_medium=uaelite)** – Create sortable, responsive tables to organize data or feature comparisons.

* **[Video (Popular)](https://ultimateelementor.com/widgets/video/?utm_source=wprepo&utm_medium=uaelite)** – Embed YouTube, Vimeo, or self-hosted videos with custom styling options.

* **[Video Gallery](https://ultimateelementor.com/widgets/video-gallery/?utm_source=wprepo&utm_medium=uaelite)** – Show multiple videos in a neatly organized, responsive gallery.

### Creative Widgets ###

Add flair, functionality, and interactivity to your Elementor designs. Ideal for portfolios, agencies, service-based businesses, and conversion-focused landing pages.

* **[Before After Slider](https://ultimateelementor.com/widgets/before-after-slider/?utm_source=wprepo&utm_medium=uaelite)** – Visually compare two images using a draggable slider.

* **[Countdown Timer](https://ultimateelementor.com/widgets/countdown-timer/?utm_source=wprepo&utm_medium=uaelite)** – Create urgency for offers, events, or product launches.

* **[Display Conditions](https://ultimateelementor.com/widgets/display-conditions/?utm_source=wprepo&utm_medium=uaelite)** – Show or hide content dynamically based on user role, device, login status, and more.

* **[Dual Color Heading](https://ultimateelementor.com/widgets/dual-color-heading/?utm_source=wprepo&utm_medium=uaelite)** – Highlight key phrases in headings with stylish dual-tone designs.

* **[Fancy Heading](https://ultimateelementor.com/widgets/fancy-heading/?utm_source=wprepo&utm_medium=uaelite)** – Create animated, visually distinct headlines to capture attention.

* **[Hotspots (Popular)](https://ultimateelementor.com/widgets/hotspots/?utm_source=wprepo&utm_medium=uaelite)** – Add interactive tooltips to images to explain features or details.

* **[Login Form](https://ultimateelementor.com/widgets/login-form/?utm_source=wprepo&utm_medium=uaelite)** – Embed a beautifully styled, branded login form right into any page.

* **[Marketing Button](https://ultimateelementor.com/widgets/marketing-button/?utm_source=wprepo&utm_medium=uaelite)** – Add call to action buttons with built-in icons, hover effects, and dual text.

* **[Multi Buttons](https://ultimateelementor.com/widgets/multi-buttons/?utm_source=wprepo&utm_medium=uaelite)** – Display multiple action buttons side-by-side for better decision making.

* **[Navigation Menu](https://ultimateelementor.com/widgets/navigation-menu/?utm_source=wprepo&utm_medium=uaelite)** – Create fully customizable, responsive menus directly within Elementor.

* **[Off-Canvas](https://ultimateelementor.com/widgets/off-canvas/?utm_source=wprepo&utm_medium=uaelite)** – Create off-screen panels for menus, filters, or extra content that slides into view.

* **[Price Box](https://ultimateelementor.com/widgets/price-box/?utm_source=wprepo&utm_medium=uaelite)** – Showcase pricing plans with styled headings, features, and call to action buttons.

* **[Retina Image](https://ultimateelementor.com/widgets/retina-image/?utm_source=wprepo&utm_medium=uaelite)** – Ensure images display perfectly on high-resolution (Retina) screens.

* **[Team Member](https://ultimateelementor.com/widgets/team-member/?utm_source=wprepo&utm_medium=uaelite)** – Introduce your team with photos, bios, social links and layout options.

* **[Timeline (Popular)](https://ultimateelementor.com/widgets/timeline/?utm_source=wprepo&utm_medium=uaelite)** – Display milestones, history, or process steps in vertical or horizontal timelines.

* **[User Registration Form](https://ultimateelementor.com/widgets/user-registration-form/?utm_source=wprepo&utm_medium=uaelite)** – Let visitors register with a styled, user-friendly form.

### Form Styler Widgets ###

Match forms to your site design and improve conversions without writing CSS. These widgets let you customize popular WordPress forms with full control over layout, colors, typography, and spacing.

* **[Contact Form 7 Styler](https://ultimateelementor.com/widgets/contact-form-7/?utm_source=wprepo&utm_medium=uaelite)** – Easily style CF7 forms to match your brand.

* **[Gravity Form Styler (Popular)](https://ultimateelementor.com/widgets/gravity-form-styler/?utm_source=wprepo&utm_medium=uaelite)** – Enhance Gravity Forms visually with complete styling control.

* **[WP Fluent Forms Styler](https://ultimateelementor.com/widgets/wp-fluent-forms-styler/?utm_source=wprepo&utm_medium=uaelite)** – Customize Fluent Forms to blend seamlessly into your pages.

* **[WPForms Styler](https://ultimateelementor.com/widgets/wpforms-styler/?utm_source=wprepo&utm_medium=uaelite)** – Transform WPForms into beautiful, responsive forms without touching a line of code.

### SEO Widgets ###

Boost search visibility, enhance content structure and build trust from the Elementor editor.

* **[Business Reviews](https://ultimateelementor.com/widgets/business-reviews/?utm_source=wprepo&utm_medium=uaelite)** – Display authentic reviews from platforms like Google.

* **[How-To Schema](https://ultimateelementor.com/widgets/how-to-schema/?utm_source=wprepo&utm_medium=uaelite)** – Format step-by-step guides with structured data to earn rich snippets.

* **[FAQ Schema](https://ultimateelementor.com/widgets/faq/?utm_source=wprepo&utm_medium=uaelite)** – Create styled FAQs that are also SEO-ready.

* **[Table of Contents](https://ultimateelementor.com/widgets/table-of-contents/?utm_source=wprepo&utm_medium=uaelite)** – Automatically generate clickable TOCs for long content.

### Social Widgets ###

Keep your website fresh, connected and shareable with built-in social media integrations.

* **[Instagram Feed (NEW)](https://ultimateelementor.com/widgets/instagram-feed/?utm_source=wprepo&utm_medium=uaelite)** – Embed a stylish, responsive Instagram gallery that updates automatically.

* **[X Feed (NEW)](https://ultimateelementor.com/widgets/twitter-feed/?utm_source=wprepo&utm_medium=uaelite)** – Show your most recent posts from X (formerly Twitter).

* **[Social Share](https://ultimateelementor.com/widgets/social-share/?utm_source=wprepo&utm_medium=uaelite)** – Add sleek, customizable share buttons to grow your audience.

### WooCommerce Widgets ###

Design high-converting online stores inside Elementor with this modern WooCommerce addon.

* **[Woo – Add to Cart](https://ultimateelementor.com/widgets/woocommerce-add-to-cart/?utm_source=wprepo&utm_medium=uaelite)** – Place flexible Add to Cart buttons anywhere.

* **[Woo – Categories](https://ultimateelementor.com/widgets/woocommerce-categories/?utm_source=wprepo&utm_medium=uaelite)** – Showcase product categories in stylish layouts.

* **[Woo – Checkout](https://ultimateelementor.com/widgets/woo-checkout/?utm_source=wprepo&utm_medium=uaelite)** – Customize the entire checkout experience for better conversions.

* **[Woo – Mini Cart](https://ultimateelementor.com/widgets/woo-mini-cart/?utm_source=wprepo&utm_medium=uaelite)** – Display a sleek cart preview with real-time updates.

* **[Woo – Products](https://ultimateelementor.com/widgets/woocommerce-products/?utm_source=wprepo&utm_medium=uaelite)** – Build fully styled product grids or carousels with advanced controls.

### Creative Features ###

Go beyond widgets and unlock tools that accelerate your workflow.

* **[Cross-Site Copy Paste](https://ultimateelementor.com/widgets/cross-site-copy-paste/?utm_source=wprepo&utm_medium=uaelite)** – Instantly copy and paste entire Elementor sections between domains.

* **[Particle Backgrounds](https://ultimateelementor.com/widgets/particle-backgrounds/?utm_source=wprepo&utm_medium=uaelite)** – Add animated particle effects behind sections.

* **[Party Propz](https://ultimateelementor.com/party-propz/?utm_source=wprepo&utm_medium=uaelite)** – Celebrate special occasions with on-screen confetti and fun animations.

* **[Presets](https://ultimateelementor.com/widgets/presets/?utm_source=wprepo&utm_medium=uaelite)** – Apply consistent design styles across widgets with a single click.

* **[Welcome Music](https://ultimateelementor.com/widgets/welcome-music/?utm_source=wprepo&utm_medium=uaelite)** – Play background music when a visitor lands on your site.

### Unlock Even More With the Essential Toolkit ###

[Upgrade to the Essential Toolkit](https://ultimateelementor.com/pricing/?utm_source=wprepo&utm_medium=uaelite) to access a powerful bundle designed to save time, spark creativity, and give you a real competitive advantage.

300+ Pre-built websites: Skip the blank canvas. Launch faster with professionally designed websites.

Templates for every niche: Build business sites, blogs, portfolios, or stores with no design experience needed.

Total design freedom: Tweak every pixel, colors, fonts, and layouts to make each site uniquely yours.

### What Users Are Saying ###

“A must-have for any Elementor user. Incredible widget bundle — powerful, essential, and easy to use.” 
 – Carmelo Teran (nexodreams.com)

“Huge selection of widgets that help me deliver unique designs fast. Love the Hotspots, Heading, and Cross-Site Copy Paste!” 
 – Nicola Stobb (imoe.co)

“If Elementor Pro is the Iron Man suit, Ultimate Addons is the Hulkbuster upgrade. I don’t build without it!” 
 – Dean Loh (kaia.asia)

### More Tools To Enhance Your WordPress Website ###

If you love Ultimate Addons, you’ll love what else we’ve built to make designing and managing websites easier.

* **[Astra theme](https://wpastra.com/pro/?utm_source=wprepo&utm_medium=uaelite)** – A popular WordPress theme known for speed and flexibility.

* **[Astra Starter Templates](https://startertemplates.com/?utm_source=wprepo&utm_medium=uaelite)** – Pick from over 300+ professionally designed templates or use AI to create a custom website in minutes.

* **[OttoKit](https://ottokit.com/?utm_source=wprepo&utm_medium=uaelite)** – Automate daily tasks by connecting your favorite apps and plugins effortlessly.

* **[SureForms](https://sureforms.com/?utm_source=wprepo&utm_medium=uaelite)** – Build beautiful, high-converting forms, quizzes, and surveys.

* **[SureCart](https://surecart.com/?utm_source=wprepo&utm_medium=uaelite)** – A powerful yet easy to use eCommerce plugin built for modern creators and digital sellers.

Each tool is designed to help you build faster, work smarter, and grow your online presence with less effort and better results.

## Need help getting started? 
Check out our [getting started guide and documentation](https://ultimateelementor.com/docs/) for step-by-step tutorials. 

## Have a question? 
Visit the [support forum](https://wordpress.org/support/plugin/header-footer-elementor/) right here on [WordPress.org](http://WordPress.org). We’re happy to help! 

## Want to explore more? 
Learn about all features, FAQs, and tips on [our website](https://ultimateelementor.com/?utm_source=wprepo&utm_medium=uaelite).

## 🎉 Love Ultimate Addons for Elementor? 

* [Watch tutorials](https://youtube.com/playlist?list=PL1kzJGWGPrW_7HabOZHb6z88t_S8r-xAc&si=neuvhTEr0h-PPhfJ) and walk throughs on our YouTube channel. 
* Found us helpful? [Leave a review](https://wordpress.org/support/plugin/header-footer-elementor/reviews/) — we’d love to hear from you!

== Installation ==  

1. Download the plugin.  
2. Upload the plugin files to the `/wp-content/plugins/` directory or install it through the WordPress plugins screen.  
3. Activate the plugin via the 'Plugins' screen in WordPress.  
4. Go to UAE > Dashboard to start designing your custom headers and footers.

---

== Frequently Asked Questions ==  

= What happened to Elementor Header & Footer Builder? = 
Ultimate Addons for Elementor is the successor to **Elementor Header & Footer Builder**. This updated plugin offers the same features you love, plus new widgets like Site logo, Site Title, and many more. With a modern interface and an enable/disable switch for widgets, UAE delivers better performance, stability, and ease of use.

= Can I use Ultimate Addons for Elementor with any theme? =  
Yes! UAE works with all WordPress themes. If you face compatibility issues, you can manually choose the theme support method. Visit UAE > Settings > Theme Support. Select a method to suit your current theme and you are good to go!

= Can I disable unused widgets? =  
Absolutely. UAE allows you to disable widgets you don’t need to optimize performance.  

= Do I need to keep both UAE and UAE - Pro plugins active for them to work effectively? = 
No, both plugins are completely independent. You only need to activate both if you want to use features from each plugin. Otherwise, activate only the one that meets your needs.

= How can I access all the features of the Ultimate Addons for Elementor? = 
To access the advanced features and premium widgets, you’ll need to upgrade to the Pro version. [Purchase your license now](https://ultimateelementor.com/pricing/?utm_source=uae-lite-description&utm_medium=faq&utm_campaign=uae-lite-wporg)

= How can I report a security bug? =
We take plugin security extremely seriously. If you discover a security vulnerability, please report it in a safe and responsible manner.

You can report the issue through our [Bug Bounty Program](https://brainstormforce.com/bug-bounty-program/).

---

== Changelog ==
= 2.8.7 =
- Improvement: WordPress 7.0 compatibility.
- Improvement: Updated Internal libraries to improve stability and compatibility.

= 2.8.6 =
- Improvement: Compatibility with latest Elementor and Elementor Pro 4.0 version.
- Improvement: Updated Internal libraries to improve stability and compatibility.
- Fix: UAE icon in Elementor editor redirected to incorrect URL on staging and subdirectory WordPress installations.

= 2.8.5 =
- Improvement: Strengthened plugin security and updated required package dependencies.

= 2.8.4 =
- New: Introduced a Learn tab with step-by-step guides to help users master website customization and configuration.

= 2.8.3 =
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.35 version.

= 2.8.2 =
- Improvement: Updated Internal libraries to improve stability and compatibility.
- Improvement: Updated Dashboard settings UI for better usability and configuration.

= 2.8.1 =
- Improvement: Package dependencies updated for better security.

= 2.8.0 =
- Added: UAE Duplicator extension that allows duplicating pages, posts, headers, footers, and custom blocks with ease.

= 2.7.1 =
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.34 version.

= 2.7.0 =
- New: Added Counter Widget – Enables animated number counters with customizable styling options.

= 2.6.2 =
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.33 version.

= 2.6.1 =
- Fix: Header not displaying on specific pages.

= 2.6.0 =
- New: Added Woo Product Grid Widget - Display WooCommerce products in a responsive grid layout with customizable styling options.
- Improvement: Added Support for Blocksy, Neve and Kadence Theme.

= 2.5.2 =
- Fix: Basic Post Widget not showing for logged out users.

= 2.5.1 =
- Improvement: Updated required packages to the latest stable versions for improved compatibility and security.

= 2.5.0 = 
- New: Added Basic Blog Posts Widget – Showcase blog posts or any custom post type in a fully customizable, responsive grid layout.
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.32 version.
- Fix: This update addressed a security bug. Props to Willow from WP Scan for reporting it responsibly to our team.
- Fix: Navigation Menu - Alignment now works for last menu item as button.

= 2.4.9 =
- Fix: Navigation Menu - Resolved accessibility issue with the expandable menu layout.
- Fix: Navigation Menu - Widget closes when an anchor link is clicked.

= 2.4.8 =
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.31 version.

= 2.4.7 =
- This update addresses a security bug. Props to Peter Thaleikis for privately reporting it to our team. We appreciate the responsible disclosure!

= 2.4.6 =
- Improvement: Refactored and optimized codebase for improved maintainability.

= 2.4.5 =
- Improvement: Updated Dashboard and Onboarding for Improved User Experience. 

= 2.4.4 =
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.30 version.
- Improvement: Help button in widgets now links directly to relevant documentation.

= 2.4.3 =
- Updated readme file.

= 2.4.2 =
- Improvement: Optimize performance with the new “Deactivate Unused Widgets” option.

= 2.4.1 =
- Improvement: Optimized codebase and improved code quality.

= 2.4.0 =
- New: Reading Progress Bar - Added a sleek, customizable reading progress bar to enhance user engagement on your site.

= 2.3.2 =
- Improvement: Updated Dashboard for Improved User Experience

= 2.3.1 =
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.29 version.

= 2.3.0 =
- New: Info Card Widget – Create engaging and elegant content sections with this customizable widget. Easily configure text, icons, and buttons/links to match your design needs.

= 2.2.4 = 
- Fix: Buttons now correctly load the default color and font settings as defined in the Theme Customizer.

= 2.2.3 = 
- Improvement: Improved accessibility compliance throughout the plugin.
- Fix: Navigation Menu – The submenu now expands correctly when the "Full Width" option is enabled

= 2.2.2 =
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.28 version.

= 2.2.1 =
- This update addressed a security bug. Please make sure you are using the latest version on your website.
- Improvement: Added a notice in the Elementor editor to prompt users to flush permalinks if it gets stuck after a plugin update.
- Improvement: Removed 'elementor-button-wrapper' to enhance performance and optimize the DOM structure.
- Fix: Navigation Menu - Full-width dropdown menu now stays correctly positioned when resizing in responsive mode.

= 2.2.0 =
- New: Ultimate Addons for Elementor now includes translations for Dutch, French, Spanish, and German enhancing multilingual accessibility.
- Fix: Navigation Menu - Anchor links now correctly scroll to sections/container when submenu items with IDs are clicked.
- Fix: "Function map_meta_cap called incorrectly" notice appearing for logged out users when shortcode executed manually.
- Fix: Deprecated constant FILTER_SANITIZE_STRING replaced to ensure compatibility with PHP.
- Fix: Resolved PHP error with NPS library.

= 2.1.0 =
- New: Added NPS Survey to gather your valuable feedback for Ultimate Addons for Elementor.
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.27 version.
- Fix: Resolved issue where icons were displaying too large on page load for the Elementor and WordPress menu widget.
- Fix: Cart - Resolved an issue where icons were not displaying correctly for logged-out users.

= 2.0.6 =
- Fix: Load text domain PHP warning when Loco Translate plugin is active.

= 2.0.5 =
- Fix: Conflict with pro version update notice.

= 2.0.4 =
- Improvement: Compatibility with latest Elementor and Elementor Pro 3.26 version.
- Improvement: Added a navigation bar to the Header and Footer Builder page to improve usability and navigation.

= 2.0.3 =
* Fix: Load JS & CSS assets conditionally on relevant pages in the editor.

= 2.0.2 =
* Fix: Added a class_exists check to prevent critical errors caused by class redeclaration.
* Fix: Verify Elementor Kit settings before accessing to avoid potential issues.

= 2.0.1 =
* Fix: Conflict with site customizer style.

= 2.0.0 =
* New Feature: Scroll to Top Button. 
  Add a dynamic "Scroll to Top" button to enhance navigation and improve user experience on long pages.
* New Widget: Post Info Widget.
  Display metadata like author name, publish date, categories, tags, and more dynamically on your posts or pages.
* New Widget: Breadcrumbs Widget.
  Add navigational breadcrumbs to improve site navigation and guide users through your content hierarchy.
* Improvement: Revamped User Interface.
  Introduced a new, user-friendly UI similar to UAE Pro for easier management of widgets and features.
* Improvement: Rebranded as UAE from Elementor Header & Footer Builder: Packed with all your favorite features plus new widgets, functionality, and a sleek UI.

= 1.6.47 =
* Fix: This update addressed a security bug. Props to Wordfence for privately reporting it to our team. Please make sure you are using the latest version on your website.

= 1.6.46 =
* Fix: This update addressed a security bug. Props to Wordfence and Francesco Carlucci for privately reporting it to our team. Please make sure you are using the latest version on your website.

= 1.6.45 =
* Improvement: Enhanced the enqueue_scripts method with checks to ensure styles load safely.

= 1.6.44 =
* Improvement: Compatibility with latest Elementor and Elementor Pro 3.25 version.
* Fix: This update addressed a security bug. Props to Wordfence and Francesco Carlucci for privately reporting it to our team. Please make sure you are using the latest version on your website.

= 1.6.43 =
* Improvement: Icons displaying correctly on frontend.

= 1.6.42 =
* Fix: Navigation Menu – Active color now changes correctly when moving between pages.
* Fix: Page Title - The icon was showing too big, now it appears the right size.

= 1.6.41 =
* Improvement: Compatibility with latest Elementor and Elementor Pro 3.24 version.
* Improvement: Implemented widget output caching to enhance page performance.
* Improvement: Updated the deprecated code in codebase.

= 1.6.40 = 
* Improvement: Navigation Menu - The dropdown menu now extends to full width when the navigation menu container is set to full width on smaller screens.
* Fix: Navigation Menu – Console error for undefined property ‘left’.

= 1.6.39 = 
* Improvement: Updated minimum PHP version requirement to 7.4.

= 1.6.38 =
* Improvement: Improved code quality syntax and security checks for better coding standards and practices.

= 1.6.37 = 
* Improvement: Compatibility with latest Elementor and Elementor Pro 3.23 version.

= 1.6.36 = 
* Fix: This update addressed a security bug. Props to Wordfence for privately reporting it to our team. Please make sure you are using the latest version on your website. 

= 1.6.35 = 
* Improvement: Compatibility with latest Elementor and Elementor Pro 3.22 version.
* Improvement: Updated sanitize SVG function.
* Fix: Search - Compatibility with Polylang switcher.

= 1.6.34 = 
* Fix: Navigation Menu - Submenus show up for few seconds during the page load
* Fix: Navigation Menu - Huge icon show up for few seconds during the page load
* Fix: Navigation Menu - Unable to click on submenu when top distance is added for dropdown

= 1.6.33 =
* Fix: Unable to edit the Header/Footer with Elementor in few cases.

= 1.6.32 =
* Fix: Improved plugin security.

= 1.6.31 =
* Fix: Conflict with WP SVG Images plugin.

= 1.6.30 =
* Fix: Improved error messages during plugin activation.

= 1.6.29 =
* Fix: Navigation Menu – The submenu container opens without hovering over the parent menu item.
* Fix: This update addressed a security bug. Props to Wordfence.

= 1.6.28 =
* Fix: Error messages appearing for Display rules.

= 1.6.27 =
* Improvement: Compatibility with latest Elementor and Elementor Pro 3.21 version.
* Improvement: Compatibility with PHP 8.3 version.
* Fix: This update addressed a security bug. Props to Wordfence.

= 1.6.26 =
* Improvement: Compatibility with latest Elementor and Elementor Pro 3.20 version.
* Improvement: Compatibility with PHP 8.2 version.

= 1.6.25 =
* Security Fix: Hardened the security of the plugin. Props: Wordfence.
* Fix: Automatic translation support for templates on Specific Pages / Posts / Taxonomies, etc.
* Fix: Navigation Menu - Multistep submenu fails to display when a border radius is applied to dropdown.

= 1.6.24 =
* Improvement: Compatibility with latest Elementor and Elementor Pro 3.19 version.
* Fix: White Label - Astra's theme name does not change when Astra is white-labeled. 
* Fix: Navigation Menu - Language switcher flags not displaying when using Polylang plugin.

= 1.6.23 =
* Fix: This update addressed a security bug. Props to WordPress Plugin Review Team and Plugin Vulnerabilities Team for reporting it to our team. Please make sure you are using the latest version on your website.

= 1.6.22 =
* Fix: Retina Image - Navigating to custom URL by clicking on images. 

= 1.6.21 =
* Fix: Site Logo - Width and height settings not applying to the logo. 

= 1.6.20 =
* Fix: Flyout menu not appearing correctly.

= 1.6.19 =
* Fix: Header and Footer layout broken after last update.

= 1.6.18 =
* Improvement: Compatibility with latest Elementor and Elementor Pro 3.18 version.
* Improvement: Compatibility with WordPress VIP Go rules.

= 1.6.17 =
* Improvement: Compatibility with latest Elementor and Elementor Pro 3.17 version.
* Fix: Site Logo - Added an alt text for the default logo.

= 1.6.16 =
* Compatibility with latest Elementor and Elementor Pro 3.16 version.
* Compatibility with PHP 8.1 version.

= 1.6.15 =
* Improvement: Compatibility with latest Elementor and Elementor Pro 3.15 version.
* Improvement: Added WPML support.
* Fix: Navigation Menu - HTML validation error on mobile layout related to tabindex inside elements with attribute [role="button"].
* Fix: Polylang plugin language causes conflicts when set up with a custom Header Footer.
* Fix: Site Logo - Align icons not rendering in Elementor editor settings.

= 1.6.14 =
* Improvement: Compatibility with Elementor version 3.13 and Elementor Pro version 3.13
* Fix: Navigation Menu - Accessibility error corrected for [aria-hidden="true"] attribute.

= 1.6.13 =
* Compatibility with Elementor version 3.7.2 and Elementor Pro version 3.7.3.

= 1.6.12 =
* Compatibility with Elementor and Elementor Pro.

= 1.6.11 =
* Improvement: Compatibility with Elementor Pro version 3.7
* Fix: Removed meta tag attribute [maximum-scale=1] for a better accessibility.

= 1.6.10 =
* Improvement: Compatibility with Elementor version 3.6.
  Removed elementor deprecated functions and replaced with latest functions.
  Now to work with Elementor Header & Footer Builder, Elementor minimum version 3.5.0 or higher will be required.

  = 1.6.9 =
* Improvement: Compatibility with Elementor Pro version 3.6
* Fix: Navigation Menu - If Polylang language switcher is present in the menu, it closes the menu with a click.

= 1.6.8 =
* Improvement: WordPress 5.9 compatibility.

= 1.6.7 =
* Improvement: Added GDPR support to Subscription form.

= 1.6.6 =
* Improvement: Added compatibility to Elementor core version 3.5.0. Now to work with EHF, Elementor minimum version 3.1.0 or higher will be required.
* Fix: PHP warning of undefined array key on responsive controls in all widgets.

= 1.6.5 =
* Fix: Hide empty cart count badge hiding even when cart is not empty.

= 1.6.4 =
* Improvement: Elementor 3.4 compatibility.

= 1.6.3 =
* Improvement: WordPress 5.8 compatibility.
* Improvement: Elementor 3.3 compatibility.

= 1.6.2 =
* Improvement: Copyright - Added custom link attributes support.
* Improvement: Page Title - Added custom link attributes support.
* Improvement: Retina Image - Added custom link attributes support.
* Improvement: Search - Added gradient color support to the search button.
* Improvement: Site Logo - Added custom link attributes support.
* Improvement: Site Title - Added custom link attributes support.
* Fix: Templates views section not displaying correctly and related code conflicting with Yoast SEO plugin.
* Fix: Widgets icon color issue with Elementor's dark mode.

= 1.6.1 =
* Fix: Footer misplaced in the header or content area due to a bug introduced in v1.6.0.

= 1.6.0 =
* New: Added Email Subscription and About Us section on the settings page.
* New: Renamed the plugin to Elementor Header & Footer Builder.
* Improvement: Added an option to hide + & - sign added by Twenty Twenty-One Theme.
* Fix: Navigation Menu - Border for dropdown is also applying to the menu trigger icon.
* Fix: Navigation Menu - Fix top distance option for dropdown adding a top-margin to sub-menu.
* Fix: Navigation Menu - Fixed active color issues in case of full-page anchor links used in nav links.
* Fix: Navigation Menu - Navigation schema not working.

= 1.5.9 =
* Improvement: Added notice to update Elementor to v3.0.0 or higher
Elementor has deprecated few functions and namespaces with its v3.0.0. Following Elementor, our plugin too deprecates similar functions and namespaces. You will now require the Elementor v3.0.0 or higher.
* Improvement: Elementor 3.2 Compatibility - Added Elementor Global Color and Typography scheme support.
* Fix: Navigation Menu - Last menu item button disappearing while switching from mobile to desktop.
* Fix: Navigation Menu - Last menu item button alignment not working in RTL view.

= 1.5.8 =
* Fix: Hardened allowed options in the editor to enforce better security policies.

= 1.5.7 =
* Improvement: Compatibility with Elementor v3.1.
* Fix: Navigation Menu - Undefined index notice when menu is not set.

= 1.5.6 =
* Fix: Buttons showing cart subtotal.

= 1.5.5 =
* Improvement: Compatibility with Elementor v3.1.
* Improvement: Cart - Added Items Count hover color options.
* Fix: jQuery shorthand deprecation warning for click() and focus() functions.
* Fix: Cart - Fixed fatal error due to cart initialization.

= 1.5.4 =
* Improvement: Compatibility to PHP v8.0.
* Improvement: Improved compatibility with Astra theme.
* Improvement: Navigation Menu - Added option to toggle menu item.
* Fix: Added 'alt' attribute to the widgets containing images.
* Fix: Closed the missing HTML tag in footer in the global theme compatibility.
* Fix: Navigation Menu - Alignment option not working for the last menu item set as 'Button'.

= 1.5.3 =
* Fix: Polylang plugin conflicting issue with target rules.
* Fix: Navigation Menu - Double link attributes issue with translation plugins.

= 1.5.2 =
* Improvement: Compatibility with Polylang.
* Improvement: Navigation Menu - Added 'SiteNavigationElement' schema support.
* Improvement: Navigation Menu - Added support to SVG for toggle and close icon.
* Improvement: Navigation Menu - Added active color support to the link hover effects.
* Improvement: Page Title - Added option to disable the link.
* Fix: Exclude EHF templates from query for target rules - Specific Pages / Posts / taxonomies etc.
* Fix: Cart - Missing wrapper class in the control selector.
* Fix: Navigation Menu - Added responsive support to flyout box width.

= 1.5.1 =
* Fix: Retained GeneratePress theme's after header while using EHF header.
* Fix: Target rule 'Specific Pages/Posts/Taxonomies etc' not working.
* Fix: Cart - Error in some cases.

= 1.5.0 =
* New: Search widget.
* New: Users can now share non-personal usage data to help us test and develop better products. ( <a href="https://store.brainstormforce.com/usage-tracking/?utm_source=changelog&utm_medium=readme&utm_campaign=usage_tracking" target="_blank" rel="noopener">Know More</a> )
* Improvement: UI improvements.
* Improvement: Navigation Menu - Added active color for dropdown and current menu parent.
* Improvement: Navigation Menu - Changed the tablet breakpoint to 1024 in order to support iPad Pro.
* Fix: Compatibility to PHP v7.4.
* Fix: GeneratePress theme header now overridden by EHF.
* Fix: Cart - Count not increasing with AJAX call.
* Fix: Page Title - Added support for archive title.
* Fix: Site Title - Custom URL not working.

= 1.4.1 =
* Fix: EHF header overlapping Astra WooCommerce Off-Canvas.
* Fix: WooCommerce Menu Cart - 'div' tag of custom cart layout was not closed.
* Fix: WooCommerce Menu Cart - Fatal error with count when cart is empty.

= 1.4.0 =
* New: WooCommerce Menu Cart widget.
* Improvement: Compatibility to Elementor Pro v2.9 full site editing.
* Improvement: In-built support to Hello Elementor theme.
* Improvement: WPML support to before footer template.
* Improvement: Navigation Menu - Added option to convert last item into CTA.

= 1.3.1 =
* Fix: Copyright - Link with open in new tab not working.
* Fix: Navigation Menu - Hamburger menu click not working on responsive devices.
* Deprecated: Removed the theme dependency for the plugin, so removed the associated notice.

= 1.3.0 =
* New: Added 'Site Logo' widget.
* New: Added 'Site Title' widget.
* New: Added 'Site Tagline' widget.
* New: Added 'Navigation Menu' widget.
* New: Added 'Page Title' widget.
* Improvement: Elementor v2.9 compatibility.

= 1.2.2 =
* Fix: Add default fallback theme support after checking if current theme does not add it.

= 1.2.1 =
* Categorize the Elementor widgets in a separate category in the Elementor window.
* Hide target rules options when a custom block template is selected.

= 1.2.0 =
* New: Support all the themes, Includes two separate fallback methods so that you can create custom headers and footers for any theme.
* New: Added target rule engine, which allows you to have different headers/footers for different pages.
* New: Added Retina Image Elementor widget, which can be used as a Site Logo.
* New: Added Copyright widget and Shortcode for current year & site title.
* Improvement: Allow before footer to work on Elementor Canvas Template when not using Astra Theme.
* Improvement: Added support of `Before Footer` action for all the themes.

= 1.1.4 =
* Fix: Flush permalinks on plugin update to Elementor error when trying to edit the Header/Footer.

= 1.1.3 =
* Improvement: Allow changing the permalinks for the hfe templates (<a href="https://github.com/brainstormforce/header-footer-elementor/pull/162/">#162</a>)
* Fix: WPML Translations do not work when using the Elementor Template as a shortcode. (<a href="https://github.com/brainstormforce/header-footer-elementor/pull/159/">#159</a>)
* Fix: Page content appears over the header. (<a href="https://github.com/brainstormforce/header-footer-elementor/pull/150/">#150</a>)
* Fix: Remove the deprecated function warning for shortcode functions. (Props <a href="https://github.com/hogash">@hogash</a> <a href="https://github.com/brainstormforce/header-footer-elementor/pull/145/">#145</a>)

= 1.1.2 =
* Fix: Depracated function warning from Elementor's method `\Elementor\Post_CSS_File`

= 1.1.1 =
* Fix: Blank header being displayed when only footer is translated using WPML.

= 1.1.0 =
* New: Rename plugin to be Header Footer & Blocks builder as now the blocks templates can be used as shortcodes.
* New: Add templates before the footer for Astra Theme. Options for other themes will be coming soon.
* New: Use templates (Blocks) anywhere in your content with the help of shortcodes.
* Improvement: Improved the UI of the metabox for Header Footer post type.

= 1.0.16 =
* Fix: Make the theme not supported notice dismissable.
* Fix: Use specific selector when adding z-index for the header.

= 1.0.15 =
* Fix: Default Header being displayed for Generatepress and Genesis theme after v1.0.14.

= 1.0.14 =
* Fix: Fixes possible PHP notices/Errors due to WP_Query being called early for all the supported themes.

= 1.0.13 =
* Fix: PHP Notices and errors due to WP_Query being called early when some plugins use filters inside WP_Query.

= 1.0.12 =
* Fix: Compatibility with Elementor 2.0 changed canvas template path.

= 1.0.11 =
* Load the CSS footer early in the page to avoid slow rendering of CSS.
* Change the schema.org links to be https.
* Fix: Added correct schema markup for the footer.

= 1.0.10 =
* Load the header layout correctly in the <body> in Elementor canvas template.
* Load the Elementor Pro CSS/JS files in <head>.
* Provide more filters for the helper functions.

= 1.0.9 =
* Add Support for WPML.
* Updated the missing strings from the translations template.

= 1.0.8 =
* Allow filters to override the WP_Query parameters when retrieving the Header / Footer template id.

= 1.0.7 =
* Fix: Dismissible notice not actually dismissing.

= 1.0.6 =
* New: Option to display the header/footer on the pages using Elementor Canvas Template.

= 1.0.5 =
* Fix: Correctly check if Elementor actually is active before using its methods. This fixes errors for sites using older versions of PHP where Elementor does not actually get activated.

= 1.0.4 =
* Improvement: Use Elementor's created instance when rendering the markup for header/footer - Credits <a href="https://github.com/itay9001">itay9001</a>

= 1.0.3 =
* Fix: Adding theme support for the plugin does not remove the "no supported" notice.

= 1.0.2 =
* New: Added support for the OceanWP Theme.
* Fix: Load the Elementor header assets correctly in the header. This fixes header looking different just when loading the page as previously Elementor would load its CSS in the footer.
* Introduced helper functions for rendering and checking the headers to make it simpler to integrate HFE with more themes.

= 1.0.1 =
* New: Added support for the <a href="https://wpastra.com/?utm_source=wp-repo&utm_campaign=bb-header-footer&utm_medium=description-changelog">Astra</a> WordPress theme - The Fastest, Most Lightweight &amp; Customizable WordPress Theme.
* Moved the menu under Appearance -> Header Footer Builder.
* Fix: Header content getting hidden behind the page content.
* Use Elementor's canvas template when designing header and footer layout to have full width experience.

= 1.0.0 =
* Initial Release.PK���\q�9:��Mlanguages/header-footer-elementor-es_ES-0ad70406b828ddfa033be3f6573550fd.jsonnu�[���{"translation-revision-date":"2025-01-09T20:01:27+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/TemplateSection.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Build Websites 10x Faster with Templates":["Construye sitios web 10 veces m\u00e1s r\u00e1pido con plantillas"],"Choose from our professionally designed websites to build your site faster, with easy customization options.":["Elige entre nuestros sitios web dise\u00f1ados profesionalmente para construir tu sitio m\u00e1s r\u00e1pido, con opciones de personalizaci\u00f3n f\u00e1ciles."],"View Templates":["Ver plantillas"]}}}PK���\H�u��Mlanguages/header-footer-elementor-es_ES-4f3059777e77e324d30b247958f5533e.jsonnu�[���{"translation-revision-date":"2025-01-09T20:01:27+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/WelcomeContainer.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Welcome to Ultimate Addons for Elementor!":["\u00a1Bienvenido a Ultimate Addons para Elementor!"],"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.":["Estamos emocionados de ayudarte a potenciar tu experiencia de creaci\u00f3n de sitios web. Dise\u00f1a sitios web impresionantes sin esfuerzo con nuestra amplia gama de widgets y caracter\u00edsticas gratuitas y premium."],"Create Header\/Footer":["Crear encabezado\/pie de p\u00e1gina"],"Create New Page":["Crear nueva p\u00e1gina"],"Read full guide":["Leer gu\u00eda completa"]}}}PK���\�wǗ�Mlanguages/header-footer-elementor-de_DE-0ad70406b828ddfa033be3f6573550fd.jsonnu�[���{"translation-revision-date":"2025-01-10T11:57:03+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/TemplateSection.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Build Websites 10x Faster with Templates":["Erstellen Sie Websites 10x schneller mit Vorlagen"],"Choose from our professionally designed websites to build your site faster, with easy customization options.":["W\u00e4hlen Sie aus unseren professionell gestalteten Websites, um Ihre Seite schneller zu erstellen, mit einfachen Anpassungsoptionen."],"View Templates":["Vorlagen anzeigen"]}}}PK���\��G���Mlanguages/header-footer-elementor-es_ES-a0443e4d0c367013223edcde51b7c42f.jsonnu�[���{"translation-revision-date":"2025-01-09T20:01:27+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/QuickAccess.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Quick Access":["Acceso r\u00e1pido"],"Contact Us":["Cont\u00e1ctanos"],"Help Centre":["Centro de ayuda"],"Request a Feature":["Solicitar una caracter\u00edstica"]}}}PK���\��x��'�'Mlanguages/header-footer-elementor-de_DE-1860d6c85cf93751e0a08d732e8147f8.jsonnu�[���{"translation-revision-date":"2025-01-10T11:57:03+00:00","generator":"WP-CLI\/2.11.0","source":"build\/main.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Header & Footer Builder":["Header & Footer Builder"],"Theme Support":["Theme-Support"],"Rollback to Previous Version":["Rollback zur vorherigen Version"],"Activate":["Aktivieren"],"Activated":["Aktiviert"],"Install":["Installieren"],"Dashboard":["Dashboard"],"Settings":["Einstellungen"],"Basic":["Basis"],"Advanced":["Erweitert"],"Post Info":["Beitragsinfo"],"Breadcrumbs":["Brotkrumen"],"Site Logo":["Site-Logo"],"Navigation Menu":["Navigationsmen\u00fc"],"Scroll to Top":["Nach oben scrollen"],"Site Tagline":["Site-Tagline"],"Search":["Suche"],"Page Title":["Seitentitel"],"Retina Logo":["Retina-Logo"],"Copyright":["Urheberrecht"],"Advanced Heading":["Erweiterte \u00dcberschrift"],"Modal Popup":["Modal Popup"],"Business Hours":["\u00d6ffnungszeiten"],"Business Reviews":["Gesch\u00e4ftsbewertungen"],"Countdown Timer":["Countdown-Timer"],"Dual Color Heading":["Zweifarbige \u00dcberschrift"],"Fancy Heading":["Fancy Heading"],"Google Map":["Google Map"],"Image Gallery":["Bildgalerie"],"Info Box":["Info Box"],"Instagram Feed":["Instagram Feed"],"Login Form":["Anmeldeformular"],"Marketing Button":["Marketing-Button"],"Price List":["Preisliste"],"Retina Image":["Retina-Bild"],"Social Share":["Soziale Freigabe"],"Table":["Tabelle"],"Table of Contents":["Inhaltsverzeichnis"],"Team Member":["Teammitglied"],"Timeline":["Zeitleiste"],"Twitter Feed":["Twitter-Feed"],"Video":["Video"],"Video Gallery":["Videogalerie"],"Welcome Music":["Willkommensmusik"],"Party Propz":["Party Requisiten"],"Shape Divider":["Formen-Trenner"],"Presets":["Voreinstellungen"],"Yes":["Ja"],"Essentials":["Wesentliches"],"White Label Option":["White-Label-Option"],"24\/7 Premium Support":["24\/7 Premium-Support"],"Cross-Domain Copy-Paste":[""],"Dynamic Header & Footer Widgets":[""],"Creative & Advanced Design Widgets":[""],"Multi-Button":[""],"Image Hotspots":[""],"Content & Media Widgets":[""],"Content Toggle Button":[""],"Before & After Slider":[""],"Conditional Display":[""],"User Registeration Form":[""],"Marketing & Engagement Widgets":[""],"Pricing Table":[""],"E-Commerce Integration":[""],"WooCommerce: Add to Cart":[""],"WooCommerce: Product Category":[""],"WooCommerce: Mini Cart":[""],"WooCommerce: Product":[""],"WooCommerce: Checkout":[""],"Forms Integration":[""],"Contact Form 7":[""],"Gravity Forms":[""],"WPForms":[""],"Fluent Forms":[""],"SEO Widgets":[""],"FAQ with Schema":[""],"How-To":[""],"Creative Features":[""],"Particles":["Partikel"],"Social Media Integration":["Integration von sozialen Medien"],"Advanced Features":["Erweiterte Funktionen"],"Post Layout":["Beitragslayout"],"Off Canvas":["Off Canvas"],"Free Vs Pro":["Kostenlos vs. Pro"],"Ultimate Addons for Elementor Pro offers 50+ widgets and features!":["Ultimate Addons f\u00fcr Elementor Pro bietet \u00fcber 50 Widgets und Funktionen!"],"Compare the popular features\/widgets to find the best option for your website.":["Vergleichen Sie die beliebten Funktionen\/Widgets, um die beste Option f\u00fcr Ihre Website zu finden."],"Upgrade Now":["Jetzt upgraden"],"Free":["Kostenlos"],"Pro":["Pro"],"Post Layouts":["Beitragslayouts"],"Pricing Cards":["Preiskarten"],"Form Stylers and more...":["Form-Styler und mehr..."],"Column Showcase":["Spaltenpr\u00e4sentation"],"Unlock Ultimate Features":["Ultimative Funktionen freischalten"],"Create Stunning Designs with the Pro Version!":["Erstellen Sie atemberaubende Designs mit der Pro-Version!"],"Get access to advanced widgets and features to create the website that stands out!":["Erhalten Sie Zugriff auf erweiterte Widgets und Funktionen, um die Website zu erstellen, die heraussticht!"],"Extend Your Website":["Erweitern Sie Ihre Website"],"Installing..":["Installation l\u00e4uft..."],"Installed":["Installiert"],"Theme Installation failed, Please try again later.":["Die Installation des Themes ist fehlgeschlagen, bitte versuchen Sie es sp\u00e4ter erneut."],"Plugin Installation failed, Please try again later.":["Die Installation des Plugins ist fehlgeschlagen, bitte versuchen Sie es sp\u00e4ter erneut."],"Activating..":["Aktivierung l\u00e4uft..."],"Visit Site":["Website besuchen"],"Activate Theme":["Theme aktivieren"],"Are you sure you want to switch your current theme to Astra?":["Sind Sie sicher, dass Sie Ihr aktuelles Theme auf Astra wechseln m\u00f6chten?"],"Close":["Schlie\u00dfen"],"My Account":["Mein Konto"],"License Key":["Lizenzschl\u00fcssel"],"Unlock Pro Features":["Pro-Funktionen freischalten"],"Get access to advanced blocks and premium features.":["Erhalten Sie Zugriff auf erweiterte Bl\u00f6cke und Premium-Funktionen."],"Quick Access":["Schneller Zugriff"],"Contact Us":["Kontaktieren Sie uns"],"Help Centre":["Hilfezentrum"],"Request a Feature":["Funktion anfordern"],"Build Websites 10x Faster with Templates":["Erstellen Sie Websites 10x schneller mit Vorlagen"],"Choose from our professionally designed websites to build your site faster, with easy customization options.":["W\u00e4hlen Sie aus unseren professionell gestalteten Websites, um Ihre Seite schneller zu erstellen, mit einfachen Anpassungsoptionen."],"View Templates":["Vorlagen anzeigen"],"Compare Free vs Pro":["Kostenlos vs Pro vergleichen"],"Welcome to Ultimate Addons for Elementor!":["Willkommen bei Ultimate Addons f\u00fcr Elementor!"],"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.":["Wir freuen uns, Ihnen zu helfen, Ihr Website-Erlebnis zu verbessern. Gestalten Sie m\u00fchelos atemberaubende Websites mit unserem umfassenden Angebot an kostenlosen und Premium-Widgets und Funktionen."],"Create Header\/Footer":["Kopf-\/Fu\u00dfzeile erstellen"],"Create New Page":["Neue Seite erstellen"],"Read full guide":["Vollst\u00e4ndigen Leitfaden lesen"],"View Demo":["Demo anzeigen"],"Read Documentation":["Dokumentation lesen"],"Formerly Elementor Header & Footer Builder":["Ehemals Elementor Header & Footer Builder"],"Widgets":["Widgets"],"Templates":["Vorlagen"],"Free vs Pro":["Kostenlos vs Pro"],"Get Pro":["Pro erhalten"],"Version":["Version"],"Useful Resources":["N\u00fctzliche Ressourcen"],"Getting Started":["Erste Schritte"],"How to use widgets":["Wie man Widgets verwendet"],"How to use features":["Wie man Funktionen verwendet"],"How to use templates":["Wie man Vorlagen verwendet"],"Contact us":["Kontaktieren Sie uns"],"Custom SVG":["Benutzerdefiniertes SVG"],"Editor":["Editor"],"Utilities":["Dienstprogramme"],"Version Control":["Versionskontrolle"],"Option 1 (Recommended)":["Option 1 (Empfohlen)"],"This option will automatically replace your theme's header and footer files with custom templates from the plugin. It works with most themes and is selected by default.":["Diese Option ersetzt automatisch die Header- und Footer-Dateien Ihres Themas durch benutzerdefinierte Vorlagen des Plugins. Es funktioniert mit den meisten Themen und ist standardm\u00e4\u00dfig ausgew\u00e4hlt."],"Option 2":["Option 2"],"Settings saved successfully!":["Einstellungen erfolgreich gespeichert!"],"Failed to save settings!":["Fehler beim Speichern der Einstellungen!"],"Select Option to Add Theme Support":["Option ausw\u00e4hlen, um die Unterst\u00fctzung des Themas hinzuzuf\u00fcgen"],"To ensure compatibility between the header\/footer and your theme, please choose one of the following options to enable theme support:":["Um die Kompatibilit\u00e4t zwischen Header\/Fu\u00dfzeile und Ihrem Thema sicherzustellen, w\u00e4hlen Sie bitte eine der folgenden Optionen, um die Unterst\u00fctzung des Themas zu aktivieren:"],"Note:":["Hinweis:"],"If neither option works, please contact your theme author to add support for this plugin.":["Wenn keine der Optionen funktioniert, wenden Sie sich bitte an den Autor Ihres Themas, um die Unterst\u00fctzung f\u00fcr dieses Plugin hinzuzuf\u00fcgen."],"Experiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue.":["Haben Sie ein Problem mit der aktuellen Version? Stellen Sie auf eine fr\u00fchere Version zur\u00fcck, um das Problem zu beheben."],"Rollback":["R\u00fcckg\u00e4ngigmachen"],"Cancel":["Abbrechen"],"250+ templates for every niche":["\u00dcber 250 Vorlagen f\u00fcr jede Nische"],"Modern, timeless designs":["Moderne, zeitlose Designs"],"Full design flexibility for easy customization":["Vollst\u00e4ndige Designflexibilit\u00e4t f\u00fcr einfache Anpassungen"],"100% responsive across all devices":["100 % responsiv auf allen Ger\u00e4ten"],"Install Starter Templates":["Starter-Vorlagen installieren"],"Activate Starter Templates":["Starter-Vorlagen aktivieren"],"Installing Starter Templates...":["Starter-Vorlagen werden installiert..."],"Installed Starter Templates":["Starter-Vorlagen installiert"],"Activating Starter Templates...":["Starter-Vorlagen werden aktiviert..."],"Activated Starter Templates":["Starter-Vorlagen aktiviert"],"Design Your Website in Minutes":["Gestalten Sie Ihre Website in Minuten"],"Build your website faster using our prebuilt templates":["Erstellen Sie Ihre Website schneller mit unseren vorgefertigten Vorlagen"],"Stop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize and completely responsive. Explore hundreds of designs and bring your vision to life in no time.":["H\u00f6ren Sie auf, Ihre Seite von Grund auf neu zu erstellen. Verwenden Sie unsere professionellen Vorlagen f\u00fcr Ihre atemberaubende Website. Es ist einfach anzupassen und vollst\u00e4ndig responsiv. Entdecken Sie Hunderte von Designs und bringen Sie Ihre Vision in k\u00fcrzester Zeit zum Leben."],"Explore Templates":["Vorlagen erkunden"],"Learn More":["Erfahren Sie mehr"],"Widgets \/ Features":["Widgets \/ Funktionen"],"Search...":["Suche..."],"Activating...":["Aktivieren..."],"Activate All":["Alle aktivieren"],"Deactivating...":["Deaktivieren..."],"Deactivate All":["Alle deaktivieren"]}}}PK���\5�b��Mlanguages/header-footer-elementor-es_ES-f0dcbc1e143607d955c20c36badd8c74.jsonnu�[���{"translation-revision-date":"2025-01-09T20:01:27+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/HeaderLine.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Formerly Elementor Header & Footer Builder":["Anteriormente Constructor de encabezados y pies de p\u00e1gina de Elementor"]}}}PK���\cR;�__Mlanguages/header-footer-elementor-de_DE-f0dcbc1e143607d955c20c36badd8c74.jsonnu�[���{"translation-revision-date":"2025-01-10T11:57:03+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/HeaderLine.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Formerly Elementor Header & Footer Builder":["Ehemals Elementor Header & Footer Builder"]}}}PK���\�'�DDMlanguages/header-footer-elementor-fr_FR-90e183a01507bd4371ac0db2e0c87b99.jsonnu�[���{"translation-revision-date":"2025-01-09T15:10:54+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/NavMenu.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Header & Footer Builder":["Constructeur d'en-t\u00eate et de pied de page"],"Dashboard":["Tableau de bord"],"Settings":["Param\u00e8tres"],"Free":["Gratuit"],"Widgets":["Widgets"],"Templates":["Mod\u00e8les"],"Free vs Pro":["Gratuit vs Pro"],"Get Pro":["Obtenir Pro"],"Version":["Version"],"Useful Resources":["Ressources utiles"],"Getting Started":["Commencer"],"How to use widgets":["Comment utiliser les widgets"],"How to use features":["Comment utiliser les fonctionnalit\u00e9s"],"How to use templates":["Comment utiliser les mod\u00e8les"],"Contact us":["Contactez-nous"]}}}PK���\L~��iiMlanguages/header-footer-elementor-nl_NL-4f3059777e77e324d30b247958f5533e.jsonnu�[���{"translation-revision-date":"2024-12-05T10:53:31+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/WelcomeContainer.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Welcome to Ultimate Addons for Elementor!":["Welkom bij Ultimate Addons voor Elementor!"],"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.":["We zijn enthousiast om je te helpen je website-bouwervaring te verbeteren. Ontwerp moeiteloos verbluffende websites met ons uitgebreide assortiment gratis en premium widgets en functies."],"Create Header\/Footer":["Maak Header\/Footer"],"Create New Page":["Maak nieuwe pagina"],"Read full guide":["Lees volledige gids"]}}}PK���\ajDddMlanguages/header-footer-elementor-fr_FR-f0dcbc1e143607d955c20c36badd8c74.jsonnu�[���{"translation-revision-date":"2025-01-09T15:10:54+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/HeaderLine.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Formerly Elementor Header & Footer Builder":["Anciennement Elementor Header & Footer Builder"]}}}PK���\���]]*languages/header-footer-elementor-fr_FR.ponu�[���msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: gpt-po v1.2.0\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2025-01-09T15:10:54+00:00\n"
"PO-Revision-Date: 2025-01-09T15:10:54+00:00\n"
"Language: \n"

#: header-footer-elementor.php
#. Plugin Name of the plugin
msgid "Ultimate Addons for Elementor Lite"
msgstr "Ultimate Addons pour Elementor Lite"

#: header-footer-elementor.php
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/header-footer-elementor/"
msgstr "https://wordpress.org/plugins/header-footer-elementor/"

#: header-footer-elementor.php
#. Description of the plugin
msgid ""
"Formerly known as \"Elementor Header & Footer Builder\", this powerful plugin allows you to create custom headers and "
"footers with Elementor and display them in selected locations. You can also create custom Elementor blocks and place "
"them anywhere on your website using a shortcode."
msgstr ""
"Anciennement connu sous le nom de \"Elementor Header & Footer Builder\", ce puissant plugin vous permet de créer des "
"en-têtes et des pieds de page personnalisés avec Elementor et de les afficher à des emplacements sélectionnés. Vous "
"pouvez également créer des blocs Elementor personnalisés et les placer n'importe où sur votre site Web à l'aide d'un "
"shortcode."

#: header-footer-elementor.php
#. Author of the plugin
msgid "Brainstorm Force"
msgstr "Brainstorm Force"

#: header-footer-elementor.php
#. Author URI of the plugin
msgid "https://www.brainstormforce.com/"
msgstr "https://www.brainstormforce.com/"

#: admin/bsf-analytics/class-bsf-analytics.php:220
#. translators: %s product name
msgid ""
"Want to help make <strong>%1s</strong> even more awesome? Allow us to collect non-sensitive diagnostic data and usage "
"information. "
msgstr ""
"Vous souhaitez aider à rendre <strong>%1s</strong> encore plus génial ? Permettez-nous de collecter des données de "
"diagnostic non sensibles et des informations d'utilisation."

#: admin/bsf-analytics/class-bsf-analytics.php:223
msgid "This will be applicable for all sites from the network."
msgstr "Cela s'appliquera à tous les sites du réseau."

#: admin/bsf-analytics/class-bsf-analytics.php:247
#. translators: %s usage doc link
msgid " Know More."
msgstr "En savoir plus."

#: admin/bsf-analytics/class-bsf-analytics.php:255
msgid "Yes! Allow it"
msgstr "Oui ! Autoriser"

#: admin/bsf-analytics/class-bsf-analytics.php:264
msgid "No Thanks"
msgstr "Non merci"

#: admin/bsf-analytics/class-bsf-analytics.php:373
msgid "Usage Tracking"
msgstr "Suivi d'utilisation"

#: admin/bsf-analytics/class-bsf-analytics.php:419
#. translators: %s Product title
msgid "Allow %s products to track non-sensitive usage tracking data."
msgstr "Autoriser les produits %s à suivre des données de suivi d'utilisation non sensibles."

#: admin/bsf-analytics/class-bsf-analytics.php:422
msgid " This will be applicable for all sites from the network."
msgstr "Cela s'appliquera à tous les sites du réseau."

#: admin/bsf-analytics/class-bsf-analytics.php:427
msgid "Learn More."
msgstr "En savoir plus."

#: admin/class-hfe-addons-actions.php:336
msgid "Plugin activation is disabled for you on this site."
msgstr "L'activation du plugin est désactivée pour vous sur ce site."

#: admin/class-hfe-addons-actions.php:345
msgid "Plugin Activated."
msgstr "Plugin activé."

#: admin/class-hfe-addons-actions.php:356
msgid "Theme activation is disabled for you on this site."
msgstr "L'activation du thème est désactivée pour vous sur ce site."

#: admin/class-hfe-addons-actions.php:365
msgid "Theme Activated."
msgstr "Thème activé."

#: admin/class-hfe-addons-actions.php:372
msgid "Could not activate plugin. Please activate from the Plugins page."
msgstr "Impossible d'activer le plugin. Veuillez activer depuis la page des plugins."

#: admin/class-hfe-addons-actions.php:374
msgid "Could not activate theme. Please activate from the Themes page."
msgstr "Impossible d'activer le thème. Veuillez activer depuis la page des thèmes."

#: admin/class-hfe-admin.php:172
#: admin/class-hfe-admin.php:455
msgid "Display Rules"
msgstr "Règles d'affichage"

#: admin/class-hfe-admin.php:173
#: inc/widgets-manager/widgets/post-info/post-info.php:136
msgid "Date"
msgstr "Date"

#: admin/class-hfe-admin.php:263
#: admin/class-hfe-admin.php:264
#: admin/class-hfe-admin.php:265
#: admin/class-hfe-admin.php:266
msgid "Elementor Header & Footer Builder"
msgstr "Elementor Header & Footer Builder"

#: admin/class-hfe-admin.php:267
#: admin/class-hfe-admin.php:268
msgid "Add New"
msgstr "Ajouter nouveau"

#: admin/class-hfe-admin.php:269
msgid "New Template"
msgstr "Nouveau modèle"

#: admin/class-hfe-admin.php:270
msgid "Edit Template"
msgstr "Modifier le modèle"

#: admin/class-hfe-admin.php:271
msgid "View Template"
msgstr "Voir le modèle"

#: admin/class-hfe-admin.php:272
#: inc/class-hfe-settings-page.php:372
msgid "View All"
msgstr "Voir tout"

#: admin/class-hfe-admin.php:273
msgid "Search Templates"
msgstr "Rechercher des modèles"

#: admin/class-hfe-admin.php:274
msgid "Parent Templates:"
msgstr "Modèles parents :"

#: admin/class-hfe-admin.php:275
msgid "No Templates found."
msgstr "Aucun modèle trouvé."

#: admin/class-hfe-admin.php:276
msgid "No Templates found in Trash."
msgstr "Aucun modèle trouvé dans la corbeille."

#: admin/class-hfe-admin.php:319
#: admin/class-hfe-admin.php:320
msgid "Create New"
msgstr "Créer nouveau"

#: admin/class-hfe-admin.php:329
msgid "Header/Footer Builder"
msgstr "Constructeur d'en-tête/pied de page"

#: admin/class-hfe-admin.php:330
#: build/main.js:2
#: src/Components/NavMenu.js:150
#: build/main.js:51025
msgid "Header & Footer Builder"
msgstr "Constructeur d'en-tête et de pied de page"

#: admin/class-hfe-admin.php:359
msgid "Elementor Header & Footer Builder Options"
msgstr "Options du constructeur d'en-tête et de pied de page Elementor"

#: admin/class-hfe-admin.php:388
msgid "Type of Template"
msgstr "Type de modèle"

#: admin/class-hfe-admin.php:392
msgid "Select Option"
msgstr "Sélectionner une option"

#: admin/class-hfe-admin.php:393
msgid "Header"
msgstr "En-tête"

#: admin/class-hfe-admin.php:394
msgid "Before Footer"
msgstr "Avant le pied de page"

#: admin/class-hfe-admin.php:395
msgid "Footer"
msgstr "Pied de page"

#: admin/class-hfe-admin.php:396
msgid "Custom Block"
msgstr "Bloc personnalisé"

#: admin/class-hfe-admin.php:404
#: admin/class-hfe-admin.php:654
msgid "Shortcode"
msgstr "Shortcode"

#: admin/class-hfe-admin.php:405
msgid "Copy this shortcode and paste it into your post, page, or text widget content."
msgstr "Copiez ce shortcode et collez-le dans le contenu de votre article, page ou widget texte."

#: admin/class-hfe-admin.php:417
msgid "Enable Layout for Elementor Canvas Template?"
msgstr "Activer la mise en page pour le modèle Elementor Canvas ?"

#: admin/class-hfe-admin.php:419
msgid "Enabling this option will display this layout on pages using Elementor Canvas Template."
msgstr "Activer cette option affichera cette mise en page sur les pages utilisant le modèle Elementor Canvas."

#: admin/class-hfe-admin.php:446
msgid "Display On"
msgstr "Afficher sur"

#: admin/class-hfe-admin.php:448
msgid "Add locations for where this template should appear."
msgstr "Ajouter des emplacements où ce modèle doit apparaître."

#: admin/class-hfe-admin.php:459
msgid "Add Display Rule"
msgstr "Ajouter une règle d'affichage"

#: admin/class-hfe-admin.php:468
msgid "Do Not Display On"
msgstr "Ne pas afficher sur"

#: admin/class-hfe-admin.php:470
msgid "Add locations for where this template should not appear."
msgstr "Ajouter des emplacements où ce modèle ne doit pas apparaître."

#: admin/class-hfe-admin.php:477
msgid "Exclude On"
msgstr "Exclure sur"

#: admin/class-hfe-admin.php:480
#: inc/lib/target-rule/class-astra-target-rules-fields.php:847
msgid "Add Exclusion Rule"
msgstr "Ajouter une règle d'exclusion"

#: admin/class-hfe-admin.php:490
msgid "User Roles"
msgstr "Rôles d'utilisateur"

#: admin/class-hfe-admin.php:491
msgid "Display custom template based on user role."
msgstr "Afficher le modèle personnalisé en fonction du rôle de l'utilisateur."

#: admin/class-hfe-admin.php:498
msgid "Users"
msgstr "Utilisateurs"

#: admin/class-hfe-admin.php:501
msgid "Add User Rule"
msgstr "Ajouter une règle utilisateur"

#: admin/class-hfe-admin.php:582
#. Translators: Post title, Template Location
msgid "Template %1$s is already assigned to the location %2$s"
msgstr "Le modèle %1$s est déjà assigné à l'emplacement %2$s"

#: inc/class-header-footer-elementor.php:223
msgid "Hello! Seems like you have used Ultimate Addons for Elementor to build this website — Thanks a ton!"
msgstr "Bonjour ! Il semble que vous ayez utilisé Ultimate Addons pour Elementor pour construire ce site Web — Merci beaucoup !"

#: inc/class-header-footer-elementor.php:224
msgid ""
"Could you please do us a BIG favor and give it a 5-star rating on WordPress? This would boost our motivation and help "
"other users make a comfortable decision while choosing the Ultimate Addons for Elementor."
msgstr ""
"Pourriez-vous s'il vous plaît nous rendre un GRAND service et lui donner une note de 5 étoiles sur WordPress ? Cela "
"renforcerait notre motivation et aiderait d'autres utilisateurs à prendre une décision confortable lors du choix des "
"Ultimate Addons pour Elementor."

#: inc/class-header-footer-elementor.php:226
msgid "Ok, you deserve it"
msgstr "D'accord, vous le méritez"

#: inc/class-header-footer-elementor.php:228
msgid "Nope, maybe later"
msgstr "Non, peut-être plus tard"

#: inc/class-header-footer-elementor.php:229
msgid "I already did"
msgstr "Je l'ai déjà fait"

#: inc/class-header-footer-elementor.php:294
#. translators: %s: html tags
msgid "The %1$sUltimate Addons for Elementor%2$s plugin requires %1$sElementor%2$s plugin installed & activated."
msgstr "Le plugin %1$sUltimate Addons for Elementor%2$s nécessite que le plugin %1$sElementor%2$s soit installé et activé."

#: inc/class-header-footer-elementor.php:301
msgid "Activate Elementor"
msgstr "Activer Elementor"

#: inc/class-header-footer-elementor.php:306
#: inc/class-header-footer-elementor.php:342
msgid "Install Elementor"
msgstr "Installer Elementor"

#: inc/class-header-footer-elementor.php:330
#. translators: %s: html tags
msgid ""
"The %1$sUltimate Addons for Elementor%2$s plugin has stopped working because you are using an older version of "
"%1$sElementor%2$s plugin."
msgstr ""
"Le plugin %1$sUltimate Addons for Elementor%2$s a cessé de fonctionner car vous utilisez une version plus ancienne du "
"plugin %1$sElementor%2$s."

#: inc/class-header-footer-elementor.php:337
msgid "Update Elementor"
msgstr "Mettre à jour Elementor"

#: inc/class-header-footer-elementor.php:370
#. translators: %s: html tags
msgid "Thank you for installing %1$s Ultimate Addons for Elementor %2$s Plugin! Click here to %3$sget started. %4$s"
msgstr "Merci d'avoir installé le plugin %1$s Ultimate Addons for Elementor %2$s ! Cliquez ici pour %3$scommencer.%4$s"

#: inc/class-header-footer-elementor.php:562
#: build/main.js:172
#: src/Components/Settings/Settings.jsx:49
#: src/Components/Settings/ThemeSupport.jsx:80
#: build/main.js:53755
#: build/main.js:54109
msgid "Theme Support"
msgstr "Support du thème"

#: inc/class-hfe-rollback.php:167
msgid "Ultimate Addons for Elementor Lite <p>Rollback to Previous Version</p>"
msgstr "Ultimate Addons for Elementor Lite <p>Retour à la version précédente</p>"

#: inc/class-hfe-settings-page.php:153
msgid "You do not have permission to access this page."
msgstr "Vous n'avez pas la permission d'accéder à cette page."

#: inc/class-hfe-settings-page.php:154
#: inc/class-hfe-settings-page.php:189
#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:63
#: src/Components/Settings/VersionControl.jsx:119
#: build/main.js:53914
#: build/main.js:53970
msgid "Rollback to Previous Version"
msgstr "Retour à la version précédente"

#: inc/class-hfe-settings-page.php:170
msgid "Error occurred, The version selected is invalid. Try selecting different version."
msgstr "Une erreur est survenue, la version sélectionnée est invalide. Essayez de sélectionner une version différente."

#: inc/class-hfe-settings-page.php:351
#: inc/class-hfe-settings-page.php:1099
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:86
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:173
#: build/main.js:52331
#: build/main.js:52418
msgid "Activate"
msgstr "Activer"

#: inc/class-hfe-settings-page.php:352
#: inc/class-hfe-settings-page.php:1091
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:156
#: build/main.js:52401
msgid "Activated"
msgstr "Activé"

#: inc/class-hfe-settings-page.php:353
#: inc/class-hfe-settings-page.php:1088
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1030
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1213
msgid "Active"
msgstr "Actif"

#: inc/class-hfe-settings-page.php:354
msgid "Deactivate"
msgstr "Désactiver"

#: inc/class-hfe-settings-page.php:355
#: inc/class-hfe-settings-page.php:1096
msgid "Inactive"
msgstr "Inactif"

#: inc/class-hfe-settings-page.php:356
#: inc/class-hfe-settings-page.php:1112
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:91
#: build/main.js:52336
msgid "Install"
msgstr "Installer"

#: inc/class-hfe-settings-page.php:357
msgid "Theme Installed"
msgstr "Thème installé"

#: inc/class-hfe-settings-page.php:358
msgid "Plugin Installed"
msgstr "Plugin installé"

#: inc/class-hfe-settings-page.php:359
msgid "Download"
msgstr "Télécharger"

#: inc/class-hfe-settings-page.php:360
msgid "Already Exists."
msgstr "Existe déjà."

#: inc/class-hfe-settings-page.php:361
#: inc/class-hfe-settings-page.php:1117
msgid "Visit Website"
msgstr "Visiter le site Web"

#: inc/class-hfe-settings-page.php:362
msgid "Could not install. Please download from WordPress.org and install manually."
msgstr "Impossible d'installer. Veuillez télécharger depuis WordPress.org et installer manuellement."

#: inc/class-hfe-settings-page.php:363
msgid "Your details are submitted successfully."
msgstr "Vos détails ont été soumis avec succès."

#: inc/class-hfe-settings-page.php:364
msgid "Encountered an error while performing your request."
msgstr "Une erreur est survenue lors de l'exécution de votre demande."

#: inc/class-hfe-settings-page.php:440
msgid "Add Theme Support"
msgstr "Ajouter le support du thème"

#: inc/class-hfe-settings-page.php:456
msgid ""
"The Ultimate Addons for Elementor plugin need compatibility with your current theme to work "
"smoothly.</br></br>Following are two methods that enable theme support for the plugin.</br></br>Method 1 is selected by "
"default and that works fine almost will all themes. In case, you face any issue with the header or footer template, try "
"choosing Method 2."
msgstr ""
"Le plugin Ultimate Addons for Elementor nécessite une compatibilité avec votre thème actuel pour fonctionner "
"correctement.</br></br>Voici deux méthodes qui permettent d'activer le support du thème pour le plugin.</br></br>La "
"méthode 1 est sélectionnée par défaut et fonctionne bien avec presque tous les thèmes. Si vous rencontrez un problème "
"avec le modèle d'en-tête ou de pied de page, essayez de choisir la méthode 2."

#: inc/class-hfe-settings-page.php:475
msgid " Method 1 (Recommended)"
msgstr "Méthode 1 (Recommandée)"

#: inc/class-hfe-settings-page.php:476
msgid "This method replaces your theme's header (header.php) & footer (footer.php) template with plugin's custom templates."
msgstr ""
"Cette méthode remplace le modèle d'en-tête (header.php) et de pied de page (footer.php) de votre thème par les modèles "
"personnalisés du plugin."

#: inc/class-hfe-settings-page.php:479
msgid "Method 2"
msgstr "Méthode 2"

#: inc/class-hfe-settings-page.php:483
msgid "This method hides your theme's header & footer template with CSS and displays custom templates from the plugin."
msgstr ""
"Cette méthode masque le modèle d'en-tête et de pied de page de votre thème avec CSS et affiche des modèles "
"personnalisés du plugin."

#: inc/class-hfe-settings-page.php:494
msgid ""
"Sometimes above methods might not work well with your theme, in this case, contact your theme author and request them "
"to add support for the <a href=\"%s\">plugin.</a>"
msgstr ""
"Parfois, les méthodes ci-dessus peuvent ne pas bien fonctionner avec votre thème, dans ce cas, contactez l'auteur de "
"votre thème et demandez-lui d'ajouter le support pour le <a href=\"%s\">plugin.</a>"

#: inc/class-hfe-settings-page.php:526
#: inc/class-hfe-settings-page.php:538
msgid "UAE Lite"
msgstr "UAE Lite"

#: inc/class-hfe-settings-page.php:527
#: inc/widgets-manager/class-widgets-loader.php:168
msgid "UAE"
msgstr "UAE"

#: inc/class-hfe-settings-page.php:539
#: build/main.js:2
#: src/Components/NavMenu.js:130
#: build/main.js:51005
msgid "Dashboard"
msgstr "Tableau de bord"

#: inc/class-hfe-settings-page.php:550
#: inc/class-hfe-settings-page.php:551
#: inc/class-hfe-settings-page.php:1239
#: inc/widgets-manager/base/widgets-config.php:309
#: inc/widgets-manager/base/widgets-config.php:392
#: inc/widgets-manager/base/widgets-config.php:472
#: inc/widgets-manager/base/widgets-config.php:487
#: inc/widgets-manager/base/widgets-config.php:558
#: inc/widgets-manager/base/widgets-config.php:613
#: inc/widgets-manager/base/widgets-config.php:683
#: inc/widgets-manager/base/widgets-config.php:699
#: inc/widgets-manager/base/widgets-config.php:844
#: build/main.js:2
#: src/Components/NavMenu.js:184
#: build/main.js:51059
msgid "Settings"
msgstr "Paramètres"

#: inc/class-hfe-settings-page.php:611
msgid "Elementor Header & Footer Builder "
msgstr "Constructeur d'en-tête et de pied de page Elementor"

#: inc/class-hfe-settings-page.php:669
msgid "All Templates"
msgstr "Tous les modèles"

#: inc/class-hfe-settings-page.php:676
msgid "About Us"
msgstr "À propos de nous"

#: inc/class-hfe-settings-page.php:722
#. translators: 1: Elementor, 2: Link to plugin review
msgid ""
"Help us spread the word about the plugin by leaving %2$s %1$s %3$s ratings on %2$s WordPress.org %3$s. Thank you from "
"the Brainstorm Force team!"
msgstr ""
"Aidez-nous à faire connaître le plugin en laissant %2$s %1$s %3$s évaluations sur %2$s WordPress.org %3$s. Merci de la "
"part de l'équipe Brainstorm Force !"

#: inc/class-hfe-settings-page.php:765
msgid "Create Impressive Header and Footer Designs"
msgstr "Créer des designs d'en-tête et de pied de page impressionnants"

#: inc/class-hfe-settings-page.php:766
msgid ""
"Elementor Header & Footer Builder plugin lets you build impactful navigation for your website very easily. Before we "
"begin, we would like to know more about you. This will help us to serve you better."
msgstr ""
"Le plugin Elementor Header & Footer Builder vous permet de créer une navigation percutante pour votre site web très "
"facilement. Avant de commencer, nous aimerions en savoir plus sur vous. Cela nous aidera à mieux vous servir."

#: inc/class-hfe-settings-page.php:780
#. translators: %1$s and %3$s are opening anchor tags, and %2$s and %4$s is closing anchor tags.
msgid "By submitting, you agree to our %1$sTerms%2$s and %3$sPrivacy Policy%4$s."
msgstr "En soumettant, vous acceptez nos %1$sConditions%2$s et notre %3$sPolitique de confidentialité%4$s."

#: inc/class-hfe-settings-page.php:798
msgid "Skip"
msgstr "Passer"

#: inc/class-hfe-settings-page.php:816
msgid "Beginner"
msgstr "Débutant"

#: inc/class-hfe-settings-page.php:817
msgid "Intermediate"
msgstr "Intermédiaire"

#: inc/class-hfe-settings-page.php:818
msgid "Expert"
msgstr "Expert"

#: inc/class-hfe-settings-page.php:820
#: inc/class-hfe-settings-page.php:829
msgid "Field is required"
msgstr "Ce champ est requis"

#: inc/class-hfe-settings-page.php:821
msgid "I'm a WordPress:"
msgstr "Je suis un WordPress :"

#: inc/class-hfe-settings-page.php:826
msgid "Myself/My company"
msgstr "Moi/Ma société"

#: inc/class-hfe-settings-page.php:827
msgid "My client"
msgstr "Mon client"

#: inc/class-hfe-settings-page.php:830
msgid "I'm building website for:"
msgstr "Je construis un site web pour :"

#: inc/class-hfe-settings-page.php:853
msgid "First name is required"
msgstr "Le prénom est requis"

#: inc/class-hfe-settings-page.php:854
msgid "Your First Name"
msgstr "Votre prénom"

#: inc/class-hfe-settings-page.php:858
msgid "Email address is required"
msgstr "L'adresse e-mail est requise"

#: inc/class-hfe-settings-page.php:859
msgid "Your Work Email"
msgstr "Votre e-mail professionnel"

#: inc/class-hfe-settings-page.php:863
msgid "I agree to receive your newsletters and accept the data privacy statement."
msgstr "J'accepte de recevoir vos newsletters et j'accepte la déclaration de confidentialité des données."

#: inc/class-hfe-settings-page.php:868
msgid "Submit"
msgstr "Soumettre"

#: inc/class-hfe-settings-page.php:102
#: inc/class-hfe-settings-page.php:890
#: inc/class-hfe-settings-page.php:1168
msgid "Ultimate Addons for Elementor"
msgstr "Ultimate Addons for Elementor"

#: inc/class-hfe-settings-page.php:925
#. translators: %s: theme name
msgid ""
"Powering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for "
"all kinds of websites like blogs, portfolios, business, and WooCommerce stores."
msgstr ""
"Alimentant plus de 1+ million de sites web, %s est apprécié pour sa performance rapide et sa facilité d'utilisation. Il "
"convient à tous les types de sites web comme les blogs, les portfolios, les entreprises et les boutiques WooCommerce."

#: inc/class-hfe-settings-page.php:946
msgid "Welcome to Elementor Header & Footer Builder!"
msgstr "Bienvenue dans Elementor Header & Footer Builder !"

#: inc/class-hfe-settings-page.php:948
msgid ""
"With this awesome plugin, experience the easiest way to create a customized header and footer for your website with "
"Elementor. That too 100% FREE!"
msgstr ""
"Avec ce plugin génial, découvrez la manière la plus simple de créer un en-tête et un pied de page personnalisés pour "
"votre site web avec Elementor. Et cela 100 % GRATUIT !"

#: inc/class-hfe-settings-page.php:950
msgid ""
"Design beautiful layouts with simple drag & drop and display them at desired location with powerful target controls. "
"The plugin comes with inbuilt Elementor widgets that offer essential features to build header and footer. It's a "
"lightweight plugin that works seamlessly with all themes and backed up by 24/7 support."
msgstr ""
"Concevez de magnifiques mises en page avec un simple glisser-déposer et affichez-les à l'emplacement souhaité avec des "
"contrôles de ciblage puissants. Le plugin est livré avec des widgets Elementor intégrés qui offrent des fonctionnalités "
"essentielles pour construire l'en-tête et le pied de page. C'est un plugin léger qui fonctionne parfaitement avec tous "
"les thèmes et bénéficie d'un support 24/7."

#: inc/class-hfe-settings-page.php:952
msgid ""
"Trusted by more than 1+ Million users, Elementor Header & Footer Builder is a modern way to build advanced navigation "
"for your website."
msgstr ""
"Fidèle à plus de 1+ million d'utilisateurs, Elementor Header & Footer Builder est une manière moderne de construire une "
"navigation avancée pour votre site web."

#: inc/class-hfe-settings-page.php:955
#. translators: %s: theme name
msgid ""
"This plugin is brought to you by the same team behind the popular WordPress theme %s and a series of Ultimate Addons "
"plugins."
msgstr ""
"Ce plugin vous est proposé par la même équipe derrière le populaire thème WordPress %s et une série de plugins Ultimate "
"Addons."

#: inc/class-hfe-settings-page.php:961
msgid "Team photo"
msgstr "Photo d'équipe"

#: inc/class-hfe-settings-page.php:963
msgid "Brainstorm Force Team"
msgstr "Équipe Brainstorm Force"

#: inc/class-hfe-settings-page.php:1008
#. translators: %s - addon status label.
msgid "%1$s %3$s %2$s"
msgstr "%1$s %3$s %2$s"

#: inc/class-hfe-settings-page.php:1025
#. translators: %s - addon status label.
msgid "Status: %s"
msgstr "Statut : %s"

#: inc/class-hfe-settings-page.php:1044
msgid "WordPress.org"
msgstr "WordPress.org"

#: inc/class-hfe-settings-page.php:1109
msgid "Not Installed"
msgstr "Non installé"

#: inc/class-hfe-settings-page.php:1156
#: inc/widgets-manager/base/widgets-config.php:1008
msgid "Starter Templates"
msgstr "Modèles de démarrage"

#: inc/class-hfe-settings-page.php:1157
msgid ""
"A popular templates plugin that provides an extensive library of professional and fully customizable 600+ ready website "
"and templates. More than 1+ Million websites have built with this plugin."
msgstr ""
"Un plugin de modèles populaire qui fournit une vaste bibliothèque de plus de 600 sites web et modèles professionnels "
"entièrement personnalisables. Plus de 1+ million de sites web ont été construits avec ce plugin."

#: inc/class-hfe-settings-page.php:1169
msgid ""
"It’s a collection of 40+ unique, creative, and optimized Elementor widgets with 100+ readymade templates. Trusted by "
"more than 600+ K web professionals. It’s a #1 toolkit for Elementor Page Builder."
msgstr ""
"C'est une collection de plus de 40 widgets Elementor uniques, créatifs et optimisés avec plus de 100 modèles prêts à "
"l'emploi. Fiable par plus de 600 K professionnels du web. C'est l'outil n°1 pour Elementor Page Builder."

#: inc/class-hfe-settings-page.php:1238
msgid "Go to HFE Settings page"
msgstr "Allez à la page des paramètres HFE"

#: inc/lib/astra-notices/class-astra-notices.php:119
msgid "WordPress Nonce not validated."
msgstr "Nonce WordPress non validé."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:127
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:298
msgid "404 Page"
msgstr "Page 404"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:128
msgid "Search Page"
msgstr "Page de recherche"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:129
msgid "Blog / Posts Page"
msgstr "Blog / Page des articles"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:130
msgid "Front Page"
msgstr "Page d'accueil"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:131
msgid "Date Archive"
msgstr "Archive par date"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:132
msgid "Author Archive"
msgstr "Archive par auteur"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:136
msgid "WooCommerce Shop Page"
msgstr "Page boutique WooCommerce"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:141
#: inc/lib/target-rule/class-astra-target-rules-fields.php:213
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:143
#: src/Components/Compare/FreevsPro.jsx:152
#: build/main.js:54381
#: build/main.js:54390
msgid "Basic"
msgstr "Basique"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:143
msgid "Entire Website"
msgstr "Site entier"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:144
msgid "All Singulars"
msgstr "Tous les singuliers"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:145
msgid "All Archives"
msgstr "Toutes les archives"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:150
msgid "Special Pages"
msgstr "Pages spéciales"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:191
msgid "Specific Target"
msgstr "Cible spécifique"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:193
msgid "Specific Pages / Posts / Taxonomies, etc."
msgstr "Pages / articles / taxonomies spécifiques, etc."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:215
msgid "All"
msgstr "Tout"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:216
msgid "Logged In"
msgstr "Connecté"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:217
msgid "Logged Out"
msgstr "Déconnecté"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:222
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:142
#: src/Components/Compare/FreevsPro.jsx:153
#: build/main.js:54380
#: build/main.js:54391
msgid "Advanced"
msgstr "Avancé"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:624
msgid "Please enter"
msgstr "Veuillez entrer"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:625
msgid "Please delete"
msgstr "Veuillez supprimer"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:626
msgid "or more characters"
msgstr "ou plus de caractères"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:627
msgid "character"
msgstr "caractère"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:628
msgid "Loading more results…"
msgstr "Chargement de plus de résultats…"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:629
msgid "You can only select"
msgstr "Vous ne pouvez sélectionner que"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:630
msgid "item"
msgstr "élément"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:631
msgid "s"
msgstr "s"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:632
msgid "No results found"
msgstr "Aucun résultat trouvé"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:633
msgid "Searching…"
msgstr "Recherche…"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:634
msgid "The results could not be loaded."
msgstr "Les résultats n'ont pas pu être chargés."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:635
msgid "Search pages / post / categories"
msgstr "Pages / articles / catégories de recherche"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:654
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1064
msgid "Add Rule"
msgstr "Ajouter une règle"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:670
#: inc/lib/target-rule/class-astra-target-rules-fields.php:775
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1080
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1110
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1572
msgid "Select"
msgstr "Sélectionner"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:720
#. translators: %s post label
msgid "All %s"
msgstr "Tous %s"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:725
#: inc/lib/target-rule/class-astra-target-rules-fields.php:734
#. translators: %s post label
#. translators: %s taxonomy label
msgid "All %s Archive"
msgstr "Toute l'archive %s"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:1513
#. translators: %s post title.
msgid "The same display setting is already exist in %s post/s."
msgstr "Le même paramètre d'affichage existe déjà dans %s article/s."

#: inc/settings/hfe-settings-api.php:101
msgid "Sorry, you are not authorized to perform this action."
msgstr "Désolé, vous n'êtes pas autorisé à effectuer cette action."

#: inc/settings/hfe-settings-api.php:116
#: inc/settings/hfe-settings-api.php:143
#: inc/settings/hfe-settings-api.php:170
msgid "Invalid nonce"
msgstr "Nonce invalide"

#: inc/settings/hfe-settings-api.php:150
msgid "Plugins list not found"
msgstr "Liste des plugins non trouvée"

#: inc/settings/hfe-settings-api.php:177
msgid "Widgets list not found"
msgstr "Liste des widgets non trouvée"

#: inc/widgets-manager/base/widgets-config.php:53
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:19
#: build/main.js:54257
msgid "Post Info"
msgstr "Info sur l'article"

#: inc/widgets-manager/base/widgets-config.php:61
msgid "Show author, dates, and reading time with customizable styles."
msgstr "Afficher l'auteur, les dates et le temps de lecture avec des styles personnalisables."

#: inc/widgets-manager/base/widgets-config.php:67
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:21
#: build/main.js:54259
msgid "Breadcrumbs"
msgstr "Fil d'Ariane"

#: inc/widgets-manager/base/widgets-config.php:75
msgid "Add navigation links to guide visitors across your site."
msgstr "Ajouter des liens de navigation pour guider les visiteurs sur votre site."

#: inc/widgets-manager/base/widgets-config.php:81
#: inc/widgets-manager/widgets/site-logo/site-logo.php:133
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:26
#: build/main.js:54264
msgid "Site Logo"
msgstr "Logo du site"

#: inc/widgets-manager/base/widgets-config.php:88
msgid "Add your site's primary logo with flexible customization options."
msgstr "Ajoutez le logo principal de votre site avec des options de personnalisation flexibles."

#: inc/widgets-manager/base/widgets-config.php:94
#: inc/widgets-manager/base/widgets-config.php:525
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:28
#: src/Components/Compare/FreevsPro.jsx:138
#: src/Components/Compare/FreevsPro.jsx:140
#: src/Components/Compare/FreevsPro.jsx:148
#: src/Components/Compare/FreevsPro.jsx:150
#: build/main.js:54266
#: build/main.js:54376
#: build/main.js:54378
#: build/main.js:54386
#: build/main.js:54388
msgid "Navigation Menu"
msgstr "Menu de navigation"

#: inc/widgets-manager/base/widgets-config.php:101
msgid "Add stylish and functional menus for seamless site navigation."
msgstr "Ajoutez des menus élégants et fonctionnels pour une navigation fluide sur le site."

#: inc/widgets-manager/base/widgets-config.php:107
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:49
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:103
#: inc/widgets-manager/extensions/class-scroll-to-top.php:310
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:20
#: build/main.js:54258
msgid "Scroll to Top"
msgstr "Faire défiler vers le haut"

#: inc/widgets-manager/base/widgets-config.php:115
msgid "Add a customizable button for quick, one-click top scrolling."
msgstr "Ajoutez un bouton personnalisable pour un défilement rapide en un clic vers le haut."

#: inc/widgets-manager/base/widgets-config.php:122
msgid "Site Title"
msgstr "Titre du site"

#: inc/widgets-manager/base/widgets-config.php:129
msgid "Show your site’s name in a customizable style."
msgstr "Afficher le nom de votre site dans un style personnalisable."

#: inc/widgets-manager/base/widgets-config.php:135
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:25
#: build/main.js:54263
msgid "Site Tagline"
msgstr "Slogan du site"

#: inc/widgets-manager/base/widgets-config.php:142
msgid "Display your site's tagline to enhance brand identity."
msgstr "Affichez le slogan de votre site pour renforcer l'identité de la marque."

#: inc/widgets-manager/base/widgets-config.php:148
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:285
#: inc/widgets-manager/widgets/search-button/search-button.php:990
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:27
#: build/main.js:54265
msgid "Search"
msgstr "Recherche"

#: inc/widgets-manager/base/widgets-config.php:155
msgid "Add a search bar to help visitors find content easily."
msgstr "Ajoutez une barre de recherche pour aider les visiteurs à trouver facilement du contenu."

#: inc/widgets-manager/base/widgets-config.php:161
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:24
#: build/main.js:54262
msgid "Page Title"
msgstr "Titre de la page"

#: inc/widgets-manager/base/widgets-config.php:168
msgid "Display the title of the current page dynamically."
msgstr "Afficher dynamiquement le titre de la page actuelle."

#: inc/widgets-manager/base/widgets-config.php:174
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:22
#: build/main.js:54260
msgid "Retina Logo"
msgstr "Logo Retina"

#: inc/widgets-manager/base/widgets-config.php:181
msgid "Add a high-quality logo that looks sharp on any screen."
msgstr "Ajoutez un logo de haute qualité qui a l'air net sur n'importe quel écran."

#: inc/widgets-manager/base/widgets-config.php:187
#: inc/widgets-manager/class-widgets-loader.php:330
#: inc/widgets-manager/widgets/cart/cart.php:629
msgid "Cart"
msgstr "Panier"

#: inc/widgets-manager/base/widgets-config.php:194
msgid "Show cart for seamless shopping experiences."
msgstr "Afficher le panier pour des expériences d'achat fluides."

#: inc/widgets-manager/base/widgets-config.php:200
#: inc/widgets-manager/widgets/copyright/copyright.php:102
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:23
#: build/main.js:54261
msgid "Copyright"
msgstr "Droits d'auteur"

#: inc/widgets-manager/base/widgets-config.php:207
msgid "Display customizable copyright text for your site's footer."
msgstr "Afficher un texte de droits d'auteur personnalisable pour le pied de page de votre site."

#: inc/widgets-manager/base/widgets-config.php:234
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:34
#: src/Components/Compare/UltimateCompare.jsx:17
#: src/Components/Dashboard/UltimateFeatures.js:18
#: src/Components/Widgets/UltimateWidgets.jsx:18
#: build/main.js:52091
#: build/main.js:52688
#: build/main.js:54272
#: build/main.js:54493
msgid "Advanced Heading"
msgstr "En-tête avancé"

#: inc/widgets-manager/base/widgets-config.php:235
msgid "Create engaging and customizable headings for your pages."
msgstr "Créez des en-têtes engageants et personnalisables pour vos pages."

#: inc/widgets-manager/base/widgets-config.php:248
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:66
#: src/Components/Compare/UltimateCompare.jsx:12
#: src/Components/Dashboard/UltimateFeatures.js:13
#: src/Components/Widgets/UltimateWidgets.jsx:13
#: build/main.js:52086
#: build/main.js:52683
#: build/main.js:54304
#: build/main.js:54488
msgid "Modal Popup"
msgstr "Popup modal"

#: inc/widgets-manager/base/widgets-config.php:249
msgid "Design engaging popups with interactive animations and content."
msgstr "Concevez des popups engageants avec des animations et du contenu interactifs."

#: inc/widgets-manager/base/widgets-config.php:261
msgid "Content Toggle"
msgstr "Basculer le contenu"

#: inc/widgets-manager/base/widgets-config.php:262
msgid "Let users easily switch between two types of content."
msgstr "Permettez aux utilisateurs de passer facilement entre deux types de contenu."

#: inc/widgets-manager/base/widgets-config.php:274
msgid "Before After Slider"
msgstr "Curseur Avant Après"

#: inc/widgets-manager/base/widgets-config.php:275
msgid "Display the before and after versions of an image."
msgstr "Afficher les versions avant et après d'une image."

#: inc/widgets-manager/base/widgets-config.php:287
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:65
#: build/main.js:54303
msgid "Business Hours"
msgstr "Heures d'ouverture"

#: inc/widgets-manager/base/widgets-config.php:288
msgid "Customize and display your business hours stylishly."
msgstr "Personnalisez et affichez vos heures d'ouverture de manière élégante."

#: inc/widgets-manager/base/widgets-config.php:302
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:94
#: build/main.js:54332
msgid "Business Reviews"
msgstr "Avis d'entreprise"

#: inc/widgets-manager/base/widgets-config.php:303
msgid "Display verified reviews from Google and Yelp directly."
msgstr "Affichez des avis vérifiés de Google et Yelp directement."

#: inc/widgets-manager/base/widgets-config.php:316
msgid "Contact Form 7 Styler"
msgstr "Styliser Contact Form 7"

#: inc/widgets-manager/base/widgets-config.php:317
msgid "Style and enhance Contact Form 7 to fit your site."
msgstr "Stylisez et améliorez Contact Form 7 pour l'adapter à votre site."

#: inc/widgets-manager/base/widgets-config.php:329
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:64
#: build/main.js:54302
msgid "Countdown Timer"
msgstr "Minuteur de compte à rebours"

#: inc/widgets-manager/base/widgets-config.php:330
msgid "Create urgency with fixed or recurring countdowns."
msgstr "Créez de l'urgence avec des comptes à rebours fixes ou récurrents."

#: inc/widgets-manager/base/widgets-config.php:343
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:35
#: build/main.js:54273
msgid "Dual Color Heading"
msgstr "En-tête à deux couleurs"

#: inc/widgets-manager/base/widgets-config.php:344
msgid "Style headings with dual colours and customizable typography."
msgstr "Stylisez les en-têtes avec des couleurs doubles et une typographie personnalisable."

#: inc/widgets-manager/base/widgets-config.php:357
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:36
#: build/main.js:54274
msgid "Fancy Heading"
msgstr "En-tête fantaisie"

#: inc/widgets-manager/base/widgets-config.php:358
msgid "Add animated text for more engaging page titles."
msgstr "Ajoutez du texte animé pour des titres de page plus engageants."

#: inc/widgets-manager/base/widgets-config.php:371
msgid "FAQ Schema"
msgstr "Schéma FAQ"

#: inc/widgets-manager/base/widgets-config.php:372
msgid "Add SEO-friendly FAQ sections to pages."
msgstr "Ajoutez des sections FAQ optimisées pour le SEO aux pages."

#: inc/widgets-manager/base/widgets-config.php:385
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:49
#: build/main.js:54287
msgid "Google Map"
msgstr "Carte Google"

#: inc/widgets-manager/base/widgets-config.php:386
msgid "Add customizable, multi-location maps with custom markers."
msgstr "Ajoutez des cartes personnalisables multi-emplacements avec des marqueurs personnalisés."

#: inc/widgets-manager/base/widgets-config.php:400
msgid "Gravity Form Styler"
msgstr "Styliseur de formulaire Gravity"

#: inc/widgets-manager/base/widgets-config.php:401
msgid "Customize Gravity Forms with advanced styling options."
msgstr "Personnalisez les formulaires Gravity avec des options de style avancées."

#: inc/widgets-manager/base/widgets-config.php:413
msgid "Hotspot"
msgstr "Point d'intérêt"

#: inc/widgets-manager/base/widgets-config.php:414
msgid "Add interactive points on images for detailed visual tours."
msgstr "Ajoutez des points interactifs sur les images pour des visites visuelles détaillées."

#: inc/widgets-manager/base/widgets-config.php:426
msgid "How-to Schema"
msgstr "Schéma Comment faire"

#: inc/widgets-manager/base/widgets-config.php:427
msgid "Create structured how-to pages with automatic schema markup."
msgstr "Créez des pages structurées de type \"comment faire\" avec un balisage de schéma automatique."

#: inc/widgets-manager/base/widgets-config.php:439
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:45
#: build/main.js:54283
msgid "Image Gallery"
msgstr "Galerie d'images"

#: inc/widgets-manager/base/widgets-config.php:440
msgid "Build attractive, feature-rich galleries with advanced options."
msgstr "Créez des galeries attrayantes et riches en fonctionnalités avec des options avancées."

#: inc/widgets-manager/base/widgets-config.php:452
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:51
#: src/Components/Compare/UltimateCompare.jsx:27
#: src/Components/Dashboard/UltimateFeatures.js:28
#: src/Components/Widgets/UltimateWidgets.jsx:28
#: build/main.js:52101
#: build/main.js:52698
#: build/main.js:54289
#: build/main.js:54503
msgid "Info Box"
msgstr "Boîte d'information"

#: inc/widgets-manager/base/widgets-config.php:453
msgid "Add headings, icons, and descriptions in one flexible widget."
msgstr "Ajoutez des titres, des icônes et des descriptions dans un widget flexible."

#: inc/widgets-manager/base/widgets-config.php:466
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:110
#: build/main.js:54348
msgid "Instagram Feed"
msgstr "Fil Instagram"

#: inc/widgets-manager/base/widgets-config.php:467
msgid "Display an attractive, customizable Instagram feed."
msgstr "Affichez un fil Instagram attrayant et personnalisable."

#: inc/widgets-manager/base/widgets-config.php:481
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:54
#: build/main.js:54292
msgid "Login Form"
msgstr "Formulaire de connexion"

#: inc/widgets-manager/base/widgets-config.php:482
msgid "Design beautiful, customizable WordPress login forms."
msgstr "Concevez de beaux formulaires de connexion WordPress personnalisables."

#: inc/widgets-manager/base/widgets-config.php:497
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:61
#: build/main.js:54299
msgid "Marketing Button"
msgstr "Bouton marketing"

#: inc/widgets-manager/base/widgets-config.php:498
msgid "Create High-impact, customizable CTA for promotions and conversions."
msgstr "Créez des CTA personnalisables à fort impact pour les promotions et les conversions."

#: inc/widgets-manager/base/widgets-config.php:511
msgid "Multi Buttons"
msgstr "Boutons multiples"

#: inc/widgets-manager/base/widgets-config.php:512
msgid "Create a versatile dual-button setup for navigation and interactive web elements."
msgstr "Créez une configuration polyvalente à double bouton pour la navigation et les éléments web interactifs."

#: inc/widgets-manager/base/widgets-config.php:526
msgid "Build easy-to-navigate, visually appealing site menus."
msgstr "Créez des menus de site faciles à naviguer et visuellement attrayants."

#: inc/widgets-manager/base/widgets-config.php:538
msgid "Off - Canvas"
msgstr "Hors-canvas"

#: inc/widgets-manager/base/widgets-config.php:539
msgid "Create sliding panels for navigation or extra content."
msgstr "Créez des panneaux coulissants pour la navigation ou du contenu supplémentaire."

#: inc/widgets-manager/base/widgets-config.php:551
msgid "Posts"
msgstr "Articles"

#: inc/widgets-manager/base/widgets-config.php:552
msgid "Display and customize blog posts beautifully on your site."
msgstr "Affichez et personnalisez magnifiquement les articles de blog sur votre site."

#: inc/widgets-manager/base/widgets-config.php:566
msgid "Price Box"
msgstr "Boîte de prix"

#: inc/widgets-manager/base/widgets-config.php:567
msgid "Showcase prices and features in customizable layouts."
msgstr "Mettez en valeur les prix et les caractéristiques dans des mises en page personnalisables."

#: inc/widgets-manager/base/widgets-config.php:580
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:63
#: build/main.js:54301
msgid "Price List"
msgstr "Liste de prix"

#: inc/widgets-manager/base/widgets-config.php:581
msgid "Create elegant, customizable lists for menus or product catalogues."
msgstr "Créez des listes élégantes et personnalisables pour les menus ou les catalogues de produits."

#: inc/widgets-manager/base/widgets-config.php:594
#: inc/widgets-manager/widgets/retina/retina.php:111
#: inc/widgets-manager/widgets/retina/retina.php:245
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:118
#: build/main.js:54356
msgid "Retina Image"
msgstr "Image Retina"

#: inc/widgets-manager/base/widgets-config.php:595
msgid "Ensure images look crisp on high-resolution screens."
msgstr "Assurez-vous que les images sont nettes sur les écrans haute résolution."

#: inc/widgets-manager/base/widgets-config.php:607
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:112
#: build/main.js:54350
msgid "Social Share"
msgstr "Partage social"

#: inc/widgets-manager/base/widgets-config.php:608
msgid "Enable quick content sharing with social media buttons."
msgstr "Activez le partage rapide de contenu avec des boutons de médias sociaux."

#: inc/widgets-manager/base/widgets-config.php:623
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:47
#: build/main.js:54285
msgid "Table"
msgstr "Table"

#: inc/widgets-manager/base/widgets-config.php:624
msgid "Build responsive, styled tables to display data."
msgstr "Créez des tables réactives et stylisées pour afficher des données."

#: inc/widgets-manager/base/widgets-config.php:636
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:93
#: build/main.js:54331
msgid "Table of Contents"
msgstr "Table des matières"

#: inc/widgets-manager/base/widgets-config.php:637
msgid "Improve page readability with automatic, customizable TOCs."
msgstr "Améliorez la lisibilité de la page avec des tables des matières automatiques et personnalisables."

#: inc/widgets-manager/base/widgets-config.php:649
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:119
#: build/main.js:54357
msgid "Team Member"
msgstr "Membre de l'équipe"

#: inc/widgets-manager/base/widgets-config.php:650
msgid "Highlight team members with customizable layouts."
msgstr "Mettez en avant les membres de l'équipe avec des mises en page personnalisables."

#: inc/widgets-manager/base/widgets-config.php:663
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:48
#: build/main.js:54286
msgid "Timeline"
msgstr "Chronologie"

#: inc/widgets-manager/base/widgets-config.php:664
msgid "Display timelines or roadmaps with advanced styling options."
msgstr "Affichez des chronologies ou des feuilles de route avec des options de style avancées."

#: inc/widgets-manager/base/widgets-config.php:677
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:111
#: build/main.js:54349
msgid "Twitter Feed"
msgstr "Fil Twitter"

#: inc/widgets-manager/base/widgets-config.php:678
msgid "Embed Twitter feeds to show real-time content updates."
msgstr "Intégrez des fils Twitter pour afficher des mises à jour de contenu en temps réel."

#: inc/widgets-manager/base/widgets-config.php:692
msgid "User Registration Form"
msgstr "Formulaire d'inscription utilisateur"

#: inc/widgets-manager/base/widgets-config.php:693
msgid "Create beautiful, custom registration forms for users."
msgstr "Créez de beaux formulaires d'inscription personnalisés pour les utilisateurs."

#: inc/widgets-manager/base/widgets-config.php:708
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:52
#: build/main.js:54290
msgid "Video"
msgstr "Vidéo"

#: inc/widgets-manager/base/widgets-config.php:709
msgid "Embed optimized videos with customizable thumbnails and play buttons."
msgstr "Intégrez des vidéos optimisées avec des vignettes et des boutons de lecture personnalisables."

#: inc/widgets-manager/base/widgets-config.php:721
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:46
#: build/main.js:54284
msgid "Video Gallery"
msgstr "Galerie vidéo"

#: inc/widgets-manager/base/widgets-config.php:722
msgid "Showcase multiple videos without impacting load times."
msgstr "Mettez en valeur plusieurs vidéos sans impacter les temps de chargement."

#: inc/widgets-manager/base/widgets-config.php:734
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:101
#: build/main.js:54339
msgid "Welcome Music"
msgstr "Musique d'accueil"

#: inc/widgets-manager/base/widgets-config.php:735
msgid "Play background audio to engage visitors upon page load."
msgstr "Jouez de l'audio de fond pour engager les visiteurs lors du chargement de la page."

#: inc/widgets-manager/base/widgets-config.php:747
msgid "Woo - Add To Cart"
msgstr "Woo - Ajouter au panier"

#: inc/widgets-manager/base/widgets-config.php:748
msgid "Let users add items to cart with one click."
msgstr "Permettez aux utilisateurs d'ajouter des articles au panier d'un seul clic."

#: inc/widgets-manager/base/widgets-config.php:760
msgid "Woo - Categories"
msgstr "Woo - Catégories"

#: inc/widgets-manager/base/widgets-config.php:761
msgid "Display product categories beautifully."
msgstr "Affichez les catégories de produits de manière attrayante."

#: inc/widgets-manager/base/widgets-config.php:773
msgid "Woo - Checkout"
msgstr "Woo - Paiement"

#: inc/widgets-manager/base/widgets-config.php:774
msgid "Design optimized checkout pages for better conversions."
msgstr "Concevez des pages de paiement optimisées pour de meilleures conversions."

#: inc/widgets-manager/base/widgets-config.php:786
msgid "Woo - Mini Cart"
msgstr "Woo - Mini Panier"

#: inc/widgets-manager/base/widgets-config.php:787
msgid "Show a mini-cart for seamless shopping experiences."
msgstr "Affichez un mini-panier pour des expériences d'achat fluides."

#: inc/widgets-manager/base/widgets-config.php:799
msgid "Woo - Products"
msgstr "Woo - Produits"

#: inc/widgets-manager/base/widgets-config.php:800
msgid "Present products with detailed, customizable layouts."
msgstr "Présentez des produits avec des mises en page détaillées et personnalisables."

#: inc/widgets-manager/base/widgets-config.php:812
msgid "WP Fluent Forms Styler"
msgstr "Styliseur de WP Fluent Forms"

#: inc/widgets-manager/base/widgets-config.php:813
msgid "Style WP Fluent Forms for an attractive, cohesive look."
msgstr "Stylisez WP Fluent Forms pour un look attrayant et cohérent."

#: inc/widgets-manager/base/widgets-config.php:825
msgid "WPForms Styler"
msgstr "Styliseur de WPForms"

#: inc/widgets-manager/base/widgets-config.php:826
msgid "Upgrade WPForms with customizable design and layout options."
msgstr "Améliorez WPForms avec des options de design et de mise en page personnalisables."

#: inc/widgets-manager/base/widgets-config.php:838
msgid "Display Conditions"
msgstr "Conditions d'affichage"

#: inc/widgets-manager/base/widgets-config.php:839
msgid "Show or hide content based on user interactions."
msgstr "Afficher ou masquer le contenu en fonction des interactions des utilisateurs."

#: inc/widgets-manager/base/widgets-config.php:853
msgid "Particle Backgrounds"
msgstr "Arrière-plans en particules"

#: inc/widgets-manager/base/widgets-config.php:854
msgid "Add dynamic, animated backgrounds to sections and columns."
msgstr "Ajoutez des arrière-plans dynamiques et animés aux sections et colonnes."

#: inc/widgets-manager/base/widgets-config.php:866
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:103
#: build/main.js:54341
msgid "Party Propz"
msgstr "Accessoires de fête"

#: inc/widgets-manager/base/widgets-config.php:867
msgid "Decorate your site with festive seasonal elements easily."
msgstr "Décorez votre site avec des éléments saisonniers festifs facilement."

#: inc/widgets-manager/base/widgets-config.php:879
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:104
#: build/main.js:54342
msgid "Shape Divider"
msgstr "Diviseur de forme"

#: inc/widgets-manager/base/widgets-config.php:880
msgid "Add new attractive shape dividers to Elementor sections."
msgstr "Ajoutez de nouveaux diviseurs de forme attrayants aux sections Elementor."

#: inc/widgets-manager/base/widgets-config.php:892
msgid "Cross-Site Copy Paste"
msgstr "Copier-Coller entre Sites"

#: inc/widgets-manager/base/widgets-config.php:893
msgid "Copy and paste Elementor content between websites."
msgstr "Copiez et collez le contenu Elementor entre les sites web."

#: inc/widgets-manager/base/widgets-config.php:905
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:100
#: build/main.js:54338
msgid "Presets"
msgstr "Préréglages"

#: inc/widgets-manager/base/widgets-config.php:906
msgid "Use pre-made widget templates to accelerate your design process."
msgstr "Utilisez des modèles de widgets préfabriqués pour accélérer votre processus de conception."

#: inc/widgets-manager/base/widgets-config.php:924
msgid "Caldera Form Styler"
msgstr "Styliseur de Caldera Forms"

#: inc/widgets-manager/base/widgets-config.php:925
msgid "Style and enhance Caldera Forms to fit your site."
msgstr "Stylisez et améliorez Caldera Forms pour qu'il s'adapte à votre site."

#: inc/widgets-manager/base/widgets-config.php:970
#. translators: %s: theme name
msgid "Free & Fastest WordPress Theme."
msgstr "Thème WordPress gratuit et le plus rapide."

#: inc/widgets-manager/base/widgets-config.php:995
msgid "Fast and customizable theme for your website."
msgstr "Thème rapide et personnalisable pour votre site web."

#: inc/widgets-manager/base/widgets-config.php:1009
msgid "Launch websites with AI or ready-made templates."
msgstr "Lancez des sites web avec l'IA ou des modèles prêts à l'emploi."

#: inc/widgets-manager/base/widgets-config.php:1022
msgid "SureCart"
msgstr "SureCart"

#: inc/widgets-manager/base/widgets-config.php:1023
msgid "Sell your products easily on WordPress."
msgstr "Vendez vos produits facilement sur WordPress."

#: inc/widgets-manager/base/widgets-config.php:1036
msgid "Presto Player"
msgstr "Presto Player"

#: inc/widgets-manager/base/widgets-config.php:1037
msgid "Display seamless & interactive videos."
msgstr "Affichez des vidéos interactives et fluides."

#: inc/widgets-manager/base/widgets-config.php:1050
msgid "SureForms"
msgstr "SureForms"

#: inc/widgets-manager/base/widgets-config.php:1051
msgid "Create high-converting forms with ease."
msgstr "Créez des formulaires à forte conversion facilement."

#: inc/widgets-manager/base/widgets-config.php:1064
msgid "SureTriggers"
msgstr "SureTriggers"

#: inc/widgets-manager/base/widgets-config.php:1065
msgid "Automate WordPress tasks effortlessly."
msgstr "Automatisez les tâches WordPress sans effort."

#: inc/widgets-manager/base/widgets-config.php:1078
msgid "Schema – All In One Schema Rich Snippets"
msgstr "Schema – Tous les Rich Snippets Schema en un"

#: inc/widgets-manager/base/widgets-config.php:1079
msgid "Boost SEO with rich results & structured data."
msgstr "Améliorez le SEO avec des résultats enrichis et des données structurées."

#: inc/widgets-manager/class-widgets-loader.php:190
msgid "Ultimate Addons"
msgstr "Ultimate Addons"

#: inc/widgets-manager/class-widgets-loader.php:285
msgid "Invalid SVG Format, file not uploaded for security reasons!"
msgstr "Format SVG invalide, fichier non téléchargé pour des raisons de sécurité !"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:111
msgid "Enable Scroll To Top"
msgstr "Activer le défilement vers le haut"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:113
#: inc/widgets-manager/extensions/class-scroll-to-top.php:321
#: inc/widgets-manager/widgets/cart/cart.php:150
#: inc/widgets-manager/widgets/cart/cart.php:166
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:225
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:242
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:534
#: inc/widgets-manager/widgets/site-logo/site-logo.php:142
#: inc/widgets-manager/widgets/site-logo/site-logo.php:208
#: inc/widgets-manager/widgets/site-logo/site-logo.php:270
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:243
#: build/main.js:52488
msgid "Yes"
msgstr "Oui"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:114
#: inc/widgets-manager/extensions/class-scroll-to-top.php:322
#: inc/widgets-manager/widgets/cart/cart.php:151
#: inc/widgets-manager/widgets/cart/cart.php:167
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:226
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:243
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:535
#: inc/widgets-manager/widgets/site-logo/site-logo.php:143
#: inc/widgets-manager/widgets/site-logo/site-logo.php:207
#: inc/widgets-manager/widgets/site-logo/site-logo.php:271
msgid "No"
msgstr "Non"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:130
msgid "Responsive Support"
msgstr "Support réactif"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:133
msgid "Show"
msgstr "Afficher"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:134
msgid "Hide"
msgstr "Masquer"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:179
msgid "Position"
msgstr "Position"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:184
msgid "Bottom Left"
msgstr "Bas gauche"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:185
msgid "Bottom Right"
msgstr "Bas droit"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:197
msgid "Bottom"
msgstr "Bas"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:229
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:159
#: inc/widgets-manager/widgets/cart/cart.php:185
#: inc/widgets-manager/widgets/copyright/copyright.php:134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:282
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:313
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:348
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:384
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:499
#: inc/widgets-manager/widgets/page-title/page-title.php:245
#: inc/widgets-manager/widgets/retina/retina.php:155
#: inc/widgets-manager/widgets/site-logo/site-logo.php:181
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:169
#: inc/widgets-manager/widgets/site-title/site-title.php:237
msgid "Left"
msgstr "Gauche"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:263
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:167
#: inc/widgets-manager/widgets/cart/cart.php:193
#: inc/widgets-manager/widgets/copyright/copyright.php:142
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:290
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:314
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:356
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:392
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:507
#: inc/widgets-manager/widgets/page-title/page-title.php:253
#: inc/widgets-manager/widgets/retina/retina.php:163
#: inc/widgets-manager/widgets/site-logo/site-logo.php:189
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:177
#: inc/widgets-manager/widgets/site-title/site-title.php:245
msgid "Right"
msgstr "Droit"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:296
#: inc/widgets-manager/widgets/post-info/post-info.php:580
msgid "Height"
msgstr "Hauteur"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:319
#: inc/widgets-manager/widgets/post-info/post-info.php:551
#: inc/widgets-manager/widgets/retina/retina.php:253
#: inc/widgets-manager/widgets/search-button/search-button.php:229
#: inc/widgets-manager/widgets/search-button/search-button.php:778
#: inc/widgets-manager/widgets/site-logo/site-logo.php:308
msgid "Width"
msgstr "Largeur"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:341
msgid "Z Index"
msgstr "Index Z"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:363
#: inc/widgets-manager/widgets/retina/retina.php:419
#: inc/widgets-manager/widgets/retina/retina.php:453
#: inc/widgets-manager/widgets/site-logo/site-logo.php:483
#: inc/widgets-manager/widgets/site-logo/site-logo.php:517
msgid "Opacity"
msgstr "Opacité"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:384
msgid "Media Type"
msgstr "Type de média"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:389
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:414
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:204
#: inc/widgets-manager/widgets/cart/cart.php:113
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:566
#: inc/widgets-manager/widgets/page-title/page-title.php:353
#: inc/widgets-manager/widgets/post-info/post-info.php:366
#: inc/widgets-manager/widgets/post-info/post-info.php:638
#: inc/widgets-manager/widgets/search-button/search-button.php:153
#: inc/widgets-manager/widgets/search-button/search-button.php:803
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:137
#: inc/widgets-manager/widgets/site-title/site-title.php:140
#: inc/widgets-manager/widgets/site-title/site-title.php:345
msgid "Icon"
msgstr "Icône"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:393
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:431
msgid "Image"
msgstr "Image"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:397
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:447
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:203
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:827
#: inc/widgets-manager/widgets/post-info/post-info.php:693
msgid "Text"
msgstr "Texte"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:462
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:512
#: inc/widgets-manager/widgets/cart/cart.php:239
#: inc/widgets-manager/widgets/page-title/page-title.php:224
#: inc/widgets-manager/widgets/post-info/post-info.php:259
#: inc/widgets-manager/widgets/post-info/post-info.php:659
#: inc/widgets-manager/widgets/search-button/search-button.php:176
#: inc/widgets-manager/widgets/search-button/search-button.php:894
#: inc/widgets-manager/widgets/site-title/site-title.php:199
msgid "Size"
msgstr "Taille"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:523
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:366
#: inc/widgets-manager/widgets/cart/cart.php:315
#: inc/widgets-manager/widgets/cart/cart.php:513
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:923
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1127
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1500
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1693
#: inc/widgets-manager/widgets/page-title/page-title.php:328
#: inc/widgets-manager/widgets/retina/retina.php:412
#: inc/widgets-manager/widgets/search-button/search-button.php:255
#: inc/widgets-manager/widgets/search-button/search-button.php:661
#: inc/widgets-manager/widgets/search-button/search-button.php:816
#: inc/widgets-manager/widgets/search-button/search-button.php:921
#: inc/widgets-manager/widgets/site-logo/site-logo.php:476
#: inc/widgets-manager/widgets/site-title/site-title.php:320
msgid "Normal"
msgstr "Normal"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:533
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:590
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:373
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:439
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:499
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:563
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1507
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1539
#: inc/widgets-manager/widgets/page-title/page-title.php:301
#: inc/widgets-manager/widgets/post-info/post-info.php:610
#: inc/widgets-manager/widgets/post-info/post-info.php:646
#: inc/widgets-manager/widgets/search-button/search-button.php:823
#: inc/widgets-manager/widgets/search-button/search-button.php:843
#: inc/widgets-manager/widgets/search-button/search-button.php:927
#: inc/widgets-manager/widgets/search-button/search-button.php:952
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:205
#: inc/widgets-manager/widgets/site-title/site-title.php:293
msgid "Color"
msgstr "Couleur"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:563
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:620
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:464
#: inc/widgets-manager/widgets/cart/cart.php:358
#: inc/widgets-manager/widgets/cart/cart.php:414
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1446
#: inc/widgets-manager/widgets/retina/retina.php:368
#: inc/widgets-manager/widgets/search-button/search-button.php:349
#: inc/widgets-manager/widgets/search-button/search-button.php:493
#: inc/widgets-manager/widgets/search-button/search-button.php:583
#: inc/widgets-manager/widgets/site-logo/site-logo.php:432
msgid "Border Color"
msgstr "Couleur de la bordure"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:580
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:432
#: inc/widgets-manager/widgets/cart/cart.php:371
#: inc/widgets-manager/widgets/cart/cart.php:550
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:962
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1170
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1532
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1760
#: inc/widgets-manager/widgets/retina/retina.php:447
#: inc/widgets-manager/widgets/search-button/search-button.php:701
#: inc/widgets-manager/widgets/search-button/search-button.php:836
#: inc/widgets-manager/widgets/search-button/search-button.php:945
#: inc/widgets-manager/widgets/site-logo/site-logo.php:511
msgid "Hover"
msgstr "Survol"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:638
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:418
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:607
#: inc/widgets-manager/widgets/cart/cart.php:277
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1285
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1603
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1738
#: inc/widgets-manager/widgets/retina/retina.php:386
#: inc/widgets-manager/widgets/search-button/search-button.php:391
#: inc/widgets-manager/widgets/search-button/search-button.php:622
#: inc/widgets-manager/widgets/site-logo/site-logo.php:450
msgid "Border Radius"
msgstr "Rayon de bordure"

#: inc/widgets-manager/extensions/class-scroll-to-top.php:318
msgid "Disable Scroll to Top For This Page"
msgstr "Désactiver le défilement vers le haut pour cette page"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:118
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:324
#: inc/widgets-manager/widgets/post-info/post-info.php:100
#: inc/widgets-manager/widgets/site-title/site-title.php:111
msgid "General"
msgstr "Général"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:125
msgid "Show Home"
msgstr "Afficher l'accueil"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:127
#: inc/widgets-manager/widgets/post-info/post-info.php:494
msgid "On"
msgstr "Activé"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:128
#: inc/widgets-manager/widgets/post-info/post-info.php:493
msgid "Off"
msgstr "Désactivé"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:137
msgid "Home Icon"
msgstr "Icône d'accueil"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:154
#: inc/widgets-manager/widgets/cart/cart.php:181
#: inc/widgets-manager/widgets/copyright/copyright.php:130
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:278
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:495
#: inc/widgets-manager/widgets/page-title/page-title.php:241
#: inc/widgets-manager/widgets/post-info/post-info.php:466
#: inc/widgets-manager/widgets/retina/retina.php:151
#: inc/widgets-manager/widgets/site-logo/site-logo.php:177
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:165
#: inc/widgets-manager/widgets/site-title/site-title.php:233
msgid "Alignment"
msgstr "Alignement"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:163
#: inc/widgets-manager/widgets/cart/cart.php:189
#: inc/widgets-manager/widgets/copyright/copyright.php:138
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:286
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:352
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:388
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:503
#: inc/widgets-manager/widgets/page-title/page-title.php:249
#: inc/widgets-manager/widgets/post-info/post-info.php:474
#: inc/widgets-manager/widgets/retina/retina.php:159
#: inc/widgets-manager/widgets/site-logo/site-logo.php:185
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:173
#: inc/widgets-manager/widgets/site-title/site-title.php:241
msgid "Center"
msgstr "Centre"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:192
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:212
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:224
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:491
#: inc/widgets-manager/widgets/post-info/post-info.php:491
msgid "Separator"
msgstr "Séparateur"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:199
msgid "Separator Type"
msgstr "Type de séparateur"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:214
msgid "»"
msgstr "»"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:265
msgid "Display Text"
msgstr "Texte d'affichage"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:272
msgid "Home Page"
msgstr "Page d'accueil"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:274
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:658
msgid "Home"
msgstr "Accueil"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:287
msgid "Search results for:"
msgstr "Résultats de recherche pour :"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:300
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:661
msgid "Error 404: Page not found"
msgstr "Erreur 404 : Page non trouvée"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:332
msgid "Spacing between Items"
msgstr "Espacement entre les éléments"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:351
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:619
#: inc/widgets-manager/widgets/cart/cart.php:297
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1678
#: inc/widgets-manager/widgets/retina/retina.php:572
#: inc/widgets-manager/widgets/site-logo/site-logo.php:637
msgid "Padding"
msgstr "Remplissage"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:386
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:452
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:575
#: inc/widgets-manager/widgets/cart/cart.php:347
#: inc/widgets-manager/widgets/cart/cart.php:403
#: inc/widgets-manager/widgets/cart/cart.php:534
#: inc/widgets-manager/widgets/cart/cart.php:571
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:803
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:945
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:987
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1050
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1151
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1194
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1237
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1519
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1552
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1713
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1779
#: inc/widgets-manager/widgets/retina/retina.php:542
#: inc/widgets-manager/widgets/search-button/search-button.php:300
#: inc/widgets-manager/widgets/search-button/search-button.php:460
#: inc/widgets-manager/widgets/search-button/search-button.php:527
#: inc/widgets-manager/widgets/search-button/search-button.php:719
#: inc/widgets-manager/widgets/site-logo/site-logo.php:380
#: inc/widgets-manager/widgets/site-logo/site-logo.php:607
msgid "Background Color"
msgstr "Couleur de fond"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:399
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:532
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:588
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1668
msgid "Typography"
msgstr "Typographie"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:408
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:597
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1730
msgid "Border"
msgstr "Bordure"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:555
msgid "Current Item"
msgstr "Élément actuel"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:662
msgid "Search results for: "
msgstr "Résultats de recherche pour :"

#: inc/widgets-manager/widgets/cart/cart.php:93
#: inc/widgets-manager/widgets/cart/cart.php:218
msgid "Menu Cart"
msgstr "Panier du menu"

#: inc/widgets-manager/widgets/cart/cart.php:100
#: inc/widgets-manager/widgets/post-info/post-info.php:130
msgid "Type"
msgstr "Type"

#: inc/widgets-manager/widgets/cart/cart.php:104
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:210
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:436
#: inc/widgets-manager/widgets/page-title/page-title.php:179
#: inc/widgets-manager/widgets/page-title/page-title.php:228
#: inc/widgets-manager/widgets/post-info/post-info.php:116
#: inc/widgets-manager/widgets/post-info/post-info.php:370
#: inc/widgets-manager/widgets/site-logo/site-logo.php:238
#: inc/widgets-manager/widgets/site-logo/site-logo.php:269
#: inc/widgets-manager/widgets/site-title/site-title.php:172
#: inc/widgets-manager/widgets/site-title/site-title.php:203
msgid "Default"
msgstr "Par défaut"

#: inc/widgets-manager/widgets/cart/cart.php:105
#: inc/widgets-manager/widgets/post-info/post-info.php:139
#: inc/widgets-manager/widgets/post-info/post-info.php:156
#: inc/widgets-manager/widgets/post-info/post-info.php:194
#: inc/widgets-manager/widgets/post-info/post-info.php:325
#: inc/widgets-manager/widgets/post-info/post-info.php:371
msgid "Custom"
msgstr "Personnalisé"

#: inc/widgets-manager/widgets/cart/cart.php:116
msgid "Bag Light"
msgstr "Sac léger"

#: inc/widgets-manager/widgets/cart/cart.php:117
msgid "Bag Medium"
msgstr "Sac moyen"

#: inc/widgets-manager/widgets/cart/cart.php:118
msgid "Bag Solid"
msgstr "Sac solide"

#: inc/widgets-manager/widgets/cart/cart.php:131
#: inc/widgets-manager/widgets/cart/cart.php:474
msgid "Items Count"
msgstr "Nombre d'éléments"

#: inc/widgets-manager/widgets/cart/cart.php:134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:482
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:822
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1430
#: inc/widgets-manager/widgets/page-title/page-title.php:180
#: inc/widgets-manager/widgets/post-info/post-info.php:369
#: inc/widgets-manager/widgets/retina/retina.php:181
#: inc/widgets-manager/widgets/retina/retina.php:212
#: inc/widgets-manager/widgets/retina/retina.php:332
#: inc/widgets-manager/widgets/search-button/search-button.php:331
#: inc/widgets-manager/widgets/search-button/search-button.php:565
#: inc/widgets-manager/widgets/site-logo/site-logo.php:239
#: inc/widgets-manager/widgets/site-logo/site-logo.php:396
msgid "None"
msgstr "Aucun"

#: inc/widgets-manager/widgets/cart/cart.php:135
msgid "Bubble"
msgstr "Bulle"

#: inc/widgets-manager/widgets/cart/cart.php:148
msgid "Show Total Price"
msgstr "Afficher le prix total"

#: inc/widgets-manager/widgets/cart/cart.php:164
msgid "Hide Empty"
msgstr "Masquer vide"

#: inc/widgets-manager/widgets/cart/cart.php:170
msgid "This will hide the items count until the cart is empty"
msgstr "Cela masquera le nombre d'éléments jusqu'à ce que le panier soit vide"

#: inc/widgets-manager/widgets/cart/cart.php:258
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1463
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1586
#: inc/widgets-manager/widgets/retina/retina.php:346
#: inc/widgets-manager/widgets/search-button/search-button.php:368
#: inc/widgets-manager/widgets/search-button/search-button.php:599
#: inc/widgets-manager/widgets/site-logo/site-logo.php:410
msgid "Border Width"
msgstr "Largeur de bordure"

#: inc/widgets-manager/widgets/cart/cart.php:322
#: inc/widgets-manager/widgets/cart/cart.php:378
#: inc/widgets-manager/widgets/cart/cart.php:520
#: inc/widgets-manager/widgets/cart/cart.php:557
#: inc/widgets-manager/widgets/copyright/copyright.php:156
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:930
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:969
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1037
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1177
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1220
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1700
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1767
#: inc/widgets-manager/widgets/post-info/post-info.php:722
#: inc/widgets-manager/widgets/retina/retina.php:527
#: inc/widgets-manager/widgets/search-button/search-button.php:265
#: inc/widgets-manager/widgets/search-button/search-button.php:428
#: inc/widgets-manager/widgets/search-button/search-button.php:512
#: inc/widgets-manager/widgets/site-logo/site-logo.php:592
msgid "Text Color"
msgstr "Couleur du texte"

#: inc/widgets-manager/widgets/cart/cart.php:333
#: inc/widgets-manager/widgets/cart/cart.php:389
#: inc/widgets-manager/widgets/page-title/page-title.php:364
#: inc/widgets-manager/widgets/search-button/search-button.php:668
#: inc/widgets-manager/widgets/search-button/search-button.php:708
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:221
#: inc/widgets-manager/widgets/site-title/site-title.php:355
msgid "Icon Color"
msgstr "Couleur de l'icône"

#: inc/widgets-manager/widgets/cart/cart.php:428
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1567
#: inc/widgets-manager/widgets/search-button/search-button.php:751
#: inc/widgets-manager/widgets/search-button/search-button.php:858
msgid "Icon Size"
msgstr "Taille de l'icône"

#: inc/widgets-manager/widgets/cart/cart.php:450
#: inc/widgets-manager/widgets/page-title/page-title.php:156
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:146
#: inc/widgets-manager/widgets/site-title/site-title.php:149
msgid "Icon Spacing"
msgstr "Espacement de l'icône"

#: inc/widgets-manager/widgets/cart/cart.php:487
msgid "Distance"
msgstr "Distance"

#: inc/widgets-manager/widgets/copyright/copyright.php:109
msgid "Copyright Text"
msgstr "Texte de copyright"

#: inc/widgets-manager/widgets/copyright/copyright.php:114
msgid "Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]"
msgstr "Droits d'auteur © [hfe_current_year] [hfe_site_title] | Propulsé par [hfe_site_title]"

#: inc/widgets-manager/widgets/copyright/copyright.php:121
#: inc/widgets-manager/widgets/page-title/page-title.php:175
#: inc/widgets-manager/widgets/page-title/page-title.php:189
#: inc/widgets-manager/widgets/post-info/post-info.php:340
#: inc/widgets-manager/widgets/retina/retina.php:208
#: inc/widgets-manager/widgets/retina/retina.php:221
#: inc/widgets-manager/widgets/site-logo/site-logo.php:234
#: inc/widgets-manager/widgets/site-logo/site-logo.php:249
#: inc/widgets-manager/widgets/site-title/site-title.php:168
#: inc/widgets-manager/widgets/site-title/site-title.php:181
msgid "Link"
msgstr "Lien"

#: inc/widgets-manager/widgets/copyright/copyright.php:123
#: inc/widgets-manager/widgets/page-title/page-title.php:191
#: inc/widgets-manager/widgets/retina/retina.php:226
#: inc/widgets-manager/widgets/site-logo/site-logo.php:254
#: inc/widgets-manager/widgets/site-title/site-title.php:183
msgid "https://your-link.com"
msgstr "https://your-link.com"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:173
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:183
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:2013
msgid "Menu"
msgstr "Menu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:189
#. translators: %s Nav menu URL
msgid "Go to the <a href=\"%s\" target=\"_blank\">Menus screen</a> to manage your menus."
msgstr "Allez à l'<a href=\"%s\" target=\"_blank\">écran des Menus</a> pour gérer vos menus."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:198
#. translators: %s Nav menu URL
msgid ""
"<strong>There are no menus in your site.</strong><br>Go to the <a href=\"%s\" target=\"_blank\">Menus screen</a> to "
"create one."
msgstr ""
"<strong>Il n'y a pas de menus sur votre site.</strong><br>Allez à l'<a href=\"%s\" target=\"_blank\">écran des "
"Menus</a> pour en créer un."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:207
msgid "Last Menu Item"
msgstr "Dernier élément de menu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:211
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1656
#: inc/widgets-manager/widgets/search-button/search-button.php:648
msgid "Button"
msgstr "Bouton"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:223
msgid "Enable Schema Support"
msgstr "Activer le support Schema"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:240
msgid "Hide + & - Sign"
msgstr "Masquer le signe + & -"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:256
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:263
#: inc/widgets-manager/widgets/post-info/post-info.php:107
#: inc/widgets-manager/widgets/search-button/search-button.php:148
msgid "Layout"
msgstr "Mise en page"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:267
msgid "Horizontal"
msgstr "Horizontal"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:268
msgid "Vertical"
msgstr "Vertical"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:269
msgid "Expanded"
msgstr "Développé"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:270
msgid "Flyout"
msgstr "Flyout"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:294
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:396
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:181
#: inc/widgets-manager/widgets/site-title/site-title.php:249
msgid "Justify"
msgstr "Justifier"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:309
msgid "Flyout Orientation"
msgstr "Orientation du Flyout"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:325
msgid "Appear Effect"
msgstr "Effet d'apparition"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:330
msgid "Slide"
msgstr "Glisser"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:331
msgid "Push"
msgstr "Pousser"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:343
msgid "Hamburger Align"
msgstr "Alignement du hamburger"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:380
msgid "Menu Items Align"
msgstr "Alignement des éléments de menu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:417
msgid "Submenu Icon"
msgstr "Icône de sous-menu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:421
msgid "Arrows"
msgstr "Flèches"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:422
msgid "Plus Sign"
msgstr "Signe plus"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:423
msgid "Classic"
msgstr "Classique"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:432
msgid "Submenu Animation"
msgstr "Animation de sous-menu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:437
msgid "Slide Up"
msgstr "Glisser vers le haut"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:449
msgid "Action On Menu Click"
msgstr "Action sur clic de menu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:452
msgid "For Horizontal layout, this will affect on the selected breakpoint"
msgstr "Pour la mise en page horizontale, cela affectera le point de rupture sélectionné"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:454
msgid "Open Submenu"
msgstr "Ouvrir le sous-menu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:455
msgid "Redirect To Self Link"
msgstr "Rediriger vers le lien auto"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:465
msgid "Responsive"
msgstr "Réactif"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:476
msgid "Breakpoint"
msgstr "Point de rupture"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:480
msgid "Mobile (768px >)"
msgstr "Mobile (768px >)"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:481
msgid "Tablet (1025px >)"
msgstr "Tablette (1025px >)"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:512
msgid "This is the alignement of menu icon on selected responsive breakpoints."
msgstr "Voici l'alignement de l'icône de menu sur les points de rupture réactifs sélectionnés."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:531
msgid "Full Width"
msgstr "Largeur complète"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:532
msgid "Enable this option to stretch the Sub Menu to Full Width."
msgstr "Activez cette option pour étendre le sous-menu à la largeur complète."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:550
msgid "Menu Icon"
msgstr "Icône de menu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:581
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:597
#: inc/widgets-manager/widgets/search-button/search-button.php:883
msgid "Close Icon"
msgstr "Icône de fermeture"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:623
msgid "Main Menu"
msgstr "Menu principal"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:634
msgid "Flyout Box Width"
msgstr "Largeur de la boîte déroulante"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:662
msgid "Flyout Box Padding"
msgstr "Marge intérieure de la boîte déroulante"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:686
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1345
msgid "Horizontal Padding"
msgstr "Marge intérieure horizontale"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:712
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1368
msgid "Vertical Padding"
msgstr "Marge intérieure verticale"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:734
#: inc/widgets-manager/widgets/post-info/post-info.php:446
msgid "Space Between"
msgstr "Espace entre"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:761
msgid "Row Spacing"
msgstr "Espacement des lignes"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:782
msgid "Menu Item Top Spacing"
msgstr "Espacement supérieur des éléments de menu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:818
msgid "Link Hover Effect"
msgstr "Effet de survol du lien"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:823
msgid "Underline"
msgstr "Souligner"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:824
msgid "Overline"
msgstr "Surligner"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:825
msgid "Double Line"
msgstr "Double ligne"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:826
msgid "Framed"
msgstr "Encadré"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:838
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:880
msgid "Animation"
msgstr "Animation"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:859
msgid "Frame Animation"
msgstr "Animation de cadre"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1005
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1066
msgid "Link Hover Effect Color"
msgstr "Couleur de l'effet de survol du lien"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1102
msgid "Dropdown"
msgstr "Déroulant"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1110
msgid "<b>Note:</b> On desktop, below style options will apply to the submenu. On mobile, this will apply to the entire menu."
msgstr ""
"<b>Remarque :</b> Sur bureau, les options de style ci-dessous s'appliqueront au sous-menu. Sur mobile, cela "
"s'appliquera à l'ensemble du menu."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1320
msgid "Dropdown Width (px)"
msgstr "Largeur du déroulant (px)"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1394
msgid "Top Distance"
msgstr "Distance supérieure"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1416
msgid "Divider"
msgstr "Diviseur"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1425
#: inc/widgets-manager/widgets/retina/retina.php:327
#: inc/widgets-manager/widgets/search-button/search-button.php:326
#: inc/widgets-manager/widgets/search-button/search-button.php:560
#: inc/widgets-manager/widgets/site-logo/site-logo.php:391
msgid "Border Style"
msgstr "Style de bordure"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1431
#: inc/widgets-manager/widgets/post-info/post-info.php:508
#: inc/widgets-manager/widgets/retina/retina.php:333
#: inc/widgets-manager/widgets/search-button/search-button.php:332
#: inc/widgets-manager/widgets/search-button/search-button.php:566
#: inc/widgets-manager/widgets/site-logo/site-logo.php:397
msgid "Solid"
msgstr "Solide"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1432
#: inc/widgets-manager/widgets/post-info/post-info.php:509
#: inc/widgets-manager/widgets/retina/retina.php:334
#: inc/widgets-manager/widgets/search-button/search-button.php:333
#: inc/widgets-manager/widgets/search-button/search-button.php:567
#: inc/widgets-manager/widgets/site-logo/site-logo.php:398
msgid "Double"
msgstr "Double"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1433
#: inc/widgets-manager/widgets/post-info/post-info.php:510
#: inc/widgets-manager/widgets/retina/retina.php:335
#: inc/widgets-manager/widgets/search-button/search-button.php:334
#: inc/widgets-manager/widgets/search-button/search-button.php:568
#: inc/widgets-manager/widgets/site-logo/site-logo.php:399
msgid "Dotted"
msgstr "Pointillé"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1434
#: inc/widgets-manager/widgets/post-info/post-info.php:511
#: inc/widgets-manager/widgets/retina/retina.php:336
#: inc/widgets-manager/widgets/search-button/search-button.php:335
#: inc/widgets-manager/widgets/search-button/search-button.php:569
#: inc/widgets-manager/widgets/site-logo/site-logo.php:400
msgid "Dashed"
msgstr "Tireté"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1490
msgid "Menu Trigger & Close Icon"
msgstr "Icône de déclenchement et de fermeture du menu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1616
msgid "Close Icon Color"
msgstr "Couleur de l'icône de fermeture"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1634
msgid "Close Icon Size"
msgstr "Taille de l'icône de fermeture"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1795
msgid "Border Hover Color"
msgstr "Couleur de survol de la bordure"

#: inc/widgets-manager/widgets/page-title/page-title.php:108
#: inc/widgets-manager/widgets/page-title/page-title.php:282
#: inc/widgets-manager/widgets/site-title/site-title.php:276
msgid "Title"
msgstr "Titre"

#: inc/widgets-manager/widgets/page-title/page-title.php:117
#. translators: %1$s doc link
msgid "<b>Note:</b> Archive page title will be visible on frontend."
msgstr "<b>Remarque :</b> Le titre de la page d'archive sera visible sur le frontend."

#: inc/widgets-manager/widgets/page-title/page-title.php:125
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:113
#: inc/widgets-manager/widgets/site-title/site-title.php:118
msgid "Before Title Text"
msgstr "Texte avant le titre"

#: inc/widgets-manager/widgets/page-title/page-title.php:136
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:125
#: inc/widgets-manager/widgets/site-title/site-title.php:129
msgid "After Title Text"
msgstr "Texte après le titre"

#: inc/widgets-manager/widgets/page-title/page-title.php:147
msgid "Select Icon"
msgstr "Sélectionner une icône"

#: inc/widgets-manager/widgets/page-title/page-title.php:178
#: inc/widgets-manager/widgets/post-info/post-info.php:352
#: inc/widgets-manager/widgets/retina/retina.php:213
#: inc/widgets-manager/widgets/site-logo/site-logo.php:241
#: inc/widgets-manager/widgets/site-title/site-title.php:171
msgid "Custom URL"
msgstr "URL personnalisée"

#: inc/widgets-manager/widgets/page-title/page-title.php:207
#: inc/widgets-manager/widgets/site-title/site-title.php:216
msgid "HTML Tag"
msgstr "Tag HTML"

#: inc/widgets-manager/widgets/page-title/page-title.php:210
#: inc/widgets-manager/widgets/site-title/site-title.php:219
msgid "H1"
msgstr "H1"

#: inc/widgets-manager/widgets/page-title/page-title.php:211
#: inc/widgets-manager/widgets/site-title/site-title.php:220
msgid "H2"
msgstr "H2"

#: inc/widgets-manager/widgets/page-title/page-title.php:212
#: inc/widgets-manager/widgets/site-title/site-title.php:221
msgid "H3"
msgstr "H3"

#: inc/widgets-manager/widgets/page-title/page-title.php:213
#: inc/widgets-manager/widgets/site-title/site-title.php:222
msgid "H4"
msgstr "H4"

#: inc/widgets-manager/widgets/page-title/page-title.php:214
#: inc/widgets-manager/widgets/site-title/site-title.php:223
msgid "H5"
msgstr "H5"

#: inc/widgets-manager/widgets/page-title/page-title.php:215
#: inc/widgets-manager/widgets/site-title/site-title.php:224
msgid "H6"
msgstr "H6"

#: inc/widgets-manager/widgets/page-title/page-title.php:229
#: inc/widgets-manager/widgets/site-title/site-title.php:204
msgid "Small"
msgstr "Petit"

#: inc/widgets-manager/widgets/page-title/page-title.php:230
#: inc/widgets-manager/widgets/site-title/site-title.php:205
msgid "Medium"
msgstr "Moyen"

#: inc/widgets-manager/widgets/page-title/page-title.php:231
#: inc/widgets-manager/widgets/site-title/site-title.php:206
msgid "Large"
msgstr "Grand"

#: inc/widgets-manager/widgets/page-title/page-title.php:232
#: inc/widgets-manager/widgets/site-title/site-title.php:207
msgid "XL"
msgstr "XL"

#: inc/widgets-manager/widgets/page-title/page-title.php:233
#: inc/widgets-manager/widgets/site-title/site-title.php:208
msgid "XXL"
msgstr "XXL"

#: inc/widgets-manager/widgets/page-title/page-title.php:257
msgid "Justified"
msgstr "Justifié"

#: inc/widgets-manager/widgets/page-title/page-title.php:325
#: inc/widgets-manager/widgets/site-title/site-title.php:317
msgid "Blend Mode"
msgstr "Mode de fusion"

#: inc/widgets-manager/widgets/page-title/page-title.php:382
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:239
#: inc/widgets-manager/widgets/site-title/site-title.php:373
msgid "Icon Hover Color"
msgstr "Couleur de survol de l'icône"

#: inc/widgets-manager/widgets/post-info/post-info.php:112
msgid "Inline"
msgstr "En ligne"

#: inc/widgets-manager/widgets/post-info/post-info.php:134
msgid "Author"
msgstr "Auteur"

#: inc/widgets-manager/widgets/post-info/post-info.php:135
msgid "Time"
msgstr "Temps"

#: inc/widgets-manager/widgets/post-info/post-info.php:137
msgid "Terms"
msgstr "Termes"

#: inc/widgets-manager/widgets/post-info/post-info.php:138
#: inc/widgets-manager/widgets/post-info/post-info.php:311
msgid "Comments"
msgstr "Commentaires"

#: inc/widgets-manager/widgets/post-info/post-info.php:147
msgid "Date Format"
msgstr "Format de date"

#: inc/widgets-manager/widgets/post-info/post-info.php:168
msgid "Custom Date Format"
msgstr "Format de date personnalisé"

#: inc/widgets-manager/widgets/post-info/post-info.php:177
#: inc/widgets-manager/widgets/post-info/post-info.php:214
#. translators: %s: Allowed data letters (see: http://php.net/manual/en/function.date.php).
#. translators: %s: Allowed time letters (see: http://php.net/manual/en/function.time.php).
msgid "Use the letters: %s"
msgstr "Utilisez les lettres : %s"

#: inc/widgets-manager/widgets/post-info/post-info.php:186
msgid "Time Format"
msgstr "Format de temps"

#: inc/widgets-manager/widgets/post-info/post-info.php:204
msgid "Custom Time Format"
msgstr "Format de temps personnalisé"

#: inc/widgets-manager/widgets/post-info/post-info.php:223
msgid "Taxonomy"
msgstr "Taxonomie"

#: inc/widgets-manager/widgets/post-info/post-info.php:237
msgid "Before"
msgstr "Avant"

#: inc/widgets-manager/widgets/post-info/post-info.php:248
msgid "Avatar"
msgstr "Avatar"

#: inc/widgets-manager/widgets/post-info/post-info.php:273
msgid "Custom Format"
msgstr "Format personnalisé"

#: inc/widgets-manager/widgets/post-info/post-info.php:285
#: inc/widgets-manager/widgets/post-info/post-info.php:287
#: inc/widgets-manager/widgets/post-info/post-info.php:904
msgid "No Comments"
msgstr "Pas de commentaires"

#: inc/widgets-manager/widgets/post-info/post-info.php:298
#: inc/widgets-manager/widgets/post-info/post-info.php:300
#: inc/widgets-manager/widgets/post-info/post-info.php:905
msgid "One Comment"
msgstr "Un commentaire"

#: inc/widgets-manager/widgets/post-info/post-info.php:314
#: inc/widgets-manager/widgets/post-info/post-info.php:907
#. translators: %s: Number of comments.
msgid "%s Comments"
msgstr "%s commentaires"

#: inc/widgets-manager/widgets/post-info/post-info.php:383
msgid "Choose Icon"
msgstr "Choisir une icône"

#: inc/widgets-manager/widgets/post-info/post-info.php:439
msgid "List Items"
msgstr "Éléments de liste"

#: inc/widgets-manager/widgets/post-info/post-info.php:470
msgid "Start"
msgstr "Début"

#: inc/widgets-manager/widgets/post-info/post-info.php:478
msgid "End"
msgstr "Fin"

#: inc/widgets-manager/widgets/post-info/post-info.php:505
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:106
msgid "Style"
msgstr "Style"

#: inc/widgets-manager/widgets/post-info/post-info.php:527
msgid "Weight"
msgstr "Poids"

#: inc/widgets-manager/widgets/post-info/post-info.php:701
msgid "Spacing between Icon & Text"
msgstr "Espacement entre l'icône et le texte"

#: inc/widgets-manager/widgets/post-info/post-info.php:759
msgid "Choose"
msgstr "Choisir"

#: inc/widgets-manager/widgets/post-info/post-info.php:926
msgid "%s comment"
msgid_plural "%s comments"
msgstr[0] "%s commentaire"
msgstr[1] ""

#: inc/widgets-manager/widgets/retina/retina.php:117
msgid "Choose Default Image"
msgstr "Choisir une image par défaut"

#: inc/widgets-manager/widgets/retina/retina.php:130
msgid "Choose Retina Image"
msgstr "Choisir une image Retina"

#: inc/widgets-manager/widgets/retina/retina.php:144
#: inc/widgets-manager/widgets/site-logo/site-logo.php:170
msgid "Image Size"
msgstr "Taille de l'image"

#: inc/widgets-manager/widgets/retina/retina.php:178
#: inc/widgets-manager/widgets/retina/retina.php:516
#: inc/widgets-manager/widgets/site-logo/site-logo.php:204
#: inc/widgets-manager/widgets/site-logo/site-logo.php:581
msgid "Caption"
msgstr "Légende"

#: inc/widgets-manager/widgets/retina/retina.php:182
#: inc/widgets-manager/widgets/retina/retina.php:191
#: inc/widgets-manager/widgets/site-logo/site-logo.php:217
msgid "Custom Caption"
msgstr "Légende personnalisée"

#: inc/widgets-manager/widgets/retina/retina.php:194
msgid "Enter your image caption"
msgstr "Entrez votre légende d'image"

#: inc/widgets-manager/widgets/retina/retina.php:290
#: inc/widgets-manager/widgets/site-logo/site-logo.php:344
msgid "Max Width"
msgstr "Largeur maximale"

#: inc/widgets-manager/widgets/retina/retina.php:479
#: inc/widgets-manager/widgets/site-logo/site-logo.php:559
msgid "Hover Animation"
msgstr "Animation de survol"

#: inc/widgets-manager/widgets/retina/retina.php:486
#: inc/widgets-manager/widgets/site-logo/site-logo.php:534
msgid "Transition Duration"
msgstr "Durée de transition"

#: inc/widgets-manager/widgets/retina/retina.php:584
msgid "Caption Top Spacing"
msgstr "Espacement supérieur de la légende"

#: inc/widgets-manager/widgets/retina/retina.php:619
msgid "Helpful Information"
msgstr "Informations utiles"

#: inc/widgets-manager/widgets/retina/retina.php:628
#. translators: %1$s doc link
msgid "%1$s Getting started article » %2$s"
msgstr "%1$s Article de démarrage » %2$s"

#: inc/widgets-manager/widgets/search-button/search-button.php:141
msgid "Search Box"
msgstr "Boîte de recherche"

#: inc/widgets-manager/widgets/search-button/search-button.php:152
msgid "Input Box"
msgstr "Boîte de saisie"

#: inc/widgets-manager/widgets/search-button/search-button.php:154
msgid "Input Box With Button"
msgstr "Boîte de saisie avec bouton"

#: inc/widgets-manager/widgets/search-button/search-button.php:164
msgid "Placeholder"
msgstr "Espace réservé"

#: inc/widgets-manager/widgets/search-button/search-button.php:166
msgid "Type & Hit Enter"
msgstr "Tapez & appuyez sur Entrée"

#: inc/widgets-manager/widgets/search-button/search-button.php:210
msgid "Input"
msgstr "Saisie"

#: inc/widgets-manager/widgets/search-button/search-button.php:282
#: inc/widgets-manager/widgets/search-button/search-button.php:443
msgid "Placeholder Color"
msgstr "Couleur de l'espace réservé"

#: inc/widgets-manager/widgets/search-button/search-button.php:418
msgid "Focus"
msgstr "Focus"

#: inc/widgets-manager/widgets/search-button/search-button.php:681
#: inc/widgets-manager/widgets/search-button/search-button.php:734
msgid "Background"
msgstr "Arrière-plan"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:140
msgid "Custom Image"
msgstr "Image personnalisée"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:152
msgid "Add Image"
msgstr "Ajouter une image"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:220
msgid "Enter caption"
msgstr "Entrez la légende"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:240
msgid "Media File"
msgstr "Fichier multimédia"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:265
msgid "Lightbox"
msgstr "Lightbox"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:282
msgid "View"
msgstr "Voir"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:300
msgid "Site logo"
msgstr "Logo du site"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:649
msgid "Spacing"
msgstr "Espacement"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:9
#: build/main.js:54247
msgid "Essentials"
msgstr "Essentiels"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:11
#: build/main.js:54249
msgid "White Label Option"
msgstr "Option de marque blanche"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:12
#: build/main.js:54250
msgid "24/7 Premium Support"
msgstr "Support premium 24/7"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:13
#: build/main.js:54251
msgid "Cross-Domain Copy-Paste"
msgstr "Copier-coller inter-domaines"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:17
#: build/main.js:54255
msgid "Dynamic Header & Footer Widgets"
msgstr "Widgets d'en-tête et de pied de page dynamiques"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:32
#: build/main.js:54270
msgid "Creative & Advanced Design Widgets"
msgstr "Widgets de design créatif et avancé"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:37
#: build/main.js:54275
msgid "Multi-Button"
msgstr "Multi-bouton"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:38
#: build/main.js:54276
msgid "Image Hotspots"
msgstr "Points chauds d'image"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:42
#: build/main.js:54280
msgid "Content & Media Widgets"
msgstr "Widgets de contenu et multimédia"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:44
#: build/main.js:54282
msgid "Content Toggle Button"
msgstr "Bouton de basculement de contenu"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:50
#: build/main.js:54288
msgid "Before & After Slider"
msgstr "Curseur avant et après"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:53
#: build/main.js:54291
msgid "Conditional Display"
msgstr "Affichage conditionnel"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:55
#: build/main.js:54293
msgid "User Registeration Form"
msgstr "Formulaire d'inscription utilisateur"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:59
#: build/main.js:54297
msgid "Marketing & Engagement Widgets"
msgstr "Widgets de marketing et d'engagement"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:62
#: build/main.js:54300
msgid "Pricing Table"
msgstr "Tableau de prix"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:70
#: build/main.js:54308
msgid "E-Commerce Integration"
msgstr "Intégration E-Commerce"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:72
#: build/main.js:54310
msgid "WooCommerce: Add to Cart"
msgstr "WooCommerce : Ajouter au panier"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:73
#: build/main.js:54311
msgid "WooCommerce: Product Category"
msgstr "WooCommerce : Catégorie de produit"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:74
#: build/main.js:54312
msgid "WooCommerce: Mini Cart"
msgstr "WooCommerce : Mini panier"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:75
#: build/main.js:54313
msgid "WooCommerce: Product"
msgstr "WooCommerce : Produit"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:76
#: build/main.js:54314
msgid "WooCommerce: Checkout"
msgstr "WooCommerce : Paiement"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:80
#: build/main.js:54318
msgid "Forms Integration"
msgstr "Intégration des formulaires"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:82
#: build/main.js:54320
msgid "Contact Form 7"
msgstr "Formulaire de contact 7"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:83
#: build/main.js:54321
msgid "Gravity Forms"
msgstr "Gravity Forms"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:84
#: build/main.js:54322
msgid "WPForms"
msgstr "WPForms"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:85
#: build/main.js:54323
msgid "Fluent Forms"
msgstr "Formulaires fluides"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:89
#: build/main.js:54327
msgid "SEO Widgets"
msgstr "Widgets SEO"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:91
#: build/main.js:54329
msgid "FAQ with Schema"
msgstr "FAQ avec Schema"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:92
#: build/main.js:54330
msgid "How-To"
msgstr "Comment faire"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:98
#: build/main.js:54336
msgid "Creative Features"
msgstr "Fonctionnalités créatives"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:102
#: build/main.js:54340
msgid "Particles"
msgstr "Particules"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:108
#: build/main.js:54346
msgid "Social Media Integration"
msgstr "Intégration des réseaux sociaux"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:116
#: build/main.js:54354
msgid "Advanced Features"
msgstr "Fonctionnalités avancées"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:120
#: build/main.js:54358
msgid "Post Layout"
msgstr "Mise en page des publications"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:121
#: build/main.js:54359
msgid "Off Canvas"
msgstr "Hors canevas"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:168
#: build/main.js:54406
msgid "Free Vs Pro"
msgstr "Gratuit Vs Pro"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:171
#: build/main.js:54409
msgid "Ultimate Addons for Elementor Pro offers 50+ widgets and features!"
msgstr "Ultimate Addons for Elementor Pro offre plus de 50 widgets et fonctionnalités !"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:174
#: build/main.js:54412
msgid "Compare the popular features/widgets to find the best option for your website."
msgstr "Comparez les fonctionnalités/widgets populaires pour trouver la meilleure option pour votre site web."

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:198
#: src/Components/Compare/UltimateCompare.jsx:109
#: src/Components/Dashboard/MyAccount.jsx:53
#: src/Components/Dashboard/UltimateFeatures.js:116
#: src/Components/Widgets/UltimateWidgets.jsx:116
#: build/main.js:52189
#: build/main.js:52786
#: build/main.js:54051
#: build/main.js:54436
#: build/main.js:54585
msgid "Upgrade Now"
msgstr "Mettez à niveau maintenant"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:218
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:200
#: src/Components/NavMenu.js:233
#: src/Components/NavMenu.js:253
#: build/main.js:51108
#: build/main.js:51128
#: build/main.js:52445
#: build/main.js:54456
msgid "Free"
msgstr "Gratuit"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:224
#: build/main.js:54462
msgid "Pro"
msgstr "Pro"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:22
#: src/Components/Dashboard/UltimateFeatures.js:23
#: src/Components/Widgets/UltimateWidgets.jsx:23
#: build/main.js:52096
#: build/main.js:52693
#: build/main.js:54498
msgid "Post Layouts"
msgstr "Mises en page des publications"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:32
#: src/Components/Dashboard/UltimateFeatures.js:33
#: src/Components/Widgets/UltimateWidgets.jsx:33
#: build/main.js:52106
#: build/main.js:52703
#: build/main.js:54508
msgid "Pricing Cards"
msgstr "Cartes de prix"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:37
#: src/Components/Dashboard/UltimateFeatures.js:38
#: src/Components/Widgets/UltimateWidgets.jsx:38
#: build/main.js:52111
#: build/main.js:52708
#: build/main.js:54513
msgid "Form Stylers and more..."
msgstr "Stylisateurs de formulaires et plus encore..."

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:55
#: src/Components/Dashboard/UltimateFeatures.js:135
#: src/Components/Widgets/UltimateWidgets.jsx:54
#: build/main.js:52208
#: build/main.js:52724
#: build/main.js:54531
msgid "Column Showcase"
msgstr "Vitrine de colonnes"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:68
#: src/Components/Dashboard/UltimateFeatures.js:62
#: src/Components/Widgets/UltimateWidgets.jsx:67
#: build/main.js:52135
#: build/main.js:52737
#: build/main.js:54544
msgid "Unlock Ultimate Features"
msgstr "Débloquez les fonctionnalités ultimes"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:76
#: src/Components/Dashboard/UltimateFeatures.js:73
#: src/Components/Widgets/UltimateWidgets.jsx:75
#: build/main.js:52146
#: build/main.js:52745
#: build/main.js:54552
msgid "Create Stunning Designs with the Pro Version!"
msgstr "Créez des designs époustouflants avec la version Pro !"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:80
#: src/Components/Dashboard/UltimateFeatures.js:80
#: src/Components/Widgets/UltimateWidgets.jsx:82
#: build/main.js:52153
#: build/main.js:52752
#: build/main.js:54556
msgid "Get access to advanced widgets and features to create the website that stands out!"
msgstr "Accédez à des widgets et fonctionnalités avancés pour créer un site web qui se démarque !"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsite.jsx:57
#: build/main.js:52568
msgid "Extend Your Website"
msgstr "Étendez votre site web"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:72
#: build/main.js:52317
msgid "Installing.."
msgstr "Installation en cours.."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:80
#: build/main.js:52325
msgid "Installed"
msgstr "Installé"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:94
#: build/main.js:52339
msgid "Theme Installation failed, Please try again later."
msgstr "Échec de l'installation du thème, veuillez réessayer plus tard."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:95
#: build/main.js:52340
msgid "Plugin Installation failed, Please try again later."
msgstr "Échec de l'installation du plugin, veuillez réessayer plus tard."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:144
#: build/main.js:52389
msgid "Activating.."
msgstr "Activation en cours.."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:222
#: build/main.js:52467
msgid "Visit Site"
msgstr "Visitez le site"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:234
#: build/main.js:52479
msgid "Activate Theme"
msgstr "Activer le thème"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:238
#: build/main.js:52483
msgid "Are you sure you want to switch your current theme to Astra?"
msgstr "Êtes-vous sûr de vouloir changer votre thème actuel pour Astra ?"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:246
#: build/main.js:52491
msgid "Close"
msgstr "Fermer"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:16
#: src/Components/Settings/Settings.jsx:29
#: build/main.js:54014
#: build/main.js:54089
msgid "My Account"
msgstr "Mon compte"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:30
#: build/main.js:54028
msgid "License Key"
msgstr "Clé de licence"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:35
#: build/main.js:54033
msgid "Unlock Pro Features"
msgstr "Débloquez les fonctionnalités Pro"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:36
#: build/main.js:54034
msgid "Get access to advanced blocks and premium features."
msgstr "Accédez à des blocs avancés et des fonctionnalités premium."

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:20
#: build/main.js:51754
msgid "Quick Access"
msgstr "Accès rapide"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:53
#: build/main.js:51787
msgid "Contact Us"
msgstr "Contactez-nous"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:69
#: build/main.js:51803
msgid "Help Centre"
msgstr "Centre d'aide"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:85
#: build/main.js:51819
msgid "Request a Feature"
msgstr "Demander une fonctionnalité"

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:64
#: build/main.js:51649
msgid "Build Websites 10x Faster with Templates"
msgstr "Créez des sites Web 10 fois plus rapidement avec des modèles"

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:70
#: build/main.js:51655
msgid "Choose from our professionally designed websites to build your site faster, with easy customization options."
msgstr ""
"Choisissez parmi nos sites Web conçus par des professionnels pour construire votre site plus rapidement, avec des "
"options de personnalisation faciles."

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:85
#: src/Components/Dashboard/TemplateSection.js:97
#: build/main.js:51670
#: build/main.js:51682
msgid "View Templates"
msgstr "Voir les modèles"

#: build/main.js:2
#: src/Components/Dashboard/UltimateFeatures.js:122
#: src/Components/Widgets/UltimateWidgets.jsx:119
#: build/main.js:52195
#: build/main.js:52789
msgid "Compare Free vs Pro"
msgstr "Comparer Gratuit vs Pro"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:25
#: build/main.js:51926
msgid "Welcome to Ultimate Addons for Elementor!"
msgstr "Bienvenue dans Ultimate Addons pour Elementor !"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:29
#: build/main.js:51930
msgid ""
"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our "
"comprehensive range of free and premium widgets and features."
msgstr ""
"Nous sommes ravis de vous aider à dynamiser votre expérience de création de site Web. Concevez sans effort des sites "
"Web époustouflants avec notre gamme complète de widgets et de fonctionnalités gratuits et premium."

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:58
#: build/main.js:51959
msgid "Create Header/Footer"
msgstr "Créer un en-tête/pied de page"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:86
#: build/main.js:51987
msgid "Create New Page"
msgstr "Créer une nouvelle page"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:115
#: build/main.js:52016
msgid "Read full guide"
msgstr "Lire le guide complet"

#: build/main.js:2
#: src/Components/Dashboard/WidgetItem.jsx:132
#: build/main.js:51418
msgid "View Demo"
msgstr "Voir la démo"

#: build/main.js:2
#: src/Components/Dashboard/WidgetItem.jsx:145
#: build/main.js:51431
msgid "Read Documentation"
msgstr "Lire la documentation"

#: build/main.js:2
#: src/Components/HeaderLine.js:16
#: build/main.js:51895
msgid "Formerly Elementor Header & Footer Builder"
msgstr "Anciennement Elementor Header & Footer Builder"

#: build/main.js:2
#: src/Components/NavMenu.js:162
#: build/main.js:51037
msgid "Widgets"
msgstr "Widgets"

#: build/main.js:2
#: src/Components/NavMenu.js:173
#: build/main.js:51048
msgid "Templates"
msgstr "Modèles"

#: build/main.js:2
#: src/Components/NavMenu.js:193
#: build/main.js:51068
msgid "Free vs Pro"
msgstr "Gratuit vs Pro"

#: build/main.js:2
#: src/Components/NavMenu.js:220
#: build/main.js:51095
msgid "Get Pro"
msgstr "Obtenir Pro"

#: build/main.js:2
#: src/Components/NavMenu.js:244
#: build/main.js:51119
msgid "Version"
msgstr "Version"

#: build/main.js:2
#: src/Components/NavMenu.js:278
#: build/main.js:51153
msgid "Useful Resources"
msgstr "Ressources utiles"

#: build/main.js:2
#: src/Components/NavMenu.js:295
#: build/main.js:51170
msgid "Getting Started"
msgstr "Commencer"

#: build/main.js:2
#: src/Components/NavMenu.js:308
#: build/main.js:51183
msgid "How to use widgets"
msgstr "Comment utiliser les widgets"

#: build/main.js:2
#: src/Components/NavMenu.js:321
#: build/main.js:51196
msgid "How to use features"
msgstr "Comment utiliser les fonctionnalités"

#: build/main.js:2
#: src/Components/NavMenu.js:334
#: build/main.js:51209
msgid "How to use templates"
msgstr "Comment utiliser les modèles"

#: build/main.js:2
#: src/Components/NavMenu.js:347
#: build/main.js:51222
msgid "Contact us"
msgstr "Contactez-nous"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:18
#: src/Components/Settings/Settings.jsx:25
#: src/Components/Settings/Settings.jsx:37
#: src/Components/Settings/Settings.jsx:44
#: src/Components/Settings/Settings.jsx:57
#: src/Components/Settings/Settings.jsx:64
#: build/main.js:54078
#: build/main.js:54085
#: build/main.js:54097
#: build/main.js:54104
#: build/main.js:54117
#: build/main.js:54124
msgid "Custom SVG"
msgstr "SVG personnalisé"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:48
#: build/main.js:54108
msgid "Editor"
msgstr "Éditeur"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:68
#: build/main.js:54128
msgid "Utilities"
msgstr "Utilitaires"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:69
#: src/Components/Settings/VersionControl.jsx:45
#: build/main.js:53896
#: build/main.js:54129
msgid "Version Control"
msgstr "Contrôle de version"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:9
#: build/main.js:53684
msgid "Option 1 (Recommended)"
msgstr "Option 1 (Recommandée)"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:10
#: src/Components/Settings/ThemeSupport.jsx:16
#: build/main.js:53685
#: build/main.js:53691
msgid ""
"This option will automatically replace your theme's header and footer files with custom templates from the plugin. It "
"works with most themes and is selected by default."
msgstr ""
"Cette option remplacera automatiquement les fichiers d'en-tête et de pied de page de votre thème par des modèles "
"personnalisés du plugin. Elle fonctionne avec la plupart des thèmes et est sélectionnée par défaut."

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:15
#: build/main.js:53690
msgid "Option 2"
msgstr "Option 2"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:63
#: build/main.js:53738
msgid "Settings saved successfully!"
msgstr "Paramètres enregistrés avec succès !"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:65
#: src/Components/Settings/ThemeSupport.jsx:68
#: build/main.js:53740
#: build/main.js:53743
msgid "Failed to save settings!"
msgstr "Échec de l'enregistrement des paramètres !"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:95
#: build/main.js:53770
msgid "Select Option to Add Theme Support"
msgstr "Sélectionnez une option pour ajouter le support du thème"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:97
#: build/main.js:53772
msgid ""
"To ensure compatibility between the header/footer and your theme, please choose one of the following options to enable "
"theme support:"
msgstr ""
"Pour garantir la compatibilité entre l'en-tête/le pied de page et votre thème, veuillez choisir l'une des options "
"suivantes pour activer le support du thème :"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:140
#: build/main.js:53815
msgid "Note:"
msgstr "Remarque :"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:140
#: build/main.js:53815
msgid "If neither option works, please contact your theme author to add support for this plugin."
msgstr "Si aucune des options ne fonctionne, veuillez contacter l'auteur de votre thème pour ajouter le support de ce plugin."

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:66
#: build/main.js:53917
msgid "Experiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue."
msgstr ""
"Vous rencontrez un problème avec la version actuelle ? Revenez à une version précédente pour aider à résoudre le "
"problème."

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:112
#: src/Components/Settings/VersionControl.jsx:129
#: build/main.js:53963
#: build/main.js:53980
msgid "Rollback"
msgstr "Revenir en arrière"

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:132
#: build/main.js:53983
msgid "Cancel"
msgstr "Annuler"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:17
#: build/main.js:53145
msgid "250+ templates for every niche"
msgstr "250+ modèles pour chaque niche"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:22
#: build/main.js:53150
msgid "Modern, timeless designs"
msgstr "Designs modernes et intemporels"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:27
#: build/main.js:53155
msgid "Full design flexibility for easy customization"
msgstr "Flexibilité de conception totale pour une personnalisation facile"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:32
#: build/main.js:53160
msgid "100% responsive across all devices"
msgstr "100 % réactif sur tous les appareils"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:65
#: src/Components/Templates/ExploreTemplates.jsx:94
#: build/main.js:53193
#: build/main.js:53222
msgid "Install Starter Templates"
msgstr "Installer les modèles de démarrage"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:65
#: src/Components/Templates/ExploreTemplates.jsx:167
#: build/main.js:53193
#: build/main.js:53295
msgid "Activate Starter Templates"
msgstr "Activer les modèles de démarrage"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:81
#: build/main.js:53209
msgid "Installing Starter Templates..."
msgstr "Installation des modèles de démarrage..."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:90
#: build/main.js:53218
msgid "Installed Starter Templates"
msgstr "Modèles de démarrage installés"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:100
#: src/Components/Templates/ExploreTemplates.jsx:156
#: build/main.js:53228
#: build/main.js:53284
msgid "Activating Starter Templates..."
msgstr "Activation des modèles de démarrage..."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:158
#: build/main.js:53286
msgid "Activated Starter Templates"
msgstr "Modèles de démarrage activés"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:191
#: build/main.js:53319
msgid "Design Your Website in Minutes"
msgstr "Concevez votre site Web en quelques minutes"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:200
#: build/main.js:53328
msgid "Build your website faster using our prebuilt templates"
msgstr "Construisez votre site Web plus rapidement en utilisant nos modèles préconçus"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:205
#: build/main.js:53333
msgid ""
"Stop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize "
"and completely responsive. Explore hundreds of designs and bring your vision to life in no time."
msgstr ""
"Arrêtez de construire votre site à partir de zéro. Utilisez nos modèles professionnels pour votre site Web "
"époustouflant. Il est facile à personnaliser et entièrement réactif. Explorez des centaines de designs et donnez vie à "
"votre vision en un rien de temps."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:238
#: build/main.js:53366
msgid "Explore Templates"
msgstr "Explorer les modèles"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:249
#: build/main.js:53377
msgid "Learn More"
msgstr "En savoir plus"

#: src/Components/UpgradeNotice.jsx:33
msgid "Close Upgrade Notice"
msgstr "Fermer l'avis de mise à niveau"

#: src/Components/UpgradeNotice.jsx:38
msgid "Unlock Ultimate Addons For Elementor!  "
msgstr "Débloquez les Ultimate Addons pour Elementor !"

#: src/Components/UpgradeNotice.jsx:44
msgid "Get exclusive features and unbeatable performance.  "
msgstr "Obtenez des fonctionnalités exclusives et des performances imbattables."

#: src/Components/UpgradeNotice.jsx:53
msgid "Upgrade now"
msgstr "Mettez à niveau maintenant"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:140
#: build/main.js:52975
msgid "Widgets / Features"
msgstr "Widgets / Fonctionnalités"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:152
#: build/main.js:52987
msgid "Search..."
msgstr "Recherche..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:174
#: build/main.js:53009
msgid "Activating..."
msgstr "Activation..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:174
#: build/main.js:53009
msgid "Activate All"
msgstr "Activer tout"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:185
#: build/main.js:53020
msgid "Deactivating..."
msgstr "Désactivation..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:185
#: build/main.js:53020
msgid "Deactivate All"
msgstr "Désactiver tout"

#: admin/class-hfe-addons-actions.php:87
msgid "Plugin slug is missing."
msgstr "Le slug du plugin est manquant."

#: admin/class-hfe-addons-actions.php:110
msgid "Plugin installation function not found."
msgstr "Fonction d'installation du plugin introuvable."

#: admin/class-hfe-addons-actions.php:133
msgid "Theme slug is missing."
msgstr "Le slug du thème est manquant."

#: admin/class-hfe-addons-actions.php:156
msgid "Theme installation function not found."
msgstr "Fonction d'installation du thème introuvable."

#: inc/class-hfe-settings-page.php:103
msgid "How likely are you to recommend Ultimate Addons for Elementor to your friends or colleagues?"
msgstr "Quelle est la probabilité que vous recommandiez Ultimate Addons pour Elementor à vos amis ou collègues ?"

#: inc/class-hfe-settings-page.php:105
msgid ""
"Could you please do us a favor and give us a 5-star rating on Trustpilot? It would help others choose Ultimate Addons "
"for Elementor with confidence. Thank you!"
msgstr ""
"Pourriez-vous s'il vous plaît nous rendre un service et nous donner une note de 5 étoiles sur Trustpilot ? Cela "
"aiderait les autres à choisir Ultimate Addons pour Elementor en toute confiance. Merci !"

#: inc/class-hfe-settings-page.php:108
msgid "Thank you for your feedback"
msgstr "Merci pour vos retours"

#: inc/class-hfe-settings-page.php:109
msgid "We value your input. How can we improve your experience?"
msgstr "Nous apprécions votre avis. Comment pouvons-nous améliorer votre expérience ?"

#: inc/widgets-manager/widgets/post-info/post-info.php:152
msgctxt "Date Format"
msgid "June 1, 2024 (F j, Y)"
msgstr "1 juin 2024 (j F, Y)"
PK���\!؞e��Mlanguages/header-footer-elementor-de_DE-4f3059777e77e324d30b247958f5533e.jsonnu�[���{"translation-revision-date":"2025-01-10T11:57:03+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/WelcomeContainer.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Welcome to Ultimate Addons for Elementor!":["Willkommen bei Ultimate Addons f\u00fcr Elementor!"],"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.":["Wir freuen uns, Ihnen zu helfen, Ihr Website-Erlebnis zu verbessern. Gestalten Sie m\u00fchelos atemberaubende Websites mit unserem umfassenden Angebot an kostenlosen und Premium-Widgets und Funktionen."],"Create Header\/Footer":["Kopf-\/Fu\u00dfzeile erstellen"],"Create New Page":["Neue Seite erstellen"],"Read full guide":["Vollst\u00e4ndigen Leitfaden lesen"]}}}PK���\��ؕ��Mlanguages/header-footer-elementor-fr_FR-0ad70406b828ddfa033be3f6573550fd.jsonnu�[���{"translation-revision-date":"2025-01-09T15:10:54+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/TemplateSection.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Build Websites 10x Faster with Templates":["Cr\u00e9ez des sites Web 10 fois plus rapidement avec des mod\u00e8les"],"Choose from our professionally designed websites to build your site faster, with easy customization options.":["Choisissez parmi nos sites Web con\u00e7us par des professionnels pour construire votre site plus rapidement, avec des options de personnalisation faciles."],"View Templates":["Voir les mod\u00e8les"]}}}PK���\���""Mlanguages/header-footer-elementor-de_DE-90e183a01507bd4371ac0db2e0c87b99.jsonnu�[���{"translation-revision-date":"2025-01-10T11:57:03+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/NavMenu.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Header & Footer Builder":["Header & Footer Builder"],"Dashboard":["Dashboard"],"Settings":["Einstellungen"],"Free":["Kostenlos"],"Widgets":["Widgets"],"Templates":["Vorlagen"],"Free vs Pro":["Kostenlos vs Pro"],"Get Pro":["Pro erhalten"],"Version":["Version"],"Useful Resources":["N\u00fctzliche Ressourcen"],"Getting Started":["Erste Schritte"],"How to use widgets":["Wie man Widgets verwendet"],"How to use features":["Wie man Funktionen verwendet"],"How to use templates":["Wie man Vorlagen verwendet"],"Contact us":["Kontaktieren Sie uns"]}}}PK���\zd4Mlanguages/header-footer-elementor-es_ES-90e183a01507bd4371ac0db2e0c87b99.jsonnu�[���{"translation-revision-date":"2025-01-09T20:01:27+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/NavMenu.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Header & Footer Builder":["Constructor de Encabezados y Pies de P\u00e1gina"],"Dashboard":["Tablero"],"Settings":["Configuraciones"],"Free":["Gratis"],"Widgets":["Widgets"],"Templates":[""],"Free vs Pro":[""],"Get Pro":["Obtener Pro"],"Version":["Versi\u00f3n"],"Useful Resources":["Recursos \u00fatiles"],"Getting Started":["Comenzando"],"How to use widgets":["C\u00f3mo usar widgets"],"How to use features":["C\u00f3mo usar caracter\u00edsticas"],"How to use templates":["C\u00f3mo usar plantillas"],"Contact us":["Cont\u00e1ctanos"]}}}PK���\
o����Mlanguages/header-footer-elementor-de_DE-a0443e4d0c367013223edcde51b7c42f.jsonnu�[���{"translation-revision-date":"2025-01-10T11:57:03+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/QuickAccess.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Quick Access":["Schneller Zugriff"],"Contact Us":["Kontaktieren Sie uns"],"Help Centre":["Hilfezentrum"],"Request a Feature":["Funktion anfordern"]}}}PK���\�`o�))Mlanguages/header-footer-elementor-es_ES-661e5decf2faf3ca4a04ac4ce62faa07.jsonnu�[���{"translation-revision-date":"2025-01-09T20:01:27+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/UltimateFeatures.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Advanced Heading":["Encabezado avanzado"],"Modal Popup":["Popup modal"],"Info Box":["Caja de Informaci\u00f3n"],"Upgrade Now":["Actualizar ahora"],"Post Layouts":["Dise\u00f1os de publicaciones"],"Pricing Cards":["Tarjetas de precios"],"Form Stylers and more...":["Estilizadores de formularios y m\u00e1s..."],"Column Showcase":["Vitrina de columnas"],"Unlock Ultimate Features":["Desbloquear caracter\u00edsticas definitivas"],"Create Stunning Designs with the Pro Version!":["\u00a1Crea dise\u00f1os impresionantes con la versi\u00f3n Pro!"],"Get access to advanced widgets and features to create the website that stands out!":["\u00a1Obt\u00e9n acceso a widgets y caracter\u00edsticas avanzadas para crear un sitio web que destaque!"],"Compare Free vs Pro":["Comparar gratis vs pro"]}}}PK���\
9@�,�,Mlanguages/header-footer-elementor-fr_FR-1860d6c85cf93751e0a08d732e8147f8.jsonnu�[���{"translation-revision-date":"2025-01-09T15:10:54+00:00","generator":"WP-CLI\/2.11.0","source":"build\/main.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Header & Footer Builder":["Constructeur d'en-t\u00eate et de pied de page"],"Theme Support":["Support du th\u00e8me"],"Rollback to Previous Version":["Retour \u00e0 la version pr\u00e9c\u00e9dente"],"Activate":["Activer"],"Activated":["Activ\u00e9"],"Install":["Installer"],"Dashboard":["Tableau de bord"],"Settings":["Param\u00e8tres"],"Basic":["Basique"],"Advanced":["Avanc\u00e9"],"Post Info":["Info sur l'article"],"Breadcrumbs":["Fil d'Ariane"],"Site Logo":["Logo du site"],"Navigation Menu":["Menu de navigation"],"Scroll to Top":["Faire d\u00e9filer vers le haut"],"Site Tagline":["Slogan du site"],"Search":["Recherche"],"Page Title":["Titre de la page"],"Retina Logo":["Logo Retina"],"Copyright":["Droits d'auteur"],"Advanced Heading":["En-t\u00eate avanc\u00e9"],"Modal Popup":["Popup modal"],"Business Hours":["Heures d'ouverture"],"Business Reviews":["Avis d'entreprise"],"Countdown Timer":["Minuteur de compte \u00e0 rebours"],"Dual Color Heading":["En-t\u00eate \u00e0 deux couleurs"],"Fancy Heading":["En-t\u00eate fantaisie"],"Google Map":["Carte Google"],"Image Gallery":["Galerie d'images"],"Info Box":["Bo\u00eete d'information"],"Instagram Feed":["Fil Instagram"],"Login Form":["Formulaire de connexion"],"Marketing Button":["Bouton marketing"],"Price List":["Liste de prix"],"Retina Image":["Image Retina"],"Social Share":["Partage social"],"Table":["Table"],"Table of Contents":["Table des mati\u00e8res"],"Team Member":["Membre de l'\u00e9quipe"],"Timeline":["Chronologie"],"Twitter Feed":["Fil Twitter"],"Video":["Vid\u00e9o"],"Video Gallery":["Galerie vid\u00e9o"],"Welcome Music":["Musique d'accueil"],"Party Propz":["Accessoires de f\u00eate"],"Shape Divider":["Diviseur de forme"],"Presets":["Pr\u00e9r\u00e9glages"],"Yes":["Oui"],"Essentials":["Essentiels"],"White Label Option":["Option de marque blanche"],"24\/7 Premium Support":["Support premium 24\/7"],"Cross-Domain Copy-Paste":["Copier-coller inter-domaines"],"Dynamic Header & Footer Widgets":["Widgets d'en-t\u00eate et de pied de page dynamiques"],"Creative & Advanced Design Widgets":["Widgets de design cr\u00e9atif et avanc\u00e9"],"Multi-Button":["Multi-bouton"],"Image Hotspots":["Points chauds d'image"],"Content & Media Widgets":["Widgets de contenu et multim\u00e9dia"],"Content Toggle Button":["Bouton de basculement de contenu"],"Before & After Slider":["Curseur avant et apr\u00e8s"],"Conditional Display":["Affichage conditionnel"],"User Registeration Form":["Formulaire d'inscription utilisateur"],"Marketing & Engagement Widgets":["Widgets de marketing et d'engagement"],"Pricing Table":["Tableau de prix"],"E-Commerce Integration":["Int\u00e9gration E-Commerce"],"WooCommerce: Add to Cart":["WooCommerce : Ajouter au panier"],"WooCommerce: Product Category":["WooCommerce : Cat\u00e9gorie de produit"],"WooCommerce: Mini Cart":["WooCommerce : Mini panier"],"WooCommerce: Product":["WooCommerce : Produit"],"WooCommerce: Checkout":["WooCommerce : Paiement"],"Forms Integration":["Int\u00e9gration des formulaires"],"Contact Form 7":["Formulaire de contact 7"],"Gravity Forms":["Gravity Forms"],"WPForms":["WPForms"],"Fluent Forms":["Formulaires fluides"],"SEO Widgets":["Widgets SEO"],"FAQ with Schema":["FAQ avec Schema"],"How-To":["Comment faire"],"Creative Features":["Fonctionnalit\u00e9s cr\u00e9atives"],"Particles":["Particules"],"Social Media Integration":["Int\u00e9gration des r\u00e9seaux sociaux"],"Advanced Features":["Fonctionnalit\u00e9s avanc\u00e9es"],"Post Layout":["Mise en page des publications"],"Off Canvas":["Hors canevas"],"Free Vs Pro":["Gratuit Vs Pro"],"Ultimate Addons for Elementor Pro offers 50+ widgets and features!":["Ultimate Addons for Elementor Pro offre plus de 50 widgets et fonctionnalit\u00e9s !"],"Compare the popular features\/widgets to find the best option for your website.":["Comparez les fonctionnalit\u00e9s\/widgets populaires pour trouver la meilleure option pour votre site web."],"Upgrade Now":["Mettez \u00e0 niveau maintenant"],"Free":["Gratuit"],"Pro":["Pro"],"Post Layouts":["Mises en page des publications"],"Pricing Cards":["Cartes de prix"],"Form Stylers and more...":["Stylisateurs de formulaires et plus encore..."],"Column Showcase":["Vitrine de colonnes"],"Unlock Ultimate Features":["D\u00e9bloquez les fonctionnalit\u00e9s ultimes"],"Create Stunning Designs with the Pro Version!":["Cr\u00e9ez des designs \u00e9poustouflants avec la version Pro !"],"Get access to advanced widgets and features to create the website that stands out!":["Acc\u00e9dez \u00e0 des widgets et fonctionnalit\u00e9s avanc\u00e9s pour cr\u00e9er un site web qui se d\u00e9marque !"],"Extend Your Website":["\u00c9tendez votre site web"],"Installing..":["Installation en cours.."],"Installed":["Install\u00e9"],"Theme Installation failed, Please try again later.":["\u00c9chec de l'installation du th\u00e8me, veuillez r\u00e9essayer plus tard."],"Plugin Installation failed, Please try again later.":["\u00c9chec de l'installation du plugin, veuillez r\u00e9essayer plus tard."],"Activating..":["Activation en cours.."],"Visit Site":["Visitez le site"],"Activate Theme":["Activer le th\u00e8me"],"Are you sure you want to switch your current theme to Astra?":["\u00cates-vous s\u00fbr de vouloir changer votre th\u00e8me actuel pour Astra ?"],"Close":["Fermer"],"My Account":["Mon compte"],"License Key":["Cl\u00e9 de licence"],"Unlock Pro Features":["D\u00e9bloquez les fonctionnalit\u00e9s Pro"],"Get access to advanced blocks and premium features.":["Acc\u00e9dez \u00e0 des blocs avanc\u00e9s et des fonctionnalit\u00e9s premium."],"Quick Access":["Acc\u00e8s rapide"],"Contact Us":["Contactez-nous"],"Help Centre":["Centre d'aide"],"Request a Feature":["Demander une fonctionnalit\u00e9"],"Build Websites 10x Faster with Templates":["Cr\u00e9ez des sites Web 10 fois plus rapidement avec des mod\u00e8les"],"Choose from our professionally designed websites to build your site faster, with easy customization options.":["Choisissez parmi nos sites Web con\u00e7us par des professionnels pour construire votre site plus rapidement, avec des options de personnalisation faciles."],"View Templates":["Voir les mod\u00e8les"],"Compare Free vs Pro":["Comparer Gratuit vs Pro"],"Welcome to Ultimate Addons for Elementor!":["Bienvenue dans Ultimate Addons pour Elementor !"],"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.":["Nous sommes ravis de vous aider \u00e0 dynamiser votre exp\u00e9rience de cr\u00e9ation de site Web. Concevez sans effort des sites Web \u00e9poustouflants avec notre gamme compl\u00e8te de widgets et de fonctionnalit\u00e9s gratuits et premium."],"Create Header\/Footer":["Cr\u00e9er un en-t\u00eate\/pied de page"],"Create New Page":["Cr\u00e9er une nouvelle page"],"Read full guide":["Lire le guide complet"],"View Demo":["Voir la d\u00e9mo"],"Read Documentation":["Lire la documentation"],"Formerly Elementor Header & Footer Builder":["Anciennement Elementor Header & Footer Builder"],"Widgets":["Widgets"],"Templates":["Mod\u00e8les"],"Free vs Pro":["Gratuit vs Pro"],"Get Pro":["Obtenir Pro"],"Version":["Version"],"Useful Resources":["Ressources utiles"],"Getting Started":["Commencer"],"How to use widgets":["Comment utiliser les widgets"],"How to use features":["Comment utiliser les fonctionnalit\u00e9s"],"How to use templates":["Comment utiliser les mod\u00e8les"],"Contact us":["Contactez-nous"],"Custom SVG":["SVG personnalis\u00e9"],"Editor":["\u00c9diteur"],"Utilities":["Utilitaires"],"Version Control":["Contr\u00f4le de version"],"Option 1 (Recommended)":["Option 1 (Recommand\u00e9e)"],"This option will automatically replace your theme's header and footer files with custom templates from the plugin. It works with most themes and is selected by default.":["Cette option remplacera automatiquement les fichiers d'en-t\u00eate et de pied de page de votre th\u00e8me par des mod\u00e8les personnalis\u00e9s du plugin. Elle fonctionne avec la plupart des th\u00e8mes et est s\u00e9lectionn\u00e9e par d\u00e9faut."],"Option 2":["Option 2"],"Settings saved successfully!":["Param\u00e8tres enregistr\u00e9s avec succ\u00e8s !"],"Failed to save settings!":["\u00c9chec de l'enregistrement des param\u00e8tres !"],"Select Option to Add Theme Support":["S\u00e9lectionnez une option pour ajouter le support du th\u00e8me"],"To ensure compatibility between the header\/footer and your theme, please choose one of the following options to enable theme support:":["Pour garantir la compatibilit\u00e9 entre l'en-t\u00eate\/le pied de page et votre th\u00e8me, veuillez choisir l'une des options suivantes pour activer le support du th\u00e8me :"],"Note:":["Remarque :"],"If neither option works, please contact your theme author to add support for this plugin.":["Si aucune des options ne fonctionne, veuillez contacter l'auteur de votre th\u00e8me pour ajouter le support de ce plugin."],"Experiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue.":["Vous rencontrez un probl\u00e8me avec la version actuelle ? Revenez \u00e0 une version pr\u00e9c\u00e9dente pour aider \u00e0 r\u00e9soudre le probl\u00e8me."],"Rollback":["Revenir en arri\u00e8re"],"Cancel":["Annuler"],"250+ templates for every niche":["250+ mod\u00e8les pour chaque niche"],"Modern, timeless designs":["Designs modernes et intemporels"],"Full design flexibility for easy customization":["Flexibilit\u00e9 de conception totale pour une personnalisation facile"],"100% responsive across all devices":["100 % r\u00e9actif sur tous les appareils"],"Install Starter Templates":["Installer les mod\u00e8les de d\u00e9marrage"],"Activate Starter Templates":["Activer les mod\u00e8les de d\u00e9marrage"],"Installing Starter Templates...":["Installation des mod\u00e8les de d\u00e9marrage..."],"Installed Starter Templates":["Mod\u00e8les de d\u00e9marrage install\u00e9s"],"Activating Starter Templates...":["Activation des mod\u00e8les de d\u00e9marrage..."],"Activated Starter Templates":["Mod\u00e8les de d\u00e9marrage activ\u00e9s"],"Design Your Website in Minutes":["Concevez votre site Web en quelques minutes"],"Build your website faster using our prebuilt templates":["Construisez votre site Web plus rapidement en utilisant nos mod\u00e8les pr\u00e9con\u00e7us"],"Stop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize and completely responsive. Explore hundreds of designs and bring your vision to life in no time.":["Arr\u00eatez de construire votre site \u00e0 partir de z\u00e9ro. Utilisez nos mod\u00e8les professionnels pour votre site Web \u00e9poustouflant. Il est facile \u00e0 personnaliser et enti\u00e8rement r\u00e9actif. Explorez des centaines de designs et donnez vie \u00e0 votre vision en un rien de temps."],"Explore Templates":["Explorer les mod\u00e8les"],"Learn More":["En savoir plus"],"Widgets \/ Features":["Widgets \/ Fonctionnalit\u00e9s"],"Search...":["Recherche..."],"Activating...":["Activation..."],"Activate All":["Activer tout"],"Deactivating...":["D\u00e9sactivation..."],"Deactivate All":["D\u00e9sactiver tout"]}}}PK���\�s�!��Mlanguages/header-footer-elementor-fr_FR-4f3059777e77e324d30b247958f5533e.jsonnu�[���{"translation-revision-date":"2025-01-09T15:10:54+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/WelcomeContainer.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Welcome to Ultimate Addons for Elementor!":["Bienvenue dans Ultimate Addons pour Elementor !"],"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.":["Nous sommes ravis de vous aider \u00e0 dynamiser votre exp\u00e9rience de cr\u00e9ation de site Web. Concevez sans effort des sites Web \u00e9poustouflants avec notre gamme compl\u00e8te de widgets et de fonctionnalit\u00e9s gratuits et premium."],"Create Header\/Footer":["Cr\u00e9er un en-t\u00eate\/pied de page"],"Create New Page":["Cr\u00e9er une nouvelle page"],"Read full guide":["Lire le guide complet"]}}}PK���\n��]��Mlanguages/header-footer-elementor-fr_FR-a0443e4d0c367013223edcde51b7c42f.jsonnu�[���{"translation-revision-date":"2025-01-09T15:10:54+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/QuickAccess.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Quick Access":["Acc\u00e8s rapide"],"Contact Us":["Contactez-nous"],"Help Centre":["Centre d'aide"],"Request a Feature":["Demander une fonctionnalit\u00e9"]}}}PK���\�p'�==*languages/header-footer-elementor-de_DE.ponu�[���msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: gpt-po v1.2.0\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2025-01-10T11:57:03+00:00\n"
"PO-Revision-Date: 2025-01-10T11:57:03+00:00\n"
"Language: \n"

#: header-footer-elementor.php
#. Plugin Name of the plugin
msgid "Ultimate Addons for Elementor Lite"
msgstr "Ultimate Addons für Elementor Lite"

#: header-footer-elementor.php
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/header-footer-elementor/"
msgstr "https://wordpress.org/plugins/header-footer-elementor/"

#: header-footer-elementor.php
#. Description of the plugin
msgid ""
"Formerly known as \"Elementor Header & Footer Builder\", this powerful plugin allows you to create custom headers and "
"footers with Elementor and display them in selected locations. You can also create custom Elementor blocks and place "
"them anywhere on your website using a shortcode."
msgstr ""
"Ehemals bekannt als \"Elementor Header & Footer Builder\", ermöglicht dieses leistungsstarke Plugin das Erstellen von "
"benutzerdefinierten Kopf- und Fußzeilen mit Elementor und deren Anzeige an ausgewählten Orten. Sie können auch "
"benutzerdefinierte Elementor-Blöcke erstellen und diese überall auf Ihrer Website mit einem Shortcode platzieren."

#: header-footer-elementor.php
#. Author of the plugin
msgid "Brainstorm Force"
msgstr "Brainstorm Force"

#: header-footer-elementor.php
#. Author URI of the plugin
msgid "https://www.brainstormforce.com/"
msgstr "https://www.brainstormforce.com/"

#: admin/bsf-analytics/class-bsf-analytics.php:220
#. translators: %s product name
msgid ""
"Want to help make <strong>%1s</strong> even more awesome? Allow us to collect non-sensitive diagnostic data and usage "
"information. "
msgstr ""
"Möchten Sie helfen, <strong>%1s</strong> noch großartiger zu machen? Erlauben Sie uns, nicht sensible Diagnosedaten und "
"Nutzungsinformationen zu sammeln."

#: admin/bsf-analytics/class-bsf-analytics.php:223
msgid "This will be applicable for all sites from the network."
msgstr "Dies gilt für alle Seiten im Netzwerk."

#: admin/bsf-analytics/class-bsf-analytics.php:247
#. translators: %s usage doc link
msgid " Know More."
msgstr "Mehr erfahren."

#: admin/bsf-analytics/class-bsf-analytics.php:255
msgid "Yes! Allow it"
msgstr "Ja! Erlauben Sie es"

#: admin/bsf-analytics/class-bsf-analytics.php:264
msgid "No Thanks"
msgstr "Nein danke"

#: admin/bsf-analytics/class-bsf-analytics.php:373
msgid "Usage Tracking"
msgstr "Nutzungsverfolgung"

#: admin/bsf-analytics/class-bsf-analytics.php:419
#. translators: %s Product title
msgid "Allow %s products to track non-sensitive usage tracking data."
msgstr "Erlauben Sie %s Produkten, nicht sensible Nutzungsverfolgungsdaten zu verfolgen."

#: admin/bsf-analytics/class-bsf-analytics.php:422
msgid " This will be applicable for all sites from the network."
msgstr "Dies gilt für alle Seiten im Netzwerk."

#: admin/bsf-analytics/class-bsf-analytics.php:427
msgid "Learn More."
msgstr "Mehr erfahren."

#: admin/class-hfe-addons-actions.php:336
msgid "Plugin activation is disabled for you on this site."
msgstr "Die Plugin-Aktivierung ist für Sie auf dieser Seite deaktiviert."

#: admin/class-hfe-addons-actions.php:345
msgid "Plugin Activated."
msgstr "Plugin aktiviert."

#: admin/class-hfe-addons-actions.php:356
msgid "Theme activation is disabled for you on this site."
msgstr "Die Theme-Aktivierung ist für Sie auf dieser Seite deaktiviert."

#: admin/class-hfe-addons-actions.php:365
msgid "Theme Activated."
msgstr "Theme aktiviert."

#: admin/class-hfe-addons-actions.php:372
msgid "Could not activate plugin. Please activate from the Plugins page."
msgstr "Das Plugin konnte nicht aktiviert werden. Bitte aktivieren Sie es auf der Plugin-Seite."

#: admin/class-hfe-addons-actions.php:374
msgid "Could not activate theme. Please activate from the Themes page."
msgstr "Das Theme konnte nicht aktiviert werden. Bitte aktivieren Sie es auf der Theme-Seite."

#: admin/class-hfe-admin.php:172
#: admin/class-hfe-admin.php:455
msgid "Display Rules"
msgstr "Anzeigeregeln"

#: admin/class-hfe-admin.php:173
#: inc/widgets-manager/widgets/post-info/post-info.php:136
msgid "Date"
msgstr "Datum"

#: admin/class-hfe-admin.php:263
#: admin/class-hfe-admin.php:264
#: admin/class-hfe-admin.php:265
#: admin/class-hfe-admin.php:266
msgid "Elementor Header & Footer Builder"
msgstr "Elementor Header & Footer Builder"

#: admin/class-hfe-admin.php:267
#: admin/class-hfe-admin.php:268
msgid "Add New"
msgstr "Neu hinzufügen"

#: admin/class-hfe-admin.php:269
msgid "New Template"
msgstr "Neue Vorlage"

#: admin/class-hfe-admin.php:270
msgid "Edit Template"
msgstr "Vorlage bearbeiten"

#: admin/class-hfe-admin.php:271
msgid "View Template"
msgstr "Vorlage anzeigen"

#: admin/class-hfe-admin.php:272
#: inc/class-hfe-settings-page.php:372
msgid "View All"
msgstr "Alle anzeigen"

#: admin/class-hfe-admin.php:273
msgid "Search Templates"
msgstr "Vorlagen suchen"

#: admin/class-hfe-admin.php:274
msgid "Parent Templates:"
msgstr "Elternvorlagen:"

#: admin/class-hfe-admin.php:275
msgid "No Templates found."
msgstr "Keine Vorlagen gefunden."

#: admin/class-hfe-admin.php:276
msgid "No Templates found in Trash."
msgstr "Keine Vorlagen im Papierkorb gefunden."

#: admin/class-hfe-admin.php:319
#: admin/class-hfe-admin.php:320
msgid "Create New"
msgstr "Neu erstellen"

#: admin/class-hfe-admin.php:329
msgid "Header/Footer Builder"
msgstr "Header/Footer Builder"

#: admin/class-hfe-admin.php:330
#: build/main.js:2
#: src/Components/NavMenu.js:150
#: build/main.js:51025
msgid "Header & Footer Builder"
msgstr "Header & Footer Builder"

#: admin/class-hfe-admin.php:359
msgid "Elementor Header & Footer Builder Options"
msgstr "Optionen für den Elementor Header & Footer Builder"

#: admin/class-hfe-admin.php:388
msgid "Type of Template"
msgstr "Art der Vorlage"

#: admin/class-hfe-admin.php:392
msgid "Select Option"
msgstr "Option auswählen"

#: admin/class-hfe-admin.php:393
msgid "Header"
msgstr "Kopfzeile"

#: admin/class-hfe-admin.php:394
msgid "Before Footer"
msgstr "Vor Fußzeile"

#: admin/class-hfe-admin.php:395
msgid "Footer"
msgstr "Fußzeile"

#: admin/class-hfe-admin.php:396
msgid "Custom Block"
msgstr "Benutzerdefinierter Block"

#: admin/class-hfe-admin.php:404
#: admin/class-hfe-admin.php:654
msgid "Shortcode"
msgstr "Shortcode"

#: admin/class-hfe-admin.php:405
msgid "Copy this shortcode and paste it into your post, page, or text widget content."
msgstr "Kopieren Sie diesen Shortcode und fügen Sie ihn in den Inhalt Ihres Beitrags, Ihrer Seite oder Ihres Text-Widgets ein."

#: admin/class-hfe-admin.php:417
msgid "Enable Layout for Elementor Canvas Template?"
msgstr "Layout für Elementor Canvas-Vorlage aktivieren?"

#: admin/class-hfe-admin.php:419
msgid "Enabling this option will display this layout on pages using Elementor Canvas Template."
msgstr "Wenn Sie diese Option aktivieren, wird dieses Layout auf Seiten angezeigt, die die Elementor Canvas-Vorlage verwenden."

#: admin/class-hfe-admin.php:446
msgid "Display On"
msgstr "Anzeigen auf"

#: admin/class-hfe-admin.php:448
msgid "Add locations for where this template should appear."
msgstr "Fügen Sie Standorte hinzu, an denen diese Vorlage angezeigt werden soll."

#: admin/class-hfe-admin.php:459
msgid "Add Display Rule"
msgstr "Anzeigeregel hinzufügen"

#: admin/class-hfe-admin.php:468
msgid "Do Not Display On"
msgstr "Nicht anzeigen auf"

#: admin/class-hfe-admin.php:470
msgid "Add locations for where this template should not appear."
msgstr "Fügen Sie Standorte hinzu, an denen diese Vorlage nicht angezeigt werden soll."

#: admin/class-hfe-admin.php:477
msgid "Exclude On"
msgstr "Ausschließen auf"

#: admin/class-hfe-admin.php:480
#: inc/lib/target-rule/class-astra-target-rules-fields.php:847
msgid "Add Exclusion Rule"
msgstr "Ausschlussregel hinzufügen"

#: admin/class-hfe-admin.php:490
msgid "User Roles"
msgstr "Benutzerrollen"

#: admin/class-hfe-admin.php:491
msgid "Display custom template based on user role."
msgstr "Benutzerdefinierte Vorlage basierend auf der Benutzerrolle anzeigen."

#: admin/class-hfe-admin.php:498
msgid "Users"
msgstr "Benutzer"

#: admin/class-hfe-admin.php:501
msgid "Add User Rule"
msgstr "Benutzerregel hinzufügen"

#: admin/class-hfe-admin.php:582
#. Translators: Post title, Template Location
msgid "Template %1$s is already assigned to the location %2$s"
msgstr "Vorlage %1$s ist bereits dem Standort %2$s zugewiesen"

#: inc/class-header-footer-elementor.php:223
msgid "Hello! Seems like you have used Ultimate Addons for Elementor to build this website — Thanks a ton!"
msgstr "Hallo! Es scheint, dass Sie Ultimate Addons für Elementor verwendet haben, um diese Website zu erstellen – Vielen Dank!"

#: inc/class-header-footer-elementor.php:224
msgid ""
"Could you please do us a BIG favor and give it a 5-star rating on WordPress? This would boost our motivation and help "
"other users make a comfortable decision while choosing the Ultimate Addons for Elementor."
msgstr ""
"Könnten Sie uns bitte einen großen Gefallen tun und es mit 5 Sternen auf WordPress bewerten? Das würde unsere "
"Motivation steigern und anderen Nutzern helfen, eine komfortable Entscheidung bei der Auswahl der Ultimate Addons für "
"Elementor zu treffen."

#: inc/class-header-footer-elementor.php:226
msgid "Ok, you deserve it"
msgstr "Ok, das hast du dir verdient"

#: inc/class-header-footer-elementor.php:228
msgid "Nope, maybe later"
msgstr "Nein, vielleicht später"

#: inc/class-header-footer-elementor.php:229
msgid "I already did"
msgstr "Das habe ich bereits getan"

#: inc/class-header-footer-elementor.php:294
#. translators: %s: html tags
msgid "The %1$sUltimate Addons for Elementor%2$s plugin requires %1$sElementor%2$s plugin installed & activated."
msgstr "Das %1$"

#: inc/class-header-footer-elementor.php:301
msgid "Activate Elementor"
msgstr "Aktivieren Sie Elementor"

#: inc/class-header-footer-elementor.php:306
#: inc/class-header-footer-elementor.php:342
msgid "Install Elementor"
msgstr "Elementor installieren"

#: inc/class-header-footer-elementor.php:330
#. translators: %s: html tags
msgid ""
"The %1$sUltimate Addons for Elementor%2$s plugin has stopped working because you are using an older version of "
"%1$sElementor%2$s plugin."
msgstr ""
"Das %1$sUltimate Addons für Elementor%2$s-Plugin funktioniert nicht mehr, da Sie eine ältere Version des "
"%1$sElementor%2$s-Plugins verwenden."

#: inc/class-header-footer-elementor.php:337
msgid "Update Elementor"
msgstr "Elementor aktualisieren"

#: inc/class-header-footer-elementor.php:370
#. translators: %s: html tags
msgid "Thank you for installing %1$s Ultimate Addons for Elementor %2$s Plugin! Click here to %3$sget started. %4$s"
msgstr ""
"Vielen Dank, dass Sie das %1$s Ultimate Addons für Elementor %2$s-Plugin installiert haben! Klicken Sie hier, um %3$szu "
"beginnen.%4$s"

#: inc/class-header-footer-elementor.php:562
#: build/main.js:172
#: src/Components/Settings/Settings.jsx:49
#: src/Components/Settings/ThemeSupport.jsx:80
#: build/main.js:53755
#: build/main.js:54109
msgid "Theme Support"
msgstr "Theme-Support"

#: inc/class-hfe-rollback.php:167
msgid "Ultimate Addons for Elementor Lite <p>Rollback to Previous Version</p>"
msgstr "Ultimate Addons für Elementor Lite <p>Rollback zur vorherigen Version</p>"

#: inc/class-hfe-settings-page.php:153
msgid "You do not have permission to access this page."
msgstr "Sie haben keine Berechtigung, auf diese Seite zuzugreifen."

#: inc/class-hfe-settings-page.php:154
#: inc/class-hfe-settings-page.php:189
#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:63
#: src/Components/Settings/VersionControl.jsx:119
#: build/main.js:53914
#: build/main.js:53970
msgid "Rollback to Previous Version"
msgstr "Rollback zur vorherigen Version"

#: inc/class-hfe-settings-page.php:170
msgid "Error occurred, The version selected is invalid. Try selecting different version."
msgstr "Ein Fehler ist aufgetreten, die ausgewählte Version ist ungültig. Versuchen Sie, eine andere Version auszuwählen."

#: inc/class-hfe-settings-page.php:351
#: inc/class-hfe-settings-page.php:1099
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:86
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:173
#: build/main.js:52331
#: build/main.js:52418
msgid "Activate"
msgstr "Aktivieren"

#: inc/class-hfe-settings-page.php:352
#: inc/class-hfe-settings-page.php:1091
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:156
#: build/main.js:52401
msgid "Activated"
msgstr "Aktiviert"

#: inc/class-hfe-settings-page.php:353
#: inc/class-hfe-settings-page.php:1088
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1030
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1213
msgid "Active"
msgstr "Aktiv"

#: inc/class-hfe-settings-page.php:354
msgid "Deactivate"
msgstr "Deaktivieren"

#: inc/class-hfe-settings-page.php:355
#: inc/class-hfe-settings-page.php:1096
msgid "Inactive"
msgstr "Inaktiv"

#: inc/class-hfe-settings-page.php:356
#: inc/class-hfe-settings-page.php:1112
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:91
#: build/main.js:52336
msgid "Install"
msgstr "Installieren"

#: inc/class-hfe-settings-page.php:357
msgid "Theme Installed"
msgstr "Theme installiert"

#: inc/class-hfe-settings-page.php:358
msgid "Plugin Installed"
msgstr "Plugin installiert"

#: inc/class-hfe-settings-page.php:359
msgid "Download"
msgstr "Herunterladen"

#: inc/class-hfe-settings-page.php:360
msgid "Already Exists."
msgstr "Existiert bereits."

#: inc/class-hfe-settings-page.php:361
#: inc/class-hfe-settings-page.php:1117
msgid "Visit Website"
msgstr "Website besuchen"

#: inc/class-hfe-settings-page.php:362
msgid "Could not install. Please download from WordPress.org and install manually."
msgstr "Konnte nicht installiert werden. Bitte laden Sie es von WordPress.org herunter und installieren Sie es manuell."

#: inc/class-hfe-settings-page.php:363
msgid "Your details are submitted successfully."
msgstr "Ihre Daten wurden erfolgreich übermittelt."

#: inc/class-hfe-settings-page.php:364
msgid "Encountered an error while performing your request."
msgstr "Beim Ausführen Ihrer Anfrage ist ein Fehler aufgetreten."

#: inc/class-hfe-settings-page.php:440
msgid "Add Theme Support"
msgstr "Theme-Support hinzufügen"

#: inc/class-hfe-settings-page.php:456
msgid ""
"The Ultimate Addons for Elementor plugin need compatibility with your current theme to work "
"smoothly.</br></br>Following are two methods that enable theme support for the plugin.</br></br>Method 1 is selected by "
"default and that works fine almost will all themes. In case, you face any issue with the header or footer template, try "
"choosing Method 2."
msgstr ""
"Das Ultimate Addons für Elementor-Plugin benötigt Kompatibilität mit Ihrem aktuellen Theme, um reibungslos zu "
"funktionieren.</br></br>Folgend sind zwei Methoden aufgeführt, die den Theme-Support für das Plugin "
"aktivieren.</br></br>Methode 1 ist standardmäßig ausgewählt und funktioniert fast mit allen Themes. Falls Sie Probleme "
"mit der Kopf- oder Fußzeile haben, versuchen Sie, Methode 2 auszuwählen."

#: inc/class-hfe-settings-page.php:475
msgid " Method 1 (Recommended)"
msgstr "Methode 1 (Empfohlen)"

#: inc/class-hfe-settings-page.php:476
msgid "This method replaces your theme's header (header.php) & footer (footer.php) template with plugin's custom templates."
msgstr ""
"Diese Methode ersetzt die Kopfzeile (header.php) und die Fußzeile (footer.php) Ihres Themes durch benutzerdefinierte "
"Vorlagen des Plugins."

#: inc/class-hfe-settings-page.php:479
msgid "Method 2"
msgstr "Methode 2"

#: inc/class-hfe-settings-page.php:483
msgid "This method hides your theme's header & footer template with CSS and displays custom templates from the plugin."
msgstr ""
"Diese Methode blendet die Kopfzeile und die Fußzeile Ihres Themes mit CSS aus und zeigt benutzerdefinierte Vorlagen des "
"Plugins an."

#: inc/class-hfe-settings-page.php:494
msgid ""
"Sometimes above methods might not work well with your theme, in this case, contact your theme author and request them "
"to add support for the <a href=\"%s\">plugin.</a>"
msgstr ""
"Manchmal funktionieren die oben genannten Methoden möglicherweise nicht gut mit Ihrem Theme. In diesem Fall "
"kontaktieren Sie den Autor Ihres Themes und bitten Sie ihn, Unterstützung für das <a href=\"%s\">Plugin.</a> "
"hinzuzufügen."

#: inc/class-hfe-settings-page.php:526
#: inc/class-hfe-settings-page.php:538
msgid "UAE Lite"
msgstr "UAE Lite"

#: inc/class-hfe-settings-page.php:527
#: inc/widgets-manager/class-widgets-loader.php:168
msgid "UAE"
msgstr "UAE"

#: inc/class-hfe-settings-page.php:539
#: build/main.js:2
#: src/Components/NavMenu.js:130
#: build/main.js:51005
msgid "Dashboard"
msgstr "Dashboard"

#: inc/class-hfe-settings-page.php:550
#: inc/class-hfe-settings-page.php:551
#: inc/class-hfe-settings-page.php:1239
#: inc/widgets-manager/base/widgets-config.php:309
#: inc/widgets-manager/base/widgets-config.php:392
#: inc/widgets-manager/base/widgets-config.php:472
#: inc/widgets-manager/base/widgets-config.php:487
#: inc/widgets-manager/base/widgets-config.php:558
#: inc/widgets-manager/base/widgets-config.php:613
#: inc/widgets-manager/base/widgets-config.php:683
#: inc/widgets-manager/base/widgets-config.php:699
#: inc/widgets-manager/base/widgets-config.php:844
#: build/main.js:2
#: src/Components/NavMenu.js:184
#: build/main.js:51059
msgid "Settings"
msgstr "Einstellungen"

#: inc/class-hfe-settings-page.php:611
msgid "Elementor Header & Footer Builder "
msgstr "Elementor Header & Footer Builder"

#: inc/class-hfe-settings-page.php:669
msgid "All Templates"
msgstr "Alle Vorlagen"

#: inc/class-hfe-settings-page.php:676
msgid "About Us"
msgstr "Über uns"

#: inc/class-hfe-settings-page.php:722
#. translators: 1: Elementor, 2: Link to plugin review
msgid ""
"Help us spread the word about the plugin by leaving %2$s %1$s %3$s ratings on %2$s WordPress.org %3$s. Thank you from "
"the Brainstorm Force team!"
msgstr ""
"Helfen Sie uns, das Wort über das Plugin zu verbreiten, indem Sie %2$s %1$s %3$s Bewertungen auf %2$s WordPress.org "
"%3$s hinterlassen. Vielen Dank vom Brainstorm Force-Team!"

#: inc/class-hfe-settings-page.php:765
msgid "Create Impressive Header and Footer Designs"
msgstr "Erstellen Sie beeindruckende Kopf- und Fußzeilen-Designs"

#: inc/class-hfe-settings-page.php:766
msgid ""
"Elementor Header & Footer Builder plugin lets you build impactful navigation for your website very easily. Before we "
"begin, we would like to know more about you. This will help us to serve you better."
msgstr ""
"Das Elementor Header & Footer Builder-Plugin ermöglicht es Ihnen, eine wirkungsvolle Navigation für Ihre Website sehr "
"einfach zu erstellen. Bevor wir beginnen, möchten wir mehr über Sie erfahren. Dies wird uns helfen, Ihnen besser zu "
"dienen."

#: inc/class-hfe-settings-page.php:780
#. translators: %1$s and %3$s are opening anchor tags, and %2$s and %4$s is closing anchor tags.
msgid "By submitting, you agree to our %1$sTerms%2$s and %3$sPrivacy Policy%4$s."
msgstr "Durch das Einreichen stimmen Sie unseren %1$sNutzungsbedingungen%2$s und %3$sDatenschutzrichtlinien%4$s zu."

#: inc/class-hfe-settings-page.php:798
msgid "Skip"
msgstr "Überspringen"

#: inc/class-hfe-settings-page.php:816
msgid "Beginner"
msgstr "Anfänger"

#: inc/class-hfe-settings-page.php:817
msgid "Intermediate"
msgstr "Fortgeschritten"

#: inc/class-hfe-settings-page.php:818
msgid "Expert"
msgstr "Experte"

#: inc/class-hfe-settings-page.php:820
#: inc/class-hfe-settings-page.php:829
msgid "Field is required"
msgstr "Feld ist erforderlich"

#: inc/class-hfe-settings-page.php:821
msgid "I'm a WordPress:"
msgstr "Ich bin ein WordPress:"

#: inc/class-hfe-settings-page.php:826
msgid "Myself/My company"
msgstr "Ich selbst/mein Unternehmen"

#: inc/class-hfe-settings-page.php:827
msgid "My client"
msgstr "Mein Kunde"

#: inc/class-hfe-settings-page.php:830
msgid "I'm building website for:"
msgstr "Ich baue eine Website für:"

#: inc/class-hfe-settings-page.php:853
msgid "First name is required"
msgstr "Vorname ist erforderlich"

#: inc/class-hfe-settings-page.php:854
msgid "Your First Name"
msgstr "Ihr Vorname"

#: inc/class-hfe-settings-page.php:858
msgid "Email address is required"
msgstr "E-Mail-Adresse ist erforderlich"

#: inc/class-hfe-settings-page.php:859
msgid "Your Work Email"
msgstr "Ihre Arbeits-E-Mail"

#: inc/class-hfe-settings-page.php:863
msgid "I agree to receive your newsletters and accept the data privacy statement."
msgstr "Ich stimme zu, Ihre Newsletter zu erhalten und erkläre mich mit der Datenschutzerklärung einverstanden."

#: inc/class-hfe-settings-page.php:868
msgid "Submit"
msgstr "Einreichen"

#: inc/class-hfe-settings-page.php:102
#: inc/class-hfe-settings-page.php:890
#: inc/class-hfe-settings-page.php:1168
msgid "Ultimate Addons for Elementor"
msgstr "Ultimate Addons für Elementor"

#: inc/class-hfe-settings-page.php:925
#. translators: %s: theme name
msgid ""
"Powering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for "
"all kinds of websites like blogs, portfolios, business, and WooCommerce stores."
msgstr ""
"Mit über 1+ Million Websites wird %s für die schnelle Leistung und Benutzerfreundlichkeit geschätzt, die es bietet. Es "
"eignet sich für alle Arten von Websites wie Blogs, Portfolios, Unternehmen und WooCommerce-Shops."

#: inc/class-hfe-settings-page.php:946
msgid "Welcome to Elementor Header & Footer Builder!"
msgstr "Willkommen beim Elementor Header & Footer Builder!"

#: inc/class-hfe-settings-page.php:948
msgid ""
"With this awesome plugin, experience the easiest way to create a customized header and footer for your website with "
"Elementor. That too 100% FREE!"
msgstr ""
"Erleben Sie mit diesem großartigen Plugin die einfachste Möglichkeit, einen benutzerdefinierten Header und Footer für "
"Ihre Website mit Elementor zu erstellen. Und das 100% KOSTENLOS!"

#: inc/class-hfe-settings-page.php:950
msgid ""
"Design beautiful layouts with simple drag & drop and display them at desired location with powerful target controls. "
"The plugin comes with inbuilt Elementor widgets that offer essential features to build header and footer. It's a "
"lightweight plugin that works seamlessly with all themes and backed up by 24/7 support."
msgstr ""
"Gestalten Sie wunderschöne Layouts mit einfachem Drag & Drop und zeigen Sie sie an gewünschter Stelle mit "
"leistungsstarken Zielsteuerungen an. Das Plugin kommt mit integrierten Elementor-Widgets, die wesentliche Funktionen "
"zum Erstellen von Header und Footer bieten. Es ist ein leichtgewichtiges Plugin, das nahtlos mit allen Themen "
"funktioniert und von 24/7 Support unterstützt wird."

#: inc/class-hfe-settings-page.php:952
msgid ""
"Trusted by more than 1+ Million users, Elementor Header & Footer Builder is a modern way to build advanced navigation "
"for your website."
msgstr ""
"Vertraut von mehr als 1+ Million Nutzern ist der Elementor Header & Footer Builder eine moderne Möglichkeit, eine "
"erweiterte Navigation für Ihre Website zu erstellen."

#: inc/class-hfe-settings-page.php:955
#. translators: %s: theme name
msgid ""
"This plugin is brought to you by the same team behind the popular WordPress theme %s and a series of Ultimate Addons "
"plugins."
msgstr ""
"Dieses Plugin wird Ihnen von demselben Team angeboten, das das beliebte WordPress-Theme %s und eine Reihe von Ultimate "
"Addons-Plugins entwickelt hat."

#: inc/class-hfe-settings-page.php:961
msgid "Team photo"
msgstr "Teamfoto"

#: inc/class-hfe-settings-page.php:963
msgid "Brainstorm Force Team"
msgstr "Brainstorm Force Team"

#: inc/class-hfe-settings-page.php:1008
#. translators: %s - addon status label.
msgid "%1$s %3$s %2$s"
msgstr "%1$s %3$s %2$s"

#: inc/class-hfe-settings-page.php:1025
#. translators: %s - addon status label.
msgid "Status: %s"
msgstr "Status: %s"

#: inc/class-hfe-settings-page.php:1044
msgid "WordPress.org"
msgstr "WordPress.org"

#: inc/class-hfe-settings-page.php:1109
msgid "Not Installed"
msgstr "Nicht installiert"

#: inc/class-hfe-settings-page.php:1156
#: inc/widgets-manager/base/widgets-config.php:1008
msgid "Starter Templates"
msgstr "Starter-Vorlagen"

#: inc/class-hfe-settings-page.php:1157
msgid ""
"A popular templates plugin that provides an extensive library of professional and fully customizable 600+ ready website "
"and templates. More than 1+ Million websites have built with this plugin."
msgstr ""
"Ein beliebtes Vorlagen-Plugin, das eine umfangreiche Bibliothek von professionellen und vollständig anpassbaren 600+ "
"fertigen Websites und Vorlagen bietet. Mehr als 1+ Million Websites wurden mit diesem Plugin erstellt."

#: inc/class-hfe-settings-page.php:1169
msgid ""
"It’s a collection of 40+ unique, creative, and optimized Elementor widgets with 100+ readymade templates. Trusted by "
"more than 600+ K web professionals. It’s a #1 toolkit for Elementor Page Builder."
msgstr ""
"Es ist eine Sammlung von 40+ einzigartigen, kreativen und optimierten Elementor-Widgets mit 100+ fertigen Vorlagen. "
"Vertraut von mehr als 600+ K Web-Profis. Es ist das #1 Toolkit für den Elementor Page Builder."

#: inc/class-hfe-settings-page.php:1238
msgid "Go to HFE Settings page"
msgstr "Gehe zur HFE-Einstellungsseite"

#: inc/lib/astra-notices/class-astra-notices.php:119
msgid "WordPress Nonce not validated."
msgstr "WordPress Nonce nicht validiert."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:127
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:298
msgid "404 Page"
msgstr "404-Seite"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:128
msgid "Search Page"
msgstr "Suchseite"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:129
msgid "Blog / Posts Page"
msgstr "Blog / Beitragsseite"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:130
msgid "Front Page"
msgstr "Startseite"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:131
msgid "Date Archive"
msgstr "Datumsarchiv"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:132
msgid "Author Archive"
msgstr "Autorenarchiv"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:136
msgid "WooCommerce Shop Page"
msgstr "WooCommerce-Shopseite"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:141
#: inc/lib/target-rule/class-astra-target-rules-fields.php:213
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:143
#: src/Components/Compare/FreevsPro.jsx:152
#: build/main.js:54381
#: build/main.js:54390
msgid "Basic"
msgstr "Basis"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:143
msgid "Entire Website"
msgstr "Gesamte Website"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:144
msgid "All Singulars"
msgstr "Alle Singulars"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:145
msgid "All Archives"
msgstr "Alle Archive"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:150
msgid "Special Pages"
msgstr "Sonderseiten"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:191
msgid "Specific Target"
msgstr "Spezifisches Ziel"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:193
msgid "Specific Pages / Posts / Taxonomies, etc."
msgstr "Spezifische Seiten / Beiträge / Taxonomien usw."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:215
msgid "All"
msgstr "Alle"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:216
msgid "Logged In"
msgstr "Eingeloggt"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:217
msgid "Logged Out"
msgstr "Ausgeloggt"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:222
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:142
#: src/Components/Compare/FreevsPro.jsx:153
#: build/main.js:54380
#: build/main.js:54391
msgid "Advanced"
msgstr "Erweitert"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:624
msgid "Please enter"
msgstr "Bitte eingeben"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:625
msgid "Please delete"
msgstr "Bitte löschen"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:626
msgid "or more characters"
msgstr "oder mehr Zeichen"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:627
msgid "character"
msgstr "Zeichen"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:628
msgid "Loading more results…"
msgstr "Weitere Ergebnisse laden…"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:629
msgid "You can only select"
msgstr "Sie können nur auswählen"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:630
msgid "item"
msgstr "Element"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:631
msgid "s"
msgstr "e"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:632
msgid "No results found"
msgstr "Keine Ergebnisse gefunden"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:633
msgid "Searching…"
msgstr "Suche…"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:634
msgid "The results could not be loaded."
msgstr "Die Ergebnisse konnten nicht geladen werden."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:635
msgid "Search pages / post / categories"
msgstr "Seiten / Beiträge / Kategorien suchen"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:654
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1064
msgid "Add Rule"
msgstr "Regel hinzufügen"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:670
#: inc/lib/target-rule/class-astra-target-rules-fields.php:775
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1080
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1110
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1572
msgid "Select"
msgstr "Auswählen"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:720
#. translators: %s post label
msgid "All %s"
msgstr "Alle %s"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:725
#: inc/lib/target-rule/class-astra-target-rules-fields.php:734
#. translators: %s post label
#. translators: %s taxonomy label
msgid "All %s Archive"
msgstr "Alle %s Archive"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:1513
#. translators: %s post title.
msgid "The same display setting is already exist in %s post/s."
msgstr "Die gleiche Anzeigeeinstellung existiert bereits in %s Beitrag/en."

#: inc/settings/hfe-settings-api.php:101
msgid "Sorry, you are not authorized to perform this action."
msgstr "Entschuldigung, Sie sind nicht berechtigt, diese Aktion auszuführen."

#: inc/settings/hfe-settings-api.php:116
#: inc/settings/hfe-settings-api.php:143
#: inc/settings/hfe-settings-api.php:170
msgid "Invalid nonce"
msgstr "Ungültiger Nonce"

#: inc/settings/hfe-settings-api.php:150
msgid "Plugins list not found"
msgstr "Plugins-Liste nicht gefunden"

#: inc/settings/hfe-settings-api.php:177
msgid "Widgets list not found"
msgstr "Widgets-Liste nicht gefunden"

#: inc/widgets-manager/base/widgets-config.php:53
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:19
#: build/main.js:54257
msgid "Post Info"
msgstr "Beitragsinfo"

#: inc/widgets-manager/base/widgets-config.php:61
msgid "Show author, dates, and reading time with customizable styles."
msgstr "Zeigen Sie Autor, Daten und Lesezeit mit anpassbaren Stilen an."

#: inc/widgets-manager/base/widgets-config.php:67
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:21
#: build/main.js:54259
msgid "Breadcrumbs"
msgstr "Brotkrumen"

#: inc/widgets-manager/base/widgets-config.php:75
msgid "Add navigation links to guide visitors across your site."
msgstr "Fügen Sie Navigationslinks hinzu, um Besucher durch Ihre Website zu führen."

#: inc/widgets-manager/base/widgets-config.php:81
#: inc/widgets-manager/widgets/site-logo/site-logo.php:133
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:26
#: build/main.js:54264
msgid "Site Logo"
msgstr "Site-Logo"

#: inc/widgets-manager/base/widgets-config.php:88
msgid "Add your site's primary logo with flexible customization options."
msgstr "Fügen Sie das primäre Logo Ihrer Website mit flexiblen Anpassungsoptionen hinzu."

#: inc/widgets-manager/base/widgets-config.php:94
#: inc/widgets-manager/base/widgets-config.php:525
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:28
#: src/Components/Compare/FreevsPro.jsx:138
#: src/Components/Compare/FreevsPro.jsx:140
#: src/Components/Compare/FreevsPro.jsx:148
#: src/Components/Compare/FreevsPro.jsx:150
#: build/main.js:54266
#: build/main.js:54376
#: build/main.js:54378
#: build/main.js:54386
#: build/main.js:54388
msgid "Navigation Menu"
msgstr "Navigationsmenü"

#: inc/widgets-manager/base/widgets-config.php:101
msgid "Add stylish and functional menus for seamless site navigation."
msgstr "Fügen Sie stilvolle und funktionale Menüs für eine nahtlose Navigation hinzu."

#: inc/widgets-manager/base/widgets-config.php:107
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:49
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:103
#: inc/widgets-manager/extensions/class-scroll-to-top.php:310
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:20
#: build/main.js:54258
msgid "Scroll to Top"
msgstr "Nach oben scrollen"

#: inc/widgets-manager/base/widgets-config.php:115
msgid "Add a customizable button for quick, one-click top scrolling."
msgstr "Fügen Sie eine anpassbare Schaltfläche für schnelles, ein-Klick-Nach-oben-Scrollen hinzu."

#: inc/widgets-manager/base/widgets-config.php:122
msgid "Site Title"
msgstr "Seitentitel"

#: inc/widgets-manager/base/widgets-config.php:129
msgid "Show your site’s name in a customizable style."
msgstr "Zeigen Sie den Namen Ihrer Website in einem anpassbaren Stil an."

#: inc/widgets-manager/base/widgets-config.php:135
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:25
#: build/main.js:54263
msgid "Site Tagline"
msgstr "Site-Tagline"

#: inc/widgets-manager/base/widgets-config.php:142
msgid "Display your site's tagline to enhance brand identity."
msgstr "Zeigen Sie die Tagline Ihrer Website an, um die Markenidentität zu stärken."

#: inc/widgets-manager/base/widgets-config.php:148
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:285
#: inc/widgets-manager/widgets/search-button/search-button.php:990
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:27
#: build/main.js:54265
msgid "Search"
msgstr "Suche"

#: inc/widgets-manager/base/widgets-config.php:155
msgid "Add a search bar to help visitors find content easily."
msgstr "Fügen Sie eine Suchleiste hinzu, um Besuchern zu helfen, Inhalte leicht zu finden."

#: inc/widgets-manager/base/widgets-config.php:161
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:24
#: build/main.js:54262
msgid "Page Title"
msgstr "Seitentitel"

#: inc/widgets-manager/base/widgets-config.php:168
msgid "Display the title of the current page dynamically."
msgstr "Zeigen Sie den Titel der aktuellen Seite dynamisch an."

#: inc/widgets-manager/base/widgets-config.php:174
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:22
#: build/main.js:54260
msgid "Retina Logo"
msgstr "Retina-Logo"

#: inc/widgets-manager/base/widgets-config.php:181
msgid "Add a high-quality logo that looks sharp on any screen."
msgstr "Fügen Sie ein hochwertiges Logo hinzu, das auf jedem Bildschirm scharf aussieht."

#: inc/widgets-manager/base/widgets-config.php:187
#: inc/widgets-manager/class-widgets-loader.php:330
#: inc/widgets-manager/widgets/cart/cart.php:629
msgid "Cart"
msgstr "Warenkorb"

#: inc/widgets-manager/base/widgets-config.php:194
msgid "Show cart for seamless shopping experiences."
msgstr "Zeigen Sie den Warenkorb für nahtlose Einkaufserlebnisse an."

#: inc/widgets-manager/base/widgets-config.php:200
#: inc/widgets-manager/widgets/copyright/copyright.php:102
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:23
#: build/main.js:54261
msgid "Copyright"
msgstr "Urheberrecht"

#: inc/widgets-manager/base/widgets-config.php:207
msgid "Display customizable copyright text for your site's footer."
msgstr "Zeigen Sie anpassbaren Urheberrechtstext für die Fußzeile Ihrer Website an."

#: inc/widgets-manager/base/widgets-config.php:234
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:34
#: src/Components/Compare/UltimateCompare.jsx:17
#: src/Components/Dashboard/UltimateFeatures.js:18
#: src/Components/Widgets/UltimateWidgets.jsx:18
#: build/main.js:52091
#: build/main.js:52688
#: build/main.js:54272
#: build/main.js:54493
msgid "Advanced Heading"
msgstr "Erweiterte Überschrift"

#: inc/widgets-manager/base/widgets-config.php:235
msgid "Create engaging and customizable headings for your pages."
msgstr "Erstellen Sie ansprechende und anpassbare Überschriften für Ihre Seiten."

#: inc/widgets-manager/base/widgets-config.php:248
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:66
#: src/Components/Compare/UltimateCompare.jsx:12
#: src/Components/Dashboard/UltimateFeatures.js:13
#: src/Components/Widgets/UltimateWidgets.jsx:13
#: build/main.js:52086
#: build/main.js:52683
#: build/main.js:54304
#: build/main.js:54488
msgid "Modal Popup"
msgstr "Modal Popup"

#: inc/widgets-manager/base/widgets-config.php:249
msgid "Design engaging popups with interactive animations and content."
msgstr "Gestalten Sie ansprechende Popups mit interaktiven Animationen und Inhalten."

#: inc/widgets-manager/base/widgets-config.php:261
msgid "Content Toggle"
msgstr "Inhalt umschalten"

#: inc/widgets-manager/base/widgets-config.php:262
msgid "Let users easily switch between two types of content."
msgstr "Lassen Sie Benutzer einfach zwischen zwei Arten von Inhalten wechseln."

#: inc/widgets-manager/base/widgets-config.php:274
msgid "Before After Slider"
msgstr "Vorher-Nachher-Slider"

#: inc/widgets-manager/base/widgets-config.php:275
msgid "Display the before and after versions of an image."
msgstr "Zeigen Sie die Vorher- und Nachher-Versionen eines Bildes an."

#: inc/widgets-manager/base/widgets-config.php:287
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:65
#: build/main.js:54303
msgid "Business Hours"
msgstr "Öffnungszeiten"

#: inc/widgets-manager/base/widgets-config.php:288
msgid "Customize and display your business hours stylishly."
msgstr "Passen Sie Ihre Öffnungszeiten stilvoll an und zeigen Sie sie an."

#: inc/widgets-manager/base/widgets-config.php:302
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:94
#: build/main.js:54332
msgid "Business Reviews"
msgstr "Geschäftsbewertungen"

#: inc/widgets-manager/base/widgets-config.php:303
msgid "Display verified reviews from Google and Yelp directly."
msgstr "Zeigen Sie verifizierte Bewertungen von Google und Yelp direkt an."

#: inc/widgets-manager/base/widgets-config.php:316
msgid "Contact Form 7 Styler"
msgstr "Contact Form 7 Styler"

#: inc/widgets-manager/base/widgets-config.php:317
msgid "Style and enhance Contact Form 7 to fit your site."
msgstr "Stylen und verbessern Sie Contact Form 7, um zu Ihrer Website zu passen."

#: inc/widgets-manager/base/widgets-config.php:329
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:64
#: build/main.js:54302
msgid "Countdown Timer"
msgstr "Countdown-Timer"

#: inc/widgets-manager/base/widgets-config.php:330
msgid "Create urgency with fixed or recurring countdowns."
msgstr "Schaffen Sie Dringlichkeit mit festen oder wiederkehrenden Countdown."

#: inc/widgets-manager/base/widgets-config.php:343
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:35
#: build/main.js:54273
msgid "Dual Color Heading"
msgstr "Zweifarbige Überschrift"

#: inc/widgets-manager/base/widgets-config.php:344
msgid "Style headings with dual colours and customizable typography."
msgstr "Stylen Sie Überschriften mit zwei Farben und anpassbarer Typografie."

#: inc/widgets-manager/base/widgets-config.php:357
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:36
#: build/main.js:54274
msgid "Fancy Heading"
msgstr "Fancy Heading"

#: inc/widgets-manager/base/widgets-config.php:358
msgid "Add animated text for more engaging page titles."
msgstr "Fügen Sie animierten Text für ansprechendere Seitentitel hinzu."

#: inc/widgets-manager/base/widgets-config.php:371
msgid "FAQ Schema"
msgstr "FAQ-Schema"

#: inc/widgets-manager/base/widgets-config.php:372
msgid "Add SEO-friendly FAQ sections to pages."
msgstr "Fügen Sie SEO-freundliche FAQ-Abschnitte zu Seiten hinzu."

#: inc/widgets-manager/base/widgets-config.php:385
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:49
#: build/main.js:54287
msgid "Google Map"
msgstr "Google Map"

#: inc/widgets-manager/base/widgets-config.php:386
msgid "Add customizable, multi-location maps with custom markers."
msgstr "Fügen Sie anpassbare, mehrstufige Karten mit benutzerdefinierten Markierungen hinzu."

#: inc/widgets-manager/base/widgets-config.php:400
msgid "Gravity Form Styler"
msgstr "Gravity Form Styler"

#: inc/widgets-manager/base/widgets-config.php:401
msgid "Customize Gravity Forms with advanced styling options."
msgstr "Passen Sie Gravity Forms mit erweiterten Styling-Optionen an."

#: inc/widgets-manager/base/widgets-config.php:413
msgid "Hotspot"
msgstr "Hotspot"

#: inc/widgets-manager/base/widgets-config.php:414
msgid "Add interactive points on images for detailed visual tours."
msgstr "Fügen Sie interaktive Punkte auf Bildern für detaillierte visuelle Touren hinzu."

#: inc/widgets-manager/base/widgets-config.php:426
msgid "How-to Schema"
msgstr "How-to Schema"

#: inc/widgets-manager/base/widgets-config.php:427
msgid "Create structured how-to pages with automatic schema markup."
msgstr "Erstellen Sie strukturierte Anleitungen mit automatischer Schema-Markup."

#: inc/widgets-manager/base/widgets-config.php:439
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:45
#: build/main.js:54283
msgid "Image Gallery"
msgstr "Bildgalerie"

#: inc/widgets-manager/base/widgets-config.php:440
msgid "Build attractive, feature-rich galleries with advanced options."
msgstr "Erstellen Sie attraktive, funktionsreiche Galerien mit erweiterten Optionen."

#: inc/widgets-manager/base/widgets-config.php:452
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:51
#: src/Components/Compare/UltimateCompare.jsx:27
#: src/Components/Dashboard/UltimateFeatures.js:28
#: src/Components/Widgets/UltimateWidgets.jsx:28
#: build/main.js:52101
#: build/main.js:52698
#: build/main.js:54289
#: build/main.js:54503
msgid "Info Box"
msgstr "Info Box"

#: inc/widgets-manager/base/widgets-config.php:453
msgid "Add headings, icons, and descriptions in one flexible widget."
msgstr "Fügen Sie Überschriften, Symbole und Beschreibungen in einem flexiblen Widget hinzu."

#: inc/widgets-manager/base/widgets-config.php:466
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:110
#: build/main.js:54348
msgid "Instagram Feed"
msgstr "Instagram Feed"

#: inc/widgets-manager/base/widgets-config.php:467
msgid "Display an attractive, customizable Instagram feed."
msgstr "Zeigen Sie einen attraktiven, anpassbaren Instagram-Feed an."

#: inc/widgets-manager/base/widgets-config.php:481
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:54
#: build/main.js:54292
msgid "Login Form"
msgstr "Anmeldeformular"

#: inc/widgets-manager/base/widgets-config.php:482
msgid "Design beautiful, customizable WordPress login forms."
msgstr "Gestalten Sie schöne, anpassbare WordPress-Anmeldeformulare."

#: inc/widgets-manager/base/widgets-config.php:497
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:61
#: build/main.js:54299
msgid "Marketing Button"
msgstr "Marketing-Button"

#: inc/widgets-manager/base/widgets-config.php:498
msgid "Create High-impact, customizable CTA for promotions and conversions."
msgstr "Erstellen Sie wirkungsvolle, anpassbare CTAs für Aktionen und Konversionen."

#: inc/widgets-manager/base/widgets-config.php:511
msgid "Multi Buttons"
msgstr "Multi-Buttons"

#: inc/widgets-manager/base/widgets-config.php:512
msgid "Create a versatile dual-button setup for navigation and interactive web elements."
msgstr "Erstellen Sie ein vielseitiges Dual-Button-Setup für Navigation und interaktive Webelemente."

#: inc/widgets-manager/base/widgets-config.php:526
msgid "Build easy-to-navigate, visually appealing site menus."
msgstr "Erstellen Sie einfach zu navigierende, visuell ansprechende Site-Menüs."

#: inc/widgets-manager/base/widgets-config.php:538
msgid "Off - Canvas"
msgstr "Off-Canvas"

#: inc/widgets-manager/base/widgets-config.php:539
msgid "Create sliding panels for navigation or extra content."
msgstr "Erstellen Sie gleitende Panels für Navigation oder zusätzlichen Inhalt."

#: inc/widgets-manager/base/widgets-config.php:551
msgid "Posts"
msgstr "Beiträge"

#: inc/widgets-manager/base/widgets-config.php:552
msgid "Display and customize blog posts beautifully on your site."
msgstr "Zeigen Sie Blogbeiträge schön auf Ihrer Website an und passen Sie sie an."

#: inc/widgets-manager/base/widgets-config.php:566
msgid "Price Box"
msgstr "Preiskasten"

#: inc/widgets-manager/base/widgets-config.php:567
msgid "Showcase prices and features in customizable layouts."
msgstr "Präsentieren Sie Preise und Funktionen in anpassbaren Layouts."

#: inc/widgets-manager/base/widgets-config.php:580
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:63
#: build/main.js:54301
msgid "Price List"
msgstr "Preisliste"

#: inc/widgets-manager/base/widgets-config.php:581
msgid "Create elegant, customizable lists for menus or product catalogues."
msgstr "Erstellen Sie elegante, anpassbare Listen für Menüs oder Produktkataloge."

#: inc/widgets-manager/base/widgets-config.php:594
#: inc/widgets-manager/widgets/retina/retina.php:111
#: inc/widgets-manager/widgets/retina/retina.php:245
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:118
#: build/main.js:54356
msgid "Retina Image"
msgstr "Retina-Bild"

#: inc/widgets-manager/base/widgets-config.php:595
msgid "Ensure images look crisp on high-resolution screens."
msgstr "Stellen Sie sicher, dass Bilder auf hochauflösenden Bildschirmen scharf aussehen."

#: inc/widgets-manager/base/widgets-config.php:607
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:112
#: build/main.js:54350
msgid "Social Share"
msgstr "Soziale Freigabe"

#: inc/widgets-manager/base/widgets-config.php:608
msgid "Enable quick content sharing with social media buttons."
msgstr "Ermöglichen Sie schnelles Teilen von Inhalten mit Social-Media-Buttons."

#: inc/widgets-manager/base/widgets-config.php:623
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:47
#: build/main.js:54285
msgid "Table"
msgstr "Tabelle"

#: inc/widgets-manager/base/widgets-config.php:624
msgid "Build responsive, styled tables to display data."
msgstr "Erstellen Sie responsive, stilisierte Tabellen zur Anzeige von Daten."

#: inc/widgets-manager/base/widgets-config.php:636
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:93
#: build/main.js:54331
msgid "Table of Contents"
msgstr "Inhaltsverzeichnis"

#: inc/widgets-manager/base/widgets-config.php:637
msgid "Improve page readability with automatic, customizable TOCs."
msgstr "Verbessern Sie die Lesbarkeit der Seite mit automatischen, anpassbaren Inhaltsverzeichnissen."

#: inc/widgets-manager/base/widgets-config.php:649
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:119
#: build/main.js:54357
msgid "Team Member"
msgstr "Teammitglied"

#: inc/widgets-manager/base/widgets-config.php:650
msgid "Highlight team members with customizable layouts."
msgstr "Heben Sie Teammitglieder mit anpassbaren Layouts hervor."

#: inc/widgets-manager/base/widgets-config.php:663
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:48
#: build/main.js:54286
msgid "Timeline"
msgstr "Zeitleiste"

#: inc/widgets-manager/base/widgets-config.php:664
msgid "Display timelines or roadmaps with advanced styling options."
msgstr "Zeigen Sie Zeitachsen oder Fahrpläne mit erweiterten Styling-Optionen an."

#: inc/widgets-manager/base/widgets-config.php:677
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:111
#: build/main.js:54349
msgid "Twitter Feed"
msgstr "Twitter-Feed"

#: inc/widgets-manager/base/widgets-config.php:678
msgid "Embed Twitter feeds to show real-time content updates."
msgstr "Binden Sie Twitter-Feeds ein, um Echtzeit-Inhaltsaktualisierungen anzuzeigen."

#: inc/widgets-manager/base/widgets-config.php:692
msgid "User Registration Form"
msgstr "Benutzerregistrierungsformular"

#: inc/widgets-manager/base/widgets-config.php:693
msgid "Create beautiful, custom registration forms for users."
msgstr "Erstellen Sie schöne, benutzerdefinierte Registrierungsformulare für Benutzer."

#: inc/widgets-manager/base/widgets-config.php:708
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:52
#: build/main.js:54290
msgid "Video"
msgstr "Video"

#: inc/widgets-manager/base/widgets-config.php:709
msgid "Embed optimized videos with customizable thumbnails and play buttons."
msgstr "Binden Sie optimierte Videos mit anpassbaren Miniaturansichten und Wiedergabetasten ein."

#: inc/widgets-manager/base/widgets-config.php:721
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:46
#: build/main.js:54284
msgid "Video Gallery"
msgstr "Videogalerie"

#: inc/widgets-manager/base/widgets-config.php:722
msgid "Showcase multiple videos without impacting load times."
msgstr "Präsentieren Sie mehrere Videos, ohne die Ladezeiten zu beeinträchtigen."

#: inc/widgets-manager/base/widgets-config.php:734
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:101
#: build/main.js:54339
msgid "Welcome Music"
msgstr "Willkommensmusik"

#: inc/widgets-manager/base/widgets-config.php:735
msgid "Play background audio to engage visitors upon page load."
msgstr "Spielen Sie Hintergrundmusik ab, um Besucher beim Laden der Seite zu engagieren."

#: inc/widgets-manager/base/widgets-config.php:747
msgid "Woo - Add To Cart"
msgstr "Woo - In den Warenkorb"

#: inc/widgets-manager/base/widgets-config.php:748
msgid "Let users add items to cart with one click."
msgstr "Lassen Sie Benutzer Artikel mit einem Klick in den Warenkorb legen."

#: inc/widgets-manager/base/widgets-config.php:760
msgid "Woo - Categories"
msgstr "Woo - Kategorien"

#: inc/widgets-manager/base/widgets-config.php:761
msgid "Display product categories beautifully."
msgstr "Präsentieren Sie Produktkategorien schön."

#: inc/widgets-manager/base/widgets-config.php:773
msgid "Woo - Checkout"
msgstr "Woo - Kasse"

#: inc/widgets-manager/base/widgets-config.php:774
msgid "Design optimized checkout pages for better conversions."
msgstr "Gestalten Sie optimierte Checkout-Seiten für bessere Konversionen."

#: inc/widgets-manager/base/widgets-config.php:786
msgid "Woo - Mini Cart"
msgstr "Woo - Mini-Warenkorb"

#: inc/widgets-manager/base/widgets-config.php:787
msgid "Show a mini-cart for seamless shopping experiences."
msgstr "Zeigen Sie einen Mini-Warenkorb für nahtlose Einkaufserlebnisse an."

#: inc/widgets-manager/base/widgets-config.php:799
msgid "Woo - Products"
msgstr "Woo - Produkte"

#: inc/widgets-manager/base/widgets-config.php:800
msgid "Present products with detailed, customizable layouts."
msgstr "Präsentieren Sie Produkte mit detaillierten, anpassbaren Layouts."

#: inc/widgets-manager/base/widgets-config.php:812
msgid "WP Fluent Forms Styler"
msgstr "WP Fluent Forms Styler"

#: inc/widgets-manager/base/widgets-config.php:813
msgid "Style WP Fluent Forms for an attractive, cohesive look."
msgstr "Stylen Sie WP Fluent Forms für ein attraktives, einheitliches Aussehen."

#: inc/widgets-manager/base/widgets-config.php:825
msgid "WPForms Styler"
msgstr "WPForms Styler"

#: inc/widgets-manager/base/widgets-config.php:826
msgid "Upgrade WPForms with customizable design and layout options."
msgstr "Verbessern Sie WPForms mit anpassbaren Design- und Layoutoptionen."

#: inc/widgets-manager/base/widgets-config.php:838
msgid "Display Conditions"
msgstr "Anzeigebedingungen"

#: inc/widgets-manager/base/widgets-config.php:839
msgid "Show or hide content based on user interactions."
msgstr "Inhalte basierend auf Benutzerinteraktionen anzeigen oder ausblenden."

#: inc/widgets-manager/base/widgets-config.php:853
msgid "Particle Backgrounds"
msgstr "Partikel-Hintergründe"

#: inc/widgets-manager/base/widgets-config.php:854
msgid "Add dynamic, animated backgrounds to sections and columns."
msgstr "Fügen Sie dynamische, animierte Hintergründe zu Abschnitten und Spalten hinzu."

#: inc/widgets-manager/base/widgets-config.php:866
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:103
#: build/main.js:54341
msgid "Party Propz"
msgstr "Party Requisiten"

#: inc/widgets-manager/base/widgets-config.php:867
msgid "Decorate your site with festive seasonal elements easily."
msgstr "Dekorieren Sie Ihre Website einfach mit festlichen saisonalen Elementen."

#: inc/widgets-manager/base/widgets-config.php:879
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:104
#: build/main.js:54342
msgid "Shape Divider"
msgstr "Formen-Trenner"

#: inc/widgets-manager/base/widgets-config.php:880
msgid "Add new attractive shape dividers to Elementor sections."
msgstr "Fügen Sie neue attraktive Formen-Trenner zu Elementor-Abschnitten hinzu."

#: inc/widgets-manager/base/widgets-config.php:892
msgid "Cross-Site Copy Paste"
msgstr "Cross-Site Kopieren und Einfügen"

#: inc/widgets-manager/base/widgets-config.php:893
msgid "Copy and paste Elementor content between websites."
msgstr "Kopieren und Einfügen von Elementor-Inhalten zwischen Websites."

#: inc/widgets-manager/base/widgets-config.php:905
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:100
#: build/main.js:54338
msgid "Presets"
msgstr "Voreinstellungen"

#: inc/widgets-manager/base/widgets-config.php:906
msgid "Use pre-made widget templates to accelerate your design process."
msgstr "Verwenden Sie vorgefertigte Widget-Vorlagen, um Ihren Designprozess zu beschleunigen."

#: inc/widgets-manager/base/widgets-config.php:924
msgid "Caldera Form Styler"
msgstr "Caldera Form Styler"

#: inc/widgets-manager/base/widgets-config.php:925
msgid "Style and enhance Caldera Forms to fit your site."
msgstr "Stylen und verbessern Sie Caldera Forms, um zu Ihrer Website zu passen."

#: inc/widgets-manager/base/widgets-config.php:970
#. translators: %s: theme name
msgid "Free & Fastest WordPress Theme."
msgstr "Kostenloses & schnellstes WordPress-Theme."

#: inc/widgets-manager/base/widgets-config.php:995
msgid "Fast and customizable theme for your website."
msgstr "Schnelles und anpassbares Theme für Ihre Website."

#: inc/widgets-manager/base/widgets-config.php:1009
msgid "Launch websites with AI or ready-made templates."
msgstr "Starten Sie Websites mit KI oder vorgefertigten Vorlagen."

#: inc/widgets-manager/base/widgets-config.php:1022
msgid "SureCart"
msgstr "SureCart"

#: inc/widgets-manager/base/widgets-config.php:1023
msgid "Sell your products easily on WordPress."
msgstr "Verkaufen Sie Ihre Produkte einfach auf WordPress."

#: inc/widgets-manager/base/widgets-config.php:1036
msgid "Presto Player"
msgstr "Presto Player"

#: inc/widgets-manager/base/widgets-config.php:1037
msgid "Display seamless & interactive videos."
msgstr "Nahtlose & interaktive Videos anzeigen."

#: inc/widgets-manager/base/widgets-config.php:1050
msgid "SureForms"
msgstr "SureForms"

#: inc/widgets-manager/base/widgets-config.php:1051
msgid "Create high-converting forms with ease."
msgstr "Erstellen Sie mühelos hochkonvertierende Formulare."

#: inc/widgets-manager/base/widgets-config.php:1064
msgid "SureTriggers"
msgstr "SureTriggers"

#: inc/widgets-manager/base/widgets-config.php:1065
msgid "Automate WordPress tasks effortlessly."
msgstr "Automatisieren Sie WordPress-Aufgaben mühelos."

#: inc/widgets-manager/base/widgets-config.php:1078
msgid "Schema – All In One Schema Rich Snippets"
msgstr "Schema – Alle In One Schema Rich Snippets"

#: inc/widgets-manager/base/widgets-config.php:1079
msgid "Boost SEO with rich results & structured data."
msgstr "Verbessern Sie SEO mit reichhaltigen Ergebnissen & strukturierten Daten."

#: inc/widgets-manager/class-widgets-loader.php:190
msgid "Ultimate Addons"
msgstr "Ultimate Addons"

#: inc/widgets-manager/class-widgets-loader.php:285
msgid "Invalid SVG Format, file not uploaded for security reasons!"
msgstr "Ungültiges SVG-Format, Datei aus Sicherheitsgründen nicht hochgeladen!"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:111
msgid "Enable Scroll To Top"
msgstr "Scrollen nach oben aktivieren"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:113
#: inc/widgets-manager/extensions/class-scroll-to-top.php:321
#: inc/widgets-manager/widgets/cart/cart.php:150
#: inc/widgets-manager/widgets/cart/cart.php:166
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:225
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:242
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:534
#: inc/widgets-manager/widgets/site-logo/site-logo.php:142
#: inc/widgets-manager/widgets/site-logo/site-logo.php:208
#: inc/widgets-manager/widgets/site-logo/site-logo.php:270
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:243
#: build/main.js:52488
msgid "Yes"
msgstr "Ja"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:114
#: inc/widgets-manager/extensions/class-scroll-to-top.php:322
#: inc/widgets-manager/widgets/cart/cart.php:151
#: inc/widgets-manager/widgets/cart/cart.php:167
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:226
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:243
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:535
#: inc/widgets-manager/widgets/site-logo/site-logo.php:143
#: inc/widgets-manager/widgets/site-logo/site-logo.php:207
#: inc/widgets-manager/widgets/site-logo/site-logo.php:271
msgid "No"
msgstr "Nein"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:130
msgid "Responsive Support"
msgstr "Reaktionsschneller Support"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:133
msgid "Show"
msgstr "Anzeigen"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:134
msgid "Hide"
msgstr "Ausblenden"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:179
msgid "Position"
msgstr "Position"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:184
msgid "Bottom Left"
msgstr "Unten Links"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:185
msgid "Bottom Right"
msgstr "Unten Rechts"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:197
msgid "Bottom"
msgstr "Unten"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:229
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:159
#: inc/widgets-manager/widgets/cart/cart.php:185
#: inc/widgets-manager/widgets/copyright/copyright.php:134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:282
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:313
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:348
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:384
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:499
#: inc/widgets-manager/widgets/page-title/page-title.php:245
#: inc/widgets-manager/widgets/retina/retina.php:155
#: inc/widgets-manager/widgets/site-logo/site-logo.php:181
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:169
#: inc/widgets-manager/widgets/site-title/site-title.php:237
msgid "Left"
msgstr "Links"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:263
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:167
#: inc/widgets-manager/widgets/cart/cart.php:193
#: inc/widgets-manager/widgets/copyright/copyright.php:142
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:290
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:314
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:356
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:392
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:507
#: inc/widgets-manager/widgets/page-title/page-title.php:253
#: inc/widgets-manager/widgets/retina/retina.php:163
#: inc/widgets-manager/widgets/site-logo/site-logo.php:189
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:177
#: inc/widgets-manager/widgets/site-title/site-title.php:245
msgid "Right"
msgstr "Rechts"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:296
#: inc/widgets-manager/widgets/post-info/post-info.php:580
msgid "Height"
msgstr "Höhe"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:319
#: inc/widgets-manager/widgets/post-info/post-info.php:551
#: inc/widgets-manager/widgets/retina/retina.php:253
#: inc/widgets-manager/widgets/search-button/search-button.php:229
#: inc/widgets-manager/widgets/search-button/search-button.php:778
#: inc/widgets-manager/widgets/site-logo/site-logo.php:308
msgid "Width"
msgstr "Breite"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:341
msgid "Z Index"
msgstr "Z-Index"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:363
#: inc/widgets-manager/widgets/retina/retina.php:419
#: inc/widgets-manager/widgets/retina/retina.php:453
#: inc/widgets-manager/widgets/site-logo/site-logo.php:483
#: inc/widgets-manager/widgets/site-logo/site-logo.php:517
msgid "Opacity"
msgstr "Opazität"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:384
msgid "Media Type"
msgstr "Medientyp"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:389
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:414
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:204
#: inc/widgets-manager/widgets/cart/cart.php:113
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:566
#: inc/widgets-manager/widgets/page-title/page-title.php:353
#: inc/widgets-manager/widgets/post-info/post-info.php:366
#: inc/widgets-manager/widgets/post-info/post-info.php:638
#: inc/widgets-manager/widgets/search-button/search-button.php:153
#: inc/widgets-manager/widgets/search-button/search-button.php:803
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:137
#: inc/widgets-manager/widgets/site-title/site-title.php:140
#: inc/widgets-manager/widgets/site-title/site-title.php:345
msgid "Icon"
msgstr "Symbol"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:393
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:431
msgid "Image"
msgstr "Bild"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:397
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:447
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:203
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:827
#: inc/widgets-manager/widgets/post-info/post-info.php:693
msgid "Text"
msgstr "Text"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:462
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:512
#: inc/widgets-manager/widgets/cart/cart.php:239
#: inc/widgets-manager/widgets/page-title/page-title.php:224
#: inc/widgets-manager/widgets/post-info/post-info.php:259
#: inc/widgets-manager/widgets/post-info/post-info.php:659
#: inc/widgets-manager/widgets/search-button/search-button.php:176
#: inc/widgets-manager/widgets/search-button/search-button.php:894
#: inc/widgets-manager/widgets/site-title/site-title.php:199
msgid "Size"
msgstr "Größe"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:523
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:366
#: inc/widgets-manager/widgets/cart/cart.php:315
#: inc/widgets-manager/widgets/cart/cart.php:513
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:923
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1127
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1500
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1693
#: inc/widgets-manager/widgets/page-title/page-title.php:328
#: inc/widgets-manager/widgets/retina/retina.php:412
#: inc/widgets-manager/widgets/search-button/search-button.php:255
#: inc/widgets-manager/widgets/search-button/search-button.php:661
#: inc/widgets-manager/widgets/search-button/search-button.php:816
#: inc/widgets-manager/widgets/search-button/search-button.php:921
#: inc/widgets-manager/widgets/site-logo/site-logo.php:476
#: inc/widgets-manager/widgets/site-title/site-title.php:320
msgid "Normal"
msgstr "Normal"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:533
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:590
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:373
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:439
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:499
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:563
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1507
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1539
#: inc/widgets-manager/widgets/page-title/page-title.php:301
#: inc/widgets-manager/widgets/post-info/post-info.php:610
#: inc/widgets-manager/widgets/post-info/post-info.php:646
#: inc/widgets-manager/widgets/search-button/search-button.php:823
#: inc/widgets-manager/widgets/search-button/search-button.php:843
#: inc/widgets-manager/widgets/search-button/search-button.php:927
#: inc/widgets-manager/widgets/search-button/search-button.php:952
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:205
#: inc/widgets-manager/widgets/site-title/site-title.php:293
msgid "Color"
msgstr "Farbe"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:563
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:620
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:464
#: inc/widgets-manager/widgets/cart/cart.php:358
#: inc/widgets-manager/widgets/cart/cart.php:414
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1446
#: inc/widgets-manager/widgets/retina/retina.php:368
#: inc/widgets-manager/widgets/search-button/search-button.php:349
#: inc/widgets-manager/widgets/search-button/search-button.php:493
#: inc/widgets-manager/widgets/search-button/search-button.php:583
#: inc/widgets-manager/widgets/site-logo/site-logo.php:432
msgid "Border Color"
msgstr "Randfarbe"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:580
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:432
#: inc/widgets-manager/widgets/cart/cart.php:371
#: inc/widgets-manager/widgets/cart/cart.php:550
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:962
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1170
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1532
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1760
#: inc/widgets-manager/widgets/retina/retina.php:447
#: inc/widgets-manager/widgets/search-button/search-button.php:701
#: inc/widgets-manager/widgets/search-button/search-button.php:836
#: inc/widgets-manager/widgets/search-button/search-button.php:945
#: inc/widgets-manager/widgets/site-logo/site-logo.php:511
msgid "Hover"
msgstr "Hover"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:638
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:418
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:607
#: inc/widgets-manager/widgets/cart/cart.php:277
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1285
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1603
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1738
#: inc/widgets-manager/widgets/retina/retina.php:386
#: inc/widgets-manager/widgets/search-button/search-button.php:391
#: inc/widgets-manager/widgets/search-button/search-button.php:622
#: inc/widgets-manager/widgets/site-logo/site-logo.php:450
msgid "Border Radius"
msgstr "Randradius"

#: inc/widgets-manager/extensions/class-scroll-to-top.php:318
msgid "Disable Scroll to Top For This Page"
msgstr "Scrollen nach oben für diese Seite deaktivieren"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:118
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:324
#: inc/widgets-manager/widgets/post-info/post-info.php:100
#: inc/widgets-manager/widgets/site-title/site-title.php:111
msgid "General"
msgstr "Allgemein"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:125
msgid "Show Home"
msgstr "Startseite anzeigen"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:127
#: inc/widgets-manager/widgets/post-info/post-info.php:494
msgid "On"
msgstr "Ein"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:128
#: inc/widgets-manager/widgets/post-info/post-info.php:493
msgid "Off"
msgstr "Aus"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:137
msgid "Home Icon"
msgstr "Startseiten-Symbol"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:154
#: inc/widgets-manager/widgets/cart/cart.php:181
#: inc/widgets-manager/widgets/copyright/copyright.php:130
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:278
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:495
#: inc/widgets-manager/widgets/page-title/page-title.php:241
#: inc/widgets-manager/widgets/post-info/post-info.php:466
#: inc/widgets-manager/widgets/retina/retina.php:151
#: inc/widgets-manager/widgets/site-logo/site-logo.php:177
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:165
#: inc/widgets-manager/widgets/site-title/site-title.php:233
msgid "Alignment"
msgstr "Ausrichtung"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:163
#: inc/widgets-manager/widgets/cart/cart.php:189
#: inc/widgets-manager/widgets/copyright/copyright.php:138
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:286
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:352
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:388
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:503
#: inc/widgets-manager/widgets/page-title/page-title.php:249
#: inc/widgets-manager/widgets/post-info/post-info.php:474
#: inc/widgets-manager/widgets/retina/retina.php:159
#: inc/widgets-manager/widgets/site-logo/site-logo.php:185
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:173
#: inc/widgets-manager/widgets/site-title/site-title.php:241
msgid "Center"
msgstr "Zentrieren"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:192
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:212
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:224
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:491
#: inc/widgets-manager/widgets/post-info/post-info.php:491
msgid "Separator"
msgstr "Trenner"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:199
msgid "Separator Type"
msgstr "Trennertyp"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:214
msgid "»"
msgstr "»"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:265
msgid "Display Text"
msgstr "Anzeigetext"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:272
msgid "Home Page"
msgstr "Startseite"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:274
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:658
msgid "Home"
msgstr "Start"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:287
msgid "Search results for:"
msgstr "Suchergebnisse für:"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:300
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:661
msgid "Error 404: Page not found"
msgstr "Fehler 404: Seite nicht gefunden"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:332
msgid "Spacing between Items"
msgstr "Abstand zwischen Elementen"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:351
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:619
#: inc/widgets-manager/widgets/cart/cart.php:297
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1678
#: inc/widgets-manager/widgets/retina/retina.php:572
#: inc/widgets-manager/widgets/site-logo/site-logo.php:637
msgid "Padding"
msgstr "Polsterung"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:386
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:452
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:575
#: inc/widgets-manager/widgets/cart/cart.php:347
#: inc/widgets-manager/widgets/cart/cart.php:403
#: inc/widgets-manager/widgets/cart/cart.php:534
#: inc/widgets-manager/widgets/cart/cart.php:571
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:803
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:945
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:987
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1050
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1151
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1194
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1237
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1519
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1552
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1713
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1779
#: inc/widgets-manager/widgets/retina/retina.php:542
#: inc/widgets-manager/widgets/search-button/search-button.php:300
#: inc/widgets-manager/widgets/search-button/search-button.php:460
#: inc/widgets-manager/widgets/search-button/search-button.php:527
#: inc/widgets-manager/widgets/search-button/search-button.php:719
#: inc/widgets-manager/widgets/site-logo/site-logo.php:380
#: inc/widgets-manager/widgets/site-logo/site-logo.php:607
msgid "Background Color"
msgstr "Hintergrundfarbe"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:399
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:532
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:588
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1668
msgid "Typography"
msgstr "Typografie"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:408
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:597
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1730
msgid "Border"
msgstr "Rand"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:555
msgid "Current Item"
msgstr "Aktuelles Element"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:662
msgid "Search results for: "
msgstr "Suchergebnisse für:"

#: inc/widgets-manager/widgets/cart/cart.php:93
#: inc/widgets-manager/widgets/cart/cart.php:218
msgid "Menu Cart"
msgstr "Menü-Warenkorb"

#: inc/widgets-manager/widgets/cart/cart.php:100
#: inc/widgets-manager/widgets/post-info/post-info.php:130
msgid "Type"
msgstr "Typ"

#: inc/widgets-manager/widgets/cart/cart.php:104
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:210
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:436
#: inc/widgets-manager/widgets/page-title/page-title.php:179
#: inc/widgets-manager/widgets/page-title/page-title.php:228
#: inc/widgets-manager/widgets/post-info/post-info.php:116
#: inc/widgets-manager/widgets/post-info/post-info.php:370
#: inc/widgets-manager/widgets/site-logo/site-logo.php:238
#: inc/widgets-manager/widgets/site-logo/site-logo.php:269
#: inc/widgets-manager/widgets/site-title/site-title.php:172
#: inc/widgets-manager/widgets/site-title/site-title.php:203
msgid "Default"
msgstr "Standard"

#: inc/widgets-manager/widgets/cart/cart.php:105
#: inc/widgets-manager/widgets/post-info/post-info.php:139
#: inc/widgets-manager/widgets/post-info/post-info.php:156
#: inc/widgets-manager/widgets/post-info/post-info.php:194
#: inc/widgets-manager/widgets/post-info/post-info.php:325
#: inc/widgets-manager/widgets/post-info/post-info.php:371
msgid "Custom"
msgstr "Benutzerdefiniert"

#: inc/widgets-manager/widgets/cart/cart.php:116
msgid "Bag Light"
msgstr "Tasche leicht"

#: inc/widgets-manager/widgets/cart/cart.php:117
msgid "Bag Medium"
msgstr "Tasche mittel"

#: inc/widgets-manager/widgets/cart/cart.php:118
msgid "Bag Solid"
msgstr "Tasche fest"

#: inc/widgets-manager/widgets/cart/cart.php:131
#: inc/widgets-manager/widgets/cart/cart.php:474
msgid "Items Count"
msgstr "Anzahl der Elemente"

#: inc/widgets-manager/widgets/cart/cart.php:134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:482
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:822
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1430
#: inc/widgets-manager/widgets/page-title/page-title.php:180
#: inc/widgets-manager/widgets/post-info/post-info.php:369
#: inc/widgets-manager/widgets/retina/retina.php:181
#: inc/widgets-manager/widgets/retina/retina.php:212
#: inc/widgets-manager/widgets/retina/retina.php:332
#: inc/widgets-manager/widgets/search-button/search-button.php:331
#: inc/widgets-manager/widgets/search-button/search-button.php:565
#: inc/widgets-manager/widgets/site-logo/site-logo.php:239
#: inc/widgets-manager/widgets/site-logo/site-logo.php:396
msgid "None"
msgstr "Keine"

#: inc/widgets-manager/widgets/cart/cart.php:135
msgid "Bubble"
msgstr "Blase"

#: inc/widgets-manager/widgets/cart/cart.php:148
msgid "Show Total Price"
msgstr "Gesamtpreis anzeigen"

#: inc/widgets-manager/widgets/cart/cart.php:164
msgid "Hide Empty"
msgstr "Leer ausblenden"

#: inc/widgets-manager/widgets/cart/cart.php:170
msgid "This will hide the items count until the cart is empty"
msgstr "Dies blendet die Anzahl der Elemente aus, bis der Warenkorb leer ist"

#: inc/widgets-manager/widgets/cart/cart.php:258
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1463
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1586
#: inc/widgets-manager/widgets/retina/retina.php:346
#: inc/widgets-manager/widgets/search-button/search-button.php:368
#: inc/widgets-manager/widgets/search-button/search-button.php:599
#: inc/widgets-manager/widgets/site-logo/site-logo.php:410
msgid "Border Width"
msgstr "Randbreite"

#: inc/widgets-manager/widgets/cart/cart.php:322
#: inc/widgets-manager/widgets/cart/cart.php:378
#: inc/widgets-manager/widgets/cart/cart.php:520
#: inc/widgets-manager/widgets/cart/cart.php:557
#: inc/widgets-manager/widgets/copyright/copyright.php:156
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:930
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:969
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1037
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1177
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1220
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1700
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1767
#: inc/widgets-manager/widgets/post-info/post-info.php:722
#: inc/widgets-manager/widgets/retina/retina.php:527
#: inc/widgets-manager/widgets/search-button/search-button.php:265
#: inc/widgets-manager/widgets/search-button/search-button.php:428
#: inc/widgets-manager/widgets/search-button/search-button.php:512
#: inc/widgets-manager/widgets/site-logo/site-logo.php:592
msgid "Text Color"
msgstr "Textfarbe"

#: inc/widgets-manager/widgets/cart/cart.php:333
#: inc/widgets-manager/widgets/cart/cart.php:389
#: inc/widgets-manager/widgets/page-title/page-title.php:364
#: inc/widgets-manager/widgets/search-button/search-button.php:668
#: inc/widgets-manager/widgets/search-button/search-button.php:708
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:221
#: inc/widgets-manager/widgets/site-title/site-title.php:355
msgid "Icon Color"
msgstr "Symbolfarbe"

#: inc/widgets-manager/widgets/cart/cart.php:428
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1567
#: inc/widgets-manager/widgets/search-button/search-button.php:751
#: inc/widgets-manager/widgets/search-button/search-button.php:858
msgid "Icon Size"
msgstr "Symbolgröße"

#: inc/widgets-manager/widgets/cart/cart.php:450
#: inc/widgets-manager/widgets/page-title/page-title.php:156
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:146
#: inc/widgets-manager/widgets/site-title/site-title.php:149
msgid "Icon Spacing"
msgstr "Symbolabstand"

#: inc/widgets-manager/widgets/cart/cart.php:487
msgid "Distance"
msgstr "Abstand"

#: inc/widgets-manager/widgets/copyright/copyright.php:109
msgid "Copyright Text"
msgstr "Copyright-Text"

#: inc/widgets-manager/widgets/copyright/copyright.php:114
msgid "Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]"
msgstr "Copyright © [hfe_current_year] [hfe_site_title] | Bereitgestellt von [hfe_site_title]"

#: inc/widgets-manager/widgets/copyright/copyright.php:121
#: inc/widgets-manager/widgets/page-title/page-title.php:175
#: inc/widgets-manager/widgets/page-title/page-title.php:189
#: inc/widgets-manager/widgets/post-info/post-info.php:340
#: inc/widgets-manager/widgets/retina/retina.php:208
#: inc/widgets-manager/widgets/retina/retina.php:221
#: inc/widgets-manager/widgets/site-logo/site-logo.php:234
#: inc/widgets-manager/widgets/site-logo/site-logo.php:249
#: inc/widgets-manager/widgets/site-title/site-title.php:168
#: inc/widgets-manager/widgets/site-title/site-title.php:181
msgid "Link"
msgstr "Link"

#: inc/widgets-manager/widgets/copyright/copyright.php:123
#: inc/widgets-manager/widgets/page-title/page-title.php:191
#: inc/widgets-manager/widgets/retina/retina.php:226
#: inc/widgets-manager/widgets/site-logo/site-logo.php:254
#: inc/widgets-manager/widgets/site-title/site-title.php:183
msgid "https://your-link.com"
msgstr "https://your-link.com"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:173
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:183
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:2013
msgid "Menu"
msgstr "Menü"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:189
#. translators: %s Nav menu URL
msgid "Go to the <a href=\"%s\" target=\"_blank\">Menus screen</a> to manage your menus."
msgstr "Gehen Sie zum <a href=\"%s\" target=\"_blank\">Menübildschirm</a>, um Ihre Menüs zu verwalten."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:198
#. translators: %s Nav menu URL
msgid ""
"<strong>There are no menus in your site.</strong><br>Go to the <a href=\"%s\" target=\"_blank\">Menus screen</a> to "
"create one."
msgstr ""
"<strong>Es gibt keine Menüs auf Ihrer Website.</strong><br>Gehen Sie zum <a href=\"%s\" "
"target=\"_blank\">Menübildschirm</a>, um eines zu erstellen."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:207
msgid "Last Menu Item"
msgstr "Letztes Menüelement"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:211
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1656
#: inc/widgets-manager/widgets/search-button/search-button.php:648
msgid "Button"
msgstr "Schaltfläche"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:223
msgid "Enable Schema Support"
msgstr "Schema-Unterstützung aktivieren"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:240
msgid "Hide + & - Sign"
msgstr "+ & - Zeichen ausblenden"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:256
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:263
#: inc/widgets-manager/widgets/post-info/post-info.php:107
#: inc/widgets-manager/widgets/search-button/search-button.php:148
msgid "Layout"
msgstr "Layout"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:267
msgid "Horizontal"
msgstr "Horizontal"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:268
msgid "Vertical"
msgstr "Vertikal"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:269
msgid "Expanded"
msgstr "Erweitert"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:270
msgid "Flyout"
msgstr "Flyout"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:294
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:396
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:181
#: inc/widgets-manager/widgets/site-title/site-title.php:249
msgid "Justify"
msgstr "Rechtsbündig"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:309
msgid "Flyout Orientation"
msgstr "Flyout-Ausrichtung"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:325
msgid "Appear Effect"
msgstr "Erscheinungseffekt"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:330
msgid "Slide"
msgstr "Rutschen"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:331
msgid "Push"
msgstr "Schieben"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:343
msgid "Hamburger Align"
msgstr "Hamburger-Ausrichtung"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:380
msgid "Menu Items Align"
msgstr "Ausrichtung der Menüelemente"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:417
msgid "Submenu Icon"
msgstr "Untermenü-Icon"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:421
msgid "Arrows"
msgstr "Pfeile"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:422
msgid "Plus Sign"
msgstr "Pluszeichen"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:423
msgid "Classic"
msgstr "Klassisch"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:432
msgid "Submenu Animation"
msgstr "Untermenü-Animation"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:437
msgid "Slide Up"
msgstr "Nach oben rutschen"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:449
msgid "Action On Menu Click"
msgstr "Aktion beim Klicken auf das Menü"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:452
msgid "For Horizontal layout, this will affect on the selected breakpoint"
msgstr "Für das horizontale Layout hat dies Auswirkungen auf den ausgewählten Breakpoint"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:454
msgid "Open Submenu"
msgstr "Untermenü öffnen"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:455
msgid "Redirect To Self Link"
msgstr "Zu sich selbst umleiten"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:465
msgid "Responsive"
msgstr "Reaktionsfähig"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:476
msgid "Breakpoint"
msgstr "Breakpoint"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:480
msgid "Mobile (768px >)"
msgstr "Mobil (768px >)"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:481
msgid "Tablet (1025px >)"
msgstr "Tablet (1025px >)"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:512
msgid "This is the alignement of menu icon on selected responsive breakpoints."
msgstr "Dies ist die Ausrichtung des Menü-Icons an den ausgewählten responsiven Breakpoints."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:531
msgid "Full Width"
msgstr "Volle Breite"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:532
msgid "Enable this option to stretch the Sub Menu to Full Width."
msgstr "Aktivieren Sie diese Option, um das Untermenü auf volle Breite zu strecken."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:550
msgid "Menu Icon"
msgstr "Menü-Icon"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:581
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:597
#: inc/widgets-manager/widgets/search-button/search-button.php:883
msgid "Close Icon"
msgstr "Schließen-Icon"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:623
msgid "Main Menu"
msgstr "Hauptmenü"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:634
msgid "Flyout Box Width"
msgstr "Flyout-Box-Breite"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:662
msgid "Flyout Box Padding"
msgstr "Flyout-Box-Padding"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:686
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1345
msgid "Horizontal Padding"
msgstr "Horizontales Padding"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:712
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1368
msgid "Vertical Padding"
msgstr "Vertikales Padding"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:734
#: inc/widgets-manager/widgets/post-info/post-info.php:446
msgid "Space Between"
msgstr "Abstand zwischen"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:761
msgid "Row Spacing"
msgstr "Reihenabstand"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:782
msgid "Menu Item Top Spacing"
msgstr "Abstand oben für Menüelement"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:818
msgid "Link Hover Effect"
msgstr "Link-Hover-Effekt"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:823
msgid "Underline"
msgstr "Unterstrichen"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:824
msgid "Overline"
msgstr "Überstrichen"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:825
msgid "Double Line"
msgstr "Doppelte Linie"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:826
msgid "Framed"
msgstr "Rahmen"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:838
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:880
msgid "Animation"
msgstr "Animation"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:859
msgid "Frame Animation"
msgstr "Rahmenanimation"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1005
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1066
msgid "Link Hover Effect Color"
msgstr "Farbe des Link-Hover-Effekts"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1102
msgid "Dropdown"
msgstr "Dropdown"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1110
msgid "<b>Note:</b> On desktop, below style options will apply to the submenu. On mobile, this will apply to the entire menu."
msgstr ""
"<b>Hinweis:</b> Auf dem Desktop gelten die folgenden Stiloptionen für das Untermenü. Auf Mobilgeräten gilt dies für das "
"gesamte Menü."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1320
msgid "Dropdown Width (px)"
msgstr "Dropdown-Breite (px)"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1394
msgid "Top Distance"
msgstr "Abstand nach oben"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1416
msgid "Divider"
msgstr "Trenner"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1425
#: inc/widgets-manager/widgets/retina/retina.php:327
#: inc/widgets-manager/widgets/search-button/search-button.php:326
#: inc/widgets-manager/widgets/search-button/search-button.php:560
#: inc/widgets-manager/widgets/site-logo/site-logo.php:391
msgid "Border Style"
msgstr "Rahmenstil"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1431
#: inc/widgets-manager/widgets/post-info/post-info.php:508
#: inc/widgets-manager/widgets/retina/retina.php:333
#: inc/widgets-manager/widgets/search-button/search-button.php:332
#: inc/widgets-manager/widgets/search-button/search-button.php:566
#: inc/widgets-manager/widgets/site-logo/site-logo.php:397
msgid "Solid"
msgstr "Durchgehend"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1432
#: inc/widgets-manager/widgets/post-info/post-info.php:509
#: inc/widgets-manager/widgets/retina/retina.php:334
#: inc/widgets-manager/widgets/search-button/search-button.php:333
#: inc/widgets-manager/widgets/search-button/search-button.php:567
#: inc/widgets-manager/widgets/site-logo/site-logo.php:398
msgid "Double"
msgstr "Doppelt"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1433
#: inc/widgets-manager/widgets/post-info/post-info.php:510
#: inc/widgets-manager/widgets/retina/retina.php:335
#: inc/widgets-manager/widgets/search-button/search-button.php:334
#: inc/widgets-manager/widgets/search-button/search-button.php:568
#: inc/widgets-manager/widgets/site-logo/site-logo.php:399
msgid "Dotted"
msgstr "Gepunktet"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1434
#: inc/widgets-manager/widgets/post-info/post-info.php:511
#: inc/widgets-manager/widgets/retina/retina.php:336
#: inc/widgets-manager/widgets/search-button/search-button.php:335
#: inc/widgets-manager/widgets/search-button/search-button.php:569
#: inc/widgets-manager/widgets/site-logo/site-logo.php:400
msgid "Dashed"
msgstr "Gestrichelt"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1490
msgid "Menu Trigger & Close Icon"
msgstr "Menüauslöser & Schließen-Icon"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1616
msgid "Close Icon Color"
msgstr "Farbe des Schließen-Icons"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1634
msgid "Close Icon Size"
msgstr "Größe des Schließen-Icons"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1795
msgid "Border Hover Color"
msgstr "Rahmen-Hover-Farbe"

#: inc/widgets-manager/widgets/page-title/page-title.php:108
#: inc/widgets-manager/widgets/page-title/page-title.php:282
#: inc/widgets-manager/widgets/site-title/site-title.php:276
msgid "Title"
msgstr "Titel"

#: inc/widgets-manager/widgets/page-title/page-title.php:117
#. translators: %1$s doc link
msgid "<b>Note:</b> Archive page title will be visible on frontend."
msgstr "<b>Hinweis:</b> Der Titel der Archivseite wird auf der Frontend sichtbar sein."

#: inc/widgets-manager/widgets/page-title/page-title.php:125
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:113
#: inc/widgets-manager/widgets/site-title/site-title.php:118
msgid "Before Title Text"
msgstr "Text vor dem Titel"

#: inc/widgets-manager/widgets/page-title/page-title.php:136
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:125
#: inc/widgets-manager/widgets/site-title/site-title.php:129
msgid "After Title Text"
msgstr "Text nach dem Titel"

#: inc/widgets-manager/widgets/page-title/page-title.php:147
msgid "Select Icon"
msgstr "Icon auswählen"

#: inc/widgets-manager/widgets/page-title/page-title.php:178
#: inc/widgets-manager/widgets/post-info/post-info.php:352
#: inc/widgets-manager/widgets/retina/retina.php:213
#: inc/widgets-manager/widgets/site-logo/site-logo.php:241
#: inc/widgets-manager/widgets/site-title/site-title.php:171
msgid "Custom URL"
msgstr "Benutzerdefinierte URL"

#: inc/widgets-manager/widgets/page-title/page-title.php:207
#: inc/widgets-manager/widgets/site-title/site-title.php:216
msgid "HTML Tag"
msgstr "HTML-Tag"

#: inc/widgets-manager/widgets/page-title/page-title.php:210
#: inc/widgets-manager/widgets/site-title/site-title.php:219
msgid "H1"
msgstr "H1"

#: inc/widgets-manager/widgets/page-title/page-title.php:211
#: inc/widgets-manager/widgets/site-title/site-title.php:220
msgid "H2"
msgstr "H2"

#: inc/widgets-manager/widgets/page-title/page-title.php:212
#: inc/widgets-manager/widgets/site-title/site-title.php:221
msgid "H3"
msgstr "H3"

#: inc/widgets-manager/widgets/page-title/page-title.php:213
#: inc/widgets-manager/widgets/site-title/site-title.php:222
msgid "H4"
msgstr "H4"

#: inc/widgets-manager/widgets/page-title/page-title.php:214
#: inc/widgets-manager/widgets/site-title/site-title.php:223
msgid "H5"
msgstr "H5"

#: inc/widgets-manager/widgets/page-title/page-title.php:215
#: inc/widgets-manager/widgets/site-title/site-title.php:224
msgid "H6"
msgstr "H6"

#: inc/widgets-manager/widgets/page-title/page-title.php:229
#: inc/widgets-manager/widgets/site-title/site-title.php:204
msgid "Small"
msgstr "Klein"

#: inc/widgets-manager/widgets/page-title/page-title.php:230
#: inc/widgets-manager/widgets/site-title/site-title.php:205
msgid "Medium"
msgstr "Mittel"

#: inc/widgets-manager/widgets/page-title/page-title.php:231
#: inc/widgets-manager/widgets/site-title/site-title.php:206
msgid "Large"
msgstr "Groß"

#: inc/widgets-manager/widgets/page-title/page-title.php:232
#: inc/widgets-manager/widgets/site-title/site-title.php:207
msgid "XL"
msgstr "XL"

#: inc/widgets-manager/widgets/page-title/page-title.php:233
#: inc/widgets-manager/widgets/site-title/site-title.php:208
msgid "XXL"
msgstr "XXL"

#: inc/widgets-manager/widgets/page-title/page-title.php:257
msgid "Justified"
msgstr "Rechtsbündig"

#: inc/widgets-manager/widgets/page-title/page-title.php:325
#: inc/widgets-manager/widgets/site-title/site-title.php:317
msgid "Blend Mode"
msgstr "Mischmodus"

#: inc/widgets-manager/widgets/page-title/page-title.php:382
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:239
#: inc/widgets-manager/widgets/site-title/site-title.php:373
msgid "Icon Hover Color"
msgstr "Farbe des Icon-Hover-Effekts"

#: inc/widgets-manager/widgets/post-info/post-info.php:112
msgid "Inline"
msgstr "Inline"

#: inc/widgets-manager/widgets/post-info/post-info.php:134
msgid "Author"
msgstr "Autor"

#: inc/widgets-manager/widgets/post-info/post-info.php:135
msgid "Time"
msgstr "Zeit"

#: inc/widgets-manager/widgets/post-info/post-info.php:137
msgid "Terms"
msgstr "Begriffe"

#: inc/widgets-manager/widgets/post-info/post-info.php:138
#: inc/widgets-manager/widgets/post-info/post-info.php:311
msgid "Comments"
msgstr "Kommentare"

#: inc/widgets-manager/widgets/post-info/post-info.php:147
msgid "Date Format"
msgstr "Datumsformat"

#: inc/widgets-manager/widgets/post-info/post-info.php:168
msgid "Custom Date Format"
msgstr "Benutzerdefiniertes Datumsformat"

#: inc/widgets-manager/widgets/post-info/post-info.php:177
#: inc/widgets-manager/widgets/post-info/post-info.php:214
#. translators: %s: Allowed data letters (see: http://php.net/manual/en/function.date.php).
#. translators: %s: Allowed time letters (see: http://php.net/manual/en/function.time.php).
msgid "Use the letters: %s"
msgstr "Verwenden Sie die Buchstaben: %s"

#: inc/widgets-manager/widgets/post-info/post-info.php:186
msgid "Time Format"
msgstr "Zeitformat"

#: inc/widgets-manager/widgets/post-info/post-info.php:204
msgid "Custom Time Format"
msgstr "Benutzerdefiniertes Zeitformat"

#: inc/widgets-manager/widgets/post-info/post-info.php:223
msgid "Taxonomy"
msgstr "Taxonomie"

#: inc/widgets-manager/widgets/post-info/post-info.php:237
msgid "Before"
msgstr "Vor"

#: inc/widgets-manager/widgets/post-info/post-info.php:248
msgid "Avatar"
msgstr "Avatar"

#: inc/widgets-manager/widgets/post-info/post-info.php:273
msgid "Custom Format"
msgstr "Benutzerdefiniertes Format"

#: inc/widgets-manager/widgets/post-info/post-info.php:285
#: inc/widgets-manager/widgets/post-info/post-info.php:287
#: inc/widgets-manager/widgets/post-info/post-info.php:904
msgid "No Comments"
msgstr "Keine Kommentare"

#: inc/widgets-manager/widgets/post-info/post-info.php:298
#: inc/widgets-manager/widgets/post-info/post-info.php:300
#: inc/widgets-manager/widgets/post-info/post-info.php:905
msgid "One Comment"
msgstr "Ein Kommentar"

#: inc/widgets-manager/widgets/post-info/post-info.php:314
#: inc/widgets-manager/widgets/post-info/post-info.php:907
#. translators: %s: Number of comments.
msgid "%s Comments"
msgstr "%s Kommentare"

#: inc/widgets-manager/widgets/post-info/post-info.php:383
msgid "Choose Icon"
msgstr "Icon auswählen"

#: inc/widgets-manager/widgets/post-info/post-info.php:439
msgid "List Items"
msgstr "Listenelemente"

#: inc/widgets-manager/widgets/post-info/post-info.php:470
msgid "Start"
msgstr "Start"

#: inc/widgets-manager/widgets/post-info/post-info.php:478
msgid "End"
msgstr "Ende"

#: inc/widgets-manager/widgets/post-info/post-info.php:505
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:106
msgid "Style"
msgstr "Stil"

#: inc/widgets-manager/widgets/post-info/post-info.php:527
msgid "Weight"
msgstr "Gewicht"

#: inc/widgets-manager/widgets/post-info/post-info.php:701
msgid "Spacing between Icon & Text"
msgstr "Abstand zwischen Icon & Text"

#: inc/widgets-manager/widgets/post-info/post-info.php:759
msgid "Choose"
msgstr "Wählen"

#: inc/widgets-manager/widgets/post-info/post-info.php:926
msgid "%s comment"
msgid_plural "%s comments"
msgstr[0] "%s Kommentar"
msgstr[1] ""

#: inc/widgets-manager/widgets/retina/retina.php:117
msgid "Choose Default Image"
msgstr "Standardbild auswählen"

#: inc/widgets-manager/widgets/retina/retina.php:130
msgid "Choose Retina Image"
msgstr "Retina-Bild auswählen"

#: inc/widgets-manager/widgets/retina/retina.php:144
#: inc/widgets-manager/widgets/site-logo/site-logo.php:170
msgid "Image Size"
msgstr "Bildgröße"

#: inc/widgets-manager/widgets/retina/retina.php:178
#: inc/widgets-manager/widgets/retina/retina.php:516
#: inc/widgets-manager/widgets/site-logo/site-logo.php:204
#: inc/widgets-manager/widgets/site-logo/site-logo.php:581
msgid "Caption"
msgstr "Bildunterschrift"

#: inc/widgets-manager/widgets/retina/retina.php:182
#: inc/widgets-manager/widgets/retina/retina.php:191
#: inc/widgets-manager/widgets/site-logo/site-logo.php:217
msgid "Custom Caption"
msgstr "Benutzerdefinierte Bildunterschrift"

#: inc/widgets-manager/widgets/retina/retina.php:194
msgid "Enter your image caption"
msgstr "Geben Sie Ihre Bildunterschrift ein"

#: inc/widgets-manager/widgets/retina/retina.php:290
#: inc/widgets-manager/widgets/site-logo/site-logo.php:344
msgid "Max Width"
msgstr "Maximale Breite"

#: inc/widgets-manager/widgets/retina/retina.php:479
#: inc/widgets-manager/widgets/site-logo/site-logo.php:559
msgid "Hover Animation"
msgstr "Hover-Animation"

#: inc/widgets-manager/widgets/retina/retina.php:486
#: inc/widgets-manager/widgets/site-logo/site-logo.php:534
msgid "Transition Duration"
msgstr "Übergangszeit"

#: inc/widgets-manager/widgets/retina/retina.php:584
msgid "Caption Top Spacing"
msgstr "Abstand oben für Bildunterschrift"

#: inc/widgets-manager/widgets/retina/retina.php:619
msgid "Helpful Information"
msgstr "Hilfreiche Informationen"

#: inc/widgets-manager/widgets/retina/retina.php:628
#. translators: %1$s doc link
msgid "%1$s Getting started article » %2$s"
msgstr "%1$s Artikel zum Einstieg » %2$s"

#: inc/widgets-manager/widgets/search-button/search-button.php:141
msgid "Search Box"
msgstr "Suchfeld"

#: inc/widgets-manager/widgets/search-button/search-button.php:152
msgid "Input Box"
msgstr "Eingabefeld"

#: inc/widgets-manager/widgets/search-button/search-button.php:154
msgid "Input Box With Button"
msgstr "Eingabefeld mit Schaltfläche"

#: inc/widgets-manager/widgets/search-button/search-button.php:164
msgid "Placeholder"
msgstr "Platzhalter"

#: inc/widgets-manager/widgets/search-button/search-button.php:166
msgid "Type & Hit Enter"
msgstr "Tippen & Drücken Sie Enter"

#: inc/widgets-manager/widgets/search-button/search-button.php:210
msgid "Input"
msgstr "Eingabe"

#: inc/widgets-manager/widgets/search-button/search-button.php:282
#: inc/widgets-manager/widgets/search-button/search-button.php:443
msgid "Placeholder Color"
msgstr "Farbe des Platzhalters"

#: inc/widgets-manager/widgets/search-button/search-button.php:418
msgid "Focus"
msgstr "Fokus"

#: inc/widgets-manager/widgets/search-button/search-button.php:681
#: inc/widgets-manager/widgets/search-button/search-button.php:734
msgid "Background"
msgstr "Hintergrund"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:140
msgid "Custom Image"
msgstr "Benutzerdefiniertes Bild"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:152
msgid "Add Image"
msgstr "Bild hinzufügen"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:220
msgid "Enter caption"
msgstr "Bildunterschrift eingeben"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:240
msgid "Media File"
msgstr "Mediendatei"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:265
msgid "Lightbox"
msgstr "Lightbox"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:282
msgid "View"
msgstr "Ansehen"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:300
msgid "Site logo"
msgstr "Site-Logo"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:649
msgid "Spacing"
msgstr "Abstand"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:9
#: build/main.js:54247
msgid "Essentials"
msgstr "Wesentliches"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:11
#: build/main.js:54249
msgid "White Label Option"
msgstr "White-Label-Option"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:12
#: build/main.js:54250
msgid "24/7 Premium Support"
msgstr "24/7 Premium-Support"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:13
#: build/main.js:54251
msgid "Cross-Domain Copy-Paste"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:17
#: build/main.js:54255
msgid "Dynamic Header & Footer Widgets"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:32
#: build/main.js:54270
msgid "Creative & Advanced Design Widgets"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:37
#: build/main.js:54275
msgid "Multi-Button"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:38
#: build/main.js:54276
msgid "Image Hotspots"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:42
#: build/main.js:54280
msgid "Content & Media Widgets"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:44
#: build/main.js:54282
msgid "Content Toggle Button"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:50
#: build/main.js:54288
msgid "Before & After Slider"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:53
#: build/main.js:54291
msgid "Conditional Display"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:55
#: build/main.js:54293
msgid "User Registeration Form"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:59
#: build/main.js:54297
msgid "Marketing & Engagement Widgets"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:62
#: build/main.js:54300
msgid "Pricing Table"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:70
#: build/main.js:54308
msgid "E-Commerce Integration"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:72
#: build/main.js:54310
msgid "WooCommerce: Add to Cart"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:73
#: build/main.js:54311
msgid "WooCommerce: Product Category"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:74
#: build/main.js:54312
msgid "WooCommerce: Mini Cart"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:75
#: build/main.js:54313
msgid "WooCommerce: Product"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:76
#: build/main.js:54314
msgid "WooCommerce: Checkout"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:80
#: build/main.js:54318
msgid "Forms Integration"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:82
#: build/main.js:54320
msgid "Contact Form 7"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:83
#: build/main.js:54321
msgid "Gravity Forms"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:84
#: build/main.js:54322
msgid "WPForms"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:85
#: build/main.js:54323
msgid "Fluent Forms"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:89
#: build/main.js:54327
msgid "SEO Widgets"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:91
#: build/main.js:54329
msgid "FAQ with Schema"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:92
#: build/main.js:54330
msgid "How-To"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:98
#: build/main.js:54336
msgid "Creative Features"
msgstr ""

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:102
#: build/main.js:54340
msgid "Particles"
msgstr "Partikel"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:108
#: build/main.js:54346
msgid "Social Media Integration"
msgstr "Integration von sozialen Medien"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:116
#: build/main.js:54354
msgid "Advanced Features"
msgstr "Erweiterte Funktionen"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:120
#: build/main.js:54358
msgid "Post Layout"
msgstr "Beitragslayout"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:121
#: build/main.js:54359
msgid "Off Canvas"
msgstr "Off Canvas"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:168
#: build/main.js:54406
msgid "Free Vs Pro"
msgstr "Kostenlos vs. Pro"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:171
#: build/main.js:54409
msgid "Ultimate Addons for Elementor Pro offers 50+ widgets and features!"
msgstr "Ultimate Addons für Elementor Pro bietet über 50 Widgets und Funktionen!"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:174
#: build/main.js:54412
msgid "Compare the popular features/widgets to find the best option for your website."
msgstr "Vergleichen Sie die beliebten Funktionen/Widgets, um die beste Option für Ihre Website zu finden."

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:198
#: src/Components/Compare/UltimateCompare.jsx:109
#: src/Components/Dashboard/MyAccount.jsx:53
#: src/Components/Dashboard/UltimateFeatures.js:116
#: src/Components/Widgets/UltimateWidgets.jsx:116
#: build/main.js:52189
#: build/main.js:52786
#: build/main.js:54051
#: build/main.js:54436
#: build/main.js:54585
msgid "Upgrade Now"
msgstr "Jetzt upgraden"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:218
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:200
#: src/Components/NavMenu.js:233
#: src/Components/NavMenu.js:253
#: build/main.js:51108
#: build/main.js:51128
#: build/main.js:52445
#: build/main.js:54456
msgid "Free"
msgstr "Kostenlos"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:224
#: build/main.js:54462
msgid "Pro"
msgstr "Pro"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:22
#: src/Components/Dashboard/UltimateFeatures.js:23
#: src/Components/Widgets/UltimateWidgets.jsx:23
#: build/main.js:52096
#: build/main.js:52693
#: build/main.js:54498
msgid "Post Layouts"
msgstr "Beitragslayouts"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:32
#: src/Components/Dashboard/UltimateFeatures.js:33
#: src/Components/Widgets/UltimateWidgets.jsx:33
#: build/main.js:52106
#: build/main.js:52703
#: build/main.js:54508
msgid "Pricing Cards"
msgstr "Preiskarten"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:37
#: src/Components/Dashboard/UltimateFeatures.js:38
#: src/Components/Widgets/UltimateWidgets.jsx:38
#: build/main.js:52111
#: build/main.js:52708
#: build/main.js:54513
msgid "Form Stylers and more..."
msgstr "Form-Styler und mehr..."

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:55
#: src/Components/Dashboard/UltimateFeatures.js:135
#: src/Components/Widgets/UltimateWidgets.jsx:54
#: build/main.js:52208
#: build/main.js:52724
#: build/main.js:54531
msgid "Column Showcase"
msgstr "Spaltenpräsentation"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:68
#: src/Components/Dashboard/UltimateFeatures.js:62
#: src/Components/Widgets/UltimateWidgets.jsx:67
#: build/main.js:52135
#: build/main.js:52737
#: build/main.js:54544
msgid "Unlock Ultimate Features"
msgstr "Ultimative Funktionen freischalten"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:76
#: src/Components/Dashboard/UltimateFeatures.js:73
#: src/Components/Widgets/UltimateWidgets.jsx:75
#: build/main.js:52146
#: build/main.js:52745
#: build/main.js:54552
msgid "Create Stunning Designs with the Pro Version!"
msgstr "Erstellen Sie atemberaubende Designs mit der Pro-Version!"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:80
#: src/Components/Dashboard/UltimateFeatures.js:80
#: src/Components/Widgets/UltimateWidgets.jsx:82
#: build/main.js:52153
#: build/main.js:52752
#: build/main.js:54556
msgid "Get access to advanced widgets and features to create the website that stands out!"
msgstr "Erhalten Sie Zugriff auf erweiterte Widgets und Funktionen, um die Website zu erstellen, die heraussticht!"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsite.jsx:57
#: build/main.js:52568
msgid "Extend Your Website"
msgstr "Erweitern Sie Ihre Website"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:72
#: build/main.js:52317
msgid "Installing.."
msgstr "Installation läuft..."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:80
#: build/main.js:52325
msgid "Installed"
msgstr "Installiert"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:94
#: build/main.js:52339
msgid "Theme Installation failed, Please try again later."
msgstr "Die Installation des Themes ist fehlgeschlagen, bitte versuchen Sie es später erneut."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:95
#: build/main.js:52340
msgid "Plugin Installation failed, Please try again later."
msgstr "Die Installation des Plugins ist fehlgeschlagen, bitte versuchen Sie es später erneut."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:144
#: build/main.js:52389
msgid "Activating.."
msgstr "Aktivierung läuft..."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:222
#: build/main.js:52467
msgid "Visit Site"
msgstr "Website besuchen"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:234
#: build/main.js:52479
msgid "Activate Theme"
msgstr "Theme aktivieren"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:238
#: build/main.js:52483
msgid "Are you sure you want to switch your current theme to Astra?"
msgstr "Sind Sie sicher, dass Sie Ihr aktuelles Theme auf Astra wechseln möchten?"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:246
#: build/main.js:52491
msgid "Close"
msgstr "Schließen"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:16
#: src/Components/Settings/Settings.jsx:29
#: build/main.js:54014
#: build/main.js:54089
msgid "My Account"
msgstr "Mein Konto"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:30
#: build/main.js:54028
msgid "License Key"
msgstr "Lizenzschlüssel"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:35
#: build/main.js:54033
msgid "Unlock Pro Features"
msgstr "Pro-Funktionen freischalten"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:36
#: build/main.js:54034
msgid "Get access to advanced blocks and premium features."
msgstr "Erhalten Sie Zugriff auf erweiterte Blöcke und Premium-Funktionen."

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:20
#: build/main.js:51754
msgid "Quick Access"
msgstr "Schneller Zugriff"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:53
#: build/main.js:51787
msgid "Contact Us"
msgstr "Kontaktieren Sie uns"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:69
#: build/main.js:51803
msgid "Help Centre"
msgstr "Hilfezentrum"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:85
#: build/main.js:51819
msgid "Request a Feature"
msgstr "Funktion anfordern"

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:64
#: build/main.js:51649
msgid "Build Websites 10x Faster with Templates"
msgstr "Erstellen Sie Websites 10x schneller mit Vorlagen"

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:70
#: build/main.js:51655
msgid "Choose from our professionally designed websites to build your site faster, with easy customization options."
msgstr ""
"Wählen Sie aus unseren professionell gestalteten Websites, um Ihre Seite schneller zu erstellen, mit einfachen "
"Anpassungsoptionen."

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:85
#: src/Components/Dashboard/TemplateSection.js:97
#: build/main.js:51670
#: build/main.js:51682
msgid "View Templates"
msgstr "Vorlagen anzeigen"

#: build/main.js:2
#: src/Components/Dashboard/UltimateFeatures.js:122
#: src/Components/Widgets/UltimateWidgets.jsx:119
#: build/main.js:52195
#: build/main.js:52789
msgid "Compare Free vs Pro"
msgstr "Kostenlos vs Pro vergleichen"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:25
#: build/main.js:51926
msgid "Welcome to Ultimate Addons for Elementor!"
msgstr "Willkommen bei Ultimate Addons für Elementor!"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:29
#: build/main.js:51930
msgid ""
"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our "
"comprehensive range of free and premium widgets and features."
msgstr ""
"Wir freuen uns, Ihnen zu helfen, Ihr Website-Erlebnis zu verbessern. Gestalten Sie mühelos atemberaubende Websites mit "
"unserem umfassenden Angebot an kostenlosen und Premium-Widgets und Funktionen."

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:58
#: build/main.js:51959
msgid "Create Header/Footer"
msgstr "Kopf-/Fußzeile erstellen"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:86
#: build/main.js:51987
msgid "Create New Page"
msgstr "Neue Seite erstellen"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:115
#: build/main.js:52016
msgid "Read full guide"
msgstr "Vollständigen Leitfaden lesen"

#: build/main.js:2
#: src/Components/Dashboard/WidgetItem.jsx:132
#: build/main.js:51418
msgid "View Demo"
msgstr "Demo anzeigen"

#: build/main.js:2
#: src/Components/Dashboard/WidgetItem.jsx:145
#: build/main.js:51431
msgid "Read Documentation"
msgstr "Dokumentation lesen"

#: build/main.js:2
#: src/Components/HeaderLine.js:16
#: build/main.js:51895
msgid "Formerly Elementor Header & Footer Builder"
msgstr "Ehemals Elementor Header & Footer Builder"

#: build/main.js:2
#: src/Components/NavMenu.js:162
#: build/main.js:51037
msgid "Widgets"
msgstr "Widgets"

#: build/main.js:2
#: src/Components/NavMenu.js:173
#: build/main.js:51048
msgid "Templates"
msgstr "Vorlagen"

#: build/main.js:2
#: src/Components/NavMenu.js:193
#: build/main.js:51068
msgid "Free vs Pro"
msgstr "Kostenlos vs Pro"

#: build/main.js:2
#: src/Components/NavMenu.js:220
#: build/main.js:51095
msgid "Get Pro"
msgstr "Pro erhalten"

#: build/main.js:2
#: src/Components/NavMenu.js:244
#: build/main.js:51119
msgid "Version"
msgstr "Version"

#: build/main.js:2
#: src/Components/NavMenu.js:278
#: build/main.js:51153
msgid "Useful Resources"
msgstr "Nützliche Ressourcen"

#: build/main.js:2
#: src/Components/NavMenu.js:295
#: build/main.js:51170
msgid "Getting Started"
msgstr "Erste Schritte"

#: build/main.js:2
#: src/Components/NavMenu.js:308
#: build/main.js:51183
msgid "How to use widgets"
msgstr "Wie man Widgets verwendet"

#: build/main.js:2
#: src/Components/NavMenu.js:321
#: build/main.js:51196
msgid "How to use features"
msgstr "Wie man Funktionen verwendet"

#: build/main.js:2
#: src/Components/NavMenu.js:334
#: build/main.js:51209
msgid "How to use templates"
msgstr "Wie man Vorlagen verwendet"

#: build/main.js:2
#: src/Components/NavMenu.js:347
#: build/main.js:51222
msgid "Contact us"
msgstr "Kontaktieren Sie uns"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:18
#: src/Components/Settings/Settings.jsx:25
#: src/Components/Settings/Settings.jsx:37
#: src/Components/Settings/Settings.jsx:44
#: src/Components/Settings/Settings.jsx:57
#: src/Components/Settings/Settings.jsx:64
#: build/main.js:54078
#: build/main.js:54085
#: build/main.js:54097
#: build/main.js:54104
#: build/main.js:54117
#: build/main.js:54124
msgid "Custom SVG"
msgstr "Benutzerdefiniertes SVG"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:48
#: build/main.js:54108
msgid "Editor"
msgstr "Editor"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:68
#: build/main.js:54128
msgid "Utilities"
msgstr "Dienstprogramme"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:69
#: src/Components/Settings/VersionControl.jsx:45
#: build/main.js:53896
#: build/main.js:54129
msgid "Version Control"
msgstr "Versionskontrolle"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:9
#: build/main.js:53684
msgid "Option 1 (Recommended)"
msgstr "Option 1 (Empfohlen)"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:10
#: src/Components/Settings/ThemeSupport.jsx:16
#: build/main.js:53685
#: build/main.js:53691
msgid ""
"This option will automatically replace your theme's header and footer files with custom templates from the plugin. It "
"works with most themes and is selected by default."
msgstr ""
"Diese Option ersetzt automatisch die Header- und Footer-Dateien Ihres Themas durch benutzerdefinierte Vorlagen des "
"Plugins. Es funktioniert mit den meisten Themen und ist standardmäßig ausgewählt."

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:15
#: build/main.js:53690
msgid "Option 2"
msgstr "Option 2"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:63
#: build/main.js:53738
msgid "Settings saved successfully!"
msgstr "Einstellungen erfolgreich gespeichert!"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:65
#: src/Components/Settings/ThemeSupport.jsx:68
#: build/main.js:53740
#: build/main.js:53743
msgid "Failed to save settings!"
msgstr "Fehler beim Speichern der Einstellungen!"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:95
#: build/main.js:53770
msgid "Select Option to Add Theme Support"
msgstr "Option auswählen, um die Unterstützung des Themas hinzuzufügen"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:97
#: build/main.js:53772
msgid ""
"To ensure compatibility between the header/footer and your theme, please choose one of the following options to enable "
"theme support:"
msgstr ""
"Um die Kompatibilität zwischen Header/Fußzeile und Ihrem Thema sicherzustellen, wählen Sie bitte eine der folgenden "
"Optionen, um die Unterstützung des Themas zu aktivieren:"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:140
#: build/main.js:53815
msgid "Note:"
msgstr "Hinweis:"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:140
#: build/main.js:53815
msgid "If neither option works, please contact your theme author to add support for this plugin."
msgstr ""
"Wenn keine der Optionen funktioniert, wenden Sie sich bitte an den Autor Ihres Themas, um die Unterstützung für dieses "
"Plugin hinzuzufügen."

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:66
#: build/main.js:53917
msgid "Experiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue."
msgstr "Haben Sie ein Problem mit der aktuellen Version? Stellen Sie auf eine frühere Version zurück, um das Problem zu beheben."

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:112
#: src/Components/Settings/VersionControl.jsx:129
#: build/main.js:53963
#: build/main.js:53980
msgid "Rollback"
msgstr "Rückgängigmachen"

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:132
#: build/main.js:53983
msgid "Cancel"
msgstr "Abbrechen"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:17
#: build/main.js:53145
msgid "250+ templates for every niche"
msgstr "Über 250 Vorlagen für jede Nische"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:22
#: build/main.js:53150
msgid "Modern, timeless designs"
msgstr "Moderne, zeitlose Designs"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:27
#: build/main.js:53155
msgid "Full design flexibility for easy customization"
msgstr "Vollständige Designflexibilität für einfache Anpassungen"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:32
#: build/main.js:53160
msgid "100% responsive across all devices"
msgstr "100 % responsiv auf allen Geräten"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:65
#: src/Components/Templates/ExploreTemplates.jsx:94
#: build/main.js:53193
#: build/main.js:53222
msgid "Install Starter Templates"
msgstr "Starter-Vorlagen installieren"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:65
#: src/Components/Templates/ExploreTemplates.jsx:167
#: build/main.js:53193
#: build/main.js:53295
msgid "Activate Starter Templates"
msgstr "Starter-Vorlagen aktivieren"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:81
#: build/main.js:53209
msgid "Installing Starter Templates..."
msgstr "Starter-Vorlagen werden installiert..."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:90
#: build/main.js:53218
msgid "Installed Starter Templates"
msgstr "Starter-Vorlagen installiert"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:100
#: src/Components/Templates/ExploreTemplates.jsx:156
#: build/main.js:53228
#: build/main.js:53284
msgid "Activating Starter Templates..."
msgstr "Starter-Vorlagen werden aktiviert..."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:158
#: build/main.js:53286
msgid "Activated Starter Templates"
msgstr "Starter-Vorlagen aktiviert"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:191
#: build/main.js:53319
msgid "Design Your Website in Minutes"
msgstr "Gestalten Sie Ihre Website in Minuten"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:200
#: build/main.js:53328
msgid "Build your website faster using our prebuilt templates"
msgstr "Erstellen Sie Ihre Website schneller mit unseren vorgefertigten Vorlagen"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:205
#: build/main.js:53333
msgid ""
"Stop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize "
"and completely responsive. Explore hundreds of designs and bring your vision to life in no time."
msgstr ""
"Hören Sie auf, Ihre Seite von Grund auf neu zu erstellen. Verwenden Sie unsere professionellen Vorlagen für Ihre "
"atemberaubende Website. Es ist einfach anzupassen und vollständig responsiv. Entdecken Sie Hunderte von Designs und "
"bringen Sie Ihre Vision in kürzester Zeit zum Leben."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:238
#: build/main.js:53366
msgid "Explore Templates"
msgstr "Vorlagen erkunden"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:249
#: build/main.js:53377
msgid "Learn More"
msgstr "Erfahren Sie mehr"

#: src/Components/UpgradeNotice.jsx:33
msgid "Close Upgrade Notice"
msgstr "Upgrade-Benachrichtigung schließen"

#: src/Components/UpgradeNotice.jsx:38
msgid "Unlock Ultimate Addons For Elementor!  "
msgstr "Ultimate Addons für Elementor freischalten!"

#: src/Components/UpgradeNotice.jsx:44
msgid "Get exclusive features and unbeatable performance.  "
msgstr "Erhalten Sie exklusive Funktionen und unschlagbare Leistung."

#: src/Components/UpgradeNotice.jsx:53
msgid "Upgrade now"
msgstr "Jetzt upgraden"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:140
#: build/main.js:52975
msgid "Widgets / Features"
msgstr "Widgets / Funktionen"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:152
#: build/main.js:52987
msgid "Search..."
msgstr "Suche..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:174
#: build/main.js:53009
msgid "Activating..."
msgstr "Aktivieren..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:174
#: build/main.js:53009
msgid "Activate All"
msgstr "Alle aktivieren"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:185
#: build/main.js:53020
msgid "Deactivating..."
msgstr "Deaktivieren..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:185
#: build/main.js:53020
msgid "Deactivate All"
msgstr "Alle deaktivieren"

#: admin/class-hfe-addons-actions.php:87
msgid "Plugin slug is missing."
msgstr "Plugin-Slug fehlt."

#: admin/class-hfe-addons-actions.php:110
msgid "Plugin installation function not found."
msgstr "Funktion zur Installation des Plugins nicht gefunden."

#: admin/class-hfe-addons-actions.php:133
msgid "Theme slug is missing."
msgstr "Theme-Slug fehlt."

#: admin/class-hfe-addons-actions.php:156
msgid "Theme installation function not found."
msgstr "Funktion zur Installation des Themes nicht gefunden."

#: inc/class-hfe-settings-page.php:103
msgid "How likely are you to recommend Ultimate Addons for Elementor to your friends or colleagues?"
msgstr "Wie wahrscheinlich ist es, dass Sie Ultimate Addons für Elementor Ihren Freunden oder Kollegen empfehlen?"

#: inc/class-hfe-settings-page.php:105
msgid ""
"Could you please do us a favor and give us a 5-star rating on Trustpilot? It would help others choose Ultimate Addons "
"for Elementor with confidence. Thank you!"
msgstr ""
"Könnten Sie uns bitte einen Gefallen tun und uns eine 5-Sterne-Bewertung auf Trustpilot geben? Es würde anderen helfen, "
"Ultimate Addons für Elementor mit Vertrauen zu wählen. Vielen Dank!"

#: inc/class-hfe-settings-page.php:108
msgid "Thank you for your feedback"
msgstr "Vielen Dank für Ihr Feedback"

#: inc/class-hfe-settings-page.php:109
msgid "We value your input. How can we improve your experience?"
msgstr "Wir schätzen Ihre Meinung. Wie können wir Ihr Erlebnis verbessern?"

#: inc/widgets-manager/widgets/post-info/post-info.php:152
msgctxt "Date Format"
msgid "June 1, 2024 (F j, Y)"
msgstr "1. Juni 2024 (F j, Y)"
PK���\��HX��Mlanguages/header-footer-elementor-nl_NL-a0443e4d0c367013223edcde51b7c42f.jsonnu�[���{"translation-revision-date":"2024-12-05T10:53:31+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/QuickAccess.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Quick Access":["Snelle toegang"],"Contact Us":["Neem contact met ons op"],"Help Centre":["Helpcentrum"],"Request a Feature":["Vraag een functie aan"]}}}PK���\�|!/

Mlanguages/header-footer-elementor-nl_NL-90e183a01507bd4371ac0db2e0c87b99.jsonnu�[���{"translation-revision-date":"2024-12-05T10:53:31+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/NavMenu.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Settings":["Instellingen"],"Header & Footer Builder":["Kop & Voettekst Builder"],"Dashboard":["Dashboard"],"Widgets":["Widgets"],"Templates":["Sjablonen"],"Free vs Pro":["Gratis vs Pro"],"Get Pro":["Krijg Pro"],"Free":["Gratis"],"Version":["Versie"],"Useful Resources":["Nuttige bronnen"],"Getting Started":["Aan de slag"],"How to use widgets":["Hoe widgets te gebruiken"],"How to use features":["Hoe functies te gebruiken"],"How to use templates":["Hoe sjablonen te gebruiken"],"Contact us":["Neem contact met ons op"]}}}PK���\��S`����*languages/header-footer-elementor-nl_NL.monu�[������,<*<*=*I*8a*�*$�*�*
�*"�*++<+<E+v�+{�+�u,7-@-U-^-k-~-�-	�-�-�-�-
�-	..!.	4.>.F.'O.w.
�.=�.7�.6
/0D/:u/:�/=�/;)04e08�08�081>E1A�1�1�1�1�1	2
222'2
42
B2=P2�2	�2
�2<�2�2�23&373
>3I3	Z3
d3	o3y33�3�3
�3�3�3
�3�3.�3%4,494
L4Z4g4t4{4�4�4�4�4
�4�4(�4?56B50y56�5�5�56I6R6f6m6u6�6�6�6�6�6�6l�6>7F7
L7W7h7x7�7�7�7�7N�78#828
H8
S8^8v8�82�8N�8	9'9N69A�9?�9K:�S:�#;�;�;D�;+-<
Y<d<-t<Q�<6�<C+=9o='�=6�=<>2E>"x>�>�>�>�>�>�>�>?
?,?
9?D?
W?6b?4�?	�?�?�?�?�?!�?
@*@9@9I@�@�@=�@5�A?B7^B#�B�B
�B
�B�B3�B:'C+bC;�C'�C&�C2D2LD<D7�D6�D+E4E<ENEUE\EhEqEzE�E�E�E
�E�E!�E"F)2F�\F%G6?GEvG,�G�G�G7H9LHW�H3�HI4I
KIYIrI�IQ�I
�I
�IJkJxJJ�J
�J�J�J
�J-�JK'K>KKKRKeKvK�K�KB�K�K*�KL7MIMYM`MeM�M�M
�M
�M.�M�M�M3�MR&N4yN�N�NM�N
$O/O
COQOTOWOZO]O`OcOlO|O�O�O�Oe�OP�*P�P�P�P
�P1�P!Q	&Q	0Q
:QEQXQ`QfQ\vQ�Q�Q�QR
RJ$R
oR}R�R�R
�R�R	�R�RY�R:S
@SNS
]S;hS�S�S�S�S	�S�S�S�S�ST	&T0TLTlTyT;�T
�T�T��T	�U�U�U�U0�U�U
VVV+"V5NV�V�V�V�V�V
�V�V	�V
�V
W	WW4W	EW
OW
ZWeWlW	qW	{W�W�W�W�W�W�W�W
XX
 X	+X5XGXWXdXgXsX�X	�X�X�X�X�X
�X�X�X�X
Y
Y Y#Y/Y7YDY[YdYmY
uY�Y�Y	�Y�Y�Y�Y8�Y
Z"Z/Z3AZuZ3�Z'�Z�Z�Z	[[	$[.[:[G[�M[5\I\
Q\	_\
i\
t\
�\�\�\�\�\�\�\�\
�\�\]](].]7]T]`]*l]
�]�]
�]�]�] �]�]	^	^(^5^<^
H^"V^'y^	�^�^�^�^
�^	�^�^	�^_3_>L_,�_0�_0�_6`5Q`	�`�`
�`	�`�`�`�`�`�`�`�`�`��`5�a
�a�a�ab
"b)0bZbjbpb
�b��bec7kc1�c2�c=dFdXdedld	udd�d�d�d�d�d
�d6�d	
eee
"el-e�e��ei?f^�f h7)hah2rh�h
�h2�h&�hiG4io|it�i�aj}
k7�k6�k�k�kll�l�l�l��lFmSmXmim
zm�m�m�m�m"�mF�mB*n	mnwn'�n�n�n�n<�n&o2o@Ao�o�o�o�o
�o�o	�o�o�o	pp#p
)p7p<p	Ep
Op]p
lp
wp�p�p�p��p87q�pq%r
,r-:r)hr�r�r�r�r�r��rps�s�s�s�s�s�s�stt2tPt
ot}t�t�t
�t�t/�t�t�t(�t#u	+u65u lu�u�u�u�u�u�u�v�v4�v2w Awbw
nw!yw�w�w
�wH�w�)x��x�Eyz!z	5z?zNzaz|z�z�z�z�z�z�z�z
{%{:{K{3[{�{�{I�{F|JW|;�|F�|G%}Dm}W�}5
~:@~@{~B�~M�~GM����
�������J)�t�����?��ڀ��(�� �'�3�
D�O�
_�j�p�u���������	��ȁ<߁�	!�+�
<�	G�Q�]�c�o�|���
��
����'ÂE�B1�?t�:������X�r�	��
������Ą̈́҄
���n�}�����������օ܅��T�a�z�������׆���1�WD�	����T��D�CP�U������
����A��2��0�=�1P�X��>ۋA�7\�2��2njG��7B�(z���!��؍��	���2�I�[�q�����3��.َ	��� �-�:�O�[�l�<{�	��$c�5K�=��@��/�0�D�Q�
`�3k�2��3Ғ:�"A�%d�/��.��9�;#�?_�������
��̔Ӕ
���
�$�@�V�h�!o�!��-����Ȗ@�R"�3u���ɗ:�J"�jm�?ؘ�H�g� z�����hǙ
0�
;�
I�lT���Țٚ
����	&�+0�\�n�����������ӛٛK�,�*H�=s���ǝ֝ߝ!�
�
�
$�/�9A�{�	��;��Xʞ7#�[�!g�Q��
۟�
���������#�8�?�W�n�wu�������	����ӡ-��
��*�6�L�T�Z�gi�Ѣ���
+�g9�����̣	�
���

��y(�
������դI�2�;�D�L�
S�^�r��������� Υ �
�	�C(�l�|����f�v�����1��ͧ	֧��J�A=����������ǨӨ�	����	�#�
<�J�
V�
d�o�v�{�
������ǩ	����
�&�
7�B�
O�Z�
n�|���
��)��Ǫ���
��'�
;�F�J�
W�b�x�
|�	��������
��	̫֫��
��*�:�PP�����ˬ6߬�7,�(d�����
��ʭҭޭ�	���	�?߮�
0�	>�
H�S�`�l�p�v�������ï
ٯ�����#�/�
N�Y�.e�������
����'Ѱ���	#�	-�	7�A�Q�4a�,��ñӱ�"���	%�/�	4�>�<P�5��3ò:��12�;d�2��	ӳݳ
�	����	���(�.�
F�T��[�8(�
a�o�{�����4�����
��$��I�9e�>��:޷�
*�8�A�	J�T�a�
g�u�	������2��	ո߸�
���|����z �~��)�:D��5��ȼݼ7�')�Q�Qg�u���/����{g�4�>�W�\�h�q��w��
�� �����
�
�������#7�I[�A��
����*
�8�T�
e�9p�
����I���'�7�V�u�
��������	������
����������'�3�B�Y�a��p�<���;�����-
�*;�f�x����������!\�~���������(��
� $�E�Z�!x�
������������2����%.�T�\�6b� ������������ Know More. Method 1 (Recommended) This will be applicable for all sites from the network.%1$s %3$s %2$s%1$s Getting started article » %2$s%s Comments%s comment100% responsive across all devices24/7 Premium Support250+ templates for every niche404 Page<b>Note:</b> Archive page title will be visible on frontend.<b>Note:</b> On desktop, below style options will apply to the submenu. On mobile, this will apply to the entire menu.<strong>There are no menus in your site.</strong><br>Go to the <a href="%s" target="_blank">Menus screen</a> to create one.A popular templates plugin that provides an extensive library of professional and fully customizable 600+ ready website and templates. More than 1+ Million websites have built with this plugin.About UsAction On Menu ClickActivateActivate AllActivate ElementorActivate Starter TemplatesActivate ThemeActivatedActivated Starter TemplatesActivating Starter Templates...Activating..Activating...ActiveAdd Display RuleAdd Exclusion RuleAdd ImageAdd NewAdd RuleAdd SEO-friendly FAQ sections to pages.Add Theme SupportAdd User RuleAdd a customizable button for quick, one-click top scrolling.Add a high-quality logo that looks sharp on any screen.Add a search bar to help visitors find content easily.Add animated text for more engaging page titles.Add customizable, multi-location maps with custom markers.Add dynamic, animated backgrounds to sections and columns.Add headings, icons, and descriptions in one flexible widget.Add interactive points on images for detailed visual tours.Add locations for where this template should appear.Add locations for where this template should not appear.Add navigation links to guide visitors across your site.Add new attractive shape dividers to Elementor sections.Add stylish and functional menus for seamless site navigation.Add your site's primary logo with flexible customization options.AdvancedAdvanced FeaturesAdvanced HeadingAfter Title TextAlignmentAllAll %sAll %s ArchiveAll ArchivesAll SingularsAll TemplatesAllow %s products to track non-sensitive usage tracking data.Already Exists.AnimationAppear EffectAre you sure you want to switch your current theme to Astra?ArrowsAuthorAuthor ArchiveAutomate WordPress tasks effortlessly.AvatarBackgroundBackground ColorBag LightBag MediumBag SolidBasicBeforeBefore & After SliderBefore After SliderBefore FooterBefore Title TextBeginnerBlend ModeBlog / Posts PageBoost SEO with rich results & structured data.BorderBorder ColorBorder Hover ColorBorder RadiusBorder StyleBorder WidthBottomBottom LeftBottom RightBrainstorm ForceBrainstorm Force TeamBreadcrumbsBreakpointBubbleBuild Websites 10x Faster with TemplatesBuild attractive, feature-rich galleries with advanced options.Build easy-to-navigate, visually appealing site menus.Build responsive, styled tables to display data.Build your website faster using our prebuilt templatesBusiness HoursBusiness ReviewsButtonBy submitting, you agree to our %1$sTerms%2$s and %3$sPrivacy Policy%4$s.Caldera Form StylerCancelCaptionCaption Top SpacingCartCenterChooseChoose Default ImageChoose IconChoose Retina ImageChoose from our professionally designed websites to build your site faster, with easy customization options.ClassicCloseClose IconClose Icon ColorClose Icon SizeClose Upgrade NoticeColorColumn ShowcaseCommentsCompare Free vs ProCompare the popular features/widgets to find the best option for your website.Conditional DisplayContact Form 7Contact Form 7 StylerContact UsContact usContent & Media WidgetsContent ToggleContent Toggle ButtonCopy and paste Elementor content between websites.Copy this shortcode and paste it into your post, page, or text widget content.CopyrightCopyright TextCopyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]Could not activate plugin. Please activate from the Plugins page.Could not activate theme. Please activate from the Themes page.Could not install. Please download from WordPress.org and install manually.Could you please do us a BIG favor and give it a 5-star rating on WordPress? This would boost our motivation and help other users make a comfortable decision while choosing the Ultimate Addons for Elementor.Could you please do us a favor and give us a 5-star rating on Trustpilot? It would help others choose Ultimate Addons for Elementor with confidence. Thank you!Countdown TimerCreate Header/FooterCreate High-impact, customizable CTA for promotions and conversions.Create Impressive Header and Footer DesignsCreate NewCreate New PageCreate Stunning Designs with the Pro Version!Create a versatile dual-button setup for navigation and interactive web elements.Create beautiful, custom registration forms for users.Create elegant, customizable lists for menus or product catalogues.Create engaging and customizable headings for your pages.Create high-converting forms with ease.Create sliding panels for navigation or extra content.Create structured how-to pages with automatic schema markup.Create urgency with fixed or recurring countdowns.Creative & Advanced Design WidgetsCreative FeaturesCross-Domain Copy-PasteCross-Site Copy PasteCurrent ItemCustomCustom BlockCustom CaptionCustom Date FormatCustom FormatCustom ImageCustom SVGCustom Time FormatCustom URLCustomize Gravity Forms with advanced styling options.Customize and display your business hours stylishly.DashboardDashedDateDate ArchiveDate FormatDate FormatJune 1, 2024 (F j, Y)DeactivateDeactivate AllDeactivating...Decorate your site with festive seasonal elements easily.DefaultDesign Your Website in MinutesDesign beautiful layouts with simple drag & drop and display them at desired location with powerful target controls. The plugin comes with inbuilt Elementor widgets that offer essential features to build header and footer. It's a lightweight plugin that works seamlessly with all themes and backed up by 24/7 support.Design beautiful, customizable WordPress login forms.Design engaging popups with interactive animations and content.Design optimized checkout pages for better conversions.Disable Scroll to Top For This PageDisplay ConditionsDisplay OnDisplay RulesDisplay TextDisplay an attractive, customizable Instagram feed.Display and customize blog posts beautifully on your site.Display custom template based on user role.Display customizable copyright text for your site's footer.Display product categories beautifully.Display seamless & interactive videos.Display the before and after versions of an image.Display the title of the current page dynamically.Display timelines or roadmaps with advanced styling options.Display verified reviews from Google and Yelp directly.Display your site's tagline to enhance brand identity.DistanceDividerDo Not Display OnDottedDoubleDouble LineDownloadDropdownDropdown Width (px)Dual Color HeadingDynamic Header & Footer WidgetsE-Commerce IntegrationEdit TemplateEditorElementor Header & Footer BuilderElementor Header & Footer Builder Elementor Header & Footer Builder OptionsElementor Header & Footer Builder plugin lets you build impactful navigation for your website very easily. Before we begin, we would like to know more about you. This will help us to serve you better.Email address is requiredEmbed Twitter feeds to show real-time content updates.Embed optimized videos with customizable thumbnails and play buttons.Enable Layout for Elementor Canvas Template?Enable Schema SupportEnable Scroll To TopEnable quick content sharing with social media buttons.Enable this option to stretch the Sub Menu to Full Width.Enabling this option will display this layout on pages using Elementor Canvas Template.Encountered an error while performing your request.EndEnsure images look crisp on high-resolution screens.Enter captionEnter your image captionEntire WebsiteError 404: Page not foundError occurred, The version selected is invalid. Try selecting different version.EssentialsExclude OnExpandedExperiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue.ExpertExplore TemplatesExtend Your WebsiteFAQ SchemaFAQ with SchemaFailed to save settings!Fancy HeadingFast and customizable theme for your website.Field is requiredFirst name is requiredFluent FormsFlyoutFlyout Box PaddingFlyout Box WidthFlyout OrientationFocusFooterFor Horizontal layout, this will affect on the selected breakpointForm Stylers and more...Formerly Elementor Header & Footer BuilderFormerly known as "Elementor Header & Footer Builder", this powerful plugin allows you to create custom headers and footers with Elementor and display them in selected locations. You can also create custom Elementor blocks and place them anywhere on your website using a shortcode.Forms IntegrationFrame AnimationFramedFreeFree & Fastest WordPress Theme.Free Vs ProFree vs ProFront PageFull WidthFull design flexibility for easy customizationGeneralGet ProGet access to advanced blocks and premium features.Get access to advanced widgets and features to create the website that stands out!Get exclusive features and unbeatable performance.  Getting StartedGo to HFE Settings pageGo to the <a href="%s" target="_blank">Menus screen</a> to manage your menus.Google MapGravity Form StylerGravity FormsH1H2H3H4H5H6HTML TagHamburger AlignHeaderHeader & Footer BuilderHeader/Footer BuilderHeightHello! Seems like you have used Ultimate Addons for Elementor to build this website — Thanks a ton!Help CentreHelp us spread the word about the plugin by leaving %2$s %1$s %3$s ratings on %2$s WordPress.org %3$s. Thank you from the Brainstorm Force team!Helpful InformationHideHide + & - SignHide EmptyHighlight team members with customizable layouts.HomeHome IconHome PageHorizontalHorizontal PaddingHotspotHoverHover AnimationHow likely are you to recommend Ultimate Addons for Elementor to your friends or colleagues?How to use featuresHow to use templatesHow to use widgetsHow-ToHow-to SchemaI agree to receive your newsletters and accept the data privacy statement.I already didI'm a WordPress:I'm building website for:IconIcon ColorIcon Hover ColorIcon SizeIcon SpacingIf neither option works, please contact your theme author to add support for this plugin.ImageImage GalleryImage HotspotsImage SizeImprove page readability with automatic, customizable TOCs.InactiveInfo BoxInlineInputInput BoxInput Box With ButtonInstagram FeedInstallInstall ElementorInstall Starter TemplatesInstalledInstalled Starter TemplatesInstalling Starter Templates...Installing..IntermediateInvalid SVG Format, file not uploaded for security reasons!Invalid nonceItems CountIt’s a collection of 40+ unique, creative, and optimized Elementor widgets with 100+ readymade templates. Trusted by more than 600+ K web professionals. It’s a #1 toolkit for Elementor Page Builder.JustifiedJustifyLargeLast Menu ItemLaunch websites with AI or ready-made templates.LayoutLearn MoreLearn More.LeftLet users add items to cart with one click.Let users easily switch between two types of content.License KeyLightboxLinkLink Hover EffectLink Hover Effect ColorList ItemsLoading more results…Logged InLogged OutLogin FormMain MenuMarketing & Engagement WidgetsMarketing ButtonMax WidthMedia FileMedia TypeMediumMenuMenu CartMenu IconMenu Item Top SpacingMenu Items AlignMenu Trigger & Close IconMethod 2Mobile (768px >)Modal PopupModern, timeless designsMulti ButtonsMulti-ButtonMy AccountMy clientMyself/My companyNavigation MenuNew TemplateNoNo CommentsNo Templates found in Trash.No Templates found.No ThanksNo results foundNoneNope, maybe laterNormalNot InstalledNote:OffOff - CanvasOff CanvasOk, you deserve itOnOne CommentOpacityOpen SubmenuOption 1 (Recommended)Option 2OverlinePaddingPage TitleParent Templates:Particle BackgroundsParticlesParty PropzPlaceholderPlaceholder ColorPlay background audio to engage visitors upon page load.Please deletePlease enterPlugin Activated.Plugin Installation failed, Please try again later.Plugin InstalledPlugin activation is disabled for you on this site.Plugin installation function not found.Plugin slug is missing.Plugins list not foundPlus SignPositionPost InfoPost LayoutPost LayoutsPostsPowering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for all kinds of websites like blogs, portfolios, business, and WooCommerce stores.Present products with detailed, customizable layouts.PresetsPresto PlayerPrice BoxPrice ListPricing CardsPricing TableProPushQuick AccessRead DocumentationRead full guideRedirect To Self LinkRequest a FeatureResponsiveResponsive SupportRetina ImageRetina LogoRightRollbackRollback to Previous VersionRow SpacingSEO WidgetsSchema – All In One Schema Rich SnippetsScroll to TopSearchSearch BoxSearch PageSearch TemplatesSearch pages / post / categoriesSearch results for:Search results for: Search...Searching…SelectSelect IconSelect OptionSelect Option to Add Theme SupportSell your products easily on WordPress.SeparatorSeparator TypeSettingsSettings saved successfully!Shape DividerShortcodeShowShow HomeShow Total PriceShow a mini-cart for seamless shopping experiences.Show author, dates, and reading time with customizable styles.Show cart for seamless shopping experiences.Show or hide content based on user interactions.Show your site’s name in a customizable style.Showcase multiple videos without impacting load times.Showcase prices and features in customizable layouts.Site LogoSite TaglineSite TitleSite logoSizeSkipSlideSlide UpSmallSocial Media IntegrationSocial ShareSolidSometimes above methods might not work well with your theme, in this case, contact your theme author and request them to add support for the <a href="%s">plugin.</a>Sorry, you are not authorized to perform this action.Space BetweenSpacingSpacing between Icon & TextSpacing between ItemsSpecial PagesSpecific Pages / Posts / Taxonomies, etc.Specific TargetStartStarter TemplatesStatus: %sStop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize and completely responsive. Explore hundreds of designs and bring your vision to life in no time.StyleStyle WP Fluent Forms for an attractive, cohesive look.Style and enhance Caldera Forms to fit your site.Style and enhance Contact Form 7 to fit your site.Style headings with dual colours and customizable typography.Submenu AnimationSubmenu IconSubmitSureCartSureFormsSureTriggersTableTable of ContentsTablet (1025px >)TaxonomyTeam MemberTeam photoTemplate %1$s is already assigned to the location %2$sTemplatesTermsTextText ColorThank you for installing %1$s Ultimate Addons for Elementor %2$s Plugin! Click here to %3$sget started. %4$sThank you for your feedbackThe %1$sUltimate Addons for Elementor%2$s plugin has stopped working because you are using an older version of %1$sElementor%2$s plugin.The %1$sUltimate Addons for Elementor%2$s plugin requires %1$sElementor%2$s plugin installed & activated.The Ultimate Addons for Elementor plugin need compatibility with your current theme to work smoothly.</br></br>Following are two methods that enable theme support for the plugin.</br></br>Method 1 is selected by default and that works fine almost will all themes. In case, you face any issue with the header or footer template, try choosing Method 2.The results could not be loaded.The same display setting is already exist in %s post/s.Theme Activated.Theme Installation failed, Please try again later.Theme InstalledTheme SupportTheme activation is disabled for you on this site.Theme installation function not found.Theme slug is missing.This is the alignement of menu icon on selected responsive breakpoints.This method hides your theme's header & footer template with CSS and displays custom templates from the plugin.This method replaces your theme's header (header.php) & footer (footer.php) template with plugin's custom templates.This option will automatically replace your theme's header and footer files with custom templates from the plugin. It works with most themes and is selected by default.This plugin is brought to you by the same team behind the popular WordPress theme %s and a series of Ultimate Addons plugins.This will be applicable for all sites from the network.This will hide the items count until the cart is emptyTimeTime FormatTimelineTitleTo ensure compatibility between the header/footer and your theme, please choose one of the following options to enable theme support:Top DistanceTransition DurationTrusted by more than 1+ Million users, Elementor Header & Footer Builder is a modern way to build advanced navigation for your website.Twitter FeedTypeType & Hit EnterType of TemplateTypographyUAEUAE LiteUltimate AddonsUltimate Addons for ElementorUltimate Addons for Elementor LiteUltimate Addons for Elementor Lite <p>Rollback to Previous Version</p>Ultimate Addons for Elementor Pro offers 50+ widgets and features!UnderlineUnlock Pro FeaturesUnlock Ultimate Addons For Elementor!  Unlock Ultimate FeaturesUpdate ElementorUpgrade NowUpgrade WPForms with customizable design and layout options.Upgrade nowUsage TrackingUse pre-made widget templates to accelerate your design process.Use the letters: %sUseful ResourcesUser Registeration FormUser Registration FormUser RolesUsersUtilitiesVersionVersion ControlVerticalVertical PaddingVideoVideo GalleryViewView AllView DemoView TemplateView TemplatesVisit SiteVisit WebsiteWP Fluent Forms StylerWPFormsWPForms StylerWant to help make <strong>%1s</strong> even more awesome? Allow us to collect non-sensitive diagnostic data and usage information. We value your input. How can we improve your experience?We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.WeightWelcome MusicWelcome to Elementor Header & Footer Builder!Welcome to Ultimate Addons for Elementor!White Label OptionWidgetsWidgets / FeaturesWidgets list not foundWidthWith this awesome plugin, experience the easiest way to create a customized header and footer for your website with Elementor. That too 100% FREE!Woo - Add To CartWoo - CategoriesWoo - CheckoutWoo - Mini CartWoo - ProductsWooCommerce Shop PageWooCommerce: Add to CartWooCommerce: CheckoutWooCommerce: Mini CartWooCommerce: ProductWooCommerce: Product CategoryWordPress Nonce not validated.WordPress.orgXLXXLYesYes! Allow itYou can only selectYou do not have permission to access this page.Your First NameYour Work EmailYour details are submitted successfully.Z Indexcharacterhttps://wordpress.org/plugins/header-footer-elementor/https://www.brainstormforce.com/https://your-link.comitemor more characterss»Project-Id-Version: 
Report-Msgid-Bugs-To: 
Last-Translator: gpt-po v1.2.0
Language-Team: 
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
POT-Creation-Date: 2024-12-05T10:53:31+00:00
PO-Revision-Date: 2024-12-05T10:53:31+00:00
Language: 
Meer weten.Methode 1 (Aanbevolen)Dit is van toepassing op alle sites van het netwerk.%1$s %3$s %2$s%1$s Aan de slag artikel » %2$s%s reacties%s reactie100% responsief op alle apparaten24/7 Premium ondersteuning250+ sjablonen voor elke niche404 Pagina<b>Opmerking:</b> Archiefpagina titel zal zichtbaar zijn op de frontend.<b>Opmerking:</b> Op desktop zullen onderstaande stijlopties van toepassing zijn op het submenu. Op mobiel zal dit van toepassing zijn op het gehele menu.<strong>Er zijn geen menu's op je site.</strong><br>Ga naar het <a href="%s" target="_blank">Menu scherm</a> om er een te maken.Een populaire templates-plugin die een uitgebreide bibliotheek biedt van professionele en volledig aanpasbare 600+ kant-en-klare websites en sjablonen. Meer dan 1+ miljoen websites zijn met deze plugin gebouwd.Over OnsActie bij Menu KlikActiverenActiveer allesActiveer ElementorActiveer Starter TemplatesThema activerenGeactiveerdStarter Templates geactiveerdStarter Templates activeren...Activeren..Activeren...ActiefWeergaveregel toevoegenUitsluitregel toevoegenAfbeelding toevoegenNieuwe toevoegenRegel ToevoegenVoeg SEO-vriendelijke FAQ-secties toe aan pagina's.Voeg Thema Ondersteuning ToeGebruikersregel toevoegenVoeg een aanpasbare knop toe voor snelle, één-klik scrollen naar boven.Voeg een logo van hoge kwaliteit toe dat scherp uitziet op elk scherm.Voeg een zoekbalk toe om bezoekers te helpen gemakkelijk inhoud te vinden.Voeg geanimeerde tekst toe voor meer boeiende paginatitels.Voeg aanpasbare, multi-locatie kaarten toe met aangepaste markeringen.Voeg dynamische, geanimeerde achtergronden toe aan secties en kolommen.Voeg koppen, iconen en beschrijvingen toe in één flexibele widget.Voeg interactieve punten op afbeeldingen toe voor gedetailleerde visuele rondleidingen.Voeg locaties toe waar dit sjabloon moet verschijnen.Voeg locaties toe waar dit sjabloon niet moet verschijnen.Voeg navigatielinks toe om bezoekers door je site te begeleiden.Voeg nieuwe aantrekkelijke vormverdeler toe aan Elementor-secties.Voeg stijlvolle en functionele menu's toe voor naadloze navigatie op de site.Voeg het primaire logo van je site toe met flexibele aanpassingsopties.GeavanceerdGeavanceerde functiesGeavanceerde kopNa Titel TekstUitlijningAlleAlle %sAlle %s ArchiefAlle ArchievenAlle EnkeleAlle sjablonenSta %s producten toe om niet-gevoelige gebruikstrackinggegevens te volgen.Bestaat al.AnimatieVerschijn EffectWeet je zeker dat je je huidige thema wilt wijzigen naar Astra?PijlenAuteurAuteursarchiefAutomatiseer WordPress-taken moeiteloos.AvatarAchtergrondAchtergrondkleurLichte TasMiddelgrote TasSolide TasBasisVoorVoor & Na SliderVoor-na-sliderVoor de footerVoor Titel TekstBeginnerMengmodusBlog / BerichtenpaginaVerhoog SEO met rijke resultaten & gestructureerde gegevens.RandRandkleurRand Hover KleurRandstraalRandstijlRandbreedteOnderOnder LinksOnder RechtsBrainstorm ForceBrainstorm Force TeamBroodkruimelsBreakpointBubbelBouw websites 10x sneller met sjablonenBouw aantrekkelijke, feature-rijke galerijen met geavanceerde opties.Bouw gemakkelijk navigeerbare, visueel aantrekkelijke site-menu's.Bouw responsieve, gestylede tabellen om gegevens weer te geven.Bouw uw website sneller met onze vooraf gebouwde sjablonenOpeningstijdenBedrijfsbeoordelingenKnopDoor in te dienen, gaat u akkoord met onze %1$sVoorwaarden%2$s en %3$sPrivacybeleid%4$s.Caldera Form StylerAnnulerenBijschriftBovenmarge van bijschriftWinkelwagentjeCentraalKiesKies Standaard AfbeeldingKies icoonKies Retina AfbeeldingKies uit onze professioneel ontworpen websites om je site sneller te bouwen, met eenvoudige aanpassingsopties.KlassiekSluitenSluit IcoonSluit Icoon KleurSluit Icoon GrootteSluit Upgrade-meldingKleurKolom ShowcaseReactiesVergelijk gratis vs proVergelijk de populaire functies/widgets om de beste optie voor uw website te vinden.Voorwaardelijke weergaveContactformulier 7Contactformulier 7 StylerNeem contact met ons opNeem contact met ons opInhoud- en mediawidgetsInhoud wisselenInhoud Toggle-knopKopieer en plak Elementor-inhoud tussen websites.Kopieer deze shortcode en plak deze in de inhoud van je bericht, pagina of tekstwidget.CopyrightCopyright TekstCopyright © [hfe_current_year] [hfe_site_title] | Aangedreven door [hfe_site_title]Kon de plugin niet activeren. Activeer deze vanaf de pagina Plugins.Kon het thema niet activeren. Activeer dit vanaf de pagina Thema's.Kon niet installeren. Download alstublieft van WordPress.org en installeer handmatig.Zou je ons een GROTE gunst kunnen doen en het een 5-sterren beoordeling op WordPress kunnen geven? Dit zou onze motivatie verhogen en andere gebruikers helpen een comfortabele beslissing te nemen bij het kiezen van de Ultimate Addons voor Elementor.Zou u ons een plezier willen doen en ons een 5-sterrenbeoordeling op Trustpilot willen geven? Het zou anderen helpen om Ultimate Addons voor Elementor met vertrouwen te kiezen. Dank u!AfteltimerMaak Header/FooterCreëer impactvolle, aanpasbare CTA voor promoties en conversies.Creëer Indrukwekkende Header- en Footer-ontwerpenNieuwe makenMaak nieuwe paginaCreëer verbluffende ontwerpen met de Pro-versie!Creëer een veelzijdige dual-knopopstelling voor navigatie en interactieve webelementen.Maak mooie, aangepaste registratieformulieren voor gebruikers.Maak elegante, aanpasbare lijsten voor menu's of productcatalogi.Creëer boeiende en aanpasbare koppen voor je pagina's.Maak eenvoudig formulieren met een hoge conversie.Maak schuifpanelen voor navigatie of extra inhoud.Creëer gestructureerde hoe-te pagina's met automatische schema markup.Creëer urgentie met vaste of terugkerende aftellingen.Creatieve en geavanceerde ontwerpwidgetsCreatieve functiesCross-Domain Kopiëren en PlakkenCross-Site Kopiëren en PlakkenHuidig itemAangepastAangepast blokAangepast BijschriftAangepast datumformaatAangepast formaatAangepaste afbeeldingAangepaste SVGAangepast tijdformaatAangepaste URLPas Gravity Forms aan met geavanceerde stijlopties.Pas je openingstijden stijlvol aan en toon ze.DashboardGehaaktDatumDatumarchiefDatumformaat1 juni 2024 (F j, Y)DeactiverenDeactiveer allesDeactiveren...Versier uw site eenvoudig met feestelijke seizoenselementen.StandaardOntwerp uw website in enkele minutenOntwerp prachtige lay-outs met eenvoudige slepen en neerzetten en toon ze op de gewenste locatie met krachtige doelbedieningen. De plugin wordt geleverd met ingebouwde Elementor-widgets die essentiële functies bieden om header en footer te bouwen. Het is een lichte plugin die naadloos werkt met alle thema's en wordt ondersteund door 24/7 ondersteuning.Ontwerp mooie, aanpasbare WordPress-inlogformulieren.Ontwerp boeiende popups met interactieve animaties en inhoud.Ontwerp geoptimaliseerde afrekenpagina's voor betere conversies.Scroll naar boven uitschakelen voor deze paginaWeergavevoorwaardenWeergeven opWeergaveregelsToon tekstToon een aantrekkelijke, aanpasbare Instagram-feed.Toon en pas blogberichten prachtig aan op uw site.Toon aangepast sjabloon op basis van gebruikersrol.Toon aanpasbare copyrighttekst voor de footer van je site.Toon productcategorieën prachtig.Toon naadloze & interactieve video's.Toon de voor- en na-versies van een afbeelding.Toon de titel van de huidige pagina dynamisch.Toon tijdlijnen of roadmaps met geavanceerde stijlopties.Toon geverifieerde beoordelingen van Google en Yelp direct.Toon de tagline van je site om de merkidentiteit te versterken.AfstandDividerNiet weergeven opGestippeldDubbelDubbele LijnDownloadenDropdownDropdown Breedte (px)Dubbele kleurkopDynamische header- en footer-widgetsE-commerce-integratieSjabloon bewerkenEditorElementor Header & Footer BuilderElementor Header & Footer BuilderOpties voor Elementor Header & Footer BuilderDe Elementor Header & Footer Builder plugin stelt u in staat om impactvolle navigatie voor uw website zeer eenvoudig te bouwen. Voordat we beginnen, willen we graag meer over u weten. Dit zal ons helpen u beter van dienst te zijn.E-mailadres is verplichtInbedden van Twitter-feeds om real-time inhoudsupdates te tonen.Inbedden van geoptimaliseerde video's met aanpasbare miniaturen en afspeelknoppen.Lay-out inschakelen voor Elementor Canvas-sjabloon?Schakel Schema-ondersteuning inScroll naar boven inschakelenSchakel snelle inhoudsdeling in met sociale media knoppen.Schakel deze optie in om het Submenu naar Volledige Breedte uit te rekken.Het inschakelen van deze optie toont deze lay-out op pagina's die het Elementor Canvas-sjabloon gebruiken.Er is een fout opgetreden tijdens het uitvoeren van uw verzoek.EindeZorg ervoor dat afbeeldingen scherp zijn op schermen met hoge resolutie.Voer bijschrift inVoer je afbeelding bijschrift inHele WebsiteFout 404: Pagina niet gevondenEr is een fout opgetreden, de geselecteerde versie is ongeldig. Probeer een andere versie te selecteren.EssentialsUitsluiten opUitgebreidErvaar je een probleem met de huidige versie? Rol terug naar een vorige versie om het probleem op te lossen.ExpertVerken sjablonenBreid uw website uitFAQ-schemaFAQ met SchemaInstellingen opslaan mislukt!Fancy kopSnelle en aanpasbare thema voor uw website.Veld is verplichtVoornaam is verplichtFluent FormsFlyoutFlyout Box OpvullingFlyout Box BreedteFlyout OriëntatieFocusFooterVoor horizontale indeling, heeft dit invloed op de geselecteerde breakpointFormulierstyling en meer...Voorheen Elementor Header & Footer BuilderVoorheen bekend als "Elementor Header & Footer Builder", stelt deze krachtige plugin je in staat om aangepaste kop- en voetteksten te maken met Elementor en deze op geselecteerde locaties weer te geven. Je kunt ook aangepaste Elementor-blokken maken en deze overal op je website plaatsen met behulp van een shortcode.FormulierenintegratieFrame AnimatieGekaderdGratisGratis & Snelste WordPress Thema.Gratis vs ProGratis vs ProVoorpaginaVolledige breedteVolledige ontwerpflexibiliteit voor eenvoudige aanpassingAlgemeenKrijg ProKrijg toegang tot geavanceerde blokken en premium functies.Krijg toegang tot geavanceerde widgets en functies om de website te creëren die opvalt!Krijg exclusieve functies en ongeëvenaarde prestaties.Aan de slagGa naar de HFE-instellingenpaginaGa naar het <a href="%s" target="_blank">Menu scherm</a> om je menu's te beheren.Google MapGravity Form StylerGravity FormsH1H2H3H4H5H6HTML TagHamburger UitlijningHeaderKop & Voettekst BuilderKop-/Voettekst BuilderHoogteHallo! Het lijkt erop dat je Ultimate Addons voor Elementor hebt gebruikt om deze website te bouwen — Hartelijk dank!HelpcentrumHelp ons het woord over de plugin te verspreiden door %2$s %1$s %3$s beoordelingen achter te laten op %2$s WordPress.org %3$s. Bedankt namens het Brainstorm Force-team!Nuttige informatieVerbergenVerberg + & - tekenVerberg LeegBenadruk teamleden met aanpasbare indelingen.HomeHome-icoonStartpaginaHorizontaalHorizontale OpvullingHotspotHoverHover AnimatieHoe waarschijnlijk is het dat u Ultimate Addons voor Elementor aanbeveelt aan uw vrienden of collega's?Hoe functies te gebruikenHoe sjablonen te gebruikenHoe widgets te gebruikenHoe te doenHoe-te-schemaIk ga akkoord met het ontvangen van uw nieuwsbrieven en accepteer de verklaring inzake gegevensprivacy.Ik heb het al gedaanIk ben een WordPress:Ik bouw een website voor:PictogramIcoonkleurIcoon Hover KleurIcoon grootteIcoonafstandAls geen van beide opties werkt, neem dan contact op met uw thema-auteur om ondersteuning voor deze plugin toe te voegen.AfbeeldingAfbeeldingengalerijAfbeelding hotspotsAfbeelding GrootteVerbeter de leesbaarheid van pagina's met automatische, aanpasbare TOC's.InactiefInfo BoxIn lijnInvoerInvoerveldInvoerveld met knopInstagram-feedInstallerenInstalleer ElementorInstalleer Starter TemplatesGeïnstalleerdStarter Templates geïnstalleerdStarter Templates installeren...Installeren..GemiddeldOngeldig SVG-formaat, bestand niet geüpload om veiligheidsredenen!Ongeldige nonceAantal ItemsHet is een verzameling van 40+ unieke, creatieve en geoptimaliseerde Elementor-widgets met 100+ kant-en-klare sjablonen. Vertrouwd door meer dan 600+ K webprofessionals. Het is een #1 toolkit voor Elementor Page Builder.GerechtvaardigdJustificerenGrootLaatste Menu-itemStart websites met AI of kant-en-klare sjablonen.IndelingLeer meerMeer leren.LinksLaat gebruikers artikelen met één klik aan het winkelwagentje toevoegen.Laat gebruikers gemakkelijk schakelen tussen twee soorten inhoud.LicentiesleutelLightboxLinkLink Hover EffectLink Hover Effect KleurLijst itemsMeer resultaten laden…IngelogdUitgelogdInlogformulierHoofdmenuMarketing- en betrokkenheidswidgetsMarketingknopMax BreedteMedia bestandMedia TypeMediumMenuMenu WinkelwagentjeMenu IcoonMenu-item BovenafstandMenu-items UitlijningMenu Trigger & Sluit IcoonMethode 2Mobiel (768px >)Modale popupModerne, tijdloze ontwerpenMeerdere knoppenMulti-knopMijn accountMijn klantIkzelf/Mijn bedrijfNavigatiemenuNieuw sjabloonNeeGeen reactiesGeen sjablonen gevonden in de prullenbak.Geen sjablonen gevonden.Nee bedanktGeen resultaten gevondenGeenNee, misschien laterNormaalNiet GeïnstalleerdOpmerking:UitUit - CanvasOff CanvasOké, je verdient hetAanÉén reactieOpaciteitOpen SubmenuOptie 1 (Aanbevolen)Optie 2BovenstrepingOpvullingPagina TitelOudersjablonen:Deeltjes AchtergrondenDeeltjesFeestelijke DecoratiesPlaatsvervangerPlaatsvervanger kleurSpeel achtergrondaudio af om bezoekers te betrekken bij het laden van de pagina.Verwijder alstublieftVoer alstublieft inPlugin geactiveerd.Plugin-installatie mislukt, probeer het later opnieuw.Plugin GeïnstalleerdPluginactivatie is uitgeschakeld voor jou op deze site.Plugin-installatiefunctie niet gevonden.Plugin-slug ontbreekt.Pluginslijst niet gevondenPlus tekenPositieBerichtinfoBerichtlay-outBerichtindelingenBerichtenMet meer dan 1+ miljoen websites, wordt %s gewaardeerd om de snelle prestaties en gebruiksgemak die het biedt. Het is geschikt voor alle soorten websites zoals blogs, portfolio's, bedrijven en WooCommerce-winkels.Presenteer producten met gedetailleerde, aanpasbare indelingen.VoorinstellingenPresto PlayerPrijs BoxPrijslijstPrijskaartenPrijs tabelProDuwenSnelle toegangLees documentatieLees volledige gidsOmleiden naar Zelf LinkVraag een functie aanResponsiefResponsieve ondersteuningRetina AfbeeldingRetina-logoRechtsTerugrollenTerugrollen naar Vorige VersieRijafstandSEO WidgetsSchema – Alles-in-één Schema Rich SnippetsScroll naar bovenZoekenZoekvakZoekpaginaSjablonen zoekenZoekpagina's / berichten / categorieënZoekresultaten voor:Zoekresultaten voor:Zoeken...Zoeken…SelecteerSelecteer IcoonSelecteer optieSelecteer optie om thema-ondersteuning toe te voegenVerkoop je producten eenvoudig op WordPress.ScheidingstekenScheidingsteken TypeInstellingenInstellingen succesvol opgeslagen!VormverdelerShortcodeToonToon HomeToon Totale PrijsToon een mini-winkelwagentje voor naadloze winkelervaringen.Toon auteur, data en leestijd met aanpasbare stijlen.Toon winkelwagentje voor naadloze winkelervaringen.Toon of verberg inhoud op basis van gebruikersinteracties.Toon de naam van je site in een aanpasbare stijl.Toon meerdere video's zonder de laadtijden te beïnvloeden.Toon prijzen en functies in aanpasbare indelingen.Site-logoSite-taglineSite-titelSite-logoGrootteOverslaanGlijdenGlijden omhoogKleinSocial media-integratieSociale DelenSolideSoms werken bovenstaande methoden mogelijk niet goed met uw thema, in dat geval kunt u contact opnemen met de auteur van uw thema en hen vragen ondersteuning toe te voegen voor de <a href="%s">plugin.</a>Sorry, je bent niet bevoegd om deze actie uit te voeren.Ruimte TussenSpatiëringRuimte tussen icoon & tekstRuimte tussen itemsSpeciale Pagina'sSpecifieke Pagina's / Berichten / Taxonomieën, enz.Specifiek DoelBeginStarter TemplatesStatus: %sStop met het bouwen van uw site vanaf nul. Gebruik onze professionele sjablonen voor uw verbluffende website. Het is eenvoudig aan te passen en volledig responsief. Verken honderden ontwerpen en breng uw visie in een mum van tijd tot leven.StijlStijl WP Fluent Forms voor een aantrekkelijke, samenhangende uitstraling.Stijl en verbeter Caldera Forms om bij uw site te passen.Stijl en verbeter Contactformulier 7 om bij je site te passen.Stijl koppen met dubbele kleuren en aanpasbare typografie.Submenu AnimatieSubmenu IcoonIndienenSureCartSureFormsSureTriggersTabelInhoudsopgaveTablet (1025px >)TaxonomieTeamlidTeamfotoSjabloon %1$s is al toegewezen aan de locatie %2$sSjablonenVoorwaardenTekstTekstkleurBedankt voor het installeren van de %1$s Ultimate Addons voor Elementor %2$s Plugin! Klik hier om %3$saan de slag te gaan. %4$sDank u voor uw feedbackDe %1$sUltimate Addons voor Elementor%2$s plugin is gestopt met werken omdat je een oudere versie van de %1$sElementor%2$s plugin gebruikt.De %1$sUltimate Addons voor Elementor%2$s plugin vereist dat de %1$sElementor%2$s plugin is geïnstalleerd en geactiveerd.De Ultimate Addons voor Elementor plugin heeft compatibiliteit met je huidige thema nodig om soepel te werken.</br></br>Hieronder staan twee methoden die thema-ondersteuning voor de plugin mogelijk maken.</br></br>Methode 1 is standaard geselecteerd en werkt goed met bijna alle thema's. Als je problemen ondervindt met de kop- of voetteksttemplate, probeer dan Methode 2 te kiezen.De resultaten konden niet worden geladen.Dezelfde weergave-instelling bestaat al in %s bericht(en).Thema geactiveerd.Thema-installatie mislukt, probeer het later opnieuw.Thema GeïnstalleerdThema OndersteuningThema-activatie is uitgeschakeld voor jou op deze site.Thema-installatiefunctie niet gevonden.Thema-slug ontbreekt.Dit is de uitlijning van het menu-icoon op geselecteerde responsieve breakpoints.Deze methode verbergt de header- & footer-sjablonen van uw thema met CSS en toont aangepaste sjablonen van de plugin.Deze methode vervangt de header (header.php) & footer (footer.php) sjablonen van uw thema door de aangepaste sjablonen van de plugin.Deze optie vervangt automatisch de header- en footerbestanden van uw thema door aangepaste sjablonen van de plugin. Het werkt met de meeste thema's en is standaard geselecteerd.Deze plugin is ontwikkeld door hetzelfde team achter het populaire WordPress-thema %s en een reeks Ultimate Addons-plugins.Dit is van toepassing op alle sites van het netwerk.Dit verbergt het aantal items totdat de winkelwagentje leeg isTijdTijdformaatTijdlijnTitelOm compatibiliteit tussen de header/footer en uw thema te waarborgen, kies een van de volgende opties om thema-ondersteuning in te schakelen:BovenafstandOvergangsduurVertrouwd door meer dan 1+ miljoen gebruikers, is Elementor Header & Footer Builder een moderne manier om geavanceerde navigatie voor uw website te bouwen.Twitter FeedTypeTyp & Druk op EnterType sjabloonTypografieVAEVAE LiteUltimate AddonsUltimate Addons voor ElementorUltimate Addons voor Elementor LiteUltimate Addons voor Elementor Lite <p>Terugrollen naar vorige versie</p>Ultimate Addons voor Elementor Pro biedt 50+ widgets en functies!OnderstrepingOntgrendel Pro-functiesOntgrendel Ultimate Addons Voor Elementor!Ontgrendel ultieme functiesUpdate ElementorUpgrade nuUpgrade WPForms met aanpasbare ontwerp- en lay-outopties.Upgrade nuGebruikstrackingGebruik kant-en-klare widget-sjablonen om uw ontwerpproces te versnellen.Gebruik de letters: %sNuttige bronnenGebruikersregistratieformulierGebruikersregistratieformulierGebruikersrollenGebruikersHulpmiddelenVersieVersiebeheerVerticaalVerticale OpvullingVideoVideo GalerijBekijkBekijk allesBekijk demoSjabloon bekijkenBekijk sjablonenBezoek siteBezoek WebsiteWP Fluent Forms StylerWPFormsWPForms StylerWil je helpen om <strong>%1s</strong> nog geweldig te maken? Laat ons niet-gevoelige diagnostische gegevens en gebruiksinformatie verzamelen.We waarderen uw input. Hoe kunnen we uw ervaring verbeteren?We zijn enthousiast om je te helpen je website-bouwervaring te verbeteren. Ontwerp moeiteloos verbluffende websites met ons uitgebreide assortiment gratis en premium widgets en functies.GewichtWelkomstmuziekWelkom bij Elementor Header & Footer Builder!Welkom bij Ultimate Addons voor Elementor!White Label-optieWidgetsWidgets / FunctiesWidgetslijst niet gevondenBreedteMet deze geweldige plugin ervaart u de gemakkelijkste manier om een aangepaste header en footer voor uw website te maken met Elementor. Dat ook nog eens 100% GRATIS!Woo - Voeg toe aan winkelwagentjeWoo - CategorieënWoo - AfrekenenWoo - Mini WinkelwagentjeWoo - ProductenWooCommerce WinkelpaginaWooCommerce: Voeg toe aan winkelwagentjeWooCommerce: AfrekenenWooCommerce: Mini winkelwagentjeWooCommerce: ProductWooCommerce: ProductcategorieWordPress Nonce niet gevalideerd.WordPress.orgXLXXLJaJa! Sta het toeU kunt alleen selecterenJe hebt geen toestemming om deze pagina te openen.Uw VoornaamUw Werk E-mailadresUw gegevens zijn succesvol ingediend.Z-indextekenhttps://wordpress.org/plugins/header-footer-elementor/https://www.brainstormforce.com/https://your-link.comitemof meer tekenss»PK���\K@�@�@�*languages/header-footer-elementor-nl_NL.ponu�[���msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: gpt-po v1.2.0\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-12-05T10:53:31+00:00\n"
"PO-Revision-Date: 2024-12-05T10:53:31+00:00\n"
"Language: \n"

#: admin/bsf-analytics/class-bsf-analytics.php:220
#. translators: %s product name
msgid ""
"Want to help make <strong>%1s</strong> even more awesome? Allow us to collect non-sensitive diagnostic data and usage "
"information. "
msgstr ""
"Wil je helpen om <strong>%1s</strong> nog geweldig te maken? Laat ons niet-gevoelige diagnostische gegevens en "
"gebruiksinformatie verzamelen."

#: admin/bsf-analytics/class-bsf-analytics.php:223
msgid "This will be applicable for all sites from the network."
msgstr "Dit is van toepassing op alle sites van het netwerk."

#: admin/bsf-analytics/class-bsf-analytics.php:247
#. translators: %s usage doc link
msgid " Know More."
msgstr "Meer weten."

#: admin/bsf-analytics/class-bsf-analytics.php:255
msgid "Yes! Allow it"
msgstr "Ja! Sta het toe"

#: admin/bsf-analytics/class-bsf-analytics.php:264
msgid "No Thanks"
msgstr "Nee bedankt"

#: admin/bsf-analytics/class-bsf-analytics.php:373
msgid "Usage Tracking"
msgstr "Gebruikstracking"

#: admin/bsf-analytics/class-bsf-analytics.php:419
#. translators: %s Product title
msgid "Allow %s products to track non-sensitive usage tracking data."
msgstr "Sta %s producten toe om niet-gevoelige gebruikstrackinggegevens te volgen."

#: admin/bsf-analytics/class-bsf-analytics.php:422
msgid " This will be applicable for all sites from the network."
msgstr "Dit is van toepassing op alle sites van het netwerk."

#: admin/bsf-analytics/class-bsf-analytics.php:427
msgid "Learn More."
msgstr "Meer leren."

#: admin/class-hfe-addons-actions.php:336
msgid "Plugin activation is disabled for you on this site."
msgstr "Pluginactivatie is uitgeschakeld voor jou op deze site."

#: admin/class-hfe-addons-actions.php:345
msgid "Plugin Activated."
msgstr "Plugin geactiveerd."

#: admin/class-hfe-addons-actions.php:356
msgid "Theme activation is disabled for you on this site."
msgstr "Thema-activatie is uitgeschakeld voor jou op deze site."

#: admin/class-hfe-addons-actions.php:365
msgid "Theme Activated."
msgstr "Thema geactiveerd."

#: admin/class-hfe-addons-actions.php:372
msgid "Could not activate plugin. Please activate from the Plugins page."
msgstr "Kon de plugin niet activeren. Activeer deze vanaf de pagina Plugins."

#: admin/class-hfe-addons-actions.php:374
msgid "Could not activate theme. Please activate from the Themes page."
msgstr "Kon het thema niet activeren. Activeer dit vanaf de pagina Thema's."

#: admin/class-hfe-admin.php:172
#: admin/class-hfe-admin.php:455
msgid "Display Rules"
msgstr "Weergaveregels"

#: admin/class-hfe-admin.php:173
#: inc/widgets-manager/widgets/post-info/post-info.php:136
msgid "Date"
msgstr "Datum"

#: admin/class-hfe-admin.php:263
#: admin/class-hfe-admin.php:264
#: admin/class-hfe-admin.php:265
#: admin/class-hfe-admin.php:266
msgid "Elementor Header & Footer Builder"
msgstr "Elementor Header & Footer Builder"

#: admin/class-hfe-admin.php:267
#: admin/class-hfe-admin.php:268
msgid "Add New"
msgstr "Nieuwe toevoegen"

#: admin/class-hfe-admin.php:269
msgid "New Template"
msgstr "Nieuw sjabloon"

#: admin/class-hfe-admin.php:270
msgid "Edit Template"
msgstr "Sjabloon bewerken"

#: admin/class-hfe-admin.php:271
msgid "View Template"
msgstr "Sjabloon bekijken"

#: inc/class-hfe-settings-page.php:669
msgid "All Templates"
msgstr "Alle sjablonen"

#: admin/class-hfe-admin.php:273
msgid "Search Templates"
msgstr "Sjablonen zoeken"

#: admin/class-hfe-admin.php:274
msgid "Parent Templates:"
msgstr "Oudersjablonen:"

#: admin/class-hfe-admin.php:275
msgid "No Templates found."
msgstr "Geen sjablonen gevonden."

#: admin/class-hfe-admin.php:276
msgid "No Templates found in Trash."
msgstr "Geen sjablonen gevonden in de prullenbak."

#: admin/class-hfe-admin.php:359
msgid "Elementor Header & Footer Builder Options"
msgstr "Opties voor Elementor Header & Footer Builder"

#: admin/class-hfe-admin.php:388
msgid "Type of Template"
msgstr "Type sjabloon"

#: admin/class-hfe-admin.php:392
msgid "Select Option"
msgstr "Selecteer optie"

#: admin/class-hfe-admin.php:393
msgid "Header"
msgstr "Header"

#: admin/class-hfe-admin.php:394
msgid "Before Footer"
msgstr "Voor de footer"

#: admin/class-hfe-admin.php:395
msgid "Footer"
msgstr "Footer"

#: admin/class-hfe-admin.php:396
msgid "Custom Block"
msgstr "Aangepast blok"

#: admin/class-hfe-admin.php:404
#: admin/class-hfe-admin.php:654
msgid "Shortcode"
msgstr "Shortcode"

#: admin/class-hfe-admin.php:405
msgid "Copy this shortcode and paste it into your post, page, or text widget content."
msgstr "Kopieer deze shortcode en plak deze in de inhoud van je bericht, pagina of tekstwidget."

#: admin/class-hfe-admin.php:417
msgid "Enable Layout for Elementor Canvas Template?"
msgstr "Lay-out inschakelen voor Elementor Canvas-sjabloon?"

#: admin/class-hfe-admin.php:419
msgid "Enabling this option will display this layout on pages using Elementor Canvas Template."
msgstr "Het inschakelen van deze optie toont deze lay-out op pagina's die het Elementor Canvas-sjabloon gebruiken."

#: admin/class-hfe-admin.php:446
msgid "Display On"
msgstr "Weergeven op"

#: admin/class-hfe-admin.php:448
msgid "Add locations for where this template should appear."
msgstr "Voeg locaties toe waar dit sjabloon moet verschijnen."

#: admin/class-hfe-admin.php:459
msgid "Add Display Rule"
msgstr "Weergaveregel toevoegen"

#: admin/class-hfe-admin.php:468
msgid "Do Not Display On"
msgstr "Niet weergeven op"

#: admin/class-hfe-admin.php:470
msgid "Add locations for where this template should not appear."
msgstr "Voeg locaties toe waar dit sjabloon niet moet verschijnen."

#: admin/class-hfe-admin.php:477
msgid "Exclude On"
msgstr "Uitsluiten op"

#: admin/class-hfe-admin.php:480
#: inc/lib/target-rule/class-astra-target-rules-fields.php:847
msgid "Add Exclusion Rule"
msgstr "Uitsluitregel toevoegen"

#: admin/class-hfe-admin.php:490
msgid "User Roles"
msgstr "Gebruikersrollen"

#: admin/class-hfe-admin.php:491
msgid "Display custom template based on user role."
msgstr "Toon aangepast sjabloon op basis van gebruikersrol."

#: admin/class-hfe-admin.php:498
msgid "Users"
msgstr "Gebruikers"

#: admin/class-hfe-admin.php:501
msgid "Add User Rule"
msgstr "Gebruikersregel toevoegen"

#: admin/class-hfe-admin.php:582
#. Translators: Post title, Template Location
msgid "Template %1$s is already assigned to the location %2$s"
msgstr "Sjabloon %1$s is al toegewezen aan de locatie %2$s"

#: inc/class-header-footer-elementor.php:226
msgid "Ok, you deserve it"
msgstr "Oké, je verdient het"

#: inc/class-header-footer-elementor.php:228
msgid "Nope, maybe later"
msgstr "Nee, misschien later"

#: inc/class-header-footer-elementor.php:229
msgid "I already did"
msgstr "Ik heb het al gedaan"

#: inc/class-header-footer-elementor.php:301
msgid "Activate Elementor"
msgstr "Activeer Elementor"

#: inc/class-header-footer-elementor.php:306
#: inc/class-header-footer-elementor.php:342
msgid "Install Elementor"
msgstr "Installeer Elementor"

#: inc/class-header-footer-elementor.php:337
msgid "Update Elementor"
msgstr "Update Elementor"

#: inc/class-header-footer-elementor.php:562
#: build/main.js:172
#: src/Components/Settings/Settings.jsx:49
#: src/Components/Settings/ThemeSupport.jsx:80
#: build/main.js:53755
#: build/main.js:54109
msgid "Theme Support"
msgstr "Thema Ondersteuning"

#: inc/class-hfe-settings-page.php:351
#: inc/class-hfe-settings-page.php:1099
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:86
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:173
#: build/main.js:52331
#: build/main.js:52418
msgid "Activate"
msgstr "Activeren"

#: inc/class-hfe-settings-page.php:352
#: inc/class-hfe-settings-page.php:1091
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:156
#: build/main.js:52401
msgid "Activated"
msgstr "Geactiveerd"

#: inc/class-hfe-settings-page.php:353
#: inc/class-hfe-settings-page.php:1088
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1030
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1213
msgid "Active"
msgstr "Actief"

#: inc/class-hfe-settings-page.php:354
msgid "Deactivate"
msgstr "Deactiveren"

#: inc/class-hfe-settings-page.php:355
#: inc/class-hfe-settings-page.php:1096
msgid "Inactive"
msgstr "Inactief"

#: inc/class-hfe-settings-page.php:356
#: inc/class-hfe-settings-page.php:1112
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:91
#: build/main.js:52336
msgid "Install"
msgstr "Installeren"

#: inc/class-hfe-settings-page.php:357
msgid "Theme Installed"
msgstr "Thema Geïnstalleerd"

#: inc/class-hfe-settings-page.php:358
msgid "Plugin Installed"
msgstr "Plugin Geïnstalleerd"

#: inc/class-hfe-settings-page.php:359
msgid "Download"
msgstr "Downloaden"

#: inc/class-hfe-settings-page.php:360
msgid "Already Exists."
msgstr "Bestaat al."

#: inc/class-hfe-settings-page.php:361
#: inc/class-hfe-settings-page.php:1117
msgid "Visit Website"
msgstr "Bezoek Website"

#: inc/class-hfe-settings-page.php:362
msgid "Could not install. Please download from WordPress.org and install manually."
msgstr "Kon niet installeren. Download alstublieft van WordPress.org en installeer handmatig."

#: inc/class-hfe-settings-page.php:363
msgid "Your details are submitted successfully."
msgstr "Uw gegevens zijn succesvol ingediend."

#: inc/class-hfe-settings-page.php:364
msgid "Encountered an error while performing your request."
msgstr "Er is een fout opgetreden tijdens het uitvoeren van uw verzoek."

#: inc/class-hfe-settings-page.php:440
msgid "Add Theme Support"
msgstr "Voeg Thema Ondersteuning Toe"

#: inc/class-hfe-settings-page.php:475
msgid " Method 1 (Recommended)"
msgstr "Methode 1 (Aanbevolen)"

#: inc/class-hfe-settings-page.php:476
msgid "This method replaces your theme's header (header.php) & footer (footer.php) template with plugin's custom templates."
msgstr ""
"Deze methode vervangt de header (header.php) & footer (footer.php) sjablonen van uw thema door de aangepaste sjablonen "
"van de plugin."

#: inc/class-hfe-settings-page.php:479
msgid "Method 2"
msgstr "Methode 2"

#: inc/class-hfe-settings-page.php:483
msgid "This method hides your theme's header & footer template with CSS and displays custom templates from the plugin."
msgstr "Deze methode verbergt de header- & footer-sjablonen van uw thema met CSS en toont aangepaste sjablonen van de plugin."

#: inc/class-hfe-settings-page.php:494
msgid ""
"Sometimes above methods might not work well with your theme, in this case, contact your theme author and request them "
"to add support for the <a href=\"%s\">plugin.</a>"
msgstr ""
"Soms werken bovenstaande methoden mogelijk niet goed met uw thema, in dat geval kunt u contact opnemen met de auteur "
"van uw thema en hen vragen ondersteuning toe te voegen voor de <a href=\"%s\">plugin.</a>"

#: inc/class-hfe-settings-page.php:550
#: inc/class-hfe-settings-page.php:551
#: inc/class-hfe-settings-page.php:1239
#: inc/widgets-manager/base/widgets-config.php:309
#: inc/widgets-manager/base/widgets-config.php:392
#: inc/widgets-manager/base/widgets-config.php:472
#: inc/widgets-manager/base/widgets-config.php:487
#: inc/widgets-manager/base/widgets-config.php:558
#: inc/widgets-manager/base/widgets-config.php:613
#: inc/widgets-manager/base/widgets-config.php:683
#: inc/widgets-manager/base/widgets-config.php:699
#: inc/widgets-manager/base/widgets-config.php:844
#: build/main.js:2
#: src/Components/NavMenu.js:184
#: build/main.js:51059
msgid "Settings"
msgstr "Instellingen"

#: inc/class-hfe-settings-page.php:676
msgid "About Us"
msgstr "Over Ons"

#: inc/class-hfe-settings-page.php:611
msgid "Elementor Header & Footer Builder "
msgstr "Elementor Header & Footer Builder"

#: inc/class-hfe-settings-page.php:722
#. translators: 1: Elementor, 2: Link to plugin review
msgid ""
"Help us spread the word about the plugin by leaving %2$s %1$s %3$s ratings on %2$s WordPress.org %3$s. Thank you from "
"the Brainstorm Force team!"
msgstr ""
"Help ons het woord over de plugin te verspreiden door %2$s %1$s %3$s beoordelingen achter te laten op %2$s "
"WordPress.org %3$s. Bedankt namens het Brainstorm Force-team!"

#: inc/class-hfe-settings-page.php:765
msgid "Create Impressive Header and Footer Designs"
msgstr "Creëer Indrukwekkende Header- en Footer-ontwerpen"

#: inc/class-hfe-settings-page.php:766
msgid ""
"Elementor Header & Footer Builder plugin lets you build impactful navigation for your website very easily. Before we "
"begin, we would like to know more about you. This will help us to serve you better."
msgstr ""
"De Elementor Header & Footer Builder plugin stelt u in staat om impactvolle navigatie voor uw website zeer eenvoudig te "
"bouwen. Voordat we beginnen, willen we graag meer over u weten. Dit zal ons helpen u beter van dienst te zijn."

#: inc/class-hfe-settings-page.php:780
#. translators: %1$s and %3$s are opening anchor tags, and %2$s and %4$s is closing anchor tags.
msgid "By submitting, you agree to our %1$sTerms%2$s and %3$sPrivacy Policy%4$s."
msgstr "Door in te dienen, gaat u akkoord met onze %1$sVoorwaarden%2$s en %3$sPrivacybeleid%4$s."

#: inc/class-hfe-settings-page.php:798
msgid "Skip"
msgstr "Overslaan"

#: inc/class-hfe-settings-page.php:816
msgid "Beginner"
msgstr "Beginner"

#: inc/class-hfe-settings-page.php:817
msgid "Intermediate"
msgstr "Gemiddeld"

#: inc/class-hfe-settings-page.php:818
msgid "Expert"
msgstr "Expert"

#: inc/class-hfe-settings-page.php:820
#: inc/class-hfe-settings-page.php:829
msgid "Field is required"
msgstr "Veld is verplicht"

#: inc/class-hfe-settings-page.php:821
msgid "I'm a WordPress:"
msgstr "Ik ben een WordPress:"

#: inc/class-hfe-settings-page.php:826
msgid "Myself/My company"
msgstr "Ikzelf/Mijn bedrijf"

#: inc/class-hfe-settings-page.php:827
msgid "My client"
msgstr "Mijn klant"

#: inc/class-hfe-settings-page.php:830
msgid "I'm building website for:"
msgstr "Ik bouw een website voor:"

#: inc/class-hfe-settings-page.php:853
msgid "First name is required"
msgstr "Voornaam is verplicht"

#: inc/class-hfe-settings-page.php:854
msgid "Your First Name"
msgstr "Uw Voornaam"

#: inc/class-hfe-settings-page.php:858
msgid "Email address is required"
msgstr "E-mailadres is verplicht"

#: inc/class-hfe-settings-page.php:859
msgid "Your Work Email"
msgstr "Uw Werk E-mailadres"

#: inc/class-hfe-settings-page.php:863
msgid "I agree to receive your newsletters and accept the data privacy statement."
msgstr "Ik ga akkoord met het ontvangen van uw nieuwsbrieven en accepteer de verklaring inzake gegevensprivacy."

#: inc/class-hfe-settings-page.php:868
msgid "Submit"
msgstr "Indienen"

#: inc/class-hfe-settings-page.php:925
#. translators: %s: theme name
msgid ""
"Powering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for "
"all kinds of websites like blogs, portfolios, business, and WooCommerce stores."
msgstr ""
"Met meer dan 1+ miljoen websites, wordt %s gewaardeerd om de snelle prestaties en gebruiksgemak die het biedt. Het is "
"geschikt voor alle soorten websites zoals blogs, portfolio's, bedrijven en WooCommerce-winkels."

#: inc/class-hfe-settings-page.php:946
msgid "Welcome to Elementor Header & Footer Builder!"
msgstr "Welkom bij Elementor Header & Footer Builder!"

#: inc/class-hfe-settings-page.php:948
msgid ""
"With this awesome plugin, experience the easiest way to create a customized header and footer for your website with "
"Elementor. That too 100% FREE!"
msgstr ""
"Met deze geweldige plugin ervaart u de gemakkelijkste manier om een aangepaste header en footer voor uw website te "
"maken met Elementor. Dat ook nog eens 100% GRATIS!"

#: inc/class-hfe-settings-page.php:950
msgid ""
"Design beautiful layouts with simple drag & drop and display them at desired location with powerful target controls. "
"The plugin comes with inbuilt Elementor widgets that offer essential features to build header and footer. It's a "
"lightweight plugin that works seamlessly with all themes and backed up by 24/7 support."
msgstr ""
"Ontwerp prachtige lay-outs met eenvoudige slepen en neerzetten en toon ze op de gewenste locatie met krachtige "
"doelbedieningen. De plugin wordt geleverd met ingebouwde Elementor-widgets die essentiële functies bieden om header en "
"footer te bouwen. Het is een lichte plugin die naadloos werkt met alle thema's en wordt ondersteund door 24/7 "
"ondersteuning."

#: inc/class-hfe-settings-page.php:952
msgid ""
"Trusted by more than 1+ Million users, Elementor Header & Footer Builder is a modern way to build advanced navigation "
"for your website."
msgstr ""
"Vertrouwd door meer dan 1+ miljoen gebruikers, is Elementor Header & Footer Builder een moderne manier om geavanceerde "
"navigatie voor uw website te bouwen."

#: inc/class-hfe-settings-page.php:955
#. translators: %s: theme name
msgid ""
"This plugin is brought to you by the same team behind the popular WordPress theme %s and a series of Ultimate Addons "
"plugins."
msgstr ""
"Deze plugin is ontwikkeld door hetzelfde team achter het populaire WordPress-thema %s en een reeks Ultimate "
"Addons-plugins."

#: inc/class-hfe-settings-page.php:961
msgid "Team photo"
msgstr "Teamfoto"

#: inc/class-hfe-settings-page.php:963
msgid "Brainstorm Force Team"
msgstr "Brainstorm Force Team"

#: inc/class-hfe-settings-page.php:1008
#. translators: %s - addon status label.
msgid "%1$s %3$s %2$s"
msgstr "%1$s %3$s %2$s"

#: inc/class-hfe-settings-page.php:1025
#. translators: %s - addon status label.
msgid "Status: %s"
msgstr "Status: %s"

#: inc/class-hfe-settings-page.php:1044
msgid "WordPress.org"
msgstr "WordPress.org"

#: inc/class-hfe-settings-page.php:1109
msgid "Not Installed"
msgstr "Niet Geïnstalleerd"

#: inc/class-hfe-settings-page.php:1156
#: inc/widgets-manager/base/widgets-config.php:1008
msgid "Starter Templates"
msgstr "Starter Templates"

#: inc/class-hfe-settings-page.php:1157
msgid ""
"A popular templates plugin that provides an extensive library of professional and fully customizable 600+ ready website "
"and templates. More than 1+ Million websites have built with this plugin."
msgstr ""
"Een populaire templates-plugin die een uitgebreide bibliotheek biedt van professionele en volledig aanpasbare 600+ "
"kant-en-klare websites en sjablonen. Meer dan 1+ miljoen websites zijn met deze plugin gebouwd."

#: inc/class-hfe-settings-page.php:102
#: inc/class-hfe-settings-page.php:890
#: inc/class-hfe-settings-page.php:1168
msgid "Ultimate Addons for Elementor"
msgstr "Ultimate Addons voor Elementor"

#: inc/class-hfe-settings-page.php:1169
msgid ""
"It’s a collection of 40+ unique, creative, and optimized Elementor widgets with 100+ readymade templates. Trusted by "
"more than 600+ K web professionals. It’s a #1 toolkit for Elementor Page Builder."
msgstr ""
"Het is een verzameling van 40+ unieke, creatieve en geoptimaliseerde Elementor-widgets met 100+ kant-en-klare "
"sjablonen. Vertrouwd door meer dan 600+ K webprofessionals. Het is een #1 toolkit voor Elementor Page Builder."

#: inc/class-hfe-settings-page.php:1238
msgid "Go to HFE Settings page"
msgstr "Ga naar de HFE-instellingenpagina"

#: inc/lib/astra-notices/class-astra-notices.php:119
msgid "WordPress Nonce not validated."
msgstr "WordPress Nonce niet gevalideerd."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:127
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:298
msgid "404 Page"
msgstr "404 Pagina"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:128
msgid "Search Page"
msgstr "Zoekpagina"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:129
msgid "Blog / Posts Page"
msgstr "Blog / Berichtenpagina"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:130
msgid "Front Page"
msgstr "Voorpagina"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:131
msgid "Date Archive"
msgstr "Datumarchief"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:132
msgid "Author Archive"
msgstr "Auteursarchief"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:136
msgid "WooCommerce Shop Page"
msgstr "WooCommerce Winkelpagina"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:141
#: inc/lib/target-rule/class-astra-target-rules-fields.php:213
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:143
#: src/Components/Compare/FreevsPro.jsx:152
#: build/main.js:54381
#: build/main.js:54390
msgid "Basic"
msgstr "Basis"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:143
msgid "Entire Website"
msgstr "Hele Website"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:144
msgid "All Singulars"
msgstr "Alle Enkele"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:145
msgid "All Archives"
msgstr "Alle Archieven"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:150
msgid "Special Pages"
msgstr "Speciale Pagina's"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:191
msgid "Specific Target"
msgstr "Specifiek Doel"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:193
msgid "Specific Pages / Posts / Taxonomies, etc."
msgstr "Specifieke Pagina's / Berichten / Taxonomieën, enz."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:215
msgid "All"
msgstr "Alle"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:216
msgid "Logged In"
msgstr "Ingelogd"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:217
msgid "Logged Out"
msgstr "Uitgelogd"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:222
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:142
#: src/Components/Compare/FreevsPro.jsx:153
#: build/main.js:54380
#: build/main.js:54391
msgid "Advanced"
msgstr "Geavanceerd"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:624
msgid "Please enter"
msgstr "Voer alstublieft in"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:625
msgid "Please delete"
msgstr "Verwijder alstublieft"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:626
msgid "or more characters"
msgstr "of meer tekens"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:627
msgid "character"
msgstr "teken"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:628
msgid "Loading more results…"
msgstr "Meer resultaten laden…"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:629
msgid "You can only select"
msgstr "U kunt alleen selecteren"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:630
msgid "item"
msgstr "item"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:631
msgid "s"
msgstr "s"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:632
msgid "No results found"
msgstr "Geen resultaten gevonden"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:633
msgid "Searching…"
msgstr "Zoeken…"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:634
msgid "The results could not be loaded."
msgstr "De resultaten konden niet worden geladen."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:635
msgid "Search pages / post / categories"
msgstr "Zoekpagina's / berichten / categorieën"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:654
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1064
msgid "Add Rule"
msgstr "Regel Toevoegen"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:670
#: inc/lib/target-rule/class-astra-target-rules-fields.php:775
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1080
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1110
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1572
msgid "Select"
msgstr "Selecteer"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:720
#. translators: %s post label
msgid "All %s"
msgstr "Alle %s"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:725
#: inc/lib/target-rule/class-astra-target-rules-fields.php:734
#. translators: %s post label
#. translators: %s taxonomy label
msgid "All %s Archive"
msgstr "Alle %s Archief"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:1513
#. translators: %s post title.
msgid "The same display setting is already exist in %s post/s."
msgstr "Dezelfde weergave-instelling bestaat al in %s bericht(en)."

#: inc/widgets-manager/class-widgets-loader.php:285
msgid "Invalid SVG Format, file not uploaded for security reasons!"
msgstr "Ongeldig SVG-formaat, bestand niet geüpload om veiligheidsredenen!"

#: inc/widgets-manager/base/widgets-config.php:187
#: inc/widgets-manager/class-widgets-loader.php:330
#: inc/widgets-manager/widgets/cart/cart.php:629
msgid "Cart"
msgstr "Winkelwagentje"

#: inc/widgets-manager/widgets/cart/cart.php:93
#: inc/widgets-manager/widgets/cart/cart.php:218
msgid "Menu Cart"
msgstr "Menu Winkelwagentje"

#: inc/widgets-manager/widgets/cart/cart.php:100
#: inc/widgets-manager/widgets/post-info/post-info.php:130
msgid "Type"
msgstr "Type"

#: inc/widgets-manager/widgets/cart/cart.php:104
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:210
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:436
#: inc/widgets-manager/widgets/page-title/page-title.php:179
#: inc/widgets-manager/widgets/page-title/page-title.php:228
#: inc/widgets-manager/widgets/post-info/post-info.php:116
#: inc/widgets-manager/widgets/post-info/post-info.php:370
#: inc/widgets-manager/widgets/site-logo/site-logo.php:238
#: inc/widgets-manager/widgets/site-logo/site-logo.php:269
#: inc/widgets-manager/widgets/site-title/site-title.php:172
#: inc/widgets-manager/widgets/site-title/site-title.php:203
msgid "Default"
msgstr "Standaard"

#: inc/widgets-manager/widgets/cart/cart.php:105
#: inc/widgets-manager/widgets/post-info/post-info.php:139
#: inc/widgets-manager/widgets/post-info/post-info.php:156
#: inc/widgets-manager/widgets/post-info/post-info.php:194
#: inc/widgets-manager/widgets/post-info/post-info.php:325
#: inc/widgets-manager/widgets/post-info/post-info.php:371
msgid "Custom"
msgstr "Aangepast"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:389
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:414
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:204
#: inc/widgets-manager/widgets/cart/cart.php:113
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:566
#: inc/widgets-manager/widgets/page-title/page-title.php:353
#: inc/widgets-manager/widgets/post-info/post-info.php:366
#: inc/widgets-manager/widgets/post-info/post-info.php:638
#: inc/widgets-manager/widgets/search-button/search-button.php:153
#: inc/widgets-manager/widgets/search-button/search-button.php:803
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:137
#: inc/widgets-manager/widgets/site-title/site-title.php:140
#: inc/widgets-manager/widgets/site-title/site-title.php:345
msgid "Icon"
msgstr "Pictogram"

#: inc/widgets-manager/widgets/cart/cart.php:116
msgid "Bag Light"
msgstr "Lichte Tas"

#: inc/widgets-manager/widgets/cart/cart.php:117
msgid "Bag Medium"
msgstr "Middelgrote Tas"

#: inc/widgets-manager/widgets/cart/cart.php:118
msgid "Bag Solid"
msgstr "Solide Tas"

#: inc/widgets-manager/widgets/cart/cart.php:131
#: inc/widgets-manager/widgets/cart/cart.php:474
msgid "Items Count"
msgstr "Aantal Items"

#: inc/widgets-manager/widgets/cart/cart.php:134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:482
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:822
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1430
#: inc/widgets-manager/widgets/page-title/page-title.php:180
#: inc/widgets-manager/widgets/post-info/post-info.php:369
#: inc/widgets-manager/widgets/retina/retina.php:181
#: inc/widgets-manager/widgets/retina/retina.php:212
#: inc/widgets-manager/widgets/retina/retina.php:332
#: inc/widgets-manager/widgets/search-button/search-button.php:331
#: inc/widgets-manager/widgets/search-button/search-button.php:565
#: inc/widgets-manager/widgets/site-logo/site-logo.php:239
#: inc/widgets-manager/widgets/site-logo/site-logo.php:396
msgid "None"
msgstr "Geen"

#: inc/widgets-manager/widgets/cart/cart.php:135
msgid "Bubble"
msgstr "Bubbel"

#: inc/widgets-manager/widgets/cart/cart.php:148
msgid "Show Total Price"
msgstr "Toon Totale Prijs"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:113
#: inc/widgets-manager/extensions/class-scroll-to-top.php:321
#: inc/widgets-manager/widgets/cart/cart.php:150
#: inc/widgets-manager/widgets/cart/cart.php:166
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:225
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:242
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:534
#: inc/widgets-manager/widgets/site-logo/site-logo.php:142
#: inc/widgets-manager/widgets/site-logo/site-logo.php:208
#: inc/widgets-manager/widgets/site-logo/site-logo.php:270
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:243
#: build/main.js:52488
msgid "Yes"
msgstr "Ja"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:114
#: inc/widgets-manager/extensions/class-scroll-to-top.php:322
#: inc/widgets-manager/widgets/cart/cart.php:151
#: inc/widgets-manager/widgets/cart/cart.php:167
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:226
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:243
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:535
#: inc/widgets-manager/widgets/site-logo/site-logo.php:143
#: inc/widgets-manager/widgets/site-logo/site-logo.php:207
#: inc/widgets-manager/widgets/site-logo/site-logo.php:271
msgid "No"
msgstr "Nee"

#: inc/widgets-manager/widgets/cart/cart.php:164
msgid "Hide Empty"
msgstr "Verberg Leeg"

#: inc/widgets-manager/widgets/cart/cart.php:170
msgid "This will hide the items count until the cart is empty"
msgstr "Dit verbergt het aantal items totdat de winkelwagentje leeg is"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:154
#: inc/widgets-manager/widgets/cart/cart.php:181
#: inc/widgets-manager/widgets/copyright/copyright.php:130
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:278
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:495
#: inc/widgets-manager/widgets/page-title/page-title.php:241
#: inc/widgets-manager/widgets/post-info/post-info.php:466
#: inc/widgets-manager/widgets/retina/retina.php:151
#: inc/widgets-manager/widgets/site-logo/site-logo.php:177
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:165
#: inc/widgets-manager/widgets/site-title/site-title.php:233
msgid "Alignment"
msgstr "Uitlijning"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:229
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:159
#: inc/widgets-manager/widgets/cart/cart.php:185
#: inc/widgets-manager/widgets/copyright/copyright.php:134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:282
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:313
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:348
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:384
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:499
#: inc/widgets-manager/widgets/page-title/page-title.php:245
#: inc/widgets-manager/widgets/retina/retina.php:155
#: inc/widgets-manager/widgets/site-logo/site-logo.php:181
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:169
#: inc/widgets-manager/widgets/site-title/site-title.php:237
msgid "Left"
msgstr "Links"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:163
#: inc/widgets-manager/widgets/cart/cart.php:189
#: inc/widgets-manager/widgets/copyright/copyright.php:138
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:286
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:352
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:388
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:503
#: inc/widgets-manager/widgets/page-title/page-title.php:249
#: inc/widgets-manager/widgets/post-info/post-info.php:474
#: inc/widgets-manager/widgets/retina/retina.php:159
#: inc/widgets-manager/widgets/site-logo/site-logo.php:185
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:173
#: inc/widgets-manager/widgets/site-title/site-title.php:241
msgid "Center"
msgstr "Centraal"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:263
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:167
#: inc/widgets-manager/widgets/cart/cart.php:193
#: inc/widgets-manager/widgets/copyright/copyright.php:142
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:290
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:314
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:356
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:392
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:507
#: inc/widgets-manager/widgets/page-title/page-title.php:253
#: inc/widgets-manager/widgets/retina/retina.php:163
#: inc/widgets-manager/widgets/site-logo/site-logo.php:189
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:177
#: inc/widgets-manager/widgets/site-title/site-title.php:245
msgid "Right"
msgstr "Rechts"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:462
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:512
#: inc/widgets-manager/widgets/cart/cart.php:239
#: inc/widgets-manager/widgets/page-title/page-title.php:224
#: inc/widgets-manager/widgets/post-info/post-info.php:259
#: inc/widgets-manager/widgets/post-info/post-info.php:659
#: inc/widgets-manager/widgets/search-button/search-button.php:176
#: inc/widgets-manager/widgets/search-button/search-button.php:894
#: inc/widgets-manager/widgets/site-title/site-title.php:199
msgid "Size"
msgstr "Grootte"

#: inc/widgets-manager/widgets/cart/cart.php:258
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1463
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1586
#: inc/widgets-manager/widgets/retina/retina.php:346
#: inc/widgets-manager/widgets/search-button/search-button.php:368
#: inc/widgets-manager/widgets/search-button/search-button.php:599
#: inc/widgets-manager/widgets/site-logo/site-logo.php:410
msgid "Border Width"
msgstr "Randbreedte"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:638
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:418
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:607
#: inc/widgets-manager/widgets/cart/cart.php:277
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1285
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1603
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1738
#: inc/widgets-manager/widgets/retina/retina.php:386
#: inc/widgets-manager/widgets/search-button/search-button.php:391
#: inc/widgets-manager/widgets/search-button/search-button.php:622
#: inc/widgets-manager/widgets/site-logo/site-logo.php:450
msgid "Border Radius"
msgstr "Randstraal"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:351
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:619
#: inc/widgets-manager/widgets/cart/cart.php:297
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1678
#: inc/widgets-manager/widgets/retina/retina.php:572
#: inc/widgets-manager/widgets/site-logo/site-logo.php:637
msgid "Padding"
msgstr "Opvulling"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:523
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:366
#: inc/widgets-manager/widgets/cart/cart.php:315
#: inc/widgets-manager/widgets/cart/cart.php:513
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:923
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1127
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1500
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1693
#: inc/widgets-manager/widgets/page-title/page-title.php:328
#: inc/widgets-manager/widgets/retina/retina.php:412
#: inc/widgets-manager/widgets/search-button/search-button.php:255
#: inc/widgets-manager/widgets/search-button/search-button.php:661
#: inc/widgets-manager/widgets/search-button/search-button.php:816
#: inc/widgets-manager/widgets/search-button/search-button.php:921
#: inc/widgets-manager/widgets/site-logo/site-logo.php:476
#: inc/widgets-manager/widgets/site-title/site-title.php:320
msgid "Normal"
msgstr "Normaal"

#: inc/widgets-manager/widgets/cart/cart.php:322
#: inc/widgets-manager/widgets/cart/cart.php:378
#: inc/widgets-manager/widgets/cart/cart.php:520
#: inc/widgets-manager/widgets/cart/cart.php:557
#: inc/widgets-manager/widgets/copyright/copyright.php:156
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:930
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:969
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1037
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1177
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1220
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1700
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1767
#: inc/widgets-manager/widgets/post-info/post-info.php:722
#: inc/widgets-manager/widgets/retina/retina.php:527
#: inc/widgets-manager/widgets/search-button/search-button.php:265
#: inc/widgets-manager/widgets/search-button/search-button.php:428
#: inc/widgets-manager/widgets/search-button/search-button.php:512
#: inc/widgets-manager/widgets/site-logo/site-logo.php:592
msgid "Text Color"
msgstr "Tekstkleur"

#: inc/widgets-manager/widgets/cart/cart.php:333
#: inc/widgets-manager/widgets/cart/cart.php:389
#: inc/widgets-manager/widgets/page-title/page-title.php:364
#: inc/widgets-manager/widgets/search-button/search-button.php:668
#: inc/widgets-manager/widgets/search-button/search-button.php:708
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:221
#: inc/widgets-manager/widgets/site-title/site-title.php:355
msgid "Icon Color"
msgstr "Icoonkleur"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:386
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:452
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:575
#: inc/widgets-manager/widgets/cart/cart.php:347
#: inc/widgets-manager/widgets/cart/cart.php:403
#: inc/widgets-manager/widgets/cart/cart.php:534
#: inc/widgets-manager/widgets/cart/cart.php:571
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:803
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:945
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:987
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1050
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1151
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1194
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1237
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1519
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1552
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1713
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1779
#: inc/widgets-manager/widgets/retina/retina.php:542
#: inc/widgets-manager/widgets/search-button/search-button.php:300
#: inc/widgets-manager/widgets/search-button/search-button.php:460
#: inc/widgets-manager/widgets/search-button/search-button.php:527
#: inc/widgets-manager/widgets/search-button/search-button.php:719
#: inc/widgets-manager/widgets/site-logo/site-logo.php:380
#: inc/widgets-manager/widgets/site-logo/site-logo.php:607
msgid "Background Color"
msgstr "Achtergrondkleur"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:563
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:620
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:464
#: inc/widgets-manager/widgets/cart/cart.php:358
#: inc/widgets-manager/widgets/cart/cart.php:414
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1446
#: inc/widgets-manager/widgets/retina/retina.php:368
#: inc/widgets-manager/widgets/search-button/search-button.php:349
#: inc/widgets-manager/widgets/search-button/search-button.php:493
#: inc/widgets-manager/widgets/search-button/search-button.php:583
#: inc/widgets-manager/widgets/site-logo/site-logo.php:432
msgid "Border Color"
msgstr "Randkleur"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:580
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:432
#: inc/widgets-manager/widgets/cart/cart.php:371
#: inc/widgets-manager/widgets/cart/cart.php:550
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:962
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1170
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1532
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1760
#: inc/widgets-manager/widgets/retina/retina.php:447
#: inc/widgets-manager/widgets/search-button/search-button.php:701
#: inc/widgets-manager/widgets/search-button/search-button.php:836
#: inc/widgets-manager/widgets/search-button/search-button.php:945
#: inc/widgets-manager/widgets/site-logo/site-logo.php:511
msgid "Hover"
msgstr "Hover"

#: inc/widgets-manager/widgets/cart/cart.php:428
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1567
#: inc/widgets-manager/widgets/search-button/search-button.php:751
#: inc/widgets-manager/widgets/search-button/search-button.php:858
msgid "Icon Size"
msgstr "Icoon grootte"

#: inc/widgets-manager/widgets/cart/cart.php:450
#: inc/widgets-manager/widgets/page-title/page-title.php:156
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:146
#: inc/widgets-manager/widgets/site-title/site-title.php:149
msgid "Icon Spacing"
msgstr "Icoonafstand"

#: inc/widgets-manager/widgets/cart/cart.php:487
msgid "Distance"
msgstr "Afstand"

#: inc/widgets-manager/base/widgets-config.php:200
#: inc/widgets-manager/widgets/copyright/copyright.php:102
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:23
#: build/main.js:54261
msgid "Copyright"
msgstr "Copyright"

#: inc/widgets-manager/widgets/copyright/copyright.php:109
msgid "Copyright Text"
msgstr "Copyright Tekst"

#: inc/widgets-manager/widgets/copyright/copyright.php:114
msgid "Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]"
msgstr "Copyright © [hfe_current_year] [hfe_site_title] | Aangedreven door [hfe_site_title]"

#: inc/widgets-manager/widgets/copyright/copyright.php:121
#: inc/widgets-manager/widgets/page-title/page-title.php:175
#: inc/widgets-manager/widgets/page-title/page-title.php:189
#: inc/widgets-manager/widgets/post-info/post-info.php:340
#: inc/widgets-manager/widgets/retina/retina.php:208
#: inc/widgets-manager/widgets/retina/retina.php:221
#: inc/widgets-manager/widgets/site-logo/site-logo.php:234
#: inc/widgets-manager/widgets/site-logo/site-logo.php:249
#: inc/widgets-manager/widgets/site-title/site-title.php:168
#: inc/widgets-manager/widgets/site-title/site-title.php:181
msgid "Link"
msgstr "Link"

#: inc/widgets-manager/widgets/copyright/copyright.php:123
#: inc/widgets-manager/widgets/page-title/page-title.php:191
#: inc/widgets-manager/widgets/retina/retina.php:226
#: inc/widgets-manager/widgets/site-logo/site-logo.php:254
#: inc/widgets-manager/widgets/site-title/site-title.php:183
msgid "https://your-link.com"
msgstr "https://your-link.com"

#: inc/widgets-manager/base/widgets-config.php:94
#: inc/widgets-manager/base/widgets-config.php:525
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:28
#: src/Components/Compare/FreevsPro.jsx:138
#: src/Components/Compare/FreevsPro.jsx:140
#: src/Components/Compare/FreevsPro.jsx:148
#: src/Components/Compare/FreevsPro.jsx:150
#: build/main.js:54266
#: build/main.js:54376
#: build/main.js:54378
#: build/main.js:54386
#: build/main.js:54388
msgid "Navigation Menu"
msgstr "Navigatiemenu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:173
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:183
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:2013
msgid "Menu"
msgstr "Menu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:189
#. translators: %s Nav menu URL
msgid "Go to the <a href=\"%s\" target=\"_blank\">Menus screen</a> to manage your menus."
msgstr "Ga naar het <a href=\"%s\" target=\"_blank\">Menu scherm</a> om je menu's te beheren."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:198
#. translators: %s Nav menu URL
msgid ""
"<strong>There are no menus in your site.</strong><br>Go to the <a href=\"%s\" target=\"_blank\">Menus screen</a> to "
"create one."
msgstr ""
"<strong>Er zijn geen menu's op je site.</strong><br>Ga naar het <a href=\"%s\" target=\"_blank\">Menu scherm</a> om er "
"een te maken."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:207
msgid "Last Menu Item"
msgstr "Laatste Menu-item"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:211
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1656
#: inc/widgets-manager/widgets/search-button/search-button.php:648
msgid "Button"
msgstr "Knop"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:223
msgid "Enable Schema Support"
msgstr "Schakel Schema-ondersteuning in"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:240
msgid "Hide + & - Sign"
msgstr "Verberg + & - teken"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:256
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:263
#: inc/widgets-manager/widgets/post-info/post-info.php:107
#: inc/widgets-manager/widgets/search-button/search-button.php:148
msgid "Layout"
msgstr "Indeling"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:267
msgid "Horizontal"
msgstr "Horizontaal"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:268
msgid "Vertical"
msgstr "Verticaal"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:269
msgid "Expanded"
msgstr "Uitgebreid"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:270
msgid "Flyout"
msgstr "Flyout"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:294
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:396
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:181
#: inc/widgets-manager/widgets/site-title/site-title.php:249
msgid "Justify"
msgstr "Justificeren"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:309
msgid "Flyout Orientation"
msgstr "Flyout Oriëntatie"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:325
msgid "Appear Effect"
msgstr "Verschijn Effect"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:330
msgid "Slide"
msgstr "Glijden"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:331
msgid "Push"
msgstr "Duwen"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:343
msgid "Hamburger Align"
msgstr "Hamburger Uitlijning"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:380
msgid "Menu Items Align"
msgstr "Menu-items Uitlijning"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:417
msgid "Submenu Icon"
msgstr "Submenu Icoon"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:421
msgid "Arrows"
msgstr "Pijlen"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:422
msgid "Plus Sign"
msgstr "Plus teken"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:423
msgid "Classic"
msgstr "Klassiek"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:432
msgid "Submenu Animation"
msgstr "Submenu Animatie"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:437
msgid "Slide Up"
msgstr "Glijden omhoog"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:449
msgid "Action On Menu Click"
msgstr "Actie bij Menu Klik"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:452
msgid "For Horizontal layout, this will affect on the selected breakpoint"
msgstr "Voor horizontale indeling, heeft dit invloed op de geselecteerde breakpoint"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:454
msgid "Open Submenu"
msgstr "Open Submenu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:455
msgid "Redirect To Self Link"
msgstr "Omleiden naar Zelf Link"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:465
msgid "Responsive"
msgstr "Responsief"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:476
msgid "Breakpoint"
msgstr "Breakpoint"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:480
msgid "Mobile (768px >)"
msgstr "Mobiel (768px >)"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:481
msgid "Tablet (1025px >)"
msgstr "Tablet (1025px >)"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:512
msgid "This is the alignement of menu icon on selected responsive breakpoints."
msgstr "Dit is de uitlijning van het menu-icoon op geselecteerde responsieve breakpoints."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:531
msgid "Full Width"
msgstr "Volledige breedte"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:532
msgid "Enable this option to stretch the Sub Menu to Full Width."
msgstr "Schakel deze optie in om het Submenu naar Volledige Breedte uit te rekken."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:550
msgid "Menu Icon"
msgstr "Menu Icoon"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:581
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:597
#: inc/widgets-manager/widgets/search-button/search-button.php:883
msgid "Close Icon"
msgstr "Sluit Icoon"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:623
msgid "Main Menu"
msgstr "Hoofdmenu"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:634
msgid "Flyout Box Width"
msgstr "Flyout Box Breedte"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:662
msgid "Flyout Box Padding"
msgstr "Flyout Box Opvulling"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:686
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1345
msgid "Horizontal Padding"
msgstr "Horizontale Opvulling"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:712
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1368
msgid "Vertical Padding"
msgstr "Verticale Opvulling"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:734
#: inc/widgets-manager/widgets/post-info/post-info.php:446
msgid "Space Between"
msgstr "Ruimte Tussen"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:761
msgid "Row Spacing"
msgstr "Rijafstand"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:782
msgid "Menu Item Top Spacing"
msgstr "Menu-item Bovenafstand"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:818
msgid "Link Hover Effect"
msgstr "Link Hover Effect"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:823
msgid "Underline"
msgstr "Onderstreping"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:824
msgid "Overline"
msgstr "Bovenstreping"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:825
msgid "Double Line"
msgstr "Dubbele Lijn"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:826
msgid "Framed"
msgstr "Gekaderd"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:397
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:447
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:203
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:827
#: inc/widgets-manager/widgets/post-info/post-info.php:693
msgid "Text"
msgstr "Tekst"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:838
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:880
msgid "Animation"
msgstr "Animatie"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:859
msgid "Frame Animation"
msgstr "Frame Animatie"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1005
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1066
msgid "Link Hover Effect Color"
msgstr "Link Hover Effect Kleur"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1102
msgid "Dropdown"
msgstr "Dropdown"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1110
msgid "<b>Note:</b> On desktop, below style options will apply to the submenu. On mobile, this will apply to the entire menu."
msgstr ""
"<b>Opmerking:</b> Op desktop zullen onderstaande stijlopties van toepassing zijn op het submenu. Op mobiel zal dit van "
"toepassing zijn op het gehele menu."

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1320
msgid "Dropdown Width (px)"
msgstr "Dropdown Breedte (px)"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1394
msgid "Top Distance"
msgstr "Bovenafstand"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1416
msgid "Divider"
msgstr "Divider"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1425
#: inc/widgets-manager/widgets/retina/retina.php:327
#: inc/widgets-manager/widgets/search-button/search-button.php:326
#: inc/widgets-manager/widgets/search-button/search-button.php:560
#: inc/widgets-manager/widgets/site-logo/site-logo.php:391
msgid "Border Style"
msgstr "Randstijl"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1431
#: inc/widgets-manager/widgets/post-info/post-info.php:508
#: inc/widgets-manager/widgets/retina/retina.php:333
#: inc/widgets-manager/widgets/search-button/search-button.php:332
#: inc/widgets-manager/widgets/search-button/search-button.php:566
#: inc/widgets-manager/widgets/site-logo/site-logo.php:397
msgid "Solid"
msgstr "Solide"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1432
#: inc/widgets-manager/widgets/post-info/post-info.php:509
#: inc/widgets-manager/widgets/retina/retina.php:334
#: inc/widgets-manager/widgets/search-button/search-button.php:333
#: inc/widgets-manager/widgets/search-button/search-button.php:567
#: inc/widgets-manager/widgets/site-logo/site-logo.php:398
msgid "Double"
msgstr "Dubbel"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1433
#: inc/widgets-manager/widgets/post-info/post-info.php:510
#: inc/widgets-manager/widgets/retina/retina.php:335
#: inc/widgets-manager/widgets/search-button/search-button.php:334
#: inc/widgets-manager/widgets/search-button/search-button.php:568
#: inc/widgets-manager/widgets/site-logo/site-logo.php:399
msgid "Dotted"
msgstr "Gestippeld"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1434
#: inc/widgets-manager/widgets/post-info/post-info.php:511
#: inc/widgets-manager/widgets/retina/retina.php:336
#: inc/widgets-manager/widgets/search-button/search-button.php:335
#: inc/widgets-manager/widgets/search-button/search-button.php:569
#: inc/widgets-manager/widgets/site-logo/site-logo.php:400
msgid "Dashed"
msgstr "Gehaakt"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1490
msgid "Menu Trigger & Close Icon"
msgstr "Menu Trigger & Sluit Icoon"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:533
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:590
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:373
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:439
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:499
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:563
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1507
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1539
#: inc/widgets-manager/widgets/page-title/page-title.php:301
#: inc/widgets-manager/widgets/post-info/post-info.php:610
#: inc/widgets-manager/widgets/post-info/post-info.php:646
#: inc/widgets-manager/widgets/search-button/search-button.php:823
#: inc/widgets-manager/widgets/search-button/search-button.php:843
#: inc/widgets-manager/widgets/search-button/search-button.php:927
#: inc/widgets-manager/widgets/search-button/search-button.php:952
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:205
#: inc/widgets-manager/widgets/site-title/site-title.php:293
msgid "Color"
msgstr "Kleur"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1616
msgid "Close Icon Color"
msgstr "Sluit Icoon Kleur"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1634
msgid "Close Icon Size"
msgstr "Sluit Icoon Grootte"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:399
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:532
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:588
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1668
msgid "Typography"
msgstr "Typografie"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:408
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:597
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1730
msgid "Border"
msgstr "Rand"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1795
msgid "Border Hover Color"
msgstr "Rand Hover Kleur"

#: inc/widgets-manager/base/widgets-config.php:161
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:24
#: build/main.js:54262
msgid "Page Title"
msgstr "Pagina Titel"

#: inc/widgets-manager/widgets/page-title/page-title.php:108
#: inc/widgets-manager/widgets/page-title/page-title.php:282
#: inc/widgets-manager/widgets/site-title/site-title.php:276
msgid "Title"
msgstr "Titel"

#: inc/widgets-manager/widgets/page-title/page-title.php:117
#. translators: %1$s doc link
msgid "<b>Note:</b> Archive page title will be visible on frontend."
msgstr "<b>Opmerking:</b> Archiefpagina titel zal zichtbaar zijn op de frontend."

#: inc/widgets-manager/widgets/page-title/page-title.php:125
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:113
#: inc/widgets-manager/widgets/site-title/site-title.php:118
msgid "Before Title Text"
msgstr "Voor Titel Tekst"

#: inc/widgets-manager/widgets/page-title/page-title.php:136
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:125
#: inc/widgets-manager/widgets/site-title/site-title.php:129
msgid "After Title Text"
msgstr "Na Titel Tekst"

#: inc/widgets-manager/widgets/page-title/page-title.php:147
msgid "Select Icon"
msgstr "Selecteer Icoon"

#: inc/widgets-manager/widgets/page-title/page-title.php:178
#: inc/widgets-manager/widgets/post-info/post-info.php:352
#: inc/widgets-manager/widgets/retina/retina.php:213
#: inc/widgets-manager/widgets/site-logo/site-logo.php:241
#: inc/widgets-manager/widgets/site-title/site-title.php:171
msgid "Custom URL"
msgstr "Aangepaste URL"

#: inc/widgets-manager/widgets/page-title/page-title.php:207
#: inc/widgets-manager/widgets/site-title/site-title.php:216
msgid "HTML Tag"
msgstr "HTML Tag"

#: inc/widgets-manager/widgets/page-title/page-title.php:210
#: inc/widgets-manager/widgets/site-title/site-title.php:219
msgid "H1"
msgstr "H1"

#: inc/widgets-manager/widgets/page-title/page-title.php:211
#: inc/widgets-manager/widgets/site-title/site-title.php:220
msgid "H2"
msgstr "H2"

#: inc/widgets-manager/widgets/page-title/page-title.php:212
#: inc/widgets-manager/widgets/site-title/site-title.php:221
msgid "H3"
msgstr "H3"

#: inc/widgets-manager/widgets/page-title/page-title.php:213
#: inc/widgets-manager/widgets/site-title/site-title.php:222
msgid "H4"
msgstr "H4"

#: inc/widgets-manager/widgets/page-title/page-title.php:214
#: inc/widgets-manager/widgets/site-title/site-title.php:223
msgid "H5"
msgstr "H5"

#: inc/widgets-manager/widgets/page-title/page-title.php:215
#: inc/widgets-manager/widgets/site-title/site-title.php:224
msgid "H6"
msgstr "H6"

#: inc/widgets-manager/widgets/page-title/page-title.php:229
#: inc/widgets-manager/widgets/site-title/site-title.php:204
msgid "Small"
msgstr "Klein"

#: inc/widgets-manager/widgets/page-title/page-title.php:230
#: inc/widgets-manager/widgets/site-title/site-title.php:205
msgid "Medium"
msgstr "Medium"

#: inc/widgets-manager/widgets/page-title/page-title.php:231
#: inc/widgets-manager/widgets/site-title/site-title.php:206
msgid "Large"
msgstr "Groot"

#: inc/widgets-manager/widgets/page-title/page-title.php:232
#: inc/widgets-manager/widgets/site-title/site-title.php:207
msgid "XL"
msgstr "XL"

#: inc/widgets-manager/widgets/page-title/page-title.php:233
#: inc/widgets-manager/widgets/site-title/site-title.php:208
msgid "XXL"
msgstr "XXL"

#: inc/widgets-manager/widgets/page-title/page-title.php:257
msgid "Justified"
msgstr "Gerechtvaardigd"

#: inc/widgets-manager/widgets/page-title/page-title.php:325
#: inc/widgets-manager/widgets/site-title/site-title.php:317
msgid "Blend Mode"
msgstr "Mengmodus"

#: inc/widgets-manager/widgets/page-title/page-title.php:382
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:239
#: inc/widgets-manager/widgets/site-title/site-title.php:373
msgid "Icon Hover Color"
msgstr "Icoon Hover Kleur"

#: inc/widgets-manager/base/widgets-config.php:594
#: inc/widgets-manager/widgets/retina/retina.php:111
#: inc/widgets-manager/widgets/retina/retina.php:245
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:118
#: build/main.js:54356
msgid "Retina Image"
msgstr "Retina Afbeelding"

#: inc/widgets-manager/widgets/retina/retina.php:117
msgid "Choose Default Image"
msgstr "Kies Standaard Afbeelding"

#: inc/widgets-manager/widgets/retina/retina.php:130
msgid "Choose Retina Image"
msgstr "Kies Retina Afbeelding"

#: inc/widgets-manager/widgets/retina/retina.php:144
#: inc/widgets-manager/widgets/site-logo/site-logo.php:170
msgid "Image Size"
msgstr "Afbeelding Grootte"

#: inc/widgets-manager/widgets/retina/retina.php:178
#: inc/widgets-manager/widgets/retina/retina.php:516
#: inc/widgets-manager/widgets/site-logo/site-logo.php:204
#: inc/widgets-manager/widgets/site-logo/site-logo.php:581
msgid "Caption"
msgstr "Bijschrift"

#: inc/widgets-manager/widgets/retina/retina.php:182
#: inc/widgets-manager/widgets/retina/retina.php:191
#: inc/widgets-manager/widgets/site-logo/site-logo.php:217
msgid "Custom Caption"
msgstr "Aangepast Bijschrift"

#: inc/widgets-manager/widgets/retina/retina.php:194
msgid "Enter your image caption"
msgstr "Voer je afbeelding bijschrift in"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:319
#: inc/widgets-manager/widgets/post-info/post-info.php:551
#: inc/widgets-manager/widgets/retina/retina.php:253
#: inc/widgets-manager/widgets/search-button/search-button.php:229
#: inc/widgets-manager/widgets/search-button/search-button.php:778
#: inc/widgets-manager/widgets/site-logo/site-logo.php:308
msgid "Width"
msgstr "Breedte"

#: inc/widgets-manager/widgets/retina/retina.php:290
#: inc/widgets-manager/widgets/site-logo/site-logo.php:344
msgid "Max Width"
msgstr "Max Breedte"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:363
#: inc/widgets-manager/widgets/retina/retina.php:419
#: inc/widgets-manager/widgets/retina/retina.php:453
#: inc/widgets-manager/widgets/site-logo/site-logo.php:483
#: inc/widgets-manager/widgets/site-logo/site-logo.php:517
msgid "Opacity"
msgstr "Opaciteit"

#: inc/widgets-manager/widgets/retina/retina.php:479
#: inc/widgets-manager/widgets/site-logo/site-logo.php:559
msgid "Hover Animation"
msgstr "Hover Animatie"

#: inc/widgets-manager/widgets/retina/retina.php:486
#: inc/widgets-manager/widgets/site-logo/site-logo.php:534
msgid "Transition Duration"
msgstr "Overgangsduur"

#: inc/widgets-manager/widgets/retina/retina.php:584
msgid "Caption Top Spacing"
msgstr "Bovenmarge van bijschrift"

#: inc/widgets-manager/widgets/retina/retina.php:619
msgid "Helpful Information"
msgstr "Nuttige informatie"

#: inc/widgets-manager/widgets/retina/retina.php:628
#. translators: %1$s doc link
msgid "%1$s Getting started article » %2$s"
msgstr "%1$s Aan de slag artikel » %2$s"

#: inc/widgets-manager/base/widgets-config.php:148
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:285
#: inc/widgets-manager/widgets/search-button/search-button.php:990
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:27
#: build/main.js:54265
msgid "Search"
msgstr "Zoeken"

#: inc/widgets-manager/widgets/search-button/search-button.php:141
msgid "Search Box"
msgstr "Zoekvak"

#: inc/widgets-manager/widgets/search-button/search-button.php:152
msgid "Input Box"
msgstr "Invoerveld"

#: inc/widgets-manager/widgets/search-button/search-button.php:154
msgid "Input Box With Button"
msgstr "Invoerveld met knop"

#: inc/widgets-manager/widgets/search-button/search-button.php:164
msgid "Placeholder"
msgstr "Plaatsvervanger"

#: inc/widgets-manager/widgets/search-button/search-button.php:166
msgid "Type & Hit Enter"
msgstr "Typ & Druk op Enter"

#: inc/widgets-manager/widgets/search-button/search-button.php:210
msgid "Input"
msgstr "Invoer"

#: inc/widgets-manager/widgets/search-button/search-button.php:282
#: inc/widgets-manager/widgets/search-button/search-button.php:443
msgid "Placeholder Color"
msgstr "Plaatsvervanger kleur"

#: inc/widgets-manager/widgets/search-button/search-button.php:418
msgid "Focus"
msgstr "Focus"

#: inc/widgets-manager/widgets/search-button/search-button.php:681
#: inc/widgets-manager/widgets/search-button/search-button.php:734
msgid "Background"
msgstr "Achtergrond"

#: inc/widgets-manager/base/widgets-config.php:81
#: inc/widgets-manager/widgets/site-logo/site-logo.php:133
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:26
#: build/main.js:54264
msgid "Site Logo"
msgstr "Site-logo"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:140
msgid "Custom Image"
msgstr "Aangepaste afbeelding"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:152
msgid "Add Image"
msgstr "Afbeelding toevoegen"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:220
msgid "Enter caption"
msgstr "Voer bijschrift in"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:240
msgid "Media File"
msgstr "Media bestand"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:265
msgid "Lightbox"
msgstr "Lightbox"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:282
msgid "View"
msgstr "Bekijk"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:300
msgid "Site logo"
msgstr "Site-logo"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:649
msgid "Spacing"
msgstr "Spatiëring"

#: inc/widgets-manager/base/widgets-config.php:135
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:25
#: build/main.js:54263
msgid "Site Tagline"
msgstr "Site-tagline"

#: inc/widgets-manager/widgets/post-info/post-info.php:505
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:106
msgid "Style"
msgstr "Stijl"

#: inc/widgets-manager/base/widgets-config.php:122
msgid "Site Title"
msgstr "Site-titel"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:118
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:324
#: inc/widgets-manager/widgets/post-info/post-info.php:100
#: inc/widgets-manager/widgets/site-title/site-title.php:111
msgid "General"
msgstr "Algemeen"

#: header-footer-elementor.php
#. Author URI of the plugin
msgid "https://www.brainstormforce.com/"
msgstr "https://www.brainstormforce.com/"

#: header-footer-elementor.php
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/header-footer-elementor/"
msgstr "https://wordpress.org/plugins/header-footer-elementor/"

#: header-footer-elementor.php
#. Description of the plugin
msgid ""
"Formerly known as \"Elementor Header & Footer Builder\", this powerful plugin allows you to create custom headers and "
"footers with Elementor and display them in selected locations. You can also create custom Elementor blocks and place "
"them anywhere on your website using a shortcode."
msgstr ""
"Voorheen bekend als \"Elementor Header & Footer Builder\", stelt deze krachtige plugin je in staat om aangepaste kop- "
"en voetteksten te maken met Elementor en deze op geselecteerde locaties weer te geven. Je kunt ook aangepaste "
"Elementor-blokken maken en deze overal op je website plaatsen met behulp van een shortcode."

#: header-footer-elementor.php
#. Author of the plugin
msgid "Brainstorm Force"
msgstr "Brainstorm Force"

#: admin/class-hfe-admin.php:272
#: inc/class-hfe-settings-page.php:372
msgid "View All"
msgstr "Bekijk alles"

#: admin/class-hfe-admin.php:319
#: admin/class-hfe-admin.php:320
msgid "Create New"
msgstr "Nieuwe maken"

#: admin/class-hfe-admin.php:329
msgid "Header/Footer Builder"
msgstr "Kop-/Voettekst Builder"

#: admin/class-hfe-admin.php:330
#: build/main.js:2
#: src/Components/NavMenu.js:150
#: build/main.js:51025
msgid "Header & Footer Builder"
msgstr "Kop & Voettekst Builder"

#: inc/class-header-footer-elementor.php:223
msgid "Hello! Seems like you have used Ultimate Addons for Elementor to build this website — Thanks a ton!"
msgstr "Hallo! Het lijkt erop dat je Ultimate Addons voor Elementor hebt gebruikt om deze website te bouwen — Hartelijk dank!"

#: inc/class-header-footer-elementor.php:224
msgid ""
"Could you please do us a BIG favor and give it a 5-star rating on WordPress? This would boost our motivation and help "
"other users make a comfortable decision while choosing the Ultimate Addons for Elementor."
msgstr ""
"Zou je ons een GROTE gunst kunnen doen en het een 5-sterren beoordeling op WordPress kunnen geven? Dit zou onze "
"motivatie verhogen en andere gebruikers helpen een comfortabele beslissing te nemen bij het kiezen van de Ultimate "
"Addons voor Elementor."

#: inc/class-header-footer-elementor.php:294
#. translators: %s: html tags
msgid "The %1$sUltimate Addons for Elementor%2$s plugin requires %1$sElementor%2$s plugin installed & activated."
msgstr ""
"De %1$sUltimate Addons voor Elementor%2$s plugin vereist dat de %1$sElementor%2$s plugin is geïnstalleerd en "
"geactiveerd."

#: inc/class-header-footer-elementor.php:330
#. translators: %s: html tags
msgid ""
"The %1$sUltimate Addons for Elementor%2$s plugin has stopped working because you are using an older version of "
"%1$sElementor%2$s plugin."
msgstr ""
"De %1$sUltimate Addons voor Elementor%2$s plugin is gestopt met werken omdat je een oudere versie van de "
"%1$sElementor%2$s plugin gebruikt."

#: inc/class-header-footer-elementor.php:370
#. translators: %s: html tags
msgid "Thank you for installing %1$s Ultimate Addons for Elementor %2$s Plugin! Click here to %3$sget started. %4$s"
msgstr ""
"Bedankt voor het installeren van de %1$s Ultimate Addons voor Elementor %2$s Plugin! Klik hier om %3$saan de slag te "
"gaan. %4$s"

#: inc/class-hfe-settings-page.php:153
msgid "You do not have permission to access this page."
msgstr "Je hebt geen toestemming om deze pagina te openen."

#: inc/class-hfe-settings-page.php:154
#: inc/class-hfe-settings-page.php:189
#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:63
#: src/Components/Settings/VersionControl.jsx:119
#: build/main.js:53914
#: build/main.js:53970
msgid "Rollback to Previous Version"
msgstr "Terugrollen naar Vorige Versie"

#: inc/class-hfe-settings-page.php:170
msgid "Error occurred, The version selected is invalid. Try selecting different version."
msgstr "Er is een fout opgetreden, de geselecteerde versie is ongeldig. Probeer een andere versie te selecteren."

#: inc/class-hfe-settings-page.php:456
msgid ""
"The Ultimate Addons for Elementor plugin need compatibility with your current theme to work "
"smoothly.</br></br>Following are two methods that enable theme support for the plugin.</br></br>Method 1 is selected by "
"default and that works fine almost will all themes. In case, you face any issue with the header or footer template, try "
"choosing Method 2."
msgstr ""
"De Ultimate Addons voor Elementor plugin heeft compatibiliteit met je huidige thema nodig om soepel te "
"werken.</br></br>Hieronder staan twee methoden die thema-ondersteuning voor de plugin mogelijk maken.</br></br>Methode "
"1 is standaard geselecteerd en werkt goed met bijna alle thema's. Als je problemen ondervindt met de kop- of "
"voetteksttemplate, probeer dan Methode 2 te kiezen."

#: inc/class-hfe-settings-page.php:526
#: inc/class-hfe-settings-page.php:538
msgid "UAE Lite"
msgstr "VAE Lite"

#: inc/class-hfe-settings-page.php:527
#: inc/widgets-manager/class-widgets-loader.php:168
msgid "UAE"
msgstr "VAE"

#: inc/class-hfe-settings-page.php:539
#: build/main.js:2
#: src/Components/NavMenu.js:130
#: build/main.js:51005
msgid "Dashboard"
msgstr "Dashboard"

#: inc/settings/hfe-settings-api.php:101
msgid "Sorry, you are not authorized to perform this action."
msgstr "Sorry, je bent niet bevoegd om deze actie uit te voeren."

#: inc/settings/hfe-settings-api.php:116
#: inc/settings/hfe-settings-api.php:143
#: inc/settings/hfe-settings-api.php:170
msgid "Invalid nonce"
msgstr "Ongeldige nonce"

#: inc/settings/hfe-settings-api.php:150
msgid "Plugins list not found"
msgstr "Pluginslijst niet gevonden"

#: inc/settings/hfe-settings-api.php:177
msgid "Widgets list not found"
msgstr "Widgetslijst niet gevonden"

#: inc/widgets-manager/base/widgets-config.php:53
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:19
#: build/main.js:54257
msgid "Post Info"
msgstr "Berichtinfo"

#: inc/widgets-manager/base/widgets-config.php:61
msgid "Show author, dates, and reading time with customizable styles."
msgstr "Toon auteur, data en leestijd met aanpasbare stijlen."

#: inc/widgets-manager/base/widgets-config.php:67
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:21
#: build/main.js:54259
msgid "Breadcrumbs"
msgstr "Broodkruimels"

#: inc/widgets-manager/base/widgets-config.php:75
msgid "Add navigation links to guide visitors across your site."
msgstr "Voeg navigatielinks toe om bezoekers door je site te begeleiden."

#: inc/widgets-manager/base/widgets-config.php:88
msgid "Add your site's primary logo with flexible customization options."
msgstr "Voeg het primaire logo van je site toe met flexibele aanpassingsopties."

#: inc/widgets-manager/base/widgets-config.php:101
msgid "Add stylish and functional menus for seamless site navigation."
msgstr "Voeg stijlvolle en functionele menu's toe voor naadloze navigatie op de site."

#: inc/widgets-manager/base/widgets-config.php:107
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:49
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:103
#: inc/widgets-manager/extensions/class-scroll-to-top.php:310
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:20
#: build/main.js:54258
msgid "Scroll to Top"
msgstr "Scroll naar boven"

#: inc/widgets-manager/base/widgets-config.php:115
msgid "Add a customizable button for quick, one-click top scrolling."
msgstr "Voeg een aanpasbare knop toe voor snelle, één-klik scrollen naar boven."

#: inc/widgets-manager/base/widgets-config.php:129
msgid "Show your site’s name in a customizable style."
msgstr "Toon de naam van je site in een aanpasbare stijl."

#: inc/widgets-manager/base/widgets-config.php:142
msgid "Display your site's tagline to enhance brand identity."
msgstr "Toon de tagline van je site om de merkidentiteit te versterken."

#: inc/widgets-manager/base/widgets-config.php:155
msgid "Add a search bar to help visitors find content easily."
msgstr "Voeg een zoekbalk toe om bezoekers te helpen gemakkelijk inhoud te vinden."

#: inc/widgets-manager/base/widgets-config.php:168
msgid "Display the title of the current page dynamically."
msgstr "Toon de titel van de huidige pagina dynamisch."

#: inc/widgets-manager/base/widgets-config.php:174
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:22
#: build/main.js:54260
msgid "Retina Logo"
msgstr "Retina-logo"

#: inc/widgets-manager/base/widgets-config.php:181
msgid "Add a high-quality logo that looks sharp on any screen."
msgstr "Voeg een logo van hoge kwaliteit toe dat scherp uitziet op elk scherm."

#: inc/widgets-manager/base/widgets-config.php:194
msgid "Show cart for seamless shopping experiences."
msgstr "Toon winkelwagentje voor naadloze winkelervaringen."

#: inc/widgets-manager/base/widgets-config.php:207
msgid "Display customizable copyright text for your site's footer."
msgstr "Toon aanpasbare copyrighttekst voor de footer van je site."

#: inc/widgets-manager/base/widgets-config.php:234
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:34
#: src/Components/Compare/UltimateCompare.jsx:17
#: src/Components/Dashboard/UltimateFeatures.js:18
#: src/Components/Widgets/UltimateWidgets.jsx:18
#: build/main.js:52091
#: build/main.js:52688
#: build/main.js:54272
#: build/main.js:54493
msgid "Advanced Heading"
msgstr "Geavanceerde kop"

#: inc/widgets-manager/base/widgets-config.php:235
msgid "Create engaging and customizable headings for your pages."
msgstr "Creëer boeiende en aanpasbare koppen voor je pagina's."

#: inc/widgets-manager/base/widgets-config.php:248
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:66
#: src/Components/Compare/UltimateCompare.jsx:12
#: src/Components/Dashboard/UltimateFeatures.js:13
#: src/Components/Widgets/UltimateWidgets.jsx:13
#: build/main.js:52086
#: build/main.js:52683
#: build/main.js:54304
#: build/main.js:54488
msgid "Modal Popup"
msgstr "Modale popup"

#: inc/widgets-manager/base/widgets-config.php:249
msgid "Design engaging popups with interactive animations and content."
msgstr "Ontwerp boeiende popups met interactieve animaties en inhoud."

#: inc/widgets-manager/base/widgets-config.php:261
msgid "Content Toggle"
msgstr "Inhoud wisselen"

#: inc/widgets-manager/base/widgets-config.php:262
msgid "Let users easily switch between two types of content."
msgstr "Laat gebruikers gemakkelijk schakelen tussen twee soorten inhoud."

#: inc/widgets-manager/base/widgets-config.php:274
msgid "Before After Slider"
msgstr "Voor-na-slider"

#: inc/widgets-manager/base/widgets-config.php:275
msgid "Display the before and after versions of an image."
msgstr "Toon de voor- en na-versies van een afbeelding."

#: inc/widgets-manager/base/widgets-config.php:287
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:65
#: build/main.js:54303
msgid "Business Hours"
msgstr "Openingstijden"

#: inc/widgets-manager/base/widgets-config.php:288
msgid "Customize and display your business hours stylishly."
msgstr "Pas je openingstijden stijlvol aan en toon ze."

#: inc/widgets-manager/base/widgets-config.php:302
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:94
#: build/main.js:54332
msgid "Business Reviews"
msgstr "Bedrijfsbeoordelingen"

#: inc/widgets-manager/base/widgets-config.php:303
msgid "Display verified reviews from Google and Yelp directly."
msgstr "Toon geverifieerde beoordelingen van Google en Yelp direct."

#: inc/widgets-manager/base/widgets-config.php:316
msgid "Contact Form 7 Styler"
msgstr "Contactformulier 7 Styler"

#: inc/widgets-manager/base/widgets-config.php:317
msgid "Style and enhance Contact Form 7 to fit your site."
msgstr "Stijl en verbeter Contactformulier 7 om bij je site te passen."

#: inc/widgets-manager/base/widgets-config.php:329
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:64
#: build/main.js:54302
msgid "Countdown Timer"
msgstr "Afteltimer"

#: inc/widgets-manager/base/widgets-config.php:330
msgid "Create urgency with fixed or recurring countdowns."
msgstr "Creëer urgentie met vaste of terugkerende aftellingen."

#: inc/widgets-manager/base/widgets-config.php:343
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:35
#: build/main.js:54273
msgid "Dual Color Heading"
msgstr "Dubbele kleurkop"

#: inc/widgets-manager/base/widgets-config.php:344
msgid "Style headings with dual colours and customizable typography."
msgstr "Stijl koppen met dubbele kleuren en aanpasbare typografie."

#: inc/widgets-manager/base/widgets-config.php:357
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:36
#: build/main.js:54274
msgid "Fancy Heading"
msgstr "Fancy kop"

#: inc/widgets-manager/base/widgets-config.php:358
msgid "Add animated text for more engaging page titles."
msgstr "Voeg geanimeerde tekst toe voor meer boeiende paginatitels."

#: inc/widgets-manager/base/widgets-config.php:371
msgid "FAQ Schema"
msgstr "FAQ-schema"

#: inc/widgets-manager/base/widgets-config.php:372
msgid "Add SEO-friendly FAQ sections to pages."
msgstr "Voeg SEO-vriendelijke FAQ-secties toe aan pagina's."

#: inc/widgets-manager/base/widgets-config.php:385
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:49
#: build/main.js:54287
msgid "Google Map"
msgstr "Google Map"

#: inc/widgets-manager/base/widgets-config.php:386
msgid "Add customizable, multi-location maps with custom markers."
msgstr "Voeg aanpasbare, multi-locatie kaarten toe met aangepaste markeringen."

#: inc/widgets-manager/base/widgets-config.php:400
msgid "Gravity Form Styler"
msgstr "Gravity Form Styler"

#: inc/widgets-manager/base/widgets-config.php:401
msgid "Customize Gravity Forms with advanced styling options."
msgstr "Pas Gravity Forms aan met geavanceerde stijlopties."

#: inc/widgets-manager/base/widgets-config.php:413
msgid "Hotspot"
msgstr "Hotspot"

#: inc/widgets-manager/base/widgets-config.php:414
msgid "Add interactive points on images for detailed visual tours."
msgstr "Voeg interactieve punten op afbeeldingen toe voor gedetailleerde visuele rondleidingen."

#: inc/widgets-manager/base/widgets-config.php:426
msgid "How-to Schema"
msgstr "Hoe-te-schema"

#: inc/widgets-manager/base/widgets-config.php:427
msgid "Create structured how-to pages with automatic schema markup."
msgstr "Creëer gestructureerde hoe-te pagina's met automatische schema markup."

#: inc/widgets-manager/base/widgets-config.php:439
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:45
#: build/main.js:54283
msgid "Image Gallery"
msgstr "Afbeeldingengalerij"

#: inc/widgets-manager/base/widgets-config.php:440
msgid "Build attractive, feature-rich galleries with advanced options."
msgstr "Bouw aantrekkelijke, feature-rijke galerijen met geavanceerde opties."

#: inc/widgets-manager/base/widgets-config.php:452
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:51
#: src/Components/Compare/UltimateCompare.jsx:27
#: src/Components/Dashboard/UltimateFeatures.js:28
#: src/Components/Widgets/UltimateWidgets.jsx:28
#: build/main.js:52101
#: build/main.js:52698
#: build/main.js:54289
#: build/main.js:54503
msgid "Info Box"
msgstr "Info Box"

#: inc/widgets-manager/base/widgets-config.php:453
msgid "Add headings, icons, and descriptions in one flexible widget."
msgstr "Voeg koppen, iconen en beschrijvingen toe in één flexibele widget."

#: inc/widgets-manager/base/widgets-config.php:466
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:110
#: build/main.js:54348
msgid "Instagram Feed"
msgstr "Instagram-feed"

#: inc/widgets-manager/base/widgets-config.php:467
msgid "Display an attractive, customizable Instagram feed."
msgstr "Toon een aantrekkelijke, aanpasbare Instagram-feed."

#: inc/widgets-manager/base/widgets-config.php:481
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:54
#: build/main.js:54292
msgid "Login Form"
msgstr "Inlogformulier"

#: inc/widgets-manager/base/widgets-config.php:482
msgid "Design beautiful, customizable WordPress login forms."
msgstr "Ontwerp mooie, aanpasbare WordPress-inlogformulieren."

#: inc/widgets-manager/base/widgets-config.php:497
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:61
#: build/main.js:54299
msgid "Marketing Button"
msgstr "Marketingknop"

#: inc/widgets-manager/base/widgets-config.php:498
msgid "Create High-impact, customizable CTA for promotions and conversions."
msgstr "Creëer impactvolle, aanpasbare CTA voor promoties en conversies."

#: inc/widgets-manager/base/widgets-config.php:511
msgid "Multi Buttons"
msgstr "Meerdere knoppen"

#: inc/widgets-manager/base/widgets-config.php:512
msgid "Create a versatile dual-button setup for navigation and interactive web elements."
msgstr "Creëer een veelzijdige dual-knopopstelling voor navigatie en interactieve webelementen."

#: inc/widgets-manager/base/widgets-config.php:526
msgid "Build easy-to-navigate, visually appealing site menus."
msgstr "Bouw gemakkelijk navigeerbare, visueel aantrekkelijke site-menu's."

#: inc/widgets-manager/base/widgets-config.php:538
msgid "Off - Canvas"
msgstr "Uit - Canvas"

#: inc/widgets-manager/base/widgets-config.php:539
msgid "Create sliding panels for navigation or extra content."
msgstr "Maak schuifpanelen voor navigatie of extra inhoud."

#: inc/widgets-manager/base/widgets-config.php:551
msgid "Posts"
msgstr "Berichten"

#: inc/widgets-manager/base/widgets-config.php:552
msgid "Display and customize blog posts beautifully on your site."
msgstr "Toon en pas blogberichten prachtig aan op uw site."

#: inc/widgets-manager/base/widgets-config.php:566
msgid "Price Box"
msgstr "Prijs Box"

#: inc/widgets-manager/base/widgets-config.php:567
msgid "Showcase prices and features in customizable layouts."
msgstr "Toon prijzen en functies in aanpasbare indelingen."

#: inc/widgets-manager/base/widgets-config.php:580
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:63
#: build/main.js:54301
msgid "Price List"
msgstr "Prijslijst"

#: inc/widgets-manager/base/widgets-config.php:581
msgid "Create elegant, customizable lists for menus or product catalogues."
msgstr "Maak elegante, aanpasbare lijsten voor menu's of productcatalogi."

#: inc/widgets-manager/base/widgets-config.php:595
msgid "Ensure images look crisp on high-resolution screens."
msgstr "Zorg ervoor dat afbeeldingen scherp zijn op schermen met hoge resolutie."

#: inc/widgets-manager/base/widgets-config.php:607
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:112
#: build/main.js:54350
msgid "Social Share"
msgstr "Sociale Delen"

#: inc/widgets-manager/base/widgets-config.php:608
msgid "Enable quick content sharing with social media buttons."
msgstr "Schakel snelle inhoudsdeling in met sociale media knoppen."

#: inc/widgets-manager/base/widgets-config.php:623
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:47
#: build/main.js:54285
msgid "Table"
msgstr "Tabel"

#: inc/widgets-manager/base/widgets-config.php:624
msgid "Build responsive, styled tables to display data."
msgstr "Bouw responsieve, gestylede tabellen om gegevens weer te geven."

#: inc/widgets-manager/base/widgets-config.php:636
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:93
#: build/main.js:54331
msgid "Table of Contents"
msgstr "Inhoudsopgave"

#: inc/widgets-manager/base/widgets-config.php:637
msgid "Improve page readability with automatic, customizable TOCs."
msgstr "Verbeter de leesbaarheid van pagina's met automatische, aanpasbare TOC's."

#: inc/widgets-manager/base/widgets-config.php:649
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:119
#: build/main.js:54357
msgid "Team Member"
msgstr "Teamlid"

#: inc/widgets-manager/base/widgets-config.php:650
msgid "Highlight team members with customizable layouts."
msgstr "Benadruk teamleden met aanpasbare indelingen."

#: inc/widgets-manager/base/widgets-config.php:663
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:48
#: build/main.js:54286
msgid "Timeline"
msgstr "Tijdlijn"

#: inc/widgets-manager/base/widgets-config.php:664
msgid "Display timelines or roadmaps with advanced styling options."
msgstr "Toon tijdlijnen of roadmaps met geavanceerde stijlopties."

#: inc/widgets-manager/base/widgets-config.php:677
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:111
#: build/main.js:54349
msgid "Twitter Feed"
msgstr "Twitter Feed"

#: inc/widgets-manager/base/widgets-config.php:678
msgid "Embed Twitter feeds to show real-time content updates."
msgstr "Inbedden van Twitter-feeds om real-time inhoudsupdates te tonen."

#: inc/widgets-manager/base/widgets-config.php:692
msgid "User Registration Form"
msgstr "Gebruikersregistratieformulier"

#: inc/widgets-manager/base/widgets-config.php:693
msgid "Create beautiful, custom registration forms for users."
msgstr "Maak mooie, aangepaste registratieformulieren voor gebruikers."

#: inc/widgets-manager/base/widgets-config.php:708
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:52
#: build/main.js:54290
msgid "Video"
msgstr "Video"

#: inc/widgets-manager/base/widgets-config.php:709
msgid "Embed optimized videos with customizable thumbnails and play buttons."
msgstr "Inbedden van geoptimaliseerde video's met aanpasbare miniaturen en afspeelknoppen."

#: inc/widgets-manager/base/widgets-config.php:721
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:46
#: build/main.js:54284
msgid "Video Gallery"
msgstr "Video Galerij"

#: inc/widgets-manager/base/widgets-config.php:722
msgid "Showcase multiple videos without impacting load times."
msgstr "Toon meerdere video's zonder de laadtijden te beïnvloeden."

#: inc/widgets-manager/base/widgets-config.php:734
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:101
#: build/main.js:54339
msgid "Welcome Music"
msgstr "Welkomstmuziek"

#: inc/widgets-manager/base/widgets-config.php:735
msgid "Play background audio to engage visitors upon page load."
msgstr "Speel achtergrondaudio af om bezoekers te betrekken bij het laden van de pagina."

#: inc/widgets-manager/base/widgets-config.php:747
msgid "Woo - Add To Cart"
msgstr "Woo - Voeg toe aan winkelwagentje"

#: inc/widgets-manager/base/widgets-config.php:748
msgid "Let users add items to cart with one click."
msgstr "Laat gebruikers artikelen met één klik aan het winkelwagentje toevoegen."

#: inc/widgets-manager/base/widgets-config.php:760
msgid "Woo - Categories"
msgstr "Woo - Categorieën"

#: inc/widgets-manager/base/widgets-config.php:761
msgid "Display product categories beautifully."
msgstr "Toon productcategorieën prachtig."

#: inc/widgets-manager/base/widgets-config.php:773
msgid "Woo - Checkout"
msgstr "Woo - Afrekenen"

#: inc/widgets-manager/base/widgets-config.php:774
msgid "Design optimized checkout pages for better conversions."
msgstr "Ontwerp geoptimaliseerde afrekenpagina's voor betere conversies."

#: inc/widgets-manager/base/widgets-config.php:786
msgid "Woo - Mini Cart"
msgstr "Woo - Mini Winkelwagentje"

#: inc/widgets-manager/base/widgets-config.php:787
msgid "Show a mini-cart for seamless shopping experiences."
msgstr "Toon een mini-winkelwagentje voor naadloze winkelervaringen."

#: inc/widgets-manager/base/widgets-config.php:799
msgid "Woo - Products"
msgstr "Woo - Producten"

#: inc/widgets-manager/base/widgets-config.php:800
msgid "Present products with detailed, customizable layouts."
msgstr "Presenteer producten met gedetailleerde, aanpasbare indelingen."

#: inc/widgets-manager/base/widgets-config.php:812
msgid "WP Fluent Forms Styler"
msgstr "WP Fluent Forms Styler"

#: inc/widgets-manager/base/widgets-config.php:813
msgid "Style WP Fluent Forms for an attractive, cohesive look."
msgstr "Stijl WP Fluent Forms voor een aantrekkelijke, samenhangende uitstraling."

#: inc/widgets-manager/base/widgets-config.php:825
msgid "WPForms Styler"
msgstr "WPForms Styler"

#: inc/widgets-manager/base/widgets-config.php:826
msgid "Upgrade WPForms with customizable design and layout options."
msgstr "Upgrade WPForms met aanpasbare ontwerp- en lay-outopties."

#: inc/widgets-manager/base/widgets-config.php:838
msgid "Display Conditions"
msgstr "Weergavevoorwaarden"

#: inc/widgets-manager/base/widgets-config.php:839
msgid "Show or hide content based on user interactions."
msgstr "Toon of verberg inhoud op basis van gebruikersinteracties."

#: inc/widgets-manager/base/widgets-config.php:853
msgid "Particle Backgrounds"
msgstr "Deeltjes Achtergronden"

#: inc/widgets-manager/base/widgets-config.php:854
msgid "Add dynamic, animated backgrounds to sections and columns."
msgstr "Voeg dynamische, geanimeerde achtergronden toe aan secties en kolommen."

#: inc/widgets-manager/base/widgets-config.php:866
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:103
#: build/main.js:54341
msgid "Party Propz"
msgstr "Feestelijke Decoraties"

#: inc/widgets-manager/base/widgets-config.php:867
msgid "Decorate your site with festive seasonal elements easily."
msgstr "Versier uw site eenvoudig met feestelijke seizoenselementen."

#: inc/widgets-manager/base/widgets-config.php:879
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:104
#: build/main.js:54342
msgid "Shape Divider"
msgstr "Vormverdeler"

#: inc/widgets-manager/base/widgets-config.php:880
msgid "Add new attractive shape dividers to Elementor sections."
msgstr "Voeg nieuwe aantrekkelijke vormverdeler toe aan Elementor-secties."

#: inc/widgets-manager/base/widgets-config.php:892
msgid "Cross-Site Copy Paste"
msgstr "Cross-Site Kopiëren en Plakken"

#: inc/widgets-manager/base/widgets-config.php:893
msgid "Copy and paste Elementor content between websites."
msgstr "Kopieer en plak Elementor-inhoud tussen websites."

#: inc/widgets-manager/base/widgets-config.php:905
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:100
#: build/main.js:54338
msgid "Presets"
msgstr "Voorinstellingen"

#: inc/widgets-manager/base/widgets-config.php:906
msgid "Use pre-made widget templates to accelerate your design process."
msgstr "Gebruik kant-en-klare widget-sjablonen om uw ontwerpproces te versnellen."

#: inc/widgets-manager/base/widgets-config.php:924
msgid "Caldera Form Styler"
msgstr "Caldera Form Styler"

#: inc/widgets-manager/base/widgets-config.php:925
msgid "Style and enhance Caldera Forms to fit your site."
msgstr "Stijl en verbeter Caldera Forms om bij uw site te passen."

#: inc/widgets-manager/base/widgets-config.php:970
#. translators: %s: theme name
msgid "Free & Fastest WordPress Theme."
msgstr "Gratis & Snelste WordPress Thema."

#: inc/widgets-manager/base/widgets-config.php:995
msgid "Fast and customizable theme for your website."
msgstr "Snelle en aanpasbare thema voor uw website."

#: inc/widgets-manager/base/widgets-config.php:1009
msgid "Launch websites with AI or ready-made templates."
msgstr "Start websites met AI of kant-en-klare sjablonen."

#: inc/widgets-manager/base/widgets-config.php:1022
msgid "SureCart"
msgstr "SureCart"

#: inc/widgets-manager/base/widgets-config.php:1023
msgid "Sell your products easily on WordPress."
msgstr "Verkoop je producten eenvoudig op WordPress."

#: inc/widgets-manager/base/widgets-config.php:1036
msgid "Presto Player"
msgstr "Presto Player"

#: inc/widgets-manager/base/widgets-config.php:1037
msgid "Display seamless & interactive videos."
msgstr "Toon naadloze & interactieve video's."

#: inc/widgets-manager/base/widgets-config.php:1050
msgid "SureForms"
msgstr "SureForms"

#: inc/widgets-manager/base/widgets-config.php:1051
msgid "Create high-converting forms with ease."
msgstr "Maak eenvoudig formulieren met een hoge conversie."

#: inc/widgets-manager/base/widgets-config.php:1064
msgid "SureTriggers"
msgstr "SureTriggers"

#: inc/widgets-manager/base/widgets-config.php:1065
msgid "Automate WordPress tasks effortlessly."
msgstr "Automatiseer WordPress-taken moeiteloos."

#: inc/widgets-manager/base/widgets-config.php:1078
msgid "Schema – All In One Schema Rich Snippets"
msgstr "Schema – Alles-in-één Schema Rich Snippets"

#: inc/widgets-manager/base/widgets-config.php:1079
msgid "Boost SEO with rich results & structured data."
msgstr "Verhoog SEO met rijke resultaten & gestructureerde gegevens."

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:111
msgid "Enable Scroll To Top"
msgstr "Scroll naar boven inschakelen"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:130
msgid "Responsive Support"
msgstr "Responsieve ondersteuning"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:133
msgid "Show"
msgstr "Toon"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:134
msgid "Hide"
msgstr "Verbergen"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:179
msgid "Position"
msgstr "Positie"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:184
msgid "Bottom Left"
msgstr "Onder Links"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:185
msgid "Bottom Right"
msgstr "Onder Rechts"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:197
msgid "Bottom"
msgstr "Onder"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:296
#: inc/widgets-manager/widgets/post-info/post-info.php:580
msgid "Height"
msgstr "Hoogte"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:341
msgid "Z Index"
msgstr "Z-index"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:384
msgid "Media Type"
msgstr "Media Type"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:393
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:431
msgid "Image"
msgstr "Afbeelding"

#: inc/widgets-manager/extensions/class-scroll-to-top.php:318
msgid "Disable Scroll to Top For This Page"
msgstr "Scroll naar boven uitschakelen voor deze pagina"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:125
msgid "Show Home"
msgstr "Toon Home"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:127
#: inc/widgets-manager/widgets/post-info/post-info.php:494
msgid "On"
msgstr "Aan"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:128
#: inc/widgets-manager/widgets/post-info/post-info.php:493
msgid "Off"
msgstr "Uit"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:137
msgid "Home Icon"
msgstr "Home-icoon"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:192
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:212
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:224
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:491
#: inc/widgets-manager/widgets/post-info/post-info.php:491
msgid "Separator"
msgstr "Scheidingsteken"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:199
msgid "Separator Type"
msgstr "Scheidingsteken Type"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:214
msgid "»"
msgstr "»"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:265
msgid "Display Text"
msgstr "Toon tekst"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:272
msgid "Home Page"
msgstr "Startpagina"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:274
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:658
msgid "Home"
msgstr "Home"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:287
msgid "Search results for:"
msgstr "Zoekresultaten voor:"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:300
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:661
msgid "Error 404: Page not found"
msgstr "Fout 404: Pagina niet gevonden"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:332
msgid "Spacing between Items"
msgstr "Ruimte tussen items"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:555
msgid "Current Item"
msgstr "Huidig item"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:662
msgid "Search results for: "
msgstr "Zoekresultaten voor:"

#: inc/widgets-manager/widgets/post-info/post-info.php:112
msgid "Inline"
msgstr "In lijn"

#: inc/widgets-manager/widgets/post-info/post-info.php:134
msgid "Author"
msgstr "Auteur"

#: inc/widgets-manager/widgets/post-info/post-info.php:135
msgid "Time"
msgstr "Tijd"

#: inc/widgets-manager/widgets/post-info/post-info.php:137
msgid "Terms"
msgstr "Voorwaarden"

#: inc/widgets-manager/widgets/post-info/post-info.php:138
#: inc/widgets-manager/widgets/post-info/post-info.php:311
msgid "Comments"
msgstr "Reacties"

#: inc/widgets-manager/widgets/post-info/post-info.php:147
msgid "Date Format"
msgstr "Datumformaat"

#: inc/widgets-manager/widgets/post-info/post-info.php:168
msgid "Custom Date Format"
msgstr "Aangepast datumformaat"

#: inc/widgets-manager/widgets/post-info/post-info.php:177
#: inc/widgets-manager/widgets/post-info/post-info.php:214
#. translators: %s: Allowed data letters (see: http://php.net/manual/en/function.date.php).
#. translators: %s: Allowed time letters (see: http://php.net/manual/en/function.time.php).
msgid "Use the letters: %s"
msgstr "Gebruik de letters: %s"

#: inc/widgets-manager/widgets/post-info/post-info.php:186
msgid "Time Format"
msgstr "Tijdformaat"

#: inc/widgets-manager/widgets/post-info/post-info.php:204
msgid "Custom Time Format"
msgstr "Aangepast tijdformaat"

#: inc/widgets-manager/widgets/post-info/post-info.php:223
msgid "Taxonomy"
msgstr "Taxonomie"

#: inc/widgets-manager/widgets/post-info/post-info.php:237
msgid "Before"
msgstr "Voor"

#: inc/widgets-manager/widgets/post-info/post-info.php:248
msgid "Avatar"
msgstr "Avatar"

#: inc/widgets-manager/widgets/post-info/post-info.php:273
msgid "Custom Format"
msgstr "Aangepast formaat"

#: inc/widgets-manager/widgets/post-info/post-info.php:285
#: inc/widgets-manager/widgets/post-info/post-info.php:287
#: inc/widgets-manager/widgets/post-info/post-info.php:904
msgid "No Comments"
msgstr "Geen reacties"

#: inc/widgets-manager/widgets/post-info/post-info.php:298
#: inc/widgets-manager/widgets/post-info/post-info.php:300
#: inc/widgets-manager/widgets/post-info/post-info.php:905
msgid "One Comment"
msgstr "Één reactie"

#: inc/widgets-manager/widgets/post-info/post-info.php:314
#: inc/widgets-manager/widgets/post-info/post-info.php:907
#. translators: %s: Number of comments.
msgid "%s Comments"
msgstr "%s reacties"

#: inc/widgets-manager/widgets/post-info/post-info.php:383
msgid "Choose Icon"
msgstr "Kies icoon"

#: inc/widgets-manager/widgets/post-info/post-info.php:439
msgid "List Items"
msgstr "Lijst items"

#: inc/widgets-manager/widgets/post-info/post-info.php:470
msgid "Start"
msgstr "Begin"

#: inc/widgets-manager/widgets/post-info/post-info.php:478
msgid "End"
msgstr "Einde"

#: inc/widgets-manager/widgets/post-info/post-info.php:527
msgid "Weight"
msgstr "Gewicht"

#: inc/widgets-manager/widgets/post-info/post-info.php:701
msgid "Spacing between Icon & Text"
msgstr "Ruimte tussen icoon & tekst"

#: inc/widgets-manager/widgets/post-info/post-info.php:759
msgid "Choose"
msgstr "Kies"

#: inc/widgets-manager/widgets/post-info/post-info.php:926
msgid "%s comment"
msgid_plural "%s comments"
msgstr[0] "%s reactie"
msgstr[1] ""

#: build/main.js:2
#: src/Components/NavMenu.js:162
#: build/main.js:51037
msgid "Widgets"
msgstr "Widgets"

#: build/main.js:2
#: src/Components/NavMenu.js:173
#: build/main.js:51048
msgid "Templates"
msgstr "Sjablonen"

#: build/main.js:2
#: src/Components/NavMenu.js:193
#: build/main.js:51068
msgid "Free vs Pro"
msgstr "Gratis vs Pro"

#: build/main.js:2
#: src/Components/NavMenu.js:220
#: build/main.js:51095
msgid "Get Pro"
msgstr "Krijg Pro"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:218
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:200
#: src/Components/NavMenu.js:233
#: src/Components/NavMenu.js:253
#: build/main.js:51108
#: build/main.js:51128
#: build/main.js:52445
#: build/main.js:54456
msgid "Free"
msgstr "Gratis"

#: build/main.js:2
#: src/Components/NavMenu.js:244
#: build/main.js:51119
msgid "Version"
msgstr "Versie"

#: build/main.js:2
#: src/Components/NavMenu.js:278
#: build/main.js:51153
msgid "Useful Resources"
msgstr "Nuttige bronnen"

#: build/main.js:2
#: src/Components/NavMenu.js:295
#: build/main.js:51170
msgid "Getting Started"
msgstr "Aan de slag"

#: build/main.js:2
#: src/Components/NavMenu.js:308
#: build/main.js:51183
msgid "How to use widgets"
msgstr "Hoe widgets te gebruiken"

#: build/main.js:2
#: src/Components/NavMenu.js:321
#: build/main.js:51196
msgid "How to use features"
msgstr "Hoe functies te gebruiken"

#: build/main.js:2
#: src/Components/NavMenu.js:334
#: build/main.js:51209
msgid "How to use templates"
msgstr "Hoe sjablonen te gebruiken"

#: build/main.js:2
#: src/Components/NavMenu.js:347
#: build/main.js:51222
msgid "Contact us"
msgstr "Neem contact met ons op"

#: build/main.js:2
#: src/Components/Dashboard/WidgetItem.jsx:132
#: build/main.js:51418
msgid "View Demo"
msgstr "Bekijk demo"

#: build/main.js:2
#: src/Components/Dashboard/WidgetItem.jsx:145
#: build/main.js:51431
msgid "Read Documentation"
msgstr "Lees documentatie"

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:64
#: build/main.js:51649
msgid "Build Websites 10x Faster with Templates"
msgstr "Bouw websites 10x sneller met sjablonen"

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:70
#: build/main.js:51655
msgid "Choose from our professionally designed websites to build your site faster, with easy customization options."
msgstr "Kies uit onze professioneel ontworpen websites om je site sneller te bouwen, met eenvoudige aanpassingsopties."

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:85
#: src/Components/Dashboard/TemplateSection.js:97
#: build/main.js:51670
#: build/main.js:51682
msgid "View Templates"
msgstr "Bekijk sjablonen"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:20
#: build/main.js:51754
msgid "Quick Access"
msgstr "Snelle toegang"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:53
#: build/main.js:51787
msgid "Contact Us"
msgstr "Neem contact met ons op"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:69
#: build/main.js:51803
msgid "Help Centre"
msgstr "Helpcentrum"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:85
#: build/main.js:51819
msgid "Request a Feature"
msgstr "Vraag een functie aan"

#: build/main.js:2
#: src/Components/HeaderLine.js:16
#: build/main.js:51895
msgid "Formerly Elementor Header & Footer Builder"
msgstr "Voorheen Elementor Header & Footer Builder"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:25
#: build/main.js:51926
msgid "Welcome to Ultimate Addons for Elementor!"
msgstr "Welkom bij Ultimate Addons voor Elementor!"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:29
#: build/main.js:51930
msgid ""
"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our "
"comprehensive range of free and premium widgets and features."
msgstr ""
"We zijn enthousiast om je te helpen je website-bouwervaring te verbeteren. Ontwerp moeiteloos verbluffende websites met "
"ons uitgebreide assortiment gratis en premium widgets en functies."

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:58
#: build/main.js:51959
msgid "Create Header/Footer"
msgstr "Maak Header/Footer"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:86
#: build/main.js:51987
msgid "Create New Page"
msgstr "Maak nieuwe pagina"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:115
#: build/main.js:52016
msgid "Read full guide"
msgstr "Lees volledige gids"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:22
#: src/Components/Dashboard/UltimateFeatures.js:23
#: src/Components/Widgets/UltimateWidgets.jsx:23
#: build/main.js:52096
#: build/main.js:52693
#: build/main.js:54498
msgid "Post Layouts"
msgstr "Berichtindelingen"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:32
#: src/Components/Dashboard/UltimateFeatures.js:33
#: src/Components/Widgets/UltimateWidgets.jsx:33
#: build/main.js:52106
#: build/main.js:52703
#: build/main.js:54508
msgid "Pricing Cards"
msgstr "Prijskaarten"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:37
#: src/Components/Dashboard/UltimateFeatures.js:38
#: src/Components/Widgets/UltimateWidgets.jsx:38
#: build/main.js:52111
#: build/main.js:52708
#: build/main.js:54513
msgid "Form Stylers and more..."
msgstr "Formulierstyling en meer..."

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:68
#: src/Components/Dashboard/UltimateFeatures.js:62
#: src/Components/Widgets/UltimateWidgets.jsx:67
#: build/main.js:52135
#: build/main.js:52737
#: build/main.js:54544
msgid "Unlock Ultimate Features"
msgstr "Ontgrendel ultieme functies"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:76
#: src/Components/Dashboard/UltimateFeatures.js:73
#: src/Components/Widgets/UltimateWidgets.jsx:75
#: build/main.js:52146
#: build/main.js:52745
#: build/main.js:54552
msgid "Create Stunning Designs with the Pro Version!"
msgstr "Creëer verbluffende ontwerpen met de Pro-versie!"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:80
#: src/Components/Dashboard/UltimateFeatures.js:80
#: src/Components/Widgets/UltimateWidgets.jsx:82
#: build/main.js:52153
#: build/main.js:52752
#: build/main.js:54556
msgid "Get access to advanced widgets and features to create the website that stands out!"
msgstr "Krijg toegang tot geavanceerde widgets en functies om de website te creëren die opvalt!"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:198
#: src/Components/Compare/UltimateCompare.jsx:109
#: src/Components/Dashboard/MyAccount.jsx:53
#: src/Components/Dashboard/UltimateFeatures.js:116
#: src/Components/Widgets/UltimateWidgets.jsx:116
#: build/main.js:52189
#: build/main.js:52786
#: build/main.js:54051
#: build/main.js:54436
#: build/main.js:54585
msgid "Upgrade Now"
msgstr "Upgrade nu"

#: build/main.js:2
#: src/Components/Dashboard/UltimateFeatures.js:122
#: src/Components/Widgets/UltimateWidgets.jsx:119
#: build/main.js:52195
#: build/main.js:52789
msgid "Compare Free vs Pro"
msgstr "Vergelijk gratis vs pro"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:55
#: src/Components/Dashboard/UltimateFeatures.js:135
#: src/Components/Widgets/UltimateWidgets.jsx:54
#: build/main.js:52208
#: build/main.js:52724
#: build/main.js:54531
msgid "Column Showcase"
msgstr "Kolom Showcase"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:144
#: build/main.js:52389
msgid "Activating.."
msgstr "Activeren.."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:72
#: build/main.js:52317
msgid "Installing.."
msgstr "Installeren.."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:80
#: build/main.js:52325
msgid "Installed"
msgstr "Geïnstalleerd"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:94
#: build/main.js:52339
msgid "Theme Installation failed, Please try again later."
msgstr "Thema-installatie mislukt, probeer het later opnieuw."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:95
#: build/main.js:52340
msgid "Plugin Installation failed, Please try again later."
msgstr "Plugin-installatie mislukt, probeer het later opnieuw."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:222
#: build/main.js:52467
msgid "Visit Site"
msgstr "Bezoek site"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:234
#: build/main.js:52479
msgid "Activate Theme"
msgstr "Thema activeren"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:238
#: build/main.js:52483
msgid "Are you sure you want to switch your current theme to Astra?"
msgstr "Weet je zeker dat je je huidige thema wilt wijzigen naar Astra?"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:246
#: build/main.js:52491
msgid "Close"
msgstr "Sluiten"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsite.jsx:57
#: build/main.js:52568
msgid "Extend Your Website"
msgstr "Breid uw website uit"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:140
#: build/main.js:52975
msgid "Widgets / Features"
msgstr "Widgets / Functies"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:152
#: build/main.js:52987
msgid "Search..."
msgstr "Zoeken..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:174
#: build/main.js:53009
msgid "Activating..."
msgstr "Activeren..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:174
#: build/main.js:53009
msgid "Activate All"
msgstr "Activeer alles"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:185
#: build/main.js:53020
msgid "Deactivating..."
msgstr "Deactiveren..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:185
#: build/main.js:53020
msgid "Deactivate All"
msgstr "Deactiveer alles"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:17
#: build/main.js:53145
msgid "250+ templates for every niche"
msgstr "250+ sjablonen voor elke niche"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:22
#: build/main.js:53150
msgid "Modern, timeless designs"
msgstr "Moderne, tijdloze ontwerpen"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:27
#: build/main.js:53155
msgid "Full design flexibility for easy customization"
msgstr "Volledige ontwerpflexibiliteit voor eenvoudige aanpassing"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:32
#: build/main.js:53160
msgid "100% responsive across all devices"
msgstr "100% responsief op alle apparaten"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:65
#: src/Components/Templates/ExploreTemplates.jsx:94
#: build/main.js:53193
#: build/main.js:53222
msgid "Install Starter Templates"
msgstr "Installeer Starter Templates"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:65
#: src/Components/Templates/ExploreTemplates.jsx:167
#: build/main.js:53193
#: build/main.js:53295
msgid "Activate Starter Templates"
msgstr "Activeer Starter Templates"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:100
#: src/Components/Templates/ExploreTemplates.jsx:156
#: build/main.js:53228
#: build/main.js:53284
msgid "Activating Starter Templates..."
msgstr "Starter Templates activeren..."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:158
#: build/main.js:53286
msgid "Activated Starter Templates"
msgstr "Starter Templates geactiveerd"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:191
#: build/main.js:53319
msgid "Design Your Website in Minutes"
msgstr "Ontwerp uw website in enkele minuten"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:200
#: build/main.js:53328
msgid "Build your website faster using our prebuilt templates"
msgstr "Bouw uw website sneller met onze vooraf gebouwde sjablonen"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:205
#: build/main.js:53333
msgid ""
"Stop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize "
"and completely responsive. Explore hundreds of designs and bring your vision to life in no time."
msgstr ""
"Stop met het bouwen van uw site vanaf nul. Gebruik onze professionele sjablonen voor uw verbluffende website. Het is "
"eenvoudig aan te passen en volledig responsief. Verken honderden ontwerpen en breng uw visie in een mum van tijd tot "
"leven."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:81
#: build/main.js:53209
msgid "Installing Starter Templates..."
msgstr "Starter Templates installeren..."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:90
#: build/main.js:53218
msgid "Installed Starter Templates"
msgstr "Starter Templates geïnstalleerd"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:238
#: build/main.js:53366
msgid "Explore Templates"
msgstr "Verken sjablonen"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:249
#: build/main.js:53377
msgid "Learn More"
msgstr "Leer meer"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:9
#: build/main.js:53684
msgid "Option 1 (Recommended)"
msgstr "Optie 1 (Aanbevolen)"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:10
#: src/Components/Settings/ThemeSupport.jsx:16
#: build/main.js:53685
#: build/main.js:53691
msgid ""
"This option will automatically replace your theme's header and footer files with custom templates from the plugin. It "
"works with most themes and is selected by default."
msgstr ""
"Deze optie vervangt automatisch de header- en footerbestanden van uw thema door aangepaste sjablonen van de plugin. Het "
"werkt met de meeste thema's en is standaard geselecteerd."

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:15
#: build/main.js:53690
msgid "Option 2"
msgstr "Optie 2"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:63
#: build/main.js:53738
msgid "Settings saved successfully!"
msgstr "Instellingen succesvol opgeslagen!"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:65
#: src/Components/Settings/ThemeSupport.jsx:68
#: build/main.js:53740
#: build/main.js:53743
msgid "Failed to save settings!"
msgstr "Instellingen opslaan mislukt!"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:95
#: build/main.js:53770
msgid "Select Option to Add Theme Support"
msgstr "Selecteer optie om thema-ondersteuning toe te voegen"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:97
#: build/main.js:53772
msgid ""
"To ensure compatibility between the header/footer and your theme, please choose one of the following options to enable "
"theme support:"
msgstr ""
"Om compatibiliteit tussen de header/footer en uw thema te waarborgen, kies een van de volgende opties om "
"thema-ondersteuning in te schakelen:"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:140
#: build/main.js:53815
msgid "Note:"
msgstr "Opmerking:"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:140
#: build/main.js:53815
msgid "If neither option works, please contact your theme author to add support for this plugin."
msgstr ""
"Als geen van beide opties werkt, neem dan contact op met uw thema-auteur om ondersteuning voor deze plugin toe te "
"voegen."

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:69
#: src/Components/Settings/VersionControl.jsx:45
#: build/main.js:53896
#: build/main.js:54129
msgid "Version Control"
msgstr "Versiebeheer"

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:66
#: build/main.js:53917
msgid "Experiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue."
msgstr "Ervaar je een probleem met de huidige versie? Rol terug naar een vorige versie om het probleem op te lossen."

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:112
#: src/Components/Settings/VersionControl.jsx:129
#: build/main.js:53963
#: build/main.js:53980
msgid "Rollback"
msgstr "Terugrollen"

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:132
#: build/main.js:53983
msgid "Cancel"
msgstr "Annuleren"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:16
#: src/Components/Settings/Settings.jsx:29
#: build/main.js:54014
#: build/main.js:54089
msgid "My Account"
msgstr "Mijn account"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:30
#: build/main.js:54028
msgid "License Key"
msgstr "Licentiesleutel"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:35
#: build/main.js:54033
msgid "Unlock Pro Features"
msgstr "Ontgrendel Pro-functies"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:36
#: build/main.js:54034
msgid "Get access to advanced blocks and premium features."
msgstr "Krijg toegang tot geavanceerde blokken en premium functies."

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:18
#: src/Components/Settings/Settings.jsx:25
#: src/Components/Settings/Settings.jsx:37
#: src/Components/Settings/Settings.jsx:44
#: src/Components/Settings/Settings.jsx:57
#: src/Components/Settings/Settings.jsx:64
#: build/main.js:54078
#: build/main.js:54085
#: build/main.js:54097
#: build/main.js:54104
#: build/main.js:54117
#: build/main.js:54124
msgid "Custom SVG"
msgstr "Aangepaste SVG"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:48
#: build/main.js:54108
msgid "Editor"
msgstr "Editor"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:68
#: build/main.js:54128
msgid "Utilities"
msgstr "Hulpmiddelen"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:9
#: build/main.js:54247
msgid "Essentials"
msgstr "Essentials"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:11
#: build/main.js:54249
msgid "White Label Option"
msgstr "White Label-optie"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:12
#: build/main.js:54250
msgid "24/7 Premium Support"
msgstr "24/7 Premium ondersteuning"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:17
#: build/main.js:54255
msgid "Dynamic Header & Footer Widgets"
msgstr "Dynamische header- en footer-widgets"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:32
#: build/main.js:54270
msgid "Creative & Advanced Design Widgets"
msgstr "Creatieve en geavanceerde ontwerpwidgets"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:38
#: build/main.js:54276
msgid "Image Hotspots"
msgstr "Afbeelding hotspots"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:42
#: build/main.js:54280
msgid "Content & Media Widgets"
msgstr "Inhoud- en mediawidgets"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:59
#: build/main.js:54297
msgid "Marketing & Engagement Widgets"
msgstr "Marketing- en betrokkenheidswidgets"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:62
#: build/main.js:54300
msgid "Pricing Table"
msgstr "Prijs tabel"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:70
#: build/main.js:54308
msgid "E-Commerce Integration"
msgstr "E-commerce-integratie"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:72
#: build/main.js:54310
msgid "WooCommerce: Add to Cart"
msgstr "WooCommerce: Voeg toe aan winkelwagentje"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:73
#: build/main.js:54311
msgid "WooCommerce: Product Category"
msgstr "WooCommerce: Productcategorie"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:74
#: build/main.js:54312
msgid "WooCommerce: Mini Cart"
msgstr "WooCommerce: Mini winkelwagentje"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:76
#: build/main.js:54314
msgid "WooCommerce: Checkout"
msgstr "WooCommerce: Afrekenen"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:80
#: build/main.js:54318
msgid "Forms Integration"
msgstr "Formulierenintegratie"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:82
#: build/main.js:54320
msgid "Contact Form 7"
msgstr "Contactformulier 7"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:83
#: build/main.js:54321
msgid "Gravity Forms"
msgstr "Gravity Forms"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:84
#: build/main.js:54322
msgid "WPForms"
msgstr "WPForms"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:85
#: build/main.js:54323
msgid "Fluent Forms"
msgstr "Fluent Forms"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:98
#: build/main.js:54336
msgid "Creative Features"
msgstr "Creatieve functies"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:102
#: build/main.js:54340
msgid "Particles"
msgstr "Deeltjes"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:13
#: build/main.js:54251
msgid "Cross-Domain Copy-Paste"
msgstr "Cross-Domain Kopiëren en Plakken"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:37
#: build/main.js:54275
msgid "Multi-Button"
msgstr "Multi-knop"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:108
#: build/main.js:54346
msgid "Social Media Integration"
msgstr "Social media-integratie"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:116
#: build/main.js:54354
msgid "Advanced Features"
msgstr "Geavanceerde functies"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:120
#: build/main.js:54358
msgid "Post Layout"
msgstr "Berichtlay-out"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:168
#: build/main.js:54406
msgid "Free Vs Pro"
msgstr "Gratis vs Pro"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:171
#: build/main.js:54409
msgid "Ultimate Addons for Elementor Pro offers 50+ widgets and features!"
msgstr "Ultimate Addons voor Elementor Pro biedt 50+ widgets en functies!"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:174
#: build/main.js:54412
msgid "Compare the popular features/widgets to find the best option for your website."
msgstr "Vergelijk de populaire functies/widgets om de beste optie voor uw website te vinden."

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:224
#: build/main.js:54462
msgid "Pro"
msgstr "Pro"

#: src/Components/UpgradeNotice.jsx:33
msgid "Close Upgrade Notice"
msgstr "Sluit Upgrade-melding"

#: src/Components/UpgradeNotice.jsx:38
msgid "Unlock Ultimate Addons For Elementor!  "
msgstr "Ontgrendel Ultimate Addons Voor Elementor!"

#: src/Components/UpgradeNotice.jsx:44
msgid "Get exclusive features and unbeatable performance.  "
msgstr "Krijg exclusieve functies en ongeëvenaarde prestaties."

#: src/Components/UpgradeNotice.jsx:53
msgid "Upgrade now"
msgstr "Upgrade nu"

#: header-footer-elementor.php
#. Plugin Name of the plugin
msgid "Ultimate Addons for Elementor Lite"
msgstr "Ultimate Addons voor Elementor Lite"

#: inc/class-hfe-rollback.php:167
msgid "Ultimate Addons for Elementor Lite <p>Rollback to Previous Version</p>"
msgstr "Ultimate Addons voor Elementor Lite <p>Terugrollen naar vorige versie</p>"

#: inc/widgets-manager/class-widgets-loader.php:190
msgid "Ultimate Addons"
msgstr "Ultimate Addons"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:44
#: build/main.js:54282
msgid "Content Toggle Button"
msgstr "Inhoud Toggle-knop"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:50
#: build/main.js:54288
msgid "Before & After Slider"
msgstr "Voor & Na Slider"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:53
#: build/main.js:54291
msgid "Conditional Display"
msgstr "Voorwaardelijke weergave"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:55
#: build/main.js:54293
msgid "User Registeration Form"
msgstr "Gebruikersregistratieformulier"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:75
#: build/main.js:54313
msgid "WooCommerce: Product"
msgstr "WooCommerce: Product"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:89
#: build/main.js:54327
msgid "SEO Widgets"
msgstr "SEO Widgets"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:91
#: build/main.js:54329
msgid "FAQ with Schema"
msgstr "FAQ met Schema"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:92
#: build/main.js:54330
msgid "How-To"
msgstr "Hoe te doen"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:121
#: build/main.js:54359
msgid "Off Canvas"
msgstr "Off Canvas"

#: admin/class-hfe-addons-actions.php:87
msgid "Plugin slug is missing."
msgstr "Plugin-slug ontbreekt."

#: admin/class-hfe-addons-actions.php:110
msgid "Plugin installation function not found."
msgstr "Plugin-installatiefunctie niet gevonden."

#: admin/class-hfe-addons-actions.php:133
msgid "Theme slug is missing."
msgstr "Thema-slug ontbreekt."

#: admin/class-hfe-addons-actions.php:156
msgid "Theme installation function not found."
msgstr "Thema-installatiefunctie niet gevonden."

#: inc/class-hfe-settings-page.php:103
msgid "How likely are you to recommend Ultimate Addons for Elementor to your friends or colleagues?"
msgstr "Hoe waarschijnlijk is het dat u Ultimate Addons voor Elementor aanbeveelt aan uw vrienden of collega's?"

#: inc/class-hfe-settings-page.php:105
msgid ""
"Could you please do us a favor and give us a 5-star rating on Trustpilot? It would help others choose Ultimate Addons "
"for Elementor with confidence. Thank you!"
msgstr ""
"Zou u ons een plezier willen doen en ons een 5-sterrenbeoordeling op Trustpilot willen geven? Het zou anderen helpen om "
"Ultimate Addons voor Elementor met vertrouwen te kiezen. Dank u!"

#: inc/class-hfe-settings-page.php:108
msgid "Thank you for your feedback"
msgstr "Dank u voor uw feedback"

#: inc/class-hfe-settings-page.php:109
msgid "We value your input. How can we improve your experience?"
msgstr "We waarderen uw input. Hoe kunnen we uw ervaring verbeteren?"

#: inc/widgets-manager/widgets/post-info/post-info.php:152
msgctxt "Date Format"
msgid "June 1, 2024 (F j, Y)"
msgstr "1 juni 2024 (F j, Y)"
PK���\�����*languages/header-footer-elementor-fr_FR.monu�[������,<*<*=*I*8a*�*$�*�*
�*"�*++<+<E+v�+{�+�u,7-@-U-^-k-~-�-	�-�-�-�-
�-	..!.	4.>.F.'O.w.
�.=�.7�.6
/0D/:u/:�/=�/;)04e08�08�081>E1A�1�1�1�1�1	2
222'2
42
B2=P2�2	�2
�2<�2�2�23&373
>3I3	Z3
d3	o3y33�3�3
�3�3�3
�3�3.�3%4,494
L4Z4g4t4{4�4�4�4�4
�4�4(�4?56B50y56�5�5�56I6R6f6m6u6�6�6�6�6�6�6l�6>7F7
L7W7h7x7�7�7�7�7N�78#828
H8
S8^8v8�82�8N�8	9'9N69A�9?�9K:�S:�#;�;�;D�;+-<
Y<d<-t<Q�<6�<C+=9o='�=6�=<>2E>"x>�>�>�>�>�>�>�>?
?,?
9?D?
W?6b?4�?	�?�?�?�?�?!�?
@*@9@9I@�@�@=�@5�A?B7^B#�B�B
�B
�B�B3�B:'C+bC;�C'�C&�C2D2LD<D7�D6�D+E4E<ENEUE\EhEqEzE�E�E�E
�E�E!�E"F)2F�\F%G6?GEvG,�G�G�G7H9LHW�H3�HI4I
KIYIrI�IQ�I
�I
�IJkJxJJ�J
�J�J�J
�J-�JK'K>KKKRKeKvK�K�KB�K�K*�KL7MIMYM`MeM�M�M
�M
�M.�M�M�M3�MR&N4yN�N�NM�N
$O/O
COQOTOWOZO]O`OcOlO|O�O�O�Oe�OP�*P�P�P�P
�P1�P!Q	&Q	0Q
:QEQXQ`QfQ\vQ�Q�Q�QR
RJ$R
oR}R�R�R
�R�R	�R�RY�R:S
@SNS
]S;hS�S�S�S�S	�S�S�S�S�ST	&T0TLTlTyT;�T
�T�T��T	�U�U�U�U0�U�U
VVV+"V5NV�V�V�V�V�V
�V�V	�V
�V
W	WW4W	EW
OW
ZWeWlW	qW	{W�W�W�W�W�W�W�W
XX
 X	+X5XGXWXdXgXsX�X	�X�X�X�X�X
�X�X�X�X
Y
Y Y#Y/Y7YDY[YdYmY
uY�Y�Y	�Y�Y�Y�Y8�Y
Z"Z/Z3AZuZ3�Z'�Z�Z�Z	[[	$[.[:[G[�M[5\I\
Q\	_\
i\
t\
�\�\�\�\�\�\�\�\
�\�\]](].]7]T]`]*l]
�]�]
�]�]�] �]�]	^	^(^5^<^
H^"V^'y^	�^�^�^�^
�^	�^�^	�^_3_>L_,�_0�_0�_6`5Q`	�`�`
�`	�`�`�`�`�`�`�`�`�`��`5�a
�a�a�ab
"b)0bZbjbpb
�b��bec7kc1�c2�c=dFdXdedld	udd�d�d�d�d�d
�d6�d	
eee
"el-e�e��ei?f^�f h7)hah2rh�h
�h2�h&�hiG4io|it�i�aj}
k7�k6�k�k�kll�l�l�l��lFmSmXmim
zm�m�m�m�m"�mF�mB*n	mnwn'�n�n�n�n<�n&o2o@Ao�o�o�o�o
�o�o	�o�o�o	pp#p
)p7p<p	Ep
Op]p
lp
wp�p�p�p��p87q�pq%r
,r-:r)hr�r�r�r�r�r��rps�s�s�s�s�s�s�stt2tPt
ot}t�t�t
�t�t/�t�t�t(�t#u	+u65u lu�u�u�u�u�u�u�v�v/w4w"Cwfwvw%�w�w�w�wM�w�7x��x�Qy-z?zWz_zlz"~z�z�z�z(�z{
{({.{M{l{~{�{;�{�{�{U|Lo|Y�|@}YW}J�}L�}VI~9�~@�~IIeT�W�\�d����
��������р���V�b�	q�{�C��ҁہ�.��$�
+�9�
I�	T�
^�i�q�w�������	ςق�L�N�V�l���������
Ń	Ѓڃ���"�>(�Yg�H��F
�PQ�����Džc΅2�M�U�$^�����������ʆ��	{����� ������	��*�fB�����؈���!�0� D�:e�X����	�W�Lt�L��^�m��z�F�d�V��@ۍ�+�8D�k}�O�_9�C��6ݏQ�^f�EŐ%�1�M�j���
������Α���'�E�JX�H������	��)�>�J�[�Gm���+����F��MҕJ �7k�����ǖۖ7�M%�Hs�X��<�-R�2��4��W�;@�I|�ƙϙؙ
�����
�
�$�?�0Y�������!��4�?��V�;�UX�`��:�J�#d�I��Hҝf�>����JŞ�#�A�M�rl�
ߟ�������������Š,ՠ�5�K�_�u���*�� ��ܡ���R�-X�.��q��'�D�W�`�+h���������BӤ	� �?,�_l�H̥	�$�SD�����
ŦӦ֦٦ܦߦ����*�$:�_�zg�
���������¨QϨ!�)�:�
I�T�r�����k��%�1�O�
l�z�d����	� �@�G�[�y���v��� �1�G�dY���Ƭ۬����
�	'�1�$E�	j�!t�*����٭O�8�G��[�	?�	I�S�Y�Bs���ïү�K�L5���������$��ݰ#�	��,�D�$S�x���������ñȱױ,�!�05�
f�q���������
Ͳ
ز�����(/�X�	o�y�������
��
Ƴѳݳ�����(�1�E�]�	f�p�|�����
��ȴݴ�R�_�r���B��յ>�.%�T�t�
��������ض����P�
C�
Q�_�
n�|�������
����˸����#�4�A�M�S�!g�����.��ڹ	����&�+>�j�������
ºк�:�-=�k�w���'����	ѻۻ���>�UM�9��Mݼ<+�Ih�[����
*�8�E�L�S�[�p�!v��������?x���
ſ%п���0'�X�j�q�������=��G�C-�Tq�����	����	���!�5�	I�S�g�9w���������o��H��_�u���f�+�@E���B������>��.;�j�Z������o������/h�H����������	��������z�����������������#��K"�Pn�	��#��/��'�E�^�Rz�����_��]�w�$��$���������	��'�C�J�Y�	^�
h�v����������������P���������2��/"�R�k�s��������g���������������,�#B�f�
���������� ��7��
��+.�Z�
b�6m� ����	�������� Know More. Method 1 (Recommended) This will be applicable for all sites from the network.%1$s %3$s %2$s%1$s Getting started article » %2$s%s Comments%s comment100% responsive across all devices24/7 Premium Support250+ templates for every niche404 Page<b>Note:</b> Archive page title will be visible on frontend.<b>Note:</b> On desktop, below style options will apply to the submenu. On mobile, this will apply to the entire menu.<strong>There are no menus in your site.</strong><br>Go to the <a href="%s" target="_blank">Menus screen</a> to create one.A popular templates plugin that provides an extensive library of professional and fully customizable 600+ ready website and templates. More than 1+ Million websites have built with this plugin.About UsAction On Menu ClickActivateActivate AllActivate ElementorActivate Starter TemplatesActivate ThemeActivatedActivated Starter TemplatesActivating Starter Templates...Activating..Activating...ActiveAdd Display RuleAdd Exclusion RuleAdd ImageAdd NewAdd RuleAdd SEO-friendly FAQ sections to pages.Add Theme SupportAdd User RuleAdd a customizable button for quick, one-click top scrolling.Add a high-quality logo that looks sharp on any screen.Add a search bar to help visitors find content easily.Add animated text for more engaging page titles.Add customizable, multi-location maps with custom markers.Add dynamic, animated backgrounds to sections and columns.Add headings, icons, and descriptions in one flexible widget.Add interactive points on images for detailed visual tours.Add locations for where this template should appear.Add locations for where this template should not appear.Add navigation links to guide visitors across your site.Add new attractive shape dividers to Elementor sections.Add stylish and functional menus for seamless site navigation.Add your site's primary logo with flexible customization options.AdvancedAdvanced FeaturesAdvanced HeadingAfter Title TextAlignmentAllAll %sAll %s ArchiveAll ArchivesAll SingularsAll TemplatesAllow %s products to track non-sensitive usage tracking data.Already Exists.AnimationAppear EffectAre you sure you want to switch your current theme to Astra?ArrowsAuthorAuthor ArchiveAutomate WordPress tasks effortlessly.AvatarBackgroundBackground ColorBag LightBag MediumBag SolidBasicBeforeBefore & After SliderBefore After SliderBefore FooterBefore Title TextBeginnerBlend ModeBlog / Posts PageBoost SEO with rich results & structured data.BorderBorder ColorBorder Hover ColorBorder RadiusBorder StyleBorder WidthBottomBottom LeftBottom RightBrainstorm ForceBrainstorm Force TeamBreadcrumbsBreakpointBubbleBuild Websites 10x Faster with TemplatesBuild attractive, feature-rich galleries with advanced options.Build easy-to-navigate, visually appealing site menus.Build responsive, styled tables to display data.Build your website faster using our prebuilt templatesBusiness HoursBusiness ReviewsButtonBy submitting, you agree to our %1$sTerms%2$s and %3$sPrivacy Policy%4$s.Caldera Form StylerCancelCaptionCaption Top SpacingCartCenterChooseChoose Default ImageChoose IconChoose Retina ImageChoose from our professionally designed websites to build your site faster, with easy customization options.ClassicCloseClose IconClose Icon ColorClose Icon SizeClose Upgrade NoticeColorColumn ShowcaseCommentsCompare Free vs ProCompare the popular features/widgets to find the best option for your website.Conditional DisplayContact Form 7Contact Form 7 StylerContact UsContact usContent & Media WidgetsContent ToggleContent Toggle ButtonCopy and paste Elementor content between websites.Copy this shortcode and paste it into your post, page, or text widget content.CopyrightCopyright TextCopyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]Could not activate plugin. Please activate from the Plugins page.Could not activate theme. Please activate from the Themes page.Could not install. Please download from WordPress.org and install manually.Could you please do us a BIG favor and give it a 5-star rating on WordPress? This would boost our motivation and help other users make a comfortable decision while choosing the Ultimate Addons for Elementor.Could you please do us a favor and give us a 5-star rating on Trustpilot? It would help others choose Ultimate Addons for Elementor with confidence. Thank you!Countdown TimerCreate Header/FooterCreate High-impact, customizable CTA for promotions and conversions.Create Impressive Header and Footer DesignsCreate NewCreate New PageCreate Stunning Designs with the Pro Version!Create a versatile dual-button setup for navigation and interactive web elements.Create beautiful, custom registration forms for users.Create elegant, customizable lists for menus or product catalogues.Create engaging and customizable headings for your pages.Create high-converting forms with ease.Create sliding panels for navigation or extra content.Create structured how-to pages with automatic schema markup.Create urgency with fixed or recurring countdowns.Creative & Advanced Design WidgetsCreative FeaturesCross-Domain Copy-PasteCross-Site Copy PasteCurrent ItemCustomCustom BlockCustom CaptionCustom Date FormatCustom FormatCustom ImageCustom SVGCustom Time FormatCustom URLCustomize Gravity Forms with advanced styling options.Customize and display your business hours stylishly.DashboardDashedDateDate ArchiveDate FormatDate FormatJune 1, 2024 (F j, Y)DeactivateDeactivate AllDeactivating...Decorate your site with festive seasonal elements easily.DefaultDesign Your Website in MinutesDesign beautiful layouts with simple drag & drop and display them at desired location with powerful target controls. The plugin comes with inbuilt Elementor widgets that offer essential features to build header and footer. It's a lightweight plugin that works seamlessly with all themes and backed up by 24/7 support.Design beautiful, customizable WordPress login forms.Design engaging popups with interactive animations and content.Design optimized checkout pages for better conversions.Disable Scroll to Top For This PageDisplay ConditionsDisplay OnDisplay RulesDisplay TextDisplay an attractive, customizable Instagram feed.Display and customize blog posts beautifully on your site.Display custom template based on user role.Display customizable copyright text for your site's footer.Display product categories beautifully.Display seamless & interactive videos.Display the before and after versions of an image.Display the title of the current page dynamically.Display timelines or roadmaps with advanced styling options.Display verified reviews from Google and Yelp directly.Display your site's tagline to enhance brand identity.DistanceDividerDo Not Display OnDottedDoubleDouble LineDownloadDropdownDropdown Width (px)Dual Color HeadingDynamic Header & Footer WidgetsE-Commerce IntegrationEdit TemplateEditorElementor Header & Footer BuilderElementor Header & Footer Builder Elementor Header & Footer Builder OptionsElementor Header & Footer Builder plugin lets you build impactful navigation for your website very easily. Before we begin, we would like to know more about you. This will help us to serve you better.Email address is requiredEmbed Twitter feeds to show real-time content updates.Embed optimized videos with customizable thumbnails and play buttons.Enable Layout for Elementor Canvas Template?Enable Schema SupportEnable Scroll To TopEnable quick content sharing with social media buttons.Enable this option to stretch the Sub Menu to Full Width.Enabling this option will display this layout on pages using Elementor Canvas Template.Encountered an error while performing your request.EndEnsure images look crisp on high-resolution screens.Enter captionEnter your image captionEntire WebsiteError 404: Page not foundError occurred, The version selected is invalid. Try selecting different version.EssentialsExclude OnExpandedExperiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue.ExpertExplore TemplatesExtend Your WebsiteFAQ SchemaFAQ with SchemaFailed to save settings!Fancy HeadingFast and customizable theme for your website.Field is requiredFirst name is requiredFluent FormsFlyoutFlyout Box PaddingFlyout Box WidthFlyout OrientationFocusFooterFor Horizontal layout, this will affect on the selected breakpointForm Stylers and more...Formerly Elementor Header & Footer BuilderFormerly known as "Elementor Header & Footer Builder", this powerful plugin allows you to create custom headers and footers with Elementor and display them in selected locations. You can also create custom Elementor blocks and place them anywhere on your website using a shortcode.Forms IntegrationFrame AnimationFramedFreeFree & Fastest WordPress Theme.Free Vs ProFree vs ProFront PageFull WidthFull design flexibility for easy customizationGeneralGet ProGet access to advanced blocks and premium features.Get access to advanced widgets and features to create the website that stands out!Get exclusive features and unbeatable performance.  Getting StartedGo to HFE Settings pageGo to the <a href="%s" target="_blank">Menus screen</a> to manage your menus.Google MapGravity Form StylerGravity FormsH1H2H3H4H5H6HTML TagHamburger AlignHeaderHeader & Footer BuilderHeader/Footer BuilderHeightHello! Seems like you have used Ultimate Addons for Elementor to build this website — Thanks a ton!Help CentreHelp us spread the word about the plugin by leaving %2$s %1$s %3$s ratings on %2$s WordPress.org %3$s. Thank you from the Brainstorm Force team!Helpful InformationHideHide + & - SignHide EmptyHighlight team members with customizable layouts.HomeHome IconHome PageHorizontalHorizontal PaddingHotspotHoverHover AnimationHow likely are you to recommend Ultimate Addons for Elementor to your friends or colleagues?How to use featuresHow to use templatesHow to use widgetsHow-ToHow-to SchemaI agree to receive your newsletters and accept the data privacy statement.I already didI'm a WordPress:I'm building website for:IconIcon ColorIcon Hover ColorIcon SizeIcon SpacingIf neither option works, please contact your theme author to add support for this plugin.ImageImage GalleryImage HotspotsImage SizeImprove page readability with automatic, customizable TOCs.InactiveInfo BoxInlineInputInput BoxInput Box With ButtonInstagram FeedInstallInstall ElementorInstall Starter TemplatesInstalledInstalled Starter TemplatesInstalling Starter Templates...Installing..IntermediateInvalid SVG Format, file not uploaded for security reasons!Invalid nonceItems CountIt’s a collection of 40+ unique, creative, and optimized Elementor widgets with 100+ readymade templates. Trusted by more than 600+ K web professionals. It’s a #1 toolkit for Elementor Page Builder.JustifiedJustifyLargeLast Menu ItemLaunch websites with AI or ready-made templates.LayoutLearn MoreLearn More.LeftLet users add items to cart with one click.Let users easily switch between two types of content.License KeyLightboxLinkLink Hover EffectLink Hover Effect ColorList ItemsLoading more results…Logged InLogged OutLogin FormMain MenuMarketing & Engagement WidgetsMarketing ButtonMax WidthMedia FileMedia TypeMediumMenuMenu CartMenu IconMenu Item Top SpacingMenu Items AlignMenu Trigger & Close IconMethod 2Mobile (768px >)Modal PopupModern, timeless designsMulti ButtonsMulti-ButtonMy AccountMy clientMyself/My companyNavigation MenuNew TemplateNoNo CommentsNo Templates found in Trash.No Templates found.No ThanksNo results foundNoneNope, maybe laterNormalNot InstalledNote:OffOff - CanvasOff CanvasOk, you deserve itOnOne CommentOpacityOpen SubmenuOption 1 (Recommended)Option 2OverlinePaddingPage TitleParent Templates:Particle BackgroundsParticlesParty PropzPlaceholderPlaceholder ColorPlay background audio to engage visitors upon page load.Please deletePlease enterPlugin Activated.Plugin Installation failed, Please try again later.Plugin InstalledPlugin activation is disabled for you on this site.Plugin installation function not found.Plugin slug is missing.Plugins list not foundPlus SignPositionPost InfoPost LayoutPost LayoutsPostsPowering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for all kinds of websites like blogs, portfolios, business, and WooCommerce stores.Present products with detailed, customizable layouts.PresetsPresto PlayerPrice BoxPrice ListPricing CardsPricing TableProPushQuick AccessRead DocumentationRead full guideRedirect To Self LinkRequest a FeatureResponsiveResponsive SupportRetina ImageRetina LogoRightRollbackRollback to Previous VersionRow SpacingSEO WidgetsSchema – All In One Schema Rich SnippetsScroll to TopSearchSearch BoxSearch PageSearch TemplatesSearch pages / post / categoriesSearch results for:Search results for: Search...Searching…SelectSelect IconSelect OptionSelect Option to Add Theme SupportSell your products easily on WordPress.SeparatorSeparator TypeSettingsSettings saved successfully!Shape DividerShortcodeShowShow HomeShow Total PriceShow a mini-cart for seamless shopping experiences.Show author, dates, and reading time with customizable styles.Show cart for seamless shopping experiences.Show or hide content based on user interactions.Show your site’s name in a customizable style.Showcase multiple videos without impacting load times.Showcase prices and features in customizable layouts.Site LogoSite TaglineSite TitleSite logoSizeSkipSlideSlide UpSmallSocial Media IntegrationSocial ShareSolidSometimes above methods might not work well with your theme, in this case, contact your theme author and request them to add support for the <a href="%s">plugin.</a>Sorry, you are not authorized to perform this action.Space BetweenSpacingSpacing between Icon & TextSpacing between ItemsSpecial PagesSpecific Pages / Posts / Taxonomies, etc.Specific TargetStartStarter TemplatesStatus: %sStop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize and completely responsive. Explore hundreds of designs and bring your vision to life in no time.StyleStyle WP Fluent Forms for an attractive, cohesive look.Style and enhance Caldera Forms to fit your site.Style and enhance Contact Form 7 to fit your site.Style headings with dual colours and customizable typography.Submenu AnimationSubmenu IconSubmitSureCartSureFormsSureTriggersTableTable of ContentsTablet (1025px >)TaxonomyTeam MemberTeam photoTemplate %1$s is already assigned to the location %2$sTemplatesTermsTextText ColorThank you for installing %1$s Ultimate Addons for Elementor %2$s Plugin! Click here to %3$sget started. %4$sThank you for your feedbackThe %1$sUltimate Addons for Elementor%2$s plugin has stopped working because you are using an older version of %1$sElementor%2$s plugin.The %1$sUltimate Addons for Elementor%2$s plugin requires %1$sElementor%2$s plugin installed & activated.The Ultimate Addons for Elementor plugin need compatibility with your current theme to work smoothly.</br></br>Following are two methods that enable theme support for the plugin.</br></br>Method 1 is selected by default and that works fine almost will all themes. In case, you face any issue with the header or footer template, try choosing Method 2.The results could not be loaded.The same display setting is already exist in %s post/s.Theme Activated.Theme Installation failed, Please try again later.Theme InstalledTheme SupportTheme activation is disabled for you on this site.Theme installation function not found.Theme slug is missing.This is the alignement of menu icon on selected responsive breakpoints.This method hides your theme's header & footer template with CSS and displays custom templates from the plugin.This method replaces your theme's header (header.php) & footer (footer.php) template with plugin's custom templates.This option will automatically replace your theme's header and footer files with custom templates from the plugin. It works with most themes and is selected by default.This plugin is brought to you by the same team behind the popular WordPress theme %s and a series of Ultimate Addons plugins.This will be applicable for all sites from the network.This will hide the items count until the cart is emptyTimeTime FormatTimelineTitleTo ensure compatibility between the header/footer and your theme, please choose one of the following options to enable theme support:Top DistanceTransition DurationTrusted by more than 1+ Million users, Elementor Header & Footer Builder is a modern way to build advanced navigation for your website.Twitter FeedTypeType & Hit EnterType of TemplateTypographyUAEUAE LiteUltimate AddonsUltimate Addons for ElementorUltimate Addons for Elementor LiteUltimate Addons for Elementor Lite <p>Rollback to Previous Version</p>Ultimate Addons for Elementor Pro offers 50+ widgets and features!UnderlineUnlock Pro FeaturesUnlock Ultimate Addons For Elementor!  Unlock Ultimate FeaturesUpdate ElementorUpgrade NowUpgrade WPForms with customizable design and layout options.Upgrade nowUsage TrackingUse pre-made widget templates to accelerate your design process.Use the letters: %sUseful ResourcesUser Registeration FormUser Registration FormUser RolesUsersUtilitiesVersionVersion ControlVerticalVertical PaddingVideoVideo GalleryViewView AllView DemoView TemplateView TemplatesVisit SiteVisit WebsiteWP Fluent Forms StylerWPFormsWPForms StylerWant to help make <strong>%1s</strong> even more awesome? Allow us to collect non-sensitive diagnostic data and usage information. We value your input. How can we improve your experience?We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.WeightWelcome MusicWelcome to Elementor Header & Footer Builder!Welcome to Ultimate Addons for Elementor!White Label OptionWidgetsWidgets / FeaturesWidgets list not foundWidthWith this awesome plugin, experience the easiest way to create a customized header and footer for your website with Elementor. That too 100% FREE!Woo - Add To CartWoo - CategoriesWoo - CheckoutWoo - Mini CartWoo - ProductsWooCommerce Shop PageWooCommerce: Add to CartWooCommerce: CheckoutWooCommerce: Mini CartWooCommerce: ProductWooCommerce: Product CategoryWordPress Nonce not validated.WordPress.orgXLXXLYesYes! Allow itYou can only selectYou do not have permission to access this page.Your First NameYour Work EmailYour details are submitted successfully.Z Indexcharacterhttps://wordpress.org/plugins/header-footer-elementor/https://www.brainstormforce.com/https://your-link.comitemor more characterss»Project-Id-Version: 
Report-Msgid-Bugs-To: 
Last-Translator: gpt-po v1.2.0
Language-Team: 
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
POT-Creation-Date: 2025-01-09T15:10:54+00:00
PO-Revision-Date: 2025-01-09T15:10:54+00:00
Language: 
En savoir plus.Méthode 1 (Recommandée)Cela s'appliquera à tous les sites du réseau.%1$s %3$s %2$s%1$s Article de démarrage » %2$s%s commentaires%s commentaire100 % réactif sur tous les appareilsSupport premium 24/7250+ modèles pour chaque nichePage 404<b>Remarque :</b> Le titre de la page d'archive sera visible sur le frontend.<b>Remarque :</b> Sur bureau, les options de style ci-dessous s'appliqueront au sous-menu. Sur mobile, cela s'appliquera à l'ensemble du menu.<strong>Il n'y a pas de menus sur votre site.</strong><br>Allez à l'<a href="%s" target="_blank">écran des Menus</a> pour en créer un.Un plugin de modèles populaire qui fournit une vaste bibliothèque de plus de 600 sites web et modèles professionnels entièrement personnalisables. Plus de 1+ million de sites web ont été construits avec ce plugin.À propos de nousAction sur clic de menuActiverActiver toutActiver ElementorActiver les modèles de démarrageActiver le thèmeActivéModèles de démarrage activésActivation des modèles de démarrage...Activation en cours..Activation...ActifAjouter une règle d'affichageAjouter une règle d'exclusionAjouter une imageAjouter nouveauAjouter une règleAjoutez des sections FAQ optimisées pour le SEO aux pages.Ajouter le support du thèmeAjouter une règle utilisateurAjoutez un bouton personnalisable pour un défilement rapide en un clic vers le haut.Ajoutez un logo de haute qualité qui a l'air net sur n'importe quel écran.Ajoutez une barre de recherche pour aider les visiteurs à trouver facilement du contenu.Ajoutez du texte animé pour des titres de page plus engageants.Ajoutez des cartes personnalisables multi-emplacements avec des marqueurs personnalisés.Ajoutez des arrière-plans dynamiques et animés aux sections et colonnes.Ajoutez des titres, des icônes et des descriptions dans un widget flexible.Ajoutez des points interactifs sur les images pour des visites visuelles détaillées.Ajouter des emplacements où ce modèle doit apparaître.Ajouter des emplacements où ce modèle ne doit pas apparaître.Ajouter des liens de navigation pour guider les visiteurs sur votre site.Ajoutez de nouveaux diviseurs de forme attrayants aux sections Elementor.Ajoutez des menus élégants et fonctionnels pour une navigation fluide sur le site.Ajoutez le logo principal de votre site avec des options de personnalisation flexibles.AvancéFonctionnalités avancéesEn-tête avancéTexte après le titreAlignementToutTous %sToute l'archive %sToutes les archivesTous les singuliersTous les modèlesAutoriser les produits %s à suivre des données de suivi d'utilisation non sensibles.Existe déjà.AnimationEffet d'apparitionÊtes-vous sûr de vouloir changer votre thème actuel pour Astra ?FlèchesAuteurArchive par auteurAutomatisez les tâches WordPress sans effort.AvatarArrière-planCouleur de fondSac légerSac moyenSac solideBasiqueAvantCurseur avant et aprèsCurseur Avant AprèsAvant le pied de pageTexte avant le titreDébutantMode de fusionBlog / Page des articlesAméliorez le SEO avec des résultats enrichis et des données structurées.BordureCouleur de la bordureCouleur de survol de la bordureRayon de bordureStyle de bordureLargeur de bordureBasBas gaucheBas droitBrainstorm ForceÉquipe Brainstorm ForceFil d'ArianePoint de ruptureBulleCréez des sites Web 10 fois plus rapidement avec des modèlesCréez des galeries attrayantes et riches en fonctionnalités avec des options avancées.Créez des menus de site faciles à naviguer et visuellement attrayants.Créez des tables réactives et stylisées pour afficher des données.Construisez votre site Web plus rapidement en utilisant nos modèles préconçusHeures d'ouvertureAvis d'entrepriseBoutonEn soumettant, vous acceptez nos %1$sConditions%2$s et notre %3$sPolitique de confidentialité%4$s.Styliseur de Caldera FormsAnnulerLégendeEspacement supérieur de la légendePanierCentreChoisirChoisir une image par défautChoisir une icôneChoisir une image RetinaChoisissez parmi nos sites Web conçus par des professionnels pour construire votre site plus rapidement, avec des options de personnalisation faciles.ClassiqueFermerIcône de fermetureCouleur de l'icône de fermetureTaille de l'icône de fermetureFermer l'avis de mise à niveauCouleurVitrine de colonnesCommentairesComparer Gratuit vs ProComparez les fonctionnalités/widgets populaires pour trouver la meilleure option pour votre site web.Affichage conditionnelFormulaire de contact 7Styliser Contact Form 7Contactez-nousContactez-nousWidgets de contenu et multimédiaBasculer le contenuBouton de basculement de contenuCopiez et collez le contenu Elementor entre les sites web.Copiez ce shortcode et collez-le dans le contenu de votre article, page ou widget texte.Droits d'auteurTexte de copyrightDroits d'auteur © [hfe_current_year] [hfe_site_title] | Propulsé par [hfe_site_title]Impossible d'activer le plugin. Veuillez activer depuis la page des plugins.Impossible d'activer le thème. Veuillez activer depuis la page des thèmes.Impossible d'installer. Veuillez télécharger depuis WordPress.org et installer manuellement.Pourriez-vous s'il vous plaît nous rendre un GRAND service et lui donner une note de 5 étoiles sur WordPress ? Cela renforcerait notre motivation et aiderait d'autres utilisateurs à prendre une décision confortable lors du choix des Ultimate Addons pour Elementor.Pourriez-vous s'il vous plaît nous rendre un service et nous donner une note de 5 étoiles sur Trustpilot ? Cela aiderait les autres à choisir Ultimate Addons pour Elementor en toute confiance. Merci !Minuteur de compte à reboursCréer un en-tête/pied de pageCréez des CTA personnalisables à fort impact pour les promotions et les conversions.Créer des designs d'en-tête et de pied de page impressionnantsCréer nouveauCréer une nouvelle pageCréez des designs époustouflants avec la version Pro !Créez une configuration polyvalente à double bouton pour la navigation et les éléments web interactifs.Créez de beaux formulaires d'inscription personnalisés pour les utilisateurs.Créez des listes élégantes et personnalisables pour les menus ou les catalogues de produits.Créez des en-têtes engageants et personnalisables pour vos pages.Créez des formulaires à forte conversion facilement.Créez des panneaux coulissants pour la navigation ou du contenu supplémentaire.Créez des pages structurées de type "comment faire" avec un balisage de schéma automatique.Créez de l'urgence avec des comptes à rebours fixes ou récurrents.Widgets de design créatif et avancéFonctionnalités créativesCopier-coller inter-domainesCopier-Coller entre SitesÉlément actuelPersonnaliséBloc personnaliséLégende personnaliséeFormat de date personnaliséFormat personnaliséImage personnaliséeSVG personnaliséFormat de temps personnaliséURL personnaliséePersonnalisez les formulaires Gravity avec des options de style avancées.Personnalisez et affichez vos heures d'ouverture de manière élégante.Tableau de bordTiretéDateArchive par dateFormat de date1 juin 2024 (j F, Y)DésactiverDésactiver toutDésactivation...Décorez votre site avec des éléments saisonniers festifs facilement.Par défautConcevez votre site Web en quelques minutesConcevez de magnifiques mises en page avec un simple glisser-déposer et affichez-les à l'emplacement souhaité avec des contrôles de ciblage puissants. Le plugin est livré avec des widgets Elementor intégrés qui offrent des fonctionnalités essentielles pour construire l'en-tête et le pied de page. C'est un plugin léger qui fonctionne parfaitement avec tous les thèmes et bénéficie d'un support 24/7.Concevez de beaux formulaires de connexion WordPress personnalisables.Concevez des popups engageants avec des animations et du contenu interactifs.Concevez des pages de paiement optimisées pour de meilleures conversions.Désactiver le défilement vers le haut pour cette pageConditions d'affichageAfficher surRègles d'affichageTexte d'affichageAffichez un fil Instagram attrayant et personnalisable.Affichez et personnalisez magnifiquement les articles de blog sur votre site.Afficher le modèle personnalisé en fonction du rôle de l'utilisateur.Afficher un texte de droits d'auteur personnalisable pour le pied de page de votre site.Affichez les catégories de produits de manière attrayante.Affichez des vidéos interactives et fluides.Afficher les versions avant et après d'une image.Afficher dynamiquement le titre de la page actuelle.Affichez des chronologies ou des feuilles de route avec des options de style avancées.Affichez des avis vérifiés de Google et Yelp directement.Affichez le slogan de votre site pour renforcer l'identité de la marque.DistanceDiviseurNe pas afficher surPointilléDoubleDouble ligneTéléchargerDéroulantLargeur du déroulant (px)En-tête à deux couleursWidgets d'en-tête et de pied de page dynamiquesIntégration E-CommerceModifier le modèleÉditeurElementor Header & Footer BuilderConstructeur d'en-tête et de pied de page ElementorOptions du constructeur d'en-tête et de pied de page ElementorLe plugin Elementor Header & Footer Builder vous permet de créer une navigation percutante pour votre site web très facilement. Avant de commencer, nous aimerions en savoir plus sur vous. Cela nous aidera à mieux vous servir.L'adresse e-mail est requiseIntégrez des fils Twitter pour afficher des mises à jour de contenu en temps réel.Intégrez des vidéos optimisées avec des vignettes et des boutons de lecture personnalisables.Activer la mise en page pour le modèle Elementor Canvas ?Activer le support SchemaActiver le défilement vers le hautActivez le partage rapide de contenu avec des boutons de médias sociaux.Activez cette option pour étendre le sous-menu à la largeur complète.Activer cette option affichera cette mise en page sur les pages utilisant le modèle Elementor Canvas.Une erreur est survenue lors de l'exécution de votre demande.FinAssurez-vous que les images sont nettes sur les écrans haute résolution.Entrez la légendeEntrez votre légende d'imageSite entierErreur 404 : Page non trouvéeUne erreur est survenue, la version sélectionnée est invalide. Essayez de sélectionner une version différente.EssentielsExclure surDéveloppéVous rencontrez un problème avec la version actuelle ? Revenez à une version précédente pour aider à résoudre le problème.ExpertExplorer les modèlesÉtendez votre site webSchéma FAQFAQ avec SchemaÉchec de l'enregistrement des paramètres !En-tête fantaisieThème rapide et personnalisable pour votre site web.Ce champ est requisLe prénom est requisFormulaires fluidesFlyoutMarge intérieure de la boîte déroulanteLargeur de la boîte déroulanteOrientation du FlyoutFocusPied de pagePour la mise en page horizontale, cela affectera le point de rupture sélectionnéStylisateurs de formulaires et plus encore...Anciennement Elementor Header & Footer BuilderAnciennement connu sous le nom de "Elementor Header & Footer Builder", ce puissant plugin vous permet de créer des en-têtes et des pieds de page personnalisés avec Elementor et de les afficher à des emplacements sélectionnés. Vous pouvez également créer des blocs Elementor personnalisés et les placer n'importe où sur votre site Web à l'aide d'un shortcode.Intégration des formulairesAnimation de cadreEncadréGratuitThème WordPress gratuit et le plus rapide.Gratuit Vs ProGratuit vs ProPage d'accueilLargeur complèteFlexibilité de conception totale pour une personnalisation facileGénéralObtenir ProAccédez à des blocs avancés et des fonctionnalités premium.Accédez à des widgets et fonctionnalités avancés pour créer un site web qui se démarque !Obtenez des fonctionnalités exclusives et des performances imbattables.CommencerAllez à la page des paramètres HFEAllez à l'<a href="%s" target="_blank">écran des Menus</a> pour gérer vos menus.Carte GoogleStyliseur de formulaire GravityGravity FormsH1H2H3H4H5H6Tag HTMLAlignement du hamburgerEn-têteConstructeur d'en-tête et de pied de pageConstructeur d'en-tête/pied de pageHauteurBonjour ! Il semble que vous ayez utilisé Ultimate Addons pour Elementor pour construire ce site Web — Merci beaucoup !Centre d'aideAidez-nous à faire connaître le plugin en laissant %2$s %1$s %3$s évaluations sur %2$s WordPress.org %3$s. Merci de la part de l'équipe Brainstorm Force !Informations utilesMasquerMasquer le signe + & -Masquer videMettez en avant les membres de l'équipe avec des mises en page personnalisables.AccueilIcône d'accueilPage d'accueilHorizontalMarge intérieure horizontalePoint d'intérêtSurvolAnimation de survolQuelle est la probabilité que vous recommandiez Ultimate Addons pour Elementor à vos amis ou collègues ?Comment utiliser les fonctionnalitésComment utiliser les modèlesComment utiliser les widgetsComment faireSchéma Comment faireJ'accepte de recevoir vos newsletters et j'accepte la déclaration de confidentialité des données.Je l'ai déjà faitJe suis un WordPress :Je construis un site web pour :IcôneCouleur de l'icôneCouleur de survol de l'icôneTaille de l'icôneEspacement de l'icôneSi aucune des options ne fonctionne, veuillez contacter l'auteur de votre thème pour ajouter le support de ce plugin.ImageGalerie d'imagesPoints chauds d'imageTaille de l'imageAméliorez la lisibilité de la page avec des tables des matières automatiques et personnalisables.InactifBoîte d'informationEn ligneSaisieBoîte de saisieBoîte de saisie avec boutonFil InstagramInstallerInstaller ElementorInstaller les modèles de démarrageInstalléModèles de démarrage installésInstallation des modèles de démarrage...Installation en cours..IntermédiaireFormat SVG invalide, fichier non téléchargé pour des raisons de sécurité !Nonce invalideNombre d'élémentsC'est une collection de plus de 40 widgets Elementor uniques, créatifs et optimisés avec plus de 100 modèles prêts à l'emploi. Fiable par plus de 600 K professionnels du web. C'est l'outil n°1 pour Elementor Page Builder.JustifiéJustifierGrandDernier élément de menuLancez des sites web avec l'IA ou des modèles prêts à l'emploi.Mise en pageEn savoir plusEn savoir plus.GauchePermettez aux utilisateurs d'ajouter des articles au panier d'un seul clic.Permettez aux utilisateurs de passer facilement entre deux types de contenu.Clé de licenceLightboxLienEffet de survol du lienCouleur de l'effet de survol du lienÉléments de listeChargement de plus de résultats…ConnectéDéconnectéFormulaire de connexionMenu principalWidgets de marketing et d'engagementBouton marketingLargeur maximaleFichier multimédiaType de médiaMoyenMenuPanier du menuIcône de menuEspacement supérieur des éléments de menuAlignement des éléments de menuIcône de déclenchement et de fermeture du menuMéthode 2Mobile (768px >)Popup modalDesigns modernes et intemporelsBoutons multiplesMulti-boutonMon compteMon clientMoi/Ma sociétéMenu de navigationNouveau modèleNonPas de commentairesAucun modèle trouvé dans la corbeille.Aucun modèle trouvé.Non merciAucun résultat trouvéAucunNon, peut-être plus tardNormalNon installéRemarque :DésactivéHors-canvasHors canevasD'accord, vous le méritezActivéUn commentaireOpacitéOuvrir le sous-menuOption 1 (Recommandée)Option 2SurlignerRemplissageTitre de la pageModèles parents :Arrière-plans en particulesParticulesAccessoires de fêteEspace réservéCouleur de l'espace réservéJouez de l'audio de fond pour engager les visiteurs lors du chargement de la page.Veuillez supprimerVeuillez entrerPlugin activé.Échec de l'installation du plugin, veuillez réessayer plus tard.Plugin installéL'activation du plugin est désactivée pour vous sur ce site.Fonction d'installation du plugin introuvable.Le slug du plugin est manquant.Liste des plugins non trouvéeSigne plusPositionInfo sur l'articleMise en page des publicationsMises en page des publicationsArticlesAlimentant plus de 1+ million de sites web, %s est apprécié pour sa performance rapide et sa facilité d'utilisation. Il convient à tous les types de sites web comme les blogs, les portfolios, les entreprises et les boutiques WooCommerce.Présentez des produits avec des mises en page détaillées et personnalisables.PréréglagesPresto PlayerBoîte de prixListe de prixCartes de prixTableau de prixProPousserAccès rapideLire la documentationLire le guide completRediriger vers le lien autoDemander une fonctionnalitéRéactifSupport réactifImage RetinaLogo RetinaDroitRevenir en arrièreRetour à la version précédenteEspacement des lignesWidgets SEOSchema – Tous les Rich Snippets Schema en unFaire défiler vers le hautRechercheBoîte de recherchePage de rechercheRechercher des modèlesPages / articles / catégories de rechercheRésultats de recherche pour :Résultats de recherche pour :Recherche...Recherche…SélectionnerSélectionner une icôneSélectionner une optionSélectionnez une option pour ajouter le support du thèmeVendez vos produits facilement sur WordPress.SéparateurType de séparateurParamètresParamètres enregistrés avec succès !Diviseur de formeShortcodeAfficherAfficher l'accueilAfficher le prix totalAffichez un mini-panier pour des expériences d'achat fluides.Afficher l'auteur, les dates et le temps de lecture avec des styles personnalisables.Afficher le panier pour des expériences d'achat fluides.Afficher ou masquer le contenu en fonction des interactions des utilisateurs.Afficher le nom de votre site dans un style personnalisable.Mettez en valeur plusieurs vidéos sans impacter les temps de chargement.Mettez en valeur les prix et les caractéristiques dans des mises en page personnalisables.Logo du siteSlogan du siteTitre du siteLogo du siteTaillePasserGlisserGlisser vers le hautPetitIntégration des réseaux sociauxPartage socialSolideParfois, les méthodes ci-dessus peuvent ne pas bien fonctionner avec votre thème, dans ce cas, contactez l'auteur de votre thème et demandez-lui d'ajouter le support pour le <a href="%s">plugin.</a>Désolé, vous n'êtes pas autorisé à effectuer cette action.Espace entreEspacementEspacement entre l'icône et le texteEspacement entre les élémentsPages spécialesPages / articles / taxonomies spécifiques, etc.Cible spécifiqueDébutModèles de démarrageStatut : %sArrêtez de construire votre site à partir de zéro. Utilisez nos modèles professionnels pour votre site Web époustouflant. Il est facile à personnaliser et entièrement réactif. Explorez des centaines de designs et donnez vie à votre vision en un rien de temps.StyleStylisez WP Fluent Forms pour un look attrayant et cohérent.Stylisez et améliorez Caldera Forms pour qu'il s'adapte à votre site.Stylisez et améliorez Contact Form 7 pour l'adapter à votre site.Stylisez les en-têtes avec des couleurs doubles et une typographie personnalisable.Animation de sous-menuIcône de sous-menuSoumettreSureCartSureFormsSureTriggersTableTable des matièresTablette (1025px >)TaxonomieMembre de l'équipePhoto d'équipeLe modèle %1$s est déjà assigné à l'emplacement %2$sModèlesTermesTexteCouleur du texteMerci d'avoir installé le plugin %1$s Ultimate Addons for Elementor %2$s ! Cliquez ici pour %3$scommencer.%4$sMerci pour vos retoursLe plugin %1$sUltimate Addons for Elementor%2$s a cessé de fonctionner car vous utilisez une version plus ancienne du plugin %1$sElementor%2$s.Le plugin %1$sUltimate Addons for Elementor%2$s nécessite que le plugin %1$sElementor%2$s soit installé et activé.Le plugin Ultimate Addons for Elementor nécessite une compatibilité avec votre thème actuel pour fonctionner correctement.</br></br>Voici deux méthodes qui permettent d'activer le support du thème pour le plugin.</br></br>La méthode 1 est sélectionnée par défaut et fonctionne bien avec presque tous les thèmes. Si vous rencontrez un problème avec le modèle d'en-tête ou de pied de page, essayez de choisir la méthode 2.Les résultats n'ont pas pu être chargés.Le même paramètre d'affichage existe déjà dans %s article/s.Thème activé.Échec de l'installation du thème, veuillez réessayer plus tard.Thème installéSupport du thèmeL'activation du thème est désactivée pour vous sur ce site.Fonction d'installation du thème introuvable.Le slug du thème est manquant.Voici l'alignement de l'icône de menu sur les points de rupture réactifs sélectionnés.Cette méthode masque le modèle d'en-tête et de pied de page de votre thème avec CSS et affiche des modèles personnalisés du plugin.Cette méthode remplace le modèle d'en-tête (header.php) et de pied de page (footer.php) de votre thème par les modèles personnalisés du plugin.Cette option remplacera automatiquement les fichiers d'en-tête et de pied de page de votre thème par des modèles personnalisés du plugin. Elle fonctionne avec la plupart des thèmes et est sélectionnée par défaut.Ce plugin vous est proposé par la même équipe derrière le populaire thème WordPress %s et une série de plugins Ultimate Addons.Cela s'appliquera à tous les sites du réseau.Cela masquera le nombre d'éléments jusqu'à ce que le panier soit videTempsFormat de tempsChronologieTitrePour garantir la compatibilité entre l'en-tête/le pied de page et votre thème, veuillez choisir l'une des options suivantes pour activer le support du thème :Distance supérieureDurée de transitionFidèle à plus de 1+ million d'utilisateurs, Elementor Header & Footer Builder est une manière moderne de construire une navigation avancée pour votre site web.Fil TwitterTypeTapez & appuyez sur EntréeType de modèleTypographieUAEUAE LiteUltimate AddonsUltimate Addons for ElementorUltimate Addons pour Elementor LiteUltimate Addons for Elementor Lite <p>Retour à la version précédente</p>Ultimate Addons for Elementor Pro offre plus de 50 widgets et fonctionnalités !SoulignerDébloquez les fonctionnalités ProDébloquez les Ultimate Addons pour Elementor !Débloquez les fonctionnalités ultimesMettre à jour ElementorMettez à niveau maintenantAméliorez WPForms avec des options de design et de mise en page personnalisables.Mettez à niveau maintenantSuivi d'utilisationUtilisez des modèles de widgets préfabriqués pour accélérer votre processus de conception.Utilisez les lettres : %sRessources utilesFormulaire d'inscription utilisateurFormulaire d'inscription utilisateurRôles d'utilisateurUtilisateursUtilitairesVersionContrôle de versionVerticalMarge intérieure verticaleVidéoGalerie vidéoVoirVoir toutVoir la démoVoir le modèleVoir les modèlesVisitez le siteVisiter le site WebStyliseur de WP Fluent FormsWPFormsStyliseur de WPFormsVous souhaitez aider à rendre <strong>%1s</strong> encore plus génial ? Permettez-nous de collecter des données de diagnostic non sensibles et des informations d'utilisation.Nous apprécions votre avis. Comment pouvons-nous améliorer votre expérience ?Nous sommes ravis de vous aider à dynamiser votre expérience de création de site Web. Concevez sans effort des sites Web époustouflants avec notre gamme complète de widgets et de fonctionnalités gratuits et premium.PoidsMusique d'accueilBienvenue dans Elementor Header & Footer Builder !Bienvenue dans Ultimate Addons pour Elementor !Option de marque blancheWidgetsWidgets / FonctionnalitésListe des widgets non trouvéeLargeurAvec ce plugin génial, découvrez la manière la plus simple de créer un en-tête et un pied de page personnalisés pour votre site web avec Elementor. Et cela 100 % GRATUIT !Woo - Ajouter au panierWoo - CatégoriesWoo - PaiementWoo - Mini PanierWoo - ProduitsPage boutique WooCommerceWooCommerce : Ajouter au panierWooCommerce : PaiementWooCommerce : Mini panierWooCommerce : ProduitWooCommerce : Catégorie de produitNonce WordPress non validé.WordPress.orgXLXXLOuiOui ! AutoriserVous ne pouvez sélectionner queVous n'avez pas la permission d'accéder à cette page.Votre prénomVotre e-mail professionnelVos détails ont été soumis avec succès.Index Zcaractèrehttps://wordpress.org/plugins/header-footer-elementor/https://www.brainstormforce.com/https://your-link.comélémentou plus de caractèress»PK���\�^N'N'Mlanguages/header-footer-elementor-nl_NL-1860d6c85cf93751e0a08d732e8147f8.jsonnu�[���{"translation-revision-date":"2024-12-05T10:53:31+00:00","generator":"WP-CLI\/2.11.0","source":"build\/main.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Theme Support":["Thema Ondersteuning"],"Activate":["Activeren"],"Activated":["Geactiveerd"],"Install":["Installeren"],"Settings":["Instellingen"],"Basic":["Basis"],"Advanced":["Geavanceerd"],"Yes":["Ja"],"Copyright":["Copyright"],"Navigation Menu":["Navigatiemenu"],"Page Title":["Pagina Titel"],"Retina Image":["Retina Afbeelding"],"Search":["Zoeken"],"Site Logo":["Site-logo"],"Site Tagline":["Site-tagline"],"Header & Footer Builder":["Kop & Voettekst Builder"],"Rollback to Previous Version":["Terugrollen naar Vorige Versie"],"Dashboard":["Dashboard"],"Post Info":["Berichtinfo"],"Breadcrumbs":["Broodkruimels"],"Scroll to Top":["Scroll naar boven"],"Retina Logo":["Retina-logo"],"Advanced Heading":["Geavanceerde kop"],"Modal Popup":["Modale popup"],"Business Hours":["Openingstijden"],"Business Reviews":["Bedrijfsbeoordelingen"],"Countdown Timer":["Afteltimer"],"Dual Color Heading":["Dubbele kleurkop"],"Fancy Heading":["Fancy kop"],"Google Map":["Google Map"],"Image Gallery":["Afbeeldingengalerij"],"Info Box":["Info Box"],"Instagram Feed":["Instagram-feed"],"Login Form":["Inlogformulier"],"Marketing Button":["Marketingknop"],"Price List":["Prijslijst"],"Social Share":["Sociale Delen"],"Table":["Tabel"],"Table of Contents":["Inhoudsopgave"],"Team Member":["Teamlid"],"Timeline":["Tijdlijn"],"Twitter Feed":["Twitter Feed"],"Video":["Video"],"Video Gallery":["Video Galerij"],"Welcome Music":["Welkomstmuziek"],"Party Propz":["Feestelijke Decoraties"],"Shape Divider":["Vormverdeler"],"Presets":["Voorinstellingen"],"Widgets":["Widgets"],"Templates":["Sjablonen"],"Free vs Pro":["Gratis vs Pro"],"Get Pro":["Krijg Pro"],"Free":["Gratis"],"Version":["Versie"],"Useful Resources":["Nuttige bronnen"],"Getting Started":["Aan de slag"],"How to use widgets":["Hoe widgets te gebruiken"],"How to use features":["Hoe functies te gebruiken"],"How to use templates":["Hoe sjablonen te gebruiken"],"Contact us":["Neem contact met ons op"],"View Demo":["Bekijk demo"],"Read Documentation":["Lees documentatie"],"Build Websites 10x Faster with Templates":["Bouw websites 10x sneller met sjablonen"],"Choose from our professionally designed websites to build your site faster, with easy customization options.":["Kies uit onze professioneel ontworpen websites om je site sneller te bouwen, met eenvoudige aanpassingsopties."],"View Templates":["Bekijk sjablonen"],"Quick Access":["Snelle toegang"],"Contact Us":["Neem contact met ons op"],"Help Centre":["Helpcentrum"],"Request a Feature":["Vraag een functie aan"],"Formerly Elementor Header & Footer Builder":["Voorheen Elementor Header & Footer Builder"],"Welcome to Ultimate Addons for Elementor!":["Welkom bij Ultimate Addons voor Elementor!"],"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.":["We zijn enthousiast om je te helpen je website-bouwervaring te verbeteren. Ontwerp moeiteloos verbluffende websites met ons uitgebreide assortiment gratis en premium widgets en functies."],"Create Header\/Footer":["Maak Header\/Footer"],"Create New Page":["Maak nieuwe pagina"],"Read full guide":["Lees volledige gids"],"Post Layouts":["Berichtindelingen"],"Pricing Cards":["Prijskaarten"],"Form Stylers and more...":["Formulierstyling en meer..."],"Unlock Ultimate Features":["Ontgrendel ultieme functies"],"Create Stunning Designs with the Pro Version!":["Cre\u00eber verbluffende ontwerpen met de Pro-versie!"],"Get access to advanced widgets and features to create the website that stands out!":["Krijg toegang tot geavanceerde widgets en functies om de website te cre\u00ebren die opvalt!"],"Upgrade Now":["Upgrade nu"],"Compare Free vs Pro":["Vergelijk gratis vs pro"],"Column Showcase":["Kolom Showcase"],"Activating..":["Activeren.."],"Installing..":["Installeren.."],"Installed":["Ge\u00efnstalleerd"],"Theme Installation failed, Please try again later.":["Thema-installatie mislukt, probeer het later opnieuw."],"Plugin Installation failed, Please try again later.":["Plugin-installatie mislukt, probeer het later opnieuw."],"Visit Site":["Bezoek site"],"Activate Theme":["Thema activeren"],"Are you sure you want to switch your current theme to Astra?":["Weet je zeker dat je je huidige thema wilt wijzigen naar Astra?"],"Close":["Sluiten"],"Extend Your Website":["Breid uw website uit"],"Widgets \/ Features":["Widgets \/ Functies"],"Search...":["Zoeken..."],"Activating...":["Activeren..."],"Activate All":["Activeer alles"],"Deactivating...":["Deactiveren..."],"Deactivate All":["Deactiveer alles"],"250+ templates for every niche":["250+ sjablonen voor elke niche"],"Modern, timeless designs":["Moderne, tijdloze ontwerpen"],"Full design flexibility for easy customization":["Volledige ontwerpflexibiliteit voor eenvoudige aanpassing"],"100% responsive across all devices":["100% responsief op alle apparaten"],"Install Starter Templates":["Installeer Starter Templates"],"Activate Starter Templates":["Activeer Starter Templates"],"Activating Starter Templates...":["Starter Templates activeren..."],"Activated Starter Templates":["Starter Templates geactiveerd"],"Design Your Website in Minutes":["Ontwerp uw website in enkele minuten"],"Build your website faster using our prebuilt templates":["Bouw uw website sneller met onze vooraf gebouwde sjablonen"],"Stop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize and completely responsive. Explore hundreds of designs and bring your vision to life in no time.":["Stop met het bouwen van uw site vanaf nul. Gebruik onze professionele sjablonen voor uw verbluffende website. Het is eenvoudig aan te passen en volledig responsief. Verken honderden ontwerpen en breng uw visie in een mum van tijd tot leven."],"Installing Starter Templates...":["Starter Templates installeren..."],"Installed Starter Templates":["Starter Templates ge\u00efnstalleerd"],"Explore Templates":["Verken sjablonen"],"Learn More":["Leer meer"],"Option 1 (Recommended)":["Optie 1 (Aanbevolen)"],"This option will automatically replace your theme's header and footer files with custom templates from the plugin. It works with most themes and is selected by default.":["Deze optie vervangt automatisch de header- en footerbestanden van uw thema door aangepaste sjablonen van de plugin. Het werkt met de meeste thema's en is standaard geselecteerd."],"Option 2":["Optie 2"],"Settings saved successfully!":["Instellingen succesvol opgeslagen!"],"Failed to save settings!":["Instellingen opslaan mislukt!"],"Select Option to Add Theme Support":["Selecteer optie om thema-ondersteuning toe te voegen"],"To ensure compatibility between the header\/footer and your theme, please choose one of the following options to enable theme support:":["Om compatibiliteit tussen de header\/footer en uw thema te waarborgen, kies een van de volgende opties om thema-ondersteuning in te schakelen:"],"Note:":["Opmerking:"],"If neither option works, please contact your theme author to add support for this plugin.":["Als geen van beide opties werkt, neem dan contact op met uw thema-auteur om ondersteuning voor deze plugin toe te voegen."],"Version Control":["Versiebeheer"],"Experiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue.":["Ervaar je een probleem met de huidige versie? Rol terug naar een vorige versie om het probleem op te lossen."],"Rollback":["Terugrollen"],"Cancel":["Annuleren"],"My Account":["Mijn account"],"License Key":["Licentiesleutel"],"Unlock Pro Features":["Ontgrendel Pro-functies"],"Get access to advanced blocks and premium features.":["Krijg toegang tot geavanceerde blokken en premium functies."],"Custom SVG":["Aangepaste SVG"],"Editor":["Editor"],"Utilities":["Hulpmiddelen"],"Essentials":["Essentials"],"White Label Option":["White Label-optie"],"24\/7 Premium Support":["24\/7 Premium ondersteuning"],"Dynamic Header & Footer Widgets":["Dynamische header- en footer-widgets"],"Creative & Advanced Design Widgets":["Creatieve en geavanceerde ontwerpwidgets"],"Image Hotspots":["Afbeelding hotspots"],"Content & Media Widgets":["Inhoud- en mediawidgets"],"Marketing & Engagement Widgets":["Marketing- en betrokkenheidswidgets"],"Pricing Table":["Prijs tabel"],"E-Commerce Integration":["E-commerce-integratie"],"WooCommerce: Add to Cart":["WooCommerce: Voeg toe aan winkelwagentje"],"WooCommerce: Product Category":["WooCommerce: Productcategorie"],"WooCommerce: Mini Cart":["WooCommerce: Mini winkelwagentje"],"WooCommerce: Checkout":["WooCommerce: Afrekenen"],"Forms Integration":["Formulierenintegratie"],"Contact Form 7":["Contactformulier 7"],"Gravity Forms":["Gravity Forms"],"WPForms":["WPForms"],"Fluent Forms":["Fluent Forms"],"Creative Features":["Creatieve functies"],"Particles":["Deeltjes"],"Cross-Domain Copy-Paste":["Cross-Domain Kopi\u00ebren en Plakken"],"Multi-Button":["Multi-knop"],"Social Media Integration":["Social media-integratie"],"Advanced Features":["Geavanceerde functies"],"Post Layout":["Berichtlay-out"],"Free Vs Pro":["Gratis vs Pro"],"Ultimate Addons for Elementor Pro offers 50+ widgets and features!":["Ultimate Addons voor Elementor Pro biedt 50+ widgets en functies!"],"Compare the popular features\/widgets to find the best option for your website.":["Vergelijk de populaire functies\/widgets om de beste optie voor uw website te vinden."],"Pro":["Pro"],"Content Toggle Button":["Inhoud Toggle-knop"],"Before & After Slider":["Voor & Na Slider"],"Conditional Display":["Voorwaardelijke weergave"],"User Registeration Form":["Gebruikersregistratieformulier"],"WooCommerce: Product":["WooCommerce: Product"],"SEO Widgets":["SEO Widgets"],"FAQ with Schema":["FAQ met Schema"],"How-To":["Hoe te doen"],"Off Canvas":["Off Canvas"]}}}PK���\��+�``Mlanguages/header-footer-elementor-nl_NL-f0dcbc1e143607d955c20c36badd8c74.jsonnu�[���{"translation-revision-date":"2024-12-05T10:53:31+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/HeaderLine.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Formerly Elementor Header & Footer Builder":["Voorheen Elementor Header & Footer Builder"]}}}PK���\G)�R��Mlanguages/header-footer-elementor-nl_NL-661e5decf2faf3ca4a04ac4ce62faa07.jsonnu�[���{"translation-revision-date":"2024-12-05T10:53:31+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/UltimateFeatures.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Advanced Heading":["Geavanceerde kop"],"Modal Popup":["Modale popup"],"Info Box":["Info Box"],"Post Layouts":["Berichtindelingen"],"Pricing Cards":["Prijskaarten"],"Form Stylers and more...":["Formulierstyling en meer..."],"Unlock Ultimate Features":["Ontgrendel ultieme functies"],"Create Stunning Designs with the Pro Version!":["Cre\u00eber verbluffende ontwerpen met de Pro-versie!"],"Get access to advanced widgets and features to create the website that stands out!":["Krijg toegang tot geavanceerde widgets en functies om de website te cre\u00ebren die opvalt!"],"Upgrade Now":["Upgrade nu"],"Compare Free vs Pro":["Vergelijk gratis vs pro"],"Column Showcase":["Kolom Showcase"]}}}PK���\yQ�NPPMlanguages/header-footer-elementor-fr_FR-661e5decf2faf3ca4a04ac4ce62faa07.jsonnu�[���{"translation-revision-date":"2025-01-09T15:10:54+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/UltimateFeatures.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Advanced Heading":["En-t\u00eate avanc\u00e9"],"Modal Popup":["Popup modal"],"Info Box":["Bo\u00eete d'information"],"Upgrade Now":["Mettez \u00e0 niveau maintenant"],"Post Layouts":["Mises en page des publications"],"Pricing Cards":["Cartes de prix"],"Form Stylers and more...":["Stylisateurs de formulaires et plus encore..."],"Column Showcase":["Vitrine de colonnes"],"Unlock Ultimate Features":["D\u00e9bloquez les fonctionnalit\u00e9s ultimes"],"Create Stunning Designs with the Pro Version!":["Cr\u00e9ez des designs \u00e9poustouflants avec la version Pro !"],"Get access to advanced widgets and features to create the website that stands out!":["Acc\u00e9dez \u00e0 des widgets et fonctionnalit\u00e9s avanc\u00e9s pour cr\u00e9er un site web qui se d\u00e9marque !"],"Compare Free vs Pro":["Comparer Gratuit vs Pro"]}}}PK���\M-ڟ+�+Mlanguages/header-footer-elementor-es_ES-1860d6c85cf93751e0a08d732e8147f8.jsonnu�[���{"translation-revision-date":"2025-01-09T20:01:27+00:00","generator":"WP-CLI\/2.11.0","source":"build\/main.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Header & Footer Builder":["Constructor de Encabezados y Pies de P\u00e1gina"],"Theme Support":["Soporte del Tema"],"Rollback to Previous Version":["Revertir a la Versi\u00f3n Anterior"],"Activate":["Activar"],"Activated":["Activado"],"Install":["Instalar"],"Dashboard":["Tablero"],"Settings":["Configuraciones"],"Basic":["B\u00e1sico"],"Advanced":["Avanzado"],"Post Info":["Informaci\u00f3n de la publicaci\u00f3n"],"Breadcrumbs":["Migajas de pan"],"Site Logo":["Logo del sitio"],"Navigation Menu":["Men\u00fa de navegaci\u00f3n"],"Scroll to Top":["Desplazarse hacia arriba"],"Site Tagline":["Eslogan del sitio"],"Search":["Buscar"],"Page Title":["T\u00edtulo de la p\u00e1gina"],"Retina Logo":["Logo Retina"],"Copyright":["Derechos de autor"],"Advanced Heading":["Encabezado avanzado"],"Modal Popup":["Popup modal"],"Business Hours":["Horas de atenci\u00f3n"],"Business Reviews":["Rese\u00f1as de Negocios"],"Countdown Timer":["Temporizador de Cuenta Regresiva"],"Dual Color Heading":["Encabezado de Doble Color"],"Fancy Heading":["Encabezado Elegante"],"Google Map":["Mapa de Google"],"Image Gallery":["Galer\u00eda de Im\u00e1genes"],"Info Box":["Caja de Informaci\u00f3n"],"Instagram Feed":["Feed de Instagram"],"Login Form":["Formulario de Inicio de Sesi\u00f3n"],"Marketing Button":["Bot\u00f3n de Marketing"],"Price List":["Lista de Precios"],"Retina Image":["Imagen Retina"],"Social Share":["Compartir en Redes Sociales"],"Table":["Tabla"],"Table of Contents":["Tabla de Contenidos"],"Team Member":["Miembro del Equipo"],"Timeline":["L\u00ednea de Tiempo"],"Twitter Feed":["Feed de Twitter"],"Video":["Video"],"Video Gallery":["Galer\u00eda de Videos"],"Welcome Music":["Bienvenido M\u00fasica"],"Party Propz":["Accesorios de fiesta"],"Shape Divider":["Divisor de forma"],"Presets":["Preajustes"],"Yes":["S\u00ed"],"Essentials":["Esenciales"],"White Label Option":["Opci\u00f3n de etiqueta blanca"],"24\/7 Premium Support":["Soporte premium 24\/7"],"Cross-Domain Copy-Paste":["Copiar y pegar entre dominios"],"Dynamic Header & Footer Widgets":["Widgets din\u00e1micos de encabezado y pie de p\u00e1gina"],"Creative & Advanced Design Widgets":["Widgets de dise\u00f1o creativos y avanzados"],"Multi-Button":["Multi-bot\u00f3n"],"Image Hotspots":["Puntos calientes de imagen"],"Content & Media Widgets":["Widgets de contenido y multimedia"],"Content Toggle Button":["Bot\u00f3n de alternancia de contenido"],"Before & After Slider":["Deslizador de antes y despu\u00e9s"],"Conditional Display":["Visualizaci\u00f3n condicional"],"User Registeration Form":["Formulario de registro de usuario"],"Marketing & Engagement Widgets":["Widgets de marketing y compromiso"],"Pricing Table":["Tabla de precios"],"E-Commerce Integration":["Integraci\u00f3n de comercio electr\u00f3nico"],"WooCommerce: Add to Cart":["WooCommerce: Agregar al carrito"],"WooCommerce: Product Category":["WooCommerce: Categor\u00eda de producto"],"WooCommerce: Mini Cart":["WooCommerce: Mini carrito"],"WooCommerce: Product":["WooCommerce: Producto"],"WooCommerce: Checkout":["WooCommerce: Pago"],"Forms Integration":["Integraci\u00f3n de formularios"],"Contact Form 7":["Formulario de contacto 7"],"Gravity Forms":["Gravity Forms"],"WPForms":["WPForms"],"Fluent Forms":["Formas fluidas"],"SEO Widgets":["Widgets de SEO"],"FAQ with Schema":["FAQ con esquema"],"How-To":["C\u00f3mo hacer"],"Creative Features":["Caracter\u00edsticas creativas"],"Particles":["Part\u00edculas"],"Social Media Integration":["Integraci\u00f3n de redes sociales"],"Advanced Features":["Caracter\u00edsticas avanzadas"],"Post Layout":["Dise\u00f1o de publicaciones"],"Off Canvas":["Fuera de canvas"],"Free Vs Pro":["Gratis vs Pro"],"Ultimate Addons for Elementor Pro offers 50+ widgets and features!":["\u00a1Ultimate Addons para Elementor Pro ofrece m\u00e1s de 50 widgets y caracter\u00edsticas!"],"Compare the popular features\/widgets to find the best option for your website.":["Compara las caracter\u00edsticas\/widgets populares para encontrar la mejor opci\u00f3n para tu sitio web."],"Upgrade Now":["Actualizar ahora"],"Free":["Gratis"],"Pro":["Pro"],"Post Layouts":["Dise\u00f1os de publicaciones"],"Pricing Cards":["Tarjetas de precios"],"Form Stylers and more...":["Estilizadores de formularios y m\u00e1s..."],"Column Showcase":["Vitrina de columnas"],"Unlock Ultimate Features":["Desbloquear caracter\u00edsticas definitivas"],"Create Stunning Designs with the Pro Version!":["\u00a1Crea dise\u00f1os impresionantes con la versi\u00f3n Pro!"],"Get access to advanced widgets and features to create the website that stands out!":["\u00a1Obt\u00e9n acceso a widgets y caracter\u00edsticas avanzadas para crear un sitio web que destaque!"],"Extend Your Website":["Extiende tu sitio web"],"Installing..":["Instalando.."],"Installed":["Instalado"],"Theme Installation failed, Please try again later.":["La instalaci\u00f3n del tema fall\u00f3, por favor intenta de nuevo m\u00e1s tarde."],"Plugin Installation failed, Please try again later.":["La instalaci\u00f3n del plugin fall\u00f3, por favor intenta de nuevo m\u00e1s tarde."],"Activating..":["Activando.."],"Visit Site":["Visitar sitio"],"Activate Theme":["Activar tema"],"Are you sure you want to switch your current theme to Astra?":["\u00bfEst\u00e1s seguro de que deseas cambiar tu tema actual a Astra?"],"Close":["Cerrar"],"My Account":["Mi cuenta"],"License Key":["Clave de licencia"],"Unlock Pro Features":["Desbloquear caracter\u00edsticas Pro"],"Get access to advanced blocks and premium features.":["Obt\u00e9n acceso a bloques avanzados y caracter\u00edsticas premium."],"Quick Access":["Acceso r\u00e1pido"],"Contact Us":["Cont\u00e1ctanos"],"Help Centre":["Centro de ayuda"],"Request a Feature":["Solicitar una caracter\u00edstica"],"Build Websites 10x Faster with Templates":["Construye sitios web 10 veces m\u00e1s r\u00e1pido con plantillas"],"Choose from our professionally designed websites to build your site faster, with easy customization options.":["Elige entre nuestros sitios web dise\u00f1ados profesionalmente para construir tu sitio m\u00e1s r\u00e1pido, con opciones de personalizaci\u00f3n f\u00e1ciles."],"View Templates":["Ver plantillas"],"Compare Free vs Pro":["Comparar gratis vs pro"],"Welcome to Ultimate Addons for Elementor!":["\u00a1Bienvenido a Ultimate Addons para Elementor!"],"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.":["Estamos emocionados de ayudarte a potenciar tu experiencia de creaci\u00f3n de sitios web. Dise\u00f1a sitios web impresionantes sin esfuerzo con nuestra amplia gama de widgets y caracter\u00edsticas gratuitas y premium."],"Create Header\/Footer":["Crear encabezado\/pie de p\u00e1gina"],"Create New Page":["Crear nueva p\u00e1gina"],"Read full guide":["Leer gu\u00eda completa"],"View Demo":["Ver demostraci\u00f3n"],"Read Documentation":["Leer documentaci\u00f3n"],"Formerly Elementor Header & Footer Builder":["Anteriormente Constructor de encabezados y pies de p\u00e1gina de Elementor"],"Widgets":["Widgets"],"Templates":[""],"Free vs Pro":[""],"Get Pro":["Obtener Pro"],"Version":["Versi\u00f3n"],"Useful Resources":["Recursos \u00fatiles"],"Getting Started":["Comenzando"],"How to use widgets":["C\u00f3mo usar widgets"],"How to use features":["C\u00f3mo usar caracter\u00edsticas"],"How to use templates":["C\u00f3mo usar plantillas"],"Contact us":["Cont\u00e1ctanos"],"Custom SVG":["SVG personalizado"],"Editor":["Editor"],"Utilities":["Utilidades"],"Version Control":["Control de versiones"],"Option 1 (Recommended)":["Opci\u00f3n 1 (Recomendada)"],"This option will automatically replace your theme's header and footer files with custom templates from the plugin. It works with most themes and is selected by default.":["Esta opci\u00f3n reemplazar\u00e1 autom\u00e1ticamente los archivos de encabezado y pie de p\u00e1gina de tu tema con plantillas personalizadas del plugin. Funciona con la mayor\u00eda de los temas y est\u00e1 seleccionada por defecto."],"Option 2":["Opci\u00f3n 2"],"Settings saved successfully!":["\u00a1Configuraciones guardadas con \u00e9xito!"],"Failed to save settings!":["\u00a1Error al guardar configuraciones!"],"Select Option to Add Theme Support":["Selecciona una opci\u00f3n para agregar soporte de tema"],"To ensure compatibility between the header\/footer and your theme, please choose one of the following options to enable theme support:":["Para asegurar la compatibilidad entre el encabezado\/pie de p\u00e1gina y tu tema, por favor elige una de las siguientes opciones para habilitar el soporte de tema:"],"Note:":["Nota:"],"If neither option works, please contact your theme author to add support for this plugin.":["Si ninguna opci\u00f3n funciona, por favor contacta al autor de tu tema para agregar soporte para este plugin."],"Experiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue.":["\u00bfTienes un problema con la versi\u00f3n actual? Vuelve a una versi\u00f3n anterior para ayudar a solucionar el problema."],"Rollback":["Revertir"],"Cancel":["Cancelar"],"250+ templates for every niche":["250+ plantillas para cada nicho"],"Modern, timeless designs":["Dise\u00f1os modernos y atemporales"],"Full design flexibility for easy customization":["Flexibilidad total de dise\u00f1o para una f\u00e1cil personalizaci\u00f3n"],"100% responsive across all devices":["100% responsivo en todos los dispositivos"],"Install Starter Templates":["Instalar plantillas iniciales"],"Activate Starter Templates":["Activar plantillas iniciales"],"Installing Starter Templates...":["Instalando plantillas iniciales..."],"Installed Starter Templates":["Plantillas iniciales instaladas"],"Activating Starter Templates...":["Activando plantillas iniciales..."],"Activated Starter Templates":["Plantillas iniciales activadas"],"Design Your Website in Minutes":["Dise\u00f1a tu sitio web en minutos"],"Build your website faster using our prebuilt templates":["Construye tu sitio web m\u00e1s r\u00e1pido usando nuestras plantillas preconstruidas"],"Stop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize and completely responsive. Explore hundreds of designs and bring your vision to life in no time.":["Deja de construir tu sitio desde cero. Usa nuestras plantillas profesionales para tu impresionante sitio web. Es f\u00e1cil de personalizar y completamente responsivo. Explora cientos de dise\u00f1os y da vida a tu visi\u00f3n en poco tiempo."],"Explore Templates":["Explorar plantillas"],"Learn More":["Aprender m\u00e1s"],"Widgets \/ Features":["Widgets \/ Caracter\u00edsticas"],"Search...":["Buscar..."],"Activating...":["Activando..."],"Activate All":["Activar todo"],"Deactivating...":["Desactivando..."],"Deactivate All":["Desactivar todo"]}}}PK���\e�ssMlanguages/header-footer-elementor-nl_NL-0ad70406b828ddfa033be3f6573550fd.jsonnu�[���{"translation-revision-date":"2024-12-05T10:53:31+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/TemplateSection.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Build Websites 10x Faster with Templates":["Bouw websites 10x sneller met sjablonen"],"Choose from our professionally designed websites to build your site faster, with easy customization options.":["Kies uit onze professioneel ontworpen websites om je site sneller te bouwen, met eenvoudige aanpassingsopties."],"View Templates":["Bekijk sjablonen"]}}}PK���\�y�02�2�*languages/header-footer-elementor-es_ES.monu�[�������!�!�!�!8�!
"""<"Q"p"�y";#D#M#Z#m#�#	�#�#�#�#
�#�#�#$	#$-$5$'>$f$
x$=�$7�$6�$03%:d%:�%=�%;&4T&8�&8�&8�&>4'As'�'�'�'	�'�'�'�'(
(
 (=.(l(<|(�(&�(�(	)

)	))%);)
O)])f).x)�)�)
�)�)�)�)�)�)**)*(0*?Y*6�*0�*6+8+G+IX+�+�+�+�+l�+6,<,Q,W,g,N{,�,�,�,
-
--1-@-2V-N�-	�-�-N�-A@.?�.K�.�/��/~0�0D�0+�0
11-/1Q]16�1C�19*2'd26�2<�223"33V3h3�3�3�3�3�3
�36�344	;4E4J4!W4
y4�4�49�4�4�4=55B6?x67�6#�67
'7
27@73M7:�7+�7;�7'$8&L82s82�8<�8796N9�9�9�9�9�9�9
�9:!:"*:)M:�w:@;6Z;E�;,�;<7<WQ<3�<4�<
= =/=QI=
�=
�=k�=>$>6>
J>U>e>
~>-�>�>�>�>�>�>*?;?U@g@l@�@
�@.�@�@�@3�@RA4iA�A�A
�A�A
�A�A�AB(Be/B�B��B2C
7C1BCtC	yC	�C�C�C\�C�CD!D4D
;DJID
�D�D�D�D
�D	�D�DY�DNE
TEbE;qE�E�E�E�E�E�E	FF(FHFUF;bF
�F�F��F0�G
�G�G�G+�G5�G2H>HGHLH	dH
nH
yH�H�H
�H
�H�H	�H�H�H�H
II
"I	-I7IIIYIfIiI�I	�I�I�I�I�I
�I�I�I�I
�IJJJ!J8JAJ
IJTJfJ	{J�J8�J
�J�J�J3�J+K3<K'pK�K�K�K	�K�K�K�K��K5�L�L
�L	M
M
 M
.M<M@MMM`MpM�M�M�M�M�M�M�M*�M
NN&N2N CNdNxN	�N�N�N
�N"�N'�N	OOO&O
CO	QO[O	`OjO3{O>�O,�O0P0LP6}P5�P	�P�P
Q	QQQ Q9Q�FQ5�Q"R*R
@R)NRxR�R
�R��R7}S1�S2�S=TXT_T	hTrTT�T�T
�T6�T�T
�Tl�TbU�~UiV^qV �W7�W)X2:XmX
}X2�X&�X�Xo�XtlY��Y}�Z7[6@[w[��[�\�\�\�\
�\�\�\�\�\"�\F]Ba]�]'�]�]�]
^<^S^_^@n^�^�^�^
�^�^	_
__"_
(_6_;_	D_
N_\_
k_
v_�_�_�_��_86`�o`
$a-2a)`a�a�a�a�a�a��ahbzb�b�b�b�b�b�b�bc*cHc
gcuc
yc�c/�c�c�c(�cd	d6&d ]d~d�d�d�d�d�d�e�e5�e%f)4f^fsf�f��fyg�g�g�g�g�g�g�g!h#h/h<hChchh
�h
�hJ�h�hi^+iI�i^�i>3jUrj;�jBkLGk;�k>�kQlIalP�lQ�lNmWmrm�m�m�m�m�m�m�mP�m
>n=In�n,�n�n�n
�n
�n�no$oCo\oio@�o�o�o�o�op	pp-p>pYphp9ppK�pG�p>>qM}q�q�qP�qDrarjrrr�yrs
s,s2sFsa]s�s�s�stt!+tMt"`t5�t]�tu)uT<uO�uK�uV-v��v�kw "xCxIcx;�x�x�x3	yb=yC�yN�y@3z3tz@�zN�z98{(r{�{�{�{�{
||#|8|;J|@�|�|�|�|�|
}}}@.}o}~}p�}OC_?�:��
<�G�`�8x�J��:��U7�7��1Ł8��;0�Kl�;��E�	:�
D�	R�\�1v�%��΃߃9�7 �FX����0}�T��W�:[�%��F��h�/l�R���� �e9�
��
��q��'�/�C�Y�y�#����0���
� �/�&>�Ge�f���0�*7�
b�p�>����Ɍ=Ռ\�@p�
��(����
�
�,)�*V���s����������?������'�9�j?���Ɛܐ���M�
`�k�%}�������̑j�K�R�h�L��Вْ��	��	:�D�"d���
��E������
�6��
5�C�	R�A\�J�������	'�1�>�!^�����
������	ɖӖߖ���	�
)�4�H�]�m�,p�����Ǘ���
���)�9�I�c�l�u�	��������ǘݘ�K��J�\�n�I�əDڙ2�R�l�	������Κ
����=Λ
�
�%�5�F�Z�k�o�~�����Ĝ
ל�����"�,1�^�w�~���-��ӝ�	��%�1�3E�-y�	����Þ'Ӟ��	���-�GB�F��:џ@�:M�;��?Ġ��%�7�F�N�U�t����:C�	~�����9����
��%�>�?K�?��Eˤ��	!�+�8�>�R�e�8u�����pĥ5��Q�t��V�%��J�i�Gx���ϩB�0#�T��l�������Y�5ڬH�Y��j��
�������ʮ֮ڮ���#�I?�R�� ܯ9��(7�`�u�F��ͰݰH�9�!J�!l�����
������ѱױ����
	��
&�4�F�e�m����> ��_�0�1C�.u�����Ǵ������˵
ݵ��� �,�L�^�x�#����
Ҷ����.
�	<�!F�'h�	��	��6�� ۷����-�/� Know More. Method 1 (Recommended) This will be applicable for all sites from the network.%1$s %3$s %2$s100% responsive across all devices24/7 Premium Support250+ templates for every niche404 PageA popular templates plugin that provides an extensive library of professional and fully customizable 600+ ready website and templates. More than 1+ Million websites have built with this plugin.About UsActivateActivate AllActivate ElementorActivate Starter TemplatesActivate ThemeActivatedActivated Starter TemplatesActivating Starter Templates...Activating..Activating...ActiveAdd Display RuleAdd Exclusion RuleAdd ImageAdd NewAdd RuleAdd SEO-friendly FAQ sections to pages.Add Theme SupportAdd User RuleAdd a customizable button for quick, one-click top scrolling.Add a high-quality logo that looks sharp on any screen.Add a search bar to help visitors find content easily.Add animated text for more engaging page titles.Add customizable, multi-location maps with custom markers.Add dynamic, animated backgrounds to sections and columns.Add headings, icons, and descriptions in one flexible widget.Add interactive points on images for detailed visual tours.Add locations for where this template should appear.Add locations for where this template should not appear.Add navigation links to guide visitors across your site.Add new attractive shape dividers to Elementor sections.Add stylish and functional menus for seamless site navigation.Add your site's primary logo with flexible customization options.AdvancedAdvanced FeaturesAdvanced HeadingAlignmentAllAll %sAll %s ArchiveAll ArchivesAll SingularsAll TemplatesAllow %s products to track non-sensitive usage tracking data.Already Exists.Are you sure you want to switch your current theme to Astra?Author ArchiveAutomate WordPress tasks effortlessly.Background ColorBag LightBag MediumBag SolidBasicBefore & After SliderBefore After SliderBefore FooterBeginnerBlog / Posts PageBoost SEO with rich results & structured data.BorderBorder ColorBorder RadiusBorder WidthBottomBottom LeftBottom RightBrainstorm ForceBrainstorm Force TeamBreadcrumbsBubbleBuild Websites 10x Faster with TemplatesBuild attractive, feature-rich galleries with advanced options.Build easy-to-navigate, visually appealing site menus.Build responsive, styled tables to display data.Build your website faster using our prebuilt templatesBusiness HoursBusiness ReviewsBy submitting, you agree to our %1$sTerms%2$s and %3$sPrivacy Policy%4$s.Caldera Form StylerCancelCartCenterChoose from our professionally designed websites to build your site faster, with easy customization options.CloseClose Upgrade NoticeColorColumn ShowcaseCompare Free vs ProCompare the popular features/widgets to find the best option for your website.Conditional DisplayContact Form 7Contact Form 7 StylerContact UsContact usContent & Media WidgetsContent ToggleContent Toggle ButtonCopy and paste Elementor content between websites.Copy this shortcode and paste it into your post, page, or text widget content.CopyrightCopyright TextCopyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]Could not activate plugin. Please activate from the Plugins page.Could not activate theme. Please activate from the Themes page.Could not install. Please download from WordPress.org and install manually.Could you please do us a BIG favor and give it a 5-star rating on WordPress? This would boost our motivation and help other users make a comfortable decision while choosing the Ultimate Addons for Elementor.Could you please do us a favor and give us a 5-star rating on Trustpilot? It would help others choose Ultimate Addons for Elementor with confidence. Thank you!Countdown TimerCreate Header/FooterCreate High-impact, customizable CTA for promotions and conversions.Create Impressive Header and Footer DesignsCreate NewCreate New PageCreate Stunning Designs with the Pro Version!Create a versatile dual-button setup for navigation and interactive web elements.Create beautiful, custom registration forms for users.Create elegant, customizable lists for menus or product catalogues.Create engaging and customizable headings for your pages.Create high-converting forms with ease.Create sliding panels for navigation or extra content.Create structured how-to pages with automatic schema markup.Create urgency with fixed or recurring countdowns.Creative & Advanced Design WidgetsCreative FeaturesCross-Domain Copy-PasteCross-Site Copy PasteCurrent ItemCustomCustom BlockCustom ImageCustom SVGCustomize Gravity Forms with advanced styling options.Customize and display your business hours stylishly.DashboardDateDate ArchiveDate FormatJune 1, 2024 (F j, Y)DeactivateDeactivate AllDeactivating...Decorate your site with festive seasonal elements easily.DefaultDesign Your Website in MinutesDesign beautiful layouts with simple drag & drop and display them at desired location with powerful target controls. The plugin comes with inbuilt Elementor widgets that offer essential features to build header and footer. It's a lightweight plugin that works seamlessly with all themes and backed up by 24/7 support.Design beautiful, customizable WordPress login forms.Design engaging popups with interactive animations and content.Design optimized checkout pages for better conversions.Disable Scroll to Top For This PageDisplay ConditionsDisplay OnDisplay RulesDisplay TextDisplay an attractive, customizable Instagram feed.Display and customize blog posts beautifully on your site.Display custom template based on user role.Display customizable copyright text for your site's footer.Display product categories beautifully.Display seamless & interactive videos.Display the before and after versions of an image.Display the title of the current page dynamically.Display timelines or roadmaps with advanced styling options.Display verified reviews from Google and Yelp directly.Display your site's tagline to enhance brand identity.DistanceDo Not Display OnDownloadDual Color HeadingDynamic Header & Footer WidgetsE-Commerce IntegrationEdit TemplateEditorElementor Header & Footer BuilderElementor Header & Footer Builder Elementor Header & Footer Builder OptionsElementor Header & Footer Builder plugin lets you build impactful navigation for your website very easily. Before we begin, we would like to know more about you. This will help us to serve you better.Email address is requiredEmbed Twitter feeds to show real-time content updates.Embed optimized videos with customizable thumbnails and play buttons.Enable Layout for Elementor Canvas Template?Enable Scroll To TopEnable quick content sharing with social media buttons.Enabling this option will display this layout on pages using Elementor Canvas Template.Encountered an error while performing your request.Ensure images look crisp on high-resolution screens.Enter captionEntire WebsiteError 404: Page not foundError occurred, The version selected is invalid. Try selecting different version.EssentialsExclude OnExperiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue.ExpertExplore TemplatesExtend Your WebsiteFAQ SchemaFAQ with SchemaFailed to save settings!Fancy HeadingFast and customizable theme for your website.Field is requiredFirst name is requiredFluent FormsFooterForm Stylers and more...Formerly Elementor Header & Footer BuilderFormerly known as "Elementor Header & Footer Builder", this powerful plugin allows you to create custom headers and footers with Elementor and display them in selected locations. You can also create custom Elementor blocks and place them anywhere on your website using a shortcode.Forms IntegrationFreeFree & Fastest WordPress Theme.Free Vs ProFront PageFull design flexibility for easy customizationGeneralGet ProGet access to advanced blocks and premium features.Get access to advanced widgets and features to create the website that stands out!Get exclusive features and unbeatable performance.  Getting StartedGo to HFE Settings pageGoogle MapGravity Form StylerGravity FormsHeaderHeader & Footer BuilderHeader/Footer BuilderHeightHello! Seems like you have used Ultimate Addons for Elementor to build this website — Thanks a ton!Help CentreHelp us spread the word about the plugin by leaving %2$s %1$s %3$s ratings on %2$s WordPress.org %3$s. Thank you from the Brainstorm Force team!HideHide EmptyHighlight team members with customizable layouts.HomeHome IconHome PageHotspotHoverHow likely are you to recommend Ultimate Addons for Elementor to your friends or colleagues?How to use featuresHow to use templatesHow to use widgetsHow-ToHow-to SchemaI agree to receive your newsletters and accept the data privacy statement.I already didI'm a WordPress:I'm building website for:IconIcon ColorIcon SizeIcon SpacingIf neither option works, please contact your theme author to add support for this plugin.ImageImage GalleryImage HotspotsImprove page readability with automatic, customizable TOCs.InactiveInfo BoxInstagram FeedInstallInstall ElementorInstall Starter TemplatesInstalledInstalled Starter TemplatesInstalling Starter Templates...Installing..IntermediateInvalid SVG Format, file not uploaded for security reasons!Invalid nonceItems CountIt’s a collection of 40+ unique, creative, and optimized Elementor widgets with 100+ readymade templates. Trusted by more than 600+ K web professionals. It’s a #1 toolkit for Elementor Page Builder.Launch websites with AI or ready-made templates.Learn MoreLearn More.LeftLet users add items to cart with one click.Let users easily switch between two types of content.License KeyLightboxLinkLoading more results…Logged InLogged OutLogin FormMarketing & Engagement WidgetsMarketing ButtonMedia FileMedia TypeMenuMenu CartMethod 2Modal PopupModern, timeless designsMulti ButtonsMulti-ButtonMy AccountMy clientMyself/My companyNavigation MenuNew TemplateNoNo Templates found in Trash.No Templates found.No ThanksNo results foundNoneNope, maybe laterNormalNot InstalledNote:OffOff - CanvasOff CanvasOk, you deserve itOnOpacityOption 1 (Recommended)Option 2PaddingPage TitleParent Templates:Particle BackgroundsParticlesParty PropzPlay background audio to engage visitors upon page load.Please deletePlease enterPlugin Activated.Plugin Installation failed, Please try again later.Plugin InstalledPlugin activation is disabled for you on this site.Plugin installation function not found.Plugin slug is missing.Plugins list not foundPositionPost InfoPost LayoutPost LayoutsPostsPowering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for all kinds of websites like blogs, portfolios, business, and WooCommerce stores.Present products with detailed, customizable layouts.PresetsPresto PlayerPrice BoxPrice ListPricing CardsPricing TableProQuick AccessRead DocumentationRead full guideRequest a FeatureResponsive SupportRetina ImageRetina LogoRightRollbackRollback to Previous VersionSEO WidgetsSchema – All In One Schema Rich SnippetsScroll to TopSearchSearch PageSearch TemplatesSearch pages / post / categoriesSearch results for:Search results for: Search...Searching…SelectSelect OptionSelect Option to Add Theme SupportSell your products easily on WordPress.SeparatorSeparator TypeSettingsSettings saved successfully!Shape DividerShortcodeShowShow HomeShow Total PriceShow a mini-cart for seamless shopping experiences.Show author, dates, and reading time with customizable styles.Show cart for seamless shopping experiences.Show or hide content based on user interactions.Show your site’s name in a customizable style.Showcase multiple videos without impacting load times.Showcase prices and features in customizable layouts.Site LogoSite TaglineSite TitleSite logoSizeSkipSocial Media IntegrationSocial ShareSometimes above methods might not work well with your theme, in this case, contact your theme author and request them to add support for the <a href="%s">plugin.</a>Sorry, you are not authorized to perform this action.SpacingSpacing between ItemsSpecial PagesSpecific Pages / Posts / Taxonomies, etc.Specific TargetStarter TemplatesStatus: %sStop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize and completely responsive. Explore hundreds of designs and bring your vision to life in no time.Style WP Fluent Forms for an attractive, cohesive look.Style and enhance Caldera Forms to fit your site.Style and enhance Contact Form 7 to fit your site.Style headings with dual colours and customizable typography.SubmitSureCartSureFormsSureTriggersTableTable of ContentsTeam MemberTeam photoTemplate %1$s is already assigned to the location %2$sTextText ColorThank you for installing %1$s Ultimate Addons for Elementor %2$s Plugin! Click here to %3$sget started. %4$sThank you for your feedbackThe %1$sUltimate Addons for Elementor%2$s plugin has stopped working because you are using an older version of %1$sElementor%2$s plugin.The %1$sUltimate Addons for Elementor%2$s plugin requires %1$sElementor%2$s plugin installed & activated.The Ultimate Addons for Elementor plugin need compatibility with your current theme to work smoothly.</br></br>Following are two methods that enable theme support for the plugin.</br></br>Method 1 is selected by default and that works fine almost will all themes. In case, you face any issue with the header or footer template, try choosing Method 2.The results could not be loaded.The same display setting is already exist in %s post/s.Theme Activated.Theme Installation failed, Please try again later.Theme InstalledTheme SupportTheme activation is disabled for you on this site.Theme installation function not found.Theme slug is missing.This method hides your theme's header & footer template with CSS and displays custom templates from the plugin.This method replaces your theme's header (header.php) & footer (footer.php) template with plugin's custom templates.This option will automatically replace your theme's header and footer files with custom templates from the plugin. It works with most themes and is selected by default.This plugin is brought to you by the same team behind the popular WordPress theme %s and a series of Ultimate Addons plugins.This will be applicable for all sites from the network.This will hide the items count until the cart is emptyTimelineTo ensure compatibility between the header/footer and your theme, please choose one of the following options to enable theme support:Trusted by more than 1+ Million users, Elementor Header & Footer Builder is a modern way to build advanced navigation for your website.Twitter FeedTypeType of TemplateTypographyUAEUAE LiteUltimate AddonsUltimate Addons for ElementorUltimate Addons for Elementor LiteUltimate Addons for Elementor Lite <p>Rollback to Previous Version</p>Ultimate Addons for Elementor Pro offers 50+ widgets and features!Unlock Pro FeaturesUnlock Ultimate Addons For Elementor!  Unlock Ultimate FeaturesUpdate ElementorUpgrade NowUpgrade WPForms with customizable design and layout options.Upgrade nowUsage TrackingUse pre-made widget templates to accelerate your design process.Useful ResourcesUser Registeration FormUser Registration FormUser RolesUsersUtilitiesVersionVersion ControlVideoVideo GalleryViewView AllView DemoView TemplateView TemplatesVisit SiteVisit WebsiteWP Fluent Forms StylerWPFormsWPForms StylerWant to help make <strong>%1s</strong> even more awesome? Allow us to collect non-sensitive diagnostic data and usage information. We value your input. How can we improve your experience?We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.Welcome MusicWelcome to Elementor Header & Footer Builder!Welcome to Ultimate Addons for Elementor!White Label OptionWidgetsWidgets / FeaturesWidgets list not foundWidthWith this awesome plugin, experience the easiest way to create a customized header and footer for your website with Elementor. That too 100% FREE!Woo - Add To CartWoo - CategoriesWoo - CheckoutWoo - Mini CartWoo - ProductsWooCommerce Shop PageWooCommerce: Add to CartWooCommerce: CheckoutWooCommerce: Mini CartWooCommerce: ProductWooCommerce: Product CategoryWordPress Nonce not validated.WordPress.orgYesYes! Allow itYou can only selectYou do not have permission to access this page.Your First NameYour Work EmailYour details are submitted successfully.Z Indexcharacterhttps://wordpress.org/plugins/header-footer-elementor/https://www.brainstormforce.com/https://your-link.comitemor more characterss»Project-Id-Version: 
Report-Msgid-Bugs-To: 
Last-Translator: gpt-po v1.2.0
Language-Team: 
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
POT-Creation-Date: 2025-01-09T20:01:27+00:00
PO-Revision-Date: 2025-01-09T20:01:27+00:00
Language: 
Saber más.Método 1 (Recomendado)Esto será aplicable para todos los sitios de la red.%1$s %3$s %2$s100% responsivo en todos los dispositivosSoporte premium 24/7250+ plantillas para cada nichoPágina 404Un popular plugin de plantillas que proporciona una extensa biblioteca de 600+ sitios web y plantillas profesionales y completamente personalizables. Más de 1+ millón de sitios web se han construido con este plugin.Sobre nosotrosActivarActivar todoActivar ElementorActivar plantillas inicialesActivar temaActivadoPlantillas iniciales activadasActivando plantillas iniciales...Activando..Activando...ActivoAgregar Regla de VisualizaciónAgregar Regla de ExclusiónAgregar imagenAgregar NuevoAgregar reglaAgrega secciones de preguntas frecuentes amigables con SEO a las páginas.Agregar Soporte para el TemaAgregar Regla de UsuarioAgregue un botón personalizable para un desplazamiento rápido hacia arriba con un solo clic.Agregue un logo de alta calidad que se vea nítido en cualquier pantalla.Agregue una barra de búsqueda para ayudar a los visitantes a encontrar contenido fácilmente.Agrega texto animado para títulos de página más atractivos.Agrega mapas personalizables de múltiples ubicaciones con marcadores personalizados.Agrega fondos dinámicos y animados a secciones y columnas.Agrega encabezados, íconos y descripciones en un widget flexible.Agrega puntos interactivos en imágenes para recorridos visuales detallados.Agregar ubicaciones donde esta plantilla debería aparecer.Agregar ubicaciones donde esta plantilla no debería aparecer.Agregar enlaces de navegación para guiar a los visitantes a través de su sitio.Agrega nuevos divisores de forma atractivos a las secciones de Elementor.Agregue menús elegantes y funcionales para una navegación fluida por el sitio.Agregue el logo principal de su sitio con opciones de personalización flexibles.AvanzadoCaracterísticas avanzadasEncabezado avanzadoAlineaciónTodoTodos %sTodo %s ArchivoTodos los archivosTodos los singularesTodas las plantillasPermitir que los productos %s rastreen datos de seguimiento de uso no sensibles.Ya existe.¿Estás seguro de que deseas cambiar tu tema actual a Astra?Archivo de autorAutomatiza tareas de WordPress sin esfuerzo.Color de fondoBolsa LigeraBolsa MedianaBolsa SólidaBásicoDeslizador de antes y despuésDeslizador de antes y despuésAntes del Pie de PáginaPrincipiantePágina de blog / publicacionesMejora el SEO con resultados enriquecidos y datos estructurados.BordeColor del bordeRadio del bordeAncho del BordeInferiorInferior IzquierdaInferior DerechaBrainstorm ForceEquipo de Brainstorm ForceMigajas de panBurbujaConstruye sitios web 10 veces más rápido con plantillasConstruye galerías atractivas y ricas en funciones con opciones avanzadas.Construye menús de sitio fáciles de navegar y visualmente atractivos.Construye tablas estilizadas y responsivas para mostrar datos.Construye tu sitio web más rápido usando nuestras plantillas preconstruidasHoras de atenciónReseñas de NegociosAl enviar, aceptas nuestros %1$sTérminos%2$s y %3$sPolítica de privacidad%4$s.Estilizador de Caldera FormsCancelarCarritoCentroElige entre nuestros sitios web diseñados profesionalmente para construir tu sitio más rápido, con opciones de personalización fáciles.CerrarCerrar aviso de actualizaciónColorVitrina de columnasComparar gratis vs proCompara las características/widgets populares para encontrar la mejor opción para tu sitio web.Visualización condicionalFormulario de contacto 7Estilizador de Contact Form 7ContáctanosContáctanosWidgets de contenido y multimediaAlternar contenidoBotón de alternancia de contenidoCopia y pega contenido de Elementor entre sitios web.Copia este shortcode y pégalo en el contenido de tu publicación, página o widget de texto.Derechos de autorTexto de CopyrightCopyright © [hfe_current_year] [hfe_site_title] | Desarrollado por [hfe_site_title]No se pudo activar el plugin. Por favor, actívalo desde la página de Plugins.No se pudo activar el tema. Por favor, actívalo desde la página de Temas.No se pudo instalar. Por favor, descarga desde WordPress.org e instálalo manualmente.¿Podrías hacernos un GRAN favor y darle una calificación de 5 estrellas en WordPress? Esto aumentaría nuestra motivación y ayudaría a otros usuarios a tomar una decisión cómoda al elegir los Ultimate Addons para Elementor.¿Podrías hacernos un favor y darnos una calificación de 5 estrellas en Trustpilot? Ayudaría a otros a elegir los complementos definitivos para Elementor con confianza. ¡Gracias!Temporizador de Cuenta RegresivaCrear encabezado/pie de páginaCrea CTA personalizables de alto impacto para promociones y conversiones.Crea diseños impresionantes de encabezado y pie de páginaCrear NuevoCrear nueva página¡Crea diseños impresionantes con la versión Pro!Crea una configuración versátil de botones duales para navegación y elementos web interactivos.Crea hermosos formularios de registro personalizados para usuarios.Crea listas elegantes y personalizables para menús o catálogos de productos.Cree encabezados atractivos y personalizables para sus páginas.Crea formularios de alta conversión con facilidad.Crea paneles deslizantes para navegación o contenido adicional.Crea páginas estructuradas de cómo hacer con marcado de esquema automático.Crea urgencia con cuentas regresivas fijas o recurrentes.Widgets de diseño creativos y avanzadosCaracterísticas creativasCopiar y pegar entre dominiosCopiar y pegar entre sitiosElemento actualPersonalizadoBloque PersonalizadoImagen personalizadaSVG personalizadoPersonaliza Gravity Forms con opciones de estilo avanzadas.Personalice y muestre sus horas de atención de manera elegante.TableroFechaArchivo de fechas1 de junio de 2024 (j F, Y)DesactivarDesactivar todoDesactivando...Decora tu sitio con elementos festivos de temporada fácilmente.PredeterminadoDiseña tu sitio web en minutosDiseña hermosos diseños con un simple arrastrar y soltar y muéstralos en la ubicación deseada con potentes controles de destino. El plugin viene con widgets de Elementor integrados que ofrecen características esenciales para construir encabezados y pies de página. Es un plugin ligero que funciona sin problemas con todos los temas y respaldado por soporte 24/7.Diseña hermosos formularios de inicio de sesión de WordPress personalizables.Diseñe popups atractivos con animaciones interactivas y contenido.Diseña páginas de pago optimizadas para mejores conversiones.Deshabilitar desplazamiento hacia arriba para esta páginaCondiciones de visualizaciónMostrar EnReglas de VisualizaciónTexto de visualizaciónMuestra un feed de Instagram atractivo y personalizable.Muestra y personaliza publicaciones de blog de manera hermosa en tu sitio.Mostrar plantilla personalizada según el rol del usuario.Mostrar texto de derechos de autor personalizable para el pie de página de su sitio.Muestra las categorías de productos de manera hermosa.Muestra videos interactivos y sin interrupciones.Muestre las versiones de antes y después de una imagen.Muestre el título de la página actual de forma dinámica.Muestra líneas de tiempo o hojas de ruta con opciones de estilo avanzadas.Muestra reseñas verificadas de Google y Yelp directamente.Muestre el eslogan de su sitio para mejorar la identidad de la marca.DistanciaNo Mostrar EnDescargarEncabezado de Doble ColorWidgets dinámicos de encabezado y pie de páginaIntegración de comercio electrónicoEditar PlantillaEditorConstructor de Encabezados y Pies de Página de ElementorConstructor de Encabezado y Pie de Página de ElementorOpciones del Constructor de Encabezados y Pies de Página de ElementorEl plugin Elementor Header & Footer Builder te permite construir una navegación impactante para tu sitio web de manera muy fácil. Antes de comenzar, nos gustaría saber más sobre ti. Esto nos ayudará a servirte mejor.Se requiere la dirección de correo electrónicoIncorpora feeds de Twitter para mostrar actualizaciones de contenido en tiempo real.Incorpora videos optimizados con miniaturas y botones de reproducción personalizables.¿Habilitar diseño para la plantilla de Elementor Canvas?Habilitar desplazamiento hacia arribaHabilita el rápido compartir contenido con botones de redes sociales.Habilitar esta opción mostrará este diseño en páginas que utilizan la plantilla de Elementor Canvas.Se encontró un error al realizar tu solicitud.Asegúrate de que las imágenes se vean nítidas en pantallas de alta resolución.Ingrese el pie de fotoTodo el sitio webError 404: Página no encontradaOcurrió un error, la versión seleccionada es inválida. Intenta seleccionar una versión diferente.EsencialesExcluir En¿Tienes un problema con la versión actual? Vuelve a una versión anterior para ayudar a solucionar el problema.ExpertoExplorar plantillasExtiende tu sitio webEsquema de Preguntas FrecuentesFAQ con esquema¡Error al guardar configuraciones!Encabezado EleganteTema rápido y personalizable para tu sitio web.El campo es obligatorioSe requiere el nombreFormas fluidasPie de PáginaEstilizadores de formularios y más...Anteriormente Constructor de encabezados y pies de página de ElementorAnteriormente conocido como "Constructor de Encabezados y Pies de Página de Elementor", este potente plugin te permite crear encabezados y pies de página personalizados con Elementor y mostrarlos en ubicaciones seleccionadas. También puedes crear bloques personalizados de Elementor y colocarlos en cualquier parte de tu sitio web utilizando un shortcode.Integración de formulariosGratisTema de WordPress gratuito y más rápido.Gratis vs ProPágina principalFlexibilidad total de diseño para una fácil personalizaciónGeneralObtener ProObtén acceso a bloques avanzados y características premium.¡Obtén acceso a widgets y características avanzadas para crear un sitio web que destaque!Obtén características exclusivas y un rendimiento inigualable.ComenzandoIr a la página de configuración de HFEMapa de GoogleEstilizador de Gravity FormGravity FormsEncabezadoConstructor de Encabezados y Pies de PáginaConstructor de Encabezados/Pies de PáginaAltura¡Hola! Parece que has utilizado Ultimate Addons para Elementor para construir este sitio web — ¡Muchas gracias!Centro de ayuda¡Ayúdanos a difundir la palabra sobre el plugin dejando %2$s %1$s %3$s valoraciones en %2$s WordPress.org %3$s! Gracias del equipo de Brainstorm Force.OcultarOcultar VacíoDestaca a los miembros del equipo con diseños personalizables.InicioÍcono de inicioPágina de inicioPunto de InterésHover¿Qué tan probable es que recomiendes los complementos definitivos para Elementor a tus amigos o colegas?Cómo usar característicasCómo usar plantillasCómo usar widgetsCómo hacerEsquema de Cómo HacerAcepto recibir tus boletines y acepto la declaración de privacidad de datos.Ya lo hiceSoy un WordPress:Estoy construyendo un sitio web para:ÍconoColor del IconoTamaño del IconoEspaciado del IconoSi ninguna opción funciona, por favor contacta al autor de tu tema para agregar soporte para este plugin.ImagenGalería de ImágenesPuntos calientes de imagenMejora la legibilidad de la página con TOCs automáticos y personalizables.InactivoCaja de InformaciónFeed de InstagramInstalarInstalar ElementorInstalar plantillas inicialesInstaladoPlantillas iniciales instaladasInstalando plantillas iniciales...Instalando..Intermedio¡Formato SVG no válido, archivo no subido por razones de seguridad!Nonce inválidoConteo de ArtículosEs una colección de más de 40 widgets únicos, creativos y optimizados para Elementor con más de 100 plantillas listas para usar. Confiado por más de 600 K profesionales web. Es un kit de herramientas número 1 para Elementor Page Builder.Lanza sitios web con IA o plantillas listas para usar.Aprender másAprender más.IzquierdaPermite a los usuarios agregar artículos al carrito con un clic.Permita que los usuarios cambien fácilmente entre dos tipos de contenido.Clave de licenciaLightboxEnlaceCargando más resultados…ConectadoDesconectadoFormulario de Inicio de SesiónWidgets de marketing y compromisoBotón de MarketingArchivo multimediaTipo de medioMeCarrito de MenúMétodo 2Popup modalDiseños modernos y atemporalesMúltiples BotonesMulti-botónMi cuentaMi clienteYo mismo/Mi empresaMenú de navegaciónNueva PlantillaNoNo se encontraron Plantillas en la Papelera.No se encontraron Plantillas.No, graciasNo se encontraron resultadosNingunoNo, tal vez más tardeNormalNo instaladoNota:DesactivadoFuera de CanvasFuera de canvasEstá bien, te lo merecesActivadoOpacidadOpción 1 (Recomendada)Opción 2RellenoTítulo de la páginaPlantillas Padre:Fondos de partículasPartículasAccesorios de fiestaReproduce audio de fondo para atraer a los visitantes al cargar la página.Por favor eliminePor favor ingresePlugin Activado.La instalación del plugin falló, por favor intenta de nuevo más tarde.Plugin InstaladoLa activación del plugin está deshabilitada para ti en este sitio.Función de instalación del plugin no encontrada.Falta el slug del plugin.Lista de plugins no encontradaPosiciónInformación de la publicaciónDiseño de publicacionesDiseños de publicacionesPublicacionesImpulsando más de 1+ millón de sitios web, %s es amado por el rendimiento rápido y la facilidad de uso que ofrece. Es adecuado para todo tipo de sitios web como blogs, portafolios, negocios y tiendas WooCommerce.Presenta productos con diseños detallados y personalizables.PreajustesPresto PlayerCaja de PreciosLista de PreciosTarjetas de preciosTabla de preciosProAcceso rápidoLeer documentaciónLeer guía completaSolicitar una característicaSoporte responsivoImagen RetinaLogo RetinaDerechaRevertirRevertir a la Versión AnteriorWidgets de SEOSchema – Todos en uno Schema Rich SnippetsDesplazarse hacia arribaBuscarPágina de búsquedaBuscar PlantillasBuscar páginas / publicaciones / categoríasResultados de búsqueda para:Resultados de búsqueda para:Buscar...Buscando…SeleccionarSeleccionar OpciónSelecciona una opción para agregar soporte de temaVende tus productos fácilmente en WordPress.SeparadorTipo de separadorConfiguraciones¡Configuraciones guardadas con éxito!Divisor de formaShortcodeMostrarMostrar inicioMostrar Precio TotalMuestra un mini-carrito para experiencias de compra sin interrupciones.Mostrar autor, fechas y tiempo de lectura con estilos personalizables.Mostrar carrito para experiencias de compra sin problemas.Muestra u oculta contenido según las interacciones del usuario.Muestre el nombre de su sitio en un estilo personalizable.Muestra múltiples videos sin afectar los tiempos de carga.Muestra precios y características en diseños personalizables.Logo del sitioEslogan del sitioTítulo del sitioLogo del sitioTamañoSaltarIntegración de redes socialesCompartir en Redes SocialesA veces, los métodos anteriores pueden no funcionar bien con tu tema, en este caso, contacta al autor de tu tema y pídeles que agreguen soporte para el <a href="%s">plugin.</a>Lo siento, no está autorizado para realizar esta acción.EspaciadoEspaciado entre elementosPáginas especialesPáginas / publicaciones / taxonomías específicas, etc.Objetivo específicoPlantillas de inicioEstado: %sDeja de construir tu sitio desde cero. Usa nuestras plantillas profesionales para tu impresionante sitio web. Es fácil de personalizar y completamente responsivo. Explora cientos de diseños y da vida a tu visión en poco tiempo.Estiliza WP Fluent Forms para un aspecto atractivo y cohesivo.Estiliza y mejora Caldera Forms para que se ajusten a tu sitio.Estiliza y mejora Contact Form 7 para que se ajuste a tu sitio.Estiliza encabezados con colores duales y tipografía personalizable.EnviarSureCartSureFormsSureTriggersTablaTabla de ContenidosMiembro del EquipoFoto del equipoLa plantilla %1$s ya está asignada a la ubicación %2$sTextoColor del Texto¡Gracias por instalar el plugin %1$s Ultimate Addons for Elementor %2$s! Haz clic aquí para %3$scomenzar. %4$sGracias por tus comentariosEl plugin %1$sUltimate Addons for Elementor%2$s ha dejado de funcionar porque estás usando una versión anterior del plugin %1$sElementor%2$s.El plugin %1$sUltimate Addons for Elementor%2$s requiere que el plugin %1$sElementor%2$s esté instalado y activado.El plugin Ultimate Addons for Elementor necesita compatibilidad con tu tema actual para funcionar sin problemas.</br></br>Los siguientes son dos métodos que habilitan el soporte del tema para el plugin.</br></br>El Método 1 está seleccionado por defecto y funciona bien con casi todos los temas. En caso de que enfrentes algún problema con la plantilla de encabezado o pie de página, intenta elegir el Método 2.No se pudieron cargar los resultados.La misma configuración de visualización ya existe en %s publicación/es.Tema Activado.La instalación del tema falló, por favor intenta de nuevo más tarde.Tema InstaladoSoporte del TemaLa activación del tema está deshabilitada para ti en este sitio.Función de instalación del tema no encontrada.Falta el slug del tema.Este método oculta la plantilla de encabezado y pie de página de tu tema con CSS y muestra plantillas personalizadas del plugin.Este método reemplaza la plantilla de encabezado (header.php) y pie de página (footer.php) de tu tema con las plantillas personalizadas del plugin.Esta opción reemplazará automáticamente los archivos de encabezado y pie de página de tu tema con plantillas personalizadas del plugin. Funciona con la mayoría de los temas y está seleccionada por defecto.Este plugin es traído a ti por el mismo equipo detrás del popular tema de WordPress %s y una serie de plugins Ultimate Addons.Esto será aplicable para todos los sitios de la red.Esto ocultará el conteo de artículos hasta que el carrito esté vacíoLínea de TiempoPara asegurar la compatibilidad entre el encabezado/pie de página y tu tema, por favor elige una de las siguientes opciones para habilitar el soporte de tema:Confiado por más de 1+ millón de usuarios, Elementor Header & Footer Builder es una forma moderna de construir navegación avanzada para tu sitio web.Feed de TwitterTipoTipo de PlantillaTipografíaUAEUAE LiteComplementos definitivosUltimate Addons para ElementorUltimate Addons para Elementor LiteUltimate Addons for Elementor Lite <p>Revertir a la Versión Anterior</p>¡Ultimate Addons para Elementor Pro ofrece más de 50 widgets y características!Desbloquear características Pro¡Desbloquea los complementos definitivos para Elementor!Desbloquear características definitivasActualizar ElementorActualizar ahoraMejora WPForms con opciones de diseño y disposición personalizables.Actualiza ahoraSeguimiento de UsoUsa plantillas de widgets prehechas para acelerar tu proceso de diseño.Recursos útilesFormulario de registro de usuarioFormulario de Registro de UsuarioRoles de UsuarioUsuariosUtilidadesVersiónControl de versionesVideoGalería de VideosVerVer TodoVer demostraciónVer PlantillaVer plantillasVisitar sitioVisitar Sitio WebEstilizador de WP Fluent FormsWPFormsEstilizador de WPForms¿Quieres ayudar a hacer que <strong>%1s</strong> sea aún más increíble? Permítenos recopilar datos de diagnóstico no sensibles e información de uso.Valoramos su opinión. ¿Cómo podemos mejorar su experiencia?Estamos emocionados de ayudarte a potenciar tu experiencia de creación de sitios web. Diseña sitios web impresionantes sin esfuerzo con nuestra amplia gama de widgets y características gratuitas y premium.Bienvenido Música¡Bienvenido a Elementor Header & Footer Builder!¡Bienvenido a Ultimate Addons para Elementor!Opción de etiqueta blancaWidgetsWidgets / CaracterísticasLista de widgets no encontradaAnchoCon este increíble plugin, experimenta la forma más fácil de crear un encabezado y pie de página personalizados para tu sitio web con Elementor. ¡Y todo 100% GRATIS!Woo - Agregar al carritoWoo - CategoríasWoo - PagoWoo - Mini carritoWoo - ProductosPágina de tienda de WooCommerceWooCommerce: Agregar al carritoWooCommerce: PagoWooCommerce: Mini carritoWooCommerce: ProductoWooCommerce: Categoría de productoNonce de WordPress no validado.WordPress.orgSí¡Sí! PermitirloSolo puede seleccionarNo tienes permiso para acceder a esta página.Tu nombreTu correo electrónico de trabajoTus detalles se han enviado con éxito.Índice Zcarácterhttps://wordpress.org/plugins/header-footer-elementor/https://www.brainstormforce.com/https://your-link.comelementoo más caracteress»PK���\)���*languages/header-footer-elementor-es_ES.ponu�[���msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: gpt-po v1.2.0\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2025-01-09T20:01:27+00:00\n"
"PO-Revision-Date: 2025-01-09T20:01:27+00:00\n"
"Language: \n"

#: header-footer-elementor.php
#. Plugin Name of the plugin
msgid "Ultimate Addons for Elementor Lite"
msgstr "Ultimate Addons para Elementor Lite"

#: header-footer-elementor.php
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/header-footer-elementor/"
msgstr "https://wordpress.org/plugins/header-footer-elementor/"

#: header-footer-elementor.php
#. Description of the plugin
msgid ""
"Formerly known as \"Elementor Header & Footer Builder\", this powerful plugin allows you to create custom headers and "
"footers with Elementor and display them in selected locations. You can also create custom Elementor blocks and place "
"them anywhere on your website using a shortcode."
msgstr ""
"Anteriormente conocido como \"Constructor de Encabezados y Pies de Página de Elementor\", este potente plugin te "
"permite crear encabezados y pies de página personalizados con Elementor y mostrarlos en ubicaciones seleccionadas. "
"También puedes crear bloques personalizados de Elementor y colocarlos en cualquier parte de tu sitio web utilizando un "
"shortcode."

#: header-footer-elementor.php
#. Author of the plugin
msgid "Brainstorm Force"
msgstr "Brainstorm Force"

#: header-footer-elementor.php
#. Author URI of the plugin
msgid "https://www.brainstormforce.com/"
msgstr "https://www.brainstormforce.com/"

#: admin/bsf-analytics/class-bsf-analytics.php:220
#. translators: %s product name
msgid ""
"Want to help make <strong>%1s</strong> even more awesome? Allow us to collect non-sensitive diagnostic data and usage "
"information. "
msgstr ""
"¿Quieres ayudar a hacer que <strong>%1s</strong> sea aún más increíble? Permítenos recopilar datos de diagnóstico no "
"sensibles e información de uso."

#: admin/bsf-analytics/class-bsf-analytics.php:223
msgid "This will be applicable for all sites from the network."
msgstr "Esto será aplicable para todos los sitios de la red."

#: admin/bsf-analytics/class-bsf-analytics.php:247
#. translators: %s usage doc link
msgid " Know More."
msgstr "Saber más."

#: admin/bsf-analytics/class-bsf-analytics.php:255
msgid "Yes! Allow it"
msgstr "¡Sí! Permitirlo"

#: admin/bsf-analytics/class-bsf-analytics.php:264
msgid "No Thanks"
msgstr "No, gracias"

#: admin/bsf-analytics/class-bsf-analytics.php:373
msgid "Usage Tracking"
msgstr "Seguimiento de Uso"

#: admin/bsf-analytics/class-bsf-analytics.php:419
#. translators: %s Product title
msgid "Allow %s products to track non-sensitive usage tracking data."
msgstr "Permitir que los productos %s rastreen datos de seguimiento de uso no sensibles."

#: admin/bsf-analytics/class-bsf-analytics.php:422
msgid " This will be applicable for all sites from the network."
msgstr "Esto será aplicable para todos los sitios de la red."

#: admin/bsf-analytics/class-bsf-analytics.php:427
msgid "Learn More."
msgstr "Aprender más."

#: admin/class-hfe-addons-actions.php:336
msgid "Plugin activation is disabled for you on this site."
msgstr "La activación del plugin está deshabilitada para ti en este sitio."

#: admin/class-hfe-addons-actions.php:345
msgid "Plugin Activated."
msgstr "Plugin Activado."

#: admin/class-hfe-addons-actions.php:356
msgid "Theme activation is disabled for you on this site."
msgstr "La activación del tema está deshabilitada para ti en este sitio."

#: admin/class-hfe-addons-actions.php:365
msgid "Theme Activated."
msgstr "Tema Activado."

#: admin/class-hfe-addons-actions.php:372
msgid "Could not activate plugin. Please activate from the Plugins page."
msgstr "No se pudo activar el plugin. Por favor, actívalo desde la página de Plugins."

#: admin/class-hfe-addons-actions.php:374
msgid "Could not activate theme. Please activate from the Themes page."
msgstr "No se pudo activar el tema. Por favor, actívalo desde la página de Temas."

#: admin/class-hfe-admin.php:172
#: admin/class-hfe-admin.php:455
msgid "Display Rules"
msgstr "Reglas de Visualización"

#: admin/class-hfe-admin.php:173
#: inc/widgets-manager/widgets/post-info/post-info.php:136
msgid "Date"
msgstr "Fecha"

#: admin/class-hfe-admin.php:263
#: admin/class-hfe-admin.php:264
#: admin/class-hfe-admin.php:265
#: admin/class-hfe-admin.php:266
msgid "Elementor Header & Footer Builder"
msgstr "Constructor de Encabezados y Pies de Página de Elementor"

#: admin/class-hfe-admin.php:267
#: admin/class-hfe-admin.php:268
msgid "Add New"
msgstr "Agregar Nuevo"

#: admin/class-hfe-admin.php:269
msgid "New Template"
msgstr "Nueva Plantilla"

#: admin/class-hfe-admin.php:270
msgid "Edit Template"
msgstr "Editar Plantilla"

#: admin/class-hfe-admin.php:271
msgid "View Template"
msgstr "Ver Plantilla"

#: admin/class-hfe-admin.php:272
#: inc/class-hfe-settings-page.php:372
msgid "View All"
msgstr "Ver Todo"

#: admin/class-hfe-admin.php:273
msgid "Search Templates"
msgstr "Buscar Plantillas"

#: admin/class-hfe-admin.php:274
msgid "Parent Templates:"
msgstr "Plantillas Padre:"

#: admin/class-hfe-admin.php:275
msgid "No Templates found."
msgstr "No se encontraron Plantillas."

#: admin/class-hfe-admin.php:276
msgid "No Templates found in Trash."
msgstr "No se encontraron Plantillas en la Papelera."

#: admin/class-hfe-admin.php:319
#: admin/class-hfe-admin.php:320
msgid "Create New"
msgstr "Crear Nuevo"

#: admin/class-hfe-admin.php:329
msgid "Header/Footer Builder"
msgstr "Constructor de Encabezados/Pies de Página"

#: admin/class-hfe-admin.php:330
#: build/main.js:2
#: src/Components/NavMenu.js:150
#: build/main.js:51025
msgid "Header & Footer Builder"
msgstr "Constructor de Encabezados y Pies de Página"

#: admin/class-hfe-admin.php:359
msgid "Elementor Header & Footer Builder Options"
msgstr "Opciones del Constructor de Encabezados y Pies de Página de Elementor"

#: admin/class-hfe-admin.php:388
msgid "Type of Template"
msgstr "Tipo de Plantilla"

#: admin/class-hfe-admin.php:392
msgid "Select Option"
msgstr "Seleccionar Opción"

#: admin/class-hfe-admin.php:393
msgid "Header"
msgstr "Encabezado"

#: admin/class-hfe-admin.php:394
msgid "Before Footer"
msgstr "Antes del Pie de Página"

#: admin/class-hfe-admin.php:395
msgid "Footer"
msgstr "Pie de Página"

#: admin/class-hfe-admin.php:396
msgid "Custom Block"
msgstr "Bloque Personalizado"

#: admin/class-hfe-admin.php:404
#: admin/class-hfe-admin.php:654
msgid "Shortcode"
msgstr "Shortcode"

#: admin/class-hfe-admin.php:405
msgid "Copy this shortcode and paste it into your post, page, or text widget content."
msgstr "Copia este shortcode y pégalo en el contenido de tu publicación, página o widget de texto."

#: admin/class-hfe-admin.php:417
msgid "Enable Layout for Elementor Canvas Template?"
msgstr "¿Habilitar diseño para la plantilla de Elementor Canvas?"

#: admin/class-hfe-admin.php:419
msgid "Enabling this option will display this layout on pages using Elementor Canvas Template."
msgstr "Habilitar esta opción mostrará este diseño en páginas que utilizan la plantilla de Elementor Canvas."

#: admin/class-hfe-admin.php:446
msgid "Display On"
msgstr "Mostrar En"

#: admin/class-hfe-admin.php:448
msgid "Add locations for where this template should appear."
msgstr "Agregar ubicaciones donde esta plantilla debería aparecer."

#: admin/class-hfe-admin.php:459
msgid "Add Display Rule"
msgstr "Agregar Regla de Visualización"

#: admin/class-hfe-admin.php:468
msgid "Do Not Display On"
msgstr "No Mostrar En"

#: admin/class-hfe-admin.php:470
msgid "Add locations for where this template should not appear."
msgstr "Agregar ubicaciones donde esta plantilla no debería aparecer."

#: admin/class-hfe-admin.php:477
msgid "Exclude On"
msgstr "Excluir En"

#: admin/class-hfe-admin.php:480
#: inc/lib/target-rule/class-astra-target-rules-fields.php:847
msgid "Add Exclusion Rule"
msgstr "Agregar Regla de Exclusión"

#: admin/class-hfe-admin.php:490
msgid "User Roles"
msgstr "Roles de Usuario"

#: admin/class-hfe-admin.php:491
msgid "Display custom template based on user role."
msgstr "Mostrar plantilla personalizada según el rol del usuario."

#: admin/class-hfe-admin.php:498
msgid "Users"
msgstr "Usuarios"

#: admin/class-hfe-admin.php:501
msgid "Add User Rule"
msgstr "Agregar Regla de Usuario"

#: admin/class-hfe-admin.php:582
#. Translators: Post title, Template Location
msgid "Template %1$s is already assigned to the location %2$s"
msgstr "La plantilla %1$s ya está asignada a la ubicación %2$s"

#: inc/class-header-footer-elementor.php:223
msgid "Hello! Seems like you have used Ultimate Addons for Elementor to build this website — Thanks a ton!"
msgstr "¡Hola! Parece que has utilizado Ultimate Addons para Elementor para construir este sitio web — ¡Muchas gracias!"

#: inc/class-header-footer-elementor.php:224
msgid ""
"Could you please do us a BIG favor and give it a 5-star rating on WordPress? This would boost our motivation and help "
"other users make a comfortable decision while choosing the Ultimate Addons for Elementor."
msgstr ""
"¿Podrías hacernos un GRAN favor y darle una calificación de 5 estrellas en WordPress? Esto aumentaría nuestra "
"motivación y ayudaría a otros usuarios a tomar una decisión cómoda al elegir los Ultimate Addons para Elementor."

#: inc/class-header-footer-elementor.php:226
msgid "Ok, you deserve it"
msgstr "Está bien, te lo mereces"

#: inc/class-header-footer-elementor.php:228
msgid "Nope, maybe later"
msgstr "No, tal vez más tarde"

#: inc/class-header-footer-elementor.php:229
msgid "I already did"
msgstr "Ya lo hice"

#: inc/class-header-footer-elementor.php:294
#. translators: %s: html tags
msgid "The %1$sUltimate Addons for Elementor%2$s plugin requires %1$sElementor%2$s plugin installed & activated."
msgstr "El plugin %1$sUltimate Addons for Elementor%2$s requiere que el plugin %1$sElementor%2$s esté instalado y activado."

#: inc/class-header-footer-elementor.php:301
msgid "Activate Elementor"
msgstr "Activar Elementor"

#: inc/class-header-footer-elementor.php:306
#: inc/class-header-footer-elementor.php:342
msgid "Install Elementor"
msgstr "Instalar Elementor"

#: inc/class-header-footer-elementor.php:330
#. translators: %s: html tags
msgid ""
"The %1$sUltimate Addons for Elementor%2$s plugin has stopped working because you are using an older version of "
"%1$sElementor%2$s plugin."
msgstr ""
"El plugin %1$sUltimate Addons for Elementor%2$s ha dejado de funcionar porque estás usando una versión anterior del "
"plugin %1$sElementor%2$s."

#: inc/class-header-footer-elementor.php:337
msgid "Update Elementor"
msgstr "Actualizar Elementor"

#: inc/class-header-footer-elementor.php:370
#. translators: %s: html tags
msgid "Thank you for installing %1$s Ultimate Addons for Elementor %2$s Plugin! Click here to %3$sget started. %4$s"
msgstr "¡Gracias por instalar el plugin %1$s Ultimate Addons for Elementor %2$s! Haz clic aquí para %3$scomenzar. %4$s"

#: inc/class-header-footer-elementor.php:562
#: build/main.js:172
#: src/Components/Settings/Settings.jsx:49
#: src/Components/Settings/ThemeSupport.jsx:80
#: build/main.js:53755
#: build/main.js:54109
msgid "Theme Support"
msgstr "Soporte del Tema"

#: inc/class-hfe-rollback.php:167
msgid "Ultimate Addons for Elementor Lite <p>Rollback to Previous Version</p>"
msgstr "Ultimate Addons for Elementor Lite <p>Revertir a la Versión Anterior</p>"

#: inc/class-hfe-settings-page.php:153
msgid "You do not have permission to access this page."
msgstr "No tienes permiso para acceder a esta página."

#: inc/class-hfe-settings-page.php:154
#: inc/class-hfe-settings-page.php:189
#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:63
#: src/Components/Settings/VersionControl.jsx:119
#: build/main.js:53914
#: build/main.js:53970
msgid "Rollback to Previous Version"
msgstr "Revertir a la Versión Anterior"

#: inc/class-hfe-settings-page.php:170
msgid "Error occurred, The version selected is invalid. Try selecting different version."
msgstr "Ocurrió un error, la versión seleccionada es inválida. Intenta seleccionar una versión diferente."

#: inc/class-hfe-settings-page.php:351
#: inc/class-hfe-settings-page.php:1099
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:86
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:173
#: build/main.js:52331
#: build/main.js:52418
msgid "Activate"
msgstr "Activar"

#: inc/class-hfe-settings-page.php:352
#: inc/class-hfe-settings-page.php:1091
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:156
#: build/main.js:52401
msgid "Activated"
msgstr "Activado"

#: inc/class-hfe-settings-page.php:353
#: inc/class-hfe-settings-page.php:1088
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1030
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1213
msgid "Active"
msgstr "Activo"

#: inc/class-hfe-settings-page.php:354
msgid "Deactivate"
msgstr "Desactivar"

#: inc/class-hfe-settings-page.php:355
#: inc/class-hfe-settings-page.php:1096
msgid "Inactive"
msgstr "Inactivo"

#: inc/class-hfe-settings-page.php:356
#: inc/class-hfe-settings-page.php:1112
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:91
#: build/main.js:52336
msgid "Install"
msgstr "Instalar"

#: inc/class-hfe-settings-page.php:357
msgid "Theme Installed"
msgstr "Tema Instalado"

#: inc/class-hfe-settings-page.php:358
msgid "Plugin Installed"
msgstr "Plugin Instalado"

#: inc/class-hfe-settings-page.php:359
msgid "Download"
msgstr "Descargar"

#: inc/class-hfe-settings-page.php:360
msgid "Already Exists."
msgstr "Ya existe."

#: inc/class-hfe-settings-page.php:361
#: inc/class-hfe-settings-page.php:1117
msgid "Visit Website"
msgstr "Visitar Sitio Web"

#: inc/class-hfe-settings-page.php:362
msgid "Could not install. Please download from WordPress.org and install manually."
msgstr "No se pudo instalar. Por favor, descarga desde WordPress.org e instálalo manualmente."

#: inc/class-hfe-settings-page.php:363
msgid "Your details are submitted successfully."
msgstr "Tus detalles se han enviado con éxito."

#: inc/class-hfe-settings-page.php:364
msgid "Encountered an error while performing your request."
msgstr "Se encontró un error al realizar tu solicitud."

#: inc/class-hfe-settings-page.php:440
msgid "Add Theme Support"
msgstr "Agregar Soporte para el Tema"

#: inc/class-hfe-settings-page.php:456
msgid ""
"The Ultimate Addons for Elementor plugin need compatibility with your current theme to work "
"smoothly.</br></br>Following are two methods that enable theme support for the plugin.</br></br>Method 1 is selected by "
"default and that works fine almost will all themes. In case, you face any issue with the header or footer template, try "
"choosing Method 2."
msgstr ""
"El plugin Ultimate Addons for Elementor necesita compatibilidad con tu tema actual para funcionar sin "
"problemas.</br></br>Los siguientes son dos métodos que habilitan el soporte del tema para el plugin.</br></br>El Método "
"1 está seleccionado por defecto y funciona bien con casi todos los temas. En caso de que enfrentes algún problema con "
"la plantilla de encabezado o pie de página, intenta elegir el Método 2."

#: inc/class-hfe-settings-page.php:475
msgid " Method 1 (Recommended)"
msgstr "Método 1 (Recomendado)"

#: inc/class-hfe-settings-page.php:476
msgid "This method replaces your theme's header (header.php) & footer (footer.php) template with plugin's custom templates."
msgstr ""
"Este método reemplaza la plantilla de encabezado (header.php) y pie de página (footer.php) de tu tema con las "
"plantillas personalizadas del plugin."

#: inc/class-hfe-settings-page.php:479
msgid "Method 2"
msgstr "Método 2"

#: inc/class-hfe-settings-page.php:483
msgid "This method hides your theme's header & footer template with CSS and displays custom templates from the plugin."
msgstr ""
"Este método oculta la plantilla de encabezado y pie de página de tu tema con CSS y muestra plantillas personalizadas "
"del plugin."

#: inc/class-hfe-settings-page.php:494
msgid ""
"Sometimes above methods might not work well with your theme, in this case, contact your theme author and request them "
"to add support for the <a href=\"%s\">plugin.</a>"
msgstr ""
"A veces, los métodos anteriores pueden no funcionar bien con tu tema, en este caso, contacta al autor de tu tema y "
"pídeles que agreguen soporte para el <a href=\"%s\">plugin.</a>"

#: inc/class-hfe-settings-page.php:526
#: inc/class-hfe-settings-page.php:538
msgid "UAE Lite"
msgstr "UAE Lite"

#: inc/class-hfe-settings-page.php:527
#: inc/widgets-manager/class-widgets-loader.php:168
msgid "UAE"
msgstr "UAE"

#: inc/class-hfe-settings-page.php:539
#: build/main.js:2
#: src/Components/NavMenu.js:130
#: build/main.js:51005
msgid "Dashboard"
msgstr "Tablero"

#: inc/class-hfe-settings-page.php:550
#: inc/class-hfe-settings-page.php:551
#: inc/class-hfe-settings-page.php:1239
#: inc/widgets-manager/base/widgets-config.php:309
#: inc/widgets-manager/base/widgets-config.php:392
#: inc/widgets-manager/base/widgets-config.php:472
#: inc/widgets-manager/base/widgets-config.php:487
#: inc/widgets-manager/base/widgets-config.php:558
#: inc/widgets-manager/base/widgets-config.php:613
#: inc/widgets-manager/base/widgets-config.php:683
#: inc/widgets-manager/base/widgets-config.php:699
#: inc/widgets-manager/base/widgets-config.php:844
#: build/main.js:2
#: src/Components/NavMenu.js:184
#: build/main.js:51059
msgid "Settings"
msgstr "Configuraciones"

#: inc/class-hfe-settings-page.php:611
msgid "Elementor Header & Footer Builder "
msgstr "Constructor de Encabezado y Pie de Página de Elementor"

#: inc/class-hfe-settings-page.php:669
msgid "All Templates"
msgstr "Todas las plantillas"

#: inc/class-hfe-settings-page.php:676
msgid "About Us"
msgstr "Sobre nosotros"

#: inc/class-hfe-settings-page.php:722
#. translators: 1: Elementor, 2: Link to plugin review
msgid ""
"Help us spread the word about the plugin by leaving %2$s %1$s %3$s ratings on %2$s WordPress.org %3$s. Thank you from "
"the Brainstorm Force team!"
msgstr ""
"¡Ayúdanos a difundir la palabra sobre el plugin dejando %2$s %1$s %3$s valoraciones en %2$s WordPress.org %3$s! Gracias "
"del equipo de Brainstorm Force."

#: inc/class-hfe-settings-page.php:765
msgid "Create Impressive Header and Footer Designs"
msgstr "Crea diseños impresionantes de encabezado y pie de página"

#: inc/class-hfe-settings-page.php:766
msgid ""
"Elementor Header & Footer Builder plugin lets you build impactful navigation for your website very easily. Before we "
"begin, we would like to know more about you. This will help us to serve you better."
msgstr ""
"El plugin Elementor Header & Footer Builder te permite construir una navegación impactante para tu sitio web de manera "
"muy fácil. Antes de comenzar, nos gustaría saber más sobre ti. Esto nos ayudará a servirte mejor."

#: inc/class-hfe-settings-page.php:780
#. translators: %1$s and %3$s are opening anchor tags, and %2$s and %4$s is closing anchor tags.
msgid "By submitting, you agree to our %1$sTerms%2$s and %3$sPrivacy Policy%4$s."
msgstr "Al enviar, aceptas nuestros %1$sTérminos%2$s y %3$sPolítica de privacidad%4$s."

#: inc/class-hfe-settings-page.php:798
msgid "Skip"
msgstr "Saltar"

#: inc/class-hfe-settings-page.php:816
msgid "Beginner"
msgstr "Principiante"

#: inc/class-hfe-settings-page.php:817
msgid "Intermediate"
msgstr "Intermedio"

#: inc/class-hfe-settings-page.php:818
msgid "Expert"
msgstr "Experto"

#: inc/class-hfe-settings-page.php:820
#: inc/class-hfe-settings-page.php:829
msgid "Field is required"
msgstr "El campo es obligatorio"

#: inc/class-hfe-settings-page.php:821
msgid "I'm a WordPress:"
msgstr "Soy un WordPress:"

#: inc/class-hfe-settings-page.php:826
msgid "Myself/My company"
msgstr "Yo mismo/Mi empresa"

#: inc/class-hfe-settings-page.php:827
msgid "My client"
msgstr "Mi cliente"

#: inc/class-hfe-settings-page.php:830
msgid "I'm building website for:"
msgstr "Estoy construyendo un sitio web para:"

#: inc/class-hfe-settings-page.php:853
msgid "First name is required"
msgstr "Se requiere el nombre"

#: inc/class-hfe-settings-page.php:854
msgid "Your First Name"
msgstr "Tu nombre"

#: inc/class-hfe-settings-page.php:858
msgid "Email address is required"
msgstr "Se requiere la dirección de correo electrónico"

#: inc/class-hfe-settings-page.php:859
msgid "Your Work Email"
msgstr "Tu correo electrónico de trabajo"

#: inc/class-hfe-settings-page.php:863
msgid "I agree to receive your newsletters and accept the data privacy statement."
msgstr "Acepto recibir tus boletines y acepto la declaración de privacidad de datos."

#: inc/class-hfe-settings-page.php:868
msgid "Submit"
msgstr "Enviar"

#: inc/class-hfe-settings-page.php:102
#: inc/class-hfe-settings-page.php:890
#: inc/class-hfe-settings-page.php:1168
msgid "Ultimate Addons for Elementor"
msgstr "Ultimate Addons para Elementor"

#: inc/class-hfe-settings-page.php:925
#. translators: %s: theme name
msgid ""
"Powering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for "
"all kinds of websites like blogs, portfolios, business, and WooCommerce stores."
msgstr ""
"Impulsando más de 1+ millón de sitios web, %s es amado por el rendimiento rápido y la facilidad de uso que ofrece. Es "
"adecuado para todo tipo de sitios web como blogs, portafolios, negocios y tiendas WooCommerce."

#: inc/class-hfe-settings-page.php:946
msgid "Welcome to Elementor Header & Footer Builder!"
msgstr "¡Bienvenido a Elementor Header & Footer Builder!"

#: inc/class-hfe-settings-page.php:948
msgid ""
"With this awesome plugin, experience the easiest way to create a customized header and footer for your website with "
"Elementor. That too 100% FREE!"
msgstr ""
"Con este increíble plugin, experimenta la forma más fácil de crear un encabezado y pie de página personalizados para tu "
"sitio web con Elementor. ¡Y todo 100% GRATIS!"

#: inc/class-hfe-settings-page.php:950
msgid ""
"Design beautiful layouts with simple drag & drop and display them at desired location with powerful target controls. "
"The plugin comes with inbuilt Elementor widgets that offer essential features to build header and footer. It's a "
"lightweight plugin that works seamlessly with all themes and backed up by 24/7 support."
msgstr ""
"Diseña hermosos diseños con un simple arrastrar y soltar y muéstralos en la ubicación deseada con potentes controles de "
"destino. El plugin viene con widgets de Elementor integrados que ofrecen características esenciales para construir "
"encabezados y pies de página. Es un plugin ligero que funciona sin problemas con todos los temas y respaldado por "
"soporte 24/7."

#: inc/class-hfe-settings-page.php:952
msgid ""
"Trusted by more than 1+ Million users, Elementor Header & Footer Builder is a modern way to build advanced navigation "
"for your website."
msgstr ""
"Confiado por más de 1+ millón de usuarios, Elementor Header & Footer Builder es una forma moderna de construir "
"navegación avanzada para tu sitio web."

#: inc/class-hfe-settings-page.php:955
#. translators: %s: theme name
msgid ""
"This plugin is brought to you by the same team behind the popular WordPress theme %s and a series of Ultimate Addons "
"plugins."
msgstr ""
"Este plugin es traído a ti por el mismo equipo detrás del popular tema de WordPress %s y una serie de plugins Ultimate "
"Addons."

#: inc/class-hfe-settings-page.php:961
msgid "Team photo"
msgstr "Foto del equipo"

#: inc/class-hfe-settings-page.php:963
msgid "Brainstorm Force Team"
msgstr "Equipo de Brainstorm Force"

#: inc/class-hfe-settings-page.php:1008
#. translators: %s - addon status label.
msgid "%1$s %3$s %2$s"
msgstr "%1$s %3$s %2$s"

#: inc/class-hfe-settings-page.php:1025
#. translators: %s - addon status label.
msgid "Status: %s"
msgstr "Estado: %s"

#: inc/class-hfe-settings-page.php:1044
msgid "WordPress.org"
msgstr "WordPress.org"

#: inc/class-hfe-settings-page.php:1109
msgid "Not Installed"
msgstr "No instalado"

#: inc/class-hfe-settings-page.php:1156
#: inc/widgets-manager/base/widgets-config.php:1008
msgid "Starter Templates"
msgstr "Plantillas de inicio"

#: inc/class-hfe-settings-page.php:1157
msgid ""
"A popular templates plugin that provides an extensive library of professional and fully customizable 600+ ready website "
"and templates. More than 1+ Million websites have built with this plugin."
msgstr ""
"Un popular plugin de plantillas que proporciona una extensa biblioteca de 600+ sitios web y plantillas profesionales y "
"completamente personalizables. Más de 1+ millón de sitios web se han construido con este plugin."

#: inc/class-hfe-settings-page.php:1169
msgid ""
"It’s a collection of 40+ unique, creative, and optimized Elementor widgets with 100+ readymade templates. Trusted by "
"more than 600+ K web professionals. It’s a #1 toolkit for Elementor Page Builder."
msgstr ""
"Es una colección de más de 40 widgets únicos, creativos y optimizados para Elementor con más de 100 plantillas listas "
"para usar. Confiado por más de 600 K profesionales web. Es un kit de herramientas número 1 para Elementor Page Builder."

#: inc/class-hfe-settings-page.php:1238
msgid "Go to HFE Settings page"
msgstr "Ir a la página de configuración de HFE"

#: inc/lib/astra-notices/class-astra-notices.php:119
msgid "WordPress Nonce not validated."
msgstr "Nonce de WordPress no validado."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:127
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:298
msgid "404 Page"
msgstr "Página 404"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:128
msgid "Search Page"
msgstr "Página de búsqueda"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:129
msgid "Blog / Posts Page"
msgstr "Página de blog / publicaciones"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:130
msgid "Front Page"
msgstr "Página principal"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:131
msgid "Date Archive"
msgstr "Archivo de fechas"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:132
msgid "Author Archive"
msgstr "Archivo de autor"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:136
msgid "WooCommerce Shop Page"
msgstr "Página de tienda de WooCommerce"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:141
#: inc/lib/target-rule/class-astra-target-rules-fields.php:213
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:143
#: src/Components/Compare/FreevsPro.jsx:152
#: build/main.js:54381
#: build/main.js:54390
msgid "Basic"
msgstr "Básico"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:143
msgid "Entire Website"
msgstr "Todo el sitio web"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:144
msgid "All Singulars"
msgstr "Todos los singulares"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:145
msgid "All Archives"
msgstr "Todos los archivos"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:150
msgid "Special Pages"
msgstr "Páginas especiales"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:191
msgid "Specific Target"
msgstr "Objetivo específico"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:193
msgid "Specific Pages / Posts / Taxonomies, etc."
msgstr "Páginas / publicaciones / taxonomías específicas, etc."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:215
msgid "All"
msgstr "Todo"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:216
msgid "Logged In"
msgstr "Conectado"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:217
msgid "Logged Out"
msgstr "Desconectado"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:222
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:142
#: src/Components/Compare/FreevsPro.jsx:153
#: build/main.js:54380
#: build/main.js:54391
msgid "Advanced"
msgstr "Avanzado"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:624
msgid "Please enter"
msgstr "Por favor ingrese"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:625
msgid "Please delete"
msgstr "Por favor elimine"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:626
msgid "or more characters"
msgstr "o más caracteres"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:627
msgid "character"
msgstr "carácter"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:628
msgid "Loading more results…"
msgstr "Cargando más resultados…"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:629
msgid "You can only select"
msgstr "Solo puede seleccionar"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:630
msgid "item"
msgstr "elemento"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:631
msgid "s"
msgstr "s"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:632
msgid "No results found"
msgstr "No se encontraron resultados"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:633
msgid "Searching…"
msgstr "Buscando…"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:634
msgid "The results could not be loaded."
msgstr "No se pudieron cargar los resultados."

#: inc/lib/target-rule/class-astra-target-rules-fields.php:635
msgid "Search pages / post / categories"
msgstr "Buscar páginas / publicaciones / categorías"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:654
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1064
msgid "Add Rule"
msgstr "Agregar regla"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:670
#: inc/lib/target-rule/class-astra-target-rules-fields.php:775
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1080
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1110
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1572
msgid "Select"
msgstr "Seleccionar"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:720
#. translators: %s post label
msgid "All %s"
msgstr "Todos %s"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:725
#: inc/lib/target-rule/class-astra-target-rules-fields.php:734
#. translators: %s post label
#. translators: %s taxonomy label
msgid "All %s Archive"
msgstr "Todo %s Archivo"

#: inc/lib/target-rule/class-astra-target-rules-fields.php:1513
#. translators: %s post title.
msgid "The same display setting is already exist in %s post/s."
msgstr "La misma configuración de visualización ya existe en %s publicación/es."

#: inc/settings/hfe-settings-api.php:101
msgid "Sorry, you are not authorized to perform this action."
msgstr "Lo siento, no está autorizado para realizar esta acción."

#: inc/settings/hfe-settings-api.php:116
#: inc/settings/hfe-settings-api.php:143
#: inc/settings/hfe-settings-api.php:170
msgid "Invalid nonce"
msgstr "Nonce inválido"

#: inc/settings/hfe-settings-api.php:150
msgid "Plugins list not found"
msgstr "Lista de plugins no encontrada"

#: inc/settings/hfe-settings-api.php:177
msgid "Widgets list not found"
msgstr "Lista de widgets no encontrada"

#: inc/widgets-manager/base/widgets-config.php:53
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:19
#: build/main.js:54257
msgid "Post Info"
msgstr "Información de la publicación"

#: inc/widgets-manager/base/widgets-config.php:61
msgid "Show author, dates, and reading time with customizable styles."
msgstr "Mostrar autor, fechas y tiempo de lectura con estilos personalizables."

#: inc/widgets-manager/base/widgets-config.php:67
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:21
#: build/main.js:54259
msgid "Breadcrumbs"
msgstr "Migajas de pan"

#: inc/widgets-manager/base/widgets-config.php:75
msgid "Add navigation links to guide visitors across your site."
msgstr "Agregar enlaces de navegación para guiar a los visitantes a través de su sitio."

#: inc/widgets-manager/base/widgets-config.php:81
#: inc/widgets-manager/widgets/site-logo/site-logo.php:133
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:26
#: build/main.js:54264
msgid "Site Logo"
msgstr "Logo del sitio"

#: inc/widgets-manager/base/widgets-config.php:88
msgid "Add your site's primary logo with flexible customization options."
msgstr "Agregue el logo principal de su sitio con opciones de personalización flexibles."

#: inc/widgets-manager/base/widgets-config.php:94
#: inc/widgets-manager/base/widgets-config.php:525
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:28
#: src/Components/Compare/FreevsPro.jsx:138
#: src/Components/Compare/FreevsPro.jsx:140
#: src/Components/Compare/FreevsPro.jsx:148
#: src/Components/Compare/FreevsPro.jsx:150
#: build/main.js:54266
#: build/main.js:54376
#: build/main.js:54378
#: build/main.js:54386
#: build/main.js:54388
msgid "Navigation Menu"
msgstr "Menú de navegación"

#: inc/widgets-manager/base/widgets-config.php:101
msgid "Add stylish and functional menus for seamless site navigation."
msgstr "Agregue menús elegantes y funcionales para una navegación fluida por el sitio."

#: inc/widgets-manager/base/widgets-config.php:107
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:49
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:103
#: inc/widgets-manager/extensions/class-scroll-to-top.php:310
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:20
#: build/main.js:54258
msgid "Scroll to Top"
msgstr "Desplazarse hacia arriba"

#: inc/widgets-manager/base/widgets-config.php:115
msgid "Add a customizable button for quick, one-click top scrolling."
msgstr "Agregue un botón personalizable para un desplazamiento rápido hacia arriba con un solo clic."

#: inc/widgets-manager/base/widgets-config.php:122
msgid "Site Title"
msgstr "Título del sitio"

#: inc/widgets-manager/base/widgets-config.php:129
msgid "Show your site’s name in a customizable style."
msgstr "Muestre el nombre de su sitio en un estilo personalizable."

#: inc/widgets-manager/base/widgets-config.php:135
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:25
#: build/main.js:54263
msgid "Site Tagline"
msgstr "Eslogan del sitio"

#: inc/widgets-manager/base/widgets-config.php:142
msgid "Display your site's tagline to enhance brand identity."
msgstr "Muestre el eslogan de su sitio para mejorar la identidad de la marca."

#: inc/widgets-manager/base/widgets-config.php:148
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:285
#: inc/widgets-manager/widgets/search-button/search-button.php:990
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:27
#: build/main.js:54265
msgid "Search"
msgstr "Buscar"

#: inc/widgets-manager/base/widgets-config.php:155
msgid "Add a search bar to help visitors find content easily."
msgstr "Agregue una barra de búsqueda para ayudar a los visitantes a encontrar contenido fácilmente."

#: inc/widgets-manager/base/widgets-config.php:161
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:24
#: build/main.js:54262
msgid "Page Title"
msgstr "Título de la página"

#: inc/widgets-manager/base/widgets-config.php:168
msgid "Display the title of the current page dynamically."
msgstr "Muestre el título de la página actual de forma dinámica."

#: inc/widgets-manager/base/widgets-config.php:174
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:22
#: build/main.js:54260
msgid "Retina Logo"
msgstr "Logo Retina"

#: inc/widgets-manager/base/widgets-config.php:181
msgid "Add a high-quality logo that looks sharp on any screen."
msgstr "Agregue un logo de alta calidad que se vea nítido en cualquier pantalla."

#: inc/widgets-manager/base/widgets-config.php:187
#: inc/widgets-manager/class-widgets-loader.php:330
#: inc/widgets-manager/widgets/cart/cart.php:629
msgid "Cart"
msgstr "Carrito"

#: inc/widgets-manager/base/widgets-config.php:194
msgid "Show cart for seamless shopping experiences."
msgstr "Mostrar carrito para experiencias de compra sin problemas."

#: inc/widgets-manager/base/widgets-config.php:200
#: inc/widgets-manager/widgets/copyright/copyright.php:102
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:23
#: build/main.js:54261
msgid "Copyright"
msgstr "Derechos de autor"

#: inc/widgets-manager/base/widgets-config.php:207
msgid "Display customizable copyright text for your site's footer."
msgstr "Mostrar texto de derechos de autor personalizable para el pie de página de su sitio."

#: inc/widgets-manager/base/widgets-config.php:234
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:34
#: src/Components/Compare/UltimateCompare.jsx:17
#: src/Components/Dashboard/UltimateFeatures.js:18
#: src/Components/Widgets/UltimateWidgets.jsx:18
#: build/main.js:52091
#: build/main.js:52688
#: build/main.js:54272
#: build/main.js:54493
msgid "Advanced Heading"
msgstr "Encabezado avanzado"

#: inc/widgets-manager/base/widgets-config.php:235
msgid "Create engaging and customizable headings for your pages."
msgstr "Cree encabezados atractivos y personalizables para sus páginas."

#: inc/widgets-manager/base/widgets-config.php:248
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:66
#: src/Components/Compare/UltimateCompare.jsx:12
#: src/Components/Dashboard/UltimateFeatures.js:13
#: src/Components/Widgets/UltimateWidgets.jsx:13
#: build/main.js:52086
#: build/main.js:52683
#: build/main.js:54304
#: build/main.js:54488
msgid "Modal Popup"
msgstr "Popup modal"

#: inc/widgets-manager/base/widgets-config.php:249
msgid "Design engaging popups with interactive animations and content."
msgstr "Diseñe popups atractivos con animaciones interactivas y contenido."

#: inc/widgets-manager/base/widgets-config.php:261
msgid "Content Toggle"
msgstr "Alternar contenido"

#: inc/widgets-manager/base/widgets-config.php:262
msgid "Let users easily switch between two types of content."
msgstr "Permita que los usuarios cambien fácilmente entre dos tipos de contenido."

#: inc/widgets-manager/base/widgets-config.php:274
msgid "Before After Slider"
msgstr "Deslizador de antes y después"

#: inc/widgets-manager/base/widgets-config.php:275
msgid "Display the before and after versions of an image."
msgstr "Muestre las versiones de antes y después de una imagen."

#: inc/widgets-manager/base/widgets-config.php:287
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:65
#: build/main.js:54303
msgid "Business Hours"
msgstr "Horas de atención"

#: inc/widgets-manager/base/widgets-config.php:288
msgid "Customize and display your business hours stylishly."
msgstr "Personalice y muestre sus horas de atención de manera elegante."

#: inc/widgets-manager/base/widgets-config.php:302
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:94
#: build/main.js:54332
msgid "Business Reviews"
msgstr "Reseñas de Negocios"

#: inc/widgets-manager/base/widgets-config.php:303
msgid "Display verified reviews from Google and Yelp directly."
msgstr "Muestra reseñas verificadas de Google y Yelp directamente."

#: inc/widgets-manager/base/widgets-config.php:316
msgid "Contact Form 7 Styler"
msgstr "Estilizador de Contact Form 7"

#: inc/widgets-manager/base/widgets-config.php:317
msgid "Style and enhance Contact Form 7 to fit your site."
msgstr "Estiliza y mejora Contact Form 7 para que se ajuste a tu sitio."

#: inc/widgets-manager/base/widgets-config.php:329
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:64
#: build/main.js:54302
msgid "Countdown Timer"
msgstr "Temporizador de Cuenta Regresiva"

#: inc/widgets-manager/base/widgets-config.php:330
msgid "Create urgency with fixed or recurring countdowns."
msgstr "Crea urgencia con cuentas regresivas fijas o recurrentes."

#: inc/widgets-manager/base/widgets-config.php:343
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:35
#: build/main.js:54273
msgid "Dual Color Heading"
msgstr "Encabezado de Doble Color"

#: inc/widgets-manager/base/widgets-config.php:344
msgid "Style headings with dual colours and customizable typography."
msgstr "Estiliza encabezados con colores duales y tipografía personalizable."

#: inc/widgets-manager/base/widgets-config.php:357
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:36
#: build/main.js:54274
msgid "Fancy Heading"
msgstr "Encabezado Elegante"

#: inc/widgets-manager/base/widgets-config.php:358
msgid "Add animated text for more engaging page titles."
msgstr "Agrega texto animado para títulos de página más atractivos."

#: inc/widgets-manager/base/widgets-config.php:371
msgid "FAQ Schema"
msgstr "Esquema de Preguntas Frecuentes"

#: inc/widgets-manager/base/widgets-config.php:372
msgid "Add SEO-friendly FAQ sections to pages."
msgstr "Agrega secciones de preguntas frecuentes amigables con SEO a las páginas."

#: inc/widgets-manager/base/widgets-config.php:385
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:49
#: build/main.js:54287
msgid "Google Map"
msgstr "Mapa de Google"

#: inc/widgets-manager/base/widgets-config.php:386
msgid "Add customizable, multi-location maps with custom markers."
msgstr "Agrega mapas personalizables de múltiples ubicaciones con marcadores personalizados."

#: inc/widgets-manager/base/widgets-config.php:400
msgid "Gravity Form Styler"
msgstr "Estilizador de Gravity Form"

#: inc/widgets-manager/base/widgets-config.php:401
msgid "Customize Gravity Forms with advanced styling options."
msgstr "Personaliza Gravity Forms con opciones de estilo avanzadas."

#: inc/widgets-manager/base/widgets-config.php:413
msgid "Hotspot"
msgstr "Punto de Interés"

#: inc/widgets-manager/base/widgets-config.php:414
msgid "Add interactive points on images for detailed visual tours."
msgstr "Agrega puntos interactivos en imágenes para recorridos visuales detallados."

#: inc/widgets-manager/base/widgets-config.php:426
msgid "How-to Schema"
msgstr "Esquema de Cómo Hacer"

#: inc/widgets-manager/base/widgets-config.php:427
msgid "Create structured how-to pages with automatic schema markup."
msgstr "Crea páginas estructuradas de cómo hacer con marcado de esquema automático."

#: inc/widgets-manager/base/widgets-config.php:439
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:45
#: build/main.js:54283
msgid "Image Gallery"
msgstr "Galería de Imágenes"

#: inc/widgets-manager/base/widgets-config.php:440
msgid "Build attractive, feature-rich galleries with advanced options."
msgstr "Construye galerías atractivas y ricas en funciones con opciones avanzadas."

#: inc/widgets-manager/base/widgets-config.php:452
#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:51
#: src/Components/Compare/UltimateCompare.jsx:27
#: src/Components/Dashboard/UltimateFeatures.js:28
#: src/Components/Widgets/UltimateWidgets.jsx:28
#: build/main.js:52101
#: build/main.js:52698
#: build/main.js:54289
#: build/main.js:54503
msgid "Info Box"
msgstr "Caja de Información"

#: inc/widgets-manager/base/widgets-config.php:453
msgid "Add headings, icons, and descriptions in one flexible widget."
msgstr "Agrega encabezados, íconos y descripciones en un widget flexible."

#: inc/widgets-manager/base/widgets-config.php:466
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:110
#: build/main.js:54348
msgid "Instagram Feed"
msgstr "Feed de Instagram"

#: inc/widgets-manager/base/widgets-config.php:467
msgid "Display an attractive, customizable Instagram feed."
msgstr "Muestra un feed de Instagram atractivo y personalizable."

#: inc/widgets-manager/base/widgets-config.php:481
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:54
#: build/main.js:54292
msgid "Login Form"
msgstr "Formulario de Inicio de Sesión"

#: inc/widgets-manager/base/widgets-config.php:482
msgid "Design beautiful, customizable WordPress login forms."
msgstr "Diseña hermosos formularios de inicio de sesión de WordPress personalizables."

#: inc/widgets-manager/base/widgets-config.php:497
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:61
#: build/main.js:54299
msgid "Marketing Button"
msgstr "Botón de Marketing"

#: inc/widgets-manager/base/widgets-config.php:498
msgid "Create High-impact, customizable CTA for promotions and conversions."
msgstr "Crea CTA personalizables de alto impacto para promociones y conversiones."

#: inc/widgets-manager/base/widgets-config.php:511
msgid "Multi Buttons"
msgstr "Múltiples Botones"

#: inc/widgets-manager/base/widgets-config.php:512
msgid "Create a versatile dual-button setup for navigation and interactive web elements."
msgstr "Crea una configuración versátil de botones duales para navegación y elementos web interactivos."

#: inc/widgets-manager/base/widgets-config.php:526
msgid "Build easy-to-navigate, visually appealing site menus."
msgstr "Construye menús de sitio fáciles de navegar y visualmente atractivos."

#: inc/widgets-manager/base/widgets-config.php:538
msgid "Off - Canvas"
msgstr "Fuera de Canvas"

#: inc/widgets-manager/base/widgets-config.php:539
msgid "Create sliding panels for navigation or extra content."
msgstr "Crea paneles deslizantes para navegación o contenido adicional."

#: inc/widgets-manager/base/widgets-config.php:551
msgid "Posts"
msgstr "Publicaciones"

#: inc/widgets-manager/base/widgets-config.php:552
msgid "Display and customize blog posts beautifully on your site."
msgstr "Muestra y personaliza publicaciones de blog de manera hermosa en tu sitio."

#: inc/widgets-manager/base/widgets-config.php:566
msgid "Price Box"
msgstr "Caja de Precios"

#: inc/widgets-manager/base/widgets-config.php:567
msgid "Showcase prices and features in customizable layouts."
msgstr "Muestra precios y características en diseños personalizables."

#: inc/widgets-manager/base/widgets-config.php:580
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:63
#: build/main.js:54301
msgid "Price List"
msgstr "Lista de Precios"

#: inc/widgets-manager/base/widgets-config.php:581
msgid "Create elegant, customizable lists for menus or product catalogues."
msgstr "Crea listas elegantes y personalizables para menús o catálogos de productos."

#: inc/widgets-manager/base/widgets-config.php:594
#: inc/widgets-manager/widgets/retina/retina.php:111
#: inc/widgets-manager/widgets/retina/retina.php:245
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:118
#: build/main.js:54356
msgid "Retina Image"
msgstr "Imagen Retina"

#: inc/widgets-manager/base/widgets-config.php:595
msgid "Ensure images look crisp on high-resolution screens."
msgstr "Asegúrate de que las imágenes se vean nítidas en pantallas de alta resolución."

#: inc/widgets-manager/base/widgets-config.php:607
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:112
#: build/main.js:54350
msgid "Social Share"
msgstr "Compartir en Redes Sociales"

#: inc/widgets-manager/base/widgets-config.php:608
msgid "Enable quick content sharing with social media buttons."
msgstr "Habilita el rápido compartir contenido con botones de redes sociales."

#: inc/widgets-manager/base/widgets-config.php:623
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:47
#: build/main.js:54285
msgid "Table"
msgstr "Tabla"

#: inc/widgets-manager/base/widgets-config.php:624
msgid "Build responsive, styled tables to display data."
msgstr "Construye tablas estilizadas y responsivas para mostrar datos."

#: inc/widgets-manager/base/widgets-config.php:636
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:93
#: build/main.js:54331
msgid "Table of Contents"
msgstr "Tabla de Contenidos"

#: inc/widgets-manager/base/widgets-config.php:637
msgid "Improve page readability with automatic, customizable TOCs."
msgstr "Mejora la legibilidad de la página con TOCs automáticos y personalizables."

#: inc/widgets-manager/base/widgets-config.php:649
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:119
#: build/main.js:54357
msgid "Team Member"
msgstr "Miembro del Equipo"

#: inc/widgets-manager/base/widgets-config.php:650
msgid "Highlight team members with customizable layouts."
msgstr "Destaca a los miembros del equipo con diseños personalizables."

#: inc/widgets-manager/base/widgets-config.php:663
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:48
#: build/main.js:54286
msgid "Timeline"
msgstr "Línea de Tiempo"

#: inc/widgets-manager/base/widgets-config.php:664
msgid "Display timelines or roadmaps with advanced styling options."
msgstr "Muestra líneas de tiempo o hojas de ruta con opciones de estilo avanzadas."

#: inc/widgets-manager/base/widgets-config.php:677
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:111
#: build/main.js:54349
msgid "Twitter Feed"
msgstr "Feed de Twitter"

#: inc/widgets-manager/base/widgets-config.php:678
msgid "Embed Twitter feeds to show real-time content updates."
msgstr "Incorpora feeds de Twitter para mostrar actualizaciones de contenido en tiempo real."

#: inc/widgets-manager/base/widgets-config.php:692
msgid "User Registration Form"
msgstr "Formulario de Registro de Usuario"

#: inc/widgets-manager/base/widgets-config.php:693
msgid "Create beautiful, custom registration forms for users."
msgstr "Crea hermosos formularios de registro personalizados para usuarios."

#: inc/widgets-manager/base/widgets-config.php:708
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:52
#: build/main.js:54290
msgid "Video"
msgstr "Video"

#: inc/widgets-manager/base/widgets-config.php:709
msgid "Embed optimized videos with customizable thumbnails and play buttons."
msgstr "Incorpora videos optimizados con miniaturas y botones de reproducción personalizables."

#: inc/widgets-manager/base/widgets-config.php:721
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:46
#: build/main.js:54284
msgid "Video Gallery"
msgstr "Galería de Videos"

#: inc/widgets-manager/base/widgets-config.php:722
msgid "Showcase multiple videos without impacting load times."
msgstr "Muestra múltiples videos sin afectar los tiempos de carga."

#: inc/widgets-manager/base/widgets-config.php:734
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:101
#: build/main.js:54339
msgid "Welcome Music"
msgstr "Bienvenido Música"

#: inc/widgets-manager/base/widgets-config.php:735
msgid "Play background audio to engage visitors upon page load."
msgstr "Reproduce audio de fondo para atraer a los visitantes al cargar la página."

#: inc/widgets-manager/base/widgets-config.php:747
msgid "Woo - Add To Cart"
msgstr "Woo - Agregar al carrito"

#: inc/widgets-manager/base/widgets-config.php:748
msgid "Let users add items to cart with one click."
msgstr "Permite a los usuarios agregar artículos al carrito con un clic."

#: inc/widgets-manager/base/widgets-config.php:760
msgid "Woo - Categories"
msgstr "Woo - Categorías"

#: inc/widgets-manager/base/widgets-config.php:761
msgid "Display product categories beautifully."
msgstr "Muestra las categorías de productos de manera hermosa."

#: inc/widgets-manager/base/widgets-config.php:773
msgid "Woo - Checkout"
msgstr "Woo - Pago"

#: inc/widgets-manager/base/widgets-config.php:774
msgid "Design optimized checkout pages for better conversions."
msgstr "Diseña páginas de pago optimizadas para mejores conversiones."

#: inc/widgets-manager/base/widgets-config.php:786
msgid "Woo - Mini Cart"
msgstr "Woo - Mini carrito"

#: inc/widgets-manager/base/widgets-config.php:787
msgid "Show a mini-cart for seamless shopping experiences."
msgstr "Muestra un mini-carrito para experiencias de compra sin interrupciones."

#: inc/widgets-manager/base/widgets-config.php:799
msgid "Woo - Products"
msgstr "Woo - Productos"

#: inc/widgets-manager/base/widgets-config.php:800
msgid "Present products with detailed, customizable layouts."
msgstr "Presenta productos con diseños detallados y personalizables."

#: inc/widgets-manager/base/widgets-config.php:812
msgid "WP Fluent Forms Styler"
msgstr "Estilizador de WP Fluent Forms"

#: inc/widgets-manager/base/widgets-config.php:813
msgid "Style WP Fluent Forms for an attractive, cohesive look."
msgstr "Estiliza WP Fluent Forms para un aspecto atractivo y cohesivo."

#: inc/widgets-manager/base/widgets-config.php:825
msgid "WPForms Styler"
msgstr "Estilizador de WPForms"

#: inc/widgets-manager/base/widgets-config.php:826
msgid "Upgrade WPForms with customizable design and layout options."
msgstr "Mejora WPForms con opciones de diseño y disposición personalizables."

#: inc/widgets-manager/base/widgets-config.php:838
msgid "Display Conditions"
msgstr "Condiciones de visualización"

#: inc/widgets-manager/base/widgets-config.php:839
msgid "Show or hide content based on user interactions."
msgstr "Muestra u oculta contenido según las interacciones del usuario."

#: inc/widgets-manager/base/widgets-config.php:853
msgid "Particle Backgrounds"
msgstr "Fondos de partículas"

#: inc/widgets-manager/base/widgets-config.php:854
msgid "Add dynamic, animated backgrounds to sections and columns."
msgstr "Agrega fondos dinámicos y animados a secciones y columnas."

#: inc/widgets-manager/base/widgets-config.php:866
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:103
#: build/main.js:54341
msgid "Party Propz"
msgstr "Accesorios de fiesta"

#: inc/widgets-manager/base/widgets-config.php:867
msgid "Decorate your site with festive seasonal elements easily."
msgstr "Decora tu sitio con elementos festivos de temporada fácilmente."

#: inc/widgets-manager/base/widgets-config.php:879
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:104
#: build/main.js:54342
msgid "Shape Divider"
msgstr "Divisor de forma"

#: inc/widgets-manager/base/widgets-config.php:880
msgid "Add new attractive shape dividers to Elementor sections."
msgstr "Agrega nuevos divisores de forma atractivos a las secciones de Elementor."

#: inc/widgets-manager/base/widgets-config.php:892
msgid "Cross-Site Copy Paste"
msgstr "Copiar y pegar entre sitios"

#: inc/widgets-manager/base/widgets-config.php:893
msgid "Copy and paste Elementor content between websites."
msgstr "Copia y pega contenido de Elementor entre sitios web."

#: inc/widgets-manager/base/widgets-config.php:905
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:100
#: build/main.js:54338
msgid "Presets"
msgstr "Preajustes"

#: inc/widgets-manager/base/widgets-config.php:906
msgid "Use pre-made widget templates to accelerate your design process."
msgstr "Usa plantillas de widgets prehechas para acelerar tu proceso de diseño."

#: inc/widgets-manager/base/widgets-config.php:924
msgid "Caldera Form Styler"
msgstr "Estilizador de Caldera Forms"

#: inc/widgets-manager/base/widgets-config.php:925
msgid "Style and enhance Caldera Forms to fit your site."
msgstr "Estiliza y mejora Caldera Forms para que se ajusten a tu sitio."

#: inc/widgets-manager/base/widgets-config.php:970
#. translators: %s: theme name
msgid "Free & Fastest WordPress Theme."
msgstr "Tema de WordPress gratuito y más rápido."

#: inc/widgets-manager/base/widgets-config.php:995
msgid "Fast and customizable theme for your website."
msgstr "Tema rápido y personalizable para tu sitio web."

#: inc/widgets-manager/base/widgets-config.php:1009
msgid "Launch websites with AI or ready-made templates."
msgstr "Lanza sitios web con IA o plantillas listas para usar."

#: inc/widgets-manager/base/widgets-config.php:1022
msgid "SureCart"
msgstr "SureCart"

#: inc/widgets-manager/base/widgets-config.php:1023
msgid "Sell your products easily on WordPress."
msgstr "Vende tus productos fácilmente en WordPress."

#: inc/widgets-manager/base/widgets-config.php:1036
msgid "Presto Player"
msgstr "Presto Player"

#: inc/widgets-manager/base/widgets-config.php:1037
msgid "Display seamless & interactive videos."
msgstr "Muestra videos interactivos y sin interrupciones."

#: inc/widgets-manager/base/widgets-config.php:1050
msgid "SureForms"
msgstr "SureForms"

#: inc/widgets-manager/base/widgets-config.php:1051
msgid "Create high-converting forms with ease."
msgstr "Crea formularios de alta conversión con facilidad."

#: inc/widgets-manager/base/widgets-config.php:1064
msgid "SureTriggers"
msgstr "SureTriggers"

#: inc/widgets-manager/base/widgets-config.php:1065
msgid "Automate WordPress tasks effortlessly."
msgstr "Automatiza tareas de WordPress sin esfuerzo."

#: inc/widgets-manager/base/widgets-config.php:1078
msgid "Schema – All In One Schema Rich Snippets"
msgstr "Schema – Todos en uno Schema Rich Snippets"

#: inc/widgets-manager/base/widgets-config.php:1079
msgid "Boost SEO with rich results & structured data."
msgstr "Mejora el SEO con resultados enriquecidos y datos estructurados."

#: inc/widgets-manager/class-widgets-loader.php:190
msgid "Ultimate Addons"
msgstr "Complementos definitivos"

#: inc/widgets-manager/class-widgets-loader.php:285
msgid "Invalid SVG Format, file not uploaded for security reasons!"
msgstr "¡Formato SVG no válido, archivo no subido por razones de seguridad!"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:111
msgid "Enable Scroll To Top"
msgstr "Habilitar desplazamiento hacia arriba"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:113
#: inc/widgets-manager/extensions/class-scroll-to-top.php:321
#: inc/widgets-manager/widgets/cart/cart.php:150
#: inc/widgets-manager/widgets/cart/cart.php:166
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:225
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:242
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:534
#: inc/widgets-manager/widgets/site-logo/site-logo.php:142
#: inc/widgets-manager/widgets/site-logo/site-logo.php:208
#: inc/widgets-manager/widgets/site-logo/site-logo.php:270
#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:243
#: build/main.js:52488
msgid "Yes"
msgstr "Sí"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:114
#: inc/widgets-manager/extensions/class-scroll-to-top.php:322
#: inc/widgets-manager/widgets/cart/cart.php:151
#: inc/widgets-manager/widgets/cart/cart.php:167
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:226
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:243
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:535
#: inc/widgets-manager/widgets/site-logo/site-logo.php:143
#: inc/widgets-manager/widgets/site-logo/site-logo.php:207
#: inc/widgets-manager/widgets/site-logo/site-logo.php:271
msgid "No"
msgstr "No"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:130
msgid "Responsive Support"
msgstr "Soporte responsivo"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:133
msgid "Show"
msgstr "Mostrar"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:134
msgid "Hide"
msgstr "Ocultar"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:179
msgid "Position"
msgstr "Posición"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:184
msgid "Bottom Left"
msgstr "Inferior Izquierda"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:185
msgid "Bottom Right"
msgstr "Inferior Derecha"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:197
msgid "Bottom"
msgstr "Inferior"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:229
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:159
#: inc/widgets-manager/widgets/cart/cart.php:185
#: inc/widgets-manager/widgets/copyright/copyright.php:134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:282
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:313
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:348
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:384
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:499
#: inc/widgets-manager/widgets/page-title/page-title.php:245
#: inc/widgets-manager/widgets/retina/retina.php:155
#: inc/widgets-manager/widgets/site-logo/site-logo.php:181
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:169
#: inc/widgets-manager/widgets/site-title/site-title.php:237
msgid "Left"
msgstr "Izquierda"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:263
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:167
#: inc/widgets-manager/widgets/cart/cart.php:193
#: inc/widgets-manager/widgets/copyright/copyright.php:142
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:290
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:314
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:356
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:392
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:507
#: inc/widgets-manager/widgets/page-title/page-title.php:253
#: inc/widgets-manager/widgets/retina/retina.php:163
#: inc/widgets-manager/widgets/site-logo/site-logo.php:189
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:177
#: inc/widgets-manager/widgets/site-title/site-title.php:245
msgid "Right"
msgstr "Derecha"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:296
#: inc/widgets-manager/widgets/post-info/post-info.php:580
msgid "Height"
msgstr "Altura"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:319
#: inc/widgets-manager/widgets/post-info/post-info.php:551
#: inc/widgets-manager/widgets/retina/retina.php:253
#: inc/widgets-manager/widgets/search-button/search-button.php:229
#: inc/widgets-manager/widgets/search-button/search-button.php:778
#: inc/widgets-manager/widgets/site-logo/site-logo.php:308
msgid "Width"
msgstr "Ancho"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:341
msgid "Z Index"
msgstr "Índice Z"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:363
#: inc/widgets-manager/widgets/retina/retina.php:419
#: inc/widgets-manager/widgets/retina/retina.php:453
#: inc/widgets-manager/widgets/site-logo/site-logo.php:483
#: inc/widgets-manager/widgets/site-logo/site-logo.php:517
msgid "Opacity"
msgstr "Opacidad"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:384
msgid "Media Type"
msgstr "Tipo de medio"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:389
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:414
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:204
#: inc/widgets-manager/widgets/cart/cart.php:113
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:566
#: inc/widgets-manager/widgets/page-title/page-title.php:353
#: inc/widgets-manager/widgets/post-info/post-info.php:366
#: inc/widgets-manager/widgets/post-info/post-info.php:638
#: inc/widgets-manager/widgets/search-button/search-button.php:153
#: inc/widgets-manager/widgets/search-button/search-button.php:803
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:137
#: inc/widgets-manager/widgets/site-title/site-title.php:140
#: inc/widgets-manager/widgets/site-title/site-title.php:345
msgid "Icon"
msgstr "Ícono"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:393
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:431
msgid "Image"
msgstr "Imagen"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:397
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:447
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:203
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:827
#: inc/widgets-manager/widgets/post-info/post-info.php:693
msgid "Text"
msgstr "Texto"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:462
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:512
#: inc/widgets-manager/widgets/cart/cart.php:239
#: inc/widgets-manager/widgets/page-title/page-title.php:224
#: inc/widgets-manager/widgets/post-info/post-info.php:259
#: inc/widgets-manager/widgets/post-info/post-info.php:659
#: inc/widgets-manager/widgets/search-button/search-button.php:176
#: inc/widgets-manager/widgets/search-button/search-button.php:894
#: inc/widgets-manager/widgets/site-title/site-title.php:199
msgid "Size"
msgstr "Tamaño"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:523
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:366
#: inc/widgets-manager/widgets/cart/cart.php:315
#: inc/widgets-manager/widgets/cart/cart.php:513
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:923
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1127
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1500
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1693
#: inc/widgets-manager/widgets/page-title/page-title.php:328
#: inc/widgets-manager/widgets/retina/retina.php:412
#: inc/widgets-manager/widgets/search-button/search-button.php:255
#: inc/widgets-manager/widgets/search-button/search-button.php:661
#: inc/widgets-manager/widgets/search-button/search-button.php:816
#: inc/widgets-manager/widgets/search-button/search-button.php:921
#: inc/widgets-manager/widgets/site-logo/site-logo.php:476
#: inc/widgets-manager/widgets/site-title/site-title.php:320
msgid "Normal"
msgstr "Normal"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:533
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:590
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:373
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:439
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:499
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:563
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1507
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1539
#: inc/widgets-manager/widgets/page-title/page-title.php:301
#: inc/widgets-manager/widgets/post-info/post-info.php:610
#: inc/widgets-manager/widgets/post-info/post-info.php:646
#: inc/widgets-manager/widgets/search-button/search-button.php:823
#: inc/widgets-manager/widgets/search-button/search-button.php:843
#: inc/widgets-manager/widgets/search-button/search-button.php:927
#: inc/widgets-manager/widgets/search-button/search-button.php:952
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:205
#: inc/widgets-manager/widgets/site-title/site-title.php:293
msgid "Color"
msgstr "Color"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:563
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:620
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:464
#: inc/widgets-manager/widgets/cart/cart.php:358
#: inc/widgets-manager/widgets/cart/cart.php:414
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1446
#: inc/widgets-manager/widgets/retina/retina.php:368
#: inc/widgets-manager/widgets/search-button/search-button.php:349
#: inc/widgets-manager/widgets/search-button/search-button.php:493
#: inc/widgets-manager/widgets/search-button/search-button.php:583
#: inc/widgets-manager/widgets/site-logo/site-logo.php:432
msgid "Border Color"
msgstr "Color del borde"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:580
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:432
#: inc/widgets-manager/widgets/cart/cart.php:371
#: inc/widgets-manager/widgets/cart/cart.php:550
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:962
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1170
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1532
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1760
#: inc/widgets-manager/widgets/retina/retina.php:447
#: inc/widgets-manager/widgets/search-button/search-button.php:701
#: inc/widgets-manager/widgets/search-button/search-button.php:836
#: inc/widgets-manager/widgets/search-button/search-button.php:945
#: inc/widgets-manager/widgets/site-logo/site-logo.php:511
msgid "Hover"
msgstr "Hover"

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:638
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:418
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:607
#: inc/widgets-manager/widgets/cart/cart.php:277
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1285
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1603
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1738
#: inc/widgets-manager/widgets/retina/retina.php:386
#: inc/widgets-manager/widgets/search-button/search-button.php:391
#: inc/widgets-manager/widgets/search-button/search-button.php:622
#: inc/widgets-manager/widgets/site-logo/site-logo.php:450
msgid "Border Radius"
msgstr "Radio del borde"

#: inc/widgets-manager/extensions/class-scroll-to-top.php:318
msgid "Disable Scroll to Top For This Page"
msgstr "Deshabilitar desplazamiento hacia arriba para esta página"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:118
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:324
#: inc/widgets-manager/widgets/post-info/post-info.php:100
#: inc/widgets-manager/widgets/site-title/site-title.php:111
msgid "General"
msgstr "General"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:125
msgid "Show Home"
msgstr "Mostrar inicio"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:127
#: inc/widgets-manager/widgets/post-info/post-info.php:494
msgid "On"
msgstr "Activado"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:128
#: inc/widgets-manager/widgets/post-info/post-info.php:493
msgid "Off"
msgstr "Desactivado"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:137
msgid "Home Icon"
msgstr "Ícono de inicio"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:154
#: inc/widgets-manager/widgets/cart/cart.php:181
#: inc/widgets-manager/widgets/copyright/copyright.php:130
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:278
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:495
#: inc/widgets-manager/widgets/page-title/page-title.php:241
#: inc/widgets-manager/widgets/post-info/post-info.php:466
#: inc/widgets-manager/widgets/retina/retina.php:151
#: inc/widgets-manager/widgets/site-logo/site-logo.php:177
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:165
#: inc/widgets-manager/widgets/site-title/site-title.php:233
msgid "Alignment"
msgstr "Alineación"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:163
#: inc/widgets-manager/widgets/cart/cart.php:189
#: inc/widgets-manager/widgets/copyright/copyright.php:138
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:286
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:352
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:388
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:503
#: inc/widgets-manager/widgets/page-title/page-title.php:249
#: inc/widgets-manager/widgets/post-info/post-info.php:474
#: inc/widgets-manager/widgets/retina/retina.php:159
#: inc/widgets-manager/widgets/site-logo/site-logo.php:185
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:173
#: inc/widgets-manager/widgets/site-title/site-title.php:241
msgid "Center"
msgstr "Centro"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:192
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:212
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:224
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:491
#: inc/widgets-manager/widgets/post-info/post-info.php:491
msgid "Separator"
msgstr "Separador"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:199
msgid "Separator Type"
msgstr "Tipo de separador"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:214
msgid "»"
msgstr "»"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:265
msgid "Display Text"
msgstr "Texto de visualización"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:272
msgid "Home Page"
msgstr "Página de inicio"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:274
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:658
msgid "Home"
msgstr "Inicio"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:287
msgid "Search results for:"
msgstr "Resultados de búsqueda para:"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:300
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:661
msgid "Error 404: Page not found"
msgstr "Error 404: Página no encontrada"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:332
msgid "Spacing between Items"
msgstr "Espaciado entre elementos"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:351
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:619
#: inc/widgets-manager/widgets/cart/cart.php:297
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1678
#: inc/widgets-manager/widgets/retina/retina.php:572
#: inc/widgets-manager/widgets/site-logo/site-logo.php:637
msgid "Padding"
msgstr "Relleno"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:386
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:452
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:575
#: inc/widgets-manager/widgets/cart/cart.php:347
#: inc/widgets-manager/widgets/cart/cart.php:403
#: inc/widgets-manager/widgets/cart/cart.php:534
#: inc/widgets-manager/widgets/cart/cart.php:571
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:803
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:945
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:987
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1050
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1151
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1194
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1237
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1519
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1552
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1713
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1779
#: inc/widgets-manager/widgets/retina/retina.php:542
#: inc/widgets-manager/widgets/search-button/search-button.php:300
#: inc/widgets-manager/widgets/search-button/search-button.php:460
#: inc/widgets-manager/widgets/search-button/search-button.php:527
#: inc/widgets-manager/widgets/search-button/search-button.php:719
#: inc/widgets-manager/widgets/site-logo/site-logo.php:380
#: inc/widgets-manager/widgets/site-logo/site-logo.php:607
msgid "Background Color"
msgstr "Color de fondo"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:399
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:532
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:588
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1668
msgid "Typography"
msgstr "Tipografía"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:408
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:597
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1730
msgid "Border"
msgstr "Borde"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:555
msgid "Current Item"
msgstr "Elemento actual"

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:662
msgid "Search results for: "
msgstr "Resultados de búsqueda para:"

#: inc/widgets-manager/widgets/cart/cart.php:93
#: inc/widgets-manager/widgets/cart/cart.php:218
msgid "Menu Cart"
msgstr "Carrito de Menú"

#: inc/widgets-manager/widgets/cart/cart.php:100
#: inc/widgets-manager/widgets/post-info/post-info.php:130
msgid "Type"
msgstr "Tipo"

#: inc/widgets-manager/widgets/cart/cart.php:104
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:210
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:436
#: inc/widgets-manager/widgets/page-title/page-title.php:179
#: inc/widgets-manager/widgets/page-title/page-title.php:228
#: inc/widgets-manager/widgets/post-info/post-info.php:116
#: inc/widgets-manager/widgets/post-info/post-info.php:370
#: inc/widgets-manager/widgets/site-logo/site-logo.php:238
#: inc/widgets-manager/widgets/site-logo/site-logo.php:269
#: inc/widgets-manager/widgets/site-title/site-title.php:172
#: inc/widgets-manager/widgets/site-title/site-title.php:203
msgid "Default"
msgstr "Predeterminado"

#: inc/widgets-manager/widgets/cart/cart.php:105
#: inc/widgets-manager/widgets/post-info/post-info.php:139
#: inc/widgets-manager/widgets/post-info/post-info.php:156
#: inc/widgets-manager/widgets/post-info/post-info.php:194
#: inc/widgets-manager/widgets/post-info/post-info.php:325
#: inc/widgets-manager/widgets/post-info/post-info.php:371
msgid "Custom"
msgstr "Personalizado"

#: inc/widgets-manager/widgets/cart/cart.php:116
msgid "Bag Light"
msgstr "Bolsa Ligera"

#: inc/widgets-manager/widgets/cart/cart.php:117
msgid "Bag Medium"
msgstr "Bolsa Mediana"

#: inc/widgets-manager/widgets/cart/cart.php:118
msgid "Bag Solid"
msgstr "Bolsa Sólida"

#: inc/widgets-manager/widgets/cart/cart.php:131
#: inc/widgets-manager/widgets/cart/cart.php:474
msgid "Items Count"
msgstr "Conteo de Artículos"

#: inc/widgets-manager/widgets/cart/cart.php:134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:482
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:822
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1430
#: inc/widgets-manager/widgets/page-title/page-title.php:180
#: inc/widgets-manager/widgets/post-info/post-info.php:369
#: inc/widgets-manager/widgets/retina/retina.php:181
#: inc/widgets-manager/widgets/retina/retina.php:212
#: inc/widgets-manager/widgets/retina/retina.php:332
#: inc/widgets-manager/widgets/search-button/search-button.php:331
#: inc/widgets-manager/widgets/search-button/search-button.php:565
#: inc/widgets-manager/widgets/site-logo/site-logo.php:239
#: inc/widgets-manager/widgets/site-logo/site-logo.php:396
msgid "None"
msgstr "Ninguno"

#: inc/widgets-manager/widgets/cart/cart.php:135
msgid "Bubble"
msgstr "Burbuja"

#: inc/widgets-manager/widgets/cart/cart.php:148
msgid "Show Total Price"
msgstr "Mostrar Precio Total"

#: inc/widgets-manager/widgets/cart/cart.php:164
msgid "Hide Empty"
msgstr "Ocultar Vacío"

#: inc/widgets-manager/widgets/cart/cart.php:170
msgid "This will hide the items count until the cart is empty"
msgstr "Esto ocultará el conteo de artículos hasta que el carrito esté vacío"

#: inc/widgets-manager/widgets/cart/cart.php:258
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1463
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1586
#: inc/widgets-manager/widgets/retina/retina.php:346
#: inc/widgets-manager/widgets/search-button/search-button.php:368
#: inc/widgets-manager/widgets/search-button/search-button.php:599
#: inc/widgets-manager/widgets/site-logo/site-logo.php:410
msgid "Border Width"
msgstr "Ancho del Borde"

#: inc/widgets-manager/widgets/cart/cart.php:322
#: inc/widgets-manager/widgets/cart/cart.php:378
#: inc/widgets-manager/widgets/cart/cart.php:520
#: inc/widgets-manager/widgets/cart/cart.php:557
#: inc/widgets-manager/widgets/copyright/copyright.php:156
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:930
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:969
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1037
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1134
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1177
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1220
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1700
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1767
#: inc/widgets-manager/widgets/post-info/post-info.php:722
#: inc/widgets-manager/widgets/retina/retina.php:527
#: inc/widgets-manager/widgets/search-button/search-button.php:265
#: inc/widgets-manager/widgets/search-button/search-button.php:428
#: inc/widgets-manager/widgets/search-button/search-button.php:512
#: inc/widgets-manager/widgets/site-logo/site-logo.php:592
msgid "Text Color"
msgstr "Color del Texto"

#: inc/widgets-manager/widgets/cart/cart.php:333
#: inc/widgets-manager/widgets/cart/cart.php:389
#: inc/widgets-manager/widgets/page-title/page-title.php:364
#: inc/widgets-manager/widgets/search-button/search-button.php:668
#: inc/widgets-manager/widgets/search-button/search-button.php:708
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:221
#: inc/widgets-manager/widgets/site-title/site-title.php:355
msgid "Icon Color"
msgstr "Color del Icono"

#: inc/widgets-manager/widgets/cart/cart.php:428
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1567
#: inc/widgets-manager/widgets/search-button/search-button.php:751
#: inc/widgets-manager/widgets/search-button/search-button.php:858
msgid "Icon Size"
msgstr "Tamaño del Icono"

#: inc/widgets-manager/widgets/cart/cart.php:450
#: inc/widgets-manager/widgets/page-title/page-title.php:156
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:146
#: inc/widgets-manager/widgets/site-title/site-title.php:149
msgid "Icon Spacing"
msgstr "Espaciado del Icono"

#: inc/widgets-manager/widgets/cart/cart.php:487
msgid "Distance"
msgstr "Distancia"

#: inc/widgets-manager/widgets/copyright/copyright.php:109
msgid "Copyright Text"
msgstr "Texto de Copyright"

#: inc/widgets-manager/widgets/copyright/copyright.php:114
msgid "Copyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]"
msgstr "Copyright © [hfe_current_year] [hfe_site_title] | Desarrollado por [hfe_site_title]"

#: inc/widgets-manager/widgets/copyright/copyright.php:121
#: inc/widgets-manager/widgets/page-title/page-title.php:175
#: inc/widgets-manager/widgets/page-title/page-title.php:189
#: inc/widgets-manager/widgets/post-info/post-info.php:340
#: inc/widgets-manager/widgets/retina/retina.php:208
#: inc/widgets-manager/widgets/retina/retina.php:221
#: inc/widgets-manager/widgets/site-logo/site-logo.php:234
#: inc/widgets-manager/widgets/site-logo/site-logo.php:249
#: inc/widgets-manager/widgets/site-title/site-title.php:168
#: inc/widgets-manager/widgets/site-title/site-title.php:181
msgid "Link"
msgstr "Enlace"

#: inc/widgets-manager/widgets/copyright/copyright.php:123
#: inc/widgets-manager/widgets/page-title/page-title.php:191
#: inc/widgets-manager/widgets/retina/retina.php:226
#: inc/widgets-manager/widgets/site-logo/site-logo.php:254
#: inc/widgets-manager/widgets/site-title/site-title.php:183
msgid "https://your-link.com"
msgstr "https://your-link.com"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:173
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:183
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:2013
msgid "Menu"
msgstr "Me"

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:189
#. translators: %s Nav menu URL
msgid "Go to the <a href=\"%s\" target=\"_blank\">Menus screen</a> to manage your menus."
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:198
#. translators: %s Nav menu URL
msgid ""
"<strong>There are no menus in your site.</strong><br>Go to the <a href=\"%s\" target=\"_blank\">Menus screen</a> to "
"create one."
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:207
msgid "Last Menu Item"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:211
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1656
#: inc/widgets-manager/widgets/search-button/search-button.php:648
msgid "Button"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:223
msgid "Enable Schema Support"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:240
msgid "Hide + & - Sign"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:256
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:263
#: inc/widgets-manager/widgets/post-info/post-info.php:107
#: inc/widgets-manager/widgets/search-button/search-button.php:148
msgid "Layout"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:267
msgid "Horizontal"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:268
msgid "Vertical"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:269
msgid "Expanded"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:270
msgid "Flyout"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:294
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:396
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:181
#: inc/widgets-manager/widgets/site-title/site-title.php:249
msgid "Justify"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:309
msgid "Flyout Orientation"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:325
msgid "Appear Effect"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:330
msgid "Slide"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:331
msgid "Push"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:343
msgid "Hamburger Align"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:380
msgid "Menu Items Align"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:417
msgid "Submenu Icon"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:421
msgid "Arrows"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:422
msgid "Plus Sign"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:423
msgid "Classic"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:432
msgid "Submenu Animation"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:437
msgid "Slide Up"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:449
msgid "Action On Menu Click"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:452
msgid "For Horizontal layout, this will affect on the selected breakpoint"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:454
msgid "Open Submenu"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:455
msgid "Redirect To Self Link"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:465
msgid "Responsive"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:476
msgid "Breakpoint"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:480
msgid "Mobile (768px >)"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:481
msgid "Tablet (1025px >)"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:512
msgid "This is the alignement of menu icon on selected responsive breakpoints."
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:531
msgid "Full Width"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:532
msgid "Enable this option to stretch the Sub Menu to Full Width."
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:550
msgid "Menu Icon"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:581
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:597
#: inc/widgets-manager/widgets/search-button/search-button.php:883
msgid "Close Icon"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:623
msgid "Main Menu"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:634
msgid "Flyout Box Width"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:662
msgid "Flyout Box Padding"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:686
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1345
msgid "Horizontal Padding"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:712
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1368
msgid "Vertical Padding"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:734
#: inc/widgets-manager/widgets/post-info/post-info.php:446
msgid "Space Between"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:761
msgid "Row Spacing"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:782
msgid "Menu Item Top Spacing"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:818
msgid "Link Hover Effect"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:823
msgid "Underline"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:824
msgid "Overline"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:825
msgid "Double Line"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:826
msgid "Framed"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:838
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:880
msgid "Animation"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:859
msgid "Frame Animation"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1005
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1066
msgid "Link Hover Effect Color"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1102
msgid "Dropdown"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1110
msgid "<b>Note:</b> On desktop, below style options will apply to the submenu. On mobile, this will apply to the entire menu."
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1320
msgid "Dropdown Width (px)"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1394
msgid "Top Distance"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1416
msgid "Divider"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1425
#: inc/widgets-manager/widgets/retina/retina.php:327
#: inc/widgets-manager/widgets/search-button/search-button.php:326
#: inc/widgets-manager/widgets/search-button/search-button.php:560
#: inc/widgets-manager/widgets/site-logo/site-logo.php:391
msgid "Border Style"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1431
#: inc/widgets-manager/widgets/post-info/post-info.php:508
#: inc/widgets-manager/widgets/retina/retina.php:333
#: inc/widgets-manager/widgets/search-button/search-button.php:332
#: inc/widgets-manager/widgets/search-button/search-button.php:566
#: inc/widgets-manager/widgets/site-logo/site-logo.php:397
msgid "Solid"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1432
#: inc/widgets-manager/widgets/post-info/post-info.php:509
#: inc/widgets-manager/widgets/retina/retina.php:334
#: inc/widgets-manager/widgets/search-button/search-button.php:333
#: inc/widgets-manager/widgets/search-button/search-button.php:567
#: inc/widgets-manager/widgets/site-logo/site-logo.php:398
msgid "Double"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1433
#: inc/widgets-manager/widgets/post-info/post-info.php:510
#: inc/widgets-manager/widgets/retina/retina.php:335
#: inc/widgets-manager/widgets/search-button/search-button.php:334
#: inc/widgets-manager/widgets/search-button/search-button.php:568
#: inc/widgets-manager/widgets/site-logo/site-logo.php:399
msgid "Dotted"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1434
#: inc/widgets-manager/widgets/post-info/post-info.php:511
#: inc/widgets-manager/widgets/retina/retina.php:336
#: inc/widgets-manager/widgets/search-button/search-button.php:335
#: inc/widgets-manager/widgets/search-button/search-button.php:569
#: inc/widgets-manager/widgets/site-logo/site-logo.php:400
msgid "Dashed"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1490
msgid "Menu Trigger & Close Icon"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1616
msgid "Close Icon Color"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1634
msgid "Close Icon Size"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1795
msgid "Border Hover Color"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:108
#: inc/widgets-manager/widgets/page-title/page-title.php:282
#: inc/widgets-manager/widgets/site-title/site-title.php:276
msgid "Title"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:117
#. translators: %1$s doc link
msgid "<b>Note:</b> Archive page title will be visible on frontend."
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:125
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:113
#: inc/widgets-manager/widgets/site-title/site-title.php:118
msgid "Before Title Text"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:136
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:125
#: inc/widgets-manager/widgets/site-title/site-title.php:129
msgid "After Title Text"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:147
msgid "Select Icon"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:178
#: inc/widgets-manager/widgets/post-info/post-info.php:352
#: inc/widgets-manager/widgets/retina/retina.php:213
#: inc/widgets-manager/widgets/site-logo/site-logo.php:241
#: inc/widgets-manager/widgets/site-title/site-title.php:171
msgid "Custom URL"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:207
#: inc/widgets-manager/widgets/site-title/site-title.php:216
msgid "HTML Tag"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:210
#: inc/widgets-manager/widgets/site-title/site-title.php:219
msgid "H1"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:211
#: inc/widgets-manager/widgets/site-title/site-title.php:220
msgid "H2"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:212
#: inc/widgets-manager/widgets/site-title/site-title.php:221
msgid "H3"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:213
#: inc/widgets-manager/widgets/site-title/site-title.php:222
msgid "H4"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:214
#: inc/widgets-manager/widgets/site-title/site-title.php:223
msgid "H5"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:215
#: inc/widgets-manager/widgets/site-title/site-title.php:224
msgid "H6"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:229
#: inc/widgets-manager/widgets/site-title/site-title.php:204
msgid "Small"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:230
#: inc/widgets-manager/widgets/site-title/site-title.php:205
msgid "Medium"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:231
#: inc/widgets-manager/widgets/site-title/site-title.php:206
msgid "Large"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:232
#: inc/widgets-manager/widgets/site-title/site-title.php:207
msgid "XL"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:233
#: inc/widgets-manager/widgets/site-title/site-title.php:208
msgid "XXL"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:257
msgid "Justified"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:325
#: inc/widgets-manager/widgets/site-title/site-title.php:317
msgid "Blend Mode"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:382
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:239
#: inc/widgets-manager/widgets/site-title/site-title.php:373
msgid "Icon Hover Color"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:112
msgid "Inline"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:134
msgid "Author"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:135
msgid "Time"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:137
msgid "Terms"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:138
#: inc/widgets-manager/widgets/post-info/post-info.php:311
msgid "Comments"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:147
msgid "Date Format"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:168
msgid "Custom Date Format"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:177
#: inc/widgets-manager/widgets/post-info/post-info.php:214
#. translators: %s: Allowed data letters (see: http://php.net/manual/en/function.date.php).
#. translators: %s: Allowed time letters (see: http://php.net/manual/en/function.time.php).
msgid "Use the letters: %s"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:186
msgid "Time Format"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:204
msgid "Custom Time Format"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:223
msgid "Taxonomy"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:237
msgid "Before"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:248
msgid "Avatar"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:273
msgid "Custom Format"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:285
#: inc/widgets-manager/widgets/post-info/post-info.php:287
#: inc/widgets-manager/widgets/post-info/post-info.php:904
msgid "No Comments"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:298
#: inc/widgets-manager/widgets/post-info/post-info.php:300
#: inc/widgets-manager/widgets/post-info/post-info.php:905
msgid "One Comment"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:314
#: inc/widgets-manager/widgets/post-info/post-info.php:907
#. translators: %s: Number of comments.
msgid "%s Comments"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:383
msgid "Choose Icon"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:439
msgid "List Items"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:470
msgid "Start"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:478
msgid "End"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:505
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:106
msgid "Style"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:527
msgid "Weight"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:701
msgid "Spacing between Icon & Text"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:759
msgid "Choose"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:926
msgid "%s comment"
msgid_plural "%s comments"
msgstr[0] ""
msgstr[1] ""

#: inc/widgets-manager/widgets/retina/retina.php:117
msgid "Choose Default Image"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:130
msgid "Choose Retina Image"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:144
#: inc/widgets-manager/widgets/site-logo/site-logo.php:170
msgid "Image Size"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:178
#: inc/widgets-manager/widgets/retina/retina.php:516
#: inc/widgets-manager/widgets/site-logo/site-logo.php:204
#: inc/widgets-manager/widgets/site-logo/site-logo.php:581
msgid "Caption"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:182
#: inc/widgets-manager/widgets/retina/retina.php:191
#: inc/widgets-manager/widgets/site-logo/site-logo.php:217
msgid "Custom Caption"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:194
msgid "Enter your image caption"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:290
#: inc/widgets-manager/widgets/site-logo/site-logo.php:344
msgid "Max Width"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:479
#: inc/widgets-manager/widgets/site-logo/site-logo.php:559
msgid "Hover Animation"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:486
#: inc/widgets-manager/widgets/site-logo/site-logo.php:534
msgid "Transition Duration"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:584
msgid "Caption Top Spacing"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:619
msgid "Helpful Information"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:628
#. translators: %1$s doc link
msgid "%1$s Getting started article » %2$s"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:141
msgid "Search Box"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:152
msgid "Input Box"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:154
msgid "Input Box With Button"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:164
msgid "Placeholder"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:166
msgid "Type & Hit Enter"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:210
msgid "Input"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:282
#: inc/widgets-manager/widgets/search-button/search-button.php:443
msgid "Placeholder Color"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:418
msgid "Focus"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:681
#: inc/widgets-manager/widgets/search-button/search-button.php:734
msgid "Background"
msgstr ""

#: inc/widgets-manager/widgets/site-logo/site-logo.php:140
msgid "Custom Image"
msgstr "Imagen personalizada"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:152
msgid "Add Image"
msgstr "Agregar imagen"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:220
msgid "Enter caption"
msgstr "Ingrese el pie de foto"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:240
msgid "Media File"
msgstr "Archivo multimedia"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:265
msgid "Lightbox"
msgstr "Lightbox"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:282
msgid "View"
msgstr "Ver"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:300
msgid "Site logo"
msgstr "Logo del sitio"

#: inc/widgets-manager/widgets/site-logo/site-logo.php:649
msgid "Spacing"
msgstr "Espaciado"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:9
#: build/main.js:54247
msgid "Essentials"
msgstr "Esenciales"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:11
#: build/main.js:54249
msgid "White Label Option"
msgstr "Opción de etiqueta blanca"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:12
#: build/main.js:54250
msgid "24/7 Premium Support"
msgstr "Soporte premium 24/7"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:13
#: build/main.js:54251
msgid "Cross-Domain Copy-Paste"
msgstr "Copiar y pegar entre dominios"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:17
#: build/main.js:54255
msgid "Dynamic Header & Footer Widgets"
msgstr "Widgets dinámicos de encabezado y pie de página"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:32
#: build/main.js:54270
msgid "Creative & Advanced Design Widgets"
msgstr "Widgets de diseño creativos y avanzados"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:37
#: build/main.js:54275
msgid "Multi-Button"
msgstr "Multi-botón"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:38
#: build/main.js:54276
msgid "Image Hotspots"
msgstr "Puntos calientes de imagen"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:42
#: build/main.js:54280
msgid "Content & Media Widgets"
msgstr "Widgets de contenido y multimedia"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:44
#: build/main.js:54282
msgid "Content Toggle Button"
msgstr "Botón de alternancia de contenido"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:50
#: build/main.js:54288
msgid "Before & After Slider"
msgstr "Deslizador de antes y después"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:53
#: build/main.js:54291
msgid "Conditional Display"
msgstr "Visualización condicional"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:55
#: build/main.js:54293
msgid "User Registeration Form"
msgstr "Formulario de registro de usuario"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:59
#: build/main.js:54297
msgid "Marketing & Engagement Widgets"
msgstr "Widgets de marketing y compromiso"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:62
#: build/main.js:54300
msgid "Pricing Table"
msgstr "Tabla de precios"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:70
#: build/main.js:54308
msgid "E-Commerce Integration"
msgstr "Integración de comercio electrónico"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:72
#: build/main.js:54310
msgid "WooCommerce: Add to Cart"
msgstr "WooCommerce: Agregar al carrito"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:73
#: build/main.js:54311
msgid "WooCommerce: Product Category"
msgstr "WooCommerce: Categoría de producto"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:74
#: build/main.js:54312
msgid "WooCommerce: Mini Cart"
msgstr "WooCommerce: Mini carrito"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:75
#: build/main.js:54313
msgid "WooCommerce: Product"
msgstr "WooCommerce: Producto"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:76
#: build/main.js:54314
msgid "WooCommerce: Checkout"
msgstr "WooCommerce: Pago"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:80
#: build/main.js:54318
msgid "Forms Integration"
msgstr "Integración de formularios"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:82
#: build/main.js:54320
msgid "Contact Form 7"
msgstr "Formulario de contacto 7"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:83
#: build/main.js:54321
msgid "Gravity Forms"
msgstr "Gravity Forms"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:84
#: build/main.js:54322
msgid "WPForms"
msgstr "WPForms"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:85
#: build/main.js:54323
msgid "Fluent Forms"
msgstr "Formas fluidas"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:89
#: build/main.js:54327
msgid "SEO Widgets"
msgstr "Widgets de SEO"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:91
#: build/main.js:54329
msgid "FAQ with Schema"
msgstr "FAQ con esquema"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:92
#: build/main.js:54330
msgid "How-To"
msgstr "Cómo hacer"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:98
#: build/main.js:54336
msgid "Creative Features"
msgstr "Características creativas"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:102
#: build/main.js:54340
msgid "Particles"
msgstr "Partículas"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:108
#: build/main.js:54346
msgid "Social Media Integration"
msgstr "Integración de redes sociales"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:116
#: build/main.js:54354
msgid "Advanced Features"
msgstr "Características avanzadas"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:120
#: build/main.js:54358
msgid "Post Layout"
msgstr "Diseño de publicaciones"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:121
#: build/main.js:54359
msgid "Off Canvas"
msgstr "Fuera de canvas"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:168
#: build/main.js:54406
msgid "Free Vs Pro"
msgstr "Gratis vs Pro"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:171
#: build/main.js:54409
msgid "Ultimate Addons for Elementor Pro offers 50+ widgets and features!"
msgstr "¡Ultimate Addons para Elementor Pro ofrece más de 50 widgets y características!"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:174
#: build/main.js:54412
msgid "Compare the popular features/widgets to find the best option for your website."
msgstr "Compara las características/widgets populares para encontrar la mejor opción para tu sitio web."

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:198
#: src/Components/Compare/UltimateCompare.jsx:109
#: src/Components/Dashboard/MyAccount.jsx:53
#: src/Components/Dashboard/UltimateFeatures.js:116
#: src/Components/Widgets/UltimateWidgets.jsx:116
#: build/main.js:52189
#: build/main.js:52786
#: build/main.js:54051
#: build/main.js:54436
#: build/main.js:54585
msgid "Upgrade Now"
msgstr "Actualizar ahora"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:218
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:200
#: src/Components/NavMenu.js:233
#: src/Components/NavMenu.js:253
#: build/main.js:51108
#: build/main.js:51128
#: build/main.js:52445
#: build/main.js:54456
msgid "Free"
msgstr "Gratis"

#: build/main.js:172
#: src/Components/Compare/FreevsPro.jsx:224
#: build/main.js:54462
msgid "Pro"
msgstr "Pro"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:22
#: src/Components/Dashboard/UltimateFeatures.js:23
#: src/Components/Widgets/UltimateWidgets.jsx:23
#: build/main.js:52096
#: build/main.js:52693
#: build/main.js:54498
msgid "Post Layouts"
msgstr "Diseños de publicaciones"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:32
#: src/Components/Dashboard/UltimateFeatures.js:33
#: src/Components/Widgets/UltimateWidgets.jsx:33
#: build/main.js:52106
#: build/main.js:52703
#: build/main.js:54508
msgid "Pricing Cards"
msgstr "Tarjetas de precios"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:37
#: src/Components/Dashboard/UltimateFeatures.js:38
#: src/Components/Widgets/UltimateWidgets.jsx:38
#: build/main.js:52111
#: build/main.js:52708
#: build/main.js:54513
msgid "Form Stylers and more..."
msgstr "Estilizadores de formularios y más..."

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:55
#: src/Components/Dashboard/UltimateFeatures.js:135
#: src/Components/Widgets/UltimateWidgets.jsx:54
#: build/main.js:52208
#: build/main.js:52724
#: build/main.js:54531
msgid "Column Showcase"
msgstr "Vitrina de columnas"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:68
#: src/Components/Dashboard/UltimateFeatures.js:62
#: src/Components/Widgets/UltimateWidgets.jsx:67
#: build/main.js:52135
#: build/main.js:52737
#: build/main.js:54544
msgid "Unlock Ultimate Features"
msgstr "Desbloquear características definitivas"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:76
#: src/Components/Dashboard/UltimateFeatures.js:73
#: src/Components/Widgets/UltimateWidgets.jsx:75
#: build/main.js:52146
#: build/main.js:52745
#: build/main.js:54552
msgid "Create Stunning Designs with the Pro Version!"
msgstr "¡Crea diseños impresionantes con la versión Pro!"

#: build/main.js:2
#: build/main.js:172
#: src/Components/Compare/UltimateCompare.jsx:80
#: src/Components/Dashboard/UltimateFeatures.js:80
#: src/Components/Widgets/UltimateWidgets.jsx:82
#: build/main.js:52153
#: build/main.js:52752
#: build/main.js:54556
msgid "Get access to advanced widgets and features to create the website that stands out!"
msgstr "¡Obtén acceso a widgets y características avanzadas para crear un sitio web que destaque!"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsite.jsx:57
#: build/main.js:52568
msgid "Extend Your Website"
msgstr "Extiende tu sitio web"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:72
#: build/main.js:52317
msgid "Installing.."
msgstr "Instalando.."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:80
#: build/main.js:52325
msgid "Installed"
msgstr "Instalado"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:94
#: build/main.js:52339
msgid "Theme Installation failed, Please try again later."
msgstr "La instalación del tema falló, por favor intenta de nuevo más tarde."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:95
#: build/main.js:52340
msgid "Plugin Installation failed, Please try again later."
msgstr "La instalación del plugin falló, por favor intenta de nuevo más tarde."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:144
#: build/main.js:52389
msgid "Activating.."
msgstr "Activando.."

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:222
#: build/main.js:52467
msgid "Visit Site"
msgstr "Visitar sitio"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:234
#: build/main.js:52479
msgid "Activate Theme"
msgstr "Activar tema"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:238
#: build/main.js:52483
msgid "Are you sure you want to switch your current theme to Astra?"
msgstr "¿Estás seguro de que deseas cambiar tu tema actual a Astra?"

#: build/main.js:2
#: src/Components/Dashboard/ExtendWebsiteWidget.jsx:246
#: build/main.js:52491
msgid "Close"
msgstr "Cerrar"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:16
#: src/Components/Settings/Settings.jsx:29
#: build/main.js:54014
#: build/main.js:54089
msgid "My Account"
msgstr "Mi cuenta"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:30
#: build/main.js:54028
msgid "License Key"
msgstr "Clave de licencia"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:35
#: build/main.js:54033
msgid "Unlock Pro Features"
msgstr "Desbloquear características Pro"

#: build/main.js:172
#: src/Components/Dashboard/MyAccount.jsx:36
#: build/main.js:54034
msgid "Get access to advanced blocks and premium features."
msgstr "Obtén acceso a bloques avanzados y características premium."

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:20
#: build/main.js:51754
msgid "Quick Access"
msgstr "Acceso rápido"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:53
#: build/main.js:51787
msgid "Contact Us"
msgstr "Contáctanos"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:69
#: build/main.js:51803
msgid "Help Centre"
msgstr "Centro de ayuda"

#: build/main.js:2
#: src/Components/Dashboard/QuickAccess.js:85
#: build/main.js:51819
msgid "Request a Feature"
msgstr "Solicitar una característica"

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:64
#: build/main.js:51649
msgid "Build Websites 10x Faster with Templates"
msgstr "Construye sitios web 10 veces más rápido con plantillas"

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:70
#: build/main.js:51655
msgid "Choose from our professionally designed websites to build your site faster, with easy customization options."
msgstr ""
"Elige entre nuestros sitios web diseñados profesionalmente para construir tu sitio más rápido, con opciones de "
"personalización fáciles."

#: build/main.js:2
#: src/Components/Dashboard/TemplateSection.js:85
#: src/Components/Dashboard/TemplateSection.js:97
#: build/main.js:51670
#: build/main.js:51682
msgid "View Templates"
msgstr "Ver plantillas"

#: build/main.js:2
#: src/Components/Dashboard/UltimateFeatures.js:122
#: src/Components/Widgets/UltimateWidgets.jsx:119
#: build/main.js:52195
#: build/main.js:52789
msgid "Compare Free vs Pro"
msgstr "Comparar gratis vs pro"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:25
#: build/main.js:51926
msgid "Welcome to Ultimate Addons for Elementor!"
msgstr "¡Bienvenido a Ultimate Addons para Elementor!"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:29
#: build/main.js:51930
msgid ""
"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our "
"comprehensive range of free and premium widgets and features."
msgstr ""
"Estamos emocionados de ayudarte a potenciar tu experiencia de creación de sitios web. Diseña sitios web impresionantes "
"sin esfuerzo con nuestra amplia gama de widgets y características gratuitas y premium."

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:58
#: build/main.js:51959
msgid "Create Header/Footer"
msgstr "Crear encabezado/pie de página"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:86
#: build/main.js:51987
msgid "Create New Page"
msgstr "Crear nueva página"

#: build/main.js:2
#: src/Components/Dashboard/WelcomeContainer.js:115
#: build/main.js:52016
msgid "Read full guide"
msgstr "Leer guía completa"

#: build/main.js:2
#: src/Components/Dashboard/WidgetItem.jsx:132
#: build/main.js:51418
msgid "View Demo"
msgstr "Ver demostración"

#: build/main.js:2
#: src/Components/Dashboard/WidgetItem.jsx:145
#: build/main.js:51431
msgid "Read Documentation"
msgstr "Leer documentación"

#: build/main.js:2
#: src/Components/HeaderLine.js:16
#: build/main.js:51895
msgid "Formerly Elementor Header & Footer Builder"
msgstr "Anteriormente Constructor de encabezados y pies de página de Elementor"

#: build/main.js:2
#: src/Components/NavMenu.js:162
#: build/main.js:51037
msgid "Widgets"
msgstr "Widgets"

#: build/main.js:2
#: src/Components/NavMenu.js:173
#: build/main.js:51048
msgid "Templates"
msgstr ""

#: build/main.js:2
#: src/Components/NavMenu.js:193
#: build/main.js:51068
msgid "Free vs Pro"
msgstr ""

#: build/main.js:2
#: src/Components/NavMenu.js:220
#: build/main.js:51095
msgid "Get Pro"
msgstr "Obtener Pro"

#: build/main.js:2
#: src/Components/NavMenu.js:244
#: build/main.js:51119
msgid "Version"
msgstr "Versión"

#: build/main.js:2
#: src/Components/NavMenu.js:278
#: build/main.js:51153
msgid "Useful Resources"
msgstr "Recursos útiles"

#: build/main.js:2
#: src/Components/NavMenu.js:295
#: build/main.js:51170
msgid "Getting Started"
msgstr "Comenzando"

#: build/main.js:2
#: src/Components/NavMenu.js:308
#: build/main.js:51183
msgid "How to use widgets"
msgstr "Cómo usar widgets"

#: build/main.js:2
#: src/Components/NavMenu.js:321
#: build/main.js:51196
msgid "How to use features"
msgstr "Cómo usar características"

#: build/main.js:2
#: src/Components/NavMenu.js:334
#: build/main.js:51209
msgid "How to use templates"
msgstr "Cómo usar plantillas"

#: build/main.js:2
#: src/Components/NavMenu.js:347
#: build/main.js:51222
msgid "Contact us"
msgstr "Contáctanos"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:18
#: src/Components/Settings/Settings.jsx:25
#: src/Components/Settings/Settings.jsx:37
#: src/Components/Settings/Settings.jsx:44
#: src/Components/Settings/Settings.jsx:57
#: src/Components/Settings/Settings.jsx:64
#: build/main.js:54078
#: build/main.js:54085
#: build/main.js:54097
#: build/main.js:54104
#: build/main.js:54117
#: build/main.js:54124
msgid "Custom SVG"
msgstr "SVG personalizado"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:48
#: build/main.js:54108
msgid "Editor"
msgstr "Editor"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:68
#: build/main.js:54128
msgid "Utilities"
msgstr "Utilidades"

#: build/main.js:172
#: src/Components/Settings/Settings.jsx:69
#: src/Components/Settings/VersionControl.jsx:45
#: build/main.js:53896
#: build/main.js:54129
msgid "Version Control"
msgstr "Control de versiones"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:9
#: build/main.js:53684
msgid "Option 1 (Recommended)"
msgstr "Opción 1 (Recomendada)"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:10
#: src/Components/Settings/ThemeSupport.jsx:16
#: build/main.js:53685
#: build/main.js:53691
msgid ""
"This option will automatically replace your theme's header and footer files with custom templates from the plugin. It "
"works with most themes and is selected by default."
msgstr ""
"Esta opción reemplazará automáticamente los archivos de encabezado y pie de página de tu tema con plantillas "
"personalizadas del plugin. Funciona con la mayoría de los temas y está seleccionada por defecto."

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:15
#: build/main.js:53690
msgid "Option 2"
msgstr "Opción 2"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:63
#: build/main.js:53738
msgid "Settings saved successfully!"
msgstr "¡Configuraciones guardadas con éxito!"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:65
#: src/Components/Settings/ThemeSupport.jsx:68
#: build/main.js:53740
#: build/main.js:53743
msgid "Failed to save settings!"
msgstr "¡Error al guardar configuraciones!"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:95
#: build/main.js:53770
msgid "Select Option to Add Theme Support"
msgstr "Selecciona una opción para agregar soporte de tema"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:97
#: build/main.js:53772
msgid ""
"To ensure compatibility between the header/footer and your theme, please choose one of the following options to enable "
"theme support:"
msgstr ""
"Para asegurar la compatibilidad entre el encabezado/pie de página y tu tema, por favor elige una de las siguientes "
"opciones para habilitar el soporte de tema:"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:140
#: build/main.js:53815
msgid "Note:"
msgstr "Nota:"

#: build/main.js:172
#: src/Components/Settings/ThemeSupport.jsx:140
#: build/main.js:53815
msgid "If neither option works, please contact your theme author to add support for this plugin."
msgstr "Si ninguna opción funciona, por favor contacta al autor de tu tema para agregar soporte para este plugin."

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:66
#: build/main.js:53917
msgid "Experiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue."
msgstr "¿Tienes un problema con la versión actual? Vuelve a una versión anterior para ayudar a solucionar el problema."

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:112
#: src/Components/Settings/VersionControl.jsx:129
#: build/main.js:53963
#: build/main.js:53980
msgid "Rollback"
msgstr "Revertir"

#: build/main.js:172
#: src/Components/Settings/VersionControl.jsx:132
#: build/main.js:53983
msgid "Cancel"
msgstr "Cancelar"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:17
#: build/main.js:53145
msgid "250+ templates for every niche"
msgstr "250+ plantillas para cada nicho"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:22
#: build/main.js:53150
msgid "Modern, timeless designs"
msgstr "Diseños modernos y atemporales"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:27
#: build/main.js:53155
msgid "Full design flexibility for easy customization"
msgstr "Flexibilidad total de diseño para una fácil personalización"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:32
#: build/main.js:53160
msgid "100% responsive across all devices"
msgstr "100% responsivo en todos los dispositivos"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:65
#: src/Components/Templates/ExploreTemplates.jsx:94
#: build/main.js:53193
#: build/main.js:53222
msgid "Install Starter Templates"
msgstr "Instalar plantillas iniciales"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:65
#: src/Components/Templates/ExploreTemplates.jsx:167
#: build/main.js:53193
#: build/main.js:53295
msgid "Activate Starter Templates"
msgstr "Activar plantillas iniciales"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:81
#: build/main.js:53209
msgid "Installing Starter Templates..."
msgstr "Instalando plantillas iniciales..."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:90
#: build/main.js:53218
msgid "Installed Starter Templates"
msgstr "Plantillas iniciales instaladas"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:100
#: src/Components/Templates/ExploreTemplates.jsx:156
#: build/main.js:53228
#: build/main.js:53284
msgid "Activating Starter Templates..."
msgstr "Activando plantillas iniciales..."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:158
#: build/main.js:53286
msgid "Activated Starter Templates"
msgstr "Plantillas iniciales activadas"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:191
#: build/main.js:53319
msgid "Design Your Website in Minutes"
msgstr "Diseña tu sitio web en minutos"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:200
#: build/main.js:53328
msgid "Build your website faster using our prebuilt templates"
msgstr "Construye tu sitio web más rápido usando nuestras plantillas preconstruidas"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:205
#: build/main.js:53333
msgid ""
"Stop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize "
"and completely responsive. Explore hundreds of designs and bring your vision to life in no time."
msgstr ""
"Deja de construir tu sitio desde cero. Usa nuestras plantillas profesionales para tu impresionante sitio web. Es fácil "
"de personalizar y completamente responsivo. Explora cientos de diseños y da vida a tu visión en poco tiempo."

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:238
#: build/main.js:53366
msgid "Explore Templates"
msgstr "Explorar plantillas"

#: build/main.js:2
#: src/Components/Templates/ExploreTemplates.jsx:249
#: build/main.js:53377
msgid "Learn More"
msgstr "Aprender más"

#: src/Components/UpgradeNotice.jsx:33
msgid "Close Upgrade Notice"
msgstr "Cerrar aviso de actualización"

#: src/Components/UpgradeNotice.jsx:38
msgid "Unlock Ultimate Addons For Elementor!  "
msgstr "¡Desbloquea los complementos definitivos para Elementor!"

#: src/Components/UpgradeNotice.jsx:44
msgid "Get exclusive features and unbeatable performance.  "
msgstr "Obtén características exclusivas y un rendimiento inigualable."

#: src/Components/UpgradeNotice.jsx:53
msgid "Upgrade now"
msgstr "Actualiza ahora"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:140
#: build/main.js:52975
msgid "Widgets / Features"
msgstr "Widgets / Características"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:152
#: build/main.js:52987
msgid "Search..."
msgstr "Buscar..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:174
#: build/main.js:53009
msgid "Activating..."
msgstr "Activando..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:174
#: build/main.js:53009
msgid "Activate All"
msgstr "Activar todo"

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:185
#: build/main.js:53020
msgid "Deactivating..."
msgstr "Desactivando..."

#: build/main.js:2
#: src/Components/Widgets/Features/FeatureWidgets.jsx:185
#: build/main.js:53020
msgid "Deactivate All"
msgstr "Desactivar todo"

#: admin/class-hfe-addons-actions.php:87
msgid "Plugin slug is missing."
msgstr "Falta el slug del plugin."

#: admin/class-hfe-addons-actions.php:110
msgid "Plugin installation function not found."
msgstr "Función de instalación del plugin no encontrada."

#: admin/class-hfe-addons-actions.php:133
msgid "Theme slug is missing."
msgstr "Falta el slug del tema."

#: admin/class-hfe-addons-actions.php:156
msgid "Theme installation function not found."
msgstr "Función de instalación del tema no encontrada."

#: inc/class-hfe-settings-page.php:103
msgid "How likely are you to recommend Ultimate Addons for Elementor to your friends or colleagues?"
msgstr "¿Qué tan probable es que recomiendes los complementos definitivos para Elementor a tus amigos o colegas?"

#: inc/class-hfe-settings-page.php:105
msgid ""
"Could you please do us a favor and give us a 5-star rating on Trustpilot? It would help others choose Ultimate Addons "
"for Elementor with confidence. Thank you!"
msgstr ""
"¿Podrías hacernos un favor y darnos una calificación de 5 estrellas en Trustpilot? Ayudaría a otros a elegir los "
"complementos definitivos para Elementor con confianza. ¡Gracias!"

#: inc/class-hfe-settings-page.php:108
msgid "Thank you for your feedback"
msgstr "Gracias por tus comentarios"

#: inc/class-hfe-settings-page.php:109
msgid "We value your input. How can we improve your experience?"
msgstr "Valoramos su opinión. ¿Cómo podemos mejorar su experiencia?"

#: inc/widgets-manager/widgets/post-info/post-info.php:152
msgctxt "Date Format"
msgid "June 1, 2024 (F j, Y)"
msgstr "1 de junio de 2024 (j F, Y)"
PK���\�S8����%languages/header-footer-elementor.potnu�[���# Copyright (C) 2026 Brainstorm Force
# This file is distributed under the same license as the Ultimate Addons for Elementor (UAE) package.
msgid ""
msgstr ""
"Project-Id-Version: Ultimate Addons for Elementor (UAE) 2.8.7\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/header-footer-elementor\n"
"POT-Creation-Date: 2026-04-14 06:16:21+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2026-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-Country: United States\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: "
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
"X-Poedit-Basepath: ../\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-Bookmarks: \n"
"X-Textdomain-Support: yes\n"
"X-Generator: grunt-wp-i18n 1.0.3\n"

#: admin/bsf-analytics/class-bsf-analytics.php:270
#. translators: %s product name
msgid ""
"<strong>Help shape the future of %1$s.</strong><br><br>Share how you use "
"the plugin so we can build features that matter, fix issues faster, and "
"make smarter decisions."
msgstr ""

#: admin/bsf-analytics/class-bsf-analytics.php:276
msgid "This will be applicable for all sites from the network."
msgstr ""

#: admin/bsf-analytics/class-bsf-analytics.php:300
#. translators: %s usage doc link
msgid "Learn more."
msgstr ""

#: admin/bsf-analytics/class-bsf-analytics.php:310
msgid "Happy to help!"
msgstr ""

#: admin/bsf-analytics/class-bsf-analytics.php:321
msgid "Skip"
msgstr ""

#: admin/bsf-analytics/class-bsf-analytics.php:499
msgid "Usage Tracking"
msgstr ""

#: admin/bsf-analytics/class-bsf-analytics.php:544
#. translators: %s Product title
msgid ""
"Help improve %s by sharing non-sensitive usage data — like PHP version and "
"features used."
msgstr ""

#: admin/bsf-analytics/class-bsf-analytics.php:547
msgid " This will be applicable for all sites from the network."
msgstr ""

#: admin/bsf-analytics/class-bsf-analytics.php:552
msgid "Learn More."
msgstr ""

#: admin/bsf-analytics/classes/class-bsf-analytics-helper.php:28
msgid "Oops! Something went wrong. Please refresh the page and try again."
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:80
msgid "Quick Feedback"
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:83
msgid "If you have a moment, please share why you are deactivating the plugin."
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:105
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:403
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:428
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:238
#: inc/widgets-manager/widgets/cart/cart.php:147
#: inc/widgets-manager/widgets/infocard/infocard.php:206
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:600
#: inc/widgets-manager/widgets/page-title/page-title.php:366
#: inc/widgets-manager/widgets/post-info/post-info.php:400
#: inc/widgets-manager/widgets/post-info/post-info.php:672
#: inc/widgets-manager/widgets/search-button/search-button.php:166
#: inc/widgets-manager/widgets/search-button/search-button.php:816
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:150
#: inc/widgets-manager/widgets/site-title/site-title.php:153
#: inc/widgets-manager/widgets/site-title/site-title.php:358
msgid "Icon"
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:132
#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:307
msgid "Please tell us more details."
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:141
#. translators: %1$s: link html start, %2$s: link html end
msgid "Need help from our experts? %1$sClick here to contact us.%2$s"
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:152
msgid "Submit & Deactivate"
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:153
msgid "Skip & Deactivate"
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:222
msgid "Sorry, you are not allowed to do this operation."
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:235
msgid "Nonce validation failed"
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:282
msgid "This is a temporary deactivation for testing."
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:283
msgid "How can we assist you?"
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:288
msgid "The plugin isn't working properly."
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:289
msgid "Please tell us more about what went wrong?"
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:294
msgid "I found a better alternative plugin."
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:295
msgid "Could you please specify which plugin?"
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:300
msgid "It's missing a specific feature."
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:301
msgid "Please tell us more about the feature."
msgstr ""

#: admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:306
msgid "Other"
msgstr ""

#: admin/class-hfe-addons-actions.php:147
msgid "Plugin installation is disabled for you on this site."
msgstr ""

#: admin/class-hfe-addons-actions.php:154
msgid "Plugin slug is missing."
msgstr ""

#: admin/class-hfe-addons-actions.php:177
msgid "Plugin installation function not found."
msgstr ""

#: admin/class-hfe-addons-actions.php:197
msgid "Theme installation is disabled for you on this site."
msgstr ""

#: admin/class-hfe-addons-actions.php:204
msgid "Theme slug is missing."
msgstr ""

#: admin/class-hfe-addons-actions.php:227
msgid "Theme installation function not found."
msgstr ""

#: admin/class-hfe-addons-actions.php:240
#: admin/class-hfe-addons-actions.php:273
#: admin/class-hfe-addons-actions.php:306
#: admin/class-hfe-addons-actions.php:354
#: admin/class-hfe-addons-actions.php:387
#: admin/class-hfe-addons-actions.php:424
#: admin/class-hfe-addons-actions.php:553
#: admin/class-hfe-addons-actions.php:592
#: admin/class-hfe-addons-actions.php:629
#: admin/class-hfe-addons-actions.php:654
msgid "You do not have permission to perform this action."
msgstr ""

#: admin/class-hfe-addons-actions.php:365
#: admin/class-hfe-addons-actions.php:398
msgid "Invalid widget identifier."
msgstr ""

#: admin/class-hfe-addons-actions.php:499
msgid "Plugin activation is disabled for you on this site."
msgstr ""

#: admin/class-hfe-addons-actions.php:508
msgid "Plugin Activated."
msgstr ""

#: admin/class-hfe-addons-actions.php:519
msgid "Theme activation is disabled for you on this site."
msgstr ""

#: admin/class-hfe-addons-actions.php:528
msgid "Theme Activated."
msgstr ""

#: admin/class-hfe-addons-actions.php:535
msgid "Could not activate plugin. Please activate from the Plugins page."
msgstr ""

#: admin/class-hfe-addons-actions.php:537
msgid "Could not activate theme. Please activate from the Themes page."
msgstr ""

#: admin/class-hfe-addons-actions.php:562
msgid "Invalid compatibility option value."
msgstr ""

#: admin/class-hfe-addons-actions.php:573
#: admin/class-hfe-addons-actions.php:607
msgid "Settings saved successfully!"
msgstr ""

#: admin/class-hfe-addons-actions.php:576
#: admin/class-hfe-addons-actions.php:610
msgid "Unable to save settings."
msgstr ""

#: admin/class-hfe-addons-actions.php:601
msgid "Invalid analytics option value."
msgstr ""

#: admin/class-hfe-addons-actions.php:623
msgid "Security check failed."
msgstr ""

#: admin/class-hfe-addons-actions.php:635
msgid "Upgrade notice dismissed."
msgstr ""

#: admin/class-hfe-addons-actions.php:698
msgid "Onboarding analytics saved."
msgstr ""

#: admin/class-hfe-admin.php:108
msgid "Header Footer Builder"
msgstr ""

#: admin/class-hfe-admin.php:361
msgid "Important Notice:"
msgstr ""

#: admin/class-hfe-admin.php:365
msgid "Can't edit your header or footer?"
msgstr ""

#: admin/class-hfe-admin.php:366
msgid ""
"Try clearing your cache or resetting permalinks (Settings > Permalinks > "
"Save Changes)."
msgstr ""

#: admin/class-hfe-admin.php:367
msgid "Learn More"
msgstr ""

#: admin/class-hfe-admin.php:371
msgid "Flush Permalink"
msgstr ""

#: admin/class-hfe-admin.php:444 admin/class-hfe-admin.php:732
msgid "Display Rules"
msgstr ""

#: admin/class-hfe-admin.php:445
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:164
#: inc/widgets-manager/widgets/post-info/post-info.php:170
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:375
msgid "Date"
msgstr ""

#: admin/class-hfe-admin.php:535 admin/class-hfe-admin.php:536
#: admin/class-hfe-admin.php:537 admin/class-hfe-admin.php:538
msgid "Elementor Header & Footer Builder"
msgstr ""

#: admin/class-hfe-admin.php:539 admin/class-hfe-admin.php:540
msgid "Add New"
msgstr ""

#: admin/class-hfe-admin.php:541
msgid "New Template"
msgstr ""

#: admin/class-hfe-admin.php:542
msgid "Edit Template"
msgstr ""

#: admin/class-hfe-admin.php:543
msgid "View Template"
msgstr ""

#: admin/class-hfe-admin.php:544 inc/class-hfe-settings-page.php:501
msgid "View All"
msgstr ""

#: admin/class-hfe-admin.php:545
msgid "Search Templates"
msgstr ""

#: admin/class-hfe-admin.php:546
msgid "Parent Templates:"
msgstr ""

#: admin/class-hfe-admin.php:547
msgid "No Templates found."
msgstr ""

#: admin/class-hfe-admin.php:548
msgid "No Templates found in Trash."
msgstr ""

#: admin/class-hfe-admin.php:596 admin/class-hfe-admin.php:597
msgid "Create New"
msgstr ""

#: admin/class-hfe-admin.php:606
msgid "Header/Footer Builder"
msgstr ""

#: admin/class-hfe-admin.php:607
msgid "Header & Footer"
msgstr ""

#: admin/class-hfe-admin.php:636
msgid "Elementor Header & Footer Builder Options"
msgstr ""

#: admin/class-hfe-admin.php:665
msgid "Type of Template"
msgstr ""

#: admin/class-hfe-admin.php:669
msgid "Select Option"
msgstr ""

#: admin/class-hfe-admin.php:670
msgid "Header"
msgstr ""

#: admin/class-hfe-admin.php:671
msgid "Before Footer"
msgstr ""

#: admin/class-hfe-admin.php:672
msgid "Footer"
msgstr ""

#: admin/class-hfe-admin.php:673
msgid "Custom Block"
msgstr ""

#: admin/class-hfe-admin.php:681 admin/class-hfe-admin.php:931
msgid "Shortcode"
msgstr ""

#: admin/class-hfe-admin.php:682
msgid ""
"Copy this shortcode and paste it into your post, page, or text widget "
"content."
msgstr ""

#: admin/class-hfe-admin.php:694
msgid "Enable Layout for Elementor Canvas Template?"
msgstr ""

#: admin/class-hfe-admin.php:696
msgid ""
"Enabling this option will display this layout on pages using Elementor "
"Canvas Template."
msgstr ""

#: admin/class-hfe-admin.php:723
#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:125
msgid "Display On"
msgstr ""

#: admin/class-hfe-admin.php:725
msgid "Add locations for where this template should appear."
msgstr ""

#: admin/class-hfe-admin.php:736
msgid "Add Display Rule"
msgstr ""

#: admin/class-hfe-admin.php:745
msgid "Do Not Display On"
msgstr ""

#: admin/class-hfe-admin.php:747
msgid "Add locations for where this template should not appear."
msgstr ""

#: admin/class-hfe-admin.php:754
msgid "Exclude On"
msgstr ""

#: admin/class-hfe-admin.php:757
#: inc/lib/target-rule/class-astra-target-rules-fields.php:851
msgid "Add Exclusion Rule"
msgstr ""

#: admin/class-hfe-admin.php:767
msgid "User Roles"
msgstr ""

#: admin/class-hfe-admin.php:768
msgid "Display custom template based on user role."
msgstr ""

#: admin/class-hfe-admin.php:775
#: inc/widgets-manager/widgets/counter/counter.php:151
msgid "Users"
msgstr ""

#: admin/class-hfe-admin.php:778
msgid "Add User Rule"
msgstr ""

#: admin/class-hfe-admin.php:859
#. Translators: Post title, Template Location
msgid "Template %1$s is already assigned to the location %2$s"
msgstr ""

#: inc/class-header-footer-elementor.php:367
#. translators: %s: html tags
msgid ""
"The %1$sUltimate Addons for Elementor%2$s plugin requires %1$sElementor%2$s "
"plugin installed & activated."
msgstr ""

#: inc/class-header-footer-elementor.php:374
msgid "Activate Elementor"
msgstr ""

#: inc/class-header-footer-elementor.php:379
#: inc/class-header-footer-elementor.php:415
msgid "Install Elementor"
msgstr ""

#: inc/class-header-footer-elementor.php:403
#. translators: %s: html tags
msgid ""
"The %1$sUltimate Addons for Elementor%2$s plugin has stopped working "
"because you are using an older version of %1$sElementor%2$s plugin."
msgstr ""

#: inc/class-header-footer-elementor.php:410
msgid "Update Elementor"
msgstr ""

#: inc/class-header-footer-elementor.php:667
msgid "Theme Support"
msgstr ""

#: inc/class-hfe-learn-api.php:159 inc/class-hfe-learn-api.php:276
#: inc/class-hfe-learn-api.php:346 inc/class-hfe-learn-api.php:387
msgid "Permission denied."
msgstr ""

#: inc/class-hfe-learn-api.php:163
msgid "UAE Learn Footer"
msgstr ""

#: inc/class-hfe-learn-api.php:164
msgid "UAE Learn Header"
msgstr ""

#: inc/class-hfe-learn-api.php:311
msgid "UAE Learn Page"
msgstr ""

#: inc/class-hfe-learn-api.php:317
msgid "Page creation failed."
msgstr ""

#: inc/class-hfe-learn-api.php:354
msgid "Invalid extension."
msgstr ""

#: inc/class-hfe-learn-api.php:361
msgid "No active Elementor Kit found."
msgstr ""

#: inc/class-hfe-learn-api.php:536
msgid "Create Your Header"
msgstr ""

#: inc/class-hfe-learn-api.php:537
msgid "Build a stunning header that showcases your brand on every page."
msgstr ""

#: inc/class-hfe-learn-api.php:541
msgid "Set Up Header Under 5 Mins!"
msgstr ""

#: inc/class-hfe-learn-api.php:542
msgid ""
"Create a branded header that appears on every page and keeps your "
"navigation consistent."
msgstr ""

#: inc/class-hfe-learn-api.php:549
msgid "Add header in Elementor"
msgstr ""

#: inc/class-hfe-learn-api.php:554
msgid "Set Up Header"
msgstr ""

#: inc/class-hfe-learn-api.php:564 inc/class-hfe-learn-api.php:639
msgid "Control Where Your Template Appears"
msgstr ""

#: inc/class-hfe-learn-api.php:565 inc/class-hfe-learn-api.php:640
msgid ""
"Use Display Conditions to choose exactly where this template shows — entire "
"site, specific pages, posts, or archives."
msgstr ""

#: inc/class-hfe-learn-api.php:572
msgid "Add Display conditions to your header"
msgstr ""

#: inc/class-hfe-learn-api.php:577 inc/class-hfe-learn-api.php:652
msgid "Add Display Conditions"
msgstr ""

#: inc/class-hfe-learn-api.php:588
msgid "Add Your Favorite UAE Widgets and Make it Live"
msgstr ""

#: inc/class-hfe-learn-api.php:589
msgid "Include logo, menu, CTA, and contact access for a complete header."
msgstr ""

#: inc/class-hfe-learn-api.php:596
msgid "Add UAE widgets to your header"
msgstr ""

#: inc/class-hfe-learn-api.php:601
msgid "Add Header Widgets"
msgstr ""

#: inc/class-hfe-learn-api.php:611
msgid "Create Your Footer"
msgstr ""

#: inc/class-hfe-learn-api.php:612
msgid "Design a professional footer that builds trust and improves site navigation."
msgstr ""

#: inc/class-hfe-learn-api.php:617
msgid "Set Up Footer in less than 5 mins!"
msgstr ""

#: inc/class-hfe-learn-api.php:618
msgid ""
"Add a global footer for consistent links, policies, and brand presence on "
"every page."
msgstr ""

#: inc/class-hfe-learn-api.php:625
msgid "Set Up Footer Template"
msgstr ""

#: inc/class-hfe-learn-api.php:630
msgid "Set Up Footer"
msgstr ""

#: inc/class-hfe-learn-api.php:647
msgid "Add display conditons to your footer"
msgstr ""

#: inc/class-hfe-learn-api.php:663
msgid "Add Your Footer Widgets and Make it live."
msgstr ""

#: inc/class-hfe-learn-api.php:664
msgid ""
"Insert essential elements like Social Icons, Contact Info, Copyright Text, "
"and Navigation Links for complete site credibility."
msgstr ""

#: inc/class-hfe-learn-api.php:671
msgid "Footer Widgets in Elementor"
msgstr ""

#: inc/class-hfe-learn-api.php:676
msgid "Add Footer Widgets"
msgstr ""

#: inc/class-hfe-learn-api.php:686
msgid "Add More Powerful Widgets"
msgstr ""

#: inc/class-hfe-learn-api.php:687
msgid ""
"Supercharge your pages with UAE's most popular content widgets for better "
"engagement."
msgstr ""

#: inc/class-hfe-learn-api.php:692
msgid "Create Eye-Catching Info Cards"
msgstr ""

#: inc/class-hfe-learn-api.php:693
msgid ""
"Display key features, services, or benefits with beautiful Info Card "
"widgets that convert visitors into customers."
msgstr ""

#: inc/class-hfe-learn-api.php:700
msgid "Info Card Widget in Elementor"
msgstr ""

#: inc/class-hfe-learn-api.php:705
msgid "Add Info Card"
msgstr ""

#: inc/class-hfe-learn-api.php:715
msgid "Showcase Dynamic Content with Posts"
msgstr ""

#: inc/class-hfe-learn-api.php:716
msgid ""
"Automatically display your latest blog posts, news, or updates with the "
"Basic Posts widget for fresh, engaging content."
msgstr ""

#: inc/class-hfe-learn-api.php:723
msgid "Basic Posts Widget in Elementor"
msgstr ""

#: inc/class-hfe-learn-api.php:728
msgid "Add Posts Widget"
msgstr ""

#: inc/class-hfe-learn-api.php:739
msgid "Power Extensions"
msgstr ""

#: inc/class-hfe-learn-api.php:740
msgid ""
"Enable time-saving features that streamline your workflow and enhance user "
"experience."
msgstr ""

#: inc/class-hfe-learn-api.php:745
msgid "Duplicate Pages in One Click"
msgstr ""

#: inc/class-hfe-learn-api.php:746
msgid ""
"Save hours by cloning any page or post instantly with Post Duplicator - "
"perfect for creating template variations."
msgstr ""

#: inc/class-hfe-learn-api.php:753
msgid "Post Duplicator Extension"
msgstr ""

#: inc/class-hfe-learn-api.php:758
msgid "Enable UAE Duplicator"
msgstr ""

#: inc/class-hfe-learn-api.php:768
msgid "Add Scroll to Top Button"
msgstr ""

#: inc/class-hfe-learn-api.php:769 inc/class-hfe-learn-api.php:790
msgid ""
"Improve navigation on long pages with a floating button that helps visitors "
"jump back to the top effortlessly."
msgstr ""

#: inc/class-hfe-learn-api.php:776
msgid "Scroll To Top Setting"
msgstr ""

#: inc/class-hfe-learn-api.php:781
msgid "Enable Scroll Button"
msgstr ""

#: inc/class-hfe-learn-api.php:789
msgid "Add Reading Progress Bar"
msgstr ""

#: inc/class-hfe-learn-api.php:797
#: inc/widgets-manager/base/widgets-config.php:188
#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:38
#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:88
#: inc/widgets-manager/extensions/class-reading-progress-bar.php:157
msgid "Reading Progress Bar"
msgstr ""

#: inc/class-hfe-learn-api.php:802
#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:96
msgid "Enable Reading Progress Bar"
msgstr ""

#: inc/class-hfe-learn-api.php:817
msgid "Pro Features"
msgstr ""

#: inc/class-hfe-learn-api.php:818
msgid "Unlock advanced widgets and features with UAE Pro"
msgstr ""

#: inc/class-hfe-learn-api.php:822
msgid "Explore Pro Features"
msgstr ""

#: inc/class-hfe-learn-api.php:823
msgid "See what's available in the Pro version"
msgstr ""

#: inc/class-hfe-learn-api.php:825 inc/class-hfe-settings-page.php:770
#: inc/class-hfe-settings-page.php:771
msgid "Upgrade to Pro"
msgstr ""

#: inc/class-hfe-learn-api.php:964
msgid "Progress saved successfully."
msgstr ""

#: inc/class-hfe-learn-api.php:983
msgid "Sorry, you cannot access this resource."
msgstr ""

#: inc/class-hfe-post-duplicator.php:156
#. translators: %s: Plugin short name
msgid "%s Duplicator"
msgstr ""

#: inc/class-hfe-post-duplicator.php:209
msgid "You must be logged in to duplicate posts."
msgstr ""

#: inc/class-hfe-post-duplicator.php:214
msgid "No post to duplicate has been supplied!"
msgstr ""

#: inc/class-hfe-post-duplicator.php:222
msgid "Security check failed!"
msgstr ""

#: inc/class-hfe-post-duplicator.php:228
msgid "Post creation failed, could not find original post."
msgstr ""

#: inc/class-hfe-post-duplicator.php:233
msgid "Post type not supported for duplication."
msgstr ""

#: inc/class-hfe-post-duplicator.php:238
msgid "You do not have permission to duplicate this post."
msgstr ""

#: inc/class-hfe-post-duplicator.php:270
#. translators: %s: Original post title
msgid "Copy of %s"
msgstr ""

#: inc/class-hfe-post-duplicator.php:445
msgid "Post"
msgstr ""

#: inc/class-hfe-post-duplicator.php:454
#. translators: %1$s: Post type label, %2$s: Original post title
msgid "%1$s duplicated successfully. You are now editing the duplicate of \"%2$s\"."
msgstr ""

#: inc/class-hfe-promotion.php:104
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:114
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:116
#: inc/widgets-manager/widgets/cart/cart.php:98
#: inc/widgets-manager/widgets/infocard/infocard.php:95
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:86
#: inc/widgets-manager/widgets/post-info/post-info.php:104
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:146
msgid "Upgrade Now"
msgstr ""

#: inc/class-hfe-promotion.php:156
#. translators: %1$s: Feature name, %2$s: Lock icon
msgid "UAE - %1$s %2$s"
msgstr ""

#: inc/class-hfe-promotion.php:169
#: inc/widgets-manager/base/widgets-config.php:933
msgid "Particle Backgrounds"
msgstr ""

#: inc/class-hfe-promotion.php:179
msgid ""
"Use Particle Backgrounds and other Pro features to extend your toolbox with "
"more control and flexibility."
msgstr ""

#: inc/class-hfe-promotion.php:195
#: inc/widgets-manager/base/widgets-config.php:918
msgid "Display Conditions"
msgstr ""

#: inc/class-hfe-promotion.php:205
msgid ""
"Use Advanced Display Condition and other Pro features to extend your "
"toolbox with more control and flexibility."
msgstr ""

#: inc/class-hfe-promotion.php:221
#: inc/widgets-manager/base/widgets-config.php:946
msgid "Party Propz"
msgstr ""

#: inc/class-hfe-promotion.php:231
msgid ""
"Use Party Propz and other Pro features to extend your toolbox with more "
"control and flexibility."
msgstr ""

#: inc/class-hfe-promotion.php:252
msgid "Sticky Header"
msgstr ""

#: inc/class-hfe-promotion.php:262
msgid ""
"Use Sticky Header and other Pro features to extend your toolbox with more "
"control and flexibility."
msgstr ""

#: inc/class-hfe-rollback.php:167
msgid "Ultimate Addons for Elementor Lite <p>Rollback to Previous Version</p>"
msgstr ""

#: inc/class-hfe-settings-page.php:91
msgid "Go Pro"
msgstr ""

#: inc/class-hfe-settings-page.php:111
msgid "Rate our plugin"
msgstr ""

#: inc/class-hfe-settings-page.php:133
#. translators: %1$s is bold plugin name, %2$s is the review link
msgid ""
"Enjoyed %1$s? Please leave us a %2$s rating. We really appreciate your "
"support!"
msgstr ""

#: inc/class-hfe-settings-page.php:161
msgid "Ultimate Addons for Elementor"
msgstr ""

#: inc/class-hfe-settings-page.php:162
msgid ""
"How likely are you to recommend Ultimate Addons for Elementor to your "
"friends or colleagues?"
msgstr ""

#: inc/class-hfe-settings-page.php:164
msgid "Thanks a lot for your feedback! 😍"
msgstr ""

#: inc/class-hfe-settings-page.php:165
msgid ""
"Thanks for using Ultimate Addons! Got feedback or suggestions to make it "
"even better? We’d love to hear from you."
msgstr ""

#: inc/class-hfe-settings-page.php:168
msgid "Thank you for your feedback"
msgstr ""

#: inc/class-hfe-settings-page.php:169
msgid "We value your input. How can we improve your experience?"
msgstr ""

#: inc/class-hfe-settings-page.php:213
msgid "You do not have permission to access this page."
msgstr ""

#: inc/class-hfe-settings-page.php:214 inc/class-hfe-settings-page.php:249
msgid "Rollback to Previous Version"
msgstr ""

#: inc/class-hfe-settings-page.php:230
msgid "The selected version is invalid. Please try a different version."
msgstr ""

#: inc/class-hfe-settings-page.php:479
msgid "Activate"
msgstr ""

#: inc/class-hfe-settings-page.php:480
msgid "Activated"
msgstr ""

#: inc/class-hfe-settings-page.php:481
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1064
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1247
msgid "Active"
msgstr ""

#: inc/class-hfe-settings-page.php:482
msgid "Deactivate"
msgstr ""

#: inc/class-hfe-settings-page.php:483
msgid "Inactive"
msgstr ""

#: inc/class-hfe-settings-page.php:484
msgid "Install"
msgstr ""

#: inc/class-hfe-settings-page.php:485
msgid "Theme Installed"
msgstr ""

#: inc/class-hfe-settings-page.php:486
msgid "Plugin Installed"
msgstr ""

#: inc/class-hfe-settings-page.php:487
msgid "Download"
msgstr ""

#: inc/class-hfe-settings-page.php:488
msgid "Already Exists."
msgstr ""

#: inc/class-hfe-settings-page.php:489
msgid "Visit Website"
msgstr ""

#: inc/class-hfe-settings-page.php:490
msgid "Could not install. Please download from WordPress.org and install manually."
msgstr ""

#: inc/class-hfe-settings-page.php:491
msgid "Your details are submitted successfully."
msgstr ""

#: inc/class-hfe-settings-page.php:492
msgid "Encountered an error while performing your request."
msgstr ""

#: inc/class-hfe-settings-page.php:565
msgid "Add Theme Support"
msgstr ""

#: inc/class-hfe-settings-page.php:579
msgid ""
"The Ultimate Addons for Elementor plugin needs compatibility with your "
"current theme to work smoothly.<br/><br/>Following are two methods that "
"enable theme support for the plugin.<br/><br/>Method 1 is selected by "
"default and works fine with almost all themes. If you face any issue with "
"the header or footer template, try choosing Method 2."
msgstr ""

#: inc/class-hfe-settings-page.php:598
msgid "Method 1 (Recommended)"
msgstr ""

#: inc/class-hfe-settings-page.php:599
msgid ""
"This method replaces your theme's header (header.php) & footer (footer.php) "
"template with plugin's custom templates."
msgstr ""

#: inc/class-hfe-settings-page.php:602
msgid "Method 2"
msgstr ""

#: inc/class-hfe-settings-page.php:606
msgid ""
"This method hides your theme's header & footer template with CSS and "
"displays custom templates from the plugin."
msgstr ""

#: inc/class-hfe-settings-page.php:617
#. translators: %s: URL to the plugin support page
msgid ""
"If the above methods do not work with your theme, contact your theme author "
"and request them to add support for the <a href=\"%s\">plugin</a>."
msgstr ""

#: inc/class-hfe-settings-page.php:649 inc/class-hfe-settings-page.php:661
msgid "UAE Lite"
msgstr ""

#: inc/class-hfe-settings-page.php:650
#: inc/widgets-manager/class-widgets-loader.php:165
msgid "UAE"
msgstr ""

#: inc/class-hfe-settings-page.php:662
msgid "Dashboard"
msgstr ""

#: inc/class-hfe-settings-page.php:672 inc/class-hfe-settings-page.php:673
msgid "Widgets"
msgstr ""

#: inc/class-hfe-settings-page.php:683 inc/class-hfe-settings-page.php:684
#: inc/class-hfe-settings-page.php:841
#: inc/widgets-manager/base/widgets-config.php:362
#: inc/widgets-manager/base/widgets-config.php:418
#: inc/widgets-manager/base/widgets-config.php:501
#: inc/widgets-manager/base/widgets-config.php:567
#: inc/widgets-manager/base/widgets-config.php:582
#: inc/widgets-manager/base/widgets-config.php:693
#: inc/widgets-manager/base/widgets-config.php:763
#: inc/widgets-manager/base/widgets-config.php:779
#: inc/widgets-manager/base/widgets-config.php:924
msgid "Settings"
msgstr ""

#: inc/class-hfe-settings-page.php:694 inc/class-hfe-settings-page.php:695
#: inc/class-hfe-settings-page.php:706
msgid "Onboarding"
msgstr ""

#: inc/class-hfe-settings-page.php:707
msgid "Onboarding Success"
msgstr ""

#: inc/class-hfe-settings-page.php:759 inc/class-hfe-settings-page.php:760
msgid "Get Help"
msgstr ""

#: inc/class-hfe-settings-page.php:840
msgid "Go to UAE Settings page"
msgstr ""

#: inc/lib/astra-notices/class-astra-notices.php:150
msgid "Invalid notice ID."
msgstr ""

#: inc/lib/nps-survey/classes/nps-survey-script.php:333
msgid "Sorry, you are not allowed to do that."
msgstr ""

#: inc/lib/nps-survey/classes/nps-survey-script.php:387
#: inc/lib/nps-survey/classes/nps-survey-script.php:505
msgid "Nonce verification failed."
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:127
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:332
msgid "404 Page"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:128
msgid "Search Page"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:129
msgid "Blog / Posts Page"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:130
msgid "Front Page"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:131
msgid "Date Archive"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:132
msgid "Author Archive"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:136
msgid "WooCommerce Shop Page"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:141
#: inc/lib/target-rule/class-astra-target-rules-fields.php:213
msgid "Basic"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:143
#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:112
msgid "Entire Website"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:144
msgid "All Singulars"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:145
msgid "All Archives"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:150
msgid "Special Pages"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:191
msgid "Specific Target"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:193
msgid "Specific Pages / Posts / Taxonomies, etc."
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:215
msgid "All"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:216
msgid "Logged In"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:217
msgid "Logged Out"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:222
msgid "Advanced"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:312
msgid "Unauthorized."
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:628
msgid "Please enter"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:629
msgid "Please delete"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:630
msgid "or more characters"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:631
msgid "character"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:632
msgid "Loading more results…"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:633
msgid "You can only select"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:634
msgid "item"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:635
msgid "s"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:636
msgid "No results found"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:637
msgid "Searching…"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:638
msgid "The results could not be loaded."
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:639
msgid "Search pages / post / categories"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:658
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1068
msgid "Add Rule"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:674
#: inc/lib/target-rule/class-astra-target-rules-fields.php:779
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1084
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1114
#: inc/lib/target-rule/class-astra-target-rules-fields.php:1577
msgid "Select"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:724
#. translators: %s post label
msgid "All %s"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:729
#: inc/lib/target-rule/class-astra-target-rules-fields.php:738
#. translators: %s post label
#. translators: %s taxonomy label
msgid "All %s Archive"
msgstr ""

#: inc/lib/target-rule/class-astra-target-rules-fields.php:1518
#. translators: %s post title.
msgid "The same display setting is already exist in %s post/s."
msgstr ""

#: inc/settings/hfe-settings-api.php:121
msgid "Sorry, you are not authorized to perform this action."
msgstr ""

#: inc/settings/hfe-settings-api.php:136 inc/settings/hfe-settings-api.php:163
#: inc/settings/hfe-settings-api.php:190 inc/settings/hfe-settings-api.php:217
#: inc/settings/hfe-settings-api.php:249
msgid "Invalid nonce"
msgstr ""

#: inc/settings/hfe-settings-api.php:170
msgid "Plugins list not found"
msgstr ""

#: inc/settings/hfe-settings-api.php:197
msgid "Recommended plugins list not found"
msgstr ""

#: inc/settings/hfe-settings-api.php:224
msgid "Widgets list not found"
msgstr ""

#: inc/settings/hfe-settings-api.php:260
msgid "Invalid domain provided."
msgstr ""

#: inc/settings/hfe-settings-api.php:285
msgid "Error calling endpoint"
msgstr ""

#: inc/settings/hfe-settings-api.php:293
msgid "Failed to send email. Please try again later."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:54
msgid "Retina Logo"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:61
msgid "Add a high-quality logo that looks sharp on any screen."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:67
msgid "Page Title"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:74
msgid "Display the title of the current page dynamically."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:80
msgid "Site Tagline"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:87
msgid "Display your site's tagline to enhance brand identity."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:93
msgid "Site Title"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:100
msgid "Show your site’s name in a customizable style."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:106
msgid "Post Info"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:114
msgid "Show author, dates, and reading time with customizable styles."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:120
msgid "Basic Posts"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:128
msgid "Display posts in a fast, lightweight card layout with basic styling options."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:134
msgid "Breadcrumbs"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:142
msgid "Add navigation links to guide visitors across your site."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:148
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:49
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:117
#: inc/widgets-manager/extensions/class-scroll-to-top.php:310
msgid "Scroll to Top"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:156
msgid "Add a customizable button for quick, one-click top scrolling."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:162
#: inc/widgets-manager/class-widgets-loader.php:367
#: inc/widgets-manager/widgets/cart/cart.php:663
msgid "Cart"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:169
msgid "Show cart for seamless shopping experiences."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:175
#: inc/widgets-manager/widgets/copyright/copyright.php:115
msgid "Copyright"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:182
msgid "Display customizable copyright text for your site's footer."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:196
msgid "Display a progress indicator as users read your content."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:202
#: inc/widgets-manager/base/widgets-config.php:620
#: inc/widgets-manager/class-widgets-loader.php:305
msgid "Navigation Menu"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:209
msgid "Add stylish and functional menus for seamless site navigation."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:215
#: inc/widgets-manager/widgets/site-logo/site-logo.php:146
msgid "Site Logo"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:222
msgid "Add your site's primary logo with flexible customization options."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:228
#: inc/widgets-manager/widgets/infocard/infocard.php:150
msgid "Info Card"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:235
msgid "Add icon, heading, description & button/link — all in one widget."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:241
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:319
#: inc/widgets-manager/widgets/search-button/search-button.php:1035
msgid "Search"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:248
msgid "Add a search bar to help visitors find content easily."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:254
msgid "Woo Products Grid"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:255
msgid ""
"Display WooCommerce products in a responsive grid layout with customizable "
"styling options."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:267
msgid "Counter"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:268
msgid ""
"Display animated counters with customizable styling for showcasing "
"statistics and achievements."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:280
msgid "Duplicator"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:281
msgid "Adds one-click duplication support for posts and pages.."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:314
#: inc/widgets-manager/class-widgets-loader.php:284
msgid "Advanced Heading"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:315
msgid ""
"Style headings with unique typography, separators, and highlights to grab "
"attention."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:328
#: inc/widgets-manager/class-widgets-loader.php:285
msgid "Modal Popup"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:329
msgid ""
"Create interactive pop-ups for promotions, forms, or announcements with "
"flexible designs."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:341
#: inc/widgets-manager/class-widgets-loader.php:300
msgid "Info Box"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:342
msgid ""
"Showcase features, services, or highlights using eye-catching icons and "
"text blocks."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:355
#: inc/widgets-manager/class-widgets-loader.php:307
msgid "Posts"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:356
msgid ""
"Display blog posts in advanced grid, carousel, or masonry layouts with full "
"customization."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:370
#: inc/widgets-manager/class-widgets-loader.php:286
msgid "Content Toggle"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:371
msgid ""
"Organize content with switchable toggles that let visitors compare or "
"explore easily."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:383
#: inc/widgets-manager/class-widgets-loader.php:287
msgid "Before After Slider"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:384
msgid ""
"Visually compare images with a draggable slider that highlights differences "
"instantly."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:396
#: inc/widgets-manager/class-widgets-loader.php:288
msgid "Business Hours"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:397
msgid ""
"Display your opening hours in clean, stylish layouts that update your "
"visitors clearly."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:411
#: inc/widgets-manager/class-widgets-loader.php:289
msgid "Business Reviews"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:412
msgid ""
"Boost credibility by showcasing real customer reviews directly on your "
"website."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:425
#: inc/widgets-manager/class-widgets-loader.php:290
msgid "Contact Form 7 Styler"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:426
msgid ""
"Style and customize Contact Form 7 with advanced controls for seamless "
"branding."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:438
#: inc/widgets-manager/class-widgets-loader.php:291
msgid "Countdown Timer"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:439
msgid ""
"Create urgency with timers for sales, launches, or events that drive quick "
"action."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:452
#: inc/widgets-manager/class-widgets-loader.php:292
msgid "Dual Color Heading"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:453
msgid ""
"Highlight important words with dual-colored headings that make text more "
"impactful."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:466
#: inc/widgets-manager/class-widgets-loader.php:293
msgid "Fancy Heading"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:467
msgid "Design creative headings with animations, gradients, and stylish effects."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:480
#: inc/widgets-manager/class-widgets-loader.php:294
msgid "FAQ Schema"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:481
msgid ""
"Add FAQs that are SEO-ready and optimized for rich snippets in Google "
"search."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:494
#: inc/widgets-manager/class-widgets-loader.php:295
msgid "Google Map"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:495
msgid ""
"Embed interactive, customizable maps with markers, styles, and responsive "
"layouts."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:509
#: inc/widgets-manager/class-widgets-loader.php:296
msgid "Gravity Form Styler"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:510
msgid ""
"Easily style Gravity Forms to match your brand with advanced design "
"flexibility."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:522
#: inc/widgets-manager/class-widgets-loader.php:297
msgid "Hotspot"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:523
msgid ""
"Add interactive hotspots to images for tooltips, product highlights, or "
"guided tours."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:535
#: inc/widgets-manager/class-widgets-loader.php:298
msgid "How-to Schema"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:536
msgid ""
"Display step-by-step instructions with SEO-friendly markup for better "
"rankings."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:548
#: inc/widgets-manager/class-widgets-loader.php:299
msgid "Image Gallery"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:549
msgid ""
"Showcase images in beautiful grids, carousels, and masonry layouts with "
"lightbox."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:561
#: inc/widgets-manager/class-widgets-loader.php:301
msgid "Instagram Feed"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:562
msgid ""
"Display your Instagram posts in responsive, stylish layouts that boost "
"engagement."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:576
#: inc/widgets-manager/class-widgets-loader.php:302
msgid "Login Form"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:577
msgid ""
"Add sleek, customizable login forms with complete control over styling and "
"fields."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:592
#: inc/widgets-manager/class-widgets-loader.php:303
msgid "Marketing Button"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:593
msgid ""
"Drive conversions with stylish buttons featuring icons, dual text, and "
"hover effects."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:606
#: inc/widgets-manager/class-widgets-loader.php:304
msgid "Multi Buttons"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:607
msgid ""
"Create multiple styled buttons side by side to offer clear, flexible "
"actions."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:621
msgid ""
"Build advanced, responsive navigation menus with design flexibility and "
"controls."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:633
#: inc/widgets-manager/class-widgets-loader.php:306
msgid "Off - Canvas"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:634
msgid ""
"Add off-canvas menus, sidebars, or panels that slide in with smooth "
"interactions."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:646
#: inc/widgets-manager/class-widgets-loader.php:308
msgid "Price Box"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:647
msgid ""
"Showcase product or service pricing with modern layouts that highlight "
"value."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:660
#: inc/widgets-manager/class-widgets-loader.php:309
msgid "Price List"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:661
msgid ""
"Showcase services or menu items with stylish layouts that highlight details "
"and pricing."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:674
#: inc/widgets-manager/class-widgets-loader.php:310
#: inc/widgets-manager/widgets/retina/retina.php:124
#: inc/widgets-manager/widgets/retina/retina.php:258
msgid "Retina Image"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:675
msgid ""
"Deliver crisp, high-resolution images that look perfect on every device and "
"screen."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:687
#: inc/widgets-manager/class-widgets-loader.php:311
msgid "Social Share"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:688
msgid ""
"Boost engagement by allowing visitors to easily share content across social "
"networks."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:703
#: inc/widgets-manager/class-widgets-loader.php:312
msgid "Table"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:704
msgid ""
"Display data in responsive, customizable tables with complete design "
"flexibility."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:716
#: inc/widgets-manager/class-widgets-loader.php:313
msgid "Table of Contents"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:717
msgid ""
"Improve navigation with auto-generated tables of contents for long or "
"complex pages."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:729
#: inc/widgets-manager/class-widgets-loader.php:314
msgid "Team Member"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:730
msgid ""
"Introduce your team with clean profile cards that showcase names, roles, "
"and socials."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:743
#: inc/widgets-manager/class-widgets-loader.php:315
msgid "Timeline"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:744
msgid ""
"Present events, milestones, or stories in elegant horizontal or vertical "
"timeline designs."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:757
#: inc/widgets-manager/class-widgets-loader.php:316
msgid "Twitter Feed"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:758
msgid ""
"Embed your live Twitter feed with customizable layouts that match your "
"site's style."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:772
#: inc/widgets-manager/class-widgets-loader.php:317
msgid "User Registration Form"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:773
msgid ""
"Build sleek registration forms with advanced controls and a user-friendly "
"experience."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:788
#: inc/widgets-manager/class-widgets-loader.php:318
msgid "Video"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:789
msgid ""
"Embed responsive videos from YouTube, Vimeo, or self-hosted sources with "
"ease."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:801
#: inc/widgets-manager/class-widgets-loader.php:319
msgid "Video Gallery"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:802
msgid ""
"Showcase multiple videos in engaging grid or carousel layouts with lightbox "
"options."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:814
#: inc/widgets-manager/class-widgets-loader.php:320
msgid "Welcome Music"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:815
msgid ""
"Enhance user experience by playing welcome music or audio when visitors "
"land."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:827
msgid "Woo - Add To Cart"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:828
msgid ""
"Add customizable \"Add to Cart\" buttons anywhere for seamless shopping "
"experiences."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:840
msgid "Woo - Categories"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:841
msgid "Display WooCommerce categories in stylish grids, lists, or carousel layouts."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:853
msgid "Woo - Checkout"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:854
msgid ""
"Simplify checkout with beautifully styled forms that match your brand "
"identity."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:866
msgid "Woo - Mini Cart"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:867
msgid ""
"Show a quick mini cart with product previews and controls in a sleek "
"dropdown."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:879
msgid "Woo - Products"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:880
msgid ""
"Display WooCommerce products in customizable grids, sliders, or catalog "
"layouts."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:892
msgid "WP Fluent Forms Styler"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:893
msgid ""
"Easily design and style Fluent Forms to perfectly align with your website "
"branding."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:905
msgid "WPForms Styler"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:906
msgid ""
"Customize WPForms with advanced styling controls for a seamless brand "
"experience."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:919
msgid ""
"Control widget visibility with display rules based on users, devices, and "
"pages."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:934
msgid "Add dynamic, animated backgrounds to sections and columns."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:947
msgid "Decorate your site with festive seasonal elements easily."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:959
msgid "Shape Divider"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:960
msgid "Add new attractive shape dividers to Elementor sections."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:972
msgid "Cross-Site Copy Paste"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:973
msgid "Easily copy and paste styled sections or widgets across multiple websites."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:985
msgid "Presets"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:986
msgid ""
"Save time with ready-made design presets that give widgets a quick, "
"professional look."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1004
msgid "Caldera Form Styler"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1005
msgid "Style and enhance Caldera Forms to fit your site."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1050
#. translators: %s: theme name
msgid "Free & Fastest WordPress Theme."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1074
msgid "Boost Your Traffic with Easy SEO Optimization!"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1075
msgid ""
"Rank higher with effortless SEO optimization. SureRank offers a simple, "
"clutter-free interface with lightweight code, minimal setup, clear meta and "
"schema settings, and smart content optimization that actually makes sense, "
"helping you grow your traffic easily."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1087
msgid "Sell Products Effortlessly with SureCart!"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1088
msgid ""
"Sell your products effortlessly with a modern, flexible eCommerce system. "
"SureCart makes it easy to set up one-click checkout, manage subscriptions, "
"recover abandoned carts, and collect secure payments, helping you launch "
"and grow your online store confidently."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1100
msgid "Build Powerful Forms in Minutes with SureForms!"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1101
msgid ""
"Build powerful forms in minutes without complexity. SureForms lets you "
"create contact forms, payment forms, and surveys using an AI-assisted, "
"clean interface with conversational layouts, conditional logic, payment "
"collection, and mobile optimization for a seamless experience."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1113
msgid "Add Engaging Videos Seamlessly with Presto Player!"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1114
msgid ""
"Add engaging videos seamlessly in minutes without complexity. Presto Player "
"lets you enhance your website with videos using branding, chapters, and "
"call-to-actions while providing fast load times, detailed analytics, and "
"user-friendly controls for a seamless viewing experience."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1126
msgid "Automate Your Workflows Easily with Ottokit!"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1127
msgid ""
"Automate workflows effortlessly in minutes without complexity. Ottokit lets "
"you connect your WordPress site with web apps to automate tasks, sync data, "
"and run actions using a clean visual builder with scheduling, filters, "
"conditions, and webhooks for a seamless experience."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1182
msgid "Starter Templates"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1183
msgid ""
"Quickly launch websites with 300+ professionally designed Elementor "
"templates."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1195
msgid "SureRank"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1196
msgid "Powerful, lightweight SEO plugin to manage search and social previews"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1208
msgid "SureForms"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1209
msgid "Create high-converting forms with ease."
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1221
msgid "OttoKit"
msgstr ""

#: inc/widgets-manager/base/widgets-config.php:1222
msgid "Automate WordPress tasks effortlessly."
msgstr ""

#: inc/widgets-manager/class-widgets-loader.php:187
msgid "Ultimate Addons"
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:98
#: inc/widgets-manager/extensions/class-reading-progress-bar.php:168
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:127
#: inc/widgets-manager/extensions/class-scroll-to-top.php:321
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:191
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:272
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:315
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:365
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:377
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:392
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:407
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:452
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:496
#: inc/widgets-manager/widgets/cart/cart.php:184
#: inc/widgets-manager/widgets/cart/cart.php:200
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:259
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:276
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:568
#: inc/widgets-manager/widgets/site-logo/site-logo.php:155
#: inc/widgets-manager/widgets/site-logo/site-logo.php:221
#: inc/widgets-manager/widgets/site-logo/site-logo.php:283
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:272
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:284
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:296
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:308
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:320
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:332
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:344
msgid "Yes"
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:99
#: inc/widgets-manager/extensions/class-reading-progress-bar.php:169
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:128
#: inc/widgets-manager/extensions/class-scroll-to-top.php:322
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:192
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:273
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:316
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:366
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:378
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:393
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:408
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:453
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:497
#: inc/widgets-manager/widgets/cart/cart.php:185
#: inc/widgets-manager/widgets/cart/cart.php:201
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:260
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:277
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:569
#: inc/widgets-manager/widgets/site-logo/site-logo.php:156
#: inc/widgets-manager/widgets/site-logo/site-logo.php:220
#: inc/widgets-manager/widgets/site-logo/site-logo.php:284
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:273
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:285
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:297
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:309
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:321
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:333
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:345
msgid "No"
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:134
msgid ""
"Select \"All Pages\" or choose specific post types. If \"All Pages\" is "
"selected along with specific post types, the progress bar will appear on "
"all pages."
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:141
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:193
#: inc/widgets-manager/widgets/counter/counter.php:475
msgid "Position"
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:145
#: inc/widgets-manager/widgets/counter/counter.php:479
#: inc/widgets-manager/widgets/counter/counter.php:573
msgid "Top"
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:146
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:211
#: inc/widgets-manager/widgets/counter/counter.php:483
#: inc/widgets-manager/widgets/counter/counter.php:581
msgid "Bottom"
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:157
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:547
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:604
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:684
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:763
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:832
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:900
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:407
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:473
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:533
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:597
#: inc/widgets-manager/widgets/counter/counter.php:397
#: inc/widgets-manager/widgets/counter/counter.php:618
#: inc/widgets-manager/widgets/counter/counter.php:682
#: inc/widgets-manager/widgets/counter/counter.php:739
#: inc/widgets-manager/widgets/infocard/infocard.php:871
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1541
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1573
#: inc/widgets-manager/widgets/page-title/page-title.php:314
#: inc/widgets-manager/widgets/post-info/post-info.php:644
#: inc/widgets-manager/widgets/post-info/post-info.php:680
#: inc/widgets-manager/widgets/search-button/search-button.php:836
#: inc/widgets-manager/widgets/search-button/search-button.php:856
#: inc/widgets-manager/widgets/search-button/search-button.php:940
#: inc/widgets-manager/widgets/search-button/search-button.php:965
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:218
#: inc/widgets-manager/widgets/site-title/site-title.php:306
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:739
msgid "Color"
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:172
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:310
#: inc/widgets-manager/widgets/post-info/post-info.php:614
msgid "Height"
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:198
#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:226
msgid "Offset"
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:219
#: inc/widgets-manager/extensions/class-reading-progress-bar-settings.php:247
msgid "Set offset value to 0 or greater to ensure the progress bar is visible."
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar.php:165
msgid "Disable For This Page"
msgstr ""

#: inc/widgets-manager/extensions/class-reading-progress-bar.php:171
msgid "Note: Changes will be applied on the frontend."
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:125
msgid "Enable Scroll To Top"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:144
msgid "Responsive Support"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:147
msgid "Show"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:148
msgid "Hide"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:198
msgid "Bottom Left"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:199
msgid "Bottom Right"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:243
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:193
#: inc/widgets-manager/widgets/cart/cart.php:219
#: inc/widgets-manager/widgets/copyright/copyright.php:147
#: inc/widgets-manager/widgets/counter/counter.php:296
#: inc/widgets-manager/widgets/counter/counter.php:332
#: inc/widgets-manager/widgets/counter/counter.php:487
#: inc/widgets-manager/widgets/counter/counter.php:515
#: inc/widgets-manager/widgets/counter/counter.php:544
#: inc/widgets-manager/widgets/infocard/infocard.php:174
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:316
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:347
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:382
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:418
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:533
#: inc/widgets-manager/widgets/page-title/page-title.php:258
#: inc/widgets-manager/widgets/retina/retina.php:168
#: inc/widgets-manager/widgets/site-logo/site-logo.php:194
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:182
#: inc/widgets-manager/widgets/site-title/site-title.php:250
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:526
msgid "Left"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:277
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:201
#: inc/widgets-manager/widgets/cart/cart.php:227
#: inc/widgets-manager/widgets/copyright/copyright.php:155
#: inc/widgets-manager/widgets/counter/counter.php:304
#: inc/widgets-manager/widgets/counter/counter.php:340
#: inc/widgets-manager/widgets/counter/counter.php:491
#: inc/widgets-manager/widgets/counter/counter.php:523
#: inc/widgets-manager/widgets/counter/counter.php:552
#: inc/widgets-manager/widgets/infocard/infocard.php:182
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:324
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:348
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:390
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:426
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:541
#: inc/widgets-manager/widgets/page-title/page-title.php:266
#: inc/widgets-manager/widgets/retina/retina.php:176
#: inc/widgets-manager/widgets/site-logo/site-logo.php:202
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:190
#: inc/widgets-manager/widgets/site-title/site-title.php:258
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:534
msgid "Right"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:333
#: inc/widgets-manager/widgets/post-info/post-info.php:585
#: inc/widgets-manager/widgets/retina/retina.php:266
#: inc/widgets-manager/widgets/search-button/search-button.php:242
#: inc/widgets-manager/widgets/search-button/search-button.php:791
#: inc/widgets-manager/widgets/site-logo/site-logo.php:321
msgid "Width"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:355
msgid "Z Index"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:377
#: inc/widgets-manager/widgets/retina/retina.php:432
#: inc/widgets-manager/widgets/retina/retina.php:466
#: inc/widgets-manager/widgets/site-logo/site-logo.php:496
#: inc/widgets-manager/widgets/site-logo/site-logo.php:530
msgid "Opacity"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:398
msgid "Media Type"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:407
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:445
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:1017
msgid "Image"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:411
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:461
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:237
#: inc/widgets-manager/widgets/infocard/infocard.php:514
#: inc/widgets-manager/widgets/infocard/infocard.php:523
#: inc/widgets-manager/widgets/infocard/infocard.php:538
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:861
#: inc/widgets-manager/widgets/post-info/post-info.php:727
msgid "Text"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:476
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:546
#: inc/widgets-manager/widgets/cart/cart.php:273
#: inc/widgets-manager/widgets/infocard/infocard.php:226
#: inc/widgets-manager/widgets/infocard/infocard.php:572
#: inc/widgets-manager/widgets/page-title/page-title.php:237
#: inc/widgets-manager/widgets/post-info/post-info.php:293
#: inc/widgets-manager/widgets/post-info/post-info.php:693
#: inc/widgets-manager/widgets/search-button/search-button.php:189
#: inc/widgets-manager/widgets/search-button/search-button.php:907
#: inc/widgets-manager/widgets/site-title/site-title.php:212
msgid "Size"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:537
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:400
#: inc/widgets-manager/widgets/cart/cart.php:349
#: inc/widgets-manager/widgets/cart/cart.php:547
#: inc/widgets-manager/widgets/infocard/infocard.php:297
#: inc/widgets-manager/widgets/infocard/infocard.php:605
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:957
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1161
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1534
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1727
#: inc/widgets-manager/widgets/page-title/page-title.php:341
#: inc/widgets-manager/widgets/retina/retina.php:425
#: inc/widgets-manager/widgets/search-button/search-button.php:268
#: inc/widgets-manager/widgets/search-button/search-button.php:674
#: inc/widgets-manager/widgets/search-button/search-button.php:829
#: inc/widgets-manager/widgets/search-button/search-button.php:934
#: inc/widgets-manager/widgets/site-logo/site-logo.php:489
#: inc/widgets-manager/widgets/site-title/site-title.php:333
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:926
msgid "Normal"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:577
#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:634
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:498
#: inc/widgets-manager/widgets/cart/cart.php:392
#: inc/widgets-manager/widgets/cart/cart.php:448
#: inc/widgets-manager/widgets/infocard/infocard.php:365
#: inc/widgets-manager/widgets/infocard/infocard.php:671
#: inc/widgets-manager/widgets/infocard/infocard.php:790
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1480
#: inc/widgets-manager/widgets/retina/retina.php:381
#: inc/widgets-manager/widgets/search-button/search-button.php:362
#: inc/widgets-manager/widgets/search-button/search-button.php:506
#: inc/widgets-manager/widgets/search-button/search-button.php:596
#: inc/widgets-manager/widgets/site-logo/site-logo.php:445
msgid "Border Color"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:594
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:466
#: inc/widgets-manager/widgets/cart/cart.php:405
#: inc/widgets-manager/widgets/cart/cart.php:584
#: inc/widgets-manager/widgets/infocard/infocard.php:430
#: inc/widgets-manager/widgets/infocard/infocard.php:748
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:996
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1204
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1566
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1794
#: inc/widgets-manager/widgets/retina/retina.php:460
#: inc/widgets-manager/widgets/search-button/search-button.php:714
#: inc/widgets-manager/widgets/search-button/search-button.php:849
#: inc/widgets-manager/widgets/search-button/search-button.php:958
#: inc/widgets-manager/widgets/site-logo/site-logo.php:524
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:964
msgid "Hover"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top-settings.php:652
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:621
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:452
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:641
#: inc/widgets-manager/widgets/cart/cart.php:311
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1319
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1637
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1772
#: inc/widgets-manager/widgets/retina/retina.php:399
#: inc/widgets-manager/widgets/search-button/search-button.php:404
#: inc/widgets-manager/widgets/search-button/search-button.php:635
#: inc/widgets-manager/widgets/site-logo/site-logo.php:463
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:484
msgid "Border Radius"
msgstr ""

#: inc/widgets-manager/extensions/class-scroll-to-top.php:318
msgid "Disable Scroll to Top for This Page"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:110
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:112
#: inc/widgets-manager/widgets/cart/cart.php:94
#: inc/widgets-manager/widgets/infocard/infocard.php:91
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:82
#: inc/widgets-manager/widgets/post-info/post-info.php:100
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:142
msgid "Upgrade"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:111
msgid "Upgrade your Basic Posts Widget"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:112
#: inc/widgets-manager/widgets/post-info/post-info.php:102
msgid ""
"Get the Advanced Posts widget and unlock powerful layouts, filters, and "
"customization options with UAE Pro."
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:152
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:364
msgid "Query"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:160
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:371
msgid "Order By"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:165
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:305
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:673
#: inc/widgets-manager/widgets/counter/counter.php:149
#: inc/widgets-manager/widgets/counter/counter.php:452
#: inc/widgets-manager/widgets/infocard/infocard.php:144
#: inc/widgets-manager/widgets/infocard/infocard.php:827
#: inc/widgets-manager/widgets/page-title/page-title.php:121
#: inc/widgets-manager/widgets/page-title/page-title.php:295
#: inc/widgets-manager/widgets/site-title/site-title.php:289
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:376
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:659
msgid "Title"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:166
msgid "Menu Order"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:167
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:380
msgid "Random"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:168
msgid "Comment Count"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:176
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:388
msgid "Order"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:180
msgid "ASC"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:181
msgid "DESC"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:189
msgid "Exclude Current Post"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:211
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:152
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:358
#: inc/widgets-manager/widgets/counter/counter.php:142
#: inc/widgets-manager/widgets/infocard/infocard.php:137
#: inc/widgets-manager/widgets/post-info/post-info.php:134
#: inc/widgets-manager/widgets/site-title/site-title.php:124
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:211
msgid "General"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:219
msgid "Posts Per Page"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:230
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:218
msgid "Columns"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:262
msgid "Featured Image"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:270
msgid "Show Featured Image"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:282
#: inc/widgets-manager/widgets/retina/retina.php:157
#: inc/widgets-manager/widgets/site-logo/site-logo.php:183
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:1026
msgid "Image Size"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:313
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:294
msgid "Show Title"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:325
#: inc/widgets-manager/widgets/counter/counter.php:158
msgid "Title HTML Tag"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:355
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:752
msgid "Meta"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:363
msgid "Show Meta Data"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:375
msgid "Show Date"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:390
msgid "Show Author"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:405
msgid "Show Comments Count"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:420
msgid "Meta Separator"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:442
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:821
msgid "Excerpt"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:450
msgid "Show Excerpt"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:462
msgid "Excerpt Length"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:486
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:889
msgid "Call to Action"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:494
msgid "Show Read More"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:506
msgid "Read More Text"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:508
#: inc/widgets-manager/widgets/basic-posts/template.php:107
msgid "Read More →"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:528
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:290
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:297
#: inc/widgets-manager/widgets/post-info/post-info.php:141
#: inc/widgets-manager/widgets/search-button/search-button.php:161
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:414
msgid "Layout"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:536
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:422
msgid "Column Gap"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:556
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:444
msgid "Row Gap"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:586
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:514
msgid "Card"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:595
#: inc/widgets-manager/widgets/search-button/search-button.php:694
#: inc/widgets-manager/widgets/search-button/search-button.php:747
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:548
msgid "Background"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:613
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:442
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:631
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1764
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:476
msgid "Border"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:635
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:467
msgid "Box Shadow"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:643
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:385
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:653
#: inc/widgets-manager/widgets/cart/cart.php:331
#: inc/widgets-manager/widgets/infocard/infocard.php:731
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1712
#: inc/widgets-manager/widgets/retina/retina.php:585
#: inc/widgets-manager/widgets/site-logo/site-logo.php:650
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:905
msgid "Padding"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:698
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:914
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:682
msgid "Hover Color"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:710
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:779
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:847
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:926
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:433
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:566
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:622
#: inc/widgets-manager/widgets/infocard/infocard.php:819
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1702
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:790
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:848
msgid "Typography"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:721
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:790
#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:858
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:626
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:704
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:754
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:812
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:870
msgid "Bottom Spacing"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:946
msgid "Full"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/basic-posts.php:1030
msgid "No posts found."
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/template.php:68
msgid "by"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/template.php:76
#: inc/widgets-manager/widgets/post-info/post-info.php:319
#: inc/widgets-manager/widgets/post-info/post-info.php:321
#: inc/widgets-manager/widgets/post-info/post-info.php:938
msgid "No Comments"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/template.php:78
msgid "1 Comment"
msgstr ""

#: inc/widgets-manager/widgets/basic-posts/template.php:80
#: inc/widgets-manager/widgets/post-info/post-info.php:348
#: inc/widgets-manager/widgets/post-info/post-info.php:941
#. translators: %s: Number of comments.
msgid "%s Comments"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:113
msgid "Get more than just Breadcrumbs"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:114
msgid ""
"UAE Pro includes Schema widgets like FAQ Schema and How-To Schema, helping "
"your content rank higher."
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:159
msgid "Show Home"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:161
#: inc/widgets-manager/widgets/post-info/post-info.php:528
msgid "On"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:162
#: inc/widgets-manager/widgets/post-info/post-info.php:527
msgid "Off"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:171
msgid "Home Icon"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:188
#: inc/widgets-manager/widgets/cart/cart.php:215
#: inc/widgets-manager/widgets/copyright/copyright.php:143
#: inc/widgets-manager/widgets/counter/counter.php:328
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:312
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:529
#: inc/widgets-manager/widgets/page-title/page-title.php:254
#: inc/widgets-manager/widgets/post-info/post-info.php:500
#: inc/widgets-manager/widgets/retina/retina.php:164
#: inc/widgets-manager/widgets/site-logo/site-logo.php:190
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:178
#: inc/widgets-manager/widgets/site-title/site-title.php:246
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:522
msgid "Alignment"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:197
#: inc/widgets-manager/widgets/cart/cart.php:223
#: inc/widgets-manager/widgets/copyright/copyright.php:151
#: inc/widgets-manager/widgets/counter/counter.php:300
#: inc/widgets-manager/widgets/counter/counter.php:336
#: inc/widgets-manager/widgets/counter/counter.php:519
#: inc/widgets-manager/widgets/counter/counter.php:548
#: inc/widgets-manager/widgets/infocard/infocard.php:178
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:320
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:386
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:422
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:537
#: inc/widgets-manager/widgets/page-title/page-title.php:262
#: inc/widgets-manager/widgets/post-info/post-info.php:508
#: inc/widgets-manager/widgets/retina/retina.php:172
#: inc/widgets-manager/widgets/site-logo/site-logo.php:198
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:186
#: inc/widgets-manager/widgets/site-title/site-title.php:254
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:530
msgid "Center"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:226
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:246
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:258
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:525
#: inc/widgets-manager/widgets/post-info/post-info.php:525
msgid "Separator"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:233
msgid "Separator Type"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:248
msgid "»"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:299
msgid "Display Text"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:306
msgid "Home Page"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:308
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:693
msgid "Home"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:321
msgid "Search results for:"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:334
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:696
msgid "Error 404: Page not found"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:366
msgid "Spacing between Items"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:420
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:486
#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:609
#: inc/widgets-manager/widgets/cart/cart.php:381
#: inc/widgets-manager/widgets/cart/cart.php:437
#: inc/widgets-manager/widgets/cart/cart.php:568
#: inc/widgets-manager/widgets/cart/cart.php:605
#: inc/widgets-manager/widgets/infocard/infocard.php:325
#: inc/widgets-manager/widgets/infocard/infocard.php:629
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:837
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:979
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1021
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1084
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1185
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1228
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1271
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1553
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1586
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1747
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1813
#: inc/widgets-manager/widgets/retina/retina.php:555
#: inc/widgets-manager/widgets/search-button/search-button.php:313
#: inc/widgets-manager/widgets/search-button/search-button.php:473
#: inc/widgets-manager/widgets/search-button/search-button.php:540
#: inc/widgets-manager/widgets/search-button/search-button.php:732
#: inc/widgets-manager/widgets/site-logo/site-logo.php:393
#: inc/widgets-manager/widgets/site-logo/site-logo.php:620
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:946
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:983
msgid "Background Color"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:589
msgid "Current Item"
msgstr ""

#: inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.php:697
msgid "Search results for: "
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:95
msgid "Upgrade your Cart widget"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:96
msgid ""
"Get the WooCommerce Add to Cart widget and unlock advanced layouts, styles, "
"and features with UAE Pro."
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:127
#: inc/widgets-manager/widgets/cart/cart.php:252
msgid "Menu Cart"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:134
#: inc/widgets-manager/widgets/infocard/infocard.php:508
#: inc/widgets-manager/widgets/post-info/post-info.php:164
msgid "Type"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:138
#: inc/widgets-manager/widgets/infocard/infocard.php:654
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:244
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:470
#: inc/widgets-manager/widgets/page-title/page-title.php:192
#: inc/widgets-manager/widgets/page-title/page-title.php:241
#: inc/widgets-manager/widgets/post-info/post-info.php:150
#: inc/widgets-manager/widgets/post-info/post-info.php:404
#: inc/widgets-manager/widgets/site-logo/site-logo.php:251
#: inc/widgets-manager/widgets/site-logo/site-logo.php:282
#: inc/widgets-manager/widgets/site-title/site-title.php:185
#: inc/widgets-manager/widgets/site-title/site-title.php:216
msgid "Default"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:139
#: inc/widgets-manager/widgets/post-info/post-info.php:173
#: inc/widgets-manager/widgets/post-info/post-info.php:190
#: inc/widgets-manager/widgets/post-info/post-info.php:228
#: inc/widgets-manager/widgets/post-info/post-info.php:359
#: inc/widgets-manager/widgets/post-info/post-info.php:405
msgid "Custom"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:150
msgid "Bag Light"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:151
msgid "Bag Medium"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:152
msgid "Bag Solid"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:165
#: inc/widgets-manager/widgets/cart/cart.php:508
msgid "Items Count"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:168
#: inc/widgets-manager/widgets/counter/counter.php:222
#: inc/widgets-manager/widgets/infocard/infocard.php:348
#: inc/widgets-manager/widgets/infocard/infocard.php:513
#: inc/widgets-manager/widgets/infocard/infocard.php:653
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:516
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:856
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1464
#: inc/widgets-manager/widgets/page-title/page-title.php:193
#: inc/widgets-manager/widgets/post-info/post-info.php:403
#: inc/widgets-manager/widgets/retina/retina.php:194
#: inc/widgets-manager/widgets/retina/retina.php:225
#: inc/widgets-manager/widgets/retina/retina.php:345
#: inc/widgets-manager/widgets/search-button/search-button.php:344
#: inc/widgets-manager/widgets/search-button/search-button.php:578
#: inc/widgets-manager/widgets/site-logo/site-logo.php:252
#: inc/widgets-manager/widgets/site-logo/site-logo.php:409
msgid "None"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:169
msgid "Bubble"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:182
msgid "Show Total Price"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:198
msgid "Hide Empty"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:204
msgid "This will hide the items count until the cart is empty"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:292
#: inc/widgets-manager/widgets/infocard/infocard.php:383
#: inc/widgets-manager/widgets/infocard/infocard.php:686
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1497
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1620
#: inc/widgets-manager/widgets/retina/retina.php:359
#: inc/widgets-manager/widgets/search-button/search-button.php:381
#: inc/widgets-manager/widgets/search-button/search-button.php:612
#: inc/widgets-manager/widgets/site-logo/site-logo.php:423
msgid "Border Width"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:356
#: inc/widgets-manager/widgets/cart/cart.php:412
#: inc/widgets-manager/widgets/cart/cart.php:554
#: inc/widgets-manager/widgets/cart/cart.php:591
#: inc/widgets-manager/widgets/copyright/copyright.php:169
#: inc/widgets-manager/widgets/infocard/infocard.php:614
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:964
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1003
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1071
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1168
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1211
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1254
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1734
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1801
#: inc/widgets-manager/widgets/post-info/post-info.php:756
#: inc/widgets-manager/widgets/retina/retina.php:540
#: inc/widgets-manager/widgets/search-button/search-button.php:278
#: inc/widgets-manager/widgets/search-button/search-button.php:441
#: inc/widgets-manager/widgets/search-button/search-button.php:525
#: inc/widgets-manager/widgets/site-logo/site-logo.php:605
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:601
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:668
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:798
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:856
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:933
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:971
msgid "Text Color"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:367
#: inc/widgets-manager/widgets/cart/cart.php:423
#: inc/widgets-manager/widgets/infocard/infocard.php:306
#: inc/widgets-manager/widgets/page-title/page-title.php:377
#: inc/widgets-manager/widgets/search-button/search-button.php:681
#: inc/widgets-manager/widgets/search-button/search-button.php:721
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:234
#: inc/widgets-manager/widgets/site-title/site-title.php:368
msgid "Icon Color"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:462
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1601
#: inc/widgets-manager/widgets/search-button/search-button.php:764
#: inc/widgets-manager/widgets/search-button/search-button.php:871
msgid "Icon Size"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:484
#: inc/widgets-manager/widgets/page-title/page-title.php:169
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:159
#: inc/widgets-manager/widgets/site-title/site-title.php:162
msgid "Icon Spacing"
msgstr ""

#: inc/widgets-manager/widgets/cart/cart.php:521
msgid "Distance"
msgstr ""

#: inc/widgets-manager/widgets/copyright/copyright.php:122
msgid "Copyright Text"
msgstr ""

#: inc/widgets-manager/widgets/copyright/copyright.php:127
msgid ""
"Copyright © [hfe_current_year] [hfe_site_title] | Powered by "
"[hfe_site_title]"
msgstr ""

#: inc/widgets-manager/widgets/copyright/copyright.php:134
#: inc/widgets-manager/widgets/infocard/infocard.php:553
#: inc/widgets-manager/widgets/page-title/page-title.php:188
#: inc/widgets-manager/widgets/page-title/page-title.php:202
#: inc/widgets-manager/widgets/post-info/post-info.php:374
#: inc/widgets-manager/widgets/retina/retina.php:221
#: inc/widgets-manager/widgets/retina/retina.php:234
#: inc/widgets-manager/widgets/site-logo/site-logo.php:247
#: inc/widgets-manager/widgets/site-logo/site-logo.php:262
#: inc/widgets-manager/widgets/site-title/site-title.php:181
#: inc/widgets-manager/widgets/site-title/site-title.php:194
msgid "Link"
msgstr ""

#: inc/widgets-manager/widgets/copyright/copyright.php:136
#: inc/widgets-manager/widgets/page-title/page-title.php:204
#: inc/widgets-manager/widgets/retina/retina.php:239
#: inc/widgets-manager/widgets/site-logo/site-logo.php:267
#: inc/widgets-manager/widgets/site-title/site-title.php:196
msgid "https://your-link.com"
msgstr ""

#: inc/widgets-manager/widgets/copyright/copyright.php:207
#: inc/widgets-manager/widgets/page-title/page-title.php:423
#: inc/widgets-manager/widgets/retina/retina.php:661
#: inc/widgets-manager/widgets/search-button/search-button.php:994
#: inc/widgets-manager/widgets/site-logo/site-logo.php:696
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:280
#: inc/widgets-manager/widgets/site-title/site-title.php:413
msgid "Go Pro for More Features"
msgstr ""

#: inc/widgets-manager/widgets/copyright/copyright.php:217
#: inc/widgets-manager/widgets/page-title/page-title.php:433
#: inc/widgets-manager/widgets/retina/retina.php:671
#: inc/widgets-manager/widgets/search-button/search-button.php:1004
#: inc/widgets-manager/widgets/site-logo/site-logo.php:706
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:290
#: inc/widgets-manager/widgets/site-title/site-title.php:423
msgid ""
"<b>Build smarter and faster</b> with premium widgets, 200+ section blocks, "
"and advanced customisation controls — all available in the <a "
"href=\"https://ultimateelementor.com/pricing/?utm_source=uae-dashboard&utm_"
"medium=editor&utm_campaign=uae-pro-promotion\" target=\"_blank\">UAE "
"Pro</a>."
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:162
#: inc/widgets-manager/widgets/infocard/infocard.php:840
#: inc/widgets-manager/widgets/page-title/page-title.php:223
#: inc/widgets-manager/widgets/site-title/site-title.php:232
msgid "H1"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:163
#: inc/widgets-manager/widgets/infocard/infocard.php:841
#: inc/widgets-manager/widgets/page-title/page-title.php:224
#: inc/widgets-manager/widgets/site-title/site-title.php:233
msgid "H2"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:164
#: inc/widgets-manager/widgets/infocard/infocard.php:842
#: inc/widgets-manager/widgets/page-title/page-title.php:225
#: inc/widgets-manager/widgets/site-title/site-title.php:234
msgid "H3"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:165
#: inc/widgets-manager/widgets/infocard/infocard.php:843
#: inc/widgets-manager/widgets/page-title/page-title.php:226
#: inc/widgets-manager/widgets/site-title/site-title.php:235
msgid "H4"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:166
#: inc/widgets-manager/widgets/infocard/infocard.php:844
#: inc/widgets-manager/widgets/page-title/page-title.php:227
#: inc/widgets-manager/widgets/site-title/site-title.php:236
msgid "H5"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:167
#: inc/widgets-manager/widgets/infocard/infocard.php:845
#: inc/widgets-manager/widgets/page-title/page-title.php:228
#: inc/widgets-manager/widgets/site-title/site-title.php:237
msgid "H6"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:168
#: inc/widgets-manager/widgets/infocard/infocard.php:846
msgid "div"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:169
msgid "span"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:170
#: inc/widgets-manager/widgets/infocard/infocard.php:847
msgid "p"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:179
msgid "Starting Number"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:188
msgid "Ending Number"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:197
#: inc/widgets-manager/widgets/counter/counter.php:671
msgid "Prefix"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:208
#: inc/widgets-manager/widgets/counter/counter.php:728
msgid "Suffix"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:219
msgid "Digit Separator"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:223
msgid "Comma"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:224
msgid "Dot"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:225
msgid "Space"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:226
msgid "Underscore"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:235
msgid "Counter Speed (seconds)"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:269
msgid "Number"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:292
#: inc/widgets-manager/widgets/counter/counter.php:511
#: inc/widgets-manager/widgets/counter/counter.php:540
msgid "Horizontal Alignment"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:308
msgid "Stretch"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:356
#: inc/widgets-manager/widgets/counter/counter.php:598
msgid "Gap"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:569
msgid "Vertical Alignment"
msgstr ""

#: inc/widgets-manager/widgets/counter/counter.php:577
msgid "Middle"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:92
msgid "Upgrade your Info Card widget"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:93
msgid ""
"Get the Info Box widget in UAE Pro and unlock advanced layouts, icons, and "
"styling for better content display."
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:156
#: inc/widgets-manager/widgets/infocard/infocard.php:889
msgid "Description"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:162
msgid ""
"Enter description text here.Lorem ipsum dolor sit amet, consectetur "
"adipiscing. Quo incidunt ullamco."
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:169
msgid "Overall Alignment"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:213
#: inc/widgets-manager/widgets/page-title/page-title.php:160
msgid "Select Icon"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:261
msgid "Background Size"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:343
#: inc/widgets-manager/widgets/infocard/infocard.php:648
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1459
#: inc/widgets-manager/widgets/retina/retina.php:340
#: inc/widgets-manager/widgets/search-button/search-button.php:339
#: inc/widgets-manager/widgets/search-button/search-button.php:573
#: inc/widgets-manager/widgets/site-logo/site-logo.php:404
msgid "Border Style"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:349
#: inc/widgets-manager/widgets/infocard/infocard.php:655
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1465
#: inc/widgets-manager/widgets/post-info/post-info.php:542
#: inc/widgets-manager/widgets/retina/retina.php:346
#: inc/widgets-manager/widgets/search-button/search-button.php:345
#: inc/widgets-manager/widgets/search-button/search-button.php:579
#: inc/widgets-manager/widgets/site-logo/site-logo.php:410
msgid "Solid"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:350
#: inc/widgets-manager/widgets/infocard/infocard.php:656
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1466
#: inc/widgets-manager/widgets/post-info/post-info.php:543
#: inc/widgets-manager/widgets/retina/retina.php:347
#: inc/widgets-manager/widgets/search-button/search-button.php:346
#: inc/widgets-manager/widgets/search-button/search-button.php:580
#: inc/widgets-manager/widgets/site-logo/site-logo.php:411
msgid "Double"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:351
#: inc/widgets-manager/widgets/infocard/infocard.php:657
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1467
#: inc/widgets-manager/widgets/post-info/post-info.php:544
#: inc/widgets-manager/widgets/retina/retina.php:348
#: inc/widgets-manager/widgets/search-button/search-button.php:347
#: inc/widgets-manager/widgets/search-button/search-button.php:581
#: inc/widgets-manager/widgets/site-logo/site-logo.php:412
msgid "Dotted"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:352
#: inc/widgets-manager/widgets/infocard/infocard.php:658
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1468
#: inc/widgets-manager/widgets/post-info/post-info.php:545
#: inc/widgets-manager/widgets/retina/retina.php:349
#: inc/widgets-manager/widgets/search-button/search-button.php:348
#: inc/widgets-manager/widgets/search-button/search-button.php:582
#: inc/widgets-manager/widgets/site-logo/site-logo.php:413
msgid "Dashed"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:406
#: inc/widgets-manager/widgets/infocard/infocard.php:709
msgid "Rounded Corners"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:440
#: inc/widgets-manager/widgets/page-title/page-title.php:395
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:252
#: inc/widgets-manager/widgets/site-title/site-title.php:386
msgid "Icon Hover Color"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:456
#: inc/widgets-manager/widgets/infocard/infocard.php:771
msgid "Background Hover Color"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:471
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1829
msgid "Border Hover Color"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:501
msgid "Call To Action"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:515
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:245
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1690
#: inc/widgets-manager/widgets/search-button/search-button.php:661
msgid "Button"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:525
msgid "Read More"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:540
msgid "Click Here"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:576
msgid "Extra Small"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:577
#: inc/widgets-manager/widgets/page-title/page-title.php:242
#: inc/widgets-manager/widgets/site-title/site-title.php:217
msgid "Small"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:578
#: inc/widgets-manager/widgets/page-title/page-title.php:243
#: inc/widgets-manager/widgets/site-title/site-title.php:218
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:1031
msgid "Medium"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:579
#: inc/widgets-manager/widgets/page-title/page-title.php:244
#: inc/widgets-manager/widgets/site-title/site-title.php:219
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:1032
msgid "Large"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:580
msgid "Extra Large"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:591
msgid "Colors"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:757
msgid "Text Hover Color"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:837
msgid "Title Tag"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:913
msgid "Description Color"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:931
msgid "CTA Link Text"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:943
msgid "CTA Button Text"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:968
msgid "Link Color"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:985
msgid "Link Hover Color"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:1012
msgid "Margins"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:1020
msgid "Icon Margin"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:1043
msgid "Title Margin"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:1066
msgid "Description Margins"
msgstr ""

#: inc/widgets-manager/widgets/infocard/infocard.php:1089
msgid "CTA Margin"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:83
msgid "Upgrade your Navigation widget"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:84
msgid ""
"Get the Advanced Navigation Menu widget in UAE Pro and unlock advanced "
"layouts, styling, and flexible menu options."
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:207
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:217
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:2047
msgid "Menu"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:223
#. translators: %s Nav menu URL
msgid ""
"Go to the <a href=\"%s\" target=\"_blank\">Menus screen</a> to manage your "
"menus."
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:232
#. translators: %s Nav menu URL
msgid ""
"<strong>There are no menus in your site.</strong><br>Go to the <a "
"href=\"%s\" target=\"_blank\">Menus screen</a> to create one."
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:241
msgid "Last Menu Item"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:257
msgid "Enable Schema Support"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:274
msgid "Hide + & - Sign"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:301
msgid "Horizontal"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:302
msgid "Vertical"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:303
msgid "Expanded"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:304
msgid "Flyout"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:328
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:430
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:194
#: inc/widgets-manager/widgets/site-title/site-title.php:262
msgid "Justify"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:343
msgid "Flyout Orientation"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:359
msgid "Appear Effect"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:364
msgid "Slide"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:365
msgid "Push"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:377
msgid "Hamburger Align"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:414
msgid "Menu Items Align"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:451
msgid "Submenu Icon"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:455
msgid "Arrows"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:456
msgid "Plus Sign"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:457
msgid "Classic"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:466
msgid "Submenu Animation"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:471
msgid "Slide Up"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:483
msgid "Action On Menu Click"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:486
msgid "For Horizontal layout, this will affect on the selected breakpoint"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:488
msgid "Open Submenu"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:489
msgid "Redirect To Self Link"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:499
msgid "Responsive"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:510
msgid "Breakpoint"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:514
msgid "Mobile (768px >)"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:515
msgid "Tablet (1025px >)"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:546
msgid "This is the alignement of menu icon on selected responsive breakpoints."
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:565
msgid "Full Width"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:566
msgid "Enable this option to stretch the Sub Menu to Full Width."
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:584
msgid "Menu Icon"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:615
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:631
#: inc/widgets-manager/widgets/search-button/search-button.php:896
msgid "Close Icon"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:657
msgid "Main Menu"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:668
msgid "Flyout Box Width"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:696
msgid "Flyout Box Padding"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:720
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1379
msgid "Horizontal Padding"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:746
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1402
msgid "Vertical Padding"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:768
#: inc/widgets-manager/widgets/post-info/post-info.php:480
msgid "Space Between"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:795
msgid "Row Spacing"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:816
msgid "Menu Item Top Spacing"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:852
msgid "Link Hover Effect"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:857
msgid "Underline"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:858
msgid "Overline"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:859
msgid "Double Line"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:860
msgid "Framed"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:872
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:914
msgid "Animation"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:893
msgid "Frame Animation"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1039
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1100
msgid "Link Hover Effect Color"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1136
msgid "Dropdown"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1144
msgid ""
"<b>Note:</b> On desktop, below style options will apply to the submenu. On "
"mobile, this will apply to the entire menu."
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1354
msgid "Dropdown Width (px)"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1428
msgid "Top Distance"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1450
msgid "Divider"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1524
msgid "Menu Trigger & Close Icon"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1650
msgid "Close Icon Color"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1668
msgid "Close Icon Size"
msgstr ""

#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:1969
#: inc/widgets-manager/widgets/navigation-menu/navigation-menu.php:2046
msgid "Menu Toggle"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:130
#. translators: %1$s doc link
msgid "<b>Note:</b> Archive page title will be visible on frontend."
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:138
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:126
#: inc/widgets-manager/widgets/site-title/site-title.php:131
msgid "Before Title Text"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:149
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:138
#: inc/widgets-manager/widgets/site-title/site-title.php:142
msgid "After Title Text"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:191
#: inc/widgets-manager/widgets/post-info/post-info.php:386
#: inc/widgets-manager/widgets/retina/retina.php:226
#: inc/widgets-manager/widgets/site-logo/site-logo.php:254
#: inc/widgets-manager/widgets/site-title/site-title.php:184
msgid "Custom URL"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:220
#: inc/widgets-manager/widgets/site-title/site-title.php:229
msgid "HTML Tag"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:245
#: inc/widgets-manager/widgets/site-title/site-title.php:220
msgid "XL"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:246
#: inc/widgets-manager/widgets/site-title/site-title.php:221
msgid "XXL"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:270
msgid "Justified"
msgstr ""

#: inc/widgets-manager/widgets/page-title/page-title.php:338
#: inc/widgets-manager/widgets/site-title/site-title.php:330
msgid "Blend Mode"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:101
msgid "Upgrade your Post Info widget"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:146
msgid "Inline"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:168
msgid "Author"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:169
msgid "Time"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:171
msgid "Terms"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:172
#: inc/widgets-manager/widgets/post-info/post-info.php:345
msgid "Comments"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:181
msgid "Date Format"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:202
msgid "Custom Date Format"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:211
#: inc/widgets-manager/widgets/post-info/post-info.php:248
#. translators: %s: Allowed data letters (see:
#. http:php.net/manual/en/function.date.php).
#. translators: %s: Allowed time letters (see:
#. http:php.net/manual/en/function.time.php).
msgid "Use the letters: %s"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:220
msgid "Time Format"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:238
msgid "Custom Time Format"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:257
msgid "Taxonomy"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:271
msgid "Before"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:282
msgid "Avatar"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:307
msgid "Custom Format"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:332
#: inc/widgets-manager/widgets/post-info/post-info.php:334
#: inc/widgets-manager/widgets/post-info/post-info.php:939
msgid "One Comment"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:417
msgid "Choose Icon"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:473
msgid "List Items"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:504
msgid "Start"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:512
msgid "End"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:539
#: inc/widgets-manager/widgets/site-tagline/site-tagline.php:119
msgid "Style"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:561
msgid "Weight"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:735
msgid "Spacing between Icon & Text"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:793
msgid "Choose"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:960
msgid "%s comment"
msgid_plural "%s comments"
msgstr[0] ""
msgstr[1] ""

#: inc/widgets-manager/widgets/retina/retina.php:130
msgid "Choose Default Image"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:143
msgid "Choose Retina Image"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:191
#: inc/widgets-manager/widgets/retina/retina.php:529
#: inc/widgets-manager/widgets/site-logo/site-logo.php:217
#: inc/widgets-manager/widgets/site-logo/site-logo.php:594
msgid "Caption"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:195
#: inc/widgets-manager/widgets/retina/retina.php:204
#: inc/widgets-manager/widgets/site-logo/site-logo.php:230
msgid "Custom Caption"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:207
msgid "Enter your image caption"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:303
#: inc/widgets-manager/widgets/site-logo/site-logo.php:357
msgid "Max Width"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:492
#: inc/widgets-manager/widgets/site-logo/site-logo.php:572
msgid "Hover Animation"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:499
#: inc/widgets-manager/widgets/site-logo/site-logo.php:547
msgid "Transition Duration"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:597
msgid "Caption Top Spacing"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:632
msgid "Helpful Information"
msgstr ""

#: inc/widgets-manager/widgets/retina/retina.php:641
#. translators: %1$s doc link
msgid "%1$s Getting started article » %2$s"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:154
msgid "Search Box"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:165
msgid "Input Box"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:167
msgid "Input Box With Button"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:177
msgid "Placeholder"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:179
msgid "Type & Hit Enter"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:223
msgid "Input"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:295
#: inc/widgets-manager/widgets/search-button/search-button.php:456
msgid "Placeholder Color"
msgstr ""

#: inc/widgets-manager/widgets/search-button/search-button.php:431
msgid "Focus"
msgstr ""

#: inc/widgets-manager/widgets/site-logo/site-logo.php:153
msgid "Custom Image"
msgstr ""

#: inc/widgets-manager/widgets/site-logo/site-logo.php:165
msgid "Add Image"
msgstr ""

#: inc/widgets-manager/widgets/site-logo/site-logo.php:233
msgid "Enter caption"
msgstr ""

#: inc/widgets-manager/widgets/site-logo/site-logo.php:253
msgid "Media File"
msgstr ""

#: inc/widgets-manager/widgets/site-logo/site-logo.php:278
msgid "Lightbox"
msgstr ""

#: inc/widgets-manager/widgets/site-logo/site-logo.php:295
msgid "View"
msgstr ""

#: inc/widgets-manager/widgets/site-logo/site-logo.php:313
msgid "Site logo"
msgstr ""

#: inc/widgets-manager/widgets/site-logo/site-logo.php:662
msgid "Spacing"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:143
msgid "Upgrade your Woo Products widget"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:144
msgid ""
"Get the advanced Woo Products widget and unlock powerful layouts, filters, "
"and customization options with UAE Pro."
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:180
msgid "WooCommerce Required"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:190
#. translators: %1$s: opening link tag, %2$s: closing link tag
msgid ""
"This widget requires WooCommerce to be installed and activated. %1$sInstall "
"WooCommerce%2$s"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:241
msgid "Products Per Page"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:263
msgid "Content"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:270
msgid "Show Image"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:282
msgid "Show Category"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:306
msgid "Show Rating"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:318
msgid "Show Price"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:330
msgid "Show Short Description"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:342
msgid "Show Add to Cart"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:377
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:780
msgid "Price"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:378
msgid "Popularity"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:379
#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:730
msgid "Rating"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:392
msgid "Descending"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:393
msgid "Ascending"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:565
msgid "Content Padding"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:590
msgid "Category"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:838
msgid "Short Description"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:896
msgid "Add to Cart"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:1030
msgid "Thumbnail"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:1033
msgid "Full Size"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:1034
msgid "WooCommerce Thumbnail"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:1035
msgid "WooCommerce Single"
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:1157
msgid ""
"WooCommerce is not installed or activated. Please install and activate "
"WooCommerce to use this widget."
msgstr ""

#: inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.php:1171
msgid "No products found."
msgstr ""

#. Plugin Name of the plugin/theme
msgid "Ultimate Addons for Elementor (UAE)"
msgstr ""

#. Plugin URI of the plugin/theme
msgid "https://wordpress.org/plugins/header-footer-elementor/"
msgstr ""

#. Description of the plugin/theme
msgid ""
"Ultimate Addons is a powerful plugin allows you to create custom headers "
"and footers with Elementor and display them in selected locations. You can "
"also create custom Elementor blocks and place them anywhere on your website "
"using a shortcode."
msgstr ""

#. Author of the plugin/theme
msgid "Brainstorm Force"
msgstr ""

#. Author URI of the plugin/theme
msgid "https://www.brainstormforce.com/"
msgstr ""

#: inc/widgets-manager/widgets/post-info/post-info.php:186
msgctxt "Date Format"
msgid "June 1, 2024 (F j, Y)"
msgstr ""PK���\C�������*languages/header-footer-elementor-de_DE.monu�[������T�(�(�(�(8�(�($�()
*)"5)X)m)�)<�)v�){I*��*�+�+�+�+�+�+�+	�+,,>,
K,Y,`,q,	�,�,�,'�,�,
�,=�,7%-6]-0�-:�-:.=;.;y.4�.8�.8#/8\/>�/A�/0010B0	S0]0a0h0w0
�0
�0=�0�0	�0
�0<1C1J1Q1&`1�1
�1�1	�1
�1	�1�1�1�1
�1�1
2
22.02_2f2s2
�2�2�2�2�2�2�2�2�2
33(3?<36|30�36�34*4;4IB4�4�4�4�4�4�4�4�4�4�4l5x5�5
�5�5�5�5�5�5�5�5N�5I6
_6
j6u62�6N�6	77N7An7?�7K�7�<8�9�9�9D�9+:
B:M:-]:Q�:6�:C;9X;'�;6�;<�;2.<a<w<�<�<�<�<
�<�<
�<�<
�<6�<45=	j=t={=�=�=!�=
�=�=�=9�=>'>=F>5�??�?7�?#2@V@
i@
t@�@3�@:�@+�@;*A'fA&�A2�A2�A<B7XB6�B�B�B�B�B�B�BC
CC*C
=CKC!RC"tC)�C��C�D6�DE�D,!ENEdE7yE9�EW�E3CFwF4{F
�F�F�F�FQG
RG
]GhGkqG�G�G�G

HH
.H-<HjH|H�H�H�H�H�H�HB�H!I*:IeIJ�J�J�J�J�J
�J
�J.�JK K3(KR\K4�K�K�KML
ZLeLyL|LL�L�L�L�L�L�L�L�L�Le�LFM�RM�M�M�M
N1NIN	NN	XN
bNmN�N�N�N\�N�NO$O
7OJEO
�O�O�O�O
�O�O	�O�OYP[P
aP
oP;zP�P�P�P�P	�P�P�PQQQ	8QBQ^Q~Q�Q;�Q
�Q�Q��Q	�R�R�R�R0�RS
S#S/S+4S5`S�S�S�S�S�S
�S�S	�S
T
T	T'T	8T
BT
MTXT_T	dT	nTxT�T�T�T�T�T�T
�T
U	UU-U=UJUMUYUvU	�U�U�U�U�U
�U�U�U�U
�U�UV	VVV*VAVJVSV
[VfVxV	�V�V�V�V8�V
�VWW3'W[W3lW'�W�W�W	�WX	
XX X-X�3X5�X/Y
7Y	EY
OY
ZYhYlYqY~Y�Y�Y�Y
�Y�Y�Y�YZZZ,Z*8Z
cZqZ
xZ�Z�Z �Z�Z�Z	�Z�Z[[
[""['E[	m[w[�[�[
�[	�[�[	�[�[3�[>\,W\0�\0�\6�\5]	S]]]
j]	u]]�]�]�]�]�]�]�]��]5p^
�^�^�^�^
�^)�^&_6_<_
N_�Y_1`77`1o`2�`=�`a$a1a8a	AaKaXa^apa�a�a
�a6�a	�a�a�a
�al�afb��bic^uc �d7�d-e2>eqe
�e2�e&�e�eGfoHft�f�-g}�g7Th6�h�h�h�h�h��hiivi��ijj$j5j
FjQjUj^jnj"�jF�jB�j	9kCk'Wkk�k�k<�k�k�k@
lNlblsl
�l�l	�l�l�l�l�l�l
�l�l�l	�l
mm
 m
+m9mPm�_m8�m�n�n
�n-�n)o>oQoYolo�o��op.p?pNp^pmp�p
�p�p�p�p
�p�p/�p
qq(-qVq	^q6hq �q�q�q�q�q�q�q
ss'2sZs!is
�s�s"�s�s#�s	tNt�[t��t�yu	Vv!`v
�v�v�v�v�v	�v�v$w-w
CwQwWwpw�w�w�w:�w�wx\.xQ�xS�xA1yUsyP�yVzRqzI�zO{M^{I�{P�{RG|	�|�|�|�|�|�|�|�|}}
+}P9}�}	�}�}J�}~~
~/ ~P~W~c~
t~
�~�~�~�~�~
�~�~	�~
�~�~HP	U_
r
}
������
�
��1�L'�Ht�E��H�L�\�
r�k���	�
�"�	>�
H�S�[�s������	�
(�3�C�^�#{�����
��Ńb�E�[�p���@��w؄P�]�Vl�WÅU�oq����߇����LɈ9�
P�^�9s�]��P�K\�J��4�I(�Hr�E��!�#�5�G�#a� ������ڌ��=(�Bf�	������ōҍߍ����H$�m�%v����= �L^�C��0� �3�
@�N�<Z�K��D�M(�+v�'��=ʒ6�J?�B��M͓�#�+�	>�H�P�
_�m�v�������!��!�3��6�,�ML�X��0� $�E�Hc�L��v��9p���R���#�@� P�tq���	�z�������
��(ʚ
�2�4�J�c�j�}�����	��R���)�ZG�����	��*��
��;)�	e�o�C|�j��<+�h�w�\��
��������!�$�-�	C�M�e�{�z�����	���
ѡܡ��8�>�D�
W�
b�m�������j���(�C�
]�ik�գ��#�*�6�
S�
a��o�����]�y�����������åҥߥ��� �&=�d�{�H��Ԧ����
Χ
ܧ��9�?�F�X�g�Cm�F����	���)�F�U�
q�
|���
������é	ϩ٩��
��� � >�	_�i�y���
��
��
��êߪ����&�:�
S�^�x�~���������
��
ȫӫ�
�	���4�
=�
K�V�b�r���������PƬ�&�5�WG���A��5�*�=�Z�f�o�|���	�����B��ů
֯�
������&�:�Y�q���������ǰΰ�
�+�;�N�T�	]�g�&w�����ȱѱ
ڱ���A�2I�|�
��
��&��IJ	Ӳݲ���D�?T�=��Eҳ@�JY�?��	����	��
�'�0�C�I�i�z����Eo���ƶζ��0�D�V�\�
m�x���H��G�H,�Eu���й
��	�����&�	8�B�O�5X�������	�����6��T����,��B����V	�`�
r�@��4����V��_����p��8�'�D��;�
@�
K�V��\�
���.��������
��#�,�<�#[�J�J��
�#�,?�"l�����B�����U� q���������������	��%�+�8�
@�
N�\�m�����������Dc����o�w�2��.��������7��>���� �,�A�P� f�
������������:��	��+)�U�]�6e� ������������ Know More. Method 1 (Recommended) This will be applicable for all sites from the network.%1$s %3$s %2$s%1$s Getting started article » %2$s%s Comments%s comment100% responsive across all devices24/7 Premium Support250+ templates for every niche404 Page<b>Note:</b> Archive page title will be visible on frontend.<b>Note:</b> On desktop, below style options will apply to the submenu. On mobile, this will apply to the entire menu.<strong>There are no menus in your site.</strong><br>Go to the <a href="%s" target="_blank">Menus screen</a> to create one.A popular templates plugin that provides an extensive library of professional and fully customizable 600+ ready website and templates. More than 1+ Million websites have built with this plugin.About UsAction On Menu ClickActivateActivate AllActivate ElementorActivate Starter TemplatesActivate ThemeActivatedActivated Starter TemplatesActivating Starter Templates...Activating..Activating...ActiveAdd Display RuleAdd Exclusion RuleAdd ImageAdd NewAdd RuleAdd SEO-friendly FAQ sections to pages.Add Theme SupportAdd User RuleAdd a customizable button for quick, one-click top scrolling.Add a high-quality logo that looks sharp on any screen.Add a search bar to help visitors find content easily.Add animated text for more engaging page titles.Add customizable, multi-location maps with custom markers.Add dynamic, animated backgrounds to sections and columns.Add headings, icons, and descriptions in one flexible widget.Add interactive points on images for detailed visual tours.Add locations for where this template should appear.Add locations for where this template should not appear.Add navigation links to guide visitors across your site.Add new attractive shape dividers to Elementor sections.Add stylish and functional menus for seamless site navigation.Add your site's primary logo with flexible customization options.AdvancedAdvanced FeaturesAdvanced HeadingAfter Title TextAlignmentAllAll %sAll %s ArchiveAll ArchivesAll SingularsAll TemplatesAllow %s products to track non-sensitive usage tracking data.Already Exists.AnimationAppear EffectAre you sure you want to switch your current theme to Astra?ArrowsAuthorAuthor ArchiveAutomate WordPress tasks effortlessly.AvatarBackgroundBackground ColorBag LightBag MediumBag SolidBasicBeforeBefore After SliderBefore FooterBefore Title TextBeginnerBlend ModeBlog / Posts PageBoost SEO with rich results & structured data.BorderBorder ColorBorder Hover ColorBorder RadiusBorder StyleBorder WidthBottomBottom LeftBottom RightBrainstorm ForceBrainstorm Force TeamBreadcrumbsBreakpointBubbleBuild Websites 10x Faster with TemplatesBuild attractive, feature-rich galleries with advanced options.Build easy-to-navigate, visually appealing site menus.Build responsive, styled tables to display data.Build your website faster using our prebuilt templatesBusiness HoursBusiness ReviewsButtonBy submitting, you agree to our %1$sTerms%2$s and %3$sPrivacy Policy%4$s.Caldera Form StylerCancelCaptionCaption Top SpacingCartCenterChooseChoose Default ImageChoose IconChoose Retina ImageChoose from our professionally designed websites to build your site faster, with easy customization options.ClassicCloseClose IconClose Icon ColorClose Icon SizeClose Upgrade NoticeColorColumn ShowcaseCommentsCompare Free vs ProCompare the popular features/widgets to find the best option for your website.Contact Form 7 StylerContact UsContact usContent ToggleCopy and paste Elementor content between websites.Copy this shortcode and paste it into your post, page, or text widget content.CopyrightCopyright TextCopyright © [hfe_current_year] [hfe_site_title] | Powered by [hfe_site_title]Could not activate plugin. Please activate from the Plugins page.Could not activate theme. Please activate from the Themes page.Could not install. Please download from WordPress.org and install manually.Could you please do us a BIG favor and give it a 5-star rating on WordPress? This would boost our motivation and help other users make a comfortable decision while choosing the Ultimate Addons for Elementor.Could you please do us a favor and give us a 5-star rating on Trustpilot? It would help others choose Ultimate Addons for Elementor with confidence. Thank you!Countdown TimerCreate Header/FooterCreate High-impact, customizable CTA for promotions and conversions.Create Impressive Header and Footer DesignsCreate NewCreate New PageCreate Stunning Designs with the Pro Version!Create a versatile dual-button setup for navigation and interactive web elements.Create beautiful, custom registration forms for users.Create elegant, customizable lists for menus or product catalogues.Create engaging and customizable headings for your pages.Create high-converting forms with ease.Create sliding panels for navigation or extra content.Create structured how-to pages with automatic schema markup.Create urgency with fixed or recurring countdowns.Cross-Site Copy PasteCurrent ItemCustomCustom BlockCustom CaptionCustom Date FormatCustom FormatCustom ImageCustom SVGCustom Time FormatCustom URLCustomize Gravity Forms with advanced styling options.Customize and display your business hours stylishly.DashboardDashedDateDate ArchiveDate FormatDate FormatJune 1, 2024 (F j, Y)DeactivateDeactivate AllDeactivating...Decorate your site with festive seasonal elements easily.DefaultDesign Your Website in MinutesDesign beautiful layouts with simple drag & drop and display them at desired location with powerful target controls. The plugin comes with inbuilt Elementor widgets that offer essential features to build header and footer. It's a lightweight plugin that works seamlessly with all themes and backed up by 24/7 support.Design beautiful, customizable WordPress login forms.Design engaging popups with interactive animations and content.Design optimized checkout pages for better conversions.Disable Scroll to Top For This PageDisplay ConditionsDisplay OnDisplay RulesDisplay TextDisplay an attractive, customizable Instagram feed.Display and customize blog posts beautifully on your site.Display custom template based on user role.Display customizable copyright text for your site's footer.Display product categories beautifully.Display seamless & interactive videos.Display the before and after versions of an image.Display the title of the current page dynamically.Display timelines or roadmaps with advanced styling options.Display verified reviews from Google and Yelp directly.Display your site's tagline to enhance brand identity.DistanceDividerDo Not Display OnDottedDoubleDouble LineDownloadDropdownDropdown Width (px)Dual Color HeadingEdit TemplateEditorElementor Header & Footer BuilderElementor Header & Footer Builder Elementor Header & Footer Builder OptionsElementor Header & Footer Builder plugin lets you build impactful navigation for your website very easily. Before we begin, we would like to know more about you. This will help us to serve you better.Email address is requiredEmbed Twitter feeds to show real-time content updates.Embed optimized videos with customizable thumbnails and play buttons.Enable Layout for Elementor Canvas Template?Enable Schema SupportEnable Scroll To TopEnable quick content sharing with social media buttons.Enable this option to stretch the Sub Menu to Full Width.Enabling this option will display this layout on pages using Elementor Canvas Template.Encountered an error while performing your request.EndEnsure images look crisp on high-resolution screens.Enter captionEnter your image captionEntire WebsiteError 404: Page not foundError occurred, The version selected is invalid. Try selecting different version.EssentialsExclude OnExpandedExperiencing an issue with current version? Roll back to a previous version to help troubleshoot the issue.ExpertExplore TemplatesExtend Your WebsiteFAQ SchemaFailed to save settings!Fancy HeadingFast and customizable theme for your website.Field is requiredFirst name is requiredFlyoutFlyout Box PaddingFlyout Box WidthFlyout OrientationFocusFooterFor Horizontal layout, this will affect on the selected breakpointForm Stylers and more...Formerly Elementor Header & Footer BuilderFormerly known as "Elementor Header & Footer Builder", this powerful plugin allows you to create custom headers and footers with Elementor and display them in selected locations. You can also create custom Elementor blocks and place them anywhere on your website using a shortcode.Frame AnimationFramedFreeFree & Fastest WordPress Theme.Free Vs ProFree vs ProFront PageFull WidthFull design flexibility for easy customizationGeneralGet ProGet access to advanced blocks and premium features.Get access to advanced widgets and features to create the website that stands out!Get exclusive features and unbeatable performance.  Getting StartedGo to HFE Settings pageGo to the <a href="%s" target="_blank">Menus screen</a> to manage your menus.Google MapGravity Form StylerH1H2H3H4H5H6HTML TagHamburger AlignHeaderHeader & Footer BuilderHeader/Footer BuilderHeightHello! Seems like you have used Ultimate Addons for Elementor to build this website — Thanks a ton!Help CentreHelp us spread the word about the plugin by leaving %2$s %1$s %3$s ratings on %2$s WordPress.org %3$s. Thank you from the Brainstorm Force team!Helpful InformationHideHide + & - SignHide EmptyHighlight team members with customizable layouts.HomeHome IconHome PageHorizontalHorizontal PaddingHotspotHoverHover AnimationHow likely are you to recommend Ultimate Addons for Elementor to your friends or colleagues?How to use featuresHow to use templatesHow to use widgetsHow-to SchemaI agree to receive your newsletters and accept the data privacy statement.I already didI'm a WordPress:I'm building website for:IconIcon ColorIcon Hover ColorIcon SizeIcon SpacingIf neither option works, please contact your theme author to add support for this plugin.ImageImage GalleryImage SizeImprove page readability with automatic, customizable TOCs.InactiveInfo BoxInlineInputInput BoxInput Box With ButtonInstagram FeedInstallInstall ElementorInstall Starter TemplatesInstalledInstalled Starter TemplatesInstalling Starter Templates...Installing..IntermediateInvalid SVG Format, file not uploaded for security reasons!Invalid nonceItems CountIt’s a collection of 40+ unique, creative, and optimized Elementor widgets with 100+ readymade templates. Trusted by more than 600+ K web professionals. It’s a #1 toolkit for Elementor Page Builder.JustifiedJustifyLargeLast Menu ItemLaunch websites with AI or ready-made templates.LayoutLearn MoreLearn More.LeftLet users add items to cart with one click.Let users easily switch between two types of content.License KeyLightboxLinkLink Hover EffectLink Hover Effect ColorList ItemsLoading more results…Logged InLogged OutLogin FormMain MenuMarketing ButtonMax WidthMedia FileMedia TypeMediumMenuMenu CartMenu IconMenu Item Top SpacingMenu Items AlignMenu Trigger & Close IconMethod 2Mobile (768px >)Modal PopupModern, timeless designsMulti ButtonsMy AccountMy clientMyself/My companyNavigation MenuNew TemplateNoNo CommentsNo Templates found in Trash.No Templates found.No ThanksNo results foundNoneNope, maybe laterNormalNot InstalledNote:OffOff - CanvasOff CanvasOk, you deserve itOnOne CommentOpacityOpen SubmenuOption 1 (Recommended)Option 2OverlinePaddingPage TitleParent Templates:Particle BackgroundsParticlesParty PropzPlaceholderPlaceholder ColorPlay background audio to engage visitors upon page load.Please deletePlease enterPlugin Activated.Plugin Installation failed, Please try again later.Plugin InstalledPlugin activation is disabled for you on this site.Plugin installation function not found.Plugin slug is missing.Plugins list not foundPlus SignPositionPost InfoPost LayoutPost LayoutsPostsPowering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for all kinds of websites like blogs, portfolios, business, and WooCommerce stores.Present products with detailed, customizable layouts.PresetsPresto PlayerPrice BoxPrice ListPricing CardsProPushQuick AccessRead DocumentationRead full guideRedirect To Self LinkRequest a FeatureResponsiveResponsive SupportRetina ImageRetina LogoRightRollbackRollback to Previous VersionRow SpacingSchema – All In One Schema Rich SnippetsScroll to TopSearchSearch BoxSearch PageSearch TemplatesSearch pages / post / categoriesSearch results for:Search results for: Search...Searching…SelectSelect IconSelect OptionSelect Option to Add Theme SupportSell your products easily on WordPress.SeparatorSeparator TypeSettingsSettings saved successfully!Shape DividerShortcodeShowShow HomeShow Total PriceShow a mini-cart for seamless shopping experiences.Show author, dates, and reading time with customizable styles.Show cart for seamless shopping experiences.Show or hide content based on user interactions.Show your site’s name in a customizable style.Showcase multiple videos without impacting load times.Showcase prices and features in customizable layouts.Site LogoSite TaglineSite TitleSite logoSizeSkipSlideSlide UpSmallSocial Media IntegrationSocial ShareSolidSometimes above methods might not work well with your theme, in this case, contact your theme author and request them to add support for the <a href="%s">plugin.</a>Sorry, you are not authorized to perform this action.Space BetweenSpacingSpacing between Icon & TextSpacing between ItemsSpecial PagesSpecific Pages / Posts / Taxonomies, etc.Specific TargetStartStarter TemplatesStatus: %sStop building your site from scratch. Use our professional templates for your stunning website.It is easy to customize and completely responsive. Explore hundreds of designs and bring your vision to life in no time.StyleStyle WP Fluent Forms for an attractive, cohesive look.Style and enhance Caldera Forms to fit your site.Style and enhance Contact Form 7 to fit your site.Style headings with dual colours and customizable typography.Submenu AnimationSubmenu IconSubmitSureCartSureFormsSureTriggersTableTable of ContentsTablet (1025px >)TaxonomyTeam MemberTeam photoTemplate %1$s is already assigned to the location %2$sTemplatesTermsTextText ColorThank you for installing %1$s Ultimate Addons for Elementor %2$s Plugin! Click here to %3$sget started. %4$sThank you for your feedbackThe %1$sUltimate Addons for Elementor%2$s plugin has stopped working because you are using an older version of %1$sElementor%2$s plugin.The %1$sUltimate Addons for Elementor%2$s plugin requires %1$sElementor%2$s plugin installed & activated.The Ultimate Addons for Elementor plugin need compatibility with your current theme to work smoothly.</br></br>Following are two methods that enable theme support for the plugin.</br></br>Method 1 is selected by default and that works fine almost will all themes. In case, you face any issue with the header or footer template, try choosing Method 2.The results could not be loaded.The same display setting is already exist in %s post/s.Theme Activated.Theme Installation failed, Please try again later.Theme InstalledTheme SupportTheme activation is disabled for you on this site.Theme installation function not found.Theme slug is missing.This is the alignement of menu icon on selected responsive breakpoints.This method hides your theme's header & footer template with CSS and displays custom templates from the plugin.This method replaces your theme's header (header.php) & footer (footer.php) template with plugin's custom templates.This option will automatically replace your theme's header and footer files with custom templates from the plugin. It works with most themes and is selected by default.This plugin is brought to you by the same team behind the popular WordPress theme %s and a series of Ultimate Addons plugins.This will be applicable for all sites from the network.This will hide the items count until the cart is emptyTimeTime FormatTimelineTitleTo ensure compatibility between the header/footer and your theme, please choose one of the following options to enable theme support:Top DistanceTransition DurationTrusted by more than 1+ Million users, Elementor Header & Footer Builder is a modern way to build advanced navigation for your website.Twitter FeedTypeType & Hit EnterType of TemplateTypographyUAEUAE LiteUltimate AddonsUltimate Addons for ElementorUltimate Addons for Elementor LiteUltimate Addons for Elementor Lite <p>Rollback to Previous Version</p>Ultimate Addons for Elementor Pro offers 50+ widgets and features!UnderlineUnlock Pro FeaturesUnlock Ultimate Addons For Elementor!  Unlock Ultimate FeaturesUpdate ElementorUpgrade NowUpgrade WPForms with customizable design and layout options.Upgrade nowUsage TrackingUse pre-made widget templates to accelerate your design process.Use the letters: %sUseful ResourcesUser Registration FormUser RolesUsersUtilitiesVersionVersion ControlVerticalVertical PaddingVideoVideo GalleryViewView AllView DemoView TemplateView TemplatesVisit SiteVisit WebsiteWP Fluent Forms StylerWPForms StylerWant to help make <strong>%1s</strong> even more awesome? Allow us to collect non-sensitive diagnostic data and usage information. We value your input. How can we improve your experience?We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.WeightWelcome MusicWelcome to Elementor Header & Footer Builder!Welcome to Ultimate Addons for Elementor!White Label OptionWidgetsWidgets / FeaturesWidgets list not foundWidthWith this awesome plugin, experience the easiest way to create a customized header and footer for your website with Elementor. That too 100% FREE!Woo - Add To CartWoo - CategoriesWoo - CheckoutWoo - Mini CartWoo - ProductsWooCommerce Shop PageWordPress Nonce not validated.WordPress.orgXLXXLYesYes! Allow itYou can only selectYou do not have permission to access this page.Your First NameYour Work EmailYour details are submitted successfully.Z Indexcharacterhttps://wordpress.org/plugins/header-footer-elementor/https://www.brainstormforce.com/https://your-link.comitemor more characterss»Project-Id-Version: 
Report-Msgid-Bugs-To: 
Last-Translator: gpt-po v1.2.0
Language-Team: 
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
POT-Creation-Date: 2025-01-10T11:57:03+00:00
PO-Revision-Date: 2025-01-10T11:57:03+00:00
Language: 
Mehr erfahren.Methode 1 (Empfohlen)Dies gilt für alle Seiten im Netzwerk.%1$s %3$s %2$s%1$s Artikel zum Einstieg » %2$s%s Kommentare%s Kommentar100 % responsiv auf allen Geräten24/7 Premium-SupportÜber 250 Vorlagen für jede Nische404-Seite<b>Hinweis:</b> Der Titel der Archivseite wird auf der Frontend sichtbar sein.<b>Hinweis:</b> Auf dem Desktop gelten die folgenden Stiloptionen für das Untermenü. Auf Mobilgeräten gilt dies für das gesamte Menü.<strong>Es gibt keine Menüs auf Ihrer Website.</strong><br>Gehen Sie zum <a href="%s" target="_blank">Menübildschirm</a>, um eines zu erstellen.Ein beliebtes Vorlagen-Plugin, das eine umfangreiche Bibliothek von professionellen und vollständig anpassbaren 600+ fertigen Websites und Vorlagen bietet. Mehr als 1+ Million Websites wurden mit diesem Plugin erstellt.Über unsAktion beim Klicken auf das MenüAktivierenAlle aktivierenAktivieren Sie ElementorStarter-Vorlagen aktivierenTheme aktivierenAktiviertStarter-Vorlagen aktiviertStarter-Vorlagen werden aktiviert...Aktivierung läuft...Aktivieren...AktivAnzeigeregel hinzufügenAusschlussregel hinzufügenBild hinzufügenNeu hinzufügenRegel hinzufügenFügen Sie SEO-freundliche FAQ-Abschnitte zu Seiten hinzu.Theme-Support hinzufügenBenutzerregel hinzufügenFügen Sie eine anpassbare Schaltfläche für schnelles, ein-Klick-Nach-oben-Scrollen hinzu.Fügen Sie ein hochwertiges Logo hinzu, das auf jedem Bildschirm scharf aussieht.Fügen Sie eine Suchleiste hinzu, um Besuchern zu helfen, Inhalte leicht zu finden.Fügen Sie animierten Text für ansprechendere Seitentitel hinzu.Fügen Sie anpassbare, mehrstufige Karten mit benutzerdefinierten Markierungen hinzu.Fügen Sie dynamische, animierte Hintergründe zu Abschnitten und Spalten hinzu.Fügen Sie Überschriften, Symbole und Beschreibungen in einem flexiblen Widget hinzu.Fügen Sie interaktive Punkte auf Bildern für detaillierte visuelle Touren hinzu.Fügen Sie Standorte hinzu, an denen diese Vorlage angezeigt werden soll.Fügen Sie Standorte hinzu, an denen diese Vorlage nicht angezeigt werden soll.Fügen Sie Navigationslinks hinzu, um Besucher durch Ihre Website zu führen.Fügen Sie neue attraktive Formen-Trenner zu Elementor-Abschnitten hinzu.Fügen Sie stilvolle und funktionale Menüs für eine nahtlose Navigation hinzu.Fügen Sie das primäre Logo Ihrer Website mit flexiblen Anpassungsoptionen hinzu.ErweitertErweiterte FunktionenErweiterte ÜberschriftText nach dem TitelAusrichtungAlleAlle %sAlle %s ArchiveAlle ArchiveAlle SingularsAlle VorlagenErlauben Sie %s Produkten, nicht sensible Nutzungsverfolgungsdaten zu verfolgen.Existiert bereits.AnimationErscheinungseffektSind Sie sicher, dass Sie Ihr aktuelles Theme auf Astra wechseln möchten?PfeileAutorAutorenarchivAutomatisieren Sie WordPress-Aufgaben mühelos.AvatarHintergrundHintergrundfarbeTasche leichtTasche mittelTasche festBasisVorVorher-Nachher-SliderVor FußzeileText vor dem TitelAnfängerMischmodusBlog / BeitragsseiteVerbessern Sie SEO mit reichhaltigen Ergebnissen & strukturierten Daten.RandRandfarbeRahmen-Hover-FarbeRandradiusRahmenstilRandbreiteUntenUnten LinksUnten RechtsBrainstorm ForceBrainstorm Force TeamBrotkrumenBreakpointBlaseErstellen Sie Websites 10x schneller mit VorlagenErstellen Sie attraktive, funktionsreiche Galerien mit erweiterten Optionen.Erstellen Sie einfach zu navigierende, visuell ansprechende Site-Menüs.Erstellen Sie responsive, stilisierte Tabellen zur Anzeige von Daten.Erstellen Sie Ihre Website schneller mit unseren vorgefertigten VorlagenÖffnungszeitenGeschäftsbewertungenSchaltflächeDurch das Einreichen stimmen Sie unseren %1$sNutzungsbedingungen%2$s und %3$sDatenschutzrichtlinien%4$s zu.Caldera Form StylerAbbrechenBildunterschriftAbstand oben für BildunterschriftWarenkorbZentrierenWählenStandardbild auswählenIcon auswählenRetina-Bild auswählenWählen Sie aus unseren professionell gestalteten Websites, um Ihre Seite schneller zu erstellen, mit einfachen Anpassungsoptionen.KlassischSchließenSchließen-IconFarbe des Schließen-IconsGröße des Schließen-IconsUpgrade-Benachrichtigung schließenFarbeSpaltenpräsentationKommentareKostenlos vs Pro vergleichenVergleichen Sie die beliebten Funktionen/Widgets, um die beste Option für Ihre Website zu finden.Contact Form 7 StylerKontaktieren Sie unsKontaktieren Sie unsInhalt umschaltenKopieren und Einfügen von Elementor-Inhalten zwischen Websites.Kopieren Sie diesen Shortcode und fügen Sie ihn in den Inhalt Ihres Beitrags, Ihrer Seite oder Ihres Text-Widgets ein.UrheberrechtCopyright-TextCopyright © [hfe_current_year] [hfe_site_title] | Bereitgestellt von [hfe_site_title]Das Plugin konnte nicht aktiviert werden. Bitte aktivieren Sie es auf der Plugin-Seite.Das Theme konnte nicht aktiviert werden. Bitte aktivieren Sie es auf der Theme-Seite.Konnte nicht installiert werden. Bitte laden Sie es von WordPress.org herunter und installieren Sie es manuell.Könnten Sie uns bitte einen großen Gefallen tun und es mit 5 Sternen auf WordPress bewerten? Das würde unsere Motivation steigern und anderen Nutzern helfen, eine komfortable Entscheidung bei der Auswahl der Ultimate Addons für Elementor zu treffen.Könnten Sie uns bitte einen Gefallen tun und uns eine 5-Sterne-Bewertung auf Trustpilot geben? Es würde anderen helfen, Ultimate Addons für Elementor mit Vertrauen zu wählen. Vielen Dank!Countdown-TimerKopf-/Fußzeile erstellenErstellen Sie wirkungsvolle, anpassbare CTAs für Aktionen und Konversionen.Erstellen Sie beeindruckende Kopf- und Fußzeilen-DesignsNeu erstellenNeue Seite erstellenErstellen Sie atemberaubende Designs mit der Pro-Version!Erstellen Sie ein vielseitiges Dual-Button-Setup für Navigation und interaktive Webelemente.Erstellen Sie schöne, benutzerdefinierte Registrierungsformulare für Benutzer.Erstellen Sie elegante, anpassbare Listen für Menüs oder Produktkataloge.Erstellen Sie ansprechende und anpassbare Überschriften für Ihre Seiten.Erstellen Sie mühelos hochkonvertierende Formulare.Erstellen Sie gleitende Panels für Navigation oder zusätzlichen Inhalt.Erstellen Sie strukturierte Anleitungen mit automatischer Schema-Markup.Schaffen Sie Dringlichkeit mit festen oder wiederkehrenden Countdown.Cross-Site Kopieren und EinfügenAktuelles ElementBenutzerdefiniertBenutzerdefinierter BlockBenutzerdefinierte BildunterschriftBenutzerdefiniertes DatumsformatBenutzerdefiniertes FormatBenutzerdefiniertes BildBenutzerdefiniertes SVGBenutzerdefiniertes ZeitformatBenutzerdefinierte URLPassen Sie Gravity Forms mit erweiterten Styling-Optionen an.Passen Sie Ihre Öffnungszeiten stilvoll an und zeigen Sie sie an.DashboardGestricheltDatumDatumsarchivDatumsformat1. Juni 2024 (F j, Y)DeaktivierenAlle deaktivierenDeaktivieren...Dekorieren Sie Ihre Website einfach mit festlichen saisonalen Elementen.StandardGestalten Sie Ihre Website in MinutenGestalten Sie wunderschöne Layouts mit einfachem Drag & Drop und zeigen Sie sie an gewünschter Stelle mit leistungsstarken Zielsteuerungen an. Das Plugin kommt mit integrierten Elementor-Widgets, die wesentliche Funktionen zum Erstellen von Header und Footer bieten. Es ist ein leichtgewichtiges Plugin, das nahtlos mit allen Themen funktioniert und von 24/7 Support unterstützt wird.Gestalten Sie schöne, anpassbare WordPress-Anmeldeformulare.Gestalten Sie ansprechende Popups mit interaktiven Animationen und Inhalten.Gestalten Sie optimierte Checkout-Seiten für bessere Konversionen.Scrollen nach oben für diese Seite deaktivierenAnzeigebedingungenAnzeigen aufAnzeigeregelnAnzeigetextZeigen Sie einen attraktiven, anpassbaren Instagram-Feed an.Zeigen Sie Blogbeiträge schön auf Ihrer Website an und passen Sie sie an.Benutzerdefinierte Vorlage basierend auf der Benutzerrolle anzeigen.Zeigen Sie anpassbaren Urheberrechtstext für die Fußzeile Ihrer Website an.Präsentieren Sie Produktkategorien schön.Nahtlose & interaktive Videos anzeigen.Zeigen Sie die Vorher- und Nachher-Versionen eines Bildes an.Zeigen Sie den Titel der aktuellen Seite dynamisch an.Zeigen Sie Zeitachsen oder Fahrpläne mit erweiterten Styling-Optionen an.Zeigen Sie verifizierte Bewertungen von Google und Yelp direkt an.Zeigen Sie die Tagline Ihrer Website an, um die Markenidentität zu stärken.AbstandTrennerNicht anzeigen aufGepunktetDoppeltDoppelte LinieHerunterladenDropdownDropdown-Breite (px)Zweifarbige ÜberschriftVorlage bearbeitenEditorElementor Header & Footer BuilderElementor Header & Footer BuilderOptionen für den Elementor Header & Footer BuilderDas Elementor Header & Footer Builder-Plugin ermöglicht es Ihnen, eine wirkungsvolle Navigation für Ihre Website sehr einfach zu erstellen. Bevor wir beginnen, möchten wir mehr über Sie erfahren. Dies wird uns helfen, Ihnen besser zu dienen.E-Mail-Adresse ist erforderlichBinden Sie Twitter-Feeds ein, um Echtzeit-Inhaltsaktualisierungen anzuzeigen.Binden Sie optimierte Videos mit anpassbaren Miniaturansichten und Wiedergabetasten ein.Layout für Elementor Canvas-Vorlage aktivieren?Schema-Unterstützung aktivierenScrollen nach oben aktivierenErmöglichen Sie schnelles Teilen von Inhalten mit Social-Media-Buttons.Aktivieren Sie diese Option, um das Untermenü auf volle Breite zu strecken.Wenn Sie diese Option aktivieren, wird dieses Layout auf Seiten angezeigt, die die Elementor Canvas-Vorlage verwenden.Beim Ausführen Ihrer Anfrage ist ein Fehler aufgetreten.EndeStellen Sie sicher, dass Bilder auf hochauflösenden Bildschirmen scharf aussehen.Bildunterschrift eingebenGeben Sie Ihre Bildunterschrift einGesamte WebsiteFehler 404: Seite nicht gefundenEin Fehler ist aufgetreten, die ausgewählte Version ist ungültig. Versuchen Sie, eine andere Version auszuwählen.WesentlichesAusschließen aufErweitertHaben Sie ein Problem mit der aktuellen Version? Stellen Sie auf eine frühere Version zurück, um das Problem zu beheben.ExperteVorlagen erkundenErweitern Sie Ihre WebsiteFAQ-SchemaFehler beim Speichern der Einstellungen!Fancy HeadingSchnelles und anpassbares Theme für Ihre Website.Feld ist erforderlichVorname ist erforderlichFlyoutFlyout-Box-PaddingFlyout-Box-BreiteFlyout-AusrichtungFokusFußzeileFür das horizontale Layout hat dies Auswirkungen auf den ausgewählten BreakpointForm-Styler und mehr...Ehemals Elementor Header & Footer BuilderEhemals bekannt als "Elementor Header & Footer Builder", ermöglicht dieses leistungsstarke Plugin das Erstellen von benutzerdefinierten Kopf- und Fußzeilen mit Elementor und deren Anzeige an ausgewählten Orten. Sie können auch benutzerdefinierte Elementor-Blöcke erstellen und diese überall auf Ihrer Website mit einem Shortcode platzieren.RahmenanimationRahmenKostenlosKostenloses & schnellstes WordPress-Theme.Kostenlos vs. ProKostenlos vs ProStartseiteVolle BreiteVollständige Designflexibilität für einfache AnpassungenAllgemeinPro erhaltenErhalten Sie Zugriff auf erweiterte Blöcke und Premium-Funktionen.Erhalten Sie Zugriff auf erweiterte Widgets und Funktionen, um die Website zu erstellen, die heraussticht!Erhalten Sie exklusive Funktionen und unschlagbare Leistung.Erste SchritteGehe zur HFE-EinstellungsseiteGehen Sie zum <a href="%s" target="_blank">Menübildschirm</a>, um Ihre Menüs zu verwalten.Google MapGravity Form StylerH1H2H3H4H5H6HTML-TagHamburger-AusrichtungKopfzeileHeader & Footer BuilderHeader/Footer BuilderHöheHallo! Es scheint, dass Sie Ultimate Addons für Elementor verwendet haben, um diese Website zu erstellen – Vielen Dank!HilfezentrumHelfen Sie uns, das Wort über das Plugin zu verbreiten, indem Sie %2$s %1$s %3$s Bewertungen auf %2$s WordPress.org %3$s hinterlassen. Vielen Dank vom Brainstorm Force-Team!Hilfreiche InformationenAusblenden+ & - Zeichen ausblendenLeer ausblendenHeben Sie Teammitglieder mit anpassbaren Layouts hervor.StartStartseiten-SymbolStartseiteHorizontalHorizontales PaddingHotspotHoverHover-AnimationWie wahrscheinlich ist es, dass Sie Ultimate Addons für Elementor Ihren Freunden oder Kollegen empfehlen?Wie man Funktionen verwendetWie man Vorlagen verwendetWie man Widgets verwendetHow-to SchemaIch stimme zu, Ihre Newsletter zu erhalten und erkläre mich mit der Datenschutzerklärung einverstanden.Das habe ich bereits getanIch bin ein WordPress:Ich baue eine Website für:SymbolSymbolfarbeFarbe des Icon-Hover-EffektsSymbolgrößeSymbolabstandWenn keine der Optionen funktioniert, wenden Sie sich bitte an den Autor Ihres Themas, um die Unterstützung für dieses Plugin hinzuzufügen.BildBildgalerieBildgrößeVerbessern Sie die Lesbarkeit der Seite mit automatischen, anpassbaren Inhaltsverzeichnissen.InaktivInfo BoxInlineEingabeEingabefeldEingabefeld mit SchaltflächeInstagram FeedInstallierenElementor installierenStarter-Vorlagen installierenInstalliertStarter-Vorlagen installiertStarter-Vorlagen werden installiert...Installation läuft...FortgeschrittenUngültiges SVG-Format, Datei aus Sicherheitsgründen nicht hochgeladen!Ungültiger NonceAnzahl der ElementeEs ist eine Sammlung von 40+ einzigartigen, kreativen und optimierten Elementor-Widgets mit 100+ fertigen Vorlagen. Vertraut von mehr als 600+ K Web-Profis. Es ist das #1 Toolkit für den Elementor Page Builder.RechtsbündigRechtsbündigGroßLetztes MenüelementStarten Sie Websites mit KI oder vorgefertigten Vorlagen.LayoutErfahren Sie mehrMehr erfahren.LinksLassen Sie Benutzer Artikel mit einem Klick in den Warenkorb legen.Lassen Sie Benutzer einfach zwischen zwei Arten von Inhalten wechseln.LizenzschlüsselLightboxLinkLink-Hover-EffektFarbe des Link-Hover-EffektsListenelementeWeitere Ergebnisse laden…EingeloggtAusgeloggtAnmeldeformularHauptmenüMarketing-ButtonMaximale BreiteMediendateiMedientypMittelMenüMenü-WarenkorbMenü-IconAbstand oben für MenüelementAusrichtung der MenüelementeMenüauslöser & Schließen-IconMethode 2Mobil (768px >)Modal PopupModerne, zeitlose DesignsMulti-ButtonsMein KontoMein KundeIch selbst/mein UnternehmenNavigationsmenüNeue VorlageNeinKeine KommentareKeine Vorlagen im Papierkorb gefunden.Keine Vorlagen gefunden.Nein dankeKeine Ergebnisse gefundenKeineNein, vielleicht späterNormalNicht installiertHinweis:AusOff-CanvasOff CanvasOk, das hast du dir verdientEinEin KommentarOpazitätUntermenü öffnenOption 1 (Empfohlen)Option 2ÜberstrichenPolsterungSeitentitelElternvorlagen:Partikel-HintergründePartikelParty RequisitenPlatzhalterFarbe des PlatzhaltersSpielen Sie Hintergrundmusik ab, um Besucher beim Laden der Seite zu engagieren.Bitte löschenBitte eingebenPlugin aktiviert.Die Installation des Plugins ist fehlgeschlagen, bitte versuchen Sie es später erneut.Plugin installiertDie Plugin-Aktivierung ist für Sie auf dieser Seite deaktiviert.Funktion zur Installation des Plugins nicht gefunden.Plugin-Slug fehlt.Plugins-Liste nicht gefundenPluszeichenPositionBeitragsinfoBeitragslayoutBeitragslayoutsBeiträgeMit über 1+ Million Websites wird %s für die schnelle Leistung und Benutzerfreundlichkeit geschätzt, die es bietet. Es eignet sich für alle Arten von Websites wie Blogs, Portfolios, Unternehmen und WooCommerce-Shops.Präsentieren Sie Produkte mit detaillierten, anpassbaren Layouts.VoreinstellungenPresto PlayerPreiskastenPreislistePreiskartenProSchiebenSchneller ZugriffDokumentation lesenVollständigen Leitfaden lesenZu sich selbst umleitenFunktion anfordernReaktionsfähigReaktionsschneller SupportRetina-BildRetina-LogoRechtsRückgängigmachenRollback zur vorherigen VersionReihenabstandSchema – Alle In One Schema Rich SnippetsNach oben scrollenSucheSuchfeldSuchseiteVorlagen suchenSeiten / Beiträge / Kategorien suchenSuchergebnisse für:Suchergebnisse für:Suche...Suche…AuswählenIcon auswählenOption auswählenOption auswählen, um die Unterstützung des Themas hinzuzufügenVerkaufen Sie Ihre Produkte einfach auf WordPress.TrennerTrennertypEinstellungenEinstellungen erfolgreich gespeichert!Formen-TrennerShortcodeAnzeigenStartseite anzeigenGesamtpreis anzeigenZeigen Sie einen Mini-Warenkorb für nahtlose Einkaufserlebnisse an.Zeigen Sie Autor, Daten und Lesezeit mit anpassbaren Stilen an.Zeigen Sie den Warenkorb für nahtlose Einkaufserlebnisse an.Inhalte basierend auf Benutzerinteraktionen anzeigen oder ausblenden.Zeigen Sie den Namen Ihrer Website in einem anpassbaren Stil an.Präsentieren Sie mehrere Videos, ohne die Ladezeiten zu beeinträchtigen.Präsentieren Sie Preise und Funktionen in anpassbaren Layouts.Site-LogoSite-TaglineSeitentitelSite-LogoGrößeÜberspringenRutschenNach oben rutschenKleinIntegration von sozialen MedienSoziale FreigabeDurchgehendManchmal funktionieren die oben genannten Methoden möglicherweise nicht gut mit Ihrem Theme. In diesem Fall kontaktieren Sie den Autor Ihres Themes und bitten Sie ihn, Unterstützung für das <a href="%s">Plugin.</a> hinzuzufügen.Entschuldigung, Sie sind nicht berechtigt, diese Aktion auszuführen.Abstand zwischenAbstandAbstand zwischen Icon & TextAbstand zwischen ElementenSonderseitenSpezifische Seiten / Beiträge / Taxonomien usw.Spezifisches ZielStartStarter-VorlagenStatus: %sHören Sie auf, Ihre Seite von Grund auf neu zu erstellen. Verwenden Sie unsere professionellen Vorlagen für Ihre atemberaubende Website. Es ist einfach anzupassen und vollständig responsiv. Entdecken Sie Hunderte von Designs und bringen Sie Ihre Vision in kürzester Zeit zum Leben.StilStylen Sie WP Fluent Forms für ein attraktives, einheitliches Aussehen.Stylen und verbessern Sie Caldera Forms, um zu Ihrer Website zu passen.Stylen und verbessern Sie Contact Form 7, um zu Ihrer Website zu passen.Stylen Sie Überschriften mit zwei Farben und anpassbarer Typografie.Untermenü-AnimationUntermenü-IconEinreichenSureCartSureFormsSureTriggersTabelleInhaltsverzeichnisTablet (1025px >)TaxonomieTeammitgliedTeamfotoVorlage %1$s ist bereits dem Standort %2$s zugewiesenVorlagenBegriffeTextTextfarbeVielen Dank, dass Sie das %1$s Ultimate Addons für Elementor %2$s-Plugin installiert haben! Klicken Sie hier, um %3$szu beginnen.%4$sVielen Dank für Ihr FeedbackDas %1$sUltimate Addons für Elementor%2$s-Plugin funktioniert nicht mehr, da Sie eine ältere Version des %1$sElementor%2$s-Plugins verwenden.Das %1$Das Ultimate Addons für Elementor-Plugin benötigt Kompatibilität mit Ihrem aktuellen Theme, um reibungslos zu funktionieren.</br></br>Folgend sind zwei Methoden aufgeführt, die den Theme-Support für das Plugin aktivieren.</br></br>Methode 1 ist standardmäßig ausgewählt und funktioniert fast mit allen Themes. Falls Sie Probleme mit der Kopf- oder Fußzeile haben, versuchen Sie, Methode 2 auszuwählen.Die Ergebnisse konnten nicht geladen werden.Die gleiche Anzeigeeinstellung existiert bereits in %s Beitrag/en.Theme aktiviert.Die Installation des Themes ist fehlgeschlagen, bitte versuchen Sie es später erneut.Theme installiertTheme-SupportDie Theme-Aktivierung ist für Sie auf dieser Seite deaktiviert.Funktion zur Installation des Themes nicht gefunden.Theme-Slug fehlt.Dies ist die Ausrichtung des Menü-Icons an den ausgewählten responsiven Breakpoints.Diese Methode blendet die Kopfzeile und die Fußzeile Ihres Themes mit CSS aus und zeigt benutzerdefinierte Vorlagen des Plugins an.Diese Methode ersetzt die Kopfzeile (header.php) und die Fußzeile (footer.php) Ihres Themes durch benutzerdefinierte Vorlagen des Plugins.Diese Option ersetzt automatisch die Header- und Footer-Dateien Ihres Themas durch benutzerdefinierte Vorlagen des Plugins. Es funktioniert mit den meisten Themen und ist standardmäßig ausgewählt.Dieses Plugin wird Ihnen von demselben Team angeboten, das das beliebte WordPress-Theme %s und eine Reihe von Ultimate Addons-Plugins entwickelt hat.Dies gilt für alle Seiten im Netzwerk.Dies blendet die Anzahl der Elemente aus, bis der Warenkorb leer istZeitZeitformatZeitleisteTitelUm die Kompatibilität zwischen Header/Fußzeile und Ihrem Thema sicherzustellen, wählen Sie bitte eine der folgenden Optionen, um die Unterstützung des Themas zu aktivieren:Abstand nach obenÜbergangszeitVertraut von mehr als 1+ Million Nutzern ist der Elementor Header & Footer Builder eine moderne Möglichkeit, eine erweiterte Navigation für Ihre Website zu erstellen.Twitter-FeedTypTippen & Drücken Sie EnterArt der VorlageTypografieUAEUAE LiteUltimate AddonsUltimate Addons für ElementorUltimate Addons für Elementor LiteUltimate Addons für Elementor Lite <p>Rollback zur vorherigen Version</p>Ultimate Addons für Elementor Pro bietet über 50 Widgets und Funktionen!UnterstrichenPro-Funktionen freischaltenUltimate Addons für Elementor freischalten!Ultimative Funktionen freischaltenElementor aktualisierenJetzt upgradenVerbessern Sie WPForms mit anpassbaren Design- und Layoutoptionen.Jetzt upgradenNutzungsverfolgungVerwenden Sie vorgefertigte Widget-Vorlagen, um Ihren Designprozess zu beschleunigen.Verwenden Sie die Buchstaben: %sNützliche RessourcenBenutzerregistrierungsformularBenutzerrollenBenutzerDienstprogrammeVersionVersionskontrolleVertikalVertikales PaddingVideoVideogalerieAnsehenAlle anzeigenDemo anzeigenVorlage anzeigenVorlagen anzeigenWebsite besuchenWebsite besuchenWP Fluent Forms StylerWPForms StylerMöchten Sie helfen, <strong>%1s</strong> noch großartiger zu machen? Erlauben Sie uns, nicht sensible Diagnosedaten und Nutzungsinformationen zu sammeln.Wir schätzen Ihre Meinung. Wie können wir Ihr Erlebnis verbessern?Wir freuen uns, Ihnen zu helfen, Ihr Website-Erlebnis zu verbessern. Gestalten Sie mühelos atemberaubende Websites mit unserem umfassenden Angebot an kostenlosen und Premium-Widgets und Funktionen.GewichtWillkommensmusikWillkommen beim Elementor Header & Footer Builder!Willkommen bei Ultimate Addons für Elementor!White-Label-OptionWidgetsWidgets / FunktionenWidgets-Liste nicht gefundenBreiteErleben Sie mit diesem großartigen Plugin die einfachste Möglichkeit, einen benutzerdefinierten Header und Footer für Ihre Website mit Elementor zu erstellen. Und das 100% KOSTENLOS!Woo - In den WarenkorbWoo - KategorienWoo - KasseWoo - Mini-WarenkorbWoo - ProdukteWooCommerce-ShopseiteWordPress Nonce nicht validiert.WordPress.orgXLXXLJaJa! Erlauben Sie esSie können nur auswählenSie haben keine Berechtigung, auf diese Seite zuzugreifen.Ihr VornameIhre Arbeits-E-MailIhre Daten wurden erfolgreich übermittelt.Z-IndexZeichenhttps://wordpress.org/plugins/header-footer-elementor/https://www.brainstormforce.com/https://your-link.comElementoder mehr Zeichene»PK���\��p���Mlanguages/header-footer-elementor-de_DE-661e5decf2faf3ca4a04ac4ce62faa07.jsonnu�[���{"translation-revision-date":"2025-01-10T11:57:03+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/UltimateFeatures.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Advanced Heading":["Erweiterte \u00dcberschrift"],"Modal Popup":["Modal Popup"],"Info Box":["Info Box"],"Upgrade Now":["Jetzt upgraden"],"Post Layouts":["Beitragslayouts"],"Pricing Cards":["Preiskarten"],"Form Stylers and more...":["Form-Styler und mehr..."],"Column Showcase":["Spaltenpr\u00e4sentation"],"Unlock Ultimate Features":["Ultimative Funktionen freischalten"],"Create Stunning Designs with the Pro Version!":["Erstellen Sie atemberaubende Designs mit der Pro-Version!"],"Get access to advanced widgets and features to create the website that stands out!":["Erhalten Sie Zugriff auf erweiterte Widgets und Funktionen, um die Website zu erstellen, die heraussticht!"],"Compare Free vs Pro":["Kostenlos vs Pro vergleichen"]}}}PK���\�蠿.	.	1themes/storefront/class-hfe-storefront-compat.phpnu�[���<?php
/**
 * HFE_Storefront_Compat setup
 *
 * @package header-footer-elementor
 */

/**
 * Astra theme compatibility.
 */
class HFE_Storefront_Compat {

	/**
	 * Instance of HFE_Storefront_Compat.
	 *
	 * @var $HFE_Storefront_Compat
	 */
	private static $instance = null;

	/**
	 *  Initiator
	 *
	 *  @return HFE_Storefront_Compat
	 */
	// phpcs:ignore
	public static function instance(): HFE_Storefront_Compat {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new HFE_Storefront_Compat();

			add_action( 'wp', [ self::$instance, 'hooks' ] );
		}

		return self::$instance;
	}

	/**
	 * Run all the Actions / Filters.
	 *
	 * @return void
	 */
	// phpcs:ignore
	public function hooks(): void {
		if ( hfe_header_enabled() ) {
			add_action( 'template_redirect', [ $this, 'setup_header' ], 10 );
			add_action( 'storefront_before_header', 'hfe_render_header', 500 );
		}

		if ( hfe_footer_enabled() ) {
			add_action( 'template_redirect', [ $this, 'setup_footer' ], 10 );
			add_action( 'storefront_after_footer', 'hfe_render_footer', 500 );
		}

		if ( hfe_is_before_footer_enabled() ) {
			add_action( 'storefront_before_footer', 'hfe_render_before_footer' );
		}

		if ( hfe_header_enabled() || hfe_footer_enabled() ) {
			add_action( 'wp_enqueue_scripts', [ $this, 'styles' ] );
		}
	}

	/**
	 * Add inline CSS to hide empty divs for header and footer in storefront
	 *
	 * @since 1.2.0
	 * 
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	public function styles(): void {
		$css = '';

		if ( true === hfe_header_enabled() ) {
			$css .= '.site-header {
				display: none;
			}';
		}

		if ( true === hfe_footer_enabled() ) {
			$css .= '.site-footer {
				display: none;
			}';
		}

		wp_add_inline_style( 'hfe-style', $css );
	}

	/**
	 * 
	 * Disable header from the theme.
	 * 
	 * @return void
	 *
	 * // phpcs:ignore
	 */
	// phpcs:ignore
	public function setup_header(): void {
		for ( $priority = 0; $priority < 200; $priority++ ) {
			remove_all_actions( 'storefront_header', $priority );
		}
	}
	// phpcs:ignore
	/**
	 * Disable footer from the theme.
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	public function setup_footer(): void {
		for ( $priority = 0; $priority < 200; $priority++ ) {
			remove_all_actions( 'storefront_footer', $priority );
		}
	}
}

HFE_Storefront_Compat::instance();
PK���\E"�m��+themes/oceanwp/class-hfe-oceanwp-compat.phpnu�[���<?php
/**
 * HFE_OceanWP_Compat setup
 *
 * @package header-footer-elementor
 */

/**
 * OceanWP theme compatibility.
 */
class HFE_OceanWP_Compat {

	/**
	 * Instance of HFE_OceanWP_Compat.
	 *
	 * @var HFE_OceanWP_Compat
	 */
	private static $instance;

	/**
	 *  Initiator
	 */
	public static function instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new HFE_OceanWP_Compat();

			add_action( 'wp', [ self::$instance, 'hooks' ] );
		}

		return self::$instance;
	}

	/**
	 * Run all the Actions / Filters.
	 */
	public function hooks() {
		if ( hfe_header_enabled() ) {
			add_action( 'template_redirect', [ $this, 'setup_header' ], 10 );
			add_action( 'ocean_header', 'hfe_render_header' );
		}

		if ( hfe_is_before_footer_enabled() ) {
			add_action( 'ocean_footer', [ 'Header_Footer_Elementor', 'get_before_footer_content' ], 5 );
		}

		if ( hfe_footer_enabled() ) {
			add_action( 'template_redirect', [ $this, 'setup_footer' ], 10 );
			add_action( 'ocean_footer', 'hfe_render_footer' );
		}
	}

	/**
	 * Disable header from the theme.
	 */
	public function setup_header() {
		remove_action( 'ocean_top_bar', 'oceanwp_top_bar_template' );
		remove_action( 'ocean_header', 'oceanwp_header_template' );
		remove_action( 'ocean_page_header', 'oceanwp_page_header_template' );
	}

	/**
	 * Disable footer from the theme.
	 */
	public function setup_footer() {
		remove_action( 'ocean_footer', 'oceanwp_footer_template' );
	}

}

HFE_OceanWP_Compat::instance();
PK���\�4m��+themes/kadence/class-hfe-kadence-compat.phpnu�[���<?php
/**
 * HFE_Kadence_Compat setup
 *
 * @package header-footer-elementor
 */

/**
 * Kadence theme compatibility.
 *
 * @since 2.4.9
 */
class HFE_Kadence_Compat {

	/**
	 * Instance of HFE_Kadence_Compat.
	 *
	 * @var HFE_Kadence_Compat
	 */
	private static $instance;

	/**
	 *  Initiator
	 *
	 * @return HFE_Kadence_Compat
	 */
	public static function instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new HFE_Kadence_Compat();

			add_action( 'wp', [ self::$instance, 'hooks' ] );
		}

		return self::$instance;
	}

	/**
	 * Run all the Actions / Filters.
	 *
	 * @return void
	 */
	public function hooks() {
		
		if ( hfe_header_enabled() ) {
			add_action( 'template_redirect', [ $this, 'kadence_setup_header' ], 10 );
			add_action( 'kadence_header', 'hfe_render_header' );
		}

		if ( hfe_footer_enabled() ) {
			add_action( 'template_redirect', [ $this, 'kadence_setup_footer' ], 10 );
			add_action( 'kadence_footer', 'hfe_render_footer' );
		}

		if ( hfe_is_before_footer_enabled() ) {
			add_action( 'kadence_before_footer', 'hfe_render_before_footer' );
		}
	}

	/**
	 * Disable header from the theme.
	 *
	 * @return void
	 */
	public function kadence_setup_header() {
		// Remove the main header markup function.
		remove_action( 'kadence_header', 'Kadence\header_markup' );
		
		// Remove individual header row functions in case they are called directly.
		remove_action( 'kadence_top_header', 'Kadence\top_header' );
		remove_action( 'kadence_main_header', 'Kadence\main_header' );
		remove_action( 'kadence_bottom_header', 'Kadence\bottom_header' );
		
		// Remove mobile header functions.
		remove_action( 'kadence_mobile_header', 'Kadence\mobile_header' );
		remove_action( 'kadence_mobile_top_header', 'Kadence\mobile_top_header' );
		remove_action( 'kadence_mobile_main_header', 'Kadence\mobile_main_header' );
		remove_action( 'kadence_mobile_bottom_header', 'Kadence\mobile_bottom_header' );
	}

	/**
	 * Disable footer from the theme.
	 *
	 * @return void
	 */
	public function kadence_setup_footer() {
		// Remove the main footer markup function.
		remove_action( 'kadence_footer', 'Kadence\footer_markup' );
		
		// Remove individual footer row functions in case they are called directly.
		remove_action( 'kadence_top_footer', 'Kadence\top_footer' );
		remove_action( 'kadence_middle_footer', 'Kadence\middle_footer' );
		remove_action( 'kadence_bottom_footer', 'Kadence\bottom_footer' );
	}

	/**
	 * Check if Kadence theme supports blocks header/footer
	 *
	 * @return bool
	 */
	private function has_blocks_support() {
		return function_exists( 'Kadence\kadence' ) && 
			   is_callable( [ \Kadence\kadence(), 'option' ] ) && 
			   \Kadence\kadence()->option( 'blocks_header' ) && 
			   defined( 'KADENCE_BLOCKS_VERSION' );
	}

	/**
	 * Get Kadence theme version for compatibility checks
	 *
	 * @return string
	 */
	private function get_theme_version() {
		return defined( 'KADENCE_VERSION' );
	}

}

HFE_Kadence_Compat::instance();
PK���\dlF'��+themes/genesis/class-hfe-genesis-compat.phpnu�[���<?php
/**
 * Genesis_Compat setup
 *
 * @package header-footer-elementor
 */

/**
 * Genesis theme compatibility.
 */
class HFE_Genesis_Compat {

	/**
	 * Instance of HFE_Genesis_Compat.
	 *
	 * @var HFE_Genesis_Compat
	 */
	private static $instance;

	/**
	 *  Initiator
	 *
	 * @return HFE_Genesis_Compat
	 */
	public static function instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new HFE_Genesis_Compat();

			add_action( 'wp', [ self::$instance, 'hooks' ] );
		}

		return self::$instance;
	}

	/**
	 * Run all the Actions / Filters.
	 *
	 * @return void
	 */
	public function hooks() {
		if ( hfe_header_enabled() ) {
			add_action( 'template_redirect', [ $this, 'genesis_setup_header' ] );
			add_action( 'genesis_header', [ $this, 'genesis_header_markup_open' ], 16 );
			add_action( 'genesis_header', [ $this, 'genesis_header_markup_close' ], 25 );
			add_action( 'genesis_header', [ 'Header_Footer_Elementor', 'get_header_content' ], 16 );
		}

		if ( hfe_is_before_footer_enabled() ) {
			add_action( 'genesis_footer', [ 'Header_Footer_Elementor', 'get_before_footer_content' ], 16 );
		}

		if ( hfe_footer_enabled() ) {
			add_action( 'template_redirect', [ $this, 'genesis_setup_footer' ] );
			add_action( 'genesis_footer', [ $this, 'genesis_footer_markup_open' ], 16 );
			add_action( 'genesis_footer', [ $this, 'genesis_footer_markup_close' ], 25 );
			add_action( 'genesis_footer', [ 'Header_Footer_Elementor', 'get_footer_content' ], 16 );
		}
	}

	/**
	 * Disable header from the theme.
	 *
	 * @return void
	 */
	public function genesis_setup_header() {
		for ( $priority = 0; $priority < 16; $priority++ ) {
			remove_all_actions( 'genesis_header', $priority );
		}
	}

	/**
	 * Disable footer from the theme.
	 *
	 * @return void
	 */
	public function genesis_setup_footer() {
		for ( $priority = 0; $priority < 16; $priority++ ) {
			remove_all_actions( 'genesis_footer', $priority );
		}
	}

	/**
	 * Open markup for header.
	 *
	 * @return void
	 */
	public function genesis_header_markup_open() {
		genesis_markup(
			[
				'html5'   => '<header %s>',
				'xhtml'   => '<div id="header">',
				'context' => 'site-header',
			]
		);

		genesis_structural_wrap( 'header' );
	}

	/**
	 * Close MArkup for header.
	 *
	 * @return void
	 */
	public function genesis_header_markup_close() {
		genesis_structural_wrap( 'header', 'close' );
		genesis_markup(
			[
				'html5' => '</header>',
				'xhtml' => '</div>',
			]
		);
	}

	/**
	 * Open markup for footer.
	 *
	 * @return void
	 */
	public function genesis_footer_markup_open() {
		genesis_markup(
			[
				'html5'   => '<footer %s>',
				'xhtml'   => '<div id="footer" class="footer">',
				'context' => 'site-footer',
			]
		);
		genesis_structural_wrap( 'footer', 'open' );
	}

	/**
	 * Close markup for footer.
	 *
	 * @return void
	 */
	public function genesis_footer_markup_close() {
		genesis_structural_wrap( 'footer', 'close' );
		genesis_markup(
			[
				'html5' => '</footer>',
				'xhtml' => '</div>',
			]
		);
	}
}

HFE_Genesis_Compat::instance();
PK���\X��''7themes/generatepress/class-hfe-generatepress-compat.phpnu�[���<?php
/**
 * GeneratepressCompatibility.
 *
 * @package  header-footer-elementor
 */

/**
 * HFE_GeneratePress_Compat setup
 *
 * @since 1.0
 */
class HFE_GeneratePress_Compat {

	/**
	 * Instance of HFE_GeneratePress_Compat
	 *
	 * @var HFE_GeneratePress_Compat|null
	 */
	private static $instance = null;

	/**
	 *  Initiator
	 *
	 * @return HFE_GeneratePress_Compat
	 */
	// phpcs:ignore
	public static function instance(): HFE_GeneratePress_Compat {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new HFE_GeneratePress_Compat();

			add_action( 'wp', [ self::$instance, 'hooks' ] );
		}

		return self::$instance;
	}

	/**
	 * Run all the Actions / Filters.
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	public function hooks(): void {
		if ( hfe_header_enabled() ) {
			add_action( 'template_redirect', [ $this, 'generatepress_setup_header' ] );
			add_action( 'generate_header', 'hfe_render_header' );
		}

		if ( hfe_is_before_footer_enabled() ) {
			add_action( 'generate_footer', [ 'Header_Footer_Elementor', 'get_before_footer_content' ], 5 );
		}

		if ( hfe_footer_enabled() ) {
			add_action( 'template_redirect', [ $this, 'generatepress_setup_footer' ] );
			add_action( 'generate_footer', 'hfe_render_footer' );
		}
	}

	/**
	 * Disable header from the theme.
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	public function generatepress_setup_header(): void {
		remove_action( 'generate_header', 'generate_construct_header' );
	}

	/**
	 * Disable footer from the theme.
	 *
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	public function generatepress_setup_footer(): void {
		remove_action( 'generate_footer', 'generate_construct_footer_widgets', 5 );
		remove_action( 'generate_footer', 'generate_construct_footer' );
	}
}

HFE_GeneratePress_Compat::instance();
PK���\���	HH+themes/blocksy/class-hfe-blocksy-compat.phpnu�[���<?php
/**
 * HFE_Blocksy_Compat setup
 *
 * @package header-footer-elementor
 */

/**
 * Blocksy theme compatibility.
 *
 * @since 2.4.9
 */
class HFE_Blocksy_Compat {

	/**
	 * Instance of HFE_Blocksy_Compat.
	 *
	 * @var HFE_Blocksy_Compat
	 */
	private static $instance;

	/**
	 *  Initiator
	 *
	 * @return HFE_Blocksy_Compat
	 */
	public static function instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new HFE_Blocksy_Compat();

			add_action( 'wp', [ self::$instance, 'hooks' ] );
		}

		return self::$instance;
	}

	/**
	 * Run all the Actions / Filters.
	 *
	 * @return void
	 */
	public function hooks() {
		
		if ( hfe_header_enabled() ) {
			add_action( 'template_redirect', [ $this, 'blocksy_setup_header' ], 10 );
			add_filter( 'blocksy:builder:header:enabled', '__return_false' );
		}

		if ( hfe_footer_enabled() ) {
			add_action( 'template_redirect', [ $this, 'blocksy_setup_footer' ], 10 );
			add_filter( 'blocksy:builder:footer:enabled', '__return_false' );
		}

		if ( hfe_is_before_footer_enabled() ) {
			add_action( 'blocksy:footer:before', 'hfe_render_before_footer', 1 );
		}
	}

	/**
	 * Disable header from the theme.
	 *
	 * @return void
	 */
	public function blocksy_setup_header() {
		// Use Blocksy's filter to disable theme header.
		add_filter( 'blocksy:builder:header:enabled', '__return_false' );
		
		// Add HFE header to blocksy_output_header function.
		add_action( 'blocksy:header:before', 'hfe_render_header', 5 );
	}

	/**
	 * Disable footer from the theme.
	 *
	 * @return void
	 */
	public function blocksy_setup_footer() {
		// Use Blocksy's filter to disable theme footer.
		add_filter( 'blocksy:builder:footer:enabled', '__return_false' );
		
		// Add HFE footer - use a different hook that's not inside blocksy_output_footer.
		add_action( 'blocksy:footer:before', [ $this, 'render_custom_footer' ], 5 );
	}
	
	/**
	 * Render custom footer with proper HTML structure
	 *
	 * @return void
	 */
	public function render_custom_footer() {
		echo '<footer id="footer">';
		hfe_render_footer();
		echo '</footer>';
	}
}

HFE_Blocksy_Compat::instance();
PK���\�����'themes/astra/class-hfe-astra-compat.phpnu�[���<?php
/**
 * HFE_Astra_Compat setup
 *
 * @package header-footer-elementor
 */

/**
 * Astra theme compatibility.
 */
class HFE_Astra_Compat {

	/**
	 * Instance of HFE_Astra_Compat.
	 *
	 * @var HFE_Astra_Compat
	 */
	private static $instance;

	/**
	 *  Initiator
	 *
	 * @return HFE_Astra_Compat
	 */
	public static function instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new HFE_Astra_Compat();

			add_action( 'wp', [ self::$instance, 'hooks' ] );
		}

		return self::$instance;
	}

	/**
	 * Run all the Actions / Filters.
	 *
	 * @return void
	 */
	public function hooks() {
		if ( hfe_header_enabled() ) {
			add_action( 'template_redirect', [ $this, 'astra_setup_header' ], 10 );
			add_action( 'astra_header', 'hfe_render_header' );
		}

		if ( hfe_footer_enabled() ) {
			add_action( 'template_redirect', [ $this, 'astra_setup_footer' ], 10 );
			add_action( 'astra_footer', 'hfe_render_footer' );
		}

		if ( hfe_is_before_footer_enabled() ) {
			add_action( 'astra_footer_before', 'hfe_render_before_footer' );
		}
	}

	/**
	 * Disable header from the theme.
	 *
	 * @return void
	 */
	public function astra_setup_header() {
		remove_action( 'astra_header', 'astra_header_markup' );

		// Remove the new header builder action.
		if ( class_exists( 'Astra_Builder_Helper' ) && Astra_Builder_Helper::$is_header_footer_builder_active ) {
			remove_action( 'astra_header', [ Astra_Builder_Header::get_instance(), 'prepare_header_builder_markup' ] );
		}
	}

	/**
	 * Disable footer from the theme.
	 *
	 * @return void
	 */
	public function astra_setup_footer() {
		remove_action( 'astra_footer', 'astra_footer_markup' );

		// Remove the new footer builder action.
		if ( class_exists( 'Astra_Builder_Helper' ) && Astra_Builder_Helper::$is_header_footer_builder_active ) {
			remove_action( 'astra_footer', [ Astra_Builder_Footer::get_instance(), 'footer_markup' ] );
		}
	}
}

HFE_Astra_Compat::instance();
PK���\'��t'	'	-themes/bb-theme/class-hfe-bb-theme-compat.phpnu�[���<?php
/**
 * BB Theme Compatibility.
 *
 * @package  header-footer-elementor
 */

/**
 * HFE_BB_Theme_Compat setup
 *
 * @since 1.0
 */
class HFE_BB_Theme_Compat {

	/**
	 * Instance of HFE_BB_Theme_Compat
	 *
	 * @var HFE_BB_Theme_Compat|null
	 */
	private static $instance = null;

	/**
	 *  Initiator
	 *
	 * @return self
	 */
	// phpcs:ignore
	public static function instance(): self {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();

			add_action( 'wp', [ self::$instance, 'hooks' ] );
		}

		return self::$instance;
	}

	/**
	 * Run all the Actions / Filters.
	 * // phpcs:ignore
	 * @return void 
	 */
	// phpcs:ignore
	public function hooks(): void {
		if ( hfe_header_enabled() ) {
			add_filter( 'fl_header_enabled', '__return_false' );
			add_action( 'fl_before_header', [ $this, 'get_header_content' ] );
		}

		if ( hfe_is_before_footer_enabled() ) {
			add_action( 'fl_after_content', [ 'Header_Footer_Elementor', 'get_before_footer_content' ], 10 );
		}

		if ( hfe_footer_enabled() ) {
			add_filter( 'fl_footer_enabled', '__return_false' );
			add_action( 'fl_after_content', [ $this, 'get_footer_content' ] );
		}
	}

	/**
	 * Display header markup for beaver builder theme.
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	public function get_header_content(): void {
		$header_layout = FLTheme::get_setting( 'fl-header-layout' );

		if ( 'none' == $header_layout || is_page_template( 'tpl-no-header-footer.php' ) ) {
			return;
		}

		?>
		<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">
			<p class="main-title bhf-hidden" itemprop="headline"><a href="<?php echo bloginfo( 'url' ); ?>"
																	title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"
																	rel="home"><?php bloginfo( 'name' ); ?></a></p>
			<?php Header_Footer_Elementor::get_header_content(); ?>
		</header>
		<?php
	}

	/**
	 * Display footer markup for beaver builder theme.
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	public function get_footer_content(): void {
		if ( is_page_template( 'tpl-no-header-footer.php' ) ) {
			return;
		}

		?>
		<footer itemscope="itemscope" itemtype="https://schema.org/WPFooter">
			<?php Header_Footer_Elementor::get_footer_content(); ?>
		</footer>
		<?php
	}
}

HFE_BB_Theme_Compat::instance();
PK���\Q�˩�%themes/neve/class-hfe-neve-compat.phpnu�[���<?php
/**
 * HFE_Neve_Compat setup
 *
 * @package header-footer-elementor
 */

/**
 * Neve theme compatibility.
 *
 * @since 2.4.9
 */
class HFE_Neve_Compat {

	/**
	 * Instance of HFE_Neve_Compat.
	 *
	 * @var HFE_Neve_Compat
	 */
	private static $instance;

	/**
	 *  Initiator
	 *
	 * @return HFE_Neve_Compat
	 */
	public static function instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new HFE_Neve_Compat();

			add_action( 'wp', [ self::$instance, 'hooks' ] );
		}

		return self::$instance;
	}

	/**
	 * Run all the Actions / Filters.
	 *
	 * @return void
	 */
	public function hooks() {
		
		if ( hfe_header_enabled() ) {
			add_action( 'template_redirect', [ $this, 'neve_setup_header' ], 10 );
		}

		if ( hfe_footer_enabled() ) {
			add_action( 'template_redirect', [ $this, 'neve_setup_footer' ], 10 );
		}

		if ( hfe_is_before_footer_enabled() ) {
			add_action( 'neve_before_footer_hook', 'hfe_render_before_footer' );
		}
	}

	/**
	 * Disable header from the theme.
	 *
	 * @return void
	 */
	public function neve_setup_header() {
		// Remove all actions from neve_do_header to prevent double header.
		remove_all_actions( 'neve_do_header' );
		remove_all_actions( 'neve_do_top_bar' );
		
		// Add our header after removing theme's header.
		add_action( 'neve_do_header', 'hfe_render_header', 0 );
	}

	/**
	 * Disable footer from the theme.
	 *
	 * @return void
	 */
	public function neve_setup_footer() {
		// Remove all actions from neve_do_footer to prevent double footer.
		remove_all_actions( 'neve_do_footer' );
		
		// Add our footer after removing theme's footer.
		add_action( 'neve_do_footer', 'hfe_render_footer', 0 );
	}
}

HFE_Neve_Compat::instance();
PK���\�H�SSthemes/default/hfe-header.phpnu�[���<?php
/**
 * Header file in case of the elementor way
 *
 * @package header-footer-elementor
 * @since 1.2.0
 */

?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>" />
	<meta name="viewport" content="width=device-width, initial-scale=1" />
	<link rel="profile" href="http://gmpg.org/xfn/11" />
	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
	<?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
<?php do_action( 'wp_body_open' ); ?>
<div id="page" class="hfeed site">

<?php do_action( 'hfe_header' ); ?>
PK���\=����+themes/default/class-hfe-default-compat.phpnu�[���<?php
/**
 * HFE_Default_Compat setup
 *
 * @package header-footer-elementor
 */

namespace HFE\Themes;

/**
 * Astra theme compatibility.
 */
class HFE_Default_Compat {

	/**
	 *  Initiator
	 */
	public function __construct() {
		add_action( 'wp', [ $this, 'hooks' ] );
	}

	/**
	 * Run all the Actions / Filters.
	 *
	 * @return void
	 *
	 * // phpcs:ignore
	 */
	// phpcs:ignore
	public function hooks(): void {
		if ( hfe_header_enabled() ) {
			// Replace header.php template.
			add_action( 'get_header', [ $this, 'override_header' ] );

			// Display HFE's header in the replaced header.
			add_action( 'hfe_header', 'hfe_render_header' );
		}

		if ( hfe_footer_enabled() || hfe_is_before_footer_enabled() ) {
			// Replace footer.php template.
			add_action( 'get_footer', [ $this, 'override_footer' ] );
		}

		if ( hfe_footer_enabled() ) {
			// Display HFE's footer in the replaced header.
			add_action( 'hfe_footer', 'hfe_render_footer' );
		}

		if ( hfe_is_before_footer_enabled() ) {
			add_action( 'hfe_footer_before', [ 'Header_Footer_Elementor', 'get_before_footer_content' ] );
		}
	}

	/**
	 * Function for overriding the header in the elmentor way.
	 *
	 * @since 1.2.0
	 *
	 * // phpcs:ignore
	 * @return void
	 */ 
	// phpcs:ignore
	public function override_header(): void {
		require HFE_DIR . 'themes/default/hfe-header.php';
		$templates   = [];
		$templates[] = 'header.php';
		// Avoid running wp_head hooks again.
		remove_all_actions( 'wp_head' );
		ob_start();
		locate_template( $templates, true );
		ob_get_clean();
	}

	/**
	 * Function for overriding the footer in the elmentor way.
	 *
	 * @since 1.2.0
	 *
	 * @return void
	 *
	 * // phpcs:ignore
	 */ 
	// phpcs:ignore
	public function override_footer(): void {
		require HFE_DIR . 'themes/default/hfe-footer.php';
		$templates   = [];
		$templates[] = 'footer.php';
		// Avoid running wp_footer hooks again.
		remove_all_actions( 'wp_footer' );
		ob_start();
		locate_template( $templates, true );
		ob_get_clean();
	}
}

new HFE_Default_Compat();
PK���\�vkLthemes/default/hfe-footer.phpnu�[���<?php
/**
 * Footer file in case of the elementor way
 *
 * @package header-footer-elementor
 * @since 1.2.0
 */

?>

<?php do_action( 'hfe_footer_before' ); ?>
<?php do_action( 'hfe_footer' ); ?>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html> 
PK���\6L}oVV3themes/default/class-global-theme-compatibility.phpnu�[���<?php
/**
 * Support all themes.
 *
 * @package header-footer-elementor
 */

namespace HFE\Themes;

/**
 * Global theme compatibility.
 */
class Global_Theme_Compatibility {

	/**
	 *  Initiator
	 */
	public function __construct() {
		add_action( 'wp', [ $this, 'hooks' ] );
	}

	/**
	 * Run all the Actions / Filters.
	 *
	 * @return void
	 */
	// phpcs:ignore
	public function hooks(): void {
		if ( hfe_header_enabled() ) {
			// Replace header.php.
			add_action( 'get_header', [ $this, 'option_override_header' ] );

			add_action( 'wp_body_open', [ 'Header_Footer_Elementor', 'get_header_content' ] );
			add_action( 'hfe_fallback_header', [ 'Header_Footer_Elementor', 'get_header_content' ] );
		}

		if ( hfe_is_before_footer_enabled() ) {
			add_action( 'wp_footer', [ 'Header_Footer_Elementor', 'get_before_footer_content' ], 20 );
		}

		if ( hfe_footer_enabled() ) {
			add_action( 'wp_footer', [ 'Header_Footer_Elementor', 'get_footer_content' ], 50 );
		}

		if ( hfe_header_enabled() || hfe_footer_enabled() ) {
			add_action( 'wp_enqueue_scripts', [ $this, 'force_fullwidth' ] );
		}
	}

	/**
	 * Force full width CSS for the header.
	 *
	 * @since 1.2.0
	 *
	 *  // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	public function force_fullwidth(): void {
		$css = '
		.force-stretched-header {
			width: 100vw;
			position: relative;
			margin-left: -50vw;
			left: 50%;
		}';

		if ( true === hfe_header_enabled() ) {
			$css .= 'header#masthead {
				display: none;
			}';
		}

		if ( true === hfe_footer_enabled() ) {
			$css .= 'footer#colophon {
				display: none;
			}';
		}

		wp_add_inline_style( 'hfe-style', $css );
	}

	/**
	 * Function overriding the header in the wp_body_open way.
	 *
	 * @since 1.2.0
	 *
	 * // phpcs:ignore
	 * @return void
	 */
	// phpcs:ignore
	public function option_override_header(): void {
		$templates   = [];
		$templates[] = 'header.php';
		locate_template( $templates, true );

		if ( ! did_action( 'wp_body_open' ) ) {
			echo '<div class="force-stretched-header">';
			do_action( 'hfe_fallback_header' );
			echo '</div>';
		}
	}
}
new Global_Theme_Compatibility();
PK���\��d���;themes/hello-elementor/class-hfe-hello-elementor-compat.phpnu�[���<?php
/**
 * HFE_Hello_Elementor_Compat setup
 *
 * @package header-footer-elementor
 */

/**
 * Hello Elementor compatibility.
 */
class HFE_Hello_Elementor_Compat {

	/**
	 * Instance of HFE_Hello_Elementor_Compat.
	 *
	 * @var HFE_Hello_Elementor_Compat|null
	 */
	private static $instance = null;

	/**
	 *  Initiator
	 *
	 * @return HFE_Hello_Elementor_Compat
	 */
	// phpcs:ignore
	public static function instance(): HFE_Hello_Elementor_Compat {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new HFE_Hello_Elementor_Compat();

			if ( ! class_exists( 'HFE_Default_Compat' ) ) {
				require_once HFE_DIR . 'themes/default/class-hfe-default-compat.php';
			}
		}

		return self::$instance;
	}
}

HFE_Hello_Elementor_Compat::instance();
PK���\���55,assets/js/hfe-elementor-editor-bar-simple.jsnu�[���/**
 * Header Footer Elementor - Simple Editor Bar Integration
 * Based on SureRank implementation pattern
 */

(function() {
    'use strict';


    // Flag to prevent duplicate button creation
    let hfeButtonAdded = false;

    // Helper function to add button to Elementor editor bar using jQuery (like SureRank)
    function addHFEButtonToElementorBar() {
        // Prevent duplicate buttons
        if (hfeButtonAdded) {
            return;
        }

        // Only show button if UAE Pro is NOT active
        if (window.hfeEditorConfig && window.hfeEditorConfig.isUAEPro) {
            return;
        }

        
        // Use jQuery like SureRank does
        const $ = window.jQuery;
        if (!$) {
            return;
        }

        // Wait a minimal time for Elementor to be ready
        setTimeout(() => {
            // Check if HFE button already exists (be specific, don't check for SureRank)
            if ($('#hfe-dashboard-button').length > 0) {
                hfeButtonAdded = true;
                return;
            }

            // Look for the same selector pattern that SureRank uses
            const targetContainer = $('#elementor-editor-wrapper-v2 header .MuiGrid-root:nth-child(3) .MuiStack-root');
            
            if (targetContainer.length) {
                
                // Get existing button classes from SureRank pattern
                const existingButton = targetContainer.find('button').first();
                const buttonClasses = existingButton.length ? existingButton.attr('class') : 'MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium';
                const svgClasses = existingButton.find('svg').attr('class') || 'MuiSvgIcon-root MuiSvgIcon-fontSizeMedium';

                // Create HFE button wrapper
                const hfeWrapper = $('<div class="hfe-root" id="hfe-dashboard-button"></div>');
                const buttonContainer = $('<div class="relative"></div>');
                
                // Create HFE button with plugin icon
                const iconUrl = window.hfeEditorConfig && window.hfeEditorConfig.iconUrl 
                    ? window.hfeEditorConfig.iconUrl 
                    : '/wp-content/plugins/header-footer-elementor/assets/images/settings/logo.svg';
                const hfeButton = $(`
                    <button type="button" class="${buttonClasses}" 
                            aria-label="Header Footer Elementor Dashboard" 
                            tabindex="0">
                        <img src="${iconUrl}" 
                             width="22" height="22" >
                    </button>
                `).on('click', function() {
                    // Always redirect to HFE dashboard.
                    const adminUrl = window.hfeEditorConfig && window.hfeEditorConfig.adminUrl
                        ? window.hfeEditorConfig.adminUrl
                        : '/wp-admin/admin.php?page=hfe#dashboard';
                    window.open(adminUrl, '_blank');
                });

                // Add conditional tooltip functionality
                function getTooltipText() {                    
                    // Default tooltip
                    return window.hfeEditorConfig && window.hfeEditorConfig.strings && window.hfeEditorConfig.strings.headerFooterBuilder 
                        ? window.hfeEditorConfig.strings.headerFooterBuilder 
                        : 'Header Footer Builder';
                }

                hfeButton.hover(
                    function() {
                        // Show conditional tooltip on hover
                        const tooltipText = getTooltipText();
                        $(this).attr('title', tooltipText);
                    },
                    function() {
                        // Hide tooltip
                        $(this).removeAttr('title');
                    }
                );

                buttonContainer.append(hfeButton);
                hfeWrapper.append(buttonContainer);
                
                // Insert after the last button (like SureRank does)
                targetContainer.children().last().after(hfeWrapper);
                
                hfeButtonAdded = true;
            }
        }, 500);
    }

    // Initialize when Elementor is ready (following SureRank pattern)
    function initializeHFEButton() {
        // Check if we're in Elementor editor
        if (!window.elementor) {
            return;
        }

        addHFEButtonToElementorBar();
    }

    // Use the same initialization pattern as SureRank
    window.addEventListener('elementor/frontend/init', () => {
        setTimeout(initializeHFEButton, 200);
    });

    // Also try direct initialization
    if (document.readyState === 'loading') {
        document.addEventListener('DOMContentLoaded', () => {
            setTimeout(initializeHFEButton, 300);
        });
    } else {
        setTimeout(initializeHFEButton, 300);
    }

    // Fallback with window load
    window.addEventListener('load', () => {
        setTimeout(initializeHFEButton, 500);
    });

})();PK���\��I���assets/js/hfe-promo-notice.jsnu�[���window.hfePromoNotice = {
	storageKey: 'hfe_promo_notice_dismissed',
	oneMonthMs: 2592000000, // 30 days in milliseconds.

	init: function () {
		if ( this.shouldShow() ) {
			this.show();
		}
	},

	shouldShow: function () {
		try {
			var dismissed = localStorage.getItem( this.storageKey );
			if ( ! dismissed ) {
				return true;
			}
			var dismissedTime = parseInt( dismissed );
			var now = Date.now();
			return now - dismissedTime >= this.oneMonthMs;
		} catch ( e ) {
			return true;
		}
	},

	show: function () {
		var notice = document.getElementById( 'hfe-promo-notice' );
		if ( notice ) {
			notice.classList.add( 'show' );
		}
	},

	dismiss: function () {
		var notice = document.getElementById( 'hfe-promo-notice' );
		if ( notice ) {
			notice.classList.add( 'hide' );
			setTimeout( function () {
				notice.remove();
			}, 400 );
		}
		try {
			localStorage.setItem( this.storageKey, Date.now().toString() );
		} catch ( e ) {
			console.log( 'Could not save dismissal state' );
		}
	},
};

if ( 'loading' === document.readyState ) {
	document.addEventListener( 'DOMContentLoaded', function () {
		hfePromoNotice.init();
	} );
} else {
	hfePromoNotice.init();
}
PK���\��֟
'
'assets/images/upgrade-pro.pngnu�[����PNG


IHDR����ߊIDATx�]���Νz�I����ba���J(!
H��(&
*
؊�]�؉"*��˲�j��[�~��aλwn�����9��E 8�zB��oa0������v	=@8@ @ @ @ @ @`� �&�9�$@ @ @ @ @�vؚ	�v�	Z؊}+�Y���@@��L�     �!�Vt�U������MZب��Q��<��yp��^���;B��ny0�����m��зŻZ�c
Z�}�)�J����-bA��E h=@ @ @ @�?!��-�     �e!��u?mj������m��з�[,@ @ @ @`{B  ���nc�]��6#�oF�6�o,$�vj��������@@�� 3@ @ @ @ @`�@  ��>Z�.A�[=�o��0@�@�@�@�@�z��6A�����7�A��@@赍p�~�@�@�"�  �E  �,�G�@�@�@�@��֍@@�[����]���B�jnU�h�@�@�@�@���#��c��.A����7"�AS����7�A���@�v�@@���
�    �m"��y_�Q�.A�[�oq�$P(@ @ @ @ @��#���,�    P���B��U�4B���H�O�@�@�@�@�"����6zc�al_��}��`��1����.>��~M�c���6��}��z:ؤ,�__�Y�ʐn�I;:�$��I`:	�t=��U������v�7�G����Y��4o�ҪL�p��-�+K�@�@5�W�|l���LAXh(:�m~���C6�o��C�
��"�d*SD��|+T?P9@ @�A  �� ;@`[A�Nn�.�e�\�Ͷ2�`�!���o����
A�y��9U�	x@|C�	�l���eޗ@���������ƹM�|O��Fn�ƃ���sB�"�A��fD`�=��^9������fT�ֻ�"�9��䗗%PP�nA�wt  ��}�Ct�%!Ь�Y��9���ow��[�^[��Y�[YY�����t"�n��6?���=�����SU��G%�D��-_���k!̵C�|(B�8���oc74οC`�8s?�|v�zMi�&��][Ii׶s+**�UUUȉ�H���5�!��C���b�F�k���f׃�:�}6V�[Z;���h�:u���+�
X�[�M
�	�@���l���c��^�V�^8j�V?��@D�Ba=ldR&|��8��S4H�J}+�q����־�ʔ��vܹ������9�ڎ��w|��L-n[����kB߮o0�2��7kV�.lڤ�)5i�Rؤa�x<��Ŷ,M�D�_�2 � �-!��t7���ly���/$�8𐽊���ƶ<%7@#E�ڨB��A��D‘�
h.�  �" �@��69Ѽ��hD��w�]��n�+P���ZRXT�ij^-w4  ��������ZG�t0c�c�DZl�)�~��K��xNT�NM�s\�Kے�
t�����1jl������UL�t�u+n_��&]�Y�h4v]��#�J�zu?[���`H�7�o�?�Z��9ae:���U�c��בk��l}���o�E8�v@�:��$ti�o}
4�KB�KX���
��p��サ����F�e���1��TQQ�4E�a��4ml)�"���m��з���b# ���t�n�H�U�v��ֱ�!�7�ز��&�������u�7�\d�P8V�T8H�j��{��=P<@`�"�����Pq[i=��'l�6Oc���{��6-X�
dz����.u�ͣR�k�@�@m zm���U"�s��yB�T&�B��L4ʩ3pl�/ǝu�Y�<#�P��@l�3�G""|�� �� ��s/��l ��|�N�v���j����~�q�f7kuQ)�Ǯ�y�He�H��HX	,t�G �
b[H0��
E �^�L/���Ah*2�L�G�Y'�o�~��	[�rM�t2�P���G�l��t��K&2��.S7��l^B߼��oA���*�	X���X��@�zb룶��DQ�x�2��iB�E��=�cYG���}z�U6���7���6���q�6��M$7�'���8{jN�)�-..V�Ɓ��hT�V-Z��**�@�@�C (yf�e`�9E�?B��
�'�Yo�^��g�.��>�+M�Pt��Nݝ�F ��uLi�E�x4�UUU�7�*~`�o�75�9@�o�o�	��O��u�	E°M~�EzMU��v��$Fd�{_��*|@���`]G$��
�)8 lluԶz0�-dzK��Ѫd:
]U�������}�|@��n���Y�K��5Ή���ǁ�B��y\P��4���/�����>i�)���o������`��ף�+3��FX�Ob�ֳ<�����˯?�ߴ��˶l��Teʀǃ�	*/P��pvLe�z^N���u���i��
�Nل�vFٮQ���~�v�ub���C��ֆ@@�[��J�-*�Z��vB�v�P�}�E�];lQ��e9e�iתT���$���C���ftةG��rvhҤ�kZ��j�qخ�
wEQ���O�N�o-c�Xz��9�U��z
{�6V������ֿ땽���s��e! �,um�Enq�a7_0`ܭWt�9���/?<��W����'_t�㯸������6m���Ϝ9�z����rr!Tiv�{yz|ǰ�{Ж��C�S{�wmӶ����󾹢HR�?Yco��õ�y��[�����~~���i��⩿|�ӂ��}����x�r�jV-�m\O�Kpn����?�9����4��;��f�*/�b�ц�C;%��>!��C��O�P̏�t��h�5��ܜ�ϸ�؝��qms6�[Mکb�1�2Q��c�0�KW`�'s�<��q��N�M�6F�忮(0�&�Od��$�l�>O��7�VƤTUj�l�v�ѳ���)6�臟��!�>n��;5��$R��=���[�P�7�o$ �f��@�3��|F��_��M˗#�
#�Y�)4������0\�ⳝvi�_v�m}ޞrs�s������s����yoj�fj.BS�I�Y_!vi޺��ޯ��ذ*JJsUUi�+:ȣ�����:e)�P�-'m7g�:��ՠ�!R?�}�ɇ��	�#Njy��տ֒�k[@j���~��tS"P�{����3�S�Y�+rt�$���L�y,Q�0?
?�2UP��p+�u�?9�e��;�>�p���9��!���R����+�J%Ӷk����s4l��9�ṵ��"uS��o��SPIU%s-˂�{溮g��p<�JAZ���m�[iyqM����Gs������ի����e���r�'���%l�Jrvn�x�u9Ad�E  �����O���Z�a%�l�5��AS"�9H%-(������	9N�Qa"�%�\�U�A��y���<tݸs�zi�Ѭ1���\�<��T	��(2��W���:�hR��M���hw����2/��Hd�J�Җ	I�DM�
�b��k��m~n���+*��I;��}/?_��{L�vo�$~��;B>��C�n�[\[۸}7.�o��m3hm;G�Z�9�R�"���4�M�	L��t���.[�IՂ�ъb��(LB:9 s�PR�
������IDAT��o�]�����k^C5\DzV�B@Z��h�ǽ
���Kz;�׸=�l��~��u�U�R<��8 EUs
/T̴��w���1z���{��{�H�fv��x���˓s���׶��zb�f9';�߷�B��ub�)�G�-D�@�̈́��L��n�h�Ms��7�	R�����#&n�G-9fGrA…�9��xL辧@�>ς�+s%U���A��i/�턽Q�_*8�u�-��I�����Ð6��ߤ���v�v�r�W�߇�sRc�d�7"��]@�p��6�6|�9�E�zͺ�V	ٮ_��sO|��X�ڳ}��.�e���"
#Y��`�����jU+�o���o��k� �Yv|�-o��}&np��M�w��D�c"g�=
X|�'E���@4g��id+B���N����S{�P��l�6Īo9�Lj)��-ǖ&eee|	X�|���cȘ�Ϊ��7���z_ڦnݺ�rABD��lS�Rj��}�o!��Ei޼y��igW}j�����~eٲ���ʤ����~7�H���Y*PY��7�{i���ܚ�ۦ�= �M��v�O(�Q4��|��Y<��}b.$$|�c�
1?
�d��|$U&�jk��XHW%R|䅹lf5�͜r��]��?RS�Ν;���/i��k�׵yae]}�0b�0��j�g�=�,nwtnm�!m��r�=/�~D���A��;c�C����1��>��߁=��Q`9�,����^Y�5w����cS�Vͩ24~�|��	��n�3�ZQ���<>�q������vp�Ļ���4���L�ge2��J�	,2��4���9
,
|���`!�l�`��@n,ΓU
Vb5ruQQ�ؕ�y��c�>9�V�����T���or_.F�p
��s�!u3�ݔpt��r\��-�U�Wj>oa��|�*MQ��ʉĤnY��z�]��LG1��v�jm�B���}3k*sr�"F�L��LC��n�_Trz�������5ˡ�JC˅e: /�+��6t��w�y���
V h`�@@lZJn���ӡu�=��
�e[N����[�(���4����S]��q_�K6��k.��DĤ.����)�"7�Cu� �a�-�'_8����5B�H��BW���B~#<���$tbw�o�Y�A���
;��阍�5WܶX?�#�x�C�RȶU�f�(��'�,?����wۭ�I5��}�t����t��.C�/�z�I��48Iqy���H<曞�憴����Qћ��3����v��m�0�.{T�!�G��3�%~���"vG٩u�_��\*�n0���ߪ��v�E.��G����[�#��U�_|�}�q����kP!��y�V������k�.l�lo��\����u�-b_�mzL�܊iq1����	�D3���So<��б5�����R�0ز� � ��}&�h(��b`����>m�z��'m����aj���?��ȳ}���$sϓ�y��R|� R�9|�T�Q�P�6�1���;yܙ��?�~l�z�u=�r$��C��Xh��L_����A��o~���ͺ��ӻ�1�D��V���8�2�(�\� ~���MDE����v��9Ê�o���O7�m�2�mh4�P6)�y��d�蔧$�ӧY�~4�y鍷�H!3���|�0�0IK%=��䞺�p�0���9���!��)�x.L�f+Y�
��8$�I}��Qo~���ƒ�����R�1S�u
�7�Y��O��4&D��E�)���/�l�sEi:'7��d@���:K!"��j2U��Ydz��U�*K*
lڃZ5my������T����#�?�,K�����+�[�X�����;�����o����7~ �-=\5W@u�p�&|W �[?�H��*��"��0,+�,g5
?��CO_?�n?sD��B-۵D.��E<��Gp����
�ŋ���P����C�ޥ��z}�L?��2-]�L&�����d:�*\�8���4S��ϟ>[�Ҋ��P0��6T]�i� 2@"A!���7œܲ��r�1�'�6���&Μ���͂J9q��)�Q�J'"օ�fxi�vk��I�pZcl%��4��X���X<֟I�U��Ք��Zn����l�&�8i�C�>�� aŒi�ҍ��-j�"�Q7?�l���4����C���\~�6fo���F��;���^�{�=�C�_QDZ+���$�wH��hL�*|~�"��L��,*.\p}~�"��0j~wD�θq�g̟5��7>��cjUo�k��%  �%�NrcFsrR�YަE}���Gqߜ�����J8�|=&p�!&c�O�Jr*�24HP� "b��Y����F	�x<�y>�?���m��tX��0D���5�ӱo�ZQ�r��
�� �I��=x�����
�t�e������l�f���McF4/�H�zI�"-qUQ���醯]�
l�ݤ�^m� S�ٿQ��Uu�]�� +j^��ʛoh+����b�6��N����e�l�~j�����_���E�
%�2��}��阞��PX�AWԬ5.�����	��Jv���=W�ۥ�4�]eH���Y���M��߯�YW}`�CksAۛ���^�� �U"��8I銒��]=��6��O�>�rٳZ� E�(R&!7��9�U�\�����2qk�=�U��䤥e����gK�#s���Z�q�T%�'SU<�9pKE�|t�|�]��7���I� ZK���&X_^lT'��VU*�c������y)6�
���h(vv�2ih����nu"����.I@����h�h�J�/6�٣[���:�iWe֔o����ӭk�&9
:ٕ�Z���o;Xl����������M6�
��?/>�[�\�g--k<�1�~ʯg�^f�pSH�*A���MVx�ʁ��B����	Usy7(
��i�
]DZ�4���/�2���L�q�
�2���" �T���|��e��N�▞p��Z���������J9���=M#�$�dU%��r��I�Q�dC�&v�|fl"��Y�Ʌ$x)�4�AD�5ʗ�>p�fX��6�\���/��_��!�au��(���rw�|F�aE(�T�n��a��
�h���r�!��eer�y|^�� �g(����W��l*]�v�˞mw;�ʒ��[���bc�}��'���#�eUjH�QZ���#Z'	d��}l�6����;�O���q7=y�gߥ�������EGCYUH�Le`Dc�S��%X��Pr�XY!�=1����5hb��c���~\�m ����܈�<� ��PyN�Ca�<�$J����z���\t�D=�E9E
a	>��߾�,��kI�`rL�5B|ML@`���#[[��$��$�9�)\ǃ�֧bU"W�j5��!���l��ȬW_^�,"���B�
H�k#"D��"Ҡ�p�m��Ojt@�6�Q��{�!Ժf2�q�tx���FD�%sy��g��K+:��w_j���$�ԣ�9�O�M,ު�J�ʹ�j�8�!g�:\q�#SUi�fА��K>����W��!mo��3���K��?���\���_��Bdx��X6��ìZ���tҼh6��m��<�	5~�'?��e�c������I/��oy��&b�V0�M�@�t?��r|��S���֦�'7�ݗÞ��¾��v�幛�PI,�Ϥ�	_�,.��u�=�0u���Lb{��HT��l����t�:��?*
�c�:,����!�z�*�ǖ�N�~HU|&r�뎬h��
V"���6]N��}C�܀�ԬE�2�dL0r
�'��G$I�q���Q�G���#�s�6d3j��&��Z5nv|��5Z~a$-���s�v�E����i;���"�8߼3��E���؆��eON�9x�z~�)�ˎ�C��Z��H96\�m�Ҙ��>�Ư��36��;	έ��e��k�����"z�d�rIDAT��j��4��:�Æ��ay���h�����l]�móL�bZ�&H
I�a�|&o��8ټ�$T)�ÙJ!Eƥ�!�P8�no
�5kih���N9|�	��~��g��ubM��e��'Tw��>Ac���C�n;����N�`�ڵ��;�c�c�W9B(��"bg}�B�(<$����佈��{sB��G{tS'��;�d���ӆvzh�C���C��t�}�s���]�3�y�|���pU����Kk=�g,�x�����e�#��p�U*!��O��>v飗�7'�bs�����ˠ�m��?��J�
�B�¤f&��v�7p��g�o~��o��3)\o�/�/k��C5PM�.H>�L�`��D��AHΑ��d)|Y���-q*$��\J54�o�K���I�2�`f�(͚�;��7�L�d��I�+(@ �l�>+'�v-�����2�&�^3��m��5�J��IEr3�=�D�4EE<�$5���I|$f�*�l�������i�M�ŏ��"������<�.H����oh���r�-�7렸��?�PA*!cg`�v���5[�m�
�gK�/I}�7O����{]�G����5t��.���G>�ޚ��}6=�o���7��!�E�z�;$��5�u��Mҙ�u��B�5V{1뮧���\��&�cu�����t߀o�Yr���V�35E�g�ʤ��
��{1¶�O1�i'�pL��H�i�L�>yPj�^��)����F��8�v��R���@�.����-�����@���.���~r�~�]w�0,�q�0���f�T�I���]i���
�P!`�*vl�<���7ݏlx�{��s/?�������n�O��|�~�T��U��@G���L'��T$+~}��w��/��Sg�bޗ�=����{��D��x�	'>���O�-b�y0���ss�Y�`^�t�ɬ�Uh��=﨣/��=_Һ��ȫ��;��z��VVZF�����!�ns0�$�I��!���j��q��1��><�Ֆ�^��l�B�fk�eB����}����p(�ڠS��[j4��a7��zui�q���AZ��4��iJ�ZL�L,dQ�A��;g�:��������`W�����&�Ы����  ��@<�DQ#�`����.��?���zu�٫���~���ـƚ���ܹg�ko��8��%�F�+_VQ%����\PU?��_毜���}l��Ǝ��J�v��L�uQP���k�3q΂�Ė�w�W�# j����-����ԹH-Z�|���F�72e���Z
��Oۃ�����K\X^��$���B!�L�I&�H</K����`�ix
:���O�'�O���$���Aa��UD�<dx_�šh�6�,�1t�\��U��f�6E�6�q�#��Ʊ��6��Pv�ڴ���v�{\�]�k��Z4lzBYi�"u��"�$օ�@��Cv�H<���Y�X,�5k���x��R3M�\r�ä{?��@~�Pj��6xe��zŧ�qi�ʲ"U($=%��'�[�!M�6�Eþ�{�e/��������ԟg�*;��T�פ=�u����;�&�m��|����䛥�i�zI"f�D�74��?�xԎ��M�/��0w�p�E�zu�kRe�lHkQ����i*�ʠ	
��g����>?�$\(��P9��@���X�u�r�xOQ(:<_��_�r��W)�
i��>�C�����zhٟ�9L��Jp}�硲��U�S;�(B�.}�ycm֨I{�E��&kӶ@D��Ɖ�p�4Mh��|z睊��N����s_�zh��1�PV�D"��Q�t6������A�#�ЄTr#��.h��Eǂ�s���7�K�[z�W�#���ҷ�H�㇀PN��ۥ��~��|K�=Яv��|����[���F�6��S,=Z��i;Y��y�w�v�����)��x}�O�V�
�8Z�y���L�L��^�_+
�F�l���֥��o�I�+��
���"+/[�����/�Ge���w�Nj�>��y�5��ad[�]։�[a-#�4[��yK���-�7>���Q7[�?N=��=��t1=���'(�=0�!x��""I�9���!�@&my�N�U0=d�7�G���w�^t��2��i�x��An,�4����ѩ��Z��CO�[�lMI�z����|��gO~�X��G���o-�_zs�zN�E�
�f*���?�_���ZF�Y��h4hs�B��R��vYu�*�r�!�tJf��;����{�n�F�2g!2��x�m���Pn��s��F>R6����f e��������������W�{
<��0Y�ٮEs@Z܇�@��PY^�2�ER�uMy�)2��XG"h���/�$U�*�Wv�|�Y'�����P�x��v2��4���^�4��	i���7/� C��b�)_|"b"�}�^�j��U%�[�kKlxP�b��.-N�U��M�����G�-���5N(ב�#7^1��<5|ZA8O�#��\�_���#�x
o���l�+_W|���1vڼy_~�bQ��=7Qi�K�ѡ��Q6( ��`I��e4%ڸu:�d���`,�$ܶi��מ:}L����W���~���_���
����Z~��|&�D����-u��"b�-x��.<��0,��*���S�o��O�z魗�5��RH�HY2�}���+��V����+�@5v+��w3���8r�C��=�g��W}_˔'���$F[�{��^l�Y*gm��)�w���W�ќ��s��r#�%�J�ݤّL�B��w�=����jME������;��㕴WL��(�y{�������� ��!m�S��z��X�������^s�z^�N��:-��?��ށ-O�з�{��jt��S�����z��[Ue"2��]�*�k��RǟP��}��٭���Ut��o��ߧn�sZU�zP,���W|HB%R@����}�f���B%G�-�_�d������/מ�.Nf�I�sAD��Ukd�=���N3��r����ȍ�!YY�TI�Χ{Jw��UY~cˑ��C�����Ui��UZ�D�,q*��o֙-Xi��U�./�bDx~�o��Z�U���6��9���cn(��/%�1�d����W����?m��f�68�k�����W]y��@��X�.v���m����o?|�q�/=��Ţ��
L��ln0��@@����?C`�$F_2c���ڋ9�
�����)`J��ZԬP;��G=5��;5g���x=��Љ�]��%��T�w}*�x��ɘ�橚-riSg�6=���O���$�2���^\�����[h��^�+o9�E�:y	��_!�&��e��U��x`���jl1:Px�Z�uHK�P
h6Q�ƭ:GK��5��"���>��NJW�6�b�PU�I�c���H�x�� �u�c(����
`�J��3�����C���=����Ez/B�0,ۆn����}����
�ũ̴�M�{k�(<�h4
s�bJ�X��iŚ�E�>�U���j���X�K��x��co�H��FC��č�V�P�>^����s�R��[�Շ�����%S�T,��o��?1m̥���#dyo}�/�{|��/}�C'�����B�v�`��˵�6��7EF��
'S��4�G­�U�9��N��mn�5ݲb�E	I��H�IS������T���<ɼ.�w���E�WwJL:.Z�Ӛ�=��Nڨg�΍wj�C�âzVڂ���].>����"���:b�!gi�K������}��w��eN�wP�tU��Fs���C~������ �����Zu�W@����.-ڜ�$�7/�T�" �+--��/�cA0�'������m%o�O�U'���s���V��c��(/��L��Σ&��?��oۨ��S^��I��!a��k�\�r
Q��"/T�X�#��F\5茧>{vX�Ag�δv��IDAT�+}�z�{^8���ι���	/�78f�B����J'�[jܶ`I���NY�<o��F���no|���� �*�*�"�\Z�LH�V��ɗ$s)�Ԥ�k[p(�₲Į�
t�8p�v�&��Ll�cǦMS��A~�^�����	�%��H�&"���|)�>�[�����wݼ�������
:�nyt��q:+��{0��G�&��qH�넊P��?�_��)��~���5U!�<0-��Q��!''�Ӽ,֖o�^�����>�3@`�C@lw#�ܠn�n���s���n���獾��x��!�{�`��<��c�h�l�UVjE(?\y|}�����yݠ�7����w�D٤�?/>y�=o�1��i=.ut�/:y��<`ƀS���uԌ�~����%�X]�8��f=�ֽ�8N�H�D>~�T�U���.}]5�fe)2��:�O>m@k��9g�϶m��w�akV�1�.�(��D-�h*��%���ǖ�$|@��̉D��![�'T�V�ۈ{�l�|t/>�\��l�.����ۅ`�@�L�����K���͹Gvk��n�q��&��Q4�6��!�$ǞJ��2�˭u[�Jg���6���W�  �>^y�+�*O>uδK&u-j^�G1�7߿}�{��ʙ�*�q��T�R7"<!�����^٩��;�#>���&
8�p���yc|P$��*Y����~K����H2��2'� �]��G�H�3��ɇ�)�z�!��<�g16��X+��g:�K+\�!�a��8�~E�$P�MZ�E��Ņ��Z��>���i��[7��I}�6j����b�O焾Wt�G��}6��0 �w �W..\^��(��~.W��䴽Ol6����NY��]iB��F���^���	Cղm�CTUUA������^[���k7Hؖ���ձM~x�Y�^VB��tk瓎�n�?��wJ_z�y+ҹSE���0��3�-ȅ�TA��P�5�]�}��v�M�����>p��
���19��Y~~�#IRZ��
WHd&ED���@�e����Y3'7�]�6T6+W�Q����݇�7�<��N����z�M�V�=�V�$yi�
&l"�L��ː��c��mg"B8��C��]�
e2V�v�ک��G��O8������n�url��Ė���Ŏ��c�m�e"��ß�A'�`L3��B#�1��*�-���rǰ�u ��CIV% ��zo}���s���?5$l��͏q���Ic_y�{���<r�C���g�]�y�n[�`�^�_F�xh�_fN�/ԩ�Ҫ�*G(���L&FM _����w����x��G?����-x����#�*�sB΁�Eu3m�A^݄���D�.+��h%i�b�u��d���l���aMU��#�^��ªE�Z�6r6�xT����WH�l�BZ�RI�R��!	]�) �R��Z'��y�CV�u�xb�xl�;k{����3��ߝǶ9�EN(�+B:e�؛�����٭��MU�\�iz�!����v�I�W]2�Z�F�TI9I��h@gK\ny��iv����Uǃ�:U�|��#k� @`�C@lw#�v�}h⏳�~��HN�k'3=����~G�ܨ�%�Xp��3G>��5w��S-l;5�pߪ*���q_ȽQ����DHqaP�VY:����f��Xx^q�=�0�GƏ<�_����</oc�O�QB�gZ�#�W��.Lӆ$N�w[]�ٛ#�8��k%��B$	&U!2H3鄡�����'K�zLv̖Й8u�C&"8�
�s@DPX$�׈�
�ߧ{�
�)�e��L�=�:6�,�_[�EEE��Q��� ���y�\<^À<����>�|�
�S�����v�Dƍ��ҪUC�Į~&^9�jw�Uﺼm�c���{�F�J'@*A�-�^������N�Wz;�62�SR�?�����U�_�g�k�=2�o�&��[��~eɚh�у&<��N/���<��U*9��1�#H2)e<��"����J��zo�{�?�`�c��Wlʱeا�^&�!ɖ���+���d)_��E��l>zR9��Kvw#+F�@�0]H�������z�q���=�9�2N\��<�x}�c�vإ-�$U@�E���g���@
s�ԉ��TV��-(��]H�xOZ�
�
G���8i�Oiդeo+��cBclL3
��d[���Qo���L������z|ԃ�Ǟ0(gl�Q��u���CI���Y��0N(��	�G���G�-<�s�j<i~f��>G�3@`�E@����ළ���X黎�1�ʖ�W���y���4����m�R�x�/�x�K����~/����)�՝Z�v�+y{,�5<���i�D�N�D�&�/w��O>7����<|�M���11���&:}��M�IH+Q0Qo���0�TC�HR��$�Ed	ȴy����>3TrM���<�C���8�ggs4gzEf��#
�U
��pȅ�EQ@D�y)ruQ��	`�e�7�B~y-��If(?�Ĺ���b+��h�DIy\�Ya��pPId��Y2� 1�-~�ٽ��'?zɈq��u�Æ���Vٺ�	�"��p;
c.(բ�b��x_�3[�&�W��'��G
�~!jݺ���s�t:��yf�]֭[7ּy��iA<@`c  6F#A���X�8f�Є�����r�Xm���xj���y��߽?��z�}��G�2��!���|�'�n��s�{^,�k�c�v�8���;q˙�]9�]�_����j'7	eEY]C����eo2M���/D����5K�L�le�D]��moRn,�w�}��	�O0d�?��Ǎ?'��M��t�˾��]]I�2O�+��H&1����4�,1/!p���?�c�����C�����]?��8I�>{���q��Y|^�_�-��]�R�-^�n�ʕ�%��:UUU�D�D.�\֗:K��_��(@E�
�X�lҔ;��:j?��v��現5x޽o<�s�3��/��lg��@��v��i߾��}N��Kθ��M�6q�H���@@l�F�66?o���O�.y�/2º��ԑgS���C'���ͯ��Թs�k���|���2�ƧW��3��k�n�x�nIb�#Ed��u]6[�5�e��u�IDٲD��4%)I�F�H�Ө(]ڥE��wm�?����n��������"Wm)K��i��ZyMDY}��C�&���Z�&A�&h<����4�K���$v�ަe��a�a�|ۃ�-lD`�3L���(�#߇�B"�.o�4;cV[ެK�]���@��E�#�&M��a<�̗��,�lJ)B��{��N�wͺs܀1ϴ�6�q�7+δKR�4Gh���%LV��s�zZ�[��̩c�~�=��>�.4jר]$[ ����
�na�Y��w}�i?-ZE���[�����t�ɳ�^t�(9�la*o�P(����5`2�Dn�dHD �M�j0������
�B�z�w쒔Bj����{��������y���^!Ҡ0�KR�)ND�(��C�(x!"��:O�d���%���� �jH�W@�9�sgI�U�_��O�m�H����.K��e1��R8�	�x��Ls.{-�U��bBpY��H�^�u��RO)D\�Eƥ�"��3�	���_~�wZ�Mt��Q�7����3s�f�}ϼre��>n�߲_�O�;��&�8�0^�C�"�آ"�F5�E
��W��b��Mz^����z���V�<p�������5�`�N�Ϟ��ҟdžs�)�����bѪ:G�u�%W�~ŝN�`��T��G
�	I ��xG��&K�D�$S�8�D����x%�Q6M�D/	�K{��c�a����2�D�e���*%U�`��J�,�8����gm4Ⱦ��tֈ���ES������Q��{ו)�(F���n#�)�i��#]�DX!'�UU�L���Č�7�d�$!���H���.��!t��
M�ܦ�]WnKp��S�KD��KD����S�Y�f�n�IDAT�3لZ����Cw9�a�C��=y�C��s�����������P鄄)D�\x���k*�	�����յ���0�i~���U��~�K��{�u��ۦ�(Զ�������-�~m�j*m���>��/��D]�s�z9�0W'���z=F
��y'�9f��%���'��Uנ�:��g	�#ِ��d�u��LL��%��}aI��i
[p�5)���G��i���\M�߅�t�IsO�W�ü���~R@������&�=8����Ӗ	R�r�Y�R鬕�+�^�����㚾c[�?|��i
�����u�If�?�s��0�K"�M�HF�	��ʄ1BPI �Hf�(b������5"1��ːG�D:�ܕ���p]õ�����n�p��w٣gf�ꝭ��(k��><ǃÞ�4Ǔ����3���@�w�d2�n�4.e���p�G6����]ز�U=��w�wMz]GJu=�g����?n�_� kC`���>~w��h9!7���0�WWj����~���u�R�|�M�{�
�}��>�e9I�IQ��$1K�D��se)��%(EQ��$w�q�K"�!���=��cF\��å5(��H��{�q��
���i
I�,D"�)��P�'u%���r!!5�B� T%�E4���ISTةLa��O耿8�O"�=�!+J�pR��Q���"'d���zR�4$fr!!�!"^pH�W,���eg�״/�v�WVVB�I��؈(;V"���g8����j���X1���/Y|+iba�0DZ<.�ST�1<6>�I��Á��K<WB�us�k��zv�$�x2��Eb�G�eUyMb��v?��\v���v9lG顩��-o+�me �8~����ݺ�g��5n�L�@L5�$l�h:��л�y�mE�h��_!�Ҭ�P8�37A�,CDY��q)�ĥ�8� +r�C��$S��"'z�@A4�@�m޳K��;<�k�"�;�_��k�%��O��!�̖�������łl����MDY׾L���/A�8���R�k��ˋ7ێ�w�vt�\x\���N��ǽ�yQ�ڋ/��iA��H8��
�����˱A��Nj�U&:���>/@j���/������H\���K�ﳵ+��i��f�%Ӥ�"�j�}�ٵ}���1�׫��:z�=�w|�'jM�-��Y��8�rfk� �!������Ѕ��{�3ւ/�*����Raq�I��%�9��~蘇n���o~�q��k��9�V�仴�%��p߄E��>1ެ`��X �#�
&u~�)T��1���&����o[�\����9�	3%�	�c� �h$�Ԕ"�j��t�'	��:M�!��U�2M��֩�+i�N���;���}�O��{�/�=�%�?Ū̐≬�� 	ϲ�lD��GD��)O��Q�\�Oʒ%$�0�{��LEj��4?k���b��F�O��G#i�s���)��eKʐ��:Ο#)2�@� �
H�8;ۯ̗Rs-C)2M
e�&"�C���#J���eڦ�������]}�%Ӟ�SJ��4
����饠2���J�#t�g~wPZZb5z�Q�F?��Y�]�?���$os��
/�VIDŽ��#a���oդ��K�篩i#�
���ƿ�
Ҷv�k�q�u�M��򵊊�h<!*��|�&B)��YG���������]m��-�y�]���3������GDYR$�-�yD�]U�e�"��	]�$C�0�S�vA�����ro����%���#Uճ�g{�~{�>�ܰ����IB���K�I�/�,d9���ڕi�k��1��w������.ߪA�ɉUa�Q`��_��2���*[�\��#"n� q����G�R��`AV��l�F�2{z�)��u���}d����ï%˾A-wO���!���.��7������N~���>X��}
Z4�Ԉ�xLGٚ�0��=�W_̛g��ؚa
\�5j�Jz7x'�� TEZ�7��Z㋫�΄;n�б��g�6��:l����~�6Y_AG�	�?�8s�WqO�q��KP�}�TU��m=h�����:��K��G_q�y'��oQQ���T�O�J};թ�?U���|�0a�>�W��$�K�!"N��i2�F~�-FDY2��޷m��¶-(�n͉��Ұ�3�t�Td��T%�t��EQ೻^����y���
��Җ��<I�`26x᠓��`WfZ�;��-�}�G��LW$[�8|&|Ea7Wd\��9§�s���}
^(( Ԉ�&���vU��zQu���ue��v����L�u����O��K��x��/����,�7�=��v�sw�.���y?�X凌+_S�ԕ�z1�4]=n�S!��5���¥����ʕhN
�V�o�e�f�oM��vȁw�8��{^��w�+.*�uٯ�A����h^(�u
����a��W翚��ꫮIj�^\��#��c#�"�G�{!���e��C����U�/��-��[4nZ��	7�;�AmkKgV�	UM+�
RDv�� 	q�>�(K<5iD���rR��Q���Bl�IRM&�pl/K��U���!b����r!t�as<��-«6��(�'q˿�D���$�cv��L���L��q��=�—/Z��-_�#LO�C1���nD ಲ�lNz�=�!�x�֓�mN����6Q�u���궫�d+���骮����N�Yj�|���g�-^���9�o��ם{�5ż����7]��q#O6a̙��{Sݝ�f2���e}8Z(, ��o�p9�7*H�u��/�|M�+�_�i�]W=�׹��֧ǯ|��^��
��{�C���F�b�x݆���W�p����^'�PnU�*�X���uYz�צE��ĉ7�����m�?Ϧ��%�J��x�eU�9�S{�ʶ���~Q��Y�$ND b"b"�!g�	Qu�$)2��D�c>�i�!C��P��j l��8]��&2L�7��\�I�¼
���uB��5��AD�:�/[�ֹ�D,�
�ه��Wa@����8.��<mZ��q*�	��3&�
�E���8gT���
�?�:��&�uy�� "��>e�R�ɾ����)���ܹ��>��.�"a�$vko<������U�z߫9w/��0�Ǐ*�~��O�����C���M޸ǁ��)*Z�"[8y��@D�TA�ܹ���n����ֻ��۠��ΔSʲ����WQ���]{���z�v���;z	��Y��*��vm� �X� n�c��<��~���ε���fR��(̤�(ۆj��$��s�7p̓�z\xT1�ؒ��n��x���7:x��'�����L�T�2)��WLz����;k��&A^K!�,I�U�#
�q-�Լ,�ٶ�n�2y�'�XH��v���0={X�?[���F��?�L�"|@!���U^Q��^kY+��!�LJ���3�\���h�5<�O��&�uB�C(`/���{,X+~6TI�"��∻��[���a�C.�eʚ�}a�|Q�'�|��"UQ����H.�hv�I]'�8��'_���ڐ
�/�>�Ur�ͣF�1��9s�2�=_������.�p����sV�A�L�f��__d���t���=y�ѝR*ř~‚�z�RUHV�FJV�	�P��m�V֞���
��@�`�s����^/��Ү��d"'r��i��e�pK�����9���EL�P|\q�v]���c�#Z�܄}ƛ��tt�v��Cޫ�ʫ*L���*����2�x2�%g7�L�"�:ggO��k"�^���:����#�tM���C�5�����Kb��E������_/K���YF�5��� "�OaE�~u{���L2�g,��/M
��n?7��]�ȟ��~�Tٶ��)�ۖ�q{|�2R8
��˸���;��5	>�KD��b�,jMIDAT‚�c!
ݚ2��A�ù�_��^:{/Dҍ����s�~E�~4�/�9��9�i
���`"w�}�Q��7��`�;�iw
u��3>|���o��'�;�Q�.��u�^���xy�V{��ZG�Un�b���4���GɊUᐪ7ZW9�l������[o�텏�t��(�u��~���(>Қ@FQ�B��Z�
������T��^���"{���U���]�������؊V��|-�@~������H09	U���[���N%!T٘/�,�P��V8��ȸ&���ۗ�W���M��4�{U��SU�MD��T�M��(ۭy����0�/Ll��!�
x��'@�~Lˁe�0¡�B�>��}3�J�(<�C�xL�'�!6$��|E��އ#<�w��ك
�ĥe
�q���&N{+l��@�5��������-=l�#^?���y�_����}�l��_WQfyz�sO�sׄ��>���w�
9uH}V�X�x�W�p�#�y�2D�&mL�:~B����}B����"�4A12`=���"|�_�F�1#/�W[��󸞻>���zt�Q�_X�B��O���e�Fo1hp�G�%�o���>]0�IOsl_���$œ$*SIx$��x
T[�����G�`�ŧ�R�{z[� �%dZރ!�p�W��Z�o>r̩#�٘a+㰁��YR��%�j��'�N�7�͑����Y��
|��q�
�"�X81۟�������HҖNDB��Q�o��BYw���X{���hu��m"?�'9Rd"�)�[_���!Ӳu�
�%�BFXb�^ĸ<N��mY�ٽʉ��|��L��%	����YW�j�"=j@nIH]T^���H'�Z\��;�����c�s���u?o_V�Q�Ͽ8���ct=�ȫϿ����5w�6��\��=ҫ+�'�1��0~e]���T
cyY��'��ӯ��/Y�"��ۇ/<���W]t�=M�5>��9[�nۺ5�Ͷ>�`|@`.����{�Q/w^Js���l�ȋD���h�3ى���f׫�R��gv�vݰq�^r�%ҵ�����zyÔ���,Ϻ�]�=��÷��m�)�i���p\�.� ��'��Z��Q$yU�%�&�?����ײ��FD2`�[�6����&_f�VF�̓"�j�����&�-.��Ԕ'�s^M�,�G�yo�����%������2���@�Lr�P��_�~�ڎ��޻�)̄"���0�c!-e��9r��ȏ�Q���V/]֦o��7��q�h^Tj���gI����᝺t�=��*���*%#���:u��MȅL��E��@(�PH�ʳ��N�J%E���Po���	�Nu�<wܔ~��=�zɊW_;���?��m��"H�(��[;Al�B`�SӗL����r��]��,�d�扃''�J
����k�G ��7����c�?��[�^p]�-	�O��z���}l�<�%�®�Cn�q�Ϲ�c����\
x��������	��Q5U��81W�����_��>�+O�[|]�"������$#}�'E�U�%�$"��퇨:.�I�f�\pY^���r2�ƒ��D��5q"�]�.[�RX1d�*\��4�"���2e���g�S��d�w���*�z^<��O+�*VI�
��0��o髒I���B!���R��js�N�՜pd��JQQ�Z����͙�Ly��]�r�M��l��z�����I�	+H�6xP
�iB�UGX7�)Ǝ�sT�V���̋�����	��r���'M������V�m�Fh#hb+F��W�==e�hy�
� �lH׮������"AQ4�C�������S�-:v�-��|���Om�%@��w�U-\��mEe+�T�	!Ki����_v�ȳ7TG�2.�x/W�I��@D�=���$��I�	�(%�l;D��:Y�Q�FM�6y]I�2M�׈�&"�<��P�J��AT��zI�Y?�&N����<���~k��ֵED2{���Zf�
&2!�[��\�"aDs�Ln*�-͟ld�M)�,Y���]ӱX;@3�!������8|ӆ�^��x���c��.�fx���λ�]�vu�rۓ�}{�ه^w�ݺ��x���/�z���I�u<I�f&����3^��1��0T�rO<���okS�vX�ٝo\ޯc��5��2۾���v{x�_nj]���Ħ �iE�{��J	�i�	�$�e��`Yl�>l�Aݜ:�y_�gS�|�VV��b]/�3��[�{��@6�=��s}��l!T����ek
[�p�u��u�K�q�#��H�ES��,�pHB��~2e�Ѻd���5��w�([��:�^�?D��
��EQ����ֵ*�K[�D��DաL�RSX.���]֑"��m"��>�~����N���(�'��lfn�W
��5k ]П��ɳ&3�e�n��[��5OP�'�ņ�B���(�x�}�u�>{����ʗ-_��F��
�lд��<�н�M�u�c�7ԩ&�C��%�y��7~�8�~��_~��Ͻ,�9O��X�\�����(��O�\�=��n��n8a�Azߛ�ů�5L$��O\s���xcƢ͡�ާ�����q_4n�����l��JS ]@~GN��t���[U^�-Tိuu��W%O�E�ǟ�����c�=���I�O�<�0/Y�:]������j���.���<�z�yK�RN��6���ݿ�I��@D��ķ~&�oe���*�ɸ���5m�P�$PJ�)#Úkֈ,���t"��N���no�&�/D��r�|��҉~���D�mW�(��Q�\M>�ou��&9�ݣ3��l�J���:�����؄E�J-�؍E*���5v���GKgr��[U�z�G�sj��m��v@�m`�I[��;�����|����{���ה�	g���/g\x�g��c�
c����y��X�'��]���_VY���NM�0Ȩ��)�֭[�>��%�<�p�>)���|������yd�#�7�AF@�9i�L	��0^�����?x���&�����kˆ�IY
��y����e�b�bN8�te!�u�
����k�].��ۘ[�v�rô���Ν�V��ϩSӶ���"L�Չ�vm���f�lߤ=Ϻ��޿MyL�L�p<Ɓ�0"�� ��U"�]1��T&U�Q� �({�HfgE��o�߲�A�[9�GD����� "�Q}��c՟D��W}����JU^����!ӥ�x��]'"�#v�U���f�p-;�?��Q��H��ҕ�%6��W��-奒�~���8�L:K����U�r��'_~1k�̙�
�x42�!2L�]�KØ�u<��S��>q�=�{��=��)�6��,H<��cߟ0��Q�8��9�A�x�(W�9!/�I�
�Q6�;7�ט����������e�b��
K�o|����_9?�V� ����g�����]���O��l4�Y��������ʶ�‡�����.6d\b�'h��̊�]�s����	}���u6���|�g��Z�(�x�@�$K*��ܸ��W�s�A����:��Sz��S�ʰ�S����"K��Ϥ\#�Z��GDYr"��^��dCYG*!CY�Fd���t�Q��۔��w�(�UU׹ԉ(ۿ�*E��z5BT�OT�tY���Z�e��۔iR������z2�c���CD2)����2����0[�q?g�OL�!H�t]�b��E�P����~F���2����?���z��QMGeyr�q~L$�4��0Rd�_y�-��WTT�*�z�o��9*T�G���H�j���'�q���5��E���Г�/ڣ���]��'�|��o;���w�w����F�cO��w�髶¢�E��.�2�ܓ���L�?�W����)��?��i\:u�T����g�Vl{/U;�o��;.<����r�}�t��q'�v���2�ʣ��|١�Ou�c�j���nu�؛��[�*9��啥��(�y�IDAT?f���G�hx�VxR
�a�宆"�$,�����zn����x��>��6����K�g�?��Ғx�wAW
R�Cᩤ8P�i�[�q�/����Cw�t2�؆ad'q��@״,1I"Z_�D���;�ek��~_���,�S
�D�6�l�X{!��5!e��([B���D��6�/+Q���K��Rj��P�L�BD��:!���D�m��|�vMD��'?C��=�d�x�t��Y8_�E�H$U( �rC5<YnsHڷ�����C2�B��T��#lh K��4�[~}R5��<��.��dD�X��2D�0¾����D��'򵪥��B��~d�A3o�j��{����S���\�paf��KN��K.�jl�O|�9j��;w�m􄛎��++V��
k!���'�yq̥����qj���������b���5���?;�(2넃�ko�q������^zҁ���2��v߯|��+�=2��FV�/�[�V�k���F�7����[��L%$��̺���m�}(����c ~���4��A�
�fߛ�6�˓v<���_*�/���X�V���N������B7x�� �r��S��������
�']�G�N&��ƌ���hV&��߾�.	��"�`��BTM\2�F����X#5y5��"�"e���CyA�[\^K�mԄ5qy-E^K����"�H���@��ב��̫��q)���2���‡�
�x"��z��,�� ��af�5��\��l��xD�9������nuI	�({l(!UN�/IU�ٲ�e�FA'�>���\D����_V҄pl�CDρc)�g�J�(�u
BV�N�P����z��=���;_���A��״�~��+}��o��~�Ɗ\�M��)�\r�~��o�"�;�
�Ӡn���^�~��#n�6۽ྃs=�z� ��8r�p�u�X����4w��9�E�]NoŜ�,%�����L-_�að��%��?恇�>��a�����ɗ���Ŋ�~8�f�l��T��!'W�'2�-'N�e�D�)Pt��V
3_�,5
Q�;\{���3bb�b����U5oT*��gü�j���w	��:��<�Hu��,����ӯ}����t=���GL	�������""F�-F�;�%��5Qu�~s���U��ٌ���Z��"��wm�LΦ�2%��L�!e��,.���e^M��K�ujHW�2M
Qu��B�.�K�ee(E�K��?�L�BD`�dC���$sI��~)���� ?'�P�14�7�~_�OWE{�=y�#g�k�.���ສ�Pڱ\���C��ᒒH'P�I��c�?��L��'h׮]���k;�X6���Y�/rQL����:�b�
�]��$)��j�\����N���
3n�~�}'���O�6P{bl�Ƚn3��z�(��u;a��2`�~������Cϭ��_���o�~��M���#p�-��ߡ��1D�R�L�Bď��v�Э�4�OT�,�U)�Tvh�����󣝏2v�`%���z�O����-�k-t���6�#��i�����~r8�!��T@���ADcq�-�V8T�����u�]}�9�.������g;����aT����ņeYl=9H�DZ�H�<��a�q�a��ƾ;�3~�i�<�c��o��WJ���27����uB�Y-D�W�6MN���6���?V&�N'�}�AJM9��t"�$�)�u�([����2�F�	�!�9Ȗ�ѕ��˵�U�%�?��剪Ӊ�C�V#
/�j�&�'b�#��s���:�8�VyUU��[��j.1I�_RԼ(4��sO�m�M��ߧ�C�{�)�����v�Ǥ+U.k�Ia�5�B3t~�2���W=Q�X�A�<%r��)�ƞxBנ�uh�@��il�A�]��g��g�< �����xq�U�
[7n=��cOz�I��O�ic�=��T��'�ߩ��"��U�b��h1�œ�3_�G�;��7syٱ�{��ĆT�{����αPj�L���̕�T��x��xV����,�%V�C���l]�Ix�UV	
�ĩ7]9��q�����^�`άթ�C�!϶Ӏ�1��؍��&೎
�L�@�N��x�T���󱆼h����{�ܵx��+z��uܫc����L[��
U!0��}�
ʋ簾F���x;�]	�Ny���s�/+»5is���=����؇�[��$��]��k�]�$+�p�^�FM��m��$��X�A�rD��k�YW?+��A�L��ȰF�~�CD ��!�i2\����6�Դ%Ӥ�뚐� �J�e�O'"�C�IY?_^׈,#�����K�ɯ	�(k�3�3�Ȋ��B�}#�!����X��+�˳����g]7��tǠ�<�}����<5k�_V���\��
�k2�l˘g2~���=��Ć|b��ܨ�C.L��04��J�2U׵�~�c�P�
��?���y���)�#�%�
�7���xd���ȇ|Ο�����<�VX��ˣޞ�!��־~t��=^���{�령����H��CZ5��O���	���
&����3o�e�
�0U����e"#�hP-�-�2�>�}Mo��Q�ǫ�_M�E�x��/�&������L��=C9�\�V��ƚ�,��i2�k<'MZ8
�M�ҕ����6{?xͨ�fС-W��g�
[�tX�f���3�$<ہ�qw,.	ج�����t3�����h���'�s��:|�/<�ڛo�x�����,�l�h<��Ȱ���[̒��H��	��~��oqY�F8+[����;!"&�]��/dH�<�^#D��_�FDٶ�~ez��j�&M>2��Z�eZ���L�� ����+�P�)��25u�,�~oԝ[��@���U�+o����\=������vl�꜐o��	����"�������?���%g���~_M��b<�v���n��՚������܊e��"�������'�L�{�brK�p�}u�˨��㶑�mXq
��u+S���}wo|d��o{�7~�q�Y���{qv�a=����>��'�/~C��Ӗ�`�fg}�n��G�|nc ^;m�^;��m��
�uT�\�S���P���3��;d�%�b�U9%���$(<*�p�P��hY�?��;Ι6�r�������7�|���n�u8
���������B�	��w(�*[:���(���D2ɡ���x<9�Y�h!��.M���gX���Μ8cb����h�~�w��T&B.�;�IR?E K��`�	����y"�����HW����;P��4T�t�~+���S��z�#]�:�ˇ"\&uIbX{��e(E&Q�(�q_~ġ�'��rѱV�UT@H=������2r#��:�ϋlS^א e��e� �-M�����zU���Rj�q�����Qu�M��F�^���gC��oU(��@u:��v���ϸ+��Gd-�Ⱦe����!����C'-t�9�za�S7<w�>�Nx�g�ϸ�9��:����҇$WU"V:�D&��W���Q�{g1����;/A��j
"��A~Z�s�!TH=��p�!�V�&b
����HUT!�o_�q$*�����-"�A-lT`f4�2%9z��k�ާ�}��#�ג�n<9��S�?w���.<g���Z�v����
C9�H��h
R�헓��=/��8���7^�AK���|�j�ݠͿ@`, N,ڷn�w����[T������3ik<��<��oQ���g�QDpN%7
C��g-�4��mQyj��Mq_�U�	Á�a���3S�<���AU�����x6,;IXO^av3���q���u��ֻ��i�g
|�o<q�#7�7�U��W�<GQ����]�T�&X{OZC��`&�-q�D#�t��*ر�%Uج/Y�LU���c�Ie���+�d�Pyq �'"+e�䒌$�I��J�K)�L,�U�[����~\�LZ�$Y��{7^�6IDAT���s��Ů~>!�e�/��q�<��\߁�'���Ǘy��{��,@|�TI�
��c�6�&��ɶTC��R�QӞ\tʿC>�x� �X�lXs�9�g�M����!�`p���X2���\9����ϖ`k�O��B����iqv�A�i�_��/ܿ���vo��u�5إG�=�,ɄŽNq~�H���*~-Y6�esS��F=��u�}���h��Ä����.����~���x=��LVZ����J�%Ŵ`�EOD �H�4��x�%�"�8/��*�������q�>n}�O�˟�<����4���{�ms�����/w�<��7����C�'�θ��Q7�����̟���" �XͶA��4�N�rU��TՀ�*,<�I�'|?;��;���s��^�/����5�ӄ��H҉����;�<��k��h��+�ԗ�!�3���$ih:OԂ
O肽�, ��r�f���8� ��'n
¾#��V���pᵯ�~�SF�:�N�w*��8wk�󎪦��)�5�AN�Rj���%�^��[*�4�b���Vp���*>��YQ8>x8��s=)��H����˥��P�>dz"�nߗ׌�$�����ՙ"yB���̨���L#"�/@�p
�Cy��Q�q��B���:���XV1�F!"�?eJD0v����h(��n[06*W��K�eS�⾑=�Z�	
��-�q�O�!x�$���sylr�`:xx�C6S�� �!>T�	d�"�����X4�[a�>�(�	�a�| �U�5���pu���M�r2L��<9������ӑ��,:�h�u��q��0�=�r�:�yHe���˓L�!����V]{��ɇu�����|���n���|ΔY7_t��'�5�]5^w�\��J�����+��zި�;=:��E��~�
=�	%͆ �UE�(��ؼ�ZV|��A��ϓ��d�†O.<�Y����^v���0{�4J'���[�i����&H��~�����6G��B0XR�*($��t�CaQ��T'� j&v?;�Kk�Fx(<1+�BI�
S���6;�<�ž�_�s��3���d���z����L[ܨ�� �F|�DfCƖ�c�y��g�<��.���?�~p(c>�y
��̇�`���	e�嶥xB�&0Gpym����^)L@4Oa��ʘU�;��|�M�k3���Ё�$��.�@�U�v(+2��_��PI���,ܟ�ӷ@X7���g{p�-!CYF�|+mA�P��lU*�s�`�T�.�wM�F�g�ǚ�I�'���X3OE���B
C�P6�4}$R6L�/�k�ك�Z�ȤK���K�bgǨx�1Px�)���}xP�� �x�L�fa"D|�y�T�"R
��?�#j�{ɓ�My�)	5'�o���m��^MW��~j��x�A��!��I�&���V��D,7�*�F�es���>�ꋎڻwј�gL�ˇ]���Gw�cЙ}�m"r��C�y�H&*C�m�5W��g*�\s�M}��|�2��g	έ��U�أ����>w�����d����E�xtM��扞)̇L���irO��c�'o�u!gf^��s4�T�9I$*6��q�s��3j���f���߱5�5���a�^Y����*�!O�R�8D�ES᳕)	]��)&���l�kQvGz0�$T�4s�1���{�y�ߺ����wZ�����c��sT���C\& C�W��8�ʪ@)�zf��PS��gq��|N�Xu�$n ��σ���db��q���~�����$T�#�}�t�??
�D��\	��'kH�e(�eR�yҕ���P�%_��.�H��"C).w"C)�TY#(��^T��+�����x,���ոW�'��8A��py?Wp9b�x��
Ր�sn��5��t�U��P$7���M��*�x���P�M9�L&�}��q����/X~�x{@g}�Da=����ذy���E�}ڌ�%\�VN%�N+��H�nf��eSj:)F����G$�T�r�+�e�3V!z~�¸����֚ۯ�z�Ag
�s�_��+j�h׮���n{�1�婽;�}k���{�S�䟟�-�p�x����U��ك�_z��,�u�&kQ�mo�M��5����/+KK2��J<1V/�}�n<I�'L�	9�I!�Pa2x� �'R�IP�0����Im϶��{A���o�^�)��x��g��y�yI/O,�Y')L�Ȋ�)*�ͅ�}�� �'��8v6��ѲS�$ИPܴIvU&/G��Y���tƛ�o���K;����C�:��ƞ�/��z���:'*.��f �Jr����cAL
�!q\�J���T��"�i��0+\Je�d(E�kD�j|������Ze"V��	ǥu]#|���R�	Q���;��s Xg�t(FZ8wY�Z6.���������I���B�U������>]���r/ B�-��N3,:lfݴ�Xq<�6��!�eR�Rl�����a�m^�Y�M2aA��Ka��ן.�KZ^�-@O�r�|�Sp���|WgR���wD�/JH�#L8�"2p�q\�(dq=�;`@D�Dh���^y�9sj�ϒ.���_~M�.��B+�>x��X{�7h��J��U�8D���EPaV!�ڰs�
�/^v���G�}���峹��ǿV1��=�r����;�uט����3=�MU�����+(�~�Z��	��WK�*Am! j���]ql���sǂ���!�>~�ޗ���IgE��B|x��y�����l--0�-�3�6|�	�'j!$�X�uo���zơ׵o�$�Z<n}y�w/�1��p��m�D�.6?ER<��L<�aő�m��Gm�}X0��l��L%�y8dÇ���<�\�Ldc��9j�.*����␶Mv����ן��Y�?������w��C�K��G��ӪV���쁪�$��.�ub��e�ȃ`ڐ	G��{Z
�uV�a����C���ܞ͆��xl�z�)E^׈�y��qx�����2_��qx��"��q�,�d�=�0��&RN&�����@H������e���xpY�^
&����L��̂�Xp4�f9L&7��2<8,J�)�aC+�;H��m�Bu�rx01�Z�T�ՌZ�%)O�T�5|]�櫫8\b���"OYe��Wh��J�'V�q��������֪c,�~.����Hc���B�E�IpH ~�h\^����ҚD.�*/ҙ��5N�]��1s�L�y?�����Kk�R\���겨\4���H�i�6)\��\���ggxB��;�=����vc1V\��S������ɕ?�4Ȭ�@�xUf[>�B0���xv��+�}��.�pa�8�p�B�ߒ�K�A�&��C]��V���g�_��u�D���;��<&q�|�
��X6.|~�x_�3���߅
��������;(�Ɂbg�$V*����#w��7j�xਜ਼��5(xU����<��	���`�e��IX��V��
9�޳�P�[j,�P�EQ�H@��x):㠹
TS � R��n�d��;��ma��։剖1�”�HuU4̯�S ?)�j�w��0��W౮����c|&��=�W�c_-�qy�,��h������-�l��k�SUԈ#l���U8R�	!�4�>�0!sh��/�n
���Kz���	)������(��5����5�B�A9�b~�17�M��7N�Q��i���P�$��Xl�~jn��5U�7����1r]:7y�;߿u��OL:��)��}��c&^�k�ͣ{^z�%�/����/�xi�ѓ�t���1�GO��륷^�u�-�ty��]G�0��%/9��{o�u�Sw
3v���'K�H�$/2|T�&|��~���`�U1x|�C��;��^�u�B�\�c!���W,�c�����:��s��|��{s�ͩ�}4j�(�W��54��ɇ5���__q�6� IDAT�5g�tX���.��-r�DZѳ9e��n�>��1NĪt8�j(�\A�@��g��$�$��0VY�o^|�Ճj�q�@6
b�t�}��SJݘQo��o
{{lQ�43�1����ޟ�p�o�IC�d.@P�Z�
�S*_�"����BD`�d�@��˯����r<����T���v�{Z�����,I1��y/�ĺd��@D�A!�ǥqH�.OjLR�&����s^N^.�<���9����*�5�kg6u-rȆ�D����07����
=G���ۖ�=&n]7�0��ڕm�/���-<^
��}&���^���@Z�iaC�k�V]8�0�R��eɦ�t�-[7���
�q�Sd�{9��rT��U<?Ws��a�XR^\$8\��%z�ȏF��wF����OC
"�GE�D�m���K�\���>�i�#����s����Ng�����֗L���{׽��{W�5��Qo�ް���`��_���?��Ɨ�vzs��'���GE\�����Ƽwڼ�{-��`�Y����!g��O��COܻ��To�4����������1�tڧY��}w8/�[�K���꺓.�2}�C�>0}���ڣ3�}����y��'�=�{�xl�=�?����x��7�x��7g�u𢡊�q�kO̙��So>���?���&>9���7��8��QC���雝��K�ꄗ:�fi��z>��ϋ^��cq���.t]�G��e.�8]�4h�O�S+N��s�O�WM8��[��'|�;�K=7\��|�s����>�:���|�6��]�v�O\�@�;F\�V8�]_�sI<
����!o���Ԑ�ޏ�h���Kɒ�{�t�'�>��=|�I ��i��z1E��*�M-=@_����4��"��[�� ��E����
:�{6���&&w��$"&
�g�ņm�����xs�k��w�3w��F�����~���Y�|��������f�U=��t�:Z��nH����a�
R	����E��zli�k��^3�l��l��d!W�4ˡ<q�4O�	�~�I;OQ��m?iY�ņp����픟a.�b��螟6\?���;̍�U_��F�����ZÐ�40����^n�7�,׭�s3�UA&������H�X��0�F��/cY�7�?P�ok;��ӛE�+;7�;���e�ֹC��z�߽�›/�r�K�\t똮�n�e�ú�~X�!�;s�5Ë�?���q��;���Otڠ�O|�y�����'�9��=���.>��iW�ݭ�]z�~�Y=���շ���u�g`�k�y���_=pl�k\�c��t����nW��}��>Ϝ9���ϼ��[��8���Ft��=�?邳u�uٙ��y~���2,K�]�,��kR.\�Y���9�5��X|��v�g}>�������~�N��̼Vy��)W�P]��͞@z{\��o����
���I]h*T]��{L�*?O��蘃�\�]{�՟rtw�]7�9w�E=;����93��Jσ:��a�w��~�Ij��x]���4��	7$3��B$�1V<���?��k~������/h{� z-�\^o��e��!����&�>�O3??1�I��M�_9��7ï����t�7���>�g�1���C�b�;�[-���
�y"�|�dH��&�^}n�Z֟���__������h���$O�o�ܯ�CXQY[��,�i��8���	�Q���֬&�l�熠��~�A�Wǎ���UL�~���-�2Q�X��ͷ��<*�w͸;[kz����g��5������m�~���9޿�=�e/�ꈗ?ye�K�����ǯt�WN{�Oy惗�{��|��Y?��+����k�=���;>��
�}㵘Ѯ �s@�pt�:���7έ��
oޘe�z�5?�����ӮI�z�4�[w�&#
�l2��-��ݵޤz{�p�Y�z��ُ�|��G�x���O�|�٧�|���|�������z�g�yi��s^��7f�������ϭ���e�?�|j�رޟ@�$	���S���x�4~���[m�\_g��RO7!rF��96+'�NY�F� ��g����s|߇\��l�z(�I�����+3.�d�޷>1e��y嵨
�p��_��ƛ�L��YN�n��t�׿px��{��"91���A�)�= �¨��|�sg��t�-OM�d�Z�"h�,�������K�|'S;�ӱ}��eݙ�.�`���x�BW`DTd�J���/��n�'*_�`�ص�d��J$-&{i�x�����Mr;��:�Pk������t�’�oY��1+��+)�/M����um�@O7�g�*�yaie�������ɸ�N*�yί�ߟ��兀T^��e�)�K��/?|��G�2���{A��7^�q�ͣ;
�f�g_>�������]ξy��G_xJ��o8��s'�߯�
}����~7����W�4l��;.�8p���.�e�=o���7]�̀G�x��Cg��0lι�.���%�s���c�|���V�3��L����5�X�YŀR���Ak���ր!�p�4i��Ү"R���h�����YN�i�mɶe��M3'/8����t�p���:%V���r^Ȧ��_�ԁ�p��j-��JK������vm��xㄧ�z�E��OQ��]���0��ŏֵ"�JZ^��7�c��3E$'��B!��	ؙ4lۄƋ��x�T.{�7z/��k�6m��&�q;��G���������(��nZx�������p��Wּ��w�H��	K�#t$,F4�T:M'�.��<9��[�cn������uK
�Eո^*	�x8l`��_��*m�E�����=���g?1���@��{�
r[��U����?�����;߲�Νvߩ�Im�m�a��w��a;��w��'��k���)��m}�S�v䓗L�j��Κ��o����������}a���0���,���W��]����3g�D��>{-nc���~��i�Nhm��ڮΈn{7�u�]�v�g��{pȀNm�y�'�Pt�e��6����zL��/����	#J>{�w/wӛ�n�w���f�O�p��O]w�3�f]���;Ι}�o�u��߹wЧ��?d�����C�z����zdȏ/����ů����'G�z��+9���%���ؐ�>:x���}��=���!�\�ڥ�N��}�!]w��?x�xh�S|��"'濩�kP"��A�"����wC�#��$u��nYl˩'Ӷ%9u������sfL���Gvx���emQ刈A�9D�:���9��m��]"Q+	='�8�����՟��̷����"X��x{�i�ԍ0~�i~ξ���|Bk����_x�E�G���~���f+<-_�H������La�=�k��VBd]�D�-�M��m�^���pm��|���V����?�v�^�ӪΜ
��kD��7��m��\v��I#�>qxm�	�Z��6+��~�^��#�Ӑ��8���"�N��x���m��ܽ�#o�\�5Z�c�/\�NQ#�9��C݃b�w@��������`l�6�^��y�gn�p�����1u�.S����{F�挫�|�{�{s��1���oL<{�7�}��W����W��q|���{�s�y��h\�}<���9���c�m7�ۡ�w5��]�
��O�tJ>��y�U_�6��v�Z�t��O0R�������o$��C����(�j*�r'���J�wME�
h�w�(���_�M�%��K�+Y���2Q���8K}�Z�O{�o�ד��ѡ��8�������X�?Z�O~���CƏ=_���5]6����i(��7�� _!��f��[��%�&:�7i>0o����hǢ��0We�ͬ�(��#��u]T$x\S���F8b@<�SDH�K˖�{�
W��`ɂm�Dp��˛B�]IDAT�jc!���o��Z��D��:���
:���%H��;�H��¨�+�|�<[Y��_�t:��}�Y�\�_L�T!��va�)�":�ZېY+?�����7�93������{�ާ��+�z.�y�I��_�����s�{q�v;�߮��w���2�Ǿ'�暑;������v�}F���+�0�!����>C�=���s�h��w\��[/l�����r�
��~ݭ�}픩w^unj{�����7����O�;��s�O�3k��g?r�y�?~O�w���n�񃷝��C��}<�~�>>����3����_���'/����.�镧�-�������qȢv���]s�;f�z�O-j9��;��xX�O:��a�sX���av�í���fJ�<�\=��t��R+>�=�bގ,;U.��1Kab�y~�1��ې]��ًE\Y
�Z�^
�+C�*ID�*D�0_G)�(��d(�|��+r�E��!�2(^K9Ku���� �
:U��6��x��R��J�MdJ�	W.�d���8��Q}^�3������}��?�<��X�:?�! eWA1$M!k��'�d�)*$����pH�[�A�_��̻����f|�8ް(�&Rl*[��K�U��w�ڽΤn(y99H��w�i2����K#/���O~
�;�?=��uN��A�6�E+*�ﻤ����U�46�ǩ�>}���o��WV/���'F*�F��T2ykaD�()[E\�&rb�L�o‡�i���d�C�T��i^��l�pEl�c윱�?���c��=�r�k����Pg��h�wS4�ɼ�~���hv`s4߿Z��Z�3�жo��}��o?�ا�>��SW]��Շ\�䵇�Ե����#�}��c^}u��o�7�>w�ǣF���y�;���Ϗ��SW
l��������r��v�sJ�S[�6��v�u���3��;q@��nn�}wcj���K_�`�|�
g�k��s�(s����Ғ�F��gk鯊���;�7��鋊�E�������]�M���e�~l��2��<�~���i�I|T�L}Z']�I<Q�q�L~a��A����L���EI�/T͊e��(~��t�l�*±?\��s׉�;����"�]@~M\�)�PZZ���$�j!R���q<8���DV��"�@�*4h����ESX8�CyM
��?�uY')R7�g�vmdl˗�F<��`T-֢�v߷�}�+���+yX�x�W~Ǥaц��5�g�$|����� ��B�,y�棺����Vw�X��Q�s�zc���=��eUg#�<5H2�E`z��{�����:c�4��42��L�:*�$� �"����7�{g��gp�:��A��68�-eH޽�r���S4�Ї�$�j��c.<{,�[#�+9aƏ3'M}��:�ښ>�Q^e���"���}����	ԁ����.ȅF�B>ೋ�PB����5؂��g��q�đӧ����[Μr}�g��'��������7t���>�y{Ϲ/��w�����C�~�[��'�7u_9������{��������WK��]w�c�i*ڱ���]�o咏�����]K?�)�tn��y�S�>o�X�Y!K~r������n�����.�V	{+�[�#9?P�[���!oUu�`�Y��]	?�q#
�*{�:�:ʳB��b1�
�_�+�JDM�=�8�ֆl-+l��BT��	�Շ&|��N�,�k�u�ja"��� "&5)��@
��x�Y�]���d���;�ڵ-8����܏b򮮯�9�ɘx{��F/��`�	�^ �u" Ep�˄�2a;�֣�I���!	B� C�̮�|(���0�k‚p*Bu�ި)��Ni��`�c�s+^~��O'Z�
s���19V��H$���N<�����ㄍpn�&Nrp�[����zz�5�J��Ȕ���
㥢��O���%
�;6�/�tN?�gB�	����zk�
�:�Y8gŦ�?�g�  6O��G�Sf���g?��Ҏ�|~+D�t�I��8��
�Q����\lZ�%���S��	����<Iz�x��x�q[Bχ�v�5��=wU �敚��b�&~X���/n��-*�i�'�_�l}|뫣4��.9���^��#�%�UV�&ʾ�)���Y����R�Cݨ�� ����n��^Inz9�]������q3��/
6�b��Py� 8��*x�W�u��U
�e�*+���*/��^����Ln\��ᱵJ�
E�=
pT�J#+cCZ��m��	(ܧ����a�}T�02&?zB����5` ����ܗʓ���ܦ�$Z!��a�&�U|�����y��s�㖗ৃ�jl){��͗u�c�x�W�JW�9�i>/<�$b!-�@�2)�?��8|�L���*5bA�K\Bg�
��r��|FU=�}��B5�
���E���9��%�Py+���	��~ح!���/�9��!}��AK�������r��^2��wijTU�#"(��L�
��v��M+�6–P���y��u�'�^}������]m�Z�b�l0�pv���ϱ��36"0M������E��|��-lV���?|{���kږ�B��! 6�vP��C�{���OR�����քe.�ڮ�C�t9�+���8�|��Sn�gV�P��;{i�'�H�d%xf��)�	Cl��t~�&���B�	�#�4��?��3u����.j����<rҔ+o��3/���[;�T�T�SqJ��x7G7�#��m%�z
q#���a�K�$Ih�a"vyҖ��	�I �d˖�,�+����<��ɋgwx��(c�3��
;����N�`<����I��ʟ*iܟ�ְ��Y�u(���O��r��ǖ/��	S����zb�t�k2�E��?6�P�	�k���5�����}�\���a2Tx��x����lRs��^"Ǐ�q���|�b��8��e�p�Cđ�k?\����`�Z�r�@Z�#��AH�:����M�Ǜ�rZB�ʊj����{Z^k7\��U�e����S:o����{�oSm�w�n���n�CB��R��{+2�Oۑ�Cmn���s���/W��3�~����5��_0�g/��������b�1��&���X$�y��LD�p�*��L����O�"[�Y��G�L=纑7�wQ���4�585S��Ĵ8|^��#"����]���B~,����p��������u?}���N������� �O�v0��8ħ>Z��~��x�E�bx���U�s����3��Q��\�ꘉ����n��kVi+��s="LܪE@�`0q?���\]CFQ��x2W�zK��\?�ѩlwS\w�/���{��}�YϜ}��O��Oh�/�X��k����s+���S5�����2���c��딛Ɇ.��3i�3UA$��L�����|&g�;.��6�a"&-�|�*b24!<)���J!_��9��]����>0Y�4�Gf������*�,�������^+�uL�yQ�ytC AS	o��!��8ƒ��塚��
W�������9�V�~���f4�B�榢5͸�(��ꦒ~�DY��(
+Y�^��45(�t
�TyuV�u	�[�
��J�Ŗ�x�m4������`����X�#>���4��
Z���e��W�;��<���
������ߕ<���Dn�lQ�/~��ʧV�O�O��'�З>���/�;v���Γw<���?�ֶǜ}מ'|ࠓ�{�iC�;�S����w�yEç?��;F5>涫�<��.��Ӥ	-�z�cK�iƏ_7��gg�d`���%?��*��{�b��B$@D�’�S�4ի[�ﴡ��‰��ܧ$�.vl��3O��Q�����K���P�&Q�	
�BUU?�<.��x��x�Lː|�6M� <I8���IDAT��)�r�
���#��2���=֠�M���t]m�=;���f���h[���Ka�(GY��k��uJQ��@ƿ���O{������T_�M�<B�+r��A��6b���S��FJ��V¤ƥ��2����M�n���Q��]��}����g�k�ǖ.���KI��rCz��F�%�(�6��
]� -,���-`5��5�ȋ�");-b �r������:O�ೢ�/n|!��:�pI0�]n��xZE�)ܖ�0��kE�ńV-l	�A�ed%E�����u!�D>�z}d�0C�a�q����Z�⭀��`+"oghm`�h��9oG�;#��Ko��h�5n#�2�K����%�,Y��7��l��jo�G����Ղv���M�~�MU��������7���rߛ}'?0���{�8w�o�s�C���7Ϲ���z�8��^�M}��)/��a��7L�u�uw�|�w���i��y󴗋o�k���=��k�z�㍷�r�uw�z�)�w��O;z�GN�f�Q���v�gN:�η�ھˤS�zK��Ϻ��=��wl����?w�%������縞�f��ΏO�7�S�߹t�wX���X6w�/X�_����a��%X3o!��D�%H/Xk�����n��*�<Y�~����@@dC��C��Χ�rꃷ������/�����^r�C/{j�&mWL�ĪDDu4��1����X������Z���}7�p�<��ުpD
�k�0t�Q����OO�6���{�|��b6>�}Ķ?��?™����ُ/^�{�gԳʪ*3��R?GY~�U�P��Ps��w�⁧�-��OO_z˜�_�Rp���*QwYBD2&�xRQ]S�fJ��
��.����N������6�)-�{G�_ܷ���k�*�Yt�U�STw��ä��\+ųL8���+UVV�"	9��ˆ�nq����6���J�*�reh„�g�"]�
��U��EOa
���4
���8�p�塀vƋdr�NQ�Qey:RfQ�Ҕ�W�&��0Ed���~���On��{�7�F-h��ZgǹZݶ�
�~?�␷
v>��p�������w��O|����o���u�Ӿ\����V4��_��ؕ�}c�5����N���z�^����
�v��y'��pީ�g�����ϝ��ἧ�ϸ��&].x��1Cg5xF��O�ޛ��qy�\s]˓n����oL�辅�]����yz��=��	O��Ȥ�V?z�S%O�ܚ��=���۟-}�������r�i�V�0}v�i�%_��j�쩯��yNjkޟ�B�Ǔ^\=��g�λk�n���/w<�կ��dʌ/˦N��;s�������%U��Z��g��2���Od�Iv����q`��X��t��ڵ�<�;�aHl�cX�������Q��O{��N����Z�!j�؛�ܰ�K�/0�j&�>��AD�T�@
�A��ɎK��N^�p��]�P�b�LVA�U?�Q������e}o�������ws�t�c�~[99V��b�A��T������~�̜���Rn��e�
���7>r��ou�1��s��������s��.�����O�~�K�gj��M��W���pʹ�_�eƱ�6��J|��N|�[Au�!��V��µ���|�w?z��O�26s��d̓�ϓ��"��E�m�d����:���:0U�C�TA��
w<2�h��uZV����*4ZT�4���i��j����V�en���~�++�l���s�|�ݳ/����&��Yw=�A��x��U7?����|��/t�j��g^=��q��>}��Ϟ~��t��':����o~��K�}��>W>pJ��/�	;��������w�sL���={R�ϙ2�>w_ܩ�}c;�1�눙����ɗ��<�~�������GVw;o��e���3�?�'?�A�$�-CJ�}��$T�1�X��̙3�y���y_f�Ln5&u>A筪TEaŠ&��O���1O��{�Q�NmKqۢ����;�#��'�)��p.���ґ��	��co�&ߕ��*��]gK[U����H��$s�?��=|�?��L�[��YÆL�6D5.\b�A7[bKPb{�A�O>����n�b;/�… '��%pRQ�Ï�?��⢺��dk�y�ҥ��.yw��?=���w:���\���Og�z��7\.;�qX�'u)���;O��-�YK+%]]#r�>|;�L*
��؊�@[߬�m�l-#��ͯt]��k��#�h	�a�Ϸ]��'��d]�҇%�SrУ/�����%�~&U�!���7�im�����m���@�V'?��N��8p�����K�g��x��6�L��ɓ�u���	OV<9�U��.{a�sk^�����w޸�����_�;�_Çw�f~��Ww���f�3?M~j͒;f����饥�<�]��j�uS`�J�6Z\\�+._tj�ЎC�۽ހ{5�sB�&}��ޢ瑝[�8��NgZܶ�A�v+��Ľ�����:Х�����t:��n'{�>���v�Ig�]|j��:�vξ]�������w�c������/��7}uǛӿ���3�Lzc�緿��緿��׷���7w���w�~�j��OK~z��7Fw]�>"���'>[���&-	
o���� ?�����M:��8�猟������k�N�Z|��564�˨��~�5=ƞ��_�5u򃿶���%�W���ʞ�5ɰ�
��JQ5
'i1��0��c!(���3�\�!k��FD\��y�'+D�(�!�f��_~tS�[=`�~Ny|��7��7��b�?���|�]�[�Ξ�"�F^<���_��o��׍�����q��߽��/��Ag�pY�'v�A�Z�5;�S��*�d��x;�"�NCNB<�G=
�`�9��L�u�P�
G�P�L���x�V��ڼ�Ǟ��]�=��ß��f�8pf⼱SSc�2�6�?Oq�\�)\d�<yֆ��
k/E�Pm�v���h�Ki�ֆ��ٝ;�W�е����������6_u_�������.�~��O�|ߥ��w�����Y&=0��;��]3���3�<����?2���{��!7?6vȭO�|ɓ���C/{r��O^�oؓ����F=1�ܑO�>�'.;��'.x��z�yI�!3G��`��}/�9�א�7���x��}g^y�%3G����������{���j��z��ӡۨW�:��Z�r�(C�pB=>�6k�v����^���Ym�M-��cd������X{��7z�p5�f!"E��AaR��J�����$M�Cي�uC]9���']<��'�<�k�/��Y�9��S�X��z����kg��ק
9���=:��ĨA?���RM���_K�ܔ+[���3bP�	�U�9��3&T����ָ�[MBZ�
��
��J�W���e�˜-�'��L���x���>��[����`H��ϊ�6&"�m�̷N�úK��OL9M�FbM=7�P��O�]7�9?x�ء'��U\�$�1��/m�g���O���_�=����o��T�MA�/��n�)6O0���p�‡�hL�jl���w}�6mM�H���4^�x�⯰��z�ׯ�&�C��a��ս��
=�W�AG�l5��^;<���r��}�_�]�s�ه�9�����yl߃{����mߣS�C�9��z�9��^�i�Y����{�s�����.�e��>��]����Ϗ|��/�Ο=��~���?����>��S��2cV�k��Zѥ�ʾ'�Iv/:��h���wѷG�vاG�V�Ʊ��±{��{�q��p�·�<l��jޮ�;��o����nS��Y-�[tU�ԳV~���U�.=�r�c��9��䢊�2�V��H��2�B��;��wQ�6�J�U��!�7����IQ7���U�ܺjNLM�aT�F��a9U6�SQƁ˖��T��T�f1m����JVIDAT
LӂfD��V|���@!�d劸Bn���E���1�q�f��[�G�ms?~�����IR#
W �Ǥ�N֚�.�~��C[���������t�WwV��h��|x��g^���/��U����������u�����O>��}Ǭ<|��<�m�i�r�)_Xr
*�vT�5�"b�	�tO��c4�x�e�8LئgA5�l�����
���AQ8��D�q$�C��0�;��ƴ�S_/y��q878�c�v<��>���Q��~ɨ�:��OK�;��9yv��
c�����Ο��m��<�uA��P��Ay{�uˠ{��/G��Ģj%|��p�<��V�G>@.��\����y%���t�w����!"ȉ���u=6��L�����Q�B��7G�P4	�Q�~�mݺ�6��+�y��;�׶}�䋮kt��;��?~��G^s�C�L=���o���Ͻ���G�w��^3��'��s׋7=:�[}��{��I�<}s�+_��ㅳFt?o�оc^����.�?���g����^ß��ϰgF������'�u��ܭ�C�:�Ag�}�Ç�}�C�{xp��ܽ����������U�1�Zaݜ^��RO���
q����i$�S�*��Hh���JZ��v={U:�YVi$WT�ɕU��XP��"+����5a�4�,���DP3*b~Bn�ip�ơ����F?���!ĨZ"0f1���}yA�ˆ85��r�7��a�P����+�>&>�D%�LB@�<M�eT_�ӣ3��G;��#�\��u3�V�����~x�y�H��<��@�n��rX-B����$R˫4�Tw)�Z���Q�޽�O8㾮�v�o���O�R�f���Y�a��ůtÉ��	�q4K��ˋ�Aad��A���&��‡Ãw}��NV��\�piT��N���I&/THp���)�C�9g����8���3gZ�B��@`۩"���l�#��#�G?H}��7n<�Z�xmi��_V^��w��w���f;�t򙧶���i���7�(���O�YT~~%~U�L%�ttCA���FX���L$��k�O�
��$\�gY�;x��өr[!����:6�Sp�d��!֕��5�+��.pH�S�ٷc��u���M����/
��Yc����
�zǽ��2��;��?���~�I��{ϸ{��1�����N{��}��}�>�u�Ƕ>���z����������{�޹{��-���VF�~ME�>�Ш[��%���X�(y�oW��U�/�a�!�[�~�+�_���}V.\�G岊ݘv5K3m�
�5Rh��J��jr�z����-?��gD
O
�r����7М��~)VNƒ�5hlݥ��0���Ri�&ŵ�ÁƋ&]��6����Pc�R�&�RTI��(YtE�R�qrC|���ۊszt�B�B�.X�[+P�p;�|郈IE��*a�B�j�E�:��U���	��<ݬ����\N%�
B�
*¼(�P��R�z-�k�N�z�e��T�D�|�aY�E��E(��+�ݮ��($XXOp]��*�����u~�S�PT�k݇��)�J���*��(`��B���%��$�V�L�]B
�	�<8\��.�
y,2�����pf$�e:���Wx��!|?��9��w'Ϝ33���3@����-�9sf�\=����:���ώ����A�g�6��/�m�ӟX�ŬM��S/8���{?�d6�6#��J��-d���p4���f�ڭ��󳡜�⹉'6���a�'7V���ޡpUNp\n�%&u��.�I�-��r���m��xL�i�v�]�9}��W$�ON����^�\E����]��d�w�XC�iU������n#��qU4�$���~�p�بXX�į	�W�p�|�����!Ģ[!��0[�>TSaK5��G\�!W�A������%�����Fc�P�2T8T�N����=]�U ���-�@�Ƴ��!z���k%R@<�K
��0��򫑬��֠9�$FM������BD�N��-_@�J�!�g��"����pwL�$�h��l9���‡����j��y����]O:
$�
�cO�
ǵ��,�̺�]ׅ��,C���RU��[�z��9T]�`�#�"�(�JH��\����Q�밊�	�đ�d�\��2�d2
�]ٚf@��~n%�2y�ܐ΋�P(˜��c Nc@8N|4^~� ����']��aMD�XԈπd�gň��d��S���l�<�L&�]�	�GcT�/��/���!����JY>�-�M��ؔ�}�;Ǝ�'e�ܹ<����P�fO�u�.-2����;�f�H��ab
�N~#ؖ��3x�2��<	���iJ�(v��W����#���D�1}���<��o�=��_���lT9�P���Y�;R	��2�^$�N�a�IA��S�j!'���c��1^�	7�-�(T/��
(�
+i��[~:r�^\��0qH���sy-
E�:B��hܷ0��y�2��<.i��xl�
v�� ���2O�:�dI�xBP�.A�]w�T(�Ƅ�BZʂ'h�'g���a�IH�bKՁ�gx�	Ɠ!�ZU��3t�q?�E�" -KԚ��FtU��kB�A���$A�Ϻ�`U t�g���=	˭��@|O�
a� M
���#R��͂�%�d2|3�T���Z<^�	ŃB~��h��
TC� #Q�(�!h�.W�_��j�$&۪H��0+�ߎ����1�3vU�J$3I�j�7�:<���x�,�ɕ=��׃$_� RHd�t'��D�{2h��d���ŕ�e]^tȲ�g#��%�&B@�,C"�<d�܇����!{ȼl�?j�!n�i��0���}w�ဒ��4��G?��c�s��X�����A$@����vm�:���	�U k%-TTd`�ը�H+F~+<���A���#fjRx�R9M�P����J%�h��&�Hq3<��"M�yTy���ұ�m["t�jG�0<����B��"J�$}&,Ǵ CM(�U-ۖ�{�B�L�6���L�F8G(��D)���oZ-.�:���
�АN�!�q,
	��}h�@�!�DDD�d�p��5�3��q��“;��P�
TM��/�,g�m��TC�����g���a������1�IQu.g��(���w�1Q�$�xn�o�`Ha�9܎�P�>�$��C�>�@�V5�SI��Zp9��|�n��W,��p���
���D�_"�¤/��>YH
w$���V4S�\�a�.�	&[�9n�*`�R	�AU�J�z���>�Q*�rBL�a^�i��P�l��t*K��[�u�(������w �q*?�J6��$�L&i���B�k�b0�$��`<�Y�(3�[q�_�iܟ�H�Ê�(?�<X�	_��1y�8����0�<e�)//ǚ�5�D}W�����+���=_ 8�{��/���A��[\T�>F��Gy��أ�Ƥt�O�'-T�<�9,>�P
[���ۅg�ǖ:��Ͼc_8<){<	.���"R�p�蔴�5ڄ��:�H�n���0��WWC��ה�	5fk������#ήiC� ��O�$��~ِ��{s���2Q8l9
�`�c�x�.O�Hf2�Ǥc�^cp;)�R3��4"q��
5�@����,r IG��,B���'S��6��]f���<�q��q��܂8�0�.�9�	n��J*�`KS��� &5�����x�(�ƺ,*]��:����*,2$��@;���ߙ�r�k�z�*(�& "]P4JcHB�]����wB$��H�NH�k�m��w��@��/(j6{��N9s���is��#%���8r7e9���V��7>, �AH���A�0�H"�h�"|B�<�0� �K�q3�A!yDp���G�0JR^��X �4�lfP�!�v��L	����?��'q	.@��b\IDAT~�h&M��n<^@�5�4����>�Zf��fnXŌ�x�E��Z���ƶ)�9�a�G@��EMH`��	7f�w ��K�9�1��,�F�B��'��gP�; ΐD�0�ж�_@�T�qe6k��������>���\|�{>���G?�l�#���W���Y��9]!�O�[�4�cv��s�Dډ,�(i<��1�^"��*��φ��Td���@���Y����$�.@a�H�<|<��3�&#�AK�."v�Y�gǔ���`F��I�6k��r��~�D:�
��
�P�Qdh6}8P�R�"
�(��
�"x5��&���^���@�PC�=��pV*��Ԅޯ���50T�=xM��Q�e�`H���TZn8����(�A�<m@�hq���{啶V�理B�5���3+8�B��-�C�k9��*�<�@@��S�FP\��CS-��ZxA�(<@��l�?�x���S���X���'?baj�C:,?-S��bS������z}�p�R*=�"�H_[������`�mmt��������Udq���N������(�q3�ε�q
-Sp*o��<��eh��_��е"դ�)�}�.#��iG^��x2�н��DZ�����`Y�ߖ���c����}�ae���;�G�`=�"�?�%��?�Ó��-w��~���p���9���EW]{�%�ƍ�e���:�'_~�y;����{�1�u���׮�4�1��,��
��&Ik�ez-6��V��N���Yɿ<R�����`���G�
�C��&��C>ȊK����t�-;�u��)D��q��_!��a�iЫ�������ĀY.G��ô�J:�M
�&}����!`hDA	B��)��/�\��c1P}�YDoo�g��(L�7&Ǽ�,���P�(�
<*GcT0#cK��7�a;#���
2�J�E�q0�VrP%^���	b�H�G���9'���	P�x���� �:k`�,�R Wyv��o
�������
'eDq!�K>[!���E,)39ù�LSv��T��`P��!��� ����}�9k��h�7� ѲRh����ذ����d\>�'�E\&}-^�nP$a3�j�5�f�p]<χG}�KS��gE� �ҫ�WA�"B~g�&���J�}b�瀌<K	C��f���H0�b�GQ�p|�3\嵈��98�7�<M���9�j�a8V�P)�(K�#���f�k�_����O�h�ر	�^s9�8`�A�u��c����:������?�&�[����Ϲ�͗[o����jr���#�?��i�{iդC#�B(��PZ����ϳhm�P����Ӆ�E���R�굌B�™׶�[oMq�����W�l�3�ƶ�\|��i��<ŽJ��8iPbe�_&n�zW0�m���~-�Qw
z��c�B���aM#^�,T�&I�������Q:��|F�5ƃ�e}%�y-S�<`r\l��"�� %|���z��`S�F����A��V�+sD���q,bv�%]�Z�׾��qm4� "3qk�uڶ?�B!e�$�8�C&�j�~@~��Y��X�+MS�g��!�x��(a�|���DkeX��
�/�������F�gC�{�Hc��v$�P�a�s�eWÀ�J��/8*c�.�� ����W���-㇂��}���(�����D$oK$L=��C��Ff*��4�"�o�'܋>����2�Q��҂j��Zڄ)[W���\��>;
s����/����C�b��x���mTJCRo]�c�A�~������}���蛜ls�:;��G{��T�I�GK0Y=ͽ��g̝=�)P)���g�5�q�޸ü��e��ŝ(
����|��ӯ{i�Uwz`�C/zw¸�q(G��.~����ȓ �B���|g�Uʳ4�/^�y6SeԣS���*�H�9�Z�RP�H�_D(x�'m�AX*Ϊ��wj�{P��o���u��
����qc ��⒁@�^�O�_�I/H���]�A(�@�����9SC� "��.U�F�g[m/��c^�:�����/xY��E����;���G�Z�y �"}8�	D��֋������*:-�~�i9>[�\("k0z�1�'��r���`Ƶ�F�-�ᐴ)v�a�������n�8 �gؙ4	��M"�?�|~�4+`�՟�k��
Z-"���T����L����,"�V�P�hA���篿��=ƾ;����\̆��g�俺�]���<��Qw>x�1�m��k�o����k?2��p�6'�Έu��7ra�Mھ�Ҋ#�����&��4bT�q��^��ʊ^�*Pc<�L�JL!�ykW���kG�<KO���]^u��?�{��{�o^z���_�~���VZ
�z��2HfT�α�RK.�-��z��x�Q,U\��RfU}V/��0��\D�T�Y*(M�K��y{�S�z�%"y���NS
����U_���(��Gqj�~p�]�����c���)U�|f�aG�J��R�C�T�j���-��s�2���*qF�ᄣs��c���W��..1��~��/>+��8��m
	�8~^gMN���g�6
"�O?�z+����bv�^Z���u}D%,!�V�lv��睰�ʛ/�_]�†�w=���</�<��W�2�c�^:��
"}e"��L"B������mg�KDX�wk]_��S�D�3�G?��'�0_c�Ȑf�<ц� C�\DoTGex[�1���G���k.�f��7y�/V����3.���zsn���3��A�;����~|������{��Nk��!���{�����5����?���qʾ�F��CeЋ��|;�A+�8CƐ�g�H*w
!�c����)�~ƃ?>�—�j����,|;���$��*0D��S���4
i��6�cX�iL��{vTr���JA�Ƙ>A��D8�5Hh:�������3�QCUI�LA���h#�*����q)����0����o��ia(~�����1�=�S�Tՙ�K�CϽ���5qe���5��}������<���HB���P�4k�	�A�<5t~���5��ziI�AAy�F��WZ�.ǥ��s�X8É0�g��5>��`5?D��r/�FEL�A˳wa>�q����e?�T��{|�Qgܴ�+�>�6G��HJT� a��D��q��SzD�^�k��7�*�ZF�
h(�J>k='cD$�Ϛ������6�V"�՟�u�喼�u/C����W
Yջ���C���'����r�9`�����WW�9vɟ�|�/N<f-W�7�6��5oh�e����ҩ�r�ۯ���t���VU�O��FT�w��ߥ
�h-Z��Ս�
����bP 'H�߾����.e��zSo��w��g̻�oV\q���?a��!G��O�|ĝ���
ڸ�o����<�Hs�.\��͐x��>�kj�z��T�(�
�����ٸ�#�
l��"B�h`��S��Jޣ''"��ռ��)c���R�"}�D$���FD�^~�H_SK��A_�H�3x�`��*Wŧ��z��xD"��ȟ�NAD�}�BD`@<�7f\"|&nX�PQ!���TdF��ao&���NAi����$"�ۏ��"�����Lֱ�7�}"}ms�lgă�!.}&��D�r�A�N��bP�CА�{����d��*�\���^4i��!�Q�TD�*����@��>ŭ�7�����J�,��TDH&y�3.�s�G#��#І��_���kUd6�-Y�����̽�c����\̞f�M��Z��=;��Cv��$�ą�U�Ei�!?��4���\?z�o��t��'/��⋇�I\������Z�مfw��@�7�vO���{bx��6�z�&�C�x�6�������w�װpIDAT����-�͏��G�=��K6�r㑥�6�}��O����O�b%�(�4D��O�a{[�p���M�<!2TR����dm "y^��>+�BmKo\�*�=σ�Z���>��?h�k
�`�N�55ƣN��&#`!���8'_�Q0� �$����a��aj,�z3�E���@�sQ��N��"drϘ8��Ҩ}B^&��t�3���#�N�5/�:R���S��/-��Z���?C|J�����@�pƁρl����"�~ZDX�m������a�T�I�ij��D�Lpl4/�{�04�u�ؖk��!��؁�c�c~Dz��̼�?�UA�NM�\S��M�eG�D����iʲ�H�3��DhH�(��T*�R/C�VȲP�|��w\6���d.�f�[��5����on��9���ޝ�ѵ��܌�M�<�Z68h��̪g����Ĺ��x�������n�O`�IG�6��۸��W@�J=�yk�K��Р���Gi���7���y\�<˾��3�x����OO��������C�_q>�P���}���^���z'�b�4S$����P����U����K�b�}��Q������*l�_��\ag�e9:C3j<���m�N����H>-�
"2��ǧ.�,����8}F�GD���_�.f\",3�.��
�A��Y�:�SA��{8��:/U�Zc�D@�԰��-$�
L3���mM�VD 2��8A��¼ay8hj�����,��8���1�V���ܔ����iQ �P��G�B�c����7S��dO��b�˲Š���h���!��ĥ�~q����4`�%"�	P�+��4Ot_��i�H_a��!�R�v"}uڮ,�%��r��O5�T���8����p�a?�fܘ���|ũ�~�������q�E����֨
���9�W���A�,>�ɉ?��K['m��u��E�A��D2�F�wo~�\q�/F�{���ϼ�ī�\e�U�	_7��s��n~��ځi¤�7�C\�B؆��eWu2�-ITC��Ex��0-��C��a����1�¹}��/�Yj�q+���w���Y��'v��yΚ~a`��Q��Q���P(9��
`���﷑�O]��Y/�a(��O1�&����Wϴ5M��(���B���� �8�$���*�oФA#"����8,T�����y��yT2$p&�18�bX����!,�y¶��q��JK� �`��&M-'�rL���T��ǰ
>tN�N2x<W�?+�e���<�h�B�u��|��q�O��w��b�w=��(��Z�qfx6O���3�,�I�!�x��Ru|�+xpJ|�7�mt�lo�~ ����r���*=É+ݪ�m���
t^ư�q��5r&l��7�ڰ
�!�/!Z���#b��bI�п��}b�*�wb�c��p	%�b-??�E$o�t*��\�K��rɕ��>�7D���r�k���o곈���g��'�R64���7'�Θ��:��?43�-�AW����w���I�~��g�;O:�7�Ƿo8�5o=m�
���
Ͼ��
�$~!̽�C8`�C���쇯N���o=��3���?������E����;�|0�e�y��ڲC���Z������3w=���~�ò$�k�Rl�氅���Z{uO~#��BaCEW�Q�֝���юj�
+��WlCwR��m�|�o��l�[��#̼w9ҿ��U����ݰ���^���>�l*������R�ى�$qݥb1R��c���TQ!�+�Vc�Y�z���/���0��a.�U8��PP\
�X����� "�V�"��V���V�D���<�P�8�g2#�o�|�0@5�çw��\Q;��/�iZ.����*m��rT#��^�z�������	R��2zp��RY�#W@�[*��^ɿ���ic��Mz��ҬP,�`I�*��t5z�D���VD�pͫ�=��J5�3h���\�r��45�(W�g���꥓
���S�s8��+���h��%BËд1�f�F|�8n䧈�q�!-	� +Iه�XH��,$Ύ"JC*�Δ���^ɺ��4�H���	c^oǬn����[D���TDf��|6��ꇼÀ-o43�Z�����O�i,�Q��^�!�o}��5��v���W,�A��|��_}��4쮕�l&l�z^[ѫ�5_��Q��Y4��Zs�y��~��%n=��~��U��߂�[F������9�ח�|�3�n?�9�a�i#��/n�g|�Ӧã��h�t�1a�-���S�;��'ϸ��O�v�mW��j�6�R�W�b�ݶ�Ac��h�wT)�h��C�e]���ܱ;x����PzR���;-����v�ûx���Y���4h�:+�~�/.dMt���^��%$Tx�$b
1�-
��L#�"�
�\�Q6�Ƙ���j��Vy_<���B��F�^B��T��2�£�&ogH��U��;���za[Jr��]�3A2�*Z*��$�/3�ȹ�:A�!U��޵���;�A���n�0��[�h�h�a{!�6CB|��R�%A�,��(C&��[1�P��,��B`=�IG#j�֨s�cԹVM�OwY��4CKSjA�n�f��ݟ��'=�!ar��i�y�Qt/�-��Ж����h����c�2�	@�%
�:
��&�8S�mk�׏Ӟ��1�j��}�{�u�t~|ś�?����oS߾���}�Gg������_���;�՛]���wz�{ҮoOz�w����S�hz�kÉ=���o�7��S�@�hp���]"2�X,�p^"}e"�O�h�m��"2���տ�ԻW�U=�@׹�ɐ{ ?��G�yvL}f�/)��p��:n��9a��xFs�sKK�xS��-D	�}���I�0�Q�{M{w�O����;{�E�$R��9����_��U����#�<�c�׏_?�u��.��H��P/ȃ�w{��LYx��m������C��W������j����nq�o.^9��s���S�>(h��\
��!MR�0�ZG=�aJ���w�=���?��O]���ൗ�|}[�ˮ�R4M��=�v���Ҧw���*��@��mm��A�0Ժ�^K�ppG���>ʛ��3��l"a������Z�Zm/"�@�j�?�+�2����+"�TADr<�WоJx���1���l�61�1
]I=Y5z�U4��
*{�fMh��O>{�@��(�e�X�C��<׉PTv��#'-#��5�F�J�[��<�IqP!+�W�F�,�*�(��WH�Mq*~��F38I*��P�eD�/]��C?���{O?�ҳ~q���:�7�w��ǭ�͗]a�mV��*۬�����*�l���6\h������=vfa��Դ��
*<�T��|,�2䑃~�-BF+J-%�(�W�<��	'�s�ȕ�_u�����uW�i�M���{�~w������^���?�w�]�?`�]���;}vZ�����5�_��ն��I�o���+o��߮���W���j7�����\f��Z�G�^���pA���iX�D>Y;>�ҟ�@Ze&�s.���"���|��c���<xi~ �^������h��!-������Dv�R������o��MW������)���9U����QE���s�,iן�eqnS$CmڇȤ�Fu��D�E��q�|e���?�����n9��}��S��Mڨ�@_��I�TZ�Q*���uz&��>�g�RC�ဟ�|�ow9���κ���.�o�u^g�Qe�*���]F����AUF����z
���$5�2@��\a�DeB���2�/���O~}��/c�50�z�j;��[Lz�Oe�n�H�j(��֦Uz���,þ��l�e� A�eC�G�Y����
)M����O[�|�>�#�PP���R�2s–N���'6bIDAT2�@�^3�3֫�Qм������qcj�`�"���-�� ,��A��F�|�˫=:�M{�����;��t?QR��m)DB)�C4h���U�}"�����g�	
�i�X	0��#:�|^}�U��e�e~��V�p�͖�d�͖�|�Qˎ���˼��_W�l�\�
����,rE�Y I�C�y�)��8M�H�B���	��<e�O?�o���_���x�߯{e���۝���z��n�GWw�U��~�����"9�N�5ĺ��p�t���7������/�G�x��QҜ�
]rZ8F�
3��D���E$�YDX�<^��
�μUɋH_��z-�o�y����8����k����){=/��ʑo������˂�Gx�6���~xݚ�*mٜ�j��T1(,{��H 4(�5�o���(+��:��m����خ��+���9`�|��;Ǎ_���ϯ��w��'���`R'=����^P��JO�����WD��(4eH%��\l���������1[��Foy舯�{��.2r�yh�.�S��_�J�b}��
5�a����dfЂ�4�����>�4>f�����-Y��i������Q����Q0�����pB��#0F
��q��,���#c�XhhT�ʗ!���>�M��O�5kiK[��	��Uᨩ��E�Û"}BXd��D��r�H������<E��c���r�i�m���wX�l��k�����?\s��7�ζk�=��c7x�/]���qz�^"j�9}��y�>��C�E
��<|�!{^�ږ��x���~�?=���WǾ�w�ۯ�ܕW_~��l#,���j�FG"X���\��,�6�f��O�v�;�S�tR��c16���[�14�.��qԏ@D�q��:�Q��C�HMj2���L���Njm��ҥ�֐&�e��12˚��o$"yV�!/��m4�&���R׽�k�����઴�`bu�����s/�ᆭ��2`�H�ǟ��^�
i����wm9�aM�:��8�h@��2�1���e�+���T�t�]h6aR�Q��_]sq|�0_��#��/�����ޔ��J���i�^x��x"4�>�����(|-��CׇӃ�;��\e�o��&[����?���;r��v[{��l�y���f�~�o�����=�^��D=8�Q���9Z%��6�<Cw~{��{^���W?q3�X�g�-��v�5�q��N|sސj@j)j���1,X�Y�7��|3����e�
���/�v7�Q�_Щ�C栂p����F�����.���ўN�<9oS�Ѥ�ZADr��D*����H_;��F@kbM��D$��K�+�!����t�w�}���.�a�p]�����N4ϐ΄�3c;AF�6@�P�~�<����O@����v���
���{%��^S%s]-=s�/�!����<
��t����+���{�ەr�����]D�󑩈��A?/����X����/�«:�:�������YF�5�İ��\g>�{JS���H_���E"}�>8f��#�/Z."�}��#Y����飵�˂�χ�W��1��Ѷ{BP�ϫ�7�+m�A+�/��J��n�R.�2w��y�\�G�m�Vm�-�b�ϡ�3��үM�&!��P����'g�^�1W���g���{�j���V��I�;�^���8��CKk;���~iw�0/���v[�n�p'�ϡ��w�9���g6z�C�����y�!-�|cЁQ����ZF
j�nX�m)_X�4ƛ�Ωh�A.�F<s�m���W
�CVYx�֮+%zo���/%k�!͌V�*(CA��ĉe�Et���\S���c�5v��d���QF	k(�CC�����Lˢ�2�9�L��V�=��y�zz^l�Y���q4���S蕊������>D$�"})f\:����We��U"��Ҝ��&����{�՞f�"I�\������D�9�7�U��=YK��$i/�C�C�yE�Tq�YZ���!`M^�4:z��*�У�#nFP�
�q�v՘k�y��ߏ��yeңO�}�d �`�㣁'���[��\��J-����h�z�dh�
/=6�h���Hb&L�x�~�5(P߱��"2K�H߳H_�#�I>?����_��KR�Eh����I�Zl)�;�F|e�9W=u�,��,��>�N��3�<x�����o�e��H�	���J�#��j/��~���?G��?¹��F�˄��z�1\묳L��s]�E�ev�u����W��������<�7����W.��[�y�@��٦HxF\h�c�%P֠R��g�04�A!�Q���\o�6Yq���h��_��S��O_��w�纻���w��wH7;��{�~��"��Qm�2�ۀ�9��\b�@}dF`X�JR������F?��1�:e�_�ۃ.��֐�Z�A^��1ji��4K��ACJMQ�[?�8C�
)�|D�B�Fx�X��!gcP�T�Z4��jR�J�Py	χU����}�Cb����BT�X�Y�df��}�Zo�W!,�΄�9bCBŤ���8�v:�z�"ƓdV#e ��Gai��Ы�M�@``26lD�:s�͔{���9�c�ޱ��$�zL`�p�Ny�5p\ K�J�U��� �� %�]I�H�t�"��Jw���.�ﱉs#%���@"GZb�J}K���5QK�2D	�J�b�|m��+
	�g�Z��eO
x��+��!�7Df<�^��C���&_���N���]�nd@�Q�9�ZO
Ƴ0\#S05�B����}g\4f̘T�2�'���d���oX?���A�qM¬?��	
��n"4L)���;�Ѡ@�� �h~#Ӿ4�kIs�@��n�b������1��)�u�����N��쑫�8�ċ���/��>5.dhH���Z���z�OS=J}�l�O���HR��=^mbw{%),_N�햙�ߜt��.8��?�����쵗Yf� G����1���:%qRe-
��
"O,�B�/��QJmɟޚt�v���>u�0�g�h�Fj�SO��L�lG��#!>G����"K
�F������%�P:E��C����A8���F��HJ�3�"�B;M��fV��Ƨ��-2��p,�h�ff�϶�\��|�|�V�E������i>I��v��I����%b0�Nf(L�x���m3����/H��|�����T���"Ca?������}ejl��y�����M���w_���Ή�M��D�T������5TERm6PM�D4Ԉ��Q*�8j���aG�H�o�d
D���7����>k��Q�k���3��Z���Gb�:̸��� �B��@�Tʽ]]�+:t��ͱxⷌ�$3:���~?]d�A�Ԭ9�ݗ�j�n@���}eY�3�"����Y�uҨI��W�� ��h��~"1$QlzO����RV�hٴ9a�����׃܆_B���q��r�%�_��߻>>�v�z]�C��v�tOG���f��V�}O�HO�\�P�x�3<ڤw�89�z0&�of��K�4�4��וּ�y��`��=r�y7|�Gn�i�������5���z�$zNNA�ˆ��r��A�o}��_�t��r��M��>��M�{:M�5^�m���3�Q��3H����Kc����)0q,Ń6Z|�Y`ogu�ψ�X?>"B�(�7j�4�*��P���pJ�%y���u kf��c�>2�bc�O��+8b�v�-P^��H�3���SA�*̛�f��i�9��,K
	����cYK���,c����颁	f1h��O}D&L��_�8" ���J{���b���~��/��=l�O�<23x��N�!��Hq�5
���"�֊��V�J��g�^E�و��Z}��6t�夹%���ߺO2!_"�����J4w�IDAT(�:���
"����cƥ�-���ȌR�S^��v��
<Xߤ���΃3���C�[e�Cv��9=��T�#i��q�Uζ�>Eo�A,�=]5XF���Q$}��ju*2�Dw��-�O���q��k�E�t�`߯��P37��p��߻��9�}��s���\v�{��7'�L��:*p��
���i�
�ǀX�S��.&�bۇ�q���zk(#i=���� >�����Xv�$��Pi{T�>C�	-�&�C�B�k�{�k�K5����ƾ�Y°�,�o.�Đ=��T1�a������.��	Ct����^��N?�;��Q�X�=�f�wp��E���lZDz|��U`��Q�`
��,�2�'��i��"���p(��S�H_cL޶�Z��\�/�r���H_��[�/�_�x4'<pH�@��e����%"y���T?�d��c�G��_T��XW���y�E�J%W��<m*Z���'M�����{�����rRK�0|�z�HAJc�܆���i�X�'~Tʥ9������9G���y�<oË��x��:{�3�<u��<{���9�s8��s:�l¥�y��v�7�r�տ���[����O��r#��웓dp���>�H_?E>��1�/"�~��S���m�X���S�}���y�*��C_�(�&]�.��/�'{f��COj�]K��4���訴A� ��Xp� ����G`h�[��z��Ʒ�h����
��"�J��Z��w�?3�w-�Y���^�E7s���׊��bb�{��I7�u�����k�sZ0��A�5\�a�4M)1�w#�i��"Cڔ��k�PQ�C*�(A�e�2�]�0����s�/��@���m�%V�ւ�f�tki8�T�"1�z��Q�M�n��m\H!���:CN?��N���Y�m<���&���Z��e3?
r�|�q((��S%�$�����j���C���f���ױ��2__-����BsĈ�ޯ�jND`"����G��T��ND+���;B��u"��<xel��t��]$ŝ�����c�v�#+���B��L2z�I��<4j-��:�q�c��K��jJ;��!��atB;wuu�xA!@k{�z��?��G݇/���_y��w�kҞ���z/�9
.#����x�p|���0(���&��L%�_L�AT<`��.��G�<��&���r�-n�e���k��/�v����Ov>y��p�N?��-��|������l��VY�;�
*t��N�{>�sK�B�U>�{?#oR� е��f|�2��2�4W�|���'�� @��QǮ(��P�A����8h �\�����\����u�oV6kv��UB#Q=���Y[���I��1'��)�Q��Q��VPkT�s��R v(�e�4c�^ˇ�z���ebu �-�g�֒�������ws��s�|��t�SN<�cx�ѽ/<�㰭�j��'�zK��!eX��%_>k|d��a�����7�C�
�/���K?M�|C����=�`��zn�{Mƃ���%s�|qۆ��s�Y�_<v,�b�}�$���Ɲ�u9�z����PP*��"���KDh\lb���
5bH	�,�tYO|p�Ǝ�^��Y�9f0���8����+��VR��&Gi���Xk "�6��~��"}�tL��Y@䓲�6"��g=�N"3g���K&Y��V�r1s��<�	�DD�Ae�$��B�W��~�GyDO�y�.\��F`ӌ "9O�b@cQ���5 ��O��aV�1b�J�/j8n�����xgb�*���)�PO0��ybx\�B�q�Հ]l����պs�9�1��iur����McJ͋��L�YG���]Sz�tpq��&�'v�(F�|��4�X��Έ֏�>�瓎�"�E�R}P��H^'җjy?���!o�8�F�2ɠ��R����Ï<�/�Z��h]e��~�5���^���AÐ��u@t�fLR��6H$@j|�S�����5�IX���Jmf�i�CW����y�¢�~cy�Ũv���Vs�.�������V��}��޲��O�kI��*1��p��·�@��P���2(�1���S���>�T���<�ǧ^���^���Z��AHI�2��U�d_X6NwJ^��U��3oMh���3�÷]l��m����A� �Eh)W��&�:��aᔻ'��H�:��x�oZ��~��d��[V������w�x������B��#BJ�&�M�?�[ˇp���o�����ʼn��2��X��"�T33A�b�%"9_SPᦠym�A���Lc(�����t!0�K��,�V] �@��n։� e�&�c��w����QG݃R�n��؟�S^�܃�c�:�W��a�̋���HgT���g��r���>��&�����'N����
>�x9z|+���"�1-1�l�ق#G��f�]n�ɍ�({E���	�O<��rX�I�F���4z;�:�����������?u-���`�WyD>i����1!�;�
8.�C޾��^׸��u�DP��É�9���)Q����_jXM�N�RO ��ӄ��y����!/�H�GD�5E�ҁ����F=���21@��\���/��󔁄-?�m���
�|Y#�+Q������s���o&�x��~}�}�>�Է����i	ތ���<���%)<�Cwo/�r��Y+T�u*{��0qϼ�����{���l��=��S?���j�h�XX�С£�c?dY	��6<zᵏ�;�g�f�w�;~�5���3/�Jݣ (��s}�/��͐\f 9P�d��
��G�s~�8;`<�ԫI�Jlh�hy���}믱�w�j�@��$���X��@zD8�����y�O�=�YD�G���7�"�>�}
`] �Rg�ʩ���@D���[E�qr<�wN���7�l�Y�m�iZ�9�TE�UĜf}����1��'�hT�6����9	���mm����)�ف-٧���f�L��{�@���@C�
U�BD�V�,���l7ҨV���f1"5BgW� Sz�Q!a�X,�߭���cР�y���C�g�#M d9��9�53D$�Q�{��^AD�5�Y�j�~��Z^߇�F�����?�᲋Ǝ�e՗r��ڊ�7���xШ��e��p|�,򸧬�Zx�\�=�RgP���6�<█E�� i��{�zk�����~{�%VY~���F�u|�������s����'���q���#w^��3/9s��^��U���V�Q����a�fҤWUdH��-�@,�f�bXr�����s���WYvP1t������h$�Ѥ��2��OM����������}�N+,5���׻&���Q4��_x
�*h�GF��������n	�a�����[2��Y����]�%NbU������<$q�$I}��f&I�<�wb��Ua��"����ycm_���(V��(���TH�9Hz��S�gM�!5��X�	��T��@AiiX�b�b�A0��|n�)��xJ%�:I��@���$�D�h���^iK{K7�Ӿ)�{��9*;5WD�N�@ZQnky۳��/����KK�Qǰ�?�][���G*v�43����,�-!-j��h����1��%��yM�R;T���wH�Y�А#B)ꦉ������q��!�F�\	�9ҡ|P���W�}�}
���"��Qr�W
0��(h^��x)o�/s!eTB!C��l6 �&�zށOj�/Z�+?N���W
<z�����S�C��fThd�A���_��,�јP����6��-�xt܄�w>�G�kǭ�=�{һ->��3ZWKd���|����̿a��1c]��U?隋��k�='���6�3���"(x
U���5���IA"鼉d�,�v��ȑ�XK�zKL%��u���'F�h #�^IDAT
R>"6����K������4תN�x�*����6�C���3��3�l$�'.�Oa�E福4��;jPQ5�&�v�Sp�� ��x9�r^Ӊ�@L(�R��K�������|Llqg	��¦06��D$W�"s���U��:F?h��FMT�k��:�,�آ���V�h'��c�ӗ�g�2Ѧ�~��"��:N�t�
}̘1�o�U��4������:���1�������1y�O�f����	W���8n���W�q�E�w�y�G-�*��)�@g��"�c���A��,M�֢Z��Ǘ-z�G&�ڴ�8L�FA$�drDK�K�0�h�C>h�~�N�Rop�0T<�j/�'�b���A�� x��=��M�4��,�I(n-$�D>5�4C��u6�#��/�%���`��g"tT����NEni���U�ѽF����?�}vt�[�H����b�Pq�:�1��z��c_8����-����i4��U#�u���
�07�����g๣~������~���o�t�4��DqH�^y��z�ڔ�ZiCCADKe6x�y���=n��o�:bPa���+�����>j�2-j��o�瘞��Š�3�Ë��Sڧ����d��l�C�P�5���Y0��A��Kt���#K�(�#�<�B�B	��w����
ziL�]�\�K��)�~�2�h�eY.w������| �j,OD�Yh{Pf�@��P�)��
��<��F��S�WŬˊ ��f\*�2�0q�-�]pF�/L����'Y�c�g�L�,%_9"2�
I�9[��=���HףI!.B��F��Z˵� �
�Qniq��y���<;�n{~��5�o�R��yw�`��|AӼ��q�σ�\�K5�^(�F�*qC^�*e�\���Px�C�����_�qͭ�]{�ms�ly�U�lu�l{��ms���oyޕ�����k/���ߜ����p���>i�鍞K�5葂�U�>p�~嬩��J8` �䡂+�Y��G�9�`0c?h*"9>-�'	t���,�F�--��4a@��9���y�S�.x��!:�k�к���
���SP.���?E4
���ۛ^p�}�M�f����Wy������Fq��8��p��g9��an���n����3�1�I���đg�ä��J��OM\�-�霖g=��^�R�+=�h m��r�,1d)U�]]]��LL�)C�v�8絽Y�N��~��S��%/���x^�?��R�4���\ܩ0Xh����$Q
*�S�+���!ͬu����鍏ݡM[�+\<�uqB����@�P.�m���94��K=��5"��,��A^�C�-�ז�a����\D�2}���U�2-횏�� H�R������(�s�bi�Q!�t����xsE�H��٠ͫ'L�@C��+�]�)ף�����P�B#}X�Fa��o�|�T$md��,���/\��>Z����]Wik�*�hԟc�|����Γ$Q�
)��M�hk/����J���1WN8��8���9��g=t��Ϲ����{��k�}��}��kNa�e��t�e'���ߌ~��1�>{䱇�7h�!Q���x�h������3��g]���y��r��T���䏹R�����'�I^�;��l�Qm;�@�����כ��B!D����z�tp~���H��X+HxLר5�a��siВy��v5[N?����a�=�m믾СI��'�8�u��w�:/���̆s3_��s��~��o��]n}�}J�z�ӝ:d^��$���ʛ?�q�y�U�ڇ���]H��B���"5��$�c�E�S�/��G�q����j�/�&u�<�T������,W��Y*T
�JP��/

AB��6|����sϼ������)W�eÍ������}����hsd�7˕�޵�З4Bk�������6�*B���c_M�牙0�ND#p��N���Y3�m5���A�jODП���tw����l�&f��$1�EQ������Df��) �+c.�%�8�sq�ҝ1���N)׽�ڍ�j��n��ӳCٻz��*#W�vH�Y=���Y�+/����wј�z?��������Q��G1�R#$�R�� b跧��T(����y����zz��;A9tj�rѠ�!O�?�T�'�<�5V��x��8�'�S���,q�+dZ�m	"}��Ɗ�7����?
S���d���<?��M��YJ�a�����ʽ���R����04xv.�Da;�aKL{�O����n8���f��W�ŋ���K/��C�	=7��V����+����zs|�0_:ƹ�,`4Fg^}��__s�z�yZ��:�����3O���ح6_oA�����@I��Λ�<���<����Q� �C���U���o�v���>� =c�SLX
(ü�j�>aA)R��h��Z����f�߫��7�;�vܭ��}�3�>��מ���Wf�`�e�E3�A\^bA��&A�F���y͌�꤃�4�z}Z*"�@Dr��B���r�M>��[D�"2��T3�Y'"3�E-��y0WX.g�Z�>�䴩����OA��|�����R׌�8�qfYN����=����Q�T�,{��q�ƳC��J#��Vi[:KJA�jw���G�^uv���X)?n</�0{�>ɠg�B>�!C:i��h�w�9���s�;��VlM|�Rjt\�����{M�2�H_;�}."3�D$_�Y���?���f���L�}ip�eW���+r������N�4�"�}�%��Zw�;T�-�������G<}�X aǙ�K��}7:z�����bBy0�7rm�-�w?y�̆s3_+��5s��<d���#�?m��{�l3���E��������ZLj���k��
'� O����zni瞡��)��Ͼ����O��2]]��"�4ٖ�v�`��G�@((R�$��3^=t�84���_?�-x��w�;�g�q�QG?}݌����.����^�)yN��WpY�����=(z�0m����:�)�c�GDr�DD��
���x¼fɍ|+D������Up���m)@�ޘ#��E�z���</7�D��,� �� "�KD`��̑>�L�BSC�Z��PH
���Z'Yz�u�ޝ?��c��t=RQ=Z[�Y�����_����17?W����;*R�!7\�LE��]i�M�f���}������g?|�q߃������	�
NƱ�c��0��,"\g�墒^cL��
�N����k�m3?Aq)dV)p�p_�8VИ���Q�}����/�1���0�Ǧ�N�;C3�{�E06Cr.�5�^$Y�Q
�A�]i��z��y�[m��}Z�s�̓��`�ݾa:����^���{y���6s�!�א��$}.{݇����W>|�L�#?%��F���X�>� ��4�q�'�i�����
��SØ��0Ex������YB@I�(�	�x-Ε�6�K����'��϶�f�����w���Ǿ:y�kk�H��
�|#����R��Q^�b���^b�A�(JSεO��7��`���2ʎE�i*NE=�ȘUH�����	�[�NAV��dE���/��ֻ���D���:hkc�g�����ᨆ8����C�֚��"�hd$��9aw��w�a>F"ٴg��cwv���V{4!���f#B�PZi��V6��<��'wM}��b�s��d��uw y��D�s_�p����c�{��{x�,ː�v�k�@�1fx9�2]��mF3.���KD�;K�0s?�=Hg��������o���%�����t��oz��?Oݻ�^ZY KJ����Qgp��Z�4�k[�&mK|�2��x�����/�e�_���e׌y�3c���IDAT_j��K�γz��p���~��3O��Lq�����ˑ�?K�3��kȁ|K
�K��s ;��3O:��cF=���Ǽ:&��+��(�I.��ƃ��Oxv�J�)5*d�G^�w�����O�
t��ӳO�3���[�|W�`�����۟tٸQ�8�O���n��"��<���w�ai`U܍(,WzS�h3��A2�1ZkЬ��TS
l�y��
��',Π�]i��-,�Q���ۧR�ւ�,�$���+xpi��_��@��+h$q�`���Rz9�)�w�!�8��pAX(�I�lo�j)�L2��nI�?�!~-רC�5x�a��z��"f��4x��5��!�(e�zfu�����l���~;�7�`Ì�6g,|?D`�A;��_ؙ���u�^nI�.���CN�$	�3ua�E�NjȤi��|%woWoO�Q�y�#{,
C��Uq���g�\�w�J\V�+�(������
X]k��}B�m���ʽC��Hh\�!�i�:��?��'ל��I�}��/�:����9�������4�FNj]�{݅�+O��o���/{����~q��?㑟���G�3�÷>o����'��7��T�{{�+a
��"+m�����]��y��on�ׇ��C�\J����o~�g;��Ϝc���R�f����BACiLŞ�Q���.8)��6��am��V[�ex��o�4��0�%���t,P�Ԭ���-uǃ/|��O�e����래���w�m�3#?3��#J�p��o8�{����Ϯ��2Ϭd�-Alm�Kg��1���}c਎�d����۶Vzc�3c������ά�3"�r��.�'b4��3(�Qn�Mը�7���	xҌx�@!M��<�%9^��fxznF7������Bqϐ]ʙY �uU�ڡJ]�pH&�򠕙�ޅBa|i��2��anK����T�a��֡�n<ivȾ1�"˔� H�ڷաk�6#o�m���ƫo<���y��8b��Y2%�����8�\�S���k
.�¼��K(3�|k�.���u�Ag ud���O������=���4�DZ��0O�o��E��q�=�B�"ϣ1�Ydp�h��a�5-����N���;��w�~����:l���>�R1��@C濻��V��Y���-��6��gY`��]n�3�����^���箾�
��e�e�5�����r;���ӷ���~�P�vQ|�9S^�ڝ
�l�}�<d�ó~���x�>��9��N���2����]e�e\��c�8��i 9F�mxD�3�Xb�4d��q��"ܷ�h�5��
B�`���4�+&��B�o�v\x�5�lq����߹/���`#��k$����O^����y��w�7�8_z�`;i)�~\�q�W��St�9_ð�t
(Ө�ЗY�]��쩴�J�i.����6��U�Y߷0T����-(/4-G�J��2?�t#�<^��(3�I=Dq���:�q�K�e+UQ9�i
�x��GW0�+iI��H�X/�a�A��p,G���,�Z�}�9�MO�аT� ])y�q�)
˱��ᩧ����1�v��X�贩����@�\@�R��$��r��ג��z��V~<���Mz�	S�CiT��,k�����wr��n^�k�Y�s�]����Z��Ko��Ƌo�ɭ�߱�-�ܴ�-������u�}��q֓W?z�O��>9m�ӅlV�"�j<e���i�%4�@�,�0�<�c���:!����q?h5���[	��4c�H
�T��WC`�)a�_�y��������e����k�����l�����������I����-{��^�ㆋ�'=�/*�t���$lGT\�v�c�~�q7��m.�̿b��c�k8P*�U3YP`9��P9�T�C�q�"MƯ�ɛ�����x��FCZ�/�ƅ�CW|��#xx�<�x�����?_���8��%��-����F��r�3�^g�	�0���w�ߨ�h���էh�B4|`��@��7��z�*C
w���
	C�
t=zt�ƛo&���
��4Dd8zI�o���z����&�Y�/T!�Bީ0����@L�x3�Y�1�,�͢ߘo�g�cǎm���;=0�&�x�9x�� ba�����Z9r�l��������U*��F�X�HH���S�[�?��{Y:ۻX*.P��b{�܏�M�4Îb�2������bK,��l���C�>�`��%�E
�	��#���h4�Ʃ�[�����Gߴ�뿵�2+�e���z�}�MV_�����~g�߯�Һ�o��篾ܪ��^i탿����N��K��|��+��B��'��z�
y#~��E������z.�3���.���A�U� i,d���`C4�
��i۴�KN�p���i�w�U�_��C>�����l�����h��ý�X|�ݎ_���W���i[�懭E?Fo3s�A��~�
�<�ܴ�v?��o�Sg�?1�ܮ�B��Xs���9`��IT�z@����褡Zo@�t1!Ķ�忾��ر��Le��o]x��s�Zw��p�c/~vۍ���c^��Q}���(]r�
�=v�&���o�k�*ז�v��=�;�YE���aȌ��>�����w���
y��\H:
��E�\���m�����@��E����B�*"p�b�8DI�:�!�ޓ7�!E�Xt!�hJLeӠ�M��:�|x�*��12�%⠐��ѫ�QwsD�t6��+4D4�w�yx֩f!n�4#����ͻ�B�/5����L�65�v)�&������_��,:�_ݣ���/���m��e�m��y���{[��v�{�u�Ö�h����i�]~?;Z�c�s���c�Ty�y9F`�@F��}�h�/�bRlz��{����:ꓺM������p:�IU�3FsZ�PE��@�!��Zl�G^��>pp;!-��x���qt�9s9	�(��"/�}���h�<���$�������=�c��Nʥ
�x�"�,B�aHi0��gbS'v��4�eх�Q�Wp��ʯ>�����W��j7����Acj�g�d�RG'�e�|#{?�ֽy�λ�����_YsQ~�0_"������hq��\r�!	=W\)C�i�d2I��
�A�
3˟�m��?�ǻr��p�}�:��1o�|���_����I�?_j�C7��k��e#���ֽO!�|�N��&�t��(�}4�5�����0��Oc�<��,�$���T�}���9����wʻ��tH�*x5��+	
X��'�?Fn�0��[��:ݴQ�-�=1�2bq� ��B��<�0|6T,!mkT�`H�#�?��f{wwvr
�|=����u�pP�����0�Z.���ͺ#�!�@�H�4BBZ��!��Ͽ���3���y齻����{�x�3���#�����=8��}��y�f4��䪻�����{ȑuiɐ�ziK�{�a���w�}w��EF����z�Q���i=({E�,����dZ��:��R
�J��Zo/t�)��)���ߙ�"��|��X��������9�H
U�!�؛g� ��A����b�ԩy�[����z�bPFe�1����g]����d��:��f�M��c�n�~�e믳��C˵�5���@�w��U�Zء�����}��w��Ӂ_����>n��0��׊�kE�\b��Xb�����<���DS��R	�%�
�%~㽏��«����N���?`E?����Y��6�����o��t��wZ���)�y������1�v��Y:�M�y�����%�sm�%��w
S7��4j�T
��i�D�gZKuXWqfcf�wuu%j�P髗�
W�>��L�G�Ʊ����T"�Z�&LBCY���6�oP�k�:hd��IDAT`'HS�9,oC�$��WG���nF?�s����kz�u�o�'�5ĉ����A>3Aų̝e�{j��<C�#��\T�$Y��v֩W|n�����7^;',�MZ8k���z��R/4��Ed�ø��7�8-cό�j�
jGX�Ѡ�h� C�%�m�EM$�:w�� pu��PD`�I^����'e�k�p,˄�b�z�F��)��"ek�X����V@]��Pi��!C9��z���
]�e�ʾ�l���5��{�ᦛ�̑|I+�4ҭ���~��Ϸ8�ś9S��2o�2x�������'���nG޻��޸힧<q��w������_��/o�p_�e3��w���?3Y��SV��
�B1��!^���^�`N�5
��WZ�/�����v��^���=^YD�Im&�[#)�8���ALaZikAB�*�a��j���!�A���v^r!���8NUFn��U��@z�(d�Z0�^c�G���ܴ�JOfD>�:�
	�е��#�hh0tѣ�<���"� )8�&�Ha���rt|8D<c��)��$i6Gg�i�Nk4k�z:WU��
~��y5����$��c��g��.��Q)�G���f�L�6mq�0�MN��	���FĽ���v/�`dY��i���}|��QP,dY 0E�����.�F��5:є=����m��LBp%�\E'������gK�%җ�����g�c6�����T�`}F��*�AD���	h�Bq���G�E3n�����O9��#/|�B��)	_
�>���]�|��οh�[�yr�[z����́����Χ_���l{�:�s�9�����#��|�c)�������__$���$eU6I��ީA�@Q%�$
��O�hN&���8i���w¨Qw��ǷZg�e����=�O�5B	ˈPD&%dYbK0��CDMjP$%��YG��K�x��V�y�C��!��v�љ��"�]���˦8��ϐ��Rx�4Z�c;8��}�g�͑��B@B!�E !J��K<4�G�}�$	�A���Bک�y�	U@�;�ǞZ⠦Ua�q��!�,#���dȲPh�\�K^mi)'�F����c<h�G~`�P�G.=[4����I��� /���P�dHsK��I�̱7'c�i��>\-
+�G�O��GKc��hC�$�ȟŸ�<�R6�š�Fexk-'-#ڣ�;��-�A
mv,8$*/��\m����8�e�<��Qih��֡�Yb���5��sO��@A�kk
D�����ҧ�򔊺/u4Vc���
}��B�R�1l��:�ۦ.CD�J�|θG,��h�
�-���f���͏�8�§/��O9k�/����w?牛�9鱋>g�%�^��[~u��F�{��p�����~-尘ƽ��S�~
�+�0���,�J����|�q�|�%N�q��'�r�˶��7o´�ndz�6�S	����vA�&
���z� 4�2™�:@���>�sO��u�؋�� ��0��\n���(�<z/�7����R�gV��R�DoץY<CP�y�0:��V�[�*�=ɩ�I
�'�X`bio���:P�<� ��EBð��~OC�q�OHI'PC�8Q�uvvc����q���O<���R�4|0L ��UG8~P�hr\��!�s=i൷^��czg����pȐ�A-A����FB�t��*
��d�	���Uԏ�����i�a��j�^Ko�q�P�"s~'�ٍ���O>x�9g�w��p�o�?�N��sO���N���N�سO��ijO��sN�����鄳O��sO��sN�n��8��V��C�
6b��j�rq/����@���;��u�*E�I�I��=O#�e0O��r��k�-�����0cP(����(���zB%�{�ҐKm�U��[��W�k.��?�Gs��8����3��3����
����w���!=��oo��ȧg��*C��x�^�u�k�_{�㛭�vټf���!i}�$I/Ri�y	�����	鉄T侣�V@
�k��M�Q`Q��8
O)"����ԓt�v��oNNRWW:
�����=1��z#�����~�B6M]�#N��g��gm."p#)�A��G
"�<d�?�ד�Š�y�R��驃ifh�(:fM�G`IF�AX��.�1jԨ�z�c�3��q�95�$��S�I��6�@/��W�ܼ���_�{����bK�9�c�q#Fkk+����oА�x�߿����m��;���F���A�04�j<O.0RĽ�4�q��Դ_<űύ���N��_�p�1�s���O���KO���ɗ�|��LO���kN���O����N��鏜t�I����G���wד|O���4��u4r?ZD�{OD�������q�����R��4�Qh)�u�AА>�6��z�jƲ������#�u��w1�D���f���w֯������&s���8`���s;m8 �[qu��khi�@=��Ux�dJh�.�SO�ة�~9����~Ю?_����o�n&�ck���j/�Ֆ1�)�<��Ã�27TB�֡���B�T��%T�BEh��B�f��,k6
��2�ͼ/��fWWw�E6ch3J�y�N5j�������{�f�[�b+����3�	��Ӂm�V�9���0>T��L���'A�B0��A�A#���e��w���y@DX҇ϒ'��=#�;sp���x��۬�eX+J%4�D���� l+8�@���]����=s�m��X�kZW�F'R�|I�G��4u��\�]f�Z\w�uݏ>=��FTO�q�R��%Fb��&i�v��������z��7�^�u�zџ�LD�ơ
|�Uh$%A����c����o���{:�"Iq�%4�ij�X�[�#	��c�+�3�EO�a�;QCߘ{��?���"���=���FI��+!��A�hb��7s%�[*b�7'M�VH��Q���oL*6A�ߢ+����0^�")���FT牡'�5dT�NB�ğѕe5bɐH��p(���<�X}�2q�Q����*c�,0T���\DFo8<R�U3吏*kF�&�'�%T�}U"Œ�(A�o
*G�A ��NSҕD4b�_�WBD�������<�(*�[n �bw:�D���X�j�5P+Kf�h��'��c�&+n������"�>p�>O���;�տ���p�c�=y�/�>|�U�^u����D���^m�Պ����I��r������4�=�c��X��AT��h3r�H�:�*���Yˀ��=��/�{����.x��+t��4K[�a�/�"N���no����P1jW��w��h�!/3.7㸉�FH3n��1F,80��	�0L�4
I5����-�~���d��qo���p�%ܪ)�f���),�7��o�m>�܏��8`��S(�Y�����[�7��3s4�p
��{P��s�N��#j&�&�I<�${DL����,Ց�`���C��.
���\�g BaE5��k���P�9*wf*3*���3
0ca;M��{�Y��٬S���ҜRZ�S �u���8ͪ"�*K�8�>Yü��3�N�Q	g �)2�X�Ġ��?��x
˪<b8��22P����8���zu��,7��A�Q�i����szg�=r��m���
���G×�w�l�����}�/�岿���h���FҨ�Q�
'�$J�Ns8C�D�bg�k�%�l�݅Wr�EW]v�e7��__s�u�_w���\}���]�o��s������v��/�v�c�<q�o�����xÕ�]ở�CA��<�����^N��<{�_'�Z���'��`_����fJǰA.�H�W#/�e��l�2G�הc6�EX΅��Xa�{ېv��i�p߀Q���G��!����z뎸�9�?�{��^��%q��������|w���2��ˁ�,!0IDAT/��K��?�䌓�9q��6��~k��h�ǵ�gS�T��ݝ(T*%x�4Y��b�]̢��6�!�}d��@�مfڅ�DXB�
<8zЩ�{e$~E�Th�̤���
$��^�zHRJ@�T�&1iY�����oY
���I{�V3��l�Ž�8iNй�Ƈ%M�T���4c�������LSP����Z�
>�+���b��N������9�=�)])���#�X���6�Fn���μ��G��˸.�좽�=��<��.ʨ�j�1�}���4�h��M~tܺ�Y{�����N��6\}��7Zm���w�Yo�u��h��[c�U�+��e4��Ӥ���ˏ�>r�J��୷��}��w
��L�]P���ժ����~uN\gwo�t�z��,Lh���w�J�eZ�k�uƘ��Jkm#������O�66�>7-q��F�f��@�E�N��x�����kF������<;����W΁e�Y&�l�
��ʛlq�q��t�y7m�������x��Õm����(m���:M��TB�LD�� �?�R/H���x�׬�"��O(S�Ф��˙QS���啾��#�� brpT�b)�{��I� Ks�*�c�3B�:2BF7[�"}"��f��R� ��f��R:T�����8M�D����˅t����(�/��Г��2 "��MB���z�+C�,7��AC�i�c9��͌>��ѿwG4�Y�RPĴ�SµW[c�uV^G�7����7�����r�R�<P�ih�/���9G_��e˝V��W,{)J��/��e��
g0����g��4{�b!�U��[���L+\�z�%��8�ૼ+�J���Z*�f��+�
����$P/C�;	��K�DF#�}� `��1�}8%S@h*n�T�=�ѨRD:�(��LD�+a�J߉z�6���5m;��H���wG�?�O_������O=岃Ͼ����O�q����d�|�����RF��!1_3z�����Z�,���{��g��ϾF�:�cC/�����J��|T�+�8��u��RH��;.�R�5�x�����#A�0-�O
)���!�H��=���T�A���X
����	K�-G��
`a�6
���a��k�Ҡy[j��[f
�������P0K��Y�<;^�q�?�
G��{A����$ׅ/�ޔ�Jk1ga��H�4^��
>�����Q��ZdĖѫr����O�l`jQ�%R�B��t�ھ?���sf|��(�a_zѥ痽���FN���HyB��t����	Ye�U��h�J;e��8Ur֐GN`��X�!g��;�s��.��:�“�ӟ_���l`Pm�",X� 	�?�ĈI�8�~$�B�46�he��G�|�,y(p^�c�E���`�����)�N���`p�
�h�9��ˍD���K��+E�F��ڱ��yf����&5�36Z|�p��~��V�}�>~�=c����s�z�����/��S.���-���?Xy�-��J�����y�a�٪���Mc1��Ή��p�]�*g�Rh�d��ÃFO�4�w�F|���N^��T�(hx��9G#X��Y��,/��Q,/Nz�fF�M��k�o�j����)4	�ٔ�2���s���l�P�� �,JS�SHZc`�4�U�D��R5Հ{jgu�񋉶���$F (pY�U����Q�4��1>�j����i��I��P�iU:�y�"8�ƤY���x�3a����Y�yq�K +�	��bH�E�%��(�������jХ�Wrm��Ͽy�9g^�;�{���b�#�R�Q���s�605S2]|��{�w,,8�|C��:°�J�a³>�!�'�N��8�I "��Z1X|�E����ۮ�9�.���K<b�j������e��wP>�t��&����)��|y�#��z�L�/H%,#�R��bX@�Z�z�>�-��@&r�x�.El3T���\�+��{&tA=�V�
���\��S��o�o�?��}���9�?����~|!4T>�cd���z�)W���ȋ����N���~�.'?x�������p�� ��{ׯv��4a��ؿO�:���
�ݲ������W���/쿠R���4��)��
�Ϳ���]�k�tN���l,�Տ<g#k�|�?(X<�S�*wG4�z��E�|껳�3Q�g^k��H~Y�%�q��R��͈��G�fY&0Ԉ$iP��P�(�Md�CPe��s���
��(e����i'��r�y�7�q���ooo�HݤW��w����ƍ����$��gؖ
Tx2��r*u��.˄�9*"Ǚ(����-"���(h��h��Q��*�FOUz�u��vu���\��o}o����On��f+\�n�1�������	�5���CԐr9�t.��O��P����APhUV���a���$4��٩�b`�O��@����1�Aq��7���;1�kx�p���U���J��,6b�=��稃�����Q��Ӂ{��{�b�_��]���d����}��}��}��}�?�}���N;�}_y���I��|p��/?�狟}�����ǿ���/�8E\3��5@hp�A�\y��I�S5�p2���Yǐ!��Oz���^tO�D�#1��~D��-"����	���B^9��%)�faь��ɬ��W��b��g;\��?~��>|�MO����|#�8r�o�~�֥_i�����8�ZIO��Zw���e��-�d���
�=x�ן���G�h�o���'ƾ;�s�a�;�t��w��K��s����2�Lz�qR��D��W�.�kFi���,C��c41�(�R�J���I��5\3n M�H\Pz{B�D�F��`���k�<T�Pȳ��X�2R"�(3z������$I�&F3��-����J���YP,0��r��J��뜟�����Yel����Z�JW�l��ϚW��i�̔�2Ҩu�&W`4DX�B-�ˋ|6��E�}�k5��ZP�BT;{��槗�{ɍ_������Fa�J���{��7
�Xf����'���ߎ�u����yC^E\�s{K{�$����jK�6�ȥGλ��[e�U���
CW^f�y�Xr��߲��IS[G�\F���B��*"�4�K�NC�rx��:��p�s�|�vz��g�y�Χ~��o�؝���8�k8񉛞���C��-K��j���ܓ4�L*�~�g��#�?�C�}�1y��{���s�1��ˣ��!G+�w�/�:�ȃ�>�ȃ�>�ȃ�8�?o�mv=<w�v8o�!�5�I'v~8���������Y-�V�ɜ��
#�+n]k]cM��,��#��A��F��ٔ�&L�O������{B��
J�@����2c?Yk���\�I#���s�}��FN��Z��}����v�Q�;���]��c��N����=�d��>+���k��/טTo��+�AZ�dM�B���L�ؘ��Ĩ����G�w�V��p�iW?z�7�����M諚#��r}�,Q�3C)D�G��������o��\ꀔB'�lR�d��P� ͜�d �B�X-S�H��-=
�F#B�C��u��9��CA��J4�����ȴ!1$�8���C�"I���L���U��?h3���VPog�z���<T���K�H⨹����o&M��:ΈOF8O��&"9
"�J�ZO��Δu��:��i��4��#���w[}tuMϕ����=��Ly�i���+�q�IG���}�{�����{��-w�ן�����[K-dVO��M�7l~���+_p���I%Bԫ
0�2��c�~��y��c��z���x���|��{m%�IDAT�'{�Ǟ�~�����"����%�"z���D�#̸�W>�e�]gr^�@�����%���������~���]������g�U�Xy���^���9j酗�$kfK�v�����EuZ/���4��
�θ^:�=����i
���73Ywj]O���+1��([�M�5��:#��3�A�H#C�|h$�3�������T*�.��
�U��\D��9���(�W���t�4RKP0>B ��W^(�����3�>|�f����L-h,I�h~��T;��(3
��/~��R�n����xӱ��{�
מxً�o���˶.v��C�8n������[Ò6���-�����܊�k#�"��r�B_d������s�O�Ŧk~��M�>�C���&ES��@k�#����+���h�K`�����޾�n[�5G�_�W=�&LL�P�:
e��z��(l(�S8����+��ĺg�qH��;BJ�@B�w)�#�I���+T��br�\H�xl��cg�)y��<<��M/_��7&d��x��������(��+�"�^A'H�\�,�L$�F�%�e�A��^�X���@ "�Kd�T��,Mfi#"0�=��H^'"�<1�a��Ҫ�9�R�Xm��������wr��E�Y�������{i�w<s�s�<w��>��������*�?���/>��z/>��O��O���^~�gN<j�i-ڧ{Jg[Ɇ�/�U
-�0~|�#a�C��=���Ω��j:�v��O�4z����FWcQ�߮N��ޜ^Y��X�6����l��Ս����F@#L�*O2��Z�i8G�9��8�U�)�'%.���g����zg/2�$�G��[ ���ت�</���M���@"�2�SΫs/����O-�,�O�<
2����S �]m۬FhR���Y�cBw��o
�j��m�Ql��p�u.uH���,/aC� �;�I4��]�+,�RF3�!�'Y�Ҍ�ʘ�a�cʣ$��<�4����]}إ��ο��S��˹G-3*�`�
��6X��_]��ܺ�'^ν'�t��g��A[��Λo{ѷX��愞
{ߛ6�9�*�'C�+�Ֆ@c�{�B
��i�aC�#4�%K�杩�筞��}�)k�q���<��s�~9�w`1��jg��֋~c��V޿ٜ���&kP�M�<~���z�W;��a���i�Q�Y�>@��S�SDFB�F�K��[�~�uv�$K�Z��P�*�΃,��4�e
����=8~�ħ^H�D]LV�u1�t���|LfX�
Y��~sؕW���'�t��F��N�6�_����Y�aP��Tf�����.�L��'-�r�{zĠ:E�P^("�̭�\��t�"��˹O�e�
����1s*�E�ڪ�w�VJD�&"�R=�g����SC`�|\�֠E�&?1����m��B���,z��.~���.��7X��%�_��̳Ѓ_�%X���[l���ͷ��	����
ip����,�0l�0��u(�j�FN�H|�dhư<��!���Ra�����b�!4{���C����C�֤!���T�45����d��߃J����Z���S ��cj�?us�%àYo �^Ns{{;�:��ws�y4#���,q1���'M
�{��`97��V4��T�AP@B���E��-��8�➴�:5��:x�<��z-7�t�9�g�;ɳh2h�B69֟灆i��c�~^�{�!l*"�g'.���}_8b�MP��Z(�l����Μ}�0G�5�M�d�O���?9��ߜs���;��ۮ�չ\��<�\i��W�؁�l[h�yL����x/�J����h�	=p���ZD�H�~a��J��;��^�E8��O�_>��.Y�C��t��6����8��1���f����ဆ�w��{L��ԐEu4�=}���mO����/��g:��&N�Zڇ&�*�xv�y^��eUB��� ˒B���@�j�2l�aAP���l��\z��QY٬Ia����(F�����-U~��t�
,��YX`�T7����{�+�v�]|˻�����{53���Fl|�
���]�l�R,�|dY�],��E0|�} "���'@y�v���x�,���{�/�w��h�h�
|4��B��H<�& f��I��ѓm	J(H�<$��D��TC�Ռi,��.D@^B�&�~!��㒔���^׸@c'#������arn�+x�P8�T���{\����**�s1,@�Dke4<�1���83�>`;�:�W*^�VN)ǩ���E����xT�	<*���8���wH�l�TD�l��rE�E@Ehii�S�}���4����)|?�b�2�wLɃ���J\g9��b��N�}�K�(ZdScL�0	~�7/'�a�(�J;����	l�����S��\-�8�^MN�fs���������nGm}�BZ�u���_���j��;��+����˱���?\��S;�v�+;n����h�	�o���Mk~�1��h;Sɦ5�l(���*X� ��8�8MP,�pb?E�g��4���ޜ��
��[8��5O}��y�[�{}!�v�6�߮�p�%��f��LO�b���KK��
?�D�9q����1�o�`ǿ�S^�[/�z9*tT '��74I����/�e>�4�tR�Ԟ���)�%/Ds�W���.����/R�+/T�L��D�
m�×�a��ꑷv9�G����<��{����Q�l.:O��#AB!�q��B�П�����Tɥp�F���q����e��O��uE�
a�a�@��Μ�a�^���@1x���'0T�Y�v�(�T�Wu��1y��r�5>�8*�C�Qq�T�ĝ��dʰM�]Cɖ'"y�~>,�(x�R9��סP�,4/��d�5pFxL�B��
.g	y�)蝳Dq
���cdqJ)�1��{T~:o�����l�PũQKl�Ɛ/a���F(�c�T���^~!̿���orH�v�����$�g��zg7�u	T�J��x�6��iJ���8� Wt�3��2GS][�?e��Z����|�c�Ba��R���=�|��� �8���<�/��|�\2���kB���2X� �܇��u�ہ��!�Q�-�Qj�d��w���u���=�B������G/z�Ǎ��g�rѡ'_���Ϲ�}�xt�Ҽ�����7;�Z�pS�Kښ�ۺ�
_��%��h�ex�2I�a�o��!�
y�#�<8�
:tƝ���2��Umq�r���6>n�m~z�ο�����1G���V�����=���n[�g��u�F�*��X��B���;M��~q�������������ޤ�
ř$��N�B��+WJ�R��@�:�F$��PA�3R�`�=O(�4��S�Q�B�Ù�30~�kGi���Z�Ƚ/��q�co}g�=����޼����G����2�/�0
�b�YO�_�/z@oQ��&âԽE���;���z�"�k"B�Ca�Rpk�Gaj�K�u���0oU��y8��\�oG���
�D$o�e|��f�P)X�z��R�L�B>r_��q�qL��1
�����9����
$��OQ	[`����|zv:�C�p/�g��un���r�D$Ou埂�D�2Զ)R�H���L��*AҫkM5�|�Ca)DB%�LP��EҚ%����N
�i%�T�A�����c����2�}�:v�1�;S��F��o`B���4%Fd$^FH���Dh"F�bX�Q�+�͸58$��Cy���N�pRe�u�s(m"�>��{?��wB�5Xc�߹�p0��@s9�Q�g*�7����Z��mA|�{L�)�g�Mk�Į���߽h�}�1z�{_?���[��_n��m��rl�ג�n�F�2h�uv,�=��a���Q�F�Q�j�u���e�] 8�IDATV��۬q�G~���_��o7���+���+���/�=�૿{��?_��G{n���?Yo�����w�d�-'�����ޞԒL�`A�!���"�*��sq��Ǘ9"I5<Ӻ{P����Q#�S��u�Kû��`Y�e{kq���7_��+.����u�yw\�Qd�/���}�s�!>��q�2��s��v��[�7W�M{]���V�
��srSR�$|���>�����f��/�oǣ�Yz���mSK-���
�|aRz��oI���5��{�
���,
}�w'��7�/'*��A�G�h(�Zw�Kx|)��aB��^�؈����}�c;���v���N=�����E�Q?������3���U�H��;(#x^U�W�j�C�-%{�!�f6f&��(G�_�,0\�k�� ����*4�R�ɨ��
ڇ]�^LE����B`?�+(� V���TH�̧vN�X�ThU
��d胄}3��	*
ţ)xy�1�9��x�Z��ii5��( ű�x��u����3�|��_D��a�АS��}�2�2�e�lFe�	8�/:�T��sH$C�J<"�<r)T�9Q�*C�ڇ���m��	g��w��u��q�>`LNW�N�'���U
��Z7��BW�+W�î�Q'�\!����|WTLK�*ie�ִ}DG<x��)ض���q(�}Pyy�C��/�T4	R��&ÃЀJ ��20�Y�M�e$�����6��y/<'|�I?�2��9p���k�3y��ED �	hS�dƚ��
ᣐYxM��5,��|CK�~Ђ�I�.s�G�{�!��9��co?���o9�ȓn<��_�	�_��Z�\y󯮾�#����~��kq���p����o���+������/����K�=���ǜ��w���3���;��Z-�>8+��--ۖ�v,'���X�M*#�>�ޖtF�B!m)����Z��Q1"�(1l��X�ܩ�<�{`��]��A9���rk�Hi �nEi��n{�]�;��-�9q�O���w���/��M���KF�d�eZ]��l����|޹����v��ڜ��>�Pz���χ
TzY���E���h��Mys�R����x�ǧ?y�Y'��ZT�����X��(�Z����/�o4�5x,^r��f��� ��ѱO]܌b��<Nh���8e�mm����ɗ2�x�t�k[�W'ȁ��y�;���[�G\��sՉ��k��v^gѕ��b��:������/N�9�|c!�3�<�Oѳ�܇uK/T�~s\��縉gm���Ȭ��a��H. �4ͫu��ĩ�Р��נ�s�*tk�Gձ���(�3�]�W?D$_WK�L�O��@���\�٨*)���4�1=��fLS�Td�I�1MHOJ����dۆ��>KY�
L��A
\Ǭ	Z*��۹����:
7	�3
g����Zi3�%rMD�I�1AӬ���e	Ә��d�H���O@�R�-X����Fp��-#:)G+0-)Ҕ�&�Bc ,��v���VK���/@�$��;^~��?��':�'���X����\��
�����z�w��B?��Zc����O=tA���҈Mу!^�k��8I��O�Z�|���<�Kc�	c��ˀ (@`!ƃ��^�\�]��V0���h+����<��X0�<���}Fh�F�����1.���\�!�F��єB���mݓ��h������ķ'n0�é?�O�m���k�ַ���:+���:#���Z+���Z+����Zc�5�]m�՗�Ύa��f��'mZ��gd���ޛ֖L�}�f�9��W�������9�Ԡ��њWp$^!u�z)��	h4�x>|�E�Y`�/�-�#�1%�>Г�•%Ơ�Mz��{�{d�7\b�ѿ=����z�{&_�.��@:� �_6�r�Q�����m����\QJ_;,��2թ)Lnj�Vx��B�4�W��&�h� h�u�Z�Q��/c�59��	�Ǎ�w���;��{�����?j֧�S(��>��GG[>_����5�dq�[�f`OWS��oP�u�h�(aҔi����󭘔�~���N�o����~��t�N���ݱci���v�M;���k�w�+��刡A�:S?�ۼ^Z�"Q0�-�p�֋�R-�c���9��ԫ�zf�C^�խg2�%��D�s98k`K>��+���r")t��
�v�t�؇I>���)��8
�L�W�O�2K-�/���=�XC�	=ۉ�&�D�Q��
�c�Hl��s�|2�g茧�7�Fd#G��йi�N�
�I��5�4�z�/�L���P�r툛���zE?�~Rh+��A��<���2��Y��ki��V�~[P<��Ơņ��Ūm�j���>/O���~�!m�QoZ�&�Nw��;��C�a�#�R�Rų�5hҠ���P�"����pl�9U魙�y�V��u���?������l�]��e��?w����s���|e�]���~ܹ���W7�e���~���'�?j�~|Ж��Ƕ��x��ۇ��Ϥ�K"���RbS�6��#
����Y��,* I2�T`!�S��T��������5��:�B#
��`!��M�\
��g̬Ѳ>(�M�W��؀���&C��M���K�g���:�Ry�En�8,%8�.��!�w�ӫh)�gi�*�f�j����H�E���i�<�����\k�&@E������H��{1�=�:���5Nɋ&���j`�����]��-��Į7��Z<�#t�}��g�t�3�>~��}C
̽�4�/
�(�c�\ßn���zׯO���4)�	Cs]|�ST{�T��Ҟ�@eSX뗠raʽ�3L�yG�D���^[7�O�`���Fʥ6���?���3f̫ѳxa�
�a�z��]�w*Zil0\��^��7�;��aP���ћ�P�%�����Vx፩�!����ڋ����|��W�>=9�O}����k>��{�����+�e���H��n��I7�k�#A�;��Ё(����>�G����"Q�k-|N�R�޶�ncm��X�l�T��_=d�(��`��Ġ�C���7�rT��p
!w��@�0�R�i�TD���ꃈh��9�APC��
����9l�᎞wl
�&��L�BL$�=��J�?�>1{_��Z�UnB�]��O]����n��O]�W�j�ƺ�(ӡ�P%�|����QA�`8'G���_���u�w����c���e���m�[�eћn�y�+n�r�{o��2_�dKQ*R�����|��<�2�!�.���K/�t�[�u�[��A#��qˠvg�p�ek`<K��!��"��(җ*��J���eH��7�uۮo�Ƃ���[�嵜�������]���
v�d�[��5DWe��Ŏ
���L�h��P:�����͸^�*t/5�������Bˬ����WD��E����S�"}�nF��"����	qJ��&)�Cz��'ߧi��5�RْB�"�a���u�7><�1�����Zcrz�Z[�$E�^��@e�|��҆��Q,���q+��$A��"�PL;����Ox�"�>OX���t��\A�TD��H��R��8�\�`���z�ݏ:�%����_>�:�8��L�|%X����x˃O��v�=t�7�[ۑ�,�Z�!�|����ZBo�fn),��@�!�E���Q�OC�^kZ��
���&u�uw��`I�����=���Q��˚F1�*m�3�������;.\Hς��L.�yjb�'�Z��ϻ��ϙ��|��_>��k_{f`���(�jX�����Y;|��o�t����j�=����V[Gѡ�D"=��D����;�-/ЏG���w�Ξ�z�@���I��kh�^��b!��P�7|��D$/r}	2�
��n�f����t�J;׌<H)�R��oP<IDATJ?!�"�P�����f\"}u3�d�SAKA�5ct��c�=���n�a�w�~���n�mw�����f;�ӏw�cǟl��n?�n���q��l��vmCot�!K�yԞ�v�f��v�~߭w�j�}��n��~r��go5�sʽ���*�J�~q+��"�~ZE�'�	��c�a���SN?k�����>�i�}�{k���zw+z�����=�أ6f̘����{�C����~;>��a{�z�
�������cC�CXC1ɕeB#HT�[�E�H|vL3��-ˬ��
,����s��e�Cw���q��O^cǎMv:h��{��>���	�S��<��Z�<�h�'\�/�}Ҫ�15T��w(�'="mc8����o��\d/��'�¬@D@�Ȭ�pdܗ�"��f�7Y'T�Y)i�X����Y���%>vg���gL�J^�H�+n�����1<+�v��ZE�рc/`�d�	�<�$����?�Ր��A@pe�5eY�[E�����x��Tlf��jfD����N��7;x����r���6��
9`�B��_=˯}��~�r�>��O'��`ۖ�X�X:k�Ը�i��8�'C1i�Z4j	_�_�R��(SAq�ҽy'������}�;q�=~y��ǣ��_�m����i�4��mn���5���f�E�|/��@b�}���Ї^�V<��G_��	g_��·=p�������笷�k�b#�>{�#�=�G�o�ޒ�n?��1��^�kbp[@MC�� ��P@vw������6}�@���?<�r�clڊAB�8��P���z�2��_?�k״����yfl���r�e���Q�9z"������P��T�[A�
u�id*p]�F��fT���>���?0��r���
===�rR�+�����N��������ĽO��}O?������/�Խo<���l��c�v���=��w7'B����O�����v���޲�or�����U7^s�y��I�Aǒ����I��)�42T�+�'�s������N���/;�s�z���Ωt��A)D#�����-�(8ңF$CFe���f�Rw��ʋ'��g�����?G�g{��}�����c�m��|�l,Y��ϬC����E��S�޷1h� K�f����v�rZ��=�B!����KY^ڏӄ��#@C&a]*�?�8�t��?xEQ����	�;C�'�O�c6�z��f3O3*]寖+m#"3�q^�g}��F�����q~1���"
\���@.��_�+`,~o����ϒ9��E4`#FҌ���V,��+0A�;]�u�����sw���և�~��6�8��{8`�������r��-��?���.Kߑ��6,���|
�p<�F��j�ֲ�n҂����4�J?�\�ԃO|�C�}Ά�ky��]w�}�0���
��Ò8��)|��_�F�$3��[����c�����y����?�����ܕc���O�YcZv_��{����jck�vL��w�)�T"��x���U���p	�[��GO$�Ԧ��O]]q�v�}Tp�T���3�[�~=�j�J�j_؊�A�l_|��g��!Iɻ��ʂ�h���J�ZA���d�Z(�@�R�eb�12#4���^��" K����iBFcd�5��U���0�M�/�:h�A��{���>礝&G]O�?Juj˵()�W���5r�A�SK}Ʉ@wĩG���q���w�$�x줼i�����\õ��,�Тa..f��~��}�t���
@��gy�m���[f^����{�#���DH�R���ڊ�Ѓ�n[�5r��v����A���L2��#�	�[�B`�P��\�z�8��\\��X��T�ǤgF��
��e���@�#)�^8J@�q<�@l~po�plN=MS�q���Z�K^x�Aƹj�i?�W("��ˌ�9(�[ �Wm`���RG6�od�ǻi�_t��^|ȵG��_�?��6�{�9`��c����ݟ[�{'��w��ͻ�[1�RLWH�c�G(�,F�gIu��YXAgT~i�]/l���?����3k��3����jM�|��V_D
�R�L$A�Dh�L������4o y�Sg'���vf�[�2��_��K���Cv��y�]���ֳ���G~���O��3�'4ħ��B/�?��IK�:ԣ&jQ�z��rgS��֝x*'�e����Gq���BEî��4"�*��)�L0���z�6�>�L���E(
o�|�.�%��8m��_�1�����x��/������P�L�[�T����ie��i.GQ��~'�{³���a�sW?�Ƅ
f5&|*
�h��L۰�žfA�
yǝ�?읏޹�P*�—D�O�Y��y�Q�3�/R��B��:u�����j� ��^��+������0��缢�zuTZ˰4E�c
��\���%ܽ,御�ּ*mډ3(4p|H�I�$M��=�7���Q>P)���ы��o-�4�t_��|}���Z�������+����E$/�<h$��̷������9;*kV�M����m)���h�F���б��{���=K\���S!EI��ZF��v��7p�������v�m=5c�4̽�
0��1�#G�~��
�?��=Jm�(�0T�	Z�B9�UYX�/�̇/�2a�=N{���L���z#��%D�.�
��Q���M1tX��v�ÿ�V�d9t��r��o8r���{ͱk.kOmL~q�ꔿ.���=Q7R�~R
@�*<
���R��bQ���A�PY�m!4�O�߈⪱ByB�Y��x��"�T.O^�g��;K�Hǣ\E?h%h�
؞�.��`<��$�|/ĈDP)�a2T�R�`B�й���%��&�H��$��1��{�tLa?�e\N������_�ꫯF��򗇾��ۍg�C�>�*��#��U�^(���>	�R	��l��|��ш��/N<K�(��բ�&>߼x˘1�~�F�^'�{�����n4�>
�!��L��$�H3w�.0��8�q�d�/囟	�8��z�ͫX"HY�=���2�T�np���}��!h0��qx�ҊOADC��U!����xC�S� Ȉ_)�X����'��(�4�sPt�d}se�jg/�=�<�3�����C����c<�e��Pt�Q��͇����=栍����K����W�n�o�wĿ�����k��逸���b�|��b|F~Ղw^�j\GV�v��c�����Jq8#ɭC������*w����|��pMԺ'��;��s�Λ-0�γ������'�_j�2y������3���]h	)�bBKKy��U1@�(9��ש�h6"zhM*��~�z�ԕ-y�.M���O�-Z!�3�G�_���ZXE����K&���]F��@0�A���J|�c���~�����S:���6�"�R��Ͻ��)C𔈰�|t3S���3�E�N��:���P�&I�f]E5����_���C�5��O8�ݤ����(�3��z�8Y䫤a ��}����V�<n\DhX�J��+EO��:^?��r�oϙ6��*�˓��M��|NyP%��̨ruT�J�p��
�85&u
9J��	���*_o�O��[���4t��D-���5�Q����uR��	���>����X1�����Dz�쯩�a^�m}�������
����K�*s}W�hiiC9(!`D�8�L��$.E1�yV�O��F��t��gn{�N<�̕�;y��ƾ��w�����z���Q�U�V���3�^%���(gQd��/m��^��7��*i�S܋�CszO��+�g�כ0�B_T��6C�g(ZMZm]i�E[?���3~��Q{�����ϩįm��]H�K�5�R��{٧<�Q�-@S�B�g	%�SM�qԻH�����#CtF��IDATBzi����M�3��nb�1�����@F^gqKbጊ<��c%�`Ƈ��Da �b��=L?�y���h��-�m� ���AO�yA豲O02hpB!�Ϗ5"����������z��c
�uuYW�Zl�Q1Q�����.D��c���~��[��}<|ؿ�o��r��N�9sf����CR���"�!�`�0�
�/�7���;�5��l>MЀh�Km<�v����נA�t����ހ|�36����j>���3�f�e@�q5<�s���]�|}�z��\?��ao�7^������
��t�W{�O_��/���'�>��g�|v�y�7_o��ׯ��Y��ZzԸ�D\[v�ʗ��ߘ�7!�p
9�Fiο�����C��~��S��h"�ܕ'Y���k3���RC���:��.<��ٟ]S��K�Oa�DC)��D���m� N�m;K�tw�X64|�@J�^ێ�5vl)T*�KU�#<��RT)#	C$��pU/.u���Of}��Cou�ͧ�5j��f+�B��4��/q�Oi.5�<��G�7�n��� \�z.�����x�m�� �u>����|}�J52�k�3�L5�V��	C!��l1����:j�5}��S�:��d�qr>�WDe��!�f��W����Ը���P�94H�؄4�m���B@GT.`J�:]�o=��;����){P-���XWZ)MG)Х{ݧ���%��w�V�F�Kw�b������2�	M���|��
4�h@��E‘�4��U��\$E����Eh:�I�.�cZ �:��ӈ�f�I�//0��o�~7bV�����*a�\���f��U��R��3c�����/{����y݈���knjx�ڇny�^~�K�]��/2�S��cw}���O�Rߵ��fP"8T�2BD�1{��^a$�Z��z���;o����Ϭ�f�{WZ~���ٺ?�tv���\�^K������{����.Y���2�ҧ������MZ"�67�ѡ��~R�
0�$�ViMoe�#��G�\jHO#���
=�^=��/�AL����yٶ��γn�:��b=m���"�9������D3���B[���-%tHl�晄H�`��Җ���w���G�7�i�P��+�<ZQ6�k����={��#n�x�ö=�֏g�	��s�=�i@�wͧ=���S��M01�ߧ��&_~�w�O"�n�?��q=��[6{̧�{�@�R��,�3�M�� �a��_5{j��si�������2�z0�q�ӣ�Ԋ*�w�8D�:	�x
���Ң�(�<42�ǃ�\�����e]�V�Z)fm~��Nkט�бOE���2Y�o��8��aNv'�&�ZT��K���K�"�
5p�A��
.dŦ"f~GP��	�`0~W]�v��\�c�RXAL�%�ИJJ"�@�%th"3�X2�p�i��`�*�s�l�΀�����ʛ���_6]s��6]s��o�-���_7^i��MapԨQ��\USW[����
��[��g�T?�psAf�eW�arP��f}7k�)�����C���{-ի��C��}Ǎ�߸[�޽s?�hN�G}p��;Q�5a���=��4�<��ws��l`����nr�
�<ҵ������*T��T�T��E>�b�RS�����=�x�u��8`���,�N��5Q;�!� ص&����9��4SjiLVE�s��]&�g���'�7 �+���:µ/"v��D�:�O�O����- ��9k�p]�t0��,㰈"�u	!�NdYh����5*�_K�L�q�1h�:��
#�ɔ�4 y7�V�x�������a�Cn:����8�k�gk>���|+�|&��4Z���N&�(�e�j����cǣq~u���3�)�4��q� 4V�rB� s��V����Fku��7���R�L/ɠX�
w*�B��Ad�����5Q6��������x'4��		�U~G��*�R���h^@�ե	�+�����0���A5G�`�}�����<�9��J��E:�L�rkD3^T�JA=�ÂS����YM@�L(�*ht�݃���0��9�A]�h�Q�	�~m�/�l���<Ɗ�۳��v5b�÷�~ǣ7_�c7\{�[�����o����n�c���s�&�l�k�9?���~>�nL
�	g+�c�jGѹ����j�+	j��:9�e�#
'vx��H\����N?��_ݩ���-�Ŗ�מu��$���������7\+,����c��r�+,ҥЀ�XEF�����#Ÿ���a[�<�{�=ܳ�;.�����7��DkM=�\r����h�X�=��kO�X;	�0�@�P&���FM�.���@�1]S�ET�J�{ay��.�k\i�!x�5��ג�3+m��'�9�F�N�XP
H(�a{Ợ�0���q�ێ����K�~m�qŠ���P�H=�����O�j�[=u�?Oz��}k���i~׀���_������~�T�h-����O�?��/2Z9��9�!�PH�!�)�cϔ`�	F�j�,wL��N�Ya��f����
�_
���R�������C��B�e�ܬ�p�^�b��i4��6�7 �)$U��
5��

%K��8U[]��{�w��aKc[�s<�D#��I�K�^���_�gL�ȏ��5�:���p]�O" N�
�A�3b#�tV��BAuvJ��m��X��6� �-�� ��$�>�>l���������5�^V+�_��z��B,��"�^m׬�\�Փ���[�w�����h�?�
+ԫ�"�LTJ�:#��M�6�p�<w�D�)Vk��b��j��{K.A��ړ A�jk�m��;���8�EML��r���?{�'�3��fo����N;딠.��]�sWC��e<q)�@�%�;�#�z�Ѫ���Ӈ�~$~����m)���xr���K��7=���(�l_C&��*8k2n'�u��1�n�8���=���òBf��4e��I�c�wч����5���K��t)�v9�ZAg<�wf�N�e�T���}�Dg���aOÔ�� 	c�h�'�'����*�"�"�x��[������Y���9���.�4�؊����#�| hcK�R�Kôj�"7߫�d��b�H��x��-������C~S�/�5"�r����
+X�е3�[�}K�%�m	��ԸP��%{m_o����A!&8vn�(�`�� Z��(��ZA�\�ɏ�o+A�f�S�;%�Y.��V�5���WT
#�D�jl�����(+�/"l�n ۟H�=�[�xB��m3	��q�j�B�Zh:?��V�Oa(��P7H/�>���T�9�ydM+��q݈+�.8FC'l&�PԷDJ�b��{����(��G�Ͻ0�[��+S�k�*^){ȀC�5蔱�{ە�J���5u)�ؿ��!ey�a?[P�+�7\A�X窭�5|�٧?�4iR�ךt�A�g=#�QI�q�Q71��"�/�؉&#MТ�8�����H�u2[��^e�_��x��Io���K����!"�q���y��
�|�3�s+�"��kT�'�����,��z��E
f�a�WS�	�ԡ�]�tz���I���E$�A�u��E�1���v�����l�{v}�[��z�%����k	U<;�A@'C4�(y��@��/�>5�<�5"������-����"O�y���/���!�Fka��cb��h@-8���%=ᦱ?�f�g*��w_��)��{�y�~,��Ͼk����_��(�B���j�3qLã�|&�2K,�N׫�&�?m�r�LbAʼn]�Q�`���5�� �5$�aB6ϲ!c�X�VJ!de�7�@�;��Rִ�9��*��-ָ
"�����:�ύ�ӹz%L��A����"�\Zf&IDAT$���|k�lh	?��T	�;�-�ǰ�Z���L�U؀�?�
�|i����f�&��gd���S��ղ�c~��Z��_x|�Fk�X0�J *��V16��q�G����6��N��.x,?+k� u�~�gt��N���*W*A�+"p<���:L��U*dry/��ra�� A.����K�0���v�-��f[nTCeA[8�׭�f;E��gH�`�p�h�+[�U��k���Cw��>}�p������lP*�ҹ�`n�4�ӧ\6f�i�p$qJ\.鑷�i�����r} ��aU(NnA��3���g��s���L� &%�%6 )����ű�hO#[�/��}�θ�17>��&|8jz�^ޏ#�Y�|�I2F(��Ιg�ͨ
�T�E�T��f�]���=cޱ���o|�ؑ/��0�
�Zj���? �����K;��9��ѣ?i���]F�k�ݻ���(kb��PZ#$8��nR��<�ǀ�V���q�1{���Ͻo��Z(�����#�
��q@�A��6a�!�����B�J��1�2:��<~pՠQ�"2�$�˰~�Z��f2b��DQ8�f옘��35Ǫ��"2��U��p���mxN� �Qi�`��F�M-"�!
Bp+���c�n��<Fa�fkkk�'w���e��QF*
U�Wͩ��ĸ��lz�?�ܽo�����[�Ĕ��]��i��ߠ3��9q?�>OF[��Ih�� JBT�2��ƟG�	�RkA%�̘���&��ʀuR2/l�R;�g��)�Źޥ�b��RE� �T-0�b뀉���9�]Kv��ݙ�v]�'�/���[,׋H�^�g�#��~E;fA����;���+:&�+�����/t�u�C��z©�A\I�(Nmìof �x�e�\��vN�,���<I�v\Iq�	���@�j��9����Ic+��3nd�6�wF����u��V_�B%Σu "�XV����v����s칧:��F���w��;ǿm��3��6,���>�o���Ѹq��=�Ϸ2��a�4H
m�
w_��,0A��\oo�Aka��]��f^�ز�i��""R�b$�D�YY#��3foa@[BN�k
w�	w
�
Mk��n�`"�$N��<���c��(�#b9�X����D����s�3�T��Y#,"�<�E4��߈{j�%�ƒ��71^~vG��
}ǃk��%4N��B\jL����m%�]:f+C>��vuѹ��>-��
�1q�H�H�F����'�0���sr"�Z?�p4��
]sTd�Vt\~�ur?�sZ���a��䉗�P!��VZQ߫pZJ�����0�<ީ��E�$q������<.��ԟ�ܑ���o�a�EDs��v`��1�B]X}+���0Kv2X���sb�N�u�y���H~���{_D���̈�U�������El�9΁]+v�)���p����
�K��;�B۷-h�֌?���`$��bg.J����\T��%�F��;V��o0�XW\�|]�:v܋׍�(���[̺�y\h�����v<���j��GIMU?�������q�wO"��Yx/�P���#���q�y�Y[<��C�{{���6���䲽�Cg������i���S��B�qP��.1��v@���:v�k?��vC�bKD1���mwn���ֈ�)�8� ¦֚���#��s�R���c&{�k��F>cq]qӊ�ql��M]�&T$������u��l�\R�3SD�ݿ5Ğ��Ê"��a�m
���4�	;I��I��t�VP�rYY�;�gXJC��ܶ��Jkt����L���(��d�_�-��I4U9h�<�-1`>D$u���>��ٯ�r��9RVV&GiD��-�/
�B�UsHס��<��q0eʷ������͹���F^����/�C���t�m���e�h�=;�}�׳~�3~��C�Ӣ2��Y&"ԇ�Q$i'����9�V))��xn�� e����<~�C]B���F#�W�$����CDR!w�O-�q9���o���-;oDR�}و�)���U(|���	��b�ΰ�����5�-1y'��o�,���-�\!of�4��i���d?�|��gc�K�p����q
�W��n<�e��}��Ng]p����b�.�ߕ�e����`&MB�ٗ��7~<m�q_�����G��x�Ϸ��N��>m�AD�$D#72P�g�ݥ��V��;�f̹W�w{�ɿ;Y�@ca
��$5�1�ؚ�0���SD`
+$�%k��1�y$IBC� �ˁG�*��\qLa݄D�B2)A�z-��r��?��{�O?�x:
/�������T
�1�f��dk1��l�_���}�1/��I_{ܭ5�I؅�D֩I�}����jkk��!��R,�¯\��0��:r��=W��@{��h������_a'+���T�be$*�΃�q�$v~�-ڂ�4�8�"~U����B���s^��e{����^z�>�^��3���[vǶ�VמXغ������)(����)�88NC.UX}ӯ�8	dB�6]
�e�<&�R�H����@���_�L1�
����K`P.�a�rn`����8�<
���w���z=$Z&�D�䙨sr0�w�[*(44���Y�]��Q�2\K	�I����$p@d��[��h���"�W^��S�=5��5��^|�!���4R��(�v�t��i-ŖN?��m�:c�'G�6���O�Y��;Ѐ��a�~F��z�
Z�rbA�$����.R���x|X�&�v�f�U;��&?��ī���h��W���ۀ��S��8JR0�Q4b��ALcWJ���=�\�?N����g�W��3�ƥM�-���Ѱ%��Zg/Üη����^"��<�宔mU�k�\�#.�=f
w�%�	�#2M#�9/��a�V��m�������Hڟ-�i�ua���r$V3Z~�'L���I�
}-�+$0�$bRBr��T	+7_~�����~�6^y�ܺ�c)�CPV��R���)�K��6�S�>��N�n9`��7��v��b��o���m��m��}�ϜS���Yf��69X���_��_��o��Q���.�i�ڮ6�z��霁n
�V���튻i�x�(�!�*2��~���?�LV�*l��L&mk��gC{*�4�5e�ς���|5As�^q)��wQ[[���"�Ιu|.:�.�z��,_�̷�@%H��$ŹSt�\}!�f���g����-Q��H�&T!�\GN�o$�󊛯|�ug=���S~����ߑ��~G�Y8�y4�ٴ�ɥ�����r!�͚��{aTD�(9��k��R�S�]��y���&|�L��N������R	]��v^~��F#�p�u=�8���0.�g�lm��W�Ĵ���+q�*�G<5y�3o|k����G���+W�.AD+(q��-$aj�����jW+A�
��a4l��(ZJ.u4Yx��NH
t�����4�@���6��	�~El��)F+_V��&!�X���[a2�\w��kw�y���񑗼���|Z�C.y�o���;���<3���_c4+�U[j+���Ĝ?�YI����@���ӹh{��>{���?�ָ�/����'��zܻ�}��'g�=��_�w�x�M{�v�V��]��{t֗A�y�Ҕx�T�JŪ]�	uqv'��a�*� �IŸ&	�]����(���0F%�蔩���_�����m�z3\Cw���8�o:����"9@��
(�(�$3"
ElaV��Dp(�бI���z��:�����:^1��;�wQ!�X%��[,{��'\7l~�3�c����Kfr��zof5�\wፗ�v��W<�{O����ߙ��l<��Iq��t�kx��-6�$1H�֚EO��Ш�`Q�j�_��}]�-}�3fv�W�{�̒�AK)6��E�f��JIDAT6_��h)6CӀh'�������L�d��/�T�k��'Ns��6>��Ƿ=��[�:��W���~���W����(X#h�d�#D��ޏ�PC�Dsc/,;��7�JI��i�%Ǟ&������l�$��c�;�'ٺ�la?����(�{\^��&� �e�غ�BI�kݼ�f�n��&s[��[n��o2`����{�#���7��];��&�W4�w��װ@@QCgrD!��_}��Yd��w:f�w3�u}8\/�|�w�u���<��S�Q��g���D0�JW
�������	4�"�_����=��1c��E����n~��rxƶ���m�طh�A����u�1�)�|;�3����t��(rR߯5�^H�
Sbi���p�(�.�86�4
��ɢ%l�_�Ajt��'8w���8����?����;��]�}�SO�{~�s�>􈋞��˟o����
��Z8&j`�ئ�Iߴ�\߰T��܆b��"�B�m�A(�F!
����*���ܿ/�٥�2^{���Œ������S�3��7��و����2ݺ�6��8ݖU��t�'��C���u�>��=n|6x��1}�XT�K�A�$&24Ԗ������yn��&�hneX B�Ȱ����#��@cJb6_h�m˔��i'I��B{hs��I��NA�+�%���)��vt֦���x„7��=�������g��0n�رc�D'i~���o��*+�r���ZY,���P�T��R�������cN�Ý#����%|LJu,��=z-��Q�_�)������<��գ�@�9u�B!�78�a��l�)I}}=�&�mh���<5����_x�C�8J5hQi�(��9�:��?Vd٫��Q��&4�jBksK:F�G���z�a�HG4
m��4����?�����=�ν5	�����]=��/q�9����{�:���_��K��y��7F�8xؾ����qW�S��xa�A��a���c4c�~c��.�%hd��l@[���R��z�{��&(�'�r�[FU�c����H�~�G*�.��w+��:�3�&ԵPٮpj{���+}�y�w��9�q�#��w��8�.~��_�!*�7�	�4��N�Tj\m!�x䞧aS�Sh�6�5�/�hI��4d""i��!��|mkTm���y��FcN;�`�Y(�&��$I��H{��B�������37�ᐮ
�ӿ�^SS�vh屎P]]��h�GzK+�kj�u7�Áz߲�,�?c���4r��pH��6��R\�׺���uT���d��|!�-:&�џ�=G�Rj�u�$�mS��ALy��g~�?�iF���dE��p<~.7CDŽ`.��(��CT� ���	R��@�@D�q�cI�<I�HG�4L�W������]7sr�wW�q��U���;o�.ױbB�{��n�7]�ao}�9�_s+-���j�����7���?i�|rxK��>�6c
���@;wB�%{(�Vxt8뮼讯���ͽ'NDu����k�7eV������,^�]��ᬠ�=Ӄ��|䇃�;���v>s��}�Ʊ�~~'����_|Ȋk����z��<��^a�H �n��ӣaUJ�е�{�n��
�H��e��$�IA�-4��2I�$5Ș{���Fb`c�iel��I��:]�b
��ϰ���ְ j�۰G����G=��lٿ�6]k����cװ:��"� ��"�}?�R�1*r��v��7~�6�������Y���<���K��Kw���pԨQ񋯼|k6�����r�~���M�&&%e��I+����{���rP��x{���S�a�_�7�q�����?�y��t�\.���]�'�N
�7t�CACs����]��T{(be�1�R���$�M��mf^qҹ��r�.}�7����VY��zJ����lwq��wzf�Y��#�>k�5�=QK+�=���5��J�4 ��y��F]8��Oս��n�&�B
\�J9@Txd���8(���L��E�֔/�{_4t�u�/~6���Yn�-'=3{�oN���S�^�٣��w\v���D��t�o�4�N�{���������
����_�Ȇ5���!�!@UE4�� "T+�`�Sk�{-���[�B��$�����'�tY��Ԏ>DdN4�H{�'�i܆�0!�,8�Ǻ��ɖYa=6�rj
i��0ۻл'���n���v�iΜ6��\�k�)/�7��CY��mj�������ڊ�e���;a����!�N���k�9x����|��Yu�_�A��o�Ļ�s!��G�Ӱ�4V	�X��R2rK!���>s�w�z�
��F�qڸ��ʿ��
����A��iiib�:B��.�����N
A�1�ľb@q�^"�缷]/"��`N*!�Ϯ6���v�y�z�}�=W>5?��Î�j�GƜ���а��Nq*�&���sΰ���g�5��l��{ὀh`�"X@&��<d�]j/>��ov���_x�}���ͻ���G���_�����H՘b%F6����Vڰ6�ֻ[Za*�=�/-��x�f���Soz��λw���?y�=n����ҏ�A}Q~�׾��?{��ް�:�ܕ/~�_�7���&��T
u>�;�Zj�]'S�G�� Z���C��6�Jխ���%��x���A�zLm��"��Z��D�A
~����d뉴�E��)�o�IL M�:�͛>������iРA��ˮ���Î8����[�͈V
A�q����"l<GP�ɀ̿Z�~g�}�[�?�ĭQ�DB�����f8�0�rǗ�u
k���h�a|��;o��p1�<%�zL2Av���I8@k�
�.�d�̩�^{׵���GZ��Z[,��������*��Ʈ#:	Q��aC]z��S�q_y�v�F�@��-��Fs��qCk\z����4�����[^3��8E����T<�u�mx�Q�|������B�P�
&y��40p�-�p�wl���o�p��L��Xy����h�Ӵ/���>���4㧠�S�Ϯ�ٷ%Q~z�T�4*4�RE[�
u����؄M�*��_��yB^�׈���	�q��^�'���M޿��k.8}�O�������s����U�7݂Y_{9	���q��������?	�,�ڝ�=u�d��������i�\k�
�eL��d�vUieE���a#	��ۧ%�����k�m�A"���ݙۼ��j�w&�ɻZ����Fkm�Ϋn��{=>kʬe}��7]�H�&�q�XS[�3����GN��!}��g7�f�����m�i���^�:�'N�ز͎�R*�?�J�Rl���C��=��A~��^b���KtխW}|��W����ݘ���)����v��1W!���ӛf���.���K�;ʶ�z�
���-�b���'Oc��.�`׍%[ߦE��4��1���e$��9��Ζu�mh��Y��������5!8�ؓNu�ܧ�L=J|m�5uH�󺞕���{��W==��x,,���@gc��1�l����>d�[��n���~�Qg߷��Yhvי=ajFf�z�L�#ŏ��G�u����?�%�|��wM��BC�HBh!"�C�X��ȸ9�ā�ƺ:��Z���>|�_=6���k]��MG�zԕ'���-{ߖ4��wq�ۋ��iN�E��(0r�BZaq<��m��
Бv� ����R�BY7,Ҧ�����o����;;𲆙Az۝{a�=������D�$�"b,�X�H��:�ml]z
��M�%I�4��m�sO;�N��=�oom���߻Ԩ��?�kn���lUj,9>\	�!AF���C	w��	�Ҋ�ҿ�i��d7t��q�+)���a{�%�~�N*���ښD\ꄺK�M�u%"��1<�.�jz�y�?���p��_�z�]C��?F<]��g����P��Iⶰ���<�$������IDATT[.8���NHC�W{��v۴��$"0[}�v����@�!3E���ՎEDz""b��:�m��w6K�4���PA`ɦ� �^����͐y�4~��鯜rƝC"g�wb���h^��G=�ֹ7]�ȅl��-��j�%��[� �s�
v�:x��|��Q�^}م�n��߬�w��-��N�^�:��1͑�#]4w�m!t�WT�%����N��.ݎ�������_��	��	�ʅ��I47&IL�D M�I��He�:`�;/��;��[,{�y{t��^]g�n�������6�)�4�M�[i�*Q\$X�7��h���S"�ϒ���l�}7��l�\�B���g��.AI�Xj�YW�um���,��)��Ig��ED8�$�UҸ&��!�$"�y�5�!ǥ.�i���I�v�Aa
�����m���,�v�:���
�}Q��w=���M���5
�������-w<t��w��ٌ#+ӣQ�=��A��|�u7:�>_���(0�TP�=$�5�'kى7i�u2�K�-������냟6�W��ZR+���{�B��E{�۝�O��y�wL[����u��\C�S�r[��R�/5�o߾�I/{��;�K�m�����k/ݘk(|�{�E�Bך8S�����6�-(?��/�r���.�Ȋ�O?���\�~!r��7��;@~��¸l~��漋5M=��\"L��$�@D�"��߮K����:�ھ{mɖW�p�=��Q�n��6�m��_�]vY�S�j���/O{��a��9�\;A����m�z�g�=k�d�穸0�_��_;�d�����g��sv9��'_s��g�q��G�ه�pǟ]�|4+L��k����,���t.2ܙ9�*�Z芸#�dPm.���o�-��p�Ӧ�Ml*�Ƹ�E�r@�5�ps`j�����.Bޢ���[�z�ߎ�邕W�<@
^���㶶i�)S?�Rj�Vj�:.rF�&
�](AEǤ��p7S��
��R�l���wŭ���wk�)i�\F�ݝ11�JY-�d�:]�E���uǬ#B�0��	�ր��,O���ю�?lqGiw�6�R�F%�Fմ,��m>Y^4�rikkC��*��|��9�<�:q�	'�tѹ�s��׌�y�-w�x���.;�[���_��mM5�2��Y"�iXVBp���R�D8f��xc(bB�:���l.���,l�j5��m�����#<q���;��a9�3�+�2��g�>!������x��L�*q���A;�t�!'
"�_����g����/>p���n��.;�c�!������.[l������9Æ
K�6��Ȗ�m�Ǎ����j1\\/�Hۉ�m���C:�qJ�s�����ǜ���ҜdZ&�y!/����mh�;B1:p%iLk�n�~�w^rҕ�>pΨ{����v�K��ߙF����iW=��mO~w౗=�s�:޿O�eP���{��B��b�-v_��͆�v��'\<憇'�Ӟ��ԪW�y��(��_Z��\�<�
9�(� 44;��r�1ר+�`����
q��Z�_5+�7����NB��;^>���
S�!<@H�
~�4N�1��mz0�M?n��z�ۜ�������5a���z⦇�}�.K����^9���`���
\��̄����Jq{�m�k��Չ%Z}MX	��n�Y`�� �9J����
�P�B�ӫӛ�0���O�i�2;�˶���ed��Q\
'���:T�B�b�%7O��o���7!�6����m��*�͢P(���� � ����6�E�*��%�RУq��BX���Ѫyz��*��	�l��aOlߝ3��v>�|֧(r���=���dx�`O�=��3�����;��S��O8�j\���+��VKh��C=�u|$<C�Tn)v�v���:�V�)?�7v����h�##����{��������_{�w�~����_���T��Q� �������a�+�>]|�"�0� ��Iuݩ~GԮ�mܒ�љ����.�*������I�Kբn�?.���7�7��;m�ӏ� �c/=��3��<c�|s_y�	W���fk�7�
b���a����qϕ󛬸I��w;y�ѧ�1��S��˞x��!ǎ9a�C�_��zH��i]g2E��6��^2�F�V�k<�z�j���$��i�f���N�C5���z�h���UC�v蠡�,;�G��c&Vϻ��"�Gs����40RBB
t�XE�|�J��[���5[�r��K��:��:��o^���O�����t]���#�1�Ȅ���L\�+9(���D*������	Q&�\��b��s9.m��t�&S�ɋ��kذaI�T4�|�*%�=��Z��B�e"��t����V<_�G�W=�to��5u �nƣNR�.ID "�)��*�g�I��*�_�ӧ����AG��Zd�
�r^��5�DC��"(W@'v���<�JؓH��#�K�r���?{s�L�?�	��ċ�V*��=t�-~�a���/<���r��~>?�#W[��C���>�S�y�]N]��Z�������?{�S��܀/�J[	0�<U*���8�����d�	!���N��0%��ێ1�tz��W'�u,qal�J�};I
�t�4�-92�˖�N9���Z}��t�ҩ�{t��8}�6VY����������º�M�s�����q����Mw\p��{m����-��]}Y��nR7 �^��SR��Ɋ�r���?4��AP���r`
,-7��
�84!��h%؆��#Se�5�:$����;�y��?����/f>T2]�,ٿ7B^JG�k4/Z�ق F��:��9�G�_�Y��ӭ�}[��ԩ����M����y�OwUݖ�T69���?O��S�!��$"LbG�<�w�
C���oV+a���@��=w3a���R�iK&���[+�R:8�q�
"�	�L�!�2��������TW�n��!_�]�e�2A�-"��~����8���։�a]]6�t�.���w:���x����!ע�!���fd]�n��
`{�Xf�����%�ʍ���u�,�V�8�9n���kwmm�gvG�X1#x�K3<⯪?��O�0�W�K���G?x�xNb�0�#����У(�֢�l��v���;��߯�_e�/���^[��?6�:�ƅ���Γ��R{'"V���@̜��Ī�[��(j�c�>�o�sK�)����9��̉!���v>�*�
,з46�e�bt�ڵ�����ǡ�sg�+.]�.^�1
�w�?���� �ۮ�A�A�o���=��S<p꘳G��qȦ/������S�;3+=���t��W��yb�Q>f+0�<B��rM-�P�y�Ѡ�ՈF��/��
<ΚOR�AĴ��"�,�/B�A�YD�C�+�c�]�Z?�F�k���O���k�Y�VK� �Y(�TjLe��,I�9UD.�F��m�f���ݵW���bV���X�x�7�_� �iz��e�n�*WcN4� ��`�"����s�I���S�)"i�̬Cc�j>Q�:]IbZ�$bNB�QZ_D�qE"��W̱Z�+"ЮF�-m<�h�^��Q߽��<߃�k�;B�$��7��\)��Mc�p����d�i�<�ڶ?�r��d��-����"�z�`jA���ߖW�*���o�;��\D����#�+�4h�f�/ޕj8�r����T����TU�)d�+\x���������.�+_�{و1�!�d2)?�:)
��A�S�.��Un�q�������9���}��.����˧l��'6M���j���:��z�$"�����I�k��@�EE2��pMt�m�A"{�Hʯs�:隻����Ў�]o����g�L�.i~��}�G?�||�������떚':Qy����y���|,��M4�?��r�}�8f��v<��ϼ�ܫ�q�o��a�'V�_���l/�p���IDAT�k�%�ë*'!��<>Uܩfh�$��J��ct?�Ak��
=t�`^
cdQ�:�j[D �=�|߇/k������y�9G��xZC%4VI%��v�m�
�(�<�^Þ|���޺42M�d5"~�%�A���b� ��<z�Mq�g������<i�U�a:'q��O����O1�iCQ��+q�b25��h٣lcbPlЙp�9���ln@��d���/�=8�6��r[VUZ��ʌ�ʥY�u��`�\.�r;�b) ZA1J�Sw4Ά��NVk�A���fT�j��{��mɮLVH@�Sh�km���� /��^�ߘ���J�2vl�-�%�E�:N��	�PK�ZM��<�q�ѡ��v�m����;&CD�{�0��q��y
C�Ն[�H����1����ա�cb��j�K�v�a'Xg�r6��h„	�=w���k��X4(c�.�<a!{����6������}��n����֯~���>�l�u6�u�Iî��+�.A�]��]SZ�}%M:_;C��a	v�UzbZ8�`�v��(f����Hٸ���
�>D�g;<��g�E�0JB��ͮ4�)�y���Ł5jT���H�
=���;q�*��{���|+��\0�;�jxv�����x�#����c�{��=�ډ���A��z�N��*S�֟�Ռlܖe!d�x��|��1�1�?��JL�U�� p����
��Ib�Ɲf�/����A�bx~� C��ˮ�ǡ��.��
�a��W�˱7�~�F��<��w(��;vw�=�|#T�exJS.��[G��*7���EL�ͧ+��r��:r�n���n�~��1�?|l�S��z��A_4gGy�uևHը�l�b��e���T24r1]
E�zt�\%�O(�(�(b<��BN��J�����R��Z	w�x������A�d�xZ#��h�=EA�=�@���ߍ����*	ڊ3�X'��a�]�� �V�kQg��V*��~�6&���@$1�P�lF�ĦC�ʰW���X���8�O�
`۱@��D��eq�Ư\�>�h�d���c�	�RXa��Jm��O?��~�MZ����FM�6�Z���"�*p<
.n�f12�O'!�t��]7�̧�>>鰽�W��|�͗~��1G�rō/Ը��q��W�X�'�0|G�5�
DE���}M���X#�vQ��g׼�@3�r-9|5Y8|R痼�-').1�[#��1$�1'H".,�U�i���tkdG`�iTM����׾p�`	i����c��fM��{֫��lg�u�����������
�%4_��?.�^kmUs Æ^0��ˮ�|����+.��S]Lͥ����&���i�EsA�`Z��T!_R!��UÁ������Z
�jBP4|�]���أH A�;�$�u�)��� Dȣ\[G)��<A��"A_9.��	P���ą�E����Ќ���j�5��ڙk-�֏��L���?G�.���Zc��eR�P����@��������N��um7v���
�����P�ǘ��	�\s���v����U�hXl�F��h
|�v�����5��y��|�86�u0��0�����p;Ug���%@X��ZÞV�r��2$�a�y��q؇/x�:a����6��l{/1�=���͢�s;���n���P'v�mC�~��,o�D~%�*�%R���f\�vv�-�7&x�9@�<��l�c�W��h��[)��[�g"B�Jz{+�K���
��+ד�r���K�y��[�:�����-���"�����)TJU��(I�bK�^��K/��kνjߕW^9��=�ti�����Ͼn�G{���V^�B7q��b�����(T�0����4��#�K�
� �[�p���ID8�Gt��{G���,7sCCޖl�
E�yٴ%�gC@Aq��O�T?���E���˯�t՘�@�˷n���E�aU�������B:����Կ�����M���a��[�������-/���c�z�'Ƽ7��N���Ov]ǫ7����.h�Z�=���J�2^�^~K9���"_ri7F4�QHC
M/��4��8H=�w�@" �f�.�=2QjO��p\
���@�и�u�8x�<ò��#0���UHU�EJ��S�����[/��`i�<���7��Z�_dJvg�X9A�uQ橀C.I��h\�#N{�LE�U�h�נ��{�!/?y��{�[u�t0'1������7?�}�����|�w��>Ý�ro�o?gN�4PY���$�bw��$H�T%��j&�b�q(�?���xtzBk��l6��/e:�!"iLD�I1O!,�d�($A��mM���i�|���.�Xt�%+�V�9o�8���J��sa����x!�[��/��E�0Je��[��-��L'�i�E�8�H���������G+7�ů\�b)�]/�;Idց�xJb�ۦa`�e��҈F���b�em�/���w�3AD�j�k�FD$��ƭ|M�Q��EP
��T\a�]v�l�=������K���m���ƛ�4x��=���_�ᠺ�6ٮ�6�o�̠M�}�v^��7':���7�{���N��jڊt֔�{rab�"a���+�ɮb�_��@�0�$,O�&�"hk���R��Š�����k�ks(�U�{}�V0���@��w��	�H4�
�
f���Yg���ɷ�=�u�)���w��bO��z Ɋ�^���>nP_x�~W"���h~a0���s�>���8��.9�ۇs�#+-��#u���^j�Aa�l�)j�z����]���f�2�4�DKq*�
�*-�]mE�iX��i!"j5�oÀ�_M"-`��+G`�� ���]'Q�^a�11w�e���X�*�z��ԕR�`�4L6��Z
�C	ц���xb`���A�j�������u��o�*J�:�B��k��ި�c@�Ke�|"���3���a��z$RE\iBe�d�m��~[����:��]W��n[�G4q"��<9a�=���u�)Ǟw��׏�����V�Lמ��`T���iFC@+��x6�}}�u��d2&�q��@+��C��ҿ���1B?��@�mE,�]xA�����MHZ(�b[�T�еg�Y����Y�,"��X�b
�~����Y���i�����(
��
�Bk�
'�-E�ώ���=e��?:]"B9�Bfr�n��~2��sZ)��~C����r�T�A�ϡ�R�n;��c>vßd��!C�dn��G�ukb�Z���͑�J,\SJ���ѩͦ[��
���z��}�t��Q<��}���i�Mw?����{�=w�~�mw��=��}�]O�z��O���e9���I�l�����a-
b`���N��9P��Y�l"��O	W��*���n��w��V�좤�$��!/��a����Ѵ_;�f�<�<K"�yx<�����N|���/�u�E�a�`~���]t�-�87i����=��9linV
�d�u�_y���'�}%��;�wuw�1���G����O~p�	W��q�mظߺ{z��oيR�-S�B~Ɨ�#U���H�e>FNO�s2��}7�-���w�.9��M޼�t�^*,���]�nx^��/�.�?Q�aj��qAר�I�j$U��L��؜�!U�)���V�@��S�(�*�Z-�s4��C�
 �c@E����(!�:��ƒC0RP	m���;��4��;t�����U�b�����w?���?������r����4l1���n(�B��Fؓ�B�N�̚R�h���~�Nzj��n�����nF���m�ƫ�K�Y�84vG$���i���znTb�_�Y{:�<'{lp7i�?4��Х.�^�0I��vұ���vb���Hy��W=j��I�PtI��h;o&5���*�r��TX�]�=�q�rv��aJ0uTd(��qaӍ6�?�����[��[lO�s�T��7IDAT}���-�������gĝ#���е}��y:�8����=ǁ�oP���s�{f|1��)����'S_���o��S��lʌ/�q�v�l{y!��(�b�)� "ԗ�dsn����
���q<��`BA�Zpj`����6i���N�j�RAs�yV�v�Sgo�U�-�n�syvkm��M�v�d��U����q\O�8���>
���p�ڱ)�9w`Jg���P<�Ҍs*P᧖�4,�ޒy����L:&�F�%‚��O�V���8@[�
^ƃvUuF�l��'Z�WY��z,}��_N��f�Z��w�ν�j�F�6�~�}oy喽�,j�+��¨���,�$~6��o�v�Y���i���۰����3����+.��ԋ�������N�������/���O���O���O���x�Y�o�G<��S�;�;�ԃ�vމ۞t���y��۞x�����펽��N��펻|�'\z�'\:l�/9m��.:u��G^��K���l]<��UsVvɺ[u�̓E?x�v������e�E*uK�L�Ej�5k��cxze76�ʍ��{��� �@����2�+�=���*@@ �j��s��;�^��#h*-�����?��&bƓoN�d��������iج��H����B���b*C}��r<]h�&y5k)�����a���s�[,�(���eziV]�.q��S]eR���!�S��fF�Y�F)+]\��H���~<�r��zN�GA����aGM��]��U���9u6J3+Ռ�d
OZB&,@�N:7��Vľ���I���k�;/��КF�uQ��ڛ�с���D���O�}1�~wԱ)� ,��ܥ�j�~�
�=��F�2��/���Qw�z身�}h�m�޵�a���	���Z
a�dune��q�K���n�E�,�q3�:��k35�d��8݊�m�8��8LĶ��P�+�-�ڲ	�C����Z�Q,���,מ�\D�
���A�_p�yB@�p	����	��t�7��%����\��qI��rXaZ�tތ
���摴�pPZ����s.
�롺q��.�r)u����;�(�K6n�;B�k��v���N�J���[����3?�]�m����~k�4n���� ���M�#�fK�iZb��p����{l���G���M�>��ӣ8�c?�*g{婷���Q#�z�ѻ�{�ٻ?~t���G����G��GMxx��p�ۣ�����$=�=?�����w�v�k��=��n}硦Q��=j���Q�F;��?����~��o��F���{�~�{�y��o�z��go�o�s��c��|y���8�džK��cӥ7]j�\�^�޽�Z��q��|���Q�=�䃯>��C�=���7�=d̛/���7��d��Ej����''9	j�7���H�/�� &ڄ�L\���[�F3A@�/��‰����VXe�1�>vu��}�uͫ���mg�=�5��XC�uQ���T�SÞ�Da+�a3�\���]`�}��K�z�>�����w�i����wܦn������O8��r��$a
h�j�4U�U{3��W����VM ��[���@�M���HJH���4��}ȓ#��C��J�)Qp��sŁ�Y�bS��7��`��F/��/:.#�)I�H��{��5���M����5S<�yJ����/i��t��3Ǯ��\���� ^�ˣT*��a��R^"{z���E���ͳ�[����(DA��H\�t��&�4��n�R�ֲ*6��*�fL����{B`�޶��Q��쩃K�k 㸨/����'���룐�A��e`�)�.��'PQ�"�1�M�:�1�\6�\&N<�E]�E~�ry�kx�u|X�-J�s])P���"����PN���j���]�<����G{�"�汱�N�b`/��eTs�="���
��"�#p(A+��\BT��
��BjsL��0՟(�$��Sm��{�ѭgw�9��n<g�k#ZXm��wڸ��g��f?6�Ɨ�|j@���gOz�����p�&e���G�:��t��ꦑ��g�:g�I�F�2q�sG\�������|5�T����{ذa����:����軇_u��î=���}ʞWr�q��Ǿ���>'��7^���邨�y-ۻn��-S�IP��O�	�U'FUG@F#���4�Y7M�����+��SJ<�����ǧ�Yq��"��.4��Cķ�M��f��`e��R�[��-�(k<�|��e��|���C6�󈛆0��w�麳6|�!�t'SE��nkn}~j�$��)��⨬7��ӹr�DhU��]'�|���X�
%�g�Xm�D�d����x�P�8bKh�OѠ��9.�:1u�4����s\�N�<��l֨�H�'"�Q@�~ژ���cLdN�馚�B�8BC��*����9�Z���USC0�?@���1�N�B�2+�܎@�}3!"��E/D!W@ȝw���U�%:a¸�C`�P]�cK�*��n�d#�d8,�)�*4��`yY����8U��c�)c��k�"�D,���uC�Z��v��ry�lO�l"����ɱ;�|M���E�\M���9p��x>4ש�ѡ����a��!"i�6nIdN���e��|�B�C�6�[�;�:�X�;�TQjj����\�m۟#�;��i�[�=t9���fL�>u҄w��.���	�\9t���9�#������s�Ym�4O��YpPn��$	�=
�>���E�~�H���
���=����9�
�8��o���;����|��P��_)�Q��_p��O��n~j����g���劃���ѫ><n�n�^}�W��7ux�իBu�"*(T��07'���"�~�ͻ���_~J�g��S׏zm����;�$���y�o�qn�� D0�Q9��F�w�9V��&,BI����X�*��s�*�6)_��ƪ}3��l��w�:p�W��J��e$�Bwj�E�ih�zN���9��F�&I2��`Z#LD$�#"(��%��"��8F��bl?�C�Y�#�K@�DAX���Ұ;ӄG�q5@����b߰dlE%l�6l�p�B=����4O����yp�S�o+��8N��+����۾%P$�*�HZG��9����Fİ�z'��|��� �t��N�~]N����ȘM��6�b8J�1s��^a��ke�v��:�c3�o�X}[y,�+
j�ZJ����@
�^l~��P���އ�eOD��@o�w��
'㠶;����t�GW��<#:����P� i;7�R�?+��p��E5AD%p<
�3�8���&D�k4,��j�L��m#���͹�jB=��%;V �9:��ߖ�В�ۂDs�Y=[}	�A����_���nj7�����Ai��3��Rik4.�$��-�I�."�Rm��Q�EX����T���
*Qp$��Y�g�uk]������7?��<c�����ra�B�wU������{Oq޹Ǐ8��s��_��_��F���>�����T#��|&����ԩǞt�V����Ï�r�5o=1�wNQ�K�,&��Ј-�5v4w�.ɂ����/-_Xk�Lc�F�F.2Ï�ܵ7B�}���I9ͮ�.�O�٪̝��=(q���h��Q�[��N]r<�YӀWy<��p|�@��z���f�0_+�'04�	��l��E���\a�&F`����ڟ�c,����e�
��P,�R�������Oh�iϩ�
��t0,�,��<A�|ڡ���dwC��a�ܘs�D�iNV����i�2Yc�r	C��]"2O;���;��|�uJ<σ%v��i�-���z"�ޔcP�::#TX:>�	)�:��׎S�i�ӈYn�)!��)�09M���$H�"��/����H�.����\s�hW���IDAT�܊��Z�<fGF��a�2�qK~�`����Ny�y/���-YG�Χ�Ŧm)�d���ZRl��D[6?��I�*}��}�V��}��u_~VEu1:�U�{�����z9�u�#�G�$t��}����x���VA�
Uǫ��{5O&b&�O�=Ȣ~�X8��50~����L�㥑/l�������o}����y��_}��&U�>̪��B�(%�qڰ���}����}��M��5xF���H�&��ń�KQ��W�\hw0�n_�#Kk�����Jh[i��O�"�^jt��LW�Yy��J�x�5�����W��J��L��^��D�w�l�X0n�4D?�:�*h�E��b�qR�$)�$�h̝��X8�< !฾S�!O����?�c}����U;+Q�;VK"�I	4?x^��L!�z�-#��z�DlG���ca�4�
�1�1D!�YAl2%/�O�o�	��lk�v�)a�+��R�F>6t]��?�#���-kg���kӶ�
;(�Ge�#oK�p�I��bh��
��0l�
ue�Z�b�6����)Ik�"o���C8���a����2UPn}5�4@ײ��U���63�p��ąK�!"�Ѷ�ky��

M���5[��Q̷�i�m�ޞ~xn�z�/0^c�L�qד�3
����ew����S�S��%&�LOL��g��VPlJ��Z2]�q���˵_#�' u=Z�W�o��ѯ����������<�ŧXx�K5����2�/5p�E��~̸#n9��S/��}�<p�W??$�dl�^Kl��]6އ�kҏ�S�}��c�8�a��&~7;	��Cim���$��i�]��*<�5E�dhi�CZ�����xF+�e}�(�6���������lm安G��|��6x�3ϑ�=�xk�ۥ��$I��*�<w����@���"b�I��E H�[�D~XD$m��I�3�a��9�H�:��XCh�
�_"�O�} " >��Q�;Dd�<hƄ��2YgI����^"�����D$-���4*")�q��/=,puPZO	D�4j�7%&ʈ��t�bι-��0?m���`�c��m^�1�d��s���g���Av�S,a87���4*�1Q�4���g���i��a�
�2OC�{t��~4�������p�i>s:��o��#��,��dנ%��c�s[7-��(�p
Y� ̷۫�a�ߞ��\0a�޷�]�Ö8���(���q�"�hrq�[⓷>+q�y�q�e�?t�壧ͷ�\�㫱��`���#
��8���W/~9��]�Xa��6���[7�>mʄ�}�g�Ѱ��|�Տmڪ��-,n�Ѓ�v�tժ���KH$&X	|~/vc>
�GҴ��zH<���B�XQ%T���Dk���WL��4.w��V��6~��޵k��c�̩��g2�<vw�\����74�"��+�
B�uj�,@��l&,%�a�4���[�h���В�@�v3�0t+$��E1�[�����4�8F��W�۴�xԁ��=������X("|��B��SHyA�\�(̱$bX�2A���aK�X�i3��mg�X��deHX7f��@l��/2��+;^K6m8~vd�4ӡGP-%��<��i64�����"�
�o�}���&%��%N��|0�_{h���vR�#��\���g�cve���>뛙f���	���OKv�`$Z#��X���a���Ôk0�cX�NHq1Ч�P)��>��ԉ���۬�ÍO�~�㛔��>�rIٴ�̂�%�~H��@�u���v��?v�??A+^�����!�[�䋏��+N{~성�R��žw�_z��'Ni����m�)�d��Xsє�4�qJְ[#C��B�D�U>\�A�d���͡-�ٵ?y�y�X�1�
��<��Ŷ�v��Nt��F�(m��3��:�Ɵ��"a�;��&�Āv֤�8�`[#�'���~,�0�H{h�6~����-�mm("4�XD$
m�l�A���
q5pr�'�'�0m��%��Ni����-�0
�M���l]K��V��-�8۞ʃh�Gq�ŌV�
,�'T�
�;��l�ҝH��a�R��)��!�#|���j[����P�a^;Y~�Ul(")�yC�_K"�r�UX�+ ץ(����MS�a����	)D�A�baCc�	׉p
')Y9�t�M�s�b�Ж�2K�i��d3�?�������^y�3�f�-=��m1S	#XG��&�C9Uq�ɍ��a��z�/V�\`��ʕ���`���6
X��m�=��{^۵�v�7���~YG�;q!HǺ�2w�e'DY�5E��ӑ�[��V=d�,rƅ��{���t��d��o���(�@`��TjCB�D.t�� 	�(��@k�����ԭ�$"-�1	�E)��4I:Ҭӱ{� �l:��
yY��[�-���0�3aΕ�5�Μ�4t�'")�6T��0��_�2��d���Zq�&%bR�͒��d����O�g�U�� m#����}O	�I*�+Pf�7g��O��SH�V���,p�D$m�Z�9�s�
��E4:_B��n3��"�y��*w�N��C�<����u�6s�l>8Ɣ(?�#3�:B�C���Z "9�;�bc3J3���2���v�cq��Nb��د#د%fC�����쁄$�3l�v2X��<��M}m���p��,]`������׍�-P��d��P�~O/#��G�EW����)'�[����w �]��a,¿K�h������Ϻp�fU,re����0�9�J�	�u���z��N��x��
�hZ�¯�{6>9�i<��J����èK-��3h� k��6���(Z�Nsc��6�ô��\`F��j��MӉMYR��t{:f[�0������0)�i���|k�-�|�c�޶+.�B�ie�u;��PS^Wi����R&`s(W@�B[��Kxs�|vܖ��t��ݞN����h�-�Ŗ̹Es�	GA�X�;��/�
H�"��C�=����D6)����o��S�P�12�<���.�x:�r��v�P>���a3d
���ͳ�@`m'C�'<�zwq5;�u��5!l� k|�9:��
�@{n�|��Z@vDA����ؑ"��<�O[OD�I�Rж�MSn����B6�$�P��-����8�AGd�]�n����qa���.��#T��Fy��X���{ծ���8��߬��i�y�u��p��'w�!=^sK��Z~��!�4t�~�*PR�G3��S�U�Cx�؃��0^�FLv��y���X���Nq	!�d��"�-<z3����
B�F���jXC�Z�I���~㫦9Q4����$'�y��VD��5i[2����\�2��v���)�s<���d
{B�n��l�:0Z���������v�@�ʉ�Oþ�W�&� ��G'I" ,�*U�����"��HD}&`�+G�-��D,�dg�%BV$< ��8���`Xf12��XYD�T�E5sɅC��Dn�w?�0���/�@H��cR��go�J�)F����F�v��u����Ahk-B�v�l]ἈI`��)��NR�Cl;w��c��=$[�	ɳ��֯Kh��I��[u!<U
�8.%4��F砒��ʋ(�ÁH24PtL@��l��Y`�H8�a%$_P�u�m4L�
7�ͭ��+�7���������6z�E��0W�ŭw?s�5�߉��w2���h`Ԩ���n~������w�Q�f�w���K��ň�G������T-!���?إh��K
�Nx8�y?��>�擄ǝ�q�9Y�~�L`����n8�߇7Q�'!�"n�+
�vE�����!XX��(�]��T��x��6F	�!�kja��_	R����n]� bH��ۤݠ[�"Y��$B� O
�^�ZT{[��H�o�q������x� �%"����IDAT�*�>��d�K�KD��JID�+"��%b�(Dl���(@�4�9���Ҝ$X�N�E��Y��l�ۘz�ͧce�)��R6��}�$i� N�	��\';a9p.�I�V���X�
6�!�6T�oɰ�m�J��!"@��\U��-�$z�*��X�J������qZ)[�B�_�/�U9�ɮwKvl��"��`�(��5�e3���.x�,��`���EL�J�]~�O����c;!-�ko~�NM�^��������hK���ڄ���e�/��*�_rX��^�~�Y�q�%îxz��_��wÒk|��^Q�Ѡ�p�	8B�sP��1@��~E6��o?Z�m�D���^dL=�f@�~��L�l��E:+����9b����f���Vy0ƣ1u�
�s6M����J��kTh�[JE:.�U�;.��ӣ^��;*���y�����c(����%r
 �
(��h�I�]+�7���I)f=K ���|8�~�0D�\�2p�ӵ� ��n�0'%�ȼ�\"��ȏ�HZf)R>�$"P�MDR�i�k+G��m�N��2iP:��קF����h'"�}p٘�3P,�6�N;_Ꙫ0�k��NL�v�Ik(΃&�s�OZAW�.��]
p
��}X)���4�p}���R�BϞ�W�U(@�םAkK�Ԓ��(	�RlA�񘜃�Z��­y17E��-��:+o���w]u�EKp��]|��	/����A�Ck�IƏ���Q�j-���T���,�R�?��{���ȁ����[�����/4IﯚMϪ�DK�G��ah��ȠV�m�⊋�R�y֢Q~"n&i-)hd<���A���;��y���|1[�3�
$��;^�ȋPL�;!�-��)��"��K�rR��F1(&~����ٰjŠ�8M�$��dR�������yo_M������_K�@(y�;锶��`
�V�H�yFe��xGچ�l���LD t��|�Q�c\��d6��`w�"2/��(�OD$�%��DG�
m��D"ґLô�8֛���*BY�K�eA"�#"��΀="�^ǎ)���s�\�"�C�4OY���x�a;�hω�2)�b{��vҔ�Ie�\�[�v`� ��
�rn���R�pg�TQWW�|M!nnn|�ɧ���'���?d�O��҇�^�]i��G��|�����Y.�TY�Ʃ���J�t�uɡW�注p\mt����J���J������osx,�( ~��w�ps���]��Z��;�ؿK��rT���`��{?t�g?�É���=�M�gRq�G�^�6vYr��%rM��L@��e��k�#��s��8	�(��*�hD1���,���� ��nneFʱ�Z���YlF@ �
�62�>1�Et�v%��8hX����.m����U����Q�
�(Fm�^{�u;���z����s�>��s��8x�{����9p�C�=h�x�U��E�͌�& D	-��	� 	LD"{�]���h�%�3ܗ�rK	��F�U�3��B�ud�<<%�yD�6�`A
r��b��$6����4�>RNc��[�����p.l�%�׵ul���U���EQ#��}P/�;B���9T;o�T:�\XU��KD�����#kBء���l'��q�%M&��ꄵ-��2��I۳!�4#A�o�4�,W�C5
��L�:��Gq��;��ǝC��m�^��t�.'<k���<x��V���:䊣�?𼣶?�S�r��O~��a�M�4O�$ې+��R��f�(��SH�*������V��VX�y�A�,��v�ݓ_����\Ͳm�>�ƛXx�G4��#�.��B>�����|��^���˶��+�{�	{~�]|i��_F�
+�X��y��Fכ���߫ū�Um�fۜ�ef�5K}��X��o�z	������k�cf�ԏ��bO�׍���g7?���F�y���{G߻�����=�w~�ښ��E{��k�����V�qآ+/z�1���}�����>�gx�����/=����><�����n�b�#�;o��#�8���B'y92Ib�!��焩\����4������4:���HڌUa�[[p"�c���\���!>��Ά"��l���3ټ�$"s��o��tGh�? ��A*ۜ
�L�L�PR
b%���oyY�ݽ�l�[���e�b��AS2�IA9�ݝ+�����;!oCm��ء��)���9i[��w���BGѤ5RQ��:i�[�=T�!��J��3��5�Y��<�u}��O�=i���ƃ/��­��x�����j{���+y˱�#��OO���}����x{�e�=����y3>p�I3K�+�ai�A��~�IWm{�!��)֜��4�2����O���|)��P�`��8�h��3�8��;��Q�;j�1�>��ag�0��\2i�����}�ىo�y�C��{�}[�{��[�{��
9~���Ƞ���o�������������ˀ�Yg�C���>C��C�>���9螽����.��g
qg~����k?���+��J
2�FS��R�<�n6Rq#&P����І́11l�Ig/v��,��Bg��x<K�)��/E%v�)����K���C��D$���祴��T;V��-"6H�۾,@F�rE�8-�h���sVVP���v\�� F������Z�̩'��$��m�v��0҉u�#$̋��O�K�
%b]:B���pn8[	�#s���p�,bA�X��3�}�����.9kP�-�X�a�Z�.������F�����<s�k���}w_uϽ���#/9i�W7�KO�怳���3��j�S;�Ս�ˮ�������?�����}��Y�M���vK
X��`�P�^
�;�r�_}���ӿxn��o�;M*�s�/��sS^y���z���co�}4������O�z�??�2n���i`�S��G�=eԓ�f�;6J3���v��]'Ȩ��$	���&?E�6)8��8ׁ
-���c�N�ͳd��v�l;��NLB��Q�ֳ�;Ȧ-Y�"��m��D"ґLC�����e"�aZ�GoF�[��\��g�cNV)O5 �FԉJ�هQ,�����_D��������%)Y���R~Z;H�u����H��2��P�P*.&%�?�KHi}�r%�9�b)��a�&
��~ˇ�hO�I�7C��믽񣱣��-�|x�ݹ��[�~[��ֳ����;��ѭ�^5��򉷞x�����kO�<�_8x�a�o��V�ZG�2�O�[s�������}/�]�=X�\��������]���u�z/�m�+�\}���׻�k�Zu�qw?��+#�;c�{����A!�g=~��xB�ѢR0h��1B�f�y�z�������ڝ:)F���<�q��(����`	�\%x�?f�"�EJ���$��]V&�`mC��o�d�D$�ͳmmh�k�OD`�[X1엂X���_3�q�ƒ��<��q�(h*@�O�'�]mG�܍�%
&���k�(p��
�&�4�p\�v�@2��O
aعQ�-��)*OVl�{���_�$��c� ������$p��)��&w%��;��=�|�Q�}�!'�:~�Oް�%O����_��6����g�+��ׯ����B
�j@��^�z��[
<d�#�;tӓ�;v�����	C����C�<���YG48�u�Ͻ|�S�}��g_��#w>�?�|u�c���+�1a��|�;�s㇌�4��alA��<����<� a��=�X�
��]�C.��v�_ECk
���E0�E0jO�׵��L{�}v���[io��|[�A"�H�
mK"�����lY��f>)�f\C`C�څ��
�	�k'𲼂 H�Id�>��a��d��^]���IDAT�Dp�lC���k�Ё�;����A���[4D��D�I����p���-o{��:$t�b�]B��ND�<������8	�a[q���(��݊S�4%��S+�9�z�ej�<��R���o}���}��co:���q���rض�mt��',w��t�
�5�/р��pY�d�0
�ߤ��6���#:r�q}��zٮ[�tA���*��i��`H\�
$t��4�m���b�VK�j�Նr)B�!�"DI�r����w�-8�aM`64�6ms�r���Q��:���|h��.	����⾙KF���(�w����=%� ̹l����cI����-�Ddnu�g6� ��L���H�c�:Qď�g,��c�I�ƶ>8�v'F�ӎS�Q�ϸ)��/˝���O�9���(���Q�ǽ|D}f�G��������N���f	w�
��p�gɉ��Po�^�%J�L�(+����V�ٌ�<�{<Mpq�:^1�r�tiDi��3Q`LT�Km��-
~}[0���kS����������z����d�'Ot�?߼n̳�_����d��W�w�EW^���,�j���?����B
�[4pخk-��t����y��o�~kn�ћ�~�a�4�|�/�!C���h�M7=��w��N�1�
�B�?����r&�7�S	"�]��~��MY�
�;����8�0@k�?�M%�`a���b�A`�8���%�-��4��2��3&�GQx^6��'��'+u��m�d�ڸ�"�}�M�0_����
���j)cG}&���}pK�Z��:bC'9����9����)�2�t�lVҲ�
5[��ը\�������3�?�S_[G�N�Oҝ��Q=,�R;'V.;)���1�D0���$0n�!��T�0?f��HB�j�w
�I	����=��E�%�$ۥ UD:D��j�8���RP����f3ٚ|�Y�4�dɞ]z��d�>�.��r�\~��/�9�����ۮ�mG�KH��MX�IM+��50x�UO�c�%o�n���{o��=6�r��k��CvZ�^���O��<⌃�_k�5�b��Q��#��#.�p��']����t�-����ko���+��凧0������ү�VUց�u�f\X��TJ�f}����4ς�K`��Q)0<:��	���@(vW�xL�\,!l.U˜}�����}@+�ܭ^���:v�N�ͷ�5̴(��6�)˒Ԟ�O��_�͘�,O�a��$"i'[�SD�f��R? @i�!�u-1�ƕ���Y��:��C]�Y
�	\�
"�XP5����m݌� �2AM}�T�ۙ4�@҆ �tc	`)!�%�MRTUU�������L\��L���.ސDyv[��
Kvk��Q?��W�������"�7,���%�|��S����o�x�'o<��K�>���G_��[���+׽�����M|���>u�g�c�q�������i�\�������g��{�r͙�_�CZx/�o�ߒ�Toa����j`�z33O�שo���L.��&�L�6}�xe��}�ѧ.Y?��ۭ��M���}7v�'�vι���3�[m���ʾ���B�0aT0����&�1u��W>�x���p����[]p�|��'�RY���.�Rk�kΔ��{�`�A%�"1�J�@�����C0�	�I�@�c_�m6�`�J�A9Q�
��Y�{h3��
yی�a���:�-��)k�"�v���n�6qڝvg��K�ĩ�q�m�l���m^d�S�3N����3K�J	£�0	��AÂu����r�n�"��%��:UwDZ�	Ѐx�o�չԛA��0�N�k�:7RI^�PN��5�$M��
�h
��?����3ϙ���zT�y�]3wg��n���]�:��l�©_7O=z�]7z�gr��|�Wp��=�v=��a;�zՙϺ�̭.���MO�������u7<`�lq�6�tҮ��6l�;����;���;����۟�煃��wאs�~l�w~a�v�S7~�ʗ�|��/~�'oO�8����0g�~V�gU���?�7�[20R���|HY�F��Fe��o%�2��ӾX,��6����q{l���c��=g�վ���!����<d�M7[�l�V������+��?���nYo�?��i��{�����?x���|��5Ǿ��ű2/���k���lM��yT�<�����`����푯í�!�#"�ĀJHqL����&D�*��-�q-1^$$�w�IA��
s(-�h�3	s��z��ڴ[ڴ��m;u����07߂���L܌���e�:/Ib���ZY txD+(�I��o��uu��͛.=L5	�\m>����5�U�/�}v}���uݻ|�У�|}�
/�4i���L�8᩷�?��z�޼���F_���O���/�s
z�ݗ�|�������;,��V[t�
V_b���Zj���̟�\m��n��J�o�N�57Zo����h��kl���kl7`��w�b�mw�f�A{�u�5��A�t�!��,�圿l��KN����/���kλ���κ�[�|x�}������F_��\+��q����um㭷�Z��5�oՀ���������(�m� � A�;ښl-��A\�T*�H�\���*3�Mf+7���ej.i���m��j�պ�oO����F�x��[�<}㳮<z����a�C�\��o);ile��-��;s�>;����AG�[z�/��ҽ�]2�^�eڢ�"'@�*�sY0QZ�yA!�[���"�R�5ARD ")�[`�d��5Du�H/��1/�1�+��Nd��I�az�-!��XE��)3���xz�<'�#7�GN�u���]DF7��wF���I�
U�B�DOI�8}��;w{y�V��_���.��r�d�jN�T|�G_|�\0��z����y�a
9��#w9��Cv<��Cu�Q�|��[�6����Y�M�����m��F�n������c�c����U�����n��{�:�ɗ����)�δ��Ϛ<y�lK_7�8�iR���Of~�޴iEK�L)��<����ĉձc�F�F�������{� h
,�z���׮��_��Ϋc��n8�۱����s�
���o��#o{c��G,�,M�6�L�k)ť��xZbŝ�B5(�%�eZ�H,�I����Q\Ή���S�Y��)�7M�[��ym_�v�uV�O�nm��=7��W���c�6�u�;x��€m��[��g�����θ�[ꗮ9�n��vk����׌�����t��/�x��W�l}6�'u��c�^����F^��K\��A�����f�yv3�O�m[�
��Y�A5
��]�2Cp�ң��+��I�\���$~!cru�Dg��+d�5]sm~!�]�k~b�[�-��}�lJ��ڋ�}��{�y��;G?���������u���w�r��m8�;���1�t�꒵Kw[��������
��F�^��-�ꆫ�\�d���tۨ~ɮ[��.�;?��#������iЇ�]�Q��=U�5��׭�j�/���[����[/��;�1��+n��k�����+�_��u�]7���/a��]��"ݷY���V�V�7�u�U�!i���w^[﹞�z�ͼ�����SW����s�k�9����#��>�؛��t�Yo����Ozb�S�i�-o��Ri�ɯ��=��{'��ްO�>�����������F
��ƚ��/��w[���S���a[\p�G�tѰ��_u�^�V���?>�}�O.�b���A����D�]�"�o�#���3d`
c��	��2�Aň��� Q�$"Pv�VZ<�57X:�8�ȩYrf�ʄS��̞����=�߼�}�̌k�;n�W��םo�3�ۇmpέ�n��5'\yH�>�k>~�NXR[�IDATM����g���|�?��d���<p���>d�w?}
or�3/J�פj�r�`2Y��k(��M�d�$���n.zy�J\��\�gEyhR�L�T�u9,~����U��#mh�#��T2�+"D���Ֆ�F�sǮ���{�׎s�C��NC��a�{���w����k`�E{n���b�-v�z�ֻ�ێ����'��W�ߞw
�uгC��᭷��4y���dL.O�4��A�'rgK�pE;ȮCKVO�������[(B)��a��;�^}`��,r������A��|ƶ���
6���
v���u��䰵���uN���
�~�&��xڦ�r�&��q֦W��`�k�`��t�.��[/=c�ۮ9w�ۇ_���W���]W���]W�9�KO���N��sN��3���a���F�-�Т���U넋3�ON�	??�i�`O�4~�x�[�Wg��IuڛT���n��7֮|���˓����?�~��r�eb'�ѝc��2�k�.��.��Wh`������;���]��M�\����1����mL�S�9��'� *�Rl��|��_�4��2�;y|���j�$��!1Y���&�m-ň	�X�$�A���@77���R���<؈Q����E
5~�\�]6l~�/�2��Ϊ愵�wn�A/�evۻ�~�s��8z�;�a�
�Ư_�
���u�����ȟ��S�L��e�r蹧/sט����=�̣W�~���|��=�~�n5r�Gޱ����Y�X>�kT���ݺ�{���l�%{��}����5,ۭ�?,�u�]vY�a���[��a
}��T�Xùݖ�q�>G�?�nuˈ[������F�s��cF���>��w�}����C1�����u�%vꏿ�;���Ƶ���e�}֯��]��xȦ�'��e���O:����hy��_;��7�y���c'��?~j˛�5��qt���q��.X���*�y�5��vڰ�����f��؝7����=Fި�M�6X��m�n8g��NY��ޱ�(G���9|�é��T��Tu�=�j�ĝtӛ0�u�Yo�I�_����*��WᴌS�����NVA�7����)%�Fĥ��J3�%�)	�V$�VĕR�jERnCTn���:X�.��k���W^X�߯{D7��V����.����F�|�J���^���)�H}	��"
�
�
×� ���7,3k��F�4�o��_�m��<�B,n�D�Lŝ89*�+����-��HD@��)I��ĥĒ�G��Y7�
�����36�q4�?���m��:?��L�zͨuf��2��i�?�\�������9��x��;
��s6��s��o�{�>l���E��}����<B��>x����]��=�r��ۇ8���g��G��~���k|��rh�����~��[�Ni��(,�
5��Z5��ݰ_�]g������}W���QW��m�n�ላw��vx�;�~۹;x��;s�;�7��/����u�v�=vŎ���h˻��r�=4d�m����g�?��x�wuչ��s�[���]�:�]��o�5�<���w�p��wč�_M{�p�;{E���4������w/My�{eʛ�3�_��M~�	�����!��>*��G�8N�D-����ߢ�f��kDC�]�m�)��iA���ѕ�i�4#�4q]�Q�V��&舔4�3E�b�`��2��Dpn��ӥ�k���t!�*Ҹ��.NC�mq�GW|��|{x���^8@�B%̷X{	t������'/��Lٻ:{b���HK[	����^zRn�O RRD��"��uY�8����u��9��W�6�	�������NH�&˚-����rATᑼEb�i�h�܅{L{Fh��0!�iH�&�*\W#��	iR*p!��j��*�����K���5j���f�h��u�W���������}ӹ�.��~[�m4���K��������>�mQ��6/���z�C7/�t�=v9n���O١a���Xk��7�8�|q��7�~��o�8�	����Ox������c�O|���y��Sf�xϰi/�<m���֛���_��t��X����������p��c���z�?�m��h��˷\��2�ǭ�T�5�����V�5m��.޼�J�ڶ끩���_ld��f]�y�_rAK�uOU�\W�5�'fLv�����_��4*
�IJ:�!!�F0�Y� �pi&5�OX�"���G@�)O�s\����Jb���0?
x�CRt"c-E!�TT+�� 6ϕ��#8^��¾�m<Bm&�Tµ'�7�t@]�;2̏a�<�c!�)ahۆn��������!�z�6�n�z舚��}�Y�.~����o��|
��f]�d3(6���йzS�zTg����ԇ��p�7^}����=��c��.���8I04z���H���7%�q��N"�}�5k���c��������Jq��!��"���!&�;�#����hA�-�K�:Mp�i��o�۾�[�RO��E��]��׫O9l����ۘ�/�v�C
<���v:��V�}�����?zJ�~p����ڝ���mt]s�B�՗B��`���Z����]�;�_��+�]�k�ۣW��C���Kw��K�e;z��}��[u���p���;��t�۟�v�Q���'���g������v�;���9ö}��C<q�[?r���=p��G�~���p�V7���7�V7����o�Ƣ�E��]1�ç�*O}�ɯo�ݛk3����7�,O}�g뷯�5�O�qҋٙ_>�i��e����^��Jھ��i"��o�~�����2%�:��Z�@��F
�V7��oE���6j�*7ә+Ë+p�"T،Z?"h�q�4#��vG��IPAV���l�J\��NBd|Z	4;�5� ��u>�…h����D"���AD���<�K�$i���ǃ�g���`�;��u���U��b]�T�W&(��t�f��|đ��MGg�ׁ�4C�D����!.\��Xx�o5�@�W���]B�W����/q��}>�-����8�5_O�b�F%����ۢh
]4���{�w?�Co5avg��v��v�%n�ڵi���k܁��J��)��w:B�LB�L�������ܭx���3��p�n�
�*F$4� qYOð}��U
'��堸#*G	*a���n	yƌ���E@�m�z�RBV��5���)��U}��[��Zr����͵������S�����W�C�k���p���߷{᠁}W?`���0p�m���g���g��g���\�����<���;w�#']�����c�ԩϽp�	�=}�>�1�u����b��}+�V[l�gV5�c����C�s�,���}+w��|�՗�u�Z�6]��ߒ���WG���7��[a�Е����2=��~��/�[�紭��c��+.V޴��N�k���V�V�Y�i�ji�UO�2�Ac�X��im��͞=Y����-��%!�::�.����6��3QIؖ�[�T!\�դ
�2�P�yP��J5�Z7)�(Ν&)Js���2� �p>����c��S!�Q	l�����Pt�\��XO͉`t�O��G9H6�%��
�C����k�/�p������i���80��p}��/-ז�@pW����7��(�O[���k��!O��:����|	�-)'G���d
7���%�k����E�tD)�9aȼ ,%ʑX�������T\n�ӑ-�ú�u����W?�C�|' |�KmU�2u4L<�]�^�|�d���J��+�eK�E�=;��~�����~������o�^֭�Z�s�om-���+eB�����(~+t!�b��uh�kE�
� BGh $�oDC�����IDATC"h�q�nl���"��5X/��iPc�����n*�j��6OI"h�!��1�@�Z-�&_�	#�(�O�h��o���nCF�BR�5zFΞ�:�P�y��7�}�>o?���=|�Mn�s��ڥ�U�����թ����G4N���������䏞]���W�i���nũ���y5�z�
g} q�h�:�� ��_ l���򘎜�]�]�F�{���kB�3���g�������,���ԖRƔ����O���	pI�c�t�t��)bD�
$�3�' �$$N	�)�D�����	I�‚o��Y�,
EgJ����N1Dt�b�`)�<&Z�p+0��5\�	��5��΅�z�(�%"�l�\�%�4	w��q`�CML��sP�F�\A9���3lg`��RP��(xE��5dɖ�5��a� ���ֶ%�e3$b�� 
?K%�\_B)�>�^��8��2�ay
�al��KZ�>����m���=��{~��H�/ⳐͿ@�.������|����,q��/�v=��R[�pN�#N2FwY����=N�m����v╣^��\����)y3s͜S�jܰ��2�e�-�vJG���c
 4`9?��3(::��"�N)�1M�Z�
���Q���8ek�5�(�(J�,��E�;�ن��8(�Q1��`�*���<�wQ���$ta��>��u��I��b����l벏)��TNk1A���M��fws0s���g��\P��K߸�<]��L%�f��D�m����c@RV�3�8���POBgED��W.��"�M(�P~d��:D��	|8I*�X/�;_Ḑ�1���.���f:�	+[�1��PG�
���qn4w��CKڸ��@�I�L'��u��0Kk���8��U�D�sN��=�1P�u`�10r(�g����dD����:=UI����=aѾ�خ	��<(�؟�ER�>l(��Ⰼ�R���%��Jy�x���}(���h���Cy
Ld���&��y� ���;w�d�3v��(!A;���#A�rV8?G�y�P���T�Y)��@	�!h_̰�R��bXi�=`�ˎqψ{/�o�>}��n�]�w4�z(��bٛ.9咮^y5?�N�/�A�)Z7���w�Dg�SX$������;���r��v�Z��0t��Z�9�rL�Q�f��y��C��?�8��ӥj�nmn�"��4ƭ��Dc9DK��L�Gs��6p|���ҵA\���L���A�uh8A�G�IP�f��BpQ4ޖ4�O�(*{MC�8B��
��nQ���eH[C���!�G�߂�� p���Sfb�+
��&�@E�PI+�p�%��*|��S>_|h�5eu��mbh�q1�%��폜�7�#��7)K gI<�u�ږ���q�t��v2i��8M�Yp�
)AK�<)%�C���D��S�JCMY����ϋPf+�� GϮ�-��[��Z����OEB�U�n��5�-d�p�A>�fk�����O�o�GL�	�'���0����I��(�
c$�Y�ǒ!�Ё�[J�;�0p�P¸bԆ��"V	5�dw��3�$��X���PH`��h�1:AXAb"X����W�o�,�$εG=X�Og�����1�P����R+\r�'>�ҝ�?�o[�Oqlݩ�����y&�{���8j���X_;{+���D� �s�椄6Z�L��Z�nK?x������<��1��Y?�w�&h8�MNJ�X*OϗJ%��vk�33Xw~L��a��K�?yЫ������ݺ%����6E?����f?�l)���_�ܩ������x�i*2qn�QnfB�UTK����]Tx$l 4�b�,%b-w�0m$��L�R04�	�^b�LYJ�%@24�FL�N���Di��[�e,�˜��֩��u��S�Ϊh�5��K^Bî���h���#p�Pp��c벍uK4���$%�PFsHQID��=+�S2�A���c4�)"%C'�c�n�9�p.�y�7*@"U�O&m[�}���ɐ]P+'[1\�P"��2�j�a�s����!~*�3[��>Om�[�pu�'&�2H,P/�i/�Ap�HL)윲CP�EIɦc�A�9��sIIZϦ�K��ȹ�GL��:�6U����6Qo!w��-�s��aE�H:?��-:s�����s�������|���2��r����ُ�{I��f|��8m�R��k.�t=���?x����J����{�ԀZ ��
��ڶF�J�K/֠�Ԙ���T���ܒSfǽ����䑏���z��>�̛�G5����ݷ/
G�i�
z�FM�O)B��d��	���-S�:U�o��hl��	�y�賶��9�^�����_�_��zɄ��n4��vTX��iX2	�nfVѠʝ��h�<�9�P��L�ș0@��:4f�����~p��d��UjC3�'�ƐD�K#�Ɛ�T��=&(��,`2�#4	s/�c9$�����a�R:�y�2K�;�9��t
 v撚�a7
��o˒�� 
�t�� lC<���$��b��!���r��|fw�E��K,��-KҘ1&��9�`B��I)��hª��W� pl�](����)��)!"*:QT;��y>�f{:S�Ư["
�"��٥�̪t�?��~�d���_�)�:S
}�P.v���_QK��Q�['e��p�|�#`����Ц-�xɜ��tV�	uiC���Α�V3ư�ǁ��NL3�	�R�&/�:��(��$�CP�?]Gqd��	"�Ʃv����!���4?�c�>��\8�8��?��9����͠>���i��8i��k�]���n|���ym��ˮ^;���`Ҁ]C�vqv�c
����c����u����.�m4�v�u?�\��&��Q�\��������{���{�P�1����'lu�Im<ʍ����i��Z.!�uVw���\2v����ίy�����x��}��!�����g�ow��G
����N{j�7��}f�ذ.K��\�e�)��1n�f�ڊb�m��q�(Ub��\���H��Z@�[�߿�[;]��m�IJ�3%��I	��}(~w��aH" 9��;�A!�5Ԛ�(n�qY�y��+%� r"D����+�}	Uk��<���ӯ0/��Uq1�"$����x\�̏�6%#
`'=!hX2��qJb�K"�`ZD "��Xŀe.Y�PK!IdN]��6mIS�vƄ�2,Ă%ɶWl�9'N��]�p4>4OH��S�����\��&S�\�a�5�斗uĨm�6d��ܺ�I>��g�����9
KƑ�S'V�:�OS~��晘�5	)�Ǔ
�����P���q.E�6朂$ka��v8�;e8f�/�UG�v�5�ąNɇ��pM���I8of�J�`�P�o�J<�R��
��s鬪,%�ط��.����=�Ab4C���J[U;�+�pd���o^�R�ޚ��j�^�-W�t��3�8�_�f��� ��������A��w�[��~��]v�O�˺��ߥ�Fg^}ǃ_e~Z���u�9�ȗn���j��*ӿ���edsd�.7F]�=��k5��`�zqڗW���?�쾛���\�ї�Y�O��>�F_���8����t���jb�����[��2�wTCd2� aHĂ�@)im��B�N�$O�֏�փ@D�'��Ҕ���fM,�$
b��^ܴ��u��7�y$C�Klv��ƺPޘmP.�1Y�M;�,L���y�r'Z@,J��X���'(Ĕð��(�$´
�tT���*�ic���
�`e�X�)�
-�*"�O�L�9�b-I�0�29�<�سu�í���/~�៶9|��F|�Ƙ����2�=�4i�����N��#O��_��&�IDAT��|/�Б3ځ��86���C��(¼9dY��
�u �����̖u`��X3��$A�6�z&wh�„}�	�0�*�����J�xg)��0ºJ��!�ze{��56��و*���wH}���б3ʇ0��*�eF�n��A�bNF�'YQ��&S�Z�����w��w�b�gߺc�
��NMF�c
��X��O��fv7:n2�&����
_]>��{/Yw�+���>�)繍_��+����$4�a6IjWx��Gt�3�>�i���d�$Tn5y�.�=���_�b����ϰ��;����V;�v�
�(���NM/�4���&x~G����1|%b��1�@H��iK,S܁[��u���~?%s�i�u !��F�Hk��ջiqC��.�
�ȅ���N��]ǔ��Ğ)Õ�.Z)w1IJ
��4��BҶo�녤W&��o�ID�!����%+�� G��X�	[&졝���s)�Dƒx��
1��J��	mܖ�ꉎ��
	�<q"$N�'ERB]B��U.�*9$�"�g_�b���>?n�{����{��E������4#�D�N�����cT8?eɒo�����㎘s��)�P�$���Di�L��,1���1�g�Ta?�X�����sg�G}����u΁�<����x�$ഷ��'�o�A���R(@[5"�@12��
�q����q��Tr'e����U"�C��<�8�f���_���9Q3+u5U���1���;�o��,��hat�Ӏ��$Z(�/j`������e�3v��S����5W�������88^
Mv}�}�~��7��}�Nw����/2����j���
����[����5;j쌩W������>�\���8���ܧ�y�ۣ&7箐�?�\uzƁ�@��a�!e�D
w��lA����}�]E���+O��!$!��N`q�����]����wX$�w$����+��7�0	�~k��r�WWW����28��H�qgeX���P[eQ�27����,V��5�N�b6�}��)-l�.5,�V�#�i����6%�X��%	�q�U��e�S�_��X���z�($��
:�?q�+�H�a�{ƪ�WC���
�j�8=GK>��i�e$�5�DZT]w�4K]�ԉ#�@)���"�r�^*8�D�󡐩�����/o~r�6�?yu{%~���m��>��G�_��H��3a}j1��(�������pN4��3�����)&(�0a�r�b�Q1n��[��c�v䕒��83�� I� ������H��H�>H���0{����A��8�J�J�`��i3�)�Hߩ�`�/���5̷�5����$�n�xlr�7S��>� �~�Ct�;_����GSNx��G>�ڏ�<��{�ػ���Ÿ�8�Y���L���8�+=}?� �{�bKua*�EԪŠB˄}7]m�������:��7�i�Y̺"(
�?�4]�th�fj�0xCn�,�]{�
��s�&]t�#U�ۇ��>\*���&dj��Ҹv�87p��oz���9���jmL�WÝ7��מ��W���C޿�#�4�-������A�cR��絷<>�u�s�yy��d�~����#����/���,�W�w����+*�0i��ƪ�ƶ
娑^O+��P2%��ē�c�Ќб&~i���i�'(��P��������/��AA��Kw&#�-���{�(5���Ehq�#�*���K���WOu���#�Wn�$��#�H���4آ�h�m��T^���� `X:�'D	��ښ<,�����/��5�nC���X���R{�� E��
�2�wG��M�|A�1��	���Q�!	л�l�>6�rl��L��Qv�������ޭ��P�ѵȨ8'�bAS�$-#����?�ct�c�Tr�%�LQ�Ls�M���l�:)Wl�Z/U+]��W$��QPӿ��6���p�n��J���om���N��w��r��0x�os��}�4��b~�'��o���6,{r�_r�Q��-O���-�:��-N��-�=�ɭ��v������Ԏ���n[z��{��ž�l���������!��Ƒ;���)��2��=����/��ҽ/��}.����{��;G~�cg}U�fqs�9��h��B���$��8�~K�c��AW��'�Xg�5����o�u����3߮�_�/B��5p��G.���W����}��G�q��{=��_����r�89i�|�����ymR��gu�a![�}ZT݂w<��؍w������w�א��_57�N�([����}��7�y���a��{��_��Ϻ��9��C������y�ʘ�n�5Ϲ�~�3V?��;<�֤�G}Ҵ��h�Q�ċ��K6�ͻT��<(��\D��!`:@R�%D�4MQ[[�����r5aЄ���\y��K�k���aʇQ�g���A�44R�$�	p�ix��G��r��D�u��,ۅ���0ô a�1��#'�a�4�0�A���rMH�\�J	͍3P�˺���&���Ƀfu�����i���/B~�"ZZ�� �G�d[r�U���,N��4�(�
���bw�r��9vz�c�Wӂ���~��xC�H��\�x5�r����Ȇ��f�t8��m-q���j�����]��8{��4���7�i�|�x���M9��w>�w'���+������8�ů�|��>�Ok=��w���oV��o����/����6��^�2������W8yPn�#�[��e��zҰ�>m���<b�E׻��+�w��>���~��[�����}��<��G�Ǟ�����^|�����xw�Ͻ�2c��/x��&�T���/�bӘ�O<��R��$�xRCD�1Lb�9q[�Z�C4����M�<��׏�j�k��h�5�VH]�@� C��4 -���&��5ud7��v��5���N{�N���� �6ӊ�Ez��&s+?��'�6�s����x_�į���R^�־�g�I\�N��SMK���*�Ժ����]�w�}�7��9G�_7d�`Ի�u�0�����KG�/r��v?�W��v<쾝������v�7{Ϸ��8�ݒ�%UTI��T�V�)��M�A�,$
�R�r��$*A)AFg�j�����rO`�tYSH�BŊ<|����U���Q�Fj��[d*�i�=@�$p���A���:@���9� Co, �+zފm+t[SI3�$e��~ hj��9���,���<DE��B/�MZa�Vh#�j+��1t���>��Ê$
����ǥĂ<10�H�p<	�$��G�g��"V��ޑd���O�1�+��`x�Q'���=�W���ky�>���{�A�?��f'�w�v����c^>u�S���ɯ����_��ٟ^�υ�ް�%co�����1x�O�w�g��}�Go�{�G����t�[c�;絟�1�i��F�����������5�7d�	b�:%����<W7g��!C����k%�}��Bs�jU�br�dz�}�'�wζ'�L�2
d�H]�Q]�_T�ou��q�<���onn��6����g�z���/��}+*?�g�~�k��r�O}��%�>�T���l�c|��(����w?Md��H/3!�Jm�������<�o_�"ʧ�k.��?�����7z��?xٝ{���9[�v��e�ƫ��m�J�>�I۔�GM~{흯�r���W��޿y������W{<��ؓ�n�k�U��LÐ����4�
�'���E>=� C�Ak�@Ϸ�G�`�u��E4f)b��i�QJ���L%P�X�Me[�1ezҜz�����[(^���JU	�܃f�&�DrO1�i+e���~� 2)�i���	[���FB��j@�ڵL{h+���r�QA�����Q&;/�L��ވ�y 5m�cS�w�$�sѤ��`�t�]Z$��IDAT��7)5g9.M@QnlQl�0�����Mag��P���报8�	�9��f'�p��F�������럟�����^M����=�����	u��ȧ9��-��*(p�X����f�60\����L�z�)��GISJ�G��~�>���z���3>~���;�_�+��׀������р�*��w��:z�7�����
�k���S�o{�c������n����O�>��Ϟ�t����?�׿Rw�b�:�����m��o&Jyi�p���U.���T��a0�a��T#)gTE��q5^q܂��O7�M�h��k�n����o�Go;z�CZ;\h���3l�� �o��������w��V>��#�<��-O���
>���r��=�>�t���/�sI1J�Q
�Z�oP��P^Z�=baI#��
B)B�6ZM�BѸF��T|�w�i�T�@m]��B��!�CK���j�*0��B����Y�XU��g�� �g���\(�\C�5(Ă�f�u�����kH2�U"ݣ�e�%ճ-�=���^n�~�I�nK���w��,��7�p����eޘn���x��	Q�+Ǵ�:��޻}��k�/�u�||[ÓF���r�$F���#�2)O88��R͸I�{�?mlR���ƈy�oُX�	"���/����?�a�[Ҍ����nm��ʆC�̦C�[o)䙮ۂko��>l!�\}z-����P��%���O^i�'��d���_i�.��1O^��%�\��m/^�������o���&בg�;������Œ?&�Oe��W?_ϟ��&��Ҵ�ٖ�E�!���WkT��Z
x��)�����J�5�	jPiKuqze�e/u�i�Ȉm��L�������4�~'�]l�E
�����|�}nzi��޷��<z�գ�y��Ƃ��_��_hN���c/>�����M[�r�B[��O[hރ��iNi�D
lR��[��ʨʂ�O���6M_l����e����O[���m�nv���-��	;-�ذ��]�_|���㮺��7V���S\��a��ğ�x����z����%�}�l�z�Ͷ�amo�|6R�3nt��ݴU	�<�ڃ%(�F2�L�����Z2h�j(D>Ji��q���C�ͣ 
(�^��y��C�
B�s0������&�>KƨR�^���ϲ�����Jޠ������!�d��^�p�������}�]O~q�=�}��m�}��
��O~��M~��M���[�p���dً�yp�E�9�W?e��78w�巺dۥ�<���9��U���U6��������Ϲ�`��OS+0hp��܊��Y�rDŖ��3y��o��5K$i�6�O�A�T�A�\?>��� c[Knk���u���K�>t�b��a�ŏ�e���a�Վ�q�O�}�-N�c��N�}�]�;p�}�d��wx�O��8��o9vߋ.<s�+�>g׫�9|���9d�[N9r��O:q�.<~��N?bӧO;r��\w�f/�uɞ/�y��Z������y���>3����_����-��[�O=�Z{�>��"��-�Om�¢=������u�����?���Q+���Cw�ɮ��ȵ޶���?�ݍ��u�}/=v�r��Gn|9c�=�ejLo��Y1���TD�b����5�0m��aaB�{n���]w�ȧ�p�ŰXй����N���A���4з{M�nŭC��
�����J�jg�m
E�����4������]�B\��O3���_K`+'���X5B��T�"L�Q�:��V&-�)���)Go�R��m�أ����9�]V��-��-�nΘ���o�ν��'�՛�^��k��Y�p�������;m���S~�?��4=�:gk�o�Z��
�
B#�\*��a&1*����\Ik
mI����i)K��ȟw��-0���l�e��Z�ۆ���iR��{�|�Mǀ�W�<2����/g�h�w����V�7xl~���zf�;_�����y�-�s���u�m�u�M����c7����S�r�q7����[��|��?�y�c�q���įn�潣o�O0&��#FV�5���֭Y�Dx`����*7�F�m�N���[���2�[o����8S,4A{)��9D���A��?��ꤽV���s6�g���u�ꏽy�z�頝_>��?~ϡ���bO��b�������w�����7�"�n�b�+��~q4���d��a�{G��j��o:�=팏vK�n[o~ܤ6�a�z;a����z��Kw��U���2�~I<�v����]�y��5!���x?�#*�M�ZJ\�exQ���ԚN���o�G���r�Y?�r�yϟ��e��~���v�ql��kq��C���#�A�l�=�M�g�$�&(Z?5~^S��ӢX�SlC� ���C<��U�ⵗ��[/q�]Ϳ�|�����*��h@�{�tq��4��nk�4u�u�3��?4��C��0�V�q�v�\j���JC^;ϭ�:��5��JE����fP��
:��)�4�ʔ���ƫ )LT�4!;��L�tå��%'��+��ӗ��Wq��W�0l���8}o,&�s�����ug.���\����c��і�7Ψ4�.���R�tJ:�F��E��mc�|�	G��G��1r�!w=��~w<�Ѿ7��p�k�g�k�z{�+�xs���|s��ou�+�xu���`��ֹx��7�d�e7�h�?m~�V+m}Ͷ�mw�k�t��k�r�k�|��k�r��=?�w��7o��w��q���E�_ 	��9��7��I}~��*�N��pKC�!��FC�P���J��{���)���R�^�Ɨ�b��y�Q\dD�K�'��0����dN�K/�0|p�x��z����7�	�ǿ���/^Yzڷo-�:�[��@q��}�S��M�����'��I��M�w]�֟��&B�&���!�6�"2�?m����t�/i�W���!-LB�JM��u��Ti\)*LG�hNK�!��l����D����O��'�.����?��ӟnp�&�-�ˊ���]��][_q�LIϜ����Z�a��n!$K�
���A%����oѭ/>���o?��3�[b��zr�O��p6
��R]�.
�pw�=�M�x�F�!,��R[���р�_�jO���8�$F8t���S,GMZ)ІC��IJC^���Ty����i���@e�<�x޵�-�T�4��W�i�Lۘ������`�u�u�詳V���+���Xz�!X`�%�P������~����_�Y񓧾{o��.�ӶG=4h磞2�ЇW����[o�+�p�����/�<��o8�n:��qw�z�O������.�w��?���֙�|��Y�}��kޛ4�/�F���=�G�2|�ła�zլ�r]�͖@�M�M�焅^c�H��!�R�M5F�">D{0ba�F����3vY��@�ߏ�b�l��j�6�.4Vn�
n��(�`<��blVr�yŽ���f�2��L|��6AV	2"�9�04@Z&)w�J�I�r��Z��(�`9����Ql���˱Q&%A�A��p:�����!��a.���ȡܦ�:$�\&�RH��o�4���Ǟx�S�~�7/|�;V8�3�:��
���%����~��i����-S��6xI!LarR7���Gͥ�����x�_n:��M�XfX���EN��.��j`�k.���F:mE��|Ԏ,�{��״�)f�p�4��1%�'iD��}?�ֲ�ƨ�b
=��<�4ƾ(hń��U	�C4��1���2�y�Λ/���Lת�ǚʤ/��k]rŅj�9f�_8��?��M�y���{�*[������?����c—?c܇�~�D�%������%���ʈM����{�>��;l�{������9�����G�}��ǭ}�m}�{�v��gnx�E*��IDATm�9n}�ɇ�tߩ�����;��b�F�D:f�ĸ�p>��J����Q�p>ʕ6$Il<EɤuO>v�ˎ�m�:�3~�>�nr�G<�3_Z+�$@j�Aa��Lo�V�%k�f�;���l�X$��-�+���q��B
�ٌ<j`�m'���,WP�{S$-�Eype17
q\A�$�.kĔs��3�nM���3o�u��+��薫GZ�������� ��_}k�/�~�����	�Nb�_�uؖ7\t�-k_v�u�_=򖝯y趃gH���_��S�
��n�:���^~�����Ko?|�6�=$��y��]]�5��P�+-��`/�i>-%�~�Ң�v�������D@�ƶ9c�Z+ZP�c�ڨ�TM�+�I��'����izT��B�`k� ai"9�И��„����d���i+EhTdڔ�a�{&�?.V�����i9f��;w۰��/\���/]�Ɏ�-�v_�0����L�c�;M�t�~�-�54l�b�>����w��1x���Kc�͖�R�-�e7Z�o����Z�*W�İg.�x����G�^��g/��/]��_�z�w?�u��v�iЗۮ]��6kԼ��}��a��wo�j���_:�p�����|Rmᓣd�ۻ'����N�|C�ݰn^a���<=���4=577�6�	r!����p���q<[BC�9���5Ӝ>�dUMo�
��{l~hӔ/�lS�T=Χ�>,A�{4�X10*�;0*J��;}����H�,Q���QV���j�`��5yh$�s��Њ8G��%��G�)`R�+�pM)VKɗ^>�z�$Qu�2�;����p�����
�^��e*��hd��R�2i�`]���i)���H�L�y�k����˟��O>l��i�wǾw��&χ=�/k��fO�"��i�͎�j�;G_�±×�`�a��A����J��;�����5��
�]ڶ��2j��)SF�K�����i��6�w�ՙ���n*�&"(��i�|QPI��]$&c�C�W�ZkֵP��V8�v^LJа������u��p��%+��e?�<�G����cB���q���wǪ1x���
Җ�*������ٟ7�[�x�ɇ���Q���Ј#6��������6����V��n�-�a�6����u�)����u[\z�y�^����y�A��u�a��{�A[<pҡ�<x�A�>|�!�=z��>vơk=~��=y�	�>y�Ϋ=���O�W�tg���s`����e�>5��ԤT����>X��I���/�EM_�T���g|���^�GO�h��d2jU3��21���x�k���x^�yrs!r�n�=�Q.�y�]���H�"���1�
��)0����q_�aR�(kXU��ː<]PU@�ֳ�����#��Zߋ�Nbe	�B�?���\V6p�X�v&�:�J@���[&�(�Ȱ�en{<eG�y��V�|��Ж(�]�|K~ڠl�{��r��s|��C�[��;�����8�8z�蟷8z�s�昍ϸ��-/��>�Ÿ4>C���Q����;��ï>��]�޲�C���
��mH]�=4����ӯ�e�Ɵ�>
a��[��a�~���z|���{���y�XW#�Q=Oᕢ|%��/=+��?$4����pK��K��=O�Ƌ�脀na4M�g�Px�|��i8kjj�qW�=�������Cܖ"�jdA�ϭ�лG%�ڤ�w�kYrڏ�S���Ö��vݪ���u��l��w�-2|y�O;�쭲皙?﹪��?��}|�>~���}z�w|���&�~�W�^=|�N�='��A�{���+O:l��v/�8z�h����>����*z���-c�&�'�?�Of�Ч2��^h���W��l�/n��R�d���S��`j�B�PTwʰR��8��$%&�UJ,@�Z���Tx�!T�6)�)o��)
�Q�F)�Pa�Ma�:@&�A&�C�w�o��h�uw~2eN>iw=Q��ץB61H8�	R'�YD Brb�|�찃æ���u���z\`p�C�
=�2��O����׍U�f�Z����ϒj��;e�PdNr�G�%L�� �㒉�Roe�-[�/!�*i�<��);��W�U1*RF�u��'�����1jTr��w}}��>��%�s��G,�����3c����G�����F������?-����]�4p�}�?�m�\b�]jCE�Ҝhz
�mFOXz�>��K�Eqhi��o|��A��$!��0�$F$	#Cq:��Ӵ��q��\��@�Ճ�n���$��2Q%�X��BCl���<�r��
�a�oM�H����4�4�7=ru4���s�ʨ�NE��Y�4��~��O���'�`���#v9���x���vx�#�}����y��#�|x����j�#��ָKOo�������o{�����@�[R����ɦ��$3�M��Kې�m鐆�H9ː��͙/Bnn4�>
ϡ��"���"�}��Zؔ��44� @������]�VH�q��%1<_�Pl��e�t�0�C�2e7H	A��E�6�r
���hTʆ^�E�}1qb�'s��Ur��Əkr=�y$d�H��I�j}fWC��A6jO��-�z��;��r���<N�30��W�	�����͌�:p��0vT�"\��%A؊!�4��yUձp�`}#�$-��d��-��ZP��G[A|�z��&
�)߇3_�[eԩ�&j�����i��e�#7��K������'����o�7�q�lc��H�?$ȯ�`�C�w��;k���}.߿a��Z��Jۇ��~�9C���yi�@b��D�<~�RC�Ξ��C��:,��8
�Y��h��ҁ���
%Or����I�±J�L�`���YAY�<�$�0K@�R�h��بN�7E&��%1�i|���@I
0a�V	nt���0,W@�R�0$S����x��2��9t~[��5��w�����6��!T�Y�Lצ2]l�D�ېF����덌W�k>7�[�Ve�<����k��L�K"#f�����p�!,u��i�&�\�шJܼ��Ɓ"�;e�8w5���$ǝ0
C]����(�L�4�K�d1�cMbB_[��Y�6*H��U
��e1�������,~���3>��c�J3ON��`x����:��>�U�K��|���tϟ:3�d>i��e��u�~��k<dK�PW�"H-2VT�yڂ(�e�E˨W%%:IP��L�t�� ���Dtz2Z��g���L]J���(�@���v4%e�?�k�{㾉#�z�N;��O��/����.�]>�G�K�����w���<pđG�0r�M���i�襳a���H��˕8�(� ��F���vz�R�d�?`�5��#o=������DӍ�
1h�`��&Y�S��M���V7���@
�~��H�1YZD�
�@�	JD���#�4�֦l�J��ۑ؈��2��č�5lZA.��-
qZ
���S���f4J�Tx,]�#����P)� �J�_?���0B>CK�������EG�T���5Z�����l|��������BiSb���f)8nMo���l�=Q�	DT4�+��:f;f�hh�u*����.��"K���Y*�ŚJHhi+B�Bj��҄[��&�=/�(��lo`�wN^N���"[ӣ��gޜ
�fc63����O�H��|CO��VKlu�-,R�ca�~ؽ���v'߷[���\�e���M��
�Ȑ,���2�Pd�r��8h��dw�*+��>5�Xx\[�)Cså�~B�c^0���7ߨ��W�/�l&�B��!��l%�n>*Q�F�����_z��oj@�o��%�論!Cn��j[��ۣ8c������]�ᱲV�Y	�<V� �7�~	��x:�R"�"j�U:u>�N]u�}6e�����*Vem���:��	s�4��gR���7�bIDAT<���@��A ��;�T����`�%���)�d*V�c�:f^	�rE`
�,��k��4��{H#�>�#?S�jC�)��B�
������%S)�zuN[l<�kT���Z�i�
�Qdx������ �62��U5��S!����h/��F�IllmX�'�pNAJxN8@�O�x
��r{��rŞ<�#�NW�\b^?G�[WZ����2T�IS�E#�q�x[sK��6s<)�"����U�z(_��YSA���T���5�\Hk� ��w�O���W_?X�Dd�>�I�9�S�M����c�=$�f�1=_�`7�=m��Z�7��x�E���s�"�q�M��$M��P֔$G��T�W%c5,7�k�S!|���6l�&�^�ӑ�>J�p���=U�|Pg���@�gP�����:k��R�ƀ=�& �K�0�����̵Ps�Ȼ��3������O�r��^��^�~eU�8A
*� �w���|Lo����4�!�l�$[��g�ٲ��'ݹ�=O�s�ov�Od�VL%�6��*��`��T����Yz���RN�bC�hw�2$04�
���w<4A�mT�y�Z�
e�*��*�lK�IIFi@1Oy�"��f�&��XC��*���%��`[M�ʧ�;��|}�;1Ej�5(����!I"��������
�ⰶ��E�
i����7v7�n̎�R�ZÅ�CM�ӽ�}��Cz�$�D��G��ݸV�w��4���g�&���غ0�x
%�C���d8F"n2*\W���N�JaC���I�S/��ů��qO��'��LlllE��p�LD��1��8���C�~�ô�;3x�?¦�	���Y�P(��X�aU�)��Ck��|�_Q�nN�D9��'�zpz�Ч뗋պ�S.�PSS�lM�cO8j�l�oii�t��E%Q���<A
5�^��>����41F��~����4�������z����7�^2������?�
���h��E����r}+�
��?��hR�?6��s�)o���	?�|�C|1j�.kFC"����\>H-��Y�i���M�׭UF�+�`�KFb$� p
q)�"(	�&Eo^E!�$����,���cl� U)�4!��Z#���=��c<d�m�~��zp�%�h$DC1�U�_?���7LJ)�J%x:�5de-:��B�ԅ,r��hȂ�3"�\9�j;WAS^���;ry.m�3���䬷�nG�Kwnc�FJ�[�SĠ���$��#��M��|�~�^{煊�NmI+��1$'�j���2,U������Ử׳�!��
��S?-���j��B7�<��Z(7��
O!�4]}�}�:�ъ�h�A�b��#�����'#&A�¢H�����qXw��J�2[��a�Q"$\w�J`��:0U20���rK������)2QM�=�b�I.�ʥކ��`y�dl�M"���S\3I�r���袹R��͕���ߩ�co�b�E=v�%7��[!��])�Y�̋ͼߍR�a���o<�׏��C��w�g׳U#�X�h�x�B���a���|}:������zpG�>��A����v�Xj�a� 4����끕�鴇V<��E�|W���<����A1�P��i�IV��ZE�/`&�I�<���-�-�Tbh��U<��s
��5k�[K	\�/���vڡ#j�,�"�&��X�\Y;/�uy.�A����8U HZ�6���a*�T4�*r�����rm��#�Z�{g����8q���~�Sq��P�C�T�Q��09_����'>3fLԹ�oŇ�Cn�.�t)_��,qs�Q�iE�L �>�lE�e�T�ng�<2>��kx�W�Rk�m����#l̠Z�VY��$�E�6��b8=T	Y��g�a����,�Q�*�qS[м"�Anzk3�K'��i�O�-d�e[7��^�T+
;��$�*�S��1:7�Y�̓��ߧ��_ ��a<����lͼ(W�7� �eib��n�w�]�����}��Z��BF#����Z���3L�bZ��R�����x
PS6����B�@�(ޯ��aH��I!e=�4	
&��s��}�ٚB�W1a�УT$�^ѵ��j}�F�I,h�A,,��;��I	�0$�A.��1��#�u�](�-�x�g�ѮnB�\=K=2s�Ҏ@!\Z��8��j~B�����	8�U� ���R�RB2�C�b��r�P^�z�z�`=c��z���!2F���J׵�R���N���t}?DKs�M<,��|k�r��س�ʧ�;x��/��c�=��e������G��k���t�5gmr��G�����W�L�|B9�����pW�%�W���'FO,���w��V]6�zF�f�CD�\�):|Q�BK�_G��`����[@q�h�
.VX7�L�Lrenc` H��<���AI�y���6�>����v�\k�s�ؿ�j\�낛rS�2f���ePs�x���/h�޺c�����un�3F5��<�Ƙsκ�w����&�J9c���L�E6�u��NZ�y���������p���^8$M�>��:(]��P��E���܌��BP��R�a`����	��1��B3C{����1JR����4[j�*.�4�l+.$JjX�_=^�0��y�z�"2����9I����Uf�/�Ն"�>.c�!��D��z�"���[k��T3:}��|WE+��}��
��2��"�{�5A�B�H~�0���{?|]�0�l����C>�AM&��\A��,w_Z<I�mk������J��������j�ѻ���[_���]����[�ҁ��=��?�P�����	�&I�(���&�����6�);��({nֳv��9���s�6�sΩ�8!�	�A�=<@@UL3�*�q#�z�$�r���@N����b�l�u�I
A&@K�])�0����j�E㑰���[JY�(�T��n�n����-{:l�v}�N�c�Ul�#i�ih{���/ѹy[JmIק��r���o��rK�$�~Dh�hd�h�WY��l�/]����y��_y���]�Mp�d�>S�}��k�-:~7�eꡄ� A�&4�<6�yW���~XA��]�&nz��N�S]��ʰ��O+71�hʦ�@rm,��c��|!/�`
�z�8B�z%,w�r�(�`�%�K�ί�&��j�!"����a���]�`P=G�Ӟ�*�ϊsFC`�'�<~���!ˍO���I�ٿ61��a'�
|��I9�֪ˬ7l1Ԑ��w䨱�?�v�]am��w�V�($(��c��H�e�=���B�tژj�7D?~���<n��1�O��sC7�֪T�-1��G����vC(�Ka��{/V|�햫O�l�ϳ�`d�UW�SC�.�Jm�ԏ�F���Z6����ӱ�0�I��% �j��ܱ-
�J������Β��WAM��Ef�nOa���\���RD|��������*%�E&�/a�]�\����v�]��5`�y��#��o�uM��Kn{���oa�b��[�Q��1ib�<GB�@\Ы�i��q��ݯ��s�kO�r�-guҭ�x�ݫ\z˳�;����k�7m͠�&3�I��H$�B��w���% %@ѽR�α�QvF4��H�ӏ7JC��$�+4��0$(���ma��!~��A"�z�\[[= ;�uTe���q����r���r��o�����gP��SN��2H"�v�A��ܑK��le�s`	LBt:~�qz�O��iA���IE�I�Gl��Z�W'��_v�]�|;�j�E:��r�i�!�[��54Lb�M�� ���I	5��&�P���B<��C��C�Wy��m0���-
6���������N�c���'�]�{+nFr��C
+�kB`�K�y�
H4��4��
`�Y��ة&M�,7o�i��_�g�(�88?6-Q��-͈y"���F��l�4�̈́A���]��D5IDAT�q�23�=�� se��f5��i�_X�����]��
���)���"(���oNx�?�+�T�ȸ�"B�%嶨��3HGME�s-�q�M�vѧ�/��u���u��p�sl�B��->�d{ A�b����TF�|�I�iEA�,�o��!@XE��9Q^K +T"(�S���"&g�&�M�(���0�1�,��Jw7sT�:�Ue�<��)����|D(C����#��<�"œC�q?J�&π�� <)�(c��e	�c`D��>+��y1���P��r�'�g��n8b��껑��w�h�w<��I~�K1��Z�˃�ף�J�J��<�̙l��P��/
��Ru�()F�z�ڝ����1�NFk���C���'����ʬ�YwH�nHװ1�x�3�"��g�a�$���« 
*H2E�q�O�6H�m��P���A�b��V�z�ӛ@+�"�	�A���=M��ܐ��O2���Z)Ҭw���
=�<k|�b�~���sW;J$� _���k5��ڑw
������_j&�[ͻ��ӌ���&IS��(/��h�|x:@TI|���j�0x��7p����������W����{�y�ֻ޷�^>��s�O�slc��K�?5�㖴:������~

h��|7��V�{�!rUJe(���25����0��i�1��V~�˜��4�򩂧�����#������\y\Fg7f�т�J�
Ċ������#!0��ȁ�#ן������0D.��{ܿ�nkk���������U�Gn��n�4"��tDcdÀ`WF�u"P����,��	i�{�c�d�K��tB��-)�����UϾ� 11�
-�+m���	�	TVC�h��e PI��*TJE�y^����C��F���\��A�?�:k�zW^�U����iYг1elE)*��8œ�1	7m��I  �Bs�Ɀ�9�x��r�P���CK٢��a��Q�B�E+�(�:���(�n(	�4���f�P���p>��5��":=K/�c�JT�e2Y�<�O�sLGDr����J�¤���޹Tn]���w�ti�740�Ͼ�ҷ�n��F��.`
O�y�^"N

x����i�J����9��=ֻ���:���z�.K�;י#n��uݷ�mr�;{�r��^�����/ws�~�ws�-�X����%��˪��"*�!���	4>�&Ez�I�@ϱ�26� P��q�o��迚4���[�q�?[-�kB���L��̪~�hw��4?���Rn
�O���@Ԅ{DqU�J�s���z���
\�Sp��V+x<��&��$F�.���|&���_k�~����r�a���(����G�^�?�k+g|L.L2)j�(�V�H�T�h)M�e�]b�(����}��m-P�>(�y+^�޸�79
a����6�`�!u+��	�G6@���4�bq���O���TW�E��������w'�>����w�/�Z?p��A������iݢG��Y�[䵖̐��|�N6��3���,r٘��ix������5�=�����V��MF�JmA�0��!U��E�V>,�D0i��#Aţ�K5���qw
�_��o��2��a��z��l�����Ij
Ҕ���nLCL���@��zG�5��6詻��D�UKL�;bǕ�|���͐ᛮP����g5�u�\���/}l�=k�{������^8r�w�m�?��'r}WTuq��B������b�L��d����:�~��g���
~�	3�RJ�_F��Ѳ���E"�Wa�A��ld,o}Y�wu����Ү�#���E���\��wy�z�>Aۅ�]�+��=7"¶��O��i�@h�M�����SFn1��V��y@\i����e�Yo��l2xA�_g�a�?.�ڈ��<��?�[�����m� "��ٚ�X�ͅ�+q�^����^}���Vx
[�a��=?~�~����5�{�s?.>l�̠EY�$���Z���5<��dz.�T�w�)��Y��\ϥ��Кo���=�]�g�����?�'>��ϻ?��7�=��+<������y�����%��s�2��q�����k��k�ؖ���.���~>�#�:�c�9顓78��36=��<��kG>��$'[���x�9�� �!��rMh���7ZQb����P���wu�?��ŧ�4�9���c������<^� <`�C�K�;z`���r[ޫH�6�i�A�~z�����f����-�����5���!���R�y����p�hL��o8�����φO��?�ɛ�$����`3}L�awL�o���XNQ�Ād�9��P)���[,mB`jK`��l�D��'��l��XSc���DX����7@Vb
��c=
!d��k�nG"�|�Pi����B
A<�<����b����Y�I�z
@q��נ�ci�:@���6X����2x�
f>���?��gvkI�;.�w�7u��S��)$�� ��RAq��!�`����\��>����p��mn��{f��U0t�
���c?���-}�;=;�	�R;�Ҍ-G���#n�`�S�}��zc�/{y������g~��#>:x�>>z��;��[�����~�˩�}�鉷~8u��l��?�ѭ!���ӆ��
F%P����S���w6W�J�L�'��j����'���P#�t�5��p䨩m��n5T�}�R*J��g�i�sN9*I��y���j<��' �[��q5Aa�"2�}V�/�bݥz��I{|q��k�q����pE��ɫs��[��y��ﭻϭ׮s��,��K��W����3�,��_x�:#�kL+h�BX�����E�4eb"Ѱ3ә���d���;rw��ȥ��"Uպ.ݙ�멎<�%;`�j}�|X���j�p��1%IR
]<�yGWPp��Lq��� Iz�!���cV�C!�A�D�E��ƴ;Z��(�^��C���zu�~�}�xd�-�Z��1'����-��)�?�U�:�U>o.�����:��u���Y�0�|���̷~��y������[��[��%W��c�~��wFS�s��H_|���|���������˵���׭��������´Q7�e�w�:��{���ݣƌ��όF��;�B�|���!����-7E���x�Q�~p�RW̧�y���k`��,�?'ZW���4��W��L��ŁN%J�`�z.�3�㒕����W�[COQ�Ҩ��|�<}�d�~����^8�m��kĮk��i˝}�I�o}����Ȓ����{�}�><⺯N?蔻v}��d��j�Nkx�����#��9x�^Jc��m�O߾�~�[��<A7%��$c��P9�a�"Rm��˪:pe�\���|�p�y����t�?�OD��꺶A�A~�H�l�6,4�Ǽ��c��/���|e|��]�2�)���<O|���K�n������

#�$}������i�\,�:�����6<��<��<����9��
�=���8�э�>���>�v?靣O������b�<����B���6
�lط׍\k���ފ�o�Ҡ���jϚZ/__j)�R."�E�/g�s�'	�����x|�]�Oj�r׈�5��_Q�����@D� p�,�g0�SI��jy�����1�TM%O.QЫl��<ڼ��5���|
-'.7H=����}��M�������5k�;��̖|��)��:���7:�W��-N>��Un�C?�h/�.�v�|++��0��M�lm]����8)�5�M�#x�M�-xb_����!���g���_>R�1��!�u��PHr�{v�E�Ԣ�ZD�;"��/�̼@�@���DZ7�r����Ol�wů��]��nVy=�g��3�,wk�ߊ�m�;IDAT�f�Y�&��׿l���g>�춧>���^;�{^�����;�Xe��G.�������֡O�y���p����l�S�z�c��{�^>v��>}���h���~�.��ߜ��(�f̌|�	���w����w���7��ͻ����O�j��7[�����j���Ň��s�W��~�s�n�aW��a�߾ߑ�<x�Wݻ�7_�׭7^��O]w�kw\�׻��?�
W��������o�N���{ƅ�y��9hpCe#XI�7�2�J��/���NM��s��\8�ǐ�x��5`j�$�S*�Ń�#^ �H��f=�8�����c�l���o�))��� s
G�D��f������J30}��?��u�p�y���m���C����E���v�l.���DG��⷟gƠr�3n��?�'��oT��_Nx��Ҽ��%u~�g�ziR����^�/_Qъ^3Ӽ7�V�}vf��� ��g�[�|Ҫ�^�,�6���~wO2=o��X�gSN�dr��l�y�w�>ۏ-����
k����<��u<�ٍ�;�-�:�/�r�K{p�{;�C��CW:����v�g?�#.&:����7\�B�cg>6����4�DȔ�͙����9�=�)�]w�m��=~�A��:c�%�?o�5����;e���=�O��~̲��z�g�y��W>p�Л=m�۟;k�^�`��?�v��O�{�G��q�{��o�[N�w�+��}���r�K�X̿,S���hڻg�3>:�2���Z&�7l��/-���~��_�/
3&Hd��HS�L��E�K�4|��Ո�Zą?ύZ]ۃ�}�!��%�L�����:��?��Tg�T�TD���)
�j�ҋ-�>|�����&�YB��p�Y�2�5]{�T<�����ֺ�WC�L
�DQF`Za�ƫ�e� �:f���V[���G���O����\x�M���s</}<}�)W�0j�����8G1F����1Z)(�+w����V��+SZ�xy~���Һ�>�Ÿ.����8���W;��|�c��?���78�}�<��#v:������ǯ�⨑�ox�mOou蝯�z�[>�Aۗ��n����|n�ygF�3c�T��?��C��%��f���vY��𣶙�SwZ��o����»�=�O��k����ۯ9h����ƅgl��>[���g?Z���?
�O-3P�]f>\��{�퉋ϓ�P����5��7;u�=e�0��*|��m�j)��`)|�S�~��D�œ���3fRBۂ���f��	���w�:@�Ttzt�ڦ�jο;�A*\
Oq|��mR�n�ø���J<�A�3Wk@�գ���K�_i@R���kI����٠ �d{�:߹��n�u�b�xc���� 56Iș@j�e> �HSK2p��~$&t��M���Ϙ�?i���fKu���=�yq�9���ś�p�q+�����1?��w��	~�Q%!��u6���8y:�T�:���������^���
OO���gڦ���
���a���+�
[=W_�(��p	,0|y,|�)�.>�]W~��
7}��w~�U�z��?���K�����_��K��e����6���W���Xh�0`�%�gS��lM��F�����Q��������#����+W{�؝z��-�}�]��i��\�Ŋ�\��L>-�4���w�M�v���?_q���0�A3&|֯y�75�q�O�Ph���(��T�	A8���T��2���|n^ܺ� �v�vi����Q���<a{�[[�rd{��3ݵ렅���rΝ�x��ٟ�'ܱ��PL�Ǝ��H�]s��}�������ȫ~>�y|."��~�!1��Js�:=�Q��z�v&i`/ !�"&E�Ѹ�^%�[fL���%�q-
���B�����
|���ɹ|2y�yj���-{�����g��-#�:�����p��O��bE|x:��></���|E;@�R~pwb������^m���ОGn����m����=`�c�����-p�Շ�x��|�m'|��v�
�������Ug�����ƚ�׾�?�Z�{���ȝ�7̸i��ԋ�]�?7����;7��끟nXg��^t�o�z�O_s�~�q�q�^|���tށ�]w��/�5�4���օ�1���M�TP;OP�P�7Wʄ�ߏ&k~��
/��Lڌ��SE�	<S@T���&�s�
)A����{�94נ���0�g�R
���rS�@܅L��Z���T�9��A�n�Jbd�/���ݠ.���I�R	Q� �R(�Q[���N��k��ֽQ�&�>�Z
��v�s�'G��O�T�
Ql��W5���\�yl���ef��à���>���Z�4��E���{r��p���A�]�N!A5���:ϘG�q��𾰔FUk �
��E�b�0�Ǐ�3Ƽ��b�ڎ�������x檕G>v�ڇ���"�_!��"��̈́��㩂3�=uXE���AD؇%�P(���b�g���B~��뺯?47��?�Ͽ���"[.,���e�8dŕ^�n�
^�f�-��d��^�b�^�d���`��=g�5ϟ3��]�W/X��7.Z��w.[��/_����\��7����x~�-�<z��ݼ����i��.Zm!��>����wv.���Z�wV�ƾ�H�w4M��G�/T<9���8yl������D�e�g���OT�N�6�<�۞���Ĥ�^m�w��3i�[æN�`�o�dʍ���F`���8�I%F��Щ)#q�(��JI�~�"T\�ϸ�n	���a%�JZ<���T�pnDN�_^õұ�<��ؖŮ���c.]=7�qdP X���o�ftz��O[k��5��gQSS��m4��Z��U6���S�t��A�ꢹWnEν�����F�B2e��8��Z NSD�ZU�rƤI��`� ۪��Y�}z�|�Yh���ܑ�]��zl�n��E��Jj���"zP�4�n(���F<�ȑ_���/k�4�P�K�-�[&l�H��e;m��3��Ͻw���1��'N#�N	�]
��K�FU"Dt"��;l�P���o�}��o�}�X`��Xd��wY��{�p�|�ov�e'�����w�-gt�9G��e#�}��3�~��|a����?7��y�)��o��_0�~��g�N?���y3����gl�S�lЀ���oV�رC��E���TZ>���t4.o�?dQ�10m���oEʓ�f䥄�PI$mD�0	&i��eظ�@y$���"[Z�4<�X�Qe2��"/��G���fHmRl��z>*m%d�Lp���Dq���<�N:���"{JYd8w� @�5܉��{«��k����Z�ƅ�P^~���9r�9 wi7-��:�ە�<!+��Zn(�x>r5��5-��b�NO�iIq�
I	ͭ��W�S^�(�qs��7�x��S���\����5��kؿ�~G�A�@s�*
gk�QԠ�#E��;�j�Έ�
�Mx?;p���Z>H��l��F���4"����MZ�M
�b'�k‹i���5�w��F�ț(MŒ���M;j͕��{��.QJ!}���I�_�~��nNvF��6�%:�&+-��ۮ�n.2j��xp��޲��/�t�̹k,���@nұz��4}��'}��jє��������ը~�?ܽ8�\�/%n���y2L���:EH��# yB����A�^^#�P���@`C�� �T(Ν;.���Z_#Ȓ_փ��Lg&P�b�(I-�0D&�y8_��#���&1J�OHʕ"ׄB[�ȶ*�!{�%�~��m0�q[\��N(E>����<�	�B����,��"�c�QI�(V΃P��_7OJ)x�C�wi�x��K3��@kZ��4mlj�.4T~yښ��Xʪ4�&XW{��I3n�4?aB�/��bs���:�q��i �s�'�IDATV	
uL��"S�r��41�}Z�_�f���*�@QV�t�^A�N�Yk�`�T��2�v9婀���Op��s_�� *�bԅ5(5WP)��
s�)aқl���8��kf�	Q��9><Ox�� ��pw��j
��̒QѺ+�I��)6�˩҄�zL�͔��T&d��8�/��e���O�R��t2Uj��H<�aD�
��p��jy�`�-+�F,`S�e�U���{M��Z��e&��N_	V(e��)7N�
�W��SXX���#�R�q.#x��q�yx����y��r�vw�	�=ϫ�\�r�
ڳl#0���
>����<M."��"�|>�F�sO�VP�/`�bڃU��I�IV4��P�%�!"	��R�����t:q���t���2G.�����Xm������+m'I>Mʈ�Iq9�\�ӣ�N׌���nQ���c��@�
��U�5��
Tb�A�j@����B�I)�{�.U��|��iٺ���ޭAъF��:5X��a�8P[%��*_F�y�и;#L�	!?�i��|Q�+r&��
��XJ�0ED/5���G��,TҲd�!�0ɐ�c"�@k��xׯ���v ���6i��:S�����j�
Y����Ϟ3?��c�"zlj� !�]�����c�*�?�C�Ɉ&�)�(��d,l`�*�$2�A�^��N<6D���>Z��7���T����#y!��x]�Q�
����V9�^���Ay�
S�3s��C7�v}ʦ%GYY7��u���7�s��+h%�&�m,��	-E(���P���H���{¾��2�&�ph�� �g��R�*��Rђ `]�S7O��$� "ԩ��"����o-�E�ϑ�<a��YS��?�.4���{�˾��1T�e�2�ǖ"v��+m-�lw��z�J
��r�]�����BۜQM��T�f�OPўC�N���7��J�&�`$��i�4���`I��䡵��r�6��H;o����}�O�a��'f"����XR
+)�RbK���@POb�����&'����0&?�؝8�������"D� `X��5��1K؆�'Ußp�	[�l��GB��"!����8�2n��(�Q���96M8��D!��)�su@�#c�T���
�!�+")�h곝�<��VC��ԿpN:��²�U�$NZ XK��H(�����4��-ۉ;�E�J](\[%����q�f�\#n^
�9�q�%�qG�UB�qCm�uĎ�ז,f�"R�CD���i���K;W�N�jkka�kx�ݏ��ߊ�h֛
T}��D,D�WC=So~�I��g5�̵Ps�Ȼ�?����j̜Q�D�
*��|��v��vo��'XS�蓴Vpޞ"w�댢��t��ڪ�w��IDf�j&�T3�!B�M~e�	:e?E�Hٍ�R�^]�KE1��lFHy7f}E��#F�m��@������ڪ��d��GD "Ք���H�cm��8��'�{aH�Hٿ�@��4R�I��W"UP&�Wt����|���P�0�`efh��	GbĠz��0�&�Q
�̀�e��m	�v�c	�(z�V�̏�j'+U�'��y5n�g	�F82�*��$a��($�#i�+�UJS��2��Ф��!n�/F8*�n�y��M�������k�#N-�}��u���JS��m���O�,�^��2��˅rYʕ"<T��9�Ͼ��W^v��Z-N.�����Z�k�r~�/�W����z�:
��n�]�=4 C���4(ӿ��#w��bտ�ՎikK�@#4�Se��4�Vu�y��װSf���\7[��qL#N�{�r՘�a�cX�H�^W�p:���h���T
��ّ �v��n`4!L� B��[@�y�^7��Ƃ ��x���׏a�j�#��b'�ɴ=৓�A������`Rz��X����-���B1�*i��=.ܘ�"\YC��U���u�F�<ʯ��"�)֓�'��2���.�Hā�A�L�c�W���;�M��s��D\�@5���
��`.O+���aR�g(�ca��8�w�x։A���r`��<��r�b�m5�x�ȸP3t<؇uf���.H'�(�lDX��9_'sǚ�\��I�kR�����J�r�Έ5�3�[�N�ܳ���z�|
�l.��ѳН��rRs�����/h`��͗<������y�W/�7���������x�7y��7F~8��ZZf�y�Q��{�~{o��f��3݊xS� ��1�zk�ւT�ˎ��<k������7�塂<f��%
���	�"�J�A��1�N��n5"x�S9�۰�-=����J+��:#m`aT���nѴ�1Jq��@}]w$����9�V*i���Ћ����sԩ&�}�RK4���a��WDk�-��=�TS"������Kb�<N	H*��qy�&�{i+x��@����o	�$a���@D��6nxU-}��B�^�/ļDAћ�x��F�\�)�c�Lf��+hzڎ�4��
l���
n\Br!5�q}8�A���|)��C����mG.�A"���`=c5�.�<�C�tv
���0$�˜���Y�A{��Q�J9)M�V���:���ןG+�}��﹐biͶ��0m9v�l)�*��¹Wj�z��Q
��^}��~��W���9דּ�[d�E΋��d�geS-j��|��5��5av�r���$���y��W_sͭ�����ɋ�7�<�YG9�|=�	艈�80G��R�-K������R��@3Ի�dL�6�ǛŒ��D�'�&"4�3I��DdVY5���W���!і�XA����2&���ہIJ0��o�wʤ�H�F#�����"����)��S�lEL4xBK�!�h7c�K��*���Cr�1Q�nAR����`�.�ub1�������#"U�"B.)�בo�u�j�e�_Қ��{;)�KCs�a�u�ޕ�q7f�� I�".�C���8ê|�N)�!�;`��0�j�<��
P����PU��#Q�9KNB���D];�5D{U��;�����БH{_.�HD(�F�͢�h?(�`2:=i�0��Q�(�w��Tn��q�P�ǴƖʈ�Fq��r�hn�W��<�����8���z������?�i����R��ho�B[�X�d�� �qTA��J"���	=O�JY5M�R7d�V�`�u��?���ȑ������/����x?y��T
��"��?Pq�>�j��g�y�2���@�B}��hhpր�
��y�\d\�ځDD �N��
 Z�"Fثr�l�U2�@�cudhr}�������r5H�%�[g�����c#V��Z��tUq�b�K#��oV=�1ˁet]�����*ˍ�����,�	�����,�;p+��^I�Wk���﹕NayO���z)��$��p�cz�ܰPoИ�:iX]�@�I�A����(���U)E��ʷ��Eo'�k&YP.����#��є͋X�D}a�B�A$Kb]�OD`�&��U叅u|�ԋ)��&RWǙJB^1y&܊�,KI:�be���]��Q�}q���@q�E�k���?�)��]�p���?݆�I�J3?_/�un�Í�#wU������/��袹^�j�WC�~K��{ǭ�^��=��λj�y��J�4�4�B;�5���1�e��7Þ(d�Y�$��l���U����Vp��Dq�$���lӍϾ��F��뭶�juۭ�B%�MP��k��"B>)�mM��j�/���z�ȳ8��^X�o�����l�B?5�ݛ%3O�gz������t_E~���X�	L6%C���'��FՒX���K2��<��"���"އ��\C�أb���<�xD�ԣ�4�K��uU`
�]J��@��Ư��U�^m�:������/2)"�D�W��`f��
�X� J	�iI�IDAT���4�J�B�S�H��r��F����G�	G��ts��U�*�v"V�DA)�J�ɲ�a�a����,g<e����RΘ��0%$�r8��2�-��H�:bSv-eLyҐrB����NN�u��9a�;&���&n���.����pN�*7�x��[����p�X�'S�����.�b�8&*#��Ay�)}
ͭ����U��"a�ʭ)�#�ϸv
O��{�i��uE�b
�k2��k�U-ԯ�-7^{ʍ�^���C�?��'���D%�*�3�(ޖ�Mi�"`���QL��q�Nx��BG�̅�M��J��K�h�+.���x�'{xKr���koLK�3���@P�>�v	M���e�Fo�G����g��͛�4��积w����Bׅ=�����o˥�0���W!l"�i(4���(� �~#dC� kz�)�(���{*�$H�e�:S,�:Ǎ5�,�p�FiY�)��'��!J*p]{>G��l�	� ��vk���E+�	�(�e�^~F�~�K�*3���6�0K���"&���	Җ3"���*@<���s��7+Aq-h�ᎋ�4�G^@ԏ�[������!�+H��|R8�ƕ2���3+��AHٯ��$�/6t �R�tcn>RLJj0U�
�:����	<h���\�dӘ�$�k*�|����+����j��+���W����cM=8�E��i��;r n�?E�	�1��(�<��eY�$�(/u�X�sݰ*��I�lL�O1�S�Y�,���%ᒇ���:��<�Љ����
�%�ݬV]��Zj�}��Kj��V���G�~j�%=N`{Dh�M�#���!ɂf�2BN"�vRJ͊�����W4p�u�%F�2q���Z��~�C#�9ߝ�`��{��J�T��?=s`��(UI�8;�!��3��\����}�Gw>��:�5����s�'�ދ�0��mDM��@����2��D�4�@�\@.���7�ϣ��
�"nXRz�n���f���rq���uD�:a���-~�-QEXO�O����"��c���h�XW�%g��aH"�Բ=���:6��UbK�	�Bpw��&�F��K�9��<h�#�CVei�� "�>��'p�+��)E���ge�S(����@�R�`	���u�,�"�)7Mq�MA����DʺnC�8�
ޜJ��$�w����tY_S�vs���",7��J�U"�q}#u�+�c@ka�U�wَH	��֩�N�E^����+�`�f��E�Ϣ�(Ę�ߑ6(\d��n��F��2���
�o8��Z����]o���tХ�����s|���0`��Zk����..⌖�� C������\�ȯ�E�U�w�@c�7�d�5�Zj�>�J3?&Θa��O�18#�A���.���ر(�6?o3�[���.��M�xn�n�0�eI�o*~�.�H a��J
iB��QI
o���*5��؋hl��B����r�bh��Z�CV�E�B�\N�k��@\��@D\�JN?�2D�Zn���2:���=������d�5�.L<�<���"��ȳ�D"����#W�1/P>M�&z(z��S4��HACs�=Xt�&OQ̤L�	��邔(Pa�N?T|AӃ�÷)<n��Y�'C�Ⳍ�XM}�ӯ�k��
�C�:@g��
��sG��/�*��$!�^=�C���G	�>=t�5dx_��� �3�
�g�g�o�As�a�r3b([�V�X`
1�ݧF2�$��"r��<<�7���؇�	29�A��s��i".��̋���t��P+�DGH��OOP�,"�3�җF���/-�bs�������5�N�.���-;�S�,�Z9ϥS�lQ���T#�����zE��DdV����������ڞ�äI���gUd�&��N���1Ep�%+g��J��
0�Y�ʋ��r���jؼ��[�O~V�oDn|b���<3���ny�c�l�*���+����aj�J��^<ZܜnD,���R�y/��
�������rU#��lb��	�~
1�Z��cr�ײ˪����.."i'�v�O\�3Y�^��$�
�;�fy
�C�܌�$&(X�Ƅ���Q�?ā3A�1Iwdm�wW��ARE=�$`�H����E,�SK����'�|�	GY����dr���<e�n@��R���$�>�,�
�%@��e��>��}�W�y�fO@�� ���j�4�o�ߋ7��D�*�
����Q�`�ԏ[�UP:�R*>؃Q\nA7oRn�nP�~��=М֢�l���s[����ٙ
�S)�P��r*�x��)��%�n���;c
��z�4��J��4@
�{��GvС�%i��ǔǗ
4,�k��@D��"�a5����U�����$�Niji��;@s�X��J�&�����G����Av�Twkfb@Y��CW~��]?p�aCo���8|�A
���шG}�i����y~������v.�K^�f�6�0<�C
��<
l>'�)�.]W�e�y�Z.�,���y�*����^�s�a��n���E؎��D~�[>���;�QI1�]y��m���x�+��KR~�)371D �X�.Á� [��2G(#!_G��:B��%H�!5��g�!�����C�Z@���Rxi�ME�
LF�I��2�0��~Qn<�k(��h_UC��,�iP�z��Pi��'p+^��+.�t��S�;�|��F�
��E�4�*�B]�Z��B�	ũ��V>2a� ���s��9">7n#QSW�)��GX��}Q�{>��3(�Z�Yu_`J���cʙ���V�z�x��9��o�ꏸ����Ov����v}���f�&j��X��
���kʬ-�NB\����
�]��Zj�}�����kw�чEQy �$	ðz�("��o��@Df�C���;B��w�.�QE�4����O+�����	Ͷ�\�v*�`)c��w2Ƽ�tޚ�=p(�^m֧6-�L<�.h�R]���W^ w�>۬��7�~�>�]s��/�ӆC�f5�u����W�\��ϯu�}�|��r<��>�J�N��}����T�Y��>F��pw�Ǡ����_
AH�>�}�?��)kN]uNW���NիQ��Y�I
��&T]��/P,��e1$�,��a�#�g����d��L��!gǰ���sN�kkY�F�
�+��EM8�� %LkA{�O�47Bb��$M��߭
V�PF��y)�@�����'������C��zA
 ��k��z(�$�E�dx3]k$�;2��e�P��>mQлI�jL���6Vj's�'6'�j1�(�y��s�?����
{-�fn�^��w�{�6�\��d��(���W����YӖ/~4i�g^���/~�ף����^j��z�Ϭs�A��ם���O^~��-w��l�#�8�ї�i��u��a�yJNq�0
��J��@�kyBd���ɘ�vi���.%�����3�z�!��5��C�A'�$�G�"�I5n�8��*�0�#d"�|:�:B���4v-hnn��2��EQ�\�REV�����Ӳ��ݰF6T�@���$E�V��+~�F�d$���g��XW����7��}�ݗ����<�����QcѴ������/�y�_&ms���kM~��x���B[L��4�8B@��io�� (
+L��\;�Ji���#�����Ng�
D��kF ��ѵ	����4xj�(�(
�,���N���䵗B{��5%�8�$��/Y�^��SXϢ)����24$]%CO�QJy�,��F��h`K	Td��Jw���`M
n2��1�FB�����-h-E�n�T�	�9��:����ؠ7z
X
������
S��f�tj�v܌���in�+��|����n�o�������v���ζ7=�ö��ն���K��<�IDATj��|�3n�x���t�S�x������ǽ~��'�q�vg�>w�s?�~�s�}t�s�}��>;�/�FODq<P���Q�q��o�믻RMƫ>+i�Xa�r��}����MjQd���K��t)a��"�,�c�-6���t� �_��
&��i��x:@�#�."ըH{XM���S.�CSSܯ��;�Lh��f�A8�I5�x�Y����R�8�݇�:����J�>�Lmc�R�n�%�H�Hy:tez�M�r���ēFo9 �t�^�/��e[}�����^�m�d�����m���mO���{�<��AY�/���zq�Wy3�}�	:7Odu-"n6�4,=�ƅ�P=��
]Db5�]�tUO�g���Ms�K�2j�L�����j�X��I��`�N�����
��&��e��ᑡ'.&
�P����Q�.]�B�k��CFCNI�S�8
y��ȍE����(ClЗ{�����H	Ė@l���.{�j��!����������+����|��-���īa���>x��k�|G1\��Ş�|5-w��?b�7�m��7~X�w�z�/k�y�1Xz��eÓG������zb�v���5�������_�<w����x'y��Woy���3���L}��>��͟���O�|��)w?3�eԨQ	����.4�w���`�˩0+��f��i���o?����"D�9
�+�?'s���&
�s��4��n��4�zh���)�0m��2�j���!�*ud;c����>��q��<a�,��zF�Wpm�Lq�B+q%Bm.�dVeF��v���ɭ��)Q#��F(X�\z��"��쌯�]�0��Gל���׊�<v�a���@d"���p��cO|�㎿�m/��������Y⇰��RQ��H��L�GY�3��;��l�Ǜ«$IEQU�0�X]��;�|�YI�Ft��eC�+Tx�k9�N��F�,+E�_���VR�u"�������0�l>���[�Q�R��N�x��Q^])�w%�(���AYn���_cru}�����^����]���u����౶�R_7��s2�ѱ�yo��2�o��w�3?l}�-�l1�7�<����<���:�揷:��/�>ᚏ�9��t�g۞q�[�pÓ;w�{�z�#Gmx��gm|�ӗo=�{����������x�c���
��ٔ��O(����  3�r����#V��bp�=K"G=Ce�21��O��)ONJiFi$<sy���3���t�s��ܮ��u�[m��JK,��54�9��,J	�JN7"��+4{[[�%"�@ޕ�̎PD\�Z^������0A�Z�aH�Y<�<ifh��e�G%���(��3�*Ό����m�Z�b��
��[Y"T�
�	F����&���)[�!�Ҙy���
���rƾۭ��qnt�!��x���.6|�;�+��t�[�'��r�U�{��K|k��?o��t[�a��ۼy���<AOz�!��Z%/��v�s�r`."�j��̊�O`]ؙ��Ί�2	��<=aw�s�2�
|��"��x5(�c�2t�;RU�u�	z�����8�S���;��y�R?����������l�<c*�!_��A���ޒ�E_��Y��l�e�z.}O�{���S:��&��[?���y���ּ��0����t��K�t�"kx�J5r�͎��
�󬭎������{^iz��w˯=��w�|�����m�������ǭ�<��ğ��<�c�OL,:�w����
7�;|h�×��zK�}��F�%wZ��J��;l�{�{��}7�o���O�v�m�;}�=޼i��ξy�o�q����u�o<g�÷��v/��mտ���b����Sh�Y�^��a��0S%�ȶ����L
p�̌us��^�57�U�y1b�N�ҿЯ�b�d������k�D�j��;&�-y;/�τA.W�*�"xM	�I+A&D�R�@��l��6vzSc���S�
�NQ���2��D>F�d�@<
g+_�Wܰ�S��J�׽z�L�c�-��y��9�M�}�̵��qIth���ґ_���W�=���9������O7������"c��_���ǜ
�'�t���Е����r�e������V:�80&ALϹ@�������v�n��&a�GԷ^}���u�6\���ߒS��[��J��Z�~�LI�>�CkÃ����<����Cv�.i�Ӯy}��Nb�.c��~g�/}�co�v�So�v�cn�|��.��!W���w��s��:h�K??m�+���k����k?zꈫG0�/&u��׋����%��b��}�!�u�^��wۈ�ָ��U���Uy�jg>q���zպ�|v��^w�J����"O���|Ϝ��O�����N�i����q���vȽ�n5��6���}7r����ݺX���ɗ��+�힫|�z��_��w4m\(�։O<��l��Q\��7��۷�S�����q�^��Zj�k��aސ!C�����C��<�o_T�t��i@��5���=�xX��dy�w�"�6����P-�'>�r�E~�~�:�x9J�.T�sG�:�g|�*��4���QH�di��$�dW�_ݣ��-s��b8w�����k/��]s�H5�<�� �������t��D�U&t���%�Zq��]'��k����q�m�k�}�[b�a�0��U���'���4�gg���Ꮬ0������{gNa�l��q�9\��Up�:=u�.^%���uZ%�}��z���E۰��A�e��{/wk\����Mɜ��'3�}��ɇ=��{?��w[���~����땥����W�ɕ�?��>i��-Ox��-�~�����=F<��#&o=�Q��Kc�ӟ>}��7���/}��3�����i??1z�gޙ���3c*�ݒ�#�.�,��}�e��e�އ�2tྛZd߭�,�ۺ�V�w��;`�[����n���j�����ݶ��Wݴ��~��n��u#��sׅ;x�9;}���}��b��X�a�
�^v��"=�C�x�Z�ݪ8��}����c���;K�3>Y�+|3$�����+�zy�
=3-�52=���U�,9iF�W@�LG�6��
�f�w/tVT6�ꓤ7�"H5��x�a��ִXg��l�&��3���؃�8���g}�W����WNo���ޘqqی�L���/���;���w��O9�Æ
���Y���_�/b���n
�t�����q�y;oZ���@�j/��RqĨ{��P�7��;�P�	>.oN��,�x\�:񼐮�+�I�F!����"ڦ<BbhJ0V𾸒]i��ͬ:+�L%�Y�z5��7�k�"E&Q�
�b!7	�jB�gIa�[�R���1����e��I#�ۤ�����;�u��;ԯ����o<#n���k_����_{k�j֊��<"R��Ed�j�|�C#��w>��E�\���S�yc�c�zg�#/zs�#O{�S���-G�~־W|v�W~|�!W}z�)�|�™w}��	�}4����7����ׯ^�A��R}�_�=���<+vG�M�+Yv���[o�����O���~O���3^�|�k߻iLJ^�h���j�׏��+�m4�K�?��o6�S�l0�#�
_䁃6�����{�A�w�[,xÞ�z^�|練4��wR��������77m���U���_t���{��?��Te�D���b�tDm�O^�PȆ\Ma
�e�}&�
�}�u\�Ā���R��P��bvƫE&7o�R�~���_꬐lMX�:�B	����S�[�
���a�t��۬�o��~W]q�m��emM�Ǥq�W�}��#�ŶC�M��ӽי��˥�}Ε�{�'}�#�?2���{�ڥ�Z�?�iҿ�v��/h@���VW(IDAT��򿨁��r�ّ`����,IDhtf������_pA�t�q���9�R��0�b��rsto�{R^
xώl��IikZ�A��+(	������65H���	wBCD��er6��_A���{kS��L��P��[m��)��D~&�Խ�2n��޴]�n���>j�;��f�'m��*o���`~�1sf�X���(�iE�w��\D�2V�d\D(�����67���0�ۦ����ɝ<3fLe�Hpd��=#u�𕳇_��!;-���^�[��-�v�&�w��m}�փw8f�������<|���^��^�{�^W\s��7_{���\w޶�n�b�w�>z�7[}�7��}f�A��E��zWN�k�?W�U��Z�߽�f|�T<�œ)�-�-�4X��(m�˥?��S�jerm���񣉙0��f
��xezʥi����ˍ���z*��SHR��
Ϫ
B-�T7Tn~�8�G@�~�>xZ��0?�$p�1�u�� ��� `]a=�1�)k���KG�w��J��u��4�֜<��ܫ�o$Z!�ץ�A�s��nu=�J�{�X�s�P���`
׼X���4�$`A�X��uoii�)��2K.������}w�v����v�����@��o�ӿKJ�g�}e����5Ur ��4#��qԞ���������w4{. �F�1�l�<��1�ڷm�q7��Lmmm�M���=)�D�UE5�NZ�s]�S�DK�����Q�x�~t��(��{���	�9�(J��������|\[k4
����GZѨ4��m��5ݢ���<l�U��Y���[���lu�����2l�?���#W�#tqG"R՛����T���^4l<w����[��l�0��So,���Xz�a�2O\�ɟ^�b�՟�h�
_���{�{�F'x�f�p�F�l{��/��w��z��^��k{��������>�{x�
�ܻ�:}o�u��7�N�7^޻bў/lH>9",|�O���v
���~y�Bq�W�L�^�?S�8�\a�$�u��[���6��3���P�<�dl���Y��E[BsRD� �JP�X��gO�z�]*�m(��]�	��	�����!�r)80/*H*H54�_1�x��e��G��P���j�|�DiK�V�T��4�v�O���4=��#Vb�"	|x�u�^��v4}�嗽��];,��ʼnbk[���}�}_�5l�%c,χ�#H"�\.��FKs嵃7�h�S����7�y��G}��M
������RÇo�g�5V[�R��y��l�p9�g��:��^D~��e..".��I����r�H�  �V�T��V��a�|�b<��9Xz<�r	^ e�|6;��ը��g���-�*���Y bߖ�\DXN��V� 	�
�=ʒG96h�l~.�������r���Jy�I�4�*�?�m��X�k��m�����٣���q�o1x�÷[iQ�֣t*"�P��N>G���\�=ԩ˳V[��{h�p�Vs��+�=~��5|�Ŏ�aٕ��q�?�?|�-�~�.��Ⱦ�m3�S�r�Y{9�=w=�v��[�s�ٛ<}����w��kxɩ~t��|8�[�u-�.ܻ��-77`����}�wP-_��:��%�'��@4��A��݀0�0O&��W���G��2ф��c��3�<>�%4Ӑ�����0������x��BjZ!x�(���J+�P�Xj�hh߃�'v)uX,G�-�8?���G*,��(%�Y�g׏�"Qo���7hj�G;�ĭ�&唡���e������}�g
�7\/�T)�Ϋ�R]�n�:uΏ'͘6���zG�^/O�ں|X�
�I�pj��R�qfkښ�w4;��������B�&�l6�5E&s�Ԡ��iN����L��S	^/�X������^���<}�W\�o^#u����5���"tI��@Z���E-��}�-���S4Dܹ�<�֢��3..4[�����Ҏ���$�����Z!�*�g�`Y����V%��*E��h�-�AZ�/E) �*�0��Jw�\�I��6���~Cwc���_k����9�#�'�k�0i�����JV,�o�����+�F7�ڐ

<�OGp��Л�3��FԹ��r�4{$����ģF-"���|�
����R#r�%jh;u�u�޶�z^9~���$�"�F߂��]�a���P.�"���s<7���Ư^���o\���o]��ݱ�3�߳�kgo��G�=�m4߇{o4�[�l<�+{�������k��cە��l���;������?oݥk��?:3>�/(|�zP�@�n��gT�~@�q,��I(6OG��	��f�CLO�C��>��?�0���j�n���z0�E���
�:��s�Y��AȶΫ��T�J,�L�{�˦��(M�(ĜϠ&�2A�r
�\��,X��p��L�k3�[�>5�^��`�y7sn�"�EB�\�pn�igP�W�3>4����ǩ�<XX�,l�x��x��WS
v����I���~ن���NOl�/D��6)��6A(Ź'�8ǣ�n�W�>}z�#�H�74,���i-,;ᚌy�6N��
���������F�k
P�b��S,��ס�|�
�^q�b��\����?+{����v����hz���["���B�aX��wW�v���?���㣣��"���������~[��2a��U��ѓ�ߒ� �����1�SI{�)��O��g�#�~򃃾T7��G��"'.��/��lk�����uG�30ڇ���pc��`z�{vCss3��-����V��Ve76bR�Ta�p,nU����
gvK�ԕ��Oh��Ѭ�Ќ&MAe�� k&�d�^�4��F��VD\��#{��Te0�ty��Al��%��0��-��'?��^��C�1o�)|��4~�Ze��˴��΂�?�߷��'���_��o��Knȧ�jH9R&�Nk� �&?HuN�th[T���E	U$�R!@T��NUGNVGN.E@AH��0nEW��Dkxv��y>��ձQ刢����qmhO�i�/v�ͭ]7�R_�J��p�U�q�X�ā8Ƽ��3��>�d'UQa�Z���c�-׋M\]�|�n��$�E.]�����R?&��7h	�\��$���c�L�{s%��������q��e297�B�pc��-"hji��q�=7���#nj�&đ���#��w�O+������vR0��qf�A�m}�-7�<t��٪v%�pP8����4�����fuk����Q�EpOi��h�s��ϯ����� xu��)
��U��գq�4��ᖪ�T� �WU� ��㸉o�z���w�i�E���{��V\~o����/��a��^�ˏ��kW����2K�ry�N=��ν�՝5b�~?���Im�r�,��s4U�(W����Y�Ï�ǡ�!�q[C���[,��� ���&��AP�m,���Lf��%�N:�q��ȥi^�.���t�w�΋���Q�&nVn{�}�b��4" ��JiDЩ���v�i�@�s@��BD�e�8�&���fG��>��f�H{�j����\{G�?/�v�A�vy\�[��D��D��.�"�
�#��jy�c��Ź�ڝ�(�Ӓ�=��I�}��" 1@��l/���v�"_��v�ռD���V�"�ː��Pmq�"x\_�SP܌h�!7���pDS�&N�>��MB����a78��?��xܑ��R��O�٬�F�uj���d
PǬ�_:���R�L���:�u�����[l�.��������9�ߑw�?�h��v�]_���	�G�Ǒ%(9�\�eJU=$����A͍���	���MD�R���� �ϯ�XW��3N;w��v�~�7���|̌3ZƎ[�o?�7�]���%��0��C�{`�_�v�iq�k?�kIDATU��1����#�n�e����&h�*�$�	X�Z��m�:0;�:E�6.�G����l���l�LX'/c��Us�9p�s�"�������R���b'2�z�Ł�!�9�RtZTu�<η�T�+p���#"��������P�6"RՁ���qu:�.�t�]X�xЋuq'�������	�1�~4,y�h(��3=q��c�[���o�$a�᳜oG����Tۺ~�<"Ү
�>�Z����{���j}��ȵq�v�|\u��Ҝ+xa��M�+�I��šr�����>S��ڈ�[D�0_o���٤t��C��|�7�=v}T�p2u�E�J�~%q�
Y`�7^wݺ�$�������K��A#F�P={�����Q�G~E�s�4���81p�My4����#���F�U�wes�$"8�U%�?�n;)�U�d���,
�2<?@��О���N��˯w[x����}��>8z�7�ڹ�{?G�F|�u_��ڞ�t�9Ϭ���K��?Uxě�D-%45�"��E��[�@�'�P�+#�(�
}#�@�A��bNX�v�p"R=juƓ�j���(�9-U��>���3#m�Q��U
Do�=�&g}��3�6�ځ�F8
�2�c�+FD�=&X��W(�L�3�*qc!²*�x����g)��0�v���'C�:Y;�+��+�K���T�D�C��ʪmmCJ�e����GՖ�׀a�`;����ˍ��wm�)/��L��߸<�.nYװn��qw��N�SςWH�AJ�92���H)sa����\���}q�H���ax��(M睒x-E4��Y�A9\�AЊ�V`�3lؠ������X�$��+n �K"@@$�$�G}���
3?�	��ɉ�����E�tx^u�|�i�����=��c��aW��U
�]�w1��h��n6�t�]�z㭝��ܕ��x��#���@*�j�=z�!���!�H��eXr�q�Dg�Z�������iɡ��5v�(����^X����b�b3i���ո�cˀ�І��|�o0m�s^9���ܫ.x��
l2��;C�>��䘆�4괥3
=���J�p��_u("��y�*�Y�,dμ�J�]ן3�.�*oM�vJ����e��ZJ���Y�U�����hUVק��5�\��\�;
\��\Y�r�������ˑ+w�5��r�Y��H5�2E�$S�qiS���Z�p"�g�s�o����G����u�Ȑcp�DUy�<M S5a�%PspN�]�U¬G�\;ȁ�#�����=xA�(6�݃g���*�W���<r��~_�܈%U��h-$mϾ�N��$1���|���:ϊ��G<��7"n�n#ꥡ�^����=w�e/VR�Ӏ����%�度'�|r†�l2�g�^�}�q�^{���鱵za�{7:��Fh�D�z�%�s��:��P�h�&W���$�Z y�������N�y�G��p���.��2�6��7i��uz�۶�L9�X���o�O�-���¨מ-�����S�|�I�M�[i}��w_9��}v�z�}w��7�vʼ�މY~�Gv{it�^��,�y�m���f���B��Q'1���-�Q�*�Re�lM�,K ub?+���#�HG��!�ێ�u\�QG�՟���L�et"
%�@��%%�Tx��� ���"�T�c�����>4�p��D�,�8^.�����"a{TC���G"��GDf��<�ϑ��H�����޿��HD(�����S� ���	�OP�ɷ�Gf�ќWE��ѓv�j����`lv��˱��H\9�!0	�NB}t&@�C{Gn\��6����Ru�x�`l�v>^mRx���s�����X��D�����
RSF��~���U�[WWPw9��s}F<}k/i��H{b�O3[�s��	��';���r��
+�z��7�ع^W���.��W�.dРA����8��#���:��z��k�:�C�{w��Mͯf2�)A�զ�G.!"���_H���j&m)�֖^y��O?���z衯U��3�8e�G}��G�g��=���^t;��l�f����*�U
^>��M�T�����͘�O�J+-��b�u�9w^~�ŏ���+�=�����S'���J�{���t�[����.[i+jX q?�Lb!��Q�h���pV[���HQ�Dž�ҎT@�E���m5V3g�����rD�����;Jl���"���I6���F@�=-R�?%9D��x��맳�.��D�۲
\�k�B��E��>D�Ӯ̑k�B���å1��Qp�D�;��1=�.��8Y]��;riG.�A��;�0S��!��HD��A���^��lZ�
�(�hռ���\=���c\")=��a;9h4�p�e}!��;3qa��\�)�o�~M���~�^�z9���!_�'�KU���=&�6�$�03FrhA�'�T�l.�u�:�Э�@D:���J��\�>P����R��;��Kv��9u�Oh���D?]}�4�ꪫ������^��u��|�ŧ�|��7������f�_~���}<jԋ�_�����~���n����׭k��΃������{����lq�҈$�ڃ3Fij��
���1&o~�-|�9C�ʭ8�G;�9*��O��7`���:�f���O>~؋/����?��]���W�M���"�IKV�G��"76�:G�bUjf@$b�Q0�ɖ���_d��V_㪝������]w�z�9;��6����O���-^~�t��.JЍ��`JL���!�r%�'$�%�p���;�8rq�[D\P���rg`RV�jA��jW�鲃���UD���Jy�����0�s~�*�B��1l�6����;�3�0�X�T7�f�S�ӥE�e3�N�l�P��d� ��An����'"պ���]��<�=�H�˅���)�+w����;�r��VpT�*0�I�6x|mx��*�U�E���SQ�X��yJͲ(��@�"����&)wDC�4���`$�\'�BN6!��H�)��{3�5A�;�wFe���D9*���^ާo]F�a�������lm�l��$m�ԓ
b���� S]_n=x���Q�l��0���m�}ts�����ȥg���+o'A�5���+�_7��t��瞻�o���/j@���7t��7�}�}���<��3������sם/^�5�\|х�o�٦��4ݲq��y--a�T�T*���=o�7X���/��/?���{��g�}r�UVY�75F3��N�3�<ӲΆu�=���Zhq_b��[�P.���5�@��H��kmܗ��w_vwl�W���!
�3���f��įMo}�O>�𢣎<��A�
؜,��d�B��0��Eó���ޕ6>�D,h�a���a!��5��kSnkW���]o���y�}���c���r����1q��O%��𲶮�b^$s�C6����ڳ�O
��qzp�WD�)�Y�VG."U]i�E]�l/�/�p4�̑��HDf��*�Ys�	�?Q��ԡ�Y�H�a�!�5�Rg���n��d� �MD�dp$"��\��?Q���+� �����9d��+"�����ںБ�����H0�H��[o)��!J\��_9�!DB+
��V*�T)"1��g��~!)x�P`b�)N�@�N1�>(~z�� �|M>�J�5��*Ⱥ�[�)�|N�@(
��1���L��.0ϭgWǑ� NL�z�lG�G�s�FM�p��r<չ�)���Y�1e��~�����f=GylVDmh�֡+d��)r�w�5��Td����م0��SL��nP��.��:h��nj����7�콵�\���Yx�|6\�R,�kB�SG���@�+�4�Bkxg]F�\R&M�o�W]i�C�_o�W���w�ݛ��`�G����A]p��w]����i��>BL����LIDAT:�Ȇ��Z
VR-��v���3"����?����n�~�i�}�>;^p�yO0���5N�!�"�� �!���S����U%!�{teB�͓2�2����T�5(%
gYJ��"믻������s�z�^�_?f�A7^s����b��7�Mg�-�t�
�QS[G�T�i�����BKk��q+���a�ZD��0�q:�j��8�د?\����@D���TI)s<�5y"�a]�1�RW�ED*¤tz]=G"�Q��\�/����wq���β��+�RG�j�"�>>͵��r횙�E\���G
�}�܈$ܔ��$q�R�
g<�8�S\GU����oH����Q{UA*e������j��wk���T)7Q��*'�3���)�Q��^sf���X�yz��;7�a���ꎲ*��Lj�:�+�h�,�r�"k�xtz�Y�#i�ޓ�O���~��x�1��d��f�8��?�����<444Tץc�H{�h�u�ᨚ����#�ቝH{{h�Vs���?�Pn�����h@�a$�
��O�>���c���y���G�qw��m�4�=����u��=]��%�$D;cL�쾤����E�x������O�Dn���7�����<�Wޙ��������ڂ3�"ΰZ����"�р��&"�r'��Dx�V|��5jT�NϰW���^s�^����MA�i�2d8F-
1��I#8���h��=�.y������O���q��
['��"p�JT��h�����;�:���סA
0�s�km����[�L�����rZ\W�Z�ł
����л3p<kjj���nlܸEΠ:݀OG��Ǒ�ő�sG���/�qe��tg8��<Q�N����u�=g��1f9�<���JUN'��׵W� �9l�+t<�99:�D�ʣ#�BWυ�D��uR��C�=OD�mE�/��4f>���ˑ��̮N�.��EZ�(sHo5���g|��R�"�k*1����ݟN�;ep�X�
��p:�I�39n*<��Dy����!2�Z(?��<��0�(Gm��R�k���8�n�t*�������<q��S��Am�7��5�3�b� �E���E?n�����D����g�4*�+5��H9'�R
N7�G����gZi���Z��
,���ډHU��+Z������뢎v�N���_l뭷X�j�U���/��\�]=��h����y۵[m��C�,4dxCmM�&BB��4�	�J	i\A@c�lW��Ї#��
!�y,�z�Έ�a@�3ǕK-��vW]y����Æ
sl�Dcƌ�y�qW����Q[[k@�/�3��9c�v��}�]�+s��Bz�L֒�m�~�g�^m��o��λ����!���D	,=�R�H,J)g
'�R����g��л� �v���ig��,yQ>� <�T�r%�!��eYN{���q���8q���;�.=o��1�<:�͎~v�#��FO��x�<K���JbU�R�#�s�)�\"T���������AG�BG茳��ٙ�33��:rI�6.8];�}n�NO>?���q���V���\�L���Uu<l�V������J��ƈ�3_��s9�t�����%P89u�;B��z3�����'"Yռ���b>I4DyP�N�s�c�8N�]H8����k F>𡭩R��ay\��+���8��*�r�1Or�����=ļ�)�"^�V,Z���a
��^йn�L2��[�����-6�v��Ǡ�2��F~�5+t_���&�>�����ʄC.���/�띯�Ͷ�=:fͫ���_�ȗ�Y�w=�;�@g�*I{��/n�qS��Q�&I���"�M|�"�x�{� U��]�҄�DA9ń��x������iY���bQL���SL�$��&	*�  J2J�D��q�K߯�����H?����������,F#�À)gƞ�Tv��mb�
�a��=�|t?�5�n)�h���6A����wG@��k�*@��]���Q#ƞx�=��d���|�	gYp��ę3�����bQ�¢+W��X��-�4b�:RX�Rdh:,���]'9�:1��&G}�n;��#�g^W_{����ox(;�P�8.
����x�8^����-*�4�����;?@׺ �p�6m����sO��垆�'�q2�π��u"�$'J˔�VC���d����'808x������P��c�s!�4y����x
�a#�aѶ)�NZ~�O8���V|����6�� Î��Չշ=�pXϾ�Z�\\���܇����M�'8R��H	��`"�!	�ZU�I��ًLJ�jKp��ڶHe@�1�U�f�X��=+kF^۵t���������!"��<���n6^��O̺�A�?���JEWĜ�e��x�B;�τE_��L�,�mv$M0�aX��u`*<-øD����a�;���!ۏY5)���&רMZvʩw$EkN�v��떆j6���i�{7Z���%t��5e9/[�����sG}��x��5<h�J����*�b��D�g��Y/K���+��ֱǝwݨ�.�n�ٽnֶW߇λ��Ǯ�jȼ{n{�G��j��mx�߿=�hM��i+�1��w����dȱ�5*ʶRq�V��ʪ�D0Aߒw���^2k}&O��W���J!l�'�e�və�x�2�R(�Ȝ����m�ɯY�[�F�B��/��o���/���S|�)'��9��Q����[י<��<,��!
g퓓��N�(dZ$�L&n&M�s%ߥp�"�����.
S'��w���Guԭ�=��f͚E��Ÿq�\ٷ߃���Ȕa��D}��������p(,>5k�DI�ԓO��љ<��?vBV4z\$��2�t�dǯ��kuW�h-�)�@{�B�B9X�L��$���<�g"��pbN�Z�|�w�#I��;�,x #��{��dMv��Py��Rv��C���5�����n�-�N�~<�i.<��||]���c���k�k3>'�~�,��(eS%�eY�����Ĥ�$��bhj8&JBU��e�Gfޖ���dbOH���!ͬ�t�Ň��咇v�@K�5h2o�#yD����P�.�:R���I�B��HX�9�W�B�˼]&q�3s0�2�J��`&db�(r�t>�
(Ob>8ؤ���0�
��'6B���_H�р�Q��Op�ڍ7�=��5�����'N��OE��"r؍���-Zc^��䯯~�Y��G=�}z^�;^�᠎cZ��oF�9�um7�Ӟm~ҧ�����~x�^��w��E�/���~�n��3?�m�+��������\N?^J�g}EeE�w��p��ǧx�$��g������u<b2����K9�5�����U��2�ȭ[���K�\Hdb�L�'��q��v�&�&��1o�J��	?iM)T7�#�������__}ߠAc�e�e���)+-%Y�,���LP�@��:p�bN�E&i���)a۶����FI7,��� v4+��J$�)���$��)�W�kG}x��Ç������^[��믯���#���7�X\mأ�iɄDŽ&f,6�_II1E"a��Ͼ��KG.[����>���P����:�q��<��6-8B]���h�H>�Ĥ��i�GY^��"��*�װس�c"��4��'�Wbςб1H&l�U��;�Ӭ�+��;��>8�Y��k�O<s7������'z�0����N^��4��s�V=\�O:&��t�5��,�����u��;���b<_"ܦdҤ�3䐠���l�2z¹,��^��$.c�˜N(SCc-� ��[.'	!,��4���!�Hʔ��EW�L��c�i����䱅5��yZ9Zv@)-��l=�l����N���F�h�
/�A�m��5\��4a6���x}�S�����*��t������OV$/�d��sڢͭ?Z�9ky⸷�=�k3<�HIDAT^8�ݥÎoy��t�ꉮ�x��q=�:��K��_�u�e�S�i������|�h�ҧf}U��	`���S'�۟zH�7��}�uN"�b�813�8t�Bn)8�Hv-��Hq՚80�~��ufƆ:A�kץ��xU��̼C|w)WHƂ��'Y8�4h`�.����`&������q�?�h��~��-� qly���9�t;�Lf&�'"M�㽟G>k�L&R��X���"�#d�'q]�I6b����w�"S�tk��M�����g�[U��{����&�W�}28*��2a[�"��'%N:d�A;�D<�V�}��o���D���L���N�{}f8�H6>ܝa��.��`�!McT�'�'�`�SU�}&=M'v
���}�48O��4_#��QO�S��4�آ�Sz��(S*Uɫ�u�������*��Ϝ5�¦�Y>���xs�K��T�o䲕KIG'��ɳ
�\�\�>$�8���y��FM2Xdž�I�Lx�3ƃ�2�#�iD�n����@���r�~=[�);/7���4��(#/f&��#׏�c3$�9��O9�Ma����OÆ���d�j[��J��|]P"壽��a"3���`�����h\u�oJ�z�$���M��,�k6}������_o�y���K���y=3�ۭ�>�<p�w=�y��ǾWx��s/8w�'}��7��]���/]��ʑ=\�%��օwϞ~���z��3V��m���UN���Rl>�
<��]>��N�ݗ��>��y��.x���F�|�=/��7���Ȉ~7}m�y/v?��sN٦FQ�ǶN�l�Pk=d�'�Dzv
��hE���Ï��:묆����D�(�<�4�'6�O�[Ƿ�}���f�}_.���
�u��I�:(/���q��mX&ƊG�e!��w]�)��k��_Ӏ�?���A@�u�(+{��m��r�={>�ة�
��斉'R�B�3s�vN���N�I��8�H��Y,��k���[�IZ��GrK�.)���~N����-����,H��̨+���L�JD�N⛃4���3ok+s:LU��� ���IHCv&y$M83SP�����cab2C%R8���QJ�ޣ�M+V��]��	M^����ȏ^��GΝ���,���_��ٿ8�V#Jq���m���}=l���'��G���#���M��!
����)	D�}�)8t�4O�(OQ$�Gz(�Hᶆ��"Eq�l/�ޱ(�͏M9đz����ɂ�8��j7&7|y�
��i���1;����A�x9�?�?��d��_��G-�zxuI���d���7ހ�K��N�t��S>����+[N�`�?�����M���1Ӿ8�W=��s9��'�����9������7~��o>�^�;o~�=q~���g��PT�n����,��}�~Y]�j��36��Ñ'�ns�i��U��+;��Gz��bʝ=��|˵��v�ݟ��t�±���'~��E|5�ҹ+�^���i����K�<sC�u���{��N'��vΑw�}|ݛN94t�q�Wy[?�y�g�e+��,l����"�I�1Ge���l�"Ḵ�"��xU4f̘~��vvv��{g�a�������2�8r�#�Hp#f��1(2f�妏�I�48w�K���9۶w��������>T��.��o��d<��0��t�4U�{f���9�t]��sN�RM���kh��fM��$S.� %� Ȥ�_��:TFƼ{�4f��K�!f�%����p�.$�1�hKҥ
���4,��xv�~u�^ۧO�&�|{��-�ԵÿXr�����w{>��:��j�n�
ת�o�HQYi�B��wG˞�NbR/Ia�E��4�)�����k�X�i���nH��fNN]*O�~ʋ�����ϑھ��������;�ϭ����3V���wX�5u��I"Ҵ�"|��-��Տ6�z�/���Y��<^���aS;^�ؔ���н`��>�_�̿��_���AW_�ȵ�V��n�Woyf��7=�d����w˨�K���i�jJ,'J.NE8k���m�
Bh@�o�{�G�:��C�nR��G�}���Or����wy��;��y��^y⮂W�;뵇ol��S�t}�+N��GӸ���gjxK�����������{}�*��Pr�z�ʦ\��`*_~um.�&�J��t{�a�6�Z�V'�q��`J��*g7Y���ipޖi��J"n�4>>EVV��;��z�)���v�y-�Y�Y��	�C�\�q���?��fc��!Ͱ����|�p�䓎�&e$E �G��Ў�eb:�8~���ϾS9�}���sK�}� �yyy�.�'�Gk�ҙ����$2��_Dr�]yش�k��\��}Z���1XXا$
SE��d7�HĂ:H8�S��UÙt�y��L���T5�j8H��b��h���2f�;1�(O�prM���L~���h���D��t�����?�Ο}��k��[x���[�f�>�쬈��-T:��Ui�h����5.Z\�mC���ZG/ɯ}H
��X)�O�G,�>R����mk+��,�v���v�"T~yF]gk<2���[�A|ު����;?���Ʃ��f�u��Y��Ŕ�ߟ<���N��C&LYV�/m�_��A
����㺎8���!=��p�5'w}��/x���N|����?�}2uAr��9�[d�RY�o�:ujb�lD��[|h��<�w��μ�S�s��yb��{[�r��-y��뿞v�}��v�+_Y0�۴��\>{�{�|����V��q���?�$��l���=Z5��߇=|�I��w�֧��}�Ć�m�/+�?{�gG���_���Oj��[�o��Ll�R�+�s�Yˆ��B�f��Ŕ��!���b2����J)KOR���N�8�Cdǩt�zJƊI����
��S���1N�!���24r�i�
�f�H��ݸu˪�A�5kV���㧝��=G���J��'4��]ޟ^�XII�"��O���</�i����'z)[洮�dY�%�?B^�&�_�^�/�y�ujعs��{�����/<�G���y�:���T3Z5�W�#�W^y魺ƭM��b�
�4��y������9��́��w�Ÿ񕗃w��C);AYYڴic�cA�^'5mZ�I�7n�麫��ɤ
G(
��z��=(sw�0�$qN�!�3oב��TU7���A��_F&�9-g��E�c�E�'�!!�c�:��w57�v�w�5�w�{�m��&�6�r�	~�n�?ve�����Vd��;g��_7��o/{�˗��i�-���m���'*��1��a���μc[X�i
2��<�0w8�=�Rі���uM���{v���]~]^>b��>����O~�r�'?�r��y_��g_\6d��+��o+���"4y�܌Ȕ�%�	�r E��OѦ�QV�s���z��'�~}ӾO�~½o=|��IC����~�Ǐ��������܃]^y�s_���S^���1w\s���r݅�g�o0K?�0���S>�:�,�┬�eGgW�h�|��oZbEk)�u5%Kב�H>���U��$��Xl�†C8Fc����5�e��:I���~
ۡ��QD/�p��)�9bÎAN£T�!�&H,ҍy�F+���C�C������{o�<��5�x
6}�KI��sk���A��<�v���eW�ҹ{�kz��U0l؈��[����D��r�A������Nd����I�ݍ�X�Zp҉'>6d���ڋ�>5�Q�ǍxlȫO��������c��{�=���~Y�� ���?���
�T�?s]�����g��C�uMv¡P�d2��ff&�)��̙�6�́~F P��,�'IN��wy��]{v����i�ߙ���ͯ/���A���m��d2N�^p�PVVB���e2���Ȑ�E���$THz���dN����]�9��Y���l��Jy,N��O-כIDAT�N4*�Zl�n��އ�GN۬-*.�lޜ�C	m�ʏk�o_~Y���ӗO_=�����?/��S�8"��/�?���{?����G-)��|W%f&ѐIU� ��j:��E����(��o��ԉ�K�7�ۧ�_�\����u��/>���K�=oY�헭x���L����^���'_�³�������z��|�_��;/����z��s���;�}���<���4��ò��P�A[�.��3����c6.�հ�ۏk�6,�Om�,�����f1��d��Q��)Ǩ�Za�ij+���p�I��9G4���kNX��&
���Ru��'cêQ6N�&���B!����{��مq�c���}7EN*F�T٩�&�#3��So("�I�1"�g���P��p�pڄtO7����a��!"
7c�.�e�z[���A�G��g��w��#��j��O�c��'�f���o{��G�8�'s�{v�h�F̼[ґ�����D,�<1�5+�(;���Q�x������>���^y��˿^3��IO>��۷?V�P��"���攵]!ЬY3��E�����L$��81�l'Pg�>iA��v93WJ�L�\:��{g�y�knE"bf��	�L�09&��?d�-��Ӷnޒgj:�q'��[$daa��|�|��]5,���2o�"��e�Ȫ3W�bс��D�D��$,�I���ąg���L2U�VPV$���Q2��+J(/�Z��ɉ%k�"�g�N���Y�n���l=EY^���ƼԆ���O��ѡ���ol�ވk�-ĉ�v�:�-�n'�����lk�,��-��ά�$c��9����@��:8��s�Ɣ�p��P-�k���9��ۿS�z������n�nnv�cW�ҋ�}��A{���g�o�^���Ƀ�8���}Ny���N~�.M���ݡ�s_<*_��h�[��zi�����--jk���_�,�~񑡊����55�-�d��kt�d-� 3UJ�(���+�0�O�iQ6�#v������"�\�3���1�(+��Kd��H���Ӳ�׳)�T�"�]��!���#�L��p8��tʅ��c
�8I�
-�t#D����C.�üqA���E�U��|"%�8�R��Gf�"����b`�6�q�nF`/"
i�FD�8���.a��(�pI�e���5R�<5q�~�ǽ����_um�;z��Q��ڵ�Ǔ��)\�i�o�V�'
���\�>�c��ώ�>Z�WN*A����
a�@��SyY)E�!�F8�$�v"q�=��쓣��\���M�f�҆�����2|�,���cy�>itP?�uu�Љ��#�93�`���tf�A���L2f�w��sd�d���j��뺔¦#'���IBNN�-�q:�q�.��C��z2���afaI[$���1�yU��E�*ed?�%M(�O�BL:Y:,汊N^.egG)�)��:��ޗ��z�1��n�<���F��+��������W;�#���o�|�Z��S
[�u���~��󗍿����wթ}��pp���ԑ�#fHnAD��'@���+�"��$���k���_��O=�n'���'�uѩ�w�I��>��u+f�u�+�o؈�O��܍/>>��[�^���>~����~���7���ۯh���?|xN�:Ov;����hR����yzӼӛ�O���:�ٴ�����_�l�g����Q.��
ٛ�,*a�݂jOy�MF��LP~ا�� �ti�2�6�8Eq唄75�|/I��������C'L��+kxgrS6z�q���D�L#8F�4��6��Ny.YxŤa>���x��@^�-�25�|��j�ߙ�L��	~�����ھn&���&n�QzR�Ʉ����}����F}�pC ���.�X2�G��Qyl2R�3�K=-�X3��Xĵ���%�Wx>�l��#�>�>�_s�s�>w��_}�!ƛ��,M�Q�'K��
�I�m����F��Br`�u���.���b1�Z�e�=c�;/����"���
H�
f���!p��F�:����˱$����l�����
g��B&F�26������3:bK�"�����Y�6b��0��_H����$��͸�ѡÓH��6!b[�3�	*\�K>!�!�"�������s�>�,��˜���/f&Ibޞ���3'<����#:[��iN�Hc&i�OX�p�%r���}�1A�ʯ��[6�r�~�Q�
�EXIJ9.��NZ�6R%�r��o�G�o��I}~��]}r��ޜ<�G{5�����Js�kL>yA�E(�BEM��ĹҩWT�Y-�8��7����C��Χ�!��~���ڞ3��6��co<x��ϵ~մ^s]��;/9��;.;a�.9i�
�:�O�&���л?T����O��%��*_ܮ����m>6�]sp(���^����̋o�*�ܺ<�Nn^��z��[
/YB&%��d�MY�A�_diN��g�k���&d�D��
"�$
:N*I��S(l�84!�\`�$]C)8y�1��q}�9����y��A�a����%��)eWk)b�Ʃ��Ȁ%l�u��=�e�pk摡�ԝQW�swӄ
�����r�%���K�:	%=���pO7��<�]�\\��RqҰY4��$�	g���RƍF6#,�W;�\��f׍Q�.G�}�p��WCPI����g̘1[������zwްi��HdS�zb�4�	��]�|�I��e��<gf�}�i��$
�&6"�^�Q!��!��Io�����59��p�mo�w����
��>��=𗖳���<�,��1���$���A/�V���&��� 1s �L� R�ŜN��RF�����Ș9�3s �/�gH�U�y�^F.����\Ҥ�%������"�Qbޮ#6�2�9hWU��1��\Hd;3o���1���(�X�K���Ŵ��r��j.�!-t衇H��ߓ�Sr��ϭ�ȶa�D.?ׄS��<b��������o5{�����G7i���}K���_z�
ikۿ�X�&9�I�l�<l��H�K�k���#�qt�7^y���#���S3�|x��O�o�_Ѯ<��H��O��_��b��&%��mX�~a��s⛖����F�^�!{���9�n����B�\oo��_N��+Ƞ
29�+�$�"�ۀs%�w&Vp����>�m��L=�yX�=8MNMd��� j��1�.r��i:��x7䡴L�Τ!�_P3�<�\{{^�1�P&�:\7(�%F�t�Y(�@n2a�'sR�1AS6N$2xc���|�Y'�G:����ȁ��n���@&��.yp�b[��y�I;O���a��&���d��FE��];�	s=���YT�SY��h�R-D��_��,Y��a��ϼw��Ht~���\��n���b�Ў0N��L�?�]�Kڻ��Y���C7>�+/}o԰a�v�Q�=C@�3u���踮=!W&�����ʸ�31�-�$��̼ͬ|!���E���Y���2I��^U��U��i�S}ɳ+;B�J�92�t��yu�)��f�aNs����V%q&���Dr�e8x
�G>���dx��^5�\��^��Y�KL#�t��ǩ�wt"8t-�b�)+�;�l��=�aF�8�Fl��hͬX-���=��`��Iff5JSP/µ��ӛ��hF��T�:�l]m`�\��R��ɮ�L��/�$)�+]_VgT1	'������$
Wٌ�u�48:�iJ�O���1�AB�f��b�E)MH#�	2�>��yd����k�J�q�q� ��.9���	p��<�}Ɔ���|��&�QO
���W�|2u�4�!
�P��M&�և�G!���zU��&��k�
�퓃���t3D�ai98�2���Cft��=a��S��L�Gdz�͏F�zA�„�PD�IN�s��šF9p�Q�a��I~K�����+��ӫ=e�f�
e����QJk-+ߏ{��
S�=���A����+�(O�^Y9�
��Z��
�S��i�p�a��Au�IDATT�camy���$�c��Sq��C�?��Æ=��R�_����US�?�٫���~A��`���L#��(�2���֒�+�0�E.�d���3W�n3���'���!��\�<Uu��d�3o/St2D?�03&6o��9��2f�FF�*��^U.anJ�x	ND��˔����D���¹�T�,4��|���̍�m�>�۹����YT�gS���3��Ө�z�a�8g��OQ�$β�u7I?xД@�!�Xș�zP�G��3�C��5?A��s��!��D	�����1�&Sĸ6�,�@_��D�M�����Gd�$��+Ipq� �1|)�#4EA���!���:
�@�3C�	Z�z2pjB�L�k��Dh3L����P�|�u�ulb�|��b8O�7I���G>DIn��H���	O��p�����]��6�ր���`M���%�WH62@�'E�d�� �6��.��U��jJUa�
��5�Hci�I	���&;���'���CVV
Ңy�YYd�=	�+l��S!*K�(�5hK*J~�r�������ϟ�J�m�y��kn���e�ߞ�|�Z�p��q�L�'u�33K��(�K�@���́>3�r���5����ׅ/�v����#�}��qV���ܹ�yp�u��KH��蛦N�.��-�,4��μ}�3��o���6�n�;櫪�+i�+iU�]���|B���.��g���6f޶8T�*�f��<ff"

;pF��|�t2��X'�	�����{�A���dul�9�V��_��5�"t�Q�k4Yl�8xY"��ۄYg��U��5;�f�/�Py7i����C������;�u��{D�,��Ll06
	�rB�Dep�Q�O��W�-8��Z�G��@^��4��4l<� �wqJ��'� ��ipRl�_I���ג1ǡ�R>H�F:�'~�t�»�p@�!�	�.܋��FQ��a`&_�R��)�Q� B���I����70^
��$a��)	�tmr4�lfJ�$ȆYi�k�$7���[p�LnQl��<���b���ub��ݺf���:Ya�̰FF�Iި���j!�	�\b�"MG�ȇ�nf�n��|�sܼ�8��)ۏ&\+�b�c�l�Û����Zk(���:M�����Z����<�(a6eS�ބ5��c�\m������K�����;�L{�#"]7)77�dݲm�
?=�J2f=���ϐ���2p�N�ajX�r�a�vN1t�iHR�_�����Y~�z8Pk��c�rʎDI�B��]�\ŕ��`˒��33��igNǙӜ�ȄB0�H8C"`fa�$ѫ���k]f���J�edU����.r�t~�4Y&M�;S�4��yD/���
YFv�bN��$ޖo缬�p�p\�P�N�pJ"8f�Bf�,֣�X����?3z��W;�=��6��x����5�o��V�GNnw�cowz`��=�>�ޅ-�߽E;0f�;�*̺�9�QN���w>�&֙9���� ļ]�p�)�������Q(+
'Bn��9S3�`��@�dZ�Hb��q�X����%��Cڮ;����$|C
��CF�ö�1$lh�	AVtd��}rP_�`Q��dq���wQ��D �?�n.���#3s#��A�af�	����|�`HHC�Y#��O���C=�$�X�lBSpۭ��9����%U
S�Q�6�,�Qi���6)�(ɹ�|�iu)ڟܬ��9!-�9���NI�mr�ҺX��bn0c���O���>5������a�����で�w{��:�3jJ���z���S���Ĥs�����7�����k�ς�v�)_���g͚5�'�z�Ʒ&Mz)���L�X,�Y�Ү*Ru�1�T��˫;�����'��]���y`РA-~�Q	~̤��Q
�����F��ׯ+�X�X�0X}�ɲ,���`33o+��`g�.g����	3s`G�Bb��������*1��E摆�L'�B"�J"�JUӪ3�̻4��A{wNd�E;�U�B¾��a5!y����1�p8X��zG�w0���J��|�������^^�����|7�oV=>��O��y�S*��J�+m��y��{<��}�.���p�1��Mt��?��tMc��Q_�T���"$cH83)A�qe,W�"�ʎ`l��l&�I�\��bed�)�_l;�K>N�>��e�뚸���X8=W!�"G~\H�:N�:�����8Ƴg��ā3y�N�T' Ws�7<r�$[OP�H�m����)b�Ȅ��p�,�!.��L�J�]㥉}`�K�6��EE ��Ml�
�E�|�}����	�'�H���(��E��pOφ�y\�:�iDײ]m�rߨ��7�oHR��S\g���[AV�%fn�Eٵ�|���q3��<e�{и�ɆO-.�?�yw-ӯ��y���*�>�Q�V뫟�?��+����k�m٫��g^����[��}o�����eo}�t�ȉ��G�V�шW+>{������d�}��<6y�6~�?�ƍ�rKA��V�X5Uơ�6�&'v�2�������Ü�33y�	���q�ĩc��X�I��~��^ӢY�f��*�h?��~;i��l�g��h(��e�FCa�R\�����qa� �Sn�dPK�p��xU�4�g8�v�]�Dw��A,L��\�!�o��L��a�M�/eW%�|DV܁U�3�6;�$i�,��$�|��*I3v�w�&�ї0sZG�U�V(N��i�~��:���]��J�:s�O?���;Gw�wȓ��Gp;�
����$?�r<�[=�k�d�L����4���2�&���$ɴ�4CC���a�J�&�C9d@fV�AZ�⤭��ْ��)f8�q3n1��c2��<�~>|.��������	��%1��dL�Nd���iR�� X3B����9>�tr� 餇��Ma��(%Aq'J1P��Gq�'�Hz�!d�N�ZG{Yu�j��b<���<eu"t��D�1S*�#�Z������!OO�>��	��1����&u��::��=�N�x�Cov����g�[�/~�V'�(<�۰�gtzU�ޣv���Ǻ���7����q[毤��[�D���~���D�!���fE�5(��x3���9�,���$	�,l�$�H�u�񛗓E�I04�T"�);q&�w�WW��@@��t���}> �H�13i�2���$D����`���=Y�@��?v������Ĝ&D	��q��>�<L'��~:mW\���:1t�sH���[B��C�����/X�Q)fF��P?Ht2$��$��P���A�a)X�Q/�K�Ȥ…D&�>;ۯ��M83�\�S��R,�8��^NuA�r=����������J'���)����&~��1�A��T��q�8'8.r��%��qj�PE�<M��푯c!%�-���޽�NL�i
���W��H��
�|M�<
aSih�	��O�tmCY���$!�Ӈ36LXֈ��l�ða��(�Ivm\�[&{��ob$�m{85�L�+�;RW4��(���M�|�5��'<�� ��gD)�EH���9\�1�u~�v����6�n���X��j�(�W���O�0���w�
�o�כ��|��x��E�ۦ/r{O�U���ˏ{`��Y�}��8k�1��?޲Q�a�y�]W�����'}79�ѩ��?�N�'�;��|�^8���%����:a���^\^*}�V�3�O<���G���b�tJᕅ�/�wpH�A��Ha2b���cm�uF���c���a��Ɉ���{�
F��'w�/�?�3���b��B�D��䄳j��Q�	ν�2a���4<bfҰH
1���X+�.X�uұ���Či��ȉ4bfPZ�a1M�3��2�F�031�+)-����2�
�I-$"�B�
�,C�#$v�e��ɨWZG#fF]w�/#�9���C�xҶ�	̢��H�w&]��p�!+;�IDAT(��!��l��u�?����3A�Q�F��<���X8ɇ 3A�����ft_��0B��'�� �a
�ܶ}�g����a ���t��ه\6)ǘ�fgQiy	�B&l9TQQN>�H8L��)��Fea�a�#�4�K�Ŧ�t�<�	��l԰,���MZv��q��
eQ9��c~'��;aJr�*I�AQµ����Q��9�3j�z���F�R�9%�ݠY��}�z'��U����̃�m��ߓ~ՠ�:
>�C�A�t�ϫ<�z�[z��և��|�s�o�������*<�Ϙ��|���7�����g�:�f_x�Ӌ>S�@��J�|p��	��4��֏�0(Y�I����?�c�i�c�5�'Ƙ`f�EFĕq�2m�!g;rJw�1�~�W�#�tFR��A@�9JJg�p��Hv���z0`Y7iᴮ�鐉e��BYI�yǸ�v&�qb�j��c!փ�'�i��[i?�EG�#�L��q��UzF.�vN���3z�P&M�ɤ�lW��{U.z[;sI�ج�&r��*.$�D�!I�5
]Ô��2�G��-Z�<���z�E]�;ﹳ˖-�N�*��Z�uY��ly���Io�����죲��!���;�[�n��ٳ�0���9��%��Ke�[m2#�Q�ʦƊ�HRκvV>�Iṿ�p>�8�"�C�"'�!-b��F(�S����C�)��'�Ki+�Sʉ��ٔtb�X�TYT\�p�֘�v��Xl�S	\g��!��2(�9��L��l���kեR+��Z�~��eV�M^���ʬ:�6Sͯ�уq�#?��?�(�ѩSj|��z����m0��5�G^�U1�9�>c�oi��[k�=<ve���U�_���׈��*x��Z?YxD��okx��ML�����g>����҇�����fӢ��RK���X�L���)Z]��(�*� �9���z��1�<�'/X�2k���GH�iIX(��E��#� 78I�%�Q2�^S���c���[om�K*����ՆWw�/��B��"����H�5U�K
N��P�&ܚ�3�I!��&��K�Ď�[iN�DH��p��d�@.l��r<�.e�p��!�ą{;�E��.q��\�f�����p[����/ry�U��ą{��U�w��4�`A{����ӄ0��Ǐ�m�u�]w;v�����Ç�q٥���X�e���[�m�
=����q�m�0`�#�<�ȑ#' ��M�4ɦ�<���߀��l��ެ�h\����I,v�&�%�(�(���
ڤ�*�]��kry_
����d2=�\�3��(��O%�6섉�\�8���#Wϣ��G�C�m�Щ����~�����=��=௩h��b��������s�����0���}C�W׼���.|��+oz�ō��mu�m/��	��Mw�ھ���\}��NW�2��巏�~����9�^k;��V��rm�o���qO^}�[Ӯ4�O(8���@��^�0�d"�v"�Ǹ��#Js��V���QW��H�'�CQ�k
KN��w1�C��t�,U�n��ƍ����+�$��z�u�,))��--)/+.��m*������'���"�_,�X-��WB�
����,��_��ɥ�drI<�\�2�L}�<��	��)�Yh;�'�낼�]�N�#��>�H������������$�l_�}�>Ą�ɚ.�C&}�bf�83�3�+I���և���6=ւ|�7g���k:�1f�����;|&Ö�<�'��4Ü)����Q�ôf�l�3X3g�Q$\Ӎ�t���J
䨇�#M�:3`Wm0�@�"����f��z�i�5�0���36l��㏯p=wynN�$�0��W��YY9/1���xK��I��GީY�����a���#���w�с~�)ZL�����8�B�Z�]�O�OIN����J;In4I~�O��M�gy�pʨ<���W�z� �2)�����9�1"�S�U'�W�qE~�#J�v�~�D͕1���b�c���jp��C�x�8�g�
��;x��o{��e׌z}u�!�.=��G�t�s�m��	ͺ���3/�z�)�=Ԣ׸�OO��}D�^~��1��9�>�����1�V�6��WT��[�m,�<yyr )��#������<;f̋��j�3C�70?��>���x���?�=�#�K �����M���w܏mۛ���y��/��'$�����waqy����Zt����t]��Ѐ��*�z5u��o۶��m�u8�cA�wlS��v��jӡ�9�u:�c��s[�lӼ5�M�v-ڵj޼]k��-Z�jߪe�v-[�jѪu��[�nѺMۖmڴiѺm�Vm۶hӮ�P˶�۷oݾC�Vm;���j_бm󂂶Z�:t�$�s[��)�
۵jөCa�N�:�hӶ�e�v��mզ�cA���
;�jWؼU���[�k׹u��;�*�\Щ-xP��Zv,lު�w�V��z"�غK���*DZ�.����k�G���n����۱U����u�,�N��`3(��E�/�rZ�i��KP^�ΰѡ�؇�KA�v]:�n'�s�
ڴ.�@z�]�w����~W`оK��m��n�^�k�v��ԩz��ŗ\ҫ�3/�޽{�]��_о�=�֭�%�]�����_�v�zq��=z�i��-Z�ߩSa�6m��l׮]�s�=�{aaa�!C���SC����^������&v_����r�pÍ�R���e��q�N9ٍu����)�9����]�����sW��Z�`e��w�}?�������.���v��3n�o�Y�x��Ӣ�����lǾ����?��kG\p�m/\��V�^׭�ě/�}ʽ�?X4���&�2t��q��~��*}�@�o߾����{�j���-�v�\�ڪu���Z�*l׾Ua��-�7o[Цy�N�[�-hײUA��m:�iޱ�u��۴�تM���<�}���X�ڴ?�y���ڷjնC���:t,,hߩs�۾�꫊}��V*�����.-,]�t�9s~��'��̙����s>>w���3+飏>Z2g���s��_:k޼�f���s�.Z&4g�����_!��y+�f|��*�]-4k֬�͞=��3f|�����5��L�n��9�J�8t׊<�ӧ�άYk�y�Ь�3g�\��w�I˧Vʄ��BSgN]7u��u"Kӎq�ڮ�I��N�o}/�$��J�M�m�W-K�i{�^��<�����(�.|��ty��"{��ghڴi�<f̘�f�*7n\9�d��ɥ��'N���Ǎ���	�$
v�'M���M�o����]�]�xc�S����W��d��;&���ߞ�x���g�,�j���{>:~k��+N���u������M��	L�˿�.:��
�����on����̥���g�>���O�������O�Kk&Ϥ��>,A�6��˓��R���!�a���i|��z��eM	֝9s��*�;wM��]S4�h��S���={�7�g͚�cӱ��z&4}��o0o֡H}~ʡ�����}�j���;��-c��η�{��o���׆�|�[�o<�C�|�����t޿�P�&*?��r�?�JR(
��ނ�r�{KO�z��2
��^��r�{MW��*
��B`�(��{lT�B�zP�
�����r�"�ʔB@!�P(~/�C���W�*�e]!���P}�p�\��B@!��s"����_U�Ջ���P��P��%�B
��B@!��s�C�s�T��B�zP�
�_��r�4�E!�P(4�C������B@!P�(�
�?)ʡ�I;V5K!�P(�-�C߷�[�V!��^�u��r��`��B@!�P�z(���a�,)
��E@YW�ʡ�8*I!�P({ʡ�-=��P(�e}/G@9�U�
��B@! (�.((R(�j��gIDAT
��E@Y�v�C�v�U
��B@!��~�C�~�U	
��B@!P�(�@@9t��>
��B@!���P}o�AU��B@!��^��ʡ�%���P(
�C@9�CG�)
��B�z�լ+���A�)
��B�C@9��{U�B@!�P(~5v��5�ʐB@!�P(�	ʡ�&0�B
��B@!P���z��+
��B`_D@9�}��U�
��B�O���Ρ��zH5H!�P(?��HJE!�P(t�CߣR�
��B@!��c"���_T�
��B@!�G(��GpU����P(
�_��r�9�O!�P( �C�uF�VEYW(
�?3ʡ��{W�M!�P(��C�g��z��+
��r�/��t��B@!�P�*(������T/ʺB@!�P�ʡ�B*]!�P({ʡ����X�(�
��B�π�r��^TmP(
�}���!��^�u��B@!�� ��o��*E!�P(Պ�r��
�2��^�u��B@!�A@9��+
��B`/F@9��T�Ջ���P�M(��7����B@!�P(v��r�F�
��E@YW(~]�C�u�T�
��B@!� ����*T!��^�u�����r�^��+
����������PT/ʺB��r��^QuR(
��"����
�@�"��+~ʡ�2�T.��B@!�P��P���2
��B�zP��(����[�2��B@!�؇P}�l�T��B@!P�(�'ʡ��諲
��B@!�+!����2�P(Ջ����(���T��B@!�P�(��Wt���B@!�PT/{�u���>T-P(
�)���B@!�P(���¼r�ʪ��B@!�PT3ʡW3�ʼB@!�P(���u���8�o��B@!�P��(��Ww���B@!�P(�T�CO[W�
��B@!�P�&(�����
Q(
�@�"�w:���DYW(
��^�����g��IDAT�uV�r\�$IEND�B`�PK���\AL����%assets/images/settings/stemplates.svgnu�[���<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_944_14791)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.1638 3.93443H9.83593C6.57658 3.93443 3.9343 6.5767 3.9343 9.83605V38.164C3.9343 41.4233 6.57658 44.0656 9.83593 44.0656H38.1638C41.4232 44.0656 44.0654 41.4233 44.0654 38.164V9.83605C44.0654 6.5767 41.4232 3.93443 38.1638 3.93443ZM9.83593 0C4.40364 0 -0.00012207 4.40376 -0.00012207 9.83605V38.164C-0.00012207 43.5963 4.40363 48 9.83593 48H38.1638C43.5961 48 47.9999 43.5963 47.9999 38.164V9.83605C47.9999 4.40376 43.5961 0 38.1638 0H9.83593Z" fill="url(#paint0_linear_944_14791)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.0045 15.1018C28.9123 15.0193 28.8149 14.9404 28.7125 14.8649C27.8241 14.2109 26.6184 13.8838 25.0955 13.8838C24.0607 13.8838 23.1869 14.0303 22.4743 14.3231C21.7616 14.6062 21.2149 15.0016 20.8342 15.5093C20.4252 16.0689 19.7287 16.5225 19.1264 16.1794C18.6537 15.91 18.2171 15.5778 17.8294 15.1901C17.1062 14.4669 16.5759 13.5738 16.2872 12.5927C16.1599 12.1604 16.2725 11.688 16.6129 11.3927C17.374 10.7322 18.2637 10.1763 19.282 9.72503C21.0002 8.96358 22.9526 8.58282 25.1394 8.58282C27.3653 8.58282 29.308 8.96358 30.9676 9.72503C32.6369 10.4865 33.9353 11.5457 34.8628 12.9027C35.202 13.3991 35.4812 13.9242 35.7003 14.4781C36.3499 16.1205 34.8504 17.6179 33.0842 17.6179C31.7054 17.6179 30.6017 16.5867 29.559 15.6125C29.3726 15.4384 29.1882 15.2661 29.0045 15.1018ZM19.9263 18.3505C20.188 18.2482 20.4683 18.4031 20.6146 18.643C20.8684 19.0432 21.2149 19.3898 21.6542 19.6827C22.0936 19.9658 22.6012 20.2147 23.1772 20.4295C23.7532 20.6345 24.3682 20.8102 25.0223 20.9567L27.7167 21.601C29.0249 21.8939 30.2256 22.2844 31.319 22.7725C32.4124 23.2606 33.3594 23.861 34.1599 24.5736C34.9604 25.2863 35.5803 26.1259 36.0196 27.0923C36.4687 28.0588 36.6981 29.1669 36.7079 30.4164C36.6981 32.2518 36.2295 33.843 35.3021 35.1903C34.3844 36.5277 33.0567 37.5674 31.319 38.3093C29.5911 39.0415 27.5068 39.4076 25.0662 39.4076C22.6451 39.4076 20.5365 39.0366 18.7402 38.2947C16.9537 37.5527 15.5576 36.4545 14.5521 34.9999C14.088 34.3174 13.7268 33.5597 13.4684 32.7267C12.9472 31.0466 14.4327 29.5671 16.1918 29.5671H16.4199C17.9404 29.5671 19.0698 30.8716 19.9849 32.0858C20.5023 32.7497 21.1905 33.2524 22.0496 33.5941C22.9185 33.926 23.8996 34.092 24.993 34.092C26.0669 34.092 26.9992 33.9358 27.7899 33.6234C28.5904 33.311 29.2103 32.8766 29.6497 32.3201C30.089 31.7637 30.3086 31.1242 30.3086 30.4018C30.3086 29.7282 30.1085 29.162 29.7082 28.7031C29.3177 28.2443 28.7418 27.8538 27.9803 27.5317C27.2286 27.2095 26.306 26.9166 25.2126 26.653L21.9471 25.833C19.805 25.3119 18.0448 24.5421 16.6664 23.5236C16.2938 23.2482 16.1563 22.7635 16.2872 22.3191C16.5758 21.338 17.106 20.445 17.8291 19.7218C18.4273 19.1235 19.1418 18.6573 19.9263 18.3505ZM16.046 14.2137L15.759 13.2386C15.7466 13.1963 15.7209 13.1591 15.6856 13.1326C15.6503 13.1062 15.6074 13.0919 15.5633 13.0919C15.5192 13.0919 15.4763 13.1062 15.441 13.1326C15.4057 13.1591 15.38 13.1963 15.3676 13.2386L15.0811 14.2137C14.8885 14.8677 14.535 15.463 14.0528 15.945C13.5707 16.4271 12.9754 16.7805 12.3213 16.973L11.3462 17.2599C11.1509 17.3178 11.1509 17.5942 11.3462 17.6513L12.3213 17.9382C12.9753 18.1307 13.5705 18.4842 14.0526 18.9663C14.5347 19.4483 14.8881 20.0435 15.0807 20.6975L15.3676 21.673C15.4251 21.8678 15.7015 21.8678 15.759 21.673L16.046 20.6979C16.2384 20.0439 16.5919 19.4485 17.074 18.9664C17.556 18.4843 18.1513 18.1308 18.8054 17.9382L19.7809 17.6513C19.9757 17.5938 19.9757 17.3174 19.7809 17.2603L18.8058 16.9734C18.1516 16.7809 17.5563 16.4274 17.0741 15.9452C16.592 15.4631 16.2385 14.8678 16.046 14.2137ZM12.5675 19.9729L12.6536 20.2654C12.7114 20.4616 12.8174 20.6402 12.9621 20.7849C13.1067 20.9295 13.2853 21.0355 13.4815 21.0933L13.7741 21.1794C13.8325 21.1965 13.8325 21.2794 13.7741 21.2967L13.4814 21.3828C13.2852 21.4405 13.1066 21.5466 12.962 21.6912C12.8174 21.8359 12.7113 22.0145 12.6536 22.2107L12.5675 22.5032C12.5503 22.5616 12.4674 22.5616 12.4501 22.5032L12.364 22.2105C12.3063 22.0144 12.2002 21.8358 12.0556 21.6912C11.911 21.5465 11.7324 21.4405 11.5362 21.3828L11.2437 21.2967C11.1851 21.2795 11.1851 21.1966 11.2437 21.1793L11.5362 21.0932C11.7324 21.0354 11.911 20.9294 12.0557 20.7848C12.2003 20.6402 12.3064 20.4616 12.3641 20.2654L12.4501 19.9729C12.4538 19.9602 12.4615 19.949 12.4721 19.9411C12.4827 19.9331 12.4956 19.9288 12.5088 19.9288C12.522 19.9288 12.5349 19.9331 12.5455 19.9411C12.5561 19.949 12.5638 19.9602 12.5675 19.9729ZM12.0068 12.0149L11.8729 11.5599C11.8671 11.5402 11.8551 11.5228 11.8386 11.5105C11.8221 11.4981 11.8021 11.4914 11.7815 11.4914C11.761 11.4914 11.7409 11.4981 11.7245 11.5105C11.708 11.5228 11.696 11.5402 11.6902 11.5599L11.5565 12.0149C11.4666 12.3202 11.3017 12.5979 11.0767 12.8229C10.8517 13.0479 10.5738 13.2128 10.2686 13.3026L9.81351 13.4365C9.72241 13.4635 9.72241 13.5925 9.81351 13.6192L10.2686 13.7531C10.5738 13.8429 10.8516 14.0079 11.0765 14.2328C11.3015 14.4578 11.4665 14.7356 11.5563 15.0407L11.6902 15.496C11.7171 15.5869 11.846 15.5869 11.8729 15.496L12.0068 15.0409C12.0966 14.7357 12.2615 14.4579 12.4865 14.2329C12.7115 14.0079 12.9893 13.8429 13.2945 13.7531L13.7497 13.6192C13.8407 13.5923 13.8407 13.4634 13.7497 13.4367L13.2947 13.3028C12.9894 13.213 12.7116 13.048 12.4866 12.823C12.2616 12.598 12.0966 12.3202 12.0068 12.0149Z" fill="url(#paint1_linear_944_14791)"/>
</g>
<defs>
<linearGradient id="paint0_linear_944_14791" x1="3.12582" y1="47.4366" x2="18.756" y2="-6.94355" gradientUnits="userSpaceOnUse">
<stop stop-color="#C639FF"/>
<stop offset="1" stop-color="#3662FF"/>
</linearGradient>
<linearGradient id="paint1_linear_944_14791" x1="11.5011" y1="39.0458" x2="22.7136" y2="4.92318" gradientUnits="userSpaceOnUse">
<stop stop-color="#C639FF"/>
<stop offset="1" stop-color="#3662FF"/>
</linearGradient>
<clipPath id="clip0_944_14791">
<rect width="48" height="48" fill="white"/>
</clipPath>
</defs>
</svg>
PK���\W�)'assets/images/settings/integrations.svgnu�[���<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22.6667 8.5H18.5001C18.0398 8.5 17.6667 8.8731 17.6667 9.33333V13.5C17.6667 13.9602 18.0398 14.3333 18.5001 14.3333H22.6667C23.127 14.3333 23.5001 13.9602 23.5001 13.5V9.33333C23.5001 8.8731 23.127 8.5 22.6667 8.5Z" stroke="#6B7280" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14.3333 23.4999V12.6666C14.3333 12.4456 14.2455 12.2336 14.0893 12.0773C13.933 11.921 13.721 11.8333 13.5 11.8333H9.33333C9.11232 11.8333 8.90036 11.921 8.74408 12.0773C8.5878 12.2336 8.5 12.4456 8.5 12.6666V22.6666C8.5 22.8876 8.5878 23.0996 8.74408 23.2558C8.90036 23.4121 9.11232 23.4999 9.33333 23.4999H19.3333C19.5543 23.4999 19.7663 23.4121 19.9226 23.2558C20.0789 23.0996 20.1667 22.8876 20.1667 22.6666V18.4999C20.1667 18.2789 20.0789 18.0669 19.9226 17.9107C19.7663 17.7544 19.5543 17.6666 19.3333 17.6666H8.5" stroke="#6B7280" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\L�z�'�',assets/images/settings/augmented_reality.pngnu�[����PNG


IHDRreZ<�	pHYs%%IR$�sRGB���gAMA���a'IDATx��%Yu��z�s�vfggs���$��
����A���
`dKؖd[d��YV$X !$`lN���;;;9����ޫ���Su�[�_��L���|3կr�J��w"�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�9�bR(
�B�P(�6P"�B�P(
�B�hJ 
�B�P(
E�P�P(
�B�P(چ�B�P(
�B�6�@(
�B�P(���B�P(
�B�P�
%
�B�P(
��m(�P(
�B�P(mC	�B�P(
�B�hJ 
�B�P(
E�P�P(
�B�P(چ�B�P(
�B�6�@(
�B�P(���B�P(
�B�P�
%
�B�P(
��m(�P(
�B�P(mC	�B�P(
�B�hJ 
�B�P(
E�P�P(
�B�P(چ�B�P(
�B�6�@(
�B�P(���B�P(
�B�P�
%
�B�P(
��m(�P(
�B�P(mC	�B�P(
�B�hJ 
�B�P(
E�P�P(
�B�P(چ�B�P(
�B�6�@(
�B�P(���B�P(
�B�P�
%
�B�P(
��m(�P(
�B�P(mC	�B�P(
�B�hJ 
�B�P(
E�P�P(
�B�P(چ�B�P(
�B�6�@(
�B�P(���B�P(
�B�P�
%
�B�P(
��mTH����ӟ�ٟ���$)�<���hfz�FU2:���Qo��}}晙���L�R�Z�F����Cd_4��cQ�(�Ħ�Q2�����N�w���.(�P�O�o:|�H��G��<����E���0��� Q��e3LMM��K�̌���ę3�,r*����W�\/QQ�"��=,	D�x��)�J �������>�FG�hbr����oѽ��3�ǫ����@�6���B�P,#$��W�+�
J �
�:�|Ӎ�я~�n��f;-��Cя��O�Ï<�NT�U��K��k�#�*r��Q�HS��)�u�*I�P(:��W�]��*:t� �:F���
ŒC����W������EKB���+_�2}�~op9�|�_�B�`>�L�1��*�k�P�0� ��X����}u
�s��s,���;��3}�?�?�'��kg/>
�B�ł�y�&��y;
��P��#������'�Xf~�Q���"�~�m����f�����G�g%��Sq��o�r[<}�4��uZ(��-o��a�ƍt��I����;���O�+���V�Ze�Ϟ=K>� �
p^�.��Ѕ�w�8q�v=�l��,>���D[V]F[/���y��L��<���szF/2��¶^X�R�[q�B1o����Çh�j�Q�_�
�yǝ����o��51�#�M�\��~���O�$��g���W�\i-
�����Y)�]�������ߢ�S���|�����y�f��?�S:n>�s�^���a�t9}�%�G��h�T����^���o��W���ߚn�|��2�co���\d�K�l��̡C�������-6~�=��n;.E�?�s?O��[�ғ;vX�~�Qn;v�
�oz�鳟�-
��k�`�h4誫����s�z?��w�?�;��}����Ӈ~�?,�D`�u�����s�6��,����{�C۟x�~��CkW����=��a+���on5ߞ��ɟ�C�ڵ��#�(4�m!��m���n4�#�\�\|1���sz��+������ki׮g�'�\�~���*������S�|ep�J�0ǹgǷ�yW>�JQ�v�}�֮XGS�i�8��j�J^2k<qА�StŖ+��wے`E�ϙ�\F�V2�����7>��dJ&�J ��0����i|P�ٵ�
?�?A��]���C�ַ��fgg��ڵk�0�qA�����Q���*�}������W��Omw�h��_�rz�K^B�3��w�A�|�;�ިۏP�k�y���y�>DC�z��,}�������#4T��l�w���;h�q�څ*:?���X
���>��F9����4==M>�-&N�<E��k�f�̕�@T�U�al�޽��2_.ӹ}��o��v�/|���e/��'����_�~���6}�3��{�o^���_����C۷?N����}�[��缄d&��{���g��7��-t�e��M��{h�>cM%��#�����
����7��h����/��+�/��/�G~����$��{���]�J�s�������i,c �o{�ۭ�뤱�- ���g_J?�ʷ�;�?|��`u�|�4O�G?�[�{￝FF�K��m�j�;t�~�e��NM���r���C_z�����F��̷�l���|\o]Z�j�D�r�J�rJ"��U�q\��{��؊y�`||<7�:����j-1@�2��5kZ�i���z����iㆍ�m�6�A��IC���,n��v�җ�dI�|w��Sg��k��[o}�����}.�}�bg��+����
4k����A:ut�V\�l�A�*�n��CUcn��S��x�+�;�ζ��m��v��l�y?���c?�c���E/�E�}G���C�^�s��L��o�~��;N�����	������韍x�Ѳo��u���n���q��?������/��|׼����~�~�G�I����?��?���/��l�g��ҜO
G�B�kNaA��m�o�����7=����ѥ�^j��_�mF�6�s{�;�A��7�/��/m\�{�w~�w��o�2�Оёq��W��j�Y�ƣߠ?���A���3��4�=���ۧ�~���������w�=��#_����������lm����]������·�n>j�<�J�Et2>C���ѩ�F_ёɃ�?x/5jug�Pt5�*�
t�!@[wv���h��T�����o�����0�&�z�5�Z�Ӷm�і-��W_m��|0>>F�׭���i���g4�3��|T�`�,K��>cy(��,��Vҽ_9F?�+[�2�9F �뫧X|@��#?�#�o�iX�,P���KВB��i�fZt$�H*�'��ȷ4x�s�CW^u5�1��>����}�}�>�*��g�������կ~�6o�d3���9x�O�4}�X����[_N�ݹ����Fќ+��V��r�Y�@�˕����p��җ�l]��s<�oӺ���v�����.�S�N��"�SgN��[����m\�Ѷ�Ϙs�h�
��i��G(n�(�oV���|�2V���@T���׾�^���Ӟ�{�;�|5]��ݧ����u?F����=ǟ����C����hk���%JщP&ż�VN�j;��X"��E/~�3G4�0fff퇥�%z��m�VX0>_��O_�o�;6��e/�����
�A|��}�ʦ#=x蠵�@;�����}zޭ��T�MĻh�����Gi���?<DC[Jtv��m�֊F���*��?��������=�{����o[��_��,?��O/��Z
Wǟ�I�=��td��:O�PF�^��344D��_�}����������*P�}��k
��x����������o��o�^b��˒��]o�X�����K�bq܏���ÿ�ˆ���9�k����ӮGy�^�ӷ�u=��,��|�+4�����o������~�Z���~V���g���G_���T6�x�[r�?���MW�b�٥z��>��(�t��a:;m�T��^N�=���CYk�����}����?�?i�z{,��w?�@(�Ice���@��v�����ʶ뮳��fL��l"�ټ��/K�A�A;ؽ{��h�֬]k��`u@0v�Zɑ�v��g��E����+h�>c>�s
V3V�zy����VT~���gU����/5h�h|�?��th�)����:�bq��$�>B�׾�5�W?�V�4<<b_5��}�����+G&7������Ue�DzB�y�8�馝b���ףS������~��;���k_��|͚���;�����~�����X�b��F��o��oh!x��g�C�Pj��1���s�ƚ��-7�LO=���/�}���;� \z��g�����u�~�7�m+a;�������.��|݊���?�7T,S5��_�lc�*���
A/���Jt���R-��J�n�ե �
B:7�o��k��?����q�$"���G��s�bAx����{��t�ȑ�u^���?���7�%��*�z��_I�?��@s���|���2�?ۃ�-D�wM�����[����2*G'�ѣ���O~��R����N�ә��w&�hj�!�;”u/i
�N]{�V�d�۷�
g�|O�Li}F�G��
�o�y�kRH�1�$�ȵo	��y�̙�}���|�����h�(x�o�����2�u�z�]���L \���
���ʋ$ـRi>�C|n�����M�ýlNJ�;������\/�W4f2'>���2*�u\��v�)%.��-��Sa�K2ܜ����eJ�g�O�Mo���%�&�C �ڿ�}��ͅ��Ř��i>\-��Bs4߀�%:�FŹu��Z�n���nE���`>�|��2hփs�ǁ� ��B,�J _ؗ��A���&K�"��@t'ԅI� ��я~�&�G�W�W���@��_�U��?���>�n4�T��`m�ѥ�s::��Q(��=�e�s�/T/��x!�J�ы�_�X(�@(|hn��L��/�|�؀e	����_����=E�v�H�D��1í���qb&f�~�ġ�Z�P(
E�B	�✁����~�#����/j���ݙ������rB�ʰ([~w��)
�bq�B�(��!�i���F>��6�����jY�Uۊ�o��v��+x٭������b�u�â�*
�b�� jED���PõHѡ0o��ٳ���J~�!��v���u�"���6� PIJZ�'�S����C�jG�ޫ~���p�=�X�M�~��b�v�_Lc>��m޼�N�:�����-ϻ�굆�!����L����V�JT�K6o�)O��8���ԧHZq���G�^wM�]M�����=n�a�]�9T�6֭���A:|��щGib�4��8EgNO�G���lq��W��K/�j��0�Y�8���,�s���U׫Tn��t�a��0�Y��v�~Qu���Κ��Ǐ�6E�5hpp�n��F�;D�����;_ԗ��p��l����VQf���qW�����|㟿A_���fH����k͈������{�E�"*��lȔ���v�"A9�#���x����GѼ���"�0�#�	��E�U���1::j�J<�������HV�q,���� ;=5m��@�w� ��B�0�n�a~�<}��2Y���oW4���A�����˰Ϭ-V�i&J�@�Z��V��ѡCh���4a�
��j�Fp&��,�v8u�4=i�P�\���\�D��e�i�(!�O��gS����J�VKwC�噊�����hϱ�G	��L�m�fk��ˮ���+r׎�>mZ�r
��������]�X�l���PT6��q���W�u��L��P�P(,�!�4�o���th�<^�?"��,��R���'�>�5�!����\Ĥ��q�s$�;�O;�G�[@�3��1,У ߥ�^J������b�޲zYk?d�NR�V�!�`��	+����Aڸqc�
E��Nj�ȶ	���Çi��U6�o�R5B|�g �B�k�R��ĉ���V����T�;d���ym(
���E��-a�?�k40њ�kL;��y֜o�V�����m�r\{$�$���ef���)ٓm
��\ǝ;��V%k%�a-j����<�>(�P(�9��"��߶�#Z&I����`-	�\'�M+R��JQ�N 	��]+�:gI���k�$i`r�_%�V���r!�_�m���=����i�O�x�*FK�Zr�;��+�P��v����!��SO�8`�Mm�.?#ƢW ��TU��w֑��p'j8"sҐ����E�.2���P���]ɻQ��n���WR�������{X.��L���z�j:�$���Ea!�%hrrҐ'g�/I�MS�ʴa�ŖT�m-:�N�׿�u"�
��+��7�E����B�P�])P�B��L�H@o%L��v�����-��<��Ba~�����9?�\��!��Nѻ(��2�x>�����Q�j~ٵ�N֭^G���3�X&����=�6�td�F_�%�Qɹ�o�-;+��7���
C��I��8q*Q_�/u�j��/_J��O>n�/��"#��mK		i+��(v���·�Z=�a(��\_B�o�R �cccv>\�@�K��w�M��rMN����K�*�r��b�6�*���"�JgcϞ=t�c Y�g�gّ<S�峏�����B�X�	ǭ�)"R[�o�Ct��o��oS��D��_@hun�s�
YSB����?/�U
��k�X�x��G����y��!"��!�׹5h|x��ӳV3^�w�n<r
�L�΂��}�}6�/��2JJ����Hց�a}��B�ֵ�Z��;�gg�p�|�/y\`E�O�z<��v{�6]L}}n��;���I�.S3��@�%�~b���<X~�;>>n���v��;��d̵��r���o�6n�d�U�W;"���@|��߶�l��h�(w�T��
a)�Z!�J ]���I�9;�PɎ_|�fZ|-T�c.A�w��K���>�������Z̰��]�~�("r��KU�s�۴"-�s��-Ҳ"�:�by���$����X73��Wʕ�2��T�#c�s�3�?�O��͈����,az�����#�e�]�
�E��'��k��8
T�﷖�L{�#��*�S%�͊7r��|�	���(��7(��9v<ǹ�J����?�%�e@�20�]$n���?]y�6k���,

�92粑� TL"��w�ȑ#6�#��Y��C���s��úJ ]|`~�~��;Nk֬���[�ҿ�7?j��ɇ
���Y��C%���g���~;�t�M���j�x���� ���C�� D�8��~�~C���"4"CE��Z( Dr|B&��ߪϡ9Տ��`�ͷ�l-��}�5�6�
���Y�Ǵv�:p� U��v�,�i�uD�=;H
R��W"�"��F�����34b���)�9�"_Nb!*�3�>I�pgz��G�8��DpV$ѪD/� ��~�L�S��]@�����Z�׃��&�c'��z�Z��WC��?4D۷?FgΜ�k���*����c�ra���)�:�0����{L_W#��s�k�DY��gh��=���}��3�B�u@Ǎ<�W_s5�r��6�9:�׿�6����7~���?�q�W7����C������?7f���|+��!
X�з��-z��G�����Y���ӻ����餥`����,��D���tE�[]�`
�@ގ+O�1|��W�� HkF�a&L�>�,1<-I����~�sS,���k��r����0�nK�	1$b�(Z�L����ST�Rq�t5iF,\��mh�����d��h�6��t��#f|f�l������8���=���?ܙ}������XkI�ݙZ����[�
�� o0�DQ�%����r�
�j�z�ݳg�%T�<�9�X����M���E�8��{���#���:�U����k̄B	D�A���	�lܰ�inL��{����ߡ�/��:d�;���~�j�~�G�.�뮻���jz�駭��c��1���z�wћ�f�V3Z�+���z!�H3/��K��/�V�b�Ӽ��c���:���ܗ,�����6�����J� y���9��/��?߿V���Ǒ�LާV�Eo���'�L4�v����*%�l�>0����f���	���CǂP�8�S�O>k�RӐiϺ��l18�X{CdW�E<��8�r�L�
X�1�s!�6��>�$�ȑ�F�?�{G�6Q��H�h�ݸ��C�6�	b�5�h�k3�1��422j��l��r�&��}�w���4�]�֬S�Āѵ@�u)�£���E�Q��Z�@(��p>��ϙɨ
D�—��Vkb��W�?��?Z3z��ԑIc������&���/{}��H;.������~`v�淾I�]��^Cބ��	�h��T�!-�<���P�B��o�]����H��+$��U�B�9�&��R�S.��C��������#[-��MYmK@q�R�Z�R�\}�d�3�m�j�sӡt?r�G(d�ۏ~��DƦ��bgrb����] w�Ʀ��E-{�-�E<���nĢ���D�:I?�]�
6��!,Y涘$Q��!+�\&��߿��\��;U{,��q6Ҽ:�$�&h��n�Խi{���}��֜X�e������>��sUu��fq{uj%j6a�3�8�=N��gs�#���Q����C�L�\r�M7��ݴi�-���}����K���N|�q��"$��?^4ON�V�(���
!��<�|y���&��?n;m�k�U����^!H-�O
�|�Hiu����7̓F��o�K�ݰ�fH*Wa`���wև�V����X��)�\��K�J�̦>%Ԭ����}�3�<c����^�2��C�Qwʙ$����^Է8kB�۵�MO����->��@TN�<aIӍ7�hJ+�wk$}Wl
�8�f�%J�¾1�?i�tm�����w��+L�y���c��������v�ޕ�>�[�-���G_��?����}���Fqs?�z&3S����������B�u@NJ�F| K�����L.@��+��®��@��� ��,|-[D	��x�eE�C�_ )���-�\5Z����o�</�d�B1��%1�5���~�<�>pϑ���+/�j�bβ@��UU����Jnj���
W����v;�A�	��TIx@C��~�z�U�ް���4ώ����.�̺gߥ<5�'��8��˖9Ɗh�U����tӍ7�t�w��8̅V�_�gY�(�x����a�V�a��Ҽ�%��
Cv�˭x�����"kc�vV���5	���i�(Eg@	��'��l&�QO��EG�-� ���>��k�����ig�z��[	��!A�?N�|�D�>�hv�ȻX�2?8;t�����Ew�v׮]��D�<�\��lm6{F"�| ���4�U8�#x:J���f�.J������f+?o�J�ذ�^��"�:
p�xzj��P�'1tQ��ju��{�b"8ū��9�%��7��W�|���~���v�����0�4��\�>�Պړ^\ʿo<\9�)���6V�R	զ��8;���uU�F;~̎�+༙��tf��c�&�m���*@�J �e�����r�����T?�lGH�g�:��~ZM�u<�V�Hߪ0׺E�D
>����v�y��$��ApG�iHť
r��y�SNM�����CTóAI�@R��N�	�?_�8�$�_ԞX�n�%��zv�
p����	)��-�{����;�8�sMF�O��m��nu"y�a��)��6��^+[�
�YX˝S���L*�L�%m��;.�T�����h?��/���)@��Љ��0��o~�)Y�8�!�4��|:]T���8G�׬�������!?�!��ɂO,߽INK���1��~��G�HιP̡��'--�oQ[���Cf����D&�BGH��O�����^��i�=�мsP��X�r%զfl�X���.#�Y	��E�������V���#Gh�!g��yȦQ��.�$��]�$��V�����A2}��z���o���	/�u��`�澂��������=����k�Y�Ut�݄�;wұc�>ĩ�!"���Wb�p�4�
J �e)l����y�BG��)���/��5"�Q^����|�n߾��k!i���%��g"�
�f�맕�+�	C8�VT����W��[(�����W�[��!�
��y^��hxh�
��HJ���Jr
�*����"U2j[ ;�C=`�57�j�c#���Q[)��ܒ|{�K�����֫�h�E��5\o��
�O�g��
��X�P	D�A	�Bѥh�3��c-}�e�ṫ��v�ZR,-P$�i��E���BBW�Y��Lݪ՝�je�zl��_��v�~���<�:u$js!���\��<H��t�����N�����,�ה�rT���f
i�K%�+uB�A����h$n1<�UEC�!��[n�Sf����4?��<���RF�5bl|�.��2��Rp��n+��݋�IߔX����m�,qk귊>G���J(�P15=��G;���`�����TtU,>8�(rQ�?�a�
E7V(k(ri3��Q_�j��װ�&&�P
�KN�-'�mUid6�É$�泠���Ȱ��p�<c4���y�f�����@�vQD�!���InՑ(7b�C�=\��8u�|����[�̙3�;ScA$B�'��	���K[�\b�qlG��{�v��-�Y{C��$���$F"9��Z8�[jh�mP�b�h���
����ۅ���O��St.�L
B2FD���ȍ7�h]a�RB����i�}��_M8[	A�׉�8.ή�[�`�@�1���ڢr �X�_A����W\v͖K�p���ȶ٧Pl.��������u��Ic���X"n�A�H�j��y�xmg�Ġ���;�n�z�1XF�RTJ�vE�J{ϗTt�A����W�?t+:�Z�B�8'�ˇ�Տ�����[�&�l�j5���m$���p�m�t�Ay���0`?l�`�|7�rA�<p���%iHន죔�)]�կA�8@��t�쇏����$N����B�	�~U,L�����������~c����A�Fﰈ�w�}6E�@��i1y׺��OÆd�]���D�n�e���|'�*�i�L���<�����$%]�@(�2�ZVϧ���(����N�y��u�ւ�@"F�`�f�p>[�
6��C��@�٥�'�Ylc%��[�<5�u"�:-�"[k��c���' �o5gdd�&�fk�A�A��Oј���>?ǥ\�ұ8�N����L�:60�Q�3�qFQ�Qw�V �}�sSw&Ó�烰�%{�@�P+�Z�O���F:t�v��MΒ�/����/��GTf����"�_��.�B��q�.J���r%�����$��+y�@@y�ݝ��M-����zú!V���Y�.$e�(o]�ߦ�T�9�V
CZx�4���e�����;i�fY��eo�G}�Z�}�юk��
-��T�����֣@;�`��3�\�{��$}^�KX;(z�0o��4<<�s�[!-�w�y'��R�
��牢�9EwA	��m��ą��Ԝ��젥ˋ�s<EG��xߥI��겤eٸb����o���!:t�0U��r��w>$���)�rR�W������4�Ψ�0d���YB;�h3jW�<��Lo���P��-8�)����ĥ	D�����Ea�ɩI��{�^�ۘ\�Ŋ���v��u�	l�aϞ�	�����g.�<����.L��p��1�r*�?p��1\1>J��`7�;�׀�y��k��ο��A�~��
�e�kD%�F _�a=�ٻ��F�[�$J]BB�J<�$��\N86���׬YC}��-Tw�E�,9@��~�qgu�'N���i���.x9�L�9~@wv9�F�z�ظj��D.Sm�,TqP>11A����n�q�lɐ)��nk�T��6%���n}'�������.���e�2B��%� bχX�zU��Q=�c/v���>;M��m8y�-���M�!�����΀|�|���c�(� ��,L�B@߰j��l�GY~F�ݏ� ��9�玛n�%�vb|V�x�����
c}�����2R�����̠Oq)���[�bܮA=מ��\�ۻv��eJ�4ܹ�	HJDb�*i#��3�D��;�k�����;xt�{y������Jܔ��b�'��l&�2���GЎ?i�uB�In}�V�N�J�=ױ[��.�>绞�����#���{B��}�I���_�XZ"T�<����_z{Y�'qAhk�y��cd�s:m_Wm�5��a�uy��	��Y���1:r�
���f�j��o�u�V���h?���?b��Ϟ�2��Zu��~];#[#"�L�_,v��u9����Y�����{nJ"x�\�k��#��v�UAw�n�<@� iJ�`�xH���<A��󸢻�1]_�R�C��8�i��ؼd~���}-��>}w��b!׸ȵ(��A�mE�����e~�%<-I��30iPEoZ}h�c����Р�{�AYm������<����<��ߨ�
���6
ۀ��O�\*���6�	�����S�|�IK8j����4�!��t���xr���l<DÙ���@���1I<��Р
>Gv&l��j�P��6��3�5�V��f����+H3/E�s�3g��ҡd�9ŰK3�+K7�y9���.W�D�A-]_(,:Cd��z~�o�ځt?f���3t��֦�t�!�3m�}n[�֪�Z���j�
�W��Hm�B�6O�ku��q�|����� dU��W�'
X�A���o�Xz����ќ`��I� ��g�>\�v=�ۿ�M�u���(���S+a�5�C�<�]��N�8i��z�oP��#�'$¶5)����Qt�0�֭��~�ݝ��#��v���|+�9�Wr�oĢ�L�1��pg�馛l�W[�:*�X�|�V�^k����xXT*u�E������v95�����F"7$�3���bVw�,ΎA6^�F��ssS\x���ʺ2��X�l��܎;���|�k;\c�~f�n�����;��z���mz�!�ַ�e;��b��.����0ozz���.;���b�J�����_ۑ�K_��G���7�%�<���	�>J|����r��v��"o��,��R��yr}���l���6����^�b-zn����v*�>q���6��@�̟h�n�}͊��?��BX�RN��z���m���k�!(W3�xN�E9� (��I�7�D@�q����!��q#�OQ��(";U���d�R�K��D��҄8�ߘ����/^і��Q�VƮTr�n~�9b�Y��|����4g���:�${�Cq����W������CQg���s�"�Th�R�M5��p��s�|L6]��|\���txgh|lȚ��9�\�����KW\q}�_���_L;v�K.��.Cm�젝z�k_k�W��ih�p��{̒61>|8�X!(�E/zQPhf����u��#�_��(���O��&�\����/ �����v�,��V#�hw|��/(�H�޿���#�d��433C���t��H��(�,D`�޾��e]�f
M�~w���8P����-ΙB�n�~h����Εi]�6ۧcY��S�և9����b˹��KH�s�⾺a��q;~��Iz�m`5Hgg�>��˱|��$�퐥�������2�jx�D����^�F�Ͳ��n^__���g�a�mL��PD�y�K!�}mv�\��W�<�$G�|ll����O�5����7NJSK�SO=E�V���?��L04h�~���|�[�n�Z.�MH�u�]g�:bh(���	4D�=�z�F�};�V^H.:?_�Z/t�k���@Ȓ�j������O��~ۥ��l3dy>��\Z7�� $�(Q�}�wѼ�Q�V����֊�Ӕ�$�e:7�6_���Ɠ���3���Ԭ��,H�
���鷫F�iRgm�o�+2�X�����)�C'ě�1U��u*���
K׌�%��x����
ˇU��]�fɒʘn����y�g��l���ʼn�A|��Iz_[�<.��%]+�W��[]=*�����A�N�˂ ϗ/�}�
�+�#��T�L��Q�?h�\��NA��+/�Ç�ƍ����|[�)��N�g�1���<ǥ�K׺�.2No{����ۊm��l߾�n��뫊}p�A���kn�<y�B+�]	m׊hY,�֕�$��<4ktB��[|����"B��8�g���m{�*Z&N���Nѫ޲�:|�]^�������^��;m��(YPO�h���K&S
ō�C�}\|P(�Q�p�t��kv[��nL����ٰ�&��lI^��ȵ,�2�4���y"��c�>��h��Zɶ$�o���o�ђ�'���b�Y�1<�X~�p�n�p}�2L�w��e<-�-�E	���k�Cz\\;|�٪c�kd߼�2_):J :!���_��n:�����G�h����n�d?���	|�Q�H�X
0�N���y�1ll,�S�mr9�3��ƀ�ȇ��zH�m��+myMB.?��$Y��d�M����H���솧���s!�"+��ly��Æ<��Ǟ�W�ya��^G@:�@ȏ�|�yY�M�;X12f�==z�j��V��H�qܲOo9�Q�m�Z��5J�Æ��j�$(�e�}��wY_���9ٰg�y�ٌH!��y��ҭ�ݼJ�╓|�nȬY?	R�y'N��1| p l%�w�Y�WY��
�^"���+��;������WC"����-��(�J :�E�n-E­C�oh������& �a�52C���B}Q\B�9I����i�P�J"I��B��s�IC�����~�,ϩ.�Z��I
�U��g�(C��Bt:�����u��ޫh��$L��M���4H�����s]��Յ���o�����(zO��ˌ偪eڳ{�y�7��6���=��o*�[>fa���V�1߳Ԙy�qN@o޳�L��r;J�3[��"o���q;v<E�_��2�+r��GH��,!�߸��r�
Kv�
R�VJ	�p������ŖD a��o�����Y"���j�Pz�_��\�jv�.k����? N>��Gb���SIG�Vhlt��yA���)}��φ�_R�uP�i�Bd�������:�ܗ�K�������>��5�KOH��?�ܾ� �K�{|�:���i�?��9�|�CDA^o�f6�9�c��?�'|�n���ZkHú�Cֵ�=�~��f�y�cU;t$Q�����#D*݉-�_J�>p?
���T���w=�?vN����<��zXff�a��ᡤ/����5�yt�T9��4jA`��w��E[
Qr��Ƽ��w#�w{}mdf (�R�7�X(v8��G��]}��459E�as�֯�w�z�]õ@�%�~�Ea�[9�8�����7�i�Q������#QC	D�A	���P��+"�{�O.��WR8��f�kΖ�g�qn�Q�WM ?ON��=9��J4\Džs�)�P���/?$��[A\#�M쟇l�h;�K���t��|�;���%�Įc+��M�X
�r:?6&D�%�b $�ӟ�����=�4��X$`��2�m�X��Lt$A����0����po��g�6�
�8}��}�\H����g�u����8#PW�s�f��
�!Nmx�&��}K�m�����H\[���<�H�7W�+V��oϹ<ϾZB�V���~�Ɖ�|���~�I?9L��t�����u��%�µG��}�I�$�(��4j�.�U�����3V���-"gK��&��6(�XbDQq/��ˊ�D�	�<��#���%֩�#v�d"[}͂K�Ǣt}LqNXn���@�٠��lM�LM9�PF
�d�B�մ<ه<?>����ȳVx�'��v�oGx�(��T��!� �o�h21Yj|B�+��eB.N݂��JN�,j}���rc�SgN[��N�}�_��'�,�����s
Ś�g&l"���tR䭵;Q� r��h��e��5�m�Qdc���y�
��mg��]<�;��(hݍ�]�ʉ�!���	����,q�Y�r�%9ǎ�Ç�M7ނ���K��&Ȟx�����h����rB��^=�,:�;�v�Z1�c����ɷI� �%K�����JRPM���8E�S:iW4;���&I���@��������>�/��X�m9�@B:_�gQ|G����V��'�|�"R(�r}�md�D/�q
�*u�7?�<��)� �$�{91���,�򻝍�e,���#��kFП1ֆ:�啮�N%sO*�F��)��08�$��hI}�zQ��n��F��<k�Q� �^���5«�D�2�P�)
 ��"r���%�ԩ��[�K�R��zK���䑇�5碰�]Z�{�_ܿ��1s�p="�ժ�'���Ї�w.�k��P�a����nK��'�q"�O��OX"�a�����4%]Q�*�"����BY>B��qv���v�h_���6>Z�/+r!
���.�^��	��d�B���/ω�_�vʡ���]GY賮I�y8�������R���Y(�D(�2�z��S�ef�,��o�͝�����€*+�W�Is����ǭ-�J9+�A`-,Pa�@!1�C��A<���{l�QX&�(��ny���2+Xybq�;M"��n��FZ�n�"y�|�ɴ���PY����CF*?[bTPǁ���/Rq�mO�.��%DH��w�R���V94��_�o��o�O��O�/��/ں�5)$lpG!�e����6iЋ浚����ڦ�mE۵ھH�W$��s�[+��G~�|�S���a��
:�:�f��L�(�BϚ��z��w����#Gh�b�g��%�|b��'n���޳o/

�
�U���͹��A���<��%��7�q��F�2����*�J�ܩ̳�ʮKv}�0���$���ո�����f���/X�~�a�-�����T#K�2<<b=r5g�ĔD��n�Ħ�pwr�kܣĬ��b��v�����rs���K/�?��?���v9d=��m_���iv�-]y����l�Vyy̢6��B���������
!�����ط�ȶJ�(�E>C�]�w]�|�;si\��u4��^��.���� }�����@f	(�{w��w�{�1`�\d's�G��X�?��"$p�A|���ٴ�2�t���J�a����e��	��V�l\΋]��}�Y�����h�
����Rlm(�/	��Wm�w\��[(~���j���t���^�Z���O�ևF,��%5�^.Ɓ2���͊2;��3q^�G�r�b�r�].P�A�
�$@��[�Xgʹ�NG;�����(���mnL[�I�)�ڷ&����vI�����H�	eP������$�'�`�s���C�4sv�v<�$]~��42:JE���YDi쁴�­�V���۷?F۶m�pc�@"F�Rj>�d��wf�9�B��p�r)[{�ư>d��j622h�Q*��J���+�C��F����SY���J :R;���B�.B�o���	�	_���y�?i,/x����d��
�.4��)��27�(绞�<x���1#(V��w���ƭ�<33c�@@M�s>.��VA"`�@<�@����6m��.���%��H�F�"�y�V�l"��"#ժU��z�ރ�C=d�5[��:�,Y6�-M�8�P��Oy<�%��?pOA���X�������
�,r�b!(r��Bs�Xΐ�^Eo�����K�7ṋ��.'i8C1<>6:FC��<|��t�Wҩ�'i��}F����1:��Ov.���Y�7qUc��O�����+W���p�Td5�!E�\ǖdʟ�N�J5�U)�dm͚�I͟渉^����iǎ����a��`���5��(�j.Ρ��b9C�oi]=WK�bi�����?��B1_�z~B�N������v-��8��,uB$�/��2E}}U�1�N�1��[_֟��c��A����ۭ�����B�:y���NY���(�T��!�V��g.2��ĉ�n���?N7�|��"�­���!���n�ڵ�R�LC��^�裏Zr�g�2�q.WI9���5		:@��[*L�%K_#�B�
�|���1r^�c�W��MvE�x����	k\�:�6�w��
���;v�֯_v;��90���h��=��ڸ~�M�Z7�ܖ��u����UW]e�K�r[
���7�p$BV�nX��	��$�n�n/���!N��B�o�N�%�!_I}�ɒ�$�>����.o@��,���y=q/�_X��%L�2�U��^(�� ȗ�-J�����hY�cݦ!;,H��
q��r#�?�J"zCq��~����^Ȳ��F�&qO�x�֮Zm	����+%��U�(ۂn'O��R%���PV�:�O�F�RP��f>*W�:8�F�XX�H��f�Q�f��i��Ӵe�f��T�qEM����$Y`p�
�MV�-�ux�g�YJ\�d}^ύ�ub�	+{���S�W�,@����5�4<4l�i���
�'�{X�ȯ�8]%K��@i���]�X(BA~Tդ�Y��ChZ����F�^b�h�9z�mذ>'{Esl?2l���(=c,�W����~+��ʨ�P6�wC&f�6#�޽{hl|�jIZײK�����H��%8R��%��@"Q�}ґÇh��>�vL��ڜ'�b~���!3�>�Z���ÇӉ'����Ȭ9qVռ��i��X�V�5��|ZR�屼!X���w�Rt'4o�!�,ݘ�,(�|󱜯�<�{�Bf���������~���F
q7ÞgwӺ��h�h�98�Y7JV8��G�����f����ؐ.�D����
e�wN�ՀL;�}֭�ic���&''���9�O`�<>�۫��k	4ߏ�u)RL�5
����,c�JU�U|/��w���?��;�b���+�P�/V�u&$q?v�}G��+W���7-��YPGq��Qڷw��@�q2���ّ�T5V�����s�A�\��y�G̷�;rAMm(�	�+2�ܕ࣏q���c��c $W�`V�|�x���z���~W����۴�^q��o��Ξ���Hu�z�BUJɘO`ݼRKb��.�S��͔��K����~���Mo�����r�֭6�
����ڵ������/��/�����n��[�s����o��]W���+_�J;�6�-h�|�m?�O�q����_��1����G��<o9��1J\;E�N�\[䯢�moG��ea����A���ёaK>�ra��F���&F�� _��yfg��йi�&�������y�1�n�c�
��A�<�)��J�[�lI+e��0�c�/p�q-�����u�\�A������>�~�c��o��O�)���+���/q�q*:�_6 Œ��B�A
h��A�;�h��$ ���u�]t�M7Y�ڊ�۷[���s%�?��?��@�~���o���B���v=I~�'�
�Nj^�";�}`��+W�u?��O��}H���8�
��upL�qb���t�5��c��}�˰�~���D�qN����}���g~�g���k�e��!C����ɂRH��)����8�4O�c�xw�;f-)X!e��� F�~`�>�444h���8�n�ɦ�'U�O�>��{��r�<J�"!���b!����'O�A�d��gk����H�H/�?p]����#l��oE�^3�˳�|�E	�Ϊ��En_i�Z�%H�1�W_s-)�����y��/ ��4`� a���p�A����h�1}�%��4�X��?�����7�ٮ��4,8R�s�N{�ŶX,G;Cm����/������˘8pz�C.5�!M��3 ]�$伢�xEo#Ӟ;xv>e�AC��W�cA@�4n�H%���=4��NT6Vv#�ݻw/M'��u����G9)�s�L8�tg�8����J��=�<ݗ��8W����B����
C��DʬA�� zT=���Y��$y�EI�)9W�"��r�K%K_k(��Nw�_0�������	i9��+^�
���x��Ǥ������L>0��ہ` ȳ��x���7�i���a�@[p�1��D�QY�6�a]��0�������P����!�V�v>Ԋ�DH�����?t�[F����H����h،#�Sq��D�&'TS��}Np�p��)[hn��u��� ��X���m9��U���iCյ16�ڜ�$�'���­ƹc�M�P��d4�f���k�3Ԡz���U�W1���3�P����4��
�ID�U*jRVq͈�3gH�]��%B�	�,�
�zիR����/�!xCȞ+��Ahg�����g>���>��)�E�h����[n��.Q�4�pA)�`R���/���r��kǥ�^j��h,'���+:R(�dA�J�B�'4�� �U�:p	y@,b x��.�:��("���Z����ݻw�e�]f]�b����]�$��i .� �W����!���!#��\��_/���\�@�5���θ��`�&�z�lT�V�)1W�V�~d/Gr��r-�1CV݅(ViaI ;B_�cV.~�V�ZE�	��#�V���'���}����}�{��޶[��eL
��g���իW�bi�e���.2ˉ��D�G����a�]BX�l!n�h�1�	��T����8�7mg�=7��X��Ԕ!%Fȃ�w��\|��6�$�]�CȒ�#�%uh�L8'������B.������+�;�B�o�����1::�Tѽ��������3M����θ&~`��Z)���|�����X5p?ApL<C|@J��u���{��A�4�!��+T�4�纏����~>X.�AN�,\�X��C�_�6�H��4w�w�8��@�uU5B�aCF�U����f�d_��
%QEl@l,}�>+�C�D�
~�Q��{:W=d��˷��m�j�aE~w��A7�x�%7 6�}�+yC��ƽ��Hr�$�Db�A�par<�9V��m�v�b"7(���@k�u[nQ���B�����_�\�
�|�[}4��,��2ݢ�7�+��N��d9�#�4n�x����_�F���æ���(g��\v��=JgΜ1
�Fn_s}.�6X7��
�FEP
�9���'�1QԌS�2�w�Afo�e���gϞ�U�$X\���Zp�B�$e��
L;��1�p��떨`(�����+��
EwA-K��m��_�8W�>�2m�>g��V�
�t��8	���ΌE��),+��陝;���.�A3]g�0�GAj���{p���	+��Ç[wZ��fm�|��fW'�%a�!�rJ$qbwK�g�>�S��:�T�L\\ܿ�ӓ��t����E^1��")�HW��>�ųҀc�z#�j
!R���J :�P'_*�MA�X(�?��X,��R`�X��؟N�?�!D�"�[�&]�d�$�*s��Ϝ����Sլgc��­!�P?)�I�xh�1��6lܐ���G*~��e�	Q:�m(�cTͳ�7��LAh�;�"x�1��AL���3>��U�B�o�>�1q`K[����k?4�@��G�fXԋ���5d�n�;ר
e$�6�?+MU��>(�Xb�|}���O���!s2g��2x!�/2o!��� %/WBǻ�,[�=W��遱=�$>�i�Ad%�}tZA����P��5�p{�Jم$��ϠЛ�@� ��,�Vm`B�K
���ϗˬ'$D;J#�j�a��}V�����㝂{��Pd3&��Mm!�L�R�t1].�v�i܂�@�x��۶m�	����a�J�'򄔋�O<�8�����Xz��#�*2����idd8��!�?�C��
%K��"�%V(
�Y�����_W��� M/�"��b=�CB�^�B� &��:�R���Jk�~�{��7���~�m(����6�qxxD�3��N&<,I��!�Ԩ6���LE@��͛]����gˈs)T�sfK�$FP�UW]�s���}���?�ÿ�G��q_2��i�>����;�[��9�[�p,v{�}S��5E�A����o��D��G@�hE�U�֨S��>��C� �
�z�d�hb(e04��x�~_��g����
8ea��	�l׭@]O]R�x�Ε�3s34�"�[Z�z
����\���Ts�9�pف{�	�,���W ��������:UmH���9�A.�'&�X���
w1&�U���,j�<����b��J�P,��gDM$Y�:	�a=�
�\�V|��,\��yr�Cl�B�pk�+��>
	��e�5��>����Jչ�LO���\��sg�V��
%W%�CCh߻w�*g͐�-�EC&���0\.WӌL�@`��L���@@�K�*�ǻ��iCA���2�ɂt��V�jш���GFƬU�:-�g�\択U>��$�����["�7��)3L̷�:���28
�\��s��GA�T��3Ǯ��Br~p4[
BE1O�9�|ޞ�c'?�\��SO�{���!����������Χ��B���C�t��1Zm�к��^
��s!�̮ȈGJB�N�?��������3�
�~�z���B,�~?��$�fi�u�hN�����{^g�&�^{/|%�{����3W*�n�ّ�`y��;7�i�$-DJB�/x�F�'!ߤ���/���{�1����@���#�i�v:a|�{��FI�ӝ��‚������B���@��jE�#K�j����{�nhh���g�Q�wA�F_�k�[A����|7&>6����F#
w&��;Gդo!����ɹ�>���%���B^#�?j>���q�s!�qBҘ��~����a_j���T�2ݫ�j��j�s�������
�y@���Z����������StpZiv}Ń��ހ�����Ǎ��^�
ipȒ�uE-�%��
Z�3C��_>=6�5r���2��%K�>L�׬�>�kp�(��v{l�,���	�}W�^6�us�u��W[�F�]o�|�߅T��e��{�����Zl��#\K|�:3r{yMel�O��q�g/���X��箃�kR|�3*�)�E~���ϊ���>�	���qE�"������84��F�N��:}�uc�t�Y���P��O�0��,�kv|�����P��T��/\lg���Zz+�D�}���]g�9�8�����ߞ��q��E���y`p�4`�qJ���10���kl�o��򞅽��C�S��}��9����)�J :!�A��A�WU�� ?�r���D����)�E\��>t��
y02=M�'��k!.���a�r؊!��]��J�[!�l�+ꍔ@@=x� mذ!��h1��}�:�v��a�=��b���t�C��bH��q�@���~�`�x*�b�Td���LZ�R5�h8��X�%K���6��Z��B1�±k�>_�
ߍ�'R�S�8F�9��?v��+U�2��	F����.�+�(��J�`W����2�XA0I�
�~����6�™�344<dkGd�*v�Y(\[ 1�vlڴ���=��	CQ����̰Ec�i�
�=ك��@0����d�����fK6OK�ֆڌ�d�����â۠b�!�;EZ`�E����u|m_�î���Q��W�XAǎ���P��YA�V�٪јw���.��n���h���8�5�Y�O�ISᯌ؃R28�ġC�hSu
�2�UȼXn��D[��JDk֬���唝�k�޽�,�u�R�Yx��mX�?���7�e���Y��x��x��xY`��F�Z�ⷿ��fcEH���+�b�2�I�"B��\!�+Pd�P�1=E���R����}�M�{j�v�����Gh��Uk�s���>C f�/�j���\�>��|CB��d,�&���*�Y:u��]�����ʾ��B�c��;J"FFǭ�r��ÇirrŽs�	��~Ap�@8��$s�e�lInYs��d̛�o/-x6po�|ظ�F^�ah��}P���}C	}��?×?1�z����nD�.�0�NI‟�r�^N���p5��CFP�����Y1��-(a
<����>�:!�"'3a��nL���(.���K���,��3\��F}�}'m�#GRB�L7��o�
�~�V�fKD�X��ǒ�Ѝ�V�9��L�\�2�~%�yɈ�fa�>(�X"��̧�B�(2;�y��5��(��L�Μ6f� $¯�*"��Ad�#�������il��6])���3y�5�u+�C�D052%�zQ��{���B�ώ�
|��E�q'��<4���.�,�Hw���F��Y�kt	���]��FG�l;�p�P{1\��D��
������G�Z,��×G����G����s3�X��!����o�7ɷ�(�J ��E-zy��?��]�����X���3�R������D�H�2)����XA�رc�D��X|/�O���d�bNҁz�FYu�ޗ0�y��|���v���޷w]s�5V����Q)n?}k�ml�����2wq�^�Cΐ6�-(~�d!����B�-�߈8!��t�x2�<wll,X���]�T��^(���|�ca��U_0Ź���N�ȍ���́���h�i�H�weҏp�� 2�(����D9�"�'.E XB��`�XZZ�.+��N��LV؝�32���Gp�Ӱ��@��}9�\W��q��z\�5A�ɵ�\��}3yH�c�=){dnJ5s�ZW����%�ܲ���~(���AJM���UT�|�Si�V��>�QNz�A"��pQ iQ����W �A ���5
j��1 �*�79+Dn+ʻ)�G����s�磄D S__պ�@��儋�Y7*Cpb:�~f|l�XV\���?���;j�����\��H�����C�}ͭSJ�7d�T��M��m͑$�p���K���z�}V�ׅ�W�%K�"6�JC�^��?�'�A�85K�z��4<��W6�$5Cl�V�b *�J0����ˮ^|rW�D�7�& t��T��ӽ�x?�������\J�Nd+D�<���d�Sfy�����7��QGp7W��[!@bb�_�ԏ�⚠�r<��!N����}*	a]*��x���iP���p�-��#A� 	f��'��]��P�D���/�C{�7�q�/��vC��_�
�����h��=�#�uԐ��s"v�Qk3�\G�*5�� g&����D�1!2!��B�Xx�L6.^)��l�|�B�p+���H�	B182ܤv��c Z!%�•�Y!��v �۷���|!_?v�Y����7j�1G
J�6Ȼ�G2��EIBZ�0�5
�ϏL�*�g���j5�~d�A�,B.rJ�J :xA�]��l�T�n{�e�z��y_5�vE ������>�^�����[i��!��H/c�&���
��R�6��B�D87��	B�}A�hvMc�mh]�z.L�#���AY���óD�y�2�����jBpa0�����/��/ug�� 3��?�e��Ha�w0� M-A����J��[l�7kmZ:q��"
�m��%�"��6*��:(��@�L?4ީ�����NѺM��t/x�zڹ���o�^7N��}�֚�	��_g�/\M�
i�f�%�졢,>��'��`�"�DLN���
Ъ�g�\aB��2Ȍ*r\�
&
tF@���?J�C����'��g*�[Da�n��O���c��ţb��Fl33�D@ ��
� xfG�F��:��I��da�e�<�P_�ϵc�=�H�a-q�y�"���B��g)r�D�.�/����f KXD�\ؙ�=�<�P�uP�`�z1!�@�c�TL����~f]���J Xg֚k��]�z�%X%@���ۼ���E�6��,d}��~�!
5��V�2���圏���20�Smf�\%�U[^>ߔ����Z��B�V���4����8ݰ��芩�d��|�A��Ͻ�(�Z)�"�}	|�2kO�w����H��iM&��wL>�<��Ȅw�p�ٺukZ0���Vp�7��s�>��Y�?�q$g�_?�A��q߈I�Pm]��lP6g��-����D�%��c��\Gf��8,5�0Qt�@,�~���!h^7D*:�6
�[�ʦXE{y��_��^GXsX��W��׎��<�-ED��a7�Pq9�����r�"M�'�heq4����ҭ�(��\�/�x�m�m��-4@���F:�r�n�n%��ҳ�|ׯf�#i���z�,��&��̗(JB^.�RA٘P�f��J�.��i��|��u����4R��x%�Q\.�}�=2hz9���ٸ��[�
���%5���IInc]�<�f�Z�w��K��ae���
.L1�X:(�XBȗJ�	b�@jyX8`ex�c��C{&�k	B���Dř,!-?���U)Ds�"�}�xh���0�>"�5G�K
Ar��M�
�y�mB��l�~C�C�G}����ixEDg�`�d�Y:y��V��*�����:V�`��ay�K�
�Q>��V�6g~r���U��J��b�Ŋ��5��ֺ9;m��}UK4�����q�d�r�PJ���!�ȑ#�Б�̵C�ߖ}�uikԭ[A"�u�$s��"%gh�oi��Lbi��[{���%�\/"�n �^��>����֜��C�lZ�U߷���_�)?�w���7{,�x՛7��s�\DTj�B$����o_�ga�I���>�u�"$r�oI��ៃ��5
Y��}�zc��Ffhr�BG�W���g�Dk6��V$+D���뫤�����v��Y�R��lB"�p��I4��3���y\��6?5����1�Y"�6��l��W�pǁ���Y!�O^J��&5>6�������Z�Z4_s��{�r
��n�\���!�&N�W�~R�x���6����قw�<�X�؍5����:(�Xb��b�BC'n5��W$�`�����r��"�q�t9ގo�O�y�0�,��H�ܗ<'=!��<v�8Uh���T��ǮD��1�8�]��ҙ�}4����ֿ�r�~P��.�.4.���M�-�MK��+	�����cy��ڳ���ח��NLl_��-���@PuV\i]Q%dF�0�} �-Rd�:�rf]��[`�����ZA)oe�۪�w��P?wYB��)��=������)�_�}�E�%��PAa�D��r~��d�.�Ɏ�Q�F �
E1�,H��B.>�nh\?�L.i�[�[r�_�.Jټ�шΜ�>b:u�L��iۋ\�����
�S?���s3���Rr�UK�DT�8y��!���B���n��ɏ�� �
�8�T#�zݺu�@��q�К/�o��#G������E�i�c���uW)�R:d�J�f������|��o3�����ctĹ�Q���x;E�A	D���*犰�)nhe�����'-!
�o}`�B
�ҥ)$؇Hϗ�'
��+�u�v���s\��N'��؊
���<}��_�"2ᓇVmU�"��6������l�Bͅ����3F���h�s�K���3%�Wi��@7&d+�@`�U���r��X����K3���u.>ͱ	�4�=���9��D|y��%��ijf�5�g��>&>	x��F�E))<��W2m�5l�67�U����|����i#�%B�}i�[	�E�,#K���~��6�'#�����
�o+K�\'�V��p-�b۴\�Z!Զ�˖n��+�G��#�B��Z�!t���EC�W�����ۀ�͛7���X��r�4�@�ܛ��J��L`����+V$�
�kE
��"��o��!��3)��c` +<'��'�<�]�m���%���HS��.Z_�8W�WHeR�J ������^N���ʒ ��kѢ9�ڶ�����9��Y$ �Ϋ�m��<���m�E�M���u'��`j��;דF������Xb��ǖ�7��4҉"+!����r���h�=��|�����`������?0I�B�#����+fl�9��3zE�vG�#6�"��k�%���J��Y���o;Bl+M>����P!!���U�Z�a>8�_�_�'Q>ɗ�)�O`�,�1BE�#�d�`"�?��@�X#t�&�;�R�"#S(�z!�Z��w5SJ��9�Ӝ;"Q5�s�j��]v��BȺ�Ǐ����	|@�@��J��{��(G�O�N�ϑ鞄1T�F�@^\��z��"�dG�-K���%�d��%��<��| $�=��P���P�F��['��ާV�
	���y�L�!��o�j����^��N�,��c)�A�tVg('�D�L��
��n����g7���{펋]��nT�a
ٰa�k�2ܖ�\�����
Z~xw}��~y�<u�~)��[�Vܪ� ]�m|��6DMY�(�X-��[l���k��?+��N(�Xb�%p0*�)�\V�"���&��%��*�0�����h�V�Td(:�P�}εM�
���.��aGM�FR��)#����j_uA��
��h��qC�vC@�r~�!�#&�m٥l||�.�)�nF$�<Ă�4�[|����*�l�½�12�L��,���*��F��ɶ�Š%�	%t"`�i�����r<��&�?S�D�m�ハL��k�v�ig�b�"L.�T��<�;�&Q�iR֤�3UKeG `�H\P���֟>�J�̾Fٵ��Ek3�4��J��
�}}Ο��K.�뮻nY?����>�,MNN���7�ܑ�����n��C#Zn��{L�>�UcN��������lZ��3`��(پ3�,��X
���#��)���1#<˜Qʌ�bWt�b%]%�i�%E��5^E���j����[��6�o�_�
�?Q��%
���8̿�^["������p��.�w���܃2eaPq��i�pYk���(Y��+�,�R�>�W���l}�.�V�mP=�����E.�v�0O��a��F���V���
;Dq��%�V�|�����}�s���~�>���'>�	�����YG0������W���|�n��&z�;�I�<��Y,��]���x��ߛ��&�?���|�u�V;�_l��'N��q���L���/ )��]hy2�j�C�Ze�D��0�$��Kզ,kl<�wS��|l�;\z��>h�<*s;m���}���{�����;=�4�,J����^��C.�j)���,=\�k%��2�|F��I�]��e�uP��X3B>��P��W��
���B,ׯ}�k��
��-T�C ~��g���z!�~򓟴�a=���2���7�}X����v��	��n\Gׁ���`�a�#/���<��+�3QYj�������b�L(�w����_J\A��#�;VJ�JI,�-,gHD�X#��+b_����k���),�B������޺�YRSBs*��O\�rֆZ��AdQ��3��<"�uM��H�߷�y_���!j���k���L͒���6����I��L �L �ВC���A>چq`�Ν��R�}���}�d`;���^`a�;A^�<��`�8�[%������@԰>�3��|_x[&|�;�p���@��r
��!�6d�A
��oC��N's�`j�ε��e@_=[�M=��	�B -��˚5kl�1��܀�K�{@��H��ݕ�뒧�aw& 
p����> (���/��"j�O�߹�+�� 7�@4��G[�B��.��C��
��.D 5�,�C��<|d��?%:&v�1����}&L<�����y���F0Q�_�+܎I������׃����o����v�~�|��Z�<Zi~C���X��1Y�_�m���	?|x�,�;�/���y�~�E�������3I�/�J�45�zל�(I"�iduvo�œ|Ѫ�Li�����h#�W�@V�FRo ������݆(�P�mE��Q���_V�\9�Q�r��մP@����}�1�B*�,��/󉃜������~00	��x����bb��{]���Tь�^����7U��1��\���NW\qE:}�����R(����j�;v�w��]t>q��I��n�>4	t���$����Ỳ�` 
x��Q����5�?Ʊ86�my�S�D�,#����"��r�<�����=�R�J4�X�$sQ�ш(�`e�K�u
c�$�c�Ѭ���M�"� 	�*W��_GjJT���D�n	ċ_r+)�J �E"��/4��U(�8w,��$�'�_}:��~���׽.����?O�~��I�8_��W�B��v[:�w�w�W���'�>֔N3{'��Hݙ�o� !!���1�}d���|��4j��>�u�+��hd�E�=���r��G��W�jPGXq0SR�@B�o�������
�\r�,���tx�1�e�|Q0�KҒ{�"JR�R�u��m!�����6l��>ۯ#�p�Y:������J �	�´��*��)����<��4_�|��Bq��gl)P���i�P&�ԝ)	�������ݲ@��ml�v:Y �
�-G@��s�.G�uC����!#��@%�ntd4��Q����
��ӭ�c���2i����`9�@�@�����a�,$��9�%K?�࿰2��+ݎ�G�}nJ�ay�s�C
���]hp6I�[���Q3|�r�,�0�8?���"`��@�]bBPxD���p澄y  (sY{ pɕ�a�v?������/܀0`�y�Z�E�Xwi��7N��+i�8���<kH�}�
�}��W,�#��49��2Ғ�/C���%��au�窕U(:!����s.s�1p[b�*}?���3����,4��b���;g����+�f�DK�&�<>�˘����A�ہ�
� �}���o��=$��#��=�݀8~��݀$G�]�8JoX;σ��
�^uh�V�6��
��o� �]y�ui;]XM�1�%�X��b+��l�bU!H�D8`nKjyP\���������EY�bO�d�1rgqVY�f��E��`���@�>�OP�~�$�3i`���h��nQ"H�U����:���ʎ4��"�����s�s�r>W��<��:;e���>H���!I��V�&Qٜ��~��rE�A	D@��!7&%�nGH{��A�<8
���)#D���߂��)!
E�
i�+'��*IjW�ru9�g�ֻ_$4�B��+ܞF�G,��wّv]��<��hd��p� ���&�"����u�g�>) }���y�F`vf�B��#�:,�l���!�ؔ�޳B�_}V�
J �>a��R�Pt3|-�T�P(�u��3�!�	�m��;dd۵�MaQN�Q`����f�b	�Ç�=E��}}��<��劸p��	����$�q&�&B�(q�e��	��e�c'����6D�|$��M�b� h�YX�/�;٘���n�?l-=s��P��Z �J �!�%!��B�K��wQuj�b9bf��kpւL��RJ�D���Pk
��vِT�	X!P4�>۠R�L���?�_�&X1V�\���m	naխK\���g�~�@_��k��Χ$�Y�⯗wS��P#�n�dy�c@��y�P�@�s�qB�� ����&�yw��k��;�b�rM*
*R��v4YzV5��2�/�>���AuU.��"�2�)	y�tz۶m���}���Z�������q��.�,]���O��}�eE�ǒ�qѾ��i�malܸ���5}�s�\��!ڋq��8Ϲ��{�IDZnQ
��-���>q��
��!����D6��W��Ԯ  ,8.X%a!�I��W�-����������l�U	�@�J�i}�`!����?��p,E�t�gu�}��KܳA����2_��ź�ԯ9+EB�MJjT��:(�X"�|Ci�X��f�|p9��O(��7��0C�ЉBtRH�������t+5
��z�@���8r��~ť�^J�~��i.�c���CH��ا$3�}�{�D�ԧ>�N�
�A�ۿ����8��m�ȇ�����_���\W�'�o�j�Rבk������ܬ	���n�
�K��������l�aX-���I���>2/�ڔ���R�Y��BO���e����r��WKR��r 4S�
��v���_��Qs�AC�C��>9��S(���cY�Z�B��!h�~�����烴��B:D��Fp=�O߯y�kr�!8}��Sp�1 �ϧ��܎�H�R`ff6ͷ/\[��:��I���0䁭,����V9���}����� �ȹ��Qp�:H��g����4�����E��fb����l.�y p�:y⤭8�-8���̡yZ�Z/.�ol���:]�@,!BfA9_b>�>KU5��!���4pj�σS3.6�I�)\�D �&k�ٽ�]�}���-�t���B����w�k�}�Z�җ��n���ZI���R����O�4�ڈ��u	m�x��rm�|I`�p���.�;w�L���_��۵�\�]@;��g��v|~�fDYfdJr��AC
?���q�����1p_�uRM?�M}oۼð��o�•�(�� ~ ��և�?b8v���u�8#��H�ds�c
��Y4w�Y��)�J :!�%���s|��hW�e
�b�P���\���!��d�]���M�w{�5E
�87����Z1@3��÷J��n?�&H�B�}��PX^�Ľ��_�
�\?��"-  ��D  лx�)#�k���9�T+.�11�8y��3m��J9x������Q�~lxx�Oɵ��ނ$䦽bs2}*���̴
�]I�J�(򃯋�s{*v����X�B�2����mS����S���%T�����U?Ț�/X+
��z��r�Z��A_
�&W !���[��l�m����@��F�������e�X��JT���,� 6�6¾�T,��÷rK���[_��tv���ؼ��9z�[���AZ1�º�p���"����as
+	��gD�sE���8�j*X�"s	�p���{�z��t�(@�NL�{B4<4h�K�R��D\0#�Q�[��P`s�,GQBW���Ɠy�8���Q���S3�ZÎW�}�N��Xz(���r[�,��Q���֙��|1 ��^��A@�.A�eV�V�P-��B@��1
X�ϊ$�#
���(ׁ�U(��r4�6���`S-m#����2�nL�O���F���ػ��V�Zi]���*�i�q�&?�J�,&q�/4G�|Ӏ4��n���
V �}}v!%L��ц�
y���hj��<1qd�-�L�y�3c�غ�kll��V}I(E�@����R�%�ET(��MO�q����'Q��
A�q�F#��nr_�~������qv7b����C�_�vU�y�{^n�B[pn�ݝF 9��#H`*�E�Rع#J�%���B��f�w�ի�փO�$�`?L�hB�[/?�oz�.�7�U��H9 ܔ t��džO ]3���-�v�ݳ$q�N�~���R���Cv/��YҪ1�]��Xb�7��U-�^�O��g�|Zܠ%�5�h�;�}1�,�38v�X�ۡ���(
Ȗ���V� �����X �EZaxZ���R��P+@�VOCtN�A~_�$��	�ݘp|����
��<`�r_��z����[n�,U�^#T垚:����W��\�(�w%΄��!t�e���G(��-
R�ϻR�e�%��+QV���["[���2��+�g�U</X<:<j�K��D�ҬX|h/�ĐA�li���ֆ�Ҽ*��
��<�o �U���X@�|�[��k-����)`!~jzʥTm�T7��e"��b�+LX8{�x��hk=��|-;�&;v�}�Җ-[�Z��-����#�O�{˲19����녵�-= ز?\lDsEq��F��v1��%���'q��;
�Ƴب�ā��*}T���o�ܨ��hM�>)�
J :L"$$�P(z	>I8����Á�p���y�{�W-�B��%/y	}�_H��װ��U�����ߝ���qZAV��7a��|�8�Afc�P�d��.���S�{�>z��=�z�ڵ���̠�G0u�>ݬ�G ���Mk�̈́e�=����	��"��C�`��B�"�V����Z;���4�!������8��KUQ�=��N��v�A	���ДwqR(���BH 9B
\k���\t
@�L��+sS��s����>Hw)��h����p�׽U&Y�d��N$��pkC)��k3�5ڭ�υ���6l�`��UN���#���)z��¯aci���
C�~�_p=:qr*�f��<8KCْ��`�.��5�*��I��vs�m�5�rP�N�%qL��-��P�N�S"Dn��!�E���� �%B�˦���?�>1�}b/�v�Z9���[!wb ��s��sd�,:��	r��^H2��J!IH+��u 0�U��"�l;q�B|�4�{#������2�D d��[/1�e�iǹ�^�P���;3T��fh��%г��4�����3uC:�ښ���Z�����9(A�Ү�8��U�䂃��ml�.dѲNXYC6�l��n�n�9;5M5��r�J}�42>Fã�4h�	q~�	nK)����s�Kv���n�LH��Qt�@,1Z�4!��Bэh冷��}�T
�R�E�P-l/����@?��O�����J~]�V�1'�m۶-�\^Ǣ:����t���1r���J�CZ��kv#�~~�X��v�Z�U�:��\�>�p��=e�/W��@8�c,��&�����
���æ\�.?��7��/�}h��h�D��G�b��ܒ�NU��8��%ݣ �9`�_
�o7�9�y�ޅ�0-Bf`�ye?C�,��E����U���p;�m�$s
�{���>��|ݾ���e����:
�e�[�Vn)����Ǻ��G��������=��ڶV� `�.:r���MR��-�/�m�h���u�f�A|ˁ�Fl����j�+��%)�ox���H�����:	�@_v��;�j���]X�{��ybo�� �g��+H&֧��^�-ر�)��<f+?�>sʦku�sL��t��!ڸa}n���g�i ��$b��1�/D�������ȏFv���-)�`m��ǁ�I�ۥ�R�#�zM����l(�X"��8L���!(4�z�jR�a���F�@*P�B�0�8��	׀(�]�s뭷Z!�5�~M���+K��[���_��|� ���yQq/`�a�ser�_o.��`n+�s�ſ@s\��͓_�.LPp��[E��C:^" ��k���U���C���V���±�Ǭ�
�/���ްa����@:�j��fk3m'tu}�	C�E�_q2E���$nH�R%=p���|�$t��(��I�S�"�#��sC�$L-�X�j��V
h�w!k�L!Z�vp��R������<�*��4�׼���oG���a!�� ���2�T'�$3#��[ ������2���}`���=�v���ٙY�����I�`�]�X���D�s]�9Bg'1/��cm�g�=�y%�L��Z������&nc$b{��#6
5��S��Eyk���>���4?K�բ���-��� �:$��+�RK:��t��$�A���Qh΋U���?��&�v��>Жm/��qߜh.���h>h�C�N��n�$�z@���k�9�`��=�a? ���?�}��� �N�B���]A��
kVs�P�]�渇���%�Yn� ��EOZ�R�e<꫖�ؑC�i�j@�F��?���K�\seR����F�ԩ��
P��K��;��)<�
��E�[$8ͪT��ٱU����~��gR`��qLR��[��5=K���,��(ֻ�$������</
r�����h��=�.L�{]P8��;W�X赁�'}kY bIj�B։"��e>~�
Ź�B>s�m�a�M@�&&&l�W�X1Ncccv�\ nĥ�Ÿ���}�I�1��fI>C�ri�}7��G�0�~�7f	���n]�f��<{�6l�D���p�Wi��z���5�nE�X'�٩	��4����8
ʎ��7RA���T�z
1U����Xp|Ş��I�k��:��^�D�bJb�JgŹ�L0�%����u�n E�@-����B�x�nG�gX~He&&}��qV����U������Z�| '���_$�7�S��A952<Ԥ/����ɑ#G�0����!Ql-3�R��Q��8y��
�4N�'��a���`���v�?W���j�����Q�D�XlfVӀZR��-T}��h�DN3Gv������'��{�)�71�%��,�P�n��%�T��c�q��[!?FMBO��P(�;�J��]��45m�ѡ�f�?Ru���X����8W�^E�ϑ
��g��;�)N9�Q��w+Y���Ӵb��4FB�
�6B.s�ө�܎з���B��r�U	�n�������H����_�]Ŏt�n:�8s���t(�J �E��_�34)���UZ��RQ��B�ܐ�A��pg���lF&vt�--�}y���}c��g?���5�r�D?u�]wҩS�2�y������Y�cE�m���`S�f�w��.")�e������8����+����Tע��Z���~9N"0_����F��D�������´�(26����+z��[�}��i�9+D�\�Yc�����(6�X=	���ߝ�~�add�V�Xe�_��GH2��3�w�ɢs����i�}TG��C�	�QfAͮY�N?ac p? �#���?g�~�F�5G�	�5���$�����C\���H�Z*(���{a�c*�%S��HHA@�'�L��5�!
V�Zm���@,���Jqܜ!�W(��(��P$p��T`�a:	��pɚ]�h��$�`}������)�<�_��M������CO<�D6�OK���B�,�:q☱� QG�n��3���o��@6�ib�پޔ1	VGJi!7?;c�{Q�;�<_�][�1֝`+B�u��I���\m�F��Z�P�۝����%���8PJ]�ݎ��'��B�H��.�_�D64b�ef~�C1�k-�
הTD.^��!y(X����{��)R�Ya��`jd�r��dݚN�>C�c#b%[���#���,
ȚT�}�}N��p;}c�Tʲ1��Ɉ넖�M(<��M\C�e,g������B�������CP�Xl��=�3I��}�^�
4<�^ͻ�|��F�v|x�J�^;F݊���B�h
�.S�r���V�a�U��+�{!]��8_��G����n9�B�=��C�ӓF�Mv�u�'�-)G&�z�N;�l������8E�c+m�tܘ��{v��u�	q9�٘V�XMH�m��.I�yٰܲ(�� ���QL�q8�/��F(W�����M��%d�!�b7�u��i0t�\��
*�١2��dH����oE'A	D��'
�J&N��_|��ܼu�h�t͎��͛i��!R4�^Ӌ�|�$]��մ�ѓ��k�Ỏ���:��"�V~�J4
�%)]Q�V���<�9
)��ݚ5��滝c.'�!�V�Q��M�bAH%����J.{��?'O�2�ňW�:{��k����^,�g�N�԰Y`4�)V���ֈyҿ\���}��ď-���R�5�P��g�-c֚b*ř��t�Nc4\���Ut�@tB�N�m��;th�wn?�$��V��@"��A����6
�3����^7nI,��m��u�K�q�q
�r��JR
�ܾ[���4�[g�L��q��>�䓴k׮���@x�6V!��Y!{br�քX�f�[7Y�njj��$�
���h�xEnF!��刀����eqV�qȒ�avf6�O0pV�؆�c)唢��(d!Ӟ����� ́<�/�d���Uo�<�z��8��,}��{��?r�1z��Y����n�*kD+���(�P(�p�1L ����d쩖�9W���>,�<�k�����c����XC䃃3-|έ(��q#�;v��\m#x�ݻ�������V�u.@�(Y�(%�h�<�i�$_�WCd��K	r҃g�ϛ���O8X |ѭ^�b(�X"ȗ���$��2As��?`�iE�@.�͕I~H|�BB��B���..�:�]Ffgf,����?��;!�����&��<��޷Ic!������hd�(
���y��
a�>�3T���X�C��{Ņ�x���A:uz:�uޚ�?l^�ov=ʚ%#΂�,B�H�9ʼlf�$;��+Rr� �6����`%/6ú)%5-\?O6�CZ*�BTt�
%K�(j�>
R�&a
��@ޙ���|��XX�bE����e
i�,/�s�裏ڬ5>`~G%��.�l���lܸ��*����c���my�s��r}d�y���i�U[C�9^w�u�X:D���0B�e���TB��[�\F�5�<�������Gp��n��������$J��OTh�)� ���[��U�����c�i��}���Qt&�r��u��単��y�C�I�3�ܬ8(;�m�w���sH�K�D�ϕ�Y�J���?d�ڨ���b��4�$�O��-/ߺ̓va�X��$��/,$����D]��os���7���C���W��P�ng]t�������뿦vp饗һ���|�󟷤�1��X���}����O}*����wؐ�	��6�:����澡V���f�<�=z4�������&�B�R�΄�5!�;���]MZ~�A��۶�+�Y����pE�ߙ�s��3�D��,Y"��|$g^J�k8�!�R��u-!��:EwB	����R�dt&���D(Vd��,m�B+�|�S���R�y�k,�X���G��~;�v�m�җ����FI��|�+mYQ��_��mg�r�Eg �&�T��S�S���+��7N\�b%�\����u�������e�xꩧh�Ν����tn8�ĵ� �؍ƅ��u���9s���\}��cћ���~����iv��ℛp_�'P�HD�R�6���䙀k���m�n�NJ����A�ФjdkF�=�n~������%��\��b���l?E�^��j�k7
�E�M���W���c�|��1�$��*r�c �u��������-�`
�"���R��i�~�h달�W��h߭ˀXFp.�,
>`QAC��I��s��̂a��l.*�Ê�]�t����K�rݍ{qY��X�9�d�>8q�-��e G��-o�m�!�#�{�ܙd�3�M=!\����/<�Ѕ�y_������ߗ7���Ht�@,1���]�| �)G!趓�Iь�bg����_y�~�Cק��
��N�C�/� �m�6���t���B�π
�P���|�9k�!�a�H���<gθ������oX��|�&ߕ	���{�%Eg �
`���mpp u9E�ii�Sd8}�4=������Y��!�nLI���ɳ�8 x���R�V��Y>`kB8�|�4g� ��3��	ի��dz��+pʚ<��¹�n{{+�~]�a:q���}�G/|��ƤX8`��]�\�xג@�	ϵ�BhO�����'7_�v�%�l�C�/��ni%a�/�ƿ����M��iu��ꂀ
�h���h��5T�D6-h��а�k���|��Q�V�ƿ�gn�[M[�ñe3YA��9y������#��ȅ;g�B��C�0��53�� �v�.f}�S��i�l�q�׾R�D��c4rj���3!ɍ��</�'NQ����%���Ϋ��7�v#��\�ZQ��<�@��K��!?h>Z��o Z
�p�+h��FQƦs������[oM�!`��^X@�h�U�w]Zh,��@*�8]��Lm��[)W�"CbS�E��?��C��+�HbQ����)��\9�{Tr)wO�F&B[����طoV�!����˧O��d���1�
���5�J�Ɨ��㥒�����nunE�rBnU2]�^f�BR�NnG��X�P�%�\
�I3�����\�=�k6�by���C�|��vg��\j��'�np��*uժU��B`Y(`U(rm�ŃS��q�
�����q�B�,H��*#�bi!3��П<�h��?n]��E����.ٖ��v�5�!��c���g��K.�B�����'�;�
.�:s�J��k�39�=&�#�#E��M_��h�O-$���:ho�a�”L�t�� iE;`"�.zK������"7$��` �1R��Cj�%wQD �nR���=��b>��o�����]���t�u�[�Bqa E@K�K.��8=�[lM�����D�����=��6�R��E�7�ї���o9�H��e�/`1�E��]�:cc�F3?��.���;vɍ�0N�gq*ZO>#鳕��C�lY��
`-3L\��u+G�ܴ��J �Q�^\�$
E�"dY�ID(�z)�:��ܛ���OZչ�"��d (����v���$�ҵ��]�"Eg@*�����#�����Q��e_�� �}�>i�n���C=�S\r�l��0'Hܘ�6�b�R��� �][�Q�Z�鳓T��Z��z�F�w�+.�<���?��[p��̚��LژJ��)_�Z6�k�F�<�8Ξ�؟ٺLxp���1�F��ظ��L"P���5�յ�۠b�৯-��)�Pt+�;�O&x�$��.d�BQ��"@��|��_�׌"�!IV|7'�D
�F�٘�N�/���K������u[�tkRg ���]a��A�a��Bm�f~�\���O�">ʴ���A����$�	�j�J+T:x(%�!�x��[?��>s�ǘb�gU���wE�����ֆ�����������K"�uRt�@,1B�R�GP��u�B΅z�#�!!�u ���N�n���|Ҹʸ��`Ẉk!h��t��ʄs�o*XŅA��|0�pɖ-i�2�ͦӋi��hbr"�i��-����E�z��S�N9�D԰V�����zPpt.��H	���ѩX�E�D>Q�'�ac/�O�6pjzW�n�!�q<˶)�
��Dic���_�<U(�	��$�~
S����~�� �A@p_��s�)a�ҕ]� ��|��\�����\��F�G\�֨YK�ۆ�3�V�o�N'N��\u���q	�����n����f��s�:8MM�
��U+�6�����"����)��4��H2+Rj�I�C(��7�R����z`3F%����Mb�8�,�)�(�~fxx�f�B�80~A"4{X�A-K�V��Pv�z��*݈Vi�}m�t��>��~{��*ZdBfBBL��|�B��B�|+Ss
u]�|�}�b,��#ɜ���z�*��8p �)s=:��(� 䈙�1Y�k�����3Fx2�D�k׳��g$tU��izfʵ�ݤ�;�ujvQJNj�/�9��I�M�ڈ���.��ɺ �3�T�V����}}U�!�]��Zq����9c�J7�%K���Rh>/[ΦhEo ��P���A	�pA���4W�׿���}̎CpG=��*��Yh�����Ӱv�>����q�c;�T���V���96:���{��Y�(>5�Ax~	_���&��ǜ4o�>��A���pc�Ωwݦ%C �,�Ň��ȋ	H�\�о�"d�p�	�zTK� n3�����il�K%��8*Q�o)�
J ��eme}Pt�~���m�>Ʒn�J_����/|`1 8��rL�=��/��y�|�+�:���x��}`�c[پ�/B�yt���seP���������}`�!�b�H��Ȳ�m�@��l%�5!=��l�]X�n�>W�)��_w�Ꚏ�Ď'��\���E��w~�����Sr�8|���FLE2-��)3�~NZ!lK�=�.>��
��;�ѣ�h��ub�ؼ˃t��s�㠒H}�m[�������f)��-�4��F�-� ���o]��,^qz�x�̼#�#*OD�1Ņ�lS�UA�}P�D(�:�
�@. |~����	�NY`�2�X���e�����MozS�]��#���}����ς:��$]r�%v��׿�uz��h�?�v۞<y2�d��ڰ�u���Lp,�������
��x�]���|'-d�V�`�DŽ?�K�1��{�A�\7� ������ӡʘ���\��AIք�O0��s�wa�!k֭��ˣs��V@������͍إM��-YC�h��tW��(�I��DXv������˴t��	���7�t��@�}��+���BTif�f�o����I<�~Ғ`+?�n{�C�E.S�c"F!NN��Y>�r�(���7)ܖ��qA��ܸ*O�J �E�N�D0Q��_����'�2���:����R
8/��!� 
��n'�+^��:�ڵ˞/�
�I�X���k�q��LJ���k�l��8����ú (�|�|,�ذaC�}�@�9���[����N��߰.���:p֦��$ٔ���X@�q8��(�c���4>bi���ڵv(���@�\�L�2=��C433K��?������I6�~��A�F�?p�m�~��(�oҹ�̞M���jQ�20i�7R���Y"w)�?+ql=ʻx�����
�zҮ���&��n��%BQ��9�\�I&>��t�D��/��%lQ��B�H�h�l��/��
�J�?��8,\/�����|̃e��10��v R����V�ǖ/��-<L\~�w~�.4���&-T`�\�7�����B~����w������nSt���Vv�R,
V�Ze�C�ǁ�˓<@�����ir�l�	���})Jc��B$�93q�FF����c6��@��ε�N���l�l�IJ�	Vp
0n-
�B�J�*i�7�%qx���n�_�V���,�cP���*�
��wm)�*d�Kn��"e���"8k���t> ��٪ \X�MG�0A�e�]�X;����^��GFFHь�^h�mV��#�گT����1I�X\�g.*U�w�Nx��dr�r��F>�����/
�N&�E]M'�#s�w�j���2F
q#��,���<w<|�b^�VX�2��{�T�1Uaذ�"c
(�K^��d��v��Ŵg�3iL0k�A��DY�	��}F_�P��&�.��zyť�9�%�����n��rRt���i-�A���RBj�Y���^���]�!]�.yPt�]Ij�|�H��Y[����!��,-�W�n��1Ky��=ٷ�'#���Ԕ�f��H7�BE�@ 8N����4C���.� ��xrE�oSb>�Y���yHd��&ωX�+j�m��%��	��������~܃��B�h�<3.�z���{�nW9q%b��D����\��n~�#}3Sg��Z1��#����u}���հR0�H-R�/�
>�{�9���8=g�[�ևfb�����s��%�D����Bq��Y�Z�3P��+���_��W�ȑ#ZIYq^�W�W�f�;�gnǎ�ik>�	��Мx��rñc���;-y����J�D�.���5ucriW�ub�Fr��]<�B.��G%����e�f���444H�O���I���

��Ą�Z4+�s����z��a�9�,$�]C�<Db��$T��~(�� ���9"�A5��^@+˃��rayx��^�N�ӟ6�ӤP�/�Z�*����-R-6-?�%�tO<��M��.@��QR��؛��vVY��,��D6��잤��!&��ȴ�y!�m?m,��������g�~cy��*M�w�nG>_��Ǟ'Q�U�qE�B	D��we��k�St+�3-I�?}.��%V(��@`)��
��!y����'�x�fj5[z�ob����>����XZ{OQ"�8�N����A:z�(m�xK�"�j_?MϜ��@Q��!qNǡ�&Sp�����G�J �J݌�ǫ�(,�< ���W^I
�³�>KK�q(Ѳҝ�m�@�<���oefB/&��}�\z�X.�E²A�*g�L��
:x�`�M}��G :j��-(��P�L�IJ9uaR�B��9?��;b>����S(�'��g~�
��I���O>�d�ȱnȬ��>g3
��2�ul�������"�2��0==e�q^ȸE�D�R%��h�_�@Z���u�����GљP�D�N[.)���Ԯ��VЀiŅ�k_�ZZ
H�\3.�x�):~꤭W`Ø�����y������-o�7h����DyM�h���+�>����j������p�Юa.9&H&]�ej]z�^%
�^Fч��7W�ŲG�KG�t���(Hz��a�m	�z�_�B�f3YH�Ӹk�c�db*B+�F���'��Vrd:�nuV�؞��ׇjҔ���[5��<���:�Gx<�9Sy{�s�Mf����΄Z ��p�Pt3�rM�(������� 9��F�����~����d��Lnn�Ԗ�ߏyH�.�LԖ���b�p%ɠ!e�1�ڬ���%�U�AL����O��|RbS*���L��|�ߵ[��zr���k�{D
Kvbc[����4߃��ܼMVŻ���b�P��wH�ꯣPtZ}�Y�G�	�B�����r*L�Ҵou�ҨfZL�Y��!�6�T[7&�[�]v)�� �Z��6��P�"?kc��[	,	�)�M�9��.X�YZ�U��QwC,,.,�hd�@�<,�x��|(�X"�/�D�/Sj&��KEǦȃ	�|�*�R�c�P(�e��^��gv=��,\y�z�p\A7��?��s "�Ґ���1/�{��j�[�bE�P�V��]ϵնP(\dV�(T7Rō5���["`�z���><̿J�BQ%�����cWQME�@	�!5+��XlUD4����A3�tp]���H�*P���8�+�Ǝ?,�dY�X�@L�Ν;�-6��/bqV1����v^͹�7�ݴ?3qڜ�j:y�!��V'|��@^��ٙ��Dq lM�׬��#�1P��ӕR�*�ڤ�	�ͪ�Z�kG��8yKI�#ɱP��Դ����	%K�"��[�vXqn���)��D��C�P���fk��4ĩ+�� dῐ���K�|C��;����t�%[����R��J�
��႕�u@ ��������`>�:&o���5BZ!R��&-IM�u"njy�f(�X"�kU��Y�݊��]��[l���ɳ�У;hf�f���z�M�P�9��~���M�׬�������g��5W^2����E�3m�����p����߳�m�h��λ�
��'M���vW�����!�B2j=L�L����w띯U^���y�dՎ��#�-bnLH����eq�� 8�#������U�;�8�W��,�Bj������uO�3а�
�����N(����\hg�Pt
Z��}-��]
ҋ�w=�k����M41q�~Lgfj��T��F^�f����F@��Y#$C0��������疭M�����}�֫�2����n�JK^֯]e�G�����'O����\1���	���t�c�����q�>���Sh���6a{��1�j������O{$Y�y�X�ݘ���m@�p���f���q��_��o��0y��>���"��\�z��?u�rc��1Ņը����l�VnV�MϹy$bjj�N�~�V�����LLY�jv�J��uJ���Q��"P,���CB~:O�-�`�%gq��)��E�B�@t�ȃ�sE/!D�#��k�zl=��>+�>��S6���<l��A���.�ҝF(���$�,�i��e�yp{�=,���<d�ow�
���������1# cy�{�~���3�����=�yq"4����m�R𱀯�q�=��|z�)�\�Ǎu t��=�9Ap����Ͷ��~�Z��֜=���`;&	>�LN���4�	���϶���=w$��yc� Q -~���k��l�?>�-��8��CDi�^g�}��= ����<ؿQ�}�H��A jӦ!����@j\�3g��E��g,e'��h
^N�����n���D.ؙ7OwSj���'�Y=ܿRr<o��
�^��ù�?(���9.q�l�EV��ĉSV��B�so�����#�N��cVPޓX)�>���<��8�=�rP����j�G�z��%Y-�՜{��e[6���g�&ӛhx0�E��ԍ�]n����>;�����B��~�m<�7���`{�ܜ/���#{>G[\��d�Jk��	��eV���q`m�~%6���[k��NH<��k������޻t[vgb���P�7AJ(@)բ$���dI�V���{����#O�<��3�Z���-/�I�)�[I��h�YPTխ{���D���Ȍȝ��}�=��=��n����;3���LjC*+��QH�����ٍ�sa�.�%P�',��Fq7n������T}�3O�H��P��Z��<ygwn�l/��&J���R�oZH�׺g��T�Ăѧq��wˌI�L2�q�}@/7(	�OE��� ��[����q	",���M�4��w�X�}]���}5��L���6�Yvʃ��u�i���(�S�(,�g{7��f���$�S��4iQ��o�ު#�i�6�s�!-�	�.�W��01[�m�e���IĆ��r=��|.�&�Չ�Gٮ���?��C����d>�fIO���[���P{�Ae��vwv�֭[��a5�­a.�96WK7t��!{F-����z��Y�j5����s�0Y�eA��/43��3�
ь7�3Μ��w��;h�Ap���#���U�G®�-����t�Å����鞿vT�������z*#�1�����s~�.����O��I��0d��>�W�5�Ɂ�yo��t7�?���_(��y���F�@B<�6�А
J'�m���	�Yn�\/_Ƴ[��Q���v�z��CfS�M�zR(��C�\����6�\�2�I��|�I�|?�]�[�Bs8���qӄvY�+�K�j��	��>�
ac9��wrp�̬�CL����7,��4���.�M&����1��H��~S�����a�@�/A(�����XI�2�ཨ� @�@D�f�O�X��a���r;�w��W������Ug�k+/�n�<6�c�CÅ�߄����{K����~�6���q�8
�i�_u���7���a9�P�_|	���M=�F���L�B�C�ɾ��n�4�\t���'n���W��<0
à We(?*���m�
����ҦW
|���n.�T��+W��#i
��/?�
_&Z��Em���7o‡}�=����<5�y��4Y���p�m?Y���R���
��!e3�6�`b���@0i(��1�P�a���
jW������p��������,����]&r�y
��2]�f	6e:M8�u��ɥe��Ʀ�?���wp�w�x�U�a��5��#�+0ry�e�)�Y}T�!dƈ�a��i�k/��W�b�4�b���E)_�7P��R0���Nܴ��sz3S�):Tbݎ�[r��N����L������{feqm���26��l0� ��Iy��7�&�̙3`h�f�����σ����CP��Z��f����i���߇�fv�l����A��A �[�����Nh)�Ip�
�0s
�[���M�}� ���ǁE$�¦�]+�r�k�Oهa��Z)��7n�h�#���D���ޒ�@ޅ��,N�ص����N6��Ʊ�~�`�0�H_v������Ս4�cX(&��!�
��f��y�]�;؇�T�U,�;%Tw�6��ڧ��=�nń�B�6Ys�L��N.��b\����>����ju�G�����k���]b(S�PC��j,����k��m�����u���1)��
��8(g+�L��e��.��w=(6N������.V
�2��XJ�.����,H	����~�VO�r�
�1Yh7�����t�L�&0Lx��L�8=Ҕ�@K��*�#7�4U�n�*$�pU����;a6��
�H�%1,#�@,���0A(m7	Ƕ���p̐d���R�li���888�����}w��GQ��4M,8=C�n�?.�tN.��/dW�!�
<����-̏���Bv�,�lJj'�(g0���Uȩ����#�$�}��m���L��r�ÔW�Ju("�h��ߔ�l��e�9��%E
��|0� H�C��e�a&�Ӏ��4���$D䁜�
G�ڧ΂9���<�f΅v"Xˈ	7���A�� ��q�N��)B�a����E�ډL2��}��N4�"��}�,�6�a4Z��aX�6��h�I���Ԏ��^�'���FNkHP�Ȥ"��̰<0� �>VFi�`��t@jJ�If|�ay@���>�n{�P
�5Y���Ґ�S$�j�4�6����rI�z��R�y� Z�SE�`���A&&m�ኺ:pB[!U)A�����S�ؔ��ݻP��y?1�O2�	R��x�x�
h?D�,-�K� �UH��
�T3��
�	��e���4S�ȶ��˂��E�&�H����2k*�'�^��o~�͖0�P�5Z�ES�ˀX�5��FIp͚�,J��]��:�޳��(*����4�dk�lh%$aTJ��y?k�hE�@误Ds��������+1	���q~��~N�eQݗү��"` f��L�0_��&I�&�$+�;v��$i�{�Vð\0q�0�a�>4�iB�.|�4Gŕr�O��\|с2.(��PHU�x������?=�ȋ�� B8�c|�KXb��<A��;���/�����c/X�`X<�����k��LX��$�EU�hO?� }�L�A�k�ˡ�@��I����2�NΒ�B���Fk:r��y�I�X@fCo�ɇ%fw�܅���A&/a��3g��p������O����	(�@;�2���V�-��A��L��ǭ|2��>l�`��t�.�m5&��y�i#|�9�D��v���w����~���6t	\��L��|���0�-�d!Wq�0#5
9B^i)�/ғ�0*;j�q^��}�D�K��TF��SȆ5NM����?���&GBޣ�S����H"��[0yM��{w�Ų�T���������@�'�4�[IC�����5A%9)	�����I��u��g�\{��6ap"���Y^�]���#x�WO���WFp����A�N]�J�N�OL"��.����Ǥ��(�}���u}h[O�<5w��[����^4c��L^�(����Js�Fi�$�,�R����ag���YФAi ����؈� i;X���~N�	�8>�X�@�w�&r�����A������]�#�$h
0D%I$DI�� ���/�(�%O&R��5�����*�GfXf��T�<�="@��A���9��d��D�:�:��J���1(��A=��[ʗ�0�s.���^����߳�v�T��ڡ���ˑ8�7C���Z�rnZ^�+��I�u9`޷��.��D�
�d��E�Y��>��+<����^��/kMC99�&�]���̼�)�M���1�Q0�t��pz�A�LTS�m���\(7����r��U\l�b�(�k8:�@,5�Pw8ҳ���(o����9��A&�C@������#`X̣�/����L�ء:�,~
m�m��mgI�Ař�]�%z�www��?��%2	�	�g�]2Z
7�sI���CI�Ȍ�؁Y��q^V5-���/I!\���DB���L��B��.jC�,݃���
G��\�<++#r�*iK��R��ݭc">�'TS���c�7�p�`b�䁝�J�@��A�UN"�<���<9U�����p�$˼,c:W�8�6��Za��C�'�:?(�"
�>���B���ε�,'4
��h+���&à \�(�
�%���O&+��Y9"WoB�˫"g'HӁE�)iORj�ʷ���1���z""��c)h j�8�G���?A&��(�5	�ťb��6�An��^�~�`��F �ڪ3c^��靪O�Gw�����|��(|���tEG���5S��;w���T�|�1u��ބkWv���9�>SOF.';��="��!�j8)'N�6��,�
i������0Vy92�r����B<��Fi*_	��TH��cH�О-���p��1f&��A�ByN��ƜT���5쀝LwbE�z�5>��j"n�;� R��L�ҊT�P1a���~�Ц��*o ���Ͱl0qB�䡶*�I��/��ע��PM�C����>��߽g��g�	��=�����c��~�hHIJ#�LjN�R��ɧ��c.���?������x�|
�^
��x��{��M�]�y�i�Ά`ÃmGfK;;;��]�!j
��E�|�Ep���Zu)gf����d��d�J�+��˅.�K��N�����!9@���ҭ�OL&��	D�%���K+A�\}_s���h42�h$hE'�΁����9C���(�,�c�6bYabA��(��x�\��h���GZ����
�u�~���v <��bg{.>���0�x鑦
o@��T@;���$�"?���7�[��O߂_��W����z�ut�駟��6��꫞d<Ӝ_m�������f_|q^z������	ݣ8��旎)�o�����G���W_T^#�	"D����E��8��Î��,ڳ�O�:׉��x&a2�Oy�X�MB|��(Z'̬��#��b��Is'�ƥ�C�)���W�ԇ����&W�����6V�O��c'W�j���-�@��d�9i���s0,!F`X(&٪���'�nPtD���y�w�u�{��(o��S�{w^x�<\��'^?�렕y���F;AaNj��~��a�TH����j�^���W��6�����H�o5�8�o�;~9K&���_���?y������^��k�c/	���<��…dž�>)�@H����]�<|��G~�%��B��__-6�*BtS�Td}is�؀�n�E�p)�V�,�;Y�q��
���rmA��[��t��ķ�T�G����fbPk6��EU�����Y+�w��}�L$X^�X0�N�􉐝�ߛgV��H�Ϡq�-o�Dd���{p��F|�v��iS���̛�j�F��wH���߿l���}O?�%�j�ū����o4Dọ�|�;�U����߅?��?Liܻϓi���3_��Һߐ�/"���?��03��`�B"(�����w~5�E��>V�R���C4��R�������!����V�&9���M�<��RN���,���C��{�{�I��\n\��U��ٹL�h��C����3aZ ��4�3�fb��-�h8������@�}}��P�yS���^\�~�<��G7�_������,�@��1�g�H���F8��	 ��������?��V�)��w�k�t9�����Z�Pp�d���^KA�}���`8I�r�Hv�T�V@�/A�L�,;�c��u5�OM�b@I.�Ҭi%���cz��P�U���N\b�fM�X���M��ʊ�5��O�l���zwg��g�P׍ͼ�Yp����%䓩��Š+��R�F ���8w�˴�Y��v���x�<��=������4̾��#��ŧ7�?ĥ�/��N
�u�K�P�˾RR�$���~��tL��ի��k��jo���f�N/�1�
7Q�~%pB^��A�\W�^�kׂy%�q1.GJb^{�Xf!��G�˘��x)ݢ(o��4a�q
� �F�H"y��$+*‚�r!K���e��1�20�`{�����A�@��T��ݝja���aoo��	�1�Tw�'10�LLD*E�R�(��
P��)=狭vD�X�ʱa9�|p5�Y�X�_c���u��z�&�2^_>Ӗ�̧��,x�d�.�g:ܰr#t����]�Zkǎ{gV��{���a��
ln��O��}�!�S�,����Y��/Q���)����|���v^�?�;�Ў�yR[�
�e7ͪ�ڪLGF�t����O��5�~_xéB7�8�L��p
>�� ���D|!�p�V���caU�B�EP1�<	��p�Y�@.�7.5fp��wP�����T_�4-2?a1 WE�x��S����}6r[�L`}}�޽����v��!�.[5`�3E��_Ʃ�+��>e����Qe��9�`5�c���w�;����_�r��t^�?�_��j+�2!����)�B������vR��ez�u�Nx��FriU&(6�s=yv�+�3HkȽd�	p�0�J&9��e���
�]ޅ���Ex���7��UO4���{�n����}&�񍫻Ϳ�qk�&=/�)GWy���+q�҅v��q�ڇ��&{s5g:i���9����A�6�q�FXL���b���p�;H�:!���y�N�� �]�m�5�<A���@V'���u�L6bB��\��A��"ט�X.6��EMf�|S9��T�{k�y�_hrw�Ʉl#=q��}Z��
�R�|�zIEΕüO軩)�$u���~��5M>���UE�����j�蹎Љ�<����a+�W�l؝o�L}���:��*���C�����P���:L��a{��/9Η�?�{��R��ˏxbAq72��h$���O�mO��u�{���p�6���2=��.��m��FS��u:'BA��{��;S?��z~��ζ�͡�?����|(��ɑ������'���m8�x�$���[p��eo�$�B���H/b�e��R

a_/w��2I���6�y�edDaV���2p�b,�ɻ�0�`�Pa
1P.	Ԣ�L�"*M�S�u˅�7�no{m��j4&���h�~E���"�LG��P��!�mV�榪h/P�i���ն:��㎸P��������:).L'���/��[]~�!a�a'��/-�|�}��k������rf ;X���p<����ڢ�m��7�Ï��jʤi�U�>z�������w=�Ov�P�i��9����z���k���ĸ�Ǯ{�zM�������aE�O����|��ܻz.����o�0��!��"������ �D�V
R�V�W�����`&��5Z��D�4���,���զvz|�fK�� M�b1Ks$5fS��|��u�Br�rjZU�A�&%ՙ��ػ�`�j�&��sg�9f�s���-�D�1�ڧc�����1
��x���<
!�%��9��u��Z��.c�χ��3���?���5��y��u���?��Ї��x �D݁R'7�qW���1G��o��p��aL�v��5?���Q��g������U�慧_���_��aᗭ��y�W��a�
}�ѣ���]Oh�;�t�x����+�3m2��y9y�����c�L�ŢX�H��"�$A�u"�� �Ƥgڡ���ruE�u���u43
��N��P��~�+5�E	�#(����8n��v�v��tDZ
��HsRM�y�l���<���K
'�[�+��@`��QKw �_����/�H��y��#��rA+��l�:"=#;��C_��6��=�Z_�`z�`q������0Mܲ-&�WY�i��wm�w���N
�r01���(k��<F3f�"���=����F;����J�V��y�����L'��Tsخ�s���"���qv��;�ͦ�l�S��#͈�U~Kp��]����7I<8<�����1��D	�3�K@=�^��~��FoY#���\��@n�0��d<�?���9'�Q�A����IFR�TXC1r�di�(t0R�����H��U�'^{�iҕfL�F�4d��8f���� ��qE�o��C��Eƞ�Ķ��A����ӎ�c��IS]_���҃�a�î�2�i���<З�ya�y_�!u�aj!Ӈ��5j�#m�i�k�>0嵣�ix�
��W�Zfm�i�;~���wm�wxhXӥ��(�	8�)�%
���gx�Oh�;�a���o�\�݀o�A{��n�����-_��8,9�u���̕�t���ՉB:%�	@��0�ok/�KG�>Gr���"We�H�*R�>c�6@�D!��:M��~v�S�d��~�~�������肍Z>��H0�P��H$��0���b�dw4Zi~H+2V�F^�
����T��]��^��7�%�i�5l�A�az�mг/Nt
��1M�#by�y8�z�&,iX����XA{
|�aƛP��Dm�U�Ia4�h������~�_������(���ܱ� -�ʹ �O�\n�b�Rr��侬l7'4�zahwJ(`�f���52e���l��	M��*i70�s�y?��YT�b���7��@aWVV�f9�f"A�1O�UÃ��A~*-�QWg�a���$.
��y�xS$����`8>������v�#r��t��%�WXzU�����s�"��	�K�*k,����30�����9�K+a$
�F��k��(��@!��"��]��B�N��r}T�S�F�$�#V5�_A�&��PRQK����u����ulX���J|w��Sj4�0�'�co�����Q�m����C�:��d�1�K�8���r�0i���ș��`��������G}�͗�5�PxQ��`c>�uApx��o]�%}#���M�P��뮥�`"����L��h�
�9�˳*��1��*	�B���d!=�e	��t�>�XeZ�G>��$L�B��.�d��l�[Is�)ժ7K�Z�@o25�@!�o�a�`bA�M�<p���B�`XZ8��5�6~��6o���?�;��P-g������{ �=+��Z�ޛ� ;z�D�)�2��k��8�.�_�:8��B���VP��c�߬�huS��S�����p��ie�T�A����.r0�]~��0��
U|X�J���Aٮey�y����wx�VZ�#DV��K<S��8�e8*��f�������t���������o|�@����w����O|�W.�o��mx�g������bq�q�(H���r{�
�Y�9�?+"|�߈,�f�@��h���IP3���*
aZ��2�������{<@�,��B�	�>S�ʣ\����sy�6ļ���Dq�P:x��
�RfN��`=�6��xvs�2+���.kKڤS�Kųs9�.t0S�R`�� �B��AE�7�����n,�e.]z��;w�#�<���|�I\�[���9��w�}��ˊ�2�I��3iA�L�m0�d�>-ȩ�#�<4�aa)ʹ�szP��dk/ˣ��P����~��8d~���=���*\Y���ښ��e�Ւ%�W]A6d*��;.�K��<�~
�c�{N�3ŧ�Q�]X���޹v��v�����:�?lӆ�>)Vj�ؾ�NY�H�LfYJ��@��t�]Y���d����gΜQ�ׯ_����tL�x�b+|��/����t����knX`?u��y�>��;L"�Ν�ڇg�}�y�݆8��چ��~����0'����Ÿ��<'a~������9�^�|�x�@K���A
�ip����l�S"���aF�"	H*�q�°9���% S�q�7�	�?�vN=_I+����iX
����XN��}t�a���lz�D'r����1X�xq�=���qȟD�`�'a�WjA����O�&�w;o@��N�@,�O$�F��	��ٸ{��c�_������?�����ڵk��/�[o���?�?���o�E�����+���?������.������}�ǣt�<������>����N}�ϥN��+���eǹ��|��t��o�¼����O��O�4���A<�n�x�a8x���/_�[�n�J��W�C�NZp(u�pR�,h��I�u��&_�Bo�E�%O�ɕ��4K�\'����Ԡ-�	�b��G�:����/�vbts4�y�$f�j���0�I�R�ǓW|*�L�S��iX~�	�	�I�6�2@�$^|��
 A��ٳ����͵���Oz���"o��vK�s"
ׯ_���G�g�g�\�pכ��|�I(;=�C�(o�rC��ߠ��WZc�i0�2�	&<�?�La�|r%��b�6.�Z�.AT
ŅM��e��@�.8�$�_'�s�4�W���R���S��V�z�=n�R:ל*k΋͘\6Ir���l�
s�/�x�+��j8�7�H�({n��8��z0�ߗ��X0���'t�*�[c��gY�(�v�M����ā����u���E�qㆿOץI�L������u�������a��ʧ��G{���b�~�����$�k�$�i;:W��M���
y�En~q�I�0��͡4��>�O�4o��E����tu�LrX����H�"9�-)̗
m� Ĵuz�D(K&L�U�vL�F�L2pYk?Y�M�3FL&_)�dV��'e0Ѕ���b����]Kg`\��\0FmhXJ���x���0G��$���m�c� ��'�/�����]8{��������g�՜���^ا��������N Oޓ�1�{���8���/��j��0�m�_��Ƭms���T8�/ڔ(�č�@�;U�!�F�C����p�ַW��ռ��t��t9ۜ�h�#� dn[��#�ZJ�8��n��rU�8֥M�rj�#�8qQ��q��?E����~N+�@I�#Ӕ\�u�t��R�n]C(M
�&k�w��G����ݟ�)llR��{����xۛ:��e������OA
��Js&��sG��2�����ǟ��4�:�x#�Vf����$b`�s�����{�E(��:�jqk�%A�eK
��l��i��YL�(f
C�Ŧ�g�}�5���@���?�6Ci��=|a�9�,gܡ0_lo��I���g����������pD.��]j��]��Ќ�'�eIU����eE"$�"X��ʙ�x �6�L�P�*\�Q��N�Q��i�c�\;����!k��
+��I��]l/���
�RL���n�$��ҚW�}��__\��](xC���x���pH>�?�Z�Ty`���YΫݎ�I�0���ML�7�=�&�i���Y�W[
%��%�@b0�!���_��S���g��$T��`�ү�$֪= ���rt�HI��	%L�9O�K�$R��o�nD�%e�VIe0��y�;�ۂY�(���.��5�,�-��$Hs(�t;��!b�<a�\�WW�������!?G$b����%�G�$1���9�D�q����En��Z.g����k;�?��6��*�<���ꤌ�{�|��s~\��a����8�sZ��6�	+0�L( ��9K>}��<��;�v;
p�!��to�����b/�K��G0�����@�	�#<i�?�v�/~���y*�%q��ՙ���B��w���RP� ;�"�E�y�ѼY\�$�eL%4�(‡n&k	je�7/�� �8�\>�5r�E�(�[0偑y-H��r0o>8�g+++�~����9���j�)�Ztiibu�����*ID�)ǰ�ؽ�2��	����~,�P�W�vc���#��0,3�&j�A�A�^z��1Q�������W'�
'S��e��[sBP.���yHZ>u�dI��!�S����
��]���]AR"��x���a� fXt;N�%ɺ'2%��\�")<�,H+5 �h�M�<as��jW��҈p�O���I��/���Ũ!�����Oa>���a9n/� ��%~5"�~%N�+0�z �0O�XX���\���~`ߖa�W+�'�k#@��0�Ө�pZ �Å�tv���L�͛7��g�F��ӵ��֯���Ή+6cQ�S�����b��YID�(��c�iԜv�<��4�F0߁�4I���?����A^q��Cܯ!�,��T�r{r�rX.���C~�l2��(,45����*��Ѭ�k(���|����.Շç�$ۡho��SԼ�ȥ4��^B4g	ab�P3�S=h�n°�h�^���†��n���cD����`�p�&\�|x�VB�����-�֔	"��"�*b�ǫ	E��lxA]
�x�>M,@e���q#��|��7qΥ����	�K��N:=�D��hu'�_J խ�b �*�S�)�!�]�&LiB��ը!�xMʪ��k.��"���$$��B���Zp�|1kaje��*�
'Q~����3�4e�g�Y�> ^��]�S��K?hZh�b
��2M�(mq�|�+�mѕ�<��!�❪ƛ���vsS�+�y��\�,���!�����_܂O?�4�x8��:�<[�z=��L��&-Y菒� B�?�+�	��tFN��+:����HE,���%���5�w�;M'B�K
�Ƽ�s�<F
�2Z�iW�cHj��m /-�����k��̞蜈
�fB�ۣ�d��"�O�G�9���"�!�NS��1��X�>�5���2-"�u������N5�� {ʡ�N��(mq�|�+�4m���i�q�g9�	uw��m�c�UY�e
 e���x�_YW)^׵�=���ᆤ�5^��)�Q��a�fܟu-���g֕_W[��t'��wOf��۷�'W����*>#���Wo��C#	���u�w ^C��QH��널�5���YKQN] .2�,trȎ~������S�GIC�E]+�y����半��ԧ��{Xp9���>�H��9�C$e̚�q ����'O���z��ש}J�r�|��~2�|^q�I�!��	�	BG�7�)�ʼn�ހ��!Ȕ����b��/~�p-a�ZZ�&�/�2�I�̣�S�*�S�ke,���ku�"]����]�@�^�퇐�Z�ГG�s�*��~�0!l�m�oi�/&�}��-����^�3-m�T!Ҕ��[�W��0[��e��pE[���U��Uʁ��.x�B��jO\��M,�G!ߵ�ǔgPD���a��B
���iŘL��'�
L)E�
^E*^NĤ�MQ�)�H���|
G��@���M�|��L���R�Ƈc�GqH��BF�N+��B;p��0c��M�R+��#Bu"������[[������Ӵ�4R�������fo���5�w�ڐ�7
�}��ibI��(�cp}R|��v��+��]aa�08!�IǓ·^��W�iҙT�������Z�i��j�*�$}�����p�4�+?#B^�2;��$����^��� ��DĤ���j�]^���Z��sJ0���y�F�T.�"m'��v���\'я7+�N$N�Ds(6U�5!�;�+�dJ�ݠ���㶩�z*��B	�D!8[���w�?>�+я��F��K�D����*Pϳ��6�t�X0�Ό�CI�W����A��3[`�
��6��
9�@q݉bL���;w��?�X�q�}�H��Ҟ�+�z�R�Bp��¾$I����:�<������S�5����Xg���I���5ds&n�=�<�UXYĦ���:Ƈ5rQx�|/Lه6����)H\�P8��h��ğ��s �0�N�kͽ���A"~s���7����O���+��"B��*�C;}%wdr�A�D�y���֜O���� Sf��2<���	��<\�iy΂���8���F��s6G�3�%�O�|>�l~T+�[�cB���[���H�g�	q�e� f��W����p�f?�ܮj��8g}E��jYR��:Wח��m��/į΄#�
w�`R���;(t
}��>h��n�m6�"�0Z���MX��$��a����1��u�����&�,l�ua���\*��f�6�<����! 4K8ScF64�{�ƍh�T�*�
�L�C�<qf;	�Q�.R9a�G&��IJc1
?��k�*(��RI�
����X���s��L!	M5PfU.s�iZ�L�VB�ޣh�U'�_H
�ZtD�!����~FT�1#)��]G�=u�p��{��W�]��9[[�i��g���|,�AA�n�TˇAB��l�@y%w-�Te��bq��>�����o{��-�`2v��#�>
{�{���Ӟen}0�+r�@-�����ܡ�sQ��u��1���F"�ߞ���٤�!�j�8W)\��S��di�V^J��$�bH
�> �WS���7�BP�r_!SڞN0�m�ZHMQZ��
��]5ee�Ĺ	�kv�r}���M���zC$`
¦�k��b�f�y���6�ױ:T056c>m��*E����b�#�G������.�9_5�Ɏ��cr%c0�`0x����rkk�"|�ݝ� ���A���
�U��	M�#L¢�������\� ꘹�<���n�Z�w\N&��D-�%c�+��
�"4��煪��:rjGl�Z�`|�7jVb�}\��ò=Q���(�KD2e-���9KW2:�(i,���8N�6���I�ol�o�L��Z�+wh�kt�Q)ͻK�4���@�y|��y�H��6h��w�a[�C7G�",V�0���k黎�r�]���C�9�-a`�Im�W.�n�yWؾ���^u��U�����w�?.��w��
�
�xt|F���}'�@����Lr\9h�\�f�!��@*����ohR��� 
�ZP�
X�Zcg��!	���AZ�	09oAE���Di����)�J5Q�3�ܶ1�Jd���OV�Wס�HP�2HG�{;?�Nu�����HU{��!���o���z����8�l�'�`�AB�:�1�Rc@��Mv��2B`������| P�a\,�-�b�w�p\Ɨ�v�wů�%�B%N-m��:��'tc�}��1�l�	�5!y�^˻v�n��Z�]נ#�2�I�J�]y:h?�2�vթ�4���p�l�`��l{��,��R�%G�\��'��T&��� [MT��u����q����GL&����"6zZ9I83�0(O��_"0�I�EAHr�;�yi���Rq�s�@۴�4�B��KELm�i��R��A1�E]�\��۽N�i8�0� `�H�Tŝ������i���T�,#��P�;1��׆��3�+�%��y�aRy��fHӦ�=�fI���L{>��B4�'�eH�E�r��Pv�n{'kO	������z;e��VNfe���(a4yPR�8�`8u�	�����|�r3'g�Aφ�ҵ��Kty�e���	c���^�,���[�I��H͐&wί\$�"��t�=��k˗U�-v\�I��V%�"NAz�Qw���	#�����!}e�N�8�aI��\9�G��ٱ`�dC�� �3�4c���'�F�\]�
��xӦ�wny�����'M��eAN
���@)��ҭ�������I�Q�� 02rW���!`k]�X�y:i^%f�Y�!t"��t]��?������-�y��1��}����S�d(�5%s���M[$"5�đ���jX&t���N�Z:�Ҟ��Q�
�1�2u:)x�
��qP�,%9��q�~{���]ޛfL��,yv�W^h�K��s�z�����������2�+�7��6^W;��]Gi'��4�eĊ�4e��@'f�@̘9P�`�ږ�!gԍ�
?����wn�="���b|a&��F=͂+bj��|A���-�L7�h��l~��g���9Z���r�2=�,h3'�	��^�łYD�B��ᑎ�9z�ωZ�� 3���V�V�[�î�M��q5#��[,+7Le��
U<y9y�����V�4D����u��/�i�-���w�Ӕ�(��X�5Ke���S�r�ᇆ�#�/��lGcטV4Ы<�g��g��A���~{��Ù3g��A�667�GB}�
�*5p�m�}#����H~X
r��ʨ�Dl��CK����(�w�-I'�x�։}0�X�H�����/� 
�?���,{����S�T�o�}ҹ��| �T��I-+v�!��r��+�x��";wCj
nL��6#����ȉ�m֨ h��/�:����,����IIC�dRK\�%Hg��;'�p�2��G�O��0��2-�y>�eBa8v�7����q�~r
p�`x�����<��Ҙ�&�7�
k��Y�B2�&5.���LJP��¼�[���>��R�Dn��h�N��w^��p�F5�=�z^�P��I�PV8S,U&P�]��D-�`�HTN�c���D���:�EN�#X��P�@(�w��qB��Z����~�G��+ʢ�ծD��t1�C�k��,�@���ME'k0,+�����`L�`0Dm\p���gΞ�K�n߹�5�YF!�e�N)�Q%'D��$WI��+|d2 �Dq����N�)k�m�3r�&-��4�Ib��{n��Dp^�bN�nB2����P�DB���dm�J�!�+�����З��F��QF�H.��,�D^�D�d&�ݷ�)TfcP=6,o$g�3��)fgZ}�=�Ò�����v����hm�b�O�
�z�l 1$
����w!p��($����ۂH"ný�ݐ���q��
�W��rW���'iE�[p�fC��$@}C���Kz��*���G��ȴz���K,"R'^5)�!L�5҈���pSe�IX�o�.te��>������ŽS8�N.�Eҵ<�ӥ��"��b��86�.L�H��xX�T)�D+��vY�9��5r�-~OD{^��r�f�1\[��`�o��D�i ������ ��<1_NScE��Q�KK����o(�������Ө�/�:��)�� HB�<,�K��\g訠�C�c�gF;�O�Ki�y���y��L��u��Q�_Y��	�ƾ�ڴ���R��5,�@,g[
�^�s:�8��a�1G��/��L�lL����c0t�\�@��!'\[[��{#��ݻ0>W>e1M�U1�J!X/�KD�J�����E�!�~}�Z��|�FD��,,�v�K���ՓH�D�P�"L����K[5$m(UJ�j�H������xL&�_�@�A$�o^Kd�Eƒ��Vr�LY`�'C@��/���uU�j<��Ă��W~[�<�T��d�q�����b��=9��e��q�|�����.]X��)?��aR�m~���Kk���ky��9�M��ɷ�.��1)���5�<3o?�]��D�]�J�$��B"N��i��w잷I�>ja?��+��Ka����w��  �pl��qB��ү>���`������R�A�\�`^�4�^2MFlE,�v���V���,�_֯�5�&Sd��* 6S�>�(Ȏ�Є�L�<T���Ă����C@q�`XF�.Ӽ����k����G�q�����v>	8�[_�g
{ܘ�=��V�>�k�	<�}f�̥��� l�'eM��&"|r#ؽ{��u'�;Y�X�K���L��S�m�RI.P��Cn3+�@����gS�%���>���#uY�H*� fr/�*�ڑ�	�]���J�
�6�"
�
�35g��b�p��û�}�����2��_�ZX����nX.�.l�2��= ���}o]��!����=�8b۴d"%��b0h�[�[ ���=
�@)M�D76��&��ǻw��`o/��fFI��Z]��1MM{�Ӎ�O���bUTu3�]B��Tˎ��֚$���ڲ���E�W���4�w��&6�/�u�@�S�kO�
�6k�X_[��k��!��X:;�eY���
��x�h�މ�F#q�Q�q�+�+^K�OVo0��Y�y�d�����۸�d0
�	@��G~��O�nƵ���
���aM���_��#����'.�����!G9�^W�����M�tG.,�*I��HI�5��A	��� E��J�C�FH��h��b��Rˠ��9��@\C'�U�Jdô�bA>үh����6Q���Ay\�SE�Jx����/�����m9��˩�B�̕@�	�
K�9�:L��*����}��2L�s�2�s*�����W6��}mї�Q���YIk�g9M�00�~PG�w?�-?��M�\ơm1�7[Ô�)fȔ�r��bu����;ƺq襝HD�cѐ?�.���
�5�w��{E���>D_c����UK�>��t/���`��1$�(}��x��C6�y3!������E�&�c5�Cer��s{Ȼz�͍�,�cO�Cv(j�/��s��&���	��t�6��>L�b��\m|���}[D��n�4X�����f�Q��	�}��+l��{򉗲v��qgؕ\�p�k����58��j{,(���>�_���~&}�2M�}���AO�iҞ���
��G;
i؀������[{���{tm�2M�Ƶx�s�����Jr�Z�G`0 ��	bv��&�8�f�D�Y��m~���iDD>�B��jS�;wEY�q/H���Qݯ�>,� ����'��V^�\��?U����RH.���s%\
Œ`m}r[	�3��U�\d�\(����snr�����/A+:!�5A���(:_��+��6l�krK��4/�e�|��w�t��1��aɝ`q"�ˏm��r�}5��l#���m�~C$�կW����CX�x��In������o��m����{M����oï~����9xP@�7=\JĹ<�.a<+f����)5S&1u���E�G'
�n�E�����4+2����>�,,c5mZ&���H��Ν�l8B�4��L��O�<|]�`�ˋ:Ϯ�=6������Ař{i����JS(�ݤI���J�*m�KiH��
����ZE�EG�/\o�ľuäH����!��.<�>{4�f^���ߣ_^6V-����֨���=O��X0�j�
��\�A�x�2��ܸz�ej#I�;]�б�^l����iH��k���|��6|Ѵ����/�p��C4�U0J�1��V&�i$�/U���fػrq�2%����E��iY�ig0äo+=)b�H�P���,}8�s��6�Π{d뾹�A+�zqgg�/��q��e|5T%	��i9S]Ȗ-�kZx��N�&�#���
R��?P�~�W�H���J��%s).T�\G�+�h�pǥr8X]_��)��c�����f� L�D�Qq
�&sl>��8������}�U�2�{���=�ޤ���=J:�ޟ5�Ӓ�RM"���дg�Ϭ�C������V#��x3��!��Fȥ��Ǟ�Ta{�0m��Oœ�8�zz��f�ob@ث�/�ʣ�I���>��{��ɰ�i(�_�q�õ�c���IKvQ|p�pӥ�>�e^k�8G3,��<�4|����f�C���@��I|u��>L��~���	A�����d�",����˅�e�Ey���Q�<�\�c0�BDuD�A�w���m�p��
�?Vʛ�Q�R� �7Uw�m��c*�v���4�	�0mR�q�E�e�D��=W�lE˦2�
�ʊV��bc�6�6�������oZ�͛F>�h�cu�z�`h�ڸ0\�y��2Lw,�bR�p����=J:�ޟ5���"��t����c�EH��>��#�6�7��ޡr��r3k��7���埵]�}�qNi
Kf`���\�t�&��>nڔ~�L�fBG�]����I6W
��^umt��!���@^M�-�1B�l���E"$�mxMD�{wg���C[`K�b��U���R
�(�$�2
�t���@k	Y�t#X���VL`�h(j
���?�⍙��*
�WS����I�7�Y���z#���;X������T�A\�/+1m_�^�`0	�%a�#v�U��؛9��:��LJ�p
�c�;
��L��R��kSW��?�����C5�����JrMD"+
���M��Ϸ�;�_z�x�1�͘�L��(~��t-��I�I�A�H���&�p�;;�\}��xw�0O�����,k&i𫤕�A�/B8޻�(�%]o[˸�ބN�Ijs6E�0=$(�8~��	��\4��@`�.�s�7����wb�K�u�̔�8�.��������*lՌe��E'\��M:=��#$�%�E��A���%L���p�i����
��v�~立=A[�z靦1�fz��sKő
��f��,)^Pf==�P�p'���(�F�{�'Y��`�[�o�2JBḎ�^v~�&�o�52n�L���K��|蔗c�%��v"&�1!���%W��짅x�C����Cs��bö̺�k�3)3�\����ڸ�;2�T"9��Q�[�̝H���n��Q�E��Cq��`�p� �!�}����}x�`���a��4 �pቍ�$�JD�A��G&b�!IƉ�+O�~��H���?�{P�q��?l���6`a�"�!�XkE~to�������8�8s���V��$}s���ʦL' ��t^K0���l�cAթ�qȸN�˅t*�lV�[�IZy�T|���eJ���k�?���N�.��T/_�� ����[�S
ֆ���q����$�6��:��k���`c}Ó	��0��t�e\O�Hr__���[�6ܼ���6��_����W~㢺W�7(�I��“
)x��[��f��/��y��vߓ�����_�rF�TY�Ɯ!H��4^��+S~��`x�0�����D���E+.i�;�%�-���>W�V�wJB����.�����wz�>�7�ڕ�c�*�X�	Qg(�Vr��R��o��'R� |x��P���aaXx`��]&m��cc� V>f�z:�4��4��ג��O���1&�IvNw�ͱh|7�]��B�{#ä`���+��r�w+.��T�w'ф�|S@2k(?ڢP��e��,���bWI�v�,o�y��T�.`����IE�k���oR'=�VIa�;@�޺�C^���&��sR��{�]�.`G<y���5�ڮ<���t�ߴG�s��˻���2qv���Wv|�Ko\��/�˿z�ȳĐ��~�P�k�?�I@׾,���"�懓B�,�Z��Cؔ̌�/��=����B(�Q�DAP���w.�� �J�Ҕ�8v �a)-	��^r���~)�F�AaL?��Ʌ����0�⟮g�����ڊU�e���� 	�ґm�R�A-��6������
Z�H冂�Is2��r~?��+^�74>�<��7}��=a:���<���>�/&�J���[_��2?�F���j�_�r~�NE�ɲW��a��G�.N��l�N�,S����&Z[��j��\y~Pֿ�2��3��v�"�X�_���U��w��V�3!�V�}�:���݃�g��:*!��3i��[���ww�*<��'gϯ�S�oť[�p��=x��*iA��r��������.M�C�.�
�퍝C�\JQ��o���fR�"��-�� ]�Lw��p���
l�M���hH����vΡ��?��j?�)n��gJj#8,��@�a�?��+��E���=0@�-;t;ѭ��K��9^IN��%'oտ��ü�,�8aI]��PL���+��_*��cH#�����^TW�|x�r���T�S腲D���/��Mh�����_�M�k����P��c
��<c��~ҵ!�q@ܾt���wm�V�9{>`�g_r�����Γ�UKkH���}��s�j���;4NW3�e�3
q��ob��hx�\�֙�r��6��;,�'5?�>�
$i,}����$�@E��
sN+����8PDC�&���+-/z�l�a����+4�	��믺��X�B#��BȘNJtR`�ҙX�y�����XN�&�r���!�k*bA��/J��
K��U��'�U���`�5A�h�����@"� ���(:�=�
��ʶu��]�[�l�$L�^���k�d��Mc�|��2��c[�iA�}Ξ,����lnK�.�8,#*����%P	pR�����@������x�V�a�(�F�l5�[i���wo7̂��=mr�Bs���;j��zbS\�δ:�bS�_wb��ҧ-���v�(ʀɟ���d�>e�2��X��
)uu��_Mq]�SxD Vѐ�ñ_Y�p�Sq�7A�PfR\-!0٪F�e��`�dc8a0� ȎD�:e�:U�I2b`X<f}㨜���?a0��Y2��3Zșu��!�sP!�!�giu�4�p�I!o1�	��eZ��s�6��w���Ӑ�CPK��*��*�@8��_B�$Jm�����&����Q��Nٺ̪�C1c/����H0g�u�ѣC|�gs���
�d{5�|'3yZ!�D,�a�<@:XGr�E����h��̧�k��w��cX*�X$��A|E��/f-
o&r�a�2���CA&ĨԶp~00>�8J���6}Puj�#�������D��w9�8#չ"�VD2�/�֐fɷ�(�ݬ4$bg�;����Ī���5�O!���IE!�f���c�S&�9���8�P~nn�m0e�ٲ�.	P뫤�����0+����-q�MEҒ�P�.��W8�~���Y@�Z"��GLi5B�p�ox���~��qKUa��4��q]��)�Ձ�{�q[�メ��v����ߩ�K��J�U� �&�6��.��MT���\��r"��A�p꓾~���@k
AV��&ձN��
M[[��o8אZ���P��-|XxW3�h�P��k�����Y�Ү�1a-/kʕ
�$�ʹX>��G��>�=@�r�h/!Y���r19=�~	WI\dp�8@�et!i��X#�	2q"Gr"r�&v@/�ͤog�je��t�A����7L�1���[�[���+�>u�&ώi��گ
���[z�b"�����b���Շ�g#���f�1��Ɛ��b����J9�Z	hc3�3��ݝ����Ig��,<��I�r���b�=q�Kz���v��ϑ0��4��4-HG��1�57
�= �����^�6�ue�n�9�&����x�RyD����ڑU���L�M�'A�ƑLx3,!`��%
�!�i��Vr��/̄iaȝ[���#`�a��Q1����
]�
R�QC�=�C��~t�MR-���\3���,n���q�8Dk�I����v�3�W�Nt��<�%��U�\�.��T���ʶ*���4���党BYx�;�mG,K�����s깠�"mhǹ��8	�6��I��w��$#�.gu�$��l	:g"{"(@�7��7��Hz��>��g^���7�*��J�V�t"��԰LX�z���sy�@
ǧ��%�ȁ����p��G���;��{�կ~����g����ڵk>�s�=��5��?��ܾsǧ��y�|�
<��Ŕ��˗}\·@a�#Mx��'`v�
�h���btM��8�w���P#�d$4�`?�v�ID�џ��1�����qg�[�qiK��k�ae �\�`��=�\��s"}5��R�z[9�^<]&U�T��N�b�.�<9ps�'�ze}����vM���밶����.�JQ��o
)h;��JXE���7mbm�J�6)q���C�����	���˄,��i����k�#H�'��?~�{���s�v#�?	���o��6|�+_����v������?�'a����
Ǐ>�w��yB��)��~�+�^�G׉P>D4�[Mt���&=��a���צb�w�C+	0��a!��0�3�aݾ�P��}��F�o�8.�ԇ{�?QI*<�X]�f8gΞ�3g���Zd
.��'B����)#���qH]
}
SW��*j�b��s-��U��0X��8�Z�O>��zCVWFP�H��=
�S�T��^C$VWW�?��Ë�Yi��Hza;�!º�
�2�L����Y� z�L*`f��Hs@�����h�o����l�m�Y�����U�~���$lo߅��L\i�u�$�����>�/K�裏��+
i�jCL8���' D2B���'_�$�CZ":/^lH���W^��ی��ڵ�M]�}�]l�]k��1ť�D⨪tL��&�W`�	�ۉ¯�o���wo�o�+�������]2��w�O��@�=5=ǂ�Ԡ���<ѵ

��,�I�1�r�P�F#�&
4
,c��g�)l�@+4y�mG�2�������c�nw�F�Q:jr��JL�<Ei˾F�#ϑ#�䔳4��*H3�d���8��dh_���H���ol��ԝ&��T����Kg79@���V�_^6�{�k�8�GN�P�f<�U�l��;�e��p�a�0-N��_T�}�f�i�K�0�ζ��ɏ����Q���J�H %���^�;�w�}�R���?o�g�}.��Wv�o��Ν��^}��7�v}^���� ���Q9��N�.��C���o~ӛo��g?�W.]��M����LS��ׯ���ߴϯ5��!�RC������ݴ%��o��o_Jc�!U�,H�Mר�������"�����E�0DJ����A�/���3��?n��׿>�rn�wkeeԚ�sb�N���1���ڿ��Z�Rͳ�W�"�p˙��C-�
�;�p.�'�(:�s׵�����g���""��;�;��w���gMA!򊉳DJ�d^��9�xi��.J�|�K��ՇD���-�?�,e��
���r���u�������_}��K�X����&�@�Z�k<=j{O@���,ֳ�\�2�5�ǰ�U�1��]�bǦ�ONq��z��+>�&�߯}-�j���+͊�g�y6���U�%��c�[�f#0w���'|8���`C�U�v��,!$m]߈�k��N�
��O~��Юܓ�_�	>
ċ�	7�C=�w���3ψr�(߻w��͛7�`vޓ��|���o�f�fni��DI��p4��Vt���Xɇ~&X�,<�5���)�9ak?q�8��,���i-�JO\�Y�5g�G���{d�J���
%4�¾��Z��II(B�1%�P����Ҳ!�R�<��L�:6Z�L8���R��pY�5��~�HlA�����,Z�W�c
��-kr�y���B�W���7�r#U��S#s)�l�C�k��r�L�����^!���H�I�� 
'd��$if��җ��hi����s�a��O��K�v�O>�a������;���)�C��	������s���3�&�!�b32�%�ϧ�~�I
�N���˗�ƍ������DӃt�N�F�{r�7~&��Nh�p�Jx�ׇ3����ߕ��8dXt�j �^c,�6���Z� ����aӹ��#��'H��<
B�VYR��+�U:��4T*N`0����O�<�
mD�$I5YҪ�0���T$Vi��q�\[�P�|�����&M����/�I��F��>����e��X-���8�p�;�M.]��Bvl��OA���kI�ݻ�U�} ~��4�Ќ�,m�5'�dɁ\60��I��`xH��|oj޺���
�	�"�Ӫ3�h$GZ��2$���P.�����%m�?�����vw��v�t�2ԕB]�Z8��Q��E�-�*�	#)�r0��fR"��J.�
"�J���2W]�1ށ,��D;}c�G#���69I1�� �r�a<����5�>��>=�&`�S�U퓵A�<r��@,X�W*�@켍�NJCBq�O8.�
��l�l9�'�Vq�K�J�M����dG��(��Dg�{5�;1���_��E�G˼6$�`?8��ō�ʊ���K�bs�<�:Q��@�ת8�[��P+�lߜ�6��r��,���#���fuE��/�շ �A]Ŕ)��0�r���d����[��΄a�ב�'m	u����&�,l�l͔H8u}���Zc���<�&k�3Y��
y'�̹��A�+��#Z��������F-h�-˕eA��v�v�)�F�\��"�f���oҔ��:��tO�	yӳ��z���[���ǜ���	��(6�'�Ɉ�~"[iS?��3�!&����cs�z��\��]ڇ�$�(�g-��"�����H���5D?	U�x���!��~b8�0'���-gT�@[�\�ɿ��.�گ�i9lg"y���!��
��Q��f"��]Q ��Ӄ�[�a&
qJ��x�Z�B^��CT�����;>`�F4��}���h䗲��8�%��������\���KyG�\��$�Ԡ���;4*������P���qFi�,�[�"#MLR���Ƀ�#�M��?�Y�Z��O��U���7m���[l���T��p��%�-�hh'}Y��d�P����@�'7-����=�Ì�:M�|H��ȳ�J4��EB�4ؑOΰ%�朒T��-��YM�K�9W������6�{��!����8eǓ�#ɁHT��Pt�a2$�합�$J��C�'�y����b���U��k,w�n��^���!EG����1	z��wc;B2�%I���7��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0����1)i��IEND�B`�PK���\h����%assets/images/settings/plugin-uae.pngnu�[����PNG


IHDR22?��bKGD�������wIDATh��Z}lU�~~��^���(E���)�,�d
QK����,�YI+́.q�T�D4�LL�Eb�Y�2C���2+�0�5j��-$�l����^h+Hh���}�ǽ��s���dٹI{z�������j���/���Pp))���~;��zI�Jp�3$�%�cS{�_^wA���ɹ�Z
�u�~A0��o��-���B��t�J�c���� O߬O���R*@���z�2g�����|��\��
�j������J0� �>�X0F�%�K�E�>�tV���4�5*ֹk8s�� M�,�9�pX�k�9���gQ{��e����B]<LB�t�y+��1`�g���SJN>��8#����~���gv �<�P�
��JVQ�[+�o�MK�
с������ikzV���B������VMI���v�E������n�IlW}Q�ޱ���L��[i���V
�ئ�b2Y�:eX������a*&UwZ;M�Y��e�S�EO�e_��!��c���
{�8k1R��MўG]]�s�?˥���n�V�d
�i��(e�]{+��ZDJ��N`���h�E���d��	��/m]k}���l�6����4����m%A�He���WHҲ!�YH��V<F�+k���r�*�F��f��<dlL>0
���w
HH�<Dp�I�!�UNA�	��Yn%�y̩F)�:��`����X��
�����?q϶��k#�O��6(��v6~+���ݠ�]���Eb{���O��;;��%������y�h�58�,&Y������߭k����{�(�<�Tk���:��8³��#�N�rEl�ew��bP�	ţFi��G0#n�}�uӤSkn�{̚$�Q��G�
��dBޝ�Zĝ^i/mf'�X�v;��Ӱ�e}֨�A�0׻5�?��[���|�Hs�QJ��#�(GM&]bP+t
�iL�z%�T�
Թ��sn�EsAĶ�YGQ?1�(�"ɏ����~�Y��R@˾zf���e/��By�P��d�����]�����;��]�F^Υ_�"�gotc~����]�0��5�&%�կ��=j�s��Q=�v����8$	ůL1�����k�܅�!�Vk���;�u�Et�&�Y�W�V��#A�eQ�ť�$1`��(~�c�Y�p~=ŗ^��F�o�K��^�����4�� ���_�Y���,��s
�
���̆�	�z�`�_�kZ�z
?�.��#��>���M_#�o+l
�6�G:��Z���X��}X�*�d��)Bn3�
b{-��֏¯t|��c�X$>�C�"]hL��mCN���-����"DK��\��񢳖k����5S�vo
+=�9���[߻�n����i� Pf�d����	��B>��=^21�}0�O&8qM@r�J��z�(�N�rB*a�We�ͤ�����3�9��_�~/ZH�����;�Е��(�'6������0!���Ҭ�*��?޹ՖEa2�
��kJ2L�bUqb�O�]��xƕ��5#�x`�t4�iܕi�>���[��_�~(Vc�G�:{}���d�q��Y带F��|�c���%#��Q�׍����8!�}��/�z>��E�a�d
@}�c�x�U��h��)=��l�
�U'f%F�������It�1�g�;�|��h1��3�Z�FDC�a���Sݝ��>����ĄL-I�OmrQ�`ǡYx�%��Z(}����=�G��P�%>wv^0+��Vi��� 7���
�d���L�������K5�w�S9��h��u�h�S*9�`h���3�c�5���y�(������RE��$	���"?%�S�?����#w��Z��i��IEND�B`�PK���\�`��>G>G#assets/images/settings/build_bg.pngnu�[����PNG


IHDR4�4ʢ	pHYs��sRGB���gAMA���aF�IDATx��	�%�y�}��_��ަ1h�4�A�$�2�b�i��<"�X�0Ǣ}lY^R$���lY9���đt$[��X�-�$��8�p
M"zH`��Fo��ޭ��ϻT}�vi�v-��nݺU�>��<���m�_������h�$���"p^˒���74bڶ.�h�l���o�ޅ!m״yYBS� w�Mڶ[�Ǵ
�������y|8�,J�5��k��5p~E ��fXN廸�'�}Zzo���D��-ӱ#���vtl>��t`�y �A�f����+����iڶ��!w��k��ʃ����{ʑ���ua<
�
��a�eC��Q�����
�|���8Ǽ��p.�[��7�S6�h��Ko'^��퇴���#�q�a�2�/W�a$;iJ�t���ƅ�:h�����N�9��m�A]�y�� ��r!G�[`:��YO���B���Ǵj!��h��zku޴c7q�lI�a�.�G�EY,�s�|��xk2q�ۄ�7?�k?��US����t�t�i���=����K�r-�����j5�u��7�����aB�ϱ^��{���bٴ;;;��Kg�~;�7vVc�˶]�����3f�ҩN3z?_������n4o��$0��?���m�)�C�pY�};�������lLޖ�q�t[�7�
�U�ks�={��]�,��N/��ݧ�;��[�ׇ֯z���i��䳱|pp������}���>�>GtOD�=�]���S׎/���I����1g��j뮻��a}���N�0pׯ��Ǯ�6;Wi�{~�����IL���ķ���&osV�l��v���|v��K��ӳX�yQ���{v_�]���g�]����h�����}�K�MޕE��ko��[v�Ύ��x�
]q�^o��-ߘ��-�}��_�yGo����׾�w�<h�-۞f^{����1�okm��w\�owc�6�8���^�/A_���{�]o�wi����{�r_�{4K�u������Z�T��od����ۻ�Ye�s�^7y�~��ν�ֹ�-��h۝&�{�F�����*�.��O��=�mp�.������>
���L9{6а�e�
f.X�;�����س�?�h�=�,㹶�}I�hk�ʨ/9�j��s���B���l����>(�u�v�uz*s�<@g7�>N�=��H��u]�Hg�€�\m��1u�5�>{��e��h�dž2�1`o0��Xdc	�9��e���u��^�el������^�-yGƼuw�9�4�`�%�������f���0�����!��uz?��7�؟Ȓ��n�{_{����;���,����ëW���,'���|�/��U��W�a�>���{��ɏ�.8y|��}ϗ��È�v�0[S�9ض��d{���`[D��*|}Վ���62��#o�a����C��d�q��>�X���>t>a���n�m��ʃ,�ڕ�cZ��a8��,� �2Y�D���7.���O&Q[�u���Վ����� �ɨ��2��4�VqZ��0���u��	.�]E1~_���@�����.ߨN`�V�'#��Vj�j�_��+aަ!�G��n�x�.^{��]�61��k1�]@ǻ�����xׅ�'E
��QrެV�o}׃;w�X�oR��h�D@�b�w��B��l�^�oI�PA��qJ� ���l�w�-Hk�w1����d����K�Y�e���^�A�=�ᳶe��ul���2��A�f��>��j�n�m�f@�����p�;Ђ#�zC�6�Y-=dy�`d�C���@�o+z@�{��"p1�{�҇�?K�=�]'�ĸ^FA�� `��(�メ����A��%d��@��o��[���G]�i]��[��Td�4��
nrZ��
�X�[S�kۢ�����Љ,w�G�����1��5r�~��vep�)��y��<p�Al����/��زTJg��
�h������m��
��l��Uy���<��`�A3�aY���/�aq��Ab���g���f8;xݾZ?����M���M�a��3�ȼ���@�zfl�ћ���1}Ñ���0�1	�@_a-bl�jd�Š�Q�����_,�0v �WAΡ�-`@��������!/O�[�{f��}�^���,�ȼ�{o�C�P �`@ f�1�I�y C �뜀L����n��t�M0бv�V87�����M^�:1} &�n��f<b��o����}��yx�
��&��ld��È��V������܇Wuw�ݏ�u߿���{_��.`G�:���1`N�߼�ס�e��|��uԎ�u�p̙��>�f�춎Ή-o9N|@��~�f}�?�wĹ�n�L@�'ї:�(�M�KI�D�C��K�#�0�A?�1}:@���f��И0��a"N	uta�	o����g���1
��.����=�̱C��Ӽp��tx��D]�����;Yt�C�K�0?{�>���w4�K�³����G~�����_�7�����o|��P���׆O.ξ�|�����(���@',
��6�D6�Rm�s�b:ꮓ��M��;Q�
���^�	0�h	T�$�̳��i��ڊ��!��`��l�`�Udt�'�[Umz~_Y/�=�0��0�C>F�6AIFcZ��CwI��,����Zʱ��������Yx�lϔ����8����_��eevp�w&�&�ڷ�}y�d_yw�BZ���	6�"�H�$]+���K�� �p��ú�/��0v�9�F;ֵ�odAx���/��#�G�O���?�h���	�>�q��5!�8�i���WMRG��s��d�F����0�����DO�n�,��L�W9P�p��?mc�Z������_�_�E��L�*D62]������㭼��]e?��L�K5!XF�|=�U�'�X�`1
���l�(��j�>�n������m+9.�OL�΋:0pW���}T�`
�${V�O��z�O)����� �C��|�V�4Mt>��W� �N_E�.����͠-��E尭U�y��-h��?a9؂Эx9tU�f#W�+GUC�t}��`�	SSD]���BP�7�H���� B��\C:��$�E�7j���>���r��p^�	��h��)��*z嫜:�1w��*�λ,R�S��&Ӕ�_B�eA�d��*%0C����Sz�1`�iʎ�<0�����
i� �τ>J�v�fY�MM���nE��eM�V4�E�eA�q��n�h��I�9���&4��ʺ���q�(ОD�3�rN�S>����GC��\@M�@�}�/���3��"��ݥީ cbL���MK�KZ�4)ĸH�����'2�WI���'4���L�V2bN/p
Wd8'�E[嗨�Í�{m�w^��
x�ٚ�fK@c�M?���Yb�F�n0+[��4�r.�`��e������t��@0O�����2R�焌P�B���&s���{d�^YL]>�3z�ە����~8ߑ2o���Az�%<9����F��z���K� ��n;�uA���1�r]&��w���ܻ� �X��(J3ٿ<���^��:���e�:���GW�5v�ƭW��WeJ�)-_|�nx��Y�A`��Z���&�O;����򛇲ߗ�[to=��/��4�>�cQ$���.�@�p�3i�P���wt�mw�ʁ���#ya�kW��P�4;V�n7�����l_�Cz]���#z�x����ܗ�v�6p���9�Or�7p�&��L[�s�bl�}�/�t/�S��,Ƞ� �����.����JP���04�{��~�9�n����K�Y:;^��)�������Ւg<���8H�9f]��^,�Nv{�xK�c2�z��4�52K-A�����Y�^4d(:�o9�y�k��W�d
��/m�'�&��5,�^�/di�����kG�J_X�3SǿZ�$,7���X���dyVEP�6)Y��Jܫ-��2��gW+:��BϩV46�W�Ӡ������/=����7�����UH�@Q��-Jݒ�Y�Oh|�xc�9���_�my�W�i�t¶.��<F�tA��᱖�ϊ~#c�mP�@��IRi���y��/?����J�ǟzt��e��or�x
�A{t��쳇_2Lv�0Z��|�O~W��T��/?=�����}�ߺ0�!|M�������v��8�����/�X)��s��|q�a�A5�mR�:���m��k�`;̳�D�S���m�ు����z�bԼYt8�P"52�QS�mh6��njǖl=��]k2r΢'d�y=G�&��"C��☬��j��Iȇ�"��vi�]�ݽ�k�k�ɴ.�:���@����h�\OӒ��:��K�YϦ�ӛ�˯
W�sf��mP@���J_��D����n0���,��u�����Z�>iP|�#�|O�E&�`�8}6���]b��[�5�TdUF��x~v�G~߿�0�����2%�C#?@�%����@tu�ȍCF4@
�u.�a�i]��N�ClYiQ�mT�~{/R��
P��\1��r��f�/N�k���^!�FWi��E�$��e蒰e��9��L	XW�}(
2��(�cY��.PJ'7��k�S��䊚qs�qݦQ����������Z��yl�`�K1 ����JRo��
j¸!�6xH$J�H!���[����������Y�C8h�S�F�(1�yh�^#����������;�q,�mK}����@�6%b��:�,�
���ר]�$ㄽ+��b����5�5	�M����RF8���Q'�^/��BH��
�aA*��N���%�a33H)�):�V��MS�W���T�,��ų��a4�0nA�������H\{����
�,ூ��D�}#�^�0`��D4@`�rqE�E��B�A�̊�k�x;Q`����8��f3���C�@9t�(�]�p���|���6GK�#��lΨO��h��0$B2"��YPΆ�=�s�aC���#چ��]З���"�t���l���d�{)8��"�_8`�$ႁ4_�{u�t���m1pdDIj!��Β��=�-y��(C*MJF��h)i4㥛�4,���f�7����LڽfXt�C1�'ճ-��|�g�a���=�6e�;�̹z���k����I����
i���g�v�ن��f@����L
g�O�à�=
� �@�eE��:�}+:źK�~���/������-��*Ge������],��2������%I3����E3��� ����26��Z��L�Ϝ@�u���<|��@
��ϽM�~�M�r��|W�͏q�R�wḼׄ�.�³�*9��|���9��N|����<ߑ�
�M~jњY{�@����Ƀ)[��D������T���1Egf0E����5�,���"=R`>q�ã�d5'��J�ᒍ���2ӳ�{y,�؋�h��@ӌΎa,�]�^�ԘSa�ie�YID5�aS���o�&3z0ÿ�����Sw�s�#���e�{�j�� ��ί�Qi�xKNsʴ��9]�5�^m�d섒n�Y�������>Øsс
L�Ǟ�}��M�觓�8���A�QwZF�Q�L��cb��h~AS8�f��y��-��ǛZ�L��e�v�0Cx4�;r�wN:���}2�Z��Kq�U��!��c���iI۔>v�QI�0��6��Swǣ�|���'��?�aà�F�5��AƟ�����ϽL�ѓo���_����@�����H��r���^ P3hİӔm��~�t�8 �
Q3�5�y�6�[3�I^�M���>�-� �q�&2� �eI�5K��E�P�LS
ځ9�q�`6�fB2��p�Ǩ�����p݈S�RKצ�K]���c>�ߩ�'���<��l.���'��lg�8�M珇��8��x�:[F|C�=�6�`�䲻�����xv�Zd����5M���mh<K�smq��
��Ep���b4�7C�%j�o���.x�X�3�Otp�?xwt!�|x@�6�(�C�'��uE�x+L��BP�g?�2EB۩f��x��iigV/ý�����l`	A
MJ�g�u	j�4N���z||�VS�����rB�\CӴ�>�ޞ����<u_/
ij��Ǫ�n�l�>Z��kVc���hj�����U���#z����v�ig��4-Mڰ��[��ӓn�e�z;���}�g��

TY8���ԼM�$V;��t0M��J6��PK/��`�'��0���²��.��.W^�VS�,���G�+hZ���7K�Q�,v�e���f;�͏[ʙ}_��}J�����j���ff�����I��z�~n�in26��ӷ�?�yG+�q��g�0�%��H݌$�Y�<{\7cE5N�Y~���!:��EХ���m��l�}cj)e���z�y��e7��P��vwm^�~�KAӴK��3��������mj�Ԍ�+��~槨��^��T2I-���*�4}Cd��ǎ�hl�KȒ�wz�胟~f)g�ɣ��P���ֲ~�Z;R~Ο6퍍������h4u�RʬI�DM�Gl�J��}~�=M3�y�6��Z
�7�<�� ��q*�mocK��H�����-jFPG�UV[�쾮�d+E�ji�zK�"põ,Hy��]�Y�c;�L�c�5}�y�m���N9C��]���imje$��m�s/�4�F��G��߯~f�u�INR�.8�L��9�9x���f�Q�9����bo:Y�>�U�ˆ��������c���a�t�9�
r����n��Xg�g}�ّ^�z������O;��|���@���ZJ�Ʋ�L����g����M�~ßZ�Y��z&�+���b�_J��4Di������GS���n�8��c�{_�<f~�z��a_g��ԬnR�i��ŵ���D�y,��n�dr
�YHm��V�2�3�T2��D��h��5�V#�u��Ύ�M1���ֈ�ޢm��L��7��"5t�ɫ�<����I�!�8��k�l���(Y�hV��c�¥�0���v�N���vH������ˌ�6n&�m��8��@	�K����b�O���/��f��.�4-����k�f���S�^�5�+��0غL�:)�0�y=Aȱ��E.�l�ښ5��q��8���hH�Y�$���w��4�ޗG׋Ut��	�H����{�ˮ ���~��td_}{�ZKA
�����:j��8�9kn	\�>
��|�5����FW3㵎 ר�s1^�>6I�և<�@u1~M�5�t b�ϳ�)����N�v@d;��v�o�Ƭ�y���^A�7Yt�jh䐛�f`(7��@��^[��k]�Ͷ}ZtE�!�	@�_p��s4��5�^��W�傢�D3K]���M� �-�A�u��6�q-��3MѴ}.��>c�F~���Ht_�͠���D�N�
pA=�M�^�'�nb�͋��������1���n�|FY%���$��FF#��P����7$y@����m�κ�W���w���53~�Λ�`�6��<�b��M�ˑ���>���P[��b$y�^�թc�?ϟ���ي��"�#�tc�ћdh}�<ݏ=޸&VGc[u g�Ɓ�yg��{^Xx_.�ԴV��h��?aR+@G��� F5@��E�:PC3��������"9t`��p
�S�����c�]G
�]�����)g�����h̛n�a=ֽ��ޒ�kVC������%��y�pn{w?�@�d��Рm���wu=������ޯ]�IQ��B��$5�.Q7c���˵O��7�
�皀^4&t_ ����\O�o#��A4摐U�K�E��D�c<3W��L?�[��HO��5Zoϖ�ո@�
O���y�r��ˁ���9!�Gl5Jb����	{�xVOc���#&�~ɜ.�u5���wT��ߖz��G}�4�1D-�W��&�.����n������al:���lȘ`xÜd<�c~[o����}�|P#�/��ۜy��q��'�q�4W'WݪXB���B��t��>v6�������aP[C@e�K�70���,���`w��-�Z]	vGW����܆#7ڸ>��|#<�Cm���~�n?&E�0�o�/R'��m�@�1�Q�u���jf�3v��Vw��h)���)��X�a��;0K��5n�%g�m�G�s�+��x3�������r��ǻ���I$F�.��{����jH@���t0�u1�d{�LآtB���
^�u�>�	=�09m�\kz#�c63Dc���m4۬4��\����yS��n�JM#5�J�G@]�Xd�"0�?�!R)V�ʺ]k�+n
��M�BI�q���Ghxy���X��й��.:ӵ���_����~0<������@�5a6�Z��O�C")�
��/
��N��3��E	��+m�K��w�lg�gۧ�ߛ���M
���A��_��9ZO��{���B��h�G�et�q&�2���<^�(3n�&��h���Gd�='��;W�(�D�B�$��mk�e2P��h�:Xbn� ����,=��a%�H��D;�Mn*2(v7�	��f�љ�bf��*a�z�ƩG׏�<_����Y6�̘��$���_(�77f4>��lg���lEj&F��o�7X|�0a��������H=�
��f4�xf0��c�Y°ގ�1��펢
e7{@���Elȼ��̃7�7��>x��������ƀf���yo��p��G��f���#9����,2c`���x�sh�j&���֜^H�v��A��ð�O��x��Y�(F@�ƋX��4z�Yc�e4f�C�X��8B�Gd�p�©f�͑�w�Gh�a����鳞�L	��X���<b����(�gޢ�`;�4B��'h/b8�Q�v��e�@K��9�t�<�E%�H�J�
7��
j���͜�c~��Ś��#������hَ��& ���az�����lf���}��7��Q5�i����W%�dn}�?�i�2�:7e)�q>JV����ꇒ��KN��F&e����5R���ٿ�.�?�8/� Ā��v���T��prIԆ�K��-���0���F�Mh^H괒HM��ӳ�"SG:�	ĄQ��34��5��vgr̐�j�iQ�qq6�-�<β�b�E=��=,�8���c[���D�W�u��r�|���Z}e0鉏�eb/������7nA����Gcp�Z��]r�LS0�?�L��p�����=��e�#4F�l�v��e��p�����>*�������O��3M�Z�ZCtd$H��îr�Lf�W} ��T�[ts�SKֳ[{�4�L�UC�4h[�fX��	C��֌���L����\�/w�yd>W�#h�f=%`O���2�2�|0�Q6S�����j��0�f�o��Ɩ�)�y��^�A��d�%3:J��HMG��d?��#�"6n���6O�!�ķ=T���Y����)�1�r/R������
R�z�P�m05��`P�1f�m��m`�v����x���R�l���"i=vױ���?�3L��)Z�@�f��Q���O�<���6Ù�t�Οr*���d6s�h_���6��z�����O߼ݶ�w���'C1�
y�[؞7F�2�ma4;3,���
p𾦛��֭[��Olm���`7�L�j�Ei�8R�z�^Ɣ�0�_���nv�:�����$�_�75�̨��}�=���p��}M�4�(/��`ք��^�@��H�/��}�������f���E���^�
�uFˌfi�یg~Ć�	�9ϏZZ��d3M��G`fNQ#h�G��X
�����9�)�%B��8�=V���k���ge�|��2��Q�a4�۩fhH7�;]�+�E����4~�����o��k�㨧ʧ����f�cY�]p��|Lc�ό���v܊���Y�>z;i �8��jy��vV��^������%���w<q/j8#
�啟��_����u�����<����_�G�/���y�q��i�[�i�Gw��~���L\�Kץ��#����l�pB��Mw�	���s
aY�fM�V��>�vƋ�
槼��f�`�Gh��4��x+�(����,��NF`'К��l����ݖ���u�muuj#B��A�j���i]q��㽽�SK7�XlR��X:���a�eGuRV)���eYY	H����YY�qZ
��q�NgǓ��U�BW&��Q>L������"�����
��b��@W�u,D�Pk���J�����i�����V�kf�f�Ok�t�3Z�c�1j����y)g�A3p]D�<�6���0)g�tb�3ݶ��տؾVX%4�[�f��ͅ���ytHZ�
�}�?w���s�]�����
��Cd���g`��hM�Ej�~J��u�6�Y��3�0=��q[�3h�hҘ�^K9��L�g���z�~�����4n7�!���|[wFW�>�~��f��f#����z�v�?�4՞Y{�3������������T�p�`�tfR4��M�,����匮�l$�_'Qѐ�M��C����,^�}����u���7ѡ�����a��X�������oV{��Fj���E���d|�f��J`���K���ޓ�>tinm}G3��i:�s��Ѱ���A�M��~�K/C��Ϻ4�oD=�ε�Gm/50��TF�
/y�Q��r��?��Gf�u�9~M��j槙=�:{sSwFr���r!]��E����֛�z�������^F����@{�KC��~�1Z���e�Κ�v���������hb��3�˘?��g��9��y���zQ+��`}�S5K�#6Fbmd�TǮ��,��#~?c��f$r|0��W�f��J[��R��6�Ь�p53�	Rz���>^�GhЦ^��Ь���_���z
/:Sim��zf53�`���/<��/Dc�T3�mu�����X��t�А��h>�[��/|"U>�T��W�coQ���o��_=���t�n�潌�f�,�����Q����(�����Cd�_;�s?Ǒ/��n��#��]Cv�@k��M���F�������otlQk��~i���_˿��Uڠ�F��l�YF��?GӬu��!�YV�6���jh<[���<P���Om�ꤝ��'�0/��0i��[ז����ߗ4�y�
�=]k@�YQ�=��Oo\9�[v������8�|a�Z�654��eB�V�g�W�+���X���r����u�3���fG
�>`&��Mv3Dc�t��s�Q�S���"IrA�)��.��v�ru�Q�tu4�C�=����d
��/�#4N�Dx<4�"qM�k60��0g��|'-Ӱ�_(�,������~ʙp��=\~��v��?����~�Mq��t�x�)�Ӑ��ӑ�
�?i.������x���N�+�'��[���(p1��v�|��,�L:�>�����ܯ���j���2� f�(�Z�='/
�������,"��|���i4�����T_����9C�"0x�|ژ!��:l�Ӛ���Ef�F��1]^�V�����R�О:Ky�)��l��6�H�g��7:�m~=��������v꙯3#��ظ�m��z��[��6!�v;�
ұ짛q{A��5��q[���/(:1`��]:�ێ�V\_�oQ�Q�|+�RP�g�
)kox�e["����#(8Q�e_�O��e����='8�0ؿ��>�l�z�j��g��`z��c�Z��p� ��5�����M�֍�r���ׁ��J& k�Bl��
�H|
7�VK#K�z&�+���e��Jz�=�Z?�LdS�κ>cK�j;�L�37�J��IN������1ץ�uW_���3ևb^��sl�8/�
�Gf:��R�X����`�}AL����fp���m7{^X�=?�|�;�	��M3�����*���ҧ��xo$�r6D�L���a{~�Zp�m�zX���������H�(]����p]͈�P;e���v6!��T'����6��3\3��O�w?���;��d
*��~��A�������a1��:���']{AM}_�m��}"L7th�dR�����5�h.���j�!H�@녕UFnu�zs/��;�_Sο
��M����rU�$��L������
<��TD���G�:��	M�au-L�'bWFE�4��A�JMM��/�0/��)�N(��X(��H ���_X4́�$���32s�(!���>��6�P5����J�h炾XE��,B)P�
�5��8�e�s�se�8?�c��A��4;���bĠ��Y�f�^�;��!v	�Q	�c��^����o���
��}�f:G�Ƞ`����?5�m�vԛ��>�j�0�����͗M�~X�����)��C�ѕ- ����gV,��)���A�T��;+�t�j&��I2rРaZ�t�K��Q��4�#:x����m�Vy�5�����-�@5i�?�M3Y��un��6׬$\H�&6�fE*���g2������F�Rg	.|��e��P��M��2�;���_�Q@wfNx���%��n�*4fp:��L*�h���k*i6n���Pu���{�[�
��&�T��. (���m��ʂ�{���63��1r^����3
�I5뢜��P%֑��z�vTy�)2��C��ܾQڃ��@�i�`=�_��45�p����ىѲA�
�f�Ԩ���~�d�U��s�}�Ϗe":4���ݼV,W#֠AV";�i�ifƌ���-3�4��1ˎj����;]y�n!�Nړ�� x:i��AMX��T5hXDCĉv�t�:-2���=���/h��h_��v�\��sz�Fь}�s(y-3;�B�/?%;�Р�n?����w�j�^����m�l��.��nsW��_�(M�h��0l_>�F�ҧ��w���}*e�^���[�^86���7ia�ko��BDm�Is������ΧE�������k�`���4}���D�@�����w┺l��w�w�to��'0�Y)�g:�k'״hN���
g%(�1?��:�f�>7vw����9�T��@��y�����i��AS��(z�?���
0 ͺGө@�us��H.�kp��,��+���tE�+�,��#�l�l\V��R�N2���Y���
�9���+�_
�Ft���y>c�h�r�dF��
/�$#'���socќ���V�%�?Ô�3�N9�l�if�~�z&�[ckL{�w��V;;�gF(}h$s��8Ii��e�V���]�����2��W/h{h�a�1���W�,`'w�#�iJ���F�R�1�@T�_@��e�Jc���i���EP2@An�ZS$M�-�m�U��<��]KuL�2�����v�&�PИ�;m��U�퀜�az�
ɺ��]�:hvV�����~�>(�%��*��Z���`��"�������o����<�Ogm��D�Wu��320�ML14���.�9��cO]�,��s?f�0�3�%���"gM���o��4v��QdA��U�����B��>YWd}�N��7]�2[E7~v>�ì����(L��3b�
Y�B
�E�y��g5�sX�a��*1�J,K��� �k<���i0[��`��d��9%QO6dyȎD�2(�K�͐l̐Z5���A�Ckr}��d;�~�lF��s5M/��Z��dj�Vc���n) ui}����t!�$����,*
(�p��qz�"�*_�@�73]��ec����i3�3�eq�Q��/t uI;�U��jPØgR�F5bb�x�
��[;���f
0�����5ir
���D�d"� J���������R.�������yB�P�	/U��Tk�4x�tg^*z��ڸq�Z�{|N݁�u��;PZ��1�d�ah1���^�$�_������Y(�c��e\+�u�1oj%h8JQM�O���DD5	�@�`��a���-��A�V6�+V��a���@NM��g��aS�@eQ�C8�-FLJ����΂^�����8(=���_��B=l�x�E������SBϩh����ԙ�E� ��7�t$�@J��>�`��Cԋ���uc��TL�"5���2��dLH�|�l� a �������@�Vl��Y��,e��iAd� f`���0cv�XPؾP0���4&�Ƀk%i���@� ;�������;aM)4X�)�/�� 3��_p����{J��
n�8���h2�!���3@�υ�{��D+�!����7!>��`�vE��=+_ߖZ30����FhdԜ��q0Ta��:�A���ù[L�1���<!�p�z30����E]l㒁͓1<=�C��O�8s�9�O�SԂq�^�O��Y7�n`�Ԙv	DO�>n�u��|H�j6�
�����/�����Gb�<��p�^&�]꠮
��\ѭR�o�\��s���&��`N�&��Є�^9
����
<�R�H����E5o����~7E5x`��z�j�9����c][ћ�CC��+oG�*�f�[�9�̘���|�wY{���<+��Q�	"7d~����W�}	x��A4"����?z?��0������;ú4����A�����d��v��q��4fdJ�k�'�	�լAc�-���+Di&�9�:�/]��&�h�Y�#`I��#��@��΄
�z<��qg�zvᯘ5
f�>F} ��c�:}]Ft�@EwC��4��f��4_��xB�V��/�c� ͩ���iD����UX[�1�AC	Qahu���E�f�#}k2�P�&cDb�
�b��n������`
_k��
�$޸�Z4����<Ҕ
gG��́�V�&=(�r�kꇪDR�&�oS.hL��B<��1��u�c!\w�P,bDi��Y��a��a "���A6����rM�54T�w��;��/��_ݻ������T5��0ܭ@��IT�K{�����ǣ�?2�}����ރr";7��5}fIc�0�4�/�!��#�G��3f����+�6
=�6�?���ߓ�?ڸpyZ��ۧ���֯������كō�̆ǟN�;"W�1l�~�|��W
!@|sE6P�<k`����kaR�	�{�,�4hbS��`�O7c�B��5�;P{�E��x<0��&y�ZD{Ū	�r�Ub��'?�ņW�y���;���Q,"���m�C疱�\��.0l\I�ei>$+3��QT����rx^8(�_X��Ň����L.�Qd�M:]-d*�g6�Z̓�Ò�I�"6()^c�\��t8����)Jj4c����r�0fm�F�/�b����(�����A#�}0�D�!ƺ+ɩ���~i�P�%%rp$��c�J��VX+Pp��x�d�0�j�d�`�~(~�	�BT�M#šL<��9Xڈ�@L3G���}%�B�AN}��
�j:?$2NqBl7���{�fi�[*�Q�.�Js�!��4��Ui�� >�\�EC?�)ܚ�'=:�2���A�P<(f��B�vU��DG�2Eǀyӟi�mB�0e
qU��H
����z�A`3\nEcJ���A��d,S��!��i�R���2�Ѽ�2uQbQI/�<"3�s���"��($/�(�O���(*']�?��Qx�0x`8��K�ޱ��
S����"���#t�1�z*��x����w�U�#�D�V=8��7�(�iu����g�P�њ�3�w�=O�n�d�il����`H��)R��:0�н�X��xǭO�
!DŽ`"3#
�ð0���ɭ{��rr�eh�&k'����ȼ$*C�̢6�x>��&�[[zg��&+��tF ���`F/#�����N�w���|t����`):0�X,w�>È�q�G�lT�\ss:��<$ 3�h
�Mp�!{�z,v_}fd̈a{�"�������EfX@�^3��"2�=�=Ni�Tӛ`d�`���>��U���.Sd��"2.�$�\h����f8��k�G����Y3��–N�./�w�/>��^RA͟��Jq�yK��Wo���(�{���?�8X���"E9�&�ɟ��� X�`�D#6G����m4iB�	����:a�f�љ�{��LF�BP*���Fk��]����)M��kd���7�oE�[�Q:�Ƙ�f\��C���}!���鞑(�p�@H�r�	j�YLs©�{t�M����$�(��d#و>k���e�L!�I�eȄ�,=��	�g���L
`��74
jFx^i���mhRT5Ɇ�	S)�t)E�#m�,��!�]�9Mς�<k
،�X���kv"��~�1����獈j�cGR�Z�CLs�1`G�M&�>����E`љ���KdƢ7h��f��"�U��v���0D��
��y�!�п�`LBt��p�a\t�24�q
>�nDX�<��i�QF��X���Q��W-bo�̨]�1�1�X��6ڻ}�c��O�=^�~�.�:Fd�\6�׽�����W����7�O?��F_�����'�h��gⳋo��U��иA:Z���)"0bO��,f�Zvu4����;8LgM]�Gö�5Ef�/����M�"��� /��u��N�ޘ��.����c�/
9Sd;B��M�DHs�>e� ��w"�1�{p\��3�%��pjǁdKAx�cg-���pN���:�A�IҖ�p�q�0�Ӥ�.��;�a�j�Q���`�#��E��	UY�r�LXӺ���:�V�$;��E�8
����\��_Yr1lP��c
F�u�0|���娂\&�&*������{�5~O���ω�
5��tΕ�Cf�.j�~�9�H_���ҵ��>����	 ����0�!PI˙�ca�(I��U�9X]����Z�mLTkJ�ɀ3?�.4N:���ؕ�)P!:3|��~��$M,Fd%Q ~9Ki[#��R+�����%=P�PPX��r��Z��U�u  ��9*Q?�
؉��@D7n�	�~�#[M�"C7y��ga )g��>�jdh��ld0�1Fং�ҨM��&ၧd �{�V0㧚
�o�ލh@���O�� Fh�K	�.�F�Z��CFD�Dg��a�#-� �F(��P�@��S�4�hRk�ڠS��if��=�N7KYt��[���X㔦R���i#:p����2im�(h�6HahA�B�`p�9b�
�A.����pʙRp���J���0p�<�U��7��*F�'1���S��TQ���6����^�T	��_�%�2��tϻ(��k
�%Ni0��30ΨÅ:�N#5�k2H)+��j�����M�;_,�,^�0���,$JC���	YV������La`�jy�,��J#F��qc��I�
�Ո�`�H-C����ߦd8Z���O��鎼�����A����0X�y/<�X�k��n�30j��Y �̶@��5/����}�ٜ��P.���{p*Zd\d����Gf�T��9x�D7ޢ�#U� �T.]
ңn�``��,̠v&%3����z�BDkn�"0C�7o	����l���?N�|�t<2�9�Kk��2��4�>���$�@�
�?ڹpt��Gљ}�`�t���r$gw��-^��8>i��2E�����35��0�7�SD�$2 ��&����3(���-)g��nz�18�����.g ���	���!�A�{L�q�`��Gc�C4��,˹Ԏ1�����8�,d�A��60��f�FZE�8�:�H�J��W����##^��?lWɺ3�m�(l�H
_����2�邴�����vEn�!�a�o	������̗��4/��` ��r�v�r��o��睉�*�,��׭y�A���oc��E�-����,�)g����a�`TK�L)��Iy��4c��elBߍ�
�7q�}3�.�b!�i���
dC?r0v�4 �W4�3��I��`f����>Y���������:{����]_|�}_�8�ֹ�_�k���/�y2Ў�O�g�PR�b��}Ϛ�����I�������?��O��l;��E��AVH��T3�15�J~!:@3�W]�	K�Ǘ��)��ó����'Q-�iG/E����(<�Cd�_>q/��0!K�3��)�$���:�m�Ć�p��7�mC^(���6{V�_#5XǦ3Egf؏H\�Yy>����*��n�Z���a[}��'�(Z(�0@)��t=�E����g{���fO�`#t[���ƈ�p؄�1a��As1�HK�t3��h�L�u.�h�r�/�}���A	��Hk���B6$w��A��/�*t�	{�����0�qh�S�:r��Qd���A�(
�G#ݧ��#$�]'@��ru�β~#�<�#�����Z��z�3;0���x�f�Q>��&_H>��S>���@�f��m��3|��;�X��3��7홭�^955z&ie6Z댿��:z���4拞�Y^H9�uf��+���ӭ�Q�o�Hu�q��1y���g;�b�f��Q0����#��j�N��<���V3�!rŬfj2.���מa��P4�*��xџ1a/x��k�`OA9��0�6n ����o�� ��:l��D���U�i[2ۅ����"�fJ�0[$%�K7X6�m��BR�P;��Ϝ�M��^����4-j0��ώ2��lP�"/l�/fm1�Ԣ�|2z/�"���(jh`:�U��m�wͫs��h��4;���ɞ�͏�I�(44�0c�ك�s���YE5}���N��7c�LpM�`@���2�����ue���&�ˆXމ�錗�
�3z_+ �a�_]6%zn�d�>esw"��mE�=�mZ�uwU����2���\��o�+w�b�
A�;B�lˬ7C��/��$��azr�5`6���&3��
��:�N��1���{G��@N���Lw>����P�G�Θ��c6{��u��÷�F�5����
N@1�ܡ�ׁuN�Δ��DV;40N��p/�J�M�P�'���!����r�����f<�3�̏{6@��X��bl|a��@��#��ϒDn��yrz�������2�:�<L,��=�z:0�q_���^*�
�C�0��g6��̸lF��A\b���ʳ��B_�~Ϙ1��QS��ļP��t\�;g3���;O�1a5�F����K��������/€V)��n9d`7I�T���{Y�5�`]�E�AK�6�g�F�{Rފ	��:&?`gL��Dh�D��ī��
�/%_�M?�'���j��g>����/�"�Ďa����@��*�ʽ?���;?�E�����~�������h�[�E���-��ar#%'�ρ���##�k���\j�x6����W�ǃ�b�8g/�7�k�G��X��[�^�v�ݧ����a�l�O�g�f��n[�o �͉�>O�py��$��0H�*�UV#K6>2����M����j�!�6b���`�ئ��'g68=OD��x���̖�ڸ'�Z�g�M�^��>�:�*! �*7a��y�ЂlW;)��@FK�-vL<�56�Q�}QN�Җe�ƅc�a��`6�����c9�7eMĚ� ���G�?�do�~����r�šϓ���rNzӄ�s��1|�3�P�ܙf
���BEg�3�r��`F��
�M��g�� P��5Xp=#�	n�P��\/�)��w���!ig+���-`V���wp�h�<��{�rZe���c��l�ʶ}h�Keq"�	�f,��Eв��
u�U��m�B��N�a�3�$mG��8
��,<��)pc,g>=s�u�F�0c�f�3�|��Idg���Nb�bbV+û2ue�Q4�%{��Vh/u��a�a :tL��i�Lm�y��s�9�sB���xB��.4�L_L����knz����vg��:[m
�\&0��+7D�!c33}N�8��ma;_g��h�yDzZ�1��3?�]��1J�u4�5��g�*�o>'~��́��!f/��	�g�$#z��xJͬ�c�J��ht͊]O���x���E��4���8����o�$�#4,�I@��F���ݓh��k����������;�NXgZ,�=�Xy�w?�[�OG`����E��1���>-��d�@L�
@˛4}�M@P�o�W��ӼqG��ϻ�:
g�|���>�A�|���Lm3�ީ
@���1��X��Z�AL���@�����[���ۤ�Ƽ�?:�y]c��DXq����S�ƨ���¬�eܳs3�MWSs�6��`~���`��c:j��|�i��a��L
����B�ܳ���|��$�5zw��*���+N6�/fV���k��:�`����Ѯ�k��hL�R?#�@�yԐx�r��
��r����h�`�~fhѝs{�۠���9�h;���T�Oz衯���q	�
�661c�dµ���3�7�v�1�gÎ;L���n6�>�J�-3��؝.�K����O��ٿ]V���˟����_�W�f��+��D�_ 
H��j)l)��هʻ�?��/˝����K����?���_�볚���Zvc(��BY��ڎϞ�d���L�6�1�����e���]�a����n:�0
V0���	c���ln�E�f�y��E
�f`f����lۮ����b������0j��G�pR�Ґ�F&Q���]����D�Q�F�T� T���w�ۘ��1�����:�C�g7<5x������e��6k���`�H]�p8<Z�g�'X���Ɍ�K�_
�a��}ִ�Ϣ��� ���i�hD���E�R:���مa�@�.(���:
1�qA|�T�D`Q/�?�@�It�5��9D�+���Ug���_�(����:923�/�E��C;�i�z:p�a`���@*g�$?z�r
�8Sp�u&�	��+������;p��������t-�`ĤY����nym��<@C�@`ި{�^�S"3���G(lY�-%ǀĢ8��S�e/H�|�z���{Q��E5Ms�Eaj���A@�E���mb8*
H/B#�2�.Bck�%��:b��ODs�����҉ë��ij�u�Lͬ��;�Sk�Ǭ����^��3%'"6S�~^��x�y������3�:�B�(��i:
����,��cZg����Gڙ(iK�,�M�QO��wT#3���7`ld��S4�p�8'd�HdF�&��u�r1���>#k¤�{���>�k%*sЭ�
S3+�1m
qF��N��x��,N؃DnP�=V��'���xLTL���Yg�ˆ���Y��}9d#B��}`���Q�C8]���Q7k{����ɠ��^%x�����Ҽͅ�d\
����
/j�	g:��8��-Z�a�f����Gjޔ퍺�ͷp�7���i��g���fv��<����M�8���騫]/��@@�j"�e���uQ������(͎�������l���v��u��םEf���
�`~�t�"�z�Yt��UL9������t��B�y_|�^�z3x���(�}y^1�/Df�Qq�V����y��ua�?�252�-���
l����i�pg��}Sλ����灯C�k��Ef������N�B��&^�� r���K��th,2c�����}8�dD��"6���m���s7ߌ�+s&�L�L��0faV�0t] �Lc�f���3Z֜a���`<��d����P3�<T �b]\���4����I��@Y��_����w�yJ�/��T�|���/��q�m��<ܩ�K?�ŭ�����\:M�R����lk�6�a�����8��堦ㄿ �9:���*8q���W�|�&�Y4	��A��M�r�ǀ��l-��`���o�&`C�1U�6e�$g%���Ѥ���b�h?؁�?�����vZ-J��?���'B�� Y4=�`Cf퉺�"��Fv1׌�Qt� �V��U��1iE�P�L��v;��[*]����q���O��tP�(��:	a�aP3���ۄ
��3�_�B�c�E�.ˌ� ��[r~����aOݗ�~��t\e���U"Z��@M���ؐ��h����m�p���_?Ռ��,��if8�oap���ph �B����q�T��כA[�'��'�vUg@��$��ޤ�ҁ�e~��/󐽆��� �	/����xA84��p��/<�5)����5���yڽ�C��f�]�%�ęw�3�A[�<ϫ*���c�:��T�G��XL��4�԰�g�)��2�����@���ff,`ûu�)0���g��x������<�<"Lf@��b�������SuL�A�r>�1��}tc��6T�}���M^E�QHDG��\/���LH��?7�e�%�i �����P���4���QMѕ�Bk��v��u�l)e���M���1MU"'O�jL�u2Jx�U��t�8cQAm�v��5N�yz�5i0�:����H�FRϺ���q��|���@��������#�s�K3;��gny�g�']#� ��}�^
��=7�@��nb�w=����G:^w��p0!K�3���*�}�	��㿩S�	Z[�u,�I3�]lF=��8���	����J?�Hd	����@4rݓh��Dl�:��̇�!*c�d
�i|�m�i��͟G3aMk���O߃T�dz_#5�5R�	H��RP3�4�{�0	�S���uK���3��4Us�MI/CDzO�,"�L�mW���k��/��c������x&�}���w�10��9�h��Y$�oc�M	�D�&_����w
J!JA�Y,�^ߨ�^���>�.�����=�C_�~~�B!d׉hbj�|���㏽x��L��]J'��4�>�l���6;��2.nGc"K=3�!M���N���ͷvcW�Q�3?��̯U�������6�[}r03h-��Ͳ]��(	��g�g�O��{������g
��!�e���CX凜�vK��dثˆ��"hڬ����]��?��/=M�]�"��mv��t������m���M��)�Ul��s����g�3�N��Eϋ��(=�\����W��?�������~����������}�o|�����?y�����g���4
j�)�q]&�1��c�doq�=��R'DEa�6��l�r��,j�E�c4ج'�b�^�?{�|hq>�hQF�j��3�@
�'��Y��Zˠbn�_K9��X���t}y4���u[0iA�h"2�E��>t΀m��R��0H����udb�Q@D��Q�_E-�uO��A�锋B�쇌D3��"ߚN�Z.�q�Xc`1HO��=C����
t��
�brӄqnC5H(�g*��a�Z/k�p�p�.\\��c�|��t��i+%/��t����x"$�"��0s�`T (�N)�i���N끄Q����X.@`�� ���)�4�M���p��Y7
�ڨ�A!��u���@���&J�L���3@^q�Qr�:�a�t:(�/5�L
�P'�B�
Z%P@'b�����)ct$�eeܶJ͜�����g�3��r�MS<���,,:f��a�qh�lP[����I�׹kB���E�lI�ֲ��'��b�Y�;C������'�����uVhL3�b���Q��cL�(=O�/���E���0��1�Nܖ-�h�GI�i#LF3��҃�X��D�.0�@wf���*�����"Z��%eo���$�͠5�ׅ2
�
~>�#��T�e_4k�؄>U��5���8f�;62���k���6u���\�fv�#�o��
ܸnl,��]Ԏ���,�lo4a3�3�㔲Y���'�ff�㯻�Է�f&�f�kR؝�Π��k<y �Vb�:�����ҵON]�p�]X��s���2����u<�u(RGׯ��s��~]��8�h��3U3��P���g�:�:�rЁ�
��q�
m7���>vC����h~�P
�A�y����ʒ�y���-ѥ9�.�^��.��̭��7$ZRf=�#,jи1�l~Y���[_9@+�U��٘���}^��B��F��a'�fL���{��AGu�}퓻A�+��1�A�s���]8�qd�I��#�dlfh �ߞ��ή.��p��@̘�#�ǸM��|2a/8L'���{��W���y&��ɑ(�c�)��5� "��;?��+e�s����\tg��CH�Ku��s*� ����H�K
�翦}ߣJ��F&@�E
����d�E3��r�!X.�)ҿAw�U]���#9�I�P��20=.��7�Hs��6Z��;�_�
�>���i�A
�	�=��z� a(���,�D&.M�l $a��k�^�;b�Yi��`=U�@�;3Z^�U�T
�
��rщ1�%.�ؿX
��3ִn�~s�xu����7��ϟ_�3�P	���q�{g:������~��j@�f��%3��
�gm����;=s�l�B0��о#'k�zy�V蛅�,
���Y�a�g��MB��6M�������w^���������V�/��ڿ6t�?Nw�N���o�W�bF6܋隙�)�Xq5��5�	��ɇ��?��7����4y��?�.>�o�a]�^7ê�D�x�~������->�8���I��q���p���	S�F�C06�s�PFԔ�a���Y�^��:���՚l�*vyvϗ�A�}�*�Ku�C�|���,|Fdޢ�%$���w���QL_�4��ޑ·����?pʄ\k1Y��٪�	�P��&����L#�,h����W�e��������ײ.�А�_W���h+��0M�� �Ba�4�����Be\�"��N���l�;��Af��5�+hD��/]T��=1'�/�3 ���LgUPw4t�!�`
������i����
�986�f���(���5���W���‚v3֢�E��`�s�����,[�+�x�%��,0hph�9��|>���'v>y���1u�3
�<��m�)�²
0 ���]�k8�{;�f�`f~ִQV��R�Y
=��·븣T\j��@\s,
1�*�"�gc�f�X�n'�d-�j�\7��fО��N+����#0���&ұ1�Y)���B@�M��~��X湊v�5F����S��d�@�X� �Πl�k�ĴƜ��Ӏh�h�V-CN�,E�n_�ƀ!64�K*;�nFZC�$o;g�Px�ܘVB�|9��@��	�ACP0�\0�R�l��{q� �M��1M����p�c~^��R7�S�)�^L�p(��?�=��Y;dbcR��&VAw]֢AQq'�'���=�������TMXXs���Tw���x�`؁�	/P7�����j��0��H-��4�d@�;S�_p.�"��F������z��`�’��jG��ȳ�Q5������Ec,Z��cn���f7󖱙�����'_�Q[�֋DJxl_`=�౔��k~��gW���M�L̼u���:4l�\�(
ˊ"�q��o:	�
�A�B�����������p�)�g�3?�,Y��kj>�z8�l���vo��GC}�����v�cӴ�G4_�ڠ��P��kwY@��^F�L�_����3���p��'�m/�~@D&���;A�`�!V4�1��t}�2Rς�B^��+�d������)+�8t��7ϑK& �"�V&s�9
�	�?����~��ڴr��YO��*���O�����Z��2�����d�	D�;��/��W �z4�rv���Q���"�2�A�5ۧ�jy�b�BלD=+��أ�KT���0�!B }��.&d�߭�k�>�f�8��V���$���Nu�;����t3���:�jUp*r\a-C�N�dam3e:�#8Fٌ�aGc6Nr���
F��jAp�
I��ʲC�i�`��Xj�;c�^�u�0�UA��J���V�R��;"�TC
�e;���i��gO>�i�baЬ���`�kf.hL@(&�2���3���a`���0��ٌ�H�FtC�Uw�b=����Qp���g�+��,�o���}���>��U:ƷBU.o���o��&�R�1�O.���ruZ}3��=rr�)��,�������_�������Ge�
d���O+�^!��mm��E����O��{�����o�,jZ��d�.ʼ�R�"&0�2NC�j"QО���+i��)����`���&�j�r���o�_&�Ȅ�������_��X����xX<��V����4�0�l��#e�i���9�y��E���
�
3J��=�8)�L��ʑ4XZ�M��
O,�8��+�V���R�䏣3�Y���r���L�V
O�i�бDL�R0c�35���qYP��C,�62��|@��[8qp�H
(�E"��^��A���עA8��ː���iF=�Ï�y}�*�bz8
�*#2��9���q�6*Gjp�=u�~‰�����e��&��P6'�5h��V��/=�Bk��<+Is����;na�(��Q�r)`�k�4JS Y�q�i3�hf��vŠɱ�����>�U0`�	�����5�])�3pJ�@ғ~v.���ys:�(��fP'C'kf	��>�l�I��-�ϊ�<g!�|�3���x&8��q[G�E��A�X����:��<X�"�Va^ת��b�zh�T�,3u��hb`����n���j&���z���w��A�k�'�'��ce�(�p� ���:�&Y+��Q��*	��t�4a0e3y�L��by���ӝq��5��bl���gl�}���5L���l�Eݪ�ahfaMN�G�
D,��k4�30�TI4�춣6H�a
2��U�@�GY��}ix%85���K�����mM��"4��(�gxÑn���<�����4C�i���;�L�9#�32hg�gÖ#3�k���`8s��1Ez�jB�`��"h���%��2+XZ��b��.j�?��
@h�!,y�u1�W�q��l��5��j~��Dbb�*���z�����$��@ �3��t�-ҘڲS�s�����VOc��8ލ���:�5�GQ��V�@ߌ�s:��*
z���>�:�T�;#�lb����]���{t�n��wc�c���.�3�t·��04J�4i����u�o/`�&���t[�e���55t�L��p�)��5������&u�*�:Q�qk\7C�wG;�t�K�-30�"���Ԙ0-��h�"��g,=&��+�5�=����!?��S��s��Z?�3J���A<��%�&�	��H��_�?���l��CD����<ȩ6����>�ҁ�xB�]T�i���4����Y8�@�,}�3zfDj0��ׅ�~�w�*!g���"'C�d�f���4&��y�#�������xcǜf��ֈFg̥P�ȟ�FٜrVGi����d�XA�0�"݌kEjɐ�m�d�T��ƌ30T�R'h�ҭ����&���n��<<��R�㶬	|id����<R4>jJ	��0T$;�T;��ľ��g.��
�ZA�&@��l�Rv���_).��Nr�KaP�\K�+��~~��_���;/uU*��6tg��F��,J����|���O��3�i�^|*l���08��}�=�!"�4����oWO����>M`�";e^7�qs�6����i�[�u��O��{��C�w���f�-.J:��ժ��*|_2ĸ8S�Pi!y����1�$����1g��i�-�!�)j�+�!Yf<��a��jgg8h\��ͫE�� tfQ�8qa}*E���~{�?�ל�谺����SX�hDcLd��������9ԇX��m~k��� �#�����ֆ4��U�Z.��*I�R�51kM��@5��t�3�J��L�6��e�m&�����7���v�c5C�C�vܴ��Ƙ�2e<�
���7c+��Lo�D���5Di2�m<��X�Y'�i�l0�Y��S�.LV�F�W8/�RyM�ms�`#�:Zf����_�h����:̢�����i�'����٫��T3��A�%O_��s]���z�>��h�MO���[!�6]��0ݥ��
r\���z>��޽����_p�(x����52��Z��,-+��9�h�^��m!�߬��I��+���4�ųX�)r�W�޶H�@�m���=�
m���X�;r�}z�\�f,m$�Z�k�Z��u2���lf�K������:v���Cn���ZK#"�]�?3���MF��:�+���H�� 0 ��V3c���C�w^oA
�ӫ.��&‰�0�޹�|�[(B�x�>�=) gv3�cA���˿ݘ�,�%5!U_��!"��5ה���G�����n�
���^P��hT�f�}/����}���<o)9���4п��[�!p�G�lљ�?Gh�9M�u?ݵP�f��k�}o�n�g7޿',f|M�}�� J��vL�����c"�p��%4�J��)����y/j�nv��}i�z���},DF�a��Y��g&���`�X݌M�d�����U���,g����7C��<��{J
�iM��/�h��ΖƲ�������J�C���gN����Re7�f�g8�E��r�1J�sMb2��ƞ�Ŋ �q�p�F���jo>w=VLP+�	g�Mh�z�f�Ln��B�e��xF�l`8cB��x�^-��c�E����el�i��\��X_�������7���X���~��9�L<֫Mб�"�C�����v�'�0�H���'��ƨ]��:Kez�(NrDmFYJ���[�\8*��r�Ll���v�6o52R�Lc{1�>�~�[O���qU|��o
^~�֒���;��}��e�(�^hH2P[�$���:��6�w�i����|I�,�R� a_�^C'2F*�C�V��G����Q�n�����Oٶ�S[Wmq;��S�Ms(�2���
_���x𡺭C&�m�-��,ln^:��(jhP���N�BDDjNp��a-{:�B�T(e�/x#�~F�lg��wb�h��,��:L���}
����a?�U�F��?zIX�R���ZM�䘌��("D���v72���,�)r�JЁ4�E��7FQ&�@�T9E���-�+�R���d�H�A*M��o%�T�O5�"3�@7|ˢ�ڶ�X�`�
�d��@��o�x�
��;�ǀ�b�/�[��&�j����[�P�m�� �T��HMɪ��얣nfD��R8�����u��#��7xH�9���8�,E�X4��"��xrp�]Džm
�))"0��1�p��Z�,�Zf�}�����#t��
k��`�j�w�ܑ�	w�H9�@=�����+��ታ������	ػ�
��z�Xz�lF�����3����4�����<l�h�Ff�\R+3f�!��I�و�/�2b�<ޫ˙CN85�
��Z/�x*uV�"k�4�X";�H���8�Aڙ�q��!���o9�v�y�xF�fO#,g��b�d�Z�KA�s�&RO؋{��T�Eg�2�),2pa�.y~�4�ڙg�#NwI�H���g��R͐�4�6�tH��h3�c�7�#���I��Z��X
<�: B���` i?c���1�!zL^��\�TZ�H"�������y?���fP�w�+o;h���<�g���#��<O���#��K
ӑ������#7)�aC����I]�uDe$���^!Zq�)Y��A4�(���^v-�h>�4/D>���kb�u���ސ�hz�4"+��)j�`QDmP/�0���Ԑ���2r�7n(fԴ3Df0
�W���j�h�(
�7A�A���p�!��]��E��u�l�bDiP���01��ة�����7�� "��Q7���!se�%לqt�f���r4�:3����A�Q�熞ok�t4Dg��!%r<a׽W&�d>�{7�_q�^���� �L`B�7ԏ&C�	� �,����pV������+�?�a���8L�N�#�ي��2\�\?w,�2�$�0X�� �q�#�7B#q��h
�,~�YHQ�$��5-�� �T��>�r�u5�I9˻̣2��l<�����C����M��f�\�9BS!�>s�� :�3��g03�%�jH5F1R���B���	H�CcG��(
�ER��TI3K�4+~n�k!���2�FY��MR��Q��U�,c�Ț��fd�fNҹ�10b�5<J+t��jb�q�~�~jU�(���V��~�?8^��G�fI_B::�2���#[ȟ��w�v^#��$��5+�����ZA
��9ޜ���c`f�ў�
�*7H�Y�iU͊Nh<K߷�2��y�x�4��d���2;���QS�Dƿ%0�&����g=}��߮���G�E{~A�~J@�b��tCe�R2�t��5֥�>~ת����d5l�|*Ҙ+W���*���h���_���L�j9W�-����D�jϛ��f�p�G�f����w��uE�2��i�iږ���&ϲ�b4
N���n)�ZKt���kNq�R��\;�u-���q�<4i�<O���S�p}ż߃Sδ�yn��:A��in�x���lۈ?C���@�πސׇ�!���e˱�ʻh~QM�tq��Q��3'�Nϓ![-)n֌�Ah�p��&@kEL3�"w�c�r��1����D�g�Z�͸z�����
h�i�|��RI����Z5�b0#��	?0H/�5�� Xs����s:�@�Y%u3x|�MX��:�v��^�D�͈zn�$Ĭ���S�lpA��p2A%��Tx�yЙ�����Pϼ�5EdP�����(�Ac�@�O*�&��䂁��NJ*�9M�:Mt�НYh����2�D���-�\I�R�$�l�22襃����+(-f��$��AKe��Sa;�A%cf�
(�}J�i�6(�8�"�F
?+���Ք�N� 9�\L�����i�sQ��f$�>��.�i�/7xID5fD(���%���n���`��x4ZT�m�/N�4����3�:�ϴS)��A�'J����a�H�>T&�i�v���a������ϕ�	Yb�t���6�zaX�s�����<Ԗ~s��x�B�@����'#�z[��
=�Y���cF&ҁ�H���'hP`�d�(�ɨ���f�Ĩ}gL�+����W�;�Y�&'5��`Pӱ��4���	ǵ�t�0��r����!�0��Ū��v0�����͠&�H9CĆ��<�X�V>��;R��!]�7[�o�i>�I�b,�h��|�#���)���7�x~���
��9���g�~ih�������/��;��5E�
������H���=;�mlp�Aݜ]F��|0c�O��vzYA)�f���I3����@��0��y�fp<&���}t�@s8�0	�l��m#�t)i�s5�y_���@S����(*�R��3���e�%����m���a*�4������H�e��H�\�!�^��
')��S�| .v���8R��2h{8��Q6��9�NM=�A4�TB�Nq�(��e�:I9�~��ټ���<�4^��@L�R^P�1"5�f����L�2�����&�h9�-}�zk����
[,�	
c�.K������:��:�ܰc��� � �mԁb�T�3T�p�'үQK��R��09([��퐣��ە`���ﮎ����S�0��
��O9�o�Ÿ^*9�uM�W�k�^H�.��/Z��4���uܥ�IZ�9Z?d����f�A
�N�����A����E��\�ń��i���-kZ�6��KYH�=�/��_z���".����o��>!������^��
��@Y|���B%v����ni09�L�I�(J�Je�D`��/\1�j^Ё! E1Xł�P54&E�:���lX<���xVb��P�;�!�Fg�AU��"��E�v��k7@�
������ K��p
�k�Vu0��ě����n�$W뾆�U)��Le�R�"�?�
I���%V�/��`��q��Z:q�@y�(|`l�~������.Į�����z�9z��@�{�^��o#*QK4Ƙ��[��)r9{e��^~�B���c3��v��77º��V����t�\�2QCÝ(~d9 p
f�Y
�
�T���̀��g�*wN���<d0��q�#�i�4��gif��=0�H�ƌD_ؠar��Gd�:���n0�I|`����t�4��5��¼f��RR��[׈bRԯ,st[�g=:�h�X�>�����SZf���J�	S_ᘣ3��%gXN�Ղ~5��V�,h�f�Zzg�n6RlF��Y�
iF�_��m�5χ�;S�'l7�/
/�Ef^�%!�g0(V<`�-<��Y�3|h�
�Cz��Q� �r$)䱌�O�c�
0��Lu�7��JiX����I(�&)�2?��@���YQ/{Z�ul���
�d�Z$����z���ޔz�-7�!���<Ɨ�ǜ׏�ZP����µZ3�t��
��U�9��:�1ф�X~���U��P�€�?t���D�F�i.X/D����7]"5;O`�Z�i>�43��a
�={�N�g����*f8jTˣ�	�
�����˥�Q+3&�>9��nw�Q�Lfd��=���c�.Ԩ���QAD0�e}T���C�n��G�F��-a9{�^�Ѐ���C;��'ʩ���"|�2�!B���(�t�lgk:�#E/��,��FjXd,g�n����H�7��>���&������ 
S���Y:A���#|)'�g��@$�3x!mp09*C=�1�1(~(�"2h��S����)�E��L��	�ͅ�bp?d0��3��e�;�4b葡O�(&"��P�
<kV;��b�Ĝk�ЉxA��,T,�I.e��6-@�ܧ+~��	!RSQ�2�!ɹDf�T�!�;�h�E��h
�3<~=�?��)f�^��~p<%�������� 5�M�rg}�D�g,-��MG�~���t�$����B��#3JՌz���\� 
CsX�N�`L.
�<� ���j.5�Lۜ���t����1�	rҴ��qM�f�+�.�!�z�6�Zː�zZ�x��zn��HV����� ��-!�:�̍�Y:%j��nt�9�X�Y�@�3��+�B M?CD��S�W�)e7�$���"�">�8:��AeF���c�~�?��#N��V#4r����;��?���(���K�gR*#�B�����m]z�n�	��1
��Vb0����f�"����|4��II��ﰥY`�i�B�ʪ�i��72δ"U2��	3�
�~)€�B-��e]c���AT���q�M�~���M�pb����h�L�cu3�` ��k�8բ)����&^�N�:��QMפ�}�	r"�)c�qz��we/��;�.�s޿MD�Ư[����jz�]\�1������*��Ѻ��n��߆3߰<dZ;>�V�y8'P
%Vzu�}���g��m�^D��i�"���"��]Ҥ_��VM7�i�hŬU���w�/���&�>g�b�A����
��>��Y�uu:l}�NV^��n�BT,�����sd7�X�hN��ڳ���Lhа͂�����L}��c�H��g�虍�0&6�������������u_4��R�;ӥa�)g�H��q�I��N
?��N��kh�b��g��8��g�2{�U<���<�8D`��zaM�1�=;�o<�ҭu4�-͚����Ҝ����Z,���v��ˣ�f@ѝ!R{TpO��E�B��6/���@��f�53�ƀv�+e0C��
���9����6H/���;t�4�䨏��0o���ux]�@Tdž�*��J度تpA�LW3����v��N��4hu�̡��;(��tg���?�#/9�a����{�mwWO�X�R#"V����=�[�k�c���ko�g#��k��D���iTX�k��52o�F�[�(�~�ߙ��7\�y���ݏ�x9��s-�Գ��v[������{�_?�jenz�2v=o������k�����m=~g����n�X4��3
���WqU ���3"�J�'���]M͂ﻫ}��#��c����4J>F$"������g�c`�����h�0�6�����V��Z�o�wZR�9�Y������T�ZV�/L���vx����3��~Ǵ�NO�?7P0�����}"��t�]n��ʼn��h���O
�t�fS�ifx��ո	�y��ma�v���̵&��4樿���:;�vS�Ͳ�'ʄ�LƦ��kj$�3�Ȏ_G��'jj&�sM���g��v�l׶.d��~���k-�i�e[v����g_q������֡!B#5�Ku�.9*��+Ѣ	��fkt`F֋��c���%;i@6Ԑ����fװ�
��qH��E�2���������k��#�0bv\N�Rg~+��H��wT,��\ky��[���X�6x�q�ֻqTkT����kh� �9tGAV|����$��5�5�k�V,lz��lw�i����[��k�M�q���/6�����$�����1�f�g5���E6�s����D_���t�2@X�B�b�9ɲ^��N�3���2ӟɂ��-j��.����4��,e����a@5�ā��p�i�Z��4Ì��h�Fq��i�&�p�z�(������Y#��N#!"%��N���l��g*m���Y��
�<���`�5;zNyQ�x�3%��bN9�3��
5�FχC<����.	PK�sIA:�����OzlDe*
���AȐ^�z;8�4q���H���K9CH�(��zf�$�.2�pZ�Dk�6��&XVϊ�%i�G[p��G&nUv'h9�I�!�Q��fd0�� Q��,UF3����pFQ�E�p�^6���j��Q�z��G
$�V���u�����(0�b6�ǰ6
�g,3lb��
���;ꅤ
 �O��i

"4,��sl�΀��)�u�R�3*� ��&C�E�S-�L���0��%������0U3�	֟v�F��)m�?aM��ԟ}49�&��өZC�&�=#RSG+�\���o_���_��I�I$�mu���i�>�Mٮ�C���G$F��䕆7ڰ���LO<�m����I�QԆ�ޠhf�7Ɓ����7a�ūw�9ǙTb*�\1A�̜z橂�4��) �y.���3��t���a��=
n��r�Q�K��	i��@"���̥c�E��Ϡ�T�Gf�I�~֔S��v��{��(m3�47����0әFh.�b�yz4���
e,�I����`�:ө�{�5����3��Q��7���r�L�FS�p.e���Q5������wF��^m!:����a�0���~���a��Z��~���i͠a:P
nDخ���3#�O�BHd�)��K��h��7�~Bd�#����:
��{+�{�f�Djd���G���5h(2�фR��E�?t# B�vD�Ә1��J�����ׅ#a^�L��"�tW�H��r�x�1�0���X��}��v�0�m�+Di�ff�YY$if�*�X͈BǠ�o̱�Ñ�<���E`�>���%��ͳ�� H��͕P����N����E9B��A�=Dk��R5#j�i�,��we���3=R�1��r�h�Z��1�1z4H��":4�����X�F'#�);����,S����9��%��3(�`=���l_�%�
Q���X�u2��OGq|�q.b3��d���Y�g�`H�Z�*�"�]�3�i�S�����eT���Lj�نq���p�z(5�0L\S�5
�5�P8��L���w�=��_���*����4��\���o\��׵�}��~�W�4��7M4x��w����Gy��~�w��!?4f����5�5M3�hb��uX�ҘL�ճ�|�'�ڶ�[�@1�>�У���?��VC?���A�Y1���<�Z/��h��2)�s��PA.�]:+��dx�6��
��E?����%ܫ��aР�"N;���;�`���ַ���3�B��1�D�m-@�b��DF8I��xm#�&�I�E����̹ ��4�l��-�C��b���h�2�̣��T��I�l(e��2��0����A7��kNwC�����x�h��VG�BA��(6�\�X�r5E�
#K��U���'T�3��l�=��"`���@�n}���4��k���1u �f�)Y0˥Q.��[n�Ej�]�uo��O�8�	���w�g+�$6�͌~,�)��vf���r�ݺ�^�~�uaB��VJHx�8��MQC�:_֓��I��Z����`qa�3����Ga�9ŵ��Y���^B;C��gڧ��@6&t/���a@�V��+�T�У�1lֱ�a<[ 	�U����j�E2Qp�A�fFӌ$c�iFn#U9�H+CdF�6���`�)���j��45@c�,�J���"�gd<���Qk�LRl!n���pJ��f��E�	�j�4��zϐ��VF
��k�>�_��M���EJY��c����,EF�5-��\kJ���ՠ�:m�j6��Ϙ�Y���s���zj�SP7_oMP���ɜS͌P	5K5����1v�mPc�D5aD3	@(F7�dFФ�uv�ξ/)UJ�r�>��@dR�I�1]����;:hA�E�8pm���XZ�BӼ}��$��E3�7�)i���a�;dzpN=C�پ��
_>`2���ߦs:p�+�^Uf��\�V�Lg���2�����(!�e�X�=�m'F�3���Ap���!�����pf���*?�杝�����h�<�
����S�:�3e�,zG|�]�}��"�LP�㔶����4C������)�G���p�.��9�9s��y�Rm� "*ⵢ;��Єr�:bQMN?#�7ji��~�9�1hH�������M�}�a��ZYj+o��[;�-���z��>}L�&��8�i�Zt���r@���|�sI1���j��~�؈&إ��{;��//.ړ��LĐ����#�ݸ&�����j+�"�i�1����$fd�{��Ρ.c ��BP�ە��R�g�����0��SN�����X	t�N�@�5-=��V��l�8y3��H)����4O~<s<�1=��;W:tO����u���,D�� *!�""&+��`�0M�o�i��$���a�DI�q����L�X���/���p{��g�Kz��F���r���}�z]04A^a͆�'w����z�Y��K���?rн�u�m�u�h\�^K�3�A����t7¤�`����~d2�($��B=�E[��R!y��})�nB(�߫>�Y�׹�tP;��j�]���fԐ�y��َ�4�aʁH5/s�tD�2����n<��R�H�M��q�3��9aCk(�BwO�0)uG
�5655�B|��с���8Bc�7៘��fx��Y�z�@�<������Br�K-H�*�:15��Q���ª-����5J�T���%%L�͐{��S
�*3+��e���39�T
d�p���O���O���ƚ��8���f����MPȾ�3q��i(\��1m
8�~��YV��,g5�V�dी#DĠ��싚\�PI̰o.����R�vʽ�Q5s�e�I?���o�M�q��;�jh�Ã��,�Ï<����gl{t�]�Q\VG���y�6���5���p�@���h	�-�L���eBC�e�I<�����ȍ(^7^敃��	t�Qx�L���d��^R�*��t�W�jF�%yA�A �慄@sӢA��@w
�	�$f�A���O��Zkg.<���Q��ZA�|���A���A��D3
��4�l���R�fd�&�a"��=�\��<AMx���Yv[�9X��ȕ3�1O���B��w�aɑ2Št�<i�"l10�K.!�	�0���T�2j��@
�v�o=�,*� Ȧ�ke�����r���0�T(ӝA��<�?���[݌�6�U�`v3e8�ˣ{��+�Azّ֛t�E�ECl�EH:P�$e�1����4뾈�'53ȘC�56��`��-�d:�;���s���s�3��<H��;H�F�4���ɾ|_��ؼ
R�ۢ/b��q[jh�k��t�Ed��!S�=���@�7���s4/� �X����A
/�*@��Gkh��3���ܗ�`��tXDj,*�Q�G�Eel
�Ys�e����$АR�S8Y;'D��,��,fF��t2<�Ҝ�v)��f� {>dƳ.B;$�`3��:Dk�s���{:W�oՁb/c6�h�V2�[&ɀ��c籛���8kyJ!l����&��v\�O�ﴈ���S�G�L���WF{�o���N��A>y�zo���բ�
��F�f���%�`h���Zkaz����o�r���S:����t�?��`��Ŵf�r&;5㉐�`�QM�?_%���9M�u1�$Z�d�LD�4�lLH�i* F����@����:鮎V��2�Ќ�9U�[���4�����8Ja�V�z��M��"(��s� �§,��jV��D��J�\`'��BT&5퍟���}�:�^`�B���O��k�xN۞��Z��>�O�
ջ�R�r����o�?�-G��n�Bi�0ː*�,N�k�0���*�)�ч�(
N��"0�c��l��Œ�Ġ}9��`�y���h�fN1�6~e����9)��瘂�Y�Q��r0���6\M2�Y&C]���0�m�+��Ԉa�$�3cZ�
�4HKC���{b�K��5�
ײPg�TzT��t�6�h�t��������kjQ2���(���gR���\?|��.����B&P�o�g�{�@��3�kC����_�R��Dz��F�q�^�k��!A4Ӝ�%m�q���0d0�)�y��h���c��x����t��Yv���G5�:	���IWa�i#g58����
��Br[1
SY�S�4:/{�o�J����m��S�޲pL��sATf�o��3|ߨ�������n�cx�Ģ�~��"�L�F�M&�|�r�5����Цq��3/
0K���'ț���ŅEgf����bc�r��MMQzACj������g��3�]�f�3<��
J�%�M�`���<3�m�̠�s�
����B�9��dr�A^=�~O�Q1�|�n_��~�������n�H隝����Z���z�Zjg&�r<���ڍ�E����e���S�\4͉=�:ϵ4�v&�Rg7�~��!Esw������a|�����<���N�|q�"
�\���P4iPµ P��:)
�T34��Xn�~_��������`k�P��󿸾去���l€�-�j~�;����eu3�=��П�����6kk�Z]����ȬF�b'z;���{A�5�Z%��8��էo65�NW�d�3�o7��U�������ne�1�D�Sw]ֱ��CYw����uI������x�.����1��/�uf�[<'���s��_Kc�OE���*�v��c
����l����~�)ܝ�3l��-���9�Ho6�5��F�l�mR���+D�{&@�_u��Vku2X'�ގ�$s���_ܱ�C�c��y֙�>v�š�������~3�{mF4�|�7�}N�J
q<{я�vFdf�R33a��^f*�36(]3�c�}�Ʈ�Z�f0.���je��jn��&#�Ո.�vF��9���lc�?�T�g�s�.���i��q_'�kg�T���6�0|19Ը@�.EM`����6��?�d��ן���yU>И�c�Ӱ��>���Mg$��ҧ�ޥ�_����ՇDT�0�w�A�y��O�o�w~
�����x�~~�叆
k��%	�xG�+�Sjf(�(MOPg�6{<*����Y����)3��a�YtF�"�I���/��U�(h��4�?�͞19@fP�����g cb�y�u	t�:�P#����&�ч��?���q�eZ�o)31����~f3|!�z]P��%����~���Z	�{���I��0]A	�Z���!��876��LQl��{�r>�!Lqnb���4�U��C�T3	Ull�0Z3���+xb�A;Ԣ|x�����l����;-Ռ�	P���:^.{2N���׻�2ر�⼮�kԌ�#�t`��V.t'�:E�9S`�t-T{�z9�U�

�`0v3���`g�l�@λ�;���i:��	�U�{�UJ0�����{M�1���.Z�Q2X�t��(�1ޠ�)@
W-���6�s=�������H��� �oX�j}��Ð0!;((䭯�a�"�~a��''E�d�
�#��L8S�)}�T�gF�a�8)��:5ؖ���šd�q��S1n?z�F�D�MPS��%b#�{ջ��������8}Oj)���]��]��q�s�8÷�;e~C��,��}J @�+`��f0��ƺ� �Z�,�i˯��`X�c������0p�$`�1�X{ý�
�x�q�����������f�5��/*��1�~�߰��L��u׼+�RF�M��8r��@t�ڱ���T���l��Ź.���LA�����#s
ZA�-�T�H}���@�»���VO䉿�y���!�0�{}�	j��Y�,�^&Jk��mE�/J�QUm☸����
�wB?Ή�̾�oH<r�=�5mz��a�>�dB��M�+���!@h���~�=���1����5A�"�>|�i����yG�)�+�&�]��`2��M���0���Z9D�n�>o'&�9�Ie�y2fz�f�b��l�2ǜ/�eB
�&�e�C/䱒	s&�_�1���`�ù͛cч<N�:D�0��]q��k>b����DȜ���&(��G�n`��dAp]
���E"����
;v�TT���1�����<�����o�M����9p�˯��Ȍ�Da�/���t�ti�:��q}�_�v�9��.�е�G���T*م �)�X��0�F����
d���Y��?T,ӯ��;��9A@�-5�Е��@z��4��(�"ܯ��!L�U��6/BI9K�T�ٮ`�g�K��e9�4��@B����A:�m����,�Wu�h�m�X��R�Qh4F�5=���۠&���-���[[��X�,Z�$��o�ʬ���!*�H��Iam�P2�3�����f��Q���q^W�^z fDj𾱛a�����Yq�^Lk�Eg@`Qa5f��`�-��8xn@�Ç(�=�x ��W�QÐ\��Mpß�_��b��	'��}m��)t V�:2��w�;�b�]��
0����O���vP2.u���a��s��Ĩ�q��HSD��؊�t�A!�ȍ�?C��n&���z�k�,3u��u�N�y�h�t�*�Ipq!޼�' �]0@n2��_;��"4�r������,�y�=��	�;-�
#��ذQB��M����
lr�Z
	�ܰ}� ��yz���3��@�F30u����2�2�2����0:�a�t�T��:{�"/W�o|�msʏ�-@�/��]=�>xϻkw����M!`#�I'�>�9����C�5���x�S��FF�#w��̱��c��ԑܵ��]:�`����=.�����")�P��DX���ͷ<�2'x��1��7��v'��.Z��i`����+�GT �u��
Lgr=P�(�]������u�o�5��~X��]�i�G���o��p����}�~�/��bf94��
�b��,�(�ǎ7�(�؋�dps�&����i�Dg���ɳ����m�r��u�FRq�h*@˱8&V�OeىSb�}�y*�y��B8�/8Sz����\�>f�j��t֓fH;eM�]/g�r��}"3g�#��pv:"�E�����v�^�N�(�R
_���+�/M�EۑN�+<�1��s������&�Q�\�pH��%}����<:��Q[`=c��={&��$��ic�w�dH|��@#5x`F"5�>�?�x)�p3�A����~���e��Y�a"��cqBש�L���Z�mH�h�6��i
��1l�[P��Ej��U���6]��4���U�]J��F�.�R�	������x}��aiu��J��� :�+����mmLP�v����┱�� 

�볏`�VY!  �� l@o��΃(=E�w������p�A3��|�۔�W��G�Ӫ��访�b���\��:��/�	j���q��&����I
@��H�EZedh;f9�׸0@��!�c("��DcX�Q�D��" ��c�,���T�b
���J�ˀ������$�G]�]���42�K�B'�l�A��hZ�Ϲ}m/��}�"ԌYo�浶��!��V>��drW����rDFK7bS�Eh
O�<��|~̬�||�<�\�	�D��3��Ys�|��8��b�A�p���O��\�V�o�������C~(���"oY�&��KCu�7�N��
�t���,�@�Ь��0�I$��\��1��{f3f9�h,�7�iӔ�%��	��~�)��z�B�)�q�.�S��z2,�9I��Fpꏝ��U�J>��\PC��2uea8い�7�0C'	%�p�q3��8�3;����dz�p�δeɹ�F�BP�sM�w�l������Yš�	
M�yG��c���,=���,W�v�Є��x΄���z	c�k
mkeº���'m1���X�#��Z�^Ȋم�&��A����X���i`4�1�Y��H6)H��^��i`�4RC#���Xn���a��͆",�Q�]2򰞉n�B"|ړL��z��R(�~����4��3��� �)��s�{�Ug��P1r��}ӄ>��Z4�� �w��p�s@�`�	~���nkz(VW��u4
/}��:r�V�T<
��3���Xή��W���v�D�P�rC�XL�[�V;�:���2��ܒڙ[�����C!	`�3��ܸ���b�;����m���kh4r�	}�u4��A�&��#�w=���Ef.ݻ�J=�Z�+�*Η��g
�3Ov�Qn0���'�\N���&ZCC��`'�?�ߛ�9�@��̤vF�g���Gc:wet�A���.��|��@�Z&j~r����� �;f34�Θ���%�y�-[����2"B+u2�hb���-y݄��B?54f4bjdB���>�CǢ�gRw0C<���B}]�yF�s�g:�	G���|U�Q;Ӫ�&G�	̴��&@L��jf@z"4��ZXpg"\�0�=����e�l���oύק��G6�F��o�uB�����_���E��7�k�����t<zV�뜙(Wtm�k7N;63��Q�	롕A�>�p$�B���Ƅ!`͹�W�P�9��p1�3���jF!�	����T�Ҝ�؍�t�Km���3�qT�:�T����[TV\Êy>�tܑ�s�E�#%�s 4˙����R�1���d�B	�@�)�c�Y4hK�����(Yb���J���YT���gbC�J���3�M�lŠ	`C-��{���҇���ٟ��=�/��N�w<$.���]�/��~�Za̗��~�f7㋋�R����"�XP��G�&ś��Ջ���Z�Nmr��	ȴtq4W㺽��9�-�Uن���'o	�7�!�l��@�sI�sX�
����B4m�u���,����R�`��ԁI�W�����j]8b"yp^�E�eBј�43ޖ�᲏�X@ǯ��C�H
�^�s�o�iu9s�A����^�?lc�3��z��5wq^S�Eg�R�u=�\w��to��z�H��� `���o�����p�f%��H[m9]M?uYY�t�3���r&Q���g�]�p��0����q��S�^���3�e/��fH�h�^x9���m5Dk8|K��EU���3��k���e+l㧘Y
Mv�1���Z{ݙ\�g,�̴h0����6��h4��2�Ez��t�
�B�^��K奛q1�7��Vm
��<��n[5ز��A��3�=s���1�Y�r����s�_ɺ4��̊�f�5I�xw���B�%;��k

<��^ZtY6���ښ��S���}4h`h�y�%���⹪�o7xq�l�ei-h�A3䴳���?IĨb��1`�46,��uJ$��/Q��f|���/4��AZ�Ӧ�4M���k��j��бN
�I�Q��A?�H���-R��<����9�2�'�t��y,�SMw�}M/eC+�^����8tu"ZS���d�����b�:�v�c�rW7c�R��:qI�F5���}��p����x��
j�^��f���37�^ʛ��&�����zDanh��PCc����3/��7�i�h�˖7��Y[��o֥�I�5R
�{K��~���&ڋW]����3���4��X�K�0^�4ʧ����UZdr�Yp2�g����vZ�������S/�����Xk�6�����KQE�����^�AC��ۢ/�����,Ռ��A�c�e�є[��?�H�Y�j��by�&\sC�e�^�<�����w��+�?EW�;Ⱥ�*��qlm���n�&��;"�/N«� ���W�H�t�Q��T���նNT�cF�e�C��ҌE�L����G[�لf��fk�j�Enl��x\�~��cew��@9+$;�s�L�q��İja-��K;�����6X�V�ey(5%����P�3n�EgP�Ө������$RK32��R�W.Zy��Z���͢���C��i8;�'�G�՗�����M��@|����t���I�^|�8~^�f8�꺭d-*ݳ�
�I��a֏��;$��ݸ�:-����,��&��"lV�P��B�,i	
�a�\-`��M�	��]ON{ :���ny߄ag�[�VW�C�
~IK�<�<غ����������}�f�J��[�t�!l��'"@F.q��N�ʦu48�P���@�n��1K\2k�t�/>bN[讀�@���+�G�D*қ�' �ۆ6LtEUp�xz��8�}b�H�j��^Vۍ5`0�)=���HM�J��#<��Xj�뭆ƚ?�M���u��a�W� �]�v�/0��8�,�r�Y/�繝ת�����覄�-�V6�fљ
��S���jf@&Cz(��a�N��px]<_gy�]�|.D��k-~\t�d�q]+�ƀ��ٱ,�_�e۸�4�J7���-�U������<�c��O7�����z �\o�@``�)��BW_l�P��ibX�t��n�#p}�r�Xw���f���z!�k'�t4���jf�j��GΊ��:{�i/��f)2d�]6c��
����q���W���RT
Cqv9����Z�=���jL�,�
T��x�™�nnz;J

�`��[�;\CC��7��=.nI��Ee��f�2e��^HV:�3�TxR����--��T.�mY1=��;
l�:�o�鯻��De^��1����ƛ�e�~��r�NpS��l�
�ա�x�@���aP�g_M�.ej�n&����[w-�Iz�?x(��m�d�Im�͍�!�TBS��/�z�����]{h�6�ߋڠA�{u^�}�B�t���ʒ�<o,o_r���zA(4@�� P)�L�)������1�ҒE��c�=�f�9>��3�3�[3�(/�hS�6ˤ��h�	]�����ʪʬ\��E�����^f7�@���zˋ/^Ľ���[�۶�0���<�g[%O<;xɼI;�
FR4~fK%�e�l"24I�y�1<�x�����h$�wX��VJT�@�Kc��(0/�v0
�����5_14�d�����3^�L�#�K��}VB0��uNxop���#*���+��t�C�}�����͔s��.�Ҭ�`�2�chc8~��fj�������Lh�vΖ;]�Z��F���l4�ֶrR͎&�t���	Hm����p#q6�~�Ϝ�;FbF��b���AtLd&j4��<�u,�7�y�������x��E����e�u����T��^}�~�ѺtX+�üY?�׶ϲy�({��N:;�a	�Z8w�[�8'�{��}M���~�?��l1#�E��&%�g7]j�`��r��9O��Y�K��ͳfɘ�%�|)140 ����P5���L�}`���D��.G�59�%��Y�� �BNʌ���Y��pH�7�$	c��*���L~��/0�W)K��{��ؙF�t@��)UC��L���$�4����	5���3p9S:�3�H��8�Ph&�a*h����|��c\�l��`�!�,�ᇑX�������S
���g���`��\��N������
����7-=;�1���?��8�ͧ�Ȭ�_˚8x �F)�r�F����C]���{4-�(���gl�Li�q�㡻���L�db��	Q%�P��8�g����F>2�~ԉ�v?
�UPcٓ-�_@
F���>�#`�X��%�3�S0�`Мȹ�Zie�3S�Dyi���㸛��3+\.*�p�AG�2�;QP�X����d��Ɓ��y��nf��Q�.�156�#�����9�G��QW3�a�����]����|�J?Cꔅ�d:&��Չ:s�hfq2�F�+˾Q΂���ٕ��:�Q�u4�#�Q_S�g�s�;�ԙ�S�@�<4��Y�����f� F�k�N`^`�-���¹�`�b��7`�ν����C�Cy1�d"�3jn	޸k�t�#��$ȼ��;�p{��N���Y��lL||b����_!�i{Q���
���hޮ�E���a��#��b�����j�������1Dcu傡߽�X���Q��&�V�㸄{�"g���c���#psw�e���Y�"��cnL���ɼ_�\6�:��</���F�!I/���꯸ފ%�x��Q�,���x�(�cQcPf���3��'�Z��ѯ���G��|�8wy
���	R�[��o8z}����qx<��J'�8��	�V�T���������eE��h�l�Spk��Tdg�^`	�gf,Ձ̓ə�G��_5C��T�{8�U�]k��v{�m�
���q��%?gi��('�	1b%X���%S�TM�ι����}R�����0m��3k�ĸ<uk��ٕ�ڻ֯���Pg�{�i��5,\��UIzR��i9���L�L�j�m��V
Ș�W~�'���32�����d8���u^v������ϣ�^���ʵ?;����0�
�O��.}d3Β�|0�B����7SW\���s>wP��&_4�V�,~fi�e{����Ŵ��
�D!T���d���_��KUW]R^)�P�꓿�tk��a�D��،Z�grx���n6����0K2� �X�]usG��9�yc�P��M.Zc�Cc����b��x�<�]b( ����El����@��Xr&�ђ��?$�~>������تY$f-WG��Ȧٗ�|P�v����#�a⩕6�W�5K��)��2FE�4-X;��\�,�}G`�%h�_3[�>�#;��7�}�Gb���ư.03������h���KWm��t���,���e�R�`��@��P���\�
36ۺ���썂�|"��F�j�ɚ��-u7C�lV�(�U��\v��Y�Y�Y0�2�I2��C���f��FK����9�7���:�ms�i���2VF�̘ә{��m�k�u4:��1�юߪ[�P�l��=f���+���"��s����;������	V͘2�ю2�33�������%f��;�u+���
Y1/*#��Y�n~��͎X�%�؏��w���:n��}1���q����o� ����>"&fÀM����j��.g.XU���ywb����l��x�'�3\o����	 �kω�����NA�X5�����C`��Ƚd ��kz��>��b�[�W���d�>�(��-��p'd����vv	l��\��˺K"P�88��ϖ�J��\ØF�"�6fj��8F�$�'c�Ja���lͳ1V	�m'V�f�ev�Ӄ�>��w�\�7�k�?�k�G+�P*��V��z¿Ƒ#�"uN�C%%H����>��Uw��LO�,���r0,?�)�Bot�*���ݮ�g�m�j[��
�+(�l�9�S�)*z��
,
�ekL~�P5��Em��3Jz�1]�Ӭ3H��_��>�{��d��#��'���<�5o�=�eݓ�}��\g��bD�vR���
��.�7Cebr�U�"�����l���u���s�'��
�D�0�,c7��jE4�H�9�	?�I��ܛ��[��_�|��<$@�����������YJL���}�T�c�%�+�$AB�����/�T'���p�H��u���(���,�f�|/�G�q�GI��$����ѩ��R/����!�e#Og��a�$vN�,�24
�	�6ag4���Qf�%EX�bG3'�g<��x|�+kc�����l��Ja�S�8P�W��y ��4��v�
�@�)hj����gl��mB�n�1��ፕI4��6+��X���@� +�iD�3c� /���^Mbm0��;�b�8� �
�Ͳ�/.�s14M5����f��h��Yu1��}�a��>��(�"f���EK�Ɍ̇~��R�F�f�ޓ�uV��@�w�K��x�B"[��؍�	H%4V�C�,M�ݬ�
�8�+M��B/�X�\��ȑ8]�
�Ml����GUe��8�=�8�wKӇ�"�3��+���3��ģ�6��)��E�3(���������+�?C���V����\N�˶�X#ֲ�:e��0�`,�AQ��c��+ܩ�s���t�<�mO\����F���rv}�p�3���i�:�0�p1R���7�,M���:˻N�4���l�-�Rg[���{Cdf(�b�"��eW���.�1(����35
&�A�m'�gDb'2��9a^L^fi�����;���!`uK7�A��h{��h.;�����s9g"���z���qɎ;_t�(�F?c�K��C�!=n��~��1V�P���U�'?�<;h�ۀ
��+W½m���cf���}��9g��֥-w�ktP��
@ƏY���3KϿ�3�A��sD��]�Q�P2���A5�N�X�Ve�15�tv��ԋ|�W�
o�r\�s#�G2pt��-��Z�=����[���RP��e��x��D�Q��4�bT}b��O>>Y,J�ƃ[f�N��/��G�&7����6�\9%T6b�@���
�h{hc�&C�7���'���f�`�+S����/�n�F=S��u���8�<�g�Wi�ه���ӳ�:(/Pǫ�V�t$w��
�ë8��;��$�}�L��K�]�q�/���͵rZ�ILF
=ib�1;�i�^�=ξ������:_�iV<Wq����Q+'A���,H�Q�dͥ�!FX�|��:���w��I������S_;@ç�g��}��苚�l�ݘL<��O]j������I�����Y���n�<i��|�x�Ȫ�3E��1��fW�<�Z,�$�UE��˚m�V�bQr�V_�x�(M�|�&J��?���ٌ�3�r2�� �8�ЙsR���Z�pi�9x�v6�䇳��B�Ǯf	�A$�Q�N�B/�F� f��"I"L��!�(��Nޢ����0w�TY��A��ݰ)Bp8c�5N��~8�i5w�nk��e9d�,��<���p�ଧ�X�d�`�I�x��	{��f���w����`>��2AZ�u���gKP�f����W�aA������E�3�������#[-�p*āc2�L�\�(��34p7O�5�
'
�.>�:���c�ՈR�����b,
2��M�,��q���q"�c�X��iN`M6h�7,�L�%bgl�|K���V�R�'��h��#��{�dL�%\W��*�Ze�'�i�nux/8��%i��2�I���M�Ÿ�!)�<Ή�S��&��'���M��0t�v#iү4Q�3s��	�jA��&�Z���嬓�x��ٔ�GL͜jL9��X3RN���\6N�������4���>p"�5�{�yW�l$Z���:`J���#����m�W��#���y]FyR����������4�7�����1��I�n.���Jm������~W�z�-�_�3`e&�����I�`��Y9�Y��h��Z�;NArg��괾E?5�p8Cft�+������eb����1�,�9@�ǜ���r����D�G]W_�N��݌ݨ�����ʇz�	�����4z.9=]�!4-���Wp�B<ͫ���cG-�o��Z-OhT��2�B[뮑��טC��p�[�{���fڑ������l_ج}�͒}Z�O���y	{h����wY�ף��٧�6�^���~�����É��'\���マf����Ng�K.驄
�k$�]��{r,vY�{=�ǹ���lW68��W��1��G��?��a���\��M�nqc��?��NfX���&?�����GS;���w����N�;�9�5�>�\���>w�OO���{#�ؙ�5�38���=�(;sD�-�5̈��.��}Z��~��~���ɦ�T��Y��u~�Sq9�# ?;�}v5�l��C�3b	g#�8s,�Ch���);�5Ɯ����X�l
�X�s:�?�vc�+�nǘ��4v7̚Ę�٨�zY��ݢ��T<0c.gV^����9ڹS��	b01F
�3s���dpcG3�S�
 ��i��5S�FB�h�F����:�W��%�5�ԩ���&���Q�[O^p�K�EF�Q^�{�h ,���H˺=� s��I�J\71�V�D�,5��e��ϖ��p.��Wڭ���Y���x9�;�V��*j;�N��8O�=����8
'RlC�2�"V����{�4�mꞾ��؟�}ϼ�W�����6~WZ�"��G���tǢ��^ċ��~Z�ʹ�?���o�'���<~�_���?���������7�;�e��tF5��I��Lc8��͌�4s�$�lm�Q�}�짛�7�Q��i)�'�f0�+�Rw��+�_�\�4�1�����wD?��"���̥o�I������.7�rNv_q���|�L�д�t>۝~��-��@3�>;5����r��e���&=#��}T�:�a�&�Q"�~z~�]�
w�L'�*�Έ�ܫf�/q`�ǣp���y��gԅsY?�g2�VN��>h��%4��,5�Y7ck`~vplz�0A���ş��?�9�d�9��`���0 w�2MM�F7�v�i�؄^
L-0_�p��b�@�>D3�o�q:�\t��d�F�A��l��	�cBՔ?�NJ���Yb/�2�d0�R��g��~�!j+:~=Ly�c�e
u�FGr!`�eh�Pk`���KNd

�j��#��fB��Έ���iZz�f�i�-��t^���?���	�Z��`�3\zTV�OI���뚵�3s��`>�/��I)�~~�v�ݜ�o�x~nׄ�t�J�S�QL�e`���K��]������5/+�����Ķ�v���\V�̹�U���ȥ��v�
xN���!���6cy8�q�7������U��\�]��u ��ΰ�u%>�`���)۰���[p6d�\�9�X?��!`	��I��6�S�F����7f]�j��32Ŕ�Mc�`3%P�eiX	�}�����>�A��#�I��ON�<=3��T�"�ò�u$�X��8sc6:�ѝ&�9t$0B��Y8{I�Ddf��`��or/l̈́HB�I{"yj�\df�knm:�,	��ȯX6SG�*&mg@�
�
F�O�l����h�8�a����G�i:�QǍ�����g��&9CG6�u�ʝ��d���̥���p�\c�P�:�I�:��T2�������ܾ:�W/P��[t~1�J���瓫�0�|L��u��`׼���P��h���4<�`s����e6kڹ�,���ˁ�����߱u��m��0��T�潻���u,�0gf =`�us�02�4��+@/�����{pi�Xhخ����-G�u��ݑ~7�5��o�wy�h��ȹ"��!;�g�����%�+A\�>�|o���4گ0P3=>e�K�`�����'�TE�M�)�6��$�a��!z�3{|�a�m��|1s�c=ʸf����
�3S��<��8�5�O�,��t�;`�.����_} �fFQ�c6��d�m��N~O,����G��\m},A�-�e��{���R�Ms&��e���9�~7��145�S݃�V�NP	
�-0(ö��`�&�]=v`Y���Ŝ��X4s݋ؙL��t�ʤ�٠�~~�=�?B�4���1Ģh�ڹ�Q��-�L�C+?\����_H?;P�r���ta k�Nn��%�Xd	i3�>�hsd�7�:�E��
cr_�g�]��� OCSgv���Ŗ�<%�bB
	��E6�)�����s6�f�V����[���/���nV_�\�H�ꁟ��J������;��Y�x&����y��f����.�l��o|��Y���ZMx�}�zg��/�&_�m?�����W=�a��9���!p��
��N�n*�J2�O�^O����Ws����7�]���P
�!���z�i�+�_����O�y�t+�q���ˋN��$��!�t�9F��ҦAv�qߗ������A�@������ R���
t���
�R�O'�r�e��S���%I�#�J�H|:�tN��iR_��2��n�q�i��=a8�g�Y����ဲMl��g�؏����p-�t��Ѥ2SfQr�j�����4r� �A��Y�����6U�g�8�S+5S=�3z��S{KC=�DAF1Ɔ1;�$�ڠ��	�� �2�N,�c�Y^,����s�/0586.<�l'��=ZA����a�n�3Zg�ڊo�J��=;þ�t�4��C���?S69�̌z�5'L�䟁�-��Ǿ���bf@L�|�;0@S��X.j��[��ѠoB�Âs�`�G
L�pe�U�LVU;,���AF������`%F������u�9h��b�{���z�c�gQ
HA%�jv��Ѩa52*�:���{�睩�<��~&��24��F"��L /+]��	x!��>��hX��@ؙ�i
������3~ܤ)B=@L
��܀��)�y�AM�Ӻl\��2�S@/3�HG��9c����F��&�4DS1pij��`4�»�+��� ��F��L�M��mSEةFfK�7UVfpFT�BR2/%��\͈���5�<*[Cg�s��9CN�
����bZ����i��&3ұ�e0�rfq4>��1�!14��p@+-����3V$ե���ש;�jGΡ�iS�P��)�_�4J��C�oĠ�QvtP�>$0Yѓ�F��PG����c��?H`�� u�����WcG=@#p��XSİ�=��65;�E�(�F�/�S���ȠX���Z������)��+fc��3Xw��50G� ���얰5�p[�	�	��g�sùer�H���[6+c��\H����l�bߧ�w�{�=|Oci•�d)�82��Y�������2��yD�~�D���'�g��W�������
���� �A/�Z����96Wsp�4	��};t�{w�$��0��x��!S�9�&@����g���G�#ϗ=oךm �dg�7�|Q!��ͨ#c�F�
�]an!?�A�ݙ��Z�?�ׅ��ڠW�IҦ����p����K}I^-16���$�L310�YSs�HZ�)06m�k�L�����i��ׯ�;�x�lQBb�H�w�3�/����}u>\��+��9�fA������
�Khkx�R�F�M�b�s����X�4h�l�Ӓ���>ՁJ�rci蕶�	,h�r�����`6�|gH�&`��VY��O��W^�{�P+�A:C%X��پ�o�������=�n�NN�ݗ.p�H�&-�g���K��o}��nt��h���Ӵӡ!�•�7�}��|s��i��>H�ܽA@����"]�G���2���1�&�֋~K���P�������*w��^j��I~�ֺ��O���"�Z���=p�.z��ج�̧Z�+�Z[̞�c�ܼ^��f{D�r|��T4��5���Aꔱ�,��b�S�Lq��m3s�u5�b2@>dL
D�J�PE�A���2�PϨt���S���Qכ�g	G%b@|���Ebh�<D�-R�HEbA�Pcd�Q�����%
�bTh�]��j�9�i��p��2��nf���e4��\�����41m ���VN5VƗ���b�V93C3��N]��z�	�j�������]�0�ͦ���z���/^������m���켣�>Ӫ,�Ɯ���L2�69W�j,��b�M8�X�6�՘�s��"rI�=bG3��1l!��KFi+�f�U�3�J_���R�i��@W�a�.3��<�3q�ɛ��h_�
X,
l�{�k6��Vbj�	@���pF��/ۘ�{�����%V����	@\�U2l�nf΅|3oUV�Fl\�nB,ε�8�
�C���b�����2�����x���r�X΍}
z~��1���q�-`�y<";\+���J�o}�V�|��G�g,"��H���&!�b5~fW��Y9��2�=5�-�p�y���}����f*��d�v�l���P����Wz+3'3�nyW303׈ma��X�_R�X7#��~�Ә���3p��3l8p�|L
�W�f.�.f�����5�3鬹�ؤ�V�(�Nc�V~O���g>᪍g�3���A���3&ϖ��N�t@�Zw�@�h?z��s'��E|�cW/�g#6
���n�6�v����N�b��{Y[]+��mu.�k�����H����� 7k�$����h,��f~�j��TN��d)��Խ\NA���vR���~��I;	�݄�����7�,��5�V�C��Ν��Rwty�6%����)@����?�Wv�6!v)�mgV]�d[KAZ&�!��.f�e����i[/��˫��~���}y�W�:-�Ӆp�ɯ�������7���Al���r�/�Mf5�v�Gi$�JG�z���}����}��[?�h�;��UL�K�K�"���x\U��]���"`�u跺�]��v�@<���½<,�v3u߶	)�[��}�K7�_}�!0��3���`�A0j���2LLÃr�\9��9W]y����^���E�ѐC�������Ȉ�V�-�&K����33����j�T*
衁\�x�0}o��)����`AÇ���ժ��;�)\4����
��A)���
��7hX�K��&�����H�4^_1"л�6�$�q�%r�7U����e��AU%)�@�L+��3�E���&7�A��b���E��E�T5<3ST���17-Y�4XDZ��VKb� ���,+�y�?Vd!	>��
%�>��/?�7k�Z�뒷�"Ʀ�o�D�=���,
��jD�5+gi
�t`��!���q�A�	Fdrce⛊�͈ݘ�	���ହp�,�[�h���T�6u�RT%�%t'��h�ġU'��k������wc�H���yު�Ԍ�g�)ko��1|�y���2�����)+s:��&�n�tMn�/�[[S��*���hU�AF��@c��ʓq�	(�L���G�@����J�df73����Dƣiu�����	���2�q6a�rcg��kE�G� =c�3��iw�,�@&���bf�1&V�t����HBva�7>k�2|R���"��u,7c!�����`t�(G�׊�8'w��S� vfB��2m�N�i3�� \V��E����t��и���m������3�$-ڕ�ӈDF�-��6��br�Tj�)���Xuci י�麟q�f�8�hw��b��F��Mbg�O��U�hrw�ό$~F�C�dJ�ꗇ�=��ytf!E����k���#�<^���!F��bw���'����4�����H��	�k���@�I�gxq���j�vYbQ �ڿ��6�ە�"��A���_�d�U��C�����'���AY�11`\�rwG�hn������к�=�?���-�2��ᘚ�"s3d1<��5*>}���4���߿�����t77���O�զ0Wv��u��K�׺O�9>�ٓr7A,��2:�:�ցK�D`�)~�V�Ab��������z�h5�x+�z��0hQ��'z`6�n)Yg��@z�{��T��p0�\4�$��|�"nl�^4eS�c)&�5,7����O��i�lj=gx��R��vb�#dgl��U����sM�jx�[bof��Z�;[ȩec���9Z����i����02���i0X��u��L�+Hj���r}�LD~&�u�����Fm-)QO
���[$���0��~L��U��"�?�W�
ߤ��?�Oʟz�7�oO^v�z����r�8������o�8��eV�`e 7�r�#�`�L��'����)灉A�5@
��
�塞oUA]5d���iۄ������8�L
�k�����ːe�T�ghS�0=/R���3���ǹ}��m���������?�����w���`y������F��-����7��O��K��v
o�����������ۿ���G�~�����f�3��уX��]W���G7�%���u6��O���an����ƥ;��p����`�)3���U�n.�R��&�4�ߡrۥ�w�
���~�i���>�#��7//�ĸ�*ѧG_��14�=��C���DO�3�/�$���`Խr55Fr·t��rR
�l�
������2��W�UJ?�g�3�|4��1���a-�"yhP�r�DK��̸D�f�%\��0��ɟ�zG���	s7?i9�9��j��ZU����fz�bw3�=�ј�T�Yk�>Shb9��pr�8=#�4J���212�:�!i���=X��H��dqY��Est�8ff�.a6��5e��������l"օc-�yD̍��24hD`;�XbM�vf9g":uS�5%�����M��|�^�n���d��蔋��W��=�������ͪm3
S�q�/�P�ɱ/� r�1�����Yq���u]q6;[��K#o��垉��˜%�<8��l%הb�;��@v������r,���/bg�ǖ�
��i��4�ŜΦ�P��9�,'�Б[��坉Y����$~2/�KA^����M���N���򻏫�ק���������O�l��I*8M�v�<�^�%�Θ{��ff�+$Vt��o�gFˮ[fh���U��^'����ݢ�(�J�R����D�lg|38��v.05q�� ���.Zn;q336�\rLi�ә��[�?c�lV?��e/�+_��`1�q�Z���5sL�Xn��Q�v;s���K\�9�3�4���e��:�M����_�n
��ob�jΎz�	#G3f����j�"33t�"9,��j�[7�<@r8�ה�3�ȘlӞ���K��\Qx<��������#�c�a���֖Y+q���O�PO�4r����6�#��6H-?W��.�fj׌�c�\��y����|�Xs��¢���tt2����F�k��0+��ֳyo|��x|�(͎���u�Yv���4;mk���>�s�)	,�f��q9�R�6�Ҙ�luʟQ�Cn�̝e'3��mu/������;����n~�Q_�{�0��SF�K�5�K�J��'�ѻ��E�WX���T\K����u�[��T.T��ſ��{�a{.4Z�_�U���߹�)���=���8��۷�n��@�ĥ���U?���ʹ7!�*���w!��/�ό���RH��dXq;Q4���Trƚ$�܌O��2JtP�Ϊg��M%A81���Ys���<2I�E��)#[�K��S
'���ʗ���-�G C㏤��N���96��߫��q�N���]D���x�E�g1-6��7�����q�
��-/1tMo�lYP��Yu&�v\T*/k(���v͈��K<N��]q+r�T���+���!���*'<^�l"��d�MbZ
4f��������^#7�򯴖��a�����f+fyh�3��
擕g9@H�d���d�2����6Ν�=�us]*U3,��3N�Et9*`,ۺ!gI8���O���oA��d�5���$v�^���ZNIdf`&ߒ�.1�f�I
�|�~4\
f��Yn���@Vb�F/�F�b0o�4�x�{aR2eIZh��%)���^�}'b9�f���;4s�{^
b��
�[uK��7#����1Ev2��m3w�pM^V�g�yK��y�-`��e�55όS�:u,+���B�
K�qE�L�c׭�Usԉ�䬋D�*/���Ra
`#V���R�K{�X�>�>!M�у 5[-;+˽<�10Ý�n%͎X�kЁ���2��й����8�^A���?�s��]>/������
J0��c�w�w�3,3��<�eweݭ�3(�c6)�͛�u���\�q?A��N��x��w��N�ǥ��7��'OUf������|���I$E��� 93cSup&0�����7lI����T���C�^�/qw���$f0�Lޞy;�ߖx3z^0(��i�C�&3(���s�)�WH�-{^Q��s���[N��,ٮl�2���Y3q�<X����T?-i��������9��0��uaH2�"\�mP'�X��0�d�_� ;����U3���|�^�����	�<�.��t�?L��Q�@]���;���ƃ-]{��-�<�����ωVL���nh����-��c��XL�DɰM��`�v��a$G��%Gik���{%�XZV}�$N��P�[7�+L¤)U������7~���)U�dt>�������
-'A����o*{��w�)���qA,���$��_��	��3��S�k��v��_�3�R�z�
�p�Ŕ-�B��vbv�,=kr?ܬ�q#X_DFB�b`6�# C�q��HiU6��A��sb0c28���s�ơ3Qfw�� v�!�yg�pb̩�7Þ��JB7̖���3��4�Ě��8��=�*bZ\���6���d†�����K"�b�����_��@Pb�P�_���o.��p�vf��M�j̘�q�D�x��<4|���	5�p�.��P�`�`J	�Z'i�Q���l��������}� ����ضPv�12�(v�.�3v����P��吃1-F��>�8��J�P�R�l�j���w�|SgpC��ȼ�|���ci4Ō�w�g��,1=ap0ϣg�g�8�2x?�C�4�����k�ҽf��%�t�T���v뱝�6`g���q�r��Iʠrn���|�|��R�0��;�(��8��#y�v�Zښs��l�8��l�@����d̠l�(��V?��3)�a�S�������1���E`d�:YoY�Pa����:��ǯhC�F��6��������.;��,u|�{VY���vuj��]��r�¸�č��l��X	01&����P�&,
*�H�rK�	���+10<۹��q���4^�|f�M�	 sG�����nK�N|.�a���@V`�t?6�р�7�G�c�}/Ց13C�����&&u�5h���>q����`��3�
�b�3;�K/�KD�A������?c�$��2�N�#=�!��1����+��L���0�g=�ē�0Ђ�<K-]6���,?4��ce���zx�q��6���!'��:f�ml8_Gx��H��ո;}��g`F?��/ǎ�3�U�����&Z�h��1��l,^��g���l0�pS\�xm���Cb�t��<Ms���A)+���G"e�<�Փ���q�S+`\�u蛖��-�h��a���W3�X�J�rW�-��9Ʀ�4`g�w�{���2��P�R�$�?<x�dZ6T7�\�L$����~����þ�K7��7�%m�A��Z=�~P���x�J�/@�	���3@����+�u���Gnzx�(Ɵ���t	߭N� G��g੕�.*(.f<��l��~L8H�G���F�	@j�H�:�!��bnqR�
l�y%W�ř,�!K�敤��
c�2�R�k�g��j�&�=i�K��Aj:S�i�͆%��H��F�>��a��XΒ��"���޲2U���f1�f5�HO�1�pĮ�pR��:�P�8Q��iZp����4'�@��LM�sB�����,�&���\���v�NL�7��.Vn|��q`h``�9iM@�I�l`�J�Tnf�54��N?��W�f"%�&Sfk{\�݆�c�����0�H>ֈL0J�ř���Vbg�%n8��V�T�n�h����A.���`�Yʥ�j?����D��@�@�X�Pɏ:%1����I��������̸�B�����<D��!�����`]�#`'4�ZY�s�t0
jS1] �� @�S�QU�Ϙ��MS�k'�fZ�����Q^K���y\s���[�8�`�\Fr��:Vq�Sc�Б��Ͷt� �aI��7��%��
#�C��|xxE�/`$AD
�p!pc�L��@�*f���H���%֔s@l�r��w��	@�;�R��������ΐ`���	}y}��6^�4]�����xvFA�@��h��}yq[@��-����g�u㻶�*� *f�b0�s�I5�D����e$5p�Tnh��b����q�w����mǝ/����$�X���`_V�pq�<����=�\�����A�6����!t�4S�P���޿�7�@iG��m���]bw���
�YX�A{�:8���KÌjn�A~Ə���И
L,mǠe��C����=\6�kF��
�V�AV��L"�R���4cf�Ez$�׻��@v�Z`\�M��n�9�Ne`��
��z\�	�`P���i$MF��1�g�^[[b,~l4�l�11]];���l�L�Sw�����o�묽4��� 
�J��[(c����vU�
���s�R���)����PPQ��ʡ	�<�sn�|�c_x�cW��gi>�/�A(��W+�{q�N�f��=9t�����}����|��y$��ԧ缔�F�,�q�ڌYzMt�����Ƥ(�O]k���͜��tV�}3k��0��,i"7F�ENf����% ����L�n3�ϻ���I�`��c;��d�%hS�r�aߩ�7�L&YS�S]&c�I�ML����\�Jfh��l�;5:�l��cf�X���g���QW�0���c�[��/=&���P�����M�g���X���,�����Kcf&�%WegNX��Mԑ�#������ ��3��E^�����23���4~F�1�k蘝�m�-8�2"�f�����p9�{��KR3��a�����
������%D�d\���{aڕ�8L��Ës�n&h��nl�J�nF���Q`%7�grZ��8M,tsY�Q9����j��h��i�,�Z�����)��C&��4
3�c�'��ۚ���0b�9:�Yk��a��6Xu9cBF{&!Q�ơ#�3�����1	�!�t|6����0�$���e|�_�܌��({�����F��i3w3�%�_���7c��:�,��16&�A'����@׀��k.�^sqL�d����kW��_�V����W�Fߏ�c\p43�-�Xr�>�;�Q܇8�A�v�z}A��b���ҳ��n��K����9NXf@b�����e+�r[�!7��}���x�8Ά�+:z�n8&K�t��{��qn��NENg1B6�t����Jy��vqOjי�%03;��
֛����L�!11`n�}CyN5f��sX��/��_FȲў�i#c��!���q�_׃��@�ә��X�{χ��}����26~��=;#��,���>�ͦ�*/��Hf��\l�J�iƆ�i+�A1��Y\'�H�Db��i�y�nƒ\��1�SoÌ�l)�un���%8S�:Y^�]�,�EXw�덭gfd��+�����	��AK�F4�/w �(1�rL��,�@h���yy��p�v�A�4��`�Dm٩�L��
$r{��A����(aNT�m�-�b�+�{G�����K���?��.kx�R=�͌0M�w���~1���
¢΄��os~�b4qý�z��E=��'��l4HK�)cr��% .a"�����n0����&�Ap9���0y�:�s��\����y�@μ��,QLa��,���洜�I�A�8Y+�p٦٠�\�w������,�)�c'W3���1����4�M�"1���uj01�8`���F�eo
z�H�2�\����4Ĥ�а%���i�	�d��33pq�˙�[��.v��Tr���
 ��2���u�7S�	�˴� -p� �Ɵl�����Ce8�����` gƅ�ز9.���d��
aLتY�ul*�ft�Z4�g�U�Pn�I=0H`�Ln�z�Āde���ǰ��(C�Zk�mG��P�`b�O3�Д�<��s��LO�u��a�q��Z��E�J!���aZL�JF�R�qQ`c�9��
�����g�[�l�9�d�ղ���5����H=e%���]l=:c�a��'���Nt"l���,�pa45�Eש́�G4"k@F%%
dX~��\l���k�r���_�����4�F���p@3�_`
��6$d���N��5�FP��0�-��H8r}��)����:��͸e����k���,qN:�X��<:��*���̎qr6��$j�`��
b��q�~[Y�ݝ�"3�~Ū�f4c���S��ݲ8���ڭ������n��N�g���V��:,ES�y;��3�ĘI�˷����i,����,̣$h��{ͦٙ��0\��,9��َ����ow�9��͌�3��di����,��Q<S��
�1+q�ؽ߫���lt��>�
��YO���c	Cc��"K���hP��H��:a�R2�4Ծ�5����FD̾�#\�Dt
�t���#���o�$�5�1э��L��%� #[��c�·" sb�9�����`���:�'Ď���!?���c�R���
�f��0��@���x�F�<�Ʋf�����$kA+��
<k#V�˺4i�3*�7׉@
�̜��X��L�TO�QG�	 \�ſ9N���C�N�1MyNZY�<���R_��Z�.�4�/@�ɬ�����fJ���;}�*�/�g߆~�4]��@~3ReC�,L�l�Q�����i�	��������P��ݢL�nwt�~q4+�B��,#���[�lH��s��B��f&�Fc���5
�|����BC��05*5���̘��ꑌHs�L�J(&`H�I��`.vA��)6�؄�3�ZY+�s���M��t��7��Y���14�v&�B���m�y@~��L�]l,@���s���%^��	[C��Dž@�7*Ig�b�fd��q3#o`���,����)K�c���y�\���X��r܌D�8/�V2W����)g&51+g2�$�l��͆���0���o�	F���-V��dp��ɼ"�2cl̬�Ϡ��YD�e�R�/[c��XH�IF������2�O@�6🣆&r��̘h�k>~+4x��qٳw�"330����$�&��-f_�y
2�x�lf�x?�F��Br\�5��Xw"U���"Z+,;ӎ�R nT,W�M���g1��'��11���͖Q���ISx�a)��3��3�e���X��75Ț��+K�ɚ7�7��L͒�Բ1$F�����-�o[g�w�u�:�>&cOX���sm �nL����j$+{���1�V��u#��|܌�v&�nƔA�- =/ݾU�E��s��01&;�<瘹-��,�̌��tf�4\���̔ f#Z>����:��9=o������@g�_М3~=b�vjvy٘��}�����E?#�����.�g,
\�0+,��Έ\�Y��r�k"=�S�+��нl�Icc��n�7��ha�2����b#�P�
:,~��(�c��>�7'ϾTX9RTVfC�ij�#���}-e�	�ǣ-^�ɬ�24ə���L��F�N\��� �14n�H���2m��8g�hbi0�8��)���~��b�'��H>24%�Qv.v���Z�>MQ3�F�;���e�q1�2h1f&�X(-W��L"%35������Ԍ^�Z�r[&�E����ni�:��_:��/�;h�����ue1x�O���/����g[�(՜�ڊ/�_�R�z�D�M�L�������H4��M?��F�6BML��Ʊ�p��z
�{�(�
�b�4
O� �Y�Q,8���~<+��4�0��΂�y��+���,��0k�dt&�F���nM��9��r*�9bլ{Ɖh�iz�.L~�d�A1�k�<�F������S-\O�X�M��/J�i�I�&� s����4,;S;gac��i
nh�JȒ�$�ا����X��S8��\��4��Z1�YU(�D�H¬O��J���FpfiF�l���df7�y07X6�!� I5�F�Y�ay�3]a���aK����$���#�`��`M����H�Svf
�sə�Ѩ��2*\�T�6���'cc�������
,8��V��|LI����p	`�
�SP�B��42��h�	0\�8��e�ݪ�.��M���/�)�g&�G	!y�0<jNݩgiԹY�[C�kpm>ᅋ<�9V�h#�|�NQ�#�X����^��M��L��̗CNHG�YkA���8^�8bt2��H�l	�h1�b�e��Ξ�Θ|�`:���Z6[�v,z� F�U�K��dIp�}�R#�>�X��_��Ҫ�ى�4`dvu]/
Jg�@��9���X��2��a��I��2����G������7p�a �aw�`�ĉ��5چ��M��厂e]7��z��Yf���a�K���.Ϲ��a�ͳŴ�ӂ{��MV�����~�f�dk땘"��fV�[6I��2Y�NX �`霅�y����ΰ9���Dj�/Gv��:HcI��ظ���\
}1kcl�H�Ɍ%bh 1��q;r5kE`&6X3#�g14�6^4���i6�`u�
#ꋩ
x�f�(�2��i(fƤ��0,7�̯p���p��Cl N��)$�':�� ���{���p����SaeZ���g1��1�Y���p�e������^�K���خ��e���ΚS��ޱ����L:���X��pj�Mcg35���3��s��j�f
n�k���3���,��A fY�`�Y���}M
�dN�&���We%e]X�eb��Z�&�ÜX�'���X�c�*��YÕә;��kn��C}���{�$)�%��A����̈́��	��
K��z��Nhj��k��?aH�p��[_	��`�ʌ��� �`-_E�#�Tf0�9h�nƛ�L��ŕ,�1D�)�Ψ�-Q%�,�>�F�Κj�&W�_J��&fN��%�K`sl*v��h]��hL~Ɨ��v�ͦ��a�e,�0�O ����a:
R5,���y���؜����$H�L�ef�!F&���V
f��AhB� �*�*�J+J1�(E��C#�V��9�Hl�����h�q83/f
���=//����B�2̚u3�05am�ej��.z4�����R�f\����#KJ�� �W�,ٿt]�l�����߉{�mIY0����ʪ��5�͵���74R����ej�lc#z�E�]̴����a[D:��E�����dō9��׸��ܖ��xC��y�Й��e�������X9<�(��ce����LFy�cd�g�*w�4"/3�:^6�<��g������c`,O�Y7�K��	��kf��ve�Ž~�:�Y0�l��ad$vF��?`��}b��栱��ޮt���1[�� y+����X��:�G�FĪT^�ELbn�"����l�<B?]ls��g[����y�-9qyIch�7
T^�yej��\ao�*sD�s��2�b��:����
�i�	�Ur���0E,
ؚ��(`G�������mÔe�D�l�:ck��;1w3�e�y`�`F�>�f`;�\�N��G���oQ�m��m��$��$1pc����er�.��g &��lJ"\u%��Ä��{Xm�
@rT���]+m1����*2;������k,��zMg�@j+)6�ceM��N�k��T�P��27��6�d���˙�s��7|�	�A|L�cd�dպ��bl��bbr%t���s0CVĵ3��;
��i[g��iV�h��Q�s��7�g�w�85���0��X�6[�PǕy��QV@�s�z4��v�!=�*�T�������2
.��Fƀ�koR}��F�J����7=N��wU���3E�Nv�`P��ǥ����{��05�������ݍ��\�LQ��h�����B�}� S�Q	d��ը��1�),KSeh����j��E^J��Z��j*�G'�P���FG#'4c٘$�d���?	�vn��EЏ�T?�W7���|�
1h
���)vQ��?S���1��Lcc�.̪̀�3@���)���I��\���b��)���Avu�d�(S��3<�s�cܰ5�������~�^Nv�3F�MS1��`j8V�-ǨO�?���-��yB%c;搃&���˙����Ҕ"�6� ��X5Ǥ4�
k~Wh��
էߨu���D�,�?n4�SsH�iԾg�Ϟs��aĸ�ĭ�F�?s&�LS��x�"J�9�����hl��r�8ebxV�[1���t�A���Y@,^h�E[.���C	�]�
.��W�8�&��~D������0n�l��� M��)&w	������d�������C��������͂����o�R��|`�|o��}~�5�#�*y=��:�~��3ϱ�%N|�G�r	�I6�02��f��4���1(`��̤R`�ь��$�!`mbB����L%@�*M��cT��y�y^���p�I/mz�ؕ[|M0��JB��+��lv;09��Rڙ[
�bg3��V��ᢒ3�8��e�ͱ��Tjv�` ��Kb,�&�;����v��\`g⤨B�<�>��Yq>S��E`^���IE~�po�\��l܃[cr�Xff�3�7Q�L�g��f�d^�I�ۀǦ���
��,~Q�{���q� $z�9�T��on�U[�v�|��L����(�����
��-sGh�5�f�	p�:ul�m��;n��l������p|"@X������
p���\����<mI1Y���X�uekb��e�����sW�� ���6/���l����������ӧ.}�gkO��lQ��5�3����zhbeH���p��z&v��~��K��l��p�������/@�$��ٳ6_�����WrOg��?�?Ă^P�?�,�+���ݓ���Qxa��h���¹��h���|�u�_��ԩ!���ɯ��o�
2��1SC,�ӛ��TR�¸BH��k���օ	��x���	�#�c��~���%��t"�Kr쉖s�Ïi|�e<�AVW�/�FX��k��j��0�W"��'ȇ�$F��.;[6'j�\	S�W������]8���� �."���|��Bi��+���Y�}���,�E��ux��S����:��e33Y.آ攥�٢�%�����,�YB����FߔN>I	�)�E�R=G���]�^�d�Hk��?�53�HsB[��^�t�P��=���j�Z����M�Xʳ��M+��C%�U��Sܛ�E��(6��\��vy);-�B��F��������Q�Ǚ���腵�$G`�E����pަ=-/�I>��M��t���|��9M��d2J��*)��s�N�9o���S���ʒK�Z��h����5*��X�՚��hҸ��3���}�[u��h�9m_�	� 7-0?�|��M� �D��u
iT#:>�E>���[5iJ_;�߁�/j�:-�;�J�e�ۢF�AM2?M�Z��ѿnA���i��w�����n�ZF�dg�h@���ĥe����	+?O�;�0�7	�4����#��4��X]i]��Ț�`���7�W�~�֊�����Ѽ�X14�����̶�l�����kSLm}��Z�4�8�N�$�58ӵ��rY�o�ʋ�6]ǃdV���ö+&�F#��C�M����Dr����.Ӳ�H/3���;<����&C�7<�Y{��s��[���M����^�5�`\�7mv]�<ۣ:��h��PF�/o��i�:�}��R%�<G�)B�U3�s��hԯvV��7}q���bw����X6 ��)-�#X�v7���5���	���.�ڍ2}��ν�ڦ{m�%�޼����=��b;y�γ�<�t��&\�4��)�^�.�Ŕ��6O��T�El
�v��<�NOG�0�G��`s�z�>+:ĥ��/x�hr/��`C2g�2߻,l�յ�ɻ�Mg_'[s�xA�7�+�_4�d��v9n���ݥ>:�����T���I��\__gC��c�m,��O�$�^;tW7����*O�5�/?C��1��9��ݓc����o��K.��|/�^$�.^����=�i���2�>�:k��H�Z��_}r�ȡB�1����/���2?�逭����w%Ig���ԑƣCOɨ�6zmj�ʈ�ܬi�#~Ն���*��%zf[�n��d��A\��JQ	�=J+4��yH�ڢn9a���i꟪+��`&�t��`��$Y�
���kHu�����:�(�	����`t������oԛ1���5ך�h/�
_�U�[�f\��/�Lu1��L�3��j�=[3W�
�:Y�A�.�3�\��,)G��s���:��	��L��n�V�.�f��$m��]���F����4�7RBI��LF���O�S�nu\�>�S;���'�?���{��{����˴��h���9����1��Z
VIԩ�u�9�L"C�'rnY��Aݹ��䟥�����RO��W�{�{%��jaPA@��s�|�*�^�F��7���ht��IGO]���z�3��Mz�_��ؙy%��N�믷�/�~��00b-]�7F�{mX�{D�F��K�xZ�Cb����{����:�� ���t����r��U3_hI���^-����G�Q)�Է��/�8<�f�]�"��(@�&�D���w`���pL�nl���Op����~|�@���4r���?O�f�"��+�p
m$�2�7�e�8fjǥ
��\��XfF�cD�ԟ�}�s�e)篱��}I�,t�&����7q����_b��kY��4c�L5�Y,�hS.�jN�fv���실��2���bb�����Yо�9;�5q���
E��j�N���ë�|.�L9Ȩ����&�T�!T�m{Tp铴�߰Y�	\���1�k��6S�0�
U��
�����`TpS��A�5��6���7�38���a|,:0�-3M� �C0'U�E�ʪ��q3�:p]�e�c�����sy�m�	E����{S�s(NL�ځ.*-#�B�̀q���Cێ	xG%�
~N5?�cRpRu0�2�����z0�__�"Z��\glk���!]��ި��Wh�|�l9��6��{N��g�E�p3s.�f9�5������fX3M��u�Rm0;@���z��V�5ԋ���^s�)�8�h�r��w�<�5�6�m�������3�@�Ҧ6G�p�euh-ۤd±u7�hD��ecg�֦����'Ǹ��a�)8Z32���P�v��St�:�z�NYc�]�k�`�HC����w�0r�l���[�i|�S�e�c1&u���Q/3�����㤞�P(u8!�gW�o��)���^0���'�_�'!o�&��&����b�~Z��i),̄�
:ɻ�-�2�Ĭ��.O�wN��DA�3l׼)m:��Kq��� 72��_V��{p�R�p��$Ĺ|/���. y��3`^\�VHz��3�|nwG@ʙ�`p�y~��0�Q �/���m���eC�IX���+��;BZ�
U��"�6��$#����!1St�c�Q���)�[�v�t]biH�8@�j����F�f8�Щ���9=��p�<y��uO��k7�VM�ǃ�EA-�w�\g�B�&��ͥ�UW_�
��t����f��}y��� >��-I��u�	�,��٩5�	�gŤM������\
�����`�/ǒ$:V4��X���q<$0�zc���u˼~B�M�����*��:���FIң:��=�5�:��$P%6�H�p0Ѩ�Q?��5��F=0c�
��L�P)��*J/2
�+�N�A(fjh���i9��tI��ƣ��5�>f�T��Lυ�?j���Ģ`�
����Y�o��	m0N�@-
�i��"�`-�'	��}��һ��K���y���E��k_�ݍ�}�V�{Ϧ4X�$�F�Ψ�M��k1$4u��Z�O���o�w2��n��:����45�
bm~�Pew�ީ���)�)��
���Й~�MtH\�*���_Ҳy��h���@H��Z�,��D���= �*��xy�@�/'���e幪�:B��g��W5�.�mH{���O�ܗ_��������Ki�-8�P�T��h�2h�Pi0!���^��qJ�,�4�cJ��
~.1e0����b��U�)Di(Y���)S=��Ζtm?�\4^rIY�p6h��-����ͯo�{v�NS�gN)(��9Z!{3����Ԥ�N���v��,|!��93�:Su�R�ΰ\ʼn39�_�[�śkr������,lj-�r�Ė͖\��y��٠b`�f|��Im�`5�?��� �;�42�\ 3�8'&���*/�2��S��X$f���98��=���UֶP�Iͦ��O�)yh*6X�BCI��`�[XK��M�͍*�yoI9��3ux1C�ܐ��N�g�$e�P��v�E�l�48�A�/:��Qw��LMr�v�9�\�����"�f�s�KBY�i�X]͠�G�i�
	h]�o�|�15kK�41Ɇ�3��mf�G�`],3�_����/�i6)ɡ�rm�r�Z�/C���Ǫя�L�[�BYf�L��
����E��1*;c3�1yY�$�K�*bc��@WĮT�^\�^W��s��+K���G�C�ŮN�@�����rjƅ�S+v�`TfG/v��$h/F�,0/�<�L�u+
ȿ%�1�
H��Ff�11�s�c)��z��[4��l5���
댑񚴻�8&(�XӾ����NteOo�O�k����S af�Ď�p�[�MʮN�X�#tG�LǮu�{��L�L!0l�%�*���Y�j���A½Ȓ2�,?�z%�񩣙��p迅��#�̞Y��΀!��'��]P�ז��D����f&c�����Ls�����V�gٴϽD�iF��(N�$��X��Y��,7#��\�N[S�3KbgԽ9�n�bu�|I5��A���;��G���L����x���`WMefV���|@7����%s-�H�=�|Z]�y]ވMm�����ڲ)�I��՟�����������$A�R]L>N'?���o�������{����uB�8v/�Q�IОг��w�.��ࢧ&y�{s1�onE�_}�[����S������@
���7�)�-O��,��೧��ϣ�&6	$i/x��d�����9�G
��7��ho��p�'�6[Y6w�䱛==vo���b����7�8q�Q̌7�	#��[�$g,;C�������y����\�>'�S�3��Iͪ�i|��$���i���U�3�%�f����$��ؗp����c5P
]��U�oycb�,�R�Vͺ�I8�D�`�q33~�+_�#ngf	',
:�jѬ�f�1���$���?�8�$�k^H�,�]��Y[VW����d�2�kcv�5�l�%���8�Y]�00c��������0��6�g��pM"�1QBMa~�\�-�A�8���o`����-g���7s8� ĩ:���6F1Ty�j�כ��K�Χ��'����,(��E]],.F�k�ˍ�s.�	���&�߳u6CC%����hY�%�S͗&14q&i3�
$�t��`S^�V�k��/��b��F[��R���P�$�V��9�&��,��"3��5:d�3^��pK�g	5Ȅ���T�ܖ����墑)4��|�p',J�Z���b�wp��f� ���S6[ҙ�y/�	�5}���e븚U�/��=�P�˼�����1�Nk{�V0@��9|p�
�+����47��knx�bt�����
m�9����|ap�4��ݐ���]�⿮A�V��`=�;j��mY�}gy��;�W���>�D���(�>8cp�D��7�G�-vȒ��g`��R�r��	���<��v��)[k�:�=�V�8��Zw󽳷��{��0eG3�a�l�z5��F��+W�Ђc����36��b���H<
O8٬,����)	l�w0Ps�9�l�E�o�?�i��A�����8#�4�2����J�,�4mL9&P� K��.���RT_���h�4��	ϋ�����]��Lj��l��Τ����{��Y􊁍��p[����9p>_Zs%�Hb>��ф��A�c�f�msǷem�ۆ6�O��nR� +��m��^�)	�Ъ��&=S6��9�
�c�#1`�w��_���@f0t���9V�V�NH��q�G���ԥ?���?��\����_>����g�'h�d�,L����ɧs�k�f��3��AA���T��h���M��\��l����l�Ŗ���߬e(;�F�/1�)�C���x:u�u�J})~Fc��P��@�F�d?�'~Bbh 
3A�o*�ɉ:Z�@�"��v�m���F�Y&���"=c͗l�yə��b�Z���g��Ndk,�s�/�3�d
*9�פr*-C���
Mg�i��W@r��4͖h0��n��� ��ؔ)��T�_"փI�"��Y5!J-o�jX]���6Y$7�8�m�Z"R8�0	U&S�[��Dr�8���)iJ�9�v�yI�6�Z������Z�R��dg��3�;�˵ZM���Mg�_#R.� ��Z�������l�l�����6�~�Vs��@�r��� �Ƨ�C^0r��ɔ�Ź�/��Bm
=+$f��Q�eZ\^3��X���:}�!��i�O���v-���d>P�Y��m�,��w��S�/�z`�8D��˙�v0b�^H����Gc
T1�%ML�dž�Y)��ez�h�	5�k	�HM�������ے
r���g�i[a:�,C��bm�UI:�s�S3���?��$Y����CSe�I/[�k��T��
�+���iU�.�)d���Mr6�.haM��ȈiD�LݼF~�	�i�A�/q3"cYO/�Q۲#!Ff��15��K�gA��2��:�T�[��;��P�mN�303�r�u�3n�{6ݐ���౫?!�۔���/O�\��q�)pӹ@:��˂X����y�G�_�ׯZ�C1}�Z��,YZ�<������ΠX��f��hk>�v4����!������H�X6E�x�y�5�J
K�r��!�Ddg����E_��](��uD_[��Ode�CV�pWba���!�rI$e����a=�g��u�O`���u��1�hǢu�7E��3Z�i9/���6�6,��w���g�4�`~�r�k!��2r݄��iW�۳.�=���@���=�M�F�B٥�U����Ք��eg�-�<D|
6\鳑D�D9��`@�bi /�Աh<N!/CL�F�M��#������:u���%V23�04������<n_��I�C�E�gm�x4�v��i�s�Ԛ��O�Zc��=�T�/ORH�Ps��I�G�m����
3vp0[d�+��9��JawSbpM���Ż"9C���UN�м�J�w0C;G�Y}��,������SeGr����f�)��GS��,��5�ވ�J�lr=��:��Y
�[`by0�g���B����0kS���ϱ2,]�D���ʠ����'�K;����P�A]Ck�Fi[ ���24,�'b&�AIܓv��p�L]bL�c����;��_|���wO�E2?u]�j���k?�'���}�q:�j��Rp����>�3m|'����wW�#h����P���ٙ"��wC��ې~�U���{m,yb@d������8ɣ7�����>Zxyza+_8[0��e8��s_9�����oY�Ѡ�&�����m|ei>+����i��}���U���K�5v�X��.��&���8���~�'
��D��3�J*
�qL��|�,;�D~���H�k�E�c�.�O�ȟ��ݢEв�
bkeI'�J���C������Ϡ߄�!'ż��h$}�TL��-a�&+�R�3y��[�C�p���cS�s���=3`j2�T*����}(�`�*�gMz�T�5֒Z�M*s3��4�,�'�:�G�L^��v&G�[�]
�E��ҥ�	�ͦ�����\m	̠�0#I5	�W��ٓ%9���-�30�5�p�7��{�����ZL���̀����X)��0�I������<�mW�c��4��v��b�EA��iؚ���y^
Q��%�`0�
��%h�ep�f��<�ؙ�`O���m�C���o�6i�Nt�s/?��(:�)�錝���
�T�dA���1/�4�"��zY*���JcI�]k	Ҕ�!4��<	AZu+�`W18yуA���zô���0θ1���6l�Sk@�2�g�ρ��C����5��g`����95�~<�Y�,�q���E`��ɳh��Ec��_��!@+�tR���҈fkFh�L�<*(ȥnV<<�U�e=<�i�!��T�]�I:MA�If�.0~}�`�.�����������dd1�robd:!�����s�u�k��HP�����V�������%:�f0rN��n3��]s`z�14܏�uk���<b(����r<
F�-I�#B%!�|�M^b�z5�V�q�'а��K9VS��/�ui������)@���{��'ܥ���ﺳ��%��'9s�p9�p�U�t���s���@�X���.L��-Cj��c���X�
�7[s�+�'0vy�Y�ΥC����l`ߟ��@6�Hm���6ƶ�:�z��1`�)��3�;9v�C���g�	~w��S�2�i�q�V?�e����XF�{�N�K����3,=KZ.�2���������~����=7�������Q�"v�L��11��	g�8v��<`C��ǭ
�5=�}�@C�|x�A���?�e��-�1��m�0�Q�\e+����
R��mR���g���b����oR�I� v+C���G�Ɉ�Ί]ͤnш1�K݊mΒ2�R���zx5��t��Cz����O�� 5Ӫ��L5������\ۗ\�Th�� �m��ΠԽ	�0��P��'2���J���BcS1MFY�1^�>2���l��~��ُR�=���w��?}𓯯���"�&0��ӊe��2�ί5O�T�o��+�볳?H��J�/�BO���gW��I^{�%���w�`׈sA=��c]�輾�a�GQ
�����6U�6ʦ��͚��
�3E�t��&q���U%S��uw�_���{.�<pҠk��h�"M��T�ΰ��3�~=
@
̾I�E���O;O�v�5�����V�#g#EfS)\��:E�k��3��C�q3x�&r��j?�H�p`ye�4oS�6�O��s��q4����X+�*�
t��k�Ne��i2M��Ē��Bhp05�n��2'	<�֛�~�ܤfG�"y���Deh>�}f��d���;;/���AX&sl��q?ӂ�4U�b�G�0��H��?�$�l@z2�f��I)�2��b	Y��|3���I���S�3O��1��fF^r���ȴxԪ��[�Aˋ��Q�|�a8�fx�����{o����8̛���6�JmH�8y���G�Yb��q3�(��E4�8�"Vf`L�D��3����V�`e�Sb=bj`�bZlK��8�?��9�?,sf�X6c�ͪ	�$M��D%i"��cgP,�Y5s�m]�e�C걱�	���ߑ0�5��`;���Y��ݽ�o{��eܙ��Y��=x 91h��d耙�k|Kh�����F��l��<�mo��U0��7��!x�Fϯ_���f����*S����9���48�!�±�,�ل�t����3Z,����i�-�Y^��#7�{Wr�������d]��ݕ��A�)�8.�%gd���d�� &/��v�<�lx?*SsaW��a�'r�ߣ8L�;Y"5��r3LXbw��ōH�����Q�sF�f;~��|A2��^~S����7禡���Ӱ�����2�?�XިŒkZ�WH� =�{w�vQ���¾������E��B4�K6q3��m�Abv͒W�VyYH9#�YU@�
��}��gL��z$o�sаT�8�o�rш�vͅ�Z�-�V�:E]i1�q,�圩�Ev��6���}���8>�a�l1�6
��R/�m󙺑Y��`�6[R�I�#m�Ҳ8���@h�mC�iJJ��䙴CH���ד�~���[��?���_�
�t�f�yT>\j�9敖O׷����*M�s�2X�����U�z��}g苨��|;���ڨ\����s
v�|���S����5�v#s߲Qs��v��S�]ft"O�n&Z��}Ed�kG��ѿ���������h�:�R��0�<'�;_��/��I�Ԭ��58D�7���-�FұD�U��4S�&i�PӒ�p�T��
E���h����F���+��5m'�e2\4�d �{\+��	�xh�AC�u񱎓�`:V#9h�"�ci*���װ�@�8�d٘���pF��sQ-��A��5y��Db׹��ψ��iT~YM`�3�F�-�N�%23��X%i�3���u�
��5s�jjE�ℚp7Č-�8�Lk�qh��J{�J�ΚE�Tlj4`��Vv���Œi����1tR�P�):�8�Fv,�#�NRA�r/��D��&��HIL6P�3���6r,H�~l�h��A/m�07֠�5�@���|����:�2�I5k!�T޷a	Rh��3�8#�ɉo�%���b�F��,K�Sӭ�z�Z�m��m�d�kkr��ﲡ(&7��Z�7�-?0�Df�;=f��}���
����m���o�`A��i��`��:s�C���Z|6u�Q�h�D��h��i���2�	����%�L��s���&^3�N0L��r��� �c3p�ک,�&
r�`w��bW�O\;�grS��`�߾�`�{I���yf��qd^�� �@
����2���q�]�mvq�+Fך�0	47^�@e�
ˈ��ğxAᘠ�z=n����e���X���׮BK���Ղ��D�f�-1����?՘(���{�'�T����^q��S� ��cgFfPXF��r
���0��/��{643퀙1�|42���ƭI�u6� �[W�dP��w<��R ���@����3Kc�1�uM�i۠��\4�99�$\\
+3�z�ʄ{N�R1���_}M�i`���6b!��qn�N��8���BRf��ј��K��((FC?5�f�j�ɢ��v���%�iG����ӭ�ŷ����q����O�4�a���e�	#'F
�\sı���_���E��dT'��������t�aD��]nf��I�)��N˯*L`fw�p�H�����-
�*��f�n�k�;.����p߶Us�+CD��Q��Hܣ'���Z`�6/!�����M�Z1z�L�"��x*&&��(F�R���C����L�5�@��G g���g�x�}����{x1.+�9��|�$y\
��%�o�aa�	k̺�Un�ya�A�5���ࠔX�f���D�&�|PM����=s.�u	
3���n�`m^�d�t���k�U���Ύ#P�f�cM�U#j�h��;8[��o�N��]���ȏ�Ng*3�S�2�:�e��e�bY�ȡ
�ɲ+r�\���,��,<�$��
P�D��6��4j9;�Mf��%��?]Н"6�%W,������k�Y��$f&7�ğ0�hd"
BT�����d�f��;Wp&5��N� �dg��>ӪI�o���ڵ��j���7q[��q�sf���?3�i�*V��^@���g9j�x�x1��|6�3���!��
Zc��u��j��\��X7�]�I���%7@k�^RL&;���fe�i�4��}�"���ט��[
W�g?�C�hX�[g��c��(硁�l�`}���S�G'��&9���|1���^'d�f 29v�l�3�
3�8o$ ,	�5e:�������"+�'cW��Ef6��
�3`o�����%���#vF��Fn9h�c�WG�F�R�%�f�_��|Mx�����9 ��dS�ΐ���|��3�½�<C�P'�4n�ǽ����%=���Lr�е����#z�x�l�~�tpEb�f�� �SH����Ff�sb���Kڇ��4^^�f�ˠ��yh.��
�V2��pߞ��+����.cp���W��ȹ��8TO"Z��Kم�3�jFڀ�;���+�7+�;�ݻ,�5-�:����C���vMl��̟���k/Zni,�f�-,c�hrY;�"1�9i<
��wȷ�\<.F�Z
!!3�bh���Il�l13X�6�4�m�P��zjM�z@n6;���CV�w�R4'�7�]�5�[�I�8f����z�~�M�;���ގ�.�	��ch�|��f����ӹ?b��mM�����.:�#04�dV��X7o'��vkj<۴���Ȍ�Iٙ喒Q�1���?�xݔ�'���ـ�q!��+$�/��LUz�+d�&?Cl�Z����tަ���M����ީ�
���|�24H��y�&����8��5}��I�Haϟ��?��U�G�1�\48�,
_LU���)%�/��h�!3���bcf��l7X~�晴c%�w�^V�}�
�ܯ�� ����sN}��{������l(y��<�cZ�2��1�s�7ϨG_�@]��tϼ�K����7b��-T�C	/x��ڣB8�yG%gNv5���AΝ�j�iV"���/�οB�ڗ.�¬����=C��f=u�<�>n—,��@����i��S�7��3�N��o[r6����������������#���t�ǰP�\G��H�����H��[: U�g�~����g�/MdX�j��q�əGFS�4�d�YvHN�Y.g����EH�n� ��:p6�t�4^�qS��03�Q}�����,���I�%�j�y+TA-J��Ce(�i
4`R9HͦYH>��4�Ҙ]�?��L���>��4����L����&ngeQzfF*oag$k��̦f�~���裐�5Ֆl���l1R��q���Y��6`f�U4�f���3����M�f�n�c�02��|fA�ͅZ1Cn�)��m�ϡ�eʬ�;Ab�c��=�!�NG�V�;� �K鰽e,?a��Ά%��,�J�X%jx +�L������Ύ5,c�H�LΤx�3X4�g*%C����
E��:�3F1���'��Hf쾗���˜�����hZGz:����ڃ�-ǟ0��Pf�3z�%�d%�;R�Ŵe�t�䐴I�|Y���Qc?B���eA6g&fn"i :p`o�4r��caPlD���&��
i��2��JE�&lLR3���,�ȈDZ��X�9��|�H�0R�a�L�+'���.]
�ޕ�N��Q����!2����zC�+V�3���1Ks3�U��,��D��Dv�~�H��3`VLjfr4cs���zsA�yxG���Y�j�����32��4||W�7�E�3��6�;�����5��R�?�R�eӬ!�Nf�=31���ߎY;u:��{{t��}��3*?c�P�c���l-��\t_�;�#�f[M��(�?C�UsK�	�����-X�%�u/3�)�fga�|&��RD�E%vY��,y�:W�7`����033Z��P�5:��Ď�V��^c#ۡg
Y٪Ms�r&L̩g����)�D���R�r�܃��Fg��%]f֦��8ksƃq��t}���p;�L�ɪ(k��!oO�
i+�.Jd9P��
�5�M�ųPNd��Κ$���TE޹�*wAdz"I,���)�\,;���ϷRϦ�K�ӂM���{1��9���7��3���ԉ�=��l5Sv/�� ��@�x���Խ�(s�h��P��:����ff33���I�%4��r��P/5�䃺~�`�I�n�4]�����7k���gq��(�(��B�DԶ��d��2�!�k������\�VA|fU��j�n���ax��]�'Ԕ)�?`g��4��+����4@�N�E���c�9F��&#��Ԓy��B�GBb0!��[,��p:#�WX��\i��;��08۲{�4���@��Ђ����4������4�Ff�F�tJ��sޙ��ˆ��:u5�������100(cٚi�����բ�(�^�.�I���9�-�J6��!�b����������j�X�$�D�p8�)@˹�� �fE�'ӄ#]G�e�;�Az0�6�er��Q#f2��d�3����覱��9g+�7���8�)�P�O��.��U�A�^ԩ�e!�[Ւd�5fd��LjW��3(��]��LY��̶���Y���
#�~�!�2ʩj.9h(�
\ΰn\��ጝx�J��>)�V.'�	�� 0��~J#�u,��i�#�����>'�Y\�r�-��N��{�L�%�D��>�X�8<�Ù����M�A���O�	�,
���Pƨ�d(GR?z,�l�Qd4���W��DF�fn�;�ڄF���͎��h$Ҝ?��v�t#�@��֩C�r�c�3K���T��ь��3X�\�t����F�i�nV�`��f���#k��.�h?X�G���ݺ]'�J�T]���.�qEA��CciV�jrRIl���/�k���X"a��l�)�X�33c.c�8�܅�F���ˎ���'\����e���l�-:cl����]52ؕ�#�
G���*��\�&{�6p�Ҙ����f��N�|�Y)����AB̈́@L��u��O��L�v�-���fhBg{׉��:�~Pͱw��o}5p.05���6`��#��U�W{�b��[�ȱ��]6�:,�&��7?�5��`�Qk96���i�l��m��,�Av��Qy%�M��8�&��15�}e_�{�Ni��
�0A��p#_�͢��kݲ��0 �$����y�>w,�
<yy�h`�Ο�ܠ�C=����l��ր�K�舁�$҄\���W	����3��.�ȴ���>6tA^G�3�c��T�R�ר�  r�kCMZX/�?��b�݁!�<Ĵ@Is�47s�:�Gu7�W�n��vS$Єz�����XH��!��0��;�Tc�v��֠��ac`ؓRw�X�6��zh�D�9���^�ɋM��
Z�L
+���B�&h��%��]�;�<C��s��@ `�	��~-a'4�SA��`b���:��>.���
��]Rpz1S��N9l�P��ɰr�'�3x����I%�T�][|YhkJ�k/3(i��?�?�����I]#��B?\]���W����H�M�{1�P�-�5Uc���k��og�G2`A��1@��PB��I�?�n�x���Pu�#�h���X04b���LG�q�r��+�R8�*�I�؜v�ig$ǵN3<3��S�H� Yk��6uF�"�J��<4��k�JA:r|����y�W�[!���=�j������3vfk���E<,����!�����$�� Ne�𡜴`g�g�0��1&�wG�b�Zt�rM9f�6N,����yfZm�b�($�\bd�Dq2X����#1j͹hn�:�f�ƒgr������Ȑ�#VKG��t}r1�R�r����`
�����y��JB4�H ��5�G#yi<r�Dj��HF�,��3f:gv��y�S͏�y,��g�h��=LҨ6@���G0y]�N,o�ڸӆb&���8
��I��޴�
egP�'ׄ�>D	s�?j%oŁ���}6*,<́ۺ����/�O�{��`��M]JFl�O_�͘Z�5
��l��C�Z�$����GؑL�03u��13�rg��=c��8Ê�π)@��?S�,b8�Ç��L�T�ϻbL�䝹:��q%�� ��rј�M��1+.��1ʖ<��7�R�N�x01p-�:��y��9h,n��K.$�7X�7��uWpn�8&��b`���Lp��{�+f�d�z
�މ��E�K�#�-۵����-fhN|�!�'I�����`*lͳz���ٗ;��=M
����+���5�w�X�����3�@�p �
��3�qgj�!��[C?_R�C���@�W3�	qn.�3�a���/6�ɍ�̘!��P�E��<������1��a8�G����k�Wzf
�n��HrwY]i��l?H��v�
�P�	f�,����d)�̙��`;���[�`q���D|�f�.��RKq�֨YM/N�6���=�>�'uM�)�1��-�h8����Ĺ�u;Y�,��g�Cmy�zc������,<��Q�_��.��Ϩ���LF�+I���s�t�ACbK��ќX���ˀP�cB:/G9d~��yB�ʯ+�Z�}����cz=��J���	!�!�{�\��|����u��ZX���݃�e0S'p����~�2!�ڸrq"M���	���$ɣ$�T%�T�bl� F�u3#��3b0e��������}��,����$��!v%/S�oY;Ӡ�e�f��q����e
���>)%�i#$d�*�4fm��욁�f*Q�m�s���F55��%�n�ɾپ��z�p��AC��p�1�D�Ґ�5���=���L!ڽ)P bcd;x9{t�k4��&�4O�%�CXrq'�B�mt#op>�R�\j%�_)����҅�?S�s��g�|�;�{��_˦��!����9,n�M��ɘ��Atf�ڜ]ό�@HG�,x��3��0�C�3W����zn���+#�h$/
}����玍jH�2<1٭��3Guݟ���4�S���HO
6��9[5�@K<r��Ž8��XûLyD*p4��h�
F�ڋ��$�d:ƕB�L�ꤢ/��Z���dz�`Z����f4��̌Z1ם64`ih�
#j#bi��<�M�j�3s�f|4q�K��Q;���{O��1=�=Ƭ��A�?��R� ��h"�OP��g,���5;������M��ߣ�Q���و��fH�iv���xk��i�O'��K�U����ص�+15�6A�L��'6�hK���^8&o)���(2F����m�m�fE�갨��3�>nIG�h�-vƊR����|̝���ؖ��L���
=��0���y(��!0Ҏu�>߫^�8]�I�慛�dm
#�2��|%`h�|&��y��ҍ\֭����,�2Cc����#K�yY6+t�d��{h�$
��.�K8n斀	����������!f�;;��~[��G��msw5{:1=�[�s;��ٻNlнd��
����д�mww�U��kʜ����ǹ��eed����V��k�l�l�xP�C/��H�cf3��	��%vƀ>@�u�be���8�B�s��rΙ͞�?�UO���^�)�Հ�� �4Z�m�=܇�k�����c�fN���4(�q���9��b�~����:䗙�=i���
�$N�9.�,ѭ�E���4[UmsăZ�!Չ�%jZ�֌�cO��\-�QP �f.���
�!���r�S%yh���Y;Mۑ�Ԡ�ay9UV�~��$�U����cprB��P�	S3e�-�kP�5�g�u�Sf&3�����)@34N��3 nFs�@��<�G�Hgf�
9h�
څ95�������ERf,?~5��Y�u�V`e06'�F�Ɇ�}dՌ�ņ��B�5�qb��Xɀ�3�C������32:��A;˻�H+�f�&a�}
�R��z�-3Qf`�N��AY]~�w��ɇ0��VvS҃�;���ib}�c'���]���a��St�ʅX{��yL����t9�%��'�߃�½:\p|�cbD��Cf^���o^\�{��U�=[5�7IVq�2K]�Aj�kojF�U�����J�A�s�k5eUL^��~��Ӵ[��j'��ycD�_�$��
�s�� ���L0�3�-4o��q���&��zƥ!l�"_DP����>�Ě�p_I��H�rC���	ǘk�q�*�4�p`�PF���U�Pdz�߻J���K��R�F��CMC8�.ް��jr5>o��x)�ܬ��A[xz<�{���`af�a�fF�j�5�8��1p�܌%UN���@\
���4��-�O��3H�Tz&I6U��:�[(���Ԛ�݄��I�ߞ��|6b�#`�X�5Lj&�s3�U1��h{��4�f�8�,`����r3G1`��@��f3���V��U�΀�1��̘����\�^��1�
`�*M�w��J׺L��î��FP(nXP�<���9@]�h�'�pcyg,�M��ϱ23`mX��MK��i��w��ye0:���Us�j�v��4!C3v��M[�ΰ��P��S~a�-ug�s��&	�NxSI����2�4@dK�g���r� 1X���t,0_�޵t�$x�N�
�Ժ�����D�j 91�q��,���:F��oS� 9c�C��"o	߫��BNj��p�@i�$��Έ-k�y�I;bc�`iK��S\uԖ�R0��{�Ns��"Z.�����F�`L�T�HϞ�\r��w��Yob���Q`��P����?���,ŷ�R��n�)@W���*������[,�_LG���>K�(6����Xr�h��	�1��Mz���;;"AC��מu~�{D�o���S��,J�yF�<S#,#7Ι��O]���e^��'�.A�L$	���Ob ��4���H�1'a��5`� �k����^]�M�f�h�XRSP��v1,)#�rt�O�����IZ���,��M#f!ע���o�`�bg�6�9|����g�`��r3�_�9=󭎀�A@X򳢠F�;,���&��{����4�o����\Q�ʳ�g�k���6���9�IR!Gmh<時��@���M����D\Hˀ�r��1>�
@X�j���Tjf
g&H�9��EX�T����l�!7봚�p<aY����<�ŽF_��s�� 9w&�Ʋ\�]�<:m��u� -���;�
mdf�J�}j�\�=�%�&_�O�!՛�J��I�(�`}V�vr\e�Ԍb�c����+��Pa�qL:Y3����j�嗮���_�~���\�fAѱ�q�*"s~�W]�[�b��e���by�c$�
K�Ҡp�'��Y�Ѻ��w�W�+�<�,�W^x�^�A�l-uˈ#=���X��Y|�2�o�!T��EE�Mvh�h�b$vr�p{�H�n�I�<s�zs9��
��]�_��O=���٬R3H� 9�.���>�^+�6�T���_i8��0��	)<R	'�a���'
Ө	fI&�������0�c�Q|��[ޙp�1�2����J���ñ�yc����k&^�’���?#�ĀdiR-��6�i���
$؄L,8��`p,I�����Ÿj����d���Wj?�`;h����>��@K;�
.t�f�,%����G��6k�>͋��-�M���c�$��f��
���mu�ws.����1��1����Yx�xcH��M�$^F������h��4N�N�kf�<E����4�O�9��#hl�1X�D��e8ԑ����v-pR�P�I�Iͤ�R����F(�5j���8�b��`�|L,�L�p����|������
���34�&;��W�`]��[��gK�dg�wƤl۬�cd�,�ј�"���L��!�IE6T{�N�t�0�m���}�/KQt�kz��(���bA˼�&�͐���st*-�8�i.��<�(�tV��|��-��E�Y7{�ٵk�;�T��K�,�K��<� /
��-ό�g]�oA�N��[�kȉ-�M*�H�e`!̪�2�c=e��
�%��M��!����̘1�N!'�r�h=�9���2�c ���r��{xG������dj�/v�G�~�@����M�\	����%��ALܒ�l���3��+��l'\w����v�5p5����6�O���?�����m�F&A�{���Ԥf.Cef�{l �d�I��@x�}�fH�0�X)�l��Y�iϕ�4ǒ3�p���Df&�3���7�Xzԉ1�AH[[0q�fh��4��gj��u���M"739��q����n��V��>���΄�>a��r��)�*�g9vFdgf�\k�]ܳ��ҳm�;���9	i\o�#>���HЬm��E�7>?���bIt���4CZF��aNHo `��MA.,�P�����i1dJ�mۨq�ݬXTۏ�[�G�����v�q��e_|)^�C�7/1���'?��V��ҝ��kRK��}齮��~����t�7Kq�������3$���ƪ^��M~�X�&��v�'�|mEO�h�1+�N�L��۰�&^�[�.�=�T�+-�!URA:���^�73�>�-�����_��<۞���w�}to��"��l��Aí.�g'S1+[�s.`�(����o"��\�d���3&5�8�^�9CM��4�e�������E�	��"��1,$Y�t
(�j����D2$�\7;�0�H,�؟D5�f����F��1����i�ͩӠk8U�&󈝉v�bpc�-lw�˘l��Yr�����xf\;�#+�T�=ST�)��x�Ѳ隃l�A��=!5���Y�gF�-�f�Dq7vZv�h8�P���2U��n��*_cԩc�Cq�[��+Cl�yP;ɀ��4v�������g19%@�&&G;�F����v�ޤ��Ѿ�Tؘ׎�����$y���a��䦉r��L�qs���@f�o0{w��rGغ����<c�F�tf�XL���I
��t|�*��p��`Y���CfI7Q�ؠCg�̶��t ��<�P0��S@�ɚ&=�Qt�_^)9n�YgT磎j5V�c�+t|%~�3��9hG�}~����|�9s8soR,�&:�f�,�澻t_��T@Ǣ��02��Ay�Y/>,�f��q+s�Vܶ�b`��8�[�jN;��x�������A��v����c\zV�#����N�q�L�y��AGd��W�Ml����]��g�0@d0����X����^5@�����S��|�/R�9�l��5��Y0���ff��լdW3q7;L��fV-���
��7P#��ؔ�����bФ����Ҽ3b`S��kkрNH�y�.�3u��� bUF��
����a�i�5�1�;�ms�����8Ro�륔�j*��:��r���E`H۩��І�|l2�ק���k�clt��WG	\G
�X���,KBMj�aͽNL�vu�]y���O�jg?B����p�߯	�x[���b21��k�(����P��=��\��[�M��D�Z�jfc?*�����@_�����_&�a�N^l��{3@y��R����d�t�G�5���<=Y8d��=�{������B�g��~��7~r7�e��)���j'��$��8��72��U��b�C>K��3	�"D�%J�)14�Ӭ`��8����a6"�%�09���3�`@&'z(�Y�.����h �Y����'v���j�yl�I�D�fE
���H��B�9��s�
��E-G�b<�c��Ŏ�8��3� E�t�-W*o�I�zVV2�*%�R�֔�!9�a{�f(CӨJ-���0�:��H�L�ej���L�V.Db�x�����&)��T��H~����ZMq7821bt�`kLbVo���U���s:�yaڰ9p�������)�`[�	��L��nf��8 ��>��"5C�̂�+Ǔԑx�����4�桑�-�0�/�S�2��:��@�z���!ِS8یk�/�`��5��=����y/9�	��3I���C͌���}�N$�h,1�g��~����RŃF#Y7c�xR�5,��h0!k(�)��FD�i�N�� �6��9�3���h#MfrRz��Y��Kc�Lu긽�>t�xբ���K��T���>��^Zcv5b�4B�g�#�$��٬��\#I���h�� �kĹg�1L��B��Z��3N������?�v�DG�!��
���X,���09����u����zoJ��u�h���3��@gXq��<$��"���uu8;���,
^��%C_�g����zdg!^2s:üŌ<����|s�cJޅ�S�X�|��{��m�3����Q'�Oo;�C�g3v:�m^"�'�K��\�|2H���s���v�������>vv���i���Kۼ@L͙
\�X��i���G����t��w3��{���m��/��x�U�q3�X��� �^�{�t柉Sy���d1X��d2��~��M����@�t�y��$�~_H�j���>1��ѵ�si���p7�u���B�~f�!�#�K�á�K: ��<S��'�e���(v����#q6óc�Sm)��
7m�x�HEv�)��آ�sJ��+ǒk�+�2��,�CX�yZ�O��K~U41P�j�d�z��9c�ٱK� :��-��Ii;�fGG�ڂ����pE��8CHz1�Glj��W޾�d74��O!Ak&5���}��h�H�Bi�^�ݬA�p�Dݍ�d/p8�AZƣx���?������%ə�����@�h�00�6��!~�s��aв����ZtXv����X��U������ٱ�Ѱ:���YVC���/�vM��r�!����f��C?u��{�����J��Q�O�z@��S��8X��G���R��nb��0��Й���K��?S���T��2]�[�$IxAv��-Y����>��
bL�T�mИ��{�ܕo����ܓ:�c5h'm��l��."�曩�U���q
f𺴑3s��הy9ziѺ����/@�X`�Z��n`���)�2)7�s�HNJ��L�������WBn��b�r3�318���~�l&A�&^�gdP�fS/;cg��a6�D4��p�	��#ۧO�7U��#��e�Z8��9��S��(x���� aٚ���
#Ĺgx�"9k�g8�0���WDo�e��zV������,�2dfU�Q�̬��X
04-���F^�~c�0vƘ�4��K��xE���3O[&7��ȇQcd��X�
�a��TGo�ΰܬ�oڔ��v.`hX�Jy6f�306ƶ�����Xn�<痉�'�}Ө����,.l@e��
*R��G�
v��쌳���<�l��=�eD
��rf�T��wp����4(��nVL4�3~����2�x8N]̂�@@05=n*�+#�f����ޓ�>}�bA1F��`�qQC�5�p6��]ש~'t�� �F>���g��b~zK�.DJ�`tScl��L5��(�M3��2���K�柹����<scih$��:-i�^Ќ��L��D��f�cf[�7��#dY�p04Ⱦ.�F�?�W]WiY7��'��ezMs�,*Y�~"4y<���Sٙ��	�����e׉�ɖYr����N.�I
�.iSV�gl> �gA��8��7��yQrҘ�ّ�����/8̒ܺ�L˭8'�ݻ�旹M�O����/��\4��x�05��f�Kߍ^N%f����y�Ƕ�}W��y�߽q"q6��]��;����w��,�͔��/qK�����{��o��Ng�k�����3�墁�L�g�gi�xa���"7ý�{��Hr.�4!_�3֑�����J+&��YN~�.m�l��O��5�ϮIC�/�U�W��ΡhI�u�6b֦�D���(�k.�11�'���2�����{��e��F��ԕu9	�3�ژ����q}ݗ�l��3i��f�D��B�+�'A�A�$�Mu�Da�3�g��^�_vٔFiIR���L��(�����.%f�V�)3*�tv:-e��әc����Ba���eAz�mt�o��?��k�|���l��4��Y��bO>���Q��/��?���ה�8:� ~+C'��g��O����c�_�)�� ��U��J��0?#���9W�l��,]�O�S#��HI��fI�w;CΚG��-<���7	�\Z��4�&���8�pcEp%2��j���NBI��,���r�v��㽫Y�I�)K�o�+�gl�2��X��_)67S�#^VF�԰5_C�T`g���fM=�zQ+É7�4�`f�t�%�S8�e���e��f���6ΰm��߬)�w��7��_I��=drdP�8N��x7Q Ӣ����]�X �D�f��@��p|�Z7��Y*���	51��ٔ%e����)/��1�q�T���r��Y�yk,f��Ǣ�ŲŞ��f��55�%�Ҡ �f���#p#Ҳ��D'Iॻ\wt$�V|h�S&9�*�1�Q�Y���s����Tm"���b�߉���D�s��
53�O�U�lL�N�����4�=�Y7�,��}�d�
Rض��q
���\����,�Z�1�zD?g�lHL�������1Y��o`b	����h~J�Z�:
`n�:/cg��†tFh��Y��e�a��H����`����F��Rbi�t���6�>A�It��M�	���Y�@�;H1\�Nw�%�&:y{�	�̮J��:�>�Fc��3:���L:�^��8��Y�-zr0��sKa�4���ߍ�柪e����og13d獵����v�
bgL�f��:d�h؉�h�
����@�͕���͞&�\-��v4�Y���lj���c �Ҙ2�R ���n�L���c�^�,��p�^��qM�$Avf���_�>�����﵃���L��j��h�$��`Y���y�f��f�����m�%�\���e�VCfvΜ�1f�Y�<O�s(V���9Ķ���A1 ��^W���~��!7[wX����~iSWci�;�@
�!��`u�qTa�|,�E����Z�����+˓��sy�hͱE3�!lu+=��.r��b�͘G'IF=�#�&^�f��u{]�x�q^��t��H��ɯ�6�i[%��8���D����ty��h7y@0Z{��6��d0�Q���i��΃���?���_O���
u������v
�����'s2a���s,%��(�w��w���/y#MJ��q���x���+�;���+�����o���p_Q��Hy-w����l 23�l��fo�q&S����3o�<SGA'��ӅH�l0��򐜡O���`##yUe�Z���>�\����JC$f�a/j
��\�t�^�иx��OT@0Q<��`�d��`�bb&Ɩ���uu�6���jj>�:.�D$fq쌝��%P�yf��g<������Sk	X2����!�����2;��,�;SL��z)V�c-@�g,�&,'�7�X��hR�6I�i��eʹf�G��i�MZ�h�sF�0ȱ�,(x8�L��34�N?��h�r��>3��&�s9����]x�h��R-�̈́Lɱ˿7��cg�8��r��9h�X�Jㄆ�ǀf������,���o�bc�S�lv:h�#�Q��8ͪ��`��S�@M{�	�i�W�"9g�u���p���ǀ��
[\��tXv��\���ϫF��_�?oh�
�7�\�r.Xz�`�<^��α	���$0CL+�jl���fB��� �<M>�'�e�X@z��N7\�dyס;m�L�ŋX�r����P��1)Ƙp��O�f9����oǂ���6�����);s�@�];��ɀ%Z2%�bq5�͋a���,�^$@s�b3+������u2�\.Z'�VYg�3.�:}G07�"�B�b����k�:�X����G�-֒,?��VD����dfefUug����.59�r4�P�e@��HI�<�c��!%���2`�A�a~�-�Ѓ_l��!̭$ϸ5�MM��dwvuv�d�s�}�ء����}*��2����];N�{�Z�[��>h�鳴SGcv�>��<?�wjh5O�4�d@'VY�/1�����V����urq�[u3
x�]
3�I�rH]�fִ��j�"mU�7sdş�s��c�S�6e��al�Q�y�kg.}Ɩ�
mo�ng���d�94�~ �}kr���N������=����Z��x?�;�g�~n����^�ef��ț	���u\���������/����{��I�0�L�!?K�?�?�M?'AV�'d�s�~�/��/�{��_۪������R>���XL
��xq�&��S�X}���/ҏ��������k�є�m����0U�J�<'-0�U�ɜȿ�띷��{/�sOl��pb���׺�ej�5f��,Y�ˮ�<�����������J��T����52h��J_��e�/��W+�ղY��W�٦3Z�d����97�QvͲY��F!D�2���? a�	Dq��w��uv�����W��+�F�xS���EkY�m�e� u�`Ssd���Bh�n&?r%S�Y��^֩�l����u3lk�M1�z��fc�@nל��-�K���D-�`��1ד����"��;C3�&�M���n�5����l+i3�jf�����-�v�f��j�N��6eѵz�����F^;��t={�粺��e>'����df��b��j[���M�|r~#
@k[�	�Vsh0yX�̝5��v����b����㌺��q`aݙw�Yk�6�Q�b���3OY3Z�"S��G0�&Fn��͢��̿?�����:���ö�3A����L,m�����,���˰�P�kj�s���i�7�7K�5�u�(����K�E�ь$k�kv��3�#��f"C����5u5$f�֜�z���(��a���v�Lw����
�պ��{�*���2�Ͳ�����2�=7�y��h��#��jH���f0�D�Ot u��S'�3�4��WgZ �umv<Ϩ�1kTހ�{�b��yONص��O_h���E#�$�c�K�C�3�n��٭��QԹ3�On	��YKC�iҼ��|�ݜd'���<>��9(�t�NÿR���ρ����?MO�+�d
gj��8����Y���l�9V��bI�	����kj�L�	`���a�އU�{�}�\��o���ߖA�X��!��b��*��#�~�J���k�4�jh>�@��ة�!���4��Q;C�`�[{)�}}���}ե���P�%5��6p�^��l��^��?y4@}�+5J0c�3c������`�h3�i�^�nY=�/,�~;�%���L�gW��~ZjN�����Lkhd��{\;#�ֺ���!Q7�;OҿZ��I�5`O�n׼kC���&�RK����<W��d����=�v����ys:M\[��Q�n_>еk c�&@���$��,���k����G]���q���r��ϱ{�����ȶj�Ư�ÌVj�i�h�'/�[уyFPH

��Ϙ}=��;W����7u��h-�0K����{UX6��R3ä]�=j��� i���V3�}�m����H=�[B�ed�`��vGAJ�l�B>���f�Ԗ���p3��О������Z
u��˫�հ��?�eQ��B��۳��^��QK#džUs�W�W����W���'S5�τY�Z�,e��b�
f��#��K���U���6]��ʬ����v����S��Tz6{�$�~,�QN��*=�g}?�ש��iͯ-�zT�Aۍk�tt�y͟��mVο���?�1j5(d̻4��R�2�B��55��U��2����y+�@��`��3C^/�눪!)�Z7�)����*~���i��+��Rw�j'��Sو��t��'���0���lKu'��%P�Rgd
���

��+*�vL�C�&� _��zZw��H�����k�f�*�˭���ݾ�/u CE}-amXj6���	�"T0��)��e�a�01�4��v�6Ez�
�w� ]��)�'�J��(f�!K���6swq��&s��5:���S�.��\3�^��oC��ྥ�t�E�]��-�e��ն��4Z�Z�p#��f�ɠ�����2��U0c'��gs��sg�bcf,{]��;g3�y�Bθpzy�<�\.iQs�ʊ`��
z�L4��=3�4�u��͞t(݊��Y�� WI�mU�9��m��:�N���|�L�VM�b�0�L8r>�
�]+��3�X5���yE�����V���R:��D��ݤ:�-:N�5��p�b6W;�`@ǣ�e�`�T-;��ȁ`�Ԍ>=���4�FDp=^h�>�!���uM� ķ�\!K��Qfb�2�s]�
/��H�������Gf���[W�>����KC�&�2jf6>8;+F���5��4�WDl<`.�� MB5��'>�3��Gj
0������U<��b�nˠ���
=�M��#$���i��%�[Q��&@��0�3��sFqy�4��(=�A�~�HsP`al��6H��W���
3
Ӽi�2���3}J>�w���I��H�:|�	o`j�Y�L�+�����żw';Y�ʞ}���	��&�-��`�]�=��c0`�� @��{2!y@z_(���;����
�|�?`
�����֬���U�C��k�o�]�&r|��9�(oc��D20�G����l��j�������?�sa9}S��y�e��{���t&��0�M/��ՠB�S���sK
0�	@��!��IV_�g�
���u�
C�)�
 �敔5�U�&�`#�q8�����K�`�����5ơ
��0u�̢5ո2�CaL�1�-a��0>A`��k�#nڼh5���h3�X��09T��5�Ij
 ��h��O@����<�Ohi{!S2uQ���%r�Tz�ǎ}��V
�lMa?�0� &3
��5���G�n��2.+��Uw�����L�3	ԌIBmsd2�\�K{a��SvF�y�����g���w��v���-��*��?rޒ��2a��Y�?���c-�~`�[x�c��m��Xi�L�o?�E��2���V*�mٮ6����Y��b��2nξ_��,S�2��_����^��o�ӵ�"��Wz��.��~��W�\m��+q4�^���¶�	|�
�tc4����1+<�a�+_;�AnMG0��km?�F�����!K��M4ۭN׹�' 9�Y.*u:G����A6�)�Mpl���Wei
y�[�[l:
�h�2��3�L�2���.hIj��(tɅ��Ԭ����Z�9��2ah4�F^c��S
������6�����l7��W�PU
d�!��ܵp����@�8�ÒwHBmf�vU�ݚ����f01�n������o`F�Kf�;�J�hVK��
z��sC�AZ�06����v���,����(3� ����&���3�x����7&_f��!'�󩰡d��kK^zRq�bb`��UW�|zY��r9c�!��!Xs�.�f�v���3s��q�^��|��يUV�"��K�C5+����3�O�k����b���7U�1�)��
�8�Z���!F�Y���&,
�f���2�
`�3���g����knj6<��;l���~3����R�{�t����,~"M��:�i"�(.�3���̴B�,��A�P6=���h/����Ln,�o�.I�gc��H��̰͙W�Sz��&��\�s�f/88�g��l4�9�6)�Օ���-&=K�Ԩ��/�c`Y���
c/�0zp�3�>�y�F"�ᡌf�'�)�YXl/�<Ȗ�o�g�}�T�#[�����g��\��K)��➰3GpM�O�h�I�̩
��2�g@��~���A����y��Tˡ.bO���/]�����e�ܪ`jN��N��w�X��3	��wO��o�vB���
�NZg���7d�W���2^בI]SvI�By�O���02�j�}>oqxWؙ��p�t7���v��ڇ�w������w�X�]9S��
\�&
�P��Mek�lW۫�����*5|����L��ۜgahS���v֓sq
ЖC{��٣�����e0��OX��r�_�/0;ɵ��P�3w3�Z	�枇h�_L�6Q
�}��n4��������,j��w3&/�r3�i�4pW�m�����L
Z��X��q*�1;J���R�<�D��;3ff2;�g��O+3��AvF{
��/�A��(ʲ$nj�����v�	�:S,��E0��x��l�ZK��b���U-�Y4H�0�0��J�}��$&�����6z~��d)�0#4�@ f�j&�����	��k�Ʃ�>��f����f�7�Y�d��b��7�������x�l�jﬗ,�}O��?�D��y��<ߨ��|ҧ90Y�{�Q��kn�g�ʰl�{iC��R~��\���޽�~�1��\�svW���;��~m-è�u@u�k��j=ަ`P���
�WWaK��KUY�_�au9�q��N��_��yy,� ܔ�9��[e��jv�tS�a:Y@�'K�t�eWw�e3�Z�R��<�?UT.K/eO��Uـ�>˂u��f�YG@�p3�B����y�H�3�e�[�յ3E2�ی]��x-�G��H�4�tK�m.���Q��i8#�2y	�M��X7sݶCﻦV �y5+��c�l��,H�24.?�tk7Xs.��)9c3�	#��6j�;6���{����i��X6dԪY0 Bô�?Z�0c�c�40%k3���L�8X�����r�޶'�L�u1����ˌ�Q�� ���j��8, �k}�LX?�R�6��q{2 ��*?�Nl�}d��-�(YC�ذ
`�`
`�f*�i�g�֙%(�����fd`]�.���h� `�Zf�l�
]�uV��^{gӯ���՘�୽�����Mbƍf�l�m�-����~nq�c�¨���㑽!�f�:���82�ef)={�8�PG�ɽ6�A@g�f�$e��<��J�:6��
�f�$j̎e�0T�I-7�r�|�3��Z��>M�Q�̞�g2����٪%����Ƙ]n[8�Nf�{ҳdX�+�m}N9	Up61������
紦N!f���mr5�T���;�0	ѡ�m~t.���3��!��A�[���.�W:v�o�c�!u�}3�mRf��@4`&�`��ƌ��`���*���`����U�#�H��d���'�3aT��1�����ls�ٽ��R޳�2��7����lz�3�msl�%m�@2�
�f�&��=Z\�({W@
�S|Tq��c1�3v 9{x��]4����Z%y�Ik�0	8�ey����24�&I�0n|å�V����v��c��I@-7<�3h�~N�'jg°{���eca`8�0�5�)[-�'c3ZG3I5H����+�cef�0ae��,�Ůe3�a��`��0�L(�_�����,�-'
���Έ���1�u�'�
mrC��8N03�G����M�0F�ț���)���_;�AF3UaL��(R
3>�_� �C�4�3�p�m���vD4�^�4
�e�]]-�L8u7}����(��Z�Rc�w�y$f�kh2+����!�֚	2����Y�� }~�N�s����\,���:Y���L�����X���6�`��`j��ٲh2�X�L��G�~��x���_n�����J*_��l/m�T�F!˪]��
���x��gykC���֟����
`���s�Y�djP�ҵ_�ү���t�*�?#��蟞����*�4{|�.~�c3������O��� Kc�lz)��eR����-վ�u�۝uY�^�Ϳ��Zrh6B�ӱ�Jth1��8�UVz�J#7s�4�Bf%$����)r]ji
c�|��
�Z��59h��*n)~�7�'':w�@FA�k�JO���Y��
���k�z�mF�6F!lK�T���E�Xa�Օ��XǁL04&5�oL?�|Q��z���1��2h��fF�ݠ���f9"�Fa�� �zRc�6z�fc����e��ح�
ۂ��� S10y�R��nǞK�����,orh��-;V���,�gH��v����W)Xǐۗ3g��
fpJ1���r�dF�&s�F���J5vm��{���2�ϳѺ�� `;+*jg�I*+�����D�uO�
o��?rS���F�z���&��S��l�V 1Mae�5Y�:5�LA��jgXOWL��1����6��\�	�zJ���XY���%�EG֙�w۰o��.�R��e
	:��|�ns>3W9��[�
[�6`�r㝦�}=�з���1s8����u��fXG��^��J�H-Xs,�&$fsϞirhu;�L�aҳϡA(6�<���
NЌ,��G��-�?��fL(�s�s�nf����МfHR��ol���=#������������@R����(�b�6ۛ��L��۪]W�Is�h@
�4ד24�4R��X>�a�2�`��r�Q7�lM��>V)�4����4���\vfy)(O/�#�)Ma�N^3sT���?�/�̌�d23�{�̌}H�Tn���k#t�G��q̖��L3`�1Թ���
����0�R�-v|�4of
;C�}��mۏi�ỷ0:d���@�AQ;��͗l�9d�hڽ��v�m�7����Ս��5�N��n6~�X��8��=�;�ΐ?�0_��L�3d�hHk٠��h��Y3\Mn3��I���̨S�Q�D͌�>0<^��+׍Ad�adK.)�����Q�\W`�0e�&��57d"{�18�z2�>m�3sU����3���$T?���ٵ̈́�yLoll+�z��p�l�����ƄK��L�A:�R�q#��]���,��:4�3m	m�ΰ�o��m&x��\SoH_e��2X��]Z��ٯ����0�T3�`F3��ԥk�k�Z&/���lz:��<xY1�b��M�1�r�����}��Wi�ݡa�N�:����G���<��[g[BnƄ }h���V2I���߳8��s��������2������Kdl��Xa�ʋC-v/_\�4��ɀ��B�����"��.��ź��ܖ��W���+�>��r��'���]b�߯��
�e8,��T�&��K��œg���?4Av�~X�(S�rμb���-i̮��՗�ٶ(��y��Ch�y��e��E��z�����kv��_�~{m�(.��L�
�����2��t�0HZ7S�Sw���@�����Y�+@��<�*n����T�
��{��P�':�D�g�j���h�?�C7�7�`,
p�F{���
x��^���1��@�13k}v6B�t�yk0�x�����*���t<T0�����{�,h�����7���T�g��y~�Yj���P?��P��@͎13������;�
X�@�5U�4L8�Y��Z�
��j� M�1��h��h�VE��g3���2C*� �CSU
bt�׬ai4���4K�9�c�y�8��ml��`.�̼Uj;����@�];�߭4�*�3��fJ�O���b�����X�
ܨ�f3\��v����M�͒w@J���@��!`ƤS���V����bр�)�3
`j�Ü6���sw"��A@`Fgg�.2�u�&�h6�L�C}��H-��@C'�ft�\r%�P3#�0x���W�E�͒�c0�8�3�v����/}7S�b�{�W9ˑI֚}���ZuOP33\��fQ���>�c�ϤV�&�+��'6��z������f �F�-LMo;�tp(`�ܘ%���`R��>[��:����r_kh����LS�t_����l���cya�i߁�(!�jL�v�Mzv\K���<��N�xr3�~������rl��*)�ey4CۼH>�ӷ�a��A�.�0�GVv0������l��q�n13�Xx筺s��	�02��9��;��p>,<3�fn���5D����w0������jK�p73���i���r�\���tZ��5P��!3<?o�f[�,@��'����I�u��^�sh�� ^w债�X@����9�jk��qCܛ�S�9nf �����0��҆�C���K��:�Ơ��B�jhNm�"�q�Tr�)����w1��vh�M�lD��K�es��D�L�R�x/!A��)�tz�̖�I��!�f&���鐜юҶj;�a�[�g��`ϣ�n��D�&�!�v��B�gi.c��2S��OV/LM��2���0
R�Ƽ��4��Cs� {�ZPf�f��d2�}�0�5���F���k5�o�<��C�<�U�����o���%��+�R�Z�2�#	�$ð����m�빜��Esl��ed���I���n�L�P�O�x��O14r�/�_�_���33X3o�fɼ�L>߃��9��H�sC&�SG�����k$���N�N~��mPt	�^��nݷ�&�_%g; "5߻�Ynz2v*6J�P
xQCCQF�}5TFڶ�Z�'����IY��^pEm�ƺl���Nu%�g`:9Y&��kz9 ؋D�O�Z3��l��3���3�i�:h��&���l�5fƊ�d�)u;�5"�X�3�ȑ5ү~ޯV�Ö��[T.�0S�5�ܬ0�CYsgf�p�k��6H���hT	��b�e�s_O��0Z*ݶ30c�3a"���~��{��Y��l�A����$S���@�x�_VdΨ)@�l��h�֨	�|��K�9�)'4���{b�ff��E9��˔^o�����Ą��P7�K�صvSg�y<
��{	���-|��Y�m:6�4X�*��KaicMG�1�&雀�gv&�h�s({)2h,��^G;��ٙ��ae�լ�ҙS-��W3I�C�1@1�	�bfR�BQ�
�n�N�&X�`lBr�_�l!E�d%�w5`�%�3a�-����p�3��*,kf���"5y��\�E�Q�A����e�f�
դ?e�H����~���O����X-vW�rl���V����65C5���Ӡ�eW} ��ݖ��1P�L,j�
�"��ͫ�UJ�l5g����Dv�14S5xN
�SahF�2�q8ް�&{�U��3�,��|���2$���ȟ��Y����w�LnzK�L�������6���.t����׌0�Gn��̌:�ɾ�݌}�2ck�`�e_�ͣ�rX��̥f��R�g}-���}0���� 1SGv����ɡ�w'Kwn5��chp9��~�YdF��}��I��w-��Q��AB���M; f�%�L�Sj3���l19J��ܓ�7��1w���ԄEs�\@ZxpԸ�
��l_�W�����7ə�3h.��
�@D8f�� /S0�4U{�=5X��([����P3q��53C��X�����\�kn����*s�c���-������^�.9���
m���"��7�K0���0@��
�fwbL~M�qI�2�����5��i�5�녲�,�j�d`���hwa�q�<ps��Xb��ƙ�v9k��Q��!��v�p)��ZK��X�Ȝ#*@'�]��F�ϑ˗8*L�2j�)��1c�>}]�M�q�6��l*}+,M(�PC�fg.�.]���1��fo}�����������-�6�X�}Ӿ����S0|>҃��ǿ��å�j�H��'�̕N�.�]�����l��fg��{_N�/��t��K3/N�������ϑ�w���ǹ���*O��D��W��Uk��Hv{R�[�I�nu��`��2�,Hʹ��2�Yǫ�MC�0�G�U����	�@F�f���� fc�0,*;Sb$���gWS�@MQ;���$e����>��Q���ѷm�dl��t� �N׽�7��Hd�O�ּ��Y�^3��+��C��Rݹ`CpV��l���!�F?�K͖�q�(V�/_�|	����e-Y=��
n�V�J��p�@�YY�~f�P>Y�5XhY4gy۪y�A��v����w�2t#�E�v90�?�%�nuU���ئ���lMm3#_@��d2w��Z�aE�pk�`f�2@^f�ƅ`�M�&`f'`�Y��Z���5,�)��u�@ML`������'
�l��������s:����@����,�&�k�Q��0,+�n�,�I��PGHm�͌�c�������������AMπh4��4Xm&�>�{��Y�:*ؙ�T��8/@�6��x��:�3!sʵ�J�<L(\%X��ţ:��z�$�)&�ڌ�%�D
 g��f�+3�r
/Ľ��ܶ]s̞�kg&�V��+���-��3�b�hG3��	À���i��f���~�ȝ��\�F		L��ԌsV�9h�f6H3�;ss��ݬ]�ҜX�>7����F��\� �Єu�׍�m��1�~	�cce�V��}���53!����eJ��2�?�s#�M�3G3ϗ9����F�д�gmS����\��r�����H�ε�fkT��d=��=�E4C�ji2�Hӄm�m54��^&�}��	Ng�}����|'Qftq�r����`)
C]��ʤ�e�z�d�CP6������)54�~�}[+�0:8�;�}��6��:�����Zm�}@�2o5Ccke��.����\�DΥ�V��
A����\��
f`f0�Xͫ����`�rp&�D~�fʾ+�MXQ����Ƀˋ��1���
݄L@�u���q��[�ż��a_��
g���\M�')�FK�m�-Ƅ�T�1�8�/j�23���=���2�@��Y&"�vM��h'1RY�'y��hw#��0sAZ6�^h?��./�3�3ؙ`�� �'e�ծh*u�K';��Qffd��O��$��(�&�B�f2�pF�v�S���M��PDs�GT��^OA�v���z�Z�B+�����g٭���n�����u��Y.�A'��j~��԰��f�mAm{E���Y��l#+��^��{��SG��6����L��R3X�Җ��m��_��s13���T�������2ז̯�l����~����r��^��&	;)
��u��V��w�ڟ{����b[�-��NnJ"��OF>(��/��RG3�
�J�t��C���dcH\P��� �e��7O:ɬ`U��f��\6i�jռ,���ͩSz7���9����rw6��E�t��5����z��[C+�K��ե�g0"bzT�WI᝭*%u�feA�c��):S������/#y߬�C��U���QY�e�G8n!?+�F�f�V��L8�;u4��hތ23&=��~�vS�MaS�Vϟq��ѯn�R�۲�n�K��P��vm^���<� M�λ�5�uJy�2d�h����.AS�fk�lY�s�dԺg3K02B	g��r�	��Zس�zUi��*,h�tmNn]44�n:�	�00���`g������i���u2�fyR�:�3C'�u2m��vJ��͢�T��2��Q.�5`g�3�l-S�Q3�^�fs�a	3�����҇s7X*���3�gW�Μg�әI�BOޖ��E���8.���!eq�ঝ=&���rj+#Ӓ��Zp�s��#�|�u4Ϛ|���V3D��O}�ܘfɔ���f�h����h��f�qFv����'j���V�L�(P+���vۺy �&�G�e���=����A5�����)�8HQO�y��A��/��`kb�	�������2��3�hX�?s23�+�
h^���������:$\��,�,�y00+0*��!`C

`��{����]ee��!�F�o�ԺY�j�,����DO�G����`e���״����Ex�}nv�P'�?5V�$g�=����r${�,���8u9��̍��F�M����,�4��}?�QdXw#;{���q�C~vw39o����ߪ��ײ�
�3�49�3��svb2ɬ�?�;��$]����fd0-��c�4C�.8��'�L00��\��V�!����C�a�׏��r�n�%tn�v��B�5�+����y��]MI�N&�����d�D
m�%d�^���v�z��ڙp���x)x[�z�>�"c�Q�L�\dk��0M��Qsq^�����rgO�gs*�؝�,ƍ���!;SW�N�G�,s���-K�"��j30����6��7(�P�s�l�p����2gQ]�
^�D��N\�ko��G�C�?ݲ��@�W��:3{,4�b�X*�JY�"�够�î��<�}5����靃���eac�C~Ŀ�o�������u����r�!1;���zq���e>k����V���A�|���:��f�?���d?�����VV]B	G��6&gk4���Sm��7��(!��8��阛�)��j���L��Rh�7�*���1��ab#r.xS���;Z��3a�sdz~k�ɠ�O�[@�3���̔��tQ�g�Yph[9*]�����[�Ù�e��/dF����}�DR`����8u6KQ?0�c��m �,��Ռ%*���p����'�u�A
�4ܐ�]~N}k�*��B�>j�u���v`]��L�[�-�C���j���˝��)h�m]3`ĝ����k��$���kgR#Z�!�mhl�������#�Xg��V��s���g�2��/��Ц?��d�tx
Ӭ�!��ĐK�Y�c�B���?��5v�A�럣�!���H�^���S[?�Z�������x�*��vHt�t����y6�r?��5s�S���EbD�J(��d�4��U���\Z�1�Ff�r��mٙ�N��M,�w"$�3q�#
\�Ï�6ߘKR��	㧙�W����/Rk�^��1�d�xڹ�J�L�=�5r=N=���Z�|�=����ɀ���<3yϣ�y�iY�{�Į}8�Yvco��������T����%��ϰ�̰�_J�͢�L2�c�oW�c��泻�g��r7E��w�fu��>�_��ac�E@��]ߧ�"��4���jY�g|?`��M�d�'f�:������˱�<������u����7�����Gx���e��5��<`�����?q�ٳ�+���;�*�w�w���Ο?�T���:���o���N��ov�IߒuY��$i7�Ù�Gz� c�sJ�5��'OT�g��y��,��q*�A{W��o��=z�s=�վ|��3�d�6�`
c���u3O�)�P7r�v�ZRgB.nꓢF鸹���F����^��2
���n{V����,����-X�D���C��O��aR�n���d��.��&4��q���
?��v���CD����$�cQK 5���@�{8h1�d��c�GBZ`F_d��r����qL��~���?䆻Y<���ӟe�n
-��8�Y��~��=럋��Ų��r:gO�ϲxb��QZ�����G̴��L�n,s8��}	.��]����z�
���������
TXų�&��E����m�\K+�̦PK��qZ_L^�ij�G:��V�E�y=\�w�^�\z��S����w���1�����+��)�h �2��U�
���1�1�L�p
l�۪��؏A��>�T�����ǪECn�`ZC��@U�8�m���Ӡ�҄*�PMKY�,���-y�l�;T�܁�t{�
м|�,��<��m�z�^�T���ʾ�l��EMcټP$#�DrC��Y�Z"����v�:��Gpf�Js_���|�
Yܮ�0���fi��mռ����٤�t��#��&354l���L͞p�J�u��ź��ٺv8C��v4�4�l�[�ݪ�Z5`f{ƙ	͕�Y��
���ͨ��~UN�t�U��;��)�"�3n/�tVip�I�tV����@�?����5�=�F�MB�ۓ��h���!\�3��df�R16$�`��4���[�������y�274z���,�����p9�_���\����1#G1(3t��F�f��#ܵ�;�Y�&H��IԹ�9�N:���
(7c
I�E��Zrh8�BX=}�Ҳg�x��|nE��Ag]^�u�eA����������p<u0�c;�+KCt�3,�aSS�έ���Y3'��y���S���xA67�̺I�����Of*�a�Zm��٬��b4o��'R�4�
��>}�J�bPy~��V��?�o��r�fȋ�ޔ"8Ӝ��[
�<\eh��{����Ɇl03�o�۩��8��W�K��8����e�������V��23	���>��������kfZ�3Z��X2b�ݓ�p��o��S�֣��hc���`e.��n����sF�?K�5`�0#`Y�)��h&c_�����FJwݝξ|�X�3ʊ0M��9�m0!��y��ﴱk>R��
'��A!�!9�K���)�N����bۃ��ij�&r
.�I��P<�gl
r3df�q6s{q�.�5��^9�a'U������S#�Z5V8mBj�(˞Y���U5��4�fTۭ'ϒ"@�B��"��E���n����&�0_��u]�Z7Cem� �ip8#`z�o���|���pu�`�s�g���ٌ��CmK��K乂�s����q=_脒�I����`׌m��0������ڟhߡf��i��E���p_�6u�-�]�O�ea�"h3=���f8�ٓ.K���Dݰp��dg{�<��������O���C�ةF�~ur�\��_N�3,�"�/��_��:�y�n�����'���l[υ�嚸��7R�K��Z�O�����tdp�z���h�2eN�z��4]|������E-��K��i���04��e+�N�[�Lu4ŭ_����=*�UI��_�&�j$c��[7!�v���d�vʉ��Ź3�^����ܸ&�mU_vY;��~��g͡ɲЦub���4�f�G.��jl�a��r����g:���a<``DqK8���+~swCV�������Us�y3�׭
�+�n�0Ͱl�/N^_s٦���:
��$u73Pxm3$e�^\a�Pk����fo{���v�^��}�X�f���΢6�n���0l�[
�7�3,� �������Π��}VE]a|��NZ7�aM�L�����W�٨'T�<S@�M5w�A
�䥀���>��̎i�L���eXp8�@M��9�v��>l�+�ܪ��֊�PM`@
ύ8��ZkC9���/˥9Ą�=n����f^
�����.��`g:^˒��]4�`f�0p�L*9�J�x$��v~]/��x9�Ԍ�0�h�-��X���>d�A��l�W�恲�6#Ig򲐓�-s4h.���1���0X` a�f���g{$y+K3w�"/��l�'g��dž�ݱYק�3hNt�7�#\�.8�܋��M��g>"����wcU�:30�S�Of���=��P�O!93PcC�0$<kg�� �q7#�&?�f
��a�l��7��Z^tl�K28�e�*�a��V{���.�R#��)h�����~�#�#�O��wu�<��|��ͱ�'l>tt m����3���K�)��+r�����-��}�6�]�u6��۩�5-ܶ}*I��o���trr[��
�H�7g}0)Кj|�_��z��u��9F-�E�R�{��~|7�4g���rs���e��!��'�ɁJ��7��Bn�FƐ����}����3�s&��M�HQ�f=�n��ĭo>�&x\�{�{�P�󔍽֋�4Ĵ��Y`i6i�8�q�������^�k �&=���e�
MȦ��;c5o���F�Z^
#K�qlδX���EmHX��us�jnPz��Z5K����+����0#,sa��5�1��ځ��P/(���[��������y�F�궂cb5L"E�L;M���L�d�܇��t��/�FF&����߶WZ7�W�I0Ld�f�&Ө=0G3WOx��Z5�Nþ0���ȭ=sf��4�.p��a:��u]�Np��q��ag��DN\ْ�a�][��ߞe�+��a�3�7�*�/ba�ݓA�-y�oR�O�QZU�h���2�x�6C��E��׏,?��)�R0��c�q*�:�^z���١��7��弑c�T����u�Ȗ���$���!�ma�ӇO��㟙��Y��QG�u4��?���H��,�A�8����sЇ�n.���y�;�ͥ���2+���\n�ss�0
���m*���j���j�T����7��c�Lۭ�@S׀��׬r��T&o9����$��V����4�.0�����fuMJr���Z�Y�ߏ��u�|y���l6Q��e�ɣ`�m�$�+�@u9\[=M�3�jj}Nd��:5��8[TP農��Qy����>�v���bi�	L�F~L1�>�I��k��[gф��f�٨@�b��ye�)�N
��m����lory�KQ�:��:��Y����H^g�Zt]��l����dM�F
ϳ��hX��^]ά�b�u4&���R}<�}� 򡁙�}�Z�����i&^ ����-�,S_M��}�����lh�ɡ1��c2�4��Yf�v|��@g�
�h�p�Q#鈌������C�f߻m���y�X�&��:�v��}�,M]Kcϱ��j�a�,3�j4����f��u���dƆ�\�5={&�̋�Q�42{����ڙmu�B�u3:�Bߙw��up�r�`��G�S���J��g�� ɬb����ذm��r�{�ڜ�tD�'3�ݡ��8�1Wz��׵�&f���l>�A����$@g���lv��qDFa6EۃY�`F���s�=3�S���j�}W���d&��X�?2�&�΂�yQ��i-�c�ݿzT;sͿ�4}��q��\�p���q�VFr�\���lr�af4��e�$7��PMrhp:�qvH�n�)���?�/�s�v8cs�@u1,`SM�W����Pf�m��|�B��I�`i�33�4��$����K��{f�ظO�&�s�ng,������(3I��`�̼S>�v(��}��ލ�
.̰5pꡨ9��0�@j�`k�w�5bU�F��ʬ����'r��O����XE@f�̬w}���%X3���6�5+�pK��z�D���T�^�fM0#�Ӱ7�����d"����‘M.X
͉���b�~�kr����^��1
�Ĥ�`�c#둴
cϚa	xb��
�����ssҴ��H�M�wT�26�#��q�mG�j �P���33 �0�B��A:�f�k\�?�b�i͛�z����Z�|x���J#�"{&/5yo��6i2��u1MM�35^S#_}l���adV�n��`
Nh��f��Ȩ�i+�:B5q5%DRf��Cy-읝�̄r��"-e<�==�跒�v|�2.%Hdb��&�^���0"��^��9|�/��9���;�ŭ,�fz)썠��|Ԁ>�Pȸ�qӜ���mU:��AZ>}�����\��>y�N�G���*]�^Cf^G����h@i�t�����_WE���8\͸ ���G(��@1��{W�0�j��N�a�0�Ӊ�������S�0���2�A04/��z;�RPҶ"�Ŧ�7*Om�Ri�fk�,ʘ�h,K3���&�B3�\z���@�������ۭ��ŢE�f4�b��z��q��X��TV�SL-{�X�X��f4�����0;B�a���"��9���<��pdZܔ��M��$ٷ��t���hnf8��ȄU3����҄}�>�r���73��V�Oak2
��@Mu8�`#�J2gej��E�H�L�E� }��Yn�U�zݺH?�g�`����]�O�v͊�zn�,?º���B>��hC�Ś]��)ɜ�����5
��K6:ލ[H�ﵶ�FB��O��H�a�Hv�����ef,k�hj�f}�U��9�̢�`��r��Z����tP����l\���^2���N�Ҳ�:���;�D�z��@%hKu?ӂR��I(�#@�F�L��m;�f3;�s�A�7��'��|���2�Zٚ�*��]u1����2*7�5��j�fi�g�~7Z��ĠɀL�0�f�3h�5+C��v�QG�7�����.N?8Mg�ug+4�&$��G���9���a��.�����{��X8ߘ���"((�f���O/�܇,I_�3�g�Lڱn�������$h0�U3��{���2j;N�Up�&"F�@��D����]o��ƕ/�j(��W�p�n��.��v�[��k*1; r�Ti��{f��{&�E���104�k^�	V\͞}��47�n�6��!k�O�h�܆O�|�</�#~��l02|	8�!��{��Z����$+[�I—R�=���>��t{�7����$=��1,��p���'gdڠ��w�+dY0w�W�L�������
fp2%��� �h�zWe�)T����7�e��&v��� Z����p9S�
͠	�&��L%�L6,�F����^�]$v=O�)v��Xjhh' 75�f��ڌ��LژA�R�#i�4�WX��ɚi[�!�Չ�Y�m^>��+�D�3g�36��Y0�K�J>�K;�f�6���0
��}�`�l�d�J��dC~�2SgfطmM��q@;�yԘ``C?�e�F��Q��p����-�ע~&�&�Ȣ���݌�CExr�-)cc
L,�Wo\M�:yYJ�=���~��+���
��Y����T����Lԧ?��uU���i�K�O�	��Z뗁��7_�?~�V�r~}���u�~�P����3a�N;	��k�7�U�����gI�]u�����l�"��|$c�[�����(���ˬ9G2'J�V�7��b5�黃�S0õ�1&��x��r�������[��~S��y�O�m���"��xL̪�i'��r�3�{����0�����p�6j�(Mnu
��2of���նԹ4�k�y-�uV�t��af�m�������&\S?2SC��1 2wZ}�|-nD@��Jb���c���7O�E���B��֍0PW3֔��
3��2��umG_S���L�,谱k��l��j�k[��6[�#/>�@�Yr�(,��ؗx>�k��@�)t�賖�\�nfB���4����P�{�]���x�yC�r7��Xdr�z@�D2>��STi�K�hf�0͚����b�B�c彠�,�Σ��"W:�˅�Q,k�������ZfC���f���ɋw��v!o��\��0�]H�J��S�O�p�k�����i��m_��;�0���^]�Ap��a�2=γ7b�i��7��W#�d����N�رۊ��=����c7o�t)���{�z��R�]���۷[�]�i���[[�a&�?v��փ���˟��O������~@����Eʞ߱zX�O>�-̿��K��0�Ʌ���9���'ۏ���߻�w{.L`h�~�3`[M�f��=�AcX���a�I�L�(����/�a2�7vSW��o�{
��2��}�����7�f^��?�����n��/��~�蹥 �e ����=]���߻�H�g�O/Y8w��b,�{�*c����gL���-W�o��ze+�W������v@���f!��
���첳�m�k�a^j�lo�h�0#}��?�a��:�Q�Q�J��sm#���-
;3cQ7`�m���u��Ɍ"`3�b���5�	����g���2��~����F'��}Lv°������1@���'�W����=�T�5�;"`S�6�'}+}�f��M{Zgl��v�t����W"\��j C��)\�+��|�����N�����_�>�>�MȲ���|��3��O�a)N��P��k�� =~L������j��s��,_
��ɉK�e`-M�Ƞ^�b����5�Q���<���k3Ha��T
�\�(�K�����,��
�~�C��=��94	3/���nl�i�N��?w8�i,��j��ƻ�����٠_z@��94�y*�߼N��e��G�^��b	������~V����`�0�
��ˆ�
�Gږ�tx��PP7@M��k.g<*�6�я(�j�����G�t&k
ޚ�n2�f�Hy�3�g��A��}����EM�ho��߰� M���6���q0�ܵ�6�i(��=sQQg�i|�,�D�p���R�_��13.g�+���m~'(��K\c&�=���#M@�qtR�E�f�tn�\�}��3�Q��Z�ә��K��[5kq�w�^bM����eW1����h�Ëv��ё9��!�͸�ŷ����l�t�X��錁���,E��R8����z��Y�6pEˬz��0�̱::1 {bf�g`�MݡJ䱍�Y�BM�2�|�v:ӝ2xd 	h�\7�����X����#a	����#Y��+2(�-k�2�=x�����u�����Oҧ���×�-m�f�����T;���2��wM���b,߻c6�H���P¥w3���1���?���{�h&�D�O޻��s@�8w����pmk���
j4X��az��<a���}�7����߻]]ܾ��Pܤ�X�{;��}egt[��~�8ҀL���M;W4������,X��ԷlrծηG��ڄ���xz~m�YL��'&=���0��א����t���������hvշ6�|v,�:�6�}?�w>�r�[`bd�r2kO���:�U�ƾ���Y�\�ضv�,��#�%����D;I��͞�0�]��ہ����in�V��Avf�Ͷ�X������^o9�[��UI-k�2�Q&z_k?[�u�"������ag���Ԇ:>���Wk-���VW��I��s:��LR�_̲�5}��?�b
�^�W��۫�	t�ⓐ����?�ʸ��5/�)�pK��%0�u4WejX�i�����|�p;K��`�\�x���A�TS���j��L��ڨ풜Z5�u�������u��2QK,�4�}p��V^�� ��5֙ܔ��⁘��������E&�4�:u��� u@��@;	��/�&�n�*3����G��!w��_�d�E�C�p_���RMl%U�rSG3��*7R�ƾ ��:�yrݨ=��y3�PKB5�7Z;��Y01[�4��,=X�2H��ɻ�����v���u3���DT{?s� ��5s7 ^��u�����M�^����,�f*=���`e�#�3
s�����BS-T��-�
���Ev���~��ʕ�	��ٌ�u�g���ޞ��
Pa]��Ňk��/V����.+B��G3�Ojǖ�����ܑ�A��oF���6�����������z�Y�	�ڛ�pVuUµ�,LB���-@�t�1ʹ]r�y�^&����a�Y�F{�Y֮g�|���d�v����ҳс�r��?�Tj9
l`(�U �P���90\�β�n8��g���N���E�*jpl��(�ͣ�b�3tW7�I��4�3W�*l�%�g���˱�N�l&@f�HLΓjm���7�%g@�Z�4Hp�/G�v��X���
/�F�c����PG�a���s����Q�h�$���f���̶�ߗ�gl23��(,���Xlg�3��͞�)@��}�k׳���8�<���UZ��jtjg!ςӢ.���5�v!5��Ȼ.ZE�uf�o�1+����fF
n�k!3��{Z;#7�qw�[�fZ��{P;���� �g��s��z������n6>Hۗ��ݼs������ e��N~9i��ѥ�353�T;����VKpYN�����K��e���nf`n�t�o�Υ��Ȅ�N�edX붇�N[RI�`�eԄ��Orf|�ő��x�4���f��:�q��浔�]����F1L;. 5	������"��m䥀�%A��$��m���VmC�������xFu5�Kb�p�?��Y��Y�$�����,�ת����~�F΋�,٣�m���0�%o�gh�i�s̩)��������15���kFo0�k��Y�τkY��fa�(zl�����aMVM?�,�t[yMLOke0�a�F���Q�UytPGn�$}�|1�<���5��3d�V�M��mu�:���`�������?Qʳ�n�s��_���,��3���t�ix���.��dy��O��/j��Lf�i�Y2��~"c�ӎ�A��U����%�`8����S������E�:�L٪��2�Y���JT0��L!c��`����Á^�B�<�3ɘ�4w�5���=�9su
��z4�Lr$Ts ��$CO;������X[1��H�V~�K�xLl���{�l����M���蝅=W�7TӀ�����'2hx����"��,$��3��U���3Ӗqy�q���~k;$g�/�X�~��;3�����,/]�sո
��8�A�����c-7�fו��*g`�a���p��xD~����m����Jق��z
�j��jn�A����UӚ1���2�����RJ�K.+zߝV�23���R2��1�d�o��<k���)(wKJ6���7W��OyMvi:'��_��M��`��6Z[3����A^�1+��ΰ\��=���i�g&s00�� ��4F�Y3�h�^��:lI�l3�ά
̼�������g�D~��M��L20���2U�l���y��3ӫ�].��l9��i�2יbcb��Ҥ,
��p�]�y
��v�=|�Y溕���c�1̈����7oϠ�42;;àVC5[�#cml���[){����r;5����&���9�\��������r��g�w����´%f���'�$�8�P�ˣ	 ��~����ag��1��ͮ1_�#g��11!���:K�C;�����u����lvrv杚�y�͍w~�p�^��Ξ9��}��m��K��n�X8=��Bj���͛5���AJz�
���Q���ṛ�V�љ���M
D˶�`e�9K���̌���͍k+��q7�H�"{����33����2�4�ʜ�FfN�g�6�nC&?A��To�8-r�O{��%�ڶ	��D���4�1q���u���t�N.͹��]f�)�!
�o�ϰt�Xn��5�]�<�����]7[[/Zj��~�Y�qKzƲ��j&u�`����ۻM�h_yp�����	%�*%�ǼȄ�G�7SV�{Sӗq���3�Q߭�ۭ��`��-��b#����K�J'�rW���ꐝU��/^}�%�	���ŀ���6���Zx���(d��n:�/�-���L\��RC󺔒`�j{��A�+c��a�ac�`b,��䬯ء=�O��4̳��á*��2�
[c.)�r2^C�5����~��L�ͬn��}�ٯ߄<�St/q�X��	0�ze�k c+LӤcK�~���Wi[Z�R���}S���O���8#�K�[z�e<C�i����M�lr�̓����}�e�����Q#���a�^��l'Tsh�&n���m���Y�j�R3����173B��[�Wrzؾ&>��*y�}D}Nh���)��u
UP�3B�B?6�g���w�n��	��KV�A`Qst9
w�0;��8ER����ڋ��\o\�a
`�]h�d��-���~�
!�0�ξnF'���--8t�B/]5�p�L�%u�:$!��~ci�\O���K[f���!g&@J���>)�͌�9��L+D��^}/�W/f�^�ј�%[!�o����அ䬰7��^�b���,�<F�f$Ը��f��7�Ms9C2Dmď���~-5:��Ti�X�,�v�	K�Qϡ�^G���Zݱ�τ�,��z�f��dK�˻�lپR�6p��e����2�K����f��x}MJY\�S���/�d;��z}�_�v��G*���͚̇�gy�ζ����왃����*0�����x/ahp۾�ۗX)���&#�w�4H�w���s���W��]�|�N0ο��q����r5r3����lnj��Z6 ߮��\��uM�\Kã���M6vC7㚴k1����i&�̸��4�ZO���X':f��Z��r�ō�F�f�	�����N��j�Eei�#��,��c����dP��m�>냺���娕������h��*3�6���^b«ɠA^6��.Bj6�����Ȍ}�ͻ���~I��f�0=�5����6��O/*&
��L%eu�ݒ�Ů؞��^��+a�}�����w��|��i��YڜϨsH5�qp�r>ϒ�p�+=
�ՅG��0���Ȫ���,�췗~��L�S��]�Kfnt����k;��ֿ�JC6_y�eXZ��u4��M�g�N�d�3�vS�~-k�}�p&ƅ���k��c��;%9�pK��Զ!@�I�������*�0�>j/;D��J�U�2�������z�`�R�s�̖r�r�8���W:n��l�i!�+͡�pw5kI��$HS��rs9�0M���KZY��䣛�3��9���f�Tۢ��{�Py�
G��lp��1�i���c_V���`����R���Ug�ѧ’Y��玵Gb�ng(� ��u3�y��L���y$��*�j���
�S�LZ6�=U�b�ͳT	�L�ҭ��=�ž֜��``Ȝ�y�l�yҬ\
;c�3���3O�-��!\���t�͒1�A�P��J�d���w_�s����@���Z�����v�z��c����po�t˩�b�t�e��Qu�f����.3�"Mdg����wV���ț)���`^T*��搞�5�t!���c�YO]����7c
��^���:�x<E�L@��-�tT��,�Mf�f!S��L�*7�Yhv��av>C�q��j��m�f د"'y�r���/&� ���W\�,�o���l�y3��\��ꪩ�2t�`K��:'�Y垜�zn�z�l͋ᓌ�+��jʀn=��z�yV�Hq�Y��^�{����e��*�
39Yd0�����c�f7��Ńly�*2E&��i [�y��oՅQ���v�~6�G��������Z�f�S���3�����2�I~�ݏ�y�����칳1�')[�k��Ȼ���I��a�%h��gH�Z�x &�1��p0�
������d�k�g �w"���-}l<N�ξ}˜�d��n��fu����'ׯi���n���}@[M�?Bb��
�3xd�,;y>�nf�?����T���`�˴j�І��Κ���o��lV�o�4ǞAs!,�<#H�M�O.C������N���zG�77� 3����ɹ������m��jc�硳O���F�g���YO��F٧�g���u�
�m�
�n�,G�L�{��#� �};��/V6W�����C��Tj��.;�����.~��W�C�l&X�o�����Ȥ͡�mU��]=ŒB��DXk{��-�mn5jLX�����f�ݘ$��!!n-@����vޖƶ���^V��7���Y4!1õL�g�M�s'�f�
�
[�̰]����^}�&�p93��U�l���k_�������*�*�^��ܼ�p9�uT̾g��:��M)��J%��`3�aw�O�\,{�YZ����çi}6I��B&��"�2�s�5S�S@`DX���J�g���lm���Y������s�4�O�����k=����y���gd$��5fF���à�?.�7��U����}�����O�����*7,�v��H�7�!Л��p�}آ`ȹ$�8Q�9�����0џ+3��/�K�R-�rE8h�<l��ҳ\-���c2���[Yc�jC���ڶYњ�,K/�
�\�$I�j��>��6��s�:\7��������������fѪ6f�2�
�D�����Z��4f`a�������m[6L�0�g����\�ZK8��im�dc^��r3��y,e����v�YȠa�_rM�^2(Pv�2u8�������w=m8�R��l��)j�{̴q7c�ɏ
5�4��r��Zސ�S�(y�^�4ng�s6&a0�q�Q��5��~x��A�f�>l�v*7���y|���Tf18o�"���>O;��(j]yA+�

e�`0�Ig�-$��p7��e0�e�P�3~L�_�
w�됓���.g>����Up�l���G��a�v3k�5��'���L�iù,jX�%fŀ�'��h�^Yg�/����8~���Έ3k.�[70���֊�af̹�f���Qd�����(��qn���d��ܿg\���
����������w����[�J��ŐQ���4��|�꿓�+!)c?��i
��Q�rA~[+��{w�FF�P+�Kd8�i�����{U��x�1���}?N_�#����~�wm�cBZ��T|'��Y�kߕ�Z��y^�6w���		���̤!~�z���Y��9+�y�v����6�-6�2�`?�l� {=cY���hV��	�;�c�L��q�WK\GL�5vU����q��͐�9�
�����v��C��RUew��q��f�$ִ:m�X�m&&�^�a5�|v�ڦ'�K�D��0���d���������8O�e�z��4پ�0�1�생�W6��n+��.�l�k���25���ْ�
ܸF�=G-}j����i;���z��~�q���9CCۯ�ݶ�#9��t��{��p�/R>�g�����f:O�������w��N����|�f����T�
�S7�m��i�Gu�c�_ʹ�|����>N&���-���X��yui\��g��/3�w�KÁ���Z�W^�0x�/���b�G�
F�����K�fjfu5+w;Ө���K�+���=��&�!��m�M�G�;�Nx���b�d�8�M�k�f"�l�tՓ�fgHR�0��O$~jxN����`~d=�?�2ĥ^Ҳ�DM]��\z��DF�$�R�Ɨǐᜥ~9��Rٴ;L
1^/�Z+�����\X2Y+;�,����<��Xx|�����,W����7
`��аQ��0�kl�P��ݹK섙Qc��F���K�������'�ȴ%��n���h�&`ff��2}ŒKLr�	��Y�-UfCo��2aa��7-�LV�ٲEV��ҥG�mo�_���g1S���[S	��}�v��6EbrFF�_�����Eg����td��M"T3����RWaW&�=C�vn�4��П�KXR���/c[�7�ƼD���93�/Z�I�v������°5j���)�ȣaPC�6��m�k�� ��Nt���f�ў=d�q6�'�gp��o�!#���&���̤�{鸧O��ϳ��<��=�?���F"4űώn(̍�3�5�l�u텡��������	�G�?'nw;ofx���ɇ���JϬ������R��\e&����BHN�f�`/�,4��  �>
�u��~#i�o�Ӕ� ro�T���o��g����}} �Ә]����VN�c������7BMF���7���'
�|q�"��2��B�Ȟ�=�9(a�,�גj��@��wN5T��gL�ߩ��Id̘���w�r�(c���L��<��ѕk�I
0.e�p�[��ɝ�����{�k��/Ȏ{��o��!Sc[�gЮ=����E��k���?���?y�9���;.�fo|x���1f�n�!�\w�V}�X��p�;�
�/���H@�:z����]k��QRV�`S��ҏ�-83��M�f63f���Ξ;�D��O��<V���8##�����k�^�q�y��|���#5����G3��5��p~�k�`dhG,(#�Z!@��5͟9;��`j��:�^�0����3W�Z
<NL:���qU_�k&*F ���/�/�4�6�Bڊ�5��:��
��f�sgF�?uƦ�
���6��UFc�V��Șx�R����*��Afm�Iי��>��=�IY~NL�mG����a�f}9`�5sakzʭ/�cs��W�T��䠾־�gΤ�X�Dӷ���֛�~��I��k���L����3m�F�Z8�q_���DkN��Xش�S��YJu�����u�\�Ж��C���!�O_��	�(o�p\��,_����)8�v�g[�ldRt��BC(����6p#ߝ����a��WZ��L]�_�Q��9���|cH�+4��o�^�����Orh�W3|0�y����`&�//����}�dd�{���S�-jQ^��U~�=��Pt�����t��~�Wc�A�Ֆ|�&wF�'�kf�t{��9����!��5����tR�w~뷏;�i9�����4�C�T8"
J�N�T�B8 7��Wp�����S�#�\(�PL�MV�PC8����֒@=X���*y�:P���3�<�m
��4�F3i�u2��2;e+H��U�'�;��%�F0�����3yWY�ި�~Y���P"�t��l(��Y�
�m�9�����~��U����Q].ח��L?"�ɣ~fX(a/�K��YF��H�T
k�D���<ٶ�;���B�
c��L!�\j�!��m#t�|�j�������k�Zx
]O𝺢��ι(2�߾gu4��4��n6u��z�#�4�"�L;s�F|�͔B�睊5�ݎ�3\��<5.g�m2���Ӕgs:˷ֹ�k�X���䜠S�Z�5�V3�2��&㐤��x)��ϫ`=Ҧ��!eX.MbfK?�t�:C:]@ڑ'
��ٌ�f3g�M�2[��s�>a�i�jp&����쬖u�(f=��k�L�a`��Bo�F�V�ǩ,,PO(�6�aF�3qI
4A��2��l�b��WRv��������')��Bn�`Fk���r�RSY� 3�H�4�p^�T��!�3����4S�3�GJ���
u7{.��Cs9ka�.(��f��q�=��j�����,�ی����\����d.7�d�%;a�:$h�VeJ�[����|��i6�����!�5��we��~��w?�޽n.g,di�g*���̯�P2�|���.�dw����O̱�ÿ���G��7��{�7p�����!1#��ы\&�{���$k�f`H��m��zlg&���}Y>�/>�ig����<=�X/�/�����wS����B@
a��
����f�U.�op$�� �I��^?>�'d6�\AM8���$��[�=�w}���������l�3������/���"M��!N�|g���{����&���ry�⼏K�)&�3�#T�I���I��f{��pM�1�\�i��m��9���a]��!XS�K�(��)��/~|��:2y�DGH�B������M�	�����p6�L/�i�x��ƃ�MBF�0�I��N
�(���&U��kk;y�B��bҮF�K;��r~��w�L��vE�!(�����X������Х��c)�uH�,Y����cj �}�~v��X��(�>�^����X:����^V��� 1c`��a!��?�]zx5�r8Vi�-��jU�(���d�/���t���?:��U�E�8"/�A~�j����O92d�4"�W|s�źJ��[��\l�������JHHnf��u8��ѓ2�]�;Lɠ���ntS���
aP�ǿ�Q�"��;��f�W�ܤ�X�N�o�[��*��'23�(�UG��]�ǻ�򑭍��F?[}sF�@M�F�9����l昅C��l�X�����1X�Vm4���t`4���x"�Ay��2#h�:�Π�S��i���1RC�1Բ(�Px7)�Q��N�E�:���2�,��2��!?���I�v�7��ɼ(�f�g`&Cj�샲0K1:��}u����p3�Hk;S�`|S5�3�XMMr�f�y6(J�s�
f��o6�ٳ�&�{ԕ���\K�3�f�Khv&�e���03��̔�	 3ꎌ����,�NV��Q����1`�)B���m���9�M��	�a#X�l��{]?���}��_���4��r�w��)]M�����n�S�77�6�րF�R�Fx�+C�O��RX��F]pTE��������3��z^?�]�E��ef������i�m�Y�CS����Z�~ڱ��n����i��l�Sʞ�+�H:�\.��ff%�n�Az��@�?,J���9��j����gW9%g�B�m���r�F�7@N�bf:�Υ㒮�~g�]l��Gb��ҙ�SK�0P���tq�au�1��ת��1�����2�w ��Y�����4�`No��0�YǸ���v�28�:s�T�1H�N�{��d?��542���Ɉ��ٯ�n�0�	�mG^�5��Eʞw��7?��X5�ƶ�^����2��J���7G�G�˼lQ���?��$epk6�H�`:���N��z9xQ�fgc��
y>t�J���,�o�ߪz�lH�T}k(�}߶ׄ�Q�f2� �̷��Q��_W�|��H��
�Fz��iV	�G�y�%>����ͳC�lJ�²YnYۦK簸��0������:��Q�������@�������÷Ұsdl��4��o)hE:h�]oc�koꭰ�V��I��[��\8O��T2p?�U�����ij*3�`ye�j�6�5��ڙ��{,��$S�&�dEn3��A�6R������`O�B[s
��p��;�MTk�?��M�
k;��6���}���m��nnv�L��<��̌ɘ�6\һ�����ߴ]�VnOoL
��Xj������+�|c��}�e��Ic`%&��V��bn�MS	 ��ٖ��J�Ub�\J�T��a�OZ��KL�Y��v:����	l+��<`Q�Ҭ�C����)&5��6�*��o��yD}+rw�'	�30��4��[��=5�޺�~����Y�t���6G�7n�Y������=a�׮��ͫ�+�
RA�� ���;�짃��ً4xX���Ր�Gn�\J�s�/��D���$��-�.~�a��<+��c83T�f�fW��\2ňir�H�sJ�_Ӿ�!�!�/�_��&)"�����~P@�ң[�D+ݾ��c8,(�,��htg�X�b�`j$�g��5Oݙ;� i0*�����%�Z5�}���o�1�(�>��A�[�R5�mg�]Z��jg�]3h˴�fVn���T��}P\�_Z�,�3yoY�k�����ؤ|��ԤדA��a¾Ԗ�j�1/���,�se`g�4��Gҳ���v3���jy�V�ן�mԒ�2�r�8�����f����y���6fl�D5&��f�u20u-M2cd<ZO#��i/>ҷ�ˈV�\�h�����|�&%�yp�?��΄e��-�Cc�…�#�6f�ksu6#T��H.n-��դcw����t;��6�}�q�\o�E5���2h��`Yյ7�����܎c���5u2;��2�z���	�0��t�a��awh��Hʨ���l+���B�H�6��a��?iK?�,L�ͣ�!H�wR������b�m�h��yf�7
�l�@G�_�lr͵��x�f֒�_ZZ�gn�V��7�t��nfm>f�à9�lo��p�V��`������a�<��:}�ꚇp�e���]�2��fr�/{���/�t�|}���o_�!�V7cL
́Y7{��%�f3nGL�汴�8�01HΨQy�w�c�i��E#;c�lLkg�ͽ�oS/#?C���~�Z�d�qg3
�|Ϭ�wju��
K��C]IߴZ
���x����l�I�y.�4?k��N���%���?B63��p`�l����4���53o��K���i�4ʪ�����KM=�YS7��DN2��:�)�H�7a��M3�ֆi�L�}��OZ�	MmL�0�ZKܷ@ͫ�yU�հpV,#��Mh\!��Ɍ��х���^���Bu3�x&ڬ���-�4�f}ac�RS'h�^�l�&R;ӄ
7mi�ġ6�f����D��*7��$��Z��4�p��r.��b�eW�pմ��I2gM�'��“�Aw�͌e�55�k��]�>��:���·�����:j &�S׫J�-�j
��j`�~fma��!?gL�?���v�O�_����9��uaX�z#|����b:��_H�۷d�I��u��3m�c2��M@Vz���Q˾��;ӟ�}sw<��O�33g
�������D0GsF�iu4X7�^���׬��o�S���_X��\�ͣ�.^;Ø~��ܖu�fV�6�W�.(��hͿG�D�f8�qW]���>A!���tP��Zgh`"��K)Mg<G_�
`C��PD@�lÚ����!���XԢ�c���Y���W�4,f)ϻml����kh6wN�`h�Zњ�ܪ����S�򍂞MS�
�÷y<�Uz(g�jȥMm7�Q����L�sf�YG�Z�%cn��A�o�n�PJHK_��P��ˀ�
��!_-W)��lz&u;*;���a;B5��a�s6�Zb��7]0u
�4�ne��2�i'6����g�@�e���kn=`s�L׶�qBC6��^4��Wfq=c���6�00��1��zenf�/A����]ʺ�и3��k3F�iz�,�m44�X�}��
R�>ޯ��iFv0/*C��a�n�R8j')3�f��3�G.CS��f$,��4�ٝ��gVQ��A�鰙�hf'��t�&�h��1[��ó5w&bִ-!���No�=���0���X$f:1��Y]1<�e*2�������8*L#���2�Yc�1��!�k��g�����5�ϥ�|����Df��=ed��{k��~t��1�-��RX�h��Q��T��j�ڌ:�c�5'�$-ݽ�	�tv�z��5CC]M�4�.�,1^�^�ߧncut���*jf`k4�S���*�T����)��ܾ��5j�6_"��Z�l��	Ԍ�͔����~�s$��ia?o���w����~�}���M��My���R�[��\~�x_��V�x��1w3ds����Ԍ�PX��y���?��X-d��v��r�,H�NNS;^�5�hF=���¼�3�QH��\��I�f`�hE8gp�㜁�K/Y2aH�CR����s�'�{:1�3e
�,[ӛd�HF�Xԏ�횺�I�ug������}�}��=P�h���vF�[�ȶ�s��Y�l��nSK[��ʸ�*2�6�(��v��*B4q[DzFm������+0�sQ��LSi�N�	6���61�s �mi�$�D�f,��0�ԡ�θoC�tA(�=�6pS
�����`h�$P��t�7�V���hR�i�a��S�K�/���^�p��+�쫳u�a`.h�����ńUQ��Q�j@~.�*#�VU���ިg] ��Rj�ĨZ�ә
@
���کT;���5��MТȨ�խ���/g���w����j����3��8�O���9<H�x$}U�ar8^�i��W��a��d�M��u���y?���d_�!`s%��6~�K�J�Gl���A�~�n\�4�!?�u���?�R���Q*�+-��E��_Y�fME��E�_���v�����7F����ↂ���P^i����g��fiX��Drr6[8��w��:P}9��f�w��خ���@XmB�*���ϡQg3�],�܄l�!Xf�W��Կ
l�V����i�Fˠ	�3}�<W�>��0<��~���˨s�XAƢ.ju��D�]��C?�l[��=�\�E�K��~G8��M�bWk�Ξ�0��_�cB�;�ٮ�����t��m9������(���l6�L��
-!&����34\��B5�{��]�����p>C_��$pf/�\Tv�3�
2'����aV�!��i�#LS3��D�X�d8�4M{�j��?nflo<43�Vͭ�m�Ͼ&`�N�&�6313מ��7
G3̂�9���;��04�"ƾ�[v��Z�z��Nʀkj��YKf7��6�[�/�@��а3���JlkP�Ͻz:������ftS�4�2�+�O��Wɧ��s���?��_�m�]b�9rg��If�����`{��,�l1�W���gg�Y��l�e�X�3�m慂p�G��l���)[#��mW�{��Wo�{����p6c}W�d��94,#�A�]�See�*[��d|�a�W����;�9k��w�h,���k�o%s"�����O�\|�k��є͑���gdZ�L��$���׿�f���x��:��	k���RkyI
�2^ww4c���v�g��p����������k�4�W���q�{�>sً�#gYȢQv��ڋs�6C��33�����1�?XM�Gz�A�\c��3͢W7��<�v�<\*�s���}���";����aݦb�9qݰ1�������^i�h�{M�o�lml
DL0�L��F�J��n���d�k��K���{ߝ��,���E>MW'�]ᆦ˾�mk��g���$����i�[�e����x���/���%�i8��`�mS�� ��n��q&&��ʊȎ��Y���u?�c7UiȺ<���g#���~�gY�G��o����189���|%�~��T��W ����v��x��/�i�̮�V�%Yz弜X2ci^�f>y�fx��+����W����ڻ��Z���&�W�hx�m���W^��(�!P�2�	�2���fdV��٥���-�ڡ�%Պ��t�����54 ��%e���m�GU�n��(���I�Ā��n'&cP��,�����Ùg�t���{�
!�2sӷS�΄�Y�d�f�Ԝ��had�v��f����V�R�`���)Xs59�A����5Ste^d�k@h&u3�mT��z.�1P�5?����7���9v�d��W��t�m�j��̌e���e�4�����3�vVf4��ߵfF�7��x�eS��
�2ef��0(xޮ234`�\��=��Ym)�o용����:��p7�<�%���?��u�n��@�G^�jf&�ؘ�Yx��B��-m�k%�\�~�@d�H���L�a,�eq"���b�e�3t6��k�YѲ����z�����,���E��k����t�O����L�;w`�`g�B�0i.�������q���QG��îʹ������&�etfU�5?b�	���j�ak"���k��P]Ό�1=>����|�g�4�҄�R��Ɍ�9�M���f�ؙ���25>#��<-��Z�Gn
�-%s�bp�|�Hs>z�/vX]�˜!+D]�h��{U&����3�epKA�咘��f�-Tˉ�L��bb����m0���
s5{��GyVN��lޖ���F��)~��8��ә
!җ�$V��X�aǝ�d��3��$'gX�̅�)��PI\���Y��{��X��94r,Nh�)�Nf�]�I06`��i�s�,���k�k,���ʗ�U;[����Q������^�=��QG�D�������^V�k�g��m3\�� jd4���w��s���	��03o�3aټ�6�Ԡ��eh.dQ?�!���ډ��fѫy3O�L
��0NRԇi�L��O/!8��^vM�2fz�H��V���rf�33e>�S[u�"�&��T�3�~��2��r�����g�"w*�^��x�r:�i;���&rg,����ٙ�CL�ؼ�@ká�Ŋ��Z3C��R-�
t�n�^#��h+Ǩ|T�ٚ�wӽ�"�+\&cX������2�h����!-6C�e��Z����@f�g��+��մ�~�����ͥs4��@�i�`���?�����T��Y�A�N�G&3���G�1��ʇ�Œt`u�c]�Vʊ!NU���㞅�o�j��u�7������<n��o{����ᇿ���kQ/ar
ar��e�n^I2�a=9���L������Y�|`!�q���e����u��t2ˋ��,af̬6�`�X���Q�ڦk��<͟X�UR�ҫ.
Tʿ�~]�No��Z�;h����QY�z�p:S�q2j��ǹꚌ)@F]|G��H��߲" �C�u<�$�h���
T.�nf�u3���p��eʪ��T�5h�.�&k���u�f�:ϯѯ|�8���h�Q=����3Z?��}�%��XL
֥��K])3�S�kVL=���c�A
b�����?��w�D�f^,T"+s����iT�9���m7�g�3��f����53�bk�ˁ���iD>�A�2ܶ+a�z��Z���fd�1���iy��a�f�}>��k��ۦŝ���g̨4wڪ��K�OE+'|�C61I�*d>u��g�,�y���%S�F���3k��A;(f�.�-<ڊB����X���3%O�>O�/<��*�0����YF��il2��n'a/�2p�>��G�?8
�b'�!i
�uw��5Kd�0�
���U6d��3]����y�쫏 ��=
�-T(�!�c�����zf�m��o���1�3�>�ʀ��2�k���H�q��V�.N
ae�f&;�fXS�L8u	u
�����5�iu3ZG���n@L����u���	�8���<�̇f`
ڼ,
7���g;�v�k���������n��F�f���l10�~p�Ʉ�$�h��j`ȏ��������͏����W��!�g�=܉���q��������3��k/����;?a�:!lȜ�:%���ۘ�ﶱ5'n4p�sY*��1?������`g,s�A��j��
c�dL߮���9�8?߸a�)T��U��Qg3r�Z,������缇���i��[;55v��|���ԙT�בv��X�q�.�k��Ӻ�َ����r%�u
M�2Qks��2�+�Q�p�~q�8��v���gb�-<S�Z�f�	$�Ks>�q�jnW�}M��筶٘scf�������b�2�%�kf�L 4�lm�4횙��O:�\x�h�[r�Ij�����f�W���(�g9Қ���LVs��}�r�nV{^�sC!A��4��V��$���Ʋ���,jf7i!��/=�V�?���X.39ɘ��Nz:aБ!Z�X��O33(˴9����r��^z���M���4��i�������˧ANwo��$oYH̸�`�MjAf�-��Ry�[VGN�e�fO����0p}�?�Ձ0"�o�^_��c﨡i��8�׍Jl����`f���Fw�ZW&c~u9����%��{8S3FСs3V��D�7�|�R+g\�3—��K1Te�΁[�p�3l�� 6��M�LQn�U�Z�4U&��j�g��� 9A��돾tW��^cY,�1��ߏ[5�)5��Ґ��df�����gp���jQT���k����ms�5,��A�bi6�5��t�k0H��~�	���dv��u��9߷�:����jg��� ���Y�5��5/�3��tf��u;ۮ�'�m|_9:߰c&G�#?3��T{ң��&L����2�����O���2��p@�.��^��Y�^n/aɬR��1ӄ��L4ؑ�̏f��%(��cl)��;��̞֕��L��W�604�X\�t������M�Ԡ�Vw34֞[��Z��k��MH�h�%Į�ؚ�F�Ш�Rg���֦ݬ�f8r9PfF9��Lg(�h�����10h�agb�����L��3Y#S���,����#o9�əC�4��U!Ȝ�R�y�f|9�ʿ�ں���-n��n����Yee�t�7#g��^���`�$�S��s�i��@�4oF��ծ���;3�l��Y`��kY4�ܺ�7���u]J�/��ޗ)����p�fh�~+�*K�7�ٍ��XG�iX���Y�33�M�����.� u2�B�Z�g�4����# ��p<��lM�ɉZ��0�Ѷo�V`��$e00^�~��;����'w����4��1:�o��ج�f.�k���$l��h]ϗ���$�[5+S:#�a�l��4)LI���r�Fsg���G��a����Q�ud�r��#�2�3af&�mdΘ���R
����o
��g��l
@���<��������ѠM�j�%���'}?mι��c���9�9�#H��z\�\���yg�fb�	�6�ij35���ݬr��:���y3l�kv2��Ҟp	�"'m��H��|a�"mYY����G؇����1�FY۱9������f��(��#�l����L����t�����GVc8��P�(�Q����D��	��3���SS#�G��:#&�C��[�!�d�����N��G4�Q�1�Wh>Z�,�֍`l��B���:�gX��\�v&�K���m���^O��(��Y2�ȟq'R���$cʓ��듖Z3��n9�i�Q��Yt���8;�z�������;��/0
����_k$�����h8�,��+�W�F��Ҷ�����aKsY{nV��O�Z��|�������S�{)c���jfʨ�I���v�IW���l'C���7�c߬����J=~�)�@�|:�������5SQ��4�w��`��@�&e��*�L
,�;�-5��p+a�LYKl�#�O�;�O��@��r�<a��v�n�3e�֔��l~Ӂ	)�Q��J���@7�f�#���E��^	�ĺ�=��ho@��L|)u-M����:Z\E�V��faP��SF�pAj4Zf�D�1Aa&��B8�`���
〥V����m	�Ts�l�dm�ƀM�%��G��l��Z����F~���_B8JG�@H��l���@AL�f&���/�	*O�sc��.#�ȦY�U��}J��BA56ǩ=��Θ	@���Ʌ��P������楴��J��Q�(�9V������n�Ik)�'�h�1��F����z�f�i�(^��bv���k V.�f���\�r3X�B���X7��mfY������k�3X6����bװ%U���g���	��7)�3�r�tkf͜0�@b��u:k�F�uM�� c!zjL�"�f>��̄�k�f�|\��E�?3�(�\�ʹ�@bG[XL�z8�����z2Sc���gW�뺟Y�޹��;2ۍ�d�(�Tv��F�k2���m�, 54�o�� ���@��*=b����!��cc��(�I꒥e_�<�A4��m�Ґ;h�G�)�N�;D���trz����z�o����#�7�P]U3T���"�I���$
 �K�
��1�n�d�P�k�}@���\Nn��.�}'�#O�I�0��E�����v��||�#2�2Jc)O�[(辛<=u+j�Ս�|�l��K�z��l�,�e��ij��ߍ�mF�sysc���y���Y��3��}50pk��1!��ܷ�:���,�.3ya7&�hM�31�������L�$���5�� �%�a����L�i�:
Ff�������j+���ӹ�|��k}����Y�h����C]��F�LdX��I?z���v/�L+{���@��i�V�E^^�m�b�a��	Z.�@͕�8r�����׺���c�Җb�2��}�%a�&�h�i����\x�Xc��:���Vh[τ�����m��,`&�0���P�9�	32+`�����=F'�.�k�����
23��Xk����x֝r/-2���06��x^
�ՉH�W�eB0���'3�n�.6�u��I��&-e\�62yz��?�;ݳ�H�C��_�V�<u�`.��
��� X~<7��,O_�k�Sgl�Uy�qa� НPP~�Y�8W&G� Wez�`�?[���`��N:����ն}3(�ʫ����X՛嫫!i�|�����^�Y��Y-˲.�(U��F�����*����_��*W�E�K%�ZߥKH̖u���N,[�Km׼4)h������!@���f];)q[5��.m�Ykख͗_��8F�6*�'��Yed�D�汭��_eb>���)���,�.tK\^fS�l�>"A�u3�,�)&����,��ELj�5�y�r��lP���3�4��(�cn���^�B����v�CrV�Z��X�F1�{	
{'RD:R���D�a�iٲ���.� �۴%C��"@�����<p<��7��ngϬP��W��t&��I@�����9.l2;�i��ky")���켾���*.m��ӧ�NYd�\�جy݃00��k�0!Ec
KЉ}�ڒ�����Yˑ����ן��3�2Y��q!
�����3�%���d��'�6u�fl�Ke�j�,��UchLn��ʘ96����鳧
t���Hg�'i�����	k@�Տ�Ҟ\k��0̞O�0[�̜++c��&+kdi�H�~d	�ȉ��g���6`5f�ے���~2K��6����Xb�ݶ��~B3������aKz�r˥f�郎���m�J�ܾY%]Q�4�����'J®��d�پ��<�����}?��qj�|g��C�f��U�I�+�����l�o���E��ީ�?{��]��ܭ�Kد{��,�Ln��0z[QY#1��m
#c�����d(В3>h6U�(��7�P)��7���)��d�X8��usH�t�
5�V36�(;�\�������K����3$�HΎ}��~m뱧
d��ck'��3�Ri?h7º9=O?q1Ky74I�>2@{���Ї�Lߣ���{����ɿZ�+m,��A�ݡ=.d�!9k;Q���vS��;�f�O���xۏ@�^�F5��ZfG�:�F@f���ٙX�>�M���2��X�<�����7.��?�x?���#/�,`�'�5j��qc���`�����j[���gz�"�_��x���ѹ�kjc0g?��׿������7��ƿ�ZKc!�!�Q鸥ƒ���e(� ������|v�^\��=�Ž�����f�&��5��-�u�5��*�^�w�/u�ٶ�k|��;�P����;v����������ڗ�w���Wf� �1���Bݎ�WM���$��C8
�+�9���~M-�s{�J�E�x.�\�vS�����n
P�L�T�� ^f9lL��f
��Y��b~
���Y7b0iWscg�x]��Y�n��M��1�fx��"��ijhdn�֠/Tx�����fa7HΨ�a��
ҝK��%�����������t�ZC����&XY����2�4c{�v�f���l{�e>����e��� #u�)S���
�U�B#���g���g�2fo`��&`V.B5�fn�E^4�si8�n�.Kf5��`=�.,z�8}�`�lB��H۬�Xٙr3Yi�xr�  22abn��X,���
��lU�1��R3\l�tV�k�a���sGjf�"{��?n�1)��O��e��v�(~�O�4ʸH]��Ywd�5��+�qf&�
3����ҳ��i�:V?���\2�hh���y�HC�>O#��Z]�ټ�j��23��Ujָ�2�����XÚm�j0R��;�ז�ܰ�ev��e$2�hv�z0�u�d���[f�ק{��1�eT(��X7�MN'f���Qv�'Ε�A*�
�̼3�C����}cf��p7��R%
�~��T��k>���Y��pl`f'C���eg~Gؙyy�f����@h�]󃏲+O�Uهm�s�?�u��D~�l��}�;
�r��Zj&����?�g��`���#�J	&��k�\��o����K��Db�G��M5(�׿��4ٷ����1��χ
G3XE��m+�6��Q�8��F�ʌ����G	���/M�	:��έ��2i�f�[�E�ҘMs��\�>��>ҲI-]�s���[7����7B6-���f`!�b4D�30���y�����/�aj��Q�?5���if�5�Yѣ�I͚"=c���۷k����[

�02u�#�c2v�jj����M�L��֐����FE�f��,�?��L�2akd{23㓰h�h-�Y[�}}>��mc�Bؙ�����#~�"и��v9$g����Ӆ��~��������|�B#��O��92ú����Y@�e�u�f��L�A+����cӬm�3�/0q��?Yc
�3�΍�#P=�-o�-C��^H���YkfZ�?�v2��*A+\��FA�"ϧ�����l���,�,B	������d����S�w����(O��j3��@�`�,�oȹ����9%5��Mr�v�߃���΄EZ� 0s�F7
�f���\?�}3�*O����a�l&���9�W��}�*������7�4Ȍrp�����MΥ:L���ʢY��	�Y��u �K���7~���r�Ɖ���mp5����T��eeɟ�����QHa��.�}��U7ۨ�pV��\#ӁE��0�Ό�Z�d�>���{7�<yMU��H�fH����Q��҈��9���Mn�ܬ��L�?��`�23��z�I�1�S?c�bᙦ?�fs\*�f�d F�F2�6Xf*LJ�l�Vױ1ñ��F*9C��542�ͨqp�H��i��6/�j�H�X���Gkq�$�q�l����Ci��V���r�7�V�iծ�� U͵��dZ7#���.��F���2E2�X�B>�<�'���j�>��A:S����,o��ݿ?��l���B:�Q?�L�NF�g���z�9��)Q�����u3ɚ���x�������e	)�
dt�o�r��ر��b��n C
OŚ�U�8��A�y��q:���b:�#`��l���7!�|c�4aЖ��-9�':��+�|x�ʱ%t�m�f�1ǖ��Tnf�"/#ˠY���-O�u���@k���g{6���ȟa	�'�Sc��7�>#L��6�5�f��X(���gXb�	�1�e�����~�ۯ΍P��&ƿ�ܨJ��<+e�_�CV{�:�{�z��^F��d�3����{������no?%9��@;v�Y��{����n>��
�3d΄�l�������K^C����Ng��{w��[j)
�	�3��@n�[��m٦��ك[��^N�9#ˆ��㏲����ȚA�3�����^N�Vi�4�W_>��"=o.}_��0
0�L�$\����l�¤�7�zV�K6���oL̹s5�f����.�fK9g��K����nu3z��s�t�LX�Ejip��sx2��YV�ɏ�` G]��t�)�W�;�5���������Uy���g��5gf
h�Ȁ������])]��g�e>�e�k/���v���� `�s���1�Ŵ�p����l�q9v�u
�;�g�����g*)�1��U�ݫ��&�����Qw��OHJ�DQ�]��W�n��IĞjTtRX�9�3�p����Z��ff���h�C�yȢ�/��ZK�����^�P͞��E�F?Q;R3�EdeV�u0�m&����\��M�?]���=��i��_����0YٍN��M��kUؘvJ�Cы���u�������S��ئW�H��<]��|�I���+
v�
8�rX��y-/�`A�����L�ԓ�(���^�ł}=�M�L|��"Q��2Y�^q��ov[f�_��a+�?�7����҃5��nFM��N��O�5D��ƒ������qR+�g��-gbJl���U���f�C�ΨE���6 a3z!ˆ�?z'��!U4��X('�5���:���I˄D����~�v��Xm�N\ga�6e�Ѭ+W�B^/@D�j�4/4XӾ�Ԭq �R�ごz��li`�Oq���1�P:؂�)�V���D����RL���:�X��,�;���"�K�3�� &���F��e2�M�e׎��8	����,l�ih0P�3~Faj�:F�����j�{&�U02��54Q��W�8��;���J�
�m�m��@ ᜲQ]�j
p�x4{jا��a/P�ߍ����p�yc��4�yg���X�f�-����6���?��0�D����f@���04[zYB��y�	x��1д�e[.��!�Zz.��2t��^��t�$`��;����f�~ڿb�f#�����
60a�lI؇��X���&�Ө�ya��t�

���`c�Q��ae�����L�^(3i�<E��v��c��J�;���iL�� /�~����
К��f�59�l{��ɀ��騣����B3H�`e�9J^���23a��Kk�ɀ�����B��e�3���f�ae�.lf�P:���
���r�Kc|?_I�Ch�7T��^d�f`�A�k�5�r�N� �����ŗO�xN���r`{\�V^�cQ�W;����(А�I���q��^Xn��} ��D��o�/�i01w��y��Z���k�E%g�f������Z�{
0�8u����Ӄ��]afN���q�3/5@n&S���|׀df����O��ߝ�Az���A��5R5K#��3��ϓ�קoZ�&`7dp+�f�Ȭ
�j4��@f��e��\a�ܛ�5���b����0��ѣtE���؀�2�y�	ͨ�a2�
fX��}�]��I���Q�q�km^m0����v��1�ciS�C��3�V���3S&O2
f��%f|�����T�}�u2Zԯ541tPr�h�^8�[LZ��{v��B��2Y�L��v���m���l2WV�~e_Y�������00i=����	�K�U��!*-�gզc�:'2\ז�L�a�N�&��9	��Xw�)�x��[���!Ի��#��a2QΦV�54����q	�akp��G�v^�6���V�����//(�
4��/�y���?�:ꐮ
Cӿ�9����nꎥ�9>H�kWR��I�	�S���
�$�g��Ƶ�����2y�@+��}3�K~����W��*�.�'����eYu�a�h�G���u�q�@;��JA�e;ͅ��n^a�6�;F��O��t\r�:e��.����`���F�j�sț[R�#/�t�F�ߚ�,�3ۊ�}n>X�eg��R33�������n��;��K�w�3����2B��X1j7- F׫�J�ți���c_Q
�i%oVVP�0��U��0\�4�f��ega�����=s7��n�m��`�vf�'�V�L�ƙ$u7����P�,m�`g@��ee94��Ͷq;�mY9д_�g	�f�@>����3��� ;o�4�B���|��r��+gF5���Az�38���H�z��K���6�t#���l�7�|�6E�ߓ7�������NՏ_��/��v(`G�r6�]��Ȕ!���!R4�gr�~���e=���
�����K��
�gֱ-��	W��jYK���6P�O�)u3ɻNf/�����&�lEɝ�xޫ�T��2�;(3�2n��
�n�-9��-7#��Ŏd:u��2�gm 3�e8��y�r8SوR`f�������u�6YmY�$q1��
�96I���jE��Ag�r,5��Q���{9;E~6ʐ�1��,��e��E9�А2:C-��o^���Б��<�(��P�Г5��T�0����fUg�ah�050�G%s;3���ܵ���d�-�!!S��ci��@Ɣy@#?�~稺�'#e��v��v70��uO��c�|Z358�iͼ��r��L
�P��[�K�*;{�ү��d��ܪ'����~/e�}}f�P+��m���M�U�F
ҳo=0Pı�̞ݖk����`��9r��<��}~7��K3Sn���e�7#l��:ea��X��|_���r�[fJ�h����sx
{�oYBCY�������=�,dgZC���p
 ;S�o=�nJi猜Yy��vP�k�" �dt#[<АG��׫t�s�n`����B��y�o&6i��āI��Z԰Pf�5H�|�˦:ѰYd�5v�yf9��B���d�V ��Ԥh�rw�*ihg�AQ$g��I�����^㲈Ԭp`L
���#LKy��P�T9[c�3lT^��L�4���00����L
��W���k���왘�:���پǿh�i���|5����C
|��>'�
5��Mj�c3���C�O9��Pc���as:Yf���?c�����L)�'��8\�84LS�b�*�J�cTd��2�Xzf\x���<�P����L��|���.�u�uH{sut�w���o�WN�|ɒ٭x�N��֯�G#,b�7���{�z�諃��Zm�# ����D��J�ܝ��a���Ē�[���⇹��/�{�PV�ߚ��1��[����g����ffԺYU^�5��ú�&j1��阪0�
����8h�@hl�Tk�-�S[�9��7@�>hcE=�[ŦP�ы{[���o�����.3ge�N*8�"��k��`���ݰ-�ˢZ
x�0M�!�������
�QP����'u0Q?�̃~�Ԏ�á
;�ff`LQY26iYq��@��pMLx$f�܂5#P�$(ә:%��|��E�VY8�Y��4Mz���01:k�i�V�:��$<�d"��6�kn�M՚��K�̰
�.ᆆ	�������9�6�MZ��� ����Mr�m�Xt��p���*K��e�M9�FНUt�x��&l���_so1�Ŏ
�&Ƀ�ˆ��(���2�p1���R�8�a$��@M:̔�	��ãYDG��\/�*c�ل�I�!�	�z�}��d�1͸��Stͦy���;��7i����ٌ�u&qo��Ln��˥ZhԵ4X����,����:��O>�����������7��ֲ,?������V�zu���9͞Gs�	Q��H�%	
�PC�$a ��IX��8��� b8���N�Iȱ�b`d�q(v[C��/�+]]]շ��{ޯ����{�[="��+@V���>�s�Yk}��Ø��J	��l,Y�ùi��`bd¡��Z�e��O����=�
�C2��J06����dm��E3B4/u����1Q3�M*&�I՛�*w:�6�L�jV��8ꊷ�j���jfd:��t:4c�Z6$��)ƊiѧZ/a
��ү?{�z�8>�Z3L�	ь�y��L�l�v�u�-Jd�V�A2f�\�Nur��:썱3~�$�sEq�i#�[N�a��gS�w�N�hbӼy,��#��}}c�n26�r��B4��F�.�@��H��gZ_���m�7*@
����܄ͱ!�=�r
;����iu2����'�{c�cen:p�(xD�_��y#7����}E�����\��.�v�v����ڙ�Bkg����`(a�g*k�sLCF&�@�/���ip	;q깰�Ȭ_R�}\�� de��{�da��F�9W3�S�D[&9K�����X"7��ġ��+��<ea@,L�~�2�y��L�����V����ì��P�}���L�tF�w ���s�{@d���sҿWkR/C_��u����=.r��'�"����9�j"s&�h�
�yqq��V��Jeggh���5�����׀Ɗn��k9��\����F�'��㍏uQ7C����l��zTA�Y�F@�iv4<���`,z�ZN����W�bf6�=�1]o�ҕ�.hn-v��tͩ+�]��mm>���E�.n���/׾������}�T&ugk����z��{¡���q�!s��|�^eS#c�� ;�~a�慀�?��u4|}�v���Z�sO��+���Zd^Z�O�L�>���R;�5s�(��BD�u3�L����J�7~�r~im�k�Z�R�Y`M��,�F��"��+o.��frl�ӕ���v��J�j���s���#�'��߷Bf,���Q�ƭ��3Y2KiX����7�2}-[͎�PMm�� A���V������,�r�^6�j;�������,�ӰO�	�<��K<u4�u$g�:<S���v'��x=nSٍ�`��Yt|4~h�7Z�tf����p$gz�=��6�Z�>�g�n�"�ۑ�m�]m�	-ـe!�t��J-3dz��+���񧈺��_��T�0�����!;�F���9~!zS�x�g���/��t�I@���7X/�u`���MAK��v�e������w^��[6B���S7�f�g���Y���`l,�!caoT��\�h8�
ih٣���aF�Z^�1Qy�V\����JHNw#����eUW�%s;Ӻ�+v.i��0��j9�L���LﻶI�'�i�a=K��t���x[�H����[i��5��&��f�^k��\�ٔ�i�:T������ݫ��п�06Ll38a]�m����G���j�x��։�j�X_�nf�q�(vo���T{bܽ�����V(�;�o�3B5�nnW�3gHho1���W\�Ne�S�ә����ٳO:P���-x��}��m���\�g�6�!�ؾ����l�}��<4�i|���|P�Q����D��~r	@�;�c��̀"���p~��E[ @(�@�Hg�ߔ���z�쨷����G��nf�9淇����:s��9��f�zvjuOH,�*G3����nf��; �����4տ%o�o25�Eu;{���Su9k�4�Ȝf�u5���g�Č������8ו��2�7����Q�fymS׭�-(�̯����/<�L5��O��i�.g8J�a��\�60�y-��wt�<�Ů3Zc�/U���Lv_X*�2�*+�̦͸sbcV=�����@M�3��Vǭ�.��DC��3�Qj��QZ��(�{�)`&�ʮ�ؐl����y҅��H�5,ۯ�����y%���lRͦ��-��n�T��;�X���w>�Q���r��"��՗�����ú�BL�^/ٕ�U�6�~yH�4�拆l����PDV�N�2?'p�F9�:�"��T�
e���Ҍ�,׮��p!X�/��_:�����ᗰ&�T�:7�YL���SP�g�A�VL��h(l`G��5a٬�L20��4͍��i�kgT5֫�2���X�ȍ!sƘ��q�ֈ��X�Tj������T��vFm��KY���J��;�s��F]β?n�΄�Lkh����	c����n-+ ���m�(vn�A�^K���R=ͦv��*lZj=
򴕯rd0(�%[t���l���̬\ϵ�&$g���6g��|��7�v�0��E�D�4�N�`jX�)þ1��W+$�����3X�E$�O��*�ڥf���}�`���
�c4[:r(wdh�P{f(��;@�hY �b�����fʬ&��̈́����,�.꼰�	�L����*�|�0�Y20�.9\�vl���h��(�1�q:�����Q	�����.��&�4���H]�U:Wɪ�ړ��5=.������VM�b�/�B����s*��5O���t������� ��L�T��f�4˘ckݾm�ƘQ{��U�ߟ���ٰ.v�����F��z���4#��ri���+�G6��$���}<ۙ!���V�e'�
�慤eh<>���]���jFI!_����WOL��3�?W�f�������dfy{�
���O�p��`�#�$�u�|/�?y��&H��4����;u
,�����}y�J����'^?sb̍����\�V�!��F�kj�>幜�}��Pӂ*5KOn�du22	��nf�|����|P+�%_�g�A1�������z�4�2�L��~*��jwRܽ�6�$;��,�<!9�BZ���9O��}�q�p�iD�a˞9�kf�n�\;H�
�^���zR��:��u.��on�8M�|�N}���B�F��g��-\���h^Wy�1�7��Qs�o���ڰ�([~�Q#�.���Ȏ���Bݶ�=-� 2�}��`f.��j
����wg�]�4j���7��Hζ�$g˥��Ė�S�X&�j^���^\`�y,�yD�6&��6R�2Sc�2�I�,:I����C�� f�sݹ)P��єuQ�Y7%���V�H��u,[4�3�f�q��`�]s�ڦm
b�f&7+�¬B-��!;#�҃5c��]3��X���{Y��l=��S�dVQm.�����9�+���:%�˗���ջ%�����'ix�ˉʹ�Z�v�z�^is���LH�ǥ�N�W�^�O�5}!E��N/�X������?��
[Y�]�����"]��gu�Qڲu��W��H,���[��)K#�r{G�gڴ]r&8�T�hQ�Ƞq[�E����T�R)�O�]��b7U�
j�i�3��GPj.fL���rcV�
j��i,J�C]*c��煱�}FHY�z6FE?���3f��IZ�ܳgZ�=S����K��\ΐ��}z
�\/����Z�c]3%L?�ǐ�B)3�3�A.<kf�̌M���&t��̋�z`�gzlPq�������2��_E��̎��w-v��5�~g��*����}�~��Mޡ��}�x�?&�j`f�*�ҪW��5�i�8�y3�?˕���s�j����L���k�&B�Ꙝ��Ec�b%�����~��K�d��ϓf��=��W
�+�����п���f>2��Ӭ.��x�/E&cdB*CM�W?�#�rG���2hz�r���^Y��ڻ���7����ͼ#���r*�\Xsg�f+�94�W�����l�mC����
��xb+�,=G�MW�=����i�ҭ`�fmȣ)=X��۪���u��f�5�:��PY.�*}�UBM�e�4�/��}�`�l���d[sS���56�Me\�~/�p��flR94�e���r����g��6o�,ʴ�K�C���p�2��?���o��LN֔�IM��[>��s�˛q�(�f���g�ϒ�O�<�����f����Ϸ�͌Ғ�k�������0�#ۻ	Ӄ�Չ�e��n7߃��;7cXr���ܮ�\�̢G~~�oLL��p"E��!�m������px	v��8�<��ۃ��w�3�j����d�3e9���x|Z��{�}�T���4�3�,[Ǝ4���
��O��~�)+L�j��s�҇k��nW�Ҽ~ݳ���X�c�R��ud,c��!��:_�#��ؙ�F��e��q�C����}�m�u{��1r�"�/�I��V�U~��X�[�"Z�f��18�kmR�f
��16�9����)�W&�a�zFƏ*nug5#�~�\�X0����
GC��@��k�j��{ˢ?b�'�jMziFA6Ӡm�}�ٟ����[@�>[Am�h�^i��\�q���gz^|Ä�14��]���^�U�cϝ�<s��"-��K��JL�۵�#��0F���@W����˒�e�^��%�q���x�fwOJ��������
3��`#����8�����(�ٙI��^Kde���`=��eQ�{*H���\~���tnNgK��a�.��B%i�Ę�� @0�1XS�����f.�)�e�Z�
2�þ��e��lӯ)]�
336�2���l؄j�u,
j<<�քr���kkj��t���jh����,����2��P� LWGZ���6��X	�|��ʵ���k������d���b�P�X�5�s��J�I	T�v������%����
v߼m�l�%�}�l�MJ���6X�1w֖������nVՑj*Β
�˝����؏	��'!/���دC4�z�C�BFB[v.���j��m��u�ޮ�0&k���L
�13�h�i7<@�@=&�z������!9���9�;&?Sɏ�cU]砷
ؘ\��!���l��8�zz���o�D���6-&۟]z��OEh$�<@�O>� ���uB*s�YZ>{��Y����ܹg�R2�/E�fh���=��j�6
Ѽ��U�Z�$n� �����j{�}e�ޮ�s�4�
4���k��L�{���8����͐���ٳ�~�A�f�j����c�m���T�ϡ��k�qi?.�P�,��j*X�mHδ=Iu�&��s��OB���i�n�ߒk"�|�”M!��8��Q��i�{M���?��o�^6Y�A�]ɬ�g.w��	 C˹�|Q�O����s�+��\�s�	,�_��
����<T3��זDŽ���%fȏ	U���ȅ���cB��l�,�!6
t||̰��)��_V���F�f0�1���X��Lë�I�Cn��_�c�aՋ1;5����i�ܟ�_��ʤh��!�S�H�ծZoo����4>vwe����Zς2y�Ocb����Fs�^u�+��إv�>�$}��)m��%�|�n+��׮~��޵ƻ�2�
�^�DR������"�]Lo�E<z�����bb߂5���nܚ�Lߟ��ZBӶ��Af֢V�ǟ��"˭!PS��Đ�i-
��v�$g��CT�*���왶˽P
z�瓥��_,w�)���lnl�wŦ��j�?����TF�NŶ������W2����82�[���H�${y�܉,�mk��5��{�ZP�%�I9m�Q�()�7�Y��Q��bE�fG�b�)Y����ͼ1�:��[ee:���i�:�/�k^�R���n
͔�
U~�V[��mfj�LmNc׺��94Q�F��������J5{��R�+��o@;�~Yvf���i�>7�Uݻ�ŋ}ϫ�^�F�wkg3^���^Ѩ��)�_����7I�ύ$��'�#M�\ت����c{^_CA��2�f�,�Vz�A��qy�?H\tp4�搝-��[�N�Uu�����Զ�C��QK}��3���4���bf�
�>S�����y	Ht��R�&�"�(��q�~�wd;7�f�8�̌,Vxq?�KQ4����o�>���0Hc����7fͬ�эtCb5�c0*F�r6��r��C�7�MY���!=�9�AJy�L��V^q0�P�-�FfD�v�@̭�"
v�
+�5O����b��B�4�	(���5w2	?�R��\�9{�՞�dgX3��2�>(�3F���Z7�/s�	d$Y�[
�\$-��9k�3�^>�'ߋ�2c���X��wc�}s2S�r͜�5׌��#�P�Y&�5��	{�ڔ�Q}���3���l6�о&�q��3Dž��Ў-�A�p�\-�s�k������v@�Owv����m98~X��o�T':�Ē�#;�=����L�/�ˋ���{s��j4��u`�j��8�1���#��*�(�*�I��׽.L�ܾ�os�>2�fijc�����fz.���p�Ȟ�ή���,��l���b7/0P`�V�Es���k���)�젨�4#{�˒��E�f��d����C��*.ʃ��O)2v_�ݞ��fv%��E1���d�� �E��Q��e����#Aˍ�q'3Y�4�Y�@��`�m�u�̝�V��3]��)3F9�̞�|Zΐ`\�YYj"	��Rsa�n��Xe1�n��"s�=���n��=�M�D]Ǧ�fX(�-c�P���Μgu�U��Q�|����q��<�m�.�suS��f2����/Mv6j��ߝ����:K�a�,�-���d�
���u�g镶�"p�?�y�9�_����\K�z{�{������o���/��ߚ�+��Tn$V����m��!��90)âYK^�QZa��K��lV� ��l���̓�l���W�EhhYK��4��D<���&�f��|���ì��ɯ��UM[6�m�2dfPT��th��`�k�[�H�䢯��w���ub�N(��8f�j
�1�z<���{��73��i��߬���! 9�祝p���0^p)Y��`cj���?3	�)�B���X1?`f�� �g8V��.�g�(�⸲6z�E�;�}~��4Մ����l�+;
����Ʈ��y�5{H�o.t���8ef��t���F!?�|�쳐�M�1�F�%�bEl??��i�$4
/�f��/t��鰚�����م��1W	�Aސ2l�}�s�,��}g�R��F&
�Wz̲fX�\ͪ�Bذh�z���㶽�2_�|���N$f��S��%	H��2)	�FS�3�F����7&��Mc��+`�^5�K�ј���qþ��e-l�f[]N�)��4U��\�K��� 9��������+��|�{��5��^��j<R�`eԮW&�W7�x�c&Oz����]�m����t���x���'�,
��f��h��$ ���2��eh��ҮK���o7�3.ӂ}��^�h�q���T�����J�4�����ɓl��g������7����I&A���\�L��Q\�zG��;߮rٙ~���`i�n�19;�7�>�+�!߃����_��������������-j�8s��G�uN���F��e��֗|,���L+8��03j�&����
s��������
�	~3�H�3h��j��a_��9��A����fHe�l�����q����F�[����f��ܔ��п�ḓ����_\N�*$�g.?3s�fҨ�+є�Q@j�*?˘��df��D�}�̡�,l��X�?����ߎ���M���������b&���&3�)t��X���?/Sv��CG)�gaȣc�Ȝ񌉉۝���ta+,�24k3���5�F��諬��9��SJ_(��s,�7���z	L�9�u�>��O�7}5�3�j:��f׼����
�P�5+�/�$U�_hE�F��?��:�������?�Ċ��gPX��K\�cL%c;���̟V�����zGn���y��Y
M鴐KŖ�FA@+��Y��o��Z��`f��~���9.ө�KȲ�Lzw�54==�%`��p
����@��<��Z&�4q�jW�~j�gzU�Sm��#yA5׋�U�_�!}ߝ���!7ck�c�Xj(ǢN��Avf ����ef�f���I�
ب���T����3ZG��hM����1�e����hl[����j��,�IɞW{�%�(�0���վ�����Q��G5��޲ϱ��hN�_���k;�a�KάM�%f�U���*����1��Q�����[����@Q�� f�sV������Ƭ�z�
����NH�u�a�<TYsL={tp�����I-΋��F;�r~�qd�P�!1�	��0���e���\��3_�>u9���$���t�ml"P�y'O����4���\�����lV�\o��hdf`B��X{�5�R�*���L�e��b������2)e�z�j\�b"�r����3W3�߽��W21�{7:���i��Q1)��;���W/&�L���a�Py��������d�	ȸ������c�L��8v/w�@���z�{�SS7��K8���W���z���=sP������̲��O��Y�����瑩7�!�f�;%�'{/g�>��o������[�Ls>D��S^���ek�3�r���r}�4UV�e@&�qs�KZK��-���7…c9������XP����fj��r�c���r�c�����a�}ϩ�'�l\��hK�g_Z@	`�-y�����o�����5u�aJu�	h��g!�Z���9�Yl��{�1w��*�^,^pT����5c߶�>s�L�^
M��2ٙ��'͂�x��ɽ����>��0&�.g���p��4ұ��2���}u\�t.x�n&��l������$�M��
�S��f�4j(.�bo�َ���x!k�7�
$L/����w����8�=��_�1
�r�^is0v��;�i���X�h�
��
�);���ӿ��_:I۲v2BD��
�a������9b�je'�W����;��ܙ[�`�bWma�Js�sG�9
$
���yUX(��Mb������*�"ρ�[_�	s�ak )A/�n��<F�_r�j۪:�V@��ib
�g5�ظ=�y�m���)x�1!��*=31�4��a��^y2��dc�h/V
pڬ6	�(
Ҕ}�o�M�G�) �m����,Y-
g��k�ѐ�K�M�m�-�8Sv�[���m<{F4qQ+j=�tV�F&���JgԮ6�*��shȧX�m��l:Ι6k
�,v�B�d�[�ԁ� ͪ�Nk���q&���r5G�W�n�n�1��W�kOv�G�^�<둙�ޗE��[�@����t�:C�Â�_���\�3��je�3@�f��4�͕i��U��~�v�i{Й�]�
I&?{q�7�c+M���V�}q.�[�aj�f?H2h�I̐���^�<�m;?�z���93�N�(5 S�;��.?�c��ti.=l��rb���=�d�/j�x*����Y1)�`C�#b�q�	O�=�Ҋ���\')۳�Nn�E<�{�̼@�r�3�$��������~By�p7Cn���3�3L�H>�$����4nO�p6�f�R������	,f�nQ�ebr3d=S��0���H����kU35�P���L��Ԍ��#w<K��vv��48�E�|�c�8�aџ&W7���'�\�<�5G/H�2��	���q9�1�G~F���l�oʔv#�a��b�b�?���u�&�fߐ��T|�݌�9�G����{bޕcw��mwSc�\K��ٌ�D��;��%���,��I��Ӡ}#}��Fy:��3����\Gb���iz �N&��
`x_@�;YҾ����Ls����k�Csd�ͽ��!���j�}���9&����Ù�i���W��lW�]~�����cH�3��l%��4�fz�W�5%�]�Ʉ��g ˔q`�"7.g�B�4��WR���,]��@�������93C�T���;Ȏ�k���g�vĴpKT�3�{�,u�++�M�Ϣ)}�R�I�L:��l<4I.�F���J�d���А�)k>�)LY�>����fY/6���l6�~��K{�m���[_D�&�3.eVy��킨�X�Y}?��"/����/˭�͌q,�3����m�f�F�
w3@��m��˶����!�v^L5f�9p�4-|�Ʀ��0�cٌt<�����;�,}���lˢ'<��Xw{�A���Q���Mf��;�\�)�ej�ݗϣ���{|��)X=ۤ��ɫ��y���F��Ez��@�8k	�%��JW_VvF�iqqW:���Y{0����o��p7n�0zI�X���k�hv�#�(��sڸ�.:r޷��*���g���BH��_���O�50�>��v�RMe\X��u��K�C

`�g!9�N��w�ioK���֘�o��#�q靚[5��/o��fE5rlq7ê�-�Z��0�Afh��7���
�Q{p��sg(��KYh�J�V��ja�v�fB3��O��ب�	0���b���L*[���b��ԡӢ�H�t�йӴ���(;�-sؒ�>b?��i��7}��Y��p7Pcu!ؕ�"���@�(��� M��u�g��\���&38��۩�/�-��,�^�|�ʢN-�):���
�3�s�稙�@��]����t�X2k���5��D��@3���a4�f���zGc>�ց�ش�f:��$�~����C6+����4��\�@���i=�r�Ԡ��Ӣ�2����u�f�����n��vP�]W�Y@\�$��A���L�5�a�r���Njm��>m��&l�M�Y����jv}B��1�o�����L8,XsQkvr����ɤ|���x�@�0Mk����L�V�Gˠ�d���6jg62	�r�Z��'�_�>*��L�"�Lܘ�Q;SO���3�FS�w^��*%�e��̤�
�YzQO>���ܪ��UL`
�PTl�kf�z� �U<T��ۗ;�,��Y��*6ͯMQ�p�F�+���I���`��ěczG
�O�����>_;�	��^C�a��Vg�'7̢Y�x����Z7��5�y����cryKƱ;���
8�R��,�	�$8�ݞh��'D�l�`�@�53�8beu4j՜R�	k��In�/~ ��<^k|���gSp��8�ٙ�br�|��?q �EA��h�&�J|�d
��v���<8/>�����5�>`�\>}.�F�5�*k��s��9:7+o�;3|��D
M���{g��`rP��9�>��+�	G�ƍϘ<�4�=��X�N�	��n?--��2�c�|ot�w��Nߘ[\�����n�y�ow=*ͦY~�0�[�r;�A];����Y����=B��W\�̓�YZ��H�6�l��k��ё�������-�nj>�(��r<l|��6�)t�W���q69S�f�X�����j��BV������������h�zI�̨�ƛ�-��@War��x��MT��6�&�:���m�3m���mj,�y�A�an����.��;jጴ��\��cw��F��n׬�/'̎�ۖ,(�ZKC}���l
�0�e�GRv�U���M��gɪ�K]@�=oW�On�[�-YM��������
�oͿ��-�hX���M����R��ɀ���w/��K�o��_���z���2��W��/��m��"�F*څ�$$5�-�����X�Y��l�m�F�
y�v�bt�V��/�X<�Q��(�x>���Sl'�~�/���D=���-
��7�9�Vի��d�m~,U�7LJ�_����ͺԌ�H�հj��N���-X���&K3��/��G�dܴ+�ٔ��W5C�l
�7�����Vט�(e`�n�27��;�t6f
@���)�
�4ꡍ\�\H�viW�a�]|~fs�d0	&fA�-�Ϧȳf�^� ��,lW)�`��>`Eֆv0.5
P4���m��!���z�����p��n�
�ڱ��)4|MkӓrQHԵ`�^k
�4����
Œ����}b�
��pi@��t�3�A�`��BFs_Q��)�3�ѧwV�ґW�*%�B�f�n�?X���s%�n��/n4�y������,(Ԕj�j�����ʤ������9mz���V�x$K�j ���Z���;�
�G�<�po��Z�Bw�.8�d
3�岩g���l�eAm
d���{a��|�YeZu&��C;��D���)5lM��n�rN�f�9s����\���24h����U�
�c�8��)���C��:k�cj��&�Y�`fl���B���R��f�j��tVir;�?�4w���WT.t��,�J|\�Ot��q�
��_�*�>V&�L�#k�v��=����~_�͠�A��Ԑt�u	1Y��n�w1/�GrF͓�&��M+�?�xѿ��o���>�T���7�P��D��߰�ܽ�/Y�K��ڇ�&L�t�X�33�����P������=�(�!�#��O�az�7��g�`6���1�|'-3���)�:�!ף��:j"��[���뻳�a�z{��&��C��I3�����_��Y\�5Uv�諰�2���"���C��uϛ�)x>��s��f�3�����jy3@'�;)����l�6J��qghX��Rm`��p4ƴYhZ��,NP��)���p^;�n�����|��@�f���8޹��.�����+U���B
,�:1�����=a?|�qw�}��@���{v/�����q�����pLe�騂`P�A~Zͺ���׎�̙����Q��7�<o�S��1�h�.�}3j*��K��
[�"Y7�7���A͊�G�da����a������RaWtQ��tL\��T�}|��<�w�-k}3"�1Wsgd�0�#����)lL	���Դ�ʸ����.K�Ƞ���3[��
��w��s��y��|���?%������Y4��K�p�^�<���8x�����%vg�P?+a�v�/Oq���S�9�����S���_u�J��w`��?���?����z����W,��.���!�f^����[:��lɵ���CoE���tf�z��y[���YL�n+�a��&,�V�%+�i�ӄ�(��S�^��x��>�;�u#}w��RK#��r�	��k��TD׭�k����Q���F�`�hh'�Y���ʹ�3�5�n�;j�#��kr;&��)3��03y}*@5��Tw��g�������Ɓ�n�0MC�v�S 3V���
JGC+����v�h'�1I����V��j8p9�fFA�0�KΌ�	�R���=XsD�����y�L�`��Y�d��uv�8��u��������ZkE��z]V}��YT�H�\����N�nt��r�Č 0:e��(�n.g֙s&W��wx1Z������1�}�l�Š05L��,]$��q9s'��=�jQ��l���H�n���y�f�g&?�߅���Xs��aO���9�8�٩�م���1��`&�p3��y4=�F�ܲ�E���lad�}dv�!��O�A��P�퓔����g�ԠM?6,���Sus�]�3�<���ݒ�;(�2�f�.���	���lG�d�̀j1�Df�J�N���
v����+T06���얬��̇��K��L:������&Y��A�T�LJr�+�\u�Q͹��̌�}&À��/]�e�0�V�@&��p6�����	�*��f�P53*yd�u��\_��P+�A�����]�w�d&���Ɠ�z�yW/��;=cq��}��=*1s�'���^��8�Z�pU�l��b�u�����0��=cf�f�^뙴N������3|_`�0��`��$�7��c��e�JX�\mrh���I�S1;��_9,���g9?d�
Х�s�\��L<�J��=@S;��g֠�O��c��W��0�]y?��p{H�8�� �sFR_A��s�N�lj����o��uʱX0�cI�}N���{U�hc�S]��6.�f�C�~��(��i�(rUag"@���兒N�I���^��i�>�ǰ�#`f�4W�G��G?_��3�L���fdv�"&9�r|�A��X�w6�z˱��L@
�$�ɻ:��Pf0C=%����L,�Y�m�#[���ʢ�Mj
f���&r�9n��*��g�Hs�E:�S�mʩ���ظ��N#Q6���5����QX�2L�Iùj���X��~	��v�}�,P�����-dv��rvLu��-vg����o;ݳ�:E�Ki�&�w���/]��ݟ/wi�>B6��8ū@4�@[�&镶BO��{��p�Or���<_�T��?�P`23����_0�)4�vM
X�g�H����)p��8��0�U�C��J~s���#�14&ak)Q�Ee��!ȗ-��i��b�?��7��H�t0���~�j�A���
�K�02g�E�G�&��N�k���02����%wYˋ���8��=
�	�m����x��0O��{y4�<���h�c��u��#��X�������
جz����=����h�����/��ݶ�q{OV)���Υ��/C�3
�3�8�c�����l��ҽ����9�
��L����#���/�K��.���8����y�<H��ʴ�c�Ŋ�Yg��ʒY�&�,�w���ϣ1�Z���	@��[�
?�����Y�k�\�u�i�lp�9��ϐ��Z��e�!�#H3]j�,�&ܔ�����Y��$��X8�b��l��>Mq,]Tod�c\�1��D��a��R�<"� <�������
f����Zz�3�R��k���v5�"��
f�*G�
�������^/x�"g�M�=��nj0�6ng�FiA�L-��ܥ�O��3�04G�DlZ�k�z]sG4���M�js����Fq�n�\vn-���"u-\�и�;�c���As Y�6p�E��;��o�ݸ�,�0�vq"��~�~߯������f�Z��y���N��d7o���b�;���W�������m��G}�
���|/�~��ߝ!1s7c���6��D����P�����g�4�����\n����EO
n7�44�A
˔�r�!�c\Ϭ��`�x�[LN�7����6��͍�d
f
f��o)���>�$���yl�f��6CV/Nm�B]̤�>u�U�ž&�������)����"G�ڙ<O˾H���S���4��~m��ed"���:K�2#�����fLza�b�O�M��p2��s��v�fa�!�m7�#0��L}�K{fa_]����_��:��\ʹv�3��k����B�S����{���x��(�(����[�Uht�  Ϡ����Qrg`hj�!̇P���&����]9�"����
����t��˃q���r��p�����zg/4X�W��ykwY���/�t�B����`&�&�̭���z�~����X���[bR6fH����Ņ�r#�3�z��YR�YR����<k$g�:
əD�Zm�`j�	�l֪��mHV�Z�����q2(��R��a��%Lϗ%`GVf��[[���2qV[���5�Td�.33��02�=l�W״Æ�m�23��8c`fXp���`~ w�5 K��3*U���]��n ��z�^]Cò�9�u2O�����
���+;�V
)����� ;�0͐��0�X�LԼ�~G�_kgb���b�$g�3X'���4�3�N��b�,�(ղ�Hu���3_�٪�l^�^)��3��
m溂+gz;�;x�^6.9���\��	�\��2_�M{cT;�_Y��u��tVf:	V��ff
���W��ե�(��  ��~f�Z
�"��K YE���;Ҵ,S@M�i\F@a(�J5����Q����t���ͽ�Te
~�EfKX��lmf����q�Y���d��A��I~�:�&�`"��d-Ϟ���Cש3h���"d\?\5�4& �2�`k�NVd����\�z��f�Cs����3v�Z�x<�:�y�nߊ�e{`3����f�Ȅ�lf���tT����+�ak�`5��ڠ
8�>��oV�)�>�} +���P�+�L8e����J�����U�������0=�v�N�1027��4�3&�I-�O�$M�O��Ȫ��	0	�C�3Ɏ��X!��a���$7��E�Ԣl��� ��d<rk濇!��²ܩ~����޻�`Xp8������3���I���;�6淅����j��k�3z;L�Lȑ��X,H���,<#���mc��	3�u�3|~�g㜡q�Y4eb���Dk�@�Q��m!̷��+E�4\�ZC�����U�g�;����`�,��O9_��c���]��ܚ\/���snݲ�;�g�?P��*N|d����4���w�zB�d,)�Em@
2ͪ��V���M��J*cLMbf�P~�s�WC���|
+3������7�fdT�|�.����\�����g�e�}N�E�gk��0JLHǐٶwVg�Z�C�X�.�])��]��B�YgzͨU4y��פ�=�ɒ-�F�rY��s��x�,"�ҫ�L�#jZ�
麉L�ˬ\�Yg( �Y]w��Y��ai�����e�umh�q�����F�(��Ԩ�;Y
M[�
� ;3&edc�<Fsg����ۥ��*5��&g!�ӵEZd�l���nZ{[K͊E��,�Z�VW����b�z��4��V�Z'+����C��tu425=��A�xEu4��N��u����¾U�v@+e�/��pw��n�$�p�+,��蛿��~��ܴj�lN�	�>�c1JI�i�0w�d�s�R�T��Ҫ�2.�5�Xw�|nehPQj�����gs~��	�Q���5�
4�KVD�2N��[��2chx�6.g|0jm*��~AL*]S�Z�f#p�% 7��(��P˞�D�&4��<P�jz�h�R�mcgЏ�!@�;ͥUZ�f�kr3��"�P�Qw���Ѡ�K�2����Nf&3��~U��tR�f`g��l��̌�a�*�ژ`Ɯ�	�y�Pp�j��U�V��a���-�_��v��1#�6����*���7iG�f�Hu?��I��'�Ks�
u6qc�-����k��1�	���hxqTa�t�����jf`�f-*t�n���(�>�칛����J�"�6՝�bn�3Á�Za�3L����hZ&��ܑFov�Y�5�Z*�s�ʽ�X%fv!/�1���5����iN:�60I����<n
��ݬ1�_ek5�U��36���j�x��O �~ ��hj�b�ͤ��lHLp7BKq?�{����'C���j�$��XLueTO����g��}3�%e&g\��"��OL^�g�Lh��fnr�q���M�y�Vx��;{��2&�th�.g�Mf��,\�l���r
�|]'���ĄI���|��O><�|�B&���4aܼ���R]μE�c�jqZ8���*�~pj�$�2Y>h���7R�u��d�1Ȩ����{7���M�0
 �w�:�/���H�~[��ݻF� +{_��3���h6͉��p0��w�9���\s����6'����ǡ����ӄ�i��@3��j~��$gH��?�Ja���A2�X2�3�9�2i�;�����L��h�?!,�P
����P/���R�����\�
�g�L�W3j����n���}L"����ַ2��[P���:`ffC+-�L��N��6�M*R-�d,xZv�1�����W8B
yj�4�3��q3�fkΈ&H
[�鬬�Q�sc�54��\��
-�g�s!�y] ��j
��5�e�R�^-��k��C����Y�Bzf2ߞJ;S��OM-M<��G˕��kr��H�=�v�nsI��G�0��vi�dl�+��Y^F�l:V����Č�e�ix��:�m�vyc��m�f��c,U8K�5`df��l��2��Ș�>:�5X�Y�1g>G([�,���3Y����QV�kə���\g�p���]�t�$2�Vإ���Ϗ^���9�p�K���tF�t�'�)�
�3J������U6>�̋�g�eu4pP/�U�G~�;�g���o��OV��
�	�ʭ�Db�0c1Y}�R=Z�o�����7-��9�9IR��t*JZ,��.�c�i�܄������te�R����(����(�U��ɽ0�N��
ն�]3�7-�w�f��I���;�:jY
���~}�/�t�Fep
r00�fX�^ѭZ�ء92j�\�_����6U�U�X8+�Z��x,Q;cS:с�<�G�W��gh�"��ױ�B�^�,�T/��>@�Gl�E�h.��z�>��f��F�3и�\��ĭ��0C�f��W�p04�3γ��07�k|
y��u����)�Y�z_sm�_
^Z�Dl�^d��ܤ����K�PK9���빴����}��K5��/y�L���y��[�C��&�����j6�Xj�Ng�]fhy�f�ec�>�jd�s��3�.%`%.��b��`�54j��n�Y�jP3�/�X�4�^�:8�t�=��U�`ݙ��7�E����'�M�~`���d5:V����!�Lh�WejsnZx&8�h�9@�j$��	�5k��˸�U�f��w�p��.`�
`�v��2O��h03g2�ڜ�m���,\�F3u9���Iu��f]��p���@S`� ���k��+�2�d2٥��3�ox��i�)u3�$�c�Gcb����a�E�33(�e����83󉀙�>y�u
ng�٘7Q'2�	���ɼ1��q܀b^���XƐ��O՝��6��3�(�	�3�8`\4�3�̙s1��ܳ<���~����X�y3
v0 �|
�juO���2�3�ه2�m��>��4�㨝Qv�=��6�p�wK�ž�?̃���"�ͤ�益ễ	�_���#g�B*h�Ay����]�����G�\�lk��G5��=/X@��9hv�ϻ���+�̤�j��kg\
����-�q�s�����*�Y5�6~wV/
I(F���嚺����ϽtACN>�[�.L����O��]v6����`��o������Ղ�����t^�~�]�:���_�����o��}��B
�s��2���)��ijm�-7�_�Ȅ&&pKR #�as�Բ�w\Y�L03�+ae��@]0s���n���;�ѿ�o��ٹt�zs6�������� 1��5�T�Ө��}�Y�^=n=�㱸h��2�8�����c	4LQ10��8��3���zjfd-P�L�s�|��jYu�������ԏN�(KÂ��^޾��þ=[����;|E���=ai��+m%�Uz��^G#_�q�}?\��*�ʫ��ώ��_������P��s�s�|
:!P�O�d��Z������%��	g�`gtk'~mPb�U��qm����p���VpJ�4����W߄i���+o��E���̪[�k�'��a��lg��2jh����a�Y����P�2Y����˞�1�z�Z����q����
���/���c,x�Z��c�nf�n���c��@�כ�ݶ�����4ǖN�F����Z�Ou2��В3k�n�1JJ��e8���՜g��K��e<��7����R� �ЮќՏ�÷�QW��Y�C�Z���h}�m㾡��&h�054la_3�H��L��c=n�2�D^W�5�%��`&kQ;��l��$l�uf�he�ϝ�%���3��y(۠ݬ�3pj���D��l^;��QW	��L!~��9,@����>5/Lz�EУ��ɂ5�W�¬�-�2\�6��o�{��<�SG�N�X�7ax�`�������eA96�����$̂�v&�e���
p��*5D0V�#lPki�8u2{O����i��v���<>�5բ���5�G-�Z��meO���#��j-�W�O�r�w�rq7��?�ߘd+s�����'��%	��B6�x�fT2�������ea��D��_�8!��l�����l����3�lo��X9��p���pϨ�z}�o�)�ōo7�2�ᚇk��^��"DSC5_�Ǽ���d	������y�3��r��=j��2rq.|u��x���\e�����ZC�u4��L<�Um����[��M�e���2n�p�?��~��$������p����]�@\��n"wpx]~���y�fiZ�m�֟/ҠM�}%5#(��Z޷�F�}�����F�}fw�6���Zì���i�i�z]�x)��n;�1����!���vL#�v&��Y,�0g�d���xUi�:�y��LRSjm�cި~�l�l���4�i��t�^�������e��i��iGf�@����?w�s�,���h�7�A3�xz�O>����K+��v��˻yieg��g��caP��WT�R	4�y�NL�/���+��%�V���~*$G5+o\�������g�����e��v����Zf5�b*��Wh
�>n�B[jF[z]M�����|���:�h=�ɡ��?�K��m�dw}J]�����4�7��9�"�R���*�(WB�f��rU~()�P�"�cʽ��/F)h�4P���i��̊��p1�Z8�ih(-�C�/Z?㯩�	[˚��Y��l�[���%sƂ+{��2/�Z��e	��#�_.��5�x��f<�bi�fjټ.��1��,�;�u����Y��F��4���V�����u��3��YVC3T}���Zئg�D�V�b?$fk³,-Y��]��p�����y�Q;��3���8��F��Q2��ؙ����`Ѭ�[ag���j��	�J
GL�-�-/�:nf�j���a�k�&Ǡ荥1�|��nB"���FC#�p�4:iV����La����h^�6��808���}���:?�UyܳIri�RNH(ф�9�߁��K�3��U�5~3!7#�W3�p
��e"}O�'\�����V��Tə�������U
'�Dv*�ȰY�����M3
VL�ž�jv���
�&ghrb'dg��<��7U�S;�!���h�&=c_WəG��Y�i�y*�v��BY��:c$�E01�� Y�*?uţȡ9W	�J��O><U�I!�s�{��peg�]kX/X�Km|�JF�,���m��i-M��Y.7�O�7n$����9�-��I�g3R����ix��b���x�	����T�����ʹ��NjhTvƶ��\�`�^�305XJ���ȿ.͇�̶���˨����ce��m�nF'�)J��En�v��O�Ɍ`͓�o�镤�t	�l�f0	[�C��9�e�:͞�s���И�pS��Y�,
,!�38�u����t\=>.����9�P댞$�n��D4gl�f$��Zn����4I7SV6���p����p%��1!s;��0���\%��Cw;�%���� �\�F_���>'j����F��"-�]ͪ�13�mXس����7�X����>�n��� T{f�\�o�I󲙈��01�͎�4\�Ϗq_ei���04�Ng�¼�L^��fH�`c6�qUz@�.�c�b�r2���l��˃n
�Y{]Q'���ѼnfWX�i��Q�RnZ�Uw�ku#e�}��u�Lj��ŎPM�*L��F^G#��U�"��!ggn�������
�~w�A�z�o�,��&��
�F����/TG���?�Z
s��W�j�e�G��6��,�.ӫnH��NK�����J�d՝�����_�wv�]�Z��h�,�U&(�l���e��Y�E�Β�L
�6�t>G�rmng��Ռh��K�*�&m�jV�Xf�����5������88;(��f\0P5���.�5��ml�n7������T46�A�Ma54L�4HS�cZ��4P�iv�-E��81�m4)M�� U��3�v���qd�Y���Y5��@ߙ��&�`a>�������+���R�u�& �L��M�Lt���.g�P4ߒ7�,�5�(�Fz�i�j���a<`�jh�ƕAi�10�_{팃}b�i�4�3ӐMEN��l`6ܨ�l�V*����9F-w���F-��k�]��U�[v�vT�
�s����m�
;a��XM��ˤH�{���\4X�k���5;Л�es����k�2�4���6GM�cҳ������d1�� `{N�f-�����
��h.���Z�`��Ex�����0o^&�1p�tP�BV
�[7��nk�\`�c�s
�aŒ�[�q`	t}(�K&s��utqV��l��	-LB2Bæيr�Ur�a�2���a"#���]�]WfL��$�t��y����Zz>yZ0ي M�g2!��0êsom���n�?S�e���}s��Lk�]�|�Ȝ����Y6�(�~\��@{_"�3g29�&9��U&��b���<TC���T,e›��g_�n}�2K^;����'��
2'��b(��?;yP�����������Ǒ�� ]{p\����.=��D�H�ɩ��P���lvCkh�sX9p�d8/��D]����Y}���p_�S�1�H�EZ���r�7��p;�^�SڣK`���}�;n!-��g�̀�g�}�oTX7�gx��f��jf����{p��Zj����pH
�f�#@� ͕=�,��5n0րcL�n� [��4�3���λT���cj�.8��~&$g
�ɢQi���g|�}�/�'�]̪<r��w��O
����o��3�A�f`�Mة��ƎT2�QW�f55���)E~F}�E/�`N&?Cf6qÑȼ�~�:5*i��ѡ��΅ ����Ӧ���m��	3���fhH�XY�W\�mC��lnZu���i�F_}�� H9y���<������ٕ�.�f��V�Y�bZOC��^�6���Ȣ8�WI����v:!��O��(��j@�R!2��47�	S-������>H��[��f~�h����쐐�PeX
M�c0
�]]���G���)��l�-�l�-9od�ut��7���Ɨb��-�55/[G�D�tU��ǵGe��G_�eA���Z�viu�����w���Р!�R�c�e>Z~��7y�/�����~m��v��o�vFMt�z�:[Ƥ-�Xƺ��UR0�%�I��vf��B3h�f
@V
54�L&�;�Vӯv�m����l����Z:�gC��f�M�RP��x�q$�v)�c�K�������q�1�>��g�ľ���,�'@�̊+1TZ?�-W�Y&x�˥�]w:Z$H��\fF
MZe�����u6�	�e�X�`Feo{�/(I���~-Z7�)�UOA���`ټ��xNZ��HFm�Ŵl������Z��SXY�A�������=�r�F�1a[ 7��/xy
eez���
��֩6��>v��x�m�������M�]T��詞��T�`\k��,�"H�pdgC7���i�\8�Q�j1��XSv��M(w��Y.)��I�}�����9[C���`b�Þ�3f�3!-�������0,�u1*4������bV���/ϒ�P��2��N&��"pN'r�����ַ,8���l�+[)�WQK��\�j��R��NeN�,��<``�������ƣ��Q��&s���
�r�Df����auY��OS�E�C��Q�aj��j.�V�ه�	P�Y4��1�z{�ϲ��p6SG*$A�AC�A�1�m�q_����25GH�R],�L&�we&���:Q0s�lb��)���]��j׭+��բ�c���u3���U]#���)�=P��؃5���l<��&_����z�J�؄i���w��gҨ���?�ݳ�ț�hc408�2B.�&�f�]chr�׹�(X���o�H�|�<�����

׌PP@�M���`���E>O�L�w��ɟ�i��|�|�l��7ȝ�hg�ķ_�NZ����F�r=��1`Q��\�E�N�2�..Y~��\���Լ03�
�k}�T�E�©f%M�8�<\3����U9��lV����p6��
r33��L�����Orhng��a�E��ʶ�#<f�l�LLq7k��&��,���H�y�$띰Ƈ�S#=��i�����;�R@��t�4�:� 5y"�)nf�6_Iu��X��V�C&,}75����p�k�^��Ģ9�~�*yx`�Yw�Ӭ�0�������Q3�����p9S���;�-s�$L�+�I�����3�@:�Z�U5/yT
���{e50j�����5L�;S��ҁL���+���z�`[�>�W��gg���L)3�MK�ٔ���bi�n�6�Z�/���||����+���˪�A?������X[
g�NV���W^Q
��7~z�^i+�r~=l	x*�\@S~�S�(�t��?�����i,yl�;S;o��ˈYm�Xv-'8��e���|u��~�Z{�Igg��H��e���'�3��!���g��G�&��"�z�ma��O�{��x5���n|�M�f{���B�Ƥ�Ⱦ��"$^!o�v�x`����czb�C��#�����kj5��>��&˥!�&�\������1�r�/E�&�32���]^�3��e�&n�~��-�:�xM��E��(�ƭ�E�n`�ڛ�9𚙨���2[!��f�Ԑ�x��j���gP�kב���2��IL��U֗�v�o������E�Ä@�;���p^��r�Z�gȥ�*�l20���Й����g���ȝ�}�Gf������SH�o�g+�� 3�2h�L�7N���n0IYiM�6���aht_�6�s�53G��iқ&�&�׬ھ��PC��⳪�1�mˤ	��?�ZS����	cr3��ϸ��6�dy�53�KsE��9v���##��4�wCb�93�u������53��~����+���6��Y����h�z�ϊb枑A}��d��������*�#��
����\X?."{&.q�B}�Yy��	I�)��0��˜=~XE�H��|T�<LWeR����w5���B}��#�� �$j9�`�u0�B������J� -C��v�;��,Y�L䴀q�zm�{��N�?�ްcKA�������q4�� 
j؅����);��{���:ϛ��ݳ���3�o�����_?���������]>�����$�j���z���/|e|�&"k�f�^�C��E;�m���u�>�������ێ�Μ=�{;��w���Y���5��H�V;oXyzK��[��l{�/���4�E͘��L~3O"h�\�e�f���5�uϘy��盲���o����k���,ڵy=
]"�_M/�<�h����Iy�G�|/++��VWx�"{k }�~��Wh�ΌS[3��<�M
c��:Y~�܁
�j���^�<���C��!K�`����?��e����ri�����S��lH2���ZN�ʙ�Ө��fš�������VOj4q�x��{oR�׼vu�,��y���[��K��4�L����e�_h�|GLK/ՙ�E��
�iȧ�Tb��p]���W��mwI��_�k�f�?�M�'�W�S�<�Wݴ�+VG��,v/�2��Aq��/���?�bXR>����n����\����.��P�c�󪩗�t�o+p���׃�����阴2��(#ٜ7�'�ҋwz��WYL
�g�I1��V���BҒ�P��6��W��l!�i��a��炭1��?�R���Sff�e�
����,nf��)���w�@��Uq�j&h��w��y*��jSt���5�s����`h��s3Pf�m�������3���r���%����������,��J蔺C�g�@�(�0�5/8��F��-�@4�2��@+8���6P��֩xǚ��܌-P�Ջ�QB5�=7М��
�<6�𱱬�Y
���<+Ҵ���s��U�ρY8c�x�U��=N|��A�C�n�� jg���I쟟���z�>�(hek��\g�[c�>R�f�[x�,@&jiXդ�e>��%�d�����+��v���D�f��z�b��[��N��Ε	`ł�J+&v7���P�|�'dQ��͑r����5:i�[�[/�NV��c��\n\�2�ap���f�+�V�ڤ�
�_�I������h�\�s�7���W3�\s�n�C�x]kf.�����5ad�g�<PR&����������پkF��͞�F��,�t���1�O\��};�u��f�簾V'k����9@+�:��c|6�(�@������}Q9��;,+����B��Od|��G�&�̻)�.M�����Ƕ��:���lm�Ή��e��_R(���=�^�ܾn�?���& ��%@��2�[�,�R4� �'z�6�E����q7��,,�v�i�85�8�0����Ł˱.x�G�E�0�y�:�w��NI���^�Jўg������t}jp��X��M�C3[8��-���#3xQPD�&���.li�0e<T3��Ρ��,�=5Y�$s��Ȁܸ�je��f<צ6�3�cGU�����:�3�U�<Ⱥ���@S1�k�1���yc7�m��1'��`�Ĵb!sj����xLn0dS���;�$�e0L�
�saj�7_����F�f�/�F�P��2uZ�)��oN_^��/��+m��^��γ�Z˅v��tk��g�?��#�@s�e��O�?�=7XEل0wS}¹{
	_��샘:���T�z悜5��m�*�z�����j����PͶ��t-C���P?��p_to/�Q>��}��1�5(iC���m9H݌������R�V�!����nMrPj��iX�myA$g[rg��a�o@L[ރ��1�|�l�C�E��y{�-�j[lV�5��O�|�ư����}2h�u^�nV�KS�����?C�-@�]x��&�ܦ��js�Ve�zmEvÎf`h.a��Z�q�,�������=���r�Μ��^���F�l�p�NW{���tv]��p=QG�Ԩy\���A]�����Za?�k�in�Z��`��i+��KS����@%f�b�3�M��V�%�ȀD�3+w�9��v��jZ�M�GX=�{sbǩE��ר�*CX��b�P�!W��mF�`��s]Df�+/T~�Rc�T"��-g��-��A&E����N�7y����In����LL�-��^?äb�]�E�P�&�����ʠ���˙�Vi�aФ���x$=d����,��5vf�*PG��YL����c01���Iΰ�eB���7����E���S�R`
�y�����S�M��r��e�y�\���s��̝琗QK�܈�y��ٹ�HW�Mk�Ԍ����a��05G�׫+�9b���rz��[�|��D�2g���ie��m�Es��`�n_C�����s���5?ʞ��ȁ�3HV����S�����1�ޗ�[.3C��=�e]�u��x�G��,^����=;�Z��m3@���� ��1��T�4�[H�"��'~��@����t��Gi�$�g����_,�6d
�]���9�g"w`ӿ�M��#֌��9��Ĩ�L��g�Ur�TRf�*��[�iy�Rd�D���W����پU�����^:{���v�ԹuJ�5O�A����,�o��r�A��g^��,jfBA�ha�5|n���eqE����$fa�L߅9�2��`0:0Ӟ�õ�cPԼ����î�\��ș!\s��MM�eS��>L{K�<��T�Ɨ٩�N_��@M�f"H3c��5{

�����6����a�����jB{uh�ö�[��]1���)�����n�FGoOM���3{��6LR3n׊�����(A:��c73�y�u#Op��B�t�t�Q�3P���U�0�ٶ�U��~2}��	~d��/�oR�w/F�
H'0�� �[x���h
}k�l��V2�k웷E���}�L=W���S�g~�_j��?�Y�7�7��˜��JL6�uj�V����r�k�:���
\�h=G��OV`�"0����rVsg*��k�Y�+˝Ar�>u���`�
�Ň\)ks�P��Y�c�+�А=l�<&��N�J�i��T�53��|cF��dY?�,�:��T��0�&)��*scKS����	v��q6�-���1dlVk�5��*[ˌy8���4�
��,#�\��R�r�޾H?����!@���I.�����&�e����1�*�2�&�e��͐����z}n�tZ����%C�w+�}\�.��j��5�3���\>_�`�;9�3:�mǬ&ُ�y]6`��m��5���M��ƴ\bf�Zf��W��,+eob�X�{Q������H���9O�~��c.�*ks��^	<ǜb�c�9�ى&]hT��E,ǀ&��x�L��l���9)�@��ܾY-�aa�Nʶ��(�.�4�/�i����j	��|�U'6�b�Kϐ����
��i�Y5n�me�����+�r�Z�eXzV�扯T�m�����Y���gIY���e�r�;ي�6V�]~;�����fَ̖��(X�g6m?L͉��vv�B��"uu9K&����ϴ=���S]K�3r�7Mn��35S��),����%5j���;o��nR�\D���������2db�1�RF��p�:��-]�_�����3w�}����6s�9�؝�B*�K�p8��}����=��L%h�}�&|��-���#����w��ߔ���y��K�1���vVO%f�_��F.�{��ߒ�Q���Ǚj,㭚m������39�y�񛁡A��[5�3��d���v�Ok{�FV�����.=���g���f��8��_���U�f�̬���X��,����J�H�B��m��H{`c�ю�d��O�
W������l�k���.���~�~�˅/:�OM�	*%í�NJ��!F*S�p���[���`Ϯy⒳LN��x��,`�,�M��4e��!�� Ygc���_-a��	�+��K�֠�H�,���ͳ423$fe�pUHH��1�4y�Ǟ�v����9�����
a6����{�����W�gX��.�}UͿ���)~�7���������W:�O<�y6O]*�"��ķ�Տ 1�V5x�w�2�탙(Q�+U�Yer����ZG�˞{��<;�{�Z��r���{W�i)�Pg��w6�Eh���ܦ!��8��`h`I�\�s]��ɶk�D038��VL:�v�Z�*�4�if�v���ڷN��l����Ә�Z᭶��u`A>�&����&���`)g>̌ZMWf
�u�f07q1��_����mx�fk���t
/X��K�c�����ng�����ʲl�T�#��g��j%����a��3�9���Y�f�*L6kcf�lVvf�� ������:��: +Y�L��-�l��2E	å�^H�E����A�y[�	Ȟ�6k�FOծ����L�jV̸�4d�x�4]�
�v9T�}
"��#��œ�jE_��ܮYV�t�p���)�q[f,6y����Q]Lep�Ԟ�0�m���8�T]��ք-s04��H�t\g��;�[�ԉ��¬�}�e��+�j
pdK��6�g)ұaI�;^�^���~�cNC�X�����h����p���Y�H����L�+���8c23�m�݌_��i#_Y�
0#�����Z����	[NV�����fbu;���hx�Ҭj������h�
�0���3�TQ3a�:�aA��k��%�ذ4���s����p����GB�ʬ����i���@5TG��y1��P���j�o�,�(�ٿ�S�,D��E�c7��m�?(�����1Y�o��c�H�6��lM�eR&ej04B!��ջŝ�wTj��# �&C����]y��<�l����v<L�E�f8��3h��4����M¥
��f������6�N������`�3�/��=����ߒq��dH?Sd���*�;g&&�͌�WSsn�w6;��,��cV��\��O�0�5���=��W�ڌG��q���:�s�s[����=��V��Fu)w&����	���l��(\7榨C4Ւ=�DŽ��&�e���WԄ�d(����kNgm
+y�
���є��rza���*&�����n��	}�lbn�ac�c0��&�l^�:d��-�$�͗1�p�+�y��oo����'�A�f36��]
B����v{�����9�M`(��s��9���Ꙇ�6�lǸS�2��L�@,A�Q#�Qk�u����9@O���m
[t\�B٦v3�Nɀ���6DkAe��-c>�t���-�27a�}�fB^�t�(XP���ce���K?I��8��w�*��"˻�Gm(���c��g/�Pͤ�]�oF�s��2ۺ��������l;_�W��me�z��RNG���^������_k}�+�������8��̗n�,@��A���p���/b_Cdm+'^��Eq��fjڄ��N�u4mu4+2�f}v�.5u��z٪�m޶ۊ?p;+�@'+��Qdu3u��7�@��a,X�qY������]u�&FY�����Y,�؟/߷ �e}�,��)�X�B���geh�/[n�"�6�;�ES�_�+ó� �___d'�����T��p�,�C5�蟕	IO�����4�C���A(��{��glՃ�L�#�u�E���,vѦz���0�ٛ�MVG���>T��>:&�L]���\�ft��pO�������5�/�����"����6��T�jV�gV�v}bL�rX`�X����l'������+d=��6�`��9�v�� 9cs��֫~������,8S�vge��˹�U�3�7��U�-�&8�v`dX��Pk̑�/����\��:��ki��`���_���*��U�ա33dM�`�ke��==U]�����13��;�����s���c?���ʜl%Y��O� ��q8u=Q	N�_؛��&����'����D�a��̨��ۊ���A梇r=�9��(�*�^��V�8��~�7V?�N�������Ǥ�d�jÏ߷�ϋܣ~�fjzVO�&�#���,؍g連�̼'l̳��P6$��!����z�-_������&�΂���Sa������xz����=�'��;�C��gZ�ń�.�u����߹t����l�����r7�?ji@����7k6.7
�|��ޗ�ݶ�6�� �;~}�E����	���r$�b�2�5@޸�ǎo��_�&�m���X�Z�����_��o?vv52}�7�� �������W<��>�K�>�m�$Kgh��I	��kA�̝�Qf�Y38�~Ô`�ag�������ڕ�z��0c.93���|��ό
d�,�٘�05QS�^�c������݌�Ծ�,:/���Q�8ԗ6����Z3�L��2��qֆ�xms�m���`j�Ç�S�u3�����τʃ���Gd�TM�2u������dq�YAMZ^�Ϫ����j2o�}���u4�q^G#_�Ň�>_MS�`ҫѴ��яa9&3e�F�_������[7��l�u)sa�À����L��AϨ��F=��i�\��G03����Y��H������|[��sF&y�M]�S	C��lj"H��J-4o��n�kh<�F��\�u�l
1y�f������ȁ	�f|�A|���U2�)V;},vŰ_,6[,K��&/[h�
Ɔ����X��k��Vۜ͜��ᶮO�*�n�ܒ��u&�	y��O[₂�������C�؂����	6�khHyO�CcA7�x��7	v�������|�8(Wj�LxY��l���j�&!C��@�g���dAV��_���4�\��QMl�9����[U��{YT&[��O֯��1|���̌�vݤ�Z�����dժ�,Y�iF�f���j�*Dg�u�RV"r
�56o|�k��RTY}Qh�O��]3 R���`e" ���
���D�� ����и,����kh|5�4���-�C.
?2�;ah*arF-��m���@y9`�l���9ʐ�����B
��J9�G��x03a�Ffk���y4d6\Q�S�lN��I+�C�K�#�]�o�z˹Ȫ+ �U��2I��V\/	�Q7���9]����[p�zB�oz~���,ue����Y�虼Q?�s�@A������ZO��*je�au���sOƩx:�,\;@�0�8Ԇe�k�"���@�:��#Y�?kY���!=�@̢ͩ��p{_2J�76�јToO��$�`�fzϯ��Cci"r�d���f�`Z:���2�	C1�b��%jM`4��=�f <6���5�;ΖPے�_����=���{�ګT���F��V6��t_�S�m�6�y�~[�
��(^��m�
�y�F�q�榙p�Z5�{��|�� [�'2Txݐ1V��x�~�f�AB�'o����af�W�#�o@��brX�f��a�`f�~�d�IO���`կ(�w��rh�z$����N��1��Y�Ï,L[� �/QM��()K#�9����`+��-�p=�����3V�F�l�<̮�w;��$�������4r��98?i�(�?�:����sv��30Ä�n�->�U��僭Y�дz�8C��ˁ35}���#��@�EY%S;��5ĺ�~�^y0�V�R6�4Q��L�`gXt����l�����KY�f�Xal(�*#�F�f�-1����
��K�.�<��X��؍��a�[�$��S	Ʋ�b�Rj�Ce3��ՓF�쌙)ɠ�^_��4�x�5۶��X636n5�ƕ����s�h��=h�K�͞9����ϴ[K���U�_�,�y��QG�g����B�B���vo=�z�k?'��_�}�<�LS��_����Oe|?[�C]ҝ��<�Ko���o�
���j�d��j���������^;��$��x�F��QE�j~� M�!U}ZԵ�р�y=�,+afZ�_�<��4G�u2��:Y�o{

=�ܝS{f/C����u�b�3#%jf[n*������kc��)e|P���Z8���;�@u	��d������z��ڙ��"K���L�~�:�d.g��P����
D�}�;�Qy.� 5�l�oS���g-|\$왓u<�/�0��m�^��g��1-���j�娶1�k�<�W�V9Ș}?��J֙;�-l��꥕�al
�朡�9�D�]�L���i-��Cgj�h:�̾/F^@ �(ۨ�I�r�k��3&tպ?�FQC���̈́�3Ƕ���l:�����h�*_KQ/�|�����[����������94���8�Ἀ:�p9������j�9�e亚�v�f�mv6&��)J]�Zm_1�+���b�+��ذ*������.��*�����`@Z��d��Uӥ���r��޺�g��>
�a�j5���Wף�T��.�z�wN��᧩�jnV�ah�d����t�!3C��$/V�C���>���.�uV�N�,�Ϝ�Q��۶�l��7�����V���f1�\�6�����:�k���pE�6u9�;��f��Y
g�7��#	�"l�s[c�Oy��ڮ�#��L�<�-�{�y�9���Cs��[O�l����d`v��?���,���z�F�t�n#�S�6��4c�C�D;e_��S���~��٘�w�jj��ٯ����w�j�K��ؾ�����fX4+'�H�u�杕T7̈́h�6�4\Ͳ��d�l��õ[�c9��v��� j�`+��N��2���mͮ��Ϭӟ�*��
`dN��̛33k~���p���C��L����.�-l񭨡�~ghd�7l��`��@�g��Ii�gEga�Fa�O?kFƺ^r��8��`g�;:�>:V0C�L��7�g�g�c&)�cS�;mJ�M�)�V���>��F�{�%�M3�k�ۨm�qw����{�\�c1ȴ�1�����q��8�s�NJ��(>P��bꮪ��]uQa�[ˢ���P��.����e�7U�XW��/��D�^x���.�zZ���}3��	���7�����+�?��ۨi/��y��G���ڛ�)������6sH��w�r��e��_�rg�Q^?��W�貸FTY��+�I�n����q����#� �&EYq�ڹV�%g�%Z8��iÌbs4WC��3�!qim�v
���l��x�#�����0v��ഐpu��Z�&q���%�5,�C���y������l֩��y��ZQ��WV�������7F�LQ�������fIj�3AJ�b��WR���V9`f_kV�I�%$��U�j�S�e�dfZ;C3�FW^܆DW9|;�
eUmn�X+���@-��85T�<��)�T��)z�f}�,{��&U��5g��������z\Tt����
)��jwҚ��2?XM�I�\��TYΗV��'ѬPuu�j���in!�l��e��9��n��`�#�.3�g73�Dђ34��f04�́22h���b�
ߡ;��t�
�q�$�5'�j�/i�3gh�gf���3�	G
]��gZU#��������@��~;2Y��/:��O.:�}]�ve��L@z�ɚĘ���6���tD=�y�%lI7	��m��^��Q^�W~�*ܬ��
�W�����/O�֍��D�&�W���๮�;>{2Q����hT=N5e�X��,O�	f���{�=.��ʸ
���۾M3��Ѻ��:w���TV���6���K
y�8C��	��$��$
s���Z��7����Q��L���Ma"����oO���>֙?ߕ��`B�>�Z�LޖY/���ˎD��2G3��D�A�����5g3u;���s���B6�r"��I��ߗ����<0q��1>�=rГ��i�f2f�ƒ>o�y�BB��I7ߗ�x�y�O�ڙO����.Y]�\歰^��J�7�&���a���c�����304�>��⑹�q.��po�9�\����ͺ�^(C�v}�6aM�����[i��Y��f4%�����Jch&Ow��g�W��2�1D;j~;��D��1\�5�A��f�������Ss5�q�>k��_�չ:�1�W�6��|�,����z��ܾ
f����u���,���ݵ[�9Ӿ����}z�D�Řyd��lr�fA��4}�2�da��8jf��?����oS?Ɍge|�:���y���&����g�a;�7���l2���v��ni}��k23�FƬvo�5���NgG���ݚ�a�t�
���j���R:���1�1i6f&>3�e�n�\`��rm���F�<fa��NxM�9E�L������u��a�0��z�N�ިXn.�+��^i���ԗVG�*S�d��g/���bPϝ̼�F�n�?9H�����Y�rE�hzM��E��_m�Ŀ�ﴮ�^�|�����̌���z#�̶�9=$�fu��k{�Ȋo�Z���|��.��1O����[�Q!a��v����J�S�M��������b��1@�_��tm#C�fyXB�ѤO8!�z�Lj7�����Lzj��K�Ł��׹~��7�ϳ���;�6Tlq�^�-�pۮ�&?�i����U{��d昆53u3���fQ�ެ��@֑_�29c!�r��~�m7d�:E��`c��~ږ�
��@�gvB;���[�U�N�s᠅豕�Ū1&�#c�����4`ƶ�ސt��4��)
�"�@��-b;_�㈂{b���YD�6j����a��z��‹����nGeI�$�v�ѱ)�If߼�Y���{�7�'�nw-��%�ES���	Wg�:i��$�dt�t�F�S�2/ò�:��t�U3[��~��
;�|��a��̾'5������u�<�DhdeH�F�b�
�N�f̀	��32g ����WU� `&jh���F@��U��H�Ʈ�R2�Lؗj�,�L����&
ϟ7V�?��l��^Y
zM~��"�ˉ:�gE�j��9�gq�02�R�ϕyA�xX�6�T!=��٣iE�0�8@&c2_m˨�F&l��ٓ���r.�U3�`�7�
��Qh�
wwn����q՝�k�\����(��Z��S�6n�,[&����[2���ɰl^
�9��&1̜?J�h���T|z`)�f�K�0	�0P��W�h1�J���T���l��4L��rN�+�Sc�_s�	0�;8�#��|�y�|�Fc�|ɦ���91P� �|���N��;n�ߓ�׿јܖ�&,�g	76/��31�6��
�����q������T�ٍ� ,���a�^]W2f��{�p�|w޸R\�JǮ�����oi@F�W���U��0-w
S�y�[6۹Ұ{�3��y��z-���n)�䶮\�f�gf��]9u�r��3�m��
`F9�:�F~ӲH�r3�k�X<�h��P���,<`���l�غ�-dD��3���P���%�m�2W@M��e3����d��ea��?/��f
HM��ο(��cG������}ݼ�~�2�q��Z0�Ŝ%�ؒ���u�ct�J����@n�Rc��**,�l�(+[��I�����ϰ�3�`Qn�܌�}��BJmf9�(gL
�_��)X���h��2s�c��|����]٦Q��=ZhڭQ*k��q/�cH
Jb!3���Ҿ�	u3*Y_K��m^�Vx��"*K����T@�#́��p��77*�����/~i��ri}�N�G뗖�A<����w<j��?9��/��*�f[��:��\������m��^f����.��BP�/���3��y3l�[5���\j�z0o՜+^Z�a�KI1��![���lݮ�]t
C���c�����V�[/�1�%i�I�Eqjh@S���k̡U�&�(�f�J�m8�L������ZQ�Ѐ;�CxP'1��ФT_��*‹Z_R��/�����:��1�e#SC-��4��T��Ŭrk�
}G-'Sx?ҫ��զV-�RGS��v��Y����xȾ�)��\Y^�-`�@J6��Y,]��ձ�m�ZSӖ~b���-�fB�%�u
6�ژ�P�mp�zww3H���հ �g�9�o.ny]`FA����wc�F���*���O�&o&��I���<��m%o02tț�Z/�H��l����Tۑv���Xo����d�VccE����Q#@����e�
���т����\Ӗ���2O��00]!G����V��-y~A�P�2V4ϗ��\��$2K��e`�gdp�M̩GW e�ݤfKu�AN���K.ZWsf�|�Є�y?˝�
Gc���iW.��pfF�$%���pFS-}�ݍ0��$�ܜTk6�=����r�v��̂g���tI]��B�9Qn���I�H]�Z7�����p�p���p���qA���ݸ�ρ�6S3Ig��6	=�U\�&��|�1�|���م#�s��n�Y����&�ZK3kji
ai^����Z
&���5�y�Y4?��ۖ�勉�mh;-���+&��lp�EY���D,��r��f������(gi�vb�Fθ*���ˣ��c�y>���~�pL!L�憾6v��`k"�����Ⴢ�'�Fͷ
w�H{Fe�F@���M&���P��i}�L�d�,���p6��~V���Q�.�y��w�H�͔���,��QF�������3ù˹i��-����:�����kMe�Q7��ef���ڂ���mBi,������ou������,N���^���nQ�ޮ=gf�uv�3��Uj��B~��x
ͅ���7tPjV^Kcu��nf�[}�[�Kc��������P��^F�k�?Nf�}�9��ז�z
f�53�?î�b��p�l��V��FÖ;V;�BW_�����C�SԿ���|��&���4)\�&��*�YM�,�ǩ�na�*�3�u=�-�ƪ=�[�Vv�pF�b�Z��f��F��Fjg�;�3�"Sf`Vf:��1,��Jki��X������C���GX3�^h04OX5�ʺ�#���?�'�r��/�J�1�f�/]Gs�n�hȣ��_y�u4�=̟>C�����:��I9��n�Ϳ��Z�&����1x>�µQ^NC���a]|N�������gi
����������`��'iMQ���,�gZ�Ҽ���&��.���6�hۙ��6���f��S�vmnٜ\f3��C>]_4�^ E;+�,��<V�bVW6[ݶ�]im[�i�>�וY4���w��/���+-0��䌶4�D�5�Ƽ(Йk��9
�<*��-��UR#�g���r�������<L�M[M����__[�e<�Z>_�kN��P�����vi^�%h�K��t��iԉ��hb��W��V*3���V0À����N�cQ�h�Ԍ��.�͹d�5�f���w
Z�WoX�a5��
C#��7�esf@gZ:���ϳ]-®y�]*��
�ĵ뇣H�V��uG����p}�rP�ox5��/��*�|������1�������A�dgz���3,��6t\ڠ�:���!s]E�D�4-��=�R�2���ĹK����W��ў�� ��.�
1�l�:N��:�-�J��UH��:k/
cf���"��,����,ep(+��{\��X�ge�s>�^��`9�)`�����pl�ȞBA�9�bX���Y�DKW��-\3�^��Us�� 贈fZ��a�*1;�PD
G���r���k��E*$�ܼ�;0G�d,���_m72�<��(��6��?0� ���Ok�F��+X�����'M�͛{_�֪,��(��k�(�q��1	0�߇��EC2]nv?9h9q��{�v?3	810���3*9{�yڋ���2��l��`�1е�76Ӏ��H�ٞ����lj@Mͦ&�g�w�1�˘�0�i~�N�+�y6n?IM�٧n���F�!,�3-`�c�~|P��x����c0�23͐���@��J���jg��/Q���W�Hef�,��;�_?�%�?ҳ�8;jH���~؂���Ȝ�o��l�Y@�rQY�`aB��3��^�lv|LДlz7�ⲣi07p���1q�B��+W�6��^��hґ��ld���ko�DbK߸tp3�4{�K)�m����C]�:@e逅�~��䴰̗~���,��ޙT�g	Y1�uc*�*�.d���uͮ�m�Cj�;fY�o�j�\��A�f�[Z���8�Ԫ*�Zw�X�O�J�Cn�ɘZT�~D�ڐ��5�΄�c6��f�l���l����:��N��x�F�t�J�f�g���Ba��֡-��q]װ��I:f�t�zX�����dgṱ�'����M��m�>Y��,ζ��T�^
��}Y��29��b�I���~��ڿ�Ӹ�j0��{��bYsc
-��!�|�`t���0!%`m�
+�)�|D_W^cp�ⱓ9[%N��K����a�R�-:s�v��@�`�-�"��	��e<'��EUn�̖�
>�*g]� 3X��H(�v���L*!�r�����V�~L��x͖�9��r���͋E�Ϭ�5-��X�ڲ99��p̹�/�
s�o�Ͼ|9��������Q�O&
�2ڤ�!Q�$�hR;�a?����,��)�4#��C�ܶY��`*��e�Br���b=/���ٳ`�aJͨRkag
�r����f��tVe�-���f-/tc��e���i�]
���I&cg��Q�S[8�XG^Z9�zdeaPg��h��(���nj�2��l�L �6�_"PS���,��IB�DZ������R�fʚ������⪥�[5[����fCzVo��9;���eV���~�qE��UV���ԡ٫���W{?�su���J��� /��{V�V8�
.r��y�kA� !m���f���Sn+��n@݌:��X���&�6��h\��@���D^�D���vʹ��\���c���nɋ=3��j��Wk���6l����(�kþ�e�[4s4@]�*�X1;��
�WK�7��{�5K�|;��K�ԣ�
����co�o7wxg/�ҀL�}2oݷ����v�@�ﺭs�s�/�����.���VS�d6������o;x�����޶�	���tF'���4��'��Bm�|��7{�a�m���}�h8������z���K̒_ܲr/���$ 7]�����kr>�v�9��;�����f���%�����r0��>u��ش��Ր\�=!/=��۸s��҂In��d�e�Y5ׇ��k�Ff@�0Ǎ��7����Vc`J�>ػϹJ��[�s���ۑܶy�1�f���Gv�,��i�}�g��{m�,��/c��C5i�l֑jl��s�q;��.ӌƱ0�i��5m�����;QC3ʊ�#Ț1:�f��[s}���/��P����4����c��.�4��]�p�#QZ��%��a�B������Ͷ%?�jc�ʏ�v�2U�;/�`���l�,3���Y��t�e^�˰o.�A���j�3�\�����U�U�u�`FW8�y���~k��ypm��U��o�5s�p	�̽Wc����X�E�>��\������W���̺��G^�e3ᚭ_�������l&��j/��)մ�`�a��_St�fY]���9T��,I�!�j��}ZK�_��2����Fh�]�����k�"����!\�0)]�Ԇ�e��X�G�K������R���D�̮S���6�'�5P���6�~�[�ٹ1@ǟٶp̝��6�\?�6̈́ib4p3�/rh��YV�(*1C^V�@���˶`gb�}��A�:w��]�b�U��kg���Vە��`Mz03���K��,L�5�Mê�[�:�¶s� M[!Z�u�ff���q��Haj������z��3X��pV��:兕����A�S`�u���}������E��cQg3v�(+]{Y�p�Z-���,>ݚ��B�l�7�6&q 3a(���4�*mY�v�p��af��Q;�>́K1hh�1
�v&X��1�Y�
���Q.��,�g�M8�l��u8Ҷ5�B4Ӟڧ���^S�L%Vtam��il�/�Y��A�ϊ��29�oT�˄�l=1���ҥ6�� I#X��_03HfL��E��Mn8�d� �{����xè�
��S���қ��LW�o'�Z~� �$��`Z�fc����JR����4��'�?�R�A�����6Pcl�]Vo>(��� 3{/�hvwc�MX��kh�6E�\+Ərmw܉섺�w�a�SQK#��{����^&&���
Vٙ�5{�̝���nTj�u3*mk����{|Cz���j�9>��^����9�=��($gMC����K̆^��U3[jg�1����I�E��Z�̹�'��6��	���I��?L���uR���Y�0���4P�Cv5�d�b�
��s���fF]M��h����X4w���sF
���T����=�B����ega���7|����^�`j�0�`h`O�j��M�&�ƅ�͢-�T�e�f5��*chLn�q�f&9{.�^��u�����̊��k�c1Q!h�M���V�8d�ë�l[z�u�(�	R��d��`A��j�O�fdа�5wiqX��M���r�1�?Z�I�|jT�ܘژ:@kf&���Ҡ��VլD���P!�R@�F�LͶ��_�6cl9��n�� ;��05��#1t����Uix��e[�v�2v/	�%��2Q[[�5:MciP|�ì�}E��Bü2��D��~�>G���l��9��Š��v��ᾮl�t�Txe�iq���.�k�,�:��a;]�����d�ͳ/h�lm�ڵ�v�k���ŭ?��鶻B�m�Fu/�C�f�����),���,���*ϛ,-�8�h���[��<Dz��'Q��]�h5M4��9C��U{�J��ok�3<?��W[�I�^[�NXIs���|�ֿE[��P�̬�h�֨�7�`V^���q�@��J��0j{�f�x<a]N����)Xav{/̚0�m{U8�� �w��<c����k��|�w�Z�f��TW3��ns�����N	;�A�^�3��"w�NjY�^mv/|T�p{�7�b��@aۼT�nK���_r�P�3��>��kz2���tZ�<[7��;ea[�z3���iN�M4?ǒ��V&R�9���u�O'
�iQc�̸1�ڳ�dUKY9�af�Ȥ��9M�e_QˍJ3�术�%���q�X��*&nno�;Xcd CP\�5[�fU�%�Y6[�`ؗF�L�}�q�C�H�`�Յmj���fV[܄]s��1Y��L-[�����΄��k*[�3��X��S�RR�؏�a?������eL������
�ۼi.��P[�?���>}T������megv���W�aen+�QFW�Ծ��$z�^�7+g]����: ���n���s��꺏zg��y���.������\�@�`4�9��
��j�&�m�ogغgMX-�O
��
;��?h�>r���1�揳<���c�����w���pW�6���?ߏ��]@�g��s�n�Pf+s����9s|��w�f&�IjX���05p�t��?�����s5��I�|F�?��͘T�58-�o���u��q�4�Dz{�A�ϳ.�f�&We>1R3�~��\Oׯ�/���|I�:�����V�=��\~Ϟ��}�C͖�K���Bu6>+����!w3:�蛮��󬿊}]06��g�Kb��w>ϕ
�?>t[�;���18\�m3ϥ�
&m�d��V���~&��c,}N��x�R�6HVsӏq�R� M/�>2^��f�:�zmLN('��ù�3�����Ƹ�1�ƪ�d�0ַ��`g�z]G㳆��Q��=�"T';��tן�z���ovǏ_o��pUm�.�͛�r���j�`7�R2%JZ��9HC�e���4�%�w_:�4�h2��N?�?����R�~t���F��O�f>��%��-����ֿ��'����dPZ>/3��9;��r�Uo"�я(�i��kn��w7�R˥Ր����%APt�X%5�]�T����dr���,+�����J���>��Ư=��ETʵܷ�M��c)�Yh�|ȼ���cY4�FӸO�\j��G�l� =�`M���'���xJ��ˍ���;9`��� KSdz�d�)Y��Bkf�!�#�61�pV�A�&3��e�
�1����cB�.��,��H��z���<w��7|�]xga��?�N'gk^2#s���U����N/��l��
���iiŀ5�MJq�1kg\g�.x_�i�U�h��%As1�8���a�+��A��`K����"62�]��{c����?og{�b\��;��=�QTh��Qrc�Ԑ���$9�y��\�Uh�2��\Z�`hR<S��ڱJјU�V�p�h�?c�E�Q��iOS��yU����\
7 �j�
9�$-�s;��k.MW��'��ڭ��dS�He�[d̈́�]$��m��ܲ�k��%��mS[�G�w<�Iڗ7��(���z8�Y��.K��巄���{�s�c�0o]�@L
B�L�N�r�Ϥ���.�x$i
l�`��!@�`�^3�O�����
��&YM��j�Y�}�T�o.C�{W@�C{
�]��.�M֌��<ܓbu[7��V�M-W��G����d`h1��H�b���8���<w&���sb��i��
�T�9>y>M�(�̼aR3:W�y�����>W}?G+9�y�f��OCV�[7�3�s�{���΢���uϠ�Z�ý>�i��/6�v.�6M<Y������b�Y�Ejb��Ƹ=��mz�
�[��)��F�f�$;&�Qr�Ø�8�RP�i�e��g1��3�t<����M�����ȩˁO�3�^7$�6�h2�1��J�k�a�7��fR]Ӫz^��V��r)�Wz����ÿ��vy���Z|K���eڽY[�M�Q�1?%tA	2�OR9���{4��Ͷ��?[+��x���n���Մ�ȩ��Q�?���4��̊����W��lw{Sn�%�u�@̿}[Ͻ1��2����.eJ.�2hp9��^{�e�Ψy��|>�6��&ERj�(���	�������S��[&��_���xL��3lg�,��Zm��ϩv����´SPM�Z�������U�.�n�3B&9��Q�;��	�3���U˞�%({'4&6s�Z�Tg��t�#�]т���9�!f�i�g�I��T���=�5@{GM��+,���
�=O�!�&5�(X�W����ą���Љ�������c�j�����od�n�����q�,�i��c����ĩ^�v���[.&�:ݎ�ٟ��.��6�lpm�4m�
QLt�]Vv?a��ș��CöCz1A���f���j�����=�h�cX7�	-V���l��j�)���1�n2c��Yuk0Y�T�\Tг�+���� �� �������7�B����ܧ���6l�@�}��3\?�F]�s�Y�4kdd厲+���y3���Ta����W\�A��t�̘8�r3���vu�خ�ϷɛI:�Af��N�	���p|� _	�u�x���^�s�i��r���Ƭb�ܨ�K՝�v���27�lb�]��̶�"B��������L�����	ə�����`��H�7�^&��z�������&a��A���M�� 5S����'r�1�3	s\a�<9ź�A�ur�u5H
@v�����f|��\�s��(��̙�D��wH� r�]'dѼ+��?<K�3�T��9��9sr����<��Bb#9��9��9��u��L�����Q�$Y\�θ��g���N���	��x�<>6ٙ��j��,ϠQ����{�Y3��P���k*3;ԕ}��M�_��y�m�̧��I��E���fq~ѐ�q�]�9.��i�:��1@wsS
+V�M�A&�Cf������ߕZ7��`&dg��������5c
sw8�oZ����H0����b�2.
��ܾ9w7c��=�&,�q8CN�3�Y�7F&�i�Tߙ�L������ܘ�3�U��
�]�I��	�-)�9@����ʇ�=]fޑ�6�ne��ܮY�IJ�Y�YYx��i�̔K/�_��J�V�y
�$Ж9����{���-珌m���ᶓE���X,Df�ۚ!y4�l��j[]T�3��&3CV_�L6������n�Y���:�.��"=�=�r�^�ϰ�1����J�e�ڬuN��7��p��LB��v���n��~q�����O��O���c����ǟ^���g��������?SY��(��*Q�Q
4�|�O6/��}�|? K��t��W$;cn^�ų߯}s���ݹ�?���o���ts[v�	6V�|{��
ɐ�fA�w+��֍z��98,�#pE�–߿�����+�4�{)v4�,eh(aq�Cy�a�ܚaY�4���y��Ȝ��?��(k	hYLk�1.�_k��.ϬR�W~F
Vk������B5����ª9U��@3hZMa�^�Lx+��\Ϗ���,��r��9��L�S���s��u�U����3�e����-�3U�ItF8�5�������f�b���E��n-OՉ����f��b.4�|��\-VU��I?��K8�W�[���)e����6,�&X�E��N@kUT�*�J����,Rl�s)EX6f���Ng�ʸW|�L���4�7���e�Y5f���������N��t8���d��fh~ٚ��@�ٕN�2zP�=�23�ɛ!��&3_��"s�A�z
4w��9��3$@����rR	XyV)��XF��A�~�|pK�9�e:'`S:j7��2�?�s_�׎ֻ��c���G�ݷ�F3i�0��Ji�R��u2�����ݞ�9����8���01	��"ےA�k/
�6ê��Cw@ҙ��C����_�cˁ�0�
k�X�	�LM��y�����>_ߨ����ЄR����
�e��|Rj����&��$0s�tW�&�j��m��nRs:��r�LHծ�Y;�ە��嶯�$��K���W��<���j�u4Ic�kf�{�3w��&�C���7�R��^8~1�g3sk�'�|B%h�ȑG0��q�qǝ�V��4�}��+������O��[�Lf��k��l�4��{���C����3����̜���`�|�pMYsG]Q�lI�6�?�.�n�X�������5���������\>?/r`�G����(��gO�7�u����m�����Z��#�q�����k���u�)�\O̞���zu���ʯ��c�f`f�n��������4�)~;QO�Y�H�������a�{x�����j�b�w�h.�L�l���tƳ���r�յ�d.E���Li6���j��*ab"D��B5�����ܘ��f͸C����bo��]���u��]�Q�������I
C^�1ӨS0�a���ݠ�1�fn�R��x2I����1-�ssJd���M��i�}�/����p�hd�k���u�d�[��ž�!�nfl
'Ѱx�obm�a�h�0vw������h�z,lrl�15���9������0MN�X<��d%��\�����u���q����*ꎘ[CS��b�k�̅�1�m:{!˝U�U���]l���O?��4]��{>�'�oO.��l���j��ί�Mڧӟ,̬-�~[]G����Ge��G_���y�2�?��#�E��$
���[��C���]	3��!%�}cS4>ee�3Z��1�¢��;u*mw0���v3�W�c�n�fFd(�A��0f�V�����=�2<L��ƱC��[b$˶�ν�̪̪ꮪ��.=�_?��'=�R
H$�d&0@H1`���g�d!fL� F���-Yj$�������]]���*+#�q9k���Dd78����7"�笳�^K�{b׌yԝu���IxO��,��a�π�#4�m�a��'ah0A�
,M#N,��E�;��NCu��`߶� 6v�j��I.F��h@Lm�Le�G���!��M3,�:&5�P@���a���@���Ɓq�
�T��$ZG3�31��:h��Qb���:#x3���^Th�{�&�e΀�� F�s3X'�fX7�5��ZZz�h�,���Izj�P�1@'��2a�j����@NzV���{2�����f����#�~��nA+k
.h��Wf�쭛�:[7c4`��8�P�h�f�|x����7L��t⅛	���_����9	���!�bG,���F���W3Z1�඲՛n6ȟ�ޙ��rÉ��Jnvȡ�쌑7�֞b��ж8Ovf7�+n�,N��Ei�@:�LˀZ�mw��
Anڼ��7���X5�󰪾Zk'`�n�c�=EG#t�k^�~ڇݡÁ��rt�6�+V1���n-TO@�H���Yqb�mʟ��&&�c�75V1w��Qdҳ�?03��	���e�:|k���X�Qk��,����q7���Y-SX���oE�}Ke�"�����b׌��+E
�
��sh�25L��dG�,�c�_rҜ����g�����j;�=��Dp3��vi訋��H��q�G��<~V�؆V0Ϧ�������� o�`�,���|=T��g�i�*΋@�|`a��r~�HM�,Fd��8��T�0[f�2�ľ�P*��
��6l��#Y;�m��� a�P�|Uϒ�5�d �#�!�����j1�@���ae��j�6�T��fȖc�d��DB��fLf�Y4A
�1���ce�f�8������Z�`Ũ�rg"��ۣ �U^"����7�|C�s�K��7��5�c7��֌�!�8�/�$1�W�P#�Y�_Tqp4.��v��M�~8�WX������	X��]�����Y��\'���n(�4���h6͘vz����.��4�_B.���q܎�`de:���u�s�ٚd���_���7G�p�{�����?(;�̨
���3��X���6#0ejF6��
!ӚK3��U3�ζ�0��{,����f��"$hq��a�* �n��)7��y���q�=�u��RHʚ�uD�#�h��'x��E���04�G�Bj��JX�uh%��D�+��#�R��z+�c���}��'bٻ[�ǍG�������h}����/�����-��❚t~4���<��]� |�nG���404��y쯭�f#�I�<L���~�s���w�L�Pͽ��X[��R:F����� ۥ��AK��l���<6F�nU�j��"l
$~}�[�3��9�~-���Zrg�	�@�Y�
���w:�Ј�
�j'&2��8�'^�@��]�ѭIm�<v�ほ�jNZ�+�fu/�&�6��|�7ê��x��2o�3Z��vgY��v�Kf�����26�$C�ak%P��e6�Έ�&��a��.�j���G�,*xԴb802���+�k���ݛ|
�Sɿѹ�"�=�54�T�MdhD���#Ƞ�g�z,ˮ$3}l�:�.}e`:���1@����7�`�4l����S�܆��T�dgI�f�R�\j�Y���T�y�^���ett�Bn=_W�kc�mS��l�Ӛ��u4Y���[���7�=#鬩6]Y���4샢~�k۽)�fR0�͙��H������trf1q2	��u��W�R��vf$��A��|tR�:kp:{i7�G�G�}m��Xp-�f���Y�����`��L�;O F�c�6���F�ŕ���rv�@�pI�[u3�l�����v-�;�P��^��ȹ0��njV_��:4L�����Ͱ>��3`d`�U��C\�v���1ݜ77��,o�Xت��oy�]�����/���l����u�}N7�j���ǀ6_u�y㉣����&�{7;�7o��iVc�
_��b,��I�Lq���?-�
���3�y�v3�b)���+�3��@רq����	��:��`�kS��J�-��	�z��*_���`�i��)�UU^o}-#�iKYC#9c�'ɺ���,`���4���q�e�M���盧t�lXKú��|

�QA0���=w�,	�~@�{1�Y;�{����>���:�����㬛�O`���;+�O��#��[�Ͼ��y�����g`jB`�l�G���`�)-���N�z}U?�������z�˟k֋��H�vݬ�;�}{@�:^��c�߽���
�#����?��?��=3�L���e�}��
v��e�n��g�z���a5�;٪b_vif]����4�I�P_���3ϯ�jW���o/"+�W��l���o;��v�&M����G��zo ,E-#8����&v��`'"����L�:i
k��E�<�}#�v���p��awm��̲�R�#��7>l?�p�Ń[n���L��9�� ���ŒP�?>WjR��P+Cô֋�of���׆ۙ5s{
�7����.g%j��r�\(NP\��tı��$���.3� ���5�s����bff||`�!�f[)��G_�1�J�B}/�\ĵś���l���ɼƶ�F.������&�Ix���C|^�e���Ba
T�vU$������y�������͗7h4����Jn�*��RH"�Lo�.�qkoW�Q��f2lX�y��i'E�|ظ�Lٜ�3g��,w���[vZ�3� @����^8��`�P!���zn��̜�Z���p>P{�3��8<�����l�!w�K7�;��+�,^�
�� E:����g�`�~�������S�8�jf��y�q�0|_rg�k�H�О���؈�,h>M2��,���Z9�~aշ�'�e��,|?�*qy��/!����t8�'_=
�0�Z����k�P�Q�m�o�yh7] �v6�K4�+��e�&;fm/���,���C
H�3��Ο	����eg�y�nzT�~�g߶A�Cq�~M5�]�P6Ȟ��r`&�����8su9+�"�i�)y}!���n�~�O;5��=/t�L;�K@ް�
`B2�ZA?�`hC��|_��� ��h�����jN�b[�^�Ng��_֯�`+��Y��>@r63� ������k4���]�.2jf���U�uKC̣��
�Z^�ɶ1�$�>40^E��zz-�;��g}Gd�\�.��z��!�������f��`v�a�^��,p�\�����y�Y=@_��?
�~�t�!���WMe@��įu}u��wP�[7��o4g�o��ŗR�N>��A�4��*�+K�c][�7ȟ�Պ�e`Xb�o7��Ù`���7�QYp#fF�2gd�@rh̸�7�8���9��I\��3�������2)̝��@&yO���ª9�.ؗt�v���=�6�N��`�f;�,�9C�w��5j���74u2k�l
��I��jVU�EP��ق��jF%DSB��>yC���R�	�� �Km�e�n��"�N�3�I�2^P�?����Y��R�@W3������מ�	[��L�i�-�ش}aw26�8l��b¡�i��L�֌@�j�2g�*�M04��vn��0V8��G�Jf��L040��ː)g2(�dh�1��@��%p�3pD�:
D8c��0M213�`[f��`]Z��E����Ώ]c�dJ�f7
�F��.23�vfz�̻	ش��AM��D0Á����=��UG��fp�*�yP0C�[4�f�X�{��`��8�����|���Ɣ$�18��@G�tFF&�ʺ/��ޙ@�,(˓���"3�@�����&i���g�6x53?p�U���G��ufin������r��5�h��!x�|�@��\k��L@��23HS��^T���ز7�,
-��X~����j��3]��с<�m!�|e�1\S�4m�,��O�7��x?����l�\J�f	h�� M�����{�u+��Ƶ�onf�i�E�s=��Զ��'a�B�՞e9�Ķy���d�y�@��Z����-�3�,����;�����8s��Gxg3�e>�j�����r����3� #�%'�uVf�jc��9�����	��v�BRn���/�,!���1@Ij��S��w�]�&�<�ДM����������h���?����ޭ�e�y�ds�,�{-�]��ɪZ�W���N�G������n������n6����o`+�������f.����Ϧ��xɔN��_?�g�`>X�a�Y8ʁ1*���;C��jU�n?SI�t���v�dxVfU}C%y�9��=�56¸��Ƅ ,Ξ�Y�A�RCUW������b�\U�94Iv6HHn�΁��|��R3>�/�~:�$;��]��;Ф���
�G( PSf�X��2P���0�4M�i�<4 D��݆r����%ж��!�!Cき�D��0�6�t�R��~�Z�]�o��E����M3�M7r����X�R'��ˡܙ�kw�<��tyfg�[N�,#����{7��Σ!���~'�֦�BJ ��G;�(����	��\)2���ݲ�m��#�� ��w;�F���q`�w(Z����%əIG�v�'A�Ӳo.Ț���@��-f�q#ϭ��=eg��5���8�:�0���J��=��H��
�%�fcc�i�nv�#�@Vvj��%#s2x�E�����~�Le�y+�ʊ��U3�Ge6#���$f�U�o��2}C��^x��|�"����C��ci����%4���c���}�4.}��9�ψ�����~��Y��)�e��6�p�2��ȼoV�?V����1�;�p�)�ƀ�[���q�/��G3�<f"��_�63o	��V�E�L>oF+C�Y��샋Z@�!�Yk��,☋8q�n��cJ��P�yX>+���2��g���@���6c�����������q��n�`�e+'Lef\�1� �usa����,�b͔Q�3�{��04�K�&!�x�A�[yf�K�p��z��Ж�a��oe����e�%���3�k��;�����I���:�N(���$&��4��L�$gHF��]
�;������챹>��^7p�E@���j�Q|#�|V�E���zU��
����uw���W?�mޜ�W����B�yov�G�ӫ#�в�>t��~�8H��n��/����ٞn�^�&	0,��rBfH ���6��FR��~���1�e�Rnټ�/5���4A�5�Jr��e��ef�I$��~k_7���Y]����Ŏ%�/a����2aJ:���V+c�Ң$�'9��Ms�k���e���a����.�fd52)Xs(�����ФpM}l���{X��̾�,$����!�Yv2��7w'fI���ڙ־4z�9)Z	nRK�ؙD��`|��f���:.�io��ϸ�����D���m[f�p4J^ÀG�x���`���1_GCFF$fE�fjW�����Ocg0"f&���v�nf`l��ʠ)ef���?�`Fkf�����ۖ�3e{��f�´g�AGG}Mҽ��?R&I�<�de"�y3?��v���f�N�D}��
h<�A��B�{��ٗ�`�6���h��x�k ��f���1�r~3;*#B�w�:�G�cZ�>����^�'AS����7
����30s�23q�:����gVTcu4��<�L��&3����Ȕ�$nճ+�4�'
LJ��vF���=u���W;�u�3~_����6�� DT�۟1kMA�yР��)��$~瘉���n!7Ӗ��5�����k���q��F�'��B�xd�Gڇ� X����㜵b�6��4	���_/7������ۼL9�Y���� ��3�;�����@�C-1�!�0�<�71v�2[��!w�w�*�kh�^kO��	{�R.�뛦k`�
��=0|e��u�z�a�&@�޺'�[��m>T���~{54�DL3X�E�$0���TH0of�T����Y4�!cS�����-|�L�SQV�.�x�Yz��y�c�w�..@���#Gcm�(�~���j�H�q�Ob�m ��j�YjH{|ݦ����zY��w�$�3�o�*�g�W�t��7ߩ��ߋ|�w��ݪټ�T��Ct��,^��M�/D���~�����evt��J�2B�����
Z�g�`��P

�jZ��]�}����Ep�Y���ž�L,���!�I�3���/6ඬ�a3[eh2�r�fJ�����f�"t�E~�Br�Ot	�3�g���C}?[&p�Y�W����,[���>�����80����Y]e��|/\Ӈ��Y�	
0Jtլ�V-M��/k�)t�܌lM�9�/
�7���~�L\���Pm#�^�(��t�b����`hh��XK�S����6������������ek�� .��L������x`�_�ﴔ'���[iz�e?�
��lI�q_�*�fAo�-�&���.�L��t��u3,��v3h�R䴘_:�Yjg>8����Or�cL˼L�VpfQ;	��}Ǐ5xܗW3s]@Ρ�m��i���<k)T"�y�m9��� ��G��҄��MZ+�;ؾ��pc�Hd&b瞒3�d�:�����R~�dhO�����=�&�VF��$��O?���ߖ�9��L�^|ZAfV��C��@�)���7M�
��y�߹����.��IS3x䷱����� N����Q��JCב�yx�9[+P���~�~�]g�M��3c�h���Z�{�P	l��,�U@�e��ly@j*�W��gPs�v�מ4��k����q�7\�.�!�:1����έ�Rk}!�N�5Q�n'0�3�{�������,��\);C�^�;<� U�Mf�n1��º����_�eC��<�W�3Â�A#K��D@4��d���o��ll��o3Ү�A@n��1��
�z�#��8���^H-��o�Af�t���0+i8/��4쌍RXzm���6q?��g�H�Z�6%�r��a�|H��(OVa�s�v�6���u}�N����0��d�
_\|��볿�w��E���0̤}	7��>QF������Z,���,��L1K91��Ė���}w�$�'[�a�4�@f���c�23?����@M�x�'K�\�}��Y�p���p8��X��\���]�h�u�'(���������bF���Ԭ�Є��%�R'c�
�(9��`f�^~�hӡZ�p��w7��~fh�;����'k?�8�YS�M��q,Lݵ��:O��E(��h�`&I���
_�S2���g\O ��Jg4ee44�t5+n
�\Ǜ�Q�������S68��L�����i�d�Lv@y�gj�
��!�)%g�#f��c��Pb&͆6E�n3�=L�!�P�A����K���4%f���~&�ɘÙ�0��);J4:��L
CvF\����f_�<�&����7Y�&�Y�Q�:�43&�R�$9��)~��f��8�+/>Y���.����'�p��u:o���v`�9��Ҩ�WР%u�'����
rm
��T;�[��Pb��+�j��'м���	���dh�Ԭ|��=��}=u�s��L>�'Yb�v63���p�Cۓ��\7Ӯ���gg�ƈ��x��l �E���A>����)�n&Td�3��:�&3�!c���J������̔
8o��y{�����H�i=�a�}A�9:�A�̓���h�u�?i2bh0� �1Up������F��f��np�;�u�:�Wڵ���Hs�G�/�m�-t��gi�708�
�34��R�=yO,�|�=�k�K� y��P-���y���N/Co��42p�:��2w�!�u�
FG��Q����fR�S�����`dJf�j5	R���h*pnbh*���f��ʖ��^%�m]��.�1 ��*y�B��hש�`V�����`�~�x�~�ruiNf�.Ks�ϙ]��a�;yP��p���C��@�\�it����a.���������V6P��u4D@��j��q��i�e�p������2]ai����I��I�'5m�Im��]�'P������x�50�/lR
�6ۄo����Af�4k|q!�aO��n y3x'D���.�ma�8�,��Lw�/���{Ȯ��
�l�vW�����j�
�.���������P4�
��|�Ac�&��@g��lB��>b`ǎ�
xn3W�z�ی�E/��Uw[�"$�G�|����36q��WR�{�)Q��Ͱ_5׳��n�P_��7}k	�"u9��^M���sq� LS����E0���<�ts�3�}>��O���`4HB8q��Zm$ds�X�1>��������EC�$Xs�
��L
�g��~�׋?����~bg4/�/��z�a���W�z��>���.r���Od�0Ts%��K���;���=3:V��E̬Qh��y�)֑�N�����l6]l��7�- T7n�_�L�ٛ�PF܎�8�0T��Ps�?��LI�6�X�G�	�sh$�{/����Eș�+ҿ�� 8/~1W�s��/�g��[!{�B�4@�-Ɓ�w�:T�V�|��o�㈲ek��+⚣���	D@,:��̖p��y��|իI�@M$�#�p}k��gؐ9#�A��B�/��Hv��/syu~��;v�WoߞȈ�����Jb�.��˩q�!3hn+C��G�Ü����Rr����v����LΞU?���$Xg
�Ӌ/%s�7	
)_��Q��Z���=�|��M
�L!�ր=�#���P=����a���k֌�G�5���,��s��!o��s�i>��&;�P�l�����C��D�5��#`=�}Ů�@�e��(�ͷ`dΚ���fϜI
:�w.Κ�������(��?�@���~�f�%{·:���(��L��u5���'�;3�ܙ�ك94w���W��`�y;���W�fַ���Br�&	�[�w|n�3�c9��h&�#��pqE�,΋{G�bG<���Rri��!��`p@�lC�CMz�m�;��MɈ��+��ȡ��%�F�J�Y!Ts;����\k��5u�˯bc��]c(1�̙�� �fm�XoB��y�ҹk~��3�m�ά�.�����P���!;@�i�k(2f��_���r�1������j�5L2i�/�r�_-5{pޏ��8N��μ�<L�\f�d��$�O�q��|�j�^�8p����>����:nחyԆ"sf1�E#H�I�y�=q'^��j:��FB�{)�9k�Ľv�ՀO���긍�����.s&��#�0!���I��m�v�b�'TH!�+^n�Ga��}_�#���n$�3~ϽuZț"��5���Zr����S��>[W`ga�Yҍ}��$�`�W�E��B�YV���~�.��u����)�7�&XS�+�2��~/3�>�kn�O�?t�y�����!�n����N���4�vu���P7�Z��WH�kA~ՠ_>��3��=��9%���@�����7�wX�ªl�2��E�=���\�\�����j����I�{I�"��p����A#��V����E]MS�a���f��O��
��:/�x|%eh�j��.�2�U�ƒ�SZl�,���zW�W?Cc��N�s�?���}��L���4Akh0/�F	J-�
f%KC��͖��,�ZM�Ԉ��yڔ.g\����	�0�*oh-�F=���:��q5��zE�vQC�)e�Ȕ54ْYGCB���6�L��3M�M�λ����53-�f��Im�ʶ�ґn��Wh�3h�E�0@�юͥ�j*�p����4Ӑ�yo߼��+Pvƚ��Zn�W��j9��̙\G��f��^6(rh޸B[_>㙘r�4=n��8�zfry,Y6���(���8#��ٗ�ɧ�X�LȼL�:�@{�ڳ3�	�u1��
X3C�)�'�Z�p���H˲�Uۚ�dh|;
�,�V}��2��5o
��/���K�,篰o�:|Z������fm�Mz&<�|�kc���=����8���j���4�8��\���>������K3E(�g|&Mr�+l�K3��Ȇa�<d��K))�A�L�~+��njIf���;Yf�L]j���9Ռ9�r91
V��gl�$=s�Qo�9qW��eshI�X{���^lu]:��.�d��,�p<s�34!Wψ ��ɠ,M��%�3���e#��Y6g�&��ZN�f0�O�&�j��FjhZ��m�fZ9���Oi��f��f���1ZRG�QԜ��
��Z�9��r���8�շ��q�F#S���̡��̜�,��I�1����ڙ��c
�}�3dg2��u�&+#L
̥�/��>D�c�`�eU�5]��rf�ʘ,�W��}]F~5UEi>������Ed���0�u=�{����y2��l�؝�
Ng��D_s��2q6��^W�i�������Yn&�����4�V��'	Jҍ򂃰���5�Ӻ���H�7�!E!ߋ`N�]C�df���Z�dيt�A����2$xoPUgY�M�LH:���p��İ^&����|��qЙ�uJ�3gp�`��I��F��ʒ|���o�E��d�`&�u��,]Z�m�:�������u�=R	�<���j���E3�u!�iV��T�?R cu3>�s����}w�4r/�9��l�G�P�p�z��e�lj/�G�w۹3(�L���6�
Z�N�qa�Iw3>��}�7�M�m�}w�M3���d�VB;z���
e��P��2�
d��:{$����-�F�4�R�^��r:�̙�*[a��P��1:^�}��P6�N:q��2��`$<�F�N��7��L�1J΢�#�������!�������{��@��tns.I�(�]��m+8��k]�:ڬ���8�L�`ˠ�qC�|�	�S	�?R0Ӫ�h)�`�=�4)O�=�\��XM
����n�y��aۉ)��?�z{/S�L�hdʼ�X�>�'��K��$��&�h��8l�;�Slz��H��;�u����QPi�������W��	;c�K>n�������%�,�9�8F��

��3X���3��yY�G�$���8�����~�I��8O�}�9{���3�v�R3p^�����`r2��`�zH΂eb�5ʬ�Ѽ˙�K2��'��,��<���\{�Z���fdy�v6�V�8[{���R��ͬ��m�Ĉƍ�Ic[�=�
��1@G��7�9m-{��B)���H�l~��N�?�?����?��6���_gcf��@���7�晌��<@
�1�Oqm�}��[�Y5�a8̄o�hf
M�8��C`}=�-��ܿV�/ȴ�>�y�a�3X�5��q�|�u۵�_��&�)��2Ԝ��l�������S���|ժ~J���+���DŃ�
�YG��bF̠��F�&�Ͽt�"�N��[$�����/�ͳ\䣔�k�~��"���]G��@=�c�BD�r#�xivUhLdzq��V-#�]=5��f+��l�{��#D�L�m��}�3��3���O�^O�j�S8  ���&]�bx?򒨓�*�G�M�g�a���{An��l�T!dg dp
��z���gFTlj���o��'�v׋&u[�T�f��V�h'��Q�<�O�udc��1�=�ʹ%)XP�x�R���x�ȅb�\yF�u�]�Hj�����QvN�����&�#p8��M�B��^Fv�l/���O����p⏣ұH9��I��]�<
V͝x@���ywV���
�弧�L+�-E`J�����Cn6�)�4p�~$h�Fi��A��W��{:*�������"t7�Vp�@C�$5K��	�B:"z�j��A��O�8�$P�%�n������4����x����z!���C�1�)3�
�����6\c�r����r3�c:Zh�DdiV��� <o��~Ek�������L�猬f�W�f��mD�5�ڻ� �Y�f"������8v����X7�}��z���v� á�Hp>��{=~QA^�b�"I�PGs=��ݵ�ʡ#y<=�ٺ3	��z��Dz�|��
O�WFn9�V�i'C�t�@/k��ClN Y:�*7��,�=������Tn�h��HN&�Q�΢�{V��.��+H�� ?�;�T�ء��SȺ��|<L?ұ��ͽ
�3���27��q�y�p )CO_�gF���$~��|�������a��u}n<��4yA{]i���%N��{��`_:�+�W�fT^��}�1.�qa~F0�_dg�HϞ1�>�3��a:�����ܖz2|���6��Yv���r�L
�RG��D~�?���*|�g��q8Ϊ�O��X���ዪ��1�8.OwځE�0�s����8�!�<�ߑy���1/�G�
!�|3}YAbvyqq��5O���[�*�����r�F6ˑ��z��G�
��.dgu%�23�I)�|��]Ba�Y�F��f���N�K_��5�7ە�_�|�u9r铭y#:٦�׿�3���7�--B`�z��;���B��k�"�F��&F���ۜ��f(/�DXd�;����UV,�̓�^��µ۶=�{%�3||����u�)� �~�m�PݫDz5�e����Y=�� Sv��eg3ȭ�v�Ô�CzV��}]n﹘��Y�ɋ��$~���p��p�F��Z��7;�P���H�߷����6K�n��KT��V��H�(�ϯV�8 }ad"hy�m��>��s��H�}#4ȗp�H�.��zIڏ�~Y'�,=�;�ꦲ-)��D�5D	F�uW��g,�;��g���&��s�� N���=��|K�:*3�y�'�C�m�V�j�:�n*�1�7�d��� :�N���-R�#�>I{&����/
��x~��L�g��IY���.�
�c'�+R3�۷�p;�Ҕتx_�sп�b+-���7�HbPk�R3���䬛�ف��:y	�l{�h�P����t����3�S�5Wl�+;��_�� ��c��a������@�[t�kA�|/o ��kؙ#jh����?c�D˥�k٪Y;�_�	��Lԣ��o����޸�������N�\o�,߇K��(��l�m�.g��_v�,��M}�k)�
�13��(зd݌�<�8�M'ޭfq�'��yd�l���ˢ�m�ۙ���v�]�\`���;i������0�E�f@�d��'&�g�^'�i6
��6�N�Ғm��+4��Ѯ�m����l�ك:y�����Bt�"WSO0XS
Y�=��hݬ�3:���4�˾yW!�^���Nf̗Iž�Ȥ,��~Y����5SZ���3.�w�W_�j����`��,�r�}K����`h��S�i�&�����Jw`�;�w:+�J����[��G�n���@����ƻ����\���Y���������eY*5S�t���k�F��{{�G�e���9�3h`� ��L��gq���%s3/ms�7�wb�t:k[6�ә24��esi �
�U(�o/9�� 4�ۆ��c�*����m��r��8��g��<Wv呂M��`D��f"Y��7�А��1�?/�M5�䭛}��$�Om^��|�]	��W�@D���:�s9U0�Y^��2�JS4:,Rn��}�w�%�Lr��Ʃ.���s�e�1��t9�!�>b�!�&-�ɺ��2=cDr�/�-���Ӳn9�94����6u]�Q^j�e����h�<��
l��GζӁܫ����̮�^�Iʗ��tH��ͦ�t5���$�إ�]����^����d��Z$WU;�N����iV�)ZZY4j�423�o�e�Ϻ�U�v���<���
�㙼�M�ضe4��ƃ�o��b�� Ə���6E���]s)�b�I^m�Fֻ����gi@0�c���%�>ݐu/tq���vZ3���Z*؇c�vS+�p�f4�3h7�ļu31`X<��CVPK!�57f�21�W�o��wTX��5���е���˱!<�%�7�� ̌y���4�O8`��0�B��5�{�%L���LHM��hFO��,�KH�t^�Ѓ��,M%f�}�XF��HSqgAOPb_/C�V��({��|�!��F-3�Y�oV/P��K	����r.l�1����m�s�m��d�a�i�Q݁3ۋ�F�g�.��zr��i �	���g������efTc25����&QK� ���{
�]�,��?�O�)��Sw�����I%h1�j�|)�3�����S���s�O3�y>F}����ɥJB��q����PK�������Ȕ���A:0�t�� ����m����@^0��ݗ���
h�Ľ̝54�cp�q�zْ�/_�܋������`G��&:��"$�k#${��F*I�\dH��<鵁�ǜ������c]*��5�9�������ٌ�dЦ����匵*�H�Z�2�x[e1��<�4O��В}�{�����6�_9vj&1#��O���m©����)x�`*�L�=n�����f���JdzN�w,��5�j���^yA+�%d�����53���o���l��2�=��ܭ+��z!���38�yL�c[���ծA�f���I����S`H����y8�P�K,<w� �Q��u$���z�>�1�1���A��
�p ćkRB6N3�s~s軻��2`^�5Su8SY.��4�������ۖY~9IZ��))��?�Xᦖ�|��8�aө��!�Y�ڙ��֤����v$�7~@�7����Zjs\vۀv�G�;:�u4�7#0���"){�2ɐ�1����1��uT�=<$�:S�ly�g�������!��w��~�=\�J�"cVs��A�J�G�!vX�f�i׼о���t�������Ldf�5	b���7�a�
D���~��F
d���t�B�^��2�a�t@F#N�(�b�#��X�r��Åis���8�����r,Kq6��e3����h)��/(O��ߧ^��N���&�:�y�ڕ���w��4yC���W��h�����@-E�K��@��8&4�1V�G4�i@S
�N�|9��nD���7�1����H�uP��TB3.;B!��I�:ؗF��T<6p�
h2A����[n��hW	���������e����7
hʍ|���t7�G����f�tv8�Ip�|��QE�F]4��ɂ�D�'.)йI�H�b�~f+� �N\�ܕ����3Jvu��B�L���D���˙�gv��d�D:g�^��D�ҿ�F���"f���߭}x��F�f��AA�љ#���3v
` �еl��,p[���;����nUѕ�hu7B��:���^x�f��aC04�����
Z�cB�bA�W�3��D��
���Ӭ�g]
tS`�m�Y���le�qto�9�Y��p*�AY�A:i����m�D>	<!%O!Ҙ�0�'����g	�m��n�XH͎���W3�q�1�v�3 �|v9UJt>��C�
���N�����He%�\���*6G*~0�zH�6�ߍ���9Z��,�]�
�.H�H��,?C�V�Y����u=��B��8>�#)���f�C-���u')���ݤZwr16efӸ?��}ae���^=�Nfj�eNѹ��Hj���/	6�oœav"l�Z�0�wUbv����y�^�51t7ܽ�df�:�K{���Ed&��*H�l V�3���3�f�`=� A;}���t�4�~�^}p/\�1\v�8OI�g?��<V�38��#0��Dh~.��S]��$h?R�ǐ2G0t	ہ0���Hʰ,Nf!��(����q7��ƿ}�h����iqIkK��?
\�uIo���`���Ov�~����,�C]9f�,��M�('�h����In�N�gf�xp8�?�pAn6�u_��v�Ab61�\ͪ�!��^����sac�l��<^����p:� 1C'n�`�^ڠ�K=7p�@bP����p.�d8͎�2�if��ի�;���xz��:�{g��e86��t��l�&S��E�!ɅtR��i������כ�J�+�:"ڸL��,�
c����6��	Qc�fp5õ�}3��� ���-c�g끸�-�����l�2��p7��m\�{&C��3N�j��Q�\�{�̈́�)�" q����p{��yjP%�3�[T�;�q�u��+���J�UPN�E�N<��x%B��{�$�A��H��h��
F�
�b�?��q��b&N���kAn��Tܧŭ�cE�����㥭����.�'���Ћ���Z����Ŏo�O�>$�P��_���03��1/R�ѠȝA����@n?J%ɽ�~�ۭ��A��1�Ls�M�>ȴ?�r����RF�YH�f;̮��`kN^�ʱ������%[��y���fl0��N�7��Rg8���q]�Y��g�+5�~��2�:�u��d�AO�F��{T%�]:�aJP��%�nӁ{�N���y���5W��.�#
�4w��2l����^b.�z|5qZ�}����t9��YՋ��`�z���dg��[=s��:���j�=dy��u��(�$�&�.�;_'��
H�!	TKs�̤� �O�j@4'l	%_��_"��:�Y�n������l�%eR�_�k� Pag��J�!���ڄ��hk:�۰`�M�i�P���6~`2c3�����m���d��ß0ş�����P��a�މ�fd_f�'#^f6�GTN��.!��0t�3)X�@
��ɳ�Q@|�j�F���ɣF.�+��ƹ�H���T^��i�E��Y���^;�Et�q�b���`͠L
���i��DTc��La�W�v^2pR��C\�A#!�-v�Ķ�BC<f�̬f*I�L��p7��d��2���_W"7�:���:�F,YT�63y�Y��g��=60��A��a��1�@:'Z��\��0Y�/���M����۝\�0A���1H΂�̓�,.O�uE��1�(��A�qD[G�Ѵ��4l^j�k��c*f6�.��@�nh����=ߊ�1�B���{��zt^�P���I���;��	�T�����`h��|�l��2Vӓ�	��{sjl�g�9���h �Mn����/-H�?����t&S�����j7�/��E"��	�i�z2:`���W�
O�+|gx<��ҽ�,@�	-�̤f�Mc(*�3u�i�~�;-"��ʐ��Wz����̠�4���a�����k��",Vrh�P��㝡����왐�P��+��5��Bo��積Q��L�t�ujgl(�-��g�)�g�n̠��uƇkjVdj����
�0;��fl1@3��ܒuW�?��)�n�:���,CI��l�贲�:�Ub׏�⿶��x�=�����>r��i&�tf������-WÒ:�q�̸�����:t�I���l�$�G��s�(7�Y�()��F%g�}J��pK���5Ɖ�Q�����0��협�����L�&�kf35C�>��]�6������eW������v��<ϕpݼx��i���}څ{y�4\`[ak�lm�f�/��6�c�).�1O����=I�o����ñ(��,6�H�me@r����[ˈ_�r���|���ef�����\�O���R��f�<���h.����Mr&��T����Ի��[;��;W�7}вM@��.
@Tή�F�o�XD[J��/T�:���.cK?�B��+��V;#u3.�ջ&3���w��9K�@�2����R;�z�x7W�
+4�|��e��ו6͇�|N�tQ5�
DO`:{��j�\�����w�u@�ә��6��(�H�&�ka����,JX�βY�y+|+��_(�di��62��\�)�z��/���j�jf��f�dg�e���d�i7���լ��r��<���\U�ĺ�&����j�>���ft5��r��lm�f4������+�O�nC:^��[��q���p��c֮�׏��굛��.�kh:?:�m?��s�
#v�ե9xɌ��a���~��J�f�34X~�
S��=�棻uu��h̑�A������?���`Si%g��~=͹�?�J�A����s�v�ޮ�᚞�$��Ի�Qv�e��
*�Ė����<4��<`�>�Z���ɓ���i 	�}'`j��,��������K�7��Y��?(^u4��}g�E�gV�s|�(Y5�ԼM�[L�G�%f�_���cZ�kI݌�g�<�co=��4�e��b�k&e�&f�	�y�Ф�WǦN�zzkf������>D�f%sgq�E��5� ����|���,���>D���N�0dfJ�f������r�L�i�v��ƪ�S��h�/�3�����—'�YJ�����<>Ϥ� е�_��kiX'��[���@���(���h]g��T�M��yc|K	|r�O���kgj�jq�k�`�D�׾
5�6(Kv�5�{��x��_����� s���Һ�!�"���h|`���y�C�f�>4c����V[��i���z��es*��-�[a��n&� ��7K�	T�FkvT����,�*�5,X�(y�<>�M{.kgĮ�@yK.�Y&fF�j�~��&�us�l����r�˿�������r�ڭ�V����q�f)'?��hU�	�f����8`��&n�{��Y6�W��e�&�4fu'(�u�=����I�9 2ض��M<�p�K���1��@��5��p������R�f�g��}���$�ֈH̍r���p�2�a�Rh7�u���r��8E�LI�6R�C
�G��Ō�x����!S��#+@ԋ'ӊqA�kgf���F�kd6��Q@2S�R&f"7��lϲ����P�lJfFڕZ7�zS�mĞYoh���=���庛��3j˜�����3gľ9�4^�4Y�ƛ=�'��5�Y8�z��B#��Mfi�W?fD�~��b`�����)X��vv�j�4mp�MG�Q�|�ش��hǏ��u�`&��@c��,$㋡3h�!�
���t+��A9�
�<`
���G��ܭ�u(&xy�`��m��`�-8�@�d1��t֋�?jW��'y�O>�T��x�Ԙ�$�����Nؑ�'6�k-˯D��h>VP2�y‡�(�CC����i����S0�,�i���!��e3�i=Ч�
����?3�yN�����c� ����X��k!\��A)SC��ϕ�	A5��wf��Ԍ2}�5�Ӄ�3����cV�B��BH*1��2��f�V�6��_�`j��13F��-or=�,�u���l�su�Ý��`�f�,�R�\W��,��u[w�ہ��k�]T�n��3�/��&Iau�%�̋L-e���X�u�h^�m.��=�h0X$"ѓ�Ĉۯ,���-R�
�@�
<�>��:�I�ɤ�cd��1	-c�V挪x�
�<0�m�4��fTkG�G0�� ��X1��1�p��Y7�ת�H�0f�LKgQY80�Y�pP	��dfo�D���?ơ�h��0d�
ζ�
0#۬YK<��^�n�1��0T�����Yz�
@���4�X�y��Q5Π3�F�r���x�\{��S��
.�]�����#T�1!K�v͵H�F�Q���|l`���%�Zo��"QH�S��&��M0\���0�227dK��k��MfF֓�����l�vmvQ�gZ�xl�f�	jmE6fe�Oe`�iV�&���_���?����L���d��C�>8_شl4�`M"�E(�q���
&=CAS��"�}�5��Lem@tP�i�Ĵڼ���剤�J�fy�8�ݕ�{�ő�@䔛)���K8t��&O}R��vu�\�p�
�8pr�~�G
�,��Z�C2a+�]�{������#��y�K���>jq0��m�����#�����:�>��9dS��6���5�fA���f.�Ș�M8�7���{��{:Z�E���<���a����<�KT�n�2XS�p�6�3d��	ȳ3��Vr�su��Y�Y0-�[.f��M�mVkz9�|?*,-33򳸬�i ;#;���V�&����#۾S�X�=7��2Eg�2��dGoW��6``N7�  Ɏ�υ�75����nh���d�`h�ь�z�+9�qY6� K���Nc�,i5��=
b��Ȣ�����Ҷ�Mr>�~��}��a5t0�(QN���WK��;rnq�;f�&~�K�m:��N=M�)C4-@�N���0�P��PV�9��l��@/�=�$i��a;�ڗ]��glZ�0Zn|S���4'�h�҈��ad}��ۮդ[�Ͷ�f^y'3,xCJ�G��6��3���4;=��n��z�-�'y͆���H��P3�+��E�܅��?p��
���+g�΂7CNb־lj-�{b���@'���쉗~�Q&��݃���6ۦTj�,M���2C�n�tf��\%a����k�6f��@ق"�B��~��SG��f�<����Ak��(�3��q����	[ 3�"���U�v.}��=t
"�J�C��;�db���`P��ؙ=��ؿF�G��V�j�qRZ٪�)�������ܟ׌����T��AHg��1���%��!�b�������^ؠG�m���,|��o@���c/ś3�_QIEND�B`�PK���\=j%�M*M*)assets/images/settings/dashboard-logo.svgnu�[���<svg width="101" height="101" viewBox="0 0 101 101" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<mask id="mask0_114_16276" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="101" height="101">
<rect width="101" height="101" fill="url(#pattern0_114_16276)"/>
</mask>
<g mask="url(#mask0_114_16276)">
<path d="M0 0H95.118V101H0V0Z" fill="#9CA3AF"/>
</g>
<defs>
<pattern id="pattern0_114_16276" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_114_16276" transform="scale(0.002)"/>
</pattern>
<image id="image0_114_16276" width="500" height="500" xlink:href="data:image/png;base64,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"/>
</defs>
</svg>
PK���\��S�]],assets/images/settings/starter-templates.svgnu�[���<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_539_3163)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.9016 1.63934H4.09835C2.74029 1.63934 1.63934 2.74029 1.63934 4.09835V15.9016C1.63934 17.2597 2.74029 18.3606 4.09835 18.3606H15.9016C17.2597 18.3606 18.3606 17.2597 18.3606 15.9016V4.09835C18.3606 2.74029 17.2597 1.63934 15.9016 1.63934ZM4.09835 0C1.8349 0 0 1.8349 0 4.09835V15.9016C0 18.1651 1.8349 20 4.09835 20H15.9016C18.1651 20 20 18.1651 20 15.9016V4.09835C20 1.8349 18.1651 0 15.9016 0H4.09835Z" fill="url(#paint0_linear_539_3163)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0852 6.29242C12.0468 6.25805 12.0063 6.22515 11.9636 6.19371C11.5934 5.92119 11.0911 5.78492 10.4565 5.78492C10.0253 5.78492 9.66127 5.84594 9.36433 5.96796C9.06739 6.08592 8.8396 6.25067 8.68097 6.46219C8.51056 6.69538 8.22035 6.88436 7.96939 6.7414C7.77241 6.62917 7.59052 6.49073 7.42895 6.32919C7.12762 6.02786 6.90668 5.65576 6.78637 5.24694C6.73335 5.06684 6.78027 4.86998 6.92208 4.74694C7.2392 4.47176 7.60991 4.24013 8.0342 4.05209C8.75012 3.73482 9.56364 3.57617 10.4748 3.57617C11.4022 3.57617 12.2117 3.73482 12.9032 4.05209C13.5988 4.36938 14.1398 4.81071 14.5262 5.37613C14.6676 5.58294 14.7839 5.80176 14.8752 6.03253C15.1458 6.71688 14.5211 7.3408 13.7851 7.3408C13.2106 7.3408 12.7507 6.91113 12.3163 6.50521C12.2386 6.43265 12.1618 6.36086 12.0852 6.29242ZM8.30266 7.64605C8.41172 7.6034 8.52849 7.66794 8.58945 7.7679C8.6952 7.93467 8.8396 8.07909 9.02264 8.20111C9.2057 8.31907 9.41722 8.4228 9.6572 8.5123C9.8972 8.59771 10.1535 8.67092 10.426 8.73194L11.5487 9.0004C12.0937 9.12244 12.5941 9.28515 13.0496 9.48853C13.5052 9.69192 13.8998 9.94207 14.2333 10.239C14.5669 10.5359 14.8252 10.8858 15.0082 11.2885C15.1953 11.6912 15.2909 12.1529 15.295 12.6735C15.2909 13.4382 15.0957 14.1013 14.7092 14.6626C14.3269 15.2199 13.7737 15.6531 13.0496 15.9622C12.3297 16.2673 11.4612 16.4198 10.4443 16.4198C9.43552 16.4198 8.55691 16.2653 7.80845 15.9561C7.06408 15.647 6.48239 15.1894 6.06343 14.5833C5.87006 14.2989 5.71956 13.9832 5.61189 13.6361C5.39472 12.9361 6.01368 12.3196 6.74664 12.3196H6.84168C7.4752 12.3196 7.94579 12.8632 8.32708 13.3691C8.54266 13.6457 8.82943 13.8552 9.18739 13.9975C9.54941 14.1358 9.95822 14.205 10.4138 14.205C10.8612 14.205 11.2497 14.1399 11.5792 14.0097C11.9127 13.8796 12.171 13.6986 12.3541 13.4667C12.5371 13.2349 12.6286 12.9684 12.6286 12.6674C12.6286 12.3867 12.5452 12.1508 12.3785 11.9596C12.2158 11.7685 11.9758 11.6058 11.6585 11.4715C11.3453 11.3373 10.9609 11.2153 10.5053 11.1054L9.14468 10.7637C8.25214 10.5466 7.5187 10.2259 6.94439 9.80148C6.78914 9.68676 6.73185 9.4848 6.78637 9.29961C6.90664 8.89084 7.12756 8.51875 7.42885 8.21742C7.6781 7.96813 7.97581 7.77386 8.30266 7.64605ZM6.68587 5.92236L6.56629 5.51609C6.56114 5.49844 6.55041 5.48294 6.53572 5.47192C6.52102 5.4609 6.50314 5.45494 6.48477 5.45494C6.46639 5.45494 6.44852 5.4609 6.43381 5.47192C6.4191 5.48294 6.40837 5.49844 6.40322 5.51609L6.28383 5.92236C6.2036 6.19486 6.05629 6.4429 5.85539 6.64375C5.65452 6.84461 5.40645 6.99186 5.13391 7.07207L4.72762 7.19163C4.64627 7.21575 4.64627 7.3309 4.72762 7.35469L5.13391 7.47426C5.40641 7.55446 5.65443 7.70176 5.85531 7.90261C6.05616 8.10344 6.20343 8.35146 6.28366 8.62396L6.40322 9.0304C6.42718 9.11159 6.54235 9.11159 6.56629 9.0304L6.68587 8.62413C6.76606 8.35161 6.91333 8.10355 7.1142 7.90267C7.31506 7.7018 7.5631 7.55448 7.83562 7.47426L8.24208 7.35469C8.32327 7.33073 8.32327 7.21559 8.24208 7.1918L7.83579 7.07223C7.56322 6.99203 7.31516 6.84473 7.11427 6.64384C6.91337 6.44296 6.76608 6.1949 6.68587 5.92236ZM5.23652 8.32203L5.27239 8.4439C5.29645 8.52567 5.34064 8.60009 5.40091 8.66036C5.46116 8.72061 5.5356 8.7648 5.61735 8.78886L5.73924 8.82473C5.7636 8.83188 5.7636 8.86642 5.73924 8.87361L5.61731 8.90948C5.53556 8.93355 5.46114 8.97773 5.40087 9.03801C5.34062 9.09828 5.29643 9.17269 5.27239 9.25444L5.23652 9.37632C5.22933 9.40067 5.19479 9.40067 5.1876 9.37632L5.15172 9.25438C5.12766 9.17265 5.08347 9.09823 5.0232 9.03798C4.96295 8.97771 4.88854 8.93355 4.80679 8.90948L4.68491 8.87361C4.66049 8.86646 4.66049 8.83192 4.68491 8.82469L4.80679 8.78882C4.88856 8.76475 4.96297 8.72059 5.02324 8.66032C5.08352 8.60007 5.1277 8.52565 5.15177 8.4439L5.1876 8.32203C5.18914 8.31673 5.19235 8.31209 5.19677 8.30878C5.20118 8.30546 5.20654 8.30367 5.21206 8.30367C5.21756 8.30367 5.22293 8.30546 5.22733 8.30878C5.23174 8.31209 5.23497 8.31673 5.23652 8.32203ZM5.00287 5.00621L4.94708 4.81663C4.94466 4.8084 4.93966 4.80117 4.93281 4.79603C4.92593 4.79088 4.9176 4.78809 4.90902 4.78809C4.90045 4.78809 4.8921 4.79088 4.88525 4.79603C4.87839 4.80117 4.87337 4.8084 4.87097 4.81663L4.81524 5.00621C4.77781 5.1334 4.70908 5.24913 4.61533 5.34288C4.52158 5.43661 4.40581 5.50532 4.27862 5.54276L4.08902 5.59855C4.05106 5.6098 4.05106 5.66355 4.08902 5.67465L4.27862 5.73044C4.40579 5.76788 4.52154 5.83661 4.61527 5.93034C4.70902 6.02407 4.77775 6.13982 4.81518 6.26696L4.87097 6.45665C4.88216 6.49453 4.93589 6.49453 4.94708 6.45665L5.00287 6.26705C5.04029 6.13988 5.10902 6.02411 5.20277 5.93036C5.29649 5.83663 5.41224 5.76788 5.53941 5.73044L5.7291 5.67465C5.76699 5.66346 5.76699 5.60973 5.7291 5.59863L5.53949 5.54282C5.41231 5.5054 5.29654 5.43667 5.20279 5.34292C5.10904 5.24917 5.04031 5.1334 5.00287 5.00621Z" fill="url(#paint1_linear_539_3163)"/>
</g>
<defs>
<linearGradient id="paint0_linear_539_3163" x1="1.30248" y1="19.7653" x2="7.81504" y2="-2.89315" gradientUnits="userSpaceOnUse">
<stop stop-color="#C639FF"/>
<stop offset="1" stop-color="#3662FF"/>
</linearGradient>
<linearGradient id="paint1_linear_539_3163" x1="4.79218" y1="16.2691" x2="9.46406" y2="2.05132" gradientUnits="userSpaceOnUse">
<stop stop-color="#C639FF"/>
<stop offset="1" stop-color="#3662FF"/>
</linearGradient>
<clipPath id="clip0_539_3163">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>
PK���\��-����$assets/images/settings/our-team.jpegnu�[������JFIF��C		

	


	
��C		������	
��	��|D�Yк⍨Ń=le�,�d�ls���E�{d�P
f"�LU�z���cW�A�F����/��$BQ�Gh_�>����4;Ư�t{�lU�	.e�1;,�=uv��(˯�D���!>���a�.#��$�vɊ������%1�7d�Zd٭�m{�]nGN��ek6Ii2P�JTuL�ΜvY�	�h��s���R\������4~0\+B��zރ�&4��E0�
��9��f<9j�#ϻ���̫r[!�R޺[,���(������4���{ac�4ko#�xc��"�^�����c��{�?H8��y*��"���uVF����_����&K
�l����8^Ӓ;Mj,{^��R쥑АKhXcx;�h�^'Ň��i�a^'�5�Q[�L,�\'��ʂ��B�'���f��7K=*�I.�x�m(՟-xRH�[a�[��9��ud.ںˆ�y$��z�8�*�A=t�l��G4�G�u��>���?���=�D��iπ��j��P)&T
���#j1��M��y�,��k���db�@?�P��89��E�1˔l����Ę(���		Z�`��İ�mE��
�<���M�j":�U$QO[<��m[ܧ�/;��V{P�&hV)S|�⬕����϶��ww�<y{;��OҦ'��ЋaֺKN��?<����YB�I��ZW�x�ŅE��N�wywq'!�3{�
�}C�MU;�|�l��ԋ[�cԉ:C�	�P�"�1I
OgD���᷶��q�hI��\�.�oYN�$?���+#Q ��t ܭ�i�����S!�����4=��Sŵ�C�XSZ(.�cGN�^ґ�����1UE�P^hӤ��܋�z�:ǜ����_97�i����1e���Z����U�
Yqw,��r��Vjy>�z��wX���f�_�v:�Z�MI�-�5C�����~|i�A��Oc��������������@@x҉	2�l��d�V�]�L�T��o����S��O����w-�)^B3��<����
j�QvP�vvY�y��j5]���[rק��:Im'�k�T��䮣�Z�L��iY�Fx{�[2���ݴ�]` �eUKw#AOλ����p�m�+ױ�?y�G��r~�|�r//�5��f�����z;���H�}��F*�)?PC-n��F���H���Μ���x#dD欷�L�Ms���e9Vާd���V*�+�e�W�1���;6��.gB��I�zZw�AX��!�+�
��i��--���:�)��$�����~��𶮫��uyy���j�g-�fh��,B$h�uY:a˚�3 �4�T:n0w���Lt6S��M�"����֥m|�S͉�Kk���(sf��
%գCW�W��W�Q0���Ɍ�#��w�@�]�Dj�ʖ{D��mxf}%�&�,O7[)
G�Z7���U�G�KTz[Q���eS6�i_�ޞ�2}�i����ht�wDf�P��k�[��{���Ɍ�m����֑�A����}EW������#$�5�kx�4u���/��M{>:o����UU�y��v|���SJK\\�E�VNN�F�q峤�㳛�"R"_�

6�i�N�\N�ޤ���$�=���o�������=;l�iHH$K�R�sWEF�L�ZG�ɷ�;u��[j�fl:����,�=��ҾD7E�rg�aK��i
��Q�xtOYL�$���t��V+Dɚ=И-60<�Z�.
�rY}!#u�%�?)��ݽ^z�-�e��g}1�/]�z,5J+�Q���~/3�Ik��`�i j�Lԕ.����s%鎤b�冎}tl[\�9Yi�&.�A�����MW��V�6��;�(唝:�t��ֹ3��i�1��3�,��勮L�C!��2F�px�=�
ൃ�]k��l���ѯ��Ym�އ{K�4Z]��/ث~۸5+A@����|���2ќ>���D����?��پg��~w��m�;�5=׃U}V�5�/R\�<�k\�r碓en�0B�ã�z���ш��A�(�p%Z	��$�<��T��S
f^4U�.�/D�-ʯ��b��Sm
�]U�X��Z����0g��Au%v�~�]�O���Z����Dd[���Ɗ�N���5�P�֫?|_)��Gx�d/a��2��Oɓ�L�Wb��Nj>9�*���_l�<�|37eK�;�Fcn��
c1m�@�|�ʿ�X��t��������ݚь�_
Ĝ�`��g����V5��yL
L���Տخ��hr�D�#
����,)w7U�b�QQ�\���4s�D�;�6
�h=�
3�\%�ec-�LT�Y��2��J� ��$Y;��<�j��^wo7ز혉ϟ�a���p��}$q׈�Wߍ}���׆7����ϟ��^��;�����݋4��{����k8Z�/��Ή{^�F�s�k�z��#l�1���}C;b���6ʓ�Nn�pHL��{#sr:��hWi�S=��D�͌�����V��3���ۅV*��wQg�x}�c�
v{S
��:đq��w����7�lV*�����5v�ꅝm�[Ή����J�ˑ���(h�]'���(5�ߛQy�K.;iL��74�},�O�x~;Q�O��)�5�"*�z1^L����oȮЪ�"
q�V3F'w�e�S�6(,��M�<�(�i�"ß�-�O?�I�A/m�p(�N�P5b����F$x;�V��uc�>1���,�RRK)��NO��.�Q�aYr1^d��L�a[�R��O�z����f"	@u�T��>���kS�޳�v��9��la��b򮓆��ޢ�=�:�I���?�|J%�G�m��aL�}C��GAO��q�s~�����c�:�2�n �)ށ6���_E����Ȩ��jMM"���nu�m�-�@Y����Ä ʸ畺n.���_��O���Z�ߖE���lN���oD�d�+��l�<�d�����Y���).����"�Gw�w#z���H��Ya|��n�V�{���	�����u&����~N����s.�~Q+��n^�ߧ&�m�YE�!���z	7�|@)w�V�#?�z&�U�R!k�w^��<�y���,�y�%�m����@#�0/���f�,�)�>�)Qu�$�N�a��
�=LŚ0o�
(�GJ|���/L��z>�����{=�"�CB�f_߿kRAG!��yi�-PL<dz�eC�p��/|��VOi.�ݫ*s��2.�D̶L��اH�|u��Cn���5��u�5���G��v�Z�����|��e�_H���iK�~'�u/�uk���}��$)|�s�4NK���Wq#S�̼���L��ܾ�)�::59�Ur�!��f����ıS`}���[1�1�Ds>�]���ő����h�[���1ž��?�������w@������g
f��4?�^�:aSېI���Od��I'��I4e{��tB���<ْj�$�z�v#W@�X���JN��Om��t��ɹʰ�WdI���Y�D���ƥ�m&�σ��l�"j�w�:�~�7ِ�,�W�<ͷ=�]��,;(v�j
�5e�b'{@�>1,���奌��e��	��n��*�	��~�Qc�)�4���,�53H��g�sE��)V�^��Q�c�N/�_t�~s�W�p��7�����\���Y@����S��ֻ:���ތ4��щ�}xU��`��>��{�w�("���(��w�w�w�w/um�\Y#�3�UQ#�>ҍ]k�mJe�\bƶN$�&#�a5�߲�,���F��"�>o�-lh�O��XZ3F����}Q��<2>�E&������-��Id���u'�6lM5����ށ��Pv���l2m[��H3�<�ibT�� ����۬��RQaX�]�W�?����!�㏜�-U�o*p�g�Z��RI�����J���l�A:4�A�X!��,�+��|�E��-*,���I���tM�H�e�UD
��	�Ժ[�l�t�u�t�]�����&zV�߸� �b��evΞ�cQ��K�� \u8���F�h2�=XO{H"�x~�èe Œ�;ݏQ�
U�/��`v�2v�zߙM��^ݟ��|f��;�AB�Z�XZ���qi��^���s���+��5��	�MRy ~*ⰿ8%��p@+�����3����5n2����Z�j�u��"�#�%���Y���IӇD�X��4�-�qSF:�Uq̡T3���a��*���9�u��u ��;[���\!���_>��%�5�N�
���YSb���I��:���I��u*4iDzg�]��<��y���H'8��4����/=��Qe��3���g$���$�Q�!��~m�B�Ƿ��k�{e97�ȁ��ѺML0� �@�-B�XqͲ"YqD��\"o�0�Qhn��P��RW�<��? �׏Mɂ��J0Z�
,�UlKrC�K�6t��V��f�"C,p����GjA875�Y9���:���Mى�+Gl�^iD�a�4�Y��G�C��ɴ��虦D�{���E�M0J>�k�1P��^ڙݵt�ً������a�Ъ�P��R-)��֖��,-���Ά�5-��R�:�^�Mt�Hr�Fٰ��̹n�B�闁�
��I�u{?�9��x�w���S�jȸ[�_G�T7
,���s���vַ��5�T���4C+)1�,��y��";vy]@3q"#a��%6�>�n����J���j�g�{�ß�	���&Ƽ'��䫨7���*�1��<Ka^T.�fF�0P�2�����(��0����I�5�R��TMl�G��8-�b…�W6��d���d��@KTH�c�[�I�;ll"���>�n}ф�d��eu��wDU[
�HKݨV;I`�5Aى�
^���<"}e���t��!>���Z��t��:,���c.���p���̭=���	(5�Ip��U���ϰ��]&,3� �l�]e�N��lW�Py�Z�+
%����l���7��ު�D59]��گZ��r�u���Z��9|d���z>ܥ4�#R���j/6̊��z:�c����U�ѐ����Y�Xs|��ӎ�/ő�cK�ϭ��O�p��e�i��bir����^
i�c����[�'޽�C��U���-I��hO��݆�	�%��1�����z���$�@-��D��V�pa4U��ŽaE��E50��D��ܰԗ�Y����Y��F���e�J��3�R
-H���l6��dV�_�X�����s�#@2�%|���=�
�ZR-Pdp7�U��ޞ�Gj��[Ϩ�����o�@5y_��-�7���Yj��j�o10����~M�:�%j��t���7:5�D�}��'G��_�W�feJ�Y�с�sҖ�EHkc��mN2���s��T,c�
�օ]��<��Y3F\m�CMf����������G}g�@�2C�|�W1^�84c�UR�i�Y�̩��g؅Y��*�pq$�,f4`��M(�N
�ϻ�i�'g���z;�m�4뵨�]4����b�rh��Vܳv�ٰy�H��"������Br��D��}�$���9����f�~#���=1���]_J�B��Z�"�2�@u��~�8W��ȟ9�s��P؅�>雚+�PU'+Zf�GP�^���g�c��I�{�M}��w{L�
{�J	4�I��YQ�Z�r�uM�Ց:Ro�v����ݴz��%�FP��q�bg���[���q�$Jg�=�s����DR9��i9�X�o	�X�V��	5�-oQ�Ϋ�1��Y�u��$���j}1y���{H������-m�R��mmT.�M�������G.>��n�����:�k��J���Tm�}�0/`@rҳ��-՟0����䠟*��
�
���=�]��|:�J�5K
�\t�Q��Vsv)+)�yy�y�� X�ΌU��kfcWd�:Z�F��@]��nuD	N�p�okyu�>�oK1�|��m�V�ӓ!��l3w�2Dj]+���kx�"����>r��,�_P��q��#2):
���0$T	~���{��~�}�[mu��c|²&9�@2%��&�]�
���[h8����b;�׉h�w-�Y�����f�I�����h/W<���U�
��
)�Ԫ�ώuvױMP�k|��=~��;��}R��YI�й��z 2ʶVQ+��[[zb,]�&����֪�.�B�Ȧ��:�Q�0[1�zB'-��t�%u�9�BD\O���#��\��ԅ)p6��L��
@�l��{ zc��`t�[mp��ʅ0����*���':�b�������*�̨�|	j���K�o?)N��M�DJL��	�%�&�j7��Y��9�MiJ��+K�ҽ�'�˝~��[?I�"�2Є4+\�;^W��z�%���*���ÁlX�f�V$ 8`��c�d=o�>��wI���,���>��m�YDl榬^O:='"��@�o{�N1)��G�����FJ�^/�/��1Y��!7�L�w^�-_�.3�]f�1F�L���$e��lU=F:}B���&2�NJ	L�����KK��|� {�ē��K�e4�)R(�Z[���g���+(��4.m��C�Q㻔jXj�|��'�gm�������(v����<��E�/7��	���j,-_(�ğ�|�N ��`�7�Ϥ���i��z��ς��n9똙�8g�B�C�X�����J��R����7�;绰��:����e&��a���k��ڜ�oP��
�ʯD�Ȱ-_��V�e�&�?��’�1�|ٸ=s������Ưk��4q���W����JO��)D]N}س
�V�~�AUV��>�L����~�ݛP�Rgf�>1N�����]gLl4�|c���J��3:����Uh�i��مxi����AEN��E*G�H��~�>����9�ʏ?�5���Eog3ν��a%�?=��s18p$0.�E�Cz�X9˭��k4��^󈭳���������
��:�2f���Dc�mz�`QBO�w�J�G����U���˫j:�x٣A�I�~�J
��1�}�Je��4'g�j���j�H̔1"<��G�mOC>��AE767	�r(.;�W��e�	o��G3��4������ �*�ܴH�35G©>�� ��˘��+�W������hr�w��k^R���4��1�G��&�Z�S�Q�`svP;���b�mcf<��[����?�^�R�>���L��R~��0�Pԧ~�y���c�(6���B��֓_`W~��H�"�,jߧy�9\�֋Wk�j�������t	�Ѭh6JE��1����B؂��Ke~d�H#u��-	4���k��5F>.��x���Շ���$�M1�YR���yH�B�����u9z�O�Ez��8�>v�@���j��\�J����
ޱ��f^�Ϧ�{x��k���น����6븹<��f��iF�Ʀ��"0ccl���[�
DE��f��Px7{�4,�>r7���Y��6�C�^�
���c���+5Iq�f�1��ޓe��fA{$k#��N�>����:D���5.V�p�5��b��ԍ4���T�X�8fC�t��R5���7�z3�ɇ���W�w��=����Z�Z�{fx��[Ϭ�@��,���\w�̝�42�^��R�e�uE��S�xR�ؚ-��9��Ԭ+i(�C��W�}.U�3	��
M��S1��[(K�7��o�[Ug.��=���/
�d`��Y/�e�Ɠ�
�c\m"@-P3#�ז8��M����-Q3+��)�lƜl4�P
oBJ��aDwx���µ`Dk.��I�<�$��}ɯz&>�-qX}�X�h�s�2j��5����,�=O��{�F��Y�~q?�R�mj�l�\�hu�֋ڛ�|ģ�(�sֲ �g�5����V\uV�[$\R�g��"����L�)�֏�>9�C��'���¸�%Z�e�Q��Yr����O4�1�S�>u�{�B��X��n>O�����۪�Y`��hw������\�Y��c�r;T�tS,h�2�	"�s�?���5�=}�Zn;�(nދD�⯹�燢F[f��)��u0d�|7��cϤ�㻇޺�h+��u�	���?�L������X�]ݞ9�퉴7�Ҁ�����䶹;k6����?��14W�-�,��0�r�%�~�%�h��L�D�'�_���
���
4�X�@'$�4��,�t�{��SA���Ys:�m�G�;�:�**���蜾��5u��VM{�E�MmO�vAYÝP�jՌ6�9���a]��z�ϙ���*A9�f��q���$���0>vd��y��xϑ9`+wTD�KPh��خ9)f�X�|z'��U�"U������Vu��Uz�HʈB�g��who�z�oHeB�lh��,7��#CcN�X��N6��W��Gy����f|PL���[��d2�QI�O�FcK
��Pڟ��T�	��
jⵧ�����:A����9[$|��Pn(t7Pm��Ưd���ђ�0���&֨��\�f�uN�b��5�S�27x�'�z�k�1d���%R�{�4�)���fl�E�ke��%
n�'�L������]�GI���\���u|�	*���
�&i�^�g;��ݱq�Q�sw�0Y��u�-]��[졺���#��Gz^��K]5�i#�I��KW�-�Z_zn������/h�ms���@?2Np�s�[|"�d~9}ޝj�ENWtt���#[��g/��g;�����V]��MgR�'�k���hY��vk�������"��Z�5Ey_�X�Ҷ��KZ�To'���X�Y}��ױp^���A�yX7&H��|��-�i�7��� g�/a|���}-xm�NՈ[PhX��ڤ�U��y�,s�^p��֫I2[�xRrĺ�k�٬7����bC�I�oE�˧^m逺��+(<��h����#��v@Z�SI��"��P�P�:�4��W�F7Wl2���E�\l�m�}u��[e��em��ڰ�[.0��$TD`�GQB��ނ@��|��Go��L�fJzϒbާk�l�<~ȓ}Q-�07�|�8�Ѭ��IL�=��GI�ށ�J�+��[Xэ���أz�3P�9m�1��[��^箪]a�{�|�ݼ«�ve��N��m@"�D,�"�S/��}M��w��NdK�C�gzwS�y9�h�s[����}���]�G`J�e�Y��l`�C2ܓ�@�[�4Ϙ�?�å�S��ɲ�M	cEJj/;���+/�6��-Z�Gm�5�c��M���8����y���=�Mk~�s��0�POw4à�Eh�96_{�P]?%�w�����2��D�i�{�ǩ�C=��2��B�Հ�9��1��U�e�Ǔ���<��;�#逻�f�紥�ߝ�:-R��@	�j��?J8�7	���]���N�57>}h
P��:-�y?����(k^�&(��t:�e$`���C(��@,��GO>Ȳ�p1��ʋ�^��X��
ϙ�V�B���J�R[hn_|�&z��ŝk���(l9�ζ�4�
�U='�)���3���[{]���i�xPF��H�k��ո0H�>��W�(����n�ſ��̓���\�6�ΐ��ڿ��%Q�5�
�h�wc$�	�6i��X��5d1���H#D+2������G��Jwc}����.�ɗ���{7���o�����'�<�gW�:�;��S-]g����#��);K�[Q
�J�����B�횱��"E�E ���m}Z[��J��ogj#B:k-Jǁ�:��Q�����vt�ػ-hF4&��c$͇�!����9�-r3vޮ�$ٛ����&�S���1�����v����Rl������>���,��F1Zl]�7�T��z{'�`��FZ)'o*�Oq��Df�#hE�#*u�?P��_�'���]Jk�Ef�h�8��Z
_ox����:�F�y��0��]�v]��	&������+�&~l���h�,��޳�a[�]y#{�0m<��f+��H��P�$�q�'̎�m~���T�/���"��cf��dJWMyN$G)u��;Y�^�(�t�$k�t�i��g���V��F,1h�	n�X�ţ��f4;S��8��X���g&�3�:�y�a�ɴ7%�-����Um�?�1`�Y��l�}0cY��F�`�.�,'�Џ�>9�uEd׫��wqG�V�]討�U�AD�9n��-.�P�������g�����uNM�R��Lz�`��iMB���?d.�7ya�j�E;��^�*X�j���F�e�}�F�29uw�=f�����<�9�1�W��6��<�ޮ:��no��gY�dzX�v����DC���|�Ki��z-X�d���׊��9����جޡ��zȳ��7��D>������Tu��Qs��T8�iu��=`OyR!���o]�a|(`�� �����B�+�v-��!m@���G�5����x�D ��E~�n|�!D|�ɟ�3gQD�Y{��G����1"Uo�Yd���8��-c���S�Ulj�}��XF�����>q�E�"*�=ѓ6b?Y#6�>E(-�ю�~|�`�@��wo��\@0��;�X�#J�})���Ph�3��pv�d}^��L��475��?U����O,��,�M�ES�~��M�M`k${̽]��Jʢ���=~�g6�qN�Zg�ݟ��ܓ��]�D��ү�>�㚹��I���r<�ȶ�)=�-Kp%Xښ��L̟P�_cdko+
]o��B��6,�ߔr�1ʢ�D�b<��Cv�e�Sע[�<k�1Z{�� �Kέ�a�m��Sbh����g�y�����1��y���:��l�<vrz_���L�ڧsz�$�Q��S~��},�H�����y�ǂ�’�7�$���S�OL7���4(�C�����iI¹hj)T�w�/2ZO�g�^USh�������y-+�g�7���)���)
c�>w�˵��y�o񞏍����҄�t7�t�/b|��O$n7�{�UX}d�����VE?2���9D����M���q��mA�2��"Q�"�`��M覹���Yn��oD��֚�U��i��a��#ݗ�̆^]�<�t��ۢ��l�+p��y�P�;���|���Ws��#�9u�s%ͧ�-.f��,k��(w�������y��%��؂�l��=n��/5���O��5���`������y��M���G[=Ms�>�朑��H.��r}2m(�R�כV�g��:d��Ǻ����io�gf(t5��U�5��b�7�\h��
��E`3z ��-t]���������YY���@'X!��i�|�ϛ+���C����$d�a*�290K��#�I�AOj���(
�yk�&կ�(��'zQ���f_���~s'������o]���]�}��p쵧�W���(�"Sf�2}#�FgT�m񿻹���0��,rk'>w'B��c;�h��4|�I�)ޣ�6��%�j"j���y6A��_?��t;�6k!�.���^�o"v��k�Wv��B*�x
��D#R��C��t:z@μ�b0G�d��?�)e�u,����Ac`�BA�If������vv^��N�w���õ�<�U+IQ�qw�d�笁�4�'���
��&���It��Z�Y�%8s���7��G#t	�o1;A���S
K7n
���^R��P'���{��X���}���e���dMM���ޏ��GL]U��pIMt��������BPo�qq��Onb$���:��^���pΙE�c�F"M��T�.	��J'p
��iwI	�>t}h^�?�~��/�G�_*q�A����qC��נ{�{�m�������|���KyH�I\Vg��yj�o������[��^�s8{��c5�v�ƫ?+g��"�M�q��=�H�A0K]k�v^g#^��J��.�\��{ܯCC}'��+�?��A���k?���)�����1�s#���I�4ʫ��	z=��O]��W˖&����ь��~�d��hR
�΢�߱�q�{|C��� 0;=׎Է�����ЇQ���EzL��E�l�P�*|��k$$l�<B���"�VC��y'�u�^}+?5�x[[�ؖ�e�m)������lqG��ݑ֑j��]��u��t�ܱ�	r��譶rq�+i�Ds�{η���/L¾�w������'j�'�+�])y'rΕRc�����=�Ё��W��5��:��{_6�zqc�	�5@�����Q�w]ѽ�=ޝӈ�P-l@���C�=T����f�3Y���E2���0Ep�W����t]�l��۟�⚀�B�Ӹ�{�q��2�e��A�t] �*���x�S��46C|ic�i��H;�׵H��li��׾y��̭X��7�c��v�½�oO���a����ed�<ZXzO������_��D�Alر�3Σ�l6�����
%�uE�ޮ�G���d��R��d�v���%%�k�^�o���KhV?B�X�:	�k!�5�8�w��e�]��cZ'P.�9�>i�M7��i��@��Ge��C��������y�����?ڂm*3��|��`�+y\���6+�瞕�^��+�Cv�rK�0�'����L�b�SJ��Ho����y�!�I*��#��T�L�*�\� �l�3��71s���Ϩp�t�����^c����T�J�'�[�?���s�����r5�=�&�@�g�k�I�,T7�4���d���r�*�0�H�e�@�����6�����iI�rl���(���-��:�PQ�c_Ŗu"�Pv���֓G��V��{�<���0[�kD�g�l�JS�OU�>����;8�!��,v�y��熋:���?1H�e�Y�wX,���ף78�irx�sɔ��Z2�Ĩ���_Ft%1��W��!��`+F�	}V��gΠE4��6g���ws�ߎk���h���z�:y+�sZ��`�4˦��qu4�#��{2�-9�}�Mzf4��ϭˏM�y��cc�Ӹ��9�K�<��]<SٌgI�'��c�m�F�[ȟq��/m��[�r[�2g��c%���Ϥ�?��M�~E�[��(s�*�m�2]Po�t�0�R�J��k��YExsm�Z�w�t�t�t�����y��c�c�z�2֝�'xsb�5Z	��t*��i���˼G�g��yC)&��^n��O ���zz�]�Au�wv{Ŀ�Yƒ�c�͏w�f�P�.�J���r.cB "���[�~�'�,hq�u���JsgM��M���77X�K��J�e�ɧʇ���t_�zp���A=��iT�):�X5��:f�O]�kMO]�]�-Ɓ���T�g�j��ȪUZƫ˝��	��I�73����*�C�n�l�����Fe{PZ��ɵ���`��PY�5��א��r�Zu�@�,�v������w�w\n�d��'ȓ�Oϟ@��ϓ �ۇ����m|�c����	�B��(�Qiz���{��I�.ȫ�o��R�:ս:}�/�ȭe��)�)�9���}���������ʼ������9�d���@�}wN�{wyG�<�^twt?tw$R��e�z�����t�k"�%��W�6hhl;"8��pӍ���*�Z�yݦ�m!/�i=0�tM�{V_|�-�aXA�e{�j�x�>7�2�7������o��Y��s�AcU`з�6�aN���h�ɔ~���Y zI�d�l�:0žz��,ƹ���`�V�GI��6j�g3�?(����-���{'R.Nޞ�z�݉��Xΰ#���o<�$H�\��Fεc&]��S��/N�s�`s:M���E"�f}O��2�j�
�9fA8�/�&�H��L�����פ��,[��X,+]���$�w�̽
di!�D��_�Օ{lu�ʽ��Wk4�L���l�$Q$�Y��1'��:1�t9��|��-�.J��,pw��5�_��s�!KW��A/���m4'�QoV�~��9�";ts{������w{�����29���~�z9}����UI����N�^���y|�X���fD���r�l��^i/+���^b
:E�l{B�8��W
t#S,��_�~e�Q�s:�H��� �]�H=�͞Ĺ��Qk�)ٝ����@�II���MJƸc���&f—hR	�†�e��v;��W�4�-���N.���h�R,���	l�����G7����gD�a�y�"�9��yOs{��ƯC8it�����wN1t��=�Xk;)���L�����%��9b!`q��Sv�҇����"��N����Me�X��tJuu֥�W�묬|FU������;���f�Խ�`�;!k�Ea�?�Ya��{�|4�(�nR��~�
c��� [u����5W�ɯc<������;��}���^B�z,n��[������5D�\<�����)�
���'7�[���{s������3���a=|�����&p��O���nXu�6�Y �)�]l&����#�OP&��j��dT�!*ǂ������"`0�M
����'+}��>����)cF�C��x=����8GU��nE���A�M(Y�0y�TV�.��s��[�7��m
������i�O09�6V�.{��>�SU�'C@8"]5��+���)�y�+tY���z�f)�}���$W�=�
����{C��@_���:�eR�2�`��x=
�����Jy�[�U���KE)N	m���N�r��]�?�H̍�o�~[&�G���|I���2����/�Iѭ��'�ЊuY�����N�c�N��@Ž�ZڃSჹ��So?7�d��R������h	߼at��J]�{���gû���:9������+���.7����*-�����^4i�v���>hy\��m뙁�H�z�o��-�e���=�m�+s��l}���w��'�l��w��y��ka�K2� ���W��(4��O	:�%Y��.s̽9^֚���y�`�WG��'�Nw4k���v�[.䃉ӕ�
�W�7�5vز��塍���,h@�ޭ*�iEM��6��A6��0������m�d��E͖[rf�-��L7qz�dT�H��ub�����EM��gFP�5,��(^5������DNƬ�;�0p�ڛX�@�_sݏ��l��qVD��������!­~�_�C)-�2����}�52�4FF0U��.F�C��"*�L
�
���5��i�/���~�޹�
�5�������\xTyc�?�{���w���;�#zc�����cve����C|�Ղ"ZK���J/'.ĸ�8��A�$],yқ`R퓂��#@a	�=�þ
��֭Pc̙=4�9�E\�#�z�]�H�{�{���|v�Ո�9��M��G|�V�=!C����Cm
Yt����,[���&'Z�Xf��K��`z"(��:m�V����Fs��H6�u�l敓T��,� 'P��O0��c᠒R�j�1���l6-��l������Me�a�X��ϧ�/�yi��1_����zw���]�6�#����?�%�hP�I$q��k|��(СUu�O}��㷕�,�F��$��A��g
�_�/:<��e�4�S=���&��8�Ý@�����~G>f�|��!R����z�ϙo���#���J^gw�u������VV�"I2I��M�a�lH�X׭y�ϊl���ہt9��K��hf�ۨ��2������Z�Cш�t>�IO��pL�l��oV�2���ʇǻ��ΉC�xX�EMo#羟�O:��a��}~s]����5�}|T�.���<��%��@��l�th�j-U�KVS����Y�Ҥo������Hgh2��!k쉉_\}�Qȹ���>��y����=�O�f��b��7�V3:���\ś�zi#���'ۯ4˝���%l���-���58��/,�]to���V�έ�����{=���ꅧI�&g�e�����_�XR.a=��e�
]��?��f���R�S|)C8[ɱSJd�-�4cW�6��i�'�$��П���P���G/�eϟ����k�/��c]�w^#2T[�g����2+�f��֓_� �� ?%T���H�ϔ��(5�8<+3lUW��#�5�r;�'�'FK
Nx�x:q�������@l���cᷕ�S����6�p����z��F�v�5k�W�1w��y��Ǚs���~<[A��	wI�7T����y߯jeEũ�0>℥���u�+�'D$��HOw�0�^
�ǭ^5+���Z��ՒFL�2+�������@f���������SdV���^���\�	�
��ȵ�f�����\Vͷ������k��U*~^�����C���3����9%]�|�r�`:X�	`�e��U[
�Xfƞ���E��,S#%/�����\zKo�+����[Q��>��}5��0��-�i����v�f���Xs!/sd��1�鸐�sR��L$r���u�y+ȃ��Jf��9�Q��a�-ˤ��%��K,3�!�����4r�:]m�Om3��si�D�޲b|R/o��SPl)��Q�%�E.O;��l��e�ɺ�9��Ѝ�Gi`���<Ni���(wu��Z�FT{�2d�h��֙�,>�'�#ׄ���m��Sd#�"s̘6p4Uj��Ȝ�0�E�[��b��r!2�M���}���yk�#Yǔ,�y��X����%��$'�Y�ߟ��Xg�|s-������$^ȲLSm�b�����d�����y��]�>�3}*�D'�x����ݵM9���(�����W���}4���(�k�`eITq�)������ߑ�s䓿�������%%��)��f��,�0'�|�M�T>F�t��5X�_4Ë�$}4�����	�l|f~����~F,�k!#�">x��XF.�Un5R��~U���䙆z�:&HhiԦ>�cr�s��хi�^��v�����&'��:�r)p(�" �B�3V��h�����'t�Q���c�|�-W�s�1�#�/a���c�J��p~�i�9W(E�Ӈ��1;9$�4�N����\o�!8�b�6U}Myb�2kI�%��<��n���6a��T>*¬�����)f�VQm�&CL����j����1o�����'FwD+"�Q�����$Tmk)�����j�����9��B8�&x#eb#�ti&cdL�(��/|Վ��������b|؄m��0����wuD�X�����NğV��Y�,����1��d�j�wp����w'�sG➖�x逸�Nxu?e��t�����ލ}��pv˓��
;Mr�� �qq�u�������L��3�_��-<�fI��u��ڃz��68c�(�{7�q��񽜲�HN_�p�R�W����;m���6
�uU�6w�_.�(��ْ�N�Hvu]F[#o2�)��ڻ�_�n�x�[���y!���ք8r��NHPTK���|�PeLs[�*��Ҏ�X�Sd�d>�Y3Ժ�U5��V�2�,��Xw����k9p$�P9~��(�h���E�3�^�
O�:1YVrO��H�,u�X�/���5����lnѾ���X���q��=���WߛGoZ~]�D����f���b�!�N��tF�ܲm^�=M����dǦy��t�o��>��4_~�%��N'6�?>z��p��-�!�U^��
�R9���x�;��7+:���BY��{��颂�SX
kN�_��;���_��N���N��NX�T�	2��A�Ώ��a����K��ٽ��E�D�TD�5G�(u�g��qg_�t��T�����9�G%���wH���}xcWVkfg��ڔ��B��S>U��S�sP�UF��q�|w	wWm�_�ƿH�"�;8��b���G�a7IaHz.��`��gZ��h|��9/�4�ᕆڽuSi�}�Y�f�<j�2��*��D�>�D5���i��9S�_�Ý�����^دSzI�Қ���wRa�j
�7��~-�Tݧ���z5��g%�Y3�O�+���]�4�-ޠ�#R���X'�|F�8}[ϾQn���N1�l��7w#��Ʒ��+��y1F�)���`�(mA�ʼn�"�����^��qu�w$"9P�Kҭ]8m^h�=i�t
��_���4l��ґ�?J/�I0�
r��X*�L�[�iF��};����j+��.:s�5���o\ۖoƣh�OlY����*��\�k�@�[�<��_�xL&��f��ڬ�ቯ;�i=d� l�'��P^W���0�dhvh��	���O�bd~��|U� "F�ؔ�%�U�M�M�x�	$g�HHE�B�~N�^g�E�
�$�Rt�H��'��1<��I$v4��-B]lc�kL��~�m��Bk�����JC-�k�N����1UX�"p����	�A��H?�����_��^wy��V7�y�{��x�ca�W���K�y]�OT����ɮY)�5�X튞oe�&*{�1:;�m,"���4RS1,W�e�5�2B��l\��p�A*��Ћ��
��1��VN�zb,L1�B�,,8)|���}"���\Q��q|RN�//�$jp����YC�^���OfY�����y��$��@eԑ��ӫ|� �'W�>��p�M�cj4�����G4��|�/����a�3Gnl���֋�����>�Y,=��͜@��:uc�U�H��m��^����d݈��{�,X��"��e]�Q!-8�d(�I�X�ͤ���+�%�i&F�9��LJw�;۝zd�h�k���>��A�ƈB�a|�+��ŵi*�O%{��~�^��!e�l?�ۈ}͔ox���{ʕ��Z�a+N�j��`^ ,��W9l��r�Ԣ*�������b�#Fs�c$l_���7���+`�
��k�$�M�2�4���rW$�"���ͭ�D���$ĔGx��ͽ������>��
͘��;z>�Ŵ�7�;�y�'�s^L�����fX�u�<�k��4
��
�cQU�w�+,��RR(�����W���3�a�$c_��y�g�C��a��yDM:��-\#��������w,�t���ۣ��t$���e�w�`��N�0d�K��o�K��D�'"1nm����Ɲ2�>�$"�3��W�a����!y�P�NT_NR<eN���!2��$=��jS#�b�v�. �@�	��z54���X/6�����^�s�3���5�O���p����'���x�5>N	HĹb�5X���;�*���*T]����1R^��N!��;�Ij�D��65(^�W��5A�!�ڡ:�����D�svwz5f"�4_�%q�'\X��/�5�а���y#�F�
_4I��ܮh⸩��<�S�.��!��|�K܎o�/���{���
�޹4ZVZ@�`+��jK�*��K0*"�Yq���	"�Y�L���Ǡ�B�U)�`�E#$�K*-Q]O���f�C/���x�F��$rt�}̪�[�bS(�3d����գIڋ]�~�[�yV$��-n��-���/��u�"	��r��<q�0J]�EL��6���1&F$QL�|=��oI[ T����Zn�=�B�n�7�!ױ�δ�&�u�8x�@jl{㒔�N��4s�J��㤑�y�(�W�Fxy�wPKĆ���2Te��OgI���z�N��üw��_�V�\	R��J�Κ�zS'�b˱{X�lG$|�c� D�k]}K�������{�9�[��������5��g�2�H��|�o�r�wD�y��������>�0��p��s��*�1Fj��F�Dn�Ӓ�^�ڄ�N������k���.Xh��X�15���5�������U�&��)²bt*���ʒ3ޡ^ؗ�9E��`��+�e3�
w�(�^J��/DEy��@�"p��E����Y)29��������J�|S-v��`M�c����
Ԣ�����V	6��ϯ�_��O��^}��?޳��?�S}��SjX*㬱�K+��G�\�^������*�#�=��7&r�Հ�+�P:���+|���8׊���S��j	!"�Z�_J��/B��%i�/F����Hn}�7{F����"O��}�5Z?�Xi��`��f^jl�56ib�RV�9{�d�K
x��EC�TRH��������sb�������^^H���rn�Ù����Oc�nȖL|�0��Q�#�?��r8����k$���ƽ[UbK��s�7h54�Mi�˂�CY��,�L��Jm���ɾ��V��X�D����.��}�%��^�r�yZX攃���%Bs	��E�d�|Q2	n>27�ge�`�M�����FF�G�����W�O�/^Su�8��wn��w|�-�+?��#8�e�W�ޭ�f���"lj&�<�i�~������lQ�Ⱦ"RR��X������ʄi�P^���ok���U��9ֈ��h�3'���F�59;�����Q�x��D�\.�U��,��_����R!1�9�����5մ�e��h%둴K(�F�Y�]�������������H߾��_�w�7ũ�NM}}lI1�f`m�],rװ�M�2�,v�a�sjq˓r�70Ei1<S�xŨ������otȎS_\k��z��^ƞu��?����������K4ǃ�*L'�G�O�B �@�3�uXQj�G}�g͂^D�e�S����d�������tZF�U��a*�d%�9g��m�; Ẑ�F'~<[���Nz��J���$X��-s���6Y{�׷yq	[Xd��U�‰#g,�*,�mLՄ�F!�����9�Hm2�B�G%����w<��O�e�,��F[��0��5k�n�kh,$���HN,UQ��*��1�����C�9RD.�@�2���e��_>��:��*Q���X<41	C��84�~]�O��½Ν��{9={��߈�4o�{r�8/)�J�y1�G"��e���*I*Rbz��3бݹB;��Y��K=eb�g�V�~�4L�5%�n�i�_}�5䬲�m�<��>q��� �x��{ζ��x�#A%!ܓX4kq^Z�-pKq_�I�����{�$U\�������G�E.��!����g𸠪ρ����"�D�s�����Hk{���5l�N����c���ӾG��'	\Ц6�y��УlE�5�iD����0�'����l\��'��[)䞒;���\���س�K�
3:3�'WRk�Z�l	BV�&��(D��5�k���R�|\.q,u�F��:Fh����lw}�j�Q�=&Yn�NT�0�3OEF5��:JN�c���d�r@Hξo�/�/"/���f�k�G�
`4�Ӝ����DH�k쒑�.�h���Zκ(	�+*��B�Q�v[�h�3עS�\V��]��5Kt�
�G�&�&z�[\o��F�̍5T[^ܱZL��$�Q�5����e^K�0g�B��r�U���/I��X�l���r�>�,4U�u�AR���ը��Z�T���V9�����ރh���|��3Jp�A^N]�}���l���P�Q���w�^��e%�ք|z�
���j�3<�Ge.�/v<�-]�_;����um�
ֲ���٩ͬ;܏��#yn>��$�nJ���ou��?V�+�SrC2�K���?ɜ(*���B�g#x}�&/��)���7�%�JG�� ƄY[D� i�����͎rII�i߼����B�s]�����}wK.���$�1x`�	]��Ҕ�:��X�H�����Uk(��'x�м$7B?��Ja�f�Z�¨T4{zٹ[9��$�|r�㏬���{���)c8P��*#Y�s`y)����D�9�"� ! B-�����/��w�wb;K��%@�|��$Y"tY7�5�ES�H����>8�ĬY�ɫ�-!F���	�ѵ�&t�x	/�?�k�a�9���K��j��l2�|�Y��V�Y	pu�վ�3�R�2DÊ;��]m�ܤ��2% ������;~�y����&����OnZQzj�N>k���%����g(wT��v�R:Ou�7�Ơ�ƻ9#9o��^Ѭ�YYk����F�\�ZK���'9�����;�*��?$������`�XW���ؿ(���7�ipƧ���H����J`�4�'�.��U���]��m&i�*��k/M�6�gl�D	�D^�l���IW]�*}�g��s�[DN1`�g�q[s��9������L�+-��/��G�~1E-��f]�r�+��0���'���������۰�}`���Y�7x�-���/���_(l�];Ջ����`�jUE��{6C� �XT%�P�g��KAp�s�J�&����X_�o�Ч�j9j��yۘ;+\Di��<".�� ���8�6?��H={�d	Py�F9=��n����
u�S{���x���dt��]��i}.`yU\bҹD}<�RL�F8x�G3�w��-x�F�H�l�^+���:��ώy:V����Z�+7�Ƿ�%7zw|����M}�_e_6�N�oF3��\��c�58^)**���!��K���dy~C�
\�d�����:���8Ʃ�4��)����I-˺m]y�9��U�\�8&��!¦��Ml��sA�J��2�w_��Z�d�5�1�zL��W��K��v�0��}K�qC��F/�������u󗽵z3^sQw���<W�o�G�luV�]�t�"+��v�X�jq�Ѹ����]�qv��]tX��+#&1Qf��v��K�V3�Lx��sp6E�)��QF�W��k�ELr�zE8#��؀�z���)xg��C��7ٓ�oiZ
4�<�̑�aM�u�mo�m�-w�SK�����b���O$�Y��弳Z�r�l�>J7xF��9k4?邆�ZW���j�Ȕ���;�f��zJ0���~oS���;�����T�+z���w
/��Yp���ʂa�5�%�ӻQ�;0����*[�ي4�
>i��K���RY��cF�y@����sWZ&8[z�Y���4�i��L.�3}�^�a������CB;��k��0�$2,r;$��Y�="��,�q�߽�]�M�;�{���q�V�95'��n�'ӭ����"Nn$Y�M��,�3�y�8�m<����p�����Kψ��@�x�<�M\��i?��������&=g�_�:j@e�K̞�?#h�̱���L�aNYL�P�^���9���	:�2���.ݦ��V�)3`t�"�
s?�[�h��k�zlŸ��iOW��Ȱ��㓉Ȼ�PIؤ���\��e*V�;�Grk�3�yb���p�O�����Śz�$��▆�H�y�q�vr�
�IuQPt~�޽Ѩ�]�m��H�sGA0O��XT�܋���A&�	ڇc6��>~/K�g���L�9Va6�.��
g)6CUb�9�klr��<������6���cgXb�~6�.ޙ|NSA\�Q:T�X:�!��!L�DM�K����q.�Q!!�/zw���ޚə�;on_����<�b�Ӭ��;=\$���с��>lz/������@D�H���ǯy�6"͢Km�3Z<�������*������Q����<��~���v�6.��t"�g�ʋ�N�^��x���H��JBY���VSq�]in����1S�
���=
�����^q�*�V>�5��1(��>�#@v��:Ҿ�������Y%�Կ�E�}at8���Z�ED�r$yk3����+����&��;ǻ��EsW�E�0�h={�����o�ݷ��	m�y���n��+�怶*�]�A��\��n���z�� �8[l�iH"_`Vڊ̤1;J<o��5V����Ǔ�������z��b�#��ֶ�$�1MW�9��[cqHF͝E�Eײ�JA`���F�/�K��y��h��:�)���a�*�z��'���a]
⒍�Fj-7�3���
�5�>;�5��	�%����Q�o�BQR��T|w�J����E!"12#A$3BQ 4Ra%CSqTb�&056D�cr��ds�������>k.��-���4,¬m���4�n�L�ģbO,��L��WE��f �bbu}��@9�Y�L���oV����y�$7�吲�ǫ+��_��%�X5�'z���
ܺ��M|�k@�5���䖩"N�H]�[���H(i�a�/¶�c5�kk��ޞq�����&�wՕ�dpn�ФC�Ғp�bkLk�b��-	
��
$>���O�6$��}�b��@���t�v�<d����IpXD(���uZ�*ln=[c|-��[U�YS�رɋX(v�ڴ-Π����oWlY� ���J:�W���75�2�*=Ƕ5�_I��X���`1R��#�\�!6.I#>4YSa50_!!,$�ۧ*�М^��C�'e�M��9��Bmx�wU�6XNw6Ҋ쥪�{��)�/>lj��j����͖�N����/�بwf�J�v4TZC����z끑�:���G(d�[�:a�Cɠ�)&����,Tq䮻� �N�`_[W'.B�"�\wY�)���P(6=:���dLg�'�:;~Y�s��D�c��H�!8�
6��5�o�-;v�.Ś�M�k�[!��h��,|�f춧���VAz1�\��O;V6�f)DZ�v�#�ew&������,�*0}P��lT3�Ą�z���?���zr��|,���x�Q����H��rY�yE�΅���=P��/Ks���o���Qq$6�9*/t��me��L���@"ڋN
*ʡ�L'7�..���s�#^�g��e��s�($����=�Q����JU�k�Bb[��H'��0B:k����f�;i��pH��L�s��9M}o��D���ڲ��҃ryAt� ��jܽצ�7H�<`�iBʝ���;Fe�2�=�߹��K�Z����w�����6䩟t��B��Ω�bЧK�uO�6^�b��*�NY�ƭ��������OT.�aQ���w��ҩf����5��\��5z�ZL�|��@l�
 !%��R�Z��;�9�`��u��֖<���;��c;4d����?ڑ*,�oy�5��^R�Ξ���6�OɏV�Z��k-�k鰵�J��ճ\ȩ���X6l-M\W�ʃX��6�*����5uJ�AW>�q�{zȗ��m�sܲ��
�ƪ�ku+��s	�S�����AIZ�1a�ddq�}�N�h
�;�̝M�W��Yr��6
kO��P5�#�RG��3|k�Np������2KS<PVF̿�O�л�I�j�����w+�Qk�A	E)k'�u�3n�v؝xL凧�32$B�q��M&Ϛj�����U���1��4�"AP�;k�)G���>�#6TkyDµ#�
0	��Z��H�.
�ԛ�r�^�5�هo���ͪ�wcz�m����l���V96Yv�:�R�a�f��5㜷I$�3d.1�3�|��qB��^�B�˔A+�}�S��6��6(֧@�.qWz�x��e~��cϫW�m�����o�֓��Yx5�p)�kd���Hi���^j�ק���B��=_��+�m�>^�9�e֍�:Խ���1��B;�C��2��@.�DlRp#%8��['��"c�\�P1�@?%���K��h���'ie�nxs��G�֫t�l�U�:��ĿP�F������]9p�7j��x�𸕦������$�������P�x�~�'-���i^���2"#R�(���^k�m�v��T���?w{����n�d�V-�M��3�z�8��H!��ܖ�� �F�\H�>�>�݌I��b��m+�:��-�N���u~���C�b���g�l|�s n���>Ѯ��N�檧���[朒��TL�Z���?�za�c�N-@!s<�U�uv4*���f��ues��<u�Ԋ�9���` �$�Aڥb��f٣���gQ��q�1<K��]�@�ek��#�)�_Id��g �Ƴ�KTW�u�؈�؆�C�g��D���o��7�VP�b�}��_���t�D����xa��=?�l�Pֵ]@�69�أ�[�бza�
�&"'˅<�͕�gQV�خjGX{�nS�T� ���٭fݵ|Ę���.$9��n�����4��k�ˋ�����W2Q�J��VΏrzP�Z�S��NL�FA����P��|�ⷔtM<4�*ϖ�Az̎8k�:��j�����P��<� �G�f+CP$��$h0�|u2ƚ�Z��fA&�\X��W����%\�2��O��Ïf�8Q�H�8���ǂzy\����(��[�I�ԣ�(���N�%3�x��)\��|����:�����/����s��b��랬�^���
����XF�E�׉TIY��C�?V�K�!;M�Ә�,�v;�����
Ȋ��_�bs鿗6���q�F�Y��C]}��1#8��az���(I�o�:�UA��ɟY�jFw��ֵ{�;`�����*�d<��0�G-�7ƒ��{��';.�1��῞Go���e�V�ޞ(�W&e�E]��Ĕ��kl6J�ֻ�e��k��q���F�~^��B�gj�P�-'2�J�<'�߸:��r�[��Ut���n���!�P�5���ն��Z��Z�9Z�Ȝ��~�
�b�jl�*�IUmz�z�z�1՚+'�:�-1l��%~5JdKCO��V侯WQ��G@�6Td8j��\�gM��3&KP��觰��r��f�]��ȍ�U�Qc�b Ywb�FٟK�*m��4�cfc�*�iOoy�U�؄7-���#�۱����;^
2��6Ԯ�ū~�`Ga�
N�QXz3�����0ˤ�3f�*7Du�q�U��km�����4KV�6P��i׺<��曵���u�q�7q��,���d1�.&7"8D歡�L۩�O�	e{[����0NE�a<����S�C�G�r'O�
 �
OQ��/)�Ԥ�
�1AY1�����t�Hq���8}�
1�F��E;��
���A��W��ma+��W���w^��B�")�{Z�c{�v߿�R褐gu�*�T�sU�p�ed�,}��j�b|>��:}�
(X��jR`�sw����rdcI�-q� 䪮6�$��ؽՀ](�v���G�'#�r)C��7$�$өQ��:@�]Sq��9�>}Yi���*2n*��`�_;��Z��K���U��Ȯ���6O.�|T��c�@�}$�81A$�� ��";H�%�� v*�XK*�B[�]`p`�AESt��1��<@q���,y�Ӫ�=CSm�o콆m5k̈́Ì�%�y�Տ��n�3�4�����7RdrS�@ab��>Im���u��)�ˍ�nO5~�ћ��.�M�,�����:-�mUW��,���-=]Rm�~N�C�P[�h�64�]%Bu�˝�
�<L�f��Be���a=�>d�Oo]`�,�#�L�	�����B�L�\l=�-	x_�<���_PX�o�	�c�0��*�>D"�B+;}�t/�[`ޑ]Ԇºcmu[y���!�ebf�JS�HL/������_�Z���P0�`�r��PN�0�
�,��Ckı�ӌ�|��d�w��1@ɖ��:#w*�F��3u��$p�9P5���@�������w��:���Lu�ҹ�ib�R0��n��X"v.uQ3�ꍍ>��X�/�L)��MT���96i��1�m
M�[�oSP)ۿO��Mer��wYea_iY�1�`��Fh1�L��3�Ҷt�1�m��"�(+��GG��8<6�hՒoR#�S&��6�a�̛��1Z�X-
��;�ԕ8P�`-״�=MB�%�Uʵ@���)��٠~M�R�{N�����1��4��⺐�8v8�\�D��?��^u�Aǚ�J����,1�Mh��*�d�&�9dL]�<��xk��†v;�\:��1�O��p��G�ˌ��r���37W��YguS�4�LEQ�3^u�nW|��mj�<�n=��&69����O���e_� 1k�E�L�~�5��V��T��S��:}��	��Tl�zOT�J�
؋�w�I���[X�A��!�ְ�y'W�zŦ�[j��po���٘�J@n�zK
AG�a
������������
kX|�7X�ږm�b���ߩ�^��d��+w����Wu�W�@��7Jj���V�=>�﷤��)95�^8��c�zGA�O��	��
�BX��H��d��KK����jli�1;Dt�XV_�t���3U��S'K]�0�
�V��)N��Ċ�Nk_��YH��o<�ِ�`b��3����x}$��ͅ&8DHÂ�Zp�9�*U��0����啒����a�@E�^ ��q�[��D��H�`}a��X�5�K�<u���3�~V��
���i,K:�����]���2##ͨ8�+� 'qF�l�z�b� �gKű/�y�
�b!�5���wO�>����g��帖��?�)]8e{NzɖAq����!��4m<+Qg�_��/U��ddܩupV+2'R�]�w��q��7)j*��u�ٮ�A����=���@�P,�+��IEr���q�ޒ�E�!5��'���&fM1��+U�`��I]N�LX�\	�N�̣��Z4wLg
{Σ�|M�˝���=:�O\�ބ���v'R#R�"-��"dO'	���-��Q�*u�� �2u���8L(y��B�XH���~ڢ�4D4�={~
|
x)���%��X���8L���²!j"by1�y��3����KLeM�$����:w@�!㸗T�b�����v*ϋa���O�5]6t��5c�kf���ߗ�;����l�ې[���9���G�f.��\���I
���0%GO-�����u2����d�����e27ʅa%,��F�Q틨j�֭����v���PL�VE;�b#oS�6A�0{m�s�ҟ�0�����^l�e˷�WB�ĕ:�9څ��L�ș��}2x5�)	�A����X��3\�F�la}���-��?�Zgµ�`>j���i�;}N�Tr;�"?��F���d�ŒAv}ߝ>�>�\�ŀ�}�[nu�֔�UZ�]R{�w�қh<e�٫��|7��I��QE���u�\w`ڬ7žQ��%O�ht5vk���|�!��SY²)����?
�x-L0�*�jϾ:�&�۾�.�'��78�
�5|�:��[��׆2&j^ז*V�}�,�M2G	[4�XJr�U��Ga�ua��dz�n����>���S8���8����WV�/6>j�cY���^�����3@���32�������,�$���O[nb�>����G��N$�l��#��Nx�o�3�?5���-|G��)��rGa�@7�"�#�_Q�2o	�Q�}W��|֮�p�n���jZ��kS5�����G����,���?��0�/c�2aU��e.mPْ��QKc�
'(0�k�EU\�)P��:����j<F�"��������B{���߃L&x�,]<�o*�+A��y���ꉭ1��5�1v^��P��Qՠ�W�
�k=f<���G¾�=o��N6N�gX^l%>�*Yv�[�^����z������kE�>��w5~�U�v�X�~���ℏ�߶2-���Q�L�>��Z����n!	΄��ǜ�,vX�Ao1�b�W�X���Ig�մ��l����7�M1)��1�Ɉ���lmWU�^��*�]���o��Mr%C�i��Y�#y���w�LH��U��b{��7��;��Չn��zm���(������V ~�X�
#���6��������Z��|�ee]��l|L���zb�@��=�;�Z}љ]`���S?"[W�^v��Q��.��r�0�,�sz��T��;���]��A�a./Ĝb#��]?�P�^�V�%3�'v"w��?b2���s�0Z�<A�+G�p�x���4���wtT�J+/�fږ�-Ң\#�qG.���5�xot�c)A
�t&���E�ʟͮΨV�'C9j��x)[�eb��v{c�S��"7��$e6��t�ʻ;�W!1.�t���ٯ$%7� �DX��ɷ3	�mkIA:�U$pZ''z��d��$�+-4
Qhlc.56�i���Q������?��fx{7N�>gVWR8s�U�'-s��-tq���F9�]b�#�R�/�S�|��	�	�E	����o�L��6:yI��1���.7a��-�+[O7w9�WO#�<F����{q�h�
��F>fs�z
 �;�9nUM�k�ςg�\0YUSOM2��n�7B1�J�܊�����g�	�o/���LD���
FD�&F
	1��Щ�M���*�Ur:mu�j�3��p��N��j(�ܢ�X��������� ��-�Ytm3�"�A]�xW)&�8��X��V��k�d"��	ҘT �g��R�]Q�	�H�S,X�1�q�3�S3+��$��]k���g�|��L8��k	�l�l�!��Tb��vt�7��uJf@I7��.o���Z"��=8�	���0b��9�_��Gp���LDm��3�p��u��|�XV���s��C�l@�H���Iu�'Ŧ��^��[�
�j`�]�'CS�O��m�o��G)��I���3\�o�W뚰	�-��'���h�����Iw���j�����<Vc*$�(9&\C�6�2�:���..CTp��>]������)�7e˪�=�R��� 7>��D�%Ea�u��Xx�S��_�p�����W�B� *�C�Hjpe��V�*|4u�T�_�,L�w,(r�kXW�f�.{,��}dT�$ɒ��u*��W��u�
�z����S�m]{Z;��6�5S��2�_���ךꑗX���b
T���!��Ă�#o��[Om�FlQ��6�x��-l�.�̪�Cꩨo��YH%B�ȋT獒_�WD�b��Ft����bL�r�-
Bñ��O^ž��ЇtYʭ��G��i^ܡQ��8a��8c�
�5u�%�L�\1������.Lˈٰ�ڛC� ����i�HnQ�ey����dL�Xi'�c01L9q^���v�O�7'0�]���S���풸����J�I������s(H%K��<�ċ#�i*��O4�%�f�s������e��o?(�_&m��Kcԩ�[t�ٔVa�w	p�M�i��4I����%���9�sɋ��!��3���Z\�t�9��v5G/�'¦8"d�ao�����m���ѭ�sO�
�h��ɚd��Pϝ}RP��G
��4�f�h$xB��o�9�e�kE�iNX��՞#Ĵ�߫Twy[[i,ot
MpCEX3޷�v�غ�jTZ�X�2&�n�~&ْ�e�������.qH*{`�P{Nw(�1�-/�O��;�e{V 'YzӬ�q��]�%���0f:q��s�2�����E}ì55{��c�B�%�s�dȕ<v��f�'����O7tz��**�>�;d��.�_��؂�w������>�T��1m��I}��:y����l��6I�͝BMo����"|������!!�������xY�5g�cb��0���+����gJo,�OI�Us�Li��|�j@�"Ԋ:�"w�y�Luۢ���K|�/=�mc��_l���h�VV�`�W`�
6B �N��}�Z)(�8�VIu�� JzN-\B'e��#c�BՍd���4��WͲGXmK_d��0jdi�H���xA;�4�	��}�>��6q���/�g*�h5��6�-#K�j�|�P��=Mv��pt1�m^�GM������Yӡ+h`YZ9������
���P��!l�ų�1�Pp�^,��rڦ�R��d�6{�IM���G��:y�Q�hY��m-z���r�Y��.���`C}��N���C3�\��A�KNc�{S��E�n��uִ|�P.v�NF�ͻݖY�b��l�#�@�eߐv�����3�_��Dy�}����y�
�Gr�!���W�Q3�?�>�do�7�����H�Q���`��hm����|��4y�R�0�m��x�g5��z���J*��=�7-���&�W6Xcfzfɮ-�
�,ԧ�%"��2w+F�SRJV��5�#:� m��f5
�qCy�g�Z�-��ozc���795��O
�
����ax�,�����I�}R�uL�YzcQU�sYj"��YV�p遇YZ�'>t�n�,B%�d�y��tѪ�v�a�ǖS�TǗ[��黬�O�A^;u'�H�F�KFVK��J�bI]/[<KP:�Az�ӳ�E��J���|8y2��d�-�O��2q(�V���d5&��V�_|*7)C!_{V��N�J1��Ee'�rVܢ"}r�B[�f���W�Q;�1�R�wT��Rj�tm9�X+e+�#�Ur�M��u;�]��Wby`�yo�T�N��)���� g g;�sy��oI��CAI��>s��lgg�厧N�k�4ɘ�
a�gvz�I��d��%
S�����wa�R��%R;µ^c�h�~ض2���kR�Wn�#�\>Z��T�D����01�"n�`��V�P�����_�\
�u	�-����|6m��,<#׼Цz��O��]���&�����mP��{��Oc�]�Lf�d�xv�CW�;�h��<Z�Db!��]����A�<�Rp�
R�XM�6��m
��f^�I'�^vUh���n�)�O\�(!-���M0���Fø����S9�|=:�f,�YT6$�3L5M��^�^��F$9+���j��_<�eԎ��Xx�v	���l�y�J�H
�{1G�{�7�ׂݔ���|*�l}�W�-��@��(6H����MôÎtv�d��9N�	ᇴ�@Cy�+�-�(�iW��y�zML�A�-�?��j���Qsx&�X{I�C+<m&L"Gh,Yr�;fӖ�xZ�N󼧒���u��B�ʺ�q�t:K�o�*��,�Ь���6i���2�夦����@=�H��z*.��G`,������(|M����j'�خ�%=nRQ)-�ht��g���'�ʑZ\��#$Ǭ�y
�Sᚐ�3yu��&�!�L�ؓIu�aleCLr|
f�j�UCҍ��k�wd�~#��~w�b:O�b��+*ңo<f`�aCR�����A��
�#�엤V%}��DYoN���p#�'��˦���ՙ���X�r�4��G�`E�f�ģb��0�3O�kD֮���s!�+`�>�u8���#�x�������*�Q�љ��d�8�|&��:җ�Z���N���$� a�KL��2 -T�)���۶��GGב�">�b]GJUe��X�����z�%���Ė%�`z��	[gm-�'�t�]��EQ'�I�<m������}�r��f��g~�z�CSei�!�g-܍�D`]��K %��-�Q3�A���sIb`ڹ���
�␗j7����X�Ȇ$1J�?�
 � ��<���1�{���Vj�iB)��b�5˚ ڸ��?Y(,���v��Bූ�:+��k��pn�cR�Vg��
)�}��2��޴���:U�?�n�[6�N��W�b5(4(��[�>�A��++����q���nBU
���Ԇ��s��qWU`,�����
�70c|^�]F�������$T���D�y���PIB�,��v?|��Q͖P�in�;l�Ue��KY���`�@��(�g�}��uzV��t��d���<���j|H5�@�n�<p�w�Ǵݷ��Q�es�y.E����g|ǹ��6"$��7��t��+�U��>���S���Q��"c�(Z��|�K���ݍ���<'�w��Ӡ%`»z=?**�ё#刈�λ� \�f��1�����;��y�����I��~�3�v�:s��]
&�I�=�΢� �Z)��v���?hJ�s�oi�?���ة�h�0�.Y�֘\F�V$�h�?���r���p����qt���27�D�}�3���
��Y����0�[�����r��7XA]A>'ZR�l���,h�6Fg)�iQ�kx��c.���>��&xL�{^��\H�'��n��b���yW�K˨[s޻����]F7O�Ô~��k*��7�_h%?��Nt�Ɵ<K���Wm�ْ�A�u<�v.�)3�=*R��W���E5ꏔt�����;O/�_�`-����>�$@�%́Ԇ��+�W1	ߢ�ˑݻ���0r2R��*{~�<…��%�u�R�-�P�v��NX3 F8޲ˏ_hJ�D�㕦[������OPi���k��U8"���)��p>��g�Ӓ.jTN¦�m�-�zl�g4�3�=Ұ��|��kr߶J�Ԓ3D�Ӵ����ms��V�K��Aʺ��|�K'��{����
Y�`J�i�䇶�)�*WIKN�~m�fF�)��n_�=�x��gyl�!�I��k�(�j���+�S�?(��ƚV ��6M���h�G��N
�F��̛�a�]m�
���Ԁ����0 �`Ǘ9O�
���XE����!}�+�N��׹�WZg��G���}� +�4�6����:�e&�~f�Rԯ��aDg����u3I���@�
��g��pʥQ¤F(!��u��L�N&
mx5DN���9�/�����u}Qs�,[Y�j�9ŹO�����v�2��b�]K�2�Q@
0PU�Rp,R�!�n�����Ɏ33>i/<����P�ߵ3h�\�-������A�g�'5��j�ń�֯��p³R�ne<W�ju�\ij�I��s+T*�eS\E;@c�/9����7^j�5V��,��W�!
blY##�jp�
��*9%0�/K�N��4�I�NQZ�06��
���j�֝����Dc�.��!��e�t����l�"�?hz�K���
������ߨ(�>e&h��!$�����u��7�:�Z���S�[��z��ʝ?�Giv��I�[d!�ԡk�z3H6��2�׆�4f"��m�H
�����sp��1n�Ηa��m���)��O�Й��Ű0���:��mxQ�<5�1+�!ma(ǒ�V'i5��Jo�?�����v�B� �l����(�h봙�6J�[WKTsm��*K勁�a���۷��`>f杯�����gZ�vZï!���i�W̃�!j���B�4Yc]���[c�ӱ2��c�8b"N��O�s�oPN%O>�<���8�\"_.qXN��`��)>��r/��3���²��h�`c��>��p������VY�n�#w��Uf����<�J~��f���Oq���9:_1�,��,t��f�ٷ�
V�mg��mL�FJ~�E<k a��5�.St�&�ӷD ��idU��Ƶ5�Dz1�Ճf�����,��K��x��q,W��U�LY�G�z�-�����*��M��(�I�3�M50f"c&a7!o���t�,���0PTS�t�D�.��+�f�����]��F�V�lד�_�H�VAn뗚R�T���8�;�^�VŁ6���-5��B@�a=�V�i��?S'��B����`�����x$�]��Jm	5�dO�h�)�ne�ӸC��b J{+l�?���/�l\7�X����=��X��*]�ޞ�k�[tw�g7���:�
�Xj|��M��"�2��'Q+f*4��G�#�x������G�l�{eJ̿z�I��YjO�&=I�$�~W��$g�>f��2��'�5������S+Hl�,�Z�hF�X��@�\�CN�4~�O�u2bDa��}M�'��y��m�$E�k�S���7���|�kx�|8�2%�����s�uݍrzP���SCÌ�a�ms����=N��B���6��g2-,���ͤ)��ȉ�s$e�zޝ�/XV�'1p�,�E��I�U|��*Մ��yB�2��h�m{���8)�v�Z��k`�(x�3[쌰���p!2o�����<Ī�H����Cx���6J�s��-�!�}�B��81��6<^��h��P>�!���/�*w_k/c���&�0���1�����+^4�K
J���h���r��i�ⱙ�h�D�o;N��\v�0�����ʼn:b��[��u������_�31"���e�@�����y�-p10q��g����\���g������?��H�tF���%ʞ%�SQ1
Ŗj��V���nD�v��d&bq� �����d���v$�[���K�L�����^�R�ǡ��=�8ªN�YHzLJ�cQ��|c�zO"ij��P�l��}�Wo=�if�y��0��Nĺ̖�/�L��Y�D�f�m/�4�=�[�/�i�9[TS!���:O�垟�:�W����9��|[Eɲ��->�SM]&�&�:�u[E���t�O�a0ɍ3��}�XpM}�iR�nV����^Η�E���T�m(��3���ϖA�/�lӬ}�u��uiO�A�+Vb�����2�Yv��D��ټ�9^�#��^�F�C��7��C�g�sQ6��䝗7#���"�g�s-���-�4AOPw�h��T��|ҡt��k�3����l�]�P$�����G�,��X�`2\d�s%�R�"S鉨�J�q>�^1N"���	�*�m���SbJd�9�1>nܱm���%�Z(v�����]P@�6�QU��w^�;PF�%�5P^�6%K�����z�G�Px�]A�Օc�U}Ƕ?�h�=N���u���	g�=_��^�:z��-l��t�Z}r�rb˗��ێ�V��)w4>�ͥf4�%	X�jVf���=��6��adc{�h� 6��Ak\�ʈ�7W�	n�J�6WtPH8�Ĵ�(x�3ӄ��Oȉ1G�X+��O��EVZ�'o)2�y��1	\�at��ho�r�>�t�Oϼd�|���O�~��4���賟F�@9�(ݗn5��N�J�Y���ҩLG���ktx¢b��5r��\�<h���
�!�,	M6}Kбc&{@�$�Iݎ�/�S�2��;�nq5��Q�i�����E6	H��q��3�I�|3�z��d��T�U�2��Ĭ�=�\rJv�'aK���9f��{m�SSThO�,��
;g2�Ĉ�!�F'�2�k�#-芈��)�F�=`�/4p�5�r�v�d@�Q;J��#�vf��=��4��a�z���c�Ө}(�n�k�j�=Yz�*�t�e�6��f߽A^;�3�
���
fS?Y���8��ыt�Tۛ"H��Ȼ��)ͭ�q�����q��RNힰ楫1�md�$6��J`}���3�|c�;��%��r�
~�k��ʷ�#���]��ә�E�F^M!Ϭ�*g��ҭS�>"�]�5��@�Л`1���s�����Tp������M[��*�\����u 8��=J��5t��Lo��U��c,S��eq�$ܕ�h]8��,ep��e�)�����&]?L5�Q ����!�Ȫ�c_��ʴ��=��ғ�񝥚~���I%m)�%c�cv��7�x�U�O�ȟ���%�V�1�=���Fc�Ov�W�5���$�@
�������U���x�x=�*BE:��F��V�Z�7L�;���!��0��euF�F겟��p�5-�T=��
_�D���L���Ju�I~"�R)ٯ`��l�j�I�%`ᒾ�;r�+O�<�v»A�|�e~��,$�U���m��Z���E�b�)Q�[���|Y$�}T�TD:�����{h��}�">�i"��|7�`�^�C��V����o��M���@�Q�C+��+W��ׇ��"��I5���BGb�乩|�%����[�I��U-�׶\(WR�z =K"8�N76�e� W[�ę������]�_P�`��B5�ߴ0x���?�	ʉ�xb���;����J��b$l�+s�+���8(��g���uh���6��?��cx�>h��Ւ��w�Tj��'��Y���]�5o�
��-�� J��aV�w�6�`���gV�����ԋ�%Q��C�;�r�W9�fa�@b��Z�1C��\U򼹣��V˻WoOv(�h^�t/�@Y��MK=H�ɉ�� �z��GV#��Rm�셽![|MZZ|�J,�[!�0�J��o�k���rT�Ϛ:�)��do!3�x]%xB��]
[^39��IiW�e�\W��.*R��cv��`�{N�҉���|���i��.�FIs>���'3a���O��M�AW��q?3v�@ 8�K%~q�\��눯�.}�W�%`fw�h׉�-�ÈO8��e+��AQ'�q<8ZOz/)�40+4�\�	�V���"�X�������T����Q�o���Ld��:<w��^0��

�T��q1��
e�	�
-�5[ ݌y-�<GU3�l0]\V8L��w[ZK݌{zi|Dߪ>�f�a�c[p,���{�GĦ gΐ!�bAS��2H����N
)ҹ)ӹb9�'h�|7������^h���>b�6�U�K��8<e��2F$�͓.3#r���~ϫ��~n�ڭ�wx��g�ض��am�IG?^ܭ
��X�א�O%�a�6��؁zpr3�1��C�
<���C�U#��@��
�Lg��ap�(m�Q(�ץ��9���uJTa��l��&mȟ<ӫ>5Q�"�[�^8��J^�ơ_���ԩ�ٱ���f��e+Xt**�$������r��U���5?��]ҵ-+)X�T,ch�.��c-�n@%
�k��IqV�/URv�Sl`ެЙ�C�5o�k�J,�r�d��6iF�2�_yͅ�h����������K�����M~=�V���/,�ӝ'���~��͠l�f.<d���f��Y��s�u&m(�cr�Z4��d��\��l�2B��N���	�y�w#�\��Z��:���L��-�'�y�~�=9l�b�ԥ��m5��K�S[�ɸ�~����`1�ubΉL懤���`�Bx�m�\a�oAҳ��k�Qy�a�.����~��1�+@Af�����ؽC����S+�sN�_�G}�vND����dn(���Ò�LرU�v��w�[=��ȶ!�dڮ�0~z
��LH �̸����{�'--A���v��;���A��V�Ng{k=20-�*���Z�E��@��.6��X:��!��
�����bLdZaP���E��;���jV.tG˨h�Jo���>l�"](1#
>��;㨲a썳MU��ڽ�����J��|�<�yG�Jd|$O�$$�t⻮��E!����Dd�gU�'o���KL�u1#[�=^��/
\�����q=.#��㇫D�C����lj։"��c��JCF�™=����6
N���l�5�6�����G~1�_�<�W��O`Iy�0��c�%�G-�Zb1�ii太
2��3�$2
�h15��"`����\F
�-�lPY�W6i� 8M�m�mk.�����qw��sSNbFj.Ĝ��<DIs�墆��w��u/E�b��4v<���q{� ��d���kD��J��ҵ�a��欟��'i)-O�u�
��D`���@�S��86:�#����<������f8z�ф#��T�U�/�[�^��"%Eb|�������HN�#)(L�bI��R+:��5�yLk\%t�3ƭ1/���c�Xu"�N$������+|􍇶!q�� t݌�F�W��9��`�9�KL/<r���5���]��G%a�cx��T���e����m��8WMxUbS�3�w(A� ۪��ծl��2Ya=g�q��`��Ƌ#�R�6:�U�@*�y��xDŠ��ޅ�з3�Q*�V\��!�c�cN;|4��ÝC)���I��!��'�;^����-5�-b�3� h��b;Z��{���u��vmY9�z���w+�+�{���(�.���]�IOPm`��1��|�,�Q6e;`Uz����
�c�;����k�K$Ȝ|��I<]\�,����g����q���&9y-�㔏�l���P�Ŀ'P�	���6�u�+��!�ѺSV���h�W&?���8m���o��3FTB�OF	# ��M�d1N\�^��o1,��j+��B-.� �O�Â�#f�����4:��&�5h��)ȴ+d„�sYB�%��?�N��KZ��W*Ȯ�&�QD�
�<�O�M�����^���fT��Ŧ�l���K���$�d��}����V:{c��/dt��,(��?`�"1�'#�����dD�*���h���b�c���͹��:X��-P���V���G(����r��x�g3��U��7Ci3m��̖�e����3�F�8̎��s��;΃Z	�bc|d1O :kb�����sX�#8��6w��z�J�I�{�,9Ni����!��N��|��'��xpц}��q�3Y�-韥SS�gL�]Zv�d+�+-��:��A:����	W�U�S����&��e����8��JH���� ��9H���P��U��n���uN�j��L�D�vn2��ٶ�3��{�9^�F�}e����Mґ���&���.�>uc�v���Sܖ!<6?s>^�๱D�G����ũj$pM�����<G���A7�!��K ��C���R<=�0|&~��W,�AOo�<��WԔ��<��!cU��� �H�=�~�3�,^ӛM�T�F��i�={��
:�g^�
C(�{�;}wϦ%��f��:��6�^Fb�1�e��}�lui�;c��1D̟)�45rT���u�T���L���m��hL�"ⷽf���9wB�Tҡ����k��+��?-�[nI��[6����=��%7�#��c�!�vr���$Ǩ$j��O'0�		��Z�U�_�mp�(��z�V���*�ǰ5�
�,"K|�1�^=��v��'�v�UT��w��H
_�AFr���0I���J[�Ȥ�G11���c*��Ë��)aJ�y���@��8ll��PΫ��g�ue,�.q�2���5W�sO\����ץ<G��T �n�õvX��tk��7�C@�䢛"l1�C���Q���r�8m�'�u����{�i�yc��*��Yr��]�wa�pv=�Ko��WR�d��Z�����=�[�#����M��F���R�ز��$>)v��15�F�9+��B�+���'�A�t������]�s���
���)E�֪ݢK��Y���h��9a��tg-�GMd�q�O\ң�W��
�DB�:����\�8[�9k�R5��FG�Y�D�K!���pd@�D9�쏓p}�ؘ�[ȵ�\,9�4�D��N�fG�
�:�z�y����bs�d>�'�~�[+���,a�8.MrGEzl�h������2� �P|"��PzZ�k��>����Lռ�B��q�x�-
���L���Έ�PQ��鵭�hl�Zk����ijk��D�9lJ����Y^�w^Ϝc{L��&&��8
�zPMj�� ��Z��Iޘ�r���t�+F�V�,�ct�"
���m��.1
���<��u檽�d{�����n��_�`RUV_s�޷
��{4I��>F/��~��`�\���zϧ�,�w����1�s�{fc��;)��X����ҿG�~>�ݵ�1��N���k#���9V�jy��b>́Z��:{�;I�P�����V�u�
��W�z���\᫾�}7�G��9e�����N��s�>[�m
#z�!Q+�D#q^y_^a��X�j9�<��;���Y,n�y����X�!�ߟ\�h¼�e��	'�kyE���fϲ�,��U�}�LG�����`�j���A�`�@Fi��GL;�p�m�8�R|�-�RX/�@q���g�x��l�%Z�t��axx44�cTٯ�K���~~R��No)��	LG�Q�s1<uc2�m��q�*��Q��;w�iK�r!�"ݢw�2��b71ѵe�j��GU�kD�Vj�^��s�Y���N3�c`\� ��֤of�� �WN��kB1v��7Lt��d�c$�tG
%>1=����Gr����F�g�fЍ�6ngYl��U�ܕ����a��j���'q���D>�ˆ��)������U|������:�`�p�5�Y�0�G%G�:�-�V�I��V�Z��2��v0�8����P+^���u-��Y�MB��3H8cY%<as�'����)���<��ѕ��#	f}����|p�W.>� @m7p\�J*��7z�m=�>n�^-Ba������������S��:E�5'��GZe}t�*�~%� |H画�xPJ�!��;��+�'i���ރ�,y�e�@�\�t��r�U�`� ��:����Y#��v�=�RW�g>���,�ݾ�P�6������Й���8%�u��6�y�$�3��r��&��>���UK��$=�vQq���
�����1?L��N��7�� ��m8Nb�i��S�pS�c�!��Ũ�`�.��Mj���X�����~m"P��a����€Y���f
?�ӵgF�Z�������z���e~/O��₢sb�w�_��g�a0Ք1
ݛ��^�3�_V��\ǣr�Zկ�_�u�KI���'�V�,�$lۍ+<6���Q���9c哜$�O]�H�#4+
K��@���N7���vƳ��,�2���~,
��\���Io�ڔ�1�l�%L��XXS2<Y(���y����O�8�&D@���2��3������w��(���晪x��'f�� Y�΅�������e��Oq��ݣہ��m�뢞���NV�2�	�M�C>9^�^��3�h�8��%:�#��>IU��zU�n��l�R���(����.���p/�N���d�v�\��Mb��|��|�2��g&co�<���3����
�֥��e�4}��<�*����-����Ҷ�wL�C=
I�N���\�N]Ie5u�6	����5���"bF\S�8�V�MU�&bW�n�kz��|L�(F����gY�� �v�ɴ֠R�P
�@���\U�7�^/Z���J%��A��AC=1(`DLZ4Cgx�-D�i�e�U*)���Y�/i�O6G�I������v�.YMa���:?-ž�I�9ʕ����&���Z8�)�2/2�#ɏ�˻�!r�Lm&�L��E߶$ai픣��\��-P2g�<e~��C�l�Q�QY8�J�lf���Ӭ�P��c�x�D����[0rgd�c���?��\�ѕ���|GEʧ��
Q�`諽$= ��2�2%C�ũD�zͮ�m�Q/6��o�탚m����2 �w4KA�*fx����Ѥ�'��9����|������(���Jރg[U�ˈ�>��V-��V-���mi��l���&�ɹPk�~��r�X��jzt�5��\�n')�(TZ���g��4�r���˒�	���6eu�
+'NM��#��@y�l٫��xȽo���&Ʒ�NNcn�����n{w�"fG	���Sefqh��5�m��}�R��T�
���Q�I؅2�O-�]s�HcY�*b�\j�e��Y���:,PSc,�S�26�����NJ�3��0����7�gl�������JS����X�d=5j�6qE��i�P@�����D��m��f��K���#�M�Yf���'�qł�|��-ۮC3��%��ٺmWH�Ͳ�<�yQ��(\���e�I�f������!��I�:S�x��ì{{Zlip-(8�~<p��g2��f!"������S�r�q�����>��w�8�u�V����
ZqVwM���Eq����f�q9�ݰ�z|4�![S����*4w�Ɗ�'�v��<�?T��Q�a�n�o؈ �+�>�o8ϛ
Z�i.|����n������Qy�����M4U���q�RQǪ,�Oi��Z�y�q��d���2�RL����;��m��"����i��mE�k2n���µ�wߵ��D���5�^{2��)J�)��|gSk܎q��.L��O풱�H��1K���2�~�>v��iG� �ZSc`/=�*���a�91��c��\�b��^(q��3�����D��%�霷��[��3�i�x{0��m~�9mL|ֹ\z�I�cXq�B���Z}��d1�[C�)��T�(#Ya:�Uc1’�znm>�-T�6��6�� �9,�W�\��r]������˘β��s���Ϊ�:��gzv�Tb+�xN�;q�Wq��?p��D��I1�M�<f��T�#ĭvzl�������F�>,ZE���ґԓC�jR���t�ܾ��L��Y�ZD�*����Zb��{��L����[ebT�[N0�p���xϮ�%�#�B�2���D�Q�^�EV��}6T�U�h�\�?���tU����?IE��q�j��={���q~�e�;Bi&F]� 	7�L�%������d���,�*�g�l���(����&����c5%�6fU��%�+.b�X�h����UkL}r��XX����1Վp��k�L!��m|T$�M�:]f�d�]YdՌ�5%�`z��4������+��yDFoЬ%Ͱ���4z��t�
�#95�Z�<�*�����QH��irb��r��M1ݳ0]X��D�h�䤮{C5��+W�%��m�13���U`GO��9,�{��]=˻�Ƨ>���V�u�y��'�!V�S��Q�nQV���֧j�ꆩN
��m���Ӥ]�Z��L��=ٷ|�g�q�
,�b;k�!��q�}2�T!��D�2}M�E�[�
L���(&ua��T�8��Gxܢ�X�ձ�>p/V��;�5�G�P�"ݫWk�� be����Ǒ��w��˾ZG -���ۧ+�ޢWq6{G�d�̀�geH�>���	IEz�yrc#�r���=��?v�7��=�|c@m,����x��J�[O�^�DL����f�nE�?FGeo�~���[�ږl�Z7�9E]�k����0X�C)�aL�\/�zK�+�&�e^�;P�V��D[
��[�	T�Ie](`����|LґVޢJ��t���YY��>�9��[������i1���gX�le�w���6w��`�6�E�^u������j]�
�k��2��a���r�z�����e���+ږYH�:d+j����qkZ����j%��9���^��˴�i)[����������8��K��H��V
u��'�OгT�������x�=se+��l�R[�\ּ�l[k��!06�U�y˱���4)��G"y�X��c,ܓ����&~vWgJ��ϛ�o�{�ޚ�M���|���N��Y�r�s�����3gN�"���bi��.S:R�I��ـ�-q�h��gG.CM,~� ��*��A��U�0k��-Y+J��EkCׂ�$$7���PY��;�Tʏ|�I�*a�@�{v�	ߌA@Dr-��@���G),H
�1���3PgWZ��_���S��9���,۷��`��>��O�]&���ܽc\��1�m3��QR�d;�Ȼ�`���]WWY;!;���֪��3��Ю�0$����)�/]���񞅎>Ŀ�ձ�h�		9��J�[`�IK�,�u�U�J��!��'~٪GF�ؿ!F��
�#!�%��������i��d���
W�.PK�샖.�0��Mx9�oa��������H'��W��N�� <��8�g�������>�)��(duR�f<�Τt��[�>�����ޙN~��1�9���b������I��̎&g��eXr)�,`���P�����@*��pS�6<U�d�9n�[J��곢���d$���𦭙b�i&/9ɟ>F�9��Fu�S����{��+���t]9W_%�N�<�����F��4�*�i��U;�0�nK�o�}��+�zz�g9P�y�t�T|�"qt⾹ik�׍��0B�-�lՀ��1~�1d9�bΜ�OU��
���-{��2�`�mXO��E�Uk�L<Z����PY�Y;�N�e���t�-u+@�yg"�̩��#u�Յթ;ē֟�N.:��7���;mi.g��
���̻zO�|�)���6�)K����5@e�m&�{��tj�2��ܩ,�m�����֪���`�gx���`b!��K��EB��2��1���@!`�B�"�_���ܴ���}�}���h`��X5,����U��Nb�{�y�n��M�F�
��7���,�\�����h|���|%8��>�b�+A����X��11>�;�S�bM?�5�5xk6����$��V�6}��;6q�U�O+-_*������h:�!l^ߦ�@�AL�)�M�OFOE=<�.g�3|�A.�;��o��D �6�k+c�PL��gW���d��s��I��~z$��CW�LćG�?��pz���2'��g<�[NL���ħ�Q�|��M�����4��M�_��˛�;���<�f=xw���>�	����׆,���g��2Q>�Q�:b{���3�{T`}y~�\��>��VzFo��#�U,m���vB,Vb�d�.��K��-+'�M�k�đrÎ�>�vFzFW��*o�fGٺ��o�j��λ'��7�y�?f����Z��H��׮�QE�/q�R�
���?.��w���Cn\�pBޡjnh�6R���i&��	�����z꤮��-GL?N���%�TV�Ic�/�Lv�����m�2��cW8�����P|���U��N�{dح�if�U��νn��֨G��4�{�Ic;�^�U�.v���qz��Z��vJ��׻�g|_�����/mr�S�-F���;1��6��{�%.�|+�y�m1J�8bÅu�S]B�������b��[��Q�4�n����I#���4V���}��}����ָ_�|ب�b���Y�p����(�����7���L�TU��z�H��ҭڸ�qrM�{g�u��Jd��� �8�v�#|d�,�}.��k�D�.��q^���J��<!ϟSo5����������l�.�0�/�>��R-��l�k�i�;�]����MI}�c0��ˎ)�|�����zђ�9
bo�wmF��iR�ti�7�L>��+�eeT����h��0�!G�O�H��c-��J�c[bΣtz��mJk��a'�?�26�˔�d�-52� f8�ܮ"�H�e�M�]B�[�l�$�[Il�y��|������7TB����#�:<}qQ�O����Ϯ.b7���r~���C��!lA����
VsͰ_1��*H\�E��gi(��y`�Lv�|���9��;���J�[��&t��O	RV�u���9c�f�%��li�3�i�?�ɞ�89��m��ah�<}��珹�<���[�x��f+W��^%q��jǫ��U�^�$k�E$��/��7SsL? ��!����+��sK�#�7W`��A��ͼ�f�i!lǪmG����B�ڳ!�h��h����=��S����R:���^�>&k։��%bd�~J�@j���Y�w���2�l8=��P�릯�y�i�s�����&lY�C��F����������[lq�^l�sCGN����ޥ͔ܸ)�s:���mY��9Ealn�=(��n�ꐪ�`�8r��/+��8�Y��ޣ8�t�5�򝦡i9[
3EEdR~�ҖXV�2F[����B�߳�-w�e�1���V��Ӂ[ �\.iq�޵�A�M�SY�G�L�;n��l��dD�s"���L�,-R3��ȸb�ht1s�wĩp1�'��s��Q]
H����
|��斞���:p���4��M�zB��v勝��Eq6r%EA���KSw8Hr�i�,�$Ģަ��(����4�4��&gn�x-`g��͌�%�\��ms��E��I�\t��ϧ�v�B>;��n�Iɓӟ(j*�R����q��>�~bʣQ(�א�վV,���aEF��x��W��5����¥��+�M��N�T��`1��`�}ć������}g#�|7�v��=3�D��#��6`G��{��ۏ�o�[K���s��\���P(�!X�|��˖I��K��'ߋ����WC,\*90�;���
cI��� �@U�U�8Cl�;�AF��3l%IW��<��FzGh�Su�(���P�Ҝ������?М�R۲W9�>�ڡo&Q2���щ����Y�Z��C�@d3Ǫbg��-��n�3��Y��]5:��;���=�|������&L�5r�z�1�X�hŷ�C�ɴ���ະ!���䉞[e�\y�L׭�$����t�wbL4��G~M=M�a�F���t�W
���?>�!V)G�-�;f�7i�������d�b&D��ct��~d�T�N�~WϤ�0S�a��y����2��Rz1P�3��
c`�[��X}Vo]�V���`yUqlH��6atu�`� � ��E�"�Pג&
7[یzK�>������#��kW�%׳�y�=y���*�\��'��{�d¹�ռ����j�%�H|�h��{L�����]� ��$��u"+�6�>��ȍ�v�a�;��`����w�᧧��(r�m��r��f��с���ȘbW��R\��M]]8y�z3T��{	���x_O���/�[��^?��D��'�.ʙEfM�I|z3�=�
D�	�,k;���L��	�)�i�aQ�.����!����'ُ~�?�s�ԣ˓�zH��/Z���.P�<
�ؖ�؂X��V�<���N6Ϧ�M���#&>��A��l����]�V�`���$���d=2���S�w���PF�0*����e�-�~���}'݁�S���'i��g>�>��������`���nӾAp�O��o�I����t��.k��)�:V��y��ug�ֿ�N}�g�]9��9���"�k�iIY�J�,�N����l�`����F��AO!ۉN���;NP�~V�"M�˘�*y* ��"6�DLm�%]Һ,�5W�<���'%kMj�5�m9d��S���Y�!���~?0㓙=�Dl��l)�ז�d������T�s' JU�
d8�y�UL���ا�>��X!��u|��=��0���&|�f�W����n�?C-�<�T�kb�	R�7F��kG��z~��O�I��,LC)</k�2��Qha�N�EϦ0	�{�$��!�vR��s��R�P<�Pe����&^N��׵�3��	X�Tp4�j<W�i�]�!��zg��-�N{��g�r;La��$�fvW�xlu#bn�n9�����%�����Xf{g�r}�Y}]E*�zj��V�6����ҹ��e� QL�X��������gh�_���;���Z�T~������w��";d��|t�?�����T)ɉ�x�Œ1���*ǒ#w��3��C&6�G���ˑ/�l(ͳl��8���v˱���6��)�G?1��i��p�����7ۡ!��c��X���g|Ԇ<t��0q3��랁��a|6��3���8�AS���:ڢ��N@u��(ߖ���e@A���/�vȖ}&3��#=�	��g��g�����^KN=g:��Ӵ�29�F�iߥd�
�{M���,�T)�I��
�i�!�d�>p�S6�';6c'>l�]����3�}����N#-�s�?����i�DvP����!�S�����c
{r��~��1Q��F�a����H�c�������Sqn6�u�Vq<�r��&v�����4�C]�x��N�o����sZ?€f���:bX�
jħhf��)&�� gO����?�4M�����r��V� <���(��Ȍ5G��rԽS�%0qw{}-�r^+��.L��_3pVU��̚
+���^�K:� .Y�i]����Aģ������O3��<��y��>���f����n�_3�ѝ��;�_re����<�N\BI��z<U~1��i�0X�� �������DFDF}ƨ���xrX�|�����zͳ�P�P��g?���&3O=���<���~ُ��I����x۾Z��ǯ��X\��ҵ�|�1?��R�r=�>��za�1��nyq��'Oe�Co�Χ�r�����yf�Y��>���7(���V7��^�zy�~�Ȧeq�ŏ��
��ٷ�r&c9r�6u��)�L�f�|��d�L{#)��’��=�����[���Q��/�]�{i��g�zM����<=M���=r|��T���K�Rc�����6-��>ovQ{��P1���;��q��2'h��kD��L��W
� @y��L@6y��c�"L����e�*Dy'��}L�N}&r�J�D���y1X��"w,
�d�#����㞲���� 
a8�_&,��t���"������m�`�Y��S�4�W�2�O�JJ�W;�R���8n�2���TQ8�n%"�}�gL͒�e��a��}�8��2h�ß��o�z��s`rA�y�N��6�
a���v��JOQ���J�h���!\1��������f�X��ժ��G���K�*uS�?HxW��&W�?4��ș����X�O	��h����Fi��VÏ.jL�T�Β����f~^.{AKct��gm�:��X)1��02q���7��e�	U�D�iH�T�����rR�`�`�%��q��=-ё��f�Ӹ3�q+��f����4Om��M|�ŷˏ�˦'�(�nC��,>T�To��c9�N~�/�7��7� ^�����w���`�	��'#ݔ��c�J�T�Y�J{�	�xtͳhW~0���?
�?L�&{FD�8^��,�=���:���:��gPw�3�c���[Xq��;�1"H�I^ٞ��o�:��B���I#<Tj��tLK�6���|�L�9�%����/�_�pk����=�Ud�DrKq��d�')!�l�@���c+sO�Q�=�X<���Z&�P�i�_ϰl��+z�Ca���G*զz�'$w):ҫ�R'gHY�,F@��9����Ƴo_Bk\�ȶ
彮ێ'ME����YӦm�q�|^~o w�w�M�DT�d�i�w�)�x'����������RB��\aK�����'���M��YY=e��XZ����8D���И	�S��<��3�X-�^X�y%Gi�)��ɬ�tH%�>���/k��鄸�1�#��#�j��i.�����>�L�N}?a�)����`f�V. �z���A%���L�PLzaOʝ�IҐ�V��A^p���z�j2�{t�Ң���_h\v#3��6����?NZ�o�N�l�I�Ɏ'1�?���=��w�2������޺���97����L7Y����`U#;Lg�nL�>�;���F�7�& �3���%ң�	lS�\�m���<���!�����
H�v�hLH@�9!��:�f��<���̤W��$ND�i������=�1�N9$&CM��ןvi,���I��T��ZG����
$�î�f�瞕�+�{�.�6�+�Lni1�nӾ�r{a�B�(ӓ��Kfʋ�`��
�\��Q��nf��z�4�&}?|ퟫP$S����F�퟼ejn���a"�]y@�Z^�K�����T��0r�q�4�fƨ��Q�X�޳�z$�%��&��^\�8r��9�c/�Iw��Ɖ���غp�Y07��NCO:(9�k�~�n��O�}����#r�G�f1l"GsADjM�D����ze�a��G'i��K�%?��y2y��7o	�=��#�6����ѧ1�z}�Q�:h-�$��PL�Yb���T�]�O�Մ���Y�(c��LOP�#$���a�%((�|�[j�KJ0n������[x;��
�{��>��`��c��=�Bˁ�ݲ��]^i5��˓����7��DD{�wP�9��U��S��@����/�6,Y�aJ��p���c,��1���>�˫��L��'#=;���NWi"��TX��{�7�U�ˀ��)2��N�._���"bw8�������c�;��9f���a�0�j����L�"��y���V�Х%a9�;�G��'i����0 =P�!;FY�V(�꒞��Ӽ�B���+�'��CqpK0����G�{rȕ���J�I�9+�=��
J�Gk��[<v0Y�ޑ�uLe��Y3W�Jb=s��3�wʓ�1s�xG��f9��
�?��ܧ|�\��=uȸ��"7�����ЋK�R���ගt�.[��PO��L��a���8E�Nr�1l���KM��pCbW���7l�ϩq)�l�+����L�H&j1*�Ti��a3��]�!�ˎj�s8L���=�9Y]k�-�Y�j�����-��pm�ȥ��#������(�;1랟4@ĵb�J�d���R��|j?J�0S���X5+NJ#:��y2@U��N�k�-�R��:@�Z�Y��"1|	m��ۦ'ݢ��6 0=�s��NExM�|�d��E�R1� ���*>�����-�8���>�f0h�?��TH���lg����΍���H����T!�C�0���u"�`E>�p�7TF�0�_K��C��nl[!�"���I,���{���i�����6�s�FFS��v���q�At͓���<�5�xFV�$D�6�p�\�>�C�9=�8�Fm�_�N}1�����S�2C�fi�B*6%�^1�r��.�dj@��Z��M���]��*U���]�/�N��
`�毵�P̽���/Lv�-�-�'l�O�ZK��� ��q�Ѓ�rc#���G�����}�O��0��$G���;@ڷ4��_t���D��T62E�U�tl�I�O�3r���Q�#�	�-�x�2����ZGe���\۴g��p�-�S��zP]Bc9��=�/ِD�O�H����tÎ�3�>�dm��hr-�ֱL� ��QC3�da6$�4��:��Lj��)���)�c]�89��J*�,�E�<�c��BA�;P�
'��d7ʵ��5)U}pzAo����Z�z�:����tl�ǾK�f,	�"�a����-�9��\�Pm�5D;���^Y���Zg%GC�W�ma,�!,�d�O^!����*"��{*�([���:��I�<�����LY��uBe}OM�KE��-�Ǜxu#'}�3Ķ�2>؝�xȴ_��Lh���e�)�Ptԁ�ؒ��J�|�wL��8�I�����m;>?�򸝃�H����o)�`��%Z��.P�[�^Ws�,
�	��j���`��A��c���c�?�=3铟M��bGq��ە=�|s���
��bg��!���s���M�	���ܷͶ�Ͳ#�9���Î�(��,����yq}�#>��G.� �QT�L��f�۔�ֹ����3	�H�Ǜ�4�=��&�H�Lv.�Q����l�9�zN�s���3"����/͞}��l���[��s�y�v�}n3����=�S��s��"u&�U'�Z�OZ�Z��=�l�
�frc�@�>�!1��S3^'Y��P���$�FѶ@���}���zm�s��;U&�wI�9�a�ks����}><l���o�;�)��}���f�k��Ҿ���ê	u)�\r�#��d�j�L]�� �N�N%J!�-޳%=Y�5��B�I*��=�z�n�d���|�%:C��g%����M�䯫�z��)=��M֐��3+dÉ�b
8,��:Gm�&\�N��Exɡ�b�gn^~;BP��Z�	C���{2"v�n�Y��z� D1�[��$rܜ͸3�ր�00��]�1O?T�9Lms�F�;��������3a�X[A�GxJ寁�Eu���P��д��h��60���y;b��M�v�A�0��[$3�@bc���?��_XB�'��`�1����)�`iu��ݜ��L.�=�<���x���|�a�1���>��|�n;| fbv�q�����DGq�ߑә�e�F�1��g�#���|)��~�!���yG��껺�Ә�_��ZV=�'���GLc��_\��e3���>�9�H�~��f���oݱ�l�>�fw�ͽ2�s�Q�1��G�A�!�-�FR���'ӓ��t��8�d��]��W�uZ�ב�]�A\�hW�謏��g�ϸ-D�z7
��h#���4P��.К��o�.�Ѫ����G�jEk��T��_QS0{#1�������.���![�}g�q�|�����n�93�l��ˌ�Q��OM@�Rg!ݲݿ/Lg̕�朌����cpY�p�˒�@����AJ��X[�ˣ�+�����U��f����Nj��6�H�N��u )�����Yg"�G	ˈ����E��T���߬j���({+ن�v(�KŠ���V�:h�Iqj�ĩr=ER_��|���ϛ+��::^��F3�����`�� �̊�tB�z��(Y�ꥃ�\�wD�y�by)�1�D�1���`���Vx�v�;I����,�z
oy!8r����*�q���*!��7�����4���F�T$'�c3G���8��4oIq8���ߘ��o.;���Hq��{k���굿�x�3+�[��=l�����L����H~������{={����x�o��m����Q���G*p8��
!>�N�3�s�ϧ�~랙3�\����1iז�K��9.=�f���y���2Z��=��x�{��:�������|�e'q�!��p�
L����Œ�{7��7'��8�5�)%���N.�9��џyY��������6�N}�{�
��V���1���_l+֎6;��6w��ί�y���̸�����56�T�j���Er �vH���N8c�1R�?Q�9~���7�|�Q�##x�
?��p\g�0vdzN%�����8G�m��<|�Xy��^i�ϧ�O���Ǿ�"1���.0���]$t�.�k�	C� V��4 �F7˃*0|aT?	mi�y\0Hթ�8!T�	Q9H ���*�,��âC5��2��F���&�{i��<�m��(N6v�̋s��N�#����Uc�n谔��%,(���3�K�Zl)2(�)x���S�zx��	{��х�Ot�,�"ɞ�Dr���O���j§RJ%i"�H��v����>T vߩ��Ċœ�b@c��h���P\�O�1$5 E>x�("�̘���4�r���׎Y���߸��3#>�Qi]}�X;�� ��(�"%l�l?n���9s�,�E\����߱{����ޞ�_I�`��zǑ��7�DL�o�Í0�?����3�x��1��{|?V}2~dG�ͻg��P�Ϥ���O��#�j�x�]F?���R�/�kN��A6Ŷ�δg�H��E+Xh�t����eзSNk�x�A���IL������c�A��F�7š�/,b�����AcG�C�]=����3���v-���_�N}�wm�N�~'�&rh�Z�ȯs�]�u��;#G���1�r_����W�����|ǚ�#A��o��*�gf2\E���H��r׵��9���|���[�۶s���R!ښ�1C�v�1�2G�v�FO	�|���O�O(��^�>f�ǟ��؏�l�L������dG�}��fz�eH/�W�7-����
�o�ҍL���O��	�:}N�z6���1��,Nb�����4�>����4l3��KD�h���ъ�J�&��A�@O� ��ܢ0>Y@��G�W~�1�ǩy���W�;I��)9�V!'��~j��Bo�C��Jġb|�M���xi.=�}-i�WiN��p/#��\ȁ��󑱃;�%Z��xxMs�%��S˥bg����ubw��t�.xᙚ�6��̗����p�.+�#�Y#~��!ߏi�㍏��ǨD?!k��b|��ˣ�۞φ����q3���8x�lzg�p��q�?���ˍ�[O�'��{�,�`���1��"e�1�WB�O���5�vr6�^?+�i����|���y��t?�Oo\��<>����s˼~���H͂>�;�g���d{8r��]U��%R����n��1���o�a���S�]h�%�b,Dz�F�����Y�Y1�	�
w��)ܰ-(�٪�}�2�F�c�#�>�o�+���^3�e��q�|+o�nN��x�ܵ�ϵ9���Y����w��'�
�3%%0��=E0C1�%,Ͷ����M[7�}����؟i���=�}�;��'8G��<c���7�a�Ǭ���#�H�3;�W\��A�І�e��j��>T|c������NiP{L�p��K#���&��Iq&?x�V&eФZ�QR](���r�V�E�_��Qg]�u�K1�ܺ��
��
8Ix}�
��}b�=K(K��-AB���J�W����l�"Z�g��U!���F)mr`��%�
��F�N��G�A���=���&~�#6Z˥^��ŭ|x�@�Cy�j(����Y�����I	?Ð���d�h���kr<�����@B��Tf�wݠ�D-�RY���.�r�8�$y����e��������&'q��c�gh���lُe����;����/�G�˛�~�J����yM�����Q���ǟ]�=3�����M�Xۈ���+^�\%+����/l�Ϧo<~�}r1,���c8艎ر��}�-����pg]��gz��O�#�lS����L�_���A6`hϡ�2'7��"#����v�����o?�NLfٶiꉓaaW	�1�����	)�GN�����XC�����O�̧�N7�`t�E���>���t�Y8C��\�O��!��^A�G�&�H�#k'��Ky�4U�ha3�s�3�~���&=$r �ѐq�x��D�Fg�@st�o��z��r}��Lt�.1���c?���nr3��߶o�L��,�g�#�������S�U��+[�R[��m��\�fRì`��`r���&�Q`�dbY�'ţ�w�g�,>+�1��ӀQ�y�Q��pR�QD[2���_���x��v����cبSS2RC�L#�9L��Cw��_���|`2LN�B�2�����$S����ϟ�b0�M��
�r�aD!r��z��o$�H����?����Q��r3��<�����&qq�i�2�!�g�1#��bi"�X��k��L�#[Һ_��-SO#���(�w�@qڥ�Z�a��n?����3�3ծ�gpN&f+�s��j?�v�!|��z���333���н@��<}�į�{#cQD�N����鞳��!�iI��Y�u
�3��i.�¶����)�ᐵ4wK9D��=�Ŀh,�oP��/�G�X������8�)��g�kt&Σ'�lS�gD���t��Y�#�9�g9�����9xǟ�#ӷ�##l���6����+�o�!�����|�Ƞ"��
�;�hq3b_DDD�<m0aj(V�q�F���N 5*|���:�P� ���3対N�l�e�c~�����s��"�\O�h�P��g�c����
2����_���Ya�~�%��G�6���F�8R[z�!��Fo�LǛ�w�gm�~�O�Z���xÝ�S�O�̜�?_�/T�(lZ�:�e�QVx-���Ԩ���%����6yLn}�hiTɢ�vt��u+���5#�<][��,ꩲ>UT�-EH�#�YC:�~�~(G���
{\>��h�w�1\�0�	L�W>�2c������0=��C�"H�3�uE'#H����0o�%�E�.5����=M��ES0��r����:G�(�5�5z�ˢ���ˑ�6��.]�gp-S���$�Wһz2S��%����ˤo�""�cold�g�#����l��(r�{#gH<�����]\9C�>��}6w�*��6�[���w�}��-`��A�O�џqZ��MS"t�@K�9aк�������\ed|K�>C��&}0 ��������!����Y.�ǖ6���P�);��OL����E���m�W��wI�����05�9��$��E�Ǩ�o�O��B������Nn���%9�"��@�b�[cݑ��>W킹��(=�q�0H�G/L��y"�
6ۄ�Ll[ƕ��f}�{�M�^�~څ�q�_�g����F}�z=I�%��U�+�U����R|�M)G�+�U\`�i��7t�/l>{���}v��tn�x-Dc�va
����"~�����Y3]1��6XkG��%@��^��޸\�_��3�1�;�q��Y���7ػz����Z!�_P�s�l0����|��r4n�|�zD��ю(�x(�6��{��1<�7����asq;�
LG������3矁�z�N�ٶ��uZڀr���QtW,�X�5�~l#j]?��9/�����8-Z�ϙ�(�~[%WQ��I��qb"�%�I�af`¦��:�UI��k(T�,����;L�dR<8�H��2ʘ$\��|�s����0�&yC�/����m�1�c��0�#�i6Q��*`�����XG�����*2RC�29">H�܏����i��;NL�\2�����>�����+��>!��2ad/\�gI&��Ȝ�&'��!<��cnX9Ί�=�҈��Y�o�ߜefHr��m3����@��QC��:q!�a���j���2,�TJ����)<����G�%�^�q�D��>�����=.�N�&+�Pö<�Y�����G�(T�[)�D��I?��d#X�1�n:�&-����c��T�Ux�u�]%bu[/k��.�q:��݃G1�Ӡ���0L�
F�����p�
��a��J�m7��)���.c�m89#����ߣ	�oM��m�|E�11�Z���l+�@�c
��O<��dL�Nv��_��e��#R?_�j���R�,]�n8���t���O����Fp��dF#���9�&g!Y?R�ɀ��p�Hdc��n���zN{��m�+�W�B�I�Ԟ�)�}�6f#V�?�����r��j�<L�;�i�8�_Eۻ�8z�8�2{��uXr����Dys�vͿ���K>�~�8�tek1��2�հ0�!���lF������pj�*���J�Y!�,�x��}��X҄N��EIaV�O�:bf��P'%�����:w�}�9��J��K�MZ��q�GMK�ZS1��ym�#��$\����$58uI"\�&đ��8*���w�(�6Jae���=��o	��S9����[���#���C�g��=��yb$�qO?8�=;��A
E��h ��$��y�;~>d���
>?+��m�c�K�����_��lm%�.BX!%�=������}s�?�m�9�bx�iY�fi����w��a�۲���~GͶ��R�ا>�}�+\R2�䋪"�;s%D��F�9�>�;�5S�Q�Y߸J�sׯ�\$,QFsb���G���:cr����#b��*��`�'�����f0κ�,��d�d��'i�;Jn�̞��ڒ�}ֵ.�����hn�; `��Ƴ����E�+��j�����?3�6i�<Qn�(�)����<�0�s��ï��c*���+
��m����N���(�4�ȹzm�8ȉ����#����K�}2V9�����w�'Z_�m�\���N
Em�$�j��8�@G�apͶ���M �b\m��3��_���"3n�э����kK�N�L�w������L/v?�>~�CT:O>A��F�۳���E�>���w�Ĥ��vjtB���hÓ�.B�U���BM{�\��d��7��‹�[UK�v�0 'ͷ.'�n[
_t�#�蒦:�^���ً����H��_L� ��H
bw6��9�|/v�r�]g��Qw٫13�@�Ldw��R7�P��2F;`��t�w�")�)�;��6fC���
�1]>a��9���L�=�6�Ȏ�^���O0L���؝����Ș�Nc�#�'yq��٦�w�����l8����|�N����;��Y�ķ;�F�~'��6�$c������_�f�#�f&>\VǺ����Y)c:�|�iC��b �.[7L`���Ȱ�0:��Aqf"f'��~}y�*ǙL�N�=�̞s�3#��|t��AϦ�d�����g�9/�
�O�q�P��e�_�l��J$�y)�t��d�Nd�M��Kl�=����8ة��/›IJ�T�N��ybkAy�[����`:[�W�Gћ�7�隧m�Dw���0�����O���q���b?lTLO��0d��Yg6�MxD��	���d��S�BzM��ا�|^�C���=so�F�89�Ƕ.?^��o��l�?̜��~F?��/�?i�8�NnS��U�����H��D�:X����Ґ��]�7����"���BJ��y��UX�� 2jh��l����#dM��z�f"Σ������;j��a�$�2i�8�:<�;�7��8��3�!��� AϾ��)9޹�t�,����A�?1�7�޶�=����L>�3�R+��"6�w�?�����	Î6[�D��N�1�aL��O����G�7�Ӆ>a�u[I��S����}k�t0�-�ja�$�D
7���[ʐ<m`4�������~���-�z��l�1>y?3��()��qyg�+~�{涞�߂�Y`�\��1<�g+�$z�#�@4$#��_,����Q��&bg�}=0���9�.�i�� �G�&7�ߗ�|v��'{{#s�af�[i��d{r}r}���6�(f�w��`�!�����%�8��a�j6���m��O�g�=���ӑ��O�'���?�c#�x�ӂ�)�J��$3�/�|��|'���
<�z�VJ����s؜���X{�b��Fk��3ļѴ�mJ�X��:�W�R=C��`c�fy��)��aj����~��	�_+F�	fj���*~���?l����^%D~��u}�'+T�yzq�ˏ��4G�5&�S�o����}g#'���f���M�"����L�?P Ψ^r��ӾY�}��ʳ�v�Oh��&q�«N}8:F{�zz��f���6B�Cy(�ܤ�3�Q�]�#���'e�c�8%.�D��1>n1������x͊"�<{L�Iu����Ӏۖ�,��0�?o��4Ȁ��R��|�VC!�g��K�u���P?*�4��R��*cc����T����'ۆX��P�����"219��v9�D��o8���3��
'随�+�v��������ov����VY��g�	��LlQ�;g(����]�|9�]0�n�c���r�e�ac��
���e�cCgO�{C��}3l���G�89�0��bs���d��Ցү��F�g�JC#D�<ֳ>��;�ʰrS`�ެ¦���z3�3��3�d�}Fo�L��o�O��EOSY��DO8	�g�-OZ��EQaBʛN�
����Kd����&?��ʉ�q����u��u���#����vN���}m����ͼ��2�S9P"W앇�G,۶m2{e�uƏ������'�y�kǏZ��F��w�ӿУi�����N�	�����녚�m�3��9�~�
}�WEx��s��x�S8��U;#����Ǥg6m��2>����������+�C%�2cbbJc�s}�߶�|7��+�z��^᭡p8���I��b�c�#<B�?21��ْ�i_�c�O!�t�����R����r�}1�팟���������*S1�g~Y��,�����׹�"�Y�Ey�5/��s��{��_X� bcq��2͹v��wH��;"e��-�g��E<x��qZ�1��o���'��sťg�|���=%J��F=q��.c�m�aF3��#�����f3A�+�ꊴ��A_C6����NN]���{�d��Fіٲ������8�-��D��Ɉ����/�g6.�!"+��y�Ǜ�7��"w����۴v�(R���DÒ/p�|�_�Hdžd��@�8�v�]�'��_��J��^��8�zGv�k��9��0�Q�Ns)��qS�?�IDX��ݳ�~ё�e���E��ѺJ��s�0#�#�z�f�_��2c��\�]�f2=��ݻ��?|p�f���`�Ѿ�ݸ�Oo\I@��@�\ɉ�S��f����/x�v���"1���@�Gm����S_WR@a6e�ĥj�;�ףq8������*'���m�33�-{dFg�d�ю-��RPLض��iL,d?×��J��3�v�e�F�������r���%�s�L|#��'i�M�i��T�jYy2��%{�_�Q�۶vOQ/R�s����C�R	��k��
��rP���1��'���{F����5N�܌n7�#��1����k=ÿ|�?��9?�e����HͰ�q��|�`�ly���>h0Y�}}Ō��ٌ��8`;zb
��݈��y=�g�?���;h��?�L��~�l���<�O�W���;���UDzLG����Dʼn��Ȝ�<�C���)�BGݐQ�푾߾D�NY��B��
fR�l�9��O/���f�/
w�\�K�����'=K";NK!5�ӓ2E%=�����K����йv������4o��0�z}�����Y`IC��;��7�~8sו�l�3�VM~��偃��0�IW="fgh���y��џL�0��6v�ϟ��d� w�������O�߾�\92yA�wQ��ôgYgr���g��3�~�#�Ӿ��2gx��w���O�BD��l����~w�Y������E'��#�;�j�ֺّ��^��G<�_�'!ߤa��i�y�G*.�L�x�\��l���xa���L�Lnh�����{#����d�O�{e�PzBg�}0���.=9>�w�~���#�#G?g����r�Ð�ߌ�4��B��4���U���o�Y˿o]Qܵ�Le?3����v�~Y��+�H�=�LdĈ�S�oh��U��2��;Le���9Z#�+:d��W�\_������9��B�c2.�6�l0�L�#�*s���
`fF�A�h���iq�vG�k-����S�`��r��27Ȯ�{CT��F���:k^���OX\=dhzz�����f:��:����[\916:r�)��v��4]�Qcv�V�ظ�A(LO�Z�����(���$?�U;�|�N?V~�2�ND�vß,m�-�n��_ul��X�h��x�����*��7;�y�x�;N��[�
8/,���l�1�c�B�݋s�>�?�]��+r�\'&$�$\i�K�NO�>|
�v��;O�#���!�3���4;gDE,�8+6
�3�� im�e�(l�y�$���&2'lېr�c������>�d��Qp����}0�{F��,N�����{g<2�z��\��`^c�#�>��^?¯��>�?6?���~�Цh.��>Y���_��/�#��g�o�gMd{��^�7gLh���x�/n��co\��;�yw�#9l�SU�Xmd�r�l9���鑑�j���w9�����;���C4�cH�Lo��m���D`Ludu ��p8p�3wkVO�m�fc��;f��B��=�r��&�(Е�g�qg�r`���Я���
�)��f�YK����<sg�͵i=�*�#����^�Ip�����L��	r#��L8�x�"��q���B-G�`{�ە�GN@���-�ɼzNޛd��o��c�%"d|gs�]f�.��>�`�ƜA�Ԟ�8D5�a�P2�<��=�����<ǗK��E0ch��A/�p�Cٌ�a�F�;	l=ΨGދ��ʅ��`�Ժ1\a,��8����O|O�%�e�Xs���1]r11��Apo��
\������	��������O�r>�1�*�qw�\���n�Fb3�`�d�c{���g�v�̏p�|
{dwg|ߛ�x�퇏.)2��E�L�)����D��5!�ݟ����J����8ͷ�y�x���唖Pd��bs|߿|)�˿˨3�V��)(�^";�2;r�T����&p��W-��f.r��P�z
��U���X}�p�g#�#+G��yN�(��
�!Ӿ����Ց��ӦH_�2�d��Uj�w*zH08�����p
�j���Oy�V�
�c�	��U��bd���o�dsێ�p�h&'� w�<��4��g�K6�6[6Z�(3�%Kߚ�Q���o�Ǽ�#:"NJ�{�b�s {��+߬i��NG�U�+L���3�ԁ�Y	�o��d�Al��Ox��ɟ'��(�3������;��p�}$p�b�tfeF��͗�ӫ�"`�TKְ�9L����/4G�˟��66�=�|AB��cf2��Z���h�I��~\q�f<c�"'l�$����ςsRT�U$T?���Ŗލ�%�#�ï�l.DP$��cvnS�U�^��g�R��U�gvIaV���`
��$��s�=��� ��7����'u�G�D�rg�7�O�2��S�G�N����ŗ|�N���ǵ=���6��L����2>O��T�N�=��$[G�s�������X���o�,���oG�ϜNP�!����s
>�%�6�3�3���G��P5Oc��F�}��
� �jwCb}?͜��~��L)@lp��� �r�I�1q-���V�`j|���+|��� ���peM���N��Ap�E0�2a�s�^V���N�p�q�쉉�XR�����P�Lr!����OC��7Q�����t���&x�M͜Ua(��+�O~�d�Q=�]����,�JC�>���xW`�H�ǭÐ���.���d�;����#�3A_��`0���o�:��������<���l��]?��-�rS;���߆m�;��;�[���KJEib23�I��P�8�乎��Wt��c���V��C�ü�˥������ՕNZ�d�.��S�����l�
TG
���8em�(��`M��G��&,�
���	�/\�^[f�)��_
�%�WF_B��·�a�c�����������A�zD{�#~]�c7��,���&o��|�\�_�7�l���͍�X�쩦TQ�aLaN4��ibF��_1c���o��t�)�=�J��ڎ��%c<�۷�i�>c3(��S��i��C�9�p����S1��m���U�ӿ��W`ͣ6��Dc:~>���W�oo�L�E�fcn
nr>~�`C`9	u�W��R�F<ȗV>/|�ȹ9�zfg�;�-��J�ES�&�w����,���(�8�~�ȟ�l��ijmĺ�o�W=Mq�:�%s<Q���,|r��B8*:�1`�m����V�au�
kz����eL�<��<k�c4���d��YʵD��^)5�q;�<4�Go�L�̮
��Y��"�4Ʌ��+�11��e��M<Tw�2xo�p����lH�:S�15�}=`{�uc[��"��FY�k2#��|.��¥�r�V�~^�3�{퉍�&x�HI��v�!p�u<T�׼m��m�h�噎�3۾6�/M���I1��̄�E�Q�~��a�|kO}�,�g��ſ�Σ=MS�ؗ��~��(��:
Ӯ.����e���TR֋FMƯ�]5�$�uK�'VB=�u��	��4vY�1q�H7 �p.��&}|3��/��#�ȅA�Kc
�
��Ǟĩ��7�%�*F#!k��$&׳�˶��|�?�;~�a�bKd�38Ep�6�aL��3���o�Y���1�O@�J|���9'3�|�ʹ�8 -8�}'��m<���7	��w{X�H��b�)�6#kg���L}c�#)�QW+<x_pv����;�h���y�p�>�����/4�kl�j1�I`Ñ`5{z�R7��o�;�r1FO��O����щʻEa�ų�į�%����
��9t��v߷87t��6&�$�6�2����V�	yP�'�?V���dotdO|�_-���d�x!�u"�֜b\�^����_ز���娨rH����HY~g�,V_䌐��4s��֙��+�m2fεo��Gț�2;����|�b��zW����‘�e��1X]�P��6w���j�fO�����X�#q�!��%�P�|b�qk��k��j,�;�G��Lݱ8R;�"W��Ϟ8j,��
�~��N=�FG���zDA>`Dp�y������M��Y\d�%G)X�͌��Kn	f�D P2�(&J��Fโ��W�O�����~2)������02rK��0�?�e~���<�5��2�ד�O^_k��`�'RP�L�A�D�Qus^���,!���2X}��zd,7�.�m��
�|����;�39<bν�ow&+��3q�� ��D�g��r�܏f��;,}7�����^zO�x�iə����"#�q��i�
�5NC��ެ"�)L���Fg�\~�0E�F�.�`��"��B����7�G��=���6���s|WM5VP��@d5�ė)���'����*:�d�
�`|��J���u��b9�w�)��]��J�Qº���y��()�}P���{͝���~8�3��^v��>[oԱ�n��ɡ��e����w��(�`A{#q�/�j'�D�U�Eq��9��Iϗl
�|���R^��{e���b�fKb�=f�NJ����{�������g�1��F��>��Xsۙ`�l���i]�F*{zb��2'�j��;�<u�C3�~�Ϭ�C��Z`��0Kh��5a��+�c}A8��3���
����=mA�G�'�3��D]Q�h��\�{r��� &���Lo��۹�15r�6.���b;��6?��v/!/J�3^����	��G!1AQ"aq 2BR�#b�����03r��CSsc��4@��t$����
?f�mI-�B��I��:�V���
�G~�ӓ�0A�mh��q5߲���!k���)�q�B��қ�
u/F��l��wL�|ѩ+�R�?)V޶����0A��HN���U��}cG�h�l�h!�
�J&zC*k�sZ�}��c��}&�
w�$/I��.��w����)ߓl�F�4Lm��gǚ�6Y��E��]��K�l���Q�(�h9���8��G�̻]B�-q���xZ�(���?u�'3uKϊw�n��N��ʽ�d]Ƥ����}��`���
m�ֿf��<�ej�/��wm�t'~X#�%t�JW�6dM��vX㏒�1ݒ8�D��*��
w��^M����o��c*���z[L��2�ͣO��s�-�X��[�����t�m���d��Y�ꍨ�xf��u�L��H��մ�2�a�vc�Uk[G|�Cz�u9
-D�6�Q�E�~*��7�
��s�?���´m�������'K��X4`at��3��)���n��=
Y:�կ�+�h�Y��4�aѽ��o�9�zK6�Ӆ��@~ųg�:�}�7u�s�rN��/�0OG7�c?�Sm;��1�������ݜ:.���ʹ�}릾���[�vx:r��7�ZFJ�C`MWg�5V�n8+K��vM�r�p|�XY����B�ef�66�66���a'T��X��fS����F�Գfd�n�>�<��ۃ�GF�o;BfSǟ�Ŏ�T��f=0�q�� �G�D(��X�P�x(X�u,��9p^��1�2B�(���D6͝��JӶۛ�C@��=!��ȫ:]��{њ���_�85�x�l�9p�z���[v�Ѩ6x&ŅL���s��˂�a�h�pZٺS-��H��m��57�'E�a�Z�U�� �'P�]����1�~���Mj��Z¿[�]�b� v���t[����w��—wH�s��Z�]x�65)՗��Ѽ��g�3�@���v�-�[r��_Xq+�is�K����s]���@�`��HؒkGy~�ҋ��5�������\.��4zEȸ2�D7{hb�B�dp%6�\5.�J��F�DZ
���N+Uǩ���w���H3$��Y�p��+c�{M�Ж�!5�e���[[KWd	(v�j&���P���j�A1����
�P�wv?.��@Z$f��S����\ՠ�Ae��E�s��ӁE�6�ͣ$E��8�]-��}�=�C��6�d��Lݴ�*A�u͌�+K3,���-}���9!,��u�d����=��n�h��CKFtP�|4M��h���k�txs�cip�pqV��o;z����*�ޜ�^x8P�YV�2+�[����4ƧZA�A�'�p��w�?��a���B����}��tӊ/�s7���9Bn��N_�g�A�eˀ]��~(~K�h	j�tF�Z��,��߯#�Th��E��i��ɟ��8�[��H��E���Ot������t՟�_ٶ��4K�E�р��[��f�P�`sn�F�J�ޚ\iL�x���<7{��j.��@fev\��V �_�Q������<G~��]�_���fѧ5�g��O?�8rF�gDˢ��0B:Iwo�����8�V�_"��B�-���W1�}��*�}�u/�7U]�pQ=M?t��Š�æ�� �ك�b�#���9�F2�7�h[��>$��;xZ�r�y'�|�#���0ś�BO�@$ܲ�⬭@kYg
j{�L�>%;�4z���]�&jQ�Gu�UpAwx��n����[��4E�Pk���ML�F��vG@�-_��c�1?4��5e���n�;H��>���w��
��9pv�e?4;27�t��A��d�ƀ���zF�x=��U�H��Oo{��4@�!��a���T�Cf�Vv{�J
0p: �Z��5zGw6Z~�懤;�����K�5��#5fo�s��n;���6��fh� ��C��3ڑD��k��B��sO��$��ª��W��i�;:����Y�e�R<�,�f��0j��`���O�Vc��7�v��lkE����"��kt6bF�[��t!��$<R�ֈ{)ݛ p����4M��׏Ꝼj��+Q{��5s_��Tv�C�B��z�C�0+�6i+�v�R�����w�v-�s�3�g��.��QI�j߶�ɤ��*�Ї\vm0k����9\��|^f-䀀���S�ҝ$b#ꬭM����0�Og`�x&�{�H�c����.����u���r��S�C�-w�� ��0�ݖ�LP�#ܰc�<Bm�r���8 $�ν�Q0��;�XH�w�yICM�v�\�j{���4L�E:)�/pW���.ϫ[�S@7�Ȃn]�&Xz�>���bn&��a�Tj��@�{v�7�&����oc�7��/��ʰ��ߣ��Y =���AY�
�2�uV��g�+��,�g4�K�S�}�� ���]�U;~�������\5*f%g�^'�`�i�!��u�EH(F-��Ӈ�&>l_�v��~E�N�Sz�8��P��8Y����U�k�?�M�}�{�ܭ/Y�����,��;���e���O}�C.�5�o��;�v������x�"��m�D�O�o����t�h���>`������J�^򴴼=*�}��B{	3]e��W(EA�	�m�5D{��!Z����a�M�VA�̄\\�8����o��5�����Itq8+6z�/̃�0˯btS���gN�ه�(;��֮2S+hُ%�p���X~�рo#F��%�5r��/��6����c�
��:�?�w�&���]׻E��c�5��u�6
��Zvf%ɦ�Ϋ�z�w\��`V9+�l�M��@�7����0�4n�r��'n��]v�j�x���s�R5���W䬛�'�z6�#5ڿln��e�v]�2�غ�<�\�O[��*����z6P�+7�� ��͝�]��<���~*��T^���3��~�����M>���~'��G���ԫ^��6�]�
A���K�(�m��)ˀFɷ�LrN��O�AfuN��@c�7�����u�;��QƩ�q��`g�co[=�S�Ou�Glhu�&����ٴi78sRK`}�����r��˽���'����՛*�|��Qc[ii����=F$w��,�{�ཇ(�����O2�8�>��:�Y
�~��(���M���7T%�%�fgQ�X<A�Q#�}g�^Жɜ���6��xcP����M!Ha�b���hU;6q�
{o�.�6`�c�9�t�=S{���`��)�!^�r�V�t��$�8t�{�pZ���<U�kѭ*��#�t��^��7J��ƃE�3?tu� �z��!����lM	L-��p�����t^����h����~ؑQ�kOdĢo9�Ov��qoHG
���ٝ�Έ�[;v�	�7������^ͳ�{F�Ԅ{�g�W!���5�8!ݵ%����YV�����;qi�w��i;�����ךp��'3����<)�M�8(:
�:�B�>#$-d�d��=���z��@-�]�+6�y!�F�~�&�M�ڲ��5�)þ1��p8׊p�f3
����;s��Dv�™K���z/ܜ�.�piB��Oh��&�
���F��qZ���4ݐ+h�Z�A"\�z���n��5ci��[�
s/�o�*�Vڳ�M��D�3��ª�����Q�k�H�ʝ��)��Bx��5;�a��Ճ�-�R�p5V��za�Eޠtt:���/G�S�ҩ��	���ZoS)Ne�ݬ����7,��b�nV�O�S�G�h��x�"	��xLµ7���6X�F$�⮄v��ള�K��@`6�I]��5Qv�i����= ;�j��;.���a]�kt��':l\[F��|���h�ǿi���
�>�����3�	�=�1tk�5�����+� y�����zp-m�[�_�!����<(�g>����Khݴ�a�X���N��B�.�.���"��M�W�TZ��g�E,�{�`���ـ
Z1��i�h����7dO�5tOe����X(�k��\�tw&�(ޯk��e�cڋ�ѻNc�_:�6��jH���b�v�ɲ�y��^�QB���F��NI����F���hrG�8/e��i��9 ��8���bF�IA�ho�'%>�x�����PV-��$P�N����!V��q�{�ݤ
~�`G���mi��)�s�d���|䪹ՙ�@���O?r��[�[��E�~
���v�w[�bUɲfv��q��jͰ=�'��+jN�H��~О�n��+[	kA�E��fx��Gy��������h�!�&>At��v��%YE汱xh�i,`��%���ӄYӲ5VL�	8������.���4
��oF�|��|�wx��@-!�@�k�Y#⻭������:g��o��x�R�ˍ� ��
��pndu�N���Ͳ0W�V@�G��=�U�n�f�y���wΣB��_c��y�i�:��0V��_!�z)�	�
�w�G�at^�!>��d
�ߒ���Sv�VM���4�
�n��{��t���q�@�0V��>���.��_�
�N�؋;h�7G�F���"���w�,�z&����F��~s\}֣ms�F��U���Ͻ�G�J�+&|�p$ Ax��z��r�d��ʳ�fn���^��P�G���N�艧
���޿��� ��/ӳ����
��y�s^��l�/�^Ef3o4�cd�ٟ����^h₁Y�t��DEJ>*�Y)�@����D������e2��&RuZ��U���mKgT�ӊ=�����	�(x�>��
�1��K67|�qO
���M���M���rn��p�8�U�ׅ�}T>[e���mu��j�ٺ��WE�C���u�!s��pT%ϳ��O��{��{����|�i��
B.��ͼ���s
�W'vnϚ}:KɄ0���f7��w��;QV�46E��O�D�
(҂��<|;IW�
��K&�+F�ό�A���\c�B�tRO�>��M��I���!��dݲ�:���W�7��E�5w�f�v�햮kZZ+��x�t�+;L_G/�k]C{���sQi�Z���/i��� F�[KP;_�;��)���!9���`�$��ؠ�~�P���94���:���q�Ж�]�$�F��c�
NH�Y��~����[��.�ZL^�9�F�m��`���X�6w=��u��Ao%ģ�;�����Һ��MH��G=�p�}�@�{��m[��n�^��i�ً1i_�B[��hg�����+"�4C���*��_�d4S�jQ���LJ�yۇ�TX%�Tk����]�Orm�n�O\
�G[��Z�	M���
0��6�,=��zt:����"�֮f�~K�N��t�y�o�GJvُQfLI�a�Q���V̺�=������b]�*"о�(_�rg�Q�QV8�Y�&����ܜ)u���+
��;�L:������4�kF<x&ն��s��&���❌�%9��K
.�a�-M7\-l�{s�ӛ�0s?t%��x�F�ЩpG{鱧���?6�>� h��E8�~���:*+�'ف:�#��n�ʉm�V^�����]h�Lp�����$E]�E���a��;��������9�eDד.�~*�%�::��bƞ��W��~�l�r�?ʦ���yPZ+Q�@��!h�K�h��pg &�HV����n��ز��W͝�Ȧ��ٍ�H�<���#rk��P�FKZ2`iE= ���3)��{p$|�t2��`sCp�?�N�dֺ�/-1B̬���])���|��a0#'�8���n��k~(~}ܕ�ny��]!2��?��k$K��d�~o�l�[E�SM��>[;����p�-W�1���4Ç��8��3-u�+"Q��E��	�Lv�)����+���$�Y�#W�x�4�h��fɤ�|B&��PT�����(�þ�:&����3u��x�.�����.�ze�����(��@+7I��Z���]��cgI���<��YXz�;��]iڵ?ejw��.��'~U��Ë'x��
�/T�?$l�6��vm�+◨�?4�[3����5v�y�骴Dz���ԫG@L�{^�}�{̠�r�$����Fή��O��
}�TC>���;ωG�rQ->0�q��k�N�b�Ͻ��z!-�|U�m�FYj ��Tb[?%�e����\��i<
��b�����
�����"]�)ݓfh�V@����հw�GGc{���+<_�Eoey�vq�0��4C�Z�J�}�K8����0*<�s���:>�'iggd*2�ࡶUx��
���$�of�h[��<Z-x��7^8�a�{<F�����)rj���Z���/y���
q1���M�ޘ�)��:�T��.�k��q�2��D�j�(�5
��4�a���;�ʡ�R�����C�V�G�j�J�8 ph�2�"�͙�ޛ�k�N��&�����m��asY���B�B̡̈́�+8(���ȑAv��(�V�,՛�@I�K�ip�U���6jU�6��'2-Yj��2n�q�Aᗉ�^��Z�jS{�������A]�=��C�2��NY+'E�2�g����]7�7�'�>:�Lt�E�;TZ�����Oa��2W$3�x�N��M�	�'4��LqW)=�扒s;KZ�!�7Q��x��6���C'6ȫ�j�X#4�@����s��k;@��?�/=����{:X�oIp�{��f�v��滎�Qykg)V��P�j/�]FxSL�����^(�Za�!X���WI4����
&!t�:Gw^���y�\	���:�"�����Z�\�(2�I�$�
2�W4�pZtL�gx�2hE�w�޲ a�A�P���ST�vnu��:Bfd�h8[ѻ���
���RU�OFoM�Z�'�@�	�nid-�س�T��3���.C�b<���u*���S�C��s(VЌ��Q�+c|�>
e?�,�`w���D�oY�_42�a�őG,�'}�H�Q2���2
�B8�do�9�����UL�i��Դn�Ԏ�H97��c���>�aw^���IC��T��L�?u�4-�\Q�B���yhr�v�3Dv_P����E����������3�;��Z��&�sn_�$"/4����I��mbٷ`�B���YWhd_)�#$M��D�����en�����K>Q�c
���'N7��zCn��#�DSP��ӅM�:�5� "�����f}s�^�-�7{�V2tD���ķ��ʝ�J�4a�Vozӗ�2Q�\P9f5Vہ�8�,hY���v^��ɣ�$�'V�mo�tx�V���঳@�kk�y�C{�Ǝ(v`ޯ�9��B�_�sf�K�Ur����˷��ѐ�����Vd��g���v
u����WD��TANJ5o���?r��wJ[��G�9�#�a<�Ɯ�޻�ַ�q�c�]�?���<��?�����y����hhC��$��sd��sJsd4��(�F���6o
H۹�.��>+9,AF��Ds�wc2�fn8�K2N��l��W%�0^Т4���0]��Y`ߺ��G�/.6�0�;�`�&'�����=��]���V�I_�^Ö�L�?�5z��g�n�Z��V��[읧�2
-���')@vl�B�{�;��;��r��#a�gԲid�LZsjs/Y�I�$7�5����39]�4'x�����Խb�`�����g
����;:�0�dh�e��h��%ҵ�i��|�qG��]��ݴ<E�9'2�22S�m|<v,ڮb>+"F*��qM�<�VΡ�%�7p
�:^����%��q��a�:��kEzu��&,ˌ�X�{A��	�b�Hu�G�6wILu׼ē�N��kL���o�g佣���V41�Me��v�\�hm1��w�R�!h�ZV��2��u���J��o��{�pr��υ���ལ$+����
��O1	ᡃ�GU�n��������z�H�%�pn�n�fo�����!�Z��hA��
}��<���|Bi�n>�Z-Y��8���j���B������XQэ��Ц�<�Y�ه�yE0�h׫e[k:]3�L��U�IV۬i��L4p�-e�qj�cۃ�k/��>A
�ܥ��<��_�C
���ӴӠv*�Q��/rM��K;'��c�d�&]�5gh�]�٦�)�j���
��H�B�ͼ6?�}`��Y��qЦ��M����1t���]+��G
�0�n:)��ߊ"7���!���>wt!�5�ÓU�hZ	o3�D�i�Mp�+Aџ�8�D��V�s��b��J��_�s���W�(`;�O��gz5�d��wTq��k�V���ԮKY��Yt[b�@��w]��x&s��TаW�Ud�g1^�Jd�Y�����%�����m�7�ͥr��޳h�9&8�ޜ��0j��;
=�C����e!��/v�������ed�!E�b�$��%�>�R�kE?�e���N�'���Е;�D+�T��:Dуr�_IX�P��VS��xs�2�O�T�iEy��a���G�@�c�)�@� i�k��ڇ��D�Է��ݞ����s����{��B�ն�D�U���y
��o��uU/�4�j�ng�OG�ј{�����]I�ѸI�U�뎟�x�u]�(�n�)��Z�����a��4E�]@���|�/]u3�,�(Z>�5��%t���9W$�7b�ޣ�L�������bl�K���dP�u�%{�D2p��V-s��fD!�l�#��+Ҏ �|��\0M4�+��^�X��[�|��5N��O�3�`�{q�D�s�DCo:�4@/f�oR�Fi�>ך8��>h�s���'4J�.+TJ�'IN
q])�i��j\ݘ+����>DkD^N+9�vAm��f_
+�8ݠG�vB��Cn(o�tZ&;v�ﲴ�����x��g���o�5��m_���9'gl��'1�HMm�"N	�.�a���ǥ��V]��泪8�g��Uk �截�va�lx�vd䢛IN��2��o�6{F�[~��-.���|�,�<�{��g鞌����ɶm>19���qrv
�[���������K��GMa6c�'X��
Q����r�{����:&�ͭ���1M����|Pz�8Hr��}��5��.�-�W�L4�(�e��k����D�˵m
k�[�-���=��n%DCӟI�Y4�4`�゜�s,��j�ph�M�h��dx!lDm��:=�J{�p8 �a�Y���m���q\�=�kfr*֮��q�jJ�(�3�+H\�M�+�C�I����hwI��+L�[y�+�NB��<���7W��On�פ���cO"{ݡǚ�u�*tS^k$��ysFԱ�!��3+G<�v;5�g@�a(	�x��f�j4M��1��B
��h�/=�ci��!G���t�@�����s~��;���Ќ
���sق��:΋�y'9���_c�e��m�{q�M
�*)t'�W��ݣ��s)ۯ$\!�e��F��LS�$ڼ7��]�C1�ȝ�Z􆉔%�%�	�%7�@�5��r���z]�ն�ĵ��NxЍ���?�*�C�"U��G�p>(�5v�K%v��
B�01Q
x��´� ���1�"B��8�Q�����.=�8l��#1(n��󕱼�6�	_�5�`�1��E�Z|(f�(>�ENkѷg��l혴X�矽
�u�
�(w�����P*�sg��s�ydҭ7���v�G��S`t�~
 �&�HP��a�n��Y�Щ���*{�'���Szg4�iy�쬭Gd����������z�Q�|�X��</��NEG�D�~J��s{��a�e`�ꥤ��4@�ktY���Q8+�j�<��,$�	�ڱ�z'�V��J&�&�kFjvp(�J!{2�5�j��pD!ٶ�#���F��m/s*����jӶ��V{�o��Ue`,��Z�DqYZY�B�*��5�J=�ة$�l�!����cJ'G���-Q}�2�Z:+�H:5V|`��Ehc|v�+;7}�
�,���r0�0�+�n��(ե�Jf5���M-��VN~&�ᬧ8�
4+Ё�����2���SIA`�x�c$�=���b][�=�N��],)ۃ!dњ�Y3p�AY�ay��GUp�H�7�
��9���Z7��.�F)�[�ʩ�r���Hs�<�c#�a� w�D�eZ��@L/h�h�fh�i�W�Lw�?M�
���PQ�na�ƚF���;�W��|�k��5壍��\+�VN��Y�1��{vU�
���
��_ԹbU�Ǻ����t��
�O�f���E�9�O�8�»v��c�j�YCf`��n:�F�h�.s�B��B��q
�P�S��h�J�doF��F�w��eZ]��L��Ы�Ӵv��hK�� I�Y�ƈ�^�Q(�и�Z���C�n��,��!��8vS��FY��V���v�++O�Z��F���IG	�k|NO���,P\u�q���]B�;�:�!D����B�V��,p4(���H+]�'0�$^H�ϑE��(Wc��p�ŗ�j>�r�SG�<#�=ֶ뇖jW�%5s��
�S�t�8�2�e��2碳2o�Mu�5{E�O��m�M֮�1�qA�e`C
(�OS��=�(��Skt&�-.Yq9�U��|�1l�����zzW���ZC���贳��U׾J쎓�
-�� �N�wөj�9��z��k��fcX�V�#�>����Q��Kq�L;����Ei;a�h�6���׊��h��TӺ�~{{��a��z'Y�fSJ�Ե���c���M�j�Z��]��G�U�e�2�h7����x��.��

�7��%���BN�����Ȋf��i毉���4�m
�������U�^�C����~����@�D��ZS�1|��˩v�8!Pi�
�h��s�� ����@:���P���ӓ�ơ:�F���O��]����:��-���ǗQοtj���,�r�p�M.�el�;t�y�
餝6r\�w��x�O=�v��d	9���N
S}���B��-g���dapW�/P/0S�pS]y����=���J��U_��8���ӆ�f&[����`�d�����|��G0�d���Ll�����3�^n=�<:�l�
���ȫ��׵���Vji��g��\�9,ZP�]����z�q��W�6
�BzL���rĻ1�5��
`
U���p��x,��쟉V�D�WH$.�6��Q�l��ECjc�(�����czC��ٙ���3+.#n�'�����N%x���Zt(�R�/%R�J�@[�]��a�����&�78���0��ռ
�؛+9N�D�(`/	�jy�����,c6�Z��xg>��1٢k`9�����#X�_��}�渍��o����h���΃fH�N�%��7P�,v	κ�99�P1q%p��v�[1�M	�#�}-~k��.>�������%����L�t?��W��;�+0�;�Y�`���,/�xy��[.��@�^jֶ�����R
����a��+��}��AP:W��aDv�W��d�h�=���9W��Q1y����'��	���4_�w��2W����F���@�z�E'Q�f� h�qv-w�xf�x-'������C�V&�
���Z���w-���0Uۼ�~�:~)����b��|��&�6�AZ���@R�a:�vdW�����q���7���A�N;.�]�Zv����ѕ�+X��b��|�ɍ;��
����E�c�վ}�m��
��Ot\q\
r#�;q���;'c���6u2|8 �O*=�]:2�}[}�c�Z���uV#vD�Oh-0e1��2F��Dt�s��~��VK��r�l�
>&tn^]�ֶf�a��xVݛ���
��̾����ܳކ4	�֮��;ԑ��Okm�e���ħ6C�%��4)��Z���>I�V�PF�QmfL!�ܑЬ�� n�f�kT�f�n�5�m��w�a�rW���7�,��M�jG����3��_9���Ee�V���]�Nt�7�bͼPt=��
M���7���h(���8�p]�/���ۣh�^V��͠E�����u'#��_9�^�`�4E��ZQ�8�I��h�SD
���͓�HR,̙Z3.�!�.��x.kTm+f�w���S;-v\��}���k�:��S�9��[�w���~4@�Q�pO�i=N�`y+��e�`�����(Q?�V�mN)���Z�O���Z�ixK��_����θۢ2��>��d{/n���W���'<���]�#�s]��t+�'ԛ����6�Z��3�Z������hY;A����q�4�B�6Y���ϖ�5��j�m��5���-r+�#oe��&%c��r�̱�K|�.��@�q��5䆧(���*�F��&Hɩ�
��v�bU� wJ6���k(��|��6�rN�q*��[��d�h���7��H����D���w��!����M�`��
Q�MB�T��j��{\����,�����Ɓ6���a�>�P�nc]����(�;Q�f�B{��;*z�A�ĭ�j��&�Ӂ�;W��eo����:��ϯW�йl��j����w
��ڹ�r�AS[#���^�+V]��#�pt:���ErV��}�+%�ml���C��7�
��2")�xl8��Ҋ}H
���4P�N�ϙ�0ْ�I��vYj{~z�ih����1�83�i�#ty�hS�"�n�4^/4Ou��c�+Q[��VД��$�b�B=��S�e,���E�]Wk4M�!��'`����5+M��n�h #���g�SdX��̡��>����v��u+�-v\�,:S5����ç�j���w�؁3�m�df�L��1���Q�	����9������92^<��#��1��5�%�{#ഝ��Gؼn��Va~��@_���^��2�j�Jsd��������n����l�!2��O 8vLa��P&0$Ps�h�ْ�	C|+GO'�1$��6����jgB�<4Q�-B9�e�?{�o�v�ą�a�A�;KJO$��S�\��M��
�C_~I�ջ1����q��J[Y�QJ�7E{E6�m�HA�����Z*&�+��o��gI�k�3��N�?ui��>��D�vz-�sX�l�����y��!��(���j�F�'�:��$ad��w�1�Y�S�"�#����vz���q�4r���b�;�vVE�Q�^�Vݨ!?&���^(����:����6�z���-8���kd��Ϟ'��aq��:%M�(a#�i�z��/�/�/�.af�C�XZ��^&:��Y�z�-/;��i
Z�^��{��C�|մ;{*@1	�����Mq'M;�d�i��P�����#�u���+qp�P�{�qզ�8"��P�����o �.����8�����~m�c>J?�����
[k���ce/�ro5���w�5�GT+����)��:����/����gu�T�?�@�Z	Q�3�Q]� )�6���X\sX�v�L[F���R�Pp��м�����<��{%^�,�E�;0�j��=����GE(�7\�(�%��ʎ��cыM�z�;x��d]3M� oC�"�l�5��_�ge1Ժ0�n���^}~#�]ۻ�?
��k�˶���w�V��
�W�Ԯm��mo:�B�*�(\-��\
�Ѝ��5���!q�mCZ��gN�:b�����>	@VD�t(g+���:	CP�VT�,o;싿tsz��h�n�l3<xv�%Å(�h�h�	��5j�w��a����
g@�"��D8N!�=�Z�Ls�t�a���6ppl�\�e+Uzb3��cX����y��]��EZU�Y��db�:� ��q�k�Z8�d�g�F=K�W
����1(��"j���T49�_]:��mP;�U7�������c�f3C�8 .
�]��T
���i��`�N���Y�����ۦ�yqY;�is+�s+���Lݵn|�6�D�-�s1�p�6���Jk���Zx/�M�i��Ӽ�j�\r�(�������Nu׸��,N�D�I�Vj�{�rM�\�F�CU��[�/�{�4*UaxT�	�֠rhٺ�/ ��C��
M�������@�YZY��龭(K�N*��\*�l8 Vk��F���?X_1�;\���Wc�HmPu�&*��i
��V�ސ�&�5����0乬��u�2�`�`���{�ˆ�%�l�K�6h���J�+�!pY���N�*ї��qW�ֵ���f5_��,��!��l���i��U�L[��M��8o�|y��e�͒�f���p���ߡ54���v�v�Pp�
�!�j�]����Qf'.z&4��r]�	�{���U��J:`�kF��<��c�H�a�[��-=D=�ߝآ������٘��#V�dtMMQn�eU^�pW�.<�H�1�����hf��g�Q���\J�h��WH������������z�&�(�2�ƿĿܱD�t�׳k(a40���L��\�e�f��w���C��N	����t��d���fH�gH\\UbsB�|�Ea^(��]pO�.��!AC�e��ç��{�h.�#���y��K݅��G�ٚ�cU�j��iJp��a<‹��f#�%w)���Po*�V
s�꛺ZB�N\��g��J�ԝ�G����$f:���V[Kgc���E#`�r�4s�N��N����_��"��N�1��ۮ���D]+���&�^�ub�y�ѽ�m���4oW��\�5�s\�s���'!����'7��Qٳl��e�k>KI�J��Ze�o�l:�� �V�q�j˛�J���;��%_�{q��)$K���H!�3��[d���q�^7���.Ҽ-0,�Җ�
�~�I�~�+�fc�� o_����%3INt�4F$q�&U�vF8ʳ$D�*��p
5�1�"��1�;�e��rSD���S@Ǒ�`�Ȥ��
�>CU�x#�^���2~(��+���E"�m�r�'�������c��EZ�e�W�0_�i8�P�\usTj�EcGq\ڙ�&:P~T���TG�Zd���������������/�:W���,��*,�Q���3�ϴ�;���$���l�C�V����9j�1!x�qZ(���j���4O�^��E��qN�6r��mw9!�2�03�UZ8��w#�E1:�_f�-��k\�;�����gthQ�	Λ�5\�jH�N��V�(�޼p�*$E'�F����
�X>�ca�Ʌ�b�\�w�Ϭ�j8(�����O%!��=D^w�E'#���8���ݰ��Sfn�s�􍎆�2�)�d�J��q1�k��+��k��3F����9(��a_k�\���Y���vJ�D~r-@��k��N���5��\�z��=�����.K��<������Q8��%^=X��jS��e�6L���ߩ2N���y��<�^���.J��	�	5:;���k=xGe0t�,�,T����.�]�L
��&v�Q!��9��pR��鴿�w	�\Q7	�o2��-p�n�MoF���ƴ�N��]��9�}���P�{��o�{k{D��PU����Zfy+���y���]	�P?�&;H�HÊ
�:�F	��{k.G٧5)���#ڎ�sR(�	�=>c�h}�
>{k��h��ڢ��+��ه��"���u�
�ރ5Z
����vw���$p�_�_�_�_��1d!�z�B�!N�a�Gj���_vӂ̮{8�屴@�e�d/L����ݞcTo=��@O�WZ�;�O�Ym.:It+���m2��Y�Z5��j�ey�i�h���/��{li8��2�ѫ�d���ZSh!ZZ���m|�	����=�Ka7��_�U��wY�v|U�Ɯ�;�A�#4L��z:�/���w��5G7Udz7��UH��א��������Wx�{��L�0���w=%NG(Q±0C�(� [�ܖ@��B;�C�\V�
������Q�����\�;S�7a��>k��_�~��E��%��ls}[f<ԁ�S��l��O��׵v���o�;k��ΎtP��z3/�k�q8�	Ls���e�,=�s="Ҏ���Z����wM��@zW&���p�]��9)"�Վ�tdp��
�(�xi��� ���O�~�fd�M��AN�]�@w�n�f��.�ٮ��-��6È#��쿅;;R����׾�t��`�Pn�"�L|S{��Z8��Q�$��pO��V���EÅsi�6�02����,[��Sk�L�2G����C
��۪1B�ǕT��RW�
d�t'��ًz�"'`�5����X0�٣z�v�l/�1����v�ej
���_�_�_�y�D�K;�uG��_r27G��I��
�FMJ��v�P4�ê�A�i�,���)\FHmِ߲}���?��)��-��ް{S�L��`�Ԏ*��6؞�	���.w�OwG�$��?��ۤWwﴛgu��x�Tn��yq�+Z��(|P�>(��xɛ�4N����\!`/�dN���;�p��;|Ybj$4vBc�;�nE�{��MmIc=dbN_�V�����IX<Ǹ�v�0ږWw_evX���P�S�"%��.��0#\�t+��"���F
�7$��	�U0/
��0 �+�j�p���Q��W��4E���L���j-����.�p���#e�W%�W�_�y�5�5�F����ÄT�;�L!�wB��W���S��+���0ٯ�ORQp�}�)��e��h�>2�-�7�`f���+�7^`�.��6b�Y�����������n�z��CN]!k���[��[��+g���eٶ&���v\���ɓzc9��C���H�q���f��*77w[��]����E���u�v_�� !5�Ż�x�73�`����x��nn�QmX\����i�`�aZah*
����]�N7K���1�y�XB�l�#V��A�
ʉl��΁��R��I�f<��\B86d"�$sM5���GR%B��}*�K��G�{.\��ձ�N�G4��}A�R�.���.C-���.��r^�_����+FY�j�쿹ujP�NK����Y�5��a@"�d�穒��lX��3�:el�d��ɧ���X�������ŕ�;�����݁<=�(ݽuݚb8�8�K;t���N�k��][O������H�j�W!類�m=���mv�4�F�Ɖ��gj0g%z R�r��P|Z���a�&xQ�΄�ۑQu�Խ�"�u{Q�i����CzF��b�W'�a�p �j(�q��'�;�q��P��
͚y��B�B}�׌�@�
��+�ޢov#���XD⦪���SK���PyE1Ju-�6��A�UN�c�<z��k��_�๭��7p��Q;��;��3Į����`0���_�.6��_�_�^���f�]����hvr\
�l��a�"q?�=@��<8�K[Ť��I�#}�G&�^7�s�l/ع��nmQ5�XȠ<r���ž��{,A�%��]x�9��V6�`җc��}~�3�[v��p�LW���mb�'ܬ�m\F�c�~������e5�*Pt��v'
�#@5��{a��k�
:ŕq9��V��1@9����(�_�?Dw�>a2bS�jqX`B���x_D��\P8�#�M�kJB�R�Ӥ2�`w��Wqh�R;H�Q�B�T�!2����Ja��[#�?m��p`Md\w|p���hYW��㳆��,vB��lm6{5_�{M�/Ҹ�_�_�Q��ٳ��+��vZ�i�E앣�_�k��a��?z���j��a��ܳ"���.�ζ��0s�!�
���`��Ui�W�f`ؓ�!Yۿ��"ʽ���Z4^�7L��Lx"��Bg�m��I�8g2�i��'ˬ���pR�-����rrR)���j�
��M�ͤ���>J�7�j�@�F��9�b�����m�C�F�e���.�2+�iw��ۄ���~��r
&�~8��+0�~�
k	�"/
�!�veq�
	]�1CTD]p�P�d#�n��90���[u_��T˺F����
��Zi��tdQFf�i����z�l��D�X
�ͧ42�o�j��^�W~Wê8.%s��~�,�<V_���;�ifՉu�Q��@7W�V�+���Y�zҥifѳR��{s����(4	�	�MrVfl���L`=8�8�7��h�ۻffyyfBm�_gk�e�7������//�6Mw���c…ع����y��]a=�2����Bƚ�O�Yپa����:�0^��o)�����Q�q��m��Ӂ:�h�OiN�Gz덑����Oq��+J�����˕�Q�9�_�<4�CG����=��u�$�l(�ڐݍ�v�!�:����˭5Qhܖ���A�
��E�	\�q\�W��Wx\�Vmvh#�	Z��^�W�!U���h���jǯ�,�덼�r\�$����ޡu�T��A\�\`/���~��5<���J����P���\�,������]vk�#�f`�����p�sG���!��y
N����r5��Yؼڴu���6,6!���٫�� ��5�jg��O�ߜ�\��F����=膞+�X_���p♹kl�^�I�|�W�tvgzȻ!��K��wFlc��Ba�I1��A9���[�׿��}6Y�����c��������#7�w��ɽ7���/�ε�H��i�Vg�s��pn�SR��)��3�Ebƿ�O�]&��:�i%9�J�cF�)9'�fp�TMES{��州��ֹ��
7�� {��t��s\״�f�C 5�h��u3����|/m����.��%~�S��V�A��>��A�-d6�M����q�9J�6�g=��4
���O��_ܲ�tq�#�J�aK�٧FU�mh�>M�<��GGd<o��,�<Ӟ}�ܴ/"�
wIfc��N���`��y�~L�"��7��
�Ž%�COZrW7-,7�xg{�@���V�.�}��A9Bk��3�8���
w�S��A�uM7D�<��*����
�9&�Z;�B�(�7Wܛ�2�Q���%{t0ﲚ�ϲ?�h���2�=�2~E^���F�7��a+Tp�0G,�4i{N)����o:����a�*�3Tl����-��/�����
�qy���Y��ٗSU��*�E�m����y�ǒ�tq�4����8~���y~z2n�+���<��qr��p�h��?��X?�=w�p?4�x��qk�Oe�l��	���w�
�E��4h��BG�s�Cg�e}��j+�x��ܵ=K�j�g�y�0����U�ō�	�d��{7x�P���v���=�Bf�\�7}�������ؽ��d�����x�+�8���<Jf��R��S�Fȩ3�lq�T
=��E0G�Q�$*ֻ��m�Խ��6�vy���_�~��+�teU�5p;b��d.��d�vExفY��P����S^D���Z��6]�E��
PYls4��\VEZ>W�%ê@�'g�{M\�[�_�3��~��#�~��c�u��t1��8��b��DBi�����]$Q��d�Y�9���[��-�p�70Xs�D]hm?�8�c��Ƽ��Y�_�✊�6p
"�Ê��j�,D|�ֳw�x������{�q#$�G���VEh��Tw�ߚp��~�W�����8�����a
���@�����e���/�9�u3��ar�bMp�h�[x�����g�q���_�7�!E�^O��
�3[5q�1�9�����}]�Ǚ)�d�TsM��������B��ѝ�)Į8/���W�����D�8.�Nx]��]��v���nS�=N��'��V��5���M�%ׂZ��ei����#,�-"]��ۊ`'�)��}y�)�N���V�Nk�\Pm�z�,�Q�»Q��(#�R��%{ns��Y�o��g?�����c�{PW��o��gw��W�xX�0{6y�9l`
�WN�����>��3��][����{�Y���^�j�R�]q��]u��7��tDny)��s�ê�Α�m�i��^��p�F��\�i�ݐ2��z��S�����P�!�c��K��xF�xۥs�^�I
�W�^�W���Q�q��%8�=K���g-��djP*U��6t����q\�]F�6:����P���!�5V�zF��8�4M�i�߸���M��"tp�S���,^n�f%F�;2�HutQ�M�����S��;sC�ŭ��y���p�?~JhQ�-]'��߇Z�z��;�	\��_�q~�F"�u[���ө��4t��P�=C��;�k<]Po�aJ�I=[6�8��٢�.������Ø������S�{ccAw�a9���6�c=qPCe��2S/�*MY7i��۬�u�X��Ct��r@��z��lO�]��{_$|m�
y�v\��~=�����<9�c�ܵ���\�pi\��yM��{[
i��\�����(�CT֝�ߵz�1�My���Y�����;9-M���,�Ɓ�/�.h�c�IB��⮃TJ��t�Z*a�a��c,�c8���C���5+��f@Eۅ���t��e��s�oI�;�b.��$6�L��H�N;���Fώ��q�QD�s��]�������3��T�2���s�t^׭u�?��GSFo��*���hÚc$��\z����!X�u���(��t�Ѱ�%>٦�Vqu����Ml�t��u[g>�����"�p��#�Y���U����"C�Uh�ϴi�d��;�l8��3|�(�0AZ��WW��b:�+�g�L=�A#���g��ݟ�.��x�r6�|��V��KK��^Ʌ�Q���u�@�
��͔����C���$ĭ[��[5eV��Jv�z��z��=wYC�n�k�.\h�d�:z�t�Ϛ�t�wf�#�Ԁ=�v�PI+�y�: ���gU!��j�uG�*)��O`W+�'�%�s�,��ǩh�cYR9�س�������X<��8�(��.Ep��X��n���G�K��:�t>a7)8�[�tSB�,X����0��ϩ�Ⱥօ4C���C�*�J+@�'c�ֆ�\y&��@%^��L�����0To�	��mi���-�J���h�W���G[�o˨�^�v���?�з�@�u�>e?uN�{[
]�Z{�t��Z!���
�Ce��r�Ɗ�cf�q�8E�}��!|�S���S4��[��パŝ�y��
�i�
%�@�M�a�d�:��qN?
�v6�!�}�on��X���Q��d�g`;-��~ȭ~�wx�/��S"p�)�WQ�yɨ�`��	��O��#f��1�U^����<vrG����ӊ{���i�4}S� �;y�n�1W�x��Ql^&����-ޏ&�c_���kPW�\OX]���G��~H�Y�`W��Bh�?�zk��t�/g%�RU��5�&�>�"�\�����pP�X�W��a�O+�nl��\�
H*(X1	�]xEN]S���e�i��;Vg�vV����x^�*��^=�kKV��@L{��d�`v��V:�����ˠ�*jV�Z�~i�p�%��ق!�8�$� {QB�MiԽU�I2��tue?�lC}c�lGF�ru;R	�+6T�����;�S�f�k����Y��J.�e�
m��M�k���v#��+�l�hk��Tڛ0��M�w��5�m�l�+�^�6�*���p�v�k��E�m�C�1�+�
�}����\�F�g8:�IQ� �^�=�����皉�1�N9(Ÿ�]�_�<�,����E��ȇ|֏mº'n�*���W���*{&�d'Ar\:��v��?ds�Z��ཧO�rE�82�ՠ�^עU~���,�{#մ�LRB�v7H���$���g������vH�A�l�>{x��vT��i�ս��'��;ĘM{�e�z h�$d;#g-�R�KC���p��ʯ
+H���P��ɢi>�k�k��&6%�o��pXIE�z*��;��lǒ,���z�vr�q�EkM�us��Z�����
��!��[��MLG^���� pX�8�MӢ�,	����Пg�P���{En�24C,B�)�K��ϨN˨Uq��}^�_��ux�vq2%g�� +�N�IÊ��V��KJ�z����Miww!D�|:�eU�d�Q����WG��H$NI��˩�����'!1AQaq��������� ��?2D#�bk�b�`=<�fG�Aoĭ"�����*
�S��ȁ$	ݲ!y�3��qA0�FrX��@���eՐ�	�
����Oq#�������*���M�E�J) �WyèZo�kℰ�J]�EN���I6�v��V2�V��Ȇ�g�do�}�P��H��6�b(�pZ"�g5`Yeb($8�q��g�)dx�������a$H}N!G��b/�cǕG�ªҶG򠜤���)���у�e�y����}7�đ��
�~��X)A��,L�+�-!rI�tbcn`	�^.���%�!>����!H�`Y�G3���AI����e7��}�&E���b�#+�ž(^p�H-9K�[W���""B���U�*��@+�,}�IA��Cq��h����-0� �sMRT��ꍶ��J�DV�cBӧ��Y3��g�իy������[�Iс��+q���,��)ˑ��0�ᩚ��n��|�#�
8Yv��G����2�q}��zrv��*G�S���Ep���T[��
w:<��E�1��fP�1�:!����B����!�p7F��i�}�D�S,��N0�|�(��� ��8L�0œ�P;�o��3�@ǯ%�2����%m�x=��q��J��gCD�yp��T~����X>��iPnD�m�����.9�;o��epM��(̳g`
˃7�mq��B�Z�3d=Hy����|VD�'��&Fc�h��v��Q�0�:���Ȟ+��<���?z�`�PhA7S��3a4�H��w�y>ې#2����nH�98�z���*q��OB�牷m f'
�n>�03"yǸ��|�HI�u1�=��+��Ĺ�������!��Z�\�c�����~�A��3o�$�:��� n�#̲g�e�9i��������F�wUǴ%EJ `�ۮ��dɧ�f?rZ��Hr�aM�s3ˀ��i��

"�H~"�iL�|Lؼ�}�t>Θ�և�;0�Qe_�F��3 9pp�8?x[hy�#�q�=�-��A�"��0`�����3(���pc=dt�x%،[�f�ՅGE]u�B
��h�#E���+̾޷�Y~I��QC�_h��z"]�2"�ٟ)����?�����q�Rf����[���M��ޅZ7�{q�A�]Y�\_c�G�
��3$R�L965B��#����H�:M[|���keL���8��������n�b�ʙ�A	3�;������,hA�F.��G*��m��G'���&?0�T��b�J���L��R���
x���a��C� ��;?ɆW5��v�Y�LA�8�،Q�p`�!�:G"+e,��}�S�Oea��-:ccUk�A��_�W�J�P �!	2j>Q���Cӡ!�5�cҙ��JW)6��O�$�0ޑS�9Na@{@5�1�����90��ZI��E��7K�([H>��P�`��K��K�	�@��~�j�5Wn��º��(���4A�,�11���;�B`�ر���ە,m���9�%�����G!&�=B.Z4)�F��z�8���S~�����#e�`�-2�~D�<a,�@��ߑ�_6GO|b���>����0����vc��H�e�h?:���4;��(�i/b����@	�  ��[��&�g�
���6Bg��J.���
0硝ة\���iLK�R�F��]��Y=��I���P�8�fW{�-�?�z�w�ջ����I��>У�2{gP�q�;�%a3�O;:G(-���)G�b~g�;W�TG|���{J?�Ț&g����(v�	��ߐV�����!�����u�Tÿ3���v ev��DU��?w�=��.����'�Q�*���P���ۈ��-�|�XbBq�4~�\�
�#��ʠ�b�O�0E���mT��we ����}�Q�`�������
$���)��cp��2@�t$�F��#����[�^��[�5�P~j>������q%�^���Y?�
h3|�o�����ãm�&�rZ��p�z��Ip���P{�HmgH�C��]/�������$���CT��W�N�u����Z;�$m �3�E���X��pF�����7���1j��?q``o�qo�@�?y!��9�GG$�s��u�i�=��w`�#Y�6Ao��c7!,�*g��&+���]h�#�^�#���3<������D�dz���
�}�?�>Õ^��#gb�Xˏ�p��FUEi;��,�{}S�GD
�:��?�=����&�)��s�
C����#N�^�?�%���p?/��o��\�P�v�}�{�I&��_%
��d��@�d�@�(	����u)��B�1O�7����q'��[��J�_D��l�krn@ӵGD%�0@��#�Bո�^����Z��w[l���N�o�H��??�P1
Z�8��ѱm��d���Qڇ!®�؂��#@at��I�Cd�E�$���b��?�x�z��{�$"��m�QC��4r���<�&څ����P�t���~�D�J�C\�:١�J�Y~�_���"CB�H�ŧ���^��G�1����tbh���(���^��U�G�����x�Di�t�Q�����Z��^�hGe�U�E�%"W�0���@�.r���|OM�����y\�4��
z�������L��P��o\�H53�P_x��+9s����f��u|Y�vbO�l���B�8�}��l`�H��TW	�})#a=Yu}a� ���c�ex�o��=�e{@���>j��0o���Q(<�
����:$nD�/��X��3y��9A��xʚ����J$���0K\]�n��F|���j?tQV5�@`�apc0�[iї[��,���V�r�}x�lo"k�s}qyPḾ@π�1�cGV��p�(��~�����8��/�,>�HaJ��C�H
�D�v
�p`�dt��g��Xc���P\\�
�P�!�À?(�_��f�+.��p���H�+�`j
��p�Y+L�=��	�j�Z>F5qT�['�E�����eo��|E����#ő>֦�>�(p��cc����C�t�[D	 9��&Q��Aw
����dLYO;�'U����0R�:�8ب>D��GA�e��Qz����Ƀ�uVS"!tRB�<�2�(�����v2����Fb�
�� p�j1��Fa�|ć��_�`.V܁_��e���-�CFs��d
I|D��Gͤ�O���d2M���t�{ά�kx���V&ֆ��:dO`��3�Dvр� �/�, �n1���)�	h��q�^�D��ln�&�j5�{��t"ı۸8	��4m�@�b�lA���WR2p��#��ئ��h�����`��L��X����bG'ڥ��%�蕙8��f�7tG����[�`3KU����н�x�|nhK>8G_��
�Ǻ,ԅ3�Ba'�I�� �z�t�_4GON+&�{e�"Ӫ�3�!�6	�"	"��r�-mul�eh�@�`Hn�7c�D
���i��bI�A��m9h�}�������.�kUk��)�
AU�_~�sTt��z�
�X&��R@
�q�!Qz0�׳_��6L�3p��/�$ �
d�
����"w�r�P8��Tl��p��T
��ڨp�]ӽ+��G�"\� c�5/�jgA
mu�`�Ў!�L�T��V9'�)�E�6�/�0����%K�gC"0�r'Y�b(I���Yw�q�2J3R<5ӿ�=� ��-22By���U�>(%k��4�C9�0B�%��e��M�M�*����R"�B��aB=X#�fY#��QL)��uG��	e�LfVRI��A�	�^�ن�`:��2�_�ЛK� �||��{���+����4]����,{d]!��9�9�������:�"� "E�B�H��Y�׆i8��##=��W��'<�t2��fo�(�������k�`hR��A� @@5��)^IJ9�9o��=<�@��t>���*����O�a7��"8-�O@{��-��z��0��
��m~����/�����0��}������\�\}�EX˰}�pd�������l]Ğ���/���\p����ZRX�p�0�B�E�\ޑ���?��n X`y�����!�r
����y�&#m��:v�B�JY�߈��2�`^�0��p~`�	�e<�b��bL����$Bp�����@���9�(�dPkNBp\ɤv|���d@��h`9��;�W��J���}�X�f�IJ΀�2����3)\�[m��nF�
�v���q�bW��A����)?�ИW���l��`�ȶ=���;�����[&'V�w
�4״:���a�A�� @`��C�r�[���R�6R�8���a�8�a$�Y<k�Z�+���	l	��$�a[h^?w�}�F��������`�*�<�*B��>X����X���.ur#��p
w��F�'+z&�B��B�|F�����ga�}=D��ˎ=펂��3�箐�P"XF~8��7P��è<�eJ�(k��2<�F��_s��I���N�xG��p� ����h:���Dt^�=��͋�]q�� ��!cGj `����T��~��11!�����;n}� p3)��0s�-��K�`��?d�P�͇�L��;ic��#&���w�� ei��38�z4��>?�pH�d�
dKp���U��jĘq�F�Xr,u�
LP�G1�`��c>��c_�te�8]�H%�u��z�x��P�4��/G��D�;a�T�Q.�)a��<�C�d@㩖Lk܈ r����`6z��֕Y<>�捕-����lQ(h��<�f���9���;�d�!��/S�ȅ�cN^a�]�d�1�>!���]dZh!�~l���E�#�Rrr�L� #���#���i����u�A��t�?��YF"��7��u� �$� 9�}D�1*O=�XE,�
$��>�˝W��C��Aб�~+�ӟ�����2�~�texw���%�6ǥ��oE��P9-��\@@%.��X�K�!�t�m�� 5v�u
��_2�/|h|��
�#��bx��	Wͤ(a?��l���6x�	���3�3ʕ�L�ч������0(Tz4q�:a���>��$����Ry(��k���.�(%�]h��>���^ y ÷F�ty��OSo>ۏ
�&/�xP�#����Ã?n a��A�G%��#�Re������cDT�,WS'Sg[��Ĕ���>�/�,��=U�	!h˅P]}��|'��0�X7�K�{��T,�A�g�C�E}=�@$�쟇�*dML�DQ5��r�M>����ܳ�S
L;��n2�6�|~"r�Apg�%n�KR
���t)mG`-��
�� ����C�Ժ��7	���Џ'ױ%�Bqs���b��T�!�#�خ<(p	�Y���;(�� \?�,�k��0L��ȏ�9$�́�����A3��F!d�H���?�4-�(�\�1���'?�l@0d�p���9:�w7Mm��Cb���a�:B�`����D w< ����9F�Zɋ�X��a� ԅL��\A�=�wveV!��V��=l�T3�@��$G�|C�\�z;4E�!M��L��D+$���Wt��� m����4�:-���ƫ�U� �  :�>�">���1���:‹�Գ
���@QԖ;��'�������b��bȈ�?�z�=��
��-v�r�A,�
�����x���`�����a�=M���P���s��-Δg���zB�������������]K۲D�,���	����E�����	ɓ�W�O+(yD߱�� �s.5��NbbP�L(�ڷɋ,��@yF��s�����OtC���ef�0ҧ�#@P���ș��B�a�u�
��..��[�A��	�2.�S�V����;eD3�
� *��ׅHj�]�a5��8�%h(f��ox�&g*cfY�X.�����
k_8��֌;��
H�#�}����:7.�A�א~��hE����tE#��Oq}���� �4�,������_hgb0l���l�.H�mY�cp@
�Q�|��C]OǏ��~�L�����qT]+��i�R�4��=�ㅠ�3�`%������F	Í���*�
͘5��?ȴr�כ�P��d
�D�<�9��Q����K=�!6Q�e�
w|B�fF;h���#���#�:*���Z	����V�=�f͏WZ�A��}û�9�Iiq��u�_A�oI�D��Cn�pc�c}$��.ϓR=l�6�s{�j�ZJ�������ᵩ3�^�?������xHdPi�0i:.���<�3^~"yI�7�1�o0��8���f�J��O�j�,-~�E8���\�{��O�~�A�
^��C��v8&��	�"C�6,�x��;��.\�
��z�tN|�ƞ����=y�Ho�j�	�?s
�l�Cp� ���1�kͿ��x`�;��|9��@����*q��ܿ
+"T Y�?b8vn/�Vޫ���=<B����\�@���\2/wÈXBh��EBg���]��S �l��)"�_)���SA*m���_�2��g�)a�>��@0���Lj�~��]F�G�h!�"����n?h�Hv�Mt���H)jR�{�Xb�+d/n�+4G=�����D�b;�bY�ψ�Z�
��fc��a�g"Sȧ�!$K�=01�qW���L=#F���mRG���1[�v���(���j8��n�C3��z�-CP8�m�j��\Fe�p����W�� �_��%z@���
�~�����b[�AO�����Z;j�����g��`{��%U;_�����7�� �0���#8
Fh�R���b	�΁o������~a�GP��2����lt;�Qv#��c��ō��|0����3���y���@�PE@�a8(O0���Y
�P�a-�φ����og�|Q�d�(��������F~���K�6�_h���V�k�c��#+�
�� ��Lt{�تƣ�d��>�"@-�&3f�_l�Խ9�a�s$�1
�K�'�ق|�p�iD�n�h�g[+��\ϐ���y&��J<���W�V����w¹�͆k�4 @"63�`"����RĨ@c��	/!�OG�Q�p6��n]��+H��'�Pk^�
��k�I`�4%�U0��Ecy���%w�}���;Uȅ
;�svqT��B|�1`�~��F�#~P�o�����yj"�)��A����T;B�Rk���>��xB���G?h�e��>s��$#0���`3��P�~�$��~s�>�6�5m}�a�2��y�r�/�?qDxĠO��u�y�����9%@�KX��Jo0�4}L���a\V aK�!؎v]�=�)���d�qf���\z�>���pSbv�/���9���;;��/)Ce�p~a��j`˴7
��&pb������
���)N;`�:�d�z��"@�}�%u�hF��S �e�e;r5n�	s�$0��a�ǘ�D�6g�1�ݙ^�an?A^�B>+������`*Nsǒ�f�~�F9���Q�J�{�-86"��b=�	6f5�&�l����V��B�[$^7
:.+*(��R!�O��0\^���������^#����C|&��4��_CAb�vL�O�5��LL<K�ن	�=�t�2—r��r�� �;��G	{S�9�t�lF C3
�@ji��Ǹy���H���t2��AA�q�14l��x����H���b\+r��;�m{v!�+X����w^��A��K�@B"�? [gC�M�Q���d�.�s�a�A��#�8E�:�2�����#��Etԭ"�W��0@��g�c���d�t�2�@@f;�0m `A?1g�0�O����:�T���5�(02����̱�S�t�渄�@"�Ma�Ơ9t�`����ȼ�7�D�p�0���0
o��T/�x]=�Y)ecŜx�K�7��3�� "���� s<���)"H��Ԕ:����g4�-���O��!9�Ϭ`�'��vQ<~f:Z_C�����AZw9��8��7���:�*�I�9D<����h�C$�BE�0����3QM��r4��Wp�H�
r�Ɓ�׈p?��u�,�"O�	��?�c� �|���Ԭ ~�����5���������.��BGR���=Gc�'���<��Y���&I�[�zc��/��  bX�
@��.����c�B��-pA���E����߈j3?C<�F8~@���dKԷ�!OC<����>V:V�^��{���j���a�T&�+r��\���깍��	��E��bɁ���R��oP�
L����`o�R���BW@l����)���aJA�FD�
��]4��8Bͪ�GH�$a���U���ȗ�d��Z$�ࠂ@/c�+`�,��� �4`H�)���
�)����X�2���6���L����4X1��]/x��R�g2=a=�CR�>a�AG�C �A�a0��TLV>��G�˰x0*���9N��(��jn���Z)�nn�'(e$���V8���KE��@�e���6Ðő����JK\�3
8��"9T��ײ���H0
���io�m��s
��P���%�7��'�VY�9,?X7��
9]TQ��E���/�����X o>`0!T���k�1�O��¡�z\q��Ja��B�5�to�*Z�=��
�(�����jR�O6�q
��#P���fAS����)�\Xd�:��v|���-OF9��#"�}K�1��gP��.�G�#B'^f'VCNA���,�s�:qY@��?a�vj�����x�"_����D[y�
�E!c�8r�u�Ny�:��s.zu.+��G���ؗ�`� �يJ�6�/
���y��Z�*|�o�#�	A��[8��8�x¾c��w�a4��8���\�����ǡ��X�����'���9y�R��5���p���X5��V��@�twuK��8�CI?8�9h`��B�L`E�,C�C��
4F_��i�!_2��R�����`��r>�s�Ȕ�������Q̬�J.0���6��Ȅ��b�~�Դ��1�0�1���خ��b�.�@��$e�0`�P��`��:2E�:fq��p�;���,₄i�
Ll��:=�ˊ�:�"�Rr��8168�fA�LT|!�8��W�C>��Y"a�+��w���a�΁��v����b9�yK�&/�k�F�~a#��$u��V<�.U�c`�Qy��SsO�u�=(��ʚ!��1�fPe�g�H�c�!^�) &���1��?��z_E_�z�N�����@��D�֡*�'��%�������R7V���/���PP�_��s�d �!v�8�ǢK�l�0ԙe>�1D�6t*��Q<H���
[�\�x|�>����4�J�#��;�L��9�UCB
?۵l�[�.2��`t�tv��0z��"�]5C5���&
��Y���`ȼԧM1Y`y06͉�DF>g3�:�ko������5@@3$�#@raG��Pty��z�V�L��>~�f]Ê.���jJ�����6������A��t!�A���NJ:�8�+%�����"��N=T ��Qj>k�y�!f�#��>UC&n_�dj�|t�'���A(�B���6e$Π�.��G�`�����$:
$^!`��M��MF�S}�T͈�/P� ��nV3�`z�(Ű�y�EƐ=��A��!��DE�z��:1@��ebo��%��е�a!���tiCq!���[�aʨr���V�^A"Ǭ�Aߊ��'o�.��Yv���.
����k����e���$EU�D���=䇨��<AE��!�qwh�(��YPC��)�$#����"`�=>W���,>��9EvD��KvO!(a�Z�}�%�����n�bzӍ�����ܗ4*������tv?(k�
@q�-��)���	!�1�5��}�ScQZM~���&b|��w�!����B;߄&HN@��4��ቩ��i���;$���ta�O$��B��9p�Ϻ�|����;E�jX蕅eb�P���i�!��5��C�!��k�a#��y#k'�g��J���CG��z���`��"
���v�b=����C$Ќn����-z\�fߘ���A�;h���4�p���.�4�wK׾�
�}�8�	
}~�rbWG�}�݀ɞ�0�=��,u?<w�R2^��`]�!;����sS�sܭ��F�Q� �<-Ŷ��Y�ޡ��m)#�	v����6�=�����b`�I֦
�\��+	,7���U����R:��GX�]a��~e�I@'�F7TDN|�����!�q7��HB������&��0؜�?�тz*=��"
�g̢�XG�C����'�">y�p�C���K~��9N��LK$8QA�N����a�.Q�XP6SU-t^yNB��p͟�Ȍ���1e5��\>PP�A�-� M	�0�ġ~P/��?�A�����o3J̠��e'�A������?�d��V��7
�$r���u��0"�pkm�B�EX�bQK'�`>����,1�`�~��(�Y��qEZk�)�[��Z�SC�o/��t[��	
Q��q	^P�'*me�w'�K�����_N
�"2g;y ���G�0->�H������C�]��
m[�E���ZM���V�*"�����a�,F�Z�~D��D�#��p��A���tC��-]A�&D5Ì�8��+|�����}��Y����#ԛ�G�xj)��w)�)E�E��Ydj:^�y���F���4�d�'Bȕ;�X���4|;v�tD1UW�&�Q���\ �rk��p�,}(��3�K�I�3���Ư���@�A8"~�$Y�B)�u(k�����(J����4��HY�A/�V���{"<�	a��@z��H�@�nl/VQ�����=�˷��`xQ��q&/���y'=��66��r<O"��a4z��@3I@|�b;F�oD<$
����B@�������Sk�=��$���	=��-��PԮ*CD�n;|���C`��hbI��B��$�	��S�/L�_T���0t�l��x�!7q��c�j����īE���C���Nfo$�\�l���Q��|>`�
��jU�h���΂�3�C0�ދ��x�P��(��Hfu��)��C!}��1=p�c��F�G�	��r=f��9������8�<�<D��@��	�1�'�f�*߬,�>A� ������*Br�2|�gA��[��8�^i�[
+b�9!�\n]�vS��R
ۑi�@h;>��[��<c��G�ˀH=����1��!����"��Ge�ԇ=H����`U��p��;�P�Y3g�!-g�˕
�%�[���wVT4�0�w�v�C"�_0a�lІ�=R<���bED�(����Pj�B�re�	��`�/�	�'I�eԣ���Yb?��'�)�#�����Ь��1+]>������3q���Ak���iH�PIWD��_P�o�gG�^�r�F1��:���75����y_��oy�E�A�n|��!�A�Q�h�B��}��c�"�F+��qA���'7�
��R�5c0�9��Ƚ(B���%�ʣ�3��|��B'^^�=�Ic���c�a�y6`�J�?����<5�!^�� ����6�?�
5`-/�vS��P���2����Z���'�d�Z�4�؋P:`6�>�����9����]��2��	4,��%�4e��#�{ȍ��?�a�C�\�Tp
��q.�,�[�<���8�a�B���=���0�ãC,��`ȧp�$Pg�tM��w�^�1ƀW�����G��n��ZK��L,�,��":׉��f�N
��F���r�[��0�&���B%h+��01�@�o���QбfN���z<�"G~{�E ѕ�+�-p�D�'�Q���V�y��U��̭�r��:�_.nLC
�N�P�1����h��B>F.�:�����@���*"g�`�D��Jב쉦8��PZO����Ľ�
A��^�����?Yy[Fl��$�c�S� �f�!X'�
���a ��
<�H!w��Z�C�OX���e��éO��\@�@�r�`J�~Dׁ�tQ�b��P�aRj�������"��'~$�����\p�!9��Cm�Q��C)�G�<T�׉t�e��-
L�ʦ�n��,-���)C�	�tGp&������ƥ�����#H��(�l�P��
!�=�sPv���$}�zo�\�ى*H��avi��*)]�3�����5�a�0��� � �?xB�F�R�r��A[�%! NDA�
�&Q�UD�ȿhL���ȩ��?�0�a��,���~%q�"�
Wc�!��)P��=��@�HDzrP�%p�V�*0.%�t�#J�?"�\>�[~,�pn�*m�[V�ثa,���s��v @7b�"�pЬa����)��$PBP���ц�I)��(�L�#C͡ƒ)ov�_������"itX+C������$�x:Gy��i6R탡����*�0����^���]\� 0��y�9J��;�7��t秃��aӗ�y�"�h]m�C�)CZb!�����\z���~�n�K� ^�A�@fR���֯_�R�����04�!"��z	��7 ��z D��X�@�*�EQ>�"y�`�r��-�,HH������8i����y�T�P��3��B8����m���e���`]�E�k��	���e#f�����.�Z��x��!zvQ��2��VKP(kD�%Y4�UJ�<�G�8��@�hn,�܊�:!zv������3��Y��Þa<�f &�ta��~e%;�a�|���-�l��#�l2"]̭ȵ�fjJ��q�F�&�_B�	�,�OTj��]�B�#�D�9ɚ_�p5�2�pP�¯�B���(�^!Ꙃ��D�h=	ȑ����{P����?��L���G��E.f-�G�",��0h��i�dp(?6�����/���
�Ɔ
=��CLm��D�@S ��������C�21!;r`�0V -�
��-Q �f:Y=��;k�%j�:����H(�p�E,s�A�L�ﳇ�s$�'�B[jі�-��B�3&�F�7�;X�D�i2EVѸ�<�c�n�x������`0u�C��2���{(H=��A!r]!���v'�x�����$!�y9�����d؎"���E%���Ҕ;��~@8�L���@���d�PxV4�‡�!��C�0���y0m,�����eHO���
��]�g%���|��c�!�`8n��s!�`�Rr{A����qW0��� c�8G�IĎ�2&P�(�ÏF���e�2e�q-���Hi�{�b����8�U(A���X��\A(��F<�F-�%K���y���{���c(!�^ �~�k�Y�l���A�Y0����r(�y�������Om��|���1������g������.9i_nj=	Q�_�J��y��ڗ� O$��|#��aO��X�Y�`]'`�� �$+�:AB����P�����D�@_?�!��dM�.��ϡf���(��VCE�|����[�����-�|OX0*'`�� �2���"����ԯ.�`�B�_0ڽWr�!����0���k��g�l��n��Y��Ŕ�!�B '�Pl�1���=��9��6#��(8|�_� ���&���T���$�
11\ �&lB����
�C!�:g���ˀ���d�&v3}p��mpM�Xv,�<�+-v�zU��
�FX �؏�*u{����'���D
��D�����	�4�����֑

��DE��=�Li�B4��0B��)g��oU�cpX�[���*
���0�������:@B܆!H����K]�F�R�MO���P�F�����Lt�s�E
��BF�'_�Wk 3�}�|#�d|B�UW���LFЇ��|���-��b�a�4�3�o7�XH\������p���6�M�J�`爫0�	`���q"=ta��G����@�vP���0�r!ZY�+E"q���U|�Ln��"��P7I!��x��Zݼ��!
@�)� 3y^��aGI�A�4�!6�4C�z���L/|Y�B`�4�dD5���6��+���p���f,<�y��N\���_�	(]�&���uR�HA�C
dAp�!�u�
�,E�$����i�^3W�C�b��X�?�l�#�2�0���$1F+���x���\�̡�ghC$$=1�0���"J��Q�D��6�y����@u	�x���8�C�`��ƞNǤ��U�C��rj3_^|��g�y��msb�����:�.?as�?���{X�zfV�,
��nm�s�[�~�J2|b4 �D�oU/h 8H�`K���J�y7HV��	�'
��c r��s�~�$|�ʽgP� ��#(�SQ�v`Ɵ������^��N!�(�He&�f+N3s�I�F�����:b�'`�~󬌢�dq�%$jM`;��t���ڋ�a���+�㮣�����A!=�M����ܟI��j
7�P���ڞw2�8��SId a�l�_J�g^��d4L�2���8�'�r ;�B��ӤT|8a8bgKǓ�h.�H(�r|�R8�X��<����XAj�@!�	�R��s=�k���l&nnrpqɘ`A�*����4{)��.��2i�|�ū}����s�B8@ق�L
�	I�
ky~�'�!�YEs��G
�FH�,_0�F��#���D�0�
,�ωF*��d2�AL�)�#���yR��|�`� ����v�!�E,�d"����z�w։G��d����3,g�3ԗ�,�P�ЂB����eoZ/w$�&����n����[苻k+O�(���$5��q�'<���,�|����e���.}*������1��z��O�M?/;�)�.t6��q����G	�'r��p�'�I�8��'�t���B0㊝&��P�9`{Ɉ]>��gS���M��\*�]���J'�1fa~����	��:�=rn1�(�E�8�0	��l��	�ڀ�����D^h3F����e�7�з�RABx1��SY�_@fκb�7	�c?��":^U��In�p?gy��y��w��^ i��~�\_k�c��D�P%}.�ۂm2=rGxOB��NP�F ��6�(dZ�}��uw�B���1�D)�&D�z
���C=h?O0�3ygJo�j��%��}'?�媧���A��HE�5��8�����|��ص��D�b���0b�
%���������&��=�r�>Z�հ#'5��}�K�ZMUU�>��!P��XEH��MZ�E���~lz��@�:���]A���l�@�";��X��f�Ɏ������£Yf0�a��{�J$��=Lq
��\]�P�⠻4���FJ�>P�f�����y�+��2�&��Q=��1�H��\��L�>���s��P@������
���Mc�J rT�w�QuW���zŚ=#@G�(}a!�&�Vhy��`���/�j!,��(
YL��w��#��I���Y& ���ݚ?�pD(p%��>л�r�c�ypD�q '��h<%�P�sBjt0Wо��b�<l#��\F?1�;�
�$it����nY�¾��� �#֕��2u��h˩����10JW-�F4/ы;��_��ܼ �&!A�@�L8�ٟ��E�S����+a�'��6�_b��*�p`�ϪT6��?�X���#VH� 49�(�م�K5��!#r7��p@��H-:���G2�#�lɊ<K�F
f��o��W�!��)%���'v��F	3�8X�#1�,�,����B1�>e��Y�k.ИB
�͐�B؟�%$(�.ġ��N��ѕN����O�B�k8�ɡHj,V�>r�Q���Hߑ�k��I���ʙ�/�;2�V!@9�5 Y҆�(Ȇ����o�:
m�"=f��g0怲��x���ft���h�:2L[�D���|��>��A$��h���&��;iB�TP�G�[̹y���b�3
!�˒���@�%�P�!N*l��b���,!�'���l��bQE���;$�T��P�kh��+�zm/�}�T!�y4`v~ �|�ߦ�d:�쁘S�����I"a�J��^�‰�a�>D�O��HP��fyx���~A)���d���I��T~E����v����2Ӂ�@=BAS���|jaZ,&����F
>�s�eXP�%�E�f�1|�:0�&����xU����vF���WϨ}�!�q��x&���×���g�&�a�
�d��D+�=��a�M����Բ<j�oB����2B�bP�da�S�4�"�(��瀀Q� �|"P����[��8�.b�BW$amk�����������3y��%C��†4C|&^�����!�<๦�N�J2��!�q�~�cxm0
�&�+p�7��/Ao_#+i��Z�3�W(I>H��x���J����Ǽ���4b�O���nHf�y$<KPq�w�"�3�?�Ň�Ǥ�����m�i�
�%zA�cT���A���]`�v'��pT�3,h��G����>��B�șH剢{�DE��uoSm}�5#G�2���Hv!�n��Ns(F�1}�&(-=B\2Fh�&/�r`?no���|�ZK>���&z�q�K�-ͤ�À9q-�
���:
�B�vF3N(9��z�������Lh?h"!�zqص�����C��=��(~���� O��0`xP�)cq�֝xd9�'̮��@PY�B��k違@M��?� zJ���N�yÁ�`{�	]��<�ψ��`1���J����P�1;`>�D.���#
�!l)Z������<q)L�"n���`��*��["�D)o����,2\K��`,-�sP�Sf����#o��ǦWH����idM�J��K����#����™���=�	��A��a4Q'؝�r�$�\�B#a����Y���<�����QBW�͒�n`�2�a�;�s��`�Є9G3�?R�O�~�,��u�q�u� ��!?|�!ԍ���tx����ܳ`���rg���d>}����'�!�6ی2r��t@�w7�	�:��{B�a=��9q�q����]/V/F�(�_�6�BSA'`��dTEWar�B0{p�J���f�p�D���a#�R[��^'gg0<D�ц�;&��jq�+C��sm����8���@Bg:�r�~�l�y1a4��3����5q?��jC�`����P�-�y9��PE/�üR<��[�2�D�3-��H0� @��a�uÔ���Q��p�YA�y	�q�,��|�;�g�2D6��h��l��K���Wm
&�y���F�XɈ���l���qV��$�h|b��@��@������]�}����rNb�Q��u	Ckm��
g�@>���s� ���'
ܡ���?�@����&�i�gw�!�b��2��fo0|���ǎf�ʉ��ɒ`� f#����
 �I��*GD��8�i�`�+0�!'��jR���7>�E����87�}��v�pm��������#��C��G�K���k�Q��
����R�jvA�(�4�c�ym$�PHy+
�&9�Kr�E��&d�T�
��!P;����;�F)�;�j�?8��W�;�@5�g���,)��1��Z��`M���0r��^!Y��_pE���� ֠ȂD!�����i���8�M��P�g�,�Jy�
1a���[|���]`0��?f��:�v��L��r��q�2X�;x�e2+�8)>D��g)�7�E8K��o�3��qN:�_�\压Wq*� |CD�s��*��(���YoC�<M��e�D�`HVz����:�$�ق�_~��<K"�%/��RC�����i��	s, +���@�,zù?���y?h��w�ESq�fJ���k��V�W��3�Dm���#���6�j�###A��Dx�DK�C��%�Q{����6�̂�P���"���i���:�&Y�%d�&��2�E�N���O�?pQ���.e�E�p����p�&p!
d�ta�%�9�aa@�W0M��2c�n���������A���z� �X��yy���߇Ģ����B�5{� �E�9�P����.�\DP�
�cTB`
	�j�5�G�?��s������x0���~�s����]u=���z�|G�����w_�@����-��	��rҐ������)4Q��C�?k�9Ş'fq��cn�v�?��ˈ�v�q��Fh��"_NsX���$��ә�\/�0,�n�<��zTRO�,�L�,��|@�}���C�:��C�gv��O�ߔ^#X� �pJu�D�q�ۅ�@���� �H92��P���u6×�	^x�^\�2�x���NJ�dt
����aZ���(*�F/u
{��4z��l��x�8�@z�_�^�A�FuM_�s�>�����a�7uF/HOQ`����dr^��3��yFGP���,�
'���j��`�F��nno�������������[ۣP�&}��A>Ѱ
�73'�+�!��-`���ǃ�(�&;���̒�����#����G�s%���@}���H@�(��r"<��DP�Rb����_0���'�`�L�E~�����&p㨰�W����xv3$�'�N��#Q�_�
��"]\�}�E�AbhǨrh�Za�����f$�!��{t��Z��_��`'�!�Vlf.bH�P`ȑC�,��W�o'��	�#؇>��rЮ��2U�<��XӟxI
�_G5�8����H\X��#�PB������(A��3.3g�@RP��0��P=��ܠ'9mB;����0��C������An���5I�1�e�,�şab4�#�c��F��"9�e�i>�rP#�7C���	��!O��Q"���G��������l����]��8�t'�0|��b �P��+�X�����l�-�\��<D!�ܐr�n4I.��@XLhY/�Ch�`w��ׯ0ƶ
&w�y�|ҕ���5+,���&X5�A��+�8:��L���1�Y�����To9�Ӽ?�sT���|�E#�qC������e�����^E�0Ys�%-y!݌
>`+=�F;�>]Cܺ�� H�C�su�7g��
c�{�"HC�t�2��x���у�G=��FP��8�c�ޞw���!�C=���~%�vc��xnЂ<�v_\ppwQ���B�)_L!M�]F"��
���N[�vC3]�Lx�����'��d}�j^�p����e�?[�ꆈ��X�
2�<@X�����`�?@Xy�
Z�}B����0�r�~"�;��~&!� ��\��ܽ��2�g�j7�yr�L�~�/�oĵ G�(#9C۔Vi1}�E�Up��ar�|�
$�1��J"�;�=a���C�*��C|>>���
�|C��`���W��H�0�-{�&�����h�n-�1�	�H'���L6��h�?�mX<��B	�L�1u�C�'}��C�u�*Y��k���|C����Н��|��=~�o�_�_R1�%z@cg���B_>�O�)h�>P%���T�i����%$�	.�ɘr�)���X�م�7@?0�lq��T�M�3�Cj��)������sZ�:���`o�T=Ң�`T�M$`�!��|�1�
,-
L��/"x�ˉ��p����@�\��2wR�%��+��G�;�c
�I�Kz@�BY�>,C�[���[d;��i7��� �`B�)nk�_���W�V�TJ�Dn��Pn��ז�pE�3��dp(W�a���Gb�@$�pK05
��0��S}&���AȬ�ߘP�'�p�Y�����MM	�,8A�h.��	����p��~�q`��)LR;�� �!g��w��ara���2A��z�Vc%;2�#3J�b�]̾���v��� �y&$�����Q�eB�b� � �@Ds�k������=�X����q�/��\�d+��i�h1���
<�hf߄ĕ"���
�F�L=����r !�0	��q�� PE,JP��&b*�ܹJ�^VA�[�Jr.��7�pl��D|��7Ė�p�Y�`�&?�󎎎c*<�x�y�#�c��ԡ��:�̻x���~�%1���G�@�x�p�HT��̴���6������D;0��i�<D]��� �D|��m!���f3��}�5���r�kp�(�8�j��������i�˙q�o`�1v���Nf�\��B> ]���G}�j��OqO��<�F���R�IJ�/B�G� �����pC8E9|}�?��Q!�����0i>9�I�a=��#��f�T��	�����|εw����\Y������2QG|�L
P�qԲ���{��!�`�o��	6��-������DQ�nC�y
F��zG��|c�'bL�
�(��"�/o���l��%Ϡ<&��G�t �}
�H!Bq)���(��_H�b�8%����'¬W6`��h�‹"����BB��`�ȯ��
ʀZ�j)�6���$/��t,Q���.�Gp%>4d:��%��VA�0ޖ=�@�}��NNR����П�&����@������1u���a�f.A�!2J�qY4=e�����oB��Z^���2��8����	����m�
�A���e&��$=E(��P>#����e�h��b"�^?�v;0O���FZ�nP�| �#`��W��a䔒����n)�)�~�4�v����Ch��t?10�$OV �y^��(z.
��CĕJn%�4��z�"��Q~�/���"�����\��a{G`L��)Og�u�lp'���~]���F
�I�r ?�}Ƣ=>���fs�׉�~0�s���9?�#��
�@fj��0x���%�%7)scQAT�n��>fn�|�a��L(���^���5��核�9vJ�M���x�G�&C�q���nk���J�`��> ��@�͌�n�
A���,G	�k��&�I����C�5�=�B#��
H�„̬�7�2f��1�-؆�;�.e��s-(�$P����M:l2+
�0��
[�#���K�%�h1#
�r�e2��+���FC�V��aDR��>r�h����X1�E!A�\�h{Nx���A�?�?�'�=���x��_db��COp%��#�fP^�����rJ�Cp����=752kj����>���B/�S���1�
�!_�&��k�V��%���CdUrPS_@*zŨ�0�������i:l4��� k$�
��8��	"��
��A��w�3\�}�.����j�۷��9�
f���ИC1},�7��8c"wt�8!�\]!bC�[��i`|�5&���� 6JpWq������I��
��-��8&���Zj��^� �#Hx#3%��$
J_̇�FЈ�fVޯ2SGP
Ĥ�	�@�׻���'�Zx'^!Ps��c��SS9Y>�^X:��D(��X�:�a���#�����B��Uu'L��?@
�(~��h$�C�2���s�P,�
�Z>���+���C��D���vp�}� �A�Е��{�A�D�'��7@&i�"��"6*\L9D&y��΍�؆㍈Pٿ�MC�D�\b�X{B7��G�->!=�� �E���>�8ۡ+��?�4yK��:������P������5�=��Q��Pl�}`ٻ�ep���K��'�+��DD��!���:���g�!{u��둘y�Oʁ `�G�P���ӓ�y@u	]h>�}zUJ��p�m�@HY���Wd	�H��[�tAb�e7��z:>����Ug�*Y3�8����ޞaZ�(�;�ҭ�AG~`s
C��Ǵ�˳H'���F`T�i<�%L�5�x1�'hdӡ+��t/r�
�1��?m��(�eq�h�g�֨�8�g�1�1�pIV  *"zǻ!~�)G�����()��t-�����)��Q��:�J��vhМ�{���v4?�8u�թ����w0�7#"����E_G�l����х�0��K�v�^������]�@�q9���M ��>#|�(,uS3�'���3��\��q�>���Ԉh:���r @�=EK�pX��{s��|�$�HhȈ<·
�2�k��a��濃Q���1��P�mJ����c�"T�јc�L��1�JL��0k�~����,gLO����"�6�r�� O�����G��8�PuӠ��u�̡�@l��-�j�G���(����ok�#�����H�F�?a�
P��B�R���9t�<Q�NIOǓ�9��^c����@�P�!�~p�3F^�����'�����`B�PQ��	P�����?ʆ,�/�f��	����h<]C�H&Jn�U�d�ìB��p��G04��!>Jj#�JS�>�`PR�
��KQ3i	_��}��

؈��}��9	��.�tv�/o8�I��"B{�Y����pz��.�c"�`�L<��|T�NP��P��*�����B�Hi��1�F!�ш1G�?�0���P �
���oP>�N��m�vS_h�(6�$��2�&�/Ul�'0}�0.�"�����~��LPK��0���f���y�W��Fh �f,�|�Ix��Q�ŝ
����9C_$��}�?DB#�q�郣���c��d˸�f�
>�I�N%�D �����K1x�0�Vw���r`�c�0v�>�Bg|ŋ�	g��Q)a8�������t���k�����	��5	��?�B9QA
��?m��Qg�h��Ǹ��0/���*$+�@�l�H��*P%���B��8�O��0��Z��KA l\&��;��e���BO�z��V^�)��2�^�UX�6�O�Dh�R��L<�P��b�0�:ò������u�e�����cU�v}�7�@��˂Ӵ�
i�!r`$Pp'���CC���?#e���Y�3 d� �n�?�{�[P�hj#m.�P/�6�<B��?`����V�#� ���^E`v{ܽ���M�	��Vn=��+�Ġ;i��%�� !�����>g(/����@IQ�@���"ld<07�����'����I8u�"J�p�,"��;�OK��<�"�]�f }pCA�e��/YG�h�_�HF	�Lj�Y
V�V,���
��X�l5��R�F���1myhgK\c�W�$�9�0	�9g�0�[W���ea	��b0"��8�(��C4��r�s"�=K�9?Y�7PG�3��D��<#�4�nB���Le�C9��!��r!�Cv�g&��.�P� ȧc*t�dq�&��Ʉ�������T���!R�u/�3�eC�C�a�B#�3C3��G�z�:�� ��s��> E��Z�P���B�I�(q"�r��\b��(8��	K�;�c	���<�u���)-�o���ZM�&BD�Ld���q��1���E�"V�� �1m]3�	���Y_�e��bǔ_ͭ�é{
�W�ɦC��L0N�!%��K)9��#��GQ�8��<�Pզ�?%�HXT��yV
���� o�x������xs��޹��;��c�D�ԡen����Q���� ?R7�W�ڗ�����U1�VE06�$���>�
X�)��1''��j&�DX�!�q���Z�.[Mu-��4�2��X��V!|�0
�����0�7��(ke{sP�
�~Ӭ�|�h�G�a�?�]�;j��j��A^K���U����&~��{��x�u�o����ȘXNX�����΂Pw��n�$N8bx/�ѳ����@�Xz��d4����Fx��E	�:�������=�2��f�Z�,1���)�gp jx}�ykV8�C����\&TM���M��>�*s�)�8�73���x~����1�?����q�w?��X�4��?��Ϥ�Jc�e1�}bl^�TS@.u��x�nY�V,�����$@��n����Q.˱C�xh����"o�Z�� ��6�)A@t �6K��&!:�M<j[穈.d�|��f�����1��4��Xa�Ӿ)%�c>�#�dC�0�~��P�5x�%�=�אWm�%]y�����a�0{P"���=3:�[�CNy��QA��C9��#�ƇG/� Pp�P_2=��`�c�o�3��u44�܁�F�OØ�rb$80%��"t��j-K�j�,���>a�Ҳ�;xԾ�V90�c��H��z��
�X����CG}�P6�	�"�q�Bh�dǤ3"
���2"���.	�*����8O���z��c� A^ج�?�~?Y��o���?�2��g��3^����@9�}��dש� ���� �<�Q(��wF4�sb+���B!���yI���{eGӒ3����!�.���s�&���3�,�	=sP�HW���8�u"d�ЂwD	 �0`}@��1}E0E`�3M��P3���1�눼4��y�/iae��g�Q��"��aה	�6d{!�K��։��J�p���	�r�*G���N($���X���`9����]���Aň)�q�^��R��I��.�mb�
�Ql�x��բ���QH��@��n��xU����$��Gk��%�ŀPY�w���R����jH�|��s�6Gi��.<�Lh@݁�@��b�8$�)���UD��0�
���0�@u���??(W�N�Q%t���'��j�0�xo��K�S3U�ю;�7{q��`�#�)���2�4'�_Q�8T�%�8��p;��K=���u�3`@���f��c���lfF�0��1�Qg�pvb�0I�(r�Jɕ{r
�x����`���$0�G��s1��Z�a���	< ��r�T��dT�#��������``=f?��l�[ZH�*�=�.�S�����#b.2 O,���D�a�$��2�����W,+|�<Q9�g�p=J1PC�� 2�.3Hj���x���8pLO�@�^���pcU�
_℧*QhLw)!+��B,����EW�ȅ���-� �%bB ��r�.�?@p�L�|Fj/#
���J�?�>?��ϗ�VX�?(�Pl�{��d��?�%�Ѕ�;�2��@јP�!P̃'�0q/i	D&(iK��T.Q�֗'J�J�P�"^�nTGu�<u���}#�`a�0�1D�f�DD�A�f�Q,6b�Qʡ�1b���3w�I�*��B�e�pj�]T]��Kދ�A>�xŌ@.�6m`R&5���8�l�J�o��!mLo�4���B�:���}�c�
�6"�2��M�"��6�s���M���K�C(����M:3�tBq�aHX`Xr�b����2������Edm,���
2L��U�O��=����X��9	F�>%+�Xd먘��Nx��@)�܈h�:�\M��S�B(� ��=�|9�Xp��`�#<"Yb�Ab�
:��K��M�!�y���S�\}�b��<���CdP�@e �?��)�D?�C�0٬\
�(}](@D�r�{:�é//�d�8",b)$d�"��ҳ��,Ǔ�^�xA���#��\�z\~Pm�<�8Jj�L}�*vƔ\)*Y�p��!%��Q�<,>a� �R��J*��~fJ�D?����Ł�2��S�C�L�M����s(,aE
b��@b����F�(@�E!�0L4���
,���?0��
����K�|Fd���&�K�����t��8UF�&��
��x��EJ�hav��F�̆62�t �p�p��Ev�=b�k\B~Kb ��cܘ�|�T��B�W����eC�
3��B�����;-���`�
�" �!�!-�����|DtxOt<:���Y��k���A�r���8g�v
���P��_��f5\DC�8 �2�c����T�K��bk�v`�JS�.����Bi�
��l����;	��q�Ә���P?h��HƵ%�g�H��� @4����e1dZ�z��jhd�NqГa��I��<j
<�­@ !׈��,��:R���l/1�*� �#g�y�X�'��劶M�Q�3i��y��|�#/��7Q�H^�sdQ���?�
'��n5��^>�V
!z,��6�st�|"p0�-��A(i��_C~!�kӨ}@�gٮ%� 
���VRVЫ�Z��E��L嘘"Uc�c����-�Y�0Y��X��/3e�'�4�3�7`ƂL�t1�΁�y��Lv��
��^�
r�GP��ю��.�?.f�3p(�!c��N�� �^8x�&$/��_o�Ǽ\a8�
4q���kO�E�?���e��t��*,���g�>�u���~I~3�;#�<GV�L��W��p�����f	
�1�xCh�|�a� ���€�yGnPIx�*�\�d+F����,�!��B]��核ĠӦ�Q��9ü�ٷ6*�v�jR�����A!�N�3^��{3����'�	X��B���[�+����(K gB��%��2Ƈ(;w�):��6^�:�v!�h�y@�!O��=\|Rk� lK��������E/�Phr5pf�B�B6r_�e���S�eP4�v!u,�4O�7Y�h���U��>}#"���3"����C?�B̛�I:�:�$II�^?0Jӂ�p�N�=7��
�&	��4����
����N�V�˳Ȏ��?��l]�˹V�y� ڧ�P &1�7|c�@��
�e�ܫ��v�x� ނ�q˸��!�ao����}r��%�<���|=bR&Q�1z�*����>�`�Eq��LC4jXQ��d
�̮•O���ۈ����J���!����(C����[�0���(w,��?F�8ar&9��f��F�b �Q��J2�%�	�z]zΗ���7��U�5������d{��ް_�#�3TǴM���P�_1ꁒ�2M�I0��Ȑ��J]�.Qߵ*P�Y������t�P��n`eC�!�4"Ø�9�s�
��P���=�w�	��'݊bM�k����5r'>�~(�o����#�!mt�Y�-�<+���i��ͨ`�h����H�V��eU��j�cw�N��ऊ�Q׉�kNrE�s�9�|,�N/[�̃�D(^-U�x�.����$�����7��0�����=@w�s�2�d�./l��0��Y)��׾!ypx|g<\~g�9�F\�v�����>�
�9.5��;�L#؝g1Vq�{�z��;W`K5d��D���ٍZ�����t��&��ǨI��I�>��ѡb@���g��*�@i��d�{�C(�`�S������t�מ&bw�ޣ
k�z0�_q���>��b
7��J5��zܱ(�>w/��?��5��	!$����y��	�9׳,���2R��0Uǒ���X
#��Dن�H�b+�L�%�>�=�0�"��_~�S�?d��m�q7<*���Џ$��y�+B��C�"�dl�{�����魙l��i��D�x�C�~�� 6�1c�L$&�ʏCA�� ?�_�Mf%u����nԨD`qL�)��Ƣ��=��ИP��{��q����3�[�0B��&��H
����D��"R]��h�ft�P�p#a�E��"J+�@�c��o
��헕Գ�ϰ����<�!��A*ycO`ב�D��xgM�`U���L�Cj��ё�B�i
l�\�ʖR�C{M��q̔p��*O.[�����<�1�81Ɖ�<�yja����|��.��,��@�e�2��56���
+�\C�}�/�����aˀ�-��~b������8s�uc�F#i��%�
�O��1�^�̓_hQyR�9#���d�"!=��=%����ǬmG�"\>TdAk%�W��`���j)���l+�1�VN [���r�Q%� �T�Ɲ���E�����9VJ0��ډ�cCj�}�k��1Nq�#r�?d���
�>�PtWx���`�k�{$m�Uƀ0@qB�����	q�Q�8D: ���|�@{^ d^`~��Kb0�u�%�����} ݆@Ý�'�c;�e3i�P����r4���P?���C�|P��SWo&*lVo�"!��]�
���;���h0G���Ѣ���NV�����˨���5o�#Ԝ���=���~1��!`�A4zA2._5�0��L�~Ѐ�b�B�2���&�@&ce�U�O��C�89���g�S�" /tŕ�xݐߎT���h�D��d�-���
��:c��8�?�p6�$'�'p�K\��c
�W��%�$Aw���M��G
ߋ�A�#���9�}��_�����a൨"`0��%�����C�Ϋ�ƾ�*5�_3ك�3A��V'��.a{����J�_dW�6����8~���9��<
�	�����r�
��&�!�Lg<3�*��H�ߘ[��#w,hx<�(%	���-�	��7w�=,��RȎ`�"T���="�8����6�,�
������=I����0�.�����B���@�wT.;%8����:=�~�c2͓�&'����G:0Ы�$���l��+	���_��B�j#�kV��`�bVm��3�@���e#�,C`�9��#�X��W�Dj)�+iY<�~~���v1����0|�H�?0�᭪
<q��t�P�[�AK�d����z��r{��U��@�-
��f!X)ЅTr��(�z�X2�Nb0O2��t9x���p�9OY���ß��>�`mȌ��h Ch6�l��δ��%\(X1W?~�?ic�������ÔQ�.�G�TV���<e%�����@a�������R=���	�C���3�*{�31u.;�j��,��{Mm��r*UBfk��b@p��s�!68�ԩ}�B0�x��YX�|J��6�Z�Vg!&I��EijdW)�)-r!e���+��0�1u:a�
'y3�TfZ���R+NM��Fl�;A�����a *��-k�acw���uD�����@
5�D���|f�iA�h눹Ya,�vz0��U2�����#"W�9pb!$��"4�\�؇��<}�8�~�1�(!@�~r\�O���T��y=�|��\Z��X���G�0��Y��vX��e�ަ�h����_�~��c=9�.��%�����G�.0�f��.��`0X�k͠��������|��a�y�
f[P�8�x�W��>a~�*��rx1�/���f�8?�DJ���5` K ���r=�X��"��!����WP�����+�:����V��i+�b}1,ߝ��b��|L�t�]BS%�0#*^.����%�O�hEػr��0��6�&T��~�f w��:���.��-��ڭư�k��A���q*���Z�d�tB�!z=�@��W�`�h!�♐�0�e��A�]
�?�5�1v�:�iH
M�"Y��I@^Wf��a�֑���\��.)2�B�	�d�Q^�Q��m�7�u,fQ�\/����:�kY����hq9<T���R:�Za;2��5\�6�Þ	� �P�&���Oh2(ZW�̃@Б���Q*��fv��L��0�.؀��8�_0���t�B����T섦]��1%��bG!�*�a�=x|�%_�K�|C������B�	�9�~�0�3�mv���;���������Mh�[�'N��x��F�
AhOIg�?�c��̻�4:NH��"X2Z2ЂYr2��
����
t��3
A���G�^����e�xu�N�FE�>�#�*��v�L���P�
����S;�<7V�PrD�&�����n3�Tx�>�Ұ�Q4xA�k���OcpIۖP0L�N!�Q��t�I���:189k��;pH�bk>�>�P��*#�?2\AEz%0q�@����q|��!,��3�>��#LE�����::q�`��xxA��
!�: ��~!�$	�6��7p��D�B�_F�}d�-TOy�Dǘ�Mf��~��	q'0bK谁lܡu0�w����"�C��t^]r��#�2Fa��k�v��M;!��^��9�fi���8��+�-�%<�
����&�<��]�sf^P��Mg�G��I�ۡ�rb�`�p���xH�kl��̛�du�%��	�~!��v_��Qnx���5�͘<j&�`m�'-X>��D�w��8�y��ʈ
��pA��{B^jN0w
�`!���A�P��%J�!�
6Q��c���s�����"p~"��sԪ{�"^"�xIJ�"�c9�
��<�{&��1�	�-ıT��˝�T(otV��#U��
9��1�E�v gn�d����@
�> ���	��8�ǐS���@{�Ȳ)��Gi�1圧\���Lj=��1�j��d�v�~��sѩ�7��B��^�+yQ��f<���S�z>�Π�P�!(���g��n�(jn��6�a*"?4����	����Զ=�Alz��bp[�.������@�	'�x@�X4s
΃H��b�̬wP% �Up~�����
P ����}
�B�-��&d ZrZ2�C�7�8yB(��J��蘮HZz?\A|�V{�~���h�k��M��#�p�==�Z�$�^g�[��NVht��ˣ�	�VC*2A��Q@^Ý�;1E�{
<��>c�Ş�3�n�f��pQ��!Ƽ��t������A��t�������	���\KE�����_�X���L��`L�t2�0��I���&�u�K�/��S��c��|�&f!��A����"M������?�J��xр���6�H0�Czq�7�����F0�g��$=P�@:4`d�?[�B�D��x���Lh���6�0�4@B�3�?EkBIn�f�Գ��E����2#���r�'�0b2�p:	�U*8�!aCf��ȕ+��ee(��yl]��p�K6^A�Y&���Ԥ�"�t�I�9ɈD
���H(�;� 70����
H(!5�ѓʄ�&
d#����-A�@0YzH9��~���@G/� ��1��R
����$f�����a	4> �&�E��ق���M�>g���/e��d���^�@w�bVnۗ=�86>-�1���}ոZ���
�v1>�W��D/8Hn�2 9��ǰ�<`~�9)��~�cQ%@��a�(����}A%��6(��k�K����w�tI҂@4{�U�C�A-RJc/̺�3��0`|KY�p���n"�nhGb�AeA@�*E"�o�7�<�Ё�f-p���H�l�8|��)�ng�r��W���A�B�40�5O1?A@cdI�� ���a�}>��4&��"��J'0��k����_��.:�N��!����/�'=z�̄�P��N
*�1�_1� !0W�d�虃Jy�n/q��������(��pq������E(:0\#)mځ�jDV?��s&B������0
F��#d�v�Y�x'�4�'r���tM?���f ǂ_U!�8Fb�17�E�_��)O���r�`�������n����f����.G�	x�����:.s�;���-E#35�R�u��1,�&�?��r؞�)ӈdIhm��"lqr��@��~�9^��ZP�������D�7�G�D>�:��h���.ȹPo1r�Qz�H�u�?�R,���;~�z���'�P��F��ˬ����8�,#�z�BG{%X��5��n����f5���S�O��dDK�Jk�7 �eU�~�,��;A~�,�����#3�DŽ��p�hk�jC}
�QG�C�$���`�b
C���q�/k|LI���e�x%s��� �PTt0'#3i,�F=�̢
�/PG�I�>%B��a� 
P���f��둙��N*�N�lp`[l�%�[(I�/�,`�IߌG��dl�	T���/�!oY�[Q��<�))T8�,�V��qy-N������G�3L�� ac��h>����g�݂�m~�f�װ�7��[�?�n@�r��!X!�9�7���io�ܠ�������ˏ�������ܻ(0}�:��ueѶX@�_ �@Җ��{��_�(
#��\�
��r�=���4Ld�_��90! ^��n���e�'�gL���蹰W�dqG/���@�����p5��W"�N�p�zD�l��Z�
#��6�q�I�Lo�@b�ݼ�}�#��c*�}8��3�d˷�Gd�n�5����@Be̓i���^�$���	nt��A�"�g����ao�,�t`�SKb!�t�0�C"V��<U�t8�F� u/��j
��f�&n�a��"��(�O$-_���KP� v}	�S:
�0����������`K���5pJb��$#��gSC�h���@
>�&"���I�B���^�����x�j� b<P�`�R��s2 ��I��_P�e��A��G�:���ɒ�0#"�.ry�-�@j��}�(�e�+�P�8���Lږ���{q����"(4��.��%�VN@�f3�}�fg7�W��C�
���!T�Њ	2�u�Nb.�1�ײ�"Z�mlA1<�ts�Y�‘�؉|�����@��C��$�~���5�\�@�|�����#+D7z�4a3G3/�/pX�LyǨ�h�� �D[���u��98}����"����8�OM.����KɉsL@<C�.�TO�6]Oi�JQ����$����V:/3�� ��#�0G#����$$>bG�(IAȡ"�{3y��/x�3Eie�1�Ϧe�2؉���b^�W�9����Y��@���,���sdF�"��C�I;�/G�!T�hm�)ڂ���X�:��s�p���A��I��
�@&����@`�7�䑖5@�dS�V�_.UA�������
����ʟ�tb���9�2�4��9!��~����!C�C�s�B2�kW,Kn"�&Ғ����^@�f�)��(�¹S��^�6��j*�"�C��"�g�j
O.��8F
�/�0H�T�L��<��P(�ܳ���; K�`�$��>C��0ũ�|E��7�C��ɾ��<��zA#A�)P@<(L:�8[Μ�u�K��‚�Q-��6
8��5
��K8&fd6��?���c3��JJ���J5��/�J��N��b,P�Ǥ_@֏��
j�_Ҹ�1_ ����h��`�k0�zeы!�����	�‹�.+�!j�
��x��؜�2%�C�y���� o:(�b��x>��èC̈́��G�5���\F1;dp�'���I���3��)���Q�b�X�B�OÏ�����
�I;)��!3��i���:�3��P��~P�.a.��Wdt���0�n2�Y����5��u3:bn��5�������-�]C��8gnz�[�0�������#�qd<�
��
]L?e��3}"��D�&�;�K1k&|��F]OI/��d
�����BP�g�����f�u}*|��FT)]��
��`|@�QB$: /Aqڻ�����|�N=.�V�~�B�a��#��bG�&��`�u9�+����
0aSaG�7��n�xcah�&�4��p@�|z!	�Є�)��emV���(��������L��/��&�^a#!ب��ě��3(/�;J�p�%;��p��D���A0юŵe�֍K����gJZy<�Yc0C��V�|�Xc\��h4:
��1G`��0�B��$�2��q����T%�w�/8e��C�
��Il@XV3���!�{�q��6=�H�Q�6�r�Ă��*RJ ��N�Pp�z�&���(��)Z~.���{�+9����	\*I��L8N7V��c0Z�`���"&T�<��4�\y�*�\"c$���z>���6~�A��/�D��`��H��L6���9���t؅���g���!
�>L�+L�����XZZ������2���`"$M�$
�$�g�?�t�U=Vk�OS��t��.,��)�=N
�Ȅ���HPd�`�n��	DyQ�$j����.@>��3�q�B]1����d�a�I
!0Px��
�<�.��0=�%��2�p��Lކ1�w+��)�b�B����DM	�9;��o��)���C��+�w+�9C_�AC�!1,B�_�Ny' �b/�K��o�u�7,޵D65�V��s����v������O�
���y�9"��*���t%%ԙ�j�S/zȆ
�u	�87�9�PQNc"^hp���P�^��m�aK9�=��g8r�0�E�5�3��QB���0�@����؞MLt��"���^
�n&BILA�P��A_o/3���'�r��>P>ƅ}I(�A�m�HA3'�¹�5(x�����c�!n�b�Wsn�
�p�3_�G0s�9�	B|#�r~��_� v���Lo!G�}��3�@�ؙ�D��b��}A�
T������Adr�R��5����P-{ML���EWX�0�_cC��@
�7����d`�R�!~�%�����xJr�Z�0`��rLc�1{j�H�x��Q��ׅ�#�J�(�"R���ȕ�O.ed��8� �,>L�G�
@�D1'Qί󉗖�^�_]�Z�
�C�>�7����G�+���w@�J!�QO3 �0FG6��;�FÜ���l��%y��*��1�)x�B)="w��� w�Mp�"ۦ�&!)�T�)�g%z�$���a�`b��7��,Y1���Uǧ}A�>,!�
!�F��"�C��lE�,��A؂��8�2v�x�VP�3�cd��&^زT�=��AhXE@Y�:�9���P�C�hH������h�C��q�8=�N�D����a�N�������In
��C��n�} ���-�ql

�o�� �	���z�Q��@٣-�Y"2Y��J,j4�88�����Q	L�C f�Y��̷�e�Ԉ���P���`�[�~�PCr����:D�|~�
�#O�Q"�z��G
�$�A�v��WX�ࢯ��o锂��4�����|��Tg3}��1&�s�R|���Q�'��)=�7��l��@q ���!(�M�Xj4Ƈ�!|�oVLi���a">g�k[4�
�k!B`_������aH�!��3mDm���<��\6��1w�˂Z"��a����$�;&�Gj!A����0<̜*$Y�b��8� a �E�� (0A�6k�4�-��څ��3p�l�!��N�2��&S_�y�#���:�3؂ �԰��2�����l0R�B��h<C��ؘtEk�ɘ3A�l�`#Ē:z���]t�=����O���Rv!h�!P@Q٫._�P���s��(w�*3#��ddhpL��%�dk��U����0Q<�t;L\��p��hÄr2y"
�P�Y�n0��p���B���hio���#� g$�hA�x��%�X��a���<#�`��i-V%���Ls�g�p�u����ɇ���(I�/lFNHw�H���&���}����1��%z	L��
� ����
|FO��Y#<"��SY��0hC�Ӝ�zC�I��,l�}��h���M�erp?���)ql�ôxn��u�hc����@p�<8�P:V��Ȑ�\��3Y���&�zn�:�H�'�O1d�>z�4Y��A���?8���*�t)�H}���!m0��@$�\���hƠ����^�Po2�#�b���d�����H�O���V�Ă�ݗ.^Ӥ$h%c�c��1�R��Ņ��h0{�G�t,�P�yzF��.Cp����Hn,c��35�w�!�7f�Y�H���T�Q�Q؈^���"�:uP�3T���y�pʐ%~:���(�����v!�����
T��?A�c,M�Q�B�d�,�x������P�@��ɔ���,Oh0rڂ&* ��z|��\��
�J����I ���9 L��p���
��xB|qC_���D'x��)��o�zFm�PSR`ה��E��B- H���}�:-I�z�%,#��$=�_�Y��2�"��
w	HD��
����,�}��%~f�ML��NuE�M�}s�w9��ļj�+�跜o�
��#��)�4���{�#�o�BDK�}#,�p��6G$@�(j0�
g�������c$�A���B��ȡ�%��3��.O�D"���L74x��	N�U �D�DQE�!,�a�]C
1���x��%��fOa��#�|N�$;2���?O�+\B�P�TD��9�9}�8P�U���$Y;��K��y�]G���7�c�z�l=����nB�/���[��'�G�S�;�Ƞ�P��ل��f{z�!�3\b� @����d?�~xr�6j���]�4�A���O�CPE�i�D�
����?Y@Jh�9�
�D@'R\���$��!�9�(\�I�R
f��sj��Œ
`zb���'!1AQaq��������� ��?!��7$"���Y�דD����aQ��9,�$Z2��4F�����	.$�f�Y�
��Vʳ�o�ےiM��Eq��?�ÿH,�~�_M�����8Q̾Y�p����'�e�a^-�կz�d=9��^_*"7O̯Ч��\���=�)�5��Fϔ���L��^4x���lh�uܺ��[�{��j�h6��\��V��='B��~�P7,,K�6`�jJl�6��p�di����(��&�+�1�׬��!�$��#�RѼLd�����P�f�~���͟����9vӐ��39v���ش�M���-_)]J[p�ڱ^�8%���V���?�w�@_'���Wiλ��<pl�i ��f��V���>���#�v6��_�{�]�й�K�hk�+~c�[��/��e�m�En\��E�*��M�L�ӹ��Ct���Z6��kֻˡ.َje���LX���pR,�t�s�.1�cJ%򁥻�G@�+�G8����j3PȮ�_T&e%h��rSn�ę�a@C&��R�jC��
U���@�[���4��lі��&9�`�����VP������������
Քy����(6+���Ia�e�����|��:�����]�_�y�s
?T�Ծ�ܸ%�K�]��I�&kh1W?��b#��!@�u->��z}T�'b|7�������1��!�
����,�+��>fݨ�5�o���`��+�^��t�/���=]�^�&:G���ei�k�ۏ�J��@����`Ԋ�q���9�P�U��?r��Y�'����;�c��CO�zF7����"b6^Z���l:?�_S�wd;���{_�h�x��x��p��&�?N��l����[^)
�jY�ߢ6ڄd�y8ev��jJ��"�N�\��0,G��m`5�“~4���KG�s"��2�lT�_5�k�����-a�2j�mCT��u��C輿O�^]D�l�Y
�B��Mk��ޯ�U�azr+���_����C�q�s��>UJ=}—�
��]��-�,�.����6�ﴡ�|o��~#��y3�)�Ms����و����b��?����;��	=�<7�.�[�Gķh��y>[`�j��*wE����?�2���^��0��3=��N7�_7��>'��ލf�/6���	�e{�C�!8�pqc���b��l�<Հ�r��������ͭ�����n?���l�ǝ$��W�8�׆U�@1�#����HV�����0JQo�3m
w-�a�l����f�P��|B84=�%wTd����2�OPB�6o[mY�
*�J/J�U�Z�
���ص�]ˣLaݩ��^�릿�W�X?�"��]B��Y"�*
�sg��"P���l�}���F>,.�z�ԣ���9��|�~�7%ur�	���|��T�`�g��I@m���Obk�'�_��0�,�x������"�<t1�����/[��n*4`O�o�#��2��r*o�Y��+]���.4��z�5��W4�����y��$�
���R�:5��3��DʾnmX	��{]���x�_K����_7O��|�B�q�ˋ�ͽ.3�W�S���b���84��[T�j�Mޠ(`��:K�uf7<��.\�2@�N�d+�f�|R�E��+���XX�Ւ�/8�0��gu�5ĸt~�8q3��'�g�#���1�y-��iH��A�Bd�EQ�(�i
�
B��s�H� �R��J^�����*Z���L�Y�j��q�Gf��»Բ���X�QWT��B�h�.T#�s@E�A�~	�P�O!OgR���5tl���l2YpT8��Ć�Xj������ڊ��W�2�[��R@m��D�\A��/�l'ʍ )|_Q�S\��^fs������
��XR��܅��A<�a��k�Y�2���J�.�(�[�e�a�U�y�_b��tb>�!�ܯ�K����;�4"@�XNs����c4�n����?�C��eM/��|���U�D�8x��O0��n�w��8�|ݽ˵�7�f��������E��8�xI�z0�������r <d��V���s�eO��d�c��JN{�!`�S�T��vB�g���0�.�dd�
�΄q���^
���!�h0��
�YP�������x�	�)Lx��@뒚��Ҟ	��3�m�
G�v����)��h�Z\"�Y}+�ȸ۲1����䎮�8�u0ݣ�Sz�Xf5��lz�_$���U��Ao4��,PPC`�4��X�= q�+�=}P�r�z�2}TF~����?$Ţe:����?�GJ�d���O�'гBi9��#�1v�V����֌C��*	%�h��f FpU>�=��1��Cb��-��c���
n�?H�����.��J�c���M ���	9����G�҈˻�&(u��py���x��
���ӛ���
�����QJ!��>�RE��6�ǒy��'�H�ߓ�G��p�Y���D":��,�灂��}��
�C�Tە�z�jq�x�T��L���W%�}�K���X�m����H��
�]Kv:A��/乶;ձ��pa^A�*���0��'MׇS�Y8/��:��Py�@T��R��2���=u8٬�B�n�l�J%��ï�X���u�Z�)����S”�VT�U�^4�c�	����I�C�N�!�{����`§�"�52��}1��f_��z�0ͼ
������r�[���.0�=�����ى��#���,�H)mk2��#���d�McIIB�5�C�r�NlW����D��Q��<������^3�\
U���m�S����n�pK�s�����?��Kgp�vQ�^h��� '�n�zC>R\��
UM14}ӛrr*Pަc�u��/�E�%}�am=YI�ؗaY�6m�6Z=�����;��X��n��4B`�VE�}J�‹`4�-�on�1:S�\�_ �k)��$��%5�]_M�:�&M46{�+1�c���?�y����X���� �.�ߏ<��>L6Cm�x�dd.��nǶ$���黽@;��!O�ծ׸)\#ʓ�Q3G�Hm�������4�mүcŽ"��A(spUo�R�s��%ZG�ʾ+>q��
��`�����8�K��]�s��Go�O��$n��_�<����h���s�T���d�
�+��ӄF>�k���S�t'��e���`��L�<=��ק������8^oq�).��8Hi�b���v�v}{tTW��?@R�Lޙk��Q���"2�2Z6*��d�ޣ���!�n��4?fǼ��~�'�Jnssg���ͮ37FwjQ+u�.�$Э�[�V#�wD�
e7��t���q�y�b�F��Z�:3�AN���9m(�+�Y�BG�h�U=N�Ńl��O��p|��c���S�����a��#�"/���u_`?�o��*\|�%#r��\^�;~(ү��Co�2y�o�`63+E��ip�po���6�.�y> ���~"^s?��Ut+�>���h��SL��8ۿ7{��Z�<�D�`��%���L�����i��X%“�x����-�߾�ێUL���}ik�JF�]z}��f����Rێ�4u�Ր���~�2��bS�r�����q&Y�V��PX���+�bQ�	y7��G�<�i.���ڽb�I�
`R;JM�-�[i�,�[�U��.&�k����|L���?�3$�$�k+i�*�/X�X�nt�="�w�L���W����WĖ��b��qşƌ�)�T=6d��s}+p��t�C}��N,[Tŧ7O�u���J'o��@-j����b`,�-�dYV��N}F�E')(7
+!d���08U���6�@�y�c����
� �=䛀�n��a�c�6�,Ƴ9K[r�2�����
��N���ڷ��H��ن�mh�9�0Bӯ� ���'���U%[���)�SFj�x���RV��hml�i� ���չ(��3��];wu�;���m�(*$��ҙ!|�������Ũ�40�l��,��C��ߑ�=��L�`��WP�f��V���<Czଭ"V돚�v�Q�:�Ve�G2Qzky�x��8�y*�<ǩ�9����GsX}s�Vx����&����{(��ϗ���B�8��	r���YW���ϟ�s<�Iu�
��B��&���<R���_ij^���L0�D�?���JT�,�`U�j*d�l�OF�9����/�92o��d��1�%]˃|�3/ ���I���˝�}��-���/�~�jR1�y=�U�Bx�㩎�t�%ǻS�rO�w���5kn"*��� ��5�DNl��_�SQFI�k.&9)�f���ma�l.�8�"N�U��.S�>�?֬�Hk��fw�7����7�Ń�zeu�b��[I�E����9���(��^B-
�r{e��n�Ehj�i����l��P3�T��'�Z}�ط�ߚ?�;�4��b(['���Mm\�XB �6��z���Cs���e�mªy
� d��(�5�C\F��X��7U57
e:�L��&�@i��	���R�RV�s�l�Y7�ͯl�Qg�n8�cI��E�X��%�����#@k�P֔s5&\c|3S��)���L��ܣ��|(�2��G�2�}Pzni�$�4Q��b��>�D�~w3�R�D��Ο��^�Y���F�I@����_TDے��^E��z
N��k��-�o]n�l��Yz�#L7�^�)��K�"�2��'������K�!�n�Wà�|ť�?؅�����!�ɦQ�w�����@�D7`��!��<�8�,�zR]�%���
�j�Ic	-kt��WTJ���]<72�`u
tW�;^*o`�np`Z�3يp�^�gfҽB�߁��
��x��p�g9��|�u8P��"��h�y�Nb�M�ľ`�Uݠ���w[%�1�\Y��u�x�~��&���c����
V#�/5tr�:�(5��zE%��l���&��*d�c�a�yn���~s�}fSK`���BsR�^��
[F�W���ч�4Uy�ئ�<�l�c��8��K.]7�ۖ�t:p5��U8z��t��B�bt2�{ V/WY�x^!��>�u0��e��qy"+��=8�z��^��z���7��nM{���;�m���c�U[i�
3��I��Èp=�n/��R�m򀺏b��v�ML�������Uk�	E�
�؃��!��}W�Gl]^�������%s�VU����zn����m�6/7�1�h�#u(����ܔ*�}"�tlb.�.�6EW�Ͱ^MMv�T�2M�	c(G7x{-os���uL�u;\[��*��e`�~�桽q���E����5��F&�f�^TD�g��+)w���N��+c��^��o)~Y�s���T�̸���R.T/wܨ�
��}ũ��;Ջ�o<B���J���C<���%��,@0�=M��|�2�[��Ԭ|�F����=e�X
�?�S��[�m�G�(S�C�v�N:�Έ,u��+s�V{h%��`,�r ,7&ډVj�Poד�A��Q�3�)���[ߌ�|5L}#������/â��(�r�q	�QUE�^r�!�(�V1[��:���>�.�9�4���$�,(���^����ɷ,�O�Ôa>��<o` Uk4�(}K����dX���JX���9F(tL۬UN*p��T5�U3������]~e�]�%�B!Pp,�GN���)�A�`
�`�9����}basa;��.�p(=f������za��0���%�n��p�B-�C8�/��>�����b�%��mY�7�3�į#S���=3.��ܴu��,]mEf6��X��b���[�V��=�5�y�.\�/g��	��%2�|̈�����P����#j��W(����ic~J�=c<�,75^W�Ŵ�>!�ђ�������/��ؑ��n����lCpw���j�]���a�1#��I|Z[tD{Dd�"���Ϭ�永X��^��vDm��q��Kp+�Z�5b��Qu���MJ!y�Lep�;��4l"~"�
o�I}X��7�3	�*+�.o:#ϗ��sSl���_�;���#ዐ_dDn�W7������TG
/�i�w����4�6k�W�x�h��$X�@*fq5Z�X�w��jq�ܱ]	_	�};���E�5UO�0�x�&��6ީɂ��%��.�ԵF
.ʽ`V����%P4�_%�3�d��ֹk1�%�O�-��6��YJ�o�n4�w���K�t�-��]M��nWt��or��i��}V���!��i��;�gA��Ӹ�_�Nm��-ݭ���D�W}š6�K~�U��7��B�̣2�
pؼ�Fi�Y�2���e��ti7��<.Yk�\8[�����F�%����Z�v�L�1F�����E�),������Z`�U����y��ͩڅ�lV7��A�|�_k��u6��6)�D@e����g�hs��������W��֣�|�^󶱏�ĺu�W���7���m�?
� ��.[�:�w�l�P�"��*�����
x��&@�E�+�{��w�����bI��@
��^�Χ�a}���V���Y��`�󊮊hyϬ��P��V��r��{6Eb&�(��r��w��i�G@��}sqvY1��f3?���8�8���v���l�4X%zo���SX�����u\�2m�M��>#�M
1o�@K{Z���K����N����m�Z�AB�ښ�+]�o+���q޳�f��?lR�;�ke�"��]��co}:�n
�3{=��!��£z�?����͆�h�.�=����/"C�T�oa�� x�-c�[��C�XH�AR�1��򊳞9�q��t�+�eW�g(&�-@.��S_<d�Xxe�`h�&�8o�s���4�aSɘ�y����:�[�ꧨ�]ʗ��ҖZ#�L-bΠE���^����h�ۗ'�6����C��+_9�������e;ϥ+���4������h�r^*�#���=�Q�3�]�_��5���iG�g�2�<�u�b�����-�˚b5�6'$�Z�_��qѠ_��.�og5�
��,c�os��G��(��3w�5������J��|@�AգE���o��(�'�Ľ��nb�^r��iO��2���!*�����Cd��On1~"gS]�
�������r)T�|�Q��8��+ނتw�A�a���x)p��y"�U���8�\k�Ө���֯�*S���&io9a�q��w��Dsv���h&�b˹�Ν�%�/�|�a��I~��ۣ���UN/�]�-wh���G�i�u��%�(����8��Q�����nb�gSVIm�h�l�EgN�ʘU��j���Q8�k�XV�GH�:m����4�gȹU��]]t�:�����Z�Dz{����W`q��ݯ)i���`k܆�O2�MW�3���	�&}�g�sh�=�M�=n�<�j9��Ĥ��hD�fz�l#-;�yR�R;�Jp���_��Ik��n����J��C5����	dp`�d���Go�d�e��0�95+>�ʸ�fZ8��Go�����CNȕ�[�oE�r�!��Cx�˧39c��Y�5V�����_���m|ΐk��_��x\��k\�߀�Z��
w���);��`��Ȕ1�p�MK�:G�6�D�o�U�����[9����]>
�#W�m�%��/����ܱ��̻��9):\2�_����WM�0�S0씱��9���՚V��pX��ه)�w�`'���Ӂto�C�s��a�.^@�ؚ�M%�f�5�P#�ڪ{��E����j��K�AZ�JX���?J�����I`O"��|{���°$W�D6����]�Ał����T��v=��3����Ǻ�Y(�(B׮�l����䰌��B�GX�[�1�:i*n�U��bS@Q�@�^X�e7�^R�-��5�彇��R��W��ؓ2�a�İ��hy:9��=g���b0Nص3�	F����u;����W�cK,� Ʈnl�p�5k� ��GW��,fv��[�B��+���2���y��0X힛���	�M��|2�DҒ�z��7
d[k�y|�>����W�Nl�@qsv�~��=o�H���f>ǽ��%\h�)~������V������uO1Y�q~Nc\;8��}����`�er�1)Gr��xy����mDQZ/�g!u��%����mw�cN_QA"CʼLM|_�S�q]_%�*+��o��$rw��SQ~^��R�d�JoQ���X��
� ��a�k�G2q������_�DZ�n
o����R�5r�߉���^b�K�=f�m���Lx*�����b�W�c�cW8��y�L�F���y,�"��4��ez���u��ͪ(��a��?�фf#����RxA�|l���h:�NۍXb��C�Um�n��ab#�;.h}����Kv���230x��_kE�u*�eH!�
�m����v
7w	/�+>�>������F�+�R��Lf����/B��@�[cX�T1W�Еq���a)Z5T��V0q�:h��I�j�|N�-�動h;.Ÿ��=�'iD�2Z�&M���<1���֝c96m���A���8s±�/�A�e�����V��o����hL��e�7�,:�B�gq�'���?����%�4|e���i�3�9���1��@�R����r��Fw���~#p�7WY~���ˋ	����ٳꁲ���	Y���a����|���
2{�N��})i�e�XK��%|��S\�u�`�#�]�́�K눰��Aޠy��:*��L�b��Y5Z;
d�/9����>q q������M�g�l}���$
����M]����΅SB�
��?�F��ytd�0��*����\���\,���6�^���j�P�F}ޗ�|ʈ���$��3$>mtM��OS6#_J�*���N��#I)����-IF�N�}=��q�ԩ��@��T���zax�g ��wfG�
����YlY�τ����sC�k��_9ݫ�\b��y��5Q��U�Ew��E�z���u�2����S���)(�q
ح'T�Yq.�	�a��d"�7�n:9�i{������`���I��6�����t���������� �yZ���ba���*�+/݀���9���]��RМ_ۿ��|%��hԱ��Ԝ��5/�7'��0��/)p���w;}1
�a��%�j������g1p'�/��D��,R�]4¢�b���qK����s��,��X���^&'���8��I��p�1��)l��XƱ<e������І �����^��hiNq*.�p�}ee\A�\���u�ш�o)�ހV:ޭ�FH��y8���W/��<�;�H�gaZ��]n^ɛi�CE(v�������f=����4���a��q1�Au� Ȏ%�[V�C�l`��m��Iq��k��eN�������pP#��(��?lM�f*扬�
X,1U3ܯgr�`����2��0���������./,�fZ���bn�[�.�u���7�Ã�ڦ�7Px<ހqFە��s��M���]��h-o�z�h�a��Lƾ�W���N�N�v�7�f��p�o
�y��ŵ,�ԷQ��҄T̖P�
M�Yy�F��|��@�m^j���s�r��Yr�Pe��$��XZZ��5���S��h�������wjp��_[֤^�]��/<_��!���dd�o�K��[���^��uN6�A_��s�.��2�n.��_ĺl��˿;�"�l������M;[�9x ��k��/��ymj,��|ԧ�mU��Z�w.����<^Z	�-��a��y=�#[�F.ܳ��,��E���0���L�;� 9�]xC�h��ԓ�U�9���q]0�&C����UA�2��`Z`�����etɱ�XÑp+of�su�b��n�u
T����
���Q��=��'Z�4�B��2y�0L��H�;��M&����&W̉7�.����j0����`{{�0-���@����+�[ �Ukg,��Sݺ(�!�f�
�f���r�y���꿻���;SR���>1������s
���k�~^*��]!,0�22g���<����TC�3<��n!(�ƚ�����#���R��4�п��p�/A�)����S�u���(�TAS/or: ���_%K������4�R|ܧ�]|�%��7��WU���\��FE��0�ݿP�9���&xMR�v}k��/+�t��K~��d6Gn+_�f�ld���e���xG�
�Lw��4�k׎��LD��G
���:@� foqlS�р�oq��#
_����c��w��'J�1�
@<�p-y��o�G�Z���V衡�K��gSf��zP�����KE�N=K�����˸5gPR�+*���68�e�d>Y���!���W��v۽R�x��\��Kuz#fH����Qx��/d���=",���Y�"��^���j3a{@�%�m�
]�Fõղw0���80Jm��*�@omJh��TX]}  �!ᚄ�خO��R���n���_(��|�~ɐw�%�0�gN�z�X������YC,��:�f�W�4|��R��60s��]��<K߬;0	)��X^F�*�E�l0cȺIq����K�p�]����E�`����uEq[��_��R�X���e����e���M��.��m���ִ]�#
l��V�VÌ���}��Z�%��~ͷ�⫉x��/�sP�A�ڞrJ�Y�{�T��@T-�w.�[��a�*:�ؽ���h	k��Uz������/̲�S����@+
Ň��b#��uU�8>�x�.�Ǿ�8���YV]�~%j|T-ŕ�����5����H����UWYU�-�b��^��躝^0�j���3S�T��w-.E���T�VT:��}j���uGAh6U�WD�<��E�;��y�S�En7���&}��*���i�3��n^й�e���h�������
����U�:M�6��ez�~��5YR��]vgR��S=b�M<w7@B[0��W�̿� TP7ءݞ^1���G&!rn=�X��cr����,3��hq������=m}�3����E�2���\pyp�T�‰��,�T|m!/V�9�08��G�����X~�z�5��Cx�p�j%�X�Q�����m�|�ۘ�:k��[ڭJ�B��8�۱�-��-�1���X��q��܎�1*���^��f����k�Mubq�RyxMYMS����{d����ˀj�����[�mѧ��5+](�Lm�����k����=K���fL�f�3���)�o2�� ʂ��n {]�9em�m[�׸ɩ���dg��ƛm��3#˩�2��<b�r��K�G.ǩ�fsM&���Ӷc;�lP�osJ3:���*}���Y��Q#�D��p<�+<[K��j�?P=�3��{_b!w����m�8����Lx�t�G�6>�D�f�ZF	n�n��|X��_Y)=g�9[MGt��D���z�z{-���:��"4����[�f��ω���^+'�"�����*��?�?�dd�L��%����`�AZ���U琕'g��}=�_(�~cQZ
nk��x�;�#(Nj�/r��SQ@l�
[y�	g@8u`>�O�R����`f���]x��� `��ڎ[�\L��F�'�\ٷ(s$T�7x���9N�M�yK�(��s��\�ie8>n�3^rj0}�I�^��JN��a�0���d
Bu�ע�S#���L ;��Q���6tj,4���Q��߹}x�-ݝ��6��:%C�m�ћ>a�^V�9�#�c���]iNCp��X����3g�R��O��징�����ϯsw���A"骭��H��z�=��~h���}����u����\�6��񋅗�
ī�pyL'a<�'�(j���[�y��SV�)��J�DZ�����&���,���,#ʓo�pҫQ�|j��ϼ\^DȰ�r��R�Z�9.�r�����O�T{e���|옒�2��}�!jDmg�0����/鋹|�;r���TA�_>g!L84��Y��;$�w��ѵx9C��c�`-i��g�"f��+ur���Yv�P��"��J�pl�
�pw�-[e7�W;�Z���W+�	�:��$�a���2�
j��{�9CY�g%��
�l���u
��t�9��X���dA���ς1-}��?�ީ�x��4˛�+E�������"�E���WT�J�m�Ѽ�t�
�pPW�Qn?��n�CE�Ka6���W�\�&wK�pfdʅ(�S�3*�9�������,\�l�*���ൔQv=�&�&R�����^�\����� ��-����kN���bk��1bI�Ҕ8c�z.�$8�w'��V�	l��:�fh,a��7q�B��
��P�W-p-6��d�+�n�|��/���N"o�l۹w��b�vT�����O���W�	ձ���ˏG6�Q�0{.{+�����Y�~d��}AKwB��+���ݟ���`u�1��Ez��aO�g �3���o;�	o�u�F�#��#Jw
4L�6t����JZ���hjPV^�q�3��ޣX�N�+� �m�+�~9~�@ZXǗ��@�}��'�'����j����bVY��U�`=�a�rx�#fF��^��4���*�p���|e�K�ءO�?��0%ĺ�P��G���SC�ou�ou)�E�Y����S�E��EwX��g��9�R����\%ѭu	�x\�㫐�&7��������FW��,o:,{E�-��j�{��/zuV�m�}?��pW`�,�hr�V`�[�h��e������ɚ���%ݬ�i�ps>!��E
�����j%��C��ə�&H�s4!�㨏{^�g^o: }�G�#�����Dfֱ�Q��땷�:�Tp>X8]��V׵������b�O]a����A��:c���ܯ++\Vc��;?D#��a�R����:u�:���ߏ�}w^<� �[k�ۆ�\�����1���Qg1�z�o%�⯫3V�x�hm��u7h3��8ܩ=NTP^O��Ii~LJ?ŧ��pww�;��t����Q���+������u��o�%�{el;%DXR��l�|�Q��j�NI_F��Ð]�㎴�x�XX�b�|kk��\pT��G��b��%`�C��Ϛw�@�%�j9^H.1���z�c
Ss���8_G{6�Yɸ#��DE��	�D2e�����ݵՙb>�a�Q\�%6gq������f��'�J�Q��_!��4�F�_��B�X�儯�����q����`�1|�"{��ǁ��p�u���F��V�R�S8�ͩ�k0������u)��s���(e>g�މ/vČ���V И<���аí�)/v���h�6��?ő3z�y���\/<���Y��y�[H����eۥ߱��5�/l��kt������uJ���m�!�m�@l➣ɐ��������R�G��'��y��}z#l��o)��B!eG�4&m�vW�?�P�����=�GC;��Dl;�&�J[���E����ʕ�s��u4�-h
=��<=@b�}���w3u�Ї9����Q�+̤�4���|'�[��ݳ���k̿
�o�W0p?�����L�.>a]`��,`[Z�Ώh[�������?�0~!��^ِ�B�����W�X��[*-�*mQ(�A�'5[rn�c�U¼h|�?�΢G0�2s�>��#8X���	�}�Lx�>�æ�lZ/,F�@���V}��nA�.��d�^&׋���Ç!��1�.O�O�v��nw�=�l�8�	��M�G�L�w��%cy�'R�'�K!̮#�%�#4���Pk�L��h+q�����$L��d���(�7mj�KV4^Xs�E�ڹ9�Ō��1�3ٶ�\��0��۷� ��'˨J��M��ԅ�Y��>��f��d���F��0�k���Vv��f[g���C�K���3�i�v����Ġ�=��2�U���ӟ&���ګ>.�V�+f�}��b���>/�ݾH�'q!��e�U�j�owPaK������Y�ϑ�*3���cA{�L�uaE��OUI�`2c��|3�h]m/^o̼�n��^e�JQ5��ي��ʰ��c�r��A�L=�lڏ4a;ũ�����B���?��,>���KC%�m	��:_9M������Y�l���ݨ��c1�3yP����m�z�u�W����q�u�Q�t��z{���M������Ul4_.����K���q���z��Z��P��.1�f	v2�x+v�Ե��fs��Q�5�����b�սpAh�;�,'18�ϧY��R(��s඘���X����m<N�x�r0���q���K&t�cP�|x�s8�gQx�#SK�����F�4j���q�Ne
賭T�?2�;E+�H��j�잛�aސ���qF}F�!���?���!
-�YU���jB�!��@角�l����>y����AX]\��&r:[�ܜV�\Z}���{k�YZ=D����~�J4��xn�RR���
c�@�de�0�U���/^lb�N�p��p��52�6S�d#�8�'�Y��q@��_`�8s��5�Ca�v���ߐ�O���L��P7�R�$?�NseSն��Wh��j]��S��6{?3W��oc���wZ+��&jk���s�Fz����E���Ծ�<�;��?�~�j�Q}��
.�	����;C`9p4��x��9�g����;�=�8�|���w1�Qm��`gf�	n_���/V�Oļ�g1NsJ9�.���rp��U\�yw�f�\O��Y���}��{����i2�s�}νy�@z�YR�ܪmUt6�F|"���\{;�|�߶�Θ1[���w[�Ϥ����z~��v�^���`����/��t�`���hriO�((np����#Q�o'�%;�^ݕ�Z���{=�x���L
��EІ��;?�u�ޞN�9J���.�;��9��d��7�C����&k��4�Ŏ+޶��.[�AZWO�R���_�����g��ŹqK*��"ٳ�Lk����oϸ9�(.�,q�t��Q_�L:h�b�? ����r�юT�g�UJ��M�����%;�0��ɀ��`�Y'1����y;���<∵��G�O��w<*X�ߨ�e�q	f�&�>/��3�g<ŝ���e��P�]�C�w�;w
.���*1Q��T�:'�M���.��7�'\�'�g��ڵ�
��c��ĵ�/�n�R�{�w��H����ξ%7oH�b\9K+y���RY���ܪ��b���^↘�\5����Ƌ]�.3�7����e��h���W+d��4;��#&�
��k!�
�a��f�]O�V;�Kbm��Q��X[�Tذ:?��0[���gc����M����
6�]�U�*�E�ǩfy�D4�W����}˝{k�g����׸���}�Y�W������sS~��aЧ�|�oL��Y��&}.ܐOԔ��kYw�w��
h<�-�9<�`�n�O��@�?l����[��1*�J���iԞH�:+�B4��Y�W�:����P�z�ooݜ[t�k�Q�R/�S^	Oå�4OP����Jv8���c�D�6e��tΟ;4�ق���m+,�j���_��b�a`�0f������*$+����b���1�O�=����������We���e��S,5���+Z�O��pჵ|uS��;��ӽI��Hq\Yk�EPd�����[�B�hh�ގ�_7-�����E|��+���ܺ����}��`=K�X��K3\���P�%���&�5�'qw�/�������$Aً��j��á�|�,`T���b�r4_�n���:O3	{�����	,�!C��_����E��lC�<U�N�'1Q��YW����t�΃0]�Fg�Ͽ�ʽ(�&0��a��:/�f"*9d��b7n<-5�<� �ݔ��v��N،Յ�aD��;uipfrg<�]�U�z���&��ţ�c=����X�I�?K�׃�w4A���g�A��kg����3Rf��޳x㒭���ɵ>��s0]C���`����0��'/�h�_�v�����cɻ�c���4w�oyH<�|�$������@u׊�z�-h��~��I�h\�7h�Wڟ�idx�/�=IJ&{��/��բ빙Yp�"��/����c#��7R��%GMX�ϰ���יPF�ONc��*����M2�:*�����5�E=%��Ԙ�0�1��T�\O��4=,�����O���d��J�Ҿ�q�Ky(����� �+u����TW�g�t�b�[Rí��a����Hp`G�g�4l����7����E�B���p`��UD�? �Zq*�UR����"γ��\����č(o�š�����jŧ̴���:���s�pM۵�fϧv��Ûn|q
61,�x�6ؼR�Lj�ҩoR�]�$�S�3'0Q��z���	Ə�3o<'���TC{�L�ڨ�c�O��D[3CpUS`e �%�Mr�yd�vW$��H
Y�T
`0�ڰ��Y�!8��jo��[�̧-�ٟI��ns�9�����mrܲ�)~(�o8���cx_�p�G����㧦���e?=�'���SS����)ۉ��Y�
�N�R��[O��i�����A'�W�-\�`X���aB��VV	{Ǹi��֐�E'�s��U�)3�3��k�7
���o�kn���ܣ%��%�
v�.����"��/2���p���YC�]¿��R���?,�q��xHrC��D��]�X;�L+�g?�nE���������a�{&�k]���/›Ep���/B�xD�ۮ�00���x�80���y]I��,�Ǧ���3)�'$�z�%�W����6:�d�����\͜U�D�
������u=*�d�_W2��prGp��N��Nl�	��g�V;�P�� �y���|<i�h��e"9��~�>�)��@�NͿw,�8ֳW� �g�
��	�K1v��p�\�K���ݔe�Ch��y��{���z�.�m{�Zx�6}�
���茜�UqSڧ��ٯR�r�`�+֋�����ODN@M�Q�n�ha�������Tc:����f�)irͅ5� q������p��5�f�k��82��aC���j,*�r���i��
۳��U�H�u�@r�`M*�7���Jݥ�o2��������̧�%�M�$]�az`&��7u�{�����-˪�hGж���4�Qzz�Jъh���tUxe�`T/Z+?���o�[��WĦh��ތ-[�|5�Y�;�˽un�ղ�s>"[��q���x����O�1�����j��K�|	���G�`�c�=mϘ���a�t���@���	^^ ���X1��'�'/�DnRۗr6�,��q��2�������J���~w��?z�5�Cñs��|/?�>RF�,�՘�~�ϝ���_C�B�9�
�3�����mdp7��\�[��|CS3T�S�9�?9�;�6n��4�K��~�9WV���MMb/�˹sZ*^�]^uߘ�Tv��FҴ���~#8��2P!�|�;{����ظ�W�0����8c����xC��B��bV���Q�U�C@���jD�a�1��aG<Ea��Y�=��w�-�۞�L�Z�T�;�#[�,ܨ��	=�y�b1�m~Mx�Q��d_Y��h���y��1ͩ���ۀ���2��pDɸ���L�\;p�M:���-�=��)v�5������%��O�G���dIE �V��I�%� �Q�
�癀��a5�
��ic�lE�*?��k�c�X��3��6}���Aq�i�$������^~�]n<�by�q�J�3���j�(S��0c��x�&��4y</�Q׬��#���CB�D�P@����T�21"r�y�]����K�����s$)MpV<�M��3$wɺ�G��:�ۻa%7�+n��T�h��	��9�}p	�-�׆v��s�KB���6\%�wNK�G��$�X�D��N��)��5���(��\~Vk��4�>�V��*��V�:���r�*;]O�B��Q���D�_���s��%�[�[Z���	�ᘼ9Z��R��r!��ɗN��h(l+3����~b�?o+�c�>��kb��W8;x���UhNW�}���2��}B5�5�/%��~�p�f����օ�)�iQ�~㦠�p��E���Z��}i�>%�C1�w(�zҟ�]�ؤlD���A��Mo�GW��Ga�Į?B��n�s��ƥ�a���)aH_����T�+{��3��J6��e��UԹ�s���8��&~_v<���oS8�_u�22�V�^e���.���m��
K6��7e��C���:m�
���ďXO(��]�"���j�4�n�jC�q�]�P�Z���9�Y�0*�K��w�r��;
>�މ��YX���x�Y~{~Gm0�eR������r׃����ku��eXž�	�(����&O�)��P���q�E�� ��P�o�ɣ��3p�Wҟ��o��˿��#������E�Y}�0Àqk�-va��N�6��N1#^�x;7w]fx��Ϡs�9�Ӭ5{��X@U��s�k35[��x4�e?�"V��u���U�dz�ϐ-��y��@�}�Ɲs��w;�G��ţ/l�ʚ�<����T��o��8�5�8��̩����Qk�W�^G�"��fXV|͙�m�������-�x���x��U�:�!��;�ߦ�[�|O#��?)T�k3��]�����pa��P)�82��~����v�-�-����	���q�C�7e�~!�*�������6bW7 �>X.�&�m��2
�K+NH�������n#�qxj����WB=�Lda��c/	|����+)����r^��x�Կ?=$w.��3'�����ȕ�<��C��6P��o�ME��]�v�Zb��v+j�|CP�z��WS"�ا��-�/�u�G>�:�-��~�a�J��J��r��F�����ַ%-q'�"�PСaO�3��f0g�U�ʷ
��F���(5,�ד�y#��p�|x#��dv�P��]���~D@�K�����
�x�f����8���9f�C�x��`��z�@�PY+�<���D��+�`��R3H0�iF��I�T��ԯ�[�{���X��VC8nSo|��Dȅ��VG�_ħQս�w-*�W�@p�;�c9'�?P�Ԙ�o�S3��צa�����a�`��nc�5�w��oXKyM��6��,U�M���{�k���ل�iT�ؿ��t�î��KM<@�5�Z���?c�l����KXvtc�޺�^�k
�!z�� �hXo��x�!�?̫�\�ߘse/�z���ʫ�+��xԫs�+�q6���꠻�RN����+zn
�[�J�_�/��C`ӵ�X�2�$����qKO,���臆+����#^LD45;�S36��:�Q��4�Ւ�*q���r�E�P,��cJl̡��;*��r�k}��W<_!}��o���G��?Q�����~�'�w?U�)�^`^������%S��o!e�OS~k��u��cGF���4Ι�t�]ӊ�L~٨Uߗ��v�w�~��7ȀF�������狼�P�uzc�-;�Ƣ�o�?0O@�І���
�����`�y�"��l��n�t�e��l�������Q��嚃�w
�%��C��3H���y�8��Qjmg�����^^~�0#.e�J��%���+�7n��v%�چ�%������O�U6���U�6�6��V�1k�f6�խ|���,�C̵'��
ZQ�J>����68�ߎUb*�3I
<��p�c�O��
�{;�-���WcW��߁5��ړ�ܠ��z���n�>S>�'�
fZCt�>�ޛ�㏪�R1�7��}��B��L� ��a�L�hwV������N=@ +u{gAV��>����Q��&b��x�1D@�
Q
� �^e���>�*�r�h\p�7b�
�x��D��,��3�-�n�h�TDM<�ǹ��+c/���![��������N�_\/�y�$K�Ba~e�p��')����}zR�,�L�����J㦖7�&<���Ey|*d	��3���R4;�.��ĩ��������*��T
�JA��}+u���q�
��U#0�b�=
Rv��u�R���n��V�|��Zk�~`�K�2Rc�Q;��GUiI������UsRs����\g���\@�}��(h��u�b�
�޳��1Z�h6qԳ�o��j�y//�A�~!�+�W��U��|����bVi�x-y�����W�s����Jc����uV�Po)�-��VJύ�r�hQ%E�
��1�E��@��D�pt�ԯ�G�޽�9�W�úl>�bӮ���@�m��ғ1�+��1G^�m?J��n�5�K\�<���x��1��c�7��6���0W����4�Fb��)�����6�W��/�k����
����A֕��ҫ��i[+�ZO0<��ȝp�,r�0oAK�7b;Z�}�o�4��Y�/�E��6ɛi�B�b�VkE��04�
x�aq��T;n1�JT�8dp��u]�[K���
�x�A�|#�b;n ��{�BV|�Wa<76Bzvsm~�,�/���S$�Ϗ�e��s.ā8�t��M4��>�I|�S�&�����0Ź�2�-`+(ˣ��:<U��ߓ����@�pqr�W-��Yo�0Ѕd�ڹҌ9��73{c�ҋ5��Ǥ�G���r՚����0���1W*��f<�*��(P\An����_�8n"x|�S�Q�����
\'���vqR���~|&��ڨ\�S5O���Ɣh�-�.v�����?�9ɤ&j��U:n'W�˿�����!��٘t�7U�3�,�=uuQ~��R�L�ג-�5�(�cPߕz�V+zy_���㗵���Vm�'��i�ѻy���-�֑���Ÿ��q�i&HN{�z���(�6�G�I������8�a0���{I���31<���<�9��-�>��o"��4��(<8�L9�bZ���{�_�-g��luJ�8�NR�b������&�S�h�,�������f�V���!^/�=��5GT�sT�÷�!5>�B���cSoC}��9�P����
1��� ��c�sW��,=�-jP�H�˨��2uz?��6�.d��B,�r�׭`=��1���G%T�XRL�h?:�=CE�^v��O��A2��a.�sE3���o�@�O�<2DNi�*Ο�|Kh����b�44˫n��f��P�yh{��BG��˒��q����[�_��J�+n���o���ߨ9���=J�ea,7�,�:eS��X��Ĉ���/�3��`C�z�}Jq���{�!���XT�~w4�ȍ���W��W,��yg��>*p
|����,�\���0�g�st���C��ܯ�+�oֈ03
M��	��&�n�c�sۑ���^#���:Sh���
.��X^�!(֮�P`ѣ3���V�%i�{�U��[�O�q�lv<1��ې�`���j:�9Z���s���遣���uak�~su	��A�@Y����.+(
*��x��P\���Up�g�+�kzC2z�)l~H��i:��R�e�?�#�rǮ���%�:�N�9"R6F�Ym��W��n�mM
�o1k�]jd<]�1m�EG�8����1�#�%��.�ҥ%��~Y��ע߁��c�L�qlx�W�1,:`,�%!����q�����C�2pp��d)�D��]YOE��C�\D���Zhk�]����i��f\�%��‘L�A�smOǨ�
�[�h)S�!~��W$\��8t?��b�v4�~ϩd�k�K�-O0���;���}0����X�Y>a��}L��!̸}lMHј�ˁgm�U��C�L�s<�~���!ن�e&�P�I�i��dpz}F�F7�}B���t��Ә�v����?k�씪9���Wxi7院k���_��1C�6|�'�����jY7;]c�t`	Դ�6�_ϫ�P���v�Vyv��ϘʗS��qD�z�V�eMy��.�ǧ��9�]��m�D}T��2�{�
��r޻�֟#/��R������4ܯg����柿�%��[�d���_���N��4֨�}�Q�5e$��>YP���x�a�����:h��7R��W���&�?�j.־֌z�ģ%5ټ�:�b�8e[�?�*է�}J �
��c�U�׋B���M ����'<*aR
�
G@�+�#�vQ�/�
.KD�nl\�>��dM6�#�äC׿�d�ۚPq�}�\�U}��(5��Vd�,�h��n�jmc��g����3/p��|+�&�Z��%�Ħ��'�/�s
�T��u���_�֦�KLuCm3��Qj+�!9ft�M��%k����-�r鸾�K2r@KWS^N���y�ĭF����z8���'�r6��9e����T���q�'��J��\�+��Y��<*4���(�?gS��ud<�u4�,���;:�l���S+�
ey����<0�b�x;u�kVx[_1����w�/'f�-7�ZOQ1��
�Ի���pX�7�,��W��FB�+��o>���A���`����x�꠷n�0=�YD>?��'��0��e`�O�d��$y�C}�u������<�N@�k�vJ�d�$�J��K�C:�M��0�������8e>T��8t��9�Ԥ=]!Z�����eф%�3���}o�5W��ʶ[ON��e�A|
�=�>�W՟W'�-���
�7r���V���X]f^��	�ʑ�2�����jϲ�P��\�H�M�z�	�s�%��v�w���q�C������_��8q.�"."�悂}x�A�;

-m��h�xnoy�b��~v�?��2�bqBp
���!��M�{�E7��wԽٟL��9��j^�CtPƾT&q�"�Y�`�_�-}����>�<���ܭ-�جre��b�T��]`������Wi����<�
Ӣ��ic�s
���d���7��� �t�������!@��(�5գ.`Q5֎7�36O6��\�8�7���:5�lX`3q�Zbϖ�q7�:��Xw�͠�<Cxn��W��d:�m�.!|eu8�&V�}q�K��Ov˳���-���:��.|j6`�*��
Ɓ���&�`+�'�
���wL�h%�7o+�2�����M�T��U����Q�ﺛ�{%}!^��qv��w��&U����aŚ����*��'�;~4�K�y�����R^%�e��@D7^��7>t��=b��QFʌ�.�Ъ���4�0��A�
���{�Ĵ�UЫ�3�ֳ���*�����ݜ��$�6�|�f�|l�
kwzg�~vkP<�����*^��[e2_��8��B�i�Lm�؆j���d��,	a'�D��о�]]�e��w�?�o�)y��fn2��vW��E>Dj����_�p|���q+E�KK{�2���O^�츞�1wtӬx4��N�ϙ@C5e�
��;q���5cXN�m�+�s<��L�d�����?J���3v��J����j�٘5a*��Ơ[�|\Z�a�_�Q³}��^�W�3��ʲ��|����b�
���,���k���'>QU��3N��0�W��2��bh���T�o&��9�_�֓w�*�s����-��s˧g�X��,V��:-�>'���핱�-1�1��D��RU��ajh����õ��aEq�h�]�sE�w4�5�Ҝ����L�E�I�|;�Ϯ�M"��͜�'��5k�up�9�5n!:|�{��"m�|G��+��Q~��-ukX��� ���N]wM�=.�
��Kl�׬������g��v,W3�u���}O��M��T���a��
��z�ҭ��a��ԝ�ԦU��^U����`�ao`q9,�Q��Թ��}���ʈ<�,�p�;��}B�(�e���,���gR���jqX�xX���gl�C��{]����&#]ONL�
9���������0W
[�+A��s�̴
���Q��u�x�C^�s��ő��c!���IT:�M�:��5�0�a���6���u�[���
�vU�R^��˺�
��3��c�0�p�W-�TՀ�'��H������q�@#p�%���1��p�c~���F	�]n=�]�Vp��p�[1�Z��:���pe�w�d�����`+�i*0�K���b�J�`����������w�����ô�pάg��Njܫ#eg��r�غ�8��p�]�	���U��Wu.~�$�&-1�@)Jq��򲦆\��3X
��������kٓ��W��~DF��q�P�?�_'wo)����ݐf��:-:��Fz��虊���cq�7��z�Ί�mM��'c'�q�3ga��^��/�/5������c<${Aս{L�d��h�P@⅟Q���
�\�D�`�j���y��\-��<>v��9�\�p�˟$��Xou��>h39PrO�U��� Q��[~&@k13�o� oVF���԰��2��	�>?�cY}_���Q�ђ�j �ܔ�ʡA�_)��c�Gyqn�m���@,�������|À.0W�8]�mR�#kPa���`�'pM^��=q+��ߑף�p1CTR��q�N'����V^'1��,)V��_�S�HI�Y��a�C��1��Z�篸�m�<��s_���
y�MJk]!q�����S�	'���<��;��%��A��-��4:52B_��x21򟵈u��=�ZYF�?D��=`P}M{�si��%�OsK�Y�o�|��&7S"އ���z��lS<��.�\���|����[9���&�l��U�]�V�;�/9'�6��X�3�0K`f�],��Џ�ܿ�P5�����5�? ��j_-���T
����Х'1L�ζ��F���7�r3'`%뼹{��� ��u,�v@	�CL�ݢm_�v�_�i���K��?�	y0��R��C�}�O���s�6_�\��{��zi��Dt{���(��F��Ŗ�Pq.��`��>��V��Xd,�䔾Qie:�s���L����FV x�>LK)��l:�n���3l7mk���ܽ�\�C�ڹx��y�����mH������(d'�y�^<ʶ�߼}ʼ̥��Do���4M���FS�.Z�o��k54�S.�*a^�٤��?�%���I^�*s<n�er�a�34γ�MB	��?���l1���F���h3��Z"(�o��>	����Rľ��D핝����L,P������W{��UKm�0�0bQa�I��{~�^1~%k���M�v��)��'T3(�e��eop�gA���Z�ʹY��
A��u�K��ŋ�?�m�hv�AC��j8�6�CU���%����қ��6X[G7��'��q��r��e���8�Y6�Z2ƕ�� �O	�xt/��Pu������Wi�R���~%�6<(�Pž��(q酖�SEp�2LW(�4���X��,Q��x���z�_�x`�K���> �53g�����]N�`8�b�/��Q�03��W8
l����m��:w͡��®�$X^ҁ�x`�/�sP��푻:t��9�>&'!��w��7��A]�FL�*e�*9P̹"WX2YG�ƕ8jT�:���ń.�oe�=K�-0�,���2L����h���.���d������M��6Й5H��0�%��gj��@�a��J,3;`e	�
��`����ԧ�t�Vu��ӉB�|�ݧ/,_ɡ8�����~��QHZ���SA�Uu�%��q."2�PP�[��CE��G��dF
�3q;�NnjE,�Ҍb(������^?2ܷu�J+���O0<�)�}f?{G���G��?;��C5�{mv�]1K۹�`�~=0��p���j���?b=�Ԉ٤�.c��_�+��P@𳳒���,-c
�q�emn�p�?��i~U	[�e�]Y	��N���A�	U5O��൪�C�>a
}f�c�nf�*J�Vc�b<��
3��v��YvvLf��f�t9+$�$�m�0�ٻ�e���.e�cwbP������?����7`+ڢ�w��X;X���h�ېx�}L쮩>�_� �G���������}f�<�{L��A��t��Tǧ^{c����Yf�������U�Y�XKk3qM,r�/�����j�Q�x�*���R�����l�H�Y�
�@yvk�=�<8s���UF�c똚bOX��7ϢoC�1��);����B9��l�+�1)D��?�L�r��AI�i-�3�o�CJ��SSۑ�z;FsT�v�x���ꠎ�/�?�>_���ta��f�r^�*�K���K���1M?h�M.-IM���ȵg*��{əe#f0��o!r�~�]��/畏��rDR�|�Qq�_���g�����	:��:W�53n����yL�F)i����`�MKo�<��B�]i'˕�i�<���Q(rS�[�̦��F9��d_(�z���w�s:,�D��<�ΔW���u	h(�����V��؛&�	��z\�eվ���ZG����h����Q��Xh�]Z�b
������7r��2*��\H���(�eZ��LU�@��!�Z��?"�6rG�A4��j=Y��I�N�~'���|U���ut�Z%91W���y?�#���y�q�Vr�+�Qs�u
�~�5e�6�&�3#y`Ɵ�
Q�����{�W	w}T4sW1��m��&8}Ћ���3�|3�O���0�l>Ę��h��[���3]����Y=�����Kխ4>H�M��
��2�ɇ|L��E��C��UHU��s)B�=x�b�\7�#C�K<���a�)��X�}���
jŕ�9�5
�qT���Լ;'u�'���3�iϤL�W�����Sn���'|�~�K�\�h`�~l�6V2�#����׵���-�%��n�s����5tf:�8� 4�(I-�C�����q�E����W&=������4I�y�]Ih��5z��3@�"=J�{�u��oPUD��_�G�C/X�ǘkb���+�ZY?�!D"�)O&��ߝ6@h R3.�U�¦�_�Htw�}=ٺ�Am>R����.��7�N�����L�g�>�%¼�U+��f�"��|o��BW��aT����g;��w�~��@rS���8�`�Z�ik�k~o�KJ����X@`1�m�NQ��e�q��P��E���Ϲ�5{\Nma0XP�0&
���g�R���%���r=q.Q+�}�>&��V�i��`����b~�t�#��^_������{��љ�+�6�����T�M�@"5�̾��~�|��p�䘅�Ӱ�]��S�xM��n^č��?�L?4
�S��"�ݽ]ܫ�x@G�O7���,ih��	���
=���L������CoƉ�1�0��Ȃ��8���Q<'(�95�W��C�7*��\�9@�bcu-�E����h9eԸBQ���/5����I�yRк�(m�WQm
Sssܴ����)+�U(T��0�X_����MoE�:	bqq\Ve^�1Ũ�Vb�v[�P���A�Jk��>,��r@�'�w<�[���)�Ëܢc]��{?��#��UW�J��2�>�e�����D��z?�O���@�C�@��"T��`0�/o��s�����3���0��J��@n���+�Gh�fQ)�|~��&P��FJNדܰI�T���RQC�ҁ�=tO�c��R�׬M��2Gm�U�e.�38s�����-A���{�⅒�F����o�
S���<�1Ӛ�S�3�i���@?�
K��r�뇲"�=���
Q�<D+_2O�5ųj�Z�"2���K+�C��e4�(��^�C��8c�f�>������^�finM�`�2^3tr�Y7�E3�iI�0hN��m�`����<L��ݜSڮV;�5|�y�­YVa�3NHn�̴"iӔ�<a\3'7	\�:��y�N�&36�#�ڬu��.9#
'���,V���}����L��/dl�h�M�l��\=s�)�RW��Fq�r�Blj�g�/���<Ν%�c)������}��k��1K|��#�=�h.�ݹ���T/Qn��e��l�V�B��6�(�u�fh�C�����Qѹ
м�fx$Z��ޜ��$�~��b>�B�pV���Ó\@k�3l�����6]Lψ�1������E��Ӷ�|J�Ѱ>����N�R�G�f���}�!z�F�f�@�� �?��ݺ*e����pJ9�'ܼ>�y���fU�gU�bE*q��Ă��a��b���Eפ���`�l���Dp_$��ʴL5(�,wg1Ք��̜߮|Sn�Qw3ˁ����?�\�p��CX��+�_�����U��eO�-U)쁰�Z�	3�-M�C�I��z2�p�]�j�U�L$�p�z�M1�
~$!�j�+��; M��}�4��!�O%֜�l�̅��W�F�=K@��0%Q�`�2]�����r���슍��NL±�x��z��"k4'�x�H�$P�[�\5?E9���d���8��B�nϙ���o�+y�E��R}Jf%�#��C<y��x�/���_.f���q��h��nlN�%�楪�G��ls��Άͷ`>��'�+U�hj�J�!��
�c�M_�����+���n,�Af��H��J����I��R��FH_�&���c���=D��@�.��_��%��?�8 Y�����D�h(��E��*))k[�M^�HƇ?�j��y@R�˘��i�j���l<�LJi{ߋ�ވ>W��mQV/5X�aP��<�:ԉ�G��	�١Vi2�"ʾѶ�<E����fx����]��%^��!���{�`ro0SI\��l��q��;Ə}D7,��g��Cߖdj�^�$�Vxͬt[��9�����`�(�=�X�Vl���w�&�"�!�
ڎ��{���̱�ǀ�������!���k]n��J�#F��Gw�LjW���\jW�fƺ�[�s�;��<F��������6����q�ݘq�Gp��J:�_�P����VK�O�%���k_�!��»3��1S��5��6�i��b�Y�^%�h3�xPW&N�6�-��[�htԪn�k�̩S���(#��R�����-8�^�٨kd��=�yR-���?_4�^�Ny��l:\jXx聗�L!y
QJVwu�W�,��D�22��[�8�[��l<��F`���)�sU�Nծ,ck��_ܩ�pk���T�*$�bk���������oP�G��5Я�a=���`o�"���Λt$���o�씃M܄b
ܬ�/�}@H���f��ʲX]j|�s��
������
>�t�X�N��Q��͵���C����\��^<��aF�I�y��J���Ǹ�������#���Gܬ����y����5�3O�gh�OX3/�Ҽ.lB{j�s�s[��m�b[�!]]�V��*>��R�%1cZ�f���no�g!�����*Shj���s:p�\>��2��45px�R��S*�>fL5e^� �ޥ�-ƺX�����@��Ѝ�s/F��G%���3�p��BH��Y������C�O�X�����s+��z�?��gŊ{ɣ�P��"U=�ew��.��_?�;�*,x�@c-�K������>ъv�����2`�T�-ߢO�s=j�}bR��&�[�^���x��p(��V����!cC~C�+.�ao���[�î
���(���8��h.��6�i�j��p���/J(��P�vZ7�������V����70xOH�H��^���ӗ�ll�)�K�._������+!�ƌʺ�9���A�{�n#���+e�Ї��Q��O��l�f��l>�ʺ����se�R��0NG�dwk`�S
o�
qO�jyT?]�aR�޼ʩ�T^|&:���=��]�:�3O�u�_8Ǵ5����s.����������k��H����h��0�z�W4�ţ�m�r^�lV����2'���S.N�����֢��'�b����{�F���7�*�(~!ќ�?�f���̶��ߒ��Pѷ�sŏ�>��0����E�3�OO����*���Xhh���H�v˼ݱ}L��k~c�S1�ٳX�
�+:Ba�[�7�p[���w���H�&��]{�U ��K����~���1Y|B�7��'%��
�X;�k�W�<-{N>�<�D0W���'��,�Σ.��S���z�����5)Mk�3I�[�-Jn�j�#��`T�o���U�7M��r�#��ys��`n��”�=��2��$`����w-�\��.h�P/΁�.��~�R�T�0�@�f9Ts.�w�r�h�V�-5<�ۆ�Y�阐-}+���i���r����2_&h:���}���"		w��+�;��@�ɨ�ū"������F&�k���x��A�ذke���9�-�X��~��B��ӵ���1H�(�[�2��^��c�g��X�.ΥW^��
�K�Y�e�Z����|�J3(pE�4����:?1J60
�S#��5|Xym���e�X���ȏ�}1z�5����1u&zv�M6��x�|��=]2�+q.���p'�0�.��e�>�x]0p����S�ܷ1����T�pxj��]�S h:�
�{����S3�K<�[��a7���JA�V�ve���)����
�?q����M��Q�Z�[s�xg�ufӹU�\�L�y�Tτ�u/Y���W��2�^��(s��S��̬������uC�1'��s�N���(ar��?`|�TB�]=�V�!*�o<�p��	Z���VN#�S�"B>Oz&��3��6���g<��s������_���ai�ᾦL�� �S��� ���2�$l�W3�UA��q1�&)L�JkP�����?Qu?&~����iXv���f"V��`�A7׊�����f�Y'����Lp7)��������r��Ξ�{W@�K�5����x6�V�J2Sɨ���3u~ԩ&��SY� =w^�p;
=K[4)����#]w�'L�VV��tu�bۇ!�_?@[2��SG+]���fZ2e�gB@8�UF�w]�p`��9���
�q*�_H�u���Z;�^q��F���n�UA����"o+G�.�,�b�nU�~�$��⧽�vu�VˑB������EF�F�=N���	�
�ѯ;�\�pT�n|�(`G�}J��3��J��v̹�ٚg=��c�ۈ�$�?/-�ՕJ�9#�r��0qt����t�
�ɳ75�jO�*�摭Ⴎ��m؆sź���+��+����k���'�R�u��[��IxV�����'�����>�R��\��p`��J
cҎr93�r��LHV�y�d�?���c�S-v<���CC���?���:l���8q����l�}�w
��e��Ns��!u�.AcBE�9u��+싾b��?�j/pi�+�Z��8ȗ\���d�l����&�Y=�T
ˊ� :V-!����!t�,�O���<�b$�\t�;@D��d'��^e�2��)o�.%|bd��0�����P" mws:��@n]!�iK寚���3Y��;_id,�YW��ǥGA���f�/2m/��	h����z���8�g�s*��y�W��,�:�����j/
6O0!��`{8p����A?�>e�Z5W��?a}�t��d��5LZND�3!YwVZ�-6�x*�ƢC(�6�3���?���� ��	A��������Rܿ�t��(ŧ�Y���R�����p�k�����
�`�{c���&p���v���,W�#�e�’���ʤ���/qW������0��Q�V1����_j�e���U�cI��rn�U�\���ع����%@��MJ����8?�/��N3��^��b��,�$4�����(q�BTm��wY5��-/�*ܴ[���QV4�T��^��ՙ�N ��7
w�-2�G������X,_���]#q�-��i�˴(�kI9x����(O8e�*����k��wɬêS��� ���W;�f�j�V�DNC��V��WrĹ��i.��oZ�~�h���.~%ƨ�y�t~#�,���@/xIa��,� ��Ԡ0�����T@�W:�8�Y����%�Ej"��l�~��Ʃ�ҝ
���6�K����3�6M��cK
�OU��P�G��fޅ/#J�1
zh����ޥ>Ю�F�*��^����]���;:�!�
Us�"��s�.UE~���^�\]��(��g�ނn�z�y����R�u�%�3�l|PL�P8b����#��e��%:5S%J������ĵg)l��nM�	O�
<�<����S��(�O֨�xS)s�f��x�`�v���� �X���)�ɉ��M#�|$:_B�>e"�Ѡ���_�fc��EX���c�������������s�����\�����DC�ag�)G���N��H���S�W81�M��nY�o�J�5}b����ż���շ#��@�db��������bq��Й��ڇSI<Ĩ�Lr�k�=��71�2b>f����W	�my^�`(��
���
V;i<K�ʦ�)G70��th�D]J��y32�u�ދ�ׇ�kF��mE�n*�↖R�z��@�C�ʇ���i�G5~z[d�sp�uL��PL�@��
s����̠OZ����B_+&.��ub�)�׉�*�laC�L�x�r��J�1a梟���)lUǂ+��t^\�灄��:��Ps�nyT�����b�] ��;�����W!�r�-T���#�`�B�q�K��mb�ۧ$Ƞ�㋍�%���֩2�λ;�<��@��d��i.�Pg��"��hN��o���)�	F&ڮ��59������6�N�U/�����٭.�k��:���Y�T`_����	�5�dB�2[�X�z\
[�]��ļ)�P���V5�D��V隽
����f+�zSj1V�]����ɨ�ꖡ</bø������e�Ex�T��;��;�9�~%�(,Z��爤/�v�m����K��Qq�o��Υn7�/�x���3tL���\����y��:Ey��=}���r��Qp�Z�m+���ɍ�Gr!S
—��b\�g<�̮1�.:�"�G���&dc�����=ۗݙ���'!08������ި�5-��y���5D]�ͼ��o�`�Z�s�a����E�c3N���LD^�K��E+����e3O�4:�t���,f�"��<�ߥ&��K��y�1�v���T�6�w	�.�R�;?R�
O�[�J���UZYo�����S�J���zp�JɌU��{�G6�;��Q?߯qcEE�u�@�ڿ��C�(}�?F�>5}ť�s��f%Kۍ|�|J���_Ԥ�SF~�^>���`��<ذX�A�W'�+��.��Op�o�;���#-ce���r؋�
c\����8��ݪ�v�o%�e)�i������4�Xl��b3��~ZB����&)]��
n8^fqN�++۸�L��
��}�"\
�pħ�(�r�����Ҹ�6厾H��
�I�c�	sD����ǺHƐY#��3�0��ѳ��kӣ�P�'�E�Ajp�U����3�4Y����W�vhm�jf?>�J~
La�K�r���t�жT"��)��Z�՛��p]E���yw�e-Oݪ��E��û�����pe�m$�A�34����$�j�(x���N��Œ�xq�<4l�Ei\nuf�L]�7�11f����LDˀ�aNG4�R��.
�E�b�߽��rb-�Dش�?g�E��G���t|��;��S��%��Bn�h>�׷J�zf�|fa��d���ǒP�yw>���I�>���a���p�YK#���6�W��s`�p<��C��
��C�f�������W1P�2����Ul�6a>u�:��3-j��Js����;����+@�M�o���E�3�Tz�_��
Y1褹��_��q�[��8L?�pδ�vC�P_W,�0�8�0���6�t@�}�ũ��5���g%�6��������m`����q��ܻ��x��/��,D�r!�ƿ������@2�*/�Lֆ>�B��
�f穜����W�G쒫MAe�i�Idxl�r��W^���s��Yq�3�V#��l��c��Օ���B��Ա��(�2$�G�4>��E f
�GDCt��G#Ko���!��|�c8�C����qXvh+�oc�g+'Jҩ��U�}�y`]�6�|Ⱥ�򬕈mH��>���
w#J=hi]�D3廎k;�%8]�a����W���b�	Q��j3d��C�Z.�,�g���Pq�e�!�.��X�%�~�7�X*�륨b={�����R&�%]���ocQj�5��a[[Op�h���ط���Sʱ����;W?G��(獹��h7 \�+�yP�L
Z�0xX��<d0��*mӾ��d,���v�̬�
�wà��ZEp1\�9�h�DKMP�;������g��C5���7�,�+�Q�ic�or��(�#�<�@b�~Y��W@�k��0�R�~�P(�,��ҶATaa|&12��J�۷��d��H��Xܭ�$�;9Ŷ,��o��f���[fu{+�h��S8�������[��s�ǔ4�dZ{��C��W=�6|na�w�s
��T�~G�>!7�>�k�e�H}����Z^KQ��R��p�2c��c��T~��Ov���Ũ*�%G@�B&��"�٩n�1N���ԮM
>�Ou�I���('�S�0D�W��i�r��%>H�����;sa4aC�Ԅ^_���=J�-,�RW��D�7���4ߩ]�&IR�ቇ�0m�jG,� ;6�Y�f�_��>�?�!uS��~�s)���{{���es�������;�mП�_^�46x9u<2��!5�.s���〗��3�C��i���s?P��m����1�\�h{wQ1~�:�������m4w<ρ��B: ����2���ڟs�
;K+�^"��6_b����6�)|�f=Ju>�P,�U�_��9X�r��o������3u(�YrC�7�'˲�9Ƕ%�l:�*ַ0������a��CȚ�M�r��߽$^
�Kieb<qXt�O�b�a�3��F����A	`�����+��Nkbj�(�p=](�)L!��f�uLn��W�S9��!D2�++w8W�)�
��`:X��tƺSZ����Q�_j�a؏���2|?�W��x���y���W`��ol�f��[�Z�a�6<v��–j��
�a׹� ��7	�?��1�n�NJ�>�nZ���W��]f�9^6�9���v�'����tfUr�V�\����J*t�/�#��÷n%b��M��b���)k��s�$Et�iM0\a� ��\&�B��t����l���f���m�,���FڢnxТ�æ��1GB��cJ`���e�c�Ŵ�H�C���m�2|��ߛ��W3L��d��/�����Y]��+�!��:�����";;��߲4�c����ӝ��(we�A��W���_'��[������=].Q-=����+C3��P�1�S�7<�Ej�)��n�i���Y~b�/�!�SV�p���k��Ԡ�s�14�r��;T��#��&}W�#@d�Y���G%��FO�2���>>�3��=ƕr�����G��ŭ	B2��l8f/&�[g��H���'/���wl��q�|�X��\������;��B�h�_£�:�~�K��4��i��\��5/�u|	lYgЎ}g�<���MgS#U(
�@)rO��R�*Ư�J	|��2����N/`o�7�{"��MN_�]G�}�����	ෙ�q_����)i|�w��%�B��Q@�x���fK�7Fb:֌]�'ɘ���i�"S*-Z�m
�On�6i�Ǵ�Źa��մ0*(�cS%����1��'�o�#F��^17C*�S�Dn�����m��O�_Ap�
J�yܖ�rhu3�نI0���������:0�t���>!S,j�I���.IĻ�ϓoɕ!������D!�q�k��\�ً�j����@=58��
j�9G%�`�
���K_���j���͌E��W2�4(�:L��t�pC_��;r�K3��p�%)�$�x�XO�.��PrC��\�De@��^��,�,Ik�	�Yhb_��y�|��p�S�DZ��X�w�ʅ6���o�1
y���"-�q�3MS�e�7��T�2.)n)7S*�+W{��¯q��Q�Ņ{X����9zVS���u�R�z՞Mr�	�5B��,i�d"JѮB�+���5�b���p럓9>!/ڻ����d��#���B�,�&<xo���LY�+�i!�x*�d눯�bSu�ԶJ��L�6KOf`�
iJ{�˧+�;`?O���)ۄ/X�����)]$@���ߘ�N�X�j��W�:��L�	�g����`���i'����Nt�$c��>"�{��.�?ʵ�䉌p!�|.�F
]f�أ�3qj�V��+����pZ��=]Y��U�ظ��P��W���'o�~i��
�u�V?�^c�,n|߹��uM���ȉ�ҷ��2��@T�+~���&7on8���Uq(z����	[�S�-;^�g�6�C}v|�#�}X=>%�w�r���P
	H��uXմ9�j���ƃܫ�N��ɨJ'���ȻWSқV�
v���F�2?2�O�e&T�S(\����G���06� �P3t�@�e�
����	����v�ip
T���oG2���#�Cn*T���r��b�;�J�R�
N!aT'��7a���
��{Ʃ�F�	
�j��4{�ɡ��P��;[�ؖ��_��ۼ9��Q�\O>;ao�5��ӗ*��3'ޯ���p�s4ӄܪZ���%���)�>ĘB��Y��6`j�A�pNy���q�.����b���˶�W��5��UI��F��������� +Ca� 3�v΅�g�2>��~;��_.!ywT��ה��Z{�j���|�����9BQ���>.j���k5�9��s�V���3�i1>�����Kj
�RP*���Ī˵^T���tT2��휶z65�5�U�\�'v2��r����Gen�0\p4�[�1B�u"�0l�Ϧ8��N4��g�+�S
���:{�B��%�G,��͹�(�d�y^j�ֽv(��L�dF�S�hMr�	�pu�*���U1"��.W��:��D߇��C?�IO����d���@��K�Y-8}�+US�	�!R�d/��P�.r�N����3OT��.�����1J�ur���.���O�h�XE9�G�~G�t�G�y��>,���c��{4�7��(�V%�JV������Z$���=�;$�ځe���RLbnۄgG��W0��0x�YR�������'��l��"L鯬|��� ���*9j�������=����_g$��n*��h�v�0�H���Y��?�?œ���-1�Գ��/s9D��L�����e2�vy���J�ʎ�2�%]Q]�����&.����im*S�
���Cwp4k�Qx\>!���J�vx����)�����oel�c-�sV����_z�9gܱ��m][S%�~L���s�	��)7~�~dW��@��a�9r|\��n�0h{!�5��������ڊ�K:�4�e\2�hYY�����?���ai��H��)����Z�y��u_�6x�#+2yv��d�Y��B��=�$0T�
oK ��c�<^jA�FҚW�Fmu������y��Z�U@m(�TE���*3i�<�"�66����ss���ԯ�2�\0�dž�2�t�S]0�˾�̳�[��>+휷l�?"
�PM�qK�r«+��c����ռw�?�T�[�Fn������-��_OmR�ܱ�LG�M'�$-��Ú��+\VW��[�ҺS�q�{,��77+��LJ?-� �%*���v����+#��+���G�}����enB%�]W��L<��(�h��b� .�E|*	\?U�\|��`�f~&�|&�gL���LӮ%���8�8���fǖ�Ͳ�)n�G��2�1l��}02�W�5�"��z*g�o���y�$<���H�v��';��˦Wߋ�G��$4ŗ����*՞?l�:�����UC[M:�����y%�M�mL'�<�n�7K�%ẅ��E_����ș�{#Cx�`X���2��94;��FEk!)�=Q���6��ֻ��e�ܲǰt>�����qk�K��rC��P�>"����^gW�˦`ɇ�0c��u�����R�4���-�����p�Xc����/ݿ�'�N�#�d����ɰ��~�ȿ�#�_�+tKm�(���p�{�Kd��4��ψQE*�Ѭ8�Th��̨��*������]�eW�b5��`�dz*��ʕ�l>�q�5|V9UK�}E\C����%����8�ы��s��%�6+}LX�?�Ċ!��1� ��'2���O��~'�;k��`�0�l4�R�[^�zlx�
n��8�@��#uч-͵Zs�6�J�:���l׵z�4A����ʢ��-�
��$������C�n[]ߦt���=��l˼sa�Q7
�J��?a�M<���WF�E-e�K4��4mFf,^�bP�����!�	d��TI�T{������sKy
���A��; lMN��^,�O?�AX��90���25��r�ѵ�6�p���
6�VgT�M��]5(�k��P�=���,8�:&���+�r���L�	*!�� ��;JM�z
���]�]���V�PQj�3�s*@”��)���Z7��1�߂5�َ!������
�VK7+Ї���>e�+d�j��ٹ�
|�c:n�q΍�V���,4��_�t�=�*�kv&�/5��"�t��c��^S�rq
�� �Ju�Dr,�����r&3w��ᖃ�R�_Θt���r}�~>�O�Ģ����1�K)c��&�4f��q1s}�hǞ���‡gZߐD|����b�$����U���Bw�V(�������3M�I�w� f>ee����
\��I�����)���\�j�Q^���3�R|O�H����өYޟk�FIK`X��j��VͲ�e8��@�ؕ�%<ˌ/z�ݷ���6�!�~P�E]!�\�L9)~�&�)���P���{��쀶-��Y�"۾�Yb�S�S��K�R�[�~	�"\�����|�����{�_���G��x����9�%l~{G|t�8�M���'^�R�@�c�@n���5c4���橹z��b,��%��i�bϋѯ����W��}���e]4�%�G
�y�S�W�_n?D�{�����7B
�͝����
uoFeƒ���gO�4��"ᕹ�X��3���>�Y��)�%h=���:���v��f���8yhuЄ�g�*�,�v��1Ol��0�n�Je�������(ֆ����bRh%'[M��|E}�B���{��faJ��Z���[!N{?�1��G<Y��e˳�P���y���\��'k��]{h�i��x����7��ڂ�M�a�G��������,���Pg~n{&��x��U�^I[�n[�����M�k�
۪,iY�����u����bNt�^��������CN
�%u���l����,��}L�`k�q��c^�z�eV������������xPLTZ<@�5}(��bL~%��2��D��y��+x&����}�b�������r�)��I��m K7qv�Xxo S7]���v��R�q�@j����	-G7���LI:�kp++3����v3dM�����<u7�*���e���I|��T��F���-���&�(�<��NIl��;�p�!�ao
³2�!�-�nޣg]����N�c���?�y�(�x�p�e�w/�H_������]���� ���0+VG3H�M�P i��QW$p�^mS�Au%)~9���S�(_�X�!g�?45��3g�|D��
|�"[4y���� �d�<���P=�b�s�OL-�+�>N�>*�/��ʽu������6����f�Ux�E`�,�&��j�f�~�Y!����L���~��<U��K}3�oR�8��\qv�)��2(�
|���g��M��"+�����������1\�<=M2��I���*!���q�k��
�X&�nB�,������?��߯IUR�,�����b���
��r�jk��
��2��ZYh���$"�
�ܺeK�t���M�&:��x���ɪg�[�j�lIv��*��Ɂy:�X"�_i��js~g�Z�i�������[FIj��}|*`���L�� _��񡿋���aX�x-��fe8c_&]�ΰeV�L��.��E0����S3�e��O3�pI�Z�u���^0��E�O%��S��%b4��+ؑVy�����g4D�4��(F@ˍ]`}��x����WQx�� �n��fyaw7�@Rx���H����h��	Y���NlrŠy�n�|X�~�rV�ǚ�
�e��a�MKt��I��1�����cp�׌�rw�{H�t��vA�J�W5+��s
�``��c�gG��G_�S+�BY,m�|�8�k��v���VL�C�������IXѿ��.���X�s�7G�0�y�kO�H��eg�r���W)�K�w�55�D�Š�#N]�J�J���?����f�u0s�Q�f���YlO�,�z"�"��8�~3P�)�n#�U�Z��z�%��!�a1D���g��KU6��
����m��Ɂo���*%Z�4:�V�a��Eq�u�-q��-���\Άp���=z���{��*!���J��B8���d�Ubr�U��E!��O��LW
}ƭqK����L��\��]C�P
�d�pc���?���<1��_g0B�~�cZ���^%Z*ϙZ�0� ��s���S?�m?���nm=��
���K�ꡮK��-�Ͳ̰|J&P��i����z+Ϣ>8�T�67�p�[�lnh̩�fb
�Q��O1�ԗֶ&��>�6��YT��1�It�!
����Z�ax���dŜ)V�/�zE9�(�8J'�/�X�{*�s��סzNJ�t�Q]kR��sO�|�KE*�����+@5���`3�p�O����g-?�����v�DE���צP�ٳ����:V�G�W�+��I��-�ܦ�){%��|	x~�E%}��3nI�VUn���(�Xĺ��)�m�6����B.�+�
�W%�TB[D�wލ�;<�`.���W�|�\:Z�=A�k6>l>%�+x�
��:��+���ԺŶGcɸ.[�y�
�%?�/\���{����ŋ�R�A`P��X�
�)]�~�Ad��4�c"g�![�6&%j�y�Lb	Iځ_��o�^0	�y���C���Y����)m�ߩOY�>�e��)z��犆�l��W�5A)��׈i1�}y�J�0�'�H��"��yC�lQ�k0\K/�TV�A@ׂ'�p�UD�c�Խ��G��Sg8u�@l`%,<���aS\nY�o�@�E�kX��*�G�Eu[��1Z{L�K�i-��x�~�Po7y�Ny��bGL�����n�����b�/y�@*�Jʉ��z�fW�-��%9`o��b�WM|i:�
��9/�Q`m�ck���='���NY��#zq/�<����233Z���%�g�����?�>�CV����	��;��3���ucw+3k�0��K��(�K��"�%*w���U*�-�%�/ޱ	��c��G�6��'vb?�n�|D�K5�F�����
e>iP�k�B�p�������J�8kX.ok��:#6����˪�S��-�m�*8]M�hL�ZC	xOjB��鉛����a{�
u]!Ap��G�J�0��	,����b�%�e	���%s���l��B>%>[�
�Q�X_�(4��e̜��b��R���}5���d��/-���RLۿyL-�Q,���m!�X]U�ܷ*W��ˏʒ�AN�f��	Q1���U<��
�9�q���&��8'����_�����P������t����F�5j��b�"c�r��\2�3N�z��Q����iW5O���nLFP�aT}�a-p�.)�J���<����A�0�]�ԗ��R�r(47�ނ���=��j1�ƒ>�Ϋ�~W*�;Hb�ȴ�Z��,h&��Ӗ1����M݇�LA����b);�fa74HM��Z� ���?��2�sڂ�g�1B?.��F�e�s�}J�2P)�w6�2����O�����7�-hx2�
��rż�8�O�����u&����i:h��L�J�+�J�F�3f>2��K�N�g�L�Tt%����Uq�������O�2�BUen�okC��W��PK7]E�ʄ�9aƣ��;��?z��J�U�[�����>����U���QZ�7U�����:?�+�C?�S^<-Ņ���2D�
�>�,��5��佇.e�Z����驕���zMՙ�y�W�C�Cg%D�`�	��ʿ�F�a
e����|�~K�,��#��ʔ��i��Բ�x�X̰��
$�=bu.lQ����mO%ܤ��3�p��K�?��Lj�T�^��ya��~�Ϥ��‡��,���!)��L�5fG�p3��a�&�$h<q*ۂr�y��d�},��g�����8�>�ʣ�9�SJ���2��Gp����0as*����Wd� 8��-(���B��(��\f��*��:'�Uk�ϛ�2��d����@��GL_�4.�\̷rV7hڽ��#�s��/�MW���e�������(���|�zN=BJ�_>`(����PQFF�Kp��0�=���-.���+r�0S��/s��R�K���!}.?5��O%FE���m^��l��x�׺Z7�٤�{��&����0(9�)�7^:b�U���V�g��z���@�?�6���F�;_��bV��<��ÿ�!w��X.��%���`f��R�hbf�ָ�Qš�3��*�'�RԬ���w�����d��6�n<�eC=�!���v�XJ�$�ٴ�*/�B�������Gp��E�&a9�$��dT�m�M�����7�9�jVy&F*��l��9rT-}G���q�>�@׊͢���A�EnS��f��\�m�%F�S?�,Š�cn.���H=��E�mi�L���anek79 �̊���r9���P<@� �v��%,J�Nq�&_�f6�LYt��|L����":��,s{z�1(Iq[�PR��x�LJ�eNW��|Ƿ�e�6�:�o��/�x4z�?3��q�!�;�/jѲ|�
��H�;9��c�KWL��%bV\kڏ5����|=B9��c�x���8j��юH����lݼ���U&�T����
��)Y���2�me��#�=��|>%\kE~�-���x�_�s�)�6���"�]=��
�^�~�XQ�(�3/Bd�*��P���&T2y��~x���ы�����:�}���k�����e7|�3Z����]K\�R�!C��`eI}�?)��~����?r�z�P��9�`�Xd�V�%�[���:�����m��_��r>bL����P������'��u��5�;�L����=�����&�Ň����qQ���h�Z��: k�]�8���aGeO����ލ_��|�e���7��N�9�E?*R�n�b��N�����3�'\_q����\8�9k�ܡz���Pʛc?e|w(x��P%��,А+0x��Ӈ�V��؅<������<�)Z��<!�4����/s�)������SŒ|�9��s
��*N�f:	X
	\��N���r�%�H���� �`�Ekn�\����W���t��sx���2������l?,��`��h��<y	t��q��UU��#����RՔ>-b��;��[_��xYEҿ!��~�������;��p[����N_���@�{�E����&Q�s8�g3/l1�؎�f^�1'�&�ٷ۟�����3��L�*�j��T�����@��:�H��.�:�
�U�@`�?�	tm���}K����)U����y�&�.C����w��dՀ��&
R�W0��7R���P��*a#�g�m�S�_��q������3%�vM~P++g�p�J����+��	�J�����.�I��C�,q��4�y����w0�K�j��V��A@-�t�(r���^�r�~W��1S��ߗ��Ct�ʰ�0no����92���[�
ة�����LNS�/��{�=���7|5N�(�3"��*>8s6�Y@����fʹ
�.\�'���K�e��P�6ү���vU:q3��a��>��YoɹaŻ(�9i�g�/tMͽ��8���4��*��*s�l7^%�ɘLMZ�fМ-뺳t����_�fl.�Am+�U���*�qu9Z�6K�bF��Gb����q=Pű�=p�b��%q��\���ٕ�9�f�i#<w�b���|���F+|�n=���(�䚋B�|�bXlA�����^$��^c��_�4�՘���a�_�2��-�e�(�L5��B�I��蹆V�'�O��_�ˊ~ن��0��ɦ%PT�����W�Ym�05jX�*rpM)�X�c���s�(���?�.Ѽ���1E��`�lE�k�De�K/n���4?�(l�qQ�|��Ko�G��a>&~���T��(�V>���U�	�X��w+�/�;?��
�x�(�"��*��P� OVre6�G
,ɩ���E�D�p�S���_3��`q���Ne��x��/����g@.k:O�,�(|�쩓���0؂���B9x�X~r�N.F�k�BD�0F_A��a����`NI�z�%��R�w̲1�qI|<�V^��O¢.IO����ܤt4�u�O1����/(���k���ڃ���~*��ϖ���<z�t%������X��
ķ;0q�H3{?�햙���!٫�C}4j�	15��?�¦&0�a̶�ºFLl���[��>x��q#�T��W���,K���ٴn�G,�6��
Y�<NM��]F�Y�QmTo���fQ�?D�nYQ!���{�{��S� s:ܡ�O& ���y`�!��5��y���6��]�X��Iy��K3h����W�a�ߨB�^(���uH_����W�7���&᎚�6\�1�w7o��ef�.7-�/1v01���8��ˈ@�29����x�/'�����?r�S�r�z#4 ���f���e�򲕟�^|�1���79���˺��0�z�8M�`���Ӷ����l�R����G���ˆ�}������hU�V�8Dl%oss<�ڵ9N4>߻�
�����V,�jf��,AE�l*�w�׸D�t��a<��f��	�i����刿^,T���*.X�7�ež&�g�����&j��G����s��*Jb��q�!������oF��3����.|��שRU��W��(]b���e����?ˌtЩZmv$�'�N�n)����<��&�����0?��$�1bNn��
�?�\�����>ca޷�
E�[_�"�R�#��bؕ
3l�����e�������|�F^BS	Xcm���g��ǹEm�ٖf.Y�|n����6���5-�<���Qp�x��{D���μ��������+����-zr
0��R�)v`r0Pn�uPI��-�
�T���ϺV[����Ŀ�m	�#aQ���^ֽ"x�H7�F�+�(�3OV���
�����*�Xc`�K��j��J	gl4|��݄:t;`M�u��l�ڋ�
�`�*XeSj���Q
�Y�Y�%6C�Fb�bU�z�dT���w;�l���V�T�ۉ�J��_�ق�������Dʸ�t�R*=.z=�O��~P0�')�����
z��$ 
Ȥ��)���s{w���8�8����pW�#^�'oo�G��?��Y7�*l�$����S�[�e��,5]�.fm'��S[\r�N
�����8���0X���m;s<�ʠ
%W���%"�9�(�G���0<_�טn�D-eT>�fW7����Z�D5�{W�)�f�[vٶ�c��*B�ѣ7~i21���N&"-������^����n�[��Yavo��Q��fZ��cbr�r��m5ٶİ�������~{�)e�T�<��HJ�6�y����.��e��\�q��rۘZ�O�)6�Xɢk5�Q5M���>˭������o*�3R�eۉ�e�����1�-֗����T��k@�E�^��ŪWX�s5q	�_�&&��p�B��S��߄�bg��Ѥ���uhz7r�8��o�v��%QL㭲m0@ �V+4�.�W�~�"ҹMJ
�!�,�4��Ɛ�6��g؎��hN�-Ɋ{�`[�kF8�3����[H�_�k�^0QK�ܪ]���T�lie�e��#�"�/$ϣW��qV��Lߨd�Nh����ʥ�P��]ҩsZ(��mj��'�\�¼��Lx��dx�3+c1�	�|@�k؀�s^b���d��4w�cr��<I_�ר��e���u���@�r�L��17�΢�m}2��P&�Z���W�P18��f�(�_{�/���N�7�:�pً�<n�
�>���0�b���wp����+Re��F,�7�2�G��Cf(
���h���Ge��?U����'�rUkV���Ҫ�N��sS{\Cڱ�2�a��v�6�\�OO2�2銤f`@�s�`��������{��Lp	G��^?��6o��LT��r�f��l՞N"*����ßR���d%��R탫c�5<"=��>�f6�e�v}!!ꚫ��ɢj�৑d�R���^+V�93�ncl8�/&��e��r��B�[ݶ�-S�^j�PmV�y�
����B����#�� ~oܤ��f��+p�8��I>�!� X�ϕjP�A@�+�ؗ<=����B�e`,O�g/�9�C��<�YƦD�8�W����DG���ʽ�����F�[��J�c?����%��n�\�M@d-/�
LI�E�/x˻�%�f��u��8���0��>�K���s��_�n��@��Z��eH�B���N}�h���Q�ˇ������з6+p�
̽�:��"�
��3�wv�j}^\��)o�7$�*�I����guSo��qT�n|�*������@��r��Bvz-�|�QOa ���]KU+;��JT��pm�m���.�ٮ%qN��m�o�_�a���;%��gӒp^\>&���*+l�1_���s�{*4���0PA2,��+\���T�@�s+k0��K�;�0�1�*"ff���z�h�|n��X�Ib
�ױ�bu�,�IL��ճ_��*��X�O�o]ʢ�/�*��Q��o��'Lm�π��_Z�[�@k���@P�����3,j<D9�n	U�	�f}
/V}G>rz[�r��LP8JǪ˨nh,��YY[c9�Bf��+���n��emЋw4�Ŭ/��W
���ۗ�)��@�B~y�<q�{~e$b� �4C!�\G9�����j=��XrL�TL�K�V��mK�E��y��,P_T��+�&X��vӼr�;�Q)ʭ�
���0�>�s�
�һ��j8�fS���s�4u�pT��n����~��?�'�81�*�>"�bmī��F`�}&��?0�ҩ�^`V�LQRk	�[���k��U�P%onoİ)
C��x��s:�qA�9�D:�|�0�{�xR�W7wIT�s�x���^S���8����V�-ֳ���g>""�^e�|�=*�B»���+Md�o�k&�s{�=�v,�.fZa����a1/�7���3�"�X�L��c0*c��i(�̣8�#���&W��;5*�.	��u�c��mԷh�<�<�2P�)�e��Q|�;�pc����˷��7�s
��4�
(+h]�Ä{X�j�iWu�%yyT`�Ve�+����6��5�l�pq��l�n�(�[*7�
��Z��D�+r��B�b�eC�����u�A��S�nV�x�G:u�H�Ug#�Ը]��C�0D�9��$�����q���
6��*3��mM3|��X��9��dWe�%�'�u|�ܿq@W˭2��c*�W�:�����!���Ԕi�����')b��)x8�=ߔ���|�g�c�"��Rٸ��������].�B5j��U��G�<��X�S|��W&i{�3y��	��F^�s*:�1�R�6���~B
����4Ϲb��,֧��Ǡvx�n_3™��l��s2
%��^FE�W��]�'����/��-f���3kL4^��YB�0J<5ߢg"��$��=ϳR�_iݔt��.Y���.�k�7�~��TN~�z9�7�^f����g0��y&��o��p:�w���9�,�>�qMK"�U��o��O�P)P�9��A�>���P�.����E|J�:��i��~C�:�ZE&�-��Ի��d���Qfn3�C/:'
VtB�p�����̔�VYdy�����Vð�O%�|І�Tx/�
E`�?s8$M�;�����t�eC��g�AYK`�x�qwh��v�N���2�@��у�<���|�aj4G0a���N`ɜ�-A���<�~k��)����?�1Yt`N�tj�ھ�r�9�+��4�y��(�&�p+�9��Ԯd���
���#znM��Hʥ:�Y�S�X�S��[m�#$Sռ.�|7�k(���9�5h��F��4�DCUK90���%��w[3� &����(%|c���X�����*YKum�i��͖�\� ����~���>n����B���:��E��ۂ_��|F��KM ���&��i����{:f�>1�����0mBCt�JnO_�b��W������ם���jWV����1�XńJ�$fj��~%e�]��m
N���ۺe���Rs�w�	�ͦO��_g_�>Ǿ_p�d��|�ǵu��j��)|���u7bFM���b\�nڹ�111�ٗ����Cm������[���Za�TPb`6h,�Y����ϩN�`_�,����:��n�o�����͇���C��1mR+���rs�R>���'�"�.�n(]�Y
P��+l��՝j+8�VNk��b�����k��BT���rm�f�%+�V�l֒�U��W�B-�?�� D'��x�Y�o2�?��(��h=?Ra��Z���B�}�N�m��d���OfY�p�����K"`�s���>Bx������kIy����cU9�15܁5�a��a���]��A���.���r��Y�56�?P�|^�:�\�|��W�U͏zr5x\��.s]G��������@������ss��C�ZxK˚G7��X�{��0
�.�@�7�	#���FL�̺�c5)di��|ָ�[!���PH�"ݳYY��dڸnݪ)�Ra�bZ�wt�CV�O�e�J�S���71X9�ˑ����6�o���/#_<�q�ݺz�+Φ�t�DyT�
�w�Ko�.���L�
/�_�e�����nuV�یcF�{�P�8\ǰ�?Ε���湁�/��8m��-�l[����Y�A�l�l�g���.A�'w%��R����+yՖY�{�l0�7����V�OD�����'W���5�����#�{Y^5Ԥ��qc���UL�v�]� �=�f���C8�h$��__��2�:$���*��p4i�B�Rz�#���>�b�.$�ƙ��'��\��7IE�QW�QG�t�Mq+P}����BW��t�Wx!Y��[<���>�P�Լqf?ߛ*;2Mŗ����"��+��/D	̯��f����;p;���3	�L�rf{�����3�P���Қћ�T7�,�NQ�P~�pe��_���1ۖ�#C�hN19�G�A�f�8F�+��� ��g�0��|�*�1F�|��%tr�X1��=��5�*�
Y�'Q�	r�O�M��	�:9<���)���yq��21
&�����8W��b:�A��p�n�3b5�%r膙E2.��X����B�E��)��ճ��lf
V��ġ�_�?�[����8&"<�d���:
��ֵ7�^[�PP�l��4"7
*že�8���@`��ݖV�K^ڰ?2�-�&�{��%��F'qעY�} uϨ]~���
�9!>{�)���J��͍,��.�ͭKp��߸V���vέ�Sf��4��Up��
��Y�K�h�ơvW0Q!t�s33��ɷ��M�
"2��@���X�=/���y̯�z���E@y�1�?�[�m'3����KF0>�`My��f�h���V��[<����M��,��N@�j��;��h�NnNb��.5��Kك�F9n)��>�;Յ��R�|��!�|�X�����kWZt�64�jc��8lQ�cm%�y�v�.��iK�1�CM��;�O�#EGҖ��^�y�!N�^�̽o���=(���5,��\��5߀][�cX`	k<E?_���E��K7��\��Xߤ���;oKq��B���It��L2�h��X{�{�2�V4��X�ȍO��em�

�76�S�Ԯb�m2��M�nm����s1�o��7���o����c��>}�a	�}E�̉�&/�SL����]!�r���Up)�	����I��F�,^fߴP��·µ�����w��^����[n������Z^�4���{���N
�����laJ�����P/�J	�A2eج�][�@��Z��P��>�i��pg�!��p_�B�z_R�*Dfn��J��LWo5�n���#UmnQh3�f49
��_�Cg�C���R���$��K���Pnp>0���1h"��k5]���h8c���K2��n��]K,�P��0x��.����5Ct^�Ķ:@�<X�
y��:���#��/������8%Hs�݈���-���ƖLb�Q�A�c)_��2����è���w5���l{��
��с:y��F���9zZ���Si�sw�?��4!1 "2A#03QB$aq4@CR5���؄f2b�u �C�V��K+�t"x^�g/񋡫�4�ٖ�?�huE�s2!b�b�� �OQ���N��i��-y�[1�jm^��YZ��E�?�����"�ӱ^輒zX�y7k	���R�,ѥNr�:P~U�=�`�;]�~�O~�j'����M�-�=��lJ�JUf���*T\
�xM��`�ƥ.��[Z����
f�õ��"�7��Ļ��s5w�j�����n���i����ɚ�?1��n��lN 9��o�R��RO�pm���0q-]ˀ�j�	�`��_�i�=9^)M�=3�ݗ�S6^W��?�w�A��<�X�-`x�f�c�ј�u�5{S1�;ێę�F]�6�	[�1Nz:���@e
���8�Ԅ�c�L@� ���4����5�N	���j�A��^f�ݘ�p�=+�z`��g�x�L���j�\�N,\��Dx��}J�E���ӂͪ��JSg�EtTc2�P�|���sQ�
��YUs�
�0ث��e��9���#n����=}���ր��j�(�����euw���pow#�斝�L� \��P��'��$�v�*�E���m������+G��꽳<C�����+n�鷜����rj�$\���wA�+�1� �Nօ�5/������K��:T2���q�ij8���`�T���w�D̪� 磠a=Uʞ*}���Kˣ�n����Sr�P�>G6�q=v*lq8=q�;~Sx��̽��T����İ=-�oԦ�ڸ�
���nT��k�`��{��G`N^�
�2��m��3Wo�82�޻�A�G.����Ů���om�3F��%�5����1q��떄���v��ĩk �^�Rc.�q��ԴR0��=�}���Z}O���ogE��}�nE�j*���&�Zt���֬����U� yS3�C�(�(�x�&`3x��S����|�r^{����0W��1�D�m:�Ͳ����iɄ�(����̜���<t�n�p��%��DT�l�p�&���b0a�dr��%�O1C�}>|v\KmG>���a�GW�.Z�g��<C�&g�7���G��/����$�$��]h5�\ֽd ��9/]���-Uz{��v��\`k��c�*�2e���6���z���kYW&�j:���1_�g�`0�mG]��4X�����{��x.������� �Y��#sq����GVѸ�q��j���Mmƴ�W��VOV�^jt�w\��5�O���s���u����7�IZ굔L�x�0 ?>�?"�2��`�&8�A�O���^�s��\Aaf��ji�b�\Jm`#��&G�H�Z2LQ� ��?�J?��9�1'��8�*��bB����:�¶�e{L�S���U�d�(zV�&��f��9����e{���9WWWfX��Γ%�&���eZ���J<���~fm8�U��i��N��馛T|�uU�V�^�Ж}C1ny�Ϛ�N@E�`��6*6
�� �ev؈��.�/�q3��ҳ]�t�bL�ʙ2���H7%V�&qe�|P(��_�6yme���;"$Y���Z�{q\d:�gm#Z3)`+�+��@Y�?,M=Aq�LO��Jo���V��P�t��Qg|W�j,&�Y^�L-_f�QX���E��W����l�ɇ���̦�bbr&a3pĻX�v�єq�3�c	g�(}ؚz��g�����5m���5�F�k��n"���՜�J��lʫ+�PXLs��̞��[#�O���[�21����Y�:�Q��OP�x/�ԟ�qbq�^�.6˛/)�:f�6�C�a]k�:�ʶ��1�����V�ZHTo�шiS?���X���z�X
x����P?N���Vk5V�YKG���6�.�kUgnh��2�
�RÆ�v���Lj�&՚��.�5��i��zSe���-�N����Waw�)򀀀Jjc���}�0�D��}!�A�T+���
}٩Ӧ�����]��5z��&��°eܸ=/�4�5������E�Jz`B3�%DR 
O+P��톿̻Ĭ�x 1��!�5`�%��;b�e[��8�P	[\�ux]=��\��N
�Ea�ўlElA�?�/{F��n�N8U�o�f#��>�v^Vx=o�p�<@�M�Qo��9� ��?��NݻMv���l�^5�f��5Yi� �Cf��J�ӗ�UA�a)��+Yi���Y�1>�8*!�D<q����6qb"3ĠR�5ۆ�_?��ƫ綖�[�i[���J�jd8�V)L�l�O���~a�3L�n�ҫ�%��7D/��S`��K���:ۻpқpw�39騷�\O�&��̡r+~:k�{ͼ<K�zm(�]�ѮvZ�Uԫ7�W��:��:�)��n����ꕂ����)��
zb(j����\�PjM���_DC߻�?��_��V�@92���|�NO�M��i_+�������o�W`��lX���)ӏ�U!B��ԘYj06���;m�i�Ӭ�ͧ&�v�A��`LL{OQ��׳�����l�ٮ�{��""o��-�f�ޚ�[<�.�5w�l^��2i9�s�\X��P�ӭ�%�eUvNXTA����ܮ�����{�E\��[{Zao�JreK����M{pE&���i�Qm;e�Ey�k��KUɃa�ӵk������b��|�D���	�B+Y�j�Oꯧ�8�R\�Z��m��}j�b�����6�@�s��ɿP.�Xۚi�}��ec~��c�s9�V#s+��=dv=F�=Z*� �z���+�]��:]݅
��}#I�#�Nz���z��=7���w��i��gQ�C�n�b"�7l�g'�x��#7.f����l���W�V�V�vF����g��5GoƒH���%�LB7|e�*+��+z�h;��]��7�p���^wbw�8����穂oP̃�e0o��sJl�&fL�=j�o���MV'���/���6L`S���7JS{�kzC��]��Sఢ�>�Z�."33+
x+A��}I�U�!��Yk�s��b.���4�B�V�ٱX7(��k.�L��-���s�� �˓��w̉`�>`%LӅߑ���U�i�,�r�^m��U�qݧ�u6��Z���g��P�ө��U��5��s�E�}>��4��ct�.�%#�ь��6�?���P�Z�Tl�ӵ]�K����2W���4ބ�����d�33��G��")Ȁ�����1�sQVLL��Kw��yB�ddLdM_݁An؆¼�ḓ�[z��-$���9�d[�Z�k6˩��0��6�hk��O�EB��3/3s=�F���gqI��ٜM�x��z�s���(a����s�O������LK�Cs��� �d	ͧ���C0q��ɲ��&laM����&�(�,n�י���]%�եuܝ�-�MW����y�q>I�*�#T΀a5=����5n\�B"1S0���j��atUTL,���ơ"!
5��h+���<��}�C(�����(�$(�?��5�朱 �&�O^�N��w�?��?�h=CX5
�z�f�U%i��5��\`���B�bGV`�3<E�{�)�l�O���:|���?OG���m�Ÿ
B�#޾}��{�όӆA���EO��ܡ�W��U���\K�n��\<�Y[c��0�d=ṔZ,L�_	�ؚNNM�c��L$J��% ̬e�CKk5����إq=+�N�u1�L����4օ̠m<��v`L�t+����u|�f�=�p���ۺ
R���y�ǽ����}T��`���V`iXg�Q������pZ�a�3(��8����+3�B:D�~��G�e�Q��%v5���@Ɩ�T�uZw1uK���1ɮ�j��ZK�Q�(a�Z�NW[��|֗k7/�*���]�͢T	8�Z�
��*�.؄FEį�9�Б>fn�W��3IOm7�pe@��{>��ݾb0o�޳w�m?R�,H��\3�MT&���~!}��w霭�(�p���-�b^WN`�YJ6*f�r[V�Uu����՟~ ��Q�����;��0u�)K;ō{�-pk��5�`)����Pm]-�V��	�cjg���9k�[qiB�� ��r�
�;�w�Sn֛��_��37J��se����z����6G�o:
�tv��fw(Z����-�����c0�ylN���h��;��+q��>�ꡮɚN��0��>Bi�!㌡t�9fcZn�ːfS��G�x�?vV`4왷��L*f�LU O�u1���(Mx<�a��C�W��9��\:�+��%���9�rs7�ؚ����`��#ħos�j����%߮v-u�K�L�aĭ6�q��E�MO�lV��@�j2w5���]��A�ѷ�8���92���T�v�d�2(���)f��O��X����q�p�%���?]`2����հ;�
ψ�`0��K��b"�,vaµ$���*QR���E��z^�����Z)��U��kSX$�[cީYw6����[lj��^��n��)p϶i�m�[�����Z�%�����3J3na���4����h,Q�NJ�gb���L�[���7&eϓ1�:�3=9�٦�p[�v��NL,e�����x���3��E��t�g��>���EI�	���D��������>WQj֜��}&�J�?(Q簱���i�
6�Kj��2K��A��Lݙ����,5��m����2)�e�T�3����#M������eN!��;x��A�[��y �1����+��
>'i��=e�e�G��K2:Y�d�do��f���h�)YXM�%p&A�X*9�Tϙ�$\a\�榺��^݅
�j;�V��xz7iA�6���6O����[���9�Zj�1YnL�ƶ8ks�Q���0#�	��7ZWijOE�u���|��R�K��Wk�'J�Ro*���Z��y�S�B��X�,z]~ɐy�W2�1�*��%�D���5V��3K��T����p����.���(� �qLC�?&�O[6�1�2��P���`�]�n���F�U��LJ�LyKl������+��em+}�+�dK,�<�ۀ��c�I�ܲ-�t�fӁMB����R�_m�{-��b��U	7��L�N�o_�x)t��G�߅��6!�v�
��
{fZ�I�@��!�&�W��#�q6޼F@f�sg�C�{A�45��1vҨ���M�7s��M�v'��{:�C�5cm��͖_3G���V��JC�Y�?��� �P{l5��f�žm�X�?�3\���}X���U\|��9�i�Js���aL�զɢ�+3�	��n�;r7�Ɣ.�j��k�W�b�$�s4�t������5W���4��=���sf-�_#A�s�2�}Wfc۬��NC��0�&�Q��m0�-<�6��mq5?y�J0���f}sC��&��6U�#VI�4ճZ	#0��T�pU�g1����UWʱ�v2�ld�]�-�"�l+�n0[��7�#��܈�~
6��������1-�\L��yO����*ni�#ޫ�Ww��-z�d7ׁ~�Tb�+�ci�T3�8��q�q�/q�!�˾?8_���7�Y�bx�i�Gs�n1a��m��T���k+fV���־�ĬYq�+�L��\�#�d{�6y��5$���W0��%_t�V�k��Jk�т���l�%�-����}ep-��0�S�yo��±v��у�aP�i>��"[镰�ݣ��&�(�G�7�5Vc3�S�V;�%aFR��ݣ�H�-$�Ș��F̭ũ,���XE���s]J|l{X�(ϺX�svƇ������
3�qjL9b�s>�����ۚ%��ԩ7iL�!�^f��7 �9���V���b9�*���39�)���̦�TA�1�1�v��Q]��b���c,<.���۠�5���Dr����i?�U�P��غ|	�[XƬ� Ds�#�]�r�0� ���h�4�c��?�l	u�D2�#���a4Jv��F��v��˂�yUpy`��9�01w)��ͱ�$J�W0�g�!����و�� ��#O�b
=!T�k�=4�ň[�2@����0%`.�L�}=�*�j���-�^jej����3LlӶm+�N�����P�AԎ���-�Jj�<U
0,�V'��%7��2�H�1��p�U`A4�՛_a��&���Fc��U�K�jm��S�iM�.q���fr�;U�0�w�s��ζ�����l�by��7I�����*���5��<����sͺ2� �I�L��a۴�;�ce|S���a��Z�7���v|cҴ�L�"�_�n��l�HU徊�1�+��F'}%��	�o��>���ـ�C,]��i�'����)S
�;_p�NOGlC���+X�����T1�a˞�p�����F�?�\5|r,A��O��k�e\G�*]ϧ�-��&\�N?�;!H[q�{��88S����a�8s�0a$����ئ%J{�/�Q�k9�,[�H���� �oo*+М�BH<inc���Ԍ����h����/i��S�/�jXiv࣑��Ωо٢�K�>� ڋ�l��'<OT�W_ꯦX�M��/��%�Q���bo�8���LU�DW
�b:�e�v��p�^�ma���Yn�|Fr5�5�D.���_�v0��[;�D-�c�9��0	��n���0`b֕�y�W�LGFC�稊����@+�ڻ��8�3�a�Lz�r�~�|���q�ie�1Ё��x0Z�
�c��k>����>.�9��v��+�B�c�bd��Yia2eH^j}At�v�׶�s5��[�x\
K��?1+����s4�g0�F�a��W�&��k�	kZ�ƴ���W�i��I�u�8j�8̽��s;dʋTf�
�-궭���WNb���_�@�TVW�[�ԩ�fKE<bi�Ԛ�<$_�;�4�a�
�l�7m��h\	��l���͓mk�M�m0�4M~f�N5Zf�h}3U� ���B�*n�\���>e��bo.�%��VB�1��q[+y5�Fg�C����!V׆�<vH��|GsU���l�p9�'�6͚r�f�ݙ��2�J�S)ch9Z�C;�_��"�*�t�f�I^���UWq8�<ŭ���I�PiKJ�r:2��3��_L�ɭ���>��,�ĿD��]I����/ӵ,��4ע�̀M�%�3w*+J�
���\б3O�8�XQ�Kuf-�Nـ�k9���&�bVX��G'p�>#�s7��F&�;�`&�3�D���*�%ƀ�S�-�eu�襇(�8',�4�L��N76 �"���`"*�30	��`�����o-�������sV��$G�n䈛q��x[�i4*^Y~^&��AIݳ�@[���e��j�;�T7Z#eVj��
��68dャ�糦�+N�X�M����B�'���v�5�.��Q��a�Y�̳d��K����j��E��� �%³���fW�z�!�ƫQ^�F�۽Hp�:
���)����q~'��?��0u}��o%���'J���Dc�+���M�涛��*�j�S�f��WxU,p1�8���+^����xO��E	o�m�1c�Zvꂺ߇�E�U�Fw�l���ϕ|b(��fm�|K���n��ID'
Lۙ�"��>(2Ϭ��6 �MT��:x�G��O�NЈ�&A�W�}�큰��!�F�ʭ�3���mF���n���b
6�D�Ĺ�6&ØA���[���ۚf
�I�qcv�4/�k��4�v����nV^�"
�0�b>hy��.@e׭��1��ٷ��rj'/m���*p����<$ 2m��t�]��!"?�.���8N`�`��j���G+�F�/���v�(o=���XFÝv����TR@�v��[��	Z��L�#1��f���0G@�&s��J��>�~�fzv+�����b��x+q5;�������rN�Y���d���W���\��LbJ�P6ræ�����+V���E��`<��v�n+fL�}�Cfi��8q+ 4�w�\�m"�,��(fw,�4��2�Y�2��W̺�[fbh�v�֮�&����<	��<���r���4C�A8ĻJ�ô�/ݸ:+�Z �
���b�X��M"j�v`��7l� |���'j��kh
n�M�Gi2��͚ц�?�+�̱��s)��m�r 1毹X܏e�}�0�
����W�r���ŽM��D[-o�KiK��Ӑc
�(�:
�5#;OtK��*TC����kY����t6�b�5ܩK#A�E���7LE�	��X��h������&陿�k�J
�(4��Sb��`0<(�ȶ���eN��T�Mg��ɛ��A㥇��m	�U��6��F	Ӧ��c0E�}���&2�Ӽ�;
�z�ej����b�=7B��Ӭ}��Zv�+T#%�n�`?.�G}`�Sr����i��ڻ�Ki��k;,�����Q�3�L-�`%��7��4�a;Ff�K�+	Xػ��lŨ��oi���s�&�H�̻��i�m�t�W��4�L��ŊwS�J��"�2�(nBiw7+��%�����a1��E]��gڧ�z��7)�I2��c�V�f�י&�+�0)�H��0�d˾<q�:V��\���x����OU��[�O�;[�ӷ���}=���v\C�gw� hR���_�{'ܮ�,}�;���3(&V0��:8�˃��o?�=��Ȗn���=j��*��ŎX�+�0|� ��=T�9s�~��>f���p?'���,&��L,"-�o��n��Ma_��e6Y]�X�򖊅�V�1���ڛ��J�h:�Ѯh/|�r�ʔUAX&���/ȼ�0ю%����/�J�T���
�|u�1�jy(�iu$$���� tԷ�+��4���9��;�5g �2b�mc�z4��%V��j7�]oa���]���%���!0��&�e*����l�����!���>Ȟ%�M�Sq����&~9R�\�M�n3q�3&n�+ht��\����-L�9
W%[6cՅ�ߏv����f��x����n���"�BR`��5`�9��:�if����j�C��D� d�J*5�f��qӴ����N��lo�ڸ˻+�WSZ�t��4��
^���c��M���-
�Fe�l|�4��v6ŨZeU-K������|��Й�r��w��šlӅ)m�V�묨�%l��^�7�N%��0��Ѳ�sM'�0Ƶ�'eq����$UŽb��[mJHc��<�"�1�V;��t��v���p�և�+׸3�Da�Y�F�;�~ߎ�Z���cD���;v�ճ���m��ffA��)�|M�C�<N�j�`{s,��RÚ���5e6w�3�@��(����7.%�=m;�o=�m5��
�<�,m��.ҡ���3��͟v�O���7J
���-Ӝ�iFn���Qwy�{�l��l~�Mi�X��o+�T�S�pS�IaG���� ��k�` NbY�P	<~:j��6|v��L�wG�S���ŏ&iԻ�0�
C���bin4� #�%�s��m���
�F�j�7K�_9
x����bbc�`
������z��E�t�av曝٦\�!�=U�zc�9��!Vo}ى�#��T�	�f'#�_�;����]m
q�
�-�y�U�½V��j����Uk�h�8�,�l\���K�0��o�82�0
�x�~��/I�Ӓy����r�UN�,d�������R,7W���|���+�(${~��Wj���A�uv�l���Wl8�ß�*q��Fbbg3I���ь���piS}�W'2�i���P���v�h��Y��-r�0��4�X~n�-|]�n�eE^Y�hu]���dߨ�p2q)��NŒ�C�!caN%Z�Q�+��������~'rXr���<��S� ")��v�h������ޤ	m[i��}��m���q	4�O�m���̼͐3��7��j+$�Tԫ�<�peGf#n^�f/���X0�]b�piN~���^1̭z�l���#��4-������?��vf(>IE�J�]�jJ��{��4������IT�]k��s�1�r|�5\�3Ĵ�3$�)�tD	�8���O��0K9��F:����`//,~&�p��w�jBq;��O]�)�WW=�
�4�ˉSef�𘈻�#�}bj\�{��s�Mg~�e[f���Uoq3�7z�<&�TRø�ے�#x�F��bc�iP��B*�(�u�\�w3��eثgɽ��}Ey�7R�ī�L�A4��h������X�4�Ym_�0$Q̫; �L&#aa9h�'�m���l�?�ԗ��-im}�������4U�N9�q	�,qZ�;ni]v?���G��3]H���\K���۹v�5+m�c�ٷ�4e�bm�ZP.�.�|�Ԩd�Ќ�J���8�pg��A��j�u�i��C��U��g���V�J�u��(m�+8�
a�����8�ج9J�<
��2Y̳OıU<in�v}�P����?
-P�@`C6Ǚ����7MО`�ӕ^z�"�E$��F���?�a'�
(gҬ:C�^���w�l�cx���������nϖ�7�+ ���}\Ƌ�s7B�\����)=4jKf3��J+68QF��zj<�E��qe�X���7OF��ܲ�Z�:9�I��U�����W5��ʞ���Eh~U^���SfN��3H��8��؆Ӑ�A��ڠ����A� U�؈�� 
0 ��(��6�&Zrf���Զʡ9�0;9��s~R�u�~'��7���h�V�333�X0��YwyLX��~^V�0����������2�11g�BF`e8kD:pNEH�7����ui��d��U>,Ҳs)����=��ړmsms͉;K�jȜ����qgeɕ����`�!�gU�u��&v��Q�g��B+�'�с�=5Cebj5h*!=#H;E�\�A��[��A,<b(��Y�Ba<����fQ^��w!pNA��y���U,l��q�*9�ܦD�t�)wk�
���9�j]N9��`묳jm��;�X�'�i����~٘Vk����3A�����b�7Kfs�q�ҥ���cs��6�p �ی��-4�^��[��>>[B��b9-�rf�OTM�6���v�ǻx��oY�f���fo�|6q�k�$LF3t'ˀ�ż����)�WW=�&e�lB.�?[{YsL�UX����0=]TѸ��pME�x��r�-8�E#�w�3D�S�<bZ�ǧmG}ԍ���ѝQr��z	X����c�k*,Gݓ��i�K�6�]L('��5����m\��0u�Y����45�12�99�2�����#��fo��*�Ɍf��ĺh��nz�7�D�hb<S�L#Vs���g�o,�c�.L���9����_�� �m�Y�bYc��b`B�O3[Y}9�QW��;Y��ٝ�ٝ����p��v��3<�h���n-ֺ��Z�\B�#[�=>�w�3Y�Z*�n��V-���8�}mڌ��~em�h�+�5-Ȇͩ�b��T ���Կw�l�]Qk��#𻦰�PDX����Bv.ϹL�v�5"V��p�w�e����=j�m6Nڐ��ޙ�f�İ:�ݜM}.[x�B��֪��uX�,2��
�M7�ah��e>�?�3J��ȳ;s+���nz3_V֎'2��O�%Jh�~f��Z��-n���{f�&��c�b"s4?������E̪��D�ei5U�u>5��sY����+�z��A�,]������2f�7M����D��Z���ehX�U�F�� �T����Rm��W�^nԵ�o`��W�]d_I
�5�-��D�5��m��W
�`�>a�U͐k*{���mZK�*_j�m�*����/�1�Nr�X�����9���O���J�n�����5��:c�S�S�@g�:��y��Bc�f�wX#�����e�}��`�����f��*�sTC�Ӷ��U"��-��@�W����2���Qb�,�8����f:�c�E�M�K��#.*�<T�1�����T���-R�ӽ�jS��=z��_�����2?��ը����6<������e�`�N�"�&�1�3�+�T�#��x�Z�w�k=J�S	m�snl�zn��㉌��뭤��*v���M-x��4�2��j�Ц���
Q�b���aT\����a����q��b��l������7x�@������1�O!�%�n�L���<� #���j�j�&�6VX�&�#�X�Z��6��j�3I�$�9���6꽇ؼ�5zo���ӵ��C���,��Z�����J�0��o��30���4�3�i�R3@�1q����5�!"i�]/)=W���t�v7WŞ��]`6�鞓I��:IA��w�jc3t��;�<�N���fA�6�s���� �
�,彂,���͖j}B��\���^��F=��y����f����~��Bv�EuZ�f�}`�^֖Я�Kjn4@�v��c�Vzy�9��"as1����ϓ�l')(u%wJ�	�d�Ot�%d�[������"���
_���M�%��4�<ʆs|y��M(�Z5՟��ǝN�i�C����s�>��iii]iX����, d�˾`Kb��� �fe-�������ELS/�:s�����=&O`�;�X>^�ZW�;3=wH��u_O��صa���>S��9�30�33���z�c0��f:�'��r_`ncD��M
�f}������8R�N-���F�w9m8ԝ�[������VT���]��G����Y���"�����7|c/� B�W��+��,m��|g�3�����NA�����qRO�k~��?0us�s���0n���΋�x����:�Y���zRMY�F��v��3=U��V`o�j*�ls�3�QF�ҶǍcL��1a��A<�P��VZ�OȖ=-
h+��
ZU`5�4/�G[{�L�N����n�;��;�|��A����2>zXf=�@%p��!�����o��}�+��"��0\�����Ua�M>��mmE`��-Ӧ4Om���L���lҲ�m��5ޭ�jf�S���0��_�6�rNf �1s?��IPH
	��/�����}�bT�Ɵ���x�y�%����8��+�.��"����	� � t!?�~ �}���#��K9�/1������Ҳ�L��z*�M�`L�E�*|OZ��Y
aeW�\+UP��O\M��z��~�A�fL9�&���n01�(�m��	�蓈n�Y��%�󘴖�@_4�OA�a��16���2�i�$.��>�W4�������m�j�%R�F�|��Z%�ce���`�uu#m����lO�BD*��?���b�ynN`���M��8=?��	s��ˏ�2���!�����	>4�m���!����칲�jG�}P��7��u�L�I�?��`jC>�g`EU���������ӂ94P|�i_��QH�P՛3M��=.�n��k��a���nn(���+�)z���uZ�V:oY�'��$�9���o|���f�6�C�\t���U��R�t��W+E�'`�[�a��*g+�M�[ZN����1_��+�����)@[��0�~��Oy��
�p!��eya���ch3-Y�Tq�`��c�`�L���� %�q��\�*N>1b��?�<�'3��̰��+���>zL��-����c�X���'
M��3Z��ݥ�Lt>:Y�_+����i�K�h������67�B�Zy��O�j��Gf���������n���7L���W�ˆ��`\B ��A�8�cZ����e���?e��q.�N��Ig���ۅ�k��5�ՠ@���({��~҇�hWC2k,]�'L�{ɭ���D��#S���F�Fx+�Ffrc.% ;�m-�ç�e5��=A��fx�����q9���X�#|l7��8�
��
�\C��~���Sf�`j�&7��=1�jչ��G��-^�O�����]��w����15
��1�C���J��SYjy�0�8�I�'m'm&ğ7$ܰd����
����3v�.��W�O�{GR9��ųiغ����i,��^�x��S^���SJ�Z�g`�0T���ƚ��`d��5�T����1Ia�<�K㉌�A��#A�b|�&9����>ZVۓ?����6��g�]��m5����Zn������
��&|��'7��B �?cl��Z��S��GK���<�մ&����3W��u�E��*W���kt���5�z/�3�
!<̈���&fO�kcs���V��`�=��	��(�t�J���&:�z_����Ñu&���F��[g4���5������JV�+#N�������JQ�~��w�#0K��`�n�����T�f`�8+���Vgf#l2�
_�YwBqұ���ϰF�T�0�P�>�����
M�`�16�!��1��w�hގ���G���F}�1��,��?�%����O[me�,^�!6���i��=s3���+�/�-l�iLb�{,�a=�P���g����h�)O��8�����Y�|�P�g��Ӳ.ʫ�6iU��c���Ѹ]f����l��{+��{{�MU���JS�S��Xy�g�C�o
I�aTO���<����3�u�O���x��g�x���E�31��d��&:�v'3��2�}Ϥ�Y�/M�>�T��$OF�W�Zu<���P��k^�B��Z�oS����tPK�Ӧ���h}i,��2��3wCLϳ33t�7u��т�;I;i6���|A8�p�����Y�\�Ԁa���Ӷ؝����NӰ�i���-�W��tǻ��ŗD�ב��&���g��…>��j4j)�S�]"�
�J��N��5[/�6�e:+�� t�g�ۡ��q�I�8�DS��I�O���y#8����'����`3�����6ͭ������z���T0 �}.��5��?M�a~��u������4>�aae�QN�q_�T�lj����{/_���O�#�Wa���0�&3_��AL���a�Ƀt�����d7C�y�\=à�z���MG��Y�]ZjҵZ}�ږ�r�sj+�hw��?2�R�X���(q�kd8��7�8�,�x�����gw=(8�{	�N<�����
���=T��D�9�z������w�9�M�C�PT����C)�MCP�WM5}��=H�
������jSr֕ D�L���Զk���؉�t=�H:��n���l�a���=����j<{p?dC�䨍�Br�"�yy����3���y��]nlj�c�:s1����t0�_3#ǴA�!��"x��7EF=��Ʉ��l�_�*fOE�����M+�Lt����֛�{l.��(Y��b9�-V��������_���L��*�9�a�%�C���h��p0��mc�j)�i��~�k����ơ4�0u0�bx�E���$p0 ����~P��|���t���X��E�����C�����(�z����l�_���a
#3l�OU�ɪlU��7�f7QӸ~�g�z�7L�5m)?}��l�2��g?��$[8�����P��F��z��_y�����e��Ō0@2b������D�A��B ҤJ�<:!�1��>��QŹ��:��y1|Ba�y��fq�g
�	��q��IJ�w&zu�m���{��z~�=?V�A��=8C��Lq&�Z� ;��C�N�+��&��f&��G��7gv`9�7� �z���%���9���c'��AC<Ls�t��>���=�鉉�8��q��Y�J�r��\!�a���b���)�xVs��,m��6�v��L�5/��3��i��C��K���_�K��0�"��������J�A��:4!���=�~3?.���=m<D,��Xp�iO����bzi���p�*�:���m�L�햏v��Y�=>�0D��	{m�S��C�Xp����i����<M[�@�L
�a�1?>���o�i��"�zp���h�#{G1z�u�`.�}����El��jI�iO�k�Иa���Ծh����P\6,��NP@ۼwG}�9����V7U�=l�@�D;�n��Z`����1������:jO2�h>�/�6�&����5Gs�$�������0	�	_����0����'��j�Vp�u>�-�A*�}��=�f��&��:�f�v����zz/�F��l��g��+,����4]em�z�hT�eW�X��|�'��)�S�{z���Le=����'����3Pߩ?1�
A�V����;�_˜T����������ϴ{GC1�>`�%w�? ��:�}���/��?f��U��o��S��>��/?�4�ۏ`���x�}��c�64@���#d�J�ֻ��9�As(ʥ�S��ʭ�:]�����f��$t=^�Ok���쿖�l~y�tt1��ff�b���a�5�h�o�z��j�rfbm�m���_h�q���H�-���:!�%�e~ �m�GA+�}�p���(pˏjKr�i�
������Y�J������,�wI�q���P����2ϓq�/&i~�mo%A���t0˷�����om���s�13�L3OZ�h
�E�'=�&��]�J2���6C\�/�:O���)~"�!�~GG��c������l���A0CV��_�C�uQ/�:	_����!WS4`�r}�왥�OB&:,�4Ĵ�b}�۩�jˌ�Ś?��i�i3�����[	`a��_ź7��na�4M�á�o��o?L�ٜ)���:Vۖ����L3J�m
�D^⯔-���G��3h�qQ�=)?��!�C�ϲ�0��/g�Ǻ�Z/���C|�&�g�e+"}�{���}�Oī�^>X���&��o�'��af!�"�B:j<D��̛���E����1�L	��h�a0İ�yKn��
c���h��pC�Q�-8�PTC��Y��`�	�L�/� ��rL(&ނjO�ϴL�'� ɛG@������=?>��K<�*���:'�sgtO��D��W�1��8�ej7�O�,>��MG��DZ�����fbQ�C1(�'C�,_�{O.eѼ��sfe��e�'�C����&�w��.W����C�U�&2l�[���8 !1A0@PQa"q��2`����BRp���#����	?�	�-�;Ou����Wu�@⋪\L��!�W�����Y�hgĴUXT�zR��ϰWBsM,�	�����q�#;|�#YF��C���"~��v��~ʿ��d~�o��F?H��E�eFA�#K��(����C��c�#.�U����S�bL�B�A	s����z�:�
V㯬qq�����w_/��A�ba��R���վ����Uռ�F�E�L �븪�^Ocۋ4=����M��/��0E1�Q�C^�?5p�~2�F;'Ĵϐ���o�a�|�崳����$Tq�yL���B����
8,&n��g����W�O����y���\&;��xǼ�{�,z�>̈���'݅����a���vwԳ�_��yV���gff�_�X�q���p�����}Oh,~�{bZ1
Y �v��G�Ɏϲ�$��b�!��O�[no�~}V���W7�⨫�F!2���hU����ĖVv&�|՛���BV7�)���������4;c��0�'�{o #�+�;�����;:�Ԕ�Ktj��#!�yU���m:��\���
��w���g�n
�3���s�o�Y�+,����s�(�j�!0Ӳ������A�?����b��FNW=}�>���Tg����O^q�}�)o�G�nn�F�@��J"�d*ϼԄ��C�1:��� �]��	��Wq�f�2Ig�n�IA0y����ZJ)�!�&x��Qwb[hԦ`��`�|}����	�U��4��E�(U��C8�3�)1�i�^CG����_@9������0�Q�j'@��l
L�C�;�w
h�0�Le��Wv$e���_b�?
�阬�'̇dQ�q�B�h�J1���Ki��P���s��-θLD���ŧ򻄸�:΋�'���P�!�������J踫I�`<��/Q�]�H�j/<Ύ����7�8*:��[Z�Q�]m��� ��vNƻ�&��u�=輹�rW�����.S.3�K�U��D%�_��T4��!�2[d"u�q�Ԭ�ma�*�mR�-��[Fﲲ��(Etm8��I� %6Fl���A_bi�T]^{8J\%���fk*lm5�1��68qҡpq���i#��d��v��m�
��X#�:ha�%��C����_��3m��H�]K�O3ۃX�IM�ѨT�`Im��tl�;{�iK���6�í&t�.:�|�Y�i^
JKgtb�68��(,�ɨ鍭�N�L�+�i3��<*�T]	L���!�������emC�8�w[:��8�P��Y��=�����Bh�c6\a�ף˱�����k���M4����42ᲱTT�Yago�g�6|�Y��F �˸�覓H͌�.���]c�4��g��w�V䢚��M����0讽�*=P����{�L�At�y����f(��g��b�G�x5�]R�y.���,������
��?/�q�\�K�J�esd�P�꽕z���l��>�a�m,��p�`�����ػ�������T
�WM@�k��\!�qҴ��O!�vw!��T{к4}��:�s_${��3�5�����A�)V{�?(@�;=M�Q!D#�z��1��W~��� � �i�uVp9+��Mz����F�\���Y�D��?M�f)��q�D;#��O%JA�/�ڸq=���5S����F���C�#�#���f`��^vy�f)����|]���}�u.�Sd*V~�G���&�J�Ac;��E2���3���,�A�{2~l��R�Xp�Q�=�!��F1L�X9wz�Mv@��¾%.�Հ��P)�'jՔb.$lE�,�Z>�ڋ����W�'+���<�-A�?�[xE2�M*�{�+8� C>�\#���t?�}�P��,y�a�F�T�H�D�h�Z/�Jj�d�s�����Wdy��(�r�P?�c��}��L�ӏA5_�j�Ϫf�n��>
�e3�Dn�� ��4qb�姇a\��<\����w�.8��ˀ�20S_?�����VXFA�:��([K�"a±���S�&?�K���2!1 "2A#03QB4a$qCR@������1Nz�һ1�S���������ޓ�`͍���C����@�B���Ӱ�[�5��Dz��D1�V�V�9�,�C�>�ec�3,��8���|�u���39�"���R�ekX�w=+�ļn�QXu&T�1��`�XF'��Mϓ����:nϟ��O����cp�e��x����>�����N��T���|�'��̬�Lo�q�F���nb�����'�����#�0C��
���L�Cұ���f9���q�N�OL�!�RT�=r#.و�Wʴ�����0B"��]�@�
�9�
�%���/P�,<�鉤�t���<�ع��YVl5���/&9���L3E%���^������m
.�2����qX�;�H^39n�<���{sA��DS���ȃ�1��^��L{rfLO��\��(�}�7A��x��f��ǿ�?♯�Y��"�L|7��c��������38�slhW��z��Y���zyX%c"�?�Ҵ�&9�zd��Le������<}�V߃цa�D|H̱6������ܧ�Eq=1�ղ�7�J�+?��m&�Ѓi�3S�Q�fى_���3�B�.֪�V9>OF�x�>R�>ߑfq���۟�Wr�lC�
�y��s7�b�ͥT����=ؚ�����Mmk����	��~�743;���0Zּ�aU2�a�X�W�Su�_�W�w*<��W����mj�ef��!"9���0&�@��	�%��2��s�6�~ٓ����ī��0��F �8� �0#�� ��goۂ�j��6Fb6x�LG^�ك�t?!��T��LA3���>B�Q�?��el��@���B��&�'n�Aa5<�|�q1���`��Ĥ�̴��`y��f�|G:zö��.Lo�����x��Ǒ���]�%��&TJ�" #3VsnbU`�%ֽ�-ڹ�һXv�e癨~6
?�3��!�m�OMElm[��b8�
�t۾�^���/�J�
Pļ��]��!��b�@��!�!��+ȕ��>F���s?!3�u'9�O��鏌A,8bX�y#��bd�����l��e�Z��#����g�{34�E��hzxiE�T~7m#sg2�2���&��o��v!:(8��p�wO��F�<�3>2ᶌC<x�rg��z�)���y��>;�M6���9�MR~�lbZa��į�e��ybO�bq+���[t�>1���R��-Y��\,�+�nKJ<K�?h��L��zp��;/MK��Ura��뻫�5j��hm=�����WT͐��'����Sl����+7L�9�휈��π8������8�691��|E������~��n�'e�}�lf�}۹�T���d�qn�〛g�*G�����Z��"c�����g���\a���E������RV�M���:��td8/ȘQ��s�	B�5$-s09��“pN0��'�*���ax%���w0��bf!*�^O�y}b��Y�����cx�� ��v��S�bZ�W��1��z�$C�$�{b��c����OL�e�	"j�Ws�Z��j�n�:�K�f'>&'V�e�F;\K�6�_�'���>�����"fg��<J�(�1��f q���E�_|�XQL�PG���p�Sp���K�7N!F�~+�><[���;��;���c�V~:m�L���&}��wh�L��^�Ef�ӆ���_��}I�4��m`3>Z�J�+�z稚T��q�N:S��?��qѢ���C%Ff�Yn��a^��J��NeD�U�_�b��Ya����f�wG�m̬�y~�|@�"?�5Й���'��=qҊ��<J�t�2��a���L_�WE���If�ApH9	�7iԦ��}6�&h�'L����5��et;ZhW�֛ͫ��2fK��<g��(�!��q"	_��1p[����`ъ�;�;�fD6�	��4�EC�����#3l�Lu_w�q)m�����M�vW!�+m�p�z�W}�N���NH~���U����֖�F�e+ۯ�n�\n��10zi��?�f&	�õi�j@�˵�	b���3ό+�<���p|��]-�23�Ne��c�qb8�l��砀�9�0O�{I�2�Wmv+�t�t�&�F���Vz�]�1=4���8��8`�fOM>��?��GN�l�D���&I�w��{�g��+�P?$���b��t_1���k��H㛾���>:/,tT*��Mu���K���>��+;W
+y��� �Jkgl�m"g�:*�x��&�=��NEV"�&<11��&��᫺�<7�(�\t����q�¢όgJ~06FFpf�5��o�`i[2�:/'0�+�|�ɏ�L�U{��Tq�Fl�q�0;m�|����e��
s;6c3(3L�9�_FUa.R���|�璼���6�M�s1|LM%>d˯�9�����\�?�ڙ�隀��(���隣iYZ19�h�~zݿR@��1�B#y����sŠmˈSi��A�D�HiN%��*$���_X�x�|wW6X��X�%]��ɡ+�D����.�M��11;
���-I,=��C��6��>gӼ�{`F�%J�4}i^�����C�S�V��Ę&�A*f�Qm�v�@�h�d���ͽ��b��`FU1T �9���O
�E~CG���+�m�����;�3�,��]d�rw՜�L�J�e�����Ns4�����[8��0�<q	#9^!=33�L��?0p�Jk$�*e��2X�95�.��C�%%�7qһ����wQS'h6��|���n�/=|�mF��e-Z�zSWy��`�[Oi���g���?��X�r^UOp��wZ�����bg��
��g2�;y��s*~ՙ��5D�Jh*�M�O�X;��Q����	c��\����XQ��!\�MEN����qa�Y����:����f���l�cr%��~
�5���
lr\~0�t�	��Ϧ�Ym]�4��1��M�bb3fYK�Uf�R8�1��,��1O
�V��i��ps)qbf����v�$��RS�����B�կ$���~%��>��f~Y���`�m;%�*�[3=D��<�r�M��^"�MU��ш�k9V�0���v�Wpb:���O�K`��F�R3��`���wCB��+U���m���i�!/�Ӌ�5�>3P�1��6͓���ݎ��lJ�cb��Q�t	�)����LKyXNf���m�+Q5-��x������! H�'\��NNc��k8�Ŏ��U�ZL�9���Gg�Ն�)q�����M���1�� Z�Ӿc|f��~�ĿĠf��qUX)��m�J�8��ޟ�|��c��	��ٞ'q�aq�kg�4���S�[m8��j
�W>m����3gp�?��U��yb�z\qY�TllE��MA����]͍�0z	���N������.[�鉣6�=�Z���w�7��@1*�o?눵�l
�C/���;�pt�&;P����'`��QX0�� &��C|�ӌ�"1����qEI�Fe���h'?��!�1��IQ�K��'�V�i�Ԩ�'_[�ڊ�T�>Q@��ƿü�����J�Ǖ1j��8�p2w��|0̶-�����X���o��#�C��c��w���
�ό�)�&�2��al�MC����_%P�*��?��x���[�a��q����Q~~,1�C���dź�]��C�]����x2��'��<`���S�r��Ut��,��X�w@��/'T�+�{�!��3�<�fx�]{�=��z��6���5����-�bϻ�3l`� �����VYG�hk]Af�]��¶��]�<m�Ģ����K�W�U�~J�٭8�^q�d���c����f�4�r��N��kNL� ��&d�S����W�B0`Y�ͭ9����j�A�3����:b��*X������9Q���^U�g�b�\A��m�ѐ�2Yİb8���:�Z�nփ�pD"�1���v��������ٹ�z�M�,w�E��?T����yJ��t�	n�0ۘ��S;�h��S	�2��wrw��
;y��Q�ef쬬r^	���
жfzq)�v�)�̾��R��Q�)�R�騿a�ݺ@ �c};F��.�Ց�h��z�:yQ�͹0�b�1����c�;���(����~N�и,T��1MK�N+����"�ۥ�&Eu�m�h�<ѧQ��}�q�o�p�r��f�Ln0h��hS�
7!�V�s�.$��Ys�4�45F��VF�Ŷ�Jn|��cf,"m�7�D�ӛ'5�����h>{�.�Y����ѓ�Ȅc�yݘ��ړ�i��?8��)�%�H�-�9���c�(�1�c�[sV��lMFx#�]0b�1	�i��
0�fܦ�Z|Y"#����ST����w�m�`]�C�(L�7Q�&�v��.#���+��q�|WX˸䇫5�����b�>�6�_��,�o����,�v�+-�WY�O#�Lɜ�bp�L�[L׷^��lc�f"�Ԣ�`$���e90��6�pc�Ub=��X��F�	�g�+�uM�����q�q�emC�u��5�iS�Lq3x5X&|�E�؃F'�phڲ�����W�������_R#�h��<�b�X�<M%j��H�:bkwn�ws4��b��q�>�B�sy�
�F�Z:oX�ĉ����Czc���G�:2B��+\�1���w�^c��e��F����x��>(��X	b6b!�x	�.&HIm�^�T�䮝H�PS��bF ����	���+T�@�����U��a)x�Ԙ��ϑ�mQ��.g�\�SO^So�f�&����ap�5��8�|a0�*�n��f�P�WWj]
폍���c�Ϥ�5'�1�b�X ĺ��f1.ۍu:7iڣ9�or�<C�xq�*�O.vP�`�-�	�ǃc~K�c�X��R�2�[̥��M�p�klCe��P��f�J��8�Eګ��!e����^w������ʚ����V�A)�oᜀ��,'�Ԭ�B��,S�h�J�a��&��;�,5�.�N�@�E�8�?��U���ܙ�k~ Tұ�m�ȯNgӴ���W�1<r�t ��L@K��ٿ��5�3��1+}��+��?(��q��ɏġvTJ�s����eu�	�ط|��f�C9M���S���1�/9Հ1v1j����s�ڛgd�
��ɬ��tv��J�	�و��-H,B>P9�lbUS����x��j�:;6��[t���0Ff)��e
�X��x���,A��+Z��j�)#���i^3ȵA�h�,���'��HH�ã!�c���`�����i�Ͻ�E���&	��<�^f���������(OӘ|���۸�pr�g�w��
�dJ"Ңv�I���0�ľ7q,0�S��`_�X�h�j+8(�J���U��?����|I�>�̮��Иf&��&���X7t��t�j�j�*R-�w#a�"WTb,3a��G^�-��ar���Aǎ��i����β��-���f�v�6����f���\}�|�3V����n�՞f��݂ﯙ[�7����
�ǎ��5�g��r����Bn
{*�r\�	�@�bp&�%�-\L|A���l2��m�,9͡�-ɤ���'}��۬��W������a~2��E]�Ց��fwҨf��Mb� �#����K�d��\�N��[iD����BW�lx��|��DDu�>!�*D\o���*O	g��_����X;j��+ ��k�
���F+��e��r	�㘷��/km8J������po��393J�������F�Mb��(��F
z+�xMYrj�b���]�U�I'�'����Z�C�M-���o���%���T��.ADhi��o\�����tZ�������*!~"ܱ��LJA����]&:(_��a��]�e�ʮ�++x�U�\��F-7�2�,C�j~k/s7wl��Lc�lĸ��Ws,����3��01�&��F���s���A�����n�/��8�S��se��ٶ�B"�9��#1p����ˑ*�ZS{���@��v��)�'nN���_^k�A4�
̓�uE��Z����> a3sƦ��L��һIVۗ�o�peùp�:~4��-��PfoiA�}�R&�J�
E#X�s*Tv�fZ��3����O+�Jkp``W��
�P.s��A��aY�C[��F�.&�����x,L",�]��Ā=�>�̟j.��_E���䏧���z��G��Pqn�X5�M5Ʊ���N�b�T�u��]9�G�=�j�8	�H�
�NL�ة���T��peo����ݙ�l�ElMѝc�f��~{{�:��Y�	���� Z֧ōN�_�3���գ�i\��FJW�}1��R%�l0�M>�GW�ݶ%Ti�sѨ:��Rx��f���:�1�0cZ�RA*"�����ik�E��6l�ٻ2��%�J�&T�Qby�Ն
�h����)��c	^��T���q)T,L�p
�QVr?�]Yk�K>ޔ�P�;�p)ґ�k+���:���4��~@8���Wڸ�)W`���0���P�*gԘlg<�a<fh��˺V����,�Isͺd���pbx�k�3�G&I�q��:!�[s�m?��N�QG�=oZ���@v����!|�z����-�>�k�g����Q�C�����>t6���
���s�����u3��)b�Z*�e��ېb��$�k�8�فɗY�䳗l�f`�F0�@�B�x�Xl������P�e�N2�󷊜���Eu�;R��2�UM�;_g 	J�\�ɊNe�t���\L~&�p��Mp��u�ۼ�4W~%���+)M����8�9�]�~D)�]<}e��mk���sW��e�&�8r��{�f&ن��@���+��T�`��?V��Y<.��E�O�8��C̰WR.s6�3F�w��*O�n_`�֯�.G�?�q�a/�ԅ�?3O�5�XE�%�t��>��$}4�J���Km�m��rV�Q�1q��dUh�k4�K�%v����@o�Q�3�t����7q�k1��t�������7+�Z��Q����^���m��>����SHʕ���^�j���*G�M�nl��e�?Ջ@8��#��X-p&��b`E54&�c�J@pf��D1�Bn�a+��a����P�~�s�Oz�E�����4붹B��������r��"i�(���fvj�{�j��5�>�z����[ڳ2�E��N�X��嬫e�E��cO����s6l4���"XK�QZLN��Y�ܩ��qO9][҉(�e���G�t���Q�8f���j�g�v�ˏ-�f�&�Z��ku�$�e_*�����|�7�߉_�!������ƒ'��)ѳ�kӢ	�1�j�>��g���c!�S�{+!/�]C|��Yw1���=D/��s??�:,��ڥ
j��5���,�=���4��WҐ@���6��3�}7YO�2���mV�������}����崗�f�L2b/8��"
\'8�[miN�Xj���A)�:p9��5M�Ma�zQ���t}t !������}���G���o�����55�˕8�kj?Up��i�9)�|K�K@�J�
�Qg����M˦�t�[Rwс)
�Z�[�>X��49�*��3Z~!edb,�P�i�g�j���X>�tdl릴��R�ECc`���uP�=A��Q�Sl
f��k��;90T��]I_�z��>����ԸS�m�k'hwT���6��Е��3/�`����20&2#,1�7�m��B���7�˲	��9$���9�����<@&9�K�GS�A1�;m6<��kM���Q���_q��_�Z��ҽ?P3N��Z~R�-��6�Q�k�J� ��Z;�
[��4|�zZ���9 	�?�&#�>A���_y�KAlA�����&��CG맫esPp:P�^#M-H��n@\�E�Ӂ/o	�z���t:����+\`�vTǥ4}Cm�X)u��ր~3I����řܳPn�(Ɂgkq�v.�&��](?,Cf�̺Ƶ��Ki�(#vf�O1�4�_�}�;�]兕U�]�tVJ6U��-zF���f<b��a#{M�����NV#�{�`�W��B&ɫ��6���-k�������TD��;1t�Z�	�`�"vh=	���LfUZ�Ne��Mh���z�����[ӌoU�ODa�C�]���?WW��<�؟n��5���ޠ�Ư"�Te����ڳfX���x=���>��.���4pU�9[�\¸��RkmҫU�!k���h]jԙ��w��O_r�#aZw�Qi�
�e|5Z��LG���(|�����&����	����bY��V�����ZxJ�T%*��8|�j�������E8/"̰�N�y$��J��Kf9���N&��i�i�ي���{l��y3OR�C��E��`����(Tې��l��7bef��n=���;���c���
�Ø&z���]�1��	�.�O�;\M�XqGA����(Y�iq,ѩ�~��i��#�1��f&:+2��^���W����}J��F7�z<�i�ڴq��J+�zP��z/���A4x쎙���,����i��e
���p��:�-���~l�>7�;|�)~՛��oXb�c��a���T��c��YXht�W"ʶ���s�}B��?����U���]he�44d���8v�3�W�����6���s������('8�ٕ�u'm$�F%G�q�N��[#On�z��*|�eU��m-54����n~�׶%��j��8i�C19���F�ea�x�w@w�U�de8=��D�[�M��'n���tHȆa�.y��j��5v���'�G��Wy�)�T1'�_���u�괶U�{�'kӧ�i�G��.��3�ӳӯO�WΚ��j���,��#�t�_E�nYg�`^34�%*�L�*��U�{�+��?	}�=<M={SӘ��֌8�GO4�~�n�p�6c<R�>D�i�L��Pn�7�ޯA����ʚ�`H�*�MV�'j�fP�鈭���Ķ͢;�<�'��Ƭ�u�T��c�a�h��~%u[�Z�4f��6�%��Ye-�~��G���+�����}{�|�F!<�7�Y��hka�j�X9��*;T8+�����n��g���:9��(���
�OX�K���Ĵ��Dv"3�f���^'>���%7�ȩ�?p��"j�)nz���s2b[b��R�|��*��8�j�TK*^C\MѪҲ�qD�5U�
��H$���0���Sĥ\�P�n��+���Kr\���R��g1GJ��ؔ�T��]^mֹ?�k.m�X�ﲳ��~�聩��Z�Q�_OLVZ^N%+��q5W�튕�홉�r��'�8��?30�*fG\�pt���,����V}ne�aT���j���C�E���"[��M�%�vd���\ĵ��l��~��NEZ�+�V�>w��U�r�*�^b!�2%D���
`L{11{#�s0s��*c�8֩]
oQ�jmk,�[*�8������>�5B�6��U��U?ä���9�]����ղ}�r����۵��#�z/���A+��O�q�U��[���E5:�m����,�۔�R��7���z�T�;ٓ���4��L�p��;�l�Yȍ�M3�Z�u멽����R��k��^��2�p���	��,+��f*�%zu�����l	a���ND#���30�+]��p%�Re��b_��9�GeK�n�������k���ǷHw�et���x��11�n�nģ䐞3����s,�����Q�Ժ�n�����o�+2���8�V��m�+�f$��uW*r>�S>�S>�U>�U�j���_ŕz��ӆj�vME��6É�P#�	8Z�	���N�1�6��Y��'����VOdA4�+s�O�sf[�l-&���E�Ɲ鸩�P�i��<Z�LAa�=�[+[&&&����g�R�e�pجU�#m�!�3d��G�%{r���9��Մ9�q�)
��6}��>��G��\.�Ӿ��\��j��h��<�1e�q"��z��v:z{�ěr&11�sq-�kJse`�'�ړ�O�z�Zؗj�\[��}M`���y�Ա���1<����sp��]�2?�jg��L����ub-��kfs���(�
*eu*t���8���:f3���")&x��E569��<��k�M��5��-�rO�3�Fo/���7�ilJW5�U���	�m�b(�T�wp[L�k�����]�4\)�a���k]l�	}P�L�5��O�+��b�L�Ջr��=`���Ts�|cy㦊�T&�M[�\D �X�W�1�/��*2q;GxYet���X�ˁX�j�u�)nݠ�N���#�p5-�XW�g��
����� ��OC��K9�֝��t���i���E��C��W�]���g����^Z?���7����!�Ki������́**�@�=Kb`��J���x���/z�f��&���+�|�>���W�����?Ot����d�ۧ���;8��E�����E�#���@�Ӡ���ýVUg���6n�;��Y�k��؄f�B'pKX�l��[ 
�����I�Ș��-46�݆�bW»���ӂ+�J�ǒ�#:�m�e+��6�+D�#�e�`��|MېE��5_��6����.k�z��Q���. ��z~"���y�G�/2�ܑ<G<F3Sv?M:�����W���`�=<7ʒ�N����li�i�i�i������/HuA� �tv�i���������e�	P^��X��f�jQiy�h�vjZUJP�W��K}Z��bXg�пi��x�u�����!�|:�+��\�&��k|nF�|m���@���#�#�Ą8�����C}�����e+���]�6"��4�+�V���Gi��ۉJ�%%�r=��r�f���X&��qX��_�M�X�7�LL�8b�H�sZ�0Dc��U�9���Ԯˈ�f��[m�[���<OR�}�Vi��P�ȯ8@�ۛ����1�3Կ��5�~%_�ŏ�˹f�b���c`	m�]��^���&�V�����ԡ�|��%�CW�kt�k�����]��.��?����a,M�,e��D{��?��t�7NZ"�^������ X��Yke�*]��M~�������;�k�,.���f5V|�����Ի�O��B�fo������E�bW��-?"�#��Z��v����1�Rƶ��ʶ����+�k6�Vt�m�`@���tL�	5%v'��.wԤ��
����Um�|C�����e�f�7��r�8��L�!�֬y�R�u?�&31�v'������:cps4���,�B�Ib['%9q4{^�_O��t~Lv�U��L�6�@:x��Q���.t�cY穅f <K�W_���m��L}�kl�W۟Ss�\���R��1116ͳl���/�O��=�g��u���
7M�U�%a��v�Eݪ�
�嗎��Of��'=D��8�[7W���8E�U�Y�.��ktw	��iU�Z�[H�[V�U{᭟���vJۈ e'a��I� ����(4���M8|n������S�,��m��f"�V�*�c
Ai�#l���Gdv�L�nڊ>���c?���?o���R��5-����`��i9g3$�C��nU�Պ؆�"�8�j~��Xa��=E��LA����-Ye�o�)�A4ߣ�W���co9��eÉ�-����:���b���-�,3�����Rt�,]����"���M?�N�.�K>�I�����j('�t�.e��M��W"��&����yP&}��*`��c0k���	ϰu���:���KB�j�Un��[J���Mv��ݱ��M�Z�5}�D��4���4m��5�Z�8�Y�ݻ�H��v�]��{�]]�����Rl�oL����:�J�u�L���
v%ޤQ����ň6ީ�õS9\�Nw=�����1?�)B�Uc� �v`N��A1F�#�m$l�Wƺ���BΚ�S�`��ڤ�q��X��a��.m�с4��pq���c�z�=Es�i�Y�)$u"m]��2����>�S����q5�_�@3i�"s9��3i�m0i�h�t�-��$�t�����A�0�̼�������Mf�
U[�)m�+�p��F�;}����M����AӸj�.b�ݰK�um��}:)Z/M���g]3�ޯ�.��DGdm�kNr˩����8
Ʒ���UO�˺��U[��Z��q�;\�b�`
U���6�U���`��˜Yi��fy�~
�c�Mx]�@��1y�l��D!�1ۃ���M���ho31]�9�=��x�hW�J�t�JԌ�SE���=?��#�C���L�t��L����IX��]r�Ys��&zccS35�_ق:�<��UElg�U>� �,�\�L�-(�I�Ez�v�A�� ��QwS�󴉶��Ү����È��#X��G1�}��Wa���"&����4Y}:m�UbX�-t٩��V���2���%H-�5��rW���g�������v�8]�g�f�~y�22N�.-+z�ePk%��	�aW�h,��?Ov%�ҩT&Z���Y�)8H�����M2�bU�2pP#����)Nܫ���|Hδ3RPp�pf 9��C�٦M�	�?�+��6�_L��=3<ƚ��x����S
��<N '��6ރ��Dfg��Sa���l]˭]���i/����b�v��.�m��y�ѫm�9�t�e�>��߾wm3/>S
;d͠y�Cc��?'�Eڸ�:g�c�#����q�����|�ӕ��Ɍ�Ã�z��}m����Q������Et��Ԩ5T�#�j���n��G&T1�;��f��&�;As@cq2�V�v�䬟�hH��eĨ��ͯ��F�h��Q���z3�1U����
�Q�fwS�?}�B�q>XU>r%�X0�:x?�=�2؝�^%C���t���j��WQ���A���5���c��Av���t�[#�U��r�z�.sh���o�����.<i�ݨ;�ٮ��ʴ��>�
�������=8���'��%��٪_���,(��fz}ym����+�v�=��>��A3)��p���F���Y��)(��[��;rj�SP��>�3Kem����7��"M-aF�n�P3dD;І�X��Bk�����J�����<-J�%q��7;�FٜA��d]UN8����Gl�8��C}�0
���N@�y��W9�D�dn��)0�/��h:�o=4Z}��ыi'�c��ϰ�]x�j�26��?)�87�?cG���v�O����I����Qp�������A��O��}}���{y�d�d�)��[�ծ;t��:hWm0�3��a�@z���8���A�G�?4�=�v{4��A57���V�����r��w���[Q�"���EVК��vΤ�W��L!��l^�c����(^�8��\��7ڮX᭥�U�Q�L�"Q�-f�IJ�+?6L.
���R1�g�/��J�ǩ�
�Gs����>�J���ј�� IV�O�e��t��j����r�k?�A�&�!9=*��O�E���GKh�e�b���O���Y`
Y��`��l��z�^�OHPު��ıɋ����6>Gh�Ki������3�^��'��d�o��Qm����`�̫��&#`�Sz��倖��k�f��N�-�wT}�/f
w��d�)L�]�*��]Gxwj�Z�O�Y�����ŻO��t
�Ghm��flbe�x6ls��-�%�[SS;n�q^��f5�X�����os�1�n$m��k3����`���bkoLD�&_7��Jï�,"w �f�r�!��sDZ[�Y�Ozε5���ο]�?5�k>�z��ڱ�����6��%y-=GJ+תUc��[�tC����M�x�q�u�����mAnw���ި��v�m���L��s�D��)�8z����E���c���Ҙmj��U��E�6�5-���M#��8�s8�V�5]�-/gl�M�}8r��QQ��lAq�X�C���6�؊3\Ud�*�؋�X��>��
I0n+�k�|OBLô}�$�qs�9��pv����aL)����d�L��=�030Lĵ�j�
U^���,��6�խ�5$q���m�m�U�Ӱ3mZ4+P�c~����mx{�E>U��َ�&=���N��;��m��q�0C�=11+ibv�!��56�����(�WD��<:���??�t��[/���յN�G�����c8�2�Zuab+�S���[��[wdz���Sv���\��CTS�;��J[_Ϧ��b%�T�F@ q���MW��!�0kTe�+L��z������
J�F���b �͌|C�(�m~���>�����L�� �'���>3��3�`��r4��[�,�A޻uZm-zn`�N��6����My��4�MK�5
��FۘD����ϳ&n04�BDș�S��jq���ffg33Nj�`��=�u�j�ϫ����n|.�������1�`��S�mv9��U���>�Y��V震��P��wm�öV�@KU��C)rd�uB³S_�4@�|
�!ψq���㊍~� ��`>�=�"�`�`���1�"r���L��OŃ��%���>��1o��e
���H
��6�\����G�{�ǽc{1�L��,�z�����~ �G����,���^���]mO�ܭ����el�6��������ڰݾ[uA�b�Pq��ߴ�a���=����1��#y��T�tc��� �a��H����]0�f�v�J���B�
��GSd���� ��{��һ�oh�J��q�����	۳h���X|���ڠ��+9	�p�j��a1�~F̶ ��	>W��:��5v7�$����ɇ�+��� �7�r��0{L>��t{G��x����� ���gh��xa����¤ӏԞe���{{c��p�~�<��p��?*}�����*��
%�
�Ч�t�	�	���P8�O�O�~&ff�f7��5o�Ϯp8�Qm�p���m^��a�r�O����:`�=���~�"��X����kW)��O�Ӊ���.�(�̘[=�V7O��>ۆp�u�f_���:'/0f���~�}ؘ�:��x���a<�9�鞂`<��NL�?0A���=,]��u�{G�a���P���T2�y���=u����>%>'���<���̯�Q���}���3���y�!�����}������{j�|z�\Ā��{�e��.��}�b�0jrO�4��~�a���t,���i�Vc���T��C�s/�3����y��	�\��F�zq��_��:����ڱ���t#lo`ھٟ�K<�־L>:a�q�����{1��yh�{_Ƣ�MB%,P����'��!�<�禜���pD?԰aȂ�^+��=�2`�|���%����#y�4�	33-h:i�p�a���='��o1z����-h����W����=�i棔�%t�6��4c7����%�n�0�f��FB�5�k�p�//O�3�`t�Z��DKJ�H���� ����P���g�C�<�mr��(͝5^>�T�E�x����~�����O���{@��ӎI������*�c��U��a�#�e?d������(ɖ}��2�MH�*�
"�3/~奥c����0/1�C簮`�}�`��m��/�:`��|�AZ�\�f~zz�,�LM/�OMP�1�b4͆Dz��a�:��۞=��O���{H�Aց�㏉1�G^L^���`�O-
�r0{W�K�à�Ӟ�U�K>�n���������Y{m��ĩ�N1��eˑ�#�<	�^� =5�z%X���8=�����Bg|�.fJ�q<���.5?���o3̥�����t_D0{�3�r!���D�:�F�Ly���#�*�z��4\0���Ǵ��_��[�����y�鼓(����=eq�	&5e[+����y�6��MB�����A�gu��������	����T�O�2���P,Y��fF&�ɕ}�����u�z/�:���|�s�O���6�!�"|3����?�ct�d����q��0u��K
�yͤ��%�����̳�>�+�������d��.]���R@�J�ll*=��(u������Ma�������$A3*��\�~��|'E�W���+����|��-����
#�b��������u�{j�>�ϱ~Ζ}�����:7A�M����j}�QZ٨��@q�xx0}�Mp�_�&:j��^���-؟��5!1 0@AQ"2Pa�q��������B`p�����	?���s�YX����l)�h=喊��s/���l����*��_w�Jb�~���A��E��#��gl�EЮ{xj��:�=�����N��^�O��ͅ��)x�{��c�y���,�8����NE���kEEn�w�g��G�fs�F��Ns�/��Q�-�O-��-��K�J�Z�w�s��B��Kt(4��6���η��+�5�x��=�'��ۂ�AW��,'�79yҲ��2=am�1G��Af�R���<B�9QB�!�5��-�z�֋�V��j��]���#�^����	B�v=�C�S*�{2�[C�Q��������z.PSB��Š���Ƌ�c}4�G���̣}��pz7�c�S�жK��.s�K���Kgq[g-ZbPryP��AmW��[-�G�KC��Æ��#��l���l��5�f�D-eZ�^��w����:f��r�,]0�LKͿC���p�I��|�N����I�/}JA�=���8����X��r��q�V��΅-[8���y\j�Lƙ�
�1/��7#��pr?U?y�gY.�zerGoU�I��C�c�9��acgid['�j�E���Ɇg�+-;������U�W�2F
��S�88T�#�?S�6Z��x3��YY]d�AfZ�V{Ƣ��`0?���ab����&��1Ӡ�hB�����T�Ӿ{F�W�X�|�e�E�r���.��3����,L�:��0�0����Yh��J�
G1c��:*�|l��t�_%�[x�(b0�z�������#��oh�h���ж��u�>�1`�v����c�qM�mB��B�8�W�]��S��&!ȴ,;i"�[1fTFaƽJ#�ܠ�aH�|��rBBBE1vr��m�Ym���ZLecG�/:LS�d�e�Z��1v���"λ��X�QC�˫���f#��TP��ҦZ�,����Ifu�������b1��(���U�F�=+���!���B�k}��)�SR��-�Gt��<헆q�F	��-��TU�U��c���ԟ>B�%�Rpv�-fWF��;��
>4!#r_Z�P��a��!
P���2�܋/�#��w���(�/�L�B�����B����l���t/�hBر�����S,Y������#���s_��%������a�����.ϝd|���E����1��C�b��ʯ_�B��2���!H���e�&�aS�F��^�dP����'��ayT��T)����E��Cx^4���=2q��H�(1�n�YiأUN91U��b�8+��ɕ�b��#����r��,��\w�
\���G�W��S��J��m}<�5y
zA9dt+����]���qwz/��X�p\nG=Qw��`�S�Cӯ�s�]I�rPrmS�vq%G����&V�OB�
a\.�gϯ�-°�dCޱi�e��.,c���x
}�ȷ��9
�W�S��k��}�g�HT�̺��/�C�1)?����Ա�O����j
�םN��aE�x�_+�ළ���U3�Жϙ�LR�/���r-��~{��R|�X�80ܸ�2���\�)��/R�]����0�1�� ��,qc඗ճ���^��
���&;���hЧ�?�M+���/�1v_����.o#-��8���&���Ǎ.��4qPI��"�8b1p�(�|jZ�FY-���{�t�)�.�b]�?�ȻK�e}�2�E���T��Wop�ȋ�V(C�k�b����8-��1j�۹�2�+��]�;Ô�g.�.JM�j�
�t�l�?��_qQq���v+�-����zkF�0�w�i��s?L��qz(Rڱ�C�C��\F3���&�|�}<�-y���w㒌�s���.�D<���ő��j�2�V����Y���wt1P�g�04�Q�a�>��_Qv�席c�N]L]����ث9���:��2�te�£s����&+��1nw���n���E')z��s��U����EDr]hԷ�b�h����V_�/���*z��UC��rYC�B�T��6�ĺ�����Xt*�ux���a�<�~=�ċ�.��Ũ�M�?𷑏��~[/��'!1AQaq��������� ��??4-41{q�Wlnw�[��w��ߤ�V��	��`��N��DŽ����κ 胿��H��*�4��ru�_��2s��)@�$L�.fqz>Y���;���.�l���	�5�+��G�.$Y���'#k���@)�"f�XL�&�LH�A	3F@`�Q5�F���z�E�"��:����3��Pp�[�^����SBLn���#FV�;�`*�
�=���x�Sa�j������@�����ѧ
Xeߜ�n?��T��T)]~tS�E��r���zB`S5פ���C����@}�Ǯ�Yd�	7�����j�l�p�P�Y�M��
y�A�pn��xoA[�u7!"�����޵N�"��*3S�ժ�X��X���tk�Kb��"�\D��i��K�\�� ������HI�KW�dMMZ�&2����([�����Ϸ�Z��<���|�~�Vϙ�W
"�z���8�.��Q����_D���JtN���G�J�&��N�|=��J���I6�#o��>��D��(�W�B
6Q�*�Q�t
L?W��
��S��sH���r� g��PT��TɨLc4"�
�x��cc>�o[�LYZ��i�B���`ĺa{
K�NΝ�i����w����̡恊�!T���]� ��=#b`h��k5��8].��Z^���7���̂+S�I[��?bW���h�લ��X�Tb�H�qY�R��/+TT?�����И���>������,����<d!v����r�z 2��#���gg:�Ŋ🎞�f�)�D>.���\���L/[�E�JE�a�MO���2�P5���<*�{`6��-Q��F�Q,�˧r}?p4y��L�@%�|7!�+����Lc�i*���`;��xS�����������ӓkU��h��!2a�u�_a4����UP&�&�	|�D��g���P�0B��G'�F�v]'��
qj�E��R}��B�Ծ
cMq��FV9YMF���P�i
��]ԋ ����լ%M�]O��h���KUR�|��(7�T�ݦ%b3,@��R�%L�
K!�CH��е�ܯ�5M�֥�7�f6Q�H
(
cj�J*�P�6�_J�z�cܶ_�y��X��8���������@.
��e�t��E�&��d!ևD��E߀>��� �KK;*�CgΒg�c��~\O�9P�W,տ0�����*�$kj����}b����ڈ0M��P��Q�D�S��_07��5���Ъ�~yFR�Q�2�����"��n�jq{C�bW8��A[N"�&6��'�)xD�D�h쫆��Bt��\��)$A��8�8��zH�p.�(�F}Jt˹5[֬:���+ם�ϒ_`�QZ�U%v#�n�@Ƿ��r�SS�+��e�����R�)v
ty�<WΆ��c���T�}�O�b���~j<ꘔ�~�h�ۃd�7\.�4�<��OS)OԘO���J�QԵɀ"ʚ6��Bq���VC�V=�c'G��J��؆4+'�B�)�I.��>r��9�k�=��Ǥ5�tѨsC{�j'd;�/�1(��� �*�Hi����
Ű˿f���{
h�e��r�t7�ʶB
��K!50��]��I���Y�;(2�H"�7M�q���N�e5��툝m�qT0-�.kݣ��d|�a�r@%$h�!Yj���}Vf#j��_�\�+��(��� "̇ߪ̖�q��~�~�A(����B��g) �%��Y��em����j��<�8�	��)���Z�H����6,\fE�}��ku�!%���
��g�>'X,�`lL+�[Sy�"4UL��B��	��R�2_�Z�%/��խ��F�8߫
�8
�D��,"z�N
p�m��ʁe���mO}���*ˤ�+� ����(�Xn��9o���V�������҆=F*�0�<,(�X҅���j�����k�Ev���d}E$�u�XT@ľR'��k��A	��[F�I�h����-{�e\�#�2��Qʝ����Eh���c�$t�A�VS`,�6J!����Qq�>8쳲"�G�@�#e9o~����t��\�H|�ø�Z��U����Ϳ��)W�
M��A��bDJ�Z�t��T�M�t!�4�]?�Y1�*�Hb�W�B$�<������..
)b�Q>��xt�3�lc�[BkN�kPC=����:fR�Q3z��@湡ۥ�y2��C=o�
�XD�Gn�5�wY��Q|j8�������!�
��ou�P����sj�ɭ�G�n=�L>`��!
X��4L{����8�٢CS{��!��,m9��&
���<aZ
��c4���^�)�m�
���j��q�hw�9�tVQ��������E�.����`�K��/‹DChTVb"�V��ΉU�{0}>�M� ,1��&ASo�#	O���&�GO.��$�*�kk�ρ:�C:���
EM%21�v�╋G@����q�=�J�?�^)
�`�h��ކG����5#˷�3x�$���B�1�f�����ôa,�58f�p��ĚMž�Tk����'�]���/��o>;�e	(au@��������?)�u7�N��E�
����$��0c$�jtG
��.�Կ�����2�`�����k�WF^�:j�H�Ap�r�\U-6"%m�Nz�.�MmX�3� Ι;�y?)�/A
�J|}�Sk4f�^�� T�
���Ç�U���ޞc�t`�&��9F�D��*�P��I`
U����C'��d�.���C��*t�gb�X���lW���`%W�N����zE�&5|a��2�lw
�d���E%B��s�a�@)10'�W���p��KF�BV�D�^+�L������zC����hz�G�˵(v���+�`w�
ۇ;����
y@�8�yYd�(����?fC��Q)�ɪ���[�R��R��sH�O���7�3��݁��mg��p�28,�~�ڢ"
(�SMU�����)�[6�c�v)��w_,�����ޣE�
�	��|��Z
��&]v�ޑA�2s��;��4_3�ˈ�1��Wdߏ���:�v�ͪ�-�T��H��灋�K-�s���y.�%R`��(���|�:EU"I5�����:��bMW�|�hNJp���
�.�N�P A�5i�G=�a05�Y�g{�~�<$��+�*6���%=��+M�6���F�`Dh�n��6��h�!
�|�r�t�+*M"��W���rD~�������T*�	�dK�c���wl�bO=i�e����xѳi�\o��@*Z��X�Ƞ7XiύEӹ�[�f2��鍯��ۥO���E��s��Nڟ)���]��A"�b	{�'g��Tl�F�S�\�8;��g��`�HI]wM�0���"0T��C�T	�X�#��u���
����攪+^��Y��pe�o�
�8���@L���^2��\���}=M�+�v1^i\}���T5�8��d��a��d���w���C
噯7�ůZ"�R�~�e7�+�<��ZL�t�)�'��,�K
f��A���}<�hZ�a6�pE{a��]i�A�����5Ks�S���r
B�Ff_Ϫ�F�4
�Bs�{�ƨ^�[��JE)p�h�pw?af�kB"�mZ2E�m�b��J�Y/���#hE��j5ӕ�3�Y�EGYI��8��./uKZ�L�Z�4B�p�wU�(P���#t�k��6�$>�F���;&m/��7'o�ƱQ�	�׶	�\���dS0sDž��$�x�@.-�މ����9���WF�gD��)֝-C���=�&�:8dxn���g��T�`�+�f�I_~�wқ@Q~��Ƣ麠���3�$r	4d�\��ZUp��E������ G`=_W6�h�6�]U�����@5[�"��D����uQ��%R���GlHSA�l\f��V^<��d�8��Ն�`�+�A6x�7�	
E�L���60�q���b=C��,�N�^'cfP���x��a����~-tq7f��ӈ��0�L��
ۺ]� �D��W�o�l�gp%�(�鬯z�ķ�&��[�gF��~�F��~p]�v��{#F��.�G���!~0Hl��ӵ%�!�]P-Z�D5I��o���LU\,N��U��
��lIJO�K�EbX����(��eƪ-7k**.
5��j>Àd�}}P�\P��PKɟr�z�R�m�/���z�`;&L�Y>;Op`Ղ"��g(��%Mrq,�8­4�^$��$��D�,��f��u0��sz�b
�<
!d�$�#�$�iL��a�0�ézB`�a�����/48�:�ʸṸKY!AF�3��babq�_H���
>C��6���Bu�\V���	ӑ$E��JL��e�	4H�q@���*��_�nu��W���DD����c� c�e9�4#G�t��EU
�-�}������?FL"�mۈ�S�Т!�T�)�-J6Ȟ�@�keK��v�Z����(��w����)�w*�s�CRP��[5�B�]�z��ND]:A5��ɳ�&:PU‚�	���>�>E��e����D\8�l��}�%TB����v�`���bD�by������Һ^|�{U+a��a�_L�^NbD����F�@�5�Ix�.tq��Fȅ���Q^�ё�F8�Hа0��Y��Lx��-ó̍ՈվJ�Wm^v�����N���7�Va����7� UA
�Ӂ;$
�*-��`o�Ȯ�Pk����]ʠj%�6���踋�w>�1'`f҆�y�i2B�[ �8�V�V�qy�K��][�������d�G��!Vw��v�6c��/�	*e	Czg�PD�";^�#��-����	��v'k@�)����̀#-,䑮$��|��M]EͶ�������Bw�A��hL6��쏬C޸�����U90��D�@���	�
��r�C����@�$��Q��)#�?�sT�����@չ&�8�W@M�I���{�Sꔭ��v�i44v&C�����!�"״��%���'|�kd����GP͸bO!��r�u҄?�����
hhU���B��.D���;�T�]v�T���u_m ��g����[�1�F�	�܁3C��!������<Q�Sv9�܍��YHM:�8��I2��cc@3B��kSH¬i���8Դ!_DTQ�����c�p/�m)�V)A
6@��9�K�+�B2TIG^5Y^�ʞ�
Z��
?�!�FG��g�2��C`�U�jʷR�F����� �h*0���Դ�[R�%'�Z��i
P�(��é�w�g�yGgm�w^����QXB����v�xT�׬	����Q�=��
t�a7��l��4���c����WGM[�bqx�˨�`�O|�׺�EǓm�jm\�W����oA�q�0 .�
$�����f9��4�@&��[�P ��4����%W��v���ja���
� z�J��5LH!�
��'<��;���N[P���?��u����
��:�c+�)����6Jg��ڍ=,�O�q;/�T/��gKib����7�v�Q������w����|	��q2��
�̔���t3�z[)2P@�����H3Dle�"Jm��Ʉשˇ�hك��X��S`��/�{��R�{�	H�����@X����&�IBK��4�X3Q[����qc(,A���Q�t_��nR�����;����?�-�hl0���o����\Θ ���N��i�,F���xT�������53_�}�@	�(4M�R��&�q
(h��$�n�"#N]Kr�����5�#�	����'1�;Dž�_��T����K�|��f��Wʼn����GW5�a{4�y���<
�5Jg���K���Co6�5n+/��b��5���T�\HU��a�E�6�&o�W0��R�)���h����ɏ�(E����]+S%�.k��U^5�ՂE}���e~rH���4Hs��T�����
�"9�e�T�Oj�|��%h�a�ՙ��-��O��o��`��	�?��|V�MT�fP�����Z\�h:�C
W��y5�g��O��(���k��h�"�I�-&�B�N/ܜ�F�$�����_u����͉������^T/s��p��#Ol~���i�vH�\��j���r�	@
� ����d�U|�
�5��p.]�߼bCE!����B+�H4'k^<OQ�Uӯ���DPoJև5O�ϙj�%�Dt�Q������-�
c�P)d�\�V:"X�����eN̽��H�S�{8�,��lB����G�Rs���Ky�::��\�.�vjv��A!����b�+֠�'��G��؇�
����6`SF�����
����B�l
w������gJ���e]Z�D�������/i��.�mq��%��_ᘟ��e�"�-�b�� ���L�s��.~�T�F�LԞ�~7�Q�o�Wo�O�eX��{d�T�����,�{���L
�t�)�M#���ު�D�G	:;���Ʋ�/y��*����m���I~n
t�}�"�+)�9�ve)�h�'������&6 mk�.��#���C�L�"��TF �C����hDkH����Z��e�H:m3��n�S�D�^��a�(��.����"��6&���y�!�F�u�Lr0�O��+Su����Ua������,�l��(O+�r@z��lPL���X���	�m���i�(d"w#�!	���\}����2��)r`��Lw�F =~���}��t��(�Ǿ�0��(��>a%�����¼#=fCVzH[FY|�����vUiW| m悌�yr)_�
�ER��@��.9*28�*�ʊh���q�c��He(޴?T��@�HӘ6zK��@�ROi��7�c�q�,�$��u��v�T��Ҡ	��7G��+g�ah�*%(�$ܲ�*F���*�T�၍��:��&>s���q���u�аjh��5`�B��/��7�����R��J�z�]�C�E*���}@��crAvqy��Z"��!��1�Vo^
m��;M v��
�8ԑ�t�C�X�L1�*�ԝ�hӋ>ğ"���=�Kր��R��jλe�� ��	Bt�Dp���5��47�[<�N0VZ��2��|9�U�5�U�κ��Y ;5��>e6n��q��}��(��5���� �5~�s��
�@:����ߐ�������S5�'�3Y���E�����tB��UZ��MZ���q��(p�?#W���P
O�����K*�3_~��Ga+�����q���2��dI��]^��Α�yD�L��n�`>��cA�

&B9e>���i��8.�4��_����a��0��|ۡͩd@��0+�a��D
�E�;�b!MS����:6z�	���]���.,w��bTRJ�t���Fo~��CF�t����%���s����xa��J��24���Qu#v�
[��6
���2�����c�*���p�'�u\QDQ'9E�4g��E>N٫
���'�2����f���sD�*Qqm��OU���P�=ȱ"�|8�ұ{�/�o#i�I ��Xn���9
��R��/l���W�p5E<��b\O���Y���p�,* \���rh0��}&�&��_��&XI�0�N��Bv�
T:�%�(�J\��?S�߿�u�k��@�o���@�)�*�f[mi���
<M��1�!���K�a��Oq8�b8b�V�U��;;t�
ﵮzr�]uą��Bi7-߂��p|�i���T�	f�MXŎ�qU�aQ�@�{�D�х$$���!�$�� `�;@��|���L�*�LdIқ����D���i�.i[�ݳ�+�p�:�/��ب�I�c�A\r2���$��/�-ԃ*�����ul��r����Q7)Z�O�F`�Y�T�&�d.��K�(��C��x�oxk��ki��l�1�:3@+���w���Q�����i�v0Dr/#lW��Q1��h�|����x'Z������BDV��~�>���O�#
�!ܾ
�:��u
⣠��)�4P�ơ��{�wu��>U01��`�ØHk����s�@B��R0�-2u�Ӻ�.{�J.��*�N�קܝ;y=�"=8�@��t�p�{􇱷S�-ڿ��5�8�
8
���V�0oi���;�EVASuz��C0L�#�,�',��t�e �����I4�`���Z�v`
�pYOh��$�����ˠ�I�\0
J�%�������,��`�N�ji,)�0�����
P&S��b��n<:�̅cv�l�'�x����ȧ�������QW\\�ܥ��q2
H'/F_��a
}�B���������D��i^�i[����l<�/����I�?�*�BVqo���IV�$%טNl&��U��w[��t��.]���R0�4��}v�q���1V���ò����\�	$�0���ή�ʄ�~&,�i�I��(xF�9_��bK�,7#Ꚗ6���c��j���vx�X�DI���N`�53I�4��2��t�S���&�uJ�RxV�n	��+9[p��q�VV��:����\c{���Z��>bP����*�����R�*܈�@	�f,=3ΡS����Y,vz)��A#O�t����}s`ԓPz��oP�$��Cn�U�]0�`�sC�Ux^4�r�1z��zƸǪ��̻�ls�QG�h��FVZ'3;�J���k/n�2�-R��wo�Y�"0��%[M�H�$@�#@au��%��TMmܤr�4I��
�ˑA�*����`�u��󊈲�Lp?Db��ty�͏W� �7�dǴ���{�5��=�Pp�ε6�k�*.6S�ڿ`�j�ru��M�uF��|ٖ���.�{�G��r�ɟ�+� ���\CZ���0;L��V�]���1
"$W�Ac��V*����K��6^��p]��_���T�Y���cr�2z/ؙ��G��<�24[����_:
��D��X=y�󣬤��d�6Hp�����b�/M��(��/�K�Z0B?l�Q�Mg�O��O�K���zxb�Rtas�T��Q���<nPx��a��]g���Vk
��yT�e�c�!����؎Vڀ$��4��7�&�q�b�?���Q�f�SoU��
E�EG�E9>���ս���@?蚣��;�]e�z���-��'�Fu[�	V�8���j��f���R�rb�N���#Xf�U�NC�L��2j��'{�f��:�%�4TQh�оj'��T�_��;�T^1,0Ϣ��P�*�߿��:m�`Zh���P�5�~���Z���M���3�����"X�"D�����r�f��qU��+��NK[~vOެ~�ɐZ�K�P���2��✃��5��+�\����)拍-��@i@�6n
�7i�A��tV
--�F�i�
�0�]�?��o�+B08�d�Ҕ�	��f��e���MWܞ��S��(����Q��
�Kl���I]���
�5�Q�B@Q�L� Dʀ$��<�A��R��ʢ�L*�b�-
Z� P\:����˗��iB�����j��\�����qҮ�֪0ͯ��=_���O�<����i@
�_B�&��q�pv����1��x�Q?�O���>��1җ1��5��c�~-U?��)h^3m7V��������S�D�A�n��2���,���7~~K��?I��tp����k�S�X����W"��G��~�x:����sE�
\����!j��]\��I(
GM�3׮�!
��6���C�>��μ%x���8%��6+��1Mk�A����>ٗ^��9}t	�SA]��c4t0�5
����u�)M:�[��~c�Z
S^�G
�r�A<U5���>���,?`ʿ<�]��|	���Kv&�p;�V����t�!	����A�Y�����b���gM�]�OF憽ֆ�u��)��Ә���Ib*rDH��
��Sc�A���Ԭ9}�*Gƈh�M�Wop4~�1w*��1�B�k��q�ȅ	���b�g���紧�Z �_%~ӆU���:'�[�����2�ש%H��\M�<�tT
���f�[#��0����y
���ѥ��o�#K�eU=���"�n��K#��I2pA�M�Q�p�+��0��w!]]�(�A����o��1��!�r_�X���<A:&̓�6��w�t�¹+<}z�@Rt�-G��
d����_�0�1(��Fo�64���/�h	b���	������m@ʣ�w���������s�`Π�Eî���K�%N
�1�W��Li��\Fc��)㡛g2fc�3t�V��P)��o��G�.n�>�m�̦̽>�z
�w�wg��P�	J�2>`�eOz�y��/"��Y��AD-J���A�(��vū�k��셍չ�T7�B�޺I�3C`Ay5*��*Xi��t
�����Rؔ��S9.�cn��gίW�GH/60	kv��5P]�@��o�|��v��~NS3��*���4[��ya8:l�
{����Ȕ�xC�U�|I0����MXN��`k����X ��§�/Ҟ#0�$t� b&&����BP1����ìN�g���pQX7�g��JG+�g`�2���
�j�舘���娀'`b�+Oj[/:���였5	���m�3���@i��VHS�,��+���謢�2+~���(��Te��."|`�'CF�&RH�a}H9�6|�$�;�K�����7jD�0`u	�DS�~�3���|0p��H�.�k����bAdFʻ�b���
��&��B�Ҷ�`Wu\q�)]�^��'֊���� @y�nޱ��^!T�Jv�t`�`U͂�8eHpx'�y5���eU�%?�4�^�q/i�K�����V���l{d�֠��:_��<�ʼ��}�G)vaa��Б.�T�#HP�7Seǣ�L�S�qyLxYx뱸����`����u����T=i���u'��&�;o</���
.�~�GBe$p�
z7-����0�r��_&��խLw�/D94S1 �i���s�x��n����%�Ius��f"�p��(S��ߤQ
f� oy�YՍ�@Z�X�O�J�n�p=��"��T�t�I�u���̴p�oƦ��4a�M�j��YM��:8�l�2f�T�&Y�#��٠�l7(]N�d�,l
e����D�G�*�D��Z�&/����Ҁ�%�}#M���pK�϶}Xv���1�ʵ!=�\WX�j͋�j6�)|���Ƙ�C��b��0W�Z��;�
H6S�^�"��%�6��X�2"`���Ĕ�$��Rt,��Z��rC��S��a��d�n0�O<���S��� MCȦ�#h�i����ǿ�\7�Sqz?Fܨ�k�0�JX~i�������*�Q@e�&4�q�ĩ��РC�kGH�w�t�]�D��L��M��v�Q'�I����CfDv
!����J�b���q(-'�q-	Z�X����IZ�
8t�hl�)_8
��~��(�ED4`��f�GJ�*�������|Ɏ���R���iA���^Md�]���q|D�[qXY��z��j�T����������PW`&+�������D�l�f���G��p�<3K��ף��G�vz����{�b��6�s~,�2�|��D�6Ԕu;nX��Y�3�}cַU��Qj�����-,ڋ�D�U.�(]P
8Z�J"������<��!g��q�|~(�0_7N:�f.A8__�'QCZ�
�T��6����)_-�߸.��������*}���>�x}c��Q���0�>��;�sa�A6"�D�"��]ja�9���0`��.*�A!��z�q@",C6S�)|��fu(F�l`�j��2Y�V]�P��φ� 4H�Ū�O�V�(0=F9-R_j�� yڎ����d�+u�q.ȷ�1F�p`�\@	q�>;���_�Bcm���ݚ_�8����?kpf��)�}�E����G���:`q2��q���k5
���+�	ݸ��ݒ�xb��H��z�1���T%���+�z�9#�����
%(Zo�4��F4���}��,:Dϩ��8���x�m?���.%���#�Rt��V
�Car�֫��}�`�2�8�k6uu�c#	���(IP��	�O��Œ	�/�UX4c��
Xx�ƉS#���Z�ߥ�ZS.����)3�SB�/IF�S\�B5���*wd��t��׬��&���b�j&�� ��-�W!Ȕxr����,��0�#&d��
c�f����m�2�Z|�( k�@P��R��f-�K�B#�H�Aob(��o�U�����Rs`aKA�7�K::Zx��Ͱ�YU�����]vւ�b0��U��&���va�ߢ�d�)N!h���l}�8|)�

�c�$J��%�{ש��Z��˶� ,FF$�67��j]U��g�:a���5�# �DU��kK�j��U\gB&���K:�'�:܁�pШ�oY�\�Oy���3���V���G+���	�r1�,V�k�=�pu<N��@f�8T%�'._�jJ�
�:��
�_QP�3�G��p���?�|޲�sCL��Fb�(�g�c[?�!O"0 ��مm��>��q?�f��"\q!C�	=�ܟTQ��
Jѝ2	�E��0x�''G\��K&�n�&)��1�C�Ѝ�D��~v،x���p}68�J���	�t_�����We�

�n8
Zz�S9d�PYK�cE�*`|��Z��ef��5ȫ
U���b26�G���F�V���2T#W�@
�G�"A������tN�Z/�PoT:&�S���"j��"L#a�{���mͧݫk�I�\�'�,雯CX!�l{[>V�2�5_��"��S_����&:�[-^9R�D�7��p��f�r��`zQ7��2RjUvz��.w�io�%�J�>gfv�s=�0���W����<0��y4)�v�Av�j'��47[�
ּl1�<�P&p�v|�o���
��~Q�c����4?I�2L�n{ѵ{G6�����/XhP�(�)'c�6�a��O0F�m�'jQ���������Ŋ��DO-���%�c��tU��D6}��N��
�\��s��8��?r��3�S�ǔ�W�E8]�����G��G�*d��NI�/J��BPZ��ع�v֡ɨk���~#�Ũ�J[��	�(�;�mq�I T�+�,x�p��I>��:�J�!`��	�n�� к8h�v�]Ҭ&0���~d�b8; l�b�FVf䥢��&sƩ�u�Ԉn��b-ə�v��%\1}ް�8�Avf��V{��
x6���']bR��P�:�:���W�b�����,���\
��Q ����Ӓ`�]!�~��;Bz�o��
�4�Wk�w@]�����*9��4
k�g�7X+рH���2�6o�V>�����Aѓ�^��$+��B��@��Y�'��h\@S��<:�GvQ�bPw(kV���Me��9u�z��
؏��Ҍcr)&ƫ��/�h�@4.�GB��&�Z"Zɠ�eA��"�u�.^�#l Ð�Pm5���ګ6��
��m�H�1�#����`H ��;1<;U�x��;�on��
8��`���7>�V��I�J�)_&��x`^HT����Hv���>Iz|,��wQ���iս^�Z��l(������v�i*hta ,v�%*9�yw����e�H��M��o2�����8���Y/����Q�^}p_��?~�'Ʌ��O��vӺA�"���^�y�1�٭EWA�-^�ѐi����F+AGH�U+�-1�41��ޠ�"-b
���ڍ�>J����(Q�"Z��!�)E�f��|�6����Q�6p���c�m�aj<&(s7��|�����vm|��{jj��q�Cm]�Na��	]w��^�a�|��2��RЌ�������m)���|a�ZFݴhj\���D��Sa����+H��G����~C��xjC���N¸�ʃ>����8�S�+�d�
������6�eI3U�Ch.�"�
��eB3&�[d�R�0ǻ? W/�z\��<_�K�p�+�0�y
�S�5�D��,�/������!�6��5�
���=�o�<p'ǥ�)���O��'�w�z�CG��Q�Vi�r���{��J�����|��8�+R	,��M�u֧�Tzɽ�d�#�nX�2շq�z9>:@�1"�pA�&�š܂|���\%E�X�%!�4�3���p���c�"Qڼ&��M�:����'d
y�{r���Q#���쉪 B�f��F���416��M��X�	�|MX��2>��9>�݌]g�`BDW�O���qx˄�������.�^j
�.5�}�1WE1�Qb���-C����X��,�n�jqYn)X�g2���{(8�*[��N`�
G�ⰌJ�j��\k�'�/�ĶI6�P���&1�N
�X�O�C�u$��Eu5��-����b\V�A�Ъ�p�U>�4�6m����b�ə���5
e��\�*�$-
c�Pa�FGPg�w�Q��{MQ�z�v@���'��j���|A�+����֢.;�9�i	�F���e0$+���6T��4`��~g#R��4�\�U�\*��K�=�j��C���[<eڹ;�E*�O�KsTB�
`B1+�YG��WT4�f�ct �BNqI,Q�����<�j	K}�;�1T�����H�7V�p:	[1��2����{{^�I.^o�b�����R��=V=�R1@#]Oq���-�	�W+�%V��#�p��}����Z�Ym( ���a�hjc
:��w��9D
Q��(p@�ZL6\��&93�q���ys�7�OWK��D(8�k��*�F�����h���=`kF�L�Z��ς�*��`Zx�&hh���:PoT@{,ͫA&�~&_�#�U4�=��(��@{z�w���&�aw�딽�N��
d�����w�����oA�"�ۍy�LK�c�4h���[J�*±Q7���h
Cb!�mI��$lO_+�Z*X�MN�b��R5UKfG�ל�V���r�:���&&cV>F�
�5��*���w���R�� ֧lutLh��p�n�H<��2�)N�o@O�_�1��:�0���+Ch|���܊���%��6ͪ��X7��rOȠ�'فn[3����.)�pF�c�K����GZ�U&ﴭ� O�-���"h�L	�L�k "�V��x*5vL���h�DndGq��5�:o��b����9R�(��jx8�P�*��1`�������8Lʨd�l�r{s���0����S7�o������_��T
�%�b=~XJzۍ��� q#9\o_r9�`Q���-_��JQ�L�LwAӆm]������^��7�HNfD�e��dI������$]ߚM���Ÿf	Sb0
��W?���?��8���&��e\	I�3p��	���u�q��Lh�M�C[W��-�&��7Q�淛��&�&QhZ��P
%��Rҁ�>��������p��`�br�٘��p���jŵdj�"��l��;AAE�V4�yN�w�T(�N�|h*�ˇE�V"��mx/��Z�F�R�/���[~m�H?�2jD��q����w�ֹJ!�E�CN]8�N���8�̯�s��
:�)e$h>�0�}�SQ�!a�Q����[:a|Cy-&���QYF*�E�x
O��^@!؎u�t��L�7he#�@*���t��8�a|4�ԋAw��*���`Rքu�3�Uq��mT�;7)֘�5y�C�=Sɧg"��]��Xe��.����O�Ƕs���V����?ْ\g�'���A�8e����mA�51�R؈0@Q$nI��c�	�O�����ua	�g�!�HʞA�Q]�.�{�@F�|��♈�����j��Ua������;�³�X���~�L�01�}��9������v&�՜b�MOPh��H�qr�&�>�+�V��耍�ϟ���W0����	�X���D���4T����}9�n2���J68�̭�EW�������:[�܊V���	�*��I�W��"Psē��T�g,�kK<�\ENIL.����
�߾1�
6'[��0��I0��ѿ>�*���`�˚1���}�ާ�-�1}���>$�L���*�|>�-N��N{�Z�����N���ɗ�j��/�K>p�
�'�r���q���b�N����/W�v�S̻��^೰w��e�v���C%���OZMa
9n�mzT���|c��,M!�&�lh��3�6�,�����@�DZl���w��
E1�f���N`Ϊ4�u0=�Az��ѐH��J��
2���%0_�i��C��v������@�Fu�~oW����l��
��f�J�-'n��i�)��|G�x
_F�߬}�\WmhH8f�d�����Yp
w"�@q��E��z�e����D���@���r��1�NIV�8�یw��-8���Á
���$øc���ۅ)��Ĕ�*?k�[�D��&
����|���
�i�����o���9�ד���.�I���ʼnпy���&jo��͵>��%�p>`LK��w��`���t������"uƞ��y}tmv���������C��+q�	�������xVWJd)�,������`Ҏ����d3ʿQ��mQ<�{���c����AA��-����0+��*���wv'��9�6Q����HT�pk�#�5v�����%��Y1(��SCR�L���F.V�kk����h�U��	��N���&!UX��0h�f���6���c�R����5��]

�&P
,[J+י
�g<��W&��:��5�����(׳*w�uU�b�t���ixbJJ5�R�h�}r;@���6�\�o�BwO�.�4Wj�]t�tF0�*I�'�$��@k�Õ�s(u�S�0ܑ��R�u5C;�����ͱ%�
��3O=0�X�n�p:(V���RW>��˜Q;ITmRC��֬�h�ޞ�1�_�(���s���h�����)�~���4�0��X*Z�vA�,��p��)H�}s�m�q�ˏ�=���&¬jM
$s��%��I����+�M�l"(�bz�1
�g90�k�]B� �8�l+E�ѷXl������3۞K�i���K�G���)��]MU`��M?kH��珒x��4����&R�����G�S+tK����軗[���{h0�}j6=����n5����j�%}X�p�`C0A��;�)���j*D�d���P_ˆ2�CG�
ֲ	����[_�������.
p�~�ӈH
kb�����:����K0)5#�1���pP~ȔL�	�E,M1ܓ�mp���"�T}��4�&�8,0�ss��|�k��O�RꖶxX����c�10wM�o�J8�"`P>������<�
^ܢ�*O�ZqZ�L�Z�V�G~i�+Cj떽(	{�A�
Ƽ+�..��Z�kD@��v�}���D�rWe�u�����b/����|��u��sI��!�E��:�Z��6F��p�X�>D�w����^���i&����L�,u��8A�o3״޷fG\��'0y��@��L��	�H�	����E�F�i���s�x��HN�Bw�D@y.�Ba�B�^����ਹDp s��S@F��b`V���݋�)<Y���Qk
Xm:��-I�S�
�{������F!�-�?e�0\�f���g��uti!�q�`�ۿ��8��\H���=���~H
����~��E<}��y֟H�v�D����\_`��p�n�/K�3x�n1@�
z�_��qʩa�-���)��l=��ECq�'W)��'�u#�}B�ܷ���h"�xD�NS]�$[
�w�Y�VI�z��舿N/�:��@��s��&�&�*����dg���Mk��7'�!+�G�p�u��E�
�	؝hS�~����rH;>�{�A�7��(�� ?&-�]���usL�H;D�����,j���.�!�m��^{�J�N�I �/[��C�I�k.��Id_���'���
��Z�G�ݡ���ghu���4s~g]t�E($�
�Ak�8[��}O�)���>�5?44J��b�+{2ڒZ�m��0���&�p�3��J�O��� �pM!��}.d�Y?6�"�+b^�Ď�PB��<| �4_1���ˌȱA=\�6坑pg��KV�q�])S��o��9��Z"$@���0i��'[�@&(#��G�G��1gA�aXӗH��a/��c;�\h�:��)�a��h�`}+����CG�p�j�����N�����Cd���f���c���y����|�sڟf���
��/0a�HG[��C<�D��꙳9��7���ͻ��q�K�B���z�%�		�>kAW�^3&w'��E�
�d2*>��*!���Ȑ�e�|
}����@�w�#�0(1Tî� �N��0�I�A^|+2�Doix|��l��5XݫP���[<���Jj���v�S���8;8�n�����p�7������4K�Oҗ(��oP�y5,<���}_���P��LL��m�~ܯ����\U7�l#�����ȥ���M�[�ǃ�lbK�0,Z*۞�{�
q#���'�0��0:��ӍD�Z
��>10gN~�V�׫LN�Xa���Ѹ��j"E��!C~��I�)RA���.�/�f�4��rX�����nFc��o����1V:��Q�?)[���%�L��^��+y��䚋���wz�p�*瘍�,bs�to9[S�x�d�p|��<H��>����m]b��P�D(��[5�Y1��A�M�ƣ6�Ӎ����q�.�N�˲Ԥ�G��,�8��X"�U���F�DX�\�N���$�H��+)
�ל|�����q&�v�覌���X˩�"S`O�r4�"�����p#p|[���a��_�-�e{h�jLn����."�B�?�a�9���t���?&Ӷ(�_k�2U�#��^o� ?/ց��ѡ^��ʰ�>�r~��}�=&q��2#A�VWkό��6��pz
�<��g��>�LCH�9�d��u���5.�c�a���JS:�m�.�P��M/�!�
s˸Y�U��8_N�c珦ly߬��/�ܲr%����xP����[}0�p4U��4*2�EbV����������T�l���
�V�8��48�K�X�f
��s4����<p������-pN^�2;�oT��j����FNj�VE��j�*�� GZ%��#��1�����6�7%�	U�8��R��d&4&��]��+|���������k���J�ot��<!��S�;.��AŚ
O˼�m��I|$av,r����&
Z�SW����߇M�>��C#D��>bpb7&�
x���E�ߝ�-yt��x��Ojx�A����G!�x�uUG���dQ��-������զ�0%1�
BLw����;26l�,�T���0ڊ��M�5��[� Lf�n�E���=�G�ʋ��.��X��^���#	y��t�T�����&߇�9r.kX������Wb�F9����#n)^�{�D�?��P\xH�™��:zQ��b�9��Tj��V�j�>���?���I�0�Y�
��i/c1�����aq��2c܉@�|-��Џ��2= :�:v��M0*)�ޡb�z9���;���:��MQ�j#vV��"�s�����F"f���(?@��@3n�#�^����������ktq���b~��xNf6�?*qXsJ����2z��}�sQp��'�h�&HWb�U���J��	}�0P����F��t0�
ʆi�����UC�Ξ����XŽ�X�@��7���=r&��ZPF4�0�c,'A�r�S�����i�lLX���u�!���J�/�/���<�5�fi�^���>��Gi{��BW+ 0A�4A� Q�WRA�;��o�N+uW�(T��'@-�&3ѵ�U�]	R
{��;��1مR���{
(���j��X��G�E�#q*��Nև���:�X�
�!�Mw�����d|-�����i��p���dk[��
F.E%��A�Ï���>bN���0��}�4�j�8Cw�B�PcG�$!��	���X?�끾��\sUFs�a���(=�_sJ�Eo�)�}�!�i�A9���ňdY-h�
�pGx����^�.��agGэ�GlF�_�+PԪD��Mcc�0O�Nu�]��tC�jK�a� �5�6µ<蒄���{�L�������73�ڊ�}���3���/��5p��n͎��4�G�Lo��>��ߔ��x�qه��"I.��鐳4���m@L c�h�_�ʀ%ҿp�ZM��u��bIt/cE}��o�d��8ˌ\�BM�A�T��.Z�N�F�y}�>��<q'bʮ��jlh�b%��}|�t���p,/��ȳj���v^��Q̰MG�jX@�.��$�-�b%�v�(�UbA`Z�92
� �?8}$Hm�����@i�%�������?UҒj�7/!B��68o��o�@�xJ����a�޺��̓[�o�I0��.�D�<&�A_
���z��W��)�V�LA/^��bb?^�l-M�1�x]yG�0dOq�N)d�協r⚋��8�(�#�s��X�u���� �(R�J��
�����#3�"���"j�6�C�5����Bc�$!źG�+(Mt��	u��QpC�)[
WX�Ae_�_߰
�~~��<gˮyF��ͳCf��L�+K�1$��1��X�O1,���xP	V`���2��Z�ԫ��ֈH���J��H�h��HHN�fٔ�i>t�`����u��H�հ��J��ҫa�	�������:+�l-�h>eą�Z��?�0:�0�N��+'MltCJ��o�8���#o���87�S�����Z!b�����1	��X@�e���u��|5N)\����ye#�"n?�44���XC��&.�R�hG��d4^չ�2���;]����"�!�~v��R�s]*���zC�����}2jJ	_��c�zO,��k��l�7
�,
�M.X\v�6Z7tL�ίv�l���m��<���O���0\�O�W���i�z|�^��+u���e�������cP��Bi�0�{�!~kq
,� �oì	4�ջU�^�.�7��6����7���(�8��NW�3��-�C�3������w���yN�?���Z1깸/��G��T?ole�6�0�b�#Jd��-N�����";�mz��@�tt�u����<u0�4tpS�-��9'��1��X)P�$������w���`�����g���NN0L-�^���V�?ǂ�p7#̻�G�� ��i������n�2�^m�D�UƘ~z�ވV�d�kg�S�:�Y�OG,����|D�)�7�1�*mI�Vw��4xv��=(-4���B��61�e�z-ZC!�N��\}+�瀴W�w���0��$��J���u��YR,j	ZW�7}��~���:��gmA�FT¯�@�B�[>]8bZ�~a�0WY��5L��/\d�]�ѕѡ�&W��m�l�4�;;�x^���o�K+���1�#�>m<��g�0@J����i��#D�Ѓ(;�	���-�(���?�:3Ç��J�c`mCS{'���}�ł��[G�r�ը�AE>�v��T%Q��`��|�2i����j/���^��H���ё�j$��6z���*J8$�V[��VlN���q�`��i����@��=!��ϏT�%+�SrX-��.ͰY�ȃ�܋a�pZ�I��E�0�:$J��/�5R���DFjـQF�"��IrzX>g��|24%$Qk��͆�{�K�ؔJm6��^@$�􈵲�F�?
��W�-m^�%�t�<#Px
¼��\�a�X�����+#mb/�{�iǟ�{�$w@~�g�K5D~Gۖ�HB�
k���
ȗ}�޼Da�g���"��R��LH�JF&��T���g�T٣�?X
��ϷW��W4V������,�jy��bk�{��=o@w�BN�,U����J�Kpc|EH=և�8�_Q|��k�4L)���g�V��_��+�bj�y�T���,B�����F~Gy-����Lt-	����A�P~�c�r����$���1�O�B۰k�`����c>~W�Z��u�w=������+�i�T)�Q���N�	��v�
�V劚�`��_��FLV"���i���ῂ����C�d������|�aM�j:�ܬcJ��?�&���NO'!��Y����<$S��$뤩U�m�
��a�T7�"‹>�H�@/g��ۓ�L
��6��$R�uW�Z5��4��q��V'�,P�+���|?	�Y_����#�������у�\�>�����:�1��
^�F�D���U�"U�'��[���� "��g%N1����K����y-��'���u�{6���؁a#�X��*��e�Ue������k��u�����A�'�z]:�G�[�Q��(��6�`���ؗ���r�v�Nd�V��h�G,�+c��{�l�Y��LeBb�]c�A��i��EB�:�3�
7\����M���;D�
2B������Ș�#y)��ぃh'�/帤��.0]�y?���t�ǚ�)���(���Y�
�/��C�'���y��j�k�ͪ����r(�.��NA.��>�#��I��9K�c>)h()�1'��g0K�z���G��=2�jܣ�F�mW��o?G�/�B>'�ˁ?���$a����yQ��ԭZG
�D��g
u��+�!r�dqK$mr�G��t���b�
��Di��R>���A����ѶX-�I��@=�N��{��'CgA]#�x8t\�	���`�n������
OF,�dU���c�PJ�]A�����n�K�����%z[Z�M���#���_��J C��_FA�<�ˆ<��`�$���m�AjQ��1%D4�j�+R4�rW�v+u4&����}J��Uix��d�Y�/��$��V�8���&n�	�w��;���k��=7"�~:h���}����b�%C����ͷ�q���<�4��l�U�,���դ`��e�'U!�TcU�O��1g�ɉ}(
��L��7v��@?@9�P�b~�����PihB75dcm�]
��(vM�d�
-w�*�`S�9P��.h��R�����4���85i(>��9D�Z$44\}��'�@
�t��$B����9*�Ivӓ
�숭��(jl���@j�D���;0���]�z�v0BM�O������5c�hod~�T�HRԌM�EP8dx��}�X{a��"��]�m#� �1��p��(�a����p�H'_Y��A���%�|�p�a�u�N�-���4���0��@?@�#/���?	�1IhW_�A54~���`�o��#�<�m�\�C���?�#����n/��nGNg?�{��O7���6�������Ba��@��Ou�4��Q�}��"���}�i��r�bO��K�׌3+�B}�;=9H8�r��.���Fᑖ*�݀~P.#�/���)O�Ș���>^~�(A�p$��ل�*U>\�y2BXt��_Z1���(�hoѸ�\���ƀ:H'�(ƅ��.Я��7B,25>���N��1���.
��.���̿5 �7���8[�EJo�}*͠�5DKG�3�
������K;a�{���\	�`���JK	���"��h�QG�&{k^���-'��w�@_7�J��K�.�u�S�,�4&� g��ܮUM>8
z��?�ݛ�@�)�rl�y�q��< y�|`���|��r`0��0���q���DU;��� c��v��ϱ��W���Q^/��k���/��qV-m�����9�{>$ĸ��ɠ,��0�@2R1�!Y�Nx�T~���
�W�PŠj���Ը#�Q�b�x��n��
R�lҐ�;K�N-I�X�`�h~v
 �p��
u�S�!䲉:)��Ti��ʀ�끖l�W]��ě�nz-&��m'��!'ٝ2!��,�.	|�5v�˓r��H�Y��ɳ�F�̮������l�5�����mk+�ڍ	�ӱ�3����=O���w,�DE��p�E��Ť�v� ��<1Ӓ`0��$h8�㧛[��E���	�j
�$*K]��oBW$��c���������tQ/(#ϛ�,x_<��T0ǴZ�3~n{�!���$��j̞���Y'�@?��+/��W�ݏX��
��t���"#�9�!XC
�kh<O���e��r�A���G�v`T�p*�K��[(���S��S��:H��ݸ��("���"��&}u��d���0����O�6(��~ذ ��.<�1�~G̓\����-��>#vLV����}���9�哚��!UA���k��^Z��?��:���qa^i��;5�JB�|M�q��T/�vÖ��r�ݧ����9YM<#_N8cG���6�b`�xi��v.mE�;�p5�o���FRn��M��lƀ_0g��X�%�[6L9�}t�1T�a�������f	�&�b�>�5�.��d��ɍ˫�+�ɬ+�?��0=�ٶ��e��u!��s��䲐ݺ�XO�S�rS�8��rJ51}o��`��f��<R�.@������R�2��>�)��
8+�[#+���Sn��o�l7K�
{�t���:���
8�� ��>;R��u:�g�HSz+�2�;U�@�mM��Z�Ϧ"q����!�}�,�:8u�)���:�\Od_N���Le'�}��Dm`����U���1,6�,7�ɾ��	u5e9�@�z��AtOщ[4P/��E>�W�ƿK'�_D�F�6Py��7�6[���ņc�����<��^�f��?�.�GG��H��$4��/ȋsj	��v�����ͯ�f���T|��{�
�w\���_@�؄M}�=�Bu�d�(^�c�dU���.��&zz�M2�����4�=W���;�OU���1�(G~�����M䢦+��}iaB	�`k$��CQWY$)* �A؉2�$�I�\���ʹB��)F��`^�e��v"�/�9�^�!��	�0Dv`E0����r�[��B��"�0x~Yw-���h(:���1�D�
(�f{��3H��`ԍ7d�t�v� ����9��:�Һ���w=��%�_vxa�L���5�q��D���[!(OL�[z�$"�F�Tn���z ��u���54�ٍp��X��:�0ҝ������ٞ�Ať
N7�Y�W�$���O�TÛ+6yσ�6z�ʵ�N\�ب�~�N�0��EQ2f0y�W}^�z��;�
�k��!�zza껂Sa���W�Q'kØyVY���v�_1Ӣ�d��
7��8�0͡�H`[3�rG�{E0ڶA~�W�f
��x!\c��a5>�d��x�I�Fz
�rb#H�C��[,���=��2S����
�j$C�|��!�4'�	�B�ٲx�"Y��+��q�}Ua���:=;�ZNBV������'�1wxW��r�:�\���8U�U�r��97o������`O\&�K�,b�yl+�0X���i:?X�{Dt�;̡��W��(��q�m@�h��*�Su�\TҀ#FȈ
�p��6��ʗr��[��w��@?�����'팀�?�8�O��:�.s��]p.�(RltQ��G�@���f֮��#����b}V��9�ɿ	�8U�ԡ�D�.l_{��4�Lp Fo7&!�q�J}a���S}&����-��ͽ�÷e�q}"&�$��d�xe3P��TK����R����t�[w(bRN�]��q0+h1��[����k�ZC��K�&�Vf�E�b�p�펐�����2+���r��!�����x��n,3Δ�B0�/���1
�r"��q��^S7Y�TF��� ��E:�`���yu�d����a������\,ֵ
������؂Q񡀞e����}1�\�P|4�Lt����X(��ĥw])���K����*.������>MbmT܁����GM��%�x=���ǛY%����#�fS��L<�d?
=*4���� ]�W��7	��4�w�1�.�9Z�"o�.H];�U	E3{�1�<CP2d}��2d���W���\$,���I�JҠ���J�^�w��h�~��+�e�
a]��h��+ ;��+�� E�u�'�@d�D�t�ѽi��ဗP>b�
�b��g��^m��&���$䗭��2��`KL����C���;�Ԙ���l�-�R=�Яn6��B��F:�¢�ğ���\I\~n?���ŒM"9�m�p���_��^�	�1��*�u����b F�c<+��ULN��|��a�
Ȥl"u�F�u�_��<$ 
��X�5{�y�@̆�f���4ઔ�\{L����b�(�Ĭ|>9N��р���I'#�LJ&���|�r;@���K=.�}zdd��Q��|Q�$N�t�5�ı6�哇� h�"_�` �#���q��W���%�)k��w_q]��!�hR\t����=��#���U-pEFO>�_�7
{�1��	�w����~�O|�>�(v8�=�pKf�w���T�qA]��oM֘�Z�wa��K6�-����g�i�~R����*��l��	���
�H�li�D�
*C����50xL��>�伽��_uPV� ����X"R.��R�b��FԴN ��,x����4�0lU+��4	;-8��q��%F�o\N��&zӣ��V|ܚB��D�,��.����4�$:�,�/G�d��C��E��s^9��W�,��<;&E�b�R�c�0�'� ��Bqq0Ҋн5��͌��:Dd���#\��J}��<��}�J��z�����B�}$�	����_���^��l�N^�>�
`L�փ��P�7�B�ԼS�l�Q��N�G�&$&m>�0o�h���RĦ��Û�X�Z��5��_�������6��R#��B�����˜���)qB�k���8Mz��d4RJ@��$(�k�F���כ���I��O�bנ�仵��R�ς��)_����`[�\x�y�[��b���M��*hMr���f������E`?`Z�fG1YF�6��Q��
ÔK&	”GXU��}�6��LYr��q/h��
�*�B����0-�\*p��Sw�i]��:Nk�-��>�>t��eA�Cƪ��w�!d:"��7,�����!�|��TT4���0x�Y�dѿ��F6��N��pd��(�SJ��_�a��.��0���iU����S��0O�_�
<]La�?-�*`|�t�}d+)�P(cK�X����Z_v�/���_�S�@���nk�v��I��5&Mc�۟"QCB��ġӴJh��~�g��֩y��R8�}��~��� (ErcVg�I�����w��9��'Hϑ��*4�
�ȹ���)�0��f����Sa�q��Z����1@��L/3+آ�Ӧ�J&'RA�Wj��e��6��*K
w ��d��k��AD���C�䷔^�Wv`�H��!�,��a�n���F<�S�jFo�ӫi��%Y���M6Er�g���k�a��?ȥK�0��mw`��`�oG�拋R$�6+���K��e�0�vh�L��Ž�(5H�3E�V��чm����i�9�_3̄p`|]�)F�[���1��$E�U�&XI�tcU�p�=�O�����q
��5>�T���}�:t�5��r����|c:�G�͊n>�e}ӭ�ۓ�Ε����]՜��޹! �M��Z�[��:x&-]LA0Y�m��|�k
Rh��]��.�
��s}�c-�>��4�Rn�.i���w�}X��i"J�<�K;*��
ߧmކ(�k]�A��E�p�L<t�H�5�:�A�J%�#�3�m���kO�oP_�K�*bZ\������~s�}��l[e7�m.-�F��W�5���h*��+_MY���+�/��������H��#��u��L��Z����Pe�$g�W�1ŧ����&23SG
���X^��O��k��~+��&��Z�ބ6K�!�#����'�2���
u�(jf����C"=��B�L*a	K݀w�6��j�)t*�R�&'pt%�_�=��T]5�%�
'�,N!�=<�$�W�b��÷����:�9V�����4�]鐄v�,Ƹ�����p�6:y?�:�L��1 �g����!�~����?M�M|�/��y���%�"{]_��q�L���$��>>�`:��eD��:Qу�|Zf�5�e���D@���

��i1QP�cf���H��lMF�Ւ�Q�V��	�L(�cUL�h���:�>��Ʊ�:����[X�	�>(c_�C�
@���l�T�7�6��q�������i��!Do��~S�n#��H'�_�: C�&��@�N�R�be��7�*�t�J���,�v�͓�!~U��U�/0M���s;F�I�%>��yd���@ >�c�YH��f���ikU>q���!�[����|S�2x��$O���`�=#�̏yJ�|�U�rqP��U�rN�槁S�?䏟G���"|1=���$�:ݧ�6���Y�"�G�~%~�%<+�<��? ī��1Q���݅�E4@�2�9Z�r�ob+;��5��EVq�Q�<g]Nc�'�~���ԥX��eȻ/���k�\q�QÉ�j��z��zfm& 2�G�L����b�E����^�|�)p��
�.߬�ST\_�Ez�hU�;;8/�>Ug~pn�j�i_������w���Wp�҇��v<O�F�?����c~���K@�0hUT����T�t�ֽ�O(�c孲��b'bgU�PB��zV�a�R({q���Q|L�_����pV�x�h�3
:�ډ��4=�$Q�pW�Y(Ͻ滻M�ݟ��_�є�)J̵-ZV��6��q{�a`�E��$C��
.���b�#C��D��ؾ��E<��3S��'x4�׫�X@LZ��X���\�x"�ä�\1.a�E�𜻉�}}b��_ �\��<X�������a��Z3�p��s����������s��2J,",���P�k	�LL�o��6�.;��2����_�^���A�$��旌�Ov�ٰqI6b&SA�u�>%ju�p���Ԇ�$����J3��.'�/������'�h|����]��K?r���G�o�e�X,K�l|��b�<�;ro��"k��O@��1F(J"E�j�2�2^���z?x�+�a��m�*�:�JXg�(
�g�n^�&��S/ͧ�
d�,�CF��+�GgLBϻHs�ʼ�{t~���}��W�\��A�6�L��W�į��@�|�Z
�r���.���5Z	0���#���~���y����ΠV�O�_ÑF��w-����](#��y��Q��v,���B̬��4o"�h����P#�:zi�ZR�NW�rY�R�$\���+HC�V�(Q�{�j�_K�$����#E.��+�DCЎ��H�v�An���b��O�K*��E�����Xc��+bi�L�c=Ƙ���zA#�>�W��(0�lC튷&�ԃ�A�*����7E,��˩T�����֏ܕ��M0? f����6�	�D�ˬ�f�D3��������f5�
:����27�x.?��R��T
��y0��l�-?�,��;�a2�{��]�m}x�q��P���O�m��B,��O�o 1�m@�q�a:�j\R6�(��#ΈaD7�q+�o,�W����B�}W-��?�nG����k��Pߡq�P���(� r|8v�	E�?@Dz�Ӥ@�'�y��#k~��L�I1z��ҵ�~����'H|�+�OW�~�`'�QA؎!�AX�]�	Ãu�(�/�4�Oat}sL���M�o��Ԁ���e]�_�ǭ�x٭#��0�PD~}b��1t�������1�^T�.�qCsO.�5j�θ�8��O�>�V�us�O�N [�m�#>�y��a��&�7�#�D1`�ZUWn�z�JZ�lv�A=�T�3�� `qO�6�,�������7w�B���	�ʂ��َ�k�]>#nW�
L����蔀M�i��vl�D�^U,���/�
�eI�������kW+|#���o'�0(�(
&�#r���DT��2^��~s��>��xS/y�O�g�:P����Ż�dڋ�~��Z��F�a:b��J�0�����,.�m�W����.!�F�8�/L���i�?�!8��V�
&���lD@����'�J@��H�L���t˲+�mƀ���Y2|̆�r��G�i( L�t����K�	��LA�Ƹ�V�6K���u��ꔍYG�}Ɣ􉤐��T�P�҆��c���G*8�?���w��xW��*{��`��0|%F�L��О0���e���wbw����$����|�F5ص�o�1S
S4�n-d��
�|��	�Um
K�*�?�����3p���ע�2?��0�
�e�/��uh�R<��z���S���ꀕ�tL�\�s��2�9�,6VC���l���c�P>u�)�-���0�@8m���S=��о{��C0'khЎ���)e_�� m�,�0ۓ���P�wC�wܹ��d=�H�����-[��T����<��\A@�p{q�uBAnjS6�H@&��& z(��ZRX�|���+|��J�H��~�YH=�_�u�܏�
{��s݁�.�]
(|��8O��б�2I�y�Զ�Q��
��V��eXЕa�!{�4	 �۪��Dw�ɺ1>u����;����>Ս0z��$RD�X��P��
WEpf%������Q0�e*�?Tp�s�������=�L��PV�Z�V�`Q�}��^Ԩ���!v)?Ji�(�UCk�<n�c�(TfF�c%E@�񖱎*�D�ʸ]cf��FwD�=`${ð��2]���hSD�er���q��=h��8��G�~7�@�"�Q��l�,a�Xӵ������Z|�/)�����H�M����c9�\��wQE���J��3���/�6��`$4�� ��f��la���P<��A�7*�m�G�
b���R��˧����t�w*9$��x�Ψ�r7H��Gć*�����A��O6����"Au���F@S�2��#���7�x}d����H6�\�.@ѝ��9�	��2q���������� D/���e���0�@��-j~	�U:�q�T`a8�)���<X
�;�4��Y8>I�p;���5C�qg4�^���x�>���uIkJ`�����IY��	��[ԞWg�E��Q�J&�XE��HF1��Y��T�4c��HF�t�����#��*w�o���n]}��9%�Wn'�\�ID�?��BGz�dU�О�����������)p;*p��\��h��Z��%S&��ߡn|qEw[%��D��j���@�A�
A�*{�l`zY�`�g��#��<`�4����%[6�#�P
�?T��*u}|qs,}�����1O��L�>�F�� �1{k�0`�}�B�3�#�i�%��'T$]ɀ���~��Ռ��߂�؊�qk�a����8-i(��d� ?.1G��(�u�������a
�h��]N�2!��u��T�\ojX��T;0a�R$�
<�?�>����O/�o���������ͅ�i4\a�vu�pj*����}�b
L�y� 09Mv����ʩ��
O���Q�|]�af,��٦d@�ӯ�7�e��{V�I��^@���u�������SH��Y��<T�g+�C�b�y��p�$�F�����B�t�Ϣ�b�@
s�	
q�?���4=J�,v`��G�q�5 \K�7dɗ}��]�y�Q�{�ȨG��+�i,�ǩ �#�̖RT�j)ig�[k��3���
�@a�Ts�2�'2w+�(��\�#�`�D [�.��8"gM�Ըbh�����y����V*Q/�����/H��2�H��6���s�F�R�[`�m��?�t�u�������]�5r�m.PV��)t����AͲ󡴄��(i��������\(�+?W}�H�
H���Tp ���w�2����l2�]�({�ݰ�ppBC�m��Z�V5�xSB��:r�|��6��/��'�>b�*����k���W�|T(��0��ŹU|>�!;w����GC���iVc푨T/�b��vP�`EC�t~! �L2�C�2�x>�������݃0�]:�:�}Zͪ<1;B��h��)�?`T��ā�)��s�/F����j/�r=�l�wfH7pA��A�ƫ����6�i.e��-�O��?(1���<�u�}�<?��$=%�r����3��?�X|�էj�	�qT�@��6Yc�$c�Q�U@ep^[�><����ZDħ�9G���[���.,���៙��)@�M�7u���<�f�|�p�_c��J���� d�� *�߼��:1w��T��+i��C��>�7����ą��8A"ST�z��_�%!�ؤk��!d����!}�6t���|��M�]!~p[S�9�?3gي�ٮs�4;G4j� w��?�%�Y��"�R���Oޛ�!a#���
I�]1��F���*JC`&��P���]��ݿ�b5Ij�~Tzr���ZH��W���E���n�w�-5ȩ�!���
�h|�N��cÞ��n!+L����^ 5�-G�q�ں
�R ���qa}
D-
�х�9���}�kx�<�<d��f�
��`�,�
�y���2������ټ�չ��@ݣun:�k��*LA_���u����Tq��G}�r�&��)8n���{ʻ&����pFyn��P�p�-TiAGj�f�Q6k��ґ�֋��JM��#X�5�Ԃ�S�v$)����ϳ\w�^f��O?�3�<�~C��Z4��B�ݙR���Og��@�4�RB(�@��=Vc`���Z�j��]�ط-����IM1[߁qdFmJ�Y���dklP�hO(�Pb��)�������ρ�	U�	�iX��h��d���>�S�}_�
��P�t� ��}d5�@�D�1(�0sCդS�B�9�%~q��x��x����տd|�4�lK�)1�1�/����QE[�b}�q�I�'�}c-C&��ķKs�;�ܾ�
�#�CD5<�f��<�]jR%���B囿�{�q�b��tsMP���h�8��G���.�g�X�@��t�^6�?�Ɯ�O{�󚉂r�}+�А�4IwG�.-�\ݠ��X��	�cڕt�6�����tɃ�}��V�
�G֧㕄��N_#�[1}�^(�CAq��w�	�e���?q̢*:�=�a���*��2h�Q�۷�F���vc�e�_�4|��`?B�UVX��rÛ�rg��Ϳ�����~��Y�+�ؓ>�ݮ_�z�io�M����0վ
���&9�Y��j��6��v��$���q�ZEsOk�gK�q���C��)��
�x��G���Bq�Ʃ�o4��T7��Q��na@v��@�w���U�������-r'ߜ�y����p)�����p�����G�:}���By��g^.CA=%VLҴ�k,W��T�/�����S��9m]�o������h�7ZY�.�ͲO�D)A�q�N�X�Ų��Q���{�KB�-�x�j͇����"@���cJ+Z��o^���Vd%v��~X�.V���?X���@z�����{T���
��~��{��� /޾Ϭ����M̨D�ɧq���i���ⷻ*��m���������{%Ǐ�ܧ�"�6�Q����	^&In��zJ�0a-�s0H�8�cu�hLm>2��;���3Qo�Ȼ� ��V���w[���wG�.5�0�4�
z]Fd�LƝ���7�k �PU�c��ͷH�W�:���`�����R��ۼ	 3=7;�Ҧ@ ���[Igp[dq�.��ЕhG�̌�+W��W/Rxס�c!��}3	���>�_�aC�ꐘ�@d~��tW�_W�<�w(���AN
ɰ�1�˲�����Rv%R����I�O3�D�w~�D6�n��_��$���L���JT���c�)�L8�=�3�n$�Z����	2l��&�{����,n4��x��X�<"{���i�R��6f
p�$�d���T���K�����7���Gm!�8����1+Qy�_���	�q��ڎ+;�����&�:0(%p)��J���8�^��1XU�����9d&�¿.��/��G{�Π��+��Q�iԳ�61�T�d s��~��N�W�����%���v3�$n��Y�k��x߀z�y�YG+m1RM�q.�a�;1�He��C���z�΍����'�q�u��m��=10�,�{�F`]�b�S�@ɮgm�t2�r��8�i�i��D~>��k*��t;0(��&�O&g��3�
����%~��@1^�D�����8�k�F�-�
tl� �2�m��0����P'�0ό?�mi��=%�7��qON�6�!���&��!u�i�Cm�b�m5��{��R���5���Z:�O�m<��Z�&�u
0}�{Y���ѳ���~X��#-��G�i�>���T�t
b�����=
7�����
��U卟���4X�
�cАK�1���vl���Wm����‰֯��e)�9�XU  ই�L�q�r�JXƏ1���������{!Y����W'�>�<�o��C�Vo�4 �C�R#"(�,��7W�MA�'W��S2V���wDVp���q����d0���$_������*��/�?\˰<v��xk�t��)V�J�s����& ֙ap5��� �I��
� ��X{ِHpCw2J�"�I�|畜���_	?k�!�i�NK���E�v���ɐcѸ<�\��)
3�D�����Ü��-ّ�&h����ō���f��`����'�3��G%��Y��^���:�E�%����C�i�ʌ-�����@��kH�U�B~?��k��sP���\4-�H���j ���.��G)\��b��T.��S�Ȣu�$=%Q��A�	�QIh���;�L!���Z\��>
�tX1�
�ᅒ~r!���{rRː(��%����TI��I+�v\�e�g^:�m´G�5����@�C�d"�Dh��L����_>:pM�~��*?�&f9~1@MP�lC���yi�zBԴ�.Q���0��߬,��%�9>n4���נ��ڗ��]0��r�1bVY������	-N���8�
#"�>N��C%��j8>u�2Jh��p���D��q�W�JF���x��_��ֆr�YjΩ�L�";��@ڒ��b�Y��`��:�ҁ04>bO��� ��s�	G_1�,���k_p�

�o�ۗ�_�
Ո��I��._�ч�\3�>��?����ߴ��
*=�S�&}C���$ӘK���Ls3������G�%�1�4w���
:?���:!I���D�.�_Tn������?YB�tцN�W@m@W�E5�b*��`��x����!�q��.��4x��e�W;�*�+�D+U��^YB�X��5�2K�ؘ+h��Z#�/F���#Q@h}��p��8��͋���%�E6U�ZMۗܩ^��LVq�T1DV`RYZ��0��n�j_�2�0�T��]�,.}��*����85�#+<UHϢ3c�m
�M:�*�ZGS�a�r�Ѫ�t�\$��}o��}�yNhM��(��R����P)RVb=m`9����\J��mah��z!9],6kM�.�i�Z�X<^��d
I�֋oi�r���E�[�.<'�Ы�fl��r�CS�c��84� �J=:B��TK�j�����74T|�)6�����3	��q8�L�h|]z0YQ�r��������
�Lxd����7м$��~f�Ws$Z�)����"��Hqh��Aw�>��tJD^�A�MS��)`aa_�9��~�b��W�a̡�(2�!��i�1H��C5�����V� ���a%�V�z�O\�FZ����� �Q��L3%����S<9��K!�-�%"��惪�z$�Cj����ޕu����LF�%�*�e�y�t�we�D�����=�e��CH�+;��B�������"*�	��v�
�eue/�CG���c ��	�|�͞qڸCI
�C��vGP�g�I�qZL*��������l�=��SA��m�/�����7��	Z{��r>l��2`-���;����K �3�D���1��ˊ��Pb\���W�L���� �H4p��1��Q��Lڳ�l
�~Y*�d�+�b�!�e�_r��0����wm�Q56�_XVD���!p.d��VH��qU�u��LQ{�q����t�Jь�d)@zdU���I.5�1Hk�'�(����qT�^��B��b/���PI��r��tW�g��h�3�I�e_#���Q���(I��3�l��p,���$L?��G����d�{�Z=eF���`)@�
���Lxi�qy�e#O�N���L_���@��_$ɽ�IN��`������W�������q�=M�ï11���O���"��|��E�>
6�O�1|^�Bj�!���_h�R�Ş��eI�i0n�>�F�g�q��`��V6��W����u��hJ�c��0и�F�GF�e��/�����;;q��$/��k�׾FM�X���[�Y���p��+T
|�?'�g����]kL��Z���`J
j���e�AWfIt!�Q�v)5Ԛ�B�E���pۼ�8��?LL�e�D��8��Հ�`��K!(�`!���h��&*��'�'�A��p`��K��Cͥ�!�Uz3&NL�y}�I�n��
*����-t��.l/�6��&NKJI�#��1�nn4o(N�&5R@^T��aT�x�m�`�y�9*����W�l4�� �JE�u���'\�F
ѷ�|SXd�����r��!��)��pI�pk�7r8��iix�	2R 67OF5pk��y�@���+���e���~�N�9�D�vy
��MZ<�RnW5}�&R�JN�P�,=o)��]�Q�=*��
�06�u[%a�]�%5��7��hm&�@\
�y)hS-1���J�sR~Y������5��q�z�
3X�u�Ln���5������0���n �RW����Z���CG@�<�w&g�b�_*pֈ1wۈA�0�-S_g��0��Ըdp�4��)�4<�����t����6���g<��VKQ��)Hf��ް����i�m\% PLx���Llu��x��[��R7f���/�)Z2� �j��@�^zֵAl�<�2�l/�@I�W^j�q�i���B3?��mO���n�{W�#�Nߝ\af��bhS�`yiǙ5��^�W��c㸆�t�~�c�O��;��&nTL�ijm�a.�6

��q���;��ۼ��/߅�0$���	�wᶛ���6�w��YmD��W�yx�C_�P	~?.�X�1_G3�<�@Y>�b��H�qy#o�c�ǯ�r��n�M�0i�d����/���zx��!�J��G�|\}0uo��t��If1~P��r�Y��Iݞ��?,2�*	P
�t5@$9�����W�ls�%�:F�w0��g�6ߚf�I�#F}e���q�_?�^�Y]>�=��i	�l�x��*_+06�)�F�N>�R�P.4�v�*�4��T��:6���2E�S��M�#1�_��n�<A���9�"V��شl8d;����(
	�A1���ù����=W|�cEP�^��L"��t`,�f�� K��Q�vx�c�*c�Zhl�@b��8B��|�|e���W.�kTۍ�R���M�&�0��P�D+V�Ը���
I0��غ!�[�&k���&8B�M��S@k��|���EP-�;x�\�)ZAN������aX�qɾmd�r�`
���h�(�<䒮&#���
�Z��
{�2�Ri�j�b&��Q�{t�ѕH�L��^��d�Q�7�
���i���R��dH������xf�o��$�G,�H��k���h[3��+�'3��P�20�~��Q��,��S	G��b�@8�t�&z9 4�L�P�2���:�qS��1��z�xqTu)�/A�	ˢ�.h�2lx5�#.�p/���%�<��=�U��3_������:IH[�P2S‡B����/���Ҧ���}�����Xߓ���h��,SHzu�daa�3bq:8Sbo��a�M��]�[)�m�Am���r�<b��n$D����N����5��	��`(�=D��	��0j�'���P��v�>5<͚,��bX.
�pw���9����G�U�{�it�0��n��|,(���x�����L"�
�?>3��V~�/IX��3�\u��!y�@��$��
K��Që���A�8b�D�r(:����N���&�>w�d�>A¿
_�ɣ)��`3!�k�a�S��`�����"�X]�uo�YDm��t
�0�@����>�Z�����zt'A˜�C^�w�����](���pUטX(I��wjÁ��3@>�AOo�`BU�pخ��e�0�{dW�3��!��x�W\���͕�T-Ҹi>����j�-��Ȁ��cz�4-��	��ţ��I�q�b5�i��b�y�˞�S�r;�`6�������zBEi�K5�OR��?�Kގ�{�к���C����Qi��&��R�E)��f3��; kd�2&{���*��r@z���`N�4;��p>~����Z<�X���!�!�����K`ʄ�e9�r���@
an�'|O��(1�mB�J&���a�)`�!>�ib��Q�
��+ԓg�NUQ���<z��L4A��8��È�Aݡ"��1LP�Ep�@�Ψ$M�Ƃ��xV��c�$�6,y����W�!b�r�k��Q��i��e�����]PP������X�1oA�-ϬN���/5��Vb�"��DK-ɬ���@|�~!z���{3�!v��KPS�-W:y"%*�\��&�	%X��)�B]B�et��1�3$e�q_cSh��b��[�iTH��1��}v�V'^�T�����Dv~�����]
l�`8a�l(��r����2y�!�]���ُ��\=��ª�����~h5Y�����x�O��@t��K�In������_@z����m�z�����:��D\�S&�@@!񒝅*�ê���T]̓ �o�O)��0W��8���h�L1%Ƞ����	�6�s�ԙ�r�������MNn�ˮ��wOW��"�G�wG�|wP����O�3�����`�3]3��H��rut/ӊŚ�c���f�q�)p�^�+>�2�<i�(�&�a�ȅ�!��28�Z��������{1�\���Ax�3�p���T��\�����E�}���!T��D�e�J��8=Я�XǦ�Lk�E_z4�������"��)!��s5��~i���Қ-)�8Kr���͟�X��Z#�_�p�\���r�Tʮ5S�Ām�X��UV�
��"�Hd��-6�e�]W+�
���%��~��ɂv�ծ~h��4�@"����F0�
9�2�n�y2*s�,� ��I_(sW�綱�.8{]+\3
v���������|��k)�����K<��c��"+��W�|ø�_�>:����
WB�i��a���?w!�N3𹶺;�������"�{��*5X�%k;�����+�w�z>���^���j��r�=;�`JN����@���/n���x��ge+ XY��h�|�F�n)��Q\�l�̀���h��5@
�e���*�D�9@�5�H*��)��^�j���5Y4;0�����
p�>C&�@������e��A�߶�n��͜INyl\O�U�#���ļr��i�ժ��̫"�+0�E�z�Y�C�y.� ���b��n�#$��Z��[5��l����Ҹ��W�(z;MJ�4�>�ȓ;���h2�[i�όR[%�M�iD���1�!w�N)��˧�-�&��4�5L�Y@5�
U4̚�X0y����ں����8�n�B�T\و��—>�dt��Ut�W�"���BS�Pi
M�p:"�e|�ĢU�>����۠����({��Uz�A2k�����Bt�%�l��sJ�/��q�b1���q����r"x�0!
���ۿ�9�b��^��٤�3�S�n���6�w�q�Ӷ����\�2m_
����6���{��e�U&�|mQ��M^]�n{q2%PK~2�m��]Nm���}�B�Ɋ"?x݈`
��+�0�!�4ʵ(p.^9K�����_2p{�6?W$]4'~��/�ƹ�R�~>\񄀎w�:����@
d�����A�_n�1�S__)z���B��([�������#����HH<`��ZEr�
e2��O�RhbM��_k c�P2#�2��0��B�!���f(/��w��L5���%F�vt7�I�.�#�A��b]5bR���v^����V���ݧT�;���L�6,_~|c-&%`������6~}��x�Ь�?�û��K��WD~�в~����mZ����k�fAC;��٠ڦ�������,��}\���=f��p��>c7��'�'�q�@}
����~�N�1�`^���?�3d��A�.�fn;un8&�vf��3|;6�ĹW�a{�dp���E{��؝�������	5�eV�&��;��x�7[=��׹����Ht��B�-�г�C%h]D�i�X��6�E�
�+";>�?��aIDQd�~>��T�~�kP;�pCp[B2v�5�$��͓�W�`~e"c���U���i�
Y���8��8O��!J�I4\h~�t��E�����_Pƭ�+%��#��~&<
�jd�sY5�mJ�H8'��~�9+a��k�&��`���j�xUKRد�L�5����P�TW[��8�(_���Bm�Zd�xZ"��aȊ:`$��^�,���b\]^��D�'e�?�`kॕE���.P����NH��ޗ�C�@d��-M
1�>kl[��@50���%	
4�]-�r>�_`q���,�%pR�L&hW��
��.z�k=�#��!�&�8"�Em��hn5�J��٬�`DT�BS+:��7a���j�?s=[`����qm2�U��c����r��k�*�����,}N��L�G�>��U����� ӛ�	Ä1
ХF�A?G%V�\�Ô��
�kA�v�+�	~��y�:���A�m5@j}F?��Q��2}@��1�7G �G	o��U�U��x�!ƿ�5�^9��k�:B��t
��(J�T��!z�߳�>[{�����<�����`���
-X�e���.?i�x����p��p3>D��tˡB���\�R���u��"u�L�!I����+����.}���@	��~��\qٓ���5ʡ���%>���bb�_����E�8���w��P��E�P��{��~���(��|�����a�	���'Y֍� �hˁ
�;L	�_� 
qnC��*�!0�r6m�L��)i�f�h1!�Q�)�ҷ{t1�+�1x	����D�m��1�[�B<qv�|�nGE��;��=p��MY�HW�x�4ﯬT������N64�A��������\=�wk��$�fh�q��9��Go�E���"�
�M�O�cu�b �&u��H��Ti��J3�m��o :���'�ƑN�&���'��@��2��:�Q�&�^��Mc�鷐��o�$>2{O8Q,l�*򈹶�.���GQ2-���ǡ�h&�y�7���"@cr^ �M�q$��ap��d�ʈ4�`(�W���^,/�.Ga�`z����k�i����"�U�Q�Ⴛ�#�5���$�0rϖ���HU��q/\�3N��|����t�;\f>�����.�X�b�
�~F�q������l@
M}��}��0�S���*b(����sE��X�%�p��nӵq�#j�#ax4p����h�	C*6�"�EĦ("q (�U��2/
ɟ1m����v�8E��$A'IB�Ib��#bV�&#��׫u��<����T��S.=�tBK�I�5LE�U�+Ô��$Ҁ^
%�EMXZ6��m��(`(���>Q	�ev4U1�%�	������u��	�k�´�Iz�.[)ej�Mqi�EKp�m�=?�q��dv:�^��ej��.�,�ݰ�c��@Ĕ_8m�T{����uE/�u��ʅ��ŭ���}��
�rxN�3$1�<^=F���\2�CA�0:�>�u�$�$�?by��ã
��f>�N£!�ؒF.�0�{�)=��&	�i�d�17�8f':�+�U�Jt��щH��Y`R�\����2$}=?ە��޺I�1�y���@��p����q���\�
�U��P�6�A����=�tb�턮��������|&8�_;�
"o]r���t8�g_�+=4_��#��*�p����+!� ��1C�̰ߡ���N��1#�}�͐d��&#^���1��E]"����#�|&�хݓ��Q�À}� �!��(Wy���T��Ӭ�):�7a�0Uf��L�U���~�����c>�#��#�H���Xbo�?����
�O���zTW�l�Y����?�<0�|l���0�^���pYXr"v<y���s�o��;W���+������a62y_&xĹ�vRp��>�iD�;��FA����`L�G��1�e��d��]�^��`MҐ���EHf%T����;�,��z�AB࣪��͠�"��t�tQTp�/s��!�yh%-��>=���߹�c���X�ć�h6=;���m_^��
�X�3/:�&��x�HG��R�#��%�h�!7>�����or�g�����X6�~��|a�b�8��͘2H���Zf������LT~�uZ�H�%�����{?E�O�ڪ(��f��>"b�Չ���Vgn�В������P�R�o��"I*����(�yQ�[�l��j"��}�xCtp=)�Q�:�
>�h���JTU�nYO�&��K��p�܉Lb���`���M���t�� u�

�k����^�w:^��[�˷5�X�Y@
+2���ڸ�	���]�{�a������#O�g�n(�d�y�b�À眇 ��~��7��7�b]k��O���v������խ1�Θ*�lQ���I;j����N�М�,�5s{����� �>��v�%MZÁ�5�k��!���m)���`刺+=�>q
v�;�zxB�a�,%-
Bd���r/߯��O�ƭZ�k�R��ڐ_�`d4��O�O�!�!�+�_���<)�j9����)6��
��	>���B��)	uLT�AUd<��
��7�Ϊ/J��D�@�	��+>i�Uf]d��rڐ{��I�$�/�-��W���Z~��:����&ګ���y�/�H�ڸ4)P��%���*����[{A}t�$Ddqb6���X���%�Ƃ����'��YD���bV�@��a{G��y�ְ���
l1��?o7c���eI
*����
.������t�^����EJ�`�@�XZ6"�=���5��B^�C��ۡ`M��|ٓ����F�G̉��y~��>P~�V+%��0�ga_��f�
TG^�������>�2D��n	qp ��"�Å��v�]�ǀ�L�R#@O��Xw�(��-x�8��L��ޛQ�!�)���c��sDɁ���L?�Q��;�!w��FH7���5��P^k�]��1�ʧ2�"k+i��K���MX;��c,H���F�:�T���U��ȔF�����(�4�L
���b�!b����Y5E)�����+��q�c#�PlL�\Z�ʆ�p$�����hg�y�[١h
T��#J��� � Q1�qX(�+<��dC:`M>�.���07��?i��e�!	�i)��40B��Z�� �,V�A���lA�ur�D��15��lN�ذ��E��I��l�h���EF�m��	��D3DR��
�6�kXZ�t9`F	�;A� ��ּQ^@W���O(.����wcޣ�2I�ya+��Uj #P���;B��U��"
�B/G�2J���� B�X=�r��4.J���,�qp@uIɠ�zH����4	�*E{QkN̉�+r%�1{�>�Z�p�����4��}��;����?�?�*�w�O��$��I{[|7�,!o��P���W�/�~0�b2�>��YC���{��N���S�_�;���"�������R_�*h���/��c�#����,J��-Ƿ#�g��Z�S�P�3�h9Z7���[L
�
����[�����D���s�������0K���?�26��"�=����,V�46��s�(�h��Qz���[p��U�O��ퟣ4VT�׹���m�ʊ<	�e�!���!x�;a����̼O�~Xtp��p+N�����7�(%*TK�>�S������'���x4����
��,��;�;�����>8��	e`
�
����q�=S��a�d����'���౯�w�v����I��s���W}�m|���5/P?'ۉ�U�b��>>���.�RQ�YI��|!�Ʀ�DI�Á�N53��!Q�&��'_����B0}]~��� �B\��T�mF�+0���֧�/�o�j`�9n���/+�E�k�xW\��a��_�;���M�&m�&��AfK�|��
3�����>L48������
����y?��4 
�XJ�5�vޯ�pb�S�-�s�c'�_��wnB*��i���1p�B4)j���C�����;-��c~�<�^�<%,�h�QX��r��l��h)�6Ǧ�	L]�(1�DSb�/$�@�Ka�4V<�"����Q:��v�E/�AR�k2�#���u����}栯�ە��]� A���4P5]��A߼�Y�{�ON:U���ñ��
��db�Y�9p_*��8��0�4tzi�/.�9�&:J(�)#��&���UN,>C�Q�C҇?�<���jb��wp�Y8��P��+	{�r2?�nø^�Е�oH�`�*r���A�e�Χ�x����mS����:ހFU�!^aαd���P��,��,����q�٨hayT��� ������q
��D�׮�
�q�z�����Q��}�L�5$m�	�*vHT����W�"(o��Qg�:
��+J�-M���[A��s7�"��p�j>���E��"�L���~�[(�V>ΘcW�n����3�l�}�p��sz�����p}�E3��$���H/=�)����
0��x��I��ۢv��(��ы
���8�jVOo���k���/�f�'rV��eX�h����<;�°ݹ)t@��$a���L�?&���Z�G�wq��vz_���{�|탛fHv>��O�� gj�� `�R�?A��)^}���E��q��c���U��m��Ԛu:�1p�l�"?l�Vc@2��)��l�W����Ln
�f�(~��1|A������,�e�_�9���ۚ��Mc=�%�(�{4|�|�f��^��6����K(�>��JG�.T��/��yt���k�s���zg���f+�멠��Ui�c�݈���y��`Li?�	�0)�+������4��_9�o~��~3$7��tnR����G��*i�Q4O��ǍFOi���Fo�(��`�N�n�U�$���X/?���������8��R�2��z�d~Wgʮ2R�H7�|�R�Ղ�>���+�f���n��&�>s�W�$�b6=ʣ��S5Xq�CI��{a*���į:��?��ŤLI�GB#~ ��#��$��5'�3�[g��߾
��(ţ�}	���]D�1lb��W�����m��	,Z}g�����<rl4lk���iB>�
'%��*Ɩ���Z�UƧX^��?���
N���cc><��
���8a9dP��q.'0�[��:����'%pQLW����D�$�'6��'R\;Q@�V���_pJ�0ջ@�q�~�%�>Ċ��t%˜*���u0��nL(b�˔�@	����i�t��y�'���t���K���P���+�zj�tXtE�k �&�J�ˀ�²��'�<����h�����n^��
[a��m��˥#�h2;����Y`�*�%�Ґp`�L/;>\�Z�5i\�7
@P�O�ct���8�دSW@��81�
B�(������W,(
V�8�z�]2�P�
���ࣜ눦	:
���7��R�0 -�������!+"E1V�����G�e�j����G��8��V�y�.(��Y�O�6�ӱ�y>�C��z�dk�>op
=�y�ӌ��(�TFi)�v�Qd:
\��Ig�����23GF}ܼ5"��!�8�>�u_� u�`|����4ħ��$����Q!��|~'7[Ţ?��ſ�fK�|7[�h�\�	�w�$��G�">�'*��!nC~�!�z�������ƚ�/ҎD$����@���D)X6��RēI�aQD�qV�����(+���5�.J����B`Q���Μ;`��TYat�\4����2\͢vm�)�Y����U(oޱ���+��w�ݘ�X�?��~�N�)���eo�e��J5�����@>����˗�Č���d��38���_�g���9�ۅ�"������0���
�-�=p�a�T�銨�~tc5�ց�P��K���X��E��
�.����g�~2z]�M��+:�}s,�`����4����\F��^��3z0@��ž�|=�^���3�¥��G���~������b��S���;���`��p&J����xÕ26"����<�u����.���r�n��ͧ�{�e0H�ͯ�8��{Duh%/�b%aƻO}E��AL��trQ���`DAS�TNzF��B�oF��֊�� ���2"T&�b�Uj�dQ����J�� �7˻��!Ǣ�*�cdx�� �����Z���zlX���HC��i!q$IE���6/i�:.�N�]:��W�[u6�Z��g�������lh
.�;�l����E/�|H;�W���0�{��TI�p8 cB�uBT�9���rsIk�_'+Y�J�܆m����f���<�D�"@�8(���5wԎf�mL��\X�rN]\v:5�t�ָ-Z>��ux�o
��&,��2���0]�}>�K�oQ�M6�ٺ�x����2"�4PJ*3
���f�T�^�j�}<h�)-7HV�����n`s@B�q�a<��qC��{�^����'>ss�
��4Q��]���)�E Z	�8�!ڜ�t�9�����v������%���y�ey\?���=��|d���3��@��-	D}���|p|+�0��!�|6a�O�y"m����|n?M���O��T�Wؗ�����XF��Ʊ�C���`���,W��7�~��,��o~�1f�aۂ��ӓ���qR�3�}��|Z�
�
vn�:��
�Bi���k���_����{��ڰ�����9����@G��g��?����)�P
��Ω�:^$��z0�Myܕ����w��ϩ?M÷�
������o�+�j�"w��}e��,�!�~�G�e��������F�Z/H��:T��s�a{�0-��ۨ����b	b�����x�*�0Í�vft'���$�|8j
V�SWq�N8E�1J��>�cN,l˝��5�qK�N�5T���=�w���Uy�������
�-�'�����_!�4����aU����­o�^�>n��&�/Z/ӂ�{f�W��@�a7ZM#N����v~d��q��ƽ���
!P����f�:�d�����W-�PhG���Zx�H�T
a�h&N}���Q�	�23F�X�0�s�Z�+�&FOd3��P�>�Ww�:��d�ͼ�ox�4�<qH��҃R������i+��9��ԜF!�W�i�o?c�)��.�cJ��²��`�������
-���U�+d/�<>�L��t��P�r4��<�a(:֖�D�^�O]�x}�4�ƨ0�nH���`���%�剩B��0@�H��(��b���!cc 8$
���t�������a�{��1��n=@hM���¾/�y�#roCYG�Z�&RW���k.���ǐUO����P���3�,���7����Xs�yi������x��Tjf,�a�^ڕe'P'���p��Q`��.%(<�q٠��_��WHw܎~H8���<eua�8���3�#Aۯx}�Ԡ�q�Hi˯��{��:kT���) �UR���.�&͙��S�`]��7����Hq����=�( �L.�	8E�<(�ȤQ�_���=���=\����T�>.�w�_ҟ���X�&�L7i����~��H�����0x���SXL��U��-��/���}~ҟ�*}��[JVu��c�
��lC���'�_�����Dz�w�����;�H؏�j
_+�p�]|�j��6/������9���@SC�l�X�9�:��(�`CQ�s��d�mi�p\���WTA3&�F��jlء��
��w)�E���R?n}����X�)�:"�GX7����3U֩��h����[?5�I���X�2��1鄩�d3!I����16x?p�
�]+?3\%�o�l��/��O!���0b�zTn��l�1jk7��X[„��c�.)��[q0�ҿh]LF�&��.#��L�!���HYw��6�a֯,}���n�����E~��#a>W��%��s�;���3o�	^�u��\Kqbz8�
�e�5y�ҟ�#�!�ɾi����x��<�*&��jv���:��Z?xB�6rN�|��q@�Q�:�y��b�r,bt�lǦ&���ï�t�4������:Ǎ�抂Sg 4pWF_>��5�}�m����☇JA+d_@5�ϴ}-����2*��^����+K굂Kd����j��"��t
	���/�}���mԐ~���]^J�!P@�@W��2(�B���6w��zMK�@D�)�.9²�4cxY�
�fM�`.	X�)m����^�fgB��-,q��!��>Zb��6]YvJ(��A�Z���n?ǂ�:ڸ��$_�CZ*��&EX��K�V�� j�c��OMJ��t㕢"��Z�pE�D$���y�6��t���|X�Tn$���:JR�󳸵��?k������H�F�� id����E�,Pi&�
�a�P-�-)��aZ�E���p�偂~}�:�/���.ɈUg+��� ��F*�^
Uo���>x�R	��h}�~�lkh�����T�2͔�6���A�Z��q�"��TU��/��p^�H`8��'���l����s:2�_��N�pc��G��8�����S�0��14�IZP�8F�>���r�xO��݈7
nP_'���4<������^�gO��)�/?��0���:

�02u%#oˎ	j��nx��"�/�y=	?َY�X_�!�
�x,�ŚR�4L
F�q�8�
�"�s#����������wiW��/�_�*��T�
z�{�`�U���M>�� �{ .��qw5�e��Ni*!LD��M��8B������LS�c��}��·�x�1�P��U���i-&q����{�
�����DV�ӕ�����_������_���+��X>�B¡qUW��O�5�u���t:�n6�_�����y�1cgw� 5��`��)��?�F�I�T���0 ~S��̂}���GЎ;�T��*{�--����'u��H��C]E=�]��끠��l�y�0nr�]t7::\1@$
��7
M���LP���E���\ 󏩏8H���ng���^~u�ev�E��vؔ�RL�ӄח5o���H�.�9����gӅ_�%��ۘebZ��x&��k�HǾ/�#y��j��`�J�B|�w<9����J�Jn��
H���
�cgr!���T	�8nb��/.*��\	�BP@�E��o�J_�)�F��d�TCj�l���}>�q��Ɣì<�ͼ����Bjw�t����=�����_��6i��HI2[#��ԒlW"�ǚ+�H��ؚAF�T�6�p��Ȱm �����46s��\�;��S�'}���1-9:�{?`��c��-�;�?���r�;�1W�� a)��fACP$�V
����R#���-�6�J@՗��4���M�I��[�	��.�|d�J�C�"�_�y��3C��s�"����a�;��8L������0�w����f�ʼn�EUj��
�G�w5ޫDe���	d,�@��C�(RH�P��j@��b�I!X�Ϝx��g��ڹd��n쟀��bJ��
��0c]>冡0�1V\�	J;�7d�A9#|Y�x��%�k��r�}����θ���|��z��?�8����z�%J7����;�w=%�vPqA�F��:Ĩe2�WT�L��o����~�E�ML�?""I�d���?�E_DP��Q�,}A-��C�)������Q|��_�4\�h�?�p$@��
͝��?�?����Ҟ����~0hPq�u��6�er��x����0K�l/��k���|^�-ܤ��Q9�/���<a�'�[|Y.-�)�8�yU��Y�6M��&��5/�x9
B�i��\�6[:|��C5��@��Oj�fi#<4`�:v@*�:��A�P��Z��2{��"|�`kJ@m澌�-=��<C�:��1�>֬Z�E�w1JX%�Gߧ���^��;�C��=P�/~p�ӯ$�x��;�.Wd���*�⩅/\be�tn��S�=�Z�2ټ���:+����H�:��(KLS�?��Ö����_k�eo�IJ6u�A}�}�y��l�����W�M(�j���a���,�P$dd��ˑ��g���_	�h�O� QΎ,i�v� |��h��_YB�$)QS����{�df���K��KTf#�,�G�x�Ն�
ց�I���f�aS!�^�ًԬ��\X�
 ��3âH��	�ƣM�����0�(w6Mb,bP�(C����������c5Y�jG`Aۑ*&?�d��
ӗ�֋V[�r���H�;�N7���ET�n=�:nٮ�Ŋ�	E�c1�y�%����F����s�
��t.-�";񗶡ֵ���~�?���0��*��BG��ēw�m҄�/���x�.p���	�&	R6�Gr�(ܘ�o�}������|�k�׎��u��'�\_�@4!B�^��	b��h\ 'φO�ɞ�j�l}�1[4M3�@c����e�X�p>�/-�L6#�7���#�rS�u|�r|���஌�^���z��7(��aA~���tb��Mt�(X�۲��D
������}S���+�>�~.!B3�z~\J�E�0�Z��l$#����|�F����T�Y�4Գ.诠�h��A~W��)~�z��b�0!�D�]r�Z���06��S�{��Q��|��S݋������a��(�ۋB!1^��a(�D*
�TR�d0%-��ˊ���g�f��h�U?\�
���t��<��gIK�h�/�*dm^}aU���:���:�H��+�
�2J|���j:�
K��pN�_���m�����`I䢖9��ՅoU�Pr�}� �b�%Gq���[��Hh��J]"�J��A7��#>\�*�(�x��L
A�/2�/�y��1
�GSLa�v��=����|aȣ'�h�8�H�����_Fg1@;z��n���&|��
�� �n��3n���	�
��v�U���V���岯�n�R��`X![Xi.&q+=>g�@?���s��!�͇Ǎ���`��2A#�B�Sp �N���F����4_9����}0�,����|a�����3�?T�4��eY*yUP)�d{$�0ʛaPאw�n*���讋l8�Kҵ��Ž�?wZLSbE#����t��QM���YYT�O����ʮ6
�T��XWe���9ڗ�M�6s�d���hǕ�4�7�Ŝ�h{^����n�p�w�*�PY��*s��a4f�����>)��O���rh�qS+���9:!��0$���D}�+h#a�M;r�C������-�G��O���Ty�O�8"���U�ϗ�]�D�dק��;�DSl�o!,��|��R��q3���		�)fx���;���b!�fnɂ>O��I�)��a��K�>%���p��U�q��T:�?�OpZv���9�U%��j|ѧ�e���L�`֝��<�z�����Nr eJ[�9I�/n�l!�/S;:��{&�S)�-�K�wj���7ھ���#~�q_�V��l;Q��O�����2��̘7��h'�0�V��E}�V7��|RVUʤ\���H��3X�7���0e��澔�`��χ�����]sX��e�G/�Y1��Ӵ�]$�pCX)�:��ux~x���p�H	��Xp{Y6�`F~\4HƧ�M��3�?�j:����CP.%%���0�7i~�����̄�����XbZitxb�]�!�y��3��hj��<��T��_L�L�����YO��.��]�)D\>��w����6����^�������J�>�PP_5p��C_��,����Zb
��w��D���[�ͮ�3�ix��R��Q�Utx�=���/Ǹ���`h��1�?�`�`���%�l0?��>��!�7?�ԍ(�d!��q-@B�kWx��
���/'�}�^�6���UW���oq�g�l):g�ng��悐��̊�u3^��)��$
��bm�c8'����C&O��K�Q�ϟ���2���,1~����pJH��`'�銘٥W)��?}�
�
mQ�+�
���)���&�Z�A�`�(\�D}����[���]6�/^r6��
�:O��ա��#N�	��eu�p�����L;��
�>F�jG�T�J��"NS��@Rl�י�r/YS�>�e���f9���!>�@�N9~��]�q��/�	�15V&�"��Eݖ�e�=q4���3�L���t��*N���wEDB���\�Bi�+�V�����b T2@���gف4��.j>e
����I�H%G�)]#�ʛ�'�[}M�~NU?��a>؇����/y/�!��WiIo߼,���ǯ�>��I,J�b� 7]�H2�`�Ⱦ���<�C.����ڭ`�.c�lj��h�����Q�9:ǁ\犟�W������Md�(Y�Q|ۋWv_�P�p�
�!�о?��Mꂟո��ڿt�`�(�S� ��_�_�˾��'
�z��(Z�،���<�@.�L�6b�8X�\i�����eRf��	`�m���I�Ll���#�-*�+���n
+��"9�Vs�F��f!����V��]��i3�wŸ'q�\Z�k%;�k�҇�z��!��-FJ���!q*����S�hW�&Dt0O٬�΢7�ے>O/���4G��
~_���:����ib,҉�ԗ�˟M�C�]�0���I��Z ��Q��qا�|/�b�
p��w9�>�R6�X�+����~. kFcNz�G�����s���a�p����T�p"I��B��pH��펾}�g�D>@��W�8��E���G��p؂q�c�e���Jz���F.5���=����r���p��m`#������'?��3Ly9�U���������V_��V�Q�x�`r��k���=k;/(�7�"�c�.ࣩ���/b@�����f�,��0��V������ }1��v�[��6bz�F���)!��N�m�ӟx,�n�����S�Ŋzqp���-���)��4��k^���pQX�W4�_,
}��*~1+���K-�uw�u-d�@����]��OF8�]At&!��#eC�;��>B���3*��b����f��_|1���|`�zj?ja��~n�O�����;��s�f�xLN=�6�5L�\"7� �p�<4�ApJ^B�[?_��d���<�M�as��]�b%�)��k%O�Tr|
�Q�=p�D�X�0?0G�`�<��>CP�?�p�#��*�n�>����p�E��-G	��K��L�l�)k��1��־�
��<>?��!G����N��XC^j�B��
��Q���9�\�j&7��r�b�1B�sF��f9^�h�V-!�%l`~�N���pj)��.�+���K���֬�l Х\qa�h���B�8���߽�͌�W~���_���4�����T-�;�d�w��8mZy1O
���^}����w}>\ԠQ����g�o�ŖMG��>L�\�*���7�[�l�Vf�(v��.5!�N��:YH����S�(pI�����&��b���z����y��`r[���+��~�jAQ�PL���o����07��{��Sl64yF��"+"[I��ȱ�d��,H��Ŋ���+�3ў�f����i�!5��2*+�l�cmI��]���h�&vA���rO7�L�����1�1��QG����hX}���p��W�+ό���������=B��T�b�������KCHa�${��7�\�w���w�w������>���;'��*�����)���eǠ���x��~D���`�@���+�$�'����W�o�0�Qϰ|�� z �jBP?rv��s�}%���e,�!�~q+���o�F�t�Nxw�o��?��h��
���#�]g�N��X�JK�~1�5C����B
��1���c��7m�9�׭��,�S	(\�Ū��#�K��GOAoNu#t�ؽ����J�n���,�����g�
|�Z���?B�ù�ҬU_�6���
p�T"�1�4�ݺr��'��«0un��fb���k#J��z�T���#��Qt��^AC�,k�U/�G��KK#���J�뮴x��~3���.=ȳ���e��G�_Yݲ��B��_��,��/�)6,
ݙ�/_|.�5t��8x�L_����W�U�WZ����#��6ߌ��e�?�9�{�A��ډt��X�ͽ7]�%�M�����Oq1��h�f�<~>�!���$<�A�..6�0�(��R��%�}�`�Uf#�7F����^?��JIB��M].Q�����an�I�hR$^���n"��3��Ӹ�h'�L�'��~���a	
m���]�Š^�J�V.*&)E��}`��j�͙�o��׭6���me^�5���3��Ƕx,��ZS(~j`��桄
��\����(���y~7�p�
i��q�Φ��@n����ݒ�2�jr*�E�ep�����T��x4s=�;~��G4�pYP���,lz!�:q��f�����W~��h��Qxc�9�"��2��:p����2�_}�q��֞G�H���¹K�w+�m>g{��A�//�n�q>��3�eu�c��6|/��7?B�I=N��gʘ1G��/�0�;D�#�W�0�g.oW�B��>\}���8��X���Law��|61_�?�cF��c?X@����׻0ߓg�)=S^�hV���#��k�8�$H��aoi��7�,�����@��f;B�>xD(��oo�b��Pu�bC��|6���b�V��aeP��u�����h@��<�ZE�.�:ǿE*7�>(^�8m_�!ݚ�]ҫ��<�
�k��%��K~Ǚ4e�J�C=1��t6��3�/��z��Zp�mI�P����遃��d�dI�;9���W7EM;����8Fv=���P�o
�5�G�F$�=�����b����o��3�ģ�B�����o��sU��qn��j;��/����
�a��c���/������,�K�e]��\V2χ�(��̀�v��07AM�\����~PK֮!��Y9m
�Cq��&�A�8%�Mv-��UT��eZ2P�	vIt�"h~
��`�����sAV&�
DM��$��;�A�0i3�x�%x��*h����]~�`t�C�8uD}21��0)�0t/�֮!��  �������
��~���O.��Go�[ϥ;Je2��fJ�Y��
$`�����bb�P�+4z?7�w���h�|嬱v0�9����n�C	���
P��!���`]�,à)�O�s�%ښ��9���S��?����J��}e�ΚбYu�K�W�PU\���R�x��<���{�r�����N%�;���F4~_�.�A���ueC�\�猍֖!?at�n'�Xw���-�h%�⮄ƈ�Cg̘N�Ad۩��&��P���S\�[�?�0�G��-H%��I&ǿ�N�B�W?8-U�ħ��A����<\b�/[���ѧCZ�
��}k-u�50-�7�e��)�<�o���^_�a�0���F��L�C�v��	xWl���x�_-8�]�C@�9.������C�E�����EpL�A�P|.�yJab�l�T��=�h4*��
�#��o�_�Fÿ�"E�`��K�� �U�AA���^�#Oጧ|���g�]e��xb��?�M:���juk:H�~��*���߳,5��S��q�j�����yV��h�C��5�IG����ةm���;(����\��5�����*�
�_�9����N��d���!���(����\Ю��`�:���֣v�)>!}y�d�q>����{��=�!O��l��h:i��͢�D8U�	��F�r�+�� �0Uc��j���&�&�n}J��~
�I�˻oxh��k6�YR�~ߌ&_��/S�2��T����l����
�Jl�.��%�*+ܫ��,Í���T�0��@���Dl
#5�(��IP	���(��I �}�?@!����g_�as]R�d��Z��
�8���h�����������h�;�@spH<��Av�����sa�h�⧪��>1v�u�6�׏��$�]�F����c�E*���[:@‰���3���}�_����X��T��<c����x��.�+<��7̤Y*�8esc ��XBo���`Pīٵ��!���p�1&�������<q=��>�x�/,�SD(T\�	����h9+�6��㛛qv ����+72������}V?p,�X-��u+���#�p�D!��z�U��
���!��<qgPG���"�����	2�/ŖN%��&V���$jCn�씟F��ւ�'��c(@��*!�q:�ߦ��L�J #���>�ӗ�	r/v7O���٤Ù���ÌS��_��}>�\xU�ә�a��D��qH��WYHN���\�sjЩ=�3�(D�~l���7�c�V�����qu�~�6T׷l��(���s[T�a�=
��DDG9��+A�C�D�ƒ?�L{R�+�o�	ARB�a٣/��xa���1�j��'�:�Ò��t��2c�"ܦ��j����'�AV��u��]H;�V��K��f)��W����6�;����N�����,~8�=�M��q�}	Ud���Q��9�Z��p1�D|T��!J���k�����i�õ� ���;}E���LRi��s�'j�K����NO�3�:������h�B�t�_m�Ձ�*��)	����:�fc{�V��x�`;k�"9v��_l����'G���I���y�Z�B�{���}�M�gtށ&+�P.2AjI�qUy6u�%!B`�)����r(��~ar����@4C����d*Dl�<��8&��Q͕`T���5�&5��e�	��fvH�_J�	<k!Q�Ԣ(���8`8/�9/�
�\�V
Pm��,N�ճ�=�!�SnZ����>>��,dwH*�'�V����`%����¤�d�I�¦��5\p�o�#�W
�uF�᩾�����
��)M����ݙ潲�څJ�d/���Bs�)�wbm]`^F�0MV���b2Z�p!���y�-e6�?��n��8(��b]��U��X\F����[�'�#��6,e�s�����P�r�����_�g1f,`��
Id7���&�'T!��b��o7���?�=G�����OÁ T��f��LVt`�l"�U���&���
��g��u�zG�e�Uv��	D�����{�`��ץ���R"X�h*��d�B�+��i`0��m��"ECt��iL�����>�^�ŸB'Q6���&�'ck����t�Q>ɷj�#ƅc�/Wָ�	��t��h���GD�q@7��p��:}e=
Et�+,QO���
���&�Ӈb�.��SB��w
A؁��D �8Q��apj?�3��4��p}��`�U��
��������ƨ��|�`����׸G\�����&7�?�E���n����0�/S��7�i�K��2�_v
�aA�GqR��:A~8
C�?���-��T1��)p��BF��Q�*�q��0��a��)8�8.�?��
l�
т�4GV�3u�{h���*ѧ�n���G���v�Q����^����v�����1nK�q�)0�1�pBa��z8���¡���
h��A�j��n��S�.^�h�}8�06'R�;���m����-���	��&�IGy�~W7��0h�8J�����'�M?Hf��������sD!m���U#>��v�Hm�O#�"���L���e�L�_�?�;�?x"���j�%��e�>���S5"�;�h��HR@T�n։<������OfM���z,��ߥl/�4S��MjS�i���ʕK�Q͌�px��;�+Z���;��c��-&J�K#fw�
q�_�60���W��g�Nnw~�)(��}>�N.�M�c�i�����Izr23R
7cp�V�M�4�L�Q�[�!����W&o|��LĆOhśLz�'ƫ�V �?��>�k�z���h���U��p��=�ruI	����o$Bz2x)s
�C��Q>&�AJ.>pq��@0�P��b�X6���\K�4���>�=�|9٧YLQ��`��
�!�g$^=&Dѕ��=�a���`#w���Ii$���/T����Z��h����i:$�\r�'�v����ߑ�L8������͸dQ~���E�‎iL.„��GWn4���es�5�}d�V�x�v;�C�T���'?"
�� f�S����m��R�j5��0�E1ٽ��Ty�OA���aXJ�w�`b���q�cܹ޽���^/�q$�g���S�*�Q?�[����`��:��TՃC�(���*&ձ]l���!�Z���}��z|I�g����3��h)���w)њ9�P!^��?��叺L�}娾�m���J~��zg��N�ڶ�i_���Ĉ��]>�.�~���Bq���"�pDS�1(�˜%ήm�i
�z5�
VM��SB��QS�m��o�Ly��,�
�G�P��y#kg?��~pȳ�(�]/�%���W�zB>L���: �{�Ǡ̢���4U0�4���
Ĥ��
=�wpW3J���d���}h�0�ʍ��fJ'Dt]�>��TP@�:b����q&;W_�"�&!�:�<1�o��ɚ1��4�䳴	�)��I���?���E.6�A�o�54ݚ�

L�~��+�X�ą'��ct=�;(*���\>��,ơ6���hjn���;��)�WD�8ߕ���Mb��D._UAB��Y��.��<F�����pn�{���ɗ`_�`�zO�����(�6�n��$`ڇV(iMl��h!!<bO\&�_1H{77�X��O�:>��5s��X@�P�Ao���/���`��^F��\5�L��l��Yu��$ԓ��rgdT��b|D�mt��h����i�k��K��!VCLln	��XA�>����^�PfeM�q΂�P�qt|
� ���OAF�)X�K��&:P!|�3fo�)��	��`��{����
�DC�3/"�`.� Y$CD���
����
`�q�~�f���~�py�xd���@U��z,{ �h��J:@ᇂ�أ퓠�[�|������I�E=I9��������DU���-B^�/jA]�'Êv�%�ؕW���! ����)�"���; ��ῡ�u��h]��ZX:V`�M8���<*�%a���@�h�/Eb����AR�wɳq.���|#���f�]�O��N�!�i� u�]n�7"�{����2�`2y�;�һ+cRU�r�l����܀E2�����0e/��|��X���Jb�U���`WƼo�c�0a�}`�XG�ٶ�1�]ȿ�=���&!Wv'�:�a(�%��v4tp�j�{��
���GD̈́�K���_�-��ֻ�X\�a�c�n7�UdL�'�	��k�X��û�l��ߠ��B��=����	�/�GxՍ�bn������~g�r%��0��z�&Y��	.�7��*�C���X���=C=\����C�KO‘a�ԍ½G{��Sz��F�X
�Da�.�:ڒ�΂�sRN^��1GO��u��?f;��+�~q�N8��/�����jp��E	��G����"����D?[���f}eĄ��1ї�E�*P�f�x��� �L�)
!���T��qr�/�Z#��ܼ����x$p�l"�/�iq�von�/S�A��=��0:�6�����R�B��H�g3�AS�!��r��u����K�����G�i��Q�xfM?f#��7��@'#�PG�a6r����
��F�R ) l���-#>ηҀ�x?ĺ���+s�*j��;/��L
��q_l~V���/��b��Z��֏�7N����h<y�ٰ�>���8�/��psd0�6&a�xK *��2�W�|��G�A��3��Y��&�ü��лS�4ߖ/S��c�	��R�"xDQn#�b��p�2�	�^�����6‡�z�p�Q<���ڔ'w���`�V�vТ�ì�g6ALF��(��x5�T�[Q��[��3�O&���̓ׄ���ݦ��ҀP�'�J+��|؟�
Q�y���7AT�Y���4R�0�fgT	e�,�=�JŴ�w���w�C���XQG�3��{��uf)'���z8�A�3ݒ�_3sգ��F,�/vєR���p-�/��jG�`�R�3Y@p����c������C,��6
��G��Id�@<�~��-hiJ�#X���I�=oʉQ�B��n�5u�ߒ��?�.fڗg���$'�nG�iuz��R@۰(�J�����^2x6!�I����lz�am���U���p��|�0�~��	Cw`>/��,L,�0���?��)�+�˃�O������>vW��'���nNO�8�����J����������$R���sL��wY"�1�	w�bZ���ʜ�qoK���SJ~
��>��۩�
��^��1\%UU?75��LW�$��FF2�/0D'��F�:�dT^k	c�s������%j]���bl��A"������3\(V�ڐY8w�a�is�	�)eY_�e�Q�4��;��q?�c���M�7'���b��2���"d�l�=����_
@$0��-sV������S����b
�Z2I@�V�h�3Eރ�x�u�I��i�x	�4
�V �����7�r�����:�*�e]��ZG��օ}q������K�Ó)Yծ��;x?�����8�A�w�?���d���H]j����C�!%Q@��ms���}p�J�O��#�����,vJ���]��nQ)݈���X��V��bR^��D€��k���`~��7Ǘ�������8��5иX��<A迹�9'����s���P��,t�
I�*�#}I��#�p|��|{dp�?�)i��-7'���=�nm��E=���v��N���֮a�4�e���C5����9v	�v�U�0�x���W*���˜��9���P�Je
<@ٿ3�K��u������j�,W�t}q;q�0��B��>��Eΰ���g5�œlS�鉟��k��QZ$����i�2�^e�0X�^���s��(!1AQaq ���������0��?
�1�Ňcp��C�dq \�;b�
��;�V����{l���R�]����
��bڹ���	`�2�ݛ %�'$��^`�|@��!	�U�q.��d�e�+Q��_�{���2Ҿ��壡�uz*�#�m���I-�0��=Ds����ܶ�V���,F�	p�>rf:����?��A������6�F��r�D]�� 
p2�SȔ&Y�#�,��
p�9�b�yU��bW.f�-Bګ!e�`�}̿��E2drB����a��v�3L$��8�.�@2�ĻiV���L���W.�K�0��T+=fh���/r�T0���Ik���	�n-���R��)"4%\�p����b:�b�ޢ�e��8�q�d'$���h��΍Cl8fe]͗�5�A�у"\���Q���@��@�?�wz�X����\����1a��<9Q����T?R�Po����4�7����A��n�6��(�j޾x��B�TAB5�ܳ]Y�s�,�����nb�L�T�,N�a�e��q�u�}#����g\�;w��u?��C9��+:�L���Á�H�]M���4�F7}�j���d�<B��U�7�m0�:�12ۘd?q/�0�a��r��0JK�2&�<P��U#��, ^ d�n��
e��j`���|-f'�n��c��s+�%��[�mp�!�#b���1�9���'����d;��@�<��s��
���*�9%xh��pˊ�eJ!�!
1/)An�F��XL4L`��vD"��B��dk�����f��"��O���O�<�3eb����	B|&�½y�������4�Ws:.6D|u
���	!�+�*�;�#�px(�…G�a/�m	|��M�e��:�yA��HW@w
ڠ`�h����g�ۯB4 Q�l_CT09c��U�C�g�:L���R��
�-
�
FӤ&�0����7b���H��%�r�}��rW��P�e�a���̶n���U\V	���]H��j��y�&J>��������"�3+���IVcz�Ui��r�T@��\332�3ae���,'�psFa�A�X�B���MͣЈOzh?�T ˤ��n�T%d�Cp���K�^MQ|GV�9[b��#�R��,z�����^2Q�ܪ�������*ݙr�2�5q'b�WH�G��<�߸>�1�K�D|�c{���f��WGWX�r��B��4�,�#J,�s�t8��0n]"�����&�g�(n�(4��j���U��
(%�v~d�H�96>N��%��a��^}^C���/��ٳ��D��t�������!�e5F�����#��?x���������E��@�fH-	���0��:Ժ;�}��O�&�?�7H��^cJ��1)�\0��F7��˹�����-�yz��Gclj�m����M(,�Ad3#/���<��S����s����F��
����w�q1.�2훝�ܪB�d���mx��@����uսC�%�S��G3$t-�9"�n�>`��{��<{
C.����%�5w?h\`L��������^�H@P�C�X7���1
j��]��O�0t��������lo������1�e��u)u��{	��'���j�n�b_��.���l����Ɨ�=�鿤
v��v#�Z���ɽ�������M'@���J�D�b�X��`�`�Ek���F����D��ce���l�:��%J�TAa.��b(,;�.����t�@6��w��f.���ްV-p(/pZ�j40����FE
�d%40�~	oD�E1H�p�kc����:xV�%h�B�b(�jL��߈%��hƦ� 3�!��K��X���	|��#C������:���T7u�ip�͇���&�5Q*�Q6z�IK�ش�;-��2�w���23e��A&ݗ����<טAA,q
f?��7Q�O������c׏�6TK7��� T���g�Q�ԺK?�劧-@v��W�9��(ƣ�����_�&���E�4���Z_ݏ�V0ij7����`E�֚��0��k��=�aaO^���"r�'�
Z��X�G��;J��p�}��b��߰���VD�)�N^VW���,3��#�J���
AVC�*��!�-��b��!�ͨj��G�)g�yk#=)¯3D��1�e{f��P�QrʗK(�D������2���F
bZ�M��fbK�{(�Kt���.��F�eS�����.�2ٌ6Ce�fAp��ݛ�T��]w�=�\�Ja�!��!�G�3��o�)H1(�{c��
Iz��)h,���.2��g���+���e�N�tT�c��*�z�x�������A���\1�����#p\ݔ�Tφ6�G�8˨�n�}�P�<�b�V}�����z:e���P��D�8H�)h�W��Qk��	�ͪ�-�[���i=�d@ZTB
��-�
�7jhE����H�\�'��R�O�r�e!��b
Љ唌u��o0"���C�c��C�Ic2E���֔���(Y�)�H.^%�3�8�cŨ�
�vf2���V6J<�q5�\�1�� N�mV0Ȁ1_�c����m��j�\p�ju���#����e�L4�jm�a�eƹ|A"躨N"�IP�ڔ�^,�ܲn�q�	f��b�8o�A1*�ݼ�Q*���v��Y�?$+4'�����U�R���D�I��N�K�*�
��F�=2��Ka��B\uP\л�0���r��0�"�)�-�fv�'IA=YCM��h�>�F
(��p3Kd�_��O��@��b��P��B����Hh.-di���;��%To&|������tw�=?d�R�~����?6���!/��f���?ye}���Ψl����f��xψ[&b+�S�d��ڼAV��Z�	B�Bb*�^aг�Z(>�����:�̡���U��@t2�f;[px���γ�j�j<�?�Fa�SݐT\�
�]�3�dGp�]�3nb�����$æ�)?bYnYXAX�1%�n\�u(�V���c5��%�`��8Jy���g0���/�|��ጾ �Ka8��~�)Yҿꕞ>�RƔL��ԗ�S_1�W�z�c���ޡ7�K&7$fb	����TnkԲM\Ec��m�<����o�r�(��+�%a�|pW�`�V��
�	-M��xm�ڪ�&����S�cL%K#E6ש�cT/U�މ���,o�+_��b\�_ԩp�x,"y[c�L*!�ͬp.`\A�\0�2�Tn�]X�Z1�Y�=�]MB�t���57�30!yf����cR��n�d�d��+����'ĥk�˨�9�0&cR2�~U�N�a�8J;^e���Z�e���DA�bՋz�-W����q�!`���o��K���ʍ�#P�E�G3"H���D5Z��Nٔ2b5>��u	�G�ˏs2��b�tu���!�`%OtJ�Jݹ�3sվ�W��D�DR5*�d�������>(Por΢1�Jǩ�M��(U������ 	�9YS�=�'�2lQ:�%�ʔYT�7fO\���=��Y��ݴ{���(�Lg] ��r�zjQ��Ҵ����p��-
��}ˊ�cߙ^�`�ڳ �]��)�;��L0�;���įk��N�w���:m!4�K��`����\�˧�Me�U^����T�7qx��P[�TE��|����H��gs㒺�!w�*M�2���d�^"uU\6~eƪW
�q��f
�n�K�U�1f?���
L���s&VneZe3;�`u�czf�\N�2R�P�&���b��?���V��/'��w�)��x������r��K� ��-y���Ac$k������J,HwR��@"��W��-��i���]�
�@C�K�c���Y$�vPb��X�.���zQ���ސ�a��4x	�?\XR�15=�7+��nU�G�7g\�_gJ�=Dʉ�0�]\e��T13X[�п#G��%�/s'1�=�������2���@���{���-�S꧔���D}�����ar�U�i��&>��Ŏ��2�T�(10JK�#+���&<�g�o���dJ�̾X����f�T؉�
�9�3B��_���]Ó/M������(T�E�V|Q	��U�#�pi_TXX�#|x�	番=��R3�)�#��.�iY�jb�-g��<�������}�[��<K�/�aΐ���6�*��
�/ء�Y�[eN����bo��u0�DM_��#A4���N2j��x�gd����/k�2�Jc^��s��M�^��y�_Q��~ +�0�1�b�q\�B�(1:��%�%s퇢�2�D.a�W,4;��GqwI
��r˺��I��OLT$*���M�<���
L�7d ��a{c�w	Sw�����ml��^<�5E���	��;��pX{��(v�/�)W�eُd%Q73(G�S��b"�%#���gq���Db~��V�*nn%ձ�Ĩ����(���9�ĤVHY{�֢:����R`K@+/�6jɈsD0�@�(���,]�ts*%i�`��r��r��/W���*\L+�z M�t`�	��a�o�&���j5��c�j:p�!��x�w�E��ω�-�%�l��M�>Ќ�lc�b\�?pm*�a��׼��]������rĔ�d
Eو[�R�"T�.9$��e(��"\l*�kc���[Pn������c_>#6����1���t3
��õ�>|�oe�JB*9CP0
jya.�	�gh�Q����P�Y�ڷ�����ߴ�!y}J�SO�Q4f�J�)��0�~߈n񸽬����/�)	#�C
`���,␽�Sp3 �g9W�}�ڸa-.唺Ƭ����bԬ�!/�BҒ�Uu�i�o^#�3q-Ǜ��v+�cDE҂�.�
��e���؁�R�d�.M@�K%�2��5Bu}�!��%�WJ30wQo�o�f���F��)��_p*eu
��m3��aŖ�?o�l'��,+�	���IS=QxF��pP/���P����6�El;$m�
���U���_��Lw�T�n�	Q!dj�1�����^fň&v��?����E�ļ����)����+�~`�::|Er��7��*�
���k�K]���ʔ��Ch�������X~$
;�@�\!3&�m��:��J�aC�+]��>%���Իftf$�������w��@P��j#��wK���\q���sm�Qjen�����_sqjb� \��q��e ;�!�@���]K��^�Ĩ���g_��EMY�G`AǁM5�yQ�R���I/?|H�{����b5�Py�i�l�Po͒�>��X/H�P�����w�3)/���2$h�ߞ2�YNJb�!ђ������
��m�z%��;	:��Mf�"5U�
�� ��h!�P�'�1a��Dv���R��H�%��U�-,Ep \p�3+C��3m�&F0DkQ��԰ơ��G�FUآ`x�r�*�:f�W{P�Ĥz�h��v�PJ�7[y�PoԬ�P� ��a�t�CU�dTW$�X01d�a�J!��PQu���u�u�7���!�����4�h�5׈�(�ڃ��C3r�g��<;%�),�Ԯ�D���<��P�e�G<������JY
�uf?3,�?o����>!�.q�{�W.�Z�y}��V5t_�0���S6�qjqd�&pW������r����1ͣ��_�e����z1�>�0�N^�Y�Bl�
��BS��������66�ܤ�,W2�0
c1pC�n�D�è��#r�0�\½gdbm�r�E�q���H0���f;C!�jX.妻��q�1=�b�ܪ���&*�	���W�{�1�`q�pL4,���e���̬H�Z!��s5J7Ѱz���bX�Q�H�0Os���#�KCq��Z�	��l���{a�F�/q�o,+��.h�����w����7
>���ig�
)2�x�
�Y<Ů��[��}���AOxO$0!��U�#�0Ĝjfm���[�X��۸Vs+���L��*E��KS����f�A�1	����D�������3X��PA��x���u�{u��=_���5:�qd}W�_Y��5e����f�N�~�
eLvX�[��Y��~P�'�#��]�����W����}�LxA�Q�a�t��"��?��s8���j�N/�%�GD�=�ZM�Q��
�W͢
#4���<#d(�기J�O35E��NQ����\�3��uW�Z\`�0rC�?�3^f�4����k��i��2�� G&#��Z,�\��"Ғ���0.4�š)5�.2�j���o}���Ƕ����-v0<ž�x
�6����j�3"�
 �`�'�/7;�J�KNΦ02\�"=CK���JV+��H�U�%�hG�-]Dt��E2�j�3�DU�\�i���s���HQ]�] �m#�H���2�
�E ��h/�CU��0�1h��z�s��]xn �lc=ﴚ�Me��Wy��Q:�/Ԣ�U�AN�@��+R�f�Sa��si�/ejP\KLIC	�F���+��֗
�%M�\EX��(QB�ɘ7�v�r�N���}#�TL��R�R�M�R��M%�����
D�-�j�hn�<��B��JD���.mx��3*������R�n�_�'��&��
��!�_x��U� �P�.x�ͬ���	�OLTz��"X��l�����]�ͽ��.R4�q�d��W���;������??ܡ; ����.�rX���f~�d������T~�|�*Z��>:{����J	��嵇��F�T��QD6���Xj�~$р����|�q�5n5�$l��D/2+���cH�H���n`�_�(3��T�X�G�+	�n�o�au���Ĩx���z�N〩"���qQRAibv�-̣�"%�g�D�
��>D�F����"���Pn�p����TJX�m�i+%�.B��2���,��=zR�p�Dd�\)˭��BodJ��	l� ��1ڙ�Q�8����K]u�����TB��̞����R��73Bdɹ` TC�S��U�X�NE�F�ȶ���֮%엫��v���W*T+�P�Cas"<E���];��L7���Mg����Y�����:��P����*��~8h�w�lw�"�J[4�}
�?la�>&��n牓�e�D�H-G���� �p�RC_I»%%_�s���ܼ�<��0��B,����o"��^�"%P���#4���9����<��� `�Y
�6j���vTQ��P���Ԣ�K6�1�cF��O20�ψix ����wq�b,e�hp�-
?,�����ψ=����#��hl��[r�iJ�. @"ݯ�L��SL�V���-R����b��ܸ:.mZ���ۃf�P�A1�$��*/D8\8�kl��i���{�+�̹Qr5��C���z���/H���:�7�bZOW��C�/�����-���V�k�/�m��z�V"��jc#�
����B(�ۀ1�;�3p̨@�*�r�}Ɩ1y3�'r�w1�sBR�]��d�@{��5D�8e%���4rXL*�������3j�<T�Y���,L.%n��03�����`2ؗ�@�3.S�p!� xQ�_I��L�س�)`�� c�Imz���e�u��FC����\,h�`��Hp����)1L�e�IG�lMy�#���������
>F�X5�E���q@	�,�f	G�kH!�:��{�i���p���[�����R����iS�����ok�0K`�2�A��1��k��k^尙S1v*[��#q7+���&�j��-�c�F8�[�a�!	ܘ7�c�u3��-/�.'�<b�`;J,0�<�.aR�<�� -u�`���CI�F�	a~e�k��T[�K�ޤp���5��IN��{�4���U9�F*?�4�l���q����,K�`a��!p�3"��q3
�)p���ch9����Ꮈ��	��U;Hl��*�����e,�m@5z�0E�Rm��|�+`�d^�!䆡$��\57��H�u�k�U ��&_�LLy��
Ei0��t؆@��w��*ׄB�H�T�%w�1팹�\�����B�&"8����љ�Aw3xK�o�fY-��am��4bZ�ˊ����TKn?A`�}:A��=�=�,2�Z�XG����w
��E����u�T���ʊ*c��"#�X�́��	w��J\82H(h'[0���Q`���l�/���1��EZ`!P�G#G�[�&��t�����Kv&v�9�b�z1
�M�0���0�X0�֦�@0;s?ï�fHَ�NT�	cSQ�[�J�?��N��N:8ܩ�����.@L@�e��,{"���#J:�[�x���!��Q̣+J�]@�T�S4����*�vM!K�O��2�pIJL��������#�6�m�0��}�T5����n/��9b�A�p�V���2�P]��F���p��KiO��T�'|�. \ze�E�4���U�}FY�j)1�l#�c�%fXL�ž$��Mbte6���v�}�	^�c�<P�1��ȴ�
/}�
�u�V�P8��&�bf%�2�"��QD����o�tq�٘J�t`�`�����j}���<2܋d2!� �a�F[�_>fM1k�_���	��)�&���Q�X�_-|��U7i���� �1|��@����A;T\��iu'bU������鸐�Q୙���`��,�v�O����a�t�1qv�o���iV��!�I�S3�ч0V�(u
%
�/���
��X)�Ll6h�sa��>�U"��5�{�s�.�7lv�Y��r��X��&/&	����*	F�(���a���v�C�9�Y�|T�����:C��K���ȳB�
e�eщAM�����,��"���e:!��S1�����GMT{^�u�1Te/�S>d	iK|�+|�Z@�L�V�/�؆�B�GH*-��J�qE�$�`下�w)��nUA�
�w*��J-d1`��z����7��5Kr��K�)8KJ[z�?Q!�NrY��|
B�]1#��s�0Cw	�	q1US}���1���([0(����ҩ��*�Č��F)�ܨJF!�=�X7y^傆1Pbt�	��#�c��0�3��i�Y�К��y�J�*|	�4����ܳ˩w�P�z&t�`]D��2�[�E�=q	i��5��2��0%��30 ���(L��S��7�_���*7+{P��-:y5��K���#%uq-Ѓ�S�<0𲎘]��ہK�8�+,�+�Z�^G��˰đ˷sА��Lqj�o�.�2@}�<#�X��4��Q�PTqZ��f��z�`��e��(ƾ"k�1s;̰�R"��5О%׬�P�Ď�#;fh��0�FdDf���Q��d��+gC�+> 
ԫA�x$��Ilԡ`�TU�L�}����)��2���~�[Z�HA�+d�
g��1�P,vؙ5�:��<��;9Aw0�Yb�p.Ť�\�*�%�P0e%@�	���ռ��e�&���lcX(���8TY��Q�)��Is�R�p��e���DS��T�f����89�Ƒ�&=�gM���;L�5��p��w���ĩ�[?��Q��Ў��SI���sN�8H�|�d ��{5/����t�%t�O�,�-�'�G�09yl��E�V�7.Tb¯��
��)�� ��Յq78CHjl���AI�L����h�VD`a�r��c�A�U�l�FRA�pN�E��1��(�2�m7"�P(�]�Z $MODC����c��(�
M0�*�.�e�<�x�u-Z��H�#�P�ZA�_��4����\M2T4j
�*R&<�=��;��*[�;c¸ҵ��а���A(�V	�!l�7ƌ:�
ϟ�w
��M�dD#����a���-tK���CA�0���)Y=̇�J���(1�J���|-X����Y b��3��6�S#,Jb4��zpi;�T��f�B�ƥ��E�ܲ]���n�Ή�����X0`<YܪWs���h�"}�hr�0p��i��u	�L3\$%Cx��
��z����BY�
c,��q3
��sa��0�A-K�	e]B��J)���N�K8`���k~���u�r��w�ԛe�g�&�����`�	��q��U�R�U*Y�C�fQH}��[���0�FD�"&`�K�j��$H�P��W�=��D�\�2���LY1F���0�&�/m�d������5/Y�r���X�)��O���73pPA
b&%K� �E`�D,�k)�3<���%����dMp���Mw5��6��9�e��y/n���nB�E��o�.]Eg���)`�{A��b���؟�4�O�$E�6C� 7	����52�1�.v�ƫ?L$W�o�
�gj���h�IE�	�$R����
0PQfs����j��.)�g�*W�|f±P0۔�J�oUf�R��)�ԯ�[%��%����e0e8a]�S�by�Hk�R�wp:����Ի1�AJ#�`�{HϾ�W�n#8@4Ĭ�\J�
������"\ɹH�ܡ�jb=���D��ѣl�	|Z�.,F��ba��2�!���X
E/8�c�m"���<��,t�C��ĸ'�QJ�P���1��I�t���"�ME$uA�`"n\�G���.�ϡ,��c��$���:����@���
��b	Ƣ�36�Τ��$'Y#Е�h�(鈵Q����s4+���E���+����ܷb^ ���3<���D8��duQ
 ;�%1	f�1�D��LaY�f�C�;�;��߯�}��w���(A�d�ʲ{����o�x8���p� 2T0��54������v��(�2��x�A���4
�U�l�0��A̺��>#6��c~
���r��Z�T�3�G1��(u�"�_>?�����G�ϩBvQ�3&4w,�P���njo�P�£1��^��JH��"\E�z��(�G=�r1��@§�R�u�h=��gte���F�P��bS�j��mb%��Ɔ���t�0*a����(=�`�Z���+VĨ�����T3��s	P��sx�\O)y6�d2�Z��Ĭ]�~�S A�U�S~�U�ܽ>��|�����g�?`��;�����1��W4�R�t�@b6l����&����wj�"��ԥ�������Hb�
1�,���J�Ø,���9��Ϧ)m���+ui||bV�@C�e�JױHJС���2�j�Y0��۝kR��qͷ6�z��"h��@k� .^�Pn�LV[�lf�$��cbV`��e�"̎�:K	A
�"�QZN�*.q3�iU1���c���1�Q�’c��&
1OS0�JA��^�DaU�wV�k�i�l�Y�&LC9ҖIQe�?3�����×���=y{�L���
�
z3����w�7�4�����;���_L�F����Eb���;���C�85*e�'J-���Όc���qR�R�te�cF	��(\�`�p��$F>�6�l='_q���p@4�K��B����I�o������3�z�(�4�^��̤`e3�L�)u>"�B�ΰ��m[��X�Yp�5�bwj����QA��)vy���0��e�w2�!��T���z���L��k��S;���f}���5�.��3 ��W|p��W�Fd�\aQ���3	�PX퉔��,��F�8�!!sX^C��ǥ"!�cTU�+��Rt�����?]2g�ܢ�5*Q*1�|�p*_��d�mC��b,�.&![6z�\�J�As CM��ԡU���EbRJ�DG3+S��l+�����U����o���,tU�c��!�Ľ���Df��6�It5O�g4�?>g�F���L��hSV>#�@�?�Uq�|JB#���0�0nbel
�$�Y�I�]z�R48�q��\u��u7���g� ��{�7	q]��+�6�,��@֊X3Kt�u�Ë�INs$~e�r�,�,�\4su,;"�1��;�c
jc!����U��U�������D�
DC�
��*���b���h7dv"X4j9�(�1��RR2�L��$P��d�猭�xB+<L���&�(�����؅��atrr�O>q��'
*�|�������l�_����[����WA�ϨZ�(r�ϟQ��qLz_�%/�B�;��F�cc<0%wC]�耯�5,���O��2�9ai�*��̌ǘ2�]��@���F\E����f�dTw���0,u;%��m4�4g'�W5�X������d�Ò�p��D����W���ʽX*�eT�
M1�i�1�Hn]w*��	Y	vP�0.�e�X�p;ۗ���@����?����Nf(�,o���F�L������F�F��XvY@��D�v�dT+a�/	��B4e�w�Z��<�UJ�R:7�%*�1((�+�
������cU�kr��J�mF~WN��0N_����_M�_4���{�O�]
6v�ڂzW�
�[���\��Q�|GW�a��/?�j�����7���MLc�5�1
3���*F�!�C�"�PE�DxF%
f�RޢH�"�;�u%�O��w��e$7
�J�).W.���]�E����&M��l�� �m.�Y%�
;>��<+���l��#Q���c	�����\ˣ�!��?�z�~�?f�P"�u�'�H�/���}�^|����f�v�Z%�D:(���8a���~�?d��3!����1�D]BL����#{�	��2�
�v8��g��
0R;�}�k8p��*XJ@D��P��n��-��Ȟ#��z���K�2�=��"=����$���z�r�������(q��gH��(M�뷂O���+�qh�qĭ�F�1�j1h�͈���sUSE�^�0�Ox�/��F�P�Z"��	�P����#H��r@>���̕�u
\s�E���
�VEe;��u�D�B�2�}B�i��8�-Ѵ�O�B�dKZ=��w�?��A�q/ffP$������3�y�\<W���𙏭m��
��z��KAy�[���v���wC�\�����p��%pgR��ऴ�����T��.Ӈ2��T1Sn(�J��S��r�p�`q��a��E�1Z�%��!�Y��V�z��k��Dj��<�j .�G����Q���c�!0)�"@P��-�z��J5��{��mq�CU�Jx��?�!a��n)s�썑W������™B8U�L�Q�knರ����ɗQ�E<+�`��ĉu��Z��
�uQ���?������gm��\Tt��۸I��f��Pgq�hQ���S숨���fc����?	��^�:[8��<�8w�ha�^O��ӿ�?��qM����s؏�
�'�����D��g�^%)�;`��bb#̦P�+Z�P�e<\��|]!9;���Yݾ�0��t]�?9?��p(���QOO�vo�["��߿��YS ��o��MVoT��u
�C+縉��n7s��Tk-��(P�m{�$Te�*(�+57J. -˲T�Q���_�� �6T1Mڽ�́�u3���?t	�p�C)��\��<�u=qaf�”���p�16�)�>aQS�S�i�E�.+Ե�	������'�v�\�(-f��Kr������S*�ĥ>e���@8!�*t\P`��k�zKi�C���@��[G�
�F�_�c�g2���bhu�Q�pN=K��ʣG<�.+�#���*�*W�Vgo
��m:v��%�EK>�)��/��P^Ƶ��.�� �E��*�o���/���H[��t���P��ypRa^U�+i0cEƌ�X���m~n�G�.^�;{a�p���uϺ�7	�XuDJ��S�B�׹�q�~
_�Q�,ÎAܼN�b�����y��x��'I��6S���Ir��i���ܛjg���EL�YU���fT����Pt�_E<,���UO<c�D�S/��� �@�=��0 �7(�j@o�Į\[ ��<@���Kx]�\�n�B2]ܨˆ��m�ܼ��"�.��Uc������8�K�5���F����~
����륃?0�C�B^��o�a+�`��m���G��1x����AJƝ{��v��;��+�J_�W{��8���SD��YR�Z{�z��giY�B�c2���B��>���\+��T-YMB�zҢu-���D���0��5jF=�ß��O��-v�M�˅���\�u�O�6��8����mc�I���M(�{�
���dt�ի-'�gÇ����IB"V���y0�����A��4��ڀ�!���w1a��#=@y�gs̙L%�oR�j;Fy�$���E�4C�V>��&�1�%��1����%���Q�`����"de</��ev��K.��3�.W�U&HQ�_�z��}��Գ&O��5�]CY8M*���Ղ��A;��b[5�B`����5*��/	a�c8fU(
��`w�u�eB�.�&���K 4���i��fR���a��2�����)�[=Wr����@q����h��쳔�]���-^���YX�ї��7�v4����"��}�Q\G�v�
�芾�=��~Nf���j�O���S5)*�8`�ˍ»fCs�
���*|��ڙ�5NH���A����
G账��@������߯�ܩ�a=::e�x95��f��*�/���0�WS��~�Q�/J��D2��!�y%
8�(\X�E�b��y\0&c���Q�1�
!��A��!���(�a�J�����RuR�_H0�W-�4ۓ��^(��K?`h*���R��x3��	����g@��U0�+�UtJf�׏#��.3���U���X8\&��	
�#�,T��L�pH��2�%qX��̨F,�a*������›�%,�>�*eIU�JGL
�K�\ =�X h�(Z*�3vED�����Y'K�<2��u�b��Yq�Lx�E��V;������ �pb�
i�f"3�]��`�Ю;�|�+����Z+���(�P�������O�lj��x!,�*
�fc�奡aQ<B,�`�����de��:��#
E�f���A�γ2������5�N����pEL�،���R��T����b$B'+�,�q|2���
��Mb�~���Hc9
�(
��c�p��YV�ltś�2�83#�qt����S?��@>���aCS1�r"��Sf	�3u&���b�J����(�ㆦ����>���QFn�.3r�E��Q<!��i����R�b ����q��Q�P�1H�
��T3�&�5�rx��
���c0k�Q{MV$r��Z�x�x��E^r�"��aXl���,
�]���S�I�/�w=c��n�L�	��%���qզ���E�`Ex��-m�)�̌lӐ@��P�P����/�r׈j;��G0?6k��E|����KJ��`LQln�R�@C���|L�@ �h��@�)�q�:��t�{����0�o(�qԩD��#Bpe�l���.ӝ �3hcͬXY�
]j]���7�2�l��F��J+��뚘����&%��%���Z;�L�.xEN���4@Y�YC��ʚE퀭�$w2��[`C���p�!p�:��h˖��&%CSX,�R����o�P�Y�M���@�x���@�&8LsR���Rp����+�۠��,�(�F\r��1_@�p?��i���3��#����*k�(7�Kߒ���
�	�f6D.��M�����f�뒥��`
W70n��L�T��r�"Gbc�����%��і����1�Q������9����
��V\a�`C\"��\rZf#yL�p�=r��,:���;c�h��.U�����x�HP���,ڬ4�X<����p�f�V�ua����18@�Oz�bc�Q�4@#\��
"'�bR��U`�q�\
L��=@�h�	S��b(��,fc�eG|T����gPe��52á�Ar`�.)r�T��z������J����-�*	�)x��N����ד�9�b�!#���!U����(���]9��l3[���&Sp��T�2�T5��שU�F���
��p#�:&6����������0g��<��K�
��,Y��*g�u-ӼAj�QWQ'�J��Y:�:��W��n0��KMq�l��8�5
�e<�nj���Bv�	���p��!��G�bbc6Ǹ�l����4�2���/��Υ��Q�ddZ,��w�ߚ\~ek����W߈wj�fs�#d�R�2�ƒ_	\.3��eÃ�뎘��0�����T`'y�J1f��D��X��PS-�Lu���B6�B2�"nB&Vь,���
�<fN����"J�8�a��P��5�NÈ�^w�߄m�,���	�<,E�r��c�t����)^!�n\�o��-j��,��z%�癨o�.Ȅ7�iF���&��51�m.a��(�ޥ
N���s��N!T�����p�nj�5��gC!��Q�5[��w
�Q���/��a�0})r�9��а�'��e�J\ Ar�d�A�._.Vq|:��&ǎF]^`CeC-����e 5,[�Xʼn�����9N���:�<���g�2�^�-�0��1�駸��u̐Mqp���b�z�̓+�md�f����?��C���-��!ѹ�Sh���YGl�K�PR<�Bᗇ[!6 �ȳ:J���{��`��h�.b�p�!M�!����*S2�����L����L�|uJ�˨ó��T8�
�.�;�1�f!3�{&j6����o��G!U͑�u>�1����׉ATc:���&���.*u��˦?e���Gw�}"{�����M&`F|E@�`�.5�Q	��@�U)Z��Hv��%�$`M�m�ڈ"@֧�@�8D>&4�:�� 9��
0�FJ��pJ��R�G����#���h�:�ԡ%]�6&a2�u�4�*a�k�'\�J&ؓ��i��D#�Nj
9�f�p3�8T>�p9&ǀ8WDt����
���r��fܑ�LOم��XF��-�l�id��(!1AQaq ���������0��?T"�CTL�J����A�J��!�l�54�
_�Am��(�@ؗK#���v�zB�qDH��\f�^&���'9�����
��jDFɌ�S���(�-Q��L
��%������AF7(�W+[��j5�U��`hj�j���1b�|$s�6�b������R�̹�lnm	LK�HD��
�[�����7l��*	�E������7�����分j#7�%��L���\#U
C�������-��]�
��mF��%\F�&�1����[~9u�
��w�[-y��q2�I�X,�T
�*��ֳ��T|ڠ

1�-L`�	t�7� t�;"*�31����Qp������U�m�<�^�FY�D�+.(��u����]N�1�3gL2
�����dv� -���Wy�\ڔ�[��h1~	�jK�B�@���P���.9*; F�P
$)~�l,������RLي��e���Hf ��~����?c�@�,��3f,�0�
��)fn��6�Ki{����S��an#���D)�5�gㅸT����T<R�W�
L�p��i����eP�,�.�#�D�Xnؕq	� �!N�\j9�Yq�<�ʡ�3ܺ7(�/�;#r�ԩ�Sz@UܥS�n�v���Hd����*-��>܌����b,��Df�,�̹�2�F�_������r�5�M���!��Hb�����:F�D������z����;�aK�4J�%��,W�L��;��!}�>��
�*B'k�c�C��XI|;~�[�{W#G��|�,�2�*�ʵ�P��@��	K?b�hӓxc��/�S���1e�Wh�]�a(�K��Qe2%-�Chh�H��Q'fa���.��oV�G^�dj����ń0e�z�R�������
\���a�7P
�@bc�D�Ի,��2�%!�j�PK(n*��P�qp-�qw�(����hx�1���lmj^0�a�fJ��-��p�~�-VS��������
���n����2�ȴ,D���b���+��aC���K������3,�:��(_:���]����E�ô�"�0�����=kXUz��;.h�k�u+�l
�q6���ԭ���6�5�AAE�}��r�dhٸ��X�Qx�]1fn\R�TS)D-�){�n;�S��i���0�s��Zh�u�:���¦�l%%�Ĭ���d�f����α5e
��=j�-B6*_���@�u5�[�T�&����f=D����8�&�"��J��"��1�G!��������^���FO�R�Z%��n�M���Db0��*q?��%�����2��,de��uq
y�4\I��b /�U1+����"e�.|F���35���4�Ȣ8>O2���F��%�
�N�0W��Y��O�_���p��!P���953k8���?
Kb𞘪,%�@�mU�%%n�-�r�*���*�*�wlH����+*H%��n,� �`s#}��cg�0�^��e�"�h��r�e��P��1�]J��b�������y#,�Ud�d�`��LX��0��1Ќ���8���[���bD�a��� KX- p�XN>�LsPD��2iA��
E_dPպ��P�h����Ӊ3� �eۦ_���V��)w�i������WHA�M76���y�̯���-#�,���j)p�Ev��d�J]!�fJ�sD�<�}�E��9�S�Y��P�̦��|8����}�LJ��Sm��|�c�P�HG�fԐB�b3c��r^v�����D��&슊����jM%b-���e�\[ͥp���"�0m!is3$-���J�s�!��%-
��u��l'r8�2	���i=�r�e�ƭB��hN�!�4ܼ�)��n\��AQn\�8_�v�b/T����G��QK ıE������,.�$�JR�`@��i�2Ctw�V�)��_��N��2�hD?dw,0�sR�)��įĒgG0{�Qj5q ���+&تpc�Љ���U��0�f�v�4�h��n#��TC�X�pKx��-�R��?���n?:�!����$��K�l�Jh�M]i�+ﯚ�#�=��{%8 DU�bӦ�ܳ;�}|��=>x�����,�<B�\D��D�J<r��BZ!�[�#j�0	.[-J�	�y� �
ʰA�
=@Hf�=��%B�ƝXf���bv�l������[�3r�
3�?@Q*"[�`�K%/����,Nh���A��b]A'
���<��H ,�����H��ʫӹ�i�J�sk�N�C���\�咆���_Ģ�� Ԧ"�O�*��^���0w(���Ac��%)(�-G#�����Vz�"]�cE���Q�y����+�s�]ǁ�=K�9�V���z+�@w�MʖT��vk�B;���rm�n|?N�5���������g���e��~:����7.��Be�LH&R%x�T��7�a%�<VSd;�#<�Ɗ�#�x� \�9 �̨Z
b�8��7e�P�ً�ȞD\�a.�l|Dž(Gx���s^7{,���%Kw��"	D�h˽�e�Y�h�ֿP����6?�X,[���Z
�R�U�'�ϸ�����*N%Jŷ0ܻ�v5n�V�2� �A-J�p�Qh�jW�R�KQ
���������b�/r�&��E��,��.��<�Fbm�C9]z�Da
V���F\P�����r��Ӱmt��Ak@��}˿��Y�ӏc�U��`�-�4�]~bZZpπ��K�ԧ�K�P�AV��qU-�0� .�5���,"�T�t��{eY\e��3�mF�e�A�� 
�lSj2� Ͱ\@/��_<˙��%)X��2�I��
Q
ļT:!T��T��d!ϋ�1�Z���\��梼1�̖��KL������{��D�!D��@��0�U�	S(=�9A�d@���UX�h:������5�u0-��j�S>��ƥ���cK��fQ��
���1xπ�ƒ�2Ә܍Ja �Z�PZN���Kh��s��Kd�nb/ʑ���9��;cq��)�������{:�>�ܤ�2�`�����.�	L�:��X�%[Q+s���ɳ0���F��b52'0FI�h�x�F]�&2��|1����c�{�)�@Q�ʃ�N:�Т<!X��K��m.*昭b���yk���^���)
�!��R0�a�Upq7
�	�6������)@A���<R�-���yD1�%p��;�ME7,��
��B��:��!�?�	]��7�Jg/��?pvp�\��ܭ�����:�Ke@3%�Y{pZ�VE�+h�2\��D�%I̫�^��h�/��u�)����攡b�ył~��_����0��"G� X��TW��
E��Fѳ�����5xHe��0,�����,fQu\�c1�U�.�0F�#w6&%A�e�@0p����wc���$�d5/aQbE��'�+�l^b�Լ�E����Y����¸��BI� �@�9�
��Lv��T1��ytj���
n��8��ƑY���܆w0#hdž����$�iy��Ƭ`P�/s�Q��Y��d(��xЖ�1*��sU�YX� 71�cX��X�+��0/Y�i����N��Xc4[(څ�a�R���Dp�r�s�-=�,4nQ��ģn�;񍨕6������5����R�
�(@*��8��.-h��Yؿ
��%Ӓ	��4̓2�.M��g#X��;y^H��@�&O�;Ҁ��QD4��*
%s��1�W)^�m�b؆��q�m���^�p@�B{�E;Zc�-h��?x��Oh�4�4��CxD��
ԍ�P�N����)+k3���(W+���(�B���1�#u�_(픮3iDw��|�V(�X���
�*�C3P)kD����%��{�`%é�j��0���%�
sc�j"�"$KIZ��3F(;�*� Ux�e���F�/�W_�7�����бt����
�)q�p��_q�����ٶ��̯w�9fe�@)��4Ԩ��)dYڠ#�t��}L�F٢q��7K����<�`ަ?׸����L�ULϙ���e�'��F��Im�P��5��ťSC��e�����*��)�i8X+��T�N�U��PԶ����@����C獉���)��0���KG
��c��f���b-
m��^wØ�Y��l�;��;�t�;ҏ�p^[����
��@�+O�7��U��"�f��w0~��_��Ajq3f�aϹQ���-|TOqH��A�_6%GyCU5���+�P�hAM0�i����5���w�G��[��]_޹�@�t@�
C4���S�!g;7e����n��b
z��s-%�u�䶗��}�'T�eJ��g��˱��lϘ2�Q��	��*+��\4�ς�[
gsg��>�F�u31��-�&���A��O)��q�U����jX̰Z��n]��Q��򊭲�(��u�Z�d�}<��\��U�aC7삚����|}�!lrD�.N"	1$��7E��tEM�SS�)��PbX�V�)+!s�]l_��dM��n��j!XNJ�HPF��;�xG��z��%ګQ�I�b������r�+�p_B
�r���
	�牭ͩVe��,�R��Ix���'���~��2N�W�>L9�ۘ�^
���� ,����H�Po����h'W`�b�`GT���r�\u#��
��,s
�Nh@m�lD�TF��E-�j��$vw0TLџ��X�b�+X� h�.oQG����`Ww��L��h�'Œ~҂����jy��B��+���[��V_���\¢�)���Ĩ&�C)�"ı��ܠ�EJ��c��wv��,$��L3,\��an
�/(	��L�>�CP�E��Yg��~��K��J��V�Q`��ǸJI;��p��k�
0K-������#J陏�6@l"���m��S��2i �!m�4�P����Lk�H��5;��DFI�6b�e3�Jm"��s�E��G�'�һ�ĺֿ���W-��G.���Dz��Az�}:3N�Ԣ5���P�T7^b �Ԧ��[���,nfl7*���1�l��!R�w96�c�~ma��yV&f�hP���a��c���?-E�yFR�*i���J�J|��A���֪	H�4��[����qʇ�,B`�R�P%OA=Ј�WƱ.�T��<%��~;G�o	�n�����	.`�-�*zb~�f;�!R�q7��j�
���q��~ �~����1�ɨbK��e�#G1���c_T��R�dz��Rf��P&[��/#1�'�75'!�5�@��<��~�&��ODF07�+#�k� ��0,��T,VE.����ĴW<fu��X#N.�c��&����̯�6���:BC^��b-(�>"�
�:�D�	�%���*1�1V�,UQ�T�F�\۴m�J�a�2��Ɵ�Z1��6�p��)-A�@��P�����Z�p#�v�W�����{%�\ܣW�ZSS�L��b�؇2�Q�b�b��?�OPF�FF�ũ:
�-E�Z>y���5�5��
�A�V�f����fF�41L��Q�(U˨�XaH�2��C��a��*�K����-��	��CpE�w*:�Q+/pC|�ʃl��.�\�=�)rO��6�!�.�R�����e��RG�DDy�c{YF�+��Z"���΢�IJ�Q�n9�B��%�E�0�=w��q���9Xv=Ġ ]���ѿ���P�Ϳ��舊U	��-�n9��_�����p�^EhMy��.(9�F"`��~PMK�jйn���c�7B^�̬)ʪ��`�%Ԃ��%o����k�ڸ���Y1�n������<p�(ˍf<�f[��\�vԿ���)�K,jV��3Z��)e~�f�-s�d(g��s+���#�`��6�cHX�fA�����R����S6�-�jX�j?�TW"�6��p,�_4Ξ�J����-?⡀}ɡ�U��|1�D*5��Ԕr%��bɃ,-s/ ���Xќ���	N�p�*��	����c6��@������	�`�*��8�*��^(�[�#no�_|Gu2�7��z�Q��\��X�d�����#<K��rnU[K��E/�
@���O��r���D�/�u�8֋[�R�RjbD�T%}fqt.�%��|2�.i�q�,2�vb��.R��1�X�sH��O���^C���u)�.^�~�R���&>cX��R�fM�n_$bx�b�P��@�S���2�kܰ{�%x���#C�5Q��>a�����u�L�����{�	j�Q����y�g��-'�%FGe��	Ʀ�i�j51��7	`:b�e��e�4}.�,7�T���/��fŎ�}��f��ͅ��楘�KĻ*�M\y�A7W�m���-�@6De�_��6�%0�ҷ�?h�T��&�YIN��`�J�Ÿ55��m6]K�/�A~){���TO�����"
XΈF��(��e����E~�+�~�	��lX������F���Q�E�f�"ƅ����/��(�'����T��[F��jtk�`-Mn��N��,cX$�Du<l`W���:�������/�~�q�����W������+��,�M�%-�
���Uķ��.dڙ���8�0b�0A����ɂ3!u�i��d��l��ӂ��ye6D�HS�w�!V�7_�!��~�Elzjo݅�ft��8n�&W62�6�C�0[�9�ҧڣ^�
{�2ǁi%ԑfnh��Y�bB����˸B�� *�.11�3@�f~�9�� �P���{���b�0��DA�����c	V%��$(j
�1����FS`�il����32r�P�=�tn��LW�0�W�[>
���K����?���t���@��S�7������6��s������ʺ�g�E�}J ։�:���C?4ɇ������}��Y�wi��J�5�m�';���f�_\M�^MQ�17�pO0/"nh�Դ��(i��	F`4S�>Ma���w,��e�쀇I-qx�.>�jmQ��@�<�Q�T�E�}��7|��	3���)�D�+���[&pӎ?����ne*����Gr��."�n nh
�����2����#KI�a�%�Y�:�CWla�ɪ��R��B�C*�R�5c���L�H{��T��~����UFdf��W	��4�u�;�O�� q�K�1�/=�)%�-��,����ߩv��:Bd䖷6���]�=�+���2x�'`p����n��-`#V?&#l�5�k@�,�+�~������C�⼭F4�p��tj7�^�Ţ�X7	m��Te&*��i�u��D3���	�Gx�y��h�R������N�d�¾p�w�+r�8������B��Q9�Ķ��b򵋕�]�����������f��s6�f�N�ơ�>����f����P�!��^�c~n�_U)AlP��Cf�j���cJO��	�d�z��pi���}�m����[)@bl��F��̠���K�w��P��ܯ��T�1L���1����n���s�֨�N)�co����-�H��c��lJ�R�E�[w,Ʃ�!��D_���`�	�g#?��
u��-�:��iqd�D�#�Σ�����?s�f�}���������[50��3I1�x�a�\t�U��TEAָ%�0�_53���+�F^�l2�,/�Ql��%���F���Ơf\r؈q��w�1�JTii+�6Zt�h����es�,��zl�O�Y�������n��)vWw(��z�B����>3&��T�I�Z�U+�2�H��	C�.
Y�Z�D�i\P�~B+2兂q�a�����Xq����81���[i{����6��Q=m��g3=K�*m^e�wX�0�R�*+Q�l`��xoGF"�jc�����@�u��f�PxV\ޡ`�dUrK?�l��O��&��[������_�AV&"B5d�O|ư^|)�G�1x��n[���%����U�#�f.�)�{e��V0�f^��\LiPH�"�Q\�?F��J�E$��ڔ�y�k&E~���b��Z�3�a�(c�������|1i�ى �����Y��&*0�B�c
�k
U+���·��0v�G���{m�ڙ0��Ha��'��:�]�=B��~7���%x��7f�5^��U��4�����Q=���{�;���e���*-�`o��o,����T
��p��#4�c�d9V*5.+�/�� y���9�ԡ�5T�k�,��Y���i�r�P�mK��?�UL[B�0�ʁ4kˑk݈�D˲��q���>	��`�=‚Pk�E�����(6y&!�S�_S
�(����S�/�T-�H����*鏬^�P�K_��_�6��+9�Җ���n"�P�ZH3}�x!�L����I���z������.�HƬ�2�C���Hx��K3�2X&GI�ZƟS��C���H�i-��2�-J	�YNgA����gh}��:���Cw
d` ә|�	i�O�3��-�J�	�"��W����1��R���5���e�X����sp�αc.T�)��hB@����j@�j|�:���Nf�2ڂ^j�n�� ܿ!Qn]%���o�%X��-�q�p6%2��6M�n
%�G��0x�>"��M��F��ͧ�,}�U�܏زn�W�(!��4|Ɗ-�SXnrAC�3�s��B��lV��Qn�o��CM4���:���Y���0�
'�S12#R�)I�Q�O�,���0m�04jYm�>7���LX��*%�ᢠ�"#B�T4�[F�$̷B�X^���+���1��3���&���5^o��&�Q���~X��R���M�븏�jS�����S�G���m |����*����g�<��#�(uO���J��!����Y���\�D�!��ȩpB,�D1{��W,��_9"&�]�1����B�y��j9����z��p�:_̵�=�P����,��e��	bRdh��r
K\`B�����	^g����h��}�DM�eTF�ɐ0��I�LK�@@����A�����0J)�w2�틖�gNH��pe �#�׸8-��귙p��u.Z��X��KwGYC-�z��H�_�N`Wl�����x`�(���N�,[�Sn1�dTb�]ő�oI��$H^�a��-Ur� >&�e����D=��fO��GZ���4_\,@^%S�@�X|���F��eċ(6���y��t;�����X�je��KG�L�q�X��@3-���S�b,�Ԥ�T���/Z@u,��%F�H��l���B�y��M�<S
t������z�%��x�Hl�:�QWp<b J58��!�>����P����p������4��V���A�2�����vL��/��_~؃8A���}�,\�.�#��R�q�Eŏ�#"�3��f�3�17r�D`�e����=��c��9B ���
L�R�e�/0� 1�$�dm��T��#zL�1�V�ݣ%¥\'=�"����l��EnRo��ϛ�Lw�v�92�DKfeۦb�J�B��ߛ�~��J�M�u�je<P*�p�ciNH��JY�f	��T����%�a��=��7�a��0�;��jg��X肊%_6�P�k̼0�
��Ci�U��*]&��?�5(�wW�niE��̬
3�������Wha�� s!I]�-3/Z�&�7�Q�Tz!�x_r`@73O�f\B�%	2J~�o�����/��C�zAr�K��3�p&����u)�0LK=S�#*�@�C,b�Nh�8���r��Ae��C�܈&��R䥌P���ה�/�u�7
@�%^��,ˊ��9���5b\�{��,�8�&N�V��½D�4ͲVX�#,U\(�
�R�D9!�˹��֊,��a��3W_��gǚr��,�	����8Z��t��|�às�wR�aDk�~�z 5�Ƹj^#�s>�~�dv������px�W1�kʉNa�S��3�&���.n�*�p���wh��o�=�h����Q��P!�bT�H@<�	��X���K��K/s.U��:���e@`_��ܩ�3�%��,�fH�1���	B ��C����8-~�~�-�����Y�a^��
bn3R)l�*�*[/ߌ��6��A0v�MClJ��3	�6d$�م�f0.ʙ~�m�E5�%�F�p���z�����`Rǩ��{"Rd���`U���]ֶ�����S��~�m�q]Ƴ]-����-����Yc�_��� �f"\(U���/>��tf��d����G���
������*��og1��*�+��ˎ ���$��5)y�=}��F\5	^�&ȿ{�*mG9E~"����L�c"E<K��8��HF�&@�J�|ʹU+�H�}�
!US�}��Γ����_�g�eS����������7�,��DE9�j����C[)�w+�b"T[�> ��"Whd�91dn�zQs�L{���|6���+��*l�S��2�UZ�Q1����u��3�r6��g�m&J|��("�׾�#LK����
ꎏ�,����)�t3qI��qd�
wO^ߌGTgÇ�Qm�W7��[�4e���M�8��#��¥��̚�W��������2��Q��h�U��)`J*�Q/����_�A�3P��ҟ�GR7�©�C�z{SO~<!L���ف���)eFj
�p��効s���(U1h�x �l@�6�R���نYm ���u�
3�)F����'#b�*p���d�����S{$
��� �N��
q��7���~!�Gn��u��J�>�q.8�sQ)�B��U�8��G�}�r�u4���aD�=��26jXԥ��p��[�(8�5C�
�1��$��5�O������F�\��+4K���]��^���}�0��K�
\.*1]tw�Q��{w|&��j?𺀪0Px֭��S��\Jd�'O��e۫���BFôŸ�U�/!�Xl���$�u���zn�77У�uD*E悸�}�YT���v�J8�"j���
0�9�5b!O�s!VY�X��f'�c,?�a11��/���,F�.=�OO
�#R�x��'#���T��I�\∶;�B���,���@+�4LB�
������R?Xz0F�S��K���A�����Uj����S��8�>�Q���r���n��_��Ц������è��#F�S�`��Bn�]�ޠ��Ҫ�ד���YId��s�>
+7,b�7*�gt��W̱#Z��s��,�aZ���MT�F+���ܹ�,�&�d���]�'�US��ν̙��w�S��cF6�>��e6&���@aI��j�/Pm�-8��%���h�+�d���D���`�V�KB>�l�Rě�̬j��A�GA�@�P�y���\�Y�B
RUfʱ�`�B�Wt���HR��H)2sf��BU�8A��z诈`��uAY��]����L�q���fm/>�2D���1�g���J�ii�������ubŃ�ds;�H,%�>���#N�Y0L�n���Su�^w�!:<+C����O�b�I�~���ԩ	�?��S��A:���"��V��ɉ5+�A��	�nQ*a[�5p�!g.���;?P&)p��D��m��Sn���J�u�U/6�2��:
6��pژp�ݏd���,� ����]����)�%A���Q���d�R���]*����,?+��)�D}|����J���A�:1I���Q�����B���d�z徾!�ӂ���"�n��NWf+�wߨP-��V׿�[�V��������]v��c���]CQ6nc� P�|W/0��[ӎ��Zf�2&-	-��	Le��?q�f��P��.�䨗M��k{��Ĥ��q��xp7ܞobӝ:ͥ��O�~��*^�=<�׀��$`y����C���`#Z�ơe��"
>�˸��ωꦿ����2�>g�
g�D�w�˻��yv���� ~n�9�i�q(���Be�AH��Ȉ)���VQ̰b%g�,�g���̡D�-KM㘃@hYt�����/���玡��X&1��qTvk��c�2�\��+�i�i��Q�wK��1����b���\)�W���K�
�o�uQ#���Ky�Wvf��P��}|��~�l~�/�,5�N��9)�q����<!�4�v�q][X�84Fߋ�^2���!ż.gy9�֋e��E�t��\8��q^�`mi�(�Q2��[��,�V��t���ɑ> Ʃ���AkX��ޡ{-gU1 h�u��%Iom��O�P&��!��&>������@c1S݇�C�^Gq_�XC��8���x�r0KH'�
��	���4n+:��gs�_h����G�\�J�U�|yq��Lls�6����~fo�Fq_�S�0
F��ȍ���|��1J�\�q9H򓝶}��
xui��M��B��Y���8�~c��rQ�{e���k�8���^��5�B8���~e��X�c�$z�ת����Ht0���UM��2��g^L0����U�E0+rϢ�A��3��$��c��w+��;G�p��{�M�����Xb�
�����0ׯ~�\�]7۫︕M�)/�]{�(;U���i�tOy�gs
 �x������q]'or���6�+����'A��	�����+��b9M�3�]落�9��nd�!m���q�t��:�r�p6�����-�͍�f<ל	~��s�rDŽ]>=���i�X�-�M�?$g�G�bl�G`a��u��,"U����b���������1���������v:0��
2�#�N�h+����N��5/��)��r���qV_�+��������[v�T���cL<����L�f�9���q��*a��,�E��\W�m
|;.��Y�1�s�ƭ}�G�L1�~��8�O�_r��Ty�ٔ;c���W������K��a�b)QWM�o�1�
����|t�%�,8��8P�6�����6Z�$�c!5���(�ar�*�8z`3�����]\�L�'?2��{��
����1���]d���$B�7P�(����\�nPG��`��a�
��>��식�&+���s��{����_�����q2�
�+'��5
x�^"S^�1�a�D�e��h���1�[��r��.�������ʂ�Hx��5Od�zu���D�_��>��� �k�mK���1W�m�2��S�>�`A��fO)��)�R�dS���^c4@�b�'������-��dLK�Jh�O&6.\!��
�j9��
	���+�+�+�]E쎀��_�鍔�p}�G;�7�3��J�$B��+�cw��`��z��ӊK_x��P��:&�K�������=�z��6c\n��ۏ��MG�E�k�D�E��Aw�4��0��2���؀�l`�eF\��\r���
�6J9��q.�5D
��6�������Ǹ�~�,!�:�
s�lCt�(��i��W�g㘼�wS.��\��{���W}B`���
x<�7`�q�B��3���T%�4�?�So�Q��P=��./��M+���Q�\yIf���A�+��_������$sÀ�I�1m�*�=���_�
���_{����7��7o���ؗ1���ܴ<#��R�s.*h��#5K}WE�D!Ͽ�؅�b��6�W���i4��dѫ�i��V����M���Ks�N���c�����D�O��Q�/��k��J�y��A�C��¾���H"�����
�c�*
0����r�-��V�Q�V��}�.����e�5M���?h���G�x5�:˹��aY*4w�Jz�q�/�Y��}�{�:^�Ĩ����q1}���(��!�}ӈ������2��	�1z�<����D7�7�N�
���c�%�ɏΥ��ņ�r�#���90#��2^����4�x�ʖw/ͭ��5�׋N�4;w��ϟ�����$ܽ �Q	�9sr%���.�OBRx�o�� E��
} �h�|����!�x9ʏm%k�Գnx���W�ŝ�;sOQE��.F�O���л�+������%�
!Vsq]��^�1��t�y^b/2?1")D�{���'�%�?<K*�4�-�ke�=|AV+T�=�r�_�}��}�D�@?~؃wÝ��^����Ƶ�'���,�׶���F\s�aea x[7FY{De�IE�إ�V��Y�F ���Y�ɜB7�0	F�=F�Py��7���[��(�.��HCb>�S��7�ܷ̯�ARDZ?�H�?�ì?O��g�3�ʔ�����?1Pj�"ڵ_��^���?���M��S|�k�x��\!��A0U��_@�	�PT�]��[\^{��`�9E��X-�������q=oNJx @_ f������y�����39a��t2�`��g?���-]qW��,6[b���fٛ�{�����
,�U��٘��,��5�c��;f�z}W�7-CA?��w���p�k>�'�m;�K��v��]�G�	�z�
�|��H�l�]W�<)��R����6�E:S�
١�+�g��{�*�q��a�9Tu-�
n��` ����>n!/�-ԡc-�0�p|�\�O:��b���F��MA8e�����~C�v͟/�ʸW�?�X��?���/�����*0�ϸ���3h-x���X�� �wS��%�d /U�8��!�yk*]D�V�V%F?hfLR7x4�ܲjR�B�L<;lES	:��3��%|��_R/>�~l�M�߱������}��L�W�	��p�����~
M#2�:lwS�Ixg��)U�w��>�	ȑ�IUu��=ьrkpr���KB����h8��P�m��U��K�H4����k���N��]֘L���Np�bUj��ll�r�U/-[��
�o���>���C�'7��+`k�	55��M`%?π��j�7mF�Fy�k��h��j7y*������􊂗���/ ޣ��AlC�A�����>��A
��M�lԙ�����B�9�u�
��[�DnJX��8�r͜������6���l6����uQ�*@&>����<Zx�q����w�k-�p��W�pq)��A��e���Z�0��ׅ��5����8Ͱ~����ˡ�L�0�-z_�y4;�n9`�(?�Բ$��
G�w���s�Z�=�L�­�Y�r��ޜa��|R��B.�
���z� ������h���N⤠
�S�2���?��O�PG�Ç��t2�ڃq�K
��c'����<������M� �1��x|-T-�Y*
�4JO;@0e��a��U�0-�rI����^R�Q�����8��gGo�&m&�B�-FjNX���PAP�T��+���8�D��sXCˆP�J�F�*�5+��D�/%���'o7��-��rTC:%���$z]��s�̺_|�k����?c���o���߾_�"���
�r����&m
��E�޳��M�\�#׸��g��-/�W�cf
d�>����� ��L�Vm��ˢ��<�s}��e��7��� ��u;}
�(�Ԣ�,�f�c��7-�*���/~6$�2�JA�~�bQ�(g�2�
��|S�>�,�:�xj�4�|�x<�N<U0/�1&��Į2x͆�Nj�k�Éa��-�0c}ؙ��O}m���S\u�A����������t��e�ޥ���W,t��Z�le�8�1/�^
ㆼ�*8K�K�Gp��%M���(�J��Wq����jo�;C��D�������B,ev���˯ԠL�Sxy�g��M�9��J���yF��<��l�#1�V�A_�H.�o�~�s)(f���fޢ1Ј�8L���}+b�0\��N�:��6����>�jl�ns8���&*iA�9!�ǯ�Y	�ٌJ|�UeAD!��l�J��Kǁe�N�D9`\ �q
�S!X2'�e�q/���'��7�Kæ�iPB2����5^4�5q*�`����E�_�Ac�,K��}�K�˯$�
B��2�5����e��~n�_�`���W)Dh�1�c���m/Ȧ�������xή%_F��v�	���xéZ��Q�L��S;b�u.�׀����34�cLGQ���-�o�f:�
HdXx%�%�g�Oh�L��F#U5������l��������w�Y�ܢ8�5�&��ߌ��G5��a\����L�c*8�^!>��J�x5�_�?�a�M��U�o繉��J�i��Gw��.�)r��1
�1��W�5�@
���MEr�F@"�q���0>+��I~6����d�������L�##�`�/���x!��.晑� c�ȮM��_@!I n��'Š�w�� 
j~A�DAWl5p8$b�7�*L@"|��1<ew-�a*
B
�?1!������\�U�X��'��)�̜�K@J�14�y���C6!.��4��^3o�m��A���O
���
�����1b	�_!�\2�T"�W!�3��&\�[��~<��f�����(�iK(�"�8	�!��t���r�ݯ�]�o���a5��,���3hHj�_�Ҡ���D00[3X���%��m�T
ڕ)�,�!�5����������~8�}*m�P�K��:�-�^s��B"T�8Բ0F'R��>�0�����P�	rҤ�/��	��J�,��6�UԹ�tar0`>�mP�
߅QY�Ŏ���;x�k�A���q�H�1�p����w؆&n[Qs_@*+p�&����p���E����9�i�x��~	Օ�QR�S�vy�6�p�Ӗ���!��M�Z\Υ���J˵�L�^|���l�HQ��Y�D��Z�d�J��ʂ�3�!��X�敞�L���L����.��R��6@����pO�W�
I�:���F�(e��y5.o
@*UB6l#@}
b*>K�X.`��y�^G���+!|�
¸��7���c���)a�VI�<���:�<b�#�����L�EH~���p#<m�F��3������a����jf`���	���`��,{��C���(���:��QRZ�S��Gb�Gf+���$<�ŘM<I��D�U�/�ځ�q��4���,��X��$G�nW2stv���Pf��]
@Q2X��+�A�G5�,E���P��Ko4��d�,1�sFܫpσj�nf�x�����K>���.,2G��
<�:�1�߀�ymF�pVV.rGIi�Q^ 5����	σP���i�D2��k�GN<������q�#(�ˆ�`����1V\p<�*l�0q��w�*N���x4 �xXK�������~�����M@"�M:�z��CeDɯ	NI���?N�B���b�l>���PK���\L/�))$assets/images/settings/sureforms.svgnu�[���<svg width="120" height="20" viewBox="0 0 120 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_15320_15090)">
<mask id="mask0_15320_15090" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="120" height="20">
<path d="M120 0H0V20H120V0Z" fill="white"/>
</mask>
<g mask="url(#mask0_15320_15090)">
<path d="M20 0H0V20H20V0Z" fill="#D54407"/>
<path d="M5.71436 4.28516H14.2858V7.14231H7.14294L5.71436 8.57087V7.14231V4.28516Z" fill="white"/>
<path d="M5.71436 4.28516H14.2858V7.14231H7.14294L5.71436 8.57087V7.14231V4.28516Z" fill="white"/>
<path d="M5.71436 8.57129H12.8572V11.4284H7.14294L5.71436 12.857V11.4284V8.57129Z" fill="white"/>
<path d="M5.71436 8.57129H12.8572V11.4284H7.14294L5.71436 12.857V11.4284V8.57129Z" fill="white"/>
<path d="M5.71436 12.8574H10.0001V15.7145H5.71436V12.8574Z" fill="white"/>
<path d="M5.71436 12.8574H10.0001V15.7145H5.71436V12.8574Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.6665 13.8363L27.4936 12.6207C27.8732 13.0588 28.3781 13.4274 29.0083 13.7267C29.6384 14.0261 30.3009 14.1757 30.9956 14.1757C31.7905 14.1757 32.41 14.0042 32.8539 13.6611C33.3051 13.3179 33.5308 12.869 33.5308 12.3141C33.5308 11.9637 33.409 11.6681 33.1655 11.4272C32.922 11.1862 32.6069 11.0001 32.2202 10.8687C31.8334 10.7373 31.4073 10.6168 30.9419 10.5074C30.4764 10.3978 30.0073 10.2701 29.5347 10.1241C29.0692 9.97806 28.6431 9.79919 28.2564 9.5875C27.8696 9.37575 27.5545 9.07644 27.311 8.68956C27.0675 8.29531 26.9458 7.82812 26.9458 7.28787C26.9458 6.39719 27.2967 5.65626 27.9986 5.06494C28.7004 4.4663 29.6636 4.16699 30.8882 4.16699C32.5066 4.16699 33.8172 4.69262 34.8198 5.74386L34.0571 6.90462C33.7276 6.49581 33.2836 6.16729 32.7251 5.91907C32.1736 5.66356 31.5613 5.5358 30.8882 5.5358C30.1792 5.5358 29.6098 5.70006 29.1801 6.02857C28.7505 6.34981 28.5356 6.75494 28.5356 7.24406C28.5356 7.558 28.6574 7.82444 28.9009 8.0435C29.1443 8.25519 29.4559 8.42306 29.8354 8.54719C30.2221 8.664 30.6483 8.77712 31.1138 8.88669C31.5864 8.98887 32.0554 9.11662 32.5209 9.26994C32.9936 9.42325 33.4197 9.613 33.7993 9.83937C34.186 10.0583 34.5011 10.3759 34.7446 10.7921C34.9881 11.2081 35.1098 11.7009 35.1098 12.2704C35.1098 13.2194 34.7446 14.0042 34.0141 14.6247C33.2908 15.2379 32.2703 15.5446 30.9526 15.5446C29.1694 15.5446 27.7408 14.9751 26.6665 13.8363ZM36.9153 12.0842V4.44075H38.5589V11.5695C38.5589 12.4747 38.763 13.1136 39.1712 13.4858C39.5794 13.8509 40.1738 14.0334 40.9544 14.0334C41.5703 14.0334 42.1647 13.8764 42.7376 13.5625C43.3104 13.2486 43.7581 12.8617 44.0803 12.4017V4.44075H45.7346V15.2708H44.0803V13.7487C43.6363 14.2597 43.0813 14.6867 42.4153 15.0299C41.7493 15.3729 41.0439 15.5446 40.2991 15.5446C38.0433 15.5446 36.9153 14.3911 36.9153 12.0842ZM48.1524 15.2708H49.796V7.60544C50.0395 7.16012 50.4584 6.76225 51.0529 6.41187C51.6473 6.05412 52.1987 5.87527 52.7071 5.87527C52.8718 5.87527 53.0831 5.88987 53.3409 5.91907V4.1889C52.6534 4.1889 52.0053 4.3714 51.3966 4.73642C50.7878 5.09414 50.2544 5.5723 49.796 6.17094V4.44075H48.1524V15.2708ZM53.9111 9.83937C53.9111 8.80269 54.1331 7.85369 54.5771 6.99225C55.0283 6.12348 55.6549 5.43725 56.457 4.93353C57.2591 4.4225 58.1578 4.16699 59.1533 4.16699C60.1988 4.16699 61.1119 4.42615 61.8925 4.94448C62.6731 5.4628 63.2606 6.15998 63.6543 7.036C64.0549 7.90475 64.2556 8.88662 64.2556 9.98169V10.4087H55.6728C55.7373 11.4746 56.1096 12.3652 56.79 13.0807C57.4775 13.7961 58.3726 14.1538 59.4755 14.1538C60.0986 14.1538 60.6966 14.0334 61.2694 13.7924C61.8496 13.5516 62.3544 13.2085 62.7843 12.7631L63.5681 13.8582C62.4439 14.9824 61.0368 15.5446 59.3466 15.5446C57.7568 15.5446 56.4534 15.0152 55.4365 13.9567C54.4196 12.8982 53.9111 11.5257 53.9111 9.83937ZM55.6513 9.1495H62.6231C62.6162 8.73337 62.5406 8.32087 62.3974 7.91206C62.2613 7.50325 62.0573 7.11994 61.7851 6.76225C61.5129 6.40456 61.1477 6.11618 60.6894 5.89717C60.2311 5.67086 59.7118 5.5577 59.1318 5.5577C58.5875 5.5577 58.0934 5.66721 57.6494 5.88622C57.2054 6.10522 56.8437 6.39362 56.5644 6.75131C56.2923 7.10175 56.0774 7.485 55.9199 7.90106C55.7623 8.30994 55.6728 8.72606 55.6513 9.1495Z" fill="#030712"/>
<path d="M68.2325 15.6353H65.9331V4.63965H73.5762V6.70033H68.2325V9.00827H73.4625V11.069H68.2325V15.6353Z" fill="#030712"/>
<path d="M80.3168 15.8339C77.0462 15.8339 74.6655 13.4599 74.6655 10.1464C74.6655 6.83288 77.0462 4.45898 80.3168 4.45898C83.5712 4.45898 85.9518 6.83288 85.9518 10.1464C85.9518 13.4599 83.5712 15.8339 80.3168 15.8339ZM80.3168 13.7567C82.3087 13.7567 83.5874 12.1906 83.5874 10.1464C83.5874 8.08575 82.3087 6.53613 80.3168 6.53613C78.3087 6.53613 77.0299 8.08575 77.0299 10.1464C77.0299 12.1906 78.3087 13.7567 80.3168 13.7567Z" fill="#030712"/>
<path d="M96.3254 15.6353H93.6698L91.5486 11.7283H89.8648V15.6353H87.5654V4.63965H92.6173C94.8679 4.63965 96.2604 6.13982 96.2604 8.18402C96.2604 10.1128 95.0461 11.1678 93.8804 11.4481L96.3254 15.6353ZM92.2936 9.66764C93.2004 9.66764 93.8967 9.10714 93.8967 8.16752C93.8967 7.26083 93.2004 6.70033 92.2936 6.70033H89.8648V9.66764H92.2936Z" fill="#030712"/>
<path d="M109.678 15.6353H107.362V7.70589L104.318 15.6353H103.314L100.27 7.70589V15.6353H97.9707V4.63965H101.193L103.816 11.514L106.439 4.63965H109.678V15.6353Z" fill="#030712"/>
<path d="M115.676 15.834C113.588 15.834 112.098 15.1251 111.078 14.0865L112.341 12.2567C113.102 13.0644 114.284 13.7568 115.774 13.7568C117.053 13.7568 117.652 13.1798 117.652 12.5369C117.652 10.6246 111.434 11.9599 111.434 7.82212C111.434 5.99224 112.989 4.47559 115.531 4.47559C117.247 4.47559 118.672 5.00312 119.741 6.00872L118.462 7.75618C117.588 6.93187 116.421 6.55274 115.32 6.55274C114.349 6.55274 113.798 6.98137 113.798 7.64074C113.798 9.37174 120 8.20124 120 12.3061C120 14.3173 118.575 15.834 115.676 15.834Z" fill="#030712"/>
</g>
</g>
<defs>
<clipPath id="clip0_15320_15090">
<rect width="120" height="20" fill="white"/>
</clipPath>
</defs>
</svg>
PK���\���z��"assets/images/settings/version.svgnu�[���<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21 23.5C22.3807 23.5 23.5 22.3807 23.5 21C23.5 19.6193 22.3807 18.5 21 18.5C19.6193 18.5 18.5 19.6193 18.5 21C18.5 22.3807 19.6193 23.5 21 23.5Z" stroke="#6B7280" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11 13.5C12.3807 13.5 13.5 12.3807 13.5 11C13.5 9.61929 12.3807 8.5 11 8.5C9.61929 8.5 8.5 9.61929 8.5 11C8.5 12.3807 9.61929 13.5 11 13.5Z" stroke="#6B7280" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.8333 11H19.3333C19.7753 11 20.1992 11.1756 20.5118 11.4882C20.8243 11.8007 20.9999 12.2246 20.9999 12.6667V18.5" stroke="#6B7280" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.1667 21H12.6667C12.2246 21 11.8007 20.8244 11.4882 20.5118C11.1756 20.1993 11 19.7754 11 19.3333V13.5" stroke="#6B7280" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\�=E*E*%assets/images/settings/white-logo.svgnu�[���<svg width="101" height="101" viewBox="0 0 101 101" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<mask id="mask0_132_8837" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="101" height="101">
<rect width="101" height="101" fill="url(#pattern0_132_8837)"/>
</mask>
<g mask="url(#mask0_132_8837)">
<path d="M0 0H95.118V101H0V0Z" fill="white"/>
</g>
<defs>
<pattern id="pattern0_132_8837" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_132_8837" transform="scale(0.002)"/>
</pattern>
<image id="image0_132_8837" width="500" height="500" xlink:href="data:image/png;base64,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"/>
</defs>
</svg>
PK���\<=�ii#assets/images/settings/surecart.pngnu�[����PNG


IHDR��
	pHYs��sRGB���gAMA���a�IDATx�T;R�P=�YEf�BYb2!%.�,����t�
�tt~��`V�>b�c3�;03T̠ˑ�B�|O���;��{�=l��|lR�*� ���1D��6�~׵U�d?b*|��Th?&���bd�O�D|i ���q������"Q��#:;v�����7�{P�r��4��t~^�8~*ώ�҅�
K�v�*�aTW�^v:'�
�^Y$Q�d��T�G���vp�:d@'����Dz�2S�0��
j�T5�0�ݟ�2��RE)͝/�t�=n�u��BL�$L���{�l��ᄷ��o��p$�t�)+b���Y�IB�����Lj
��X��&� �K=�u��dL��y�j���	l�ss1��=Y�L�9�|�˓���8���vfGa�2[x4�?̪;��j¹��bo�V��{���h�? )G�xY����\��$���m@�L�3T�7~��+�����ԛ\�k��;�ꀪ�)�h���k�ЍgA�IEND�B`�PK���\��m��k�k!assets/images/settings/column.pngnu�[����PNG


IHDR����	pHYs��sRGB���gAMA���akeIDATx�	�\Wu'|nU�v�%ɫl�ccK�Kb����,3_v�⛰$|��L&d�!�|�Ț�$_2A-Bl'd��'���6n����+�ղ�Ԫw���sϫ����������nի���WU��z
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�̂E��T�bq ^�ހB15c�ju�nV@�%�B���fK�@�C1�0��l��B	�P,�����8,��f�B1%��,q���x�1}�=�
E��P�f	ƿ�^Q(�
N^������͠P(��e�
K�@�h�6
�
���`��f�>%E��Id���*�6AqYo�q���]�̪A��B�&`��
Eۢԓ��B���J�Q*:<�9��
]�h?tA�~kpԱ�ҭ��NK���M�=w�	����2����Y�(�X,�}W�B1����V�D�
��t*���P(Zȑe�A���(
�bBPQ(
ń��P(�	A	D�P(��B�P(&%�B�PL�;��oXU=z��
���S�'kW�v�쿵r�v������ʿ���0Kv�1�������2��o�Rvx����:�MV5?\���������d;<<w'Y�
G��ߴ��ޔ��o)C5���o-`LJ����v�������g�:��da�fy+m5a�d���	���ٗ��j�;|�x�Jv�{+f�jS���7�w�r�e#��Yն�V]?�C���lT;�I�x���
�l(%�K�N�W���
����;^�}��{��`���$��7���,C�ڄ~���E�@�[�_㲽KZ�F�qP�����#ix�5����ϰ�\^�m�TI�څ�
k*�<��z��f¢E�(�op�Z�������\��Ӡ2�a�P�l�>��{���\Կ�b�U��?~���@��j�l��*�0�ԏ#K"��V�s�����%���³E���r�ޟ�y��(�}��7���&�&�VV��2����6�Κ�6X"�m��&^�p�3��J2�d���˜�+�*��M�$��n������x�
�-�-��쎗N���7^��3J0��MC�i@���Ž!������Id�}���W(�J 3߼k𾷼���q܌&+[��^k��i����lw�'?7`ۭɲ>�+,��v�V�\�����]��g�^��ۍ�4�мz��&�:8o��`�Ί����r-��[g�k�����,���xS?t�	�'�H��*�4��
$kA�hs(��p\t������v����dpā�l�$P��?�ɣ��:6�s
�����MOM�%�͖H��=��=�t�֠'�<��&����!{n��y6���a�>C�&g6��}��h:�@S
ܷ��=q�]Uq�m���#��5��9%����Cy�I}�eK$���S0��4�
�+��k04�$��kI��������X
v�'Rg6��ފ1������l"ԉ��2����枱�c�_
������c����۟zG#�!Q�Z�n�����K��ݬ�k�FCѱ��Y���`__o���4�xGk�ek�����]{P4J �)~o�z���:p�a��~{�o������;�N��
D��IW��7fʎD��uq__o�h���X2�%�c]�M�������.ߡN�p��LW�86�k
LV������Ԇ�C}L"�ܤ���a��Ƙ����A�Q�J ��›�y��5vx�p��o��;��y�U�a���Qọ���1; $j�H
��j���a�p�~?��UBnԉ�h�e���p���Ox�p��U/;�
�ƒ���b.�q��c��6��^0K.�޻;�T�C���,��z]nO�c�	/�c��aD:�t�|0AdA#Ť���u��.�;��y��<�'��M�.|7`pB���T e�����u+�oI�i���7�;q�-����a�(`R����v�8�Ș�?�y0=?�c�Sc�C���qQ:%��u��Ic�9�GgM[�U��!��;e�'�`���?xmKɃ�S�Bl5LN�{2�l��"[}w;g�{b88<f�D���؍�w�6k��}x����h�	�6��D�i.�k�_��	�0�XG;��(����v��?�%+��pF�����ؐ��pp�V.�|J`m��-�MK�aC�'g��:f���j��m�hLV'%B�G����`<(L^{ ?�}�jƚԄ���,��e���&�6C�?7��̒}{vl�t�����_{���)�V�@aRk-��{28�次�h�~9"������ï�2���B�)_���f��B5�Bi�|}�an���Ԃv����݌��>;��./^8��^���eJ\���{Z,e���L�bqU,_�`�����7YMd{L4�v�V�/Za	����$���
5w7'd
�#�Anń1�5Gh��6�m��҇N�l`%�ន}^.Z�Ύ/��]�.���D�p����0o2c�6)ϙD��{2�D�M�߾vI4|��zza�@�Xoԩ>���zP?��1{	���W����=�QIc��|�����L�%Re��^
�7���S�D�_���I$���:)=�^
��%��;O8�hf��<f)��\)�`w
���������~g�rp��Tj���O~�y�X����+���\r#L�J=qkb�'�O4��7Mu�tf��:�EP>kL
WY��	�!�M�O�dr��>�����+mKα��B6+��!�+�*���@�t�=V۹��{�pV
cl}�MVX���6�f_�Vs6K��։Ũ*0�(-��nĽ7?d��aJ|��f'���
�؞���}�~�MVPl�7�d��1��=[K8�q����.��	��J��#��o=�>�'
��.�]�ɵ׼�^�uqjf�)|w��z�1e��l��YK�y0[�S}��S������fA� ��,$Vi���"8~�wK;|�C����>��%��n���y��sJ�@����/��/���#�������'k��0����k.��;��̩�r�$�r�n�9��E�n��kͫ���2�ưI�,׏[GD��f���*�h��]W*̙wc���	(���-�&���ehm���P��ӵq�=]Y6����W��Ey��z����!@; sE��>��]�.kZr=W��җb9uQ�
{-����Þ(��Ճ#��+�p�+˰��_vR��.�V#�>8S�Q��n�߾�%��ѩ��6S�5=7)���@1n�>!��-ԛ-ϛW�f�g�$t�[{�mk�
�̽���g|r�
�E|q��m�[�oc��7��`f�f�K ��k�x"��mg�+���1����f^�i�y���i.��^����9�p�D9
�Ed��x���ik�X+q�>�o�
$˨�nk�W9��]gM�[G�>[��=MGr���!�=`�G �/�Y�d�D�1�y]EC�)�\)�)��<ܾ�Է�����r��1F���o�O_L̫��i���Y�U�N��n�-W��=v`%S
fU	�͉��m�T�b�N+􃜹uٱVO|}G�x��]X�ך���[�vѼ�Hb�ٖ4.:ӟ��	�„�FO|�)EnY܍�D��"Ѱ��3��v���적�i .<xe_���J c�Ӂ�7�Od��d��&�h�2Qi	':�$�D���r�ۙd6�bqc�Z��˩~�;")B�	7�q�}�}A�
��p7182p�L�Z�`kC�\�n՛+�Sz�-�[� ��Xi�{��0�ࣰ�s���;ՋE̪�48?�pQ�X��ª�}8��mU^	�DR�Sv�>�$&b���-2��0��V��e� �ea�&�"� �6�AH��"BsѦ
��GZ���ο��ӆܲ�[�"[���A�>{���=����*���@�3ng� S�
U�P�T|"D*I�"K`��o7�{�o�4�w�u�M�'Ǡe09�aZW��è}1"�Jxn��ק�����[;�`zt~��`Z1�����@ˀ�X��LMh&
0=�:jª�,JȠkF���/H���Čr��ޠ��a�@uw�7�_�!�`�����+�|�u��Q��Z�l�K%���8C>v���yJ6�6C�
�F����=�p�1Z[Lч�i��V_Z���#��Uf���{!D�@k�ʿ[?HLn��J� �H=Dq��`�l`�f�$�1�YN��A M%v�[v_���Rp���<��~vLDO>	����ă졈����5׈V7���]��<Lq�u�9V'��7C�bZ�\�n��aL岸�@KW�����0��[��.�ԄU����4+�B����$��lE���ǎ�D�
DG	"2d3J��|E."S�@�ϐK"�\0�)��'R��Nt�&�M���ő4+o��sHf�zߞ8�o���[A��{aח���EfZVK��L���S�,ntt@+��w����@�Q(hV�x�H]$#��E@n�bh.i�m]Hy#ԕXd9�y�/�M)liAÉ^{�lL)@,�H��)#�''`�ȾfƾE`R���B��P��}z��v�&	�8��?��wW��u	]X�[���Z�Hf{e
V$��f���-�ۢ%~���n�Dl	I9,+��|d�9pMCp�oE�P
d�c�9):ƃ�g9q�o���(҉-b��Jjk)�y$�0)�0���P�0��d�:ƍi��m�Y�˄a♤Q�#�"]�@�u�`�Oʚ��4W=�ſ�
��]V���\]�ς�u�<i�m����Aߞ*��luR_��K�mL`�
�|A�p�ع

K'�Kt2����H�Z�s.Y
��U���}YP4�@ꀝ�(���Gn�g�2i$��at��$uyFO�q�ON������Q�`=$�ʅ�$��ү!��Q�Htb�tۉ���B����^{x����w��KqD��{a�?ܑ�o�2�]M+W۪^x��>�o�4�#��>�&R),jq������0}�g��|(�
:R��J+�$���{o]�|�"���E���G��)ȼ9���2
�Z�q�EDa(F�m��4wO��"�;K|dR��,H�H?bR>0����g!Phq�1[>�V�LL����'W�%*�;��9��”�^
�)� q�(�bS_���փ^'�#�^�#2Q9M��_�
n��W�4�ܑʧ���'������3�ka}[�Vnj�S{��w]�,[��G�4����xo$��)q�W_����=�4e9
d��D�d�G`�0��@F�	�"�3�=A(H���"�\��"/HK��P]$���J�a-�;����"���q^n�e2RU�ż?�f��*�tY>�_�qX!Z�+ׇ�u���0F�T�F��}�v&�m��
]����r�7y9�-o��z��T��ZsTW�*�u�VA�Z�|9��{�X��f�!�{���Z�y��i�S�����J 5p��;��,:���* "IP��C`e8o��\��lR�Ec�B��a΢��),
���xA2���]�`
2�\Ʃ�ع~B��7
~�1��o��G�w>G�v�#�w���Dܟ3i�H��[_P�e��Q\g?2G9¨m4�˄�>�k�څ{oheh/��sW��g�j�S�h��j��s�@	�(g�4C��L��T=����Q�Y�R�
G6Q^�����!΋��sCLf�e�D0yrJG��L�a�HT���Q�"�����p2��C�����͖ �f��+v���U���8��� Sĵ�զ+�;����_�X2r�1��Zr�ꬥ𪳗�g-:��6b?�(��$U�M��P��2oxp�M��oF=QYˬrdp�b4+�a(��C�l���>���aFN��=l=�=�dd-��A��,tC�k��J�G�6&���"iE�)�&$�N(���-zy�6�l���a�L�
	5ķ�܉�m���L�T��8��w���@�>�T��;^�t]�E�0Js�+k�Y
�=wY�u������?�������݇Uvk�ϵ��������k{�+���~�b��,�s�6;���B,(-���B0�u��H�_��Eaob�� D5"V�E���r:�C��"���!��~�B�,١
��� 
Z��E�b�s�p����@w�x��r�|�p��	���ƫ�n��=�l�7Z3U�+�ETM.��aM0�
��xݔh��'0��b�0G�_X��+N[8��kW�9{��^$?�* l�H����䒙�Ϛ}o�5+ı
�+���
L�ᛠ0o�'��Z�i�j���R������#C�^C��O#:0:���9�C~����rB@^�9BW�x�҇"<&b]�rwL����*����AR�b�� �x`�u��_�{�[WZ�@��%�ؒ�s�.ٸv���a�껔�t+�%n
���0v�+�����.pk��lqĕ�9���v����\0g�}�A���'m#��p(���X���ʶ�>���}o�z�"8���6�� -d2pd}߇{ˠ8)T���������
)�Ϥp*� �>��KZ��3�h�B�����<�����M���kÊc ��I��%^�tC����<ӍѤ����יW&?#�m7G�T�w
�T��w�����pZ�#�,s*�@�Ʋ�w]y��j5��:%�T���2�s��������qC{�v�¾���~��͆��F\���p�7C)U-��R��<r](*��ʁg��l\$ty��"�/~�QD���|癥P<	d,�1�~��8mE2!G

�oI��4��&W���/9a��7�[Ma�}0nV:Ðֶ��y��8{oMi�B��"�d�a�}�D��0����!j+!{����M�����u�F��,i{�qH�\&j�>*�W2S��)ꭥ����y[��j���֯6'��dp�[�fh!բH#P
��Xg��4���yѫA��EAkh⏴;�o�)L<fr���lgb�'j-�xD�(�7(4%�T4���Ylx�1��B]p�^����	��x�ֲ����k������eOà�Cv泫�e�D�g>�v`T�^��^�>sD�}_~
�AR�����!7-1�-2�:�)Pt�%��1Τ�q����H:�q{�ެf�X߽��_��>�"��൐=��Y-�띔3����g0&1��P���/�f��3�<�&�B��I?6f�4#�nt�$�8�H�}�'E@t=�5ʈ��-[d��D����I樴��Lm;�~�Ā�2|�ƾ>jM3o:84�ِ�M��|�c��/��!�S���a�S�)�th���sGG�B������Y�O�P���=�o�(|�I��?�X����R��Yy�Pan�,^"�VmɂUɄQ��&��|aYFG����	���'
dx������o!ha�…X�;��Yz*��ҕ�枱�M/J?z쩞�b�\Z4J�@��#�bq�y��&��ۭoh�>haXov�8�����N�`�E����	��X�M&���S���,Γ�0�
q��.;B�C2�?�54�)�4wI�0J<��T�8���BJdq���Z���\�`�e�Bį!��;5qZߪe�u��?cJBN�P�W���S�F�w%�$k��r%q���s<��0A&q:��i2Y�:��df���.w�%���#�q���.�m�ۃ�5h[��f �L���e�����s �p
�v��98gYɽ�%	�:׾�kW ���H�K�9Ɖ���j�7�:v����m�3�[���d-9�<x��cP�J u�T� ᄐNƧ��AR;r�&�@�a��g�ya�BXtٕf΋�P\�Ⱦ_��O��3O�ч+p쑊9��3<�h�ס\N&3O�E��dH���,�����(����mH��T���7?F�1L�������6L(t2=Q2՘d��kgn��%����C�O!Pu؝3�K�L��
^c��^��� }-|~?�k�9�n}�6Y�
Su�-.�i�
�?L1�1>��5������0w��Da��T��Y"q$�e�����[��,=�<a1���@�*I�=����9@�l��C �-�Ƒ�)�]W_	�/����}����p��;r$��4	�bH�"k�r���,��h�0.o�.hB�^�dۀhƛ��$���t�,(Q��T��S+&q8.�b�-�K
�����j T��0($}/�j�l�
�8�ZY4=ei�_ywQ�4F*�0����v�X�O5ҏ��sw(�8�JF����K/��,������l��{"1�!.85eZ�D�&	��B	�.خ$9a��s���6�7wj��_x�Y��׼�Ax��{��ZV��'�/���΀�`�v2����߁%�<
��9���l�,�O@)Ad�'H�BB'F"��ఔ��	��dOf�H6���`g�5�ń;6 ?I���"�ם"i_� �Q$I5i�����tX���k�$MJ�S&ul�A'm$�m�s\k���'��#�!br���"p�tf��3���hC�(�a�D��V#y�����BN9kys�R�RR�i�!ۋI����]�|�#�_v�i���~�=f�y+�����Nx���!{�0O��p���d��/��o|��^��
p�/����O�o�O�CB������/]F�Ɂ�)kw����'�p��,g�'�0�NJ���8����Ŝ��(R�0����!k��~���^!)����J��y���N�T2��=�\�:�r�i��ɲ�Bv0�>)h�q�p
�ϲ�.�A/����MVق{o�bo`+��O;��z�)����R(�ѩo���JX�!)*���G���]x�Y����ZGv�0<}�������	�S�M���$~�)�dcN�ٵL$�n�sxj����=w%�N��K��Z�BH��[t&
�T�Q��(��
HKuv�`L���cF��[�����9�g??�1�I�H+����T��M�`^]㹿Ԭ�BP?�8&!�S������w�FK��sO�|� �;�Qs����π���s`5�>���~��뎏T�������T����!P4�HXqډ$�x�m�6"��U�����/���s��AOG�ֱ��a���q�HF"z�l'b���C�u�����ϳ~翙ů� �2��`|k IFzI�r!��P�f�H(�iA��	!޳p�c"C�Q}ş��VX�dbr�8R�Vdw�o��0=?r��� ����/��!�$E飒��,h���I�ʗ̈́k7����=��
��رH����u/Z�2b�'���-u�ǠXtڸ����8}Ջ;J �N�^�dȖ�6,x���,���]�N7g���|������g}�Y��A'
]1��n?�{�i�H��翶��Y���f�V�4s����9I����2�g�Q��A,t���@*D��6��A�<�,F�B�!ы��;�H����I��'q���6fjFB~�����°�
H{�.[��(�%7@F+�x����a��3�k@����E�������SA��[��I+�n�5
]��:A	�(��$��49�Cg{E���}��p������ʗ���x(f��#~�BN���(��m��6������k"���Rሣ��ztK�FJ���$�@c`���y����~���w�?
��ӐYF����i>Dm�$*�a�կ���J�	&�'$
*���'��&$����JM�?^�h��)h�6N��f(��Ƭ*�#�.�7Kw�!)��{!�Cʤ{;��s�=�gbz�����<���q�rB͇H-����ځb^�	1W���q�kw�H�n�2�\�����s]�o��4�BSb"H���ӏ�9��p>�%�7�4^�_
ZX�@�X����
�0�Kgn4��?p�Ƒǣӏ;�41��?M�eo�L��t��A[�>�i~�pOқ�rSv�+1~�8��Ÿ*gJ�g�$��:��r���������+%G�iӣ������gKDC�a��Qx�@'��pօ�xMa��Ao�>�<4�����%�ZxV�i�!9�Q�2�]V�8��~޿�O���V\=N��"� ą�;$<8Ĉȋ��9'ّC���̟Yz�/��]"
A�/k,�yFLwH����A��3Y��`�����:{�x,R;�HxB�]��xpԇ�~�,��9K/٣��B�g�b��3�M'&�I�ʒ�v�{�z$B<��1����A>���@�QD�I2=b"�H�D����#l�r8��s�|��٤��]�h�Ik��iJ �0Rn-#�p�8�_ Y�캷��Xӕ�@h�kr�Uܧ�h�f�������3m��^��$X�3������12��E�
��%k�z��;��sχ��r�����zG�L�|���72dޯ�l���-n1Cyk�#�,�b�2H��0�꨷�:�t`�c�R�_�j�=�$�+�ab��=I۬�S�Kdt���1'��i!���|ɿv2y�/���pp&�������%
�����@�G�Br�!O�T	H��1A��g���ܧo�8#fa���Z<;�T�ȑR/]��+�Q�s���o�2���{ecM���N@�%�:��[���_��?6���ܺ��k���*&@!�eô/(��V����$
�D���!�B�R@s_��E
GHv~�L$B�0`�9L�nLMILW� ���\ïN��<;��PTc]Rp]�D��{;r� V>�y�d����}�+�/�Bp��q�MͅH�	z�a�~����{g���Ri�#�}����r��|�d�w��r�d��X�љ�g2�Lw��S^�6��>Ѱ���<�d�	2���у���]w@�����}W]��K���9]y�]&U��0DB�`��'�_��D�dD��sҪ��Hm�X��J���!���!"
��Bϊ�ɤa�@$-b�{��%_MJ�c�Dzxk�/è���i��Q<�4r4Ǟ?�E���:��9���E&C"Tڤ���4%�:v��j�$���<�!km�+_�����64�5$
c	
�sh$�j҄4
�,�0��!�M�z�����_x��6��wc�%��@O��xW�/���m߄<w�]4>{�U����"�@�?$q!��B;��)	07���R�R�`X��]�|�	��Ic�ɱ1
=�aF,C�W%Y#�#��9'��۶j.J�AX?uj�����ܙ ���M3���A8-#ڵ$r����u�6�r8�_�b5��8�6�R����@� *4�MUX��Џ<��{�?w��}�c�3���VPt
�9��ƽ�d�b)��{�D?���ʾ])������bY���yk;��o���+?�&�����]w%\�t�7�!Ppm�_nhFtg�&=U~�"��xH fd*2�Ⱦ���N��B�<��>1e���F�`����!X�>5ȑ�.���dx?�d�B�����f�c���ƒ��4>��O�����ON�sޑNjV]s���p��f�����\�G�P�Zʤ.jd6��&�@2���E�+}��~�H1�(�<����B��‚���j�����~����s]H/�۰�vҍ�q,]������x��0�2���Ue�p�͜�V@��Z�M��ܖ��ʒUʊO�@ރ�knĹ����}SϘ���vA?aXy�G�x���&ݖ�i�<�������_ԘX���s�T2�� �p�G�Y��L\#ݑ�A�W�;杶.?Ӿ.��}�}J�b��k;v�}f>�dGC
���xY���\�z.�4���y�D����x�;�����QL�B�b4�@� �X�<�3d���,U�v&K��� �}G@�&!ܮ���j^ȑG�� �M��g!v��ˆ�D�9���>�L`��N��#y�Y.@�}����絎s̓���x��E��U�$0�5NN��k[E��g�1������,]U��J��/!I�4e7ɲD�\�j^�(���@bQ�W�B\��U�p�8@N9@��>��Y�����g	�P�3�ж�#�b�Dɩ�p��HG]���Ǟ�2푟IdJ��q��<P9��Z�sK�m�~:�$8�/�d2χ��-��3c��@*�hjª��yC�W��D1ߎ������Qf�`s@����Ot��GXE@��8�p�9_‹$.�A�2 M~�}�y;�|���}�G�<��g�g�x�5Y-�XyY0"�m/$iPz��o=�G����h�lۧ��3x���P���pV*��;��)?�ܶGz��O�8�����K�"�}��O��Z�9Cd�x�x�>���2lf�߅�w%����P>OH�E�|���U�����*�k�m0Mp�u��>�\����4�a(��`u����o��j��Žu�y�F"4Mx!��3��"`ҏ�	;c��.$#p:tTG����k�ƭ!������s��u��7~�.�?>aMV]��W��ڗ�)�]a0�u"���E)ˁm2B�W�M#3��҆/M�4#.*'�9�%7���0u�[<�(%Q<U�L�I�wHf�c$=+�&��X��m�|�?=;bZ2�O$��	Q��M�����/�Ub���lJ$�,]�>���+f�
�
+�0
�%���Q���h,%��2.��}�ؼ:3p�������9��|ޜ��dM�a9���,���$�_b��E�\�-�+Oc̅Y�1��Q�֒��w�cMV�y���sݰ���d�ܖ�<;�_���`��h�1I��Pu��S~�F3�W�,*/�Q]��L����뀬��T6�E�'��Lͫߖ-\�c9�v5zF��q����a"�a�'��H�;1�j�����?�#�!B�L�en2����.<�b�@
�\�{��?�c�Ga�!I�F��{�h,�p+�hJ '��7a�~��Z	v iKI�����!c�y�$xJ�Q���"	�k����G���d�
�RpW�1}x_�6�3�4g����߇����/:?�W��E�ɒ0�4/&�\���X�����s�$�7���`Oh` 	1��];
{~�y����x� f�yn�&h34nz5�4\��Gmaͳp3zw�݅"p��|�rr 5&����M�#,��'Mx��o�M�Bh�L`R�Z��f����T`�Ça�����e��l�1۵�D�6��O�h�Fp"3V�(¬#�W_\>ս�����lǽ7o�o�R��#���dB��=���|��]�򟉇�XB��z"{5@������?~RW���$)���/��*�5��>H�?Ͱ���\����K�<�MV��Ꮿ8�,�ӕ�@�5�8���S���B�����(��m���@���#Uzj�;��e�(A��cD된��:i����d%:�������
F��xLLQp��7���n5 ��GR" �-i+�v�02��I��.M^2��*�wp���ȆW��G��s�7�{"3�	�a�q$a	c��?�w~����\���[Ns�y2�H.���~�;�)MTL��ɑ���_��U$H&	��I����H> g:b�t�aN�%���Ͽ(,gz��;��n@h����{����t�f���^|&c��R��f2��|9f���=2"b��.H1J6Q�,-�i�B?>�Q�ܒ�mt3�>0���8�C7b�Oڗ�=��s>��j$5.o��4 AFa� ��?"�%��	�����Wg4�� %�'>�v5�5����#�B�0k7	�H�.�4�q�H#ӌ�&��1+��춛=���J��6�um�F��^#G�n�?��G�e$=�{��o�ek��d��_��M�_Ԡbb�W9���#O���S~���ǻk�Br��\���MV���x���s�wÒRʙ$�M��DI���
�c�� �Q�M��5͙I��wI�-R�t���l��<�Q�>�uq��~�H�$���1����l��<��b��I^�(�"oHj�z�+��(�i&�!oӊ�@����A�����ݽo?��?�HdL����MY�=Zi�gƪ�ДHØ�"ȣ�@s���į����w����&�SSR�I�U���/�������ݱ��B �ǩ "�`��F1��x3W؆��t��}��o�h�[O���]��LV�y9���/6���$��ild�q��B�i�kؐ�lvid��Ae�r��-�u��s}`�4�<��-E�Fk�Dim���,���}����r�;�G�uƊrp9+��%ȼ�d��m5���0R(���A�ť0|��g���be���$�w(��k�I%c�t�P�ž<0t��t��;Eڈ,�؈��X�-�_�`5������fh�<���rKO��c��m�?��܌�7�����5�Y|�U@{� #�H���?�$QJ?x�*#H��y�r�5~�*�g>}�o��o��w���pՙ%��V�/�������	�B�H�rm�>��v� 2�v�N�$���nm侼*n[a�
M�EߘN��>�������U�φf��%��4��<Iy��j�}�5'}4��r
��X���W�=�]|�L*j�j3�V�6R���݋�G��'a��*m���Be�%.��?��G0�	$�4za"@؎�w�䮠��A�Y����{��'��/��m���9+f����[���
�.}"I��;�t�]��a�����yT�=d�㻰����.�O��%袬PHC���4SQ�`SK�7��I���{NR`�� �5"8��Z3V܇�q$NB⥔#��!7� �p =Gϑ�,�F����C��
���Ϊ�ُ��hk_��Bz��2� R�E�!
$jɑ���'Q�a^��U⳼�
b[I�q������f�k#�%!�N�ZH#X|ڙ93�Q��0�5���� �P�Z��@u�y�܃��$W~�a��

���r`�'��� ��F��J�?��_�-����7�&��.K���\��TȱG�	w��bMWD!�Č�[�))��'���)��/"�ܩ)m<g��́�'9RB2!���{���y��$m�#��a���X;w\�L�i� o��o���a����-A̷EE2�T�e�#��锝N�����������]�4����!��8BpZH#��j�X����1�p��&���Ȭc��J��[����{�I�P/��ϼ&B�A��l8����o@��`N$����=yכ�o�����#���3O�O��*��Sy���*�݃��PLV�̘��q	��`�ܔ�����qH*[)ʊm%�
M��H��>�.����I���6q�Dx|�"&5�+H ��4w��Bn�C&_	3����.���ͷ!�W��!��"x�����E~��"}��X�RE��D%����Ζ��=\����b�oK���s�󯍖8���,'k�80�	W�dq,o[}���C��I�ll���9�l�C�:�~9�����(��@�P�t)�p��s\t�y�
�Q�<������j�
��+΃�\��,�+俐ui*��¢b�x�F�Y��Q�b�?��5����g���`�&�(%&͗!�ѐ�L:7'ތ�%u'%����S7o�
�5�f��grK�k���G����yޜ�|���z 7�4����D&;x��0i�e��郊�W�r�.���-�D��
��oș>o�)l�*h!�qa�~�y�a�0�~�.��f4[��;��p��D�
�����y��A�g�*g.#$�G�}ڙ��wl2D;v��/[��O��#x���bR�]�F���^�ԮmK��4�g3G���1��3z��"9�
p�Y��I�#�󏚷��j�z���<���Q;��9,��l�3�8�O��L<�ǖڲ/���a�$�s�"��#dB�~��@�i��E��D�GUy��Az4DTd�����>��u0�$R�
�d̵&)������]�Sə�!�����@����r�3�f�'�,m�t
��=�T>��[Z�H$�`��&�x�l�",���V���p����=�`h�l��ߡw���+���ӯ�Ԛ�N�\�@�JDi*�o!�cD)�hpCw�5���ݧS�9,��o'�]Vj�5� �%R��x�aW����.�4����Ǽ�g�����7�� !�
�Bb�!	҄�)ԽP��������l�7o�
�
B^�G�a�#�4!"1����'�W"Bf8IL��oa\�>{�5�w
T`��}"�d�5��!�bQ�fT�0�����C`�l��/���=��&�9.����Y�#�G����|�������?�ak�=f�~{�s��9�3oE~���y�����!�=���֗-�Ɗ`��D��ij�
��J��h���d�g�N�h�ڇdm�$�N$u���^yvmx<�L5b=�8)�F;A�%y��t#���iH([ye$��=�I
Q�,�MO�Pӄ"�w��GOC�W�T!�P��n�w�i���"�oL&9LO:j�������1i��*v:9��0�����|���
(ƌ$��<��B���aL ^�'����-�ky`�h�`��?c�X�X|�k�h��H捱 N��ax��o�G������w�;�Շ�<?h(c�I4Q�S0�	J��:�h,�e�<O�M���VaQ�a��Ahզb$R1F����wa��H��,���,��8>MV$�M�t����H�ʭ�4$�v�P%�X����P����e����|�Z[���\��e)�I�D��4�E��,A�Q�;��LI�B��{�M	��~�[�WEØ��H�g3�/6f�!�#LA�&���LF�(�ï�]��V2o�K�F2oŋ�o'��ݸ�q�����<f�ᇡ\�ϟ�>t�K`qw��M�#+ �&.w'��g�)D���{��P���2�I�N�E��d��p�t�KԸ��
{��Ojڈ��;�s���G��~?�7�� \|^�	�
�91���J���������1w%���<�ؗ��|�k��͐���܇3�Zq�^x����];��[����>�n��b�3���I�3�W@1.�T�h&��	��%�ɬ���W�ɜ�&�r
�ć����1>������A><0t��?4�>�{}Ϫ2��g��g@�0�x{{x%Ԝ�Sw)��-�ܐ(� c����(��P2b�����/��*]?O6�G���H�3�lr�?A�w"#2[E�^�N�D��'63���G�m���I�4�DIaS늼��Ym���V��Z���Ū!s��T\�8j�t8��jv|ӕ_�z{�3s��ȜʮE��(�%��eȠ���VM���f�@��\]ξm"y��M;C�䏞����c�LV��5�����`2Q	^y
$f$U$�N�.)� �#i&��p빜?a�&$@%�ȁ�'��|e�o�xΐ/$��,V�O�����Ly;UX�)ތ�U+R���qʻ�nQ\Mre�4~��`�lŠ)"?��im5���u�Hz��m�=|���bĵ����&�[bE2|i�X��j_�v�1���7�(2t�T@�f��V�r[j�>s�����/"�(Xb;+���s��Hռ���<2h�-�n5��pQwWn�"�s�����4vJ��-����(���?KD&�FlRbr	/&/lr>|�r&���Wޘ��$�w��x�(�sTȦ1ig���ڈ����ϐSo��� �T�&)t��ChNAV��7�B,�ؗK$e�`��F��c�ĸg�xŹp��\��a��4G�|=���W��~�6-�1���)���;���봤I�y��A�a�n�/��O��k"�)J!�B��4�+���s�7~�[��+G�/��x�Y�
�'{E��E^:)b�i��Ugwʈ��t���p���}*y�S�@�3w�| �A!hs.� �>�AV9����4�	/�`rz/I	OП �)�Ȃ�S:�(7�y��Y� ,w��|"AZ�B�
�G��&�wϺ�����*��Wٮ��=�{���K�R������z
,>�8.�o���MЅ��W__������∬�B/�g�8	f������Ú�"+���&ej�:D�=@.ː�K�/�䏞4��þ�9����\��I��D��9��HdH
�eҸDž!�CxD��L��~�b�ѧ,f�X#\�?��P��kԝ��_>H�A7/�=R]|i�O����0���L���$� �nd���DR���H�?bHCղ��ԏ1����{˾N-�[�`6�[���C�'�V�D��)J 
`FH�m�#��@��TV;��G�T�R����u����y�ÏR�lkƂ
{�=׎����ɷA��c����` a�J��$Ze�
�ڍ$�/��6�@8�e�[$�S�qL2&�&�D��b`B!��,8�ޟGV?�jkT4s�x	�N�	�O��zp��8\��D6o���7��^�U�]
S�j�Fh/�3�1�,
d�E�HNj9{����f!�),?Y�dn�,>'����yS�A�8w��.{�}l����dq�{r=;^fa͒�#�8��Tv �� I[R!"�	��d(K�}�nH�!9�]%�1�m�#fp$D�O�<2R#�CR�$�Y�jݕ0O��Y�`��Sa�(o~�/�^q�2ز��Py�Y�j�I_/�ԙ�f�	k=��ںg��V!V���z2���ŎH�Q����?_��Z��S�@�l��r �;�Aj)�x@�q�tN��m�k�4>��)���?��-Pi�A�d�})c(RW�î�}�}cDZ86��U�jV��q\{�����2�O���׿���~��?�^�ѣOUr
��6h‚o�u�7��F =�t�!�%*\�d0K���,⍜j�XO�D�������֛�Te���M�5j>�~R0)�3�r�y�D��'ŀ}7\��DRC����㲰P��g�A�T��+�A�����w��G�_��F�ꅶ�:���)��{o��	������EdsK�=�y��v&'3R�;�y�l�Z�;NK���� �c�A�畂�G�:9�pⴤ_�A�K�CK�}9#�1fX3(Ŕ"�US�������O���-����C����zz33Hiч�ٽ5�/516D+%wi8@!�`+
Ԉ�K����э��!�q�O.�,vP�BQ��� �����1�;H��_ ܱ�'Ճ�fpڇ�5q�ݴ��}dT��Fo�U�|x���o�p��k��}l���:�O��d��V�r��x��0����)8��^� �:�H&JJ\�1j�og�S-(���h(}��o��crS�:�(����)K1�(Ô���:�W����ZX��y�߯��]�����>���%88���lߕ�S���bFH�#oя�j*�yϺ�_��_�.���˿�
���bh r2�$��?�-Ir��f��������E��hW�ߝ�(¹\"�_��$BB �T�v���OߧPD`���w<w��]j�G��/O�V������6�h�L?!f�Ҽţj��IU�2XgD�O��YdAJL&���9�d�	B�%b8�O&O$i����˰�@��
�"0y���{	w��Ť�nA�G9dza�J /]���I�8M%}-;�L?f��U�ܓ����ł~1_L�~��'�. fCK�yl��r��>�����X\��2�ȄŪ��!�]#����ܸ�T��Uy��ET)/�JL����X-u�����fa=�
�Mk�*[Y��s�W�%�`2I�t�X|�V�㈧�	Hq�&%p���{��|)"�#�D�-![��L�%�TU4��\Q�L�~�zT�`�,�f�vP4
;��X��W���@\����|
�8o�!�#�/��A�k�6��U�C�G����9)B�-���
RB2`E5�އ�/��ä�߸9�m�8a�R����y�#��h^�/c�H��1�%LH��5�@1�����Ylӄ�i�L�	��3O�c߻��͇��¿�P��+5oD�%�tE��!�vbX�Qp.IW��@!D"Fx�)p*��x�$�J��e
>(�AjkQe������x8ĘM��]�h��U�*ئ=֙^Rgz3�@z`(tuy�pZ�#�w�&ch�[�^�
�� 73TS�(�cXnz%J���΄��ބ�P
'RRX���6H�a�ޚ�fy�Br~��F"	%����z<D�zD�������i(���=V�-(�ܕ>P0:ڄ���`,���R&
G"�[m$;.kR��S<V\E���HXk	ٌ�
g|�""�&y�yR/�k)��d83�;/N�>õ#+e�Ԓ�۾���%�!�|?a����ļ�L1��%���1�V5x���>���3a�����
�3����|���o���H��!�5i�5��a���t�����D�~�L�4"y2],� H�q�`f����W�!1qUP{��,��@���-
eԤ2e�R��*":�@
�H89��K���G�+o��u^�}���#�0S��?@D��u��D��Fy-�J	�Ԏ����&.��0�XH��v#\�TB2�Wd��?J��,�1K�5)o�P����:�s�X���4e�E��K�]�z�wa�����+>��>��(B��#K'H�CJB*�=ȚB4a��BdO���=�����iHB�GK��4g�Ht�]��q4��RL+��b*у_���/Zס�\
�ɋG�V>�k#����__3V������B"��g��H�&��PȪ0,�M�\��6���m��J�l�Bl�$�9���|(�U��@�!�	�oƹ��Ȇ5Cz�q�x/(<:؄���s�uV4eY�8���/|ݚ̶�|F���(?�d/B��@,Iҽ!���;9
�}@1V�l$�ʅi7
�T�$E�
�=�M.�L����-Z� ��°��Y���GWLB}�Ϋ��t0�L΁^����^S>��Z�.Z_�z��Jd4����pJ�y�Kg�ͽ	-�,Zaw&�>�Wn<H������'���u�ȿ���Ds�6��-��Bp}�Y��$�VFB8)tu��Z���ջ�����nL<�ے��Z��"��%S?��m1�9J�M2QE�b���UTS9yH�5��s�,*�����)��Ć�$�)�.6�Й�j���p��KU��_�K���J�9j��L5����,�S�-Bf WTs�����R(��G�YV#�����i�Q��4�����D7iHGCz;ׄ�S���xts�CW��+Mw�������)i�"3��Y{|�y���k��
�ٕ�Ta?p�Vl^Sn�����Q"R��p���7��ڰ�!'$SS�TBCz;�@��QN;��+nk�Q��3d��W����Kjm=�HD�"�
[W�5RQE#���H����Fd�oS#q��"{i�\��_Jh#��ZH[�\}����T�g�;�;Oi��Q'�3��s�S���ש2��Q�e#��l�#W�`m��t�s�+�V⢂0�6H��*"�<���$AeHg��"��h?Ta�����>֬E����yU����vƗ���»d�����i"��L݇��AN����dؙnL��0i1�dZ�p���$G	�j���!Ԕ5�0��٬�t�Ĩ�����dn�BaƒW�"E��/.�.�q�LD$�w�e(�%udtA�*��Z|�,�������Z�Q©�|򪄴%�)q(�.��X�Rt�22M�PW)@a���Ɛ�#P�2�.`C�x`��"緈kq ���7C!��"�0EW	KrI.���4��ϥ�H�������US�l�V��4��N��B\4���Sѷ�2���қ�:R��q�,�C���,�E����V�7w%=(8�x�AiGCޛb���ڰ�>C=�����ڐ�N[P��uW%+ 챴��6rփH��?�j����ITS^!���I����B]ߴ�9�J�̭����P��;p�P7��0$[���[���Wً�.���g��p�+خ���nP�ai��e���S�;B	�\�*�+��H�����!qK�%�2�0���ɉ���I��'<��-�2Vd����F�oX[qA��DDNI���~R�����)��a��p��=0�`�Xev-4.K������u���fے����dV�h����H!3XH%e5ô��05�4�OL��B"߂:�=7�V'���&�j$r1)��u"OϽ�(C+LQ��zY\|�"�V��1W��l��o�8�5Y�Nu�ssYW�k%��<���1��Heƺ�_��/�ڽϙ\P�����aMs�⫢�#�6,`"�4C�a�����zp�$Dk�'����V�ׂ�#��2��nL�)�����l����Κu��>�@7��n��x%4f�
q�+�EH��	s,t���D��۝`�vAqx��E�D�5�q�)�
�
~��HH�>�/����i&uB�YFM��5�Z(DwG�6!�*F�:D�z8�tN(�6ۄeMWY�9�˖YC��j+�,��A+P}a�}���a���rKb=�H����,BgDa�@[��҆�=)�
(l*��Cm 0X{H^%�C�P"1����6b7Y���"ʗc�d��I�M]�?ti�m�,����1_MB��ȣ^�Ͳ����Ƶ�o"ڙl��!2�\��T�����{�߶���0��!a��V:{F�l0z5�(��$&MB�]*��Bk�K����`��� �R뱨"po��jĢQy�D�	_r�g��:b���p�+��x��0+14!��ɴ���.�WI��8��s�k��5����qUq�eܝ_+�݃$kE�D�8a��qc�3�wB=��djX�R� �6Z/w���|�����j�b���Q� �55v�ͦ+�mV��j�Mw�ucp�7�D���4G�yp�a;8s�C��,A��/_�������t�̩S�j��Ԕ�����!mĀ���| ����	R�g���r! ��� ��Y�$%$g��`V�j!Ƅ2$��2s�y�B�:K5�րH��{�Y�5����>0?��n��
�5#�Y��
��Ո�|���@�����!�VI��	�������=���Ft)cj�o.kʷ�:�l�q���̓�{=��B<�lES02��-�Mgɒ�`�jӥ#��t�.4�9��or%J2�'�
A�ǁ��2�S>C��g�kX�!F+W������E�����=�
?�t3��(�Ø~+3�A�D
���u����~��nŤp��A�����%�,@��8�G��fL��jV�>T'VVV"%�
��:�cч��$�o�a^Ha��)���oJh��ʅld;�����0�l+�%��)�{\g���" }�e��wB�-�"�k~w�S��0��\��	a���u�S�k�p�3�z�3mM >���X�M(�2������S�?`R��|�4/.s8�jQ!���J$r�P��39I���Ӂ�->/��F��
� �Z��D���lFT�=�B���
}���7�2(Ə�xܿ�z��3_����@����N)�81���S��Uc�D@��<1$�{�g�‰F*4�TTQd�S#S�~T
-N�/>+�pO}R�HN���F�ΉQ�0�����P��ɬ�)@_��a��R��Z%�q��>�=����Cu���$�7��M��1P�:�	��X<�1S�����\@l��f$�(��r7�l ������A�)�X�=4�����d�N���_��x| Ƒdz��2�)����[��~�y�EC8��c��i�Ř��ۉ^�Q�V��\"�@ș�82���e;ړ���=L..��pڜ�#�J��m�5�5��l�ʤ�rTE��KҶ�=�«h;�57��,,M>Q�$�e�ؿ�G��K޶�b�r{:�#�Y!߾z`��k.��m��pV��c�>L�
˜���A|�x�b�r���g��Mr��_�V�c�7���VHf,-�)ı؁�v5�����b3���0w���Ϛ���i��#,�[b��m	����Kjw����������f���Z(̻�NJʠ�F/1Sо&�9s���k ���{���(:�,��͚,f쒷�K Y���f�-�:n���E������n��3�Jo�T�m[�A16�EZ7epVH�pxѺY�E�Lt�+�(Z��8�6Pt4�nVBzgڗ@�w�ݵ���"�Pr�Q��H�_7a(&�ҫ���p䁦�ok���������y
�魳v�m�x�����NB)����ٍ%���c�-��V�W���m��g�|��K���
�e���A�W�@�;���\Z���Ze�k<q`�L���\�	Nt�Y3j66[�G�4�c?�'��0��ɨ2�z�IUz۹��Wn����	����{��J��c�W��Aa���?�I�b������IPZ�ܙx��g���W�q�<_3ˑǒsW�?��`v���r��7�칥ߎ�m��=2x���y-,-z���*}��}6
D��pk���E�f����y�;w����,�ḍu1�Q��d&T�ms�9�ycJv��?{�:x��/���m��`�Q��ً9nz�޽�ч��9"y�op�A5k��R���5����ڗ�Ц 
�E���]`j�P1k�_	
�4��NwۗG�T�ŕ�HƂ�f�%��h�0^���F`46_1���?Gg_�
�	,:�ȭ��;�zg;-��p���"io��Ahc��wza�}��B1M�E���9��������;"q�����n���t#�:m�`����	8m7�r?�i3a�*������i��6���ޱz�-�y�{�q���y�`μP�j�̂&���o��e�J��2m��l���
(�'q�-�zk��i�-��|�,��`_���NXlM_˭�2k�>�t:�_�$3�B�bZ�p�-3%I1c��D�8��yVc���7s������}��Y�l7�:�>Vh h� ��rA���y{�5�mf�
}�P��ᛠ8��FL��T���l���Ϫ�Cz;��b�2qjjavY�qe����a�c�
�t�3��	d��'+r��. �R�� T�����ѵ_�,u꒷mO O~���?�c�����4E�@>�
��	�3�/��ߎ��m'���y<�h�	K���9��[��C�u�]�r"��D-��	�̗^Rq��1���lyܺ����PP?Ȅ�a�e��5��7n)�rƙ�.��f]�����Q���h����Bz�[��n��2Vf�2�J�N�P���1h[qڇ}�u�c����R�M�C���fβ�S��m_
d$E%�rp6h J������b�謐޶$�}8��͜�Ec�Z:3.�C�C1S�'.m��۞�H�J?Ȍ�'��J���ƚ(:&���ʹ{�c��;�*w�$"qQen�����u�e�4IP1����1�5B���w���22��6��Õ����X�T�P�H`�f���CBzۊ@j}3Ώ����n�@qΜ��U�������	�3Bz۫��HgփiN�x��cOg�!,yъM��W�C13q|x��Ԍ5���>hc���D��N�3S=k��"Ȝ)�tKn)Os��m���B1��[�R�=�?�|���@f��QK.yɹ�=�(3x�����b�!�Цh��G/�8�����g��嬜z�rk�����bv(3E��*���mW-�=4��}��\YE>�q8�p�>�]���5
��y���[�2Q�*�І��(��yU��Q��|��p>����j�(�K��̓�P� ��=Q�qH���� ߇3O�ؒ�y���N�d��{A��-0��>q�oH��l�4>^1{P��dЦUz�W��y'DUgd���v��u��b�h�*��F �Z��-���eP?��ІUz�O��ڇ��,�1429�]��i!�Y�}x��)f�2y��޶��h �Y�p���b�A� M@���N9�D�f-̀�nW�Z ��$�^!�S��t�r�-f������|�ɣ�Bz��@�����>�b6C�כ��	�Z
d�k�\�Y�h5B��Q�d�&�t�D�
�U(��˓w�"�w�4�>@˷+�:қ�6�Q�#B˷+�P�,�AH��h �}h�v����IW4���rQ탡�
ĄB�J"̀��0�h���G��oW(2M(l���L�����eΑS��s�K����
�q�7�Y��B��w��?����ˠ�<���V+[���1�g'5���J��<�l'(
���P(l�$���4�ju@K�+
EGb��p�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B�P(
�B����%�1��IEND�B`�PK���\-k4p��#assets/images/settings/suremail.svgnu�[���<svg width="101" height="20" viewBox="0 0 101 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_15325_11547)">
<path d="M19.3176 0.0205078H0.86603C0.526345 0.0205078 0.250977 0.297189 0.250977 0.638493V19.178C0.250977 19.5193 0.526345 19.796 0.86603 19.796H19.3176C19.6573 19.796 19.9326 19.5193 19.9326 19.178V0.638493C19.9326 0.297189 19.6573 0.0205078 19.3176 0.0205078Z" fill="#0D7EE8"/>
<path d="M5.50159 9.63283C5.67278 9.7572 5.91581 9.71635 6.02779 9.54901C6.15157 9.37705 6.11091 9.13283 5.94437 9.02031L4.29601 7.83379C4.23744 7.78838 4.24252 7.73157 4.24507 7.70316C4.24765 7.67476 4.26921 7.6252 4.34013 7.59731L15.308 4.78768C15.3717 4.77631 15.4092 4.80264 15.4349 4.83361C15.4606 4.86457 15.4863 4.89553 15.4576 4.96164L11.302 15.5265C11.2732 15.5926 11.2213 15.5993 11.1977 15.6086C11.1694 15.606 11.1129 15.6009 11.0779 15.5462L9.82185 13.2329C9.78222 13.1663 9.74986 13.0832 9.71024 13.0166C9.21862 11.8953 9.09454 11.0679 10.0172 10.2528L12.3927 8.04401C12.554 7.89835 12.5699 7.65927 12.4295 7.50909C12.2846 7.34701 12.0467 7.33109 11.8971 7.47209L9.40215 9.63283C8.14503 10.7438 8.35436 12.1258 9.1498 13.6069L10.4059 15.9202C10.5663 16.2268 10.8927 16.3997 11.2416 16.3856C11.3336 16.3769 11.4328 16.3515 11.5155 16.3189C11.74 16.2306 11.9157 16.0519 12.0164 15.8205L16.1719 5.25572C16.2967 4.94642 16.238 4.58601 16.016 4.33105C15.7939 4.07605 15.4552 3.9765 15.1294 4.0499L4.14978 6.86416C3.81681 6.95413 3.56506 7.21753 3.49427 7.56039C3.42345 7.90324 3.56949 8.24294 3.85323 8.44631L5.50159 9.63283Z" fill="white"/>
<path d="M4.98161 12.8128C5.0125 12.8007 5.04962 12.7741 5.07646 12.7517L6.73665 11.2876C6.8771 11.1608 6.89088 10.9526 6.76872 10.8219C6.64251 10.6808 6.43539 10.6669 6.30523 10.7896L4.64503 12.2537C4.50463 12.3805 4.4908 12.5887 4.61296 12.7194C4.70652 12.8376 4.84788 12.8654 4.98161 12.8128Z" fill="white"/>
<path d="M4.77081 15.155C4.8017 15.143 4.83893 15.1165 4.8658 15.0941L7.68731 12.6114C7.82812 12.485 7.8425 12.277 7.72067 12.1458C7.59487 12.0044 7.38778 11.9899 7.25733 12.1123L4.43578 14.595C4.295 14.7214 4.28063 14.9295 4.40242 15.0606C4.49162 15.1687 4.64721 15.2032 4.77081 15.155Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.6311 12.7664L24.791 14.0054C25.8821 15.1662 27.3332 15.7467 29.1444 15.7467C30.4828 15.7467 31.5193 15.4341 32.254 14.809C32.9959 14.1765 33.3668 13.3766 33.3668 12.4092C33.3668 11.8288 33.2432 11.3265 32.9959 10.9024C32.7487 10.4782 32.4285 10.1545 32.0358 9.9313C31.6503 9.7006 31.2175 9.50712 30.7374 9.35086C30.2646 9.1946 29.7881 9.06438 29.3081 8.96019C28.8353 8.84856 28.4025 8.73323 28.0096 8.61419C27.6242 8.48767 27.3078 8.31653 27.0605 8.10071C26.8131 7.87749 26.6895 7.6059 26.6895 7.2859C26.6895 6.78734 26.9077 6.37434 27.3441 6.04693C27.7805 5.71208 28.3588 5.54464 29.079 5.54464C29.7627 5.54464 30.3846 5.6749 30.9447 5.93534C31.5121 6.18834 31.963 6.52319 32.2976 6.9399L33.0722 5.75675C32.0539 4.68519 30.7228 4.14941 29.079 4.14941C27.8351 4.14941 26.8567 4.45449 26.1439 5.06467C25.4311 5.66745 25.0747 6.42271 25.0747 7.33056C25.0747 7.88123 25.1983 8.35745 25.4456 8.7593C25.6929 9.15367 26.013 9.45875 26.4057 9.67456C26.7986 9.89038 27.2314 10.0727 27.7042 10.2215C28.1842 10.3703 28.6607 10.5006 29.1336 10.6122C29.6063 10.7238 30.0391 10.8466 30.4319 10.9805C30.8246 11.1145 31.1447 11.3042 31.392 11.5497C31.6394 11.7953 31.763 12.0967 31.763 12.4539C31.763 13.0194 31.5339 13.477 31.0756 13.8268C30.6247 14.1765 29.9954 14.3513 29.188 14.3513C28.4825 14.3513 27.8097 14.1989 27.1696 13.8937C26.5295 13.5887 26.0167 13.2129 25.6311 12.7664ZM35.2008 4.42845V12.2195C35.2008 14.5709 36.3464 15.7467 38.6377 15.7467C39.3944 15.7467 40.1107 15.5717 40.7871 15.222C41.4635 14.8723 42.0274 14.4369 42.4783 13.9161V15.4676H44.1588V4.42845H42.4783V12.5432C42.1509 13.012 41.6964 13.4063 41.1144 13.7263C40.5327 14.0463 39.9289 14.2063 39.3034 14.2063C38.5105 14.2063 37.9067 14.0203 37.492 13.6482C37.0773 13.2687 36.8702 12.6176 36.8702 11.6949V4.42845H35.2008ZM46.6145 15.4676V4.42845H48.2839V6.19204C48.7495 5.58186 49.2913 5.09445 49.9095 4.72982C50.5277 4.35778 51.186 4.17175 51.8845 4.17175V5.93534C51.6224 5.90556 51.4079 5.89067 51.2406 5.89067C50.7241 5.89067 50.1642 6.07297 49.5604 6.4376C48.9566 6.79478 48.5313 7.20034 48.2839 7.65427V15.4676H46.6145ZM53.14 7.02919C52.6892 7.90727 52.4636 8.87464 52.4636 9.9313C52.4636 11.6502 52.98 13.0492 54.0129 14.1282C55.0458 15.2071 56.3694 15.7467 57.9843 15.7467C59.701 15.7467 61.1304 15.1737 62.2724 14.0277L61.4758 12.9115C61.0394 13.3654 60.5267 13.7152 59.9376 13.9607C59.3556 14.2063 58.7481 14.3291 58.1152 14.3291C56.9953 14.3291 56.086 13.9645 55.3875 13.2352C54.6967 12.506 54.3185 11.5981 54.2529 10.5117H62.9706V10.0764C62.9706 8.96019 62.7671 7.95934 62.3598 7.07382C61.9598 6.1809 61.363 5.47023 60.5705 4.9419C59.7773 4.41356 58.8502 4.14941 57.7879 4.14941C56.7768 4.14941 55.8641 4.40986 55.0494 4.93075C54.2348 5.44419 53.5982 6.14367 53.14 7.02919ZM61.3122 9.22808H54.2311C54.2529 8.79649 54.3439 8.37234 54.5039 7.95564C54.6639 7.53149 54.8821 7.14082 55.1585 6.78364C55.442 6.41901 55.8095 6.12508 56.2607 5.90182C56.7115 5.6786 57.2136 5.56697 57.7661 5.56697C58.3555 5.56697 58.8826 5.68234 59.3482 5.91301C59.8138 6.13623 60.185 6.43015 60.4614 6.79478C60.7375 7.15941 60.945 7.55008 61.0829 7.96678C61.2285 8.38349 61.3048 8.80393 61.3122 9.22808Z" fill="#334155"/>
<path d="M74.1084 15.4636V7.38539L70.9597 15.4636H69.9209L66.7722 7.38539V15.4636H64.3936V4.23828H67.7269L70.4403 11.2394L73.1536 4.23828H76.5036V15.4636H74.1084Z" fill="#334155"/>
<path d="M86.5447 15.4636L85.841 13.5282H80.8496L80.1463 15.4636H77.5332L81.8548 4.23828H84.8362L89.1408 15.4636H86.5447ZM83.3455 6.30832L81.4862 11.4581H85.1878L83.3455 6.30832Z" fill="#334155"/>
<path d="M90.1724 15.4636V4.23828H92.5507V15.4636H90.1724Z" fill="#334155"/>
<path d="M93.6045 15.4636V4.23828H95.9832V13.3599H100.707V15.4636H93.6045Z" fill="#334155"/>
</g>
<defs>
<clipPath id="clip0_15325_11547">
<rect width="101" height="20" fill="white"/>
</clipPath>
</defs>
</svg>
PK���\'����assets/images/settings/user.svgnu�[���<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.8337 17.5V15.8333C15.8337 14.9493 15.4825 14.1014 14.8573 13.4763C14.2322 12.8512 13.3844 12.5 12.5003 12.5H7.50033C6.61627 12.5 5.76842 12.8512 5.1433 13.4763C4.51818 14.1014 4.16699 14.9493 4.16699 15.8333V17.5" stroke="#111827" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.0003 9.16667C11.8413 9.16667 13.3337 7.67428 13.3337 5.83333C13.3337 3.99238 11.8413 2.5 10.0003 2.5C8.15938 2.5 6.66699 3.99238 6.66699 5.83333C6.66699 7.67428 8.15938 9.16667 10.0003 9.16667Z" stroke="#111827" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\�����#assets/images/settings/surerank.svgnu�[���<svg width="126" height="20" viewBox="0 0 126 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_15320_13220)">
<path d="M17.4165 7.42798C17.4165 3.39895 14.1763 0.133789 10.178 0.133789H0.0458984V19.8235H1.74853C4.7042 19.8235 7.14337 17.5993 7.50924 14.7197H7.51403L7.52597 11.6642H7.2701C5.22312 11.6642 3.55875 10.0208 3.50136 7.97257H3.49899V6.99904H4.46748C5.82096 6.99904 7.01901 7.67377 7.75077 8.70511C8.44903 6.21106 10.7256 4.3821 13.423 4.3821V5.35563V6.6641C13.423 9.41358 11.3689 11.645 8.64512 11.6618V14.7197C8.99904 17.6066 11.443 19.8428 14.4058 19.8428H17.4213V13.9896H13.3417C15.7569 12.8065 17.4213 10.3124 17.4213 7.42556L17.4165 7.42798Z" fill="#4338CA"/>
<path d="M51.3185 5.25897V3.03723H49.2236V16.9412H51.3185V7.09998C51.6294 6.5289 52.1627 6.01803 52.9206 5.56742C53.6787 5.10716 54.3793 4.87824 55.0274 4.87824C55.2378 4.87824 55.5058 4.89751 55.8357 4.93366V2.71191C54.9605 2.71191 54.1355 2.94566 53.3582 3.41556C52.5834 3.8758 51.9044 4.48787 51.3185 5.25657V5.25897Z" fill="#1B1933"/>
<path d="M66.7308 3.68317C65.7362 3.01809 64.5738 2.68555 63.242 2.68555C61.91 2.68555 60.829 3.01326 59.8081 3.6687C58.787 4.31451 57.9883 5.19647 57.4143 6.31216C56.8475 7.41821 56.5654 8.63752 56.5654 9.96769C56.5654 12.1316 57.2135 13.8955 58.5094 15.2546C59.8055 16.6137 61.4651 17.2932 63.4907 17.2932C65.6428 17.2932 67.4364 16.5703 68.8688 15.1293L67.8691 13.7244C67.3217 14.2955 66.6783 14.7365 65.9394 15.0449C65.2099 15.3534 64.4471 15.51 63.6533 15.51C62.2472 15.51 61.1066 15.0498 60.2312 14.1317C59.3656 13.2136 58.8897 12.069 58.8083 10.7027H69.744V10.1532C69.744 8.74837 69.4881 7.48569 68.9787 6.37239C68.4765 5.24708 67.728 4.35305 66.7332 3.68799L66.7308 3.68317ZM58.7774 9.08331C58.8036 8.53872 58.9184 8.00618 59.1192 7.48087C59.3201 6.9459 59.5927 6.45432 59.9395 6.00371C60.2959 5.54345 60.7574 5.17477 61.3217 4.89284C61.8861 4.61091 62.5175 4.47115 63.2108 4.47115C63.9497 4.47115 64.6121 4.61571 65.1956 4.90729C65.7791 5.18924 66.2454 5.55792 66.5922 6.01818C66.939 6.47842 67.1996 6.97002 67.3719 7.49531C67.5535 8.02063 67.6516 8.55077 67.6588 9.08331H58.7774Z" fill="#1B1933"/>
<path d="M30.9395 9.96769C30.4564 9.67611 29.9137 9.43272 29.3111 9.23755C28.718 9.03995 28.1201 8.87609 27.5176 8.74597C26.9244 8.60621 26.3817 8.45922 25.889 8.30981C25.4061 8.15077 25.0091 7.9339 24.6982 7.66399C24.3873 7.38206 24.232 7.0399 24.232 6.63748C24.232 6.00854 24.5044 5.49044 25.052 5.07597C25.5997 4.65428 26.3242 4.44223 27.2283 4.44223C28.1321 4.44223 28.8663 4.60609 29.5693 4.93381C30.2795 5.25188 30.8464 5.67359 31.2671 6.19889L32.238 4.70971C30.9611 3.36025 29.2919 2.68555 27.2283 2.68555C25.6665 2.68555 24.4399 3.0687 23.5457 3.83738C22.6512 4.59644 22.204 5.54828 22.204 6.69049C22.204 7.38449 22.3594 7.98449 22.6703 8.49054C22.9812 8.98694 23.3829 9.37249 23.8756 9.64237C24.3681 9.91468 24.911 10.1436 25.5039 10.3315C26.1067 10.5195 26.7046 10.6834 27.2975 10.8231C27.8907 10.9629 28.4334 11.1195 28.9261 11.2858C29.4186 11.4545 29.8203 11.693 30.1312 12.0039C30.4421 12.3123 30.5977 12.6931 30.5977 13.1437C30.5977 13.857 30.3107 14.4329 29.7342 14.8739C29.1699 15.3148 28.3808 15.5341 27.3669 15.5341C26.4821 15.5341 25.6379 15.3413 24.8345 14.9582C24.0309 14.5751 23.3877 14.1003 22.9047 13.5389L21.8501 15.1004C23.2179 16.5631 25.0377 17.2932 27.3095 17.2932C28.9883 17.2932 30.2891 16.9004 31.2098 16.1124C32.1399 15.3148 32.6064 14.3076 32.6064 13.0907C32.6064 12.3605 32.4508 11.7268 32.1399 11.1918C31.829 10.6569 31.4273 10.2496 30.9348 9.96769H30.9395Z" fill="#1B1933"/>
<path d="M44.037 13.2567C43.6257 13.8471 43.0565 14.3435 42.3272 14.7459C41.5977 15.1483 40.8396 15.3507 40.0555 15.3507C39.0606 15.3507 38.3025 15.117 37.7835 14.6471C37.2647 14.17 37.004 13.3482 37.004 12.1868V3.03711H34.9092V12.8494C34.9092 15.811 36.3463 17.2929 39.2209 17.2929C40.1702 17.2929 41.0693 17.0737 41.9183 16.6327C42.7672 16.1917 43.4751 15.6447 44.0394 14.9869V16.9411H46.1462V3.03711H44.0394V13.2567H44.037Z" fill="#1B1933"/>
<path d="M79.8806 11.5486C80.6817 11.1462 81.3081 10.5896 81.765 9.87871C82.2335 9.1558 82.4703 8.3341 82.4703 7.41598C82.4703 6.49789 82.2504 5.66895 81.8079 4.97495C81.3656 4.2665 80.7511 3.70987 79.9644 3.30504C79.1774 2.90262 78.2736 2.7002 77.2524 2.7002H71.8696V17.3078H74.7057V12.1318H76.8794L79.84 17.3078H83.0491L79.6941 11.633C79.7562 11.6065 79.8184 11.58 79.8806 11.5486ZM79.2182 8.50276C79.0244 8.82325 78.7567 9.07387 78.4099 9.2546C78.0774 9.43533 77.6997 9.5269 77.2717 9.5269H74.7033V5.31231H77.1257C77.8313 5.31231 78.4026 5.50751 78.8451 5.89547C79.3018 6.28584 79.5291 6.79189 79.5291 7.41841C79.5291 7.82083 79.4261 8.18469 79.2182 8.50276Z" fill="#1B1933"/>
<path d="M92.4781 2.70215H89.642L83.9268 17.3098H86.9304L88.1523 14.0952H94.1593L95.3813 17.3098H98.3849L92.6696 2.70215H92.483H92.4781ZM89.1087 11.5699L91.1533 6.189L93.198 11.5699H89.1087Z" fill="#1B1933"/>
<path d="M109.628 12.5097L102.548 2.70215H99.5874V17.3074H102.423V7.31191L109.628 17.3074H112.446V2.70215H109.628V12.5097Z" fill="#1B1933"/>
<path d="M119.624 9.29029L125.739 2.70215H122.073L116.71 8.48544V2.70215H113.914V17.3074H116.71V12.4325L117.778 11.2807L122.465 17.3074H125.966L119.624 9.29029Z" fill="#1B1933"/>
</g>
<defs>
<clipPath id="clip0_15320_13220">
<rect width="126" height="20" fill="white"/>
</clipPath>
</defs>
</svg>
PK���\x�c]wNwN)assets/images/settings/welcome-banner.pngnu�[����PNG


IHDRI��]��	pHYs��sRGB���gAMA���aNIDATx��,Iv�����^-]��W�M��$D��p��h3fҘ���1}�'}�� 3�&��I2-4F�3f�3C�X8 �w7�wW�^��z��rό�9�����Gd�W��a�Uݗ���/���q�T����e��������������������ޱ��������WK��ï�BBBBBBBBBBBB�_=�����X��$i|�߄D��j����ѩ��Ȕ�!$$$$$$$$$$$$���Q0ϐ �#HHHHHHHHHHHHH��H���j
													�IJHHHHHHHHHHH�HRBBBBBBBBBBB��D�<$��������������!��������������$%$$$$$$$$$$$xH$)!!!!!!!!!!!�C"I												IJHHHHHHHHHHH�HRBBBBBBBBBBB��D�<$��������������!��������������$%$$$$$$$$$$$xH$)!!!!!!!!!!!�C"I												IJHHHHHHHHHHH�HRBBBBBBBBBBB��D�<$��������������!��������������$%$$$$$$$$$$$xH$)!!!!!!!!!!!�C"I												IJHHHHHHHHHHH�HRBBBBBBBBBBB��D�<$��������������!��������������$%$$$$$$$$$$$xH$)!!!!!!!!!!!�C"I												IJHHHHHHHHHHH�HRBBBBBBBBBBB��D�<$��������������!��������������$%$$$$$$$$$$$xH$)!!!!!!!!!!!�C"I												IJHHHHHHHHHHH�HRBBBBBBBBBBB��D�<$��������������!��������������$%$$$$$$$$$$$xH$)!!!!!!!!!!!�C"I												IJHHHHHHHHHHH�HRBBBBBBBBBBB��D�<$��������������!��������������$%$$$$$$$$$$$xH$)!!!!!!!!!!!�C"I												IJHHHHHHHHHHH�HRBBBBBBBBBBB��D�<$��������������!��������������$%$$$$$$$$$$$xH$)!!!!!!!!!!!�C"I												IJHHHHHHHHHHH�HRBBBBBBBBBBB��D�<$��������������	i������M�ⴈ�a�Ǿ��~�>ߔ�X�Myi+�G[}�e�
�<7���)�mӌ�!D�{��b�o�� D{��>V7�ʠ�e4��,�\wa�XY�^����@1���|�����5`w0��o^��gpr9�r��=��n޸�J�JQ~��o�e�<�@�2�ya�~۲l1N�iQ,*������M����l��ڻ�j�D۵�W��?�gR��,��ipo�˃|�gH�k~ڥ��b�M��:��	�H�w�K��r׿�6���v��Z.��R��mF
kk ����k����0��ַ�p��]�s|����Cm*k���sMۼE9װ>v�q�k�~��7�!���QU�yH�H����2����44��)����V�>���M�ݶ>���t�������"6_��
����|o[�	y�Hҏ	W�W@b3���mx[����g6
̱�4�ٔ����<�'6�6�߶n��h�ô�gba�gb��↺�P#B�=
�q5	�{H��wۘOO�ij#D,��k=R#z����[u��0�.�l<���=�g������>v�6���tB�BC�VR^��ijj��\P՟v�Vf[� u/e�;K��d��6h
V��]��¶��&���=K��\B���Amͽ�*�Z�+�1�K��u�3�4����<T����m��6K��U��҅�tM^uE��W��'l(�<��۫���@^��x�����m,�I��
�5�M���o�����~*oE�6��)�y4�>��bcv�~	�f^n
�$�����r4}��ˇ?No"t�a��ҏ�u�v�i�����&Ym�~rH$�ǀ���@�A�>8�pa�p`i�\!��=6����	qS�Wce�4q5�m���U'��2��Er@��L�L䯶�-/T+�um�b�S�_�ON5�CÚ0d�G��H����Z�w��@�<^�X�t��6�SFXWr5�'/��ʧ>o?|��
?z�,t�QF��s�N�!ruF)��i%Z��m'[�f̿��h��6dΆR�+�[k�zMH�8�h�l�����]�����V�
5��V�}�"P����ܸ�1M'�G����aO�&�qL�{���a4�C��|1�}$��
�?�5Q�ө4C(:���êR�g��3���0o�����O�i�*�:p|t��&O%��Z1��:�ͦ3 �����?�%���������Z6uiަIܤ����+�U�n�}�0�p�~n��	b�;�{տ#s���=�0�"��C?��|x�[���9;6�5�s��m攦�4|��Z��Կce�ݏ�3|7~?l�=v͏���C[�߱�ba��#�X���!������i�����4`4u���i��6�a|M�6q���4�^%�m�V6?L�M$n��M�L�FQ�Pj-|�Y+��ƥ�	AU��O$�����^h�Y��kqW��<�k��k�4??�&��U������S3��'�#���%�D ���k2"�M�]��i�s��oR}�l�!�
�}�oL�a��<�fI�57c�	�}Je�[j��. GA�CZ�!�h���S$Is�z�}�Lx����f�%�=XbCD�*����1ƫ�+���J|߇�C�/���g�F2%�+���&+���������l[����G�ϳ̕3Cb�&�Hꈽ�T+$M���ض���] DŽ�r�iSK(�uo�3�y�:h������-*��P����8U]��N��]{/&|F�
]��Z	cd��Z��Y���S+G8&A�b[3H[M�BH�ҏ���}��M;���0�a|M�k��K���6"�.c��=>���Cmu���g\��H�O�n��=�-9��n���{ۀ��
 m�Fl�i0�2�|�8��x�M*M��m�iJ�vtm�����VOmx_+�����I,���Ą���ׅ(?�8��}rT'l�	�\|j�
�v��_=�qlpgSJA�3�¿?؁S$HO�`2�A/��^#�}�io3a���
��h�2DT���¼=G��#I��a�j<��k�4�X'~rvj�39�N1��ϑ��y��~(\��#��
��`4��Fhj�C�y�|���Ӌs SE]�}	R��ޥ�3��S����u�Q�R��I/(V��&.�DL>��*�;�I��l�V��@x�45��L>�%��D�8n{5_�w�#G܇��kb�|bÂ���>�������1�����Y����
*��7,R�6ކc,?a����c��
�	�il�i�#��y��Mϵ��3�6�g�Ҏ�����綿C<�q����*"������Mh�wOl��	�m��6qS���Q[���>��M�~Ӥ�6�l�SS�6�km"�Bޮv��C[{7�	H�m�߾�{��|o�G��kkmH�s��'����$�?���}���d6�J����s��ݻp�����p�(�~�����b2q�o�6�Y���ke�*�([��4�11���J�#	��o6̃�=)�'�"�Jx�,������oRJ�EP�D\p�%���Pe�Q�S
�L8>xc��TU�LI�i����(�FfH+��iPk�"S<��:-RF3U��VN��sR�l�W 2�c�W&K�jO���#7!�s���?8�/�}V{㚮?
�>�i��%���LR���1/FTbeݶ�m;��†�yl���c��5�Ms�6�Il���h�I��m��&Y%V�m�4��U��5$l�D�~�h��~Sg��ɮB���i��M�k�\,�p�jP��pЏ��/DS^�<����e�=�sk:x2$jU�#J�������H%�F��cSZ~ؘ��'A�%[{�V�rBU�+e*՜�X��)��`A"J��;y;{�Q����~���+��g��n%�ƴ���U`�<�[G�7$��!����s�N���j]�>l��.#��欙`6	P[��ԝ�G�j�*��4�Զ�R��Q%�2y/H���l]���:H%�I���^zL���-ؾ�e8~���V���`�m�և�gt���
��Fn"�RG�Z4���<Ƅ(_9P=�~�/�ClNt�92g�]��{S8�}l�
��Y���?�4�7�ݏ�	������⏕#�{,��g�z��?�6V}�y �jH$�nj�����)�L8pƞ�=�t?&����0����
�ʱ��*�¦�3��Vo�:\�dD"p����$O�F)v_d��@+�3�kxgk���k	�&-�=�v�QG��>�=�楩�H�������9��Ӌ�P����SG:��0<A9V7myxV��fE�r����#�3�E�˕e�v�[{Z�F�Zȇ���U���{w,��L
��	k��6m��kǶ{mI��.��lZ=�"��5��~4x����B��o},�	�9����H��8T�#��!t�YoC�4���y��6f��5Go��VK_A��?כK|�h�^k����ų-�hJ���|������c�Pl�_S���5��M�����a�x��x����gC"I?A\E(j�:g�@�4�n�c��&�ш	��s���40nL����6u�M�ژV@pju�Kބ:Z��ػ�;̇'��g�ذ�<Y�Ml������q�@���ꂳ�A�4�P{`MG¤m~���:1y�Hj!/�U��G�TM�8����#��3{+3ZP�Z7U�̕��&�����sd�y���N��Q06��� mrd\��?a������k$��Ȝ�e�j�5
��q��3���Qs-JXq]��2��`��ɤ0g;�7��UIks����ڧ�{�L�M��^�U��o�>Ι����:��Zܨ��6��4��e����?����ųp�Z�?��l�{���>�qm�'@�����=h#M�?o�c��䍦4C��nK+|.��bsRS|�#?�26�uij��>�� ᙐH�O�:Q�����9��l��E9���Ϧ8�����M��V��֦xC"�F��&���h�l�y)�q�2��myq���X^j�+̃v"
Se���8�uS�PY��T/�'�2��$�V�ҵ­�3����_�wx�ejU��>]]�F��3�_�>XcL&N��m�"�ԧ%A�0��Ԩ��va!Ε5%��"�o��<�C�X�M^l�梡t�8�g�
��Re�-��2��ݸ��.��U����R;JU��邒|�5���2�;���Π�]\�^�ES3���>�7�MU��.�������]��GTUpL[��(�k���rX�b����Jm���*P�X\�b��j��s�}3�Ƕ�"��͵�<�?�Dv6=���5�XM7gS�MiĞ��l{~�l���G"I���N�l�Z8x��F욎
����mh[�iJ�鹶�����>���>y���E,��d�A�-�j-M��$�6������R����>Wůݝ���/6�.Eo�;x��	+V�
�x�"�6鬵;O���D����2��nʖ���ߺ6�<)�O��XWz�}�+�~X�T�ƾז4��.
��R�H[7�X�Da>�j�M�\����z��BOH�=޷�:�ϝ2�q��)|�I`4���>��,5�2Y.��XJĉ]s{��'v.Ns����)dL�Ք�QսZ8�/]�O�8�	����	��/�h�A��&0�{�t��@EC~t|.�[��0^���!M��
��־G�OȮ�ujӛ�ئ�.6n"�᜻-��IS�m�[w��I^i��u\���;v�)���I�	aSG����x�g���&A�'YM�����\��ؔv,\X���|7
�����<_����kx�eS�����#s�PY�G���Z�*p����DfҊ(�rN]`�“1ꢴX�}��[L�'�Mm���WD���H��s��vr�}�x}>�|�@z�F���&׮I�&3Ų,c�տ*�ĵ��I�1%dm�=(ڽ�JcQf�;!F�WV�׵�TB{�&#�+U;W	���@]����F�c_a�P('�ֹ�/�V��{~XgFgIX�w�M�'+ qXk�hۚ2�ɤI��^0~�f^ZW��X���Xf��7˕��ڏ��%�����ާ
3�>k�@�n�!��;��ڦiXM��4>{c)k�uEV�qNճ��F�6Ϳ��b�����s�}��mNoz�� �-85��������%Ӽ�M�m�z,.me܄�1t��~|H$�'�6���MЏ
�a���~SZ�2��Ҍ=>�H�hJo�����M�a����$?N�T�}����^�!Aj*�v��䑬�D3��տ��O�U�o�y�Qϫ���:t����iK���vD�u�^/�#��5�j�[%�[�E?��e�Z�x�5Ԯ��P�5�_p>h�ԭ}_�V$��M-%X#�8�ջQbƔ�z�,42����>Zk'�K�)lfJB�ĵ[�7oi�t�F��+�}qj�ju��Np�ψ
ș���d3��OË8�����am�c���)���z_ԍ�T��ik0��c*��͎}VU��q6$?�Z;�z���H���Oּ�i���i������)����4�ͱmd#v͟/��c��&74��Mh#T�d��&�������ۤ��E"I?�	������4	�M�9�+���-�X��I�M���з�#(k����^��LT�93y�{m�o��Pى?Z�f���e��=v/��2ҡ�F8���`n�*N����0���4��R�rBz�~}A�g)��l�U����%cs�+���3�2�ζ�-{��h+h������R��Y
k�pm�n��S�w�~]��
�����F\��W#�g���_"C��W�#�X��㼺rѫ�L��p�Tg��{���B�2{!�n��1n�5�ӧͻ�2�r�[�ذ���F���dTE��h��iK,����޽��e0w��J��uG�u=S�F��ʦ5�z=����Cú��r�t�/h���0:� k�#/��m�X����G�B�X�ku�~o��6��L��D䚮o����=�I�����M�Z�_^$��!���o�m�.��؊ɶ��L�}6���l,\(��©�Xܱ��:M���1F���Z��Tej�U�H"�fb	�?i�UF�������o��P�С4��_y��Z[�pZ�L�O q�5�W��/0����P�%��^V��O�F[�2�8T��8�����E�6Y2`�����x��x?��k���1�6Da3[A� ��k7f��-�I*U�&��$�z��Y�cb�<�H�Oe���G�bEӆ�hWp��g5�e��~}�k��T�3�C^�<�)���N��c�̽���ƕص�y#NT���6��`�����^m,�"ty�Vi�Ms�w��tnG��Zmsl�8��-�Q-?�6���'z����kl��-,mCb��&7���~l�o��b϶������Iv��ik�L
�$}Hh���H6��
HM���zx?��mdiS���Mh*�/�a۞�t-�c�MH����{E\���͏�&F_[�&Z��C�,c-Ά���{y�f��O�]~���xc�<���/[��76�KX�
�ވ�]ɧ��}��)*BC�!@C�f�2�	�T
C��S��e�j,b}��=zLv?��Ϥ���j\�{^�?>=��t�	İ�:�u]0V�%����P�C\�Wp�3��Mo�&_e�j*l��d��G�h���FάZ{^�d��.��]��L�L�o	[����pT��H��1@�h=�v�2��ʋd�Ձ9�
��h,����J��';8���x�M�?�
�yy�.��Ñ�ƽ�t7��Ms�8_�ɦ�;���6�橉���mC����6�w�m�M:	�$=��a>�3��y�pm���wM��u�t��2����|�{X��@��|��
�j�t0P7���<r毉X�z�M�e@w�<����J���ǜ�Q����T�;��/�FnB�,�Hރ��9GYK�
�.���U���ؤ�A {$ONSh�P���
X�.�*ZiTB����=��3��}��]2�	9*M��r�\�U��>�0��-�4��GJ�ܺئ+��]�YS%5nx�ջv��~*����Ǡ��B`Sy�>�v
o1h�GY�_�W"HA����b�`|N��ޗ����q���r��:�M�5c��2��w.�4�il�?C�=�ݾ#���!��_$����� ��k
p�y�����lMך���o����ѫ�X�M2TSaz�.�"��g��
s����V*��m�l"m7��a|mgl�nh���GS���c�";y�Mbz}��
��
�+?\��1\CZ:�QAU��*+4z�LN,_���������}��V�u�f�����m��no��0]�g���&yD%�����oU��[	��r�}���U����
��$�k�	��yX"`5Hq�����Z,%��3#(�"����bF��6l���#��%[�!J����e�s��&V�tq�=d6T�|����-��8��U�P#s��A��3�|
m5�Vm>��5�36��BGU�5����T]
AL�u}LT�K���g��5�e�e�P��8�_Z���y#�o�y+gc^U=�~\�S����Ҹ��&�-�k��
�����pL����$wl������'<I��>iąq�����n$L�sS��*�
 m���4�������x&�NNt���V�"dd�^jd֯��:�g��_'6�H�<d�'K�j�e����ڻ��6�m�	�F����6'W�Ҷ�H�z�~>��&(_tR�L��}(?qOKT	��v�ڣ{�c<Lj��6��O��Z%�u��*$h#����
��eV����o�m�Se�Y%U9	`'�Oj�S1C�|��;�C�3&ִ��m	`M��i/�H4���V2�Gf���i(�)�����@n�(��+_ӵ�>�9"2�*�a��}/OM��H��#�ݒ��Mx=�u�S€�&t���ʼ�*9�6]��ްV�ki�|�Ō�*���N�e����m��F~\~[��z�T~��IM�p5彍��kx}b�o�L�ɿ{M�Z�I�,����$�]�>|$���A�}�m�&�$ք߆8�gٲi�O/��s�I�O?�;����4�M��c�4��e��w�l�1��a�^�>��0��[���3�s$A�n0"y7<"e'ݵ��f-]{����]��A�hx���zY��uM��^��֕ ��E��+��)&{x��,���o1�"x����H��$A�B�FF��X���T�FɑMG�Ț%ʤ�3����^���eQ�D�]hq����y����^�G=��ܧ�L��I�iT�.잨�}��Ce���2�6���A���	�Mf��!�*�.�㌒��\�^^�����t�<�����J�^���Hw�m�n�3��?�1���y^���'P�����@Ӹ�$(7!F4���Uu͟l�b�M����D�b�ھo_c�cs~[���Zm����d����<�8�'�X�H�s�UrLx�}��Y�����mncV�F�pme�~��h�6
�Axm���a��`��o��&�
���mSxm&lhU�N�J��@En�?럫
eh�,Bb擬�25���g��s�~�a�Q��Xw�݀h�ŗ�j^�z[a�pe���{3�V4,ȫ2R�?^�3���ޕ��ED7��6c�+��jSYOq�gC�,`1CN�`0�n�k*�e
��!���Jq��H�s�4x��,�Q��j{��mm3��JS��ӟ�8fFk����$���ad�+
�H�zl&�r�.�q��-��2�hIcY�/����q�ꃑE�-�l���3��cE���4��0�"�^%��]��#"֠��l���<f~^r1�ƫ��&����j\�QrV.k���o;�o;���M2�}6��!|SZa\M�c��~7�!�
���6�>I�K���4nc�m,\��\i�i�[X�0��wS��HOS��g�y^��$!�y_+��hb�C�{��&l5Pƞ�&x�?ަ	��7V�����ewS{j��M��w��������#�|z�ׯ#Q2��{�W��,��>��2�6�?KO���u�*BS��Z���V��a[+�'M�d�am|�-����N<��t�e/0_�N�^n߄��?��֛�Jiu�8���=D��+j!Q^3ϘR8%^���U��U�P�B6�Y>���m]��q�zqq)C-M��!=v,Z�}T;�$���T�S�Q�6��&��V�`|����6�U,ͦ����������⒋��OTEз�۰i�
�7��q�ˤ��t�mJ�M���>����u,�Me��}��>�v�MV�pS�o���&<_$���`v����m�(�ɷ0��
�M��Szۦg��Ä��FSCe'9X'>-K��~��d�6�Z��.�6�rބNЮh�J�ݮ]�[�P;+O�~��sM�4�a?c{�֘��kFX�]���n܀�r	�n�U�$ےT�^˳
 �uJn�Ef�q=�NJ֐X��߇,��c��D҆��H"�ݴ�<!~5���w�C�\	�����S��/�Y�k�!%&֎�e���6�^V�>UE�!�6	�Iו#3�iI�H�ҽ,9�}I�ǔ6X�Q�_caS(-C�ʒ�8m���� ?ū0H�M��jϕ��l��W��~�&��bqĄU�n�Cb�c�k#X�i�ӨB���M��G\�5�8�u���u{Ư�m���ū�_�k2���2B�~�Җ~��і��z
�>+���Zme��U�X�>hU�H�3���R���������Tm�gb0|~��1vS����4Y����ДY��n���WČ�&T4L^1A��]5M��ת|۫*R�~�h�>�NN֮?�fӻ!$#dsX�3?�z�$M��)�g���?�OD������;������[�����5c!aF�Ue����u�}��ڙ%E*Z��
�������fS�:P 1�߹L�Sa�[f��s�)��2����G����42"E+��*���;`��G�����1������j|n4�d��y*!^����A{���Kr���kO-�!P�e/!���*�5e���vm�-@lh*�n+����$��t2������IjVS�j�f�<�������0�5��\�uU�an>�96~W->�OiÇڛ��bڝ8i��8�;T%>h��=ٕ�$`>+f8��1�CӼ����̱M>��ö���xkZ%�䚷8hjTɏ�����t�]S��#�M��O��ei"y�g��x�rlB[�g)K� ���g�X>�:h�JI�t�
�iK{ӠN4�0M����^[�m��=ͫG�<����
��:�uacc���0����\Z�.U���)���0@[��9���˺�үd�1[ow�����f,�z��.��5jA~�M\X�<|���*���.�fG�#H����k��j���1+�����)����B�|<�r�d��n˾X���Hk�Ң!��	sV��|oz�*#�g>����^���a���X��n{�f���)j���5�H����i�fp����`��m�zY�̕Wڬ�@�DW��ʜ��j�$^�DԆ�vń��=��X�io�aW����33/O�ڲ/��Ғ.-B����0�E�rL��ݻ�����u�����c�_G>����@U�*?�YX�~�rh҅5�^�,����P��*�Dzl�u�p�gU\�q0���M�~���k�xE@��M.��†�?��k�S�/*s���ܵA�i��躵FؔW{��|mi4]o�oӵMi�کE8��d�&�+L'�D�>l���ƶ���`�6�Ů���0��a���x�T��7	�!�P�Y�D5�ß�u{~]^[f	��I�'Sm�)���ɏ_���#WU��_�=��N�E��B�M�S�\,�0���w�{��ʠm^;
���
ҡ����?#��������?R�j��p�IV�!J�Z��K�5�3v�@wr�Z��H�H )1Sc$H�ф=�V���X#d��Tiٿ��ę��ry#:t�|�4��d�D�Ӕ�BmH/Wp��j9��3]�6����O C�5z|K�<�����?�K$�@ت�I?��;DŽ�Y,�
Z�A�Uz�1�*��kcJ�}Bu���P4�i�C-�){X��	�V�n[|�aVe�=���KX��db�W�.F#��XO��	�T�ض��c����޳�E�.m�^�5^�jW��x?��q�Z}�~���j���S���Ba5��3�|�p1�=kڛ�au�zg��㭵w�V"��/�RB�<`ɾG�m�W�0��.b�|[�z[�緍d��0�X�7a9���&���H�O�$=g����𛮷u����4��l�s�e�v��m�°���-^��z �HQ$\m
VOۄWWw�[멞��:r�>�)�]�q�i�{N(�'��P�r=�wNXua ��C��iB�8u�����BU�ș���`<�		�~�U[��/5�����E	��9<��6�߿�Y�����мeEWuS]���ƅ��3�����Hm F�ԔWN1�|��L�\}�V�/l3��mN	ɸ|r��r&��?�X��ud�Z�;�j��`�D�~~����/�ׇ�@4���e��r̿�H���,�dL�/@#��)_9��11�r�)�NH5H��[�i7�������I(DTm�\j	�!*V�����!���������0ú�j��\��'�GZ��d�r���#x��=���=x��*L�d�co��Ve��qc�������1V7�+P[�3������6��Q�s�^�_=~�q�Մ�xi7�>ƃ�v�VMbYnK�d ��ZX������JC[]�͗���W�3Me
�2M�ޢ.c�Ǿ?+��-�Ma><$s�	�:WSGɂ��?��C(�6uZ+�4�l�d�����0��o���l��� �d͌��j���4B�@`o��*]]�#6�z��3ը�i-�j�\�:n�[���d��9��oÈ����/��m�`��My�]
�8�J��9B -�ֽ�Q�s�9/����>[*��`��sx����W��49t��Pˆ��V�Ȭ_���#v(�T�n��61���3�h�l�%�Afq���޺�L��V�|7̮,���<Q�s��#A*����|����
���?��{����p��
����ƛ��ׯ�'>��w:�>VH�hO���%��ܹ�{p�'��{ig�I�/�g�m�8��,��:~]����Ҷ�(1�r��EY�<����<��9y�˼�av�����)����I�p8��L����S&E���gH̗���w1�z�T����y6�B�׃��nB�y����g
U�ϴLi�����5y6vn��r�G�{ m8����ڋw}�W-��~Y`�{�s��9`�J۟��@���Ӫ$��WR��mp��1٢^���Ay�����vc2�6���v�2�q��MM�}Sy�d�؜ݖǶt��ӄgC"I?!4
1�D���ԯ۴6	�1��iR��	�7a]`^/CS��ɫK'd����`|ON�r�(�����u|Mh�?�]
��;��2X��M�-��@0�����z��J���j�uuo�w�N��$���	�Z��j�����@*B���I;y��Ѽ�NV��߇��8z�cй�Bc^M�P5�z;�jB��ʫ��<:�UYE�l㬓pb�pB2��F
E����8/ʕԗ�i_�`����ڈ� �Y�[�P)���11��vg������Sq9��t�&�W^������ϱ:��۷a��^{^x�6M{��w�����_�����i�ܔ�Z���%x��!h��w_��]X��G��G>$V��{>�O�Q�T�U-@;�ҭt���L[X?$��ߵ=6�Z��FX������#�%�ƚAC�I3�*L��
wpx��PC�@"$�\�.��<g�Z")�.�L����ߗXJ2�{�HÍ[����Q�x@�f���5�J��n7�:��U���A�^_5c���F9r�7��0�X8����2Y/l�;�q�>��c�%N�1��u�Y7h���6g�Ϩ,�k9��6:6�7�ع��{�m�����p1���-�V�A�-Y��j�7�c�,��X�b2X,N���6<���$}�ؖ����)���4Y�Bn칦Af]���ڦ{���x�	�
\�}]�͇�mS���HE-͖0�|$ݰm�˷��wm+{�_z��z������8T�^�w,O1���T����3�r�,����Q63Q.�u�����N
�|H�TW�
��]\՟����`2$*����ʦ�)7F;��{Z����n5����C���0�V�
Pâ�sT4P��F-�r:�G9��A�%��ٓ�A�T�F蔧���p���#�6�#�
�#��N����	_��g�?z>��)ǼtQ�vpt�$h�Ɍ��F����tlEڔ��=L�
���z������-&6���O�c$V/�����44䶽��B�v��{�d2Sl�/����^5s���ٹ�ɣ',@��	K߸��J0�ˉ��;�LK�bGe=}z&���i�&��wI���j}���&�qz��}���`�^��d)���6D�O,B�~
��w��2a� d�X�c���f"��1����
`����	�V��ߡ�\��H^�p���t}�][����pnV��O!arZ���6�Z}�c��L�IpS]����vc�%�l���^�V6��la|�sM2\��m����>�W�$}�;X�N;���;]�@o�]ee�Y���GS²�MT��퇪M�jhӤ��k�&��Q
�v��fT�\k�4q{��`*O4�YS^�x�)��(�O#l3~�c�F��N���c� �\�jgu�#N�/�z�I_�o��M��%k3Ș�{Qd0-��A����}�{���~P���݃����VB!��yQ#�0y����a�_M������Na�u���vk$L��
�T>G���f�
��Z�_Bwo��ɗ��q[���K���a��H�V���!,
�x��w����}�kp��
x�7���!�}6/��8�
IB���9�$r�fg����+_���&Ks�4}�s��o}�;0�u�$̰��O��>��iؼ�f�&Oo���N�W��I {��s۟H�tpp��B�9X8::f�trrb��J�.񝎍L�/����*��\��,7�"��G��6m��>�������'h{?�5W~��bC}A@��UP6V�1�5��~[��Ҩ2�Y���Ժ�n��i]=W{ð���ÈE�
ƳjL�	ضLZ7�/��^^��?�`�	�T��>���g*:wW|sf?��~�M�}��Bb�g�d���塀�5�X;ڔ�6\%l³A�O����(b�ɿg�M'�-��I�}�<n~S<Mᮒ�Z���E�'��Y�C3�h:���J{S���փ@3	�'�<9#Z��k�j+��'���?.����#T~���r-D�z�͛��DmM�-�X#F&��ݞ[b����M�o������W�/�G�%u3xa?��]�GHR�9�<܅k��ٿ��f��k��Z�l�=�ʢ�*�/�<���
?/�{��s�w]޺	��ڻ�5=�֔Œ���l�y�D�
)CrF��	y��#���݁�;���b;�t%�#�,W �Wm��!�y�1K*H�}j�\�0/XWS|�j���1�"����[�F�\!9EB��;,�P{D�]2��FH�&�9_�>2/���e�od�F�w{?�CVm�N���6c�m�I����k��?��H�Nus1��gwP3�G"x��-z��}����.ĜN�(�ޔq�XkT�
��8�n��O?a�;�sl'��6d��8���k7o���Z[��4��k��p<<Z��I0l\�_�>��,��r��'�7͍��/N8���Z�l,��
��~��[��Y�9�.jC�F�����x�d��Ts}�=אo�Zl��Vy��z,L�7���3��^��o�A�PGm�$<$Mҏ	�V3���-bB�t���t��Ma�����kx�V���*�3JB��K]F�Z�w�h���v���uClޚ����:�ՍϬ��(�̃��G�x�i���T����,�g�<�;-e?G�������C�Jѱ��[!A&j�M�����'i6&���� �8��a�Cg�hx4*`o؁�_LW��P�֟�j6��!@�����ap|�����u�g���z��Hk2~|�a�(d�Q�VH��	X A�Չ\��s�x]��RG�r2��x���r�o��/�W�#��n"'�֍���th)|�y@�C9���Dx���.�%���J:�HK�R\`���N^lU*"z9���~_.0m]���h4>��c�JԶ̘<�"Ӳ%�#�t�\�i�ƚ0�Cii�N�dp�X��5&y��&
��ӧ�����a���>>�Y��)����g�Ib��9cie����C_�h<bs9p���f��;�h���z{��m:�i2��#��b���53%d�����tš3�B��6�=D���dxU��Zx3�ݳq�j��"��pKm׳�GBT�Y?a��H���:���o�o���{z�<�>��e���y@׉�̑R�&��F�j�_�,��]~~�d�X��\���1�!�+Fl��P�h�/,���j��Ee���$����!�:^�Y{߿C�3���օ�v�b��vom����Z�ڼa�m�w�LVC��\'�o�&|�	�����T�b�|��J8�7��s����²�ҫ�d��YT�{�"Z#�V�
�G��t�^� ��x���+��’N`����I򃽾�����~�|�TmV(Ё�da	��ԁ���߄Y9��M��ɯ�����d�x�t,��<���9jhJԬ�.1�O8/�����`�:�CK�w0��]��\y+��LNϫ��v���$�`V#� �s���(�@h��H�Vg(�ϧ�_��d&�t�B���ͼ;&;Lr2y�|:��¤�
u�=76O����dV�����qN�.Q��G�4uȃ��=�C�*d��H���"Q=�@�P!�I�P~��ոc�c�OPC��'&�D2F|0/��1:��w��1��P{4�3�4g���T����<qY��!&�����A�}~>B�>!mY�t0�2D�ʒ��t2C�=���C���T�4`7o߂��NdR�>�k��?�}��3L6���=է��<+O�v���@� �M�L%��csc�&��B|��Ań�h�zO������/�WU>��Q��{��;kc2��>��UY�F�g
��k��W�#��M����T�ƦI�h�����t6�-�a<me��o*co�w"K.IzNئ�ƈ��m��&��]7LT��ݖ�X����y�������k���`���~���#��7%���%��*�V����H�H�D!�;��(��
�l��p\�-��%?[����ܬ�(��ˤ�Z#RUa+��/{h�Q�f=o�U
B�g\
�Z]���z�7+��@m���3�j8Y�Ҙ�V����J��"i�R-���Z�Ed��J���[p1�0Zep�Z��~}�`��ڕ�CXd}(
��r�q�W��,}�\ߙõ�LN���8AA�K���O~v��>��V+z���PHS��2�Y��N#��!A{�a�d�!��O�� >��

�N�o2�ʭ7Ō�M#dg�K��4A��Q�1c�$V@��&R����'8[�Jں�;��R��3�^��SD���o����;�G_E�Y��^ʡ�LZs%��jc[��݂�(,��%Nr�@�7���c8&�oDP5T���h���c�@���ON�1B	k5�t�+���P�xQh�F�0l�$�Z:&x�zU�wg{�U�iLɕ8�O�7F��
�p]@I�(v�@qX"����%�F�$�S�V�{�}����aɟ�S���Sv�Q��Q��߱�Y�P.����8�w�5�Uq����靎�L�{�j��yߥk��^��ʡOD��M*_[�,>���r)�wI�`�m�������[Hf���,tu�F��L�UY/�f���i��+iam?'M'�fv1�.�,͡�e��vO�����os�5o�ΌÑ���;7�V-s��e���/���Ul�>���o�Y�0�^����#�5����)^���D�b$�*r�U�'|0$��ж
�t�����~�6��=\���j�b�faj���`m"cn��e��w��6����[��4�s\�����Y�AA
G������A
<�/�I I>����:!�ɱ�^e�	��i�	e뢌<��W�"�ڜ'Zl�ߪ2�m���ek�-^|����E�����^�#L.c�	�&�!""HjW�0	
*�ΊU_�Gl�v��t	�jQ�(t":�?D6���[��߹D2p#�l�ୋLW9��KԀࣣ8^��G���o�/|�S�{�#0<8�cPm~H{�$�8$K�?NGe3P2A�"��\H{��qxj����	�+6Wo|y�#f��&-,T�P���
著���0s\���:��	��-��X�øvY�C���H&p���刉�!���i.�j6�<}�m���t�Z��GG|��t~�\�v�^�^(�d��waw���`����|t��%J�k���`�3�ÍkG�u�X�F���r��&��R������OON�ܤ�����W^a
�%���0���.s$��EB�@�{t�6�g|�Hz�$+AFڬ;�V�Pl�+������K�0�:<}�����X7��d�5\]��7V���
�������35���]���H��bMM�V5�����TU�V�{�o�T���a;�S�m��r(^�
)_f����8�<&�/�38ö�����ƶ5�6F����v����.��R�&�B���q����ձ�Dg�d�����>߅���=u+�8Y�F��r	;y5�K�3Q2�A�QoX��l�J��/)�h6u���;��mHd�\^��>|��>�֎��KQ���Ϙ��M�i�TňL�M�I�i��6�d����D�><K����cd)֙��M�=/$6���A�
��g��$�i�Z�x��F\l�	���]��O$�8q�9o�_d]�yK
�y�c���mN�2�dv�Z*��Vvc3�����M~�|㊩�A���*V��ﵖ	iu��!iz�u�f��x�D�u¥}��/��V�b���u���[	.�dGW�@�p)?/��aN�$P��f%L�9�PH�
�o=�O���_ڃo�����HG	�'9{�;2��xZ0;}p��c���c��/����r�#�TL�S�T�#ni,�gLTP�e�it���=�!��N��\��/t~
gK��c��R?g�F�T�)�FmM���%
d���K%fl	o��a8VtQ;���߀��|^~�%�y�2���!|�[�aw�/߹�W~�YcF�ﭷ߅��w~�����K����/|������O�������x㭷�du�N^�u�������g''�����;߁[7n��>�*|��_�����}���iזI�ڛo�{���	\�'�LϮᳵ>�-������m��������Ob�X�6g�m�<dʑ!"�|>R)��,�9\)iQ��MDH�2
b�H��`��ˊzh��0�U‚�)"����V��Jl���,�����y���d�#s�I��^�՞���Y���h�>���˪�Y
��h�-���'@�T��>ge���7mG>����?��b���)��e1C�C��.����&�<�v;�r:��$;�oV�3ʔbNr�y;�1K}N��f<����ʼ���%��>��	˅����P�Y\9�!����r�fuĒr��y�E�����j�^3���G8Π6�|o����E{vvVk+>B-��=��
�4Ԇ<�����7iz�p��Y�0���@�Lmi&���Hҏ	�V.|4iabd������‡�ô�JW�3����𹶁�]sZPA��p�=�U��	
}MX3!G��Y��ؐ�6��c\9G�'�I��c���ΊV6�>�һ��H��X�G���	!�ʧ ��)]�C���P�.�N��
ګ(�Vnu�|`] ����j�LzmFx��]�����D��z��E�	F�wG��T���8ʈ�p1�{��0M{G�Y	�H��G�r{����'C��ۃO���D�)��xf#���Z'�v��Wx��ӋL���}>��[��~��`����p�B�'>�yz�0P��.e7
��J��T�]?�]�F�0�[�c�M��R��ī��%8~_q��y��F-R�	���8|N�h]J��/c�i�~��o����?�/�k���տ���o›�(������,���7�W�?��;�?��/���W��{��?�~��{?�?����ij��'��Y�C��+̻#�Y��/�������o򓟀/~��?����7�:��_�<���0O��<E�r!m�Eg/�9�Ҍ��)��d���-����S'\Z�~��Iq�`��;�j�_���\��'�	Bh�p�:/�"
(pf�Z2�u�|�U�̎�e�%�6K�`��w�~��y�S�C��j�x��	��T�V�I�]�����3퓟L��TU��$i\�U���NWc���8��z�P��`O*6fuLN���ٿ�����1ɤ;A
�ӳ)��n��єM�:HT��[�RƔ~F^!qu���#�~�kP�6yѬI&�%b2Id����6��s�ǟ^�V��°�7^��w�,�^���Wޛ���k'p}���d���`�+���d��%�a?��>��_��p5�T���8�%JU#�*��B�d�mHCy�e�m�>�E�P�-H?�V[֔Ʀr$<$��
���Lc�����ߦ�i��Q��S�-����*U��'H`�^]'RvM0�+���߂���`'�N6���o����w����o���O�
��?�5x�������{(�*��_�)����7������c'����uGK,y���ʪ�<�4G�u_I�uR���&<|[2�Oo�'F�����
WZ��"��Z�k��)���-/NUE����U�ʯPm��TL ,�=�$��a���P$s��hVϊC�Wg�(\�263顐�����e��g�$"cx/���r��ه��Kk���"c�˩��wL�hw	�o|������)�%,���]8�î���{�끘�^��3��N$b�~҆,�3�/C� sj�$�wiu9ol�\�&
ۏu%�O�Hfcއ��B�.,�3�9�)'�j�E�������-v`@���i$*/ݽ�A����p�C�P�������/�b�#D
2��;�àr������<�\~�Gq�������ٟ��_����=�~�;߃�^|>����^�-n�D":����p��pg��db�.���qX+�Z"W�8�7@ъ�~.��G�U��=�¾9�֡���X�J��iC��ݳb�C$0��:9��-:3DMI+^��:Yژ������g�Pe)�Ǭ��`(�_ܵ5�3)���qevW�~jg����=���fK!?~�`é��31(%%�eC�����,��9����2�wV��t�O�pAa4����ҫPӃm�XE�0Kl�3��ް/y�$��=">=�-��`l�����91ŷ��g�EI����=���{����'M�h���P��y�_��nL�c�Q�f�Zj�ر�.��w��-^!č�tX�.6�O�y	�������-��N1p��#�5�T�ԺL[@���kM&ikYix>��i#l6���62V�
���F��J���!���M+1-RӪ�&d�iˇ�)����0ۢ-��g���N�z}p�ay�7���ܿ��W��܀���|��!�o~�KpTN�o|�%x�������rv
_|�
BO�/�
���5��o�xۻ;�S�ɶd�<�ց�h�2��j��J\�D�D&�h��P#�=�ͼZb��0�&��Lƹ�)�I)�UJ��3���9�c�����D�[Γ��Fqޤ�U���#Z�6B�S�\��L�&��޷O�*�/������.e��P)�㊒�x�Df�g�'f����W�p$�4�֊g"��P��H��Y���4)x��2�jWHvX"9:CAc
�NG(�j$�s}�^�3Q���Z'$.
���
��Tp>8�k��0Z����� ����	<x�O`�_������K���5@��Y� ��%��H�kD�;]H�x?��;� U!{�
4�z'��j��H�����U(��Pð�i��/`��gR!|RD���\��n���[އS�>�	���pxt�ܴ����奘�����ʰ1�S�>�ھ!-$ȳ�<BB3!A���.���w��w��cm�;8<��d¿��bYI�Dx[L�0���L.'pyv��)�
��雮�.@�)�2�
�h7ܞ2�	�I����E�z�N㙰(k+ �L;ژ��u"#{ڔ��եף�b	{�+�
�ڌt���(~7E�'�R�o}/�ޘ�.K��J=sAΚ� ���^�+�%�(Z��sI�L�^y8��P�a�����?�h`�dޛ���>�q$��d�5�Ԟ~��Ei����#�L���k�y���:�x���)���}$Idމ����|�g>g�ݡ*��~9�Zڜ���w��))���/��Ņ!�M���hr�c\�W�<��`��Έ<;�z����tA�z��0��u�=��f��څ�o}&���/���")��t:[2Aڿsv��o��&O�p��xo���,"��������9_UD��cG�Aj�Q6�I+����J�|�|Q�C��OӢy,�W�,%<;I��v�&
��Y�I!ɹ
��u��z�γb� ��#X�i�t$_���6:�P��O~���C���������'^�	_�ܫ��Jx�`��_�%>f�+r����?����W���|�SEv�K<ݑ���*|��;0���`�+���<�a��ϛ`�>y�+���T�6����){$�����8�;��觏O��/b�P��8/�(�����؋�A������(�.��bq��oE]�l_���(N�;{;У�t�y9D�h>m������=��Q8����0���2�ƅ�p�nF�̦��	0V2����Q=r+4�3��J�8A����O���s^jG�����^z!�\����J�.I@�a���hV�
����Ѡ�#$Th�.�J���_4�?��#�%���3�J$;���6w"d\C��%��?���&P��#	R�[ǰs|�5)G7*!W��M}dU�fCdd�G��zC���s9
fE=c¡E�b^����
Þ��4D�rω���
BX���2]#�]$����5x�B��=%��_�w~�͇|!�d'�r���]f�7�`��Z
�@Q9�+y�����|������K����}r?������d2�}}�m�k%3'Ş�Js�Q�1�왬j��2����o4w��!�R7�Ϙ��q�����f�(�F�"&n�5eV[��Uo�'�Fc��V	�v���)
a��+ۇ�G�L�������6[`�}���o����T�B�
%��]Q�E��~k��I#x�F4�eL�H1f���}o��ȍ����v�m�ζtų���x��d��E��DH��+8:��c�9����vQ�����hӎ��{�@�?䅂c$�s԰���d2�!�%�<�Mg�H'��|�X����w�p���hOP;�c�᎘bFg��B��mJYd��.�MM#Y����)�8����<��"!�P[N�%���H������4��5�†���q�P37���iNZ�I��=���d��ZL^i���B"�I���7�0M�h�߮J�¸>Iz�5�M�$��}n[��s�N�&��H�b��fqσ�����ӂڔ���N�����~��s�����1�7��ҧ?�����oëLJ�߃Wn^���W�pbĉ�fK�%NV��(`�
[�����0N�c��1��8_{�=��G^���(\�����~�G�֣�Y9��E���~�gpUs	o��>��Wx��W^�~���������F
�������������㜠�����OP� ~�H��_����|����kg�.�{G�H�^�{�߿%
}E��>\N+�j�­��"�KX�bo�{|=�MRWq��Ưl�X 0�&/��3��˒\�j�O��wo�+/�ƺAm
)������
Wt���oZ;&�`$$��E\�*k����j�B�K�F,0��i��R���Y��,pY��L���ܻ��|%e��gX�;+�I���V�����D��]��3$Я~R�-���i�i�_���*xa��)�����.i��Ɏ!A��	:���D8���A]��ĕ�2��_���7o���?��?�6���;�;�2��Ftk���bF�&g���#���f�pq�h�2�&GiQ�f��w��H��o����x�3��*�m�y��on��W՗��@��39�V�m��}6�u�!l�E�*KX�ڟĚ�L9a�ʘ����c<�v1��Z�2�F\)!n�̨�oRn�J[�L���&!�ƛ���.�P���6����auf���*=�*��ɺ��x}�Q{��>/Ys;m9Wu�9%�甪�����{N�u��tn��E5�SZ3|�o��X�>���p��P^����=x�ހ=��(�[�k�pM����x\�4<xI��G�S8���<'����jN)J���'ON�OP�Q���`�E�s��&W9�Q%���v����GS��H�6��3�dJ���}��Ȍ�Kй�3�f=A���
a�Zur/N��l�2Iڵa/��.ԡZ��Z��`�d�؂��ob�!W9��0�xC�޷��I��0l[\a�D��Izhj�W!M������:x6
~�m�ה^otPc#�
�VTve1#w[:t�c7!C
�h�G?
�ݷ�w��]�[_�y����§���/~����>
���'��܁_��'���G&�J2���4!�Q����&��v�=X���.p�(�f(���
f�+�=��&_6�%<����k8S�P�t�#�NFp�p�'�ɷ߄'s�n�s��\���}�l�+�;��X��=)�tu�b���o��7`�)�C��n�JS����~���M>�%�IMw��d��xU�9��*�d\)+/�Y̭�*�.������ʏ"�i�N.�7�v�hr�A� �(�M�J�)�=5읍�O�Q8Er|���f���r�c^�K�}�ڣ	��c$8��y2�l�Gg"-�PS��nN>@�0 a]����*Sc\���}��5L(,=]�FzzM�pB��}��I��j���s8�<����P0y�Oq��9Fd3�:"1�IWV�y��!	L��xOJQ��T��'�R<muU���a��o�� ���/%f�vE��Z������7��Wq`:aS���3?
��NfL�\QOq��$@/�}I�o�����O���۷n�?�1G��`
�9��ɯ~�k����|����"���}>��O�o���Hδ�Kc�wI�ݻϫ���/�dZ���
�9رG��j��ӻ̵͞�����3e������rD���l���$zk�N^i�,9�ӰQ�.���8��D��=	g���h"j}-*�N��ey�!Nl�g�\��x��}�/6*8�]ˉ�W����*���;�G&6��e1L}���`�	Z�Y�Y׼ψ��O�p�"���=A�8~�q�m�O�f�d���@�2�&�s�:..��J5X��ų�12�E2Dq��%��v@��Sb�Z��9��=r+��/]�ON�r���dHh>qQ@ϞO������4�=�[�?��Y�9��1�_����~:abHٞ-K�5�O`��)�D��Ɉ\���
�v��wc�a�ltĈ�&�b�#J��a��w�������Ї�D�> ��64���ՊMA�#�VmM��O^�VW�:}��]��D"�?_ٵ�����)����Ó��o�*��?����෿���;�_}�
�C�ݹ����|>:��:WBىQ�8yG�?���x���у�j�̾r��siv8��1)Z�'3�>
=4����9��(&cS��>����Ӆ.	�$8����r�f7O�Ld��]19T��߿��D˛�/�TOdZk�x���ez"���aU�ͭ)`9Qңk_�Ih�n|�J��T��Y��+@�*H@s�G�������m+:���E	�L�O�G@:�oF����w�sXN���������z�3"o���p(T��y	G;�ؼ�L�f�/�F�I���
��)�E�:[dpmL�hO�t!u��<v��Q��LX���I��£�^Ǖ�38���a�ς�3S2y��o�Z&2������y�P��^��h��D�!&B��@������W޻�4��h/x��ٹY��!�!�%������>�)�̧>�x��=����n\�WK�侎a~������]x��{������ɟ���~�W�6�y�ڞ�}����h�(BɱDל���~����?�S��/|�˶�������O�Pe���L`�X�:,Y�����g��6g�q�u�-�B�
żI�B+��(KGdr�-�ֈ#�f#��Gu�23*sVu����ю���]����)=*7-��j���вr��l����˜��ه�M�v6
{������%ȼ2��H�j�)wV���9���y\^tm<���:�c��3l�"H��"->�Fi��pZ�n���t�>��6hQ��Ue�4���1���̎�L˰G�Ղ5K�{;<>�.�v�ZD�\�ł�p�����0����p���\�a��Ő\\�S>�M1뙱���}O���5��ᢛ�8��+bG��r�&�2�V�8��YN���x�+v�&"_��3
�|����c�p�6�-��M\�01Bf��D�ڈ[�����G����&�[I�Թ�4�k�h��HL[�n˳�R�<m�7/5�W[}�&�������Uo0�8i�Q�7?�P@X��}�.|��w�조ˢ|��|��#$<E��IWq���<K�4id,�dL}����u���B�1��T)"^i��Y�5�7���ˤ��*[_�s���R���:N93D�V{�J{��Ż38m�c�z%�P�=8JZ��r� ]EaĶ�-OQ")@S����@m�w[Krv��끷����l��5��v���r�b6��M�(�F�q��ʌ��ݘ߃��P���}"-t��I���6(���N
�N��6nH�Z6����^.�(=��Pс�}{H��� q����2GMc�f�N���l����>	4+$�]&N�5k�帉��9��O�1��/�Jy�	��)ig�|���g���M��΄����Hi5�]�a���,䦗9gm��ܾ���]��YH�?��ͣ#�� yN� )=8<�S$TNN�Nz�w9�}R�p��J��Y�
���������i݁3|�4P�0�B���]m����ur�i����G&K�P�4j���=��B�{i��3�t�-y-W�Bnd�h�D��#�h��9Z�g�ff>7Qqם�l�u�[#����]5�V��_a�;,�f�qVsJ�i��6���]��H؎+�_���l'�'g�pN��j�ievW�;aǗ?;���ՁR��e��W�\��������1���T84Tq�������
�������_��h�~���<b�?;��1���77���E�+��?io%��m[�Z��2����t53��Ŋ�&.��^�}���AMf���g�#$ym$�A�$gr#f��	���|�9+�>҆I+M��C�-��ʅ9�ț<�����ؓ�G����:��)���%�ׯ��/ï��ߨ�۾�H�~=�H{׼��Y4)M�B��OL��u~�4C9ɏ�-��k��i�`H��然�j�b�s��Bር„�M��!a�G+A��4�&7�&��ی,�{��*�./���64��G����`f��;�<���<�̙�tZ��J��Օ�qw�ZV�ݣ&\��[�qIUP�,�g��F��A��l�o�<��O�^7�h����LPF���\�z�Ƅ|����J��@K5�ڑP"���|S̜������{H��Ŋ���'�^���`M�u@��I�̪r2�=:�&~ڞ��5�Q{i<~��,Qwa�*�|�X�@I�_,D�+���B��Gݤ,
��h�^�E���=���h�t�a�W�ә������ej!nxI�H笔���V�1~�l���m(�����.����he�4j���Iy����gM��~JL��=A���q�M�]�2N��%�2�sF+"�9�Ó���`�	�̣�'�NW q̰>��9��V�/.�����%����Q%�aON�\�~z*�T��� o�G��˃'O��M�Z�A��W3�^��]i�t�i���g�8��>Fl��SV3c�u�.�YB�p��߹����]�*~YTVBE��`�K�{&�urN�3$'T悵bFDBR�$�������q}lP�\��]��V��T�aϺ/�mSR��Í�şh>\��d��+�d�Y�X��|�S�v%�s1��J�,yz:��d��0
$�����b��~r������/[1QU��:^�&�r q!��M1�k�mC��ـH���v��Õ�����-�7>jWd����`���]����O��傴��9%Sc��Nt�i���'m�e�V"m��jYr�Q�r��b�-�9ZKMp��%�`�G-�y��}��{2B�y	�����4��Ѷ����,y��/��I�Lx6$��pՆ�ie�I��F�����B,�m��4���&^�:�.��ҋ�%2x�3{b<�����R�y�$�@�ב��T�6o]CH�{ޏ�k���hx��ӳ�K�ݯ-���+����Y�F��a]8�%,_U��H���<��e���<iCsrՍ�I%��ybC�D�:	{�;�q�͂�|�e!�y��)���
<ĉ�<[-r٫d�	*	�3v|�gZ���Bgo��h׸#��h��N.d�L�Hx'ru��a)��2 (P��,��Gx��%�\�����d>6FR��S�MqLv�(l�x<��~6�K$Y�� �>��_b�%ah�Ms���"��s����J
-Y6�	�������U�is�)T�mB��"��!�n��vO�	��.9�¬5���'��c�c�b!Mk��Jܝ�8Ye(��[3-qO�Y�p�<̒v4Fe4�Z�vj��1
��e7��k�Y�{X�sdFC�8��iA�Ur!k�$�!�Yc�7Z!�,��qS�=�|QW�<�{��a ~�t�+�=|�f�S�~��[|�Ӗ�y�ʎ\��am��^��dW��2�{ctY��>_�V�;�A��|���s&���	�i�ƣ�������N���A�qœ�b���Ҽ����V�����;C��Zrߣ�J;;C$?b2����qi��2CB����&-i��l���K.m������i�!MoG�
�8�gۚ=Lz�uBa�9%g��5_��
��[2i�rϐ��\��ʌ��L�5i:����i^�Њ�fŏ����a��hS���c��~ذ����U�<��D�>D\E�v�m����j"J��lC��VE���[����|[M�`��z9�y��i�XU��xT�_�[u�%~J~��
���'4C��]��U]��غp�U<5��@���u/RV�^/�����V`������GL����E�����%�$���6G�&0��cXN왊C:q��I�1C)�y�1��(^���Y)��&��(��Qsf2$K�j�4.u�������7~"\#YZ(���@�;f��g�h�F��g.��!��>
y	�^�H�2��Gu��>j6�P�DP2��bT2��w쭀�9��zF���W��gp~�G�s�Un3�H�t&?��j?i�U��@ϧz��W�"H�	k�VnQ�zdS֜L��3��4B���.�(Px\2��Coiû6D�����󁷦�+�c2�Ƣ���s ޿���+�"`亜=u�sn.�՚�pL�:1���u�
�g�׈�R��&�vok���Y�G����Ko<֊����1�h,-9�߹֋RZXn<�Q�I�H���<oyڜ�f�@�/�B�:�#��r���:��O�L!鈀G��:����#�/M�=D���vC��GA���=;>����j(
���
��ދ�xm*3W�a�c���$m	�Ʉ�^ ��c���̈́s%��M���6��36{�}o�>9�σ�@Q��ň`-�#*�/�8�,V��-3M�}"��Z��\�F{B����N�y���
A����O�\���@!���d�kƤ��Q5k�*��P�-\���v�Q�v{Fk�m�/D�(�n�C����a�C����n�bH�T.q��Ch/���e�"�e:wY���P��*���뾹[L�	�m�Y�<�)��8�k�8��і�0��x6�D��C"I�1B���M+	mړ&MN��Iة��Oؙ}����+C-o��Px�@}��$�XH�:�qI�V!�#f"��E\g���ޛ
c:�/��՚
+�@��̤Ni!-�C(2�n+��LV8R�B��CV/@�Ĺ�R�l�mKP�A�	F�F��tUE�sޞ�����Z������(���"	:����.Ǩ13)��'��$h��ْҐ�l�F�ì as��89�>����y�
JzIB�B\�VfU�J4i-(�{��4G$�u�����I
L9��9�]��KH���������{��+�`�O��{"@������B-	<O�+�ja��sx��K(��t�n�8xA�Ŕx�#�Ț$-N��d"���bZ�7$vKqP"{�J6KTEu���My_P	OG�whl��N�3�*��C�{��
�t��#�������kX���|�*�de՗)���ސ^�J6�����'7	ִ�0��w�(
q������/А*Cq–��k\jK�c���(��Yf{6�4+��b�"L��;���3הh��F�=�R���w0��e��`RaHk��o�"��%@�X�`�ur��	��r̄r��ȬPs����8R%lŕ:ss��3)���v�2gJk�0d�6>(l�f������9�z��/���/r�Ǝ3ț�9���i�F����#D�ƨ�&�P����D�b�8���6J���Uژ�iѮл��z�b�gl�6����f�I企M�:r�1��.kjd��#"s3�CWH��}J���ʤ��e�A>'L�'��ʍ�����L:D�(~Z�|ڃ��|��콕�Z��y? �	��p)d7D�:�ƪyη}8&���Y��V�i#H����t?F�ba�<��m���C"I��F��X��N�>F�b��m��W[me��ݭ"A0���?���1?�ɯ��{i7�$NMu��}0`	�z��jC�*�W�+�ϰh��b>�6x��a:�'F���ȀO�jI���cuM�s�든W_��p�&Ύ�e�p�0
s���'P{Wd��G0:�cr>�GO��b��%
	:����3>$R�i6#+��&$B�
H5g�
��hɶ�Hƞ���ؚ�h��8o���D&��v����Njcvq����ie{�&tg�a����Ц{�2�tPPS���`G�g�a�ƑM����QV�Gr@�^���#?��/�cנ�{C�'	C��<j9c��\L�I��H��=�y*X`w{*@L��=9?C��u>$��4��_���w�?��|��}=��L������-Ѣ��2-�9�<����>=:�����O5߹s��6���Z�G�#8��c�����t���>�Ϸ�{�	z������
do9��Ǜ��sXG��{Q,Y��U~�f#��P��5���ʘpe�)��PI�3����̸=Ʉxf֕�rf~�@�	
ڹcg��B���(�xM6^!`�ʑ#�K�4��]>L����tOO�Q�����t6峭��@v��5�ۂ��=��]$��^tt�$��GE���m�¹��j7�7Rz��ǘ��J�~ Ҿ�>3ޛU��N��֩�f�&�p!rH�t�
kA��!���jM���U�=o���iSy�15�r�;�
d���5��:�,]�i����k�.�E�3q��>I"5�L��.I:d����Ic���X��D���x�[�s-�.P�e�>�\-\}[-�5'D�ƫ�-�L�͹����T�N0|�[De��1��[L�	c���i1;�;��GY	I�&��F><$���mٴ2`�5]��#2ې��ڦՊ�jJ�j��)p�gV�ᙦkV�P9�ehzv��iU7|zU���I��
��D������:��?��T$��"+6i;5Hx�؇*�*���]���}�fJ Ԅ�rc�5*�J�juT�@]�{�-�ݳb?�xJ6eH�p�������k���G���}&H%
7��\�q��Z:c8����%G=���\�`O1���]\y�
�P�ə����d(yО�a���
Um[3��Z�X���߁�Rjm�Rr�J>2�9F�y�;��`��H����3$��5�����[����d�������	|�LVv���A���a}a˰<�N''�HD�
7n\��O�
{�cRhJvꠤL$d.��-%���a\���ˢ�l�[���0�U��OOٻ	�D;{Xo߼	������{����lj�T�h1f7ʽ�' \	G��|5���>�ُ��J�ȝ��������tFOC��+�gp��ho
q;7v�o<�/|�p�e'QteH}aڞh`�F�Ag�~h��V�W�%�6�C�P$��j��,��K��%�j�WZ�y^�4�>��|�
0!+
A�ؽ#�rO��xW��D:���,�	(�
"n��y7�>�@��֖5�{,kOh7¹6��H��Hf��|��'#$�����9��Ͱ~(dJ�����#N��?x
^y�|g���T�ǃ%BR��9i� -�G������B9�/�yd|��n�$v�N	;=�PѾ���3I%G
?��wN}�0��>wz6�z�0!�Q�dV�љtnG���T��,�ԷM����Er�m�w� 7�}&mt_��R7�<Im�B ����Y���e#�N���9�#D��>w��As��Z�Ĝn�v������|���/f�l�JV��:�;6����$�s�Ч$�VLF)Nj��iRH��ܖL<�8�X-����.7��R�Ȧ�9j͠1�:v��_�DX|��M(��…٘<�V��{�G"I�F��g�;k,�6�Ҥ޴
�D���	��a�7�9���kɒ\�p�
U�
�*A�O�w��	�K����O��(?U��ҏO���{N��Cy��˟�I���앦�mU$Zk�s������K�?���p���Z�%
]l��o(��A��r9�A8��B�܌F,�Q�r�;�
ڗ�jp&�:+{;̞��xs#��T��G��N�
;�R�9B���X�!�����A�tn��x�q|�@�G�{�z��>�+�,s8!)�Քkŭ��`������pFs�ɛ8���Ga�N����Ŵ`��]�.��f��{>Ǽ<D�}�o�k�h�Dn�A���I�*��*ڣ�S�^�Dz?������'P�����4�{?�ĒO�o���6����I��[�[��>��q�L�*N���y�"r5�ϐ�
ix���s/���4l-m�O���Xs�2��Y���E�J�/����D�&D&NԬ�;�� e%���&���a/p�<��2�U�h����v��7"D���$�L(�H�碽,��qe�!`}vC>w�PuU^�/uu^�[̑3y���������O�ok�������:K��IKH��h:���~���a��O�� 	�~x�u�d�/z�	�jr���O�}h6���I�gW����OU�9�7�P����.��c˾����1�xĽ�83��x�m�L{�;��ٴV����0D`)��|�.�K֢i�gG/����ؔ-�1O+u��]�����N^��'��-M뼁������,݂i����V�\���V�LD`h\�W���RT�T�#Z�<W�т���\/w]�A4`R2����e�h���.��<j��o�h���e�����}��Y�����c�3m���Qj��¼���g)�D`6�~M2c���pu$����cכu���D<���D�6�����P��![1B�Y�j&c�����]5�4���!C-��%��"�R{ġJfɄ�̉��֬�r��C�FUw�F����]]��H�,pڶb6����@��m�h�~	ҫ�C������B� �����e�OZ��P��$n[4�6��ӧ�P��gi�8x(ؼ��B
y���E*36Ҡ�Y^g%#���Ń.{ͻ?^��G�hz21�����T�f�/�h�A
��!q#�j�v�
^<��j��Z�������0����^{����־���h%��s��tHl�庘�Kdkg�����Wp�����˟CA�ǫ�[�Ot��N��#Z�'�����	�T�Px~rv�B5�Ҍ	+6+����
�|�/����@"T�Ij�z���w��dg2���%
٘��>�X�kG����љ�x�
�V���Q~{:
	��ƴ�H)q|@�ī��2Q�,qc�/��>30B�Z;��u:�����2�~%r�l�iˊ$�i�"���ښ౐N�Y	9��� >ԓ��L��^�f�4�N$뚚]��ҝ��eT��rph��C�3��q[��6�{`�9V����li�d9�#3D��co��x�$2��$������L�0��H�I��	�բ�I����T\�9j0�<`-���r�@�#ڸ''#$,�,���v���f��%>���eiL*W�آD�:���v�=u��w���A��9�`=�Hu�܍L�:�xl:G�(0y��{ʍ[�y�TF�d�<*/��⃥�����h��B��_is~�1�S{W��y?\��}�g��%�H�+uN.��ʓ�4O��$ĭy�)�g+��4���}�S_a&���1��d���F
L�:�<�LO�N ��JA�Btik#3ې'�w6Fv��$�lMyi��pu$��p���h��"����4�߆F-MCgm*���6�x+>��*M�i"Q���儆��h��,	hI�P
>y�c����6��g`gR��U�{	6{^"�&A	R�<*b���9r䳸�<>�\��[-��0�!
%G�
��۷a����!g��)�Q� s��d��ƣ)
E$��"LBF���Y�^��������,Ōd7'�s(��s�r�\�q�i�y�Ea&�$�g����z]��H�.���C2��0�wr�0�Њ->�QL�0ex5P7wQ˃y!S�ۨ=�D�3�!�X<���+�}$����}��vL3[��K�S"Y���������P���A"�Z��3�Vg���� Cm������Ƅ ˘LQP~tv
�ω -�U�:]-de��S�\!|��;w�[{�z�aHZ��a}���^�sg��p��
x���2��j�>���!��]r�}Nag�
�/8�l9Ԫ����v�n_C��9����ׯ�����mi����ٽ'}�2;�_ea�H�B�KU�v`�ZF��6�4����1#�� ���PZ�+��20���}1ӣ�J�\��Nf������`=�^���F��x?{�ca_4F\����	x[J/��c�}���9��*	��NI�0�1����,�xգ�vv<��p��6@��L�4��G�@�p�T
3������\(���(�0��8�3�D�|<c�fnL�V���ItF��iԟ@�h�`��iO
k�@�/蕤DܞL�T&�<y�;_�>!����d�m��d��H�rcg����g��1�8�f��Ec�	�;�giO-��'	r��9�����L��⾚IJ/�K.� 1$��\n|g��^���+�]9@�j�(�1[v"��}H��f��}t���Bȑ,6�=�9�m�"Á���9��k�t���qdf��R�&b�-bˏ;.�l���ȟR�Dh�3��D��61�M�X&�=֏��p0�ڡ�}�_{�m�"�x��i;t�єg��XU˃
�y!j?�'�k���¢m������ǔ�a�5eɏ
�RS=���si�jy�Hjה�Q�]�{�r�U<>�}dA=T�k��gSH����F/�W�w��?���ܼy�>5vb�ے�Y�`|q��)Ze�"�ϗlFD�*�����l6e�ς��esx�E$�9�2�W���"r�MH.�j��;p��GfI�Q�袊�t��W����I�t%a�ԏ�<�:��T؜�d���TWZ���u��fg�yźxp��^�t}Wc9�-
��^�NeEy�/ff�]��H��ۜ��I���0?ONGH�F��O���Cؽ��_��cԢ��~���#9:=e�L��@�*�'0)!�`�G�0�>���>�w���}&�srĀ����ViQ�d:A�Kz$�g�}l�B�	
	��m1
~��.|棯��H��x���=$�Q6��>k/(G�
���v���(2��5Ԁ�)�V՞2��*�w2YMyO�.�������M�f��^� n��@Phϔ����%N<�q_��LŲ���B���,9ʍim<���J,� ��k'X*����hm��(�>8{��z��Y�	Δ6��g���˃3$RS$�/��Y�?g7l痗�B�*�{ꣳ]��-��Wd$��_��&�P����ȴ�zκ����ڥ�Ѻ�ө��6~\�yb��hjd���x.��]C*?ym��!��H9�H��;�f*7Z�.{�C���s~7�,�0��y�TA��\H��̣�s�/r�.{\�\�Ɍ��Ȭ��
��<���0l&\�?��E�{9I�Gd�����	{ �Ԑ���: �T��ޭ�MiL�r9���s�ͻ��!��D��f�c>;ɐX{�r(G8�)2���)�}���'ZO�hCl�wS����v߿�o#W~�4RM�'<?$��!�_	��Ӝ4i���L,?~>�V7��(IQqs��`����ygg��.����Ek��Q����m�/��]Kh����������*�mH�Z�UO�6	��Iy�u���p�}?Y�eC�������?��Q��o��Z��F
	!����9���P��9N��ڞ�A��"+`x���P�p6�
y9��y 	����%N򻴏�c�(m��AO����	��=$rj�G����C��v{�G�1:$��ӝ��($^%;��4X����F�)�q�ک�I�ڭG�W�G����a�j�J>O�K.�q��Ls%&��廓�82�����ќ����=�e*�b����'o�����{Qk�����J��@-������b%�4���|a�X�)	U��?���=dW铉������������}���
�Ԧ���J��s���
Z�^�6��SXa��
�r�Fk4r��)Sdv�9�!�DPt���k�����i�̹3�hYx�w!$���
��b���zf�>�OWfӻ������ĭ��T_��?g�e��Eu)��Xn��	
i=:������h\� +�V�eT�Yn\��j�C��졹f�k�졟���i�h�tĚA2�do{�jE�]|7�"a_�^�~�d����Y)!3���bTc���(X���$��6}�d��5iD�f��ʥ?�'�1��Ҿ�N.������P)�b	��'0$W����x�HI>]�G�&������!���u1��!s
ǻG�=���B���F
�f�h2�D�:���w��J�\��T-�âFȼ��R��sd�5�|&�?��8��9�ƺ�%H���i�����h�c�:/9n�C65&�9�K��m���7���Yf��a�V���죳�I�-S쀆�&{�+�#��ƞ	e�O���8��G��:R.���`�좚�}.�&�)H�V9��6��&#բRj+y�I�kZ���X�1B�w‡�D������H�t������4�?���*i�]��:V����^��5�����v�m�T�'��z�Z**r�#��͆�@>����"VZ6<���T�G�B��S{]�f����*8	�~�cJrխqUW@�b��`�T1�
��Y��x�v��
�(P��0���?F�y�����3I@$0�m>	P$P
���(����1�|������P ��$\�J>��Hv.qz�K��	a!!��V!�EB�1�����XZ���URޛ��l!)�]R�y�FNh�]�k�j���[���Vc����QE��;jxx�
%s�x����w�<�f�3�'a���ފ�+�������.a>:e�f��?�Y�.�ؚ�C>xs�xg���p�0,�ʋ�4I�"��d�����
S�Z)'���K��tI#C��V�b^��ǡ�W�I�
�3��M-e�}%�
Y��4
vX �In6�Kz�5q�9LN�H�p}ov2�\QR.����9�����k�)/#"JKq�ΦF�2�y��,�k\�,E���$��D�Ŵ*c��\It!Дb�?�i�V�Y��.���l����s�x_�~���2���^k��1c	�=�̊<�ޜ�B�����r)$߹y�y2�,y͘�K��\w��&G���ݧ�v����w��Ǩ�Z��ti�j��&he�0�I��g�P�jq�]�0bNH�@H�K^059z!�Y0u�}MD8Kp�3ؼ��n���)3'��x"���̜uEf}Dvȡ����O.�����B��k*��fŊ�C#Ԥ�����@[ybRL��ٕ7��ѽ0�$i$\+0�g���~�"�e��g�7O�T��@o��6�ΥDl��ؒ��1�ϕ�+{�2�̻���<�A2��(�$�ó��F#klЊ��cd�j���p�8�O����a|!b�o�4��^%	�!��猰�b�a��gba�g��Sӵ0=��n�j��5�`'h1MXX?��($_�	3�)g��[��_��>��B{����qm�3i��4z�Ǹ��
�@��ȟ߽�hm���*�Z���W��X��5o_����p��
�bϾ�QNa�B�G^y�7&_�V���	
;p����!ܾ{�˶(��`2�U[v��i��D
ҹ��2&2�����B$)1�����Z�tYc4@a�t�B56�.j'Jq���h!�U�>�K&D�r|���fbE��6"�5_�V�R Bu�?ב }���̈́Pޔ��@���jh���'H��9�S�茟EA��,�j�sT~r�p2*�`({O�&睐p�Qp;=�����%���q����Ţ���p
��͹@\�t��`״���8�a�`��i��Ll# s�A.��|%���.y�3�?B��v�����Hu�oh���!�:�-�h�ݒ��ܔ�j��9�Uv:�s��
Ԥu�y�ͱD�w�y��Rb�"�ρ+���t��	u�eJi�A�Z��5�����=�˵�Pv�����<c��R����Ɣ\N��k�ȫ��&�S�8Li<�)k6F�����]�H�"���YʸJ�h�<�M�c��p�#԰�.Gp����=�dچ�a_�Va���In@	���5�چ�nʪ����f��"�N��ii:Hk��Su�?���!�XzO��Jf�#����˥g��$k��ムI��Vʣ�u(-rz`&�"ώ�&�<7�e�e�V����;\ 1,�9�ҮP�-�����}��w9���,��'ЙmTƮx�#RL��}i��!��o�&o�lżtDCGf�;D�2;cF�����������;2Q�ⶽX:ouԎ�)���,�	��y!]��in[�T���!9�W1�^`�ypz®�]lI|�#&'5}��0l>L#�f˗�~���ӆM��Me��k�,=?$��#2�pedunO�s����X�p��
�8	���5���3���������N�l!ȍ�_W�w�qeW�2!#5���C	c��	�����K���H�Ay�ޗ
�s�>����wnt_䬠@�~�p}�]�d�>�U��;���?$}��&���c8:8�ˋ38;;�	�`��7�1�H�
r���T��
(6	!ag����`\��X�
=iS
^WW�9 Ӻ�\
Q�BH��r@�d��>r�yy��3�<[J	$
��*��JH�B9~�f&7�~���~�o<���>����<��p{�fw	���p2އ��5V���e'ZDf4�����N�y�Nd���yOZ�LG�y<="U��`r�Z���pm�_M`�;�K�#��м���h�!-����"b�g)֔�J?�8���5^�XW�0?�@K��G��8($���M�DW�P0�>"2SRf_��)��Xo]`�'��θ�D�(��M�p.�$��;�6�î��L�hj
+Ԧ,��{nZ���4Ǩ
`zZ�͊Ɔ�2�}&��c��),.߁n���}I��x���!�v��as3'Kl��,|��B��!���oYSHg6E�6i��9@rv��8"U��J6�$������=
�^�	$�������s&����]\NX�x��5��
Ƹs�i�o���UZ��;&t6�0I��H
�(,�+��慼$2��x�}Q��>�4[㬠��xH&i|~�E��K�8&��"�
q�N$�k�+�.iC�Z�y]�_�{�����s:��5K�]c�b27�w���1���8� %�"z�S$K��ZKz���B4D�9ܙ��"5�1j��~��튽�VP���INW
Z�a'1��]����4g�z���d��ޗ��x�^��Y�j�1����������Y�x�ŇG�O���^�Үm��ngi�Q��$��B8�6��c������a��s�Ҍ�=&nB"H�$='�5��w����@��)��c� M�8�%jMpe�¹����&�X�j���PWa�E�L]���}��p�����x|��]�lʒ(mRS�29����f��.S�>ѩVU��>�/�g<i�M��;��k�*Y�����8����^�ȋ�;�1��OB�k���J��O/a9��WRwI�]Bo)���e��6+�yV��-���ᒴ��ѓ!�����TL�x��3�	��,�ҡ��7�����TV1˱�UΦ�-Mu�c��B\����઼��g^8DA��;'+�d��c�=R�CX��J	/OI�����B%��<��(��w��N�4j�ϋ���/r!-dVLc��@D���s�p[�[b-���r��#s������i���.���d,�Q�]s�����n��23&eƬN�Fd�w�qc��fc�:M�%<�E�=
�_~�6�o�50^���j��@DU��^�s��L&�n�P$��F��[�(�*Q �%�E�C�1�>��|6�z��e�X�G�td"X.Ϡ������ ߿���Q�X:����%!=/E�Y�&�Z���vKv�y��T;��?��"E��򁩢ݲg5љb�ܸH']M)�*�9�#I3�&�	����]~;�����l�f�V.و����77��A'�S6��J&���1 �"S��>V1�d�)�y���[^I������fF��ء�4:Tg]2C2���lJ��RaD����G�ii6z�&��N��:��"��f��:��WٱGc��b%D��r��,�	�"�A|���?]s>�~�KԊ˹B�hy����D&�pW`�0��FfpE)���)��wi��Yj|,q)��X[i�7
���kY��ܨ������zv�=JK�ݤg�Ұ��=@�_�&k1�/���
k򊮈��I/�5
g�w�tmKB�BVb�������[��r��h���	ώD�>4����hC�M'��u�X>6�״b��*���6`��|�G[����ה�@�V�7�kP��_�d�0��UC|-����\�m�j@��8�fV��5IՓ
i�=]16�'R�ޔP��%'����I�T�y������}LW���W�Q��b��~��=�}E=NY���l.�aއ��)
!��cѐ� ?�X`,�>L������P�93|2	k�
#$� 0E����3�l�B�x�ك0y��йI`L��!Jf�9k`�/�'��
�_�{H���/�|H�5
Q�,ĩ�Ѱd
���9j̺�}��3�^?��UXL�(��`��z��n�ǿ���{L����h$A/��1j�.&��X��<�D{�)�:_G:�,�b��������.�0��Ui�E�4$;��`�z$��P��P6�zwW���|��
�'�;�o~����]8]���Z�f!:A[���F��H����w.+�t�*����d�<b�P�4��l��K��`�=�o¨<`��?Yݑ�SV^@>{���?��+�;7�l��az��ANfJ���;⶞�`с��4kEM�����x|bN��ˁ�$��咳���6fzڝe��&���V�Y�G���̥����N���ή3����n�J�*���3��Vb��{�U�v���2a�VM�a��s_#�5{V�"�|�����^�z9�O���f�4PԾ�p\$V�I\�3�:����[�� o�a�X���/��ë�:��2�+i9y�リ1m�N�3Kh�����=w��&:O��E�,�C�6v�2��%��jZVl:��=c�7��'"�7"�����)�e�Ҍ7*&i�n��/+Բ��D��a����J���׈��1;A��C���N�9�Gw���,���V�L$_n��
�7eU{1MdX�63�E*�����+��Z�3ԠN�̼�&���MB�h)����H�&��&R⣍���ѼB���񭓚��&�%r�|�Hҏ��>���Km�*���򯭅u:�J�����t{zV���_)1�sP'-�J[���'��L���D�Z�bM룣�i�����_'Ha��j���7�����o/_N�'��"��*T8ȃf��(PdK�Gal��ۏ/��\����}�wz,X�i�9[�@���r���),&S�\N���fv@�Uƫ�]���[XҊ6���.\�0D{�kJ�hU��c�O�!�x3��!ӽNn4``ۯfamA��@�+��L�dӳ�QB8i�|�ٓʉp�6
���J(�<8/���I�A&{}�^����1�T�A�bS/"a]��5��
��lO/����q�J=Dm��S�y�+���\Fq]�Ϩ�d�ŒH-���i�bx�9G�W�fq$�-�E�H@�0AY��;�j�Toc,�NW��P]�ިA���=��ka�D�QȜ�W����*���/N`��F�L5E��*E�@�I���>^��%�2�^�*s%�Oi�y�Qy
{����1�x
Ƿ_�ݣ��ARJ&c��+��rz��g��[�6�<3"���ai8=���Wٕ�ed��8V6碽j��!�q���1yb$�!�]"�iK�>��J��i�z��
Yn�J��m��n��Ȼ�p�a�$�&����ڞ�:�3�'�@&dDFg��쑭�S_���%��Q{Up�ږw<�Kr�0=�6���w���󙌉7Ƌmi��:DB6O0�&4]�K1GC2����h����6�cB�=_˾7�N�:��,M���\4%]�*H�j�3iSƜ�R"�%qJ�\�/�HR�Hp����s�C�|Ot��ۺux�5�H"�Z�AâmU�C��S�L8�
��l��pe�W����901����f&�`�����͕r����5+0?�i�-�u�`���b��}���X��#��ڐs��0[�02�2ͦ�[��q�7�Ed���!�&��62�U�c�XX?�I�V+��lH$�b�F��A�!<W�K�{[�m��JU�ڭzG�������Fk�˛|�����/����_���z�� �q�TEH�r���Gօ�H���Z���We>�w��O��N��3��~��~��<=;����֭�(�
�֫w��]�F&��pU�yLI�Z�D��e�Z��ID��cޭk}���>���(l��
�,G�"��s:qY���^G�A�َꕮ��d��������0��0���~O��d�U�A�df'��j^
_��*�dz�W�I�s�@󾦯���W�����fHx��M����58#i���K�)^�.PC2@��O���	����I�'�1BQX�s�X�K�#�|(v�0�,�{d��+�($�� �l�(Z4iךW��ͧhD�#i��c2����S���O"������U�v��|P��Ҙ���9V#G��{H{z�'oB�����|���
��c��ܢ��\v��%kK2��2�7�䞝49������\6���0�~	zv5/�5RO/.����iqS$St-jI=�3̦B�0��$��n�c}#a>(:�]�{LVؓ`i�5^�荎ȉF&^I_q���?��DCJĭ�͍Y*�\���.s����1���CLk�f�:��LT�%բu�L&`�?���>'Z7�>w6q��w���!B���8O��ס|)��G�	0#S:r��)L�!;Lz��ɨW�t�ݿgʭxu�~��<�udߞ�h�լ��д��pq�[tX��;�e).�i)��<	b�=<9��aI�Bezx~�/x��dB��[���I(;�X����R]�O.��Law���d��'=���M�N��s���;�ʘMg���y��>���}F排���^�#^K!$D�
cEA�:�}�����l1R��x�+�ʣe�ԗ��J�%�r��Q�&wkD
�Ɏ�W݋,�d
W�m�p�4;M�1�	ۤ�H�G"I�6�ٰ�m<ے����x�E��F��+-V��q�d�J���+�=;X��E]���u�H�?/���U���u�k���fIVz}J�-��4Q�R���xQ��<$���?���|�VH�z?2�����
��M��)��|��H��!v�G��UPqa����>j�6)��d߃ݝ*Zf�7��Aօ�o_������'_<����M����r�3�d�̷��~�_�QpB��R(9�qI��c��$2��Q ���=���[hS��=��h�p�}�R�Q`�얛4Ud2E����54�qx4��'�Q�M�W�g�yC2R<��QGC�W�Y��������;S�dH�	>CN��+������9CƇ���|��N�)(� i�3�V]��=���W=��Ё�0d�[��Σ�1D�TJ$���C	y�S����֞b�H:���-(�9X��Md��g��38{�����~�� //���j�zH��7^E�ׇEg����X�9�\��B�"�<�������l�Xr^��HvP���C�����Hc,�b̚"�gޅ��C$I�0�����~38�������
���Հ7��;9'�,|W��j~Jn/$t�m3��i��H�����t5�f_�܆�dv��"̠H��7���q��W+��Y�TO8iCJlC�j��P��;`�z�����E���N�����'笡%�w����Yf��"������r0��	j�zX�d:�&��h�0H���R|<Gh���h�;쥮`�"i9��{p#ϓ�^p�(ss�*�77���N)2>���:׈�`�Kuru]ʹLT�t ���Z��>��5j�u3�E2�uw�� �v¦��I$��V'��Nڐ2�&�øY�g?�b�
bG{
�X��aȤݥ���"-������&�m6I,�<�Acm�*أ�G�1�kk�}���/��+��9�Xs}-���9�3+�7�B|�9�� �V(MDd��X��rZ,�&���&
����ے^ա謪����ӹO�B��QDBY$�_L2�Ͼ�p�]����p����Ƙ,$@BAYj���9���^k����1��j�Z{�}����;��^��_U�c�9�<�~���sP�u�Y���i����ۮ��?�� �~ؘK�����J�m�:�]���_�1��?a��$�Юp@L���������
`P�b���F=UN�.��}�OM�5u]B��j������I3��5�Hp�i8F��U��p���]�<��pU�-��F�B2
)�Y�����l�&>;�VW2��P��czi��{�9h<�]{N�I8�Gz?��mBw��l�x5'���4;#6��͆q��TRy�][�k���$�N��VV��b��B����H:�2O)��2�I��G`�����*M~h$��v�z�ip��|h��P��=yx���*�m�5�4� �#�'�<�o@�`�aB.�r	K}��>Ro�|tb!ޑ�G��x�p�fA�-
�l�����	5�8|��B#��&��u�e��"��@L�n�Y#I��NC�D�����QO�V͗���y]s��?�<�����#,��@�5<Gϗ���&���@n?
o���cR�Xۗ�I�k�i�*F�Ó�Eɧ���.K�/��f-��ݸl
|1�y�}�O`�w��Q��_��n�T ���)>�=�R�*�=�p��PR�j.H�zT��%i<��y�ީJ�*����qS���9����/�C�A?�S8"�Eɦ���}��Uk��-уfS�!��F�kV.�M*�_���68��D�}�#�0O �'#d��VRr�iXfh�Q�H�����dY"�&$*b�Ձ�c:eɒ[��U�Fd�p,��\�j�`r��9�ɏT�ew�Q���F�vJMO���J��PYV����8�Jl�Y�@���щ�:��1k3���G�"�/�Gk��!Pq���w�0�i�<P�.0�p)�Y�0��gZ6�sr���'e%�y{�h��u�߅�a�0��׭FMAB5��c�.m�E��`��yN"�ˈИ���s��g}�j���%m�W��2haZ0ɸ�|!+�i�&�DE��(-���k�7�'Ys��!Ȯ#09�R��˶�;�3&�
��:��E+�B��$.�a���6�fBhN85�C���̦��}��&I8pg1FW�sۦ����A�e���ծ�麶��l�@ҟ�v����ex��J�6���,fk�9㿣��h��<��Dt@�?�	ɑ��h�~|��6����][����.�/~�3�إ�,($�3jh� ��?�~���}L>��Y�4왻���\�Z��]_/��W��J8�ضz0��Y=oK64Қ��_v���_%��\Xߔ��;���?uY�|�׽L����O����w���{=#��C0�BJ�_�ޣ�kX�<Gi���5JlCO�3�y�HU�鷿U��������ߖ�/���9�
���>�
������jxȟa�U4a�1�Y�Hg��n>�"��
Y����!',�#
C(�IeuU�4�!	w��#}S]�-�
M���
6�����3XةFJ�
p�zzA�C�7�4*��"�L��[�1��&�_���SP&z���y*��j[Ij��d�Q��#2#M�U���M�Q��F"�,�,0K�F3����\��O�[�����s�`��%L~��:����e>%Kux�/�Ț,�G�aH�z�
�G�T(
��>5qO=���lf$_xL
�y�)���Kn2c��M�ᘽv�ϲj�m�u�O�lHktL���7y�+��p��c(0��?�ҝ3��;P��v���qY����(��q��0;u�0�E�d	���	Z�U(-�p�!����7t��T��B��ߐ��S�W��\*#��<pD��׎�N.��� �I��v>��h��P�š�<#�/��I���YU�0�hD�ô8�\�L��aչ(6�fbh��ͤS&)��K��h����i����%-��K�!n4�e�@�ٗ��-Xi5�UG
�j(�Z㉠1#۝�J��q�pv��b�:"����id�t�Q�$��Pd�V ��E�Z���uӣwM�@��� ,
�d���eH��b_�sq��f����uC7P��8�t���H���E9�ˍ&�N:z���'�V�2udo�\5�Ѿ'K�9�-9�ub��H#�,�]���p;�Fe��P����:���
��~��[��
�h5�O0בֿk1w��]�x2���ȀW�1�5�^E3��Q�h���LYL�r%���A�+�5�xL�1��Y�=r2p�%�
е�s�F?�l��8�!w`��L�	Ŏ9�v���7��fg�<�,{��
�m��5���J;�]�	�>Ǖ<��=�ڞd�fLf�&����v%+S�a"���	���dM��ܴ\��?����mo�G~��o���3�UCңL2�d7Mx%?y��r~��us/+��HIK;U�]����C�6��R��X�<<�,ʫ�F�,�3�(+��Q����7�~���?�Y9iS^}�����7ʏ����Ւ�|�+��~�7������}�|�G��O�#,�,r�k�t�"����34�r��v�8���a��`&�[�_��g��sk��}�F{�h���c���m�%WC�\I,6_.�Oxe�m�z����:r��U9�P���*�G�����WtH/����֧qh �N6���22�T�$,����OC�wd��,� K�sR.�����j1מo��.���p�TЖ���[s�A
�L3���s�F�����3�3����hR�Ji�x�9,e�����2�mOΉ�C
�i�P[,�������͒��Q)r��m'��8rayόf�,f=��Ķ�s��M����U��C0pH��������8F�R��*���7����k1X��AC��wA�X�a�Y���O�^嚤q���푆�Vr�TdkT���L�k೐��ǭN_���x7�b.�s~�=�	�m�]��:��k�P��0�&�v>�,�`j��2O�T����/f})�:B���?�I�T��dL�Ǖ�H�8=J0c�&X��3╏T�M��!�Q��6��K�-�y �AC���nI������U���)��Ұ	�}n�/41��PS��U�р��!�܇촞KL�
�^���ۨ�Ր-��{+���Ō:�0	J�����l��ol�Q�,t�5C'�0����f�>��;s��|'����[�̥�)l��{і"�ت�
���L k1����W�oW�B �3��G��H�i-��0[����P��.��V�6�"J�7
!��`��&�)�Yma.a�Z%S�n��C)����jJS����JeNs�3y�s2��|'d{���YW���Tvu>�Ȅ�g
`�xdm/����@��J]�wSHlU
׮��Z�^�*�c�(cn^�yW&�m� )�<��l�E�1'�?��(�g�=_�"��J�'�I��?i�`ĒMo��c���r�ql�t���}��$��Tw=Q�޴�7�+�N����#r.�:�5��v������:�,OEr0���G��լkO�wր<�\2N���?g
7��! '��C
�^���ɡ�Q����幝�|��Kr�ey��g`9�[�����FI�`����/�~�"��E9�|�˯��N��bulaA~�C�Ʌ��,--�X~Z��w����
���[�'},>�k^%�\A�{;�����g��BF�����|������tV>��%9q�|�[ݞ�q��_u���>��O�J
��7���qQ��/��=����g����M���˗��/���o~T���Wə����
y��AU�R��a�]߭$mh,?��믺I^���ą��{\=�%?�o�K�r��7�O����nN<��g���M�N�r�X8O�ͺ�Ī,W��IN�Z����_Y�X5)��^.�1��b���Lkއ�r��UV��7uD�Uk�p!�\q ��0`���h��*��]���}�8R*MСa�N��1s`�r`��@�t�֨�}~�Hc8R�CQ����mh��+
@�(1rî�AL�9��,������H��DU������Va��S�bհ�� TPG��7�]cH^_j
0%xm^h��j�vM}����5�J���.��N���z�J�z���]�U�����4^���Ci�EN���
��5yS��!ɔQS��<��WF�#��wY.��,�3LD�4ĉzh}�G�i�����r4���tU&��ḱ�	�|nv’Ty F7^��dFݳ緤��12Ҭs�h�q_d����:C�D8���Bڄ/�V��=p� HL�HE

Y�ݞ,U�j�iiu.;���Զ�K��Є�9aO:�T&U9l3��>�?�݁1�/<�U�=I����.Ȏ�,���,0h��e+�09�b<O�2˛m�M�Y"��5�-#�042�C*ؠ��|�ڞ�kV���"e��B���¼��������|�u|���á��X�p՘�bL�=�z�C�
�R�<fq_��d�En󙌪2,�'�es��wT��d��t<d��
4������T�}=���T)��!l�Lh������JFh���td�v�#��񹲰���1=}&��^�c��b��~р3hA�`O��$�s�H����U�������ܷ	s����!5'�.νX��2��yEAC�3�y�)K`��7�'/��gD2B|G)�g�g7��v���43�1�
chأ
�$;GP�,(��YVE@<['鐵�0c?b�f�q��Ef�c�-17ɟr��9��X��:�5��fs����]mǝE�N>���wa��M?k�8�;q��#�vl ����G�����_�Fm���Ym��թ�f���w
<yۋO�?����7��F����/m,
L��~Z���e����$/���n�~�>,�
�����|^^y�
06�r�#r�M��/�^�[�o}�m��8X��>*����mh��@��͚�d
��[�ͭ�ܰ�(tߗ���>�G��G�苲��+?���]�(��
e�����|��_'w]wD�p�iy�k~�>9:� o}�-�k�]��鳒�wT�a�0ҿ�k_+�������j����.�����Ϗ˽O��?���!�����v���S�O��ws�y���
������	'^�ќ+�=>'7�E� 
��#�{,�r��O����hsQv�����S�^�^r�AL�Ȕ**ѻL��a�w`��U�H���3F�n�і�͖���1�]���!M��s��OX�lAO�z�o���LU4�OM�yT��M~M�
��C-4)�Zf=ˠ���`����g����R&$�A1gئy<O�ӥ1N�^iX[�tQҼ�߅�=CH�["^�|3P%�]�"[m��٧�@�ڛ{���X#��k�ӡ�`�i�r�f�31i�1TT��`U���2J��\��+O���o9'�9y�
g��G��x���J���Є��S�6�[U�`��c{F^���\��F!X�%�q뛛���h�aͩ�N,��N+��G;
X
�Aƌ�h@�50y5l5m�{0������"[{ب��w��S�'�K���Eo]2��T&{�m����@Z-@�-��!�IU5Pu%-�ٌ�u��;7˶D�=��~M҃u�|���b/�����:Vh�0B��8�DQ���j���dB�L����lom����}���Ӓa��
iǰ�t*���z�H<�h'�a�X`����NrN4�+ؿ�g�W��S)�?=�i
�j��?_�QV���M�w��ľ9˂�9J��v<��bx�au
�q S�ı�rɎ�%��%ƹ�a��#?I��2�奌ԸJd�?*Uj��HA�
��&�C&s�g@){�@���6dc��a�Y0hd��m�˹�
��c�������wesZ&c���Y�f@�p�Â]����gR�L�9S�����F��B�M��ܓX��ܹ��FS�t���d�P����&�]�[���3mi�T��(ps�<M E��qhK`��&���l�8
����}+2��
:��Č
n���Nj��=��}��L�����l�YN�}����A�a��j����qm;|��$�)lӴ롞�C�@�a�t�}7�Y����t%��}q��In�kA&��M\;��r��L]c����-�<�.V�T+>̿���>���/nG^��[�G�I���!�A���aT��>x�_�Q�T��!ȡ���vM_�ɅFKrŊ<�ܦ��_$>��u����Ѫ�{0/G+	p�!���Ź�\l���m��y&�����"s�j<����R?�(oX^�˗7m�/���#</Ky���w����*����nW��II���}�	y��%��4���*���(�g��+?�׿F�[9���o~�A�ģ�o�\�>�zږY��ӫ��O��R���P��₌Z�d��I�z�A���^Nh���1r�D�DU�-Sh���(�z�3�'�zC�{�q�J�ͩ.�j�-x�	DTkJCnh��;C���+�b��r�<Ƒ/nt��d��A��@n���㵞zU=[lѱ���S��C��D6Z4ZSV��L
؍�eSs���yl(w,���ŋ,\��r���PC��]�'0��R?�6sJ:04k��ǰ��0T&��k��1����9��;V!�M�"�F�4y_I;UUc(P����:X�T�_%��I.����a���7�K�)s�B�4�7�zr|5�^��bW���΅Ri�}9���N��ц	�(�'�`�N��R
�pj�;'�nS����`~��S �����g۳�P��Ŕ�n)d�b�(Ԑ�%�KƧa]�sE_kW5�F�"��S�;�,�JF�/�5�X��(��6��R�PT�O47#�R�z�f
�@��/�ia����{�q�)�7a��H����]3�?P����
'��:)
����q�2AӀ`�F.�B����MФ{�R���8 �f��ײ`n��.tsM��ݽ�,V��n1��!�����߇`�j{�x�)P澳�"Y-��wj�/0��+VU��F�0E���2��eP���NJ��8��Ǽ�i�ׂ�5I�s4���V&�Δ>�5�+7�E�F���V�N��@���Dϐ�6J�V�w�=쑊\1[�\��g
���_D�E��2Y���*�Z�HL�ߋ�'��c0r&<��m��ղ>�J�n���������u
s��B�*�l�c@-�q��G,�S����v�@�60u޸/�oUip�x#j���;��5�V$�nB
��@D���34̑���T�ć���n��&�aw�4}����ƃ�yP*Ƭ��{��'ۮ��?�mzp~�4�A� 4k���|�î��$3��r��\�B	e����Nj����� q�pj^��LbR�����G?#������{?������u��4v���kU��˓�5T��=z����Ey�tQ�,Hk5y�Oaa�lF����8���7�="�;]a2��ſ��_�y���r�ّ���An9yL~�}�9=���2�����h��ۂ�����_��999���[--0�Dz�0F��/|@^tݜ��M�����/��C��]��3��������W�)�ņܾz+�ud{���+b����!����'<��L��6h�.���֤���MgCs0�X�� K�5w��h�]��|���ױ)��wC����F��M��>z��`��s��f�"���u�q4�h���=5B���g���I�QG:�g��Ӓv��2�{�fr�(��9�1�u�,�˕b������0�/����s���:=��g.��`�깼#rӪ�b>�5�M��&�K�dP��#�aY��l�U���7â�'��dU����-2K�<�{�1�t��	K�3��[���]���.D*4�=���}�Y�3����4o��u�e�%�yyj��~��a��.�ӌ�
�$x���[�e|gB��L�����34pSk?)��k��#��(m���Xօ;��j�����E���P�����֖݁b��������DT���k�fRf~��h�Z��gǐ,��<���.XЦ�����v�C
܌�eON�K[��%fk�ΒN8�L�}���M���a�t�:mef�.�qOP����J���x�R����;2d�����T�H�j�ŗ��)�6���T�!ij㾜��¶Zm͞�V3vK8s���s�`
<��FfJ
l�l��ktZ��mw�D?h�Ix�T�|��	M�ZW)#�O!�#�Q"�4u�\S�H�G��ЎU��\��v�A1���6�-T���N�<'k|���\��q�)�ůs�[���	��s�X�'���2u�LXmJy���8׵\�oB$�85������s`.C�`t�h��.��`�J�n��/d�L�)�=����d�2�(@����\U$
,3��XQ`
cg9>�`a�b�g}0,c�����q2%��L����+gꘫh��߇�=M��B�f�;%?ș=�۟�����,H��|IW{�ü��A!pР;�m9�
��}�`�`�3J��֎}�%';1��59$��ɎE�&T�}}���l�-}G.��O��a����V>������q�l�����mb�{n��	�ujg7�j�m��rLݧ�v�#���v\<�r@�2��
'�̥�o�{^|�|��G�W?��0����C�Ε�����'�s��>%{䬜Χ�z�h���ʹ������
w��/�C�W���}miJ�7ҶY���~��$��_zL����B����c[uك!�(Ԑ�}�����'��Z�?���r�ޕ'��C~�ޕ}�N��O�Eㇿ�]]@;r{C���dM��)��25)<dbh���$�4L��%S�;U�2�[?�a,�x\�o8F���M*�S�vϬ;���5<�B�4,�*�>�K-W�m���r}5+��v%_�J�-S�l�'7T2q>�y|�������J)S*�1��h#��Lf��=O���)�HOkڇFɮ�s�V�ek/Լ�=��9 :�k]0 �Bz�( ��F�hd�����V#k�A�:AC�<8M�!��Yc��;�ܴ`j4&w�C�G��C�=�"�N(՜��^}��M�8����nFA�P�#$B���&C��EG�����i�n�,��<w��yi�7Zt;�,z�T�]i�m��@�6I2�nMZ'4r�굷�����,{x1�a��4ka�"	, �e��'�ۮ�c�,��}W���ϵ���1�80d�<����Z6>�Q�k@���`��]���VU��2�
��E�Qi°M
�R�`:�]�]|7�s�*�oU"io#���+DŽG�|#��]t�
0n<�PYX&��Pl�$~FI�6�L��7��T#��4�@�1/.�UUc�����`�^h0�ꭆ����/��D���0k�o>�5����v�� K���; (�3ˇ��ƛG��
�E��'�-@�6RZ�azi+ͭ�B#z��T�d�`�/��'%<gB׬�Ґ^��ŲV�����d�vq}��k�!���qe��'EJ|�fn"��2�s`���}d���>�%���i(�(TY𝽚]\Q�7^/��!���Z�.�`�c�%�l_F�Yr�
@�2@��
0��&���0L+�*0����
���9�[��)�;@�o&���j�����<��Z��.�}��Ü��윉���Ьc����Q+�K���"c4���9"���A�ڬc�� ;1�x>�t�+m�ccȦ��}sڵ��۟���y«x��ޒY� �uй�جA7�L3@	��_'�r8X�vp��+�����m-���O�/��c_�19M��J>�,��Y��Ë���b�:���#����QQ�z�
�*���W2\�cp��bRov(�X$6a��Gj�և�,e�j���zy��g�K���;��by~mO~�>%m�Hd�R�
�F�!�� h,U�<�)��a�c��eP�ve)��J:д+5)°tU���Y��j�V֗v�#{+�Ґem����Ǥsx�a��uł4Ž��a\����cʂ��~1ƌ��I�X&���%�)K����*خc��E]���/"��}�Ϣ��nCO�"E�]
���w����dϔ�a��˅���y
�u�°�t(T�Du�1Qx&d<�ľ�,��֘z�{�p�œ�������1��O���82x;xE�����zd}(&�}��ɹ���v<�öxzϟR��A���,r�Q��a_��o?Ƣ�<䢒��`��:��ʧ�9�vap�����Q�$��*�X�H�̥ҝ���yJ�[`U�L����4����nKTZ��E�M#W��ʰe�͛P�%��uǴҌ<��P�g5v���
9y�bO6ѿ抮�ל9�Q���:s�Fr�HF�����Jf�}�/wY�5W.���0���|�QϜƬ��g�}J�[��+�Q�caTO5���j�(X�4�рq֨ J{�d�RC��k@�&��,����n��-{Lyb-��#��RΆ|R���,�<-�/s��E�zZ���,���yUi��zt����I���eX�@�C�*ը��e4��
�4�e�"*�Q���[�h.��\�J���hQҔ	��A��^[���QD_m�TE��V'5O���m8�(]�w0��շ�f�VK�A;諔��< ǀT��A�l4����%��X�!X����������P>滤�]�6�Z��Y!1F{����`#�e��ڰ�O^��CY@+�>ߑaZ)��óg���k�����R`ޣ#6�mH���
��Kd�zx)8��և##�σ]��6� �;������b6�v�����f�*���M�l8�HvPQ�N�	�*���Y4�Zw���1�s|�T������0�,Z��3�f�5�ih)�uN��Z~�J-��J��B�#SH�j�_����;���z.�4�L����b�/$�e�9M��nj�+�uӟ��{E��P�rxx�ܬ{���J��kr�Z@z�v�$�_��/\��acz��Ws�A׌�1�<����g�;k���{���0vf�wN\�~��x9,�(1i��{Kn��'�Mؑw+���6M^���e_��hJCd�XlG0|J���k҅w�W��^ns!����u=�TkL�����k0pn���b��a�&�����対�r�����͚���']&��AX��t�ޓ�0e
��^A���\��2��4�Ea�i������^X�b��ݠǑ�֡����XA>��=�����"���d��
]�
��5��[a4�����▲��}�I��}�8�^���x��,�>A�ۗ�|E���(gG�1d�1OS��Po+��ҋ�G߂����u�2Ch�w�syW._܄�:�� 0�I�š#{=�`�e`���&wWKy̓���~r,7��
�&���-�d��2�wYӨ�����9�4쫚��?�
J��U�8
x�#� dh�fC���}�܄�4��t�nJ0�i�(if��R�J�j�>�91cdr����'�V<04���d�)WAv�z���P*!�*��P7���m�+�0�k{+F��~��c���v��`���?���jp��qT)2�ґf+�M|&#+D@k���R�u�`��M�/j\]�ƪ	��c]�<"犙?�
�h$�Ki�|�}�Ǚ�Ef8�4׊�d��_�]���פ��P�נ>�0���sֱ���
G�R͚��]�9�˺�f�9��K֨��.X8<�ܒ�J��%)�*2�^�����>�[K1ljBWe
���^KH�
H�����p3*ǩ�HC�"�6��e7�P��ai�A�g9�3�~G�AG�����pMN��#^'G�Me�Js��O�����PG\t�b
l;U���Q��99���$���+s�2_(iNR^���o7K��)�'{D2��8��;�.�SghB:=�����4\#h��<������Mȭ
�P�p����zs9��oN9;�V��~W2ż��(c��?@RZC�X|��������eqU�B<:m������R�e �RYr�sM�V�]$�E|VM��&���"x��
�w+
�|1�����O��wA�-�7�8��Ek1G�-���*	n�X]�C�>�b�fNa>R�c��Z]e�ٖ������xq0Ÿ��W'�G$K�}1��H�~G�����hbJ|w��9��;���0of{f|~�2�M��0F� {��m��y���������I��a�,t�'y��u�I&��)y�Y�q�p^o@J|>s@�l�d~7�!�m��ҖY�Z����J"�+i�O=��$���sx2��z���
�USH֘��Ä�
��jJ�e��~fta�r�g)�`���0�2X0>�tM��w$����/��&�H�M���4N���64���@�H�A@S�,���
atY��l��=C���0�����p�d�'x"Ѯ�0#�Os���&*����s?�Y�6L"���������̡�Q8g_���9���\ۑX�t��J�� �\'�GmP&I%��Oͻ�
�Ŀ�]�onKFd[.��R���蘆 0��T��;`�'M0`NZ�k���$AF�r!�uovad�]�x�xl���b�ͥ%�sn�/����\�eخ�/gd���-�"xTU.��wl]�l�H��9���͖	���r��|��=J֐@�\4|#�M�o�\�K7�{�Eҷ+�PO{`��I7b
�&�k��!^�;S��a�y*	h8���4�n�!uG�<
��\-�j�}����|�4r5�i��k�d��Ǽ�*�k���P=��>bX"_�l�Ce(d`�"Y�?4��y����F!4aL�o����ܷШ�-�����y�S�gR#S<�s4\q0Ȫ1HÕax��k�=E!X��!�C5�GR.2�)v�`Ή�Q8c�U����l�ާ��x�Ӆ�
� Rq���ʮwLFNZ�G4���#[���%QɎc�$��B�d�h�E2!S<�������*�u:]0_E0K`݇{�KT)��T�y�~Ƥ}+'M�ɹRI��K��E4����T�5~2�ynQG������Ȫ�+IN0�㜳T�^��G�u�)�����PK6��0����ä^��,�ܶGV~�1�;9��e�ϣ0�zIY8GF��2X1���nZ+*�ų�c^+�����R��ל4��e�S���k5���������1KV�y��N[�(z���1=�����u� �b;s`�(��[p�sj.�]��O(�N�O2K��D5
'@Q�;�����5b�hJ�t2�Vl�˨�Z}cb�:&* ^��%^�ø-���6K��c��8O��v0���9߸Y�s.^s���<n,�N�������瘾��n��g��@�a�Ԟ���/�p�A��0�~5/�cg�w�������y�%�9�8	lc��������e�Η�|��L$	��y�f��6�M��1d�EU�u�290�E��&�gU~Fc���Xb&	�n~��;TA�+���s4<f�e-Si�NCO
3S��7����*gM���8�k�Ҙc,?��&ЎR�)@%.X�Q1J0,ܬ
2jܸ�")w�!��>}��V����#JO�C�(�`�$89����?���h<.�2�l�A�H�����Q!�Ƨ1lMx�Fڅ6�<zך�n��¸	T��xD��.\T��¢�4;�X6�b�x7CSYs�	��y�j��4�mj��v�,�~J.l7���U�x���k�݁
?�[,�
p������B^��+��H�%y���a���\V��w��k���|40���	���J����.�72'-�m����SZ�[*������
[dAm_�C�ֵ��x�t���\h{*���,�Yt�ȾU����}
g+eL8Z
`bv,C�]_��5�[��^'T��1܉��"�f�[��*+��=P�
�;Q*��3�5a~�bȟh�h�&��рrL�<��m��Ɨ(1������aN�@e֭�ؿ���(�K�h'�_����A��g��ސ�vPEU
	j�̫b
�!Y'd�1�E
�K5s�|&T��J�͍@���,͗��Ϸ��,��n�����'2^_*��=���e��"�a�\���>&���#_A�k%ݢ9ٱ)T�H���Ո�v��o�;<0?p�����z0�mmw]�5C��z�VYN�G�Y �T��:g)�a�;e�![˙Z?�_�y�{���'�xLXW�=YY]Ѷ�8~��x.���ƺ���(5/�'����Es�N�:)�>�\��!w�r�<���?�_Yy���<�
�ݒ;n;#�<��,,.H��+֖�jQC�n��Vy��'������9Z[���N�7��5���ܫyXd�.]Z���e)����]����"��ޫq�zώyF.Q��q��/��o�Z���7Z.�L�z/Y��|!oB Y�H�}U��R��sWK,�"7��GQ2�d>"�vF�*$.H��e�+�bM4n9�'6\�R&4�N''a��2|XK�㔣��`��z�	'!�%1�H��H�с&^pG�P��)�e��suڎ��2a	{K�w1"�x�u����0f���m��q��{E�1����}��a�	��X�ؖ��s��D'^m�����{L3��ؗyjb.f�#r  ���p�D)��Z�6Ғ���I��>ٜ��i�%x>����J�辧��g�I��k�I^~�����Ԇd�FZs#� ���P���Hw��!���[�u��K��[����G>��|��0z�h�P���Q	OL����ϟ�!)�Q��ס^� �c�C��^d��硅K���z���>a���|���_�(�_��j�hүcރ=0[~2�������_0�Ȍ�z��E�	�+�|��y�Z�2�\�-K���1`|~hB��q�F k�U�8М	��
1bq�y:mX��Zߙ<�gݕsb�|�˦�
�g�P ,���6X��*�U�NXS�
���K`�ri����K*�Ӈ/{����:M�<u�oD��A�>��V�9��q�B),�gF�?�9*IOp�T�C_
�mb�����1�FM.�̂5j�5�Y��t9*P���A��!+b�(�:m�۳�*��M��Ȁ�9�@
���E�ڐ�S��yu&Ħ�{n
�{�,��\�!u�tڮ�𪙛Dj`�.���P^�HtT�`gݣ����0i} 3�1��W`3g�)lٷ�[��c�A��-���%t؋i`OZ�2D��$�a�O�6��m����9���H��4X�Z���Ȃ�i�擡d�^�����h{�rY6X7�+��`1O+
��̛Ĺ�m9RxN�z?(J+ȩc�Ň��=��	C�A
��ꆑq���j͢⡦��
��VJg��'K�C��
�Y��������4�
�k@�h,�欱�c���ɗc�O�^���
X*��FM^��aL�r��I
'#ӷ�z�4�u9}�y�����x�<��Yy�g�5�;i�����BU��|�]����,,����]
�}�xG����ܥ����_(Jc{Gv�j����;n�Յy��t]����/}�Ayݫ_.��61�����zJ��Oi�ˠ1�/Z�(�@���2�E)_T�>+�:S�Qӈ��2�Y����ѹC&T� Ρ�,�f��ʞ�ƹ@d�V�8�ô��B:m�|�7�g���]�VƩֲ�C�̡
e��?"�F.���+}+OA~��u�P��Ζ���t���Q~0�s��uݬ�E��P<I���Nb��Y�+>��ZIu��X	H�����b�����;��J���p�g�@�a�����X��?����_H�t5/�Ε����m��Q��5��1��_��t�$�Lyf;�����݉c���$�?�̧��{3��>�\`*�+�7W�eo�Bz�Ž��e�d99���^��9
EsC29�xCF狖�����f���^�q���O�~�=��4��Gd���'�1��DF˪s����R֧ڏ1R��5,��M�k&���ٰ	�[�-Hf`�Q�����ʂ���?74
I��V���}��`Lܼ�A��$_��c��0�d�V'~��G�a�!R��z��2<��{)�~�P9e�T���YL8���*QP�j],0J�)�AV�Y�4�|ne�b^=�a���K��
�TNj�?Y���S�*��̢�aJ%�G0PF4b�Y��і�k�2^�6І#O�Ǵʞ|,x=��җ�or$6��+]ߨE�=����#��κ9<�su����^��u�
�|5��#�
l��=�i��b.e��&���oF�!4�U�������2��r��K�*�3����ر�2�wd]��an�BUģC z*�}�
�vT,���4L���$�
.�>���9�--,��a5�D�T(H���wT����gA�	4FS�
hF,�F+�!�iI��	�#�G6�o�
�Y��ٟ���#}��NO�_�����Y!��b#�?��q�M_s��=�Ve�s�̪�N�}�5�XC���|����Bv:,ܔ�2��2x)���P�6�tuB�y�0Pպ^O��*�9ϗO��_���d��	���<&�p�0%�Z'C>K,�\�#�%0Y0�)ӟ���\�<GV�b
/c�^{OC&Z��\�P��q��-�������Z�+��~9��,o-��/|A�l�9.��Z��j��Z`l��6��w�h�W����VdccG�^ڒE���������Hy92��枬[�F��GE:O<+kۛr���;���:�~��/k]�?}�1`�67ֱx�†��4��2�P1'�/U����*"��孲�X�m��o��mᙲnAu��5T����
gPj�as=��
%F|�ʄ
݅�M�K�h8����<����Z��´(����k뻢"�t�b�&�XO.�����U6���B��ve�V�\�V��{���nO��c�d������x5N� Z^"�6��I����%�~���,�,q�$�J�$�ۓX��ќ�TI�L����s��x%��0;5y�Y�R�l����8�:Ɉ��q�E�^� ��������>���C��j��9��bo�ʬ��-9X��;vf��i�t�9�)�$	O�9(>��9�h�;�3&��~q��e�0ں),>).o]xla4���{&V��0p��W����>��<�y��7�E��|�׾N~�c��x疫����=��<u���=�� o��&���/7�ț_|�����7�敲;h�mG�S|In�>���;�}PvvZ���ݣ�^ˋ���{�W��*O�����(�����;����]y�'�
�{Nߠ c��s_xB�w��m'�=z�Ǽo�	����J�Z�!&��z}��A���]���vLEy1�
o�acz����eU���������׼1H*��	^�����$�,��Ij/�k��L��eЃ�6��VC��;���
L�4U�
�bH�0L��\F:��V�O��톔=�݅��r���F?�P���\�;C�@L8"�E��^������L��gi4��y�?ҜD������,�i(�H��x��T@Av�!QLf`�(�o�^Q�f1�s{�h�k�TY�7�Zyz�]��Ђ����#)i�mo�w�I9��\.�/\p����B9�f��	�c�\)-�lu�����(p��P�F�"��а^�fkd����Rx����|/��)X�H�&�Om���M*۬y]�G�̱�y�?29Z9��ZS+_�T �Y^��p�^���`u���6�t�rڀk�TRڜE���|6P�I1c�WЁq\P5?���eAVGCz]z۩Ę2�4m{�F �-}<�f�h9����AI��5���^_�^Gq�c�Z��ԯ�+[j��.�r1�
1c����6l+[4 C�w5�o��*�?�\�5q\�u�I��*�@�*q��1�B̘_��2Ps`R�(ꏺx��M�|�K���p����!E���U�� p}mK�h�2hk�'��[�G���|<����<����hȩaF-s����ŋRɃ�Y>����~�!1Tsq�<�挼<��9e�[��
8���e�1b�����2l�SixW��g{\1��>T��`�R��뵷גR&�}����Сg����g�#`j�/.�AǺHM0��{{��h�[{uu_X�b����G�����5e�S�o���*��c���1���r}{�pmZ�P���5�vgU�“�V
}�
�m�)��L8��0�bU���j2�	S�֨{&ר��1a{�cд�����&��!�0�A�,�1�0�վ�~�6
T��
]י�ʅ��?��v���͕�'y�ɗ��,�9+�+y�Î�6m�t���O��O����i@6}�Y�$b�B9�m2��G��8�o��H"�#��;��&'��N��3<33�Q!.�b}�կ�_���_�;U~�g`�.�3�S?��5���<)��o|��햛d�֐~�/<��(����O˥�=���!���;�%'W䦣��W��R,�}�*����bɑ�{�k��ʂ�:u����˨�T9��7˩��|�׽V�܎�fC���7�ϯ˫�?.?�W^/o��V���v��#O�+U�ѿ�Wd�*��k��'椻��^\����E��3�(������d'q���u���yq�'��j����/�K%�Ew�0���G#�I�C���	�H0ܭǤ�a��7�u;�2I��N����h|�D�a܃IYX��*�+����Nð@�m2�4 �Er�}v�O�Y�T�1��X�9�:���J8_�W�/��`��0����)Y���s�t�r�ޔ��o��2��2d�(
�b�*3��f����vg!�ZK��k1�h�g{:�/�A3���q��P_C�v�{k@U/�\`ߺ�R3E+��"�ƒ9&̡��ӄ!܄!�<�>�R*��tMx
-�98^�ܕםɛ�x����'�����e��<z_^A�r5`��a��
mv�)��"xjv�P��F�)/�^3ϕ� �=4�t���s�+�/:���:����"`��kff�h�<
��{UV��uTp��	���C���xf��@��g�&�X,�
���j.3چ3sE���@�;�VջM���#̪�"
���-���g�4�S��a%�
*��w04y�a��(V,��8�i�c�����ul,�6�Ѡcɪ��CP:���֠f{�o���c641��,�sC�&�S�ãd>kq��enK�\V Q���cNQk�TU7���8(�X��Y�ٴIT4e0�K������0/&ed����!�2\�TCe��=������m<(�l)��G[�0/_�ڰ�e�?T�?�cE�P��(�0�ֽ0;���3�`Z�jd�|3�F曆kn7�$G�<��G��kK�!�&SSo5��I�ɳ�w̋l7ۻ���Weď.�H�K��๴�%O^<+۽�\���|���.�x�i���l=�N���]��R%�����f�)é���)>�Qs�6��{��W�2���<9
lݷ���U";@���ٔt�N�v�O��rnd��_��jI�&ig[&a{%��d8�~.WB"[s�2�޻Z.:�A�5}�/0��N�mWK\�?��+:�� �:�� �a�#�ΩÑ�XU��;W�\�I�qHO�N�s���&�<Ȭ�N�KVצ�k8Nȋ�`B;�H��0�p�B����bD�3���}��Ҹ�l�<�7��VY]#���L��G���`��Rhj�86���+�Y��z'}�#“�Lh��}��F�zEE=�f���l��kXGh�M��d��s�6�d���4��n����P㊯HY�@2`��?.�ғ��u/�Y^��3r�9����瞕g���o�$w�u�|�g`l�._<���3|o�|�x����1������������&���jJ=�&~ �|좌��}��=�!k
G��-ǥ����?^�W���;�򙇞�W�pBn8:/���z)����o{�����瑱sncS��qل�[�����Nc�?��bvǂ��+����>�(�c�'���f��Tp�e��M���~_�ޢ���=}�.�{�m�zA&�YW�r�X�01ר2���
�c�o�)��L(�syɗ�TCx��L�@���Ͷ*�X-�1�ZD���u|�,R��nOA-=�,�&~��x0���5�QƝ2���H�}m�zۄ��u���dy�<s$'��#�uZ���*c��d��]���[=��	�\�"��[	�Ee�X�_c󚔣�[U*t
h!sh"Âab�5�h����w��!��l�T=�Q����R�p @���)�>x�@�pxzF�J��4�4t��\5�(>�2���<��[R��9*lA@>3d�d(K�դSD��Rّ�sZϵ<�CMW�VY0|���/ֆ��D����b��L��er�'XJ�x�Zb��B:�s�,k�b(^�
5�� ��z��sW�M���
�p����\���qV�lE�r)��tK.������+��2��V�֛2缴��� ��vڲFą�(�Ǣq8��9�l�1B%�D�t�4�iP"���SJ�Әg���C�B�o��&i{�r�kS��G�
�D�'dH�G�L������%��J���[�z�r��}�i�0�W5�����<QR�I�R�Sx��ݑ�@g9����ںVY�۹4G�`��x�0>�+I`�ŚM.�[��N���d�$>g�� �xpLh(�&�ȗ�X|����ڎ�����0Շ3���k
�)=>[H����t��r��aV'Z�8.W��ra�j�s5���0���!GDm[M���u��T\K`���N2��d�.͡l5p������{��ı��%��.ah�h���S��@
tϼ_>����ʿ��M�nO,D�]O�12�JY$�
&;b%
u�:��t2��\'�}�J"��O��ą��k&�$ֹ��F�ō��G��6�?:��Ew�U����$��e|N�_�k���߇3ʎ{J<�0��p��?��E�7�y㋮��Ȍ�l��=/@��+$D�ͤ.ݞ	Y��a�#.T�rE�I�S��Qe#x�hPE+�&\r<2ǒa$9�<�Y�ogRv_�Û�9�^�Ew#P3������~��z��&���G@I���$�G
O�&a;���d���ƒbB襊�� 0KȊ�c�����J�j�Ah���f�k�p�.�_�u��H��
��1�29�<��:Q�)
��q�����2!�
Ø���Qgmf���[kk���f{YC�v���̧R�=,��z���>NJ�#�l�@N-.Kȗ�_�����5�@Ă�s�À��^�b�9@����S5)Q�(燚�N&��eC}㠅>�*��Is��+�_ޒ�����q�e^���`]2����������_Uu��	 q�1�Z���Y��f<I�K�^;{'�`�T��]s�`|-N�)��x�|�sX��i1Lz�}02#��z������'��Bhz^T5�8�h�*��ܕjE��j,_���ni�e��}m�LJ����cNO0ǵ���J��Oη�W/����X�h����/���,��'��(�nR��f����S�,t��1�7-9\�3N_å<eu8:����]}��R&ۄ�q����1

HR7����wa�L�Yh�p��7�D6���5?��Yڋh�f��wʂ�\ք�u?8-R�K�����6'�\��B�<���G�T1�ߑRT'�Q9�Z�΢�l<]���Fö��Z|/��e�$k�H��@���PN�z�)ʂܳ�H��X�/��']���_h� 0��i�FjZ��̏|b��!#l-��Ǿ������:P�����:eR�쏴��o���=�[Z��Մ��|J�uv�/�ʼ�pޔ_fxX��Y3��ʄm�ލ�5�ڪ
`dd��كC�˨ӌ���s�@�&1H��l��x�1d�4ݾq�]l�H��Cu��2��*&��8ױ!^@J��vdR9�€_\XԺC�ùLV��XCN%�m�ս^C�JTD�*y=�*ưP�5x��Q�X'�D���R[��W[����ȼT0'�_��W3rn'-��=}����-*#G���TUz���DFO�º?�sd���ij+�b�]I໌@R@� �`�`�H}�R������DxZ��aKPY/���U��q ���9<��S��D1_�>������U(1_��`�ּ��B_�9��x^�
�r����Yq��w��JFj������������S���x����K�Z����>�vv�d
X[N#:x�^����S�O�ݘCjl~�^x�ع�׮}�B�H&
�&�0��3��#��������w�unrA�1�p���H�6^s�h(��<�1؉ر�ԁ)b���	E�M�=n�k�o�����͋V�px)��?c�m��������I-_���K9�J�{����=��a/d���k�l��6��NJ�0�Ћ	�'�ɮ*���F���V���khH���(8F����S��5���Y�\kU�M����԰�@T"�n�K��M�2]�mC�
��Z^D�W0zkn�&������fa6%yB;�o���ж/!pr0��V�����D���+c2f��V����.�<]��^(��hJ��+���dLC��I-c�y%Yq��
��c����k1	&wWk��;X�;y�\M��3����}�7�Т_�����cGe����η˿z�G�//=sL~�o�B�����|�s�����?�M뽇�M�=i0����q���,㽷���](�:�"5T	�V�u��}��������wK��������ݮ����9��?���o�N]������;S�J<�����M�I&r�K��n�p��Ш�hf�ܜ9�l�P�5�ѥG\�1ć2�dܘ�N/�`�(�P������[Fa7ߎ��D�g"�BF���:�_^�•T���j���(���F�.*V��þ��`����p�-��� ���	�1G�uFr��W`��<�Y��Pnu��#e���{&q��EW�Þ9�"�r�,�-��b�d���$�1!�����*�@P�R���uVR���<�D�=e�y�&��\#7�J�)H�>X��\�1w��Ű74y5dS�z8�	=�s��h=�Pmrܳ�֥��\-pK�E&���6�c
k�J1Gi��kp�
�N��Q��_)+zNU�Ea��ax�����)�⾀uз����SC��uˆb��8T)�]��X%%7}y����H~�K8i�+��RV��7�"�2�;�ݖ��Q+�:F�]��B��!�]J�;]�w|d�:`�^H���MӤ�F]t{x��6ɦ
d���<x�ဩ�/�Xn�42!�u�<�`�r� b��e�4�]����u��V(GW��L�o֎�
l��2�6�\��-s*����3k{�0��2��놖�vF��oF�cf��^��B���O	\ܢ���\Kz\S���6X4Z��lZA
t��`� �Et(f�y5��0l�1gh�qu��3q���eGuT��L$$ؠq���P,�<�]�(0��}
Ck�Z1>�h��Z��r��g���B^�'�6Ǯ�Z�F�T�a�p��RY͕T�"W�)��4�ZĚ�}�GdAVT#�PTa��.d���I�S��sx{��Ig�kL;:���1_l`h�T[��v�=��.U��9����(VC�k^�^`-ù��2�f$۵u8+:*MϨ�)ӹ�Ά�E=t�`.M�JT�8�a��3c�1f��0L�0�Lb&l4@D�="�T@�Y��cm&�>���B7>n�qjk̡9h줜BN�b�2^Wi/�'qg���ڐa�I�̜WE���6�;y��R=k鎮A�'�m`nv�O�F��`)OfmW�ͿR6�]�a���Y=M`�c
�j���(���$:1q�-�7P&D�<u,��d@4�L%gadP�3c�'hx'���Ƌݗ��::�saeu�tV�V ��3-�h��q��l�؉;�ʸ8N<Z"�#N$�����\?Nv���{Mn�M�Q���w&4��>�\<wY�������]_�V#���R��O��|�w> ex��n�ȇ?"_����{�կy����P\�x�B3q)�#����Is�Ģ�p\��|�A��p���:d#qS5����t=J:;X2�l�'0���5��i�L��MG+��}vcK=�T�[��xr�*�ڮl���0�˲�P��k$6cl�񹲬�'�����CE &��h�ey1'��#�ء����ڎ�"���'��@N;Cڗ�-,ZE\'%���<A��@��Sr�¶D�3�n�7�������fO��c�n<�i�E��@�}��[o<������=aaZ����0԰ ��oUF���<<�y��WU�g��+oB�.�V�� �I��Ђ�[�Y�n�S�ó^�:���?����m��2����2�2c�l��=�)M	b���d̦M�b
�s͔��=^3��4|�ٌ�4�r��مG��v���ם��2jÀa ���g
�v���u�x���]�7�6�Z9�i��qR��1�&PqTn�Sk���a���<b.X�^�@�$�t�ՐƐ99T���g�(�X3(�f�G%��E�32r�:_8�!iT�#H#�':�������
L��h�<cz�)����;?� ���4z��e]��+C�C)9���b
b�QfqTO�ʾ֑��G3�uO^wd$�̇08�`	�oO��F�Ȁ�ӾΩE���)�����-�*
X
�U&��:>:�$w_%���{}01�h����<�;��
�,��Z4���+sYY��\�qq�g�;h0oeLFv�i��м��o*��B���>����xf�y�Y�Іȝ7�0�p��ahr�"��Dz�����6o���#�y�l[�a��&���g��Á�UL�N��O��AF��y�9�pm�k`��ƶ�>��4Z���H<g��P�żFЁ8�a�iׄ�rn�<�TJ�k�oa����	Y��98����<�gW�>B�K����i4�,R\OB_C"o\>�9S<�<x���R¼����Jql�YvR:'щA@�4�(�yv
�I�fxǓF��������f����W��$�۪�Xh��㻬V��`������	�zag0���)��=9������톆��\-�QK�M��!���澌��;*+�Ggpμ:�Ѱ��wN��ɹe
��᳕��	D�?uiu���Թ�A���z�q�돌��X�	)n3Fj���%���lH�n� X'�Qo|	&|8:ұ�D";�1Rުz�k���i��0��q��%l�J�AS����],�Qa��Ca�2�A|}���P8�I�&ɵv�GLasdž�Ts�4ÄʯcK��p��1���?��)���l��Asm-����A�:mӑ��4�]��;N.˯��w�geV~���:���c���ʓI�@��Q�����)��¤��V�&L������r���40��@u���5�Uf3��l��*�dC��,r�	�]eI8�n߰U�c>S�.U�,*�p¥r���m��Ml��j�2��7�h���{j��Ո=-����W�6�ͺd�w���D���DR�V���۵L.��<_
�*�S�qIcἰ�)/u=M�BQ-C&89��\�)�)Ȉcr�$H�݄F��v���(��4,�!�1s�F��Yx�S
��<�A�g�ӭ2!l��k5=�SM�#�
��ι]�!x9m�z�.�X|�nհ�+�otl�
乍=�yDI�<ߓs��l��1mt�!�6���͠ ��:��T���s���`�u1��ܹ55�=�f5�����Ϩ��,��#O�,/ԁ��1� �U��E`1(��[�����p�$��"|>W)ɞ�8z<�4�����O���hW���ccw{Ks�N�8㣡le���@]�q`�j@�h\��Z'Yz�0�B5�.��Q��
�c�,�^ր���=�0��.
Џ�@Kt�fvN�rlS� -��*�1)W�u��w.Jc�2��mQ>7+:o0m0��hgα��OAT�N�Ҭ9=T
$�)�
h���5��읲�<#
/3�D����H?s 0K�6'M=ʡ���pCe�hQ{:l���o\���a$��V�s���a�]ߣ�������32pt��ֳ�:Fd�*s�U�r�ȓ;9yn}�:��jJ6;`y�N��L}�Jz$/��s=8�r�X�SVl$ǫ���&��f�ư�(��W<h��j����C�R=�Ƃ�%8Kd�H��#]�5WI�Y��7��]���=�+�^\B;#��3���s�D�<�,����7apc}Z�3ʍ�������P����3�;�[/nb^���
�IK��h>�1�``�)G!�WsG��M�Q��i�����!�nz��-�b� �?)/���n��j��¢2�}��ZC�����n�=J���lr�X25��P�
�Ls-�0�e�1�.��1^��lM�ط�а�uz��G�^2���.��07���#�a�]��yM���KZhU��1`?���P]C�Z*�hu��h�.��j����3s�x�<��~���є��m�:��aq�-b?�2�}0`58���\���J�"�s��\��0i���cp.�S�`ewwG��(�BV�K�:H�Sd�R#
�����Κ�`;>���]x��6���M�Y�1�42g���+�Sc����)f�Lp'��Y����-�aRo�u�b^]�2�n{(�2���P�R�8@wa�{`�]+VD����^�x8�d_��q��V�k��Ps��6oo��W3��E߸�%Ue�)ø�#��<26hc���*q4��t|Q��,,<���-SKD)��Ūt�ݪ����%b���K�2$� ���<��m���9G���y��M(�Sm�z�;#_|���3G�VS�l�K85���=	����7��S�R٤<H:(��0�93tH)\S]cdE��@X$F�=Y�aM<v:�rR=v�����K�������s��3gU�jN�k�������ˍ7^/�{�]�:��}�1/ó���z��Eo�ߖ�KUY__�S+��_�Vkb
��/��~L%^I�/--+��bB3�����C=Æ\�1މ{�)a��ZZv��1Q��£8~Jƾ��ħF�fǪ�賥a�ɋ�U'�6�M�'5<��\	��,b򿸱�X�3	��i|860��*{���s�m�c�'�<�\�M���{G�5$�m0d�o�u����<�2~X|5U�7��c>�B�}6�Rt�tQ\�5)�`<NƋD���k(	�ob�ď=Yܸ6����^ϰ4�s=��䆞eB"J.C�]�c<����nx(����:�E�	
�Q�(�R�
���F�j���!����ӤSה��7��*A��m�s]B���
�7�,��vY���B��xW�0���kXx�R`�^x��!��Psv|S`Q��A����n‹τ�&�e�S0��
:;�X��i�3��{>�9ea	�,�k
��=��@N�S\���#��wdc�9<���{	U�;T/!���Rxf3a<v��=[懶Xcg�B�*�msK�ET}�kݨsC�P�q�~`��Lq�(�5�m�QO��aF�К:���N���vD٨H�;�ƛ鵮�~
t;.���yg�#k�.�f�Թg��b�
K��ۓ�@��®���zp��\�/=�e����}��u��G0��(�a���J%�w�ȹ�#
8L����1����#`�_»d���\���LF�<Ѹ���,e���oX��څ���F��@i��h.��k#�3G
�'��]\{��WV��R�}O�4��n
�Υdu9����#1�dJ�ͮ�jo4��.z�9h@@2�e��h���i�qØ�e蛲�6�@%�C��C�v �d��kQ1,���9�vQ%��i�Z��%�5�g�����5�IǠ�ǬE��h��C����W�9�e�H���©d��9����u�X��!8*y%��X,��`.;�Ƞ��&�o:�h3k9�����<;A^]��j��p��B�'��X|�!�d��`��&W�e����1��OH���}�5;k����S�n�tί���;�Zhw���\,���ik�!�`me����_j��0_��PT�d���~�������d>_�0�d%ZC��Dٍ��]
��өE1Ur1�}F$ƮMd�Ւ2y�Zh�����YY�\j��,�V�d�"�糰q��Vr*���ܧ�쓛�}�#�Jp�0�"')�_�Ks�ŝ=8ي�O)�uY��A���1�V�*r�#ramG�����k�S�bN�i�}����F�:��������,s
�*\Bfi@l�B{���e<Js�5ÓMX4��x�+�%
ed(��.c�W�t��Ϭ��n�����+32�s`�O.��/��y�|C�y�I�E��=y�m'��c��,���ON�Ź����d����%��9yFE�z���x9�"�&�™髵�g}�BO_��
�(���='rWX�s\�����A!x�j+N�X�@e���$)�o�����%z��䔋:a0LjE޸0,dz,S���c�^����RK9X�Z�N�>nk���)��ڰVu�k�D'���G���G�#ǎ�<�u^Z=�����ȣ3���̥
��d���φ����?2	��87z�v���؅�]7ݢf�W���Մ�p|E~��GTݕ���5oz��x;0J$��}V�O" f��O�>�$8
3��a�Ġ/"�}yk&kLq�K��k�bǂ���Tԏ� CI��D����5ļ�I����N��i0>��H��Iܱ�N(�oV��m�Zt���@����w�c
�!��cnc���3֊
��_�TAK�JFFc�1M�`��&���L6��{(m���;'O��B�k�Ҭ�K��+)٪7���2�
6�d��K�@A_�2^.4c�R�d9�8�������E�L�a����w�	C��Yi:
(F�H�
��lnA
��VM�|�1٭�T"�Zpˍ��h��*��p8�3A`$n؛@���h(����E���0\���%�"���5^�0ȦnNh�[��:�Xm+�n��`+��o�8�Ћk<��`�S*6��,���x)3���Й�v�o���
Q�-�����}�6�ް�&�V��U��܆+�J�cUM�(w��bX��yG��)Q����#�F�H�8�r~��M�Oj�Q�ĔcB`8Әiu:��[�0��a�\���d���u�Cd��G���r�H��b���s
`�!^7�F�F��eO���h?��Z_kQs��p�jZCU�wS�����<@��b�gM_�7Y)4"8��|G}���0!�F�ɉE���
�P��y�9/.6K֤�"�ɷE�h,-�QHҝ���vq}b�29\d�Z�{�cvt�2�2�̓�奕Mch�����ȍ�J�s(0$N���u\���Q�[���
�Q�ǕJY�����h	Xc
7�Z�_ɚe4|�̳���H��W�BI�R��4ɘ�V媲T=�>`
�+�.�0H��D�	A����p��x):ergE��7qn�K�\΁����Y�6@SS�����x��nGAhY��Sv�j(��c	�X���v�֑�U���%2�-��b���cy0�������8���b��hG
�E�k�H�h?
�cZ�����ad�d��:���X��q�3���̥]V-FHK�>��+���>k��ٺ>�@tG��Fk�M	�/��N]�+�&&�¦�IE���uᜎ��$�������
i��2g�ہCg����g.o�-�S�]�(�A��E�zv���~�ϑ�T�
�qx�͖�Ƨ�35�(��s=���9K�7gK>�7��V ��G�����
��O+�K�-�Ȣf{0�ځ�%M�s�m~�0�j��WH�F7�\?^l��Xe:S��2
�k����	�4H� n:��Nǜ>zLn��q3��_�QO�`�&/@be�Iܤݯ��^�����^#>�;�x=Lf-��6jf�	��Q�x��q9@4�yNTݹ����Ȧ�3����ІY���$:��}|��!=+$QJ�b�ر�#0%c�Q>��=~��3
m��?}�;��J��E�ʸu,��KKz<��kϲE4�B[�ܖ�Ȑw���Z'ʣ
'���6~������~H�b��97>v�e<��](�.�S�~�8�ab����!�i/���aN��ݷ������
E��>�����/��ׇ��]pc�̤�ɀi�uA�Y���z290D�f��v{���\��,0�[o��W[6ַ0�sp(х�ҥ-Uk�����P�T m&���q�7ȋn}�.�T+��ăa� �H�Q��=
��k=�P
���e�'�K�jmhފ�x�����А����#�cj݄�]��0Wb�k-M����� �M���9B�·f��1�"*��ǧ4ď���882��1�c�K���pGcӄv�0�a�"��,�?�g��~ԇP�ˑqqTL��c�'�GŐ��d�`�(ۿP Q�lW*��ƅ����w����&k����3��EU�Wݓg�AaXo�3�Jc�yVY[�9C�h��fF)�R!��m�1�>ub!
�ȗm�2vk��J�^ߌ*��#��PV+i͉�QL��>�|Ϝ-:�R9�����y��E�0�o��i�/1��k.�򪬧�c�4���a�td��&T<n��05�f߇6��I�XS�Y:m������
1.�q�,0W��]R���L�ʒ���1g��E��ڱf��O?@�xnjy;V�O@a���!Ht@��*�s�8����ؓ!<��R�j2���MpF2�,����6���C5�X�@��da@��a��hpJv�P�L�
�(z�m
>��X��*�;�j\XY��ϩ(ss%/�=�3�w�f‚���=����>ͺ���M�cvōp�.�f`a�|���|2u��ȰNT�þ�F]��/iHû��T�3�x�|��ۃѿ��M3��Q0b_e��6� -nĎLـNh(�^�7r�)HN��A8Tgj��j�3��|�Aڳ!�Ce�#�Ң���ӱc~<u�M��7�ŀW�k��C&'l��ui�B�=�:Fs*k�1*'f�|��C�Ag�Q�FC����z��x�n$��	���ŵ�E��#��#��T��Fs���u�<���[#i��D�|���h ��H�V�q�Vu최�R>�����o����b��2`�m���t%�Be�^� �Jtܕ�����%�zP�p.�ȁ�'X��}x�ҥ95��l�$�w��ŢP$]
� �4˴��$�Z$���XZ�Ja�SZ������D^����j4��/Z��6Ɇ#��%��U����������z��*O�d2yF�c�G�:��1�bq8^�5x�d
)���)ux���z���0��ޞ;zTE*6�7eu��zP𔖊9,��̈́�G|��`��j&���2̀H�̂!_�Iz@�f��y���p�3�o�Q�|Ѿ�hr߉=����х�hߙ��d��x���Ѩ$a�i���<\���!%Z�:&�;�	��}<P�(W�\Ǝu<5a]����j���� X�˗׵���
��{������PդUmx�	H4���Fꙗ�R���|�\��ow˵-�=x�ߋ��G�C�c���:;vL��?�'��O�O����p_��b���?�=�K�k�8S�?�
��gޣγ�~�k��'���O�k_}�|׷�Y]U ��}A~�w>�c����b���u
�~��͛��~�_��_�2��w}�Ѭgv^������g.�-�����oU���_��~��g�$?�w�OZp�p~��6䓟����G>!���w~�īB���� �W�!�<�|�#�T����9zdU���������T��/����t~c��5Q%��U��oz��q筪*w��E��_�|��G�[{�i������+��E�G�z���,k�&*��A�K�{���/�O͇���5�Z�y�:T}�0��Pv�rnm�F�T�4�������V�4򅀜M�A���Y�6
��,Z��t��6���!QH0�?�n�vMNV6�(�F�:���Ff䀍���1���ɵ$��x�w�tM�+V���>L�Va�@�]P1�n�#���#�.y?�vu�'��6�Ű������d�v�jby��_'y����8����	�d�0�@v��%��I�|u-'��h��m:�љ`O���wݱ∸������z��������Q����g��P`)�(e�3ƫ�LP��%��G="�0�H-/�XQ�U,j��S�e����ad�5B�vl�uc/�3�%��ja8�x���U�<Lxp5>�&�j��tm�����;�s�D7�+��fn��o�K�8��U��Y�#�5l*��Eu��0|�רj�V0�}�CO�Hxb��}^����!1c8{��y\��ƀ<���Sl�NL�2�q&��xr�l��]M�9'���f�k��-�d��)�����D�������w�
������#`jW�
�֖rb�����ѐO�@�{-��h�Y����m���Z]�,
��@���J�5�0�Hv?ZX5�Bl�C���*U�ĵ���p�|N��sĐ�H,�_�Ve���7���ߐ��b2���4�̼�e/�_�Q�u'�^�
W�ʯ�ً��m#��ɭ��"����<��c�����;�fI����?��	���Fy�9����y0NGTHanaA��O?�������������_��k�n���U�����={I�uM
�;~�|�H�}�3�=�.��Ï�ty�t?�_����O�<*�5� �YY^�E��ch��}n+�>�؇���r����~��ӗ/��/:�aV��?yLy�I9��й,�����O|NY֍�=0Me���<��y��'?'O<���Ґ�-dg�h��=8#)�pz���kg0Tf�o����z��Ŕ�
m��a����p�V3T��/W�а�Ʉ�hw�w[�OY�9NZ��1R�Tf�X�L!j_���U�
���L}l�����~�
I��BPM2�W����k�ӻ�
�oǬ�jC�
�1sG�'N�<5ot��3�M�ȃ̜��;��'3k_r=O�M\<nw�ŒٹH�f�x��K���e�PC��@җ��f����G��ȉ����%A�V�ʥ�-��'�M)NzR�L'�Ɋϣd���zL������z����h���,�V�ŋ�OC�{VJS����]Oy�(��81��$=ܱ$#�{�'�L��3
�,؈j;��5/c_�c|>�L6�50+����Һ��_3eY����$�Z6�I^3��k�Ī}nQ�5�`bu2;s���0�`<]%Cg�y��(�����������0�kRʆry�	Y^�.o;�,�NX]�*Z���ZM�;��0�9wY��M��9�2�r��a�ױ��~�	��ޑ�[M
҄{��	9�[�c���MxaY7�	��PV(�_lx�00��Ws�l�j�xF�-�
���FG�ML����~1�!��D
u����Q�y���C)����C��
*��|��a�x'��4��]�Q������ ���R�d�5YvFR��ew�&U���M�/j��G�a�ʣ;��B�Jz�;…��vm�K�i�<��9z��577'oy���g��s�w�K���A������2l)�������s��qy��K�/��
�{�,=��Ђ���>%_��o���M���o�(�h�c��w|˻���4eh�uoӰ<c���5
0ɿ��{4�䣟����	��7�#��˿e�z�R���wO?�)K��z���/�c�=��zo��{��҂*�1?����	�o�^��RC��[�p`��S&�"�ϙ0�����x���W? ����S�>%�>��)7��\�&�f`D�7vj���5�w�֒/>��0���+/���aj�^���5�F i$γ�lH���
���g
8�;:Gk�+�_�U7�W��hv�lU�6�g�G|Ũ��H��F#zK�`ĺi�:D����
�,��:�9�|f-ermbГ4��6����Vp"�-����"�����s�t��1�6dʾL��vL�{�q08c�X�g���%��Q
)g�q�3�Kn�;> b��nj��"�O�^�i±%9y��Nr��jr�,���9�Ę8jʦ�����}E2I�6��q�qa��_(���DGNt�Xܔ�G�2/�f�06�A��bQcp^@樚2��2����gg�c�w�DE�Th��X� �l\ֲ2q�mӣ0�@��F��+b]\;���I>�<[\ր�H9L<Km�I�W_"�z,��~���Qf�icT�V��e��ػ �9���,���q���L�(L���RV�UE�8u�80��?_���s7@Ҟ��yw�yF� N=��Z��+}���2kr���zm9P�����.`��廿�M�я}Ln�a��Ň��;K�|�y���fW�*Y��ٕ37^��}NF
���9]\ڭ�<|���v�>�0�3�1��p M�ȸ߅G�ʾ-��E��,w��X2��e��E�5 >�J���<��YL���F������	xy��eY�v�)�m5�³e�ё
Na*���&���m9�<'sժܔ+��bsf�zoiP�u`�6iJ��о�}m����nƏhC�}S[�կ|��zꉧ�s˟��������+����AW�K�escK��Wˉ�僿�G2_��W��%��*r��Ey����P���7�W���^S�U���/=��{�ۻ�Y�|�I�HS@݌N_%��*����������;�H�x]s��z칸0��^�2���urÍ�K������[]��������>��3�?���o�6��IΨ�9�m��� ��R<LQ~���*���6�tե
��?��M99�(���)Uh����oy���������Y`�L(`�T�30���着#ߏ�"hvN��߄�h��-G �d?)��
U�%�UH$�y���O8�zp"q-��W���=e���R�g̕�BNK ��}�f\MOа:1j�d���~�tmϥ<�q&2}�����6�_�N�a�?c�N���M����$���gOF�DTP�լS[�O���bG������B�&%���dͨ�q���6F�;I��
����n��lQ��?����_�|A���^h���I:�›�'�s�|�@�`�	zT��@�	+3�J�L���
8��'UiK�W��P�MMs�xN�_"��\�� �rhS���ٺD��4�)���wfB��x3�l�P��	,�� ��H�N�Z�� 0�f��~��?Da��q[�:�8��D�y艎±��0B�m�Q��h�&߷8�I����vC�"%��A����4W�yB���eyuE|�q���;��/�Sr0�/<�����Z��g��g��S��֭��ֆ��g�� /I��Bo��/����@���'���?{��vӍR�J{�9y���"� �	ɾ�:9�zJ>��$�$�u�%7\/k;u�u⾛x���IWJ�<(��Af$��>Wܢq��N��}�ר��1ԃ�Qb��Cs��jo�4�:�R3��bN��jݦ�Rp*TR_�oyUR��]��u}(-�2j[;�m9}���MGj���m�K��X��ⷴB�
�:����.\ۮm�H-Գk@�������x��������1v�M�}���>��8���L��o{���?�_���_�6���y�?�c�񧟑���M��._��ȹ��Vk��w��h����ɩcG��`�Lm�h�e܏a��;���?�8����/���/=$'1GT��x]���?Gٱ��_�]M�/��ܨ���_�]'����ǹ���<�6,S�J�"O^�(52F'
�Z�n�6�3���nS^��{����
ӬT�`����5�&�D�i0���/����o}PW��m�%��)��p��e�q�s��Q5J�<���0�8vm��ە�N^/�Ζ��ږE�s.W�v��b�A�Nݠ��FTp��a�X�7��K�ú>͟�p��7�͹���e�5��
�8�B
�M��k�U�{�I��B�m���q�i#?�:�?�.*��&|v��f�3�6Jܿ�;��M����w�5�")BC�ؚ�MC�m�&G�n�1�O�0k��4�)RF@&pbF˜��].Z��6C���0���Gl�3��ަ��m�Ø�Y�3/��/�0K��0z�f����N[���XZ�b��t�vY7�����oDr���)E�/�ZTJ'��q!�41��Y��iqmbz��öћ��Ŷ�;}�I@��:�ϝ��b<_f13�j�u�x�q�ĪU1@�;��Q&��nn2�Y&'�)�k��OeZ�1C$Q�h�܁5�C�#&�G�NM�� 9�-��R*Td~a�(ϟ]���{�gs�1��Fyv�!��֥�ݑT/%�m��[�]�Nɇ��>MZ�G�t�C��7��JF�Z?�����sk�Lee�і{n:"���/��'|Z�]��>��d疵2<C9/Ի�)�h�
'����6��+1�'�_|��$WG���X,{��jgʦ�݄g�,�T4d1a_��]��1���Y��\I�����j�iY�x�8{I��y� �͞���
�&=��uլ�?vÔt�Me�3@@U)�ν������LJJ��ܑ�����X`�����q3�AF|hh��K^�b0C'����������o��{�[��0��,G_C�z�9y˛�(k[[r��Y�lJ��$G���U����G�7�A~�����SOc,�U}�[Z{,e�Ю��������U����Vj^�ŏ���S���g����&�)�;���z��:��w�jx~�c���?+���.�|���9:�X�c�Fl��ꁋX����ۿ�������D��? �ڛ/�{�=rdeY��z�¯��t;-��������6�O���e��%gn�O}���L����H��˛u-͍�q*ݯ��We�f�'s�
�h���Q��56�Zi�{dN��|I�1����:�T��W�c}����Z�#�4�c�1�ۡJ]*�j��H�G�6��L�T�-h4Dd3p���D��+	R��ƙ̅	'�P�S�3��/'�52	pD���ܩ�����eb'�a{�I1k�٣'�Gd�YhT���KJd�ِ�Љ�;�c�,y��{�12���F��L�NǙ`��'d$Y��i;cgut�l�+�iP�Bb��v폅8��l�= M�6�:6Rxsݖ���ǃ�8����f3���Mwj���X�-n��iH�x�&�bB�P*�Ȟy4,�Ӥ��q��{T�(�f�v�<do�p��B�<M3k�4{��$x
,[��$Y�dݤ$@M��Em���8��
")�`��c�DZ�R��F�MC1J�	%>;<CRU��^�j9*�m�S<��������=�xD��QZ�gJ1܁�u�U#S��NB>�T0К3Z[�2Ț����H�a-բ$,fhF
�w�M�qQ�P�R��� ��XK!%a,�c4���t��^��cL�G���R&�ӌO���)��-��)`��b��'�0��h�m4��o(�[%���"L�>Z�H�Ⱦ�Y��r��d�[kؑR���V�ǵ�-'aDU�y]��}f����;\k���5/-��T.���``BY���?���n��]��m?�o����w&��u�`�~��R���/=������s٢�4<�����*�BV��z�+_!�.��~Dg�;o�I䓟�W��9�30�o��f��ۤ^��>(0��|Y^w������?��̷�e��3�Q��`�o���@�1_7ZM���Z��b�(��r��膩��j�3�>'��q�\����K8I�e���'diaA������c=U���	Ņ�Y�c`�fx�}��nCB��˞�(��8ֵb��L�@pҐT>%ox�ˤZ)�c�<.ٮ�϶�|�ur��mI��yŭ�m�,��'y<���;�k�]I�t{*�]�~��`�H+�oj�{�ԋ�̞�|Q��M)d��¡�.Jԁ�g�p`�)���H��������vGZ��'U���Ȕ���z`�j��J�	�i��[ţC�vPϺ=���nN��s%�l����u	%�Od��D{OÏhi��3�F�mN�	c�g�$�&�
�Z{'����Qe2(��?>g̮���f����x�Wt�)�1n���8�s��o��Cw�X�_�;�,����irڶ<(����������J�M��i�W����1� ��iuqt����h�m7*��8�X%N�]��ķ�����<�>�`�E�h����	��q&�g�r�1�؃g�sO?��3�^$�i=A�҄Fb��t�F�bT��d'�4l�ub�-:��{�I�~h�
cO�y�q%n��Q F�<T�k�Q�6׉� ?����=�2 �ᥓ��yU�0���O�gۥ�u�D�Rd#���=F5X��f�L8�$#s��MT%��C-r���Z�	;�X�¶iZ�'Z,���pb�1���&>�'�P&���-� �:�H䲛�{�	����1qR#���ľc�51g�ˋ��5ȹ���R��Q��X��qf�+���b^����]s���,�WЙow��ۓ
�Ky�h8+�-�C��j�I��-xl™c��k��1O����O~��M�m׶�lۿ�韖���f��ӡ��k��e]gX3���%�O�D7ĸ�

�r���ɣ'��j�n���!�\��9���p@�aV%���
��%�ʩC���I�P�"�9����C~���m��lC究憞�E�E%Zݦ��E���<�
�tygSst8%��Z1�SV��mk�_NQ�kTh��G+U�+�+��j-�@�{��=u�1�Js���:K������z�\�ÿ�4oz�9q�ف�Y���O�(k4�K��7����#rzy`炰�k������fR�&�X��
�z\�Ŕ�^X�����l�(Y�|j:���T�7�)�T,���qFj�``~���
eyiN�#m8~�Ů���x�Fڰ���v�uL�d6���J�z���g�̉U�쟒H�I|��k����-A�=�WD��f?�k��p�M��S	I��3s�]-�N���$�3^��;S`+��ɚ��kkD�Q�Lc�����61nj��"�AAAҏ|3�Zn����,�sXz�m/��i�3+�1�o��}@)4�G!s�'uRb��8�tׄ�)���8#z�͵L�:��_
�8�M���'A��4����d�}	�\�,���z�b��D�� <�9?���c��6t	V)ڒ�w�l���#��-�m�8�ٱ��uG�����e<ش����O��Ie���D8+���m�]HM�<ם��>`3g6����?ϩQp��w�A/	v&9�z����-.����Ѝ�G0"�d&�a��4��
�O�/��؟�9n��A�S�O�xJ��ab�p�U�
]������'���w*��u����e�t{R��` �p�!U��	��G&
�8��	�k�0a1I���ҭ��r)U��W��ZxL;͖�:0ږ��
�0U�M�c���Z�ݵ�/���jQc8��F�*Z���b� k�1��I٨��ܞR�؈��u�U��C���h��Pe���?�zf*�����
��������5ٜt��2�Ћ���Z���h�����ê �<R��p�*e���>��4�
�~s���#S0� bo�;�7�lh#8Ff�������ٸ����x��s��Gq�w(z 8���DF0F}�K�z���J��e��6N�(d4Յa�)
+`_��e7�*�\A�t�ܛ��<��E+hg0�?mU�<��h�T�ȹs[
6YȘK��I+�e���T��cm�������U����R�J.�2%#�ą�͠?�J{�`�}dz�kA�N��s��c޶%����g��ٟ��q
���L,E�"�ΙZCI؅S�N� �2���M�8���m���6͙�?������=�����l���Ē�$����c�a��>?k�}!��,C`�6+�+i�O�������Iɇ��J�&W�'9PbFG���+X1�@��b��I�XI��X�q�'� fY[jj�z�s�簣{g�x�D��"v)b$�L�a(��8���#ݟ����^�(,0��U^O��7���j�] VU(j�8�t�!��,H��xӹ����a�?�3X��+�����p�/A���I)�/���h���ʸ
��-j�X/�9�e�ɦM_s�g�Yu��\�}1�r�i�k:)?�Yے4�2����fa��7�̴�,���d��,U��@j��`)�W� ���筡�t݂�%�I���|b̛X
�ݬ����;2��&��+��c�bU2��v��]������8�kQ�q�Q�,R�U�>�L�P�6";ð��l���a���+rl�(�m0@��2��8�2�����1��+A�)�^�f���<�c�zWo�`����ܜ�X�5��ݖ�yYXb�L���8G ����ժ�ئ�4X����l.)���f�E����=��CRUT�C�{�a,��Z}(�7�.P�X��_�u�a�M2�~��2t��d��ټ(�d(�J8��
X>���<*ي,W祵[�Ԝ��.e�Z��	B�Z��i@��B-0W�\2h頍���r�i0s�n_qܟ�[�/�ёh��G�i`�+Hˑ�
�X<��^���M����w�=��Ŀc��	��l�5L�	�*V�GI��G�~�>�*�:T'If��)Ē`z�}M�+�!���02u�(�D�^S�3*�!���&�JN<�	?�y�r�3	"ǶB74����p�&�кY9G_	,�,H�E��߬�?�}��;��I�c��
�U>��&?(A��?��f��u~e<6)�T2�|��2����2Q��}%Z��6�5�(69�e��&D5�&����Dآc;:?������ͥ��Bh�+L\��K(�����0f�썙gI�k��?�@�ed�DO����1�8����h"	g�3���&��?54�!v��#��%���O���)&�
�0���$����+�����	�s�ı���p#�)���N��+Ó�vi]��>s���E5BG=a�H�d�&��Kp�biWֈ
�!�1�Ȃ��RVZ��"�U��]_����c��8&�a��4����2�!���X�z�O�׶k۟�ƞϨ	�iJr�a����}:7al�F)u4��*��Z�:�5u��r��i09�����ѢPETj��7@B �<�>�|�hɑ�aq[.�A_j�]�yy��E
��l�v�ǗW�`啑"�i���jG��@U����0ޛݶ4:`�p=�D��X�c�Iy��O�V�?�!�)8:�@z\�lG��=,��o�����v��Pn���B��cn�+�V_k��9k���nH�\��Ʈ�s�l�(������n��3Rj�XR6N�2.�h+��Ȏ�ܔ�-�;a�X:����aj�`��sݞ��Fq�����:&<��+X"AUo�=���vA�M2W��qc8"ϯ����q��=^��?���8����y�� �f2�a��N��dǏ�����Ddɔl@|v��@Dr=vƇĂSwa\�&&.�n��5m�����c���u�xO����g��Mb�`�"�D]jS'쓉{�� d�O�/D��V��R7��4Ӕ���G5I03/-�1&����|S�H�%���j��$��V��|n�?�$9�Ћ�	,�{���s)�<O$����X7]s���k&��t��`;�fAG8�l��q�[r�2w�����&Pғ�8t���LP�v�7�F�&�]ld'��	�5���5��U�v`�K�uz&��@ۗ�%�-�W�Y�=1$���f���3�x�:��}K�E���W�M�� eg�:ɓ8S��8�'^�>�ϥa�&���`�j�]��,�q3��%Ueb~�2�c^�ӗf5%#'J��^;c�eR�
��CFJ&���������نg��8/��-�w���U�Rg08,
�]@V�ؕ�‚le��a��
9��]�2nQ��qX
�^߶`��p�n�2ݑ)ê��u����@�i��Y=�9"c��8�;C�v��d}3��M6��q��Y���e������`-!�0���X�mK�X*ihX��2
���(���1���<X_.m��n���^�5r
�L�U#B@�!L͍�v�z�+un�2�����q��STE�p`���r��MPd9�6/���v��̶<sfQz���
j�&���9b~��Y�v�m��\���%�iH���#��X����#�S�Y���i��&��)c��'H�WʮF02���(ͥ�N�������뛎u`�C�`��-����}&���Nl�gL�)G�>��%?�%�L����7dA��ȱb��er��x0��=���q�$ X��D�ڬmwv�3�{����L=g�n7���\��9��{{A���E�W:GHEG��c������71�Tc	�b'�TD,SbL��~&A1b�ˬpr��G)��6$���Ĩ^,]�M9*��:����>��$���g�-f�$��K������䄶F�a���w�
���Qͦ$�Jt�����������ș��p�`�8p�3��`$;~x�y��'�e73���05γ��`��x�m��JR��G��\��T�iaa^��#
k���d?�{
섖�8 ��ӧ���*�Ω֓�8yWN8n�D^S��}D�"�����$�2��Iܝ�_�k��nj��ba}Yc��}��}�x�4wve����V���
��P�Y�A���+�d^�xR�iGs������yٔz/Z0 �F��a%imx���]͕ت5��x>��Z,$k��*)6�*��[����kۗ�'�S�>$��7�����S7�}��=�<����_r�K�N�	3ȑ���2�1zdi�|���WB��}�� 2��g!u��n�Ւ#*��Xv�2�:��`��Ua�@#0,{5Y�_���*�ִ�R��4��`�9J���k*�Y�l�Q`drn
8����2��N��h]�؛s��E'���..k.b�Q��HG���r���	.��o>~Zz�]���ud���s9���) Z�ó
�h/�L��ӓ���Sq
��zo�/j
D�%������ݞ�\��a�ex�֮�
�ל�DUh�`��)O���!����%�tM ��s`�Qwd��L��ɩV�ǹٵH�ສ��h{�氎WU�u�:NU����510��t�'�JI�[B���K�Ic;�v�2�g��|`�O�B"��M?��m�ׄ����qb�1n�#�tw����Rc�9���?���Q��d�K=ㄓ���n����V#n"��$�z�f<��-�.9lΝ����л�3p�i��I��*��o�6+�j�K`<$��&�D�
8h�<_�
�ˉ��^Sqn�	7�6�:�((�P��?��ty�\>gA&RL>Q��ok�R)(���6�X���7����A,sP���:3yy	U�H�-��H��6�.˪ �^�m�x7�	���o�®
_�߳8c-~Wf[�kv�1��z%�Ǿ�%g���j��L�P���Β�v~�Ej��hB	���ѹ�'sqgG.�>�E}�זݽ��A�*ۉ�0*g��	�R9��j�
ޗ��9u�@���7F���sm���
�$��3��I�ЙSc8�c�{ۿ���(/�vh��p	gwsC�n:)����ܑ���BE�W˒�8	KyxT�;U�˸��5!;�h=T�J���j�T�J�֘�02�)[*Kxܓ�v���������V�E����r\4�����;|�e�]�W��5��S_�O�{V��r�8�=��=���x��<�ĽR��܈��5y��Y)�%�҂�Δ��n�g�>!+`$�0��p�&�x�Y�����S����eu���x�Fе�j��Q�������H�*+4���ڨm|䕑�Q
	\��I`���C˝�8c��P��]�
��xg�&�d��q^`��:G&�„���.Γ\3��1cw.Wi��>���07����G8{}�5�*�0�?��a���j�"��㳞ʆ�6�sUY�d4�F=ߊ1x*1�	xئX.�;6��ц�✯VO�d��Y��ݓ�?�M�m0֫Xu����9��y�BO�v&�U%9G����(j����W󙌺#U`�d����	�ʓt1K�:1��)2Ã'V�'P��Qu5��6�W�
��SO�Ć!�����|4�M���0���	}[1P�˺9�
�}�$��1����#n��NZ%�ɣ��}3��9�N�:�c���-r���\�C�jkM ��#�6㻊��pܔ��,��3t&o'�uK*�a��h,���tkƏg&�
��<�^�����A��a�yl/���IV�J!v�ߧ���90΅�D����}��3�*ѩB�2G&�4bux
ͳ����8�3������rL~��R�
���wR6{,�=	=ׄ$���D��Xf���O���0�Y�$����6)9Y	E=����s������/�ՎB��l9?�m��@�&�&C_#�ݧ�"W�*F��HR��
v��jE��E
m�,,b�����j55>\�s�����zQ�;9k( ڎ�����5^�`c}(�ʼ�0qc.��@�6B!�{��a��T�I�["��;g�Q|�E�����.�?����.��h┞�-���B�Ec��8��+i��#<�'��#}�J9��i���2W(JN�A ��
XC.>�4W!s�d�
g��:62O])��I��]ڒ-\��� ��vY��<��Ɔ*h����S׶ٛ#.��7��M[`V��g?�?e��M��}V�9wNN�x�&��v����٧��n�C�^��Qz�󲸸*w��u��c_�3�-�._۸&s����'假?Cv$��<�9�d����u��cq�J�8��rMJ�:���ӮK���9�2�y01m�3�'=׬�/�/
v��BT��g�f�duiY��e0�۲���
`1�z<����5-LkƠ2J�9�z�������m[n�T�6�#r,y�s��c�C00nGb�N����M �؜O�Z��ܼl���Ҝl��򴦢-��bJ�7kT��V@�GeM�ܪ �n:�\��l���6M��9fzm�
���?��p�0e��)�NŹ��G&���8Q�O���c٧�]#��y$&�P8�udӆ�j[FL�=xj2(s�(����N�JȂ�~��~�9v�vp�-���D�i�$@�3Z&�v�NWI�����G'��L|9}��f1�'��J�EFHt���s9�U1��1����캸i�5<��hql��!92ylb��&S��èPI������i��8aw'm�Y�x||�F_�aw/�p�Y�4���m1O4�s��ӳ��M�p��I��He6]9��
j�#c����0Η�0':�i��03]U�1��0N�0R��;~cq�����ɵ@Nj��$:��� :�<�M��:�1i����)��3��f����#1��k�."���W����E&�,�3�㈎bO��K8P�H'���x;yO>��\\����*H.^�׿���~���<yR6�ץ���7� �?�8��1�&z�Ra[^����`wW�[\�����{���>uRc�/��(ˋ�06��n��}�3�%#��O��G�^����L& J����x��DA��9�嘷3[�e{|�.�yx#{k[ү�I���d�U�,X�e0E'�5�c>�md��(3�N[�2��f���
�zy^�^�Ff&{gp�!��~�׾7wtQ:����6�WF���	�~�q�{YߔT�-׶?����X>}��]��&��sr�m/���s�ؾ,���#0Z�r��sR�[���ҧ����R�����	i�]�?��3��,ӳrԁaއ�G)�bnE���ߒ��T^��W�5����x�0l���pI�Nmwӄ�-�C/�R>%YJF�AC��&*�Qt�S��<�
+O�s��9�đrt���&�k6d���k�:qK��C�SS�!oe�Y?��$/m��O�8I���s
@/f/���6�݄��tM9Ҭ�Rӗ_|弤�pͼ��Z�Pž<��3�/F��<7���u�2��8테K�qGk-���;�Qi`�e�hkQ�MW��m��.����*ł�y�����eI+�҈Eg�Z�OY��+Xs�;�`�$�e��3aס��1\гa��NQ��i�@�s��Q$@b�)��5�,�,��|&*�*+���T+���Ev����-	é5*�0�,rG�pA�e����Iߴ��:��5/c@3c=�d��#͔�ر�Bl9㐸p��H$����~����8��16W�#�,�߅�1�+�K{�Q�B(���ďȤ0�)N(WJ��0?�ȋ����@�5&�*����f	9�G�c�2)�=�!b:�X�L��&��n�ZCv��M���aP!ێH�Ns2� �Ůe!�wf�
�0��5H�A�j6TM�DT�9F&m�$�L
�D��2�Ӳm�L�2FsF�oc�*:6���|�l%�='깊�e���1�Q^��nqiI��
X�T�׹�[eyuE��7ٸ��u��_w�
q9�����5����>�4��=��ّ<
Ϝ�$Ͷ
y���5�m90(��q�'�Ѿ{K<�	����s�’�����gl����D�]' yo9�����v$stAڣ���C��99>W�bJO߆��U�߹JY���PB+��0
�s��q	H��Abx���<�
��y����rl�1o�T��n���
޴N���e�S��s
$�I6�����O���Ey�=o�Jc��3rd�jD/��~t�ug����r�
/����<V�SR.�}8q�fySfA���pt��4[5􍞼�Uo��8���c'1���׿�j�\��
�L��%ii���a
���1Ig[*'����Ab!Re)�Nhh�)!80��	
O�� ;���K`�(+���k�9��ުz��k�Y}-`�|�{v=yqӌ����RQF�0�bG0���4�[`[
Y���AQ��M~}ς*���;r�M��8��yӰ"&��N4�
dt�isoT�45�2
��++��P�h����ɰ��
�L��

�q�B�$��E}�9��"�U�Q6��2T���p���r5��qc�P��C{�`V�����>�4>+��������7jpJe4$Ok'��x>��%kǸ�:����j
:��6�E��ڒU����Y�nh����5�yJ�.�ђKKl�8�%r�Jl#$�Z�i�����u:�mI�.rΚ<Z�A�~�{hCL�I?�3�'�;�U&o>�8�N��f�5[{J��Q9-�	�F9N�	���?}ja(�z��>y�Y����音����^��}v���T������q�I-:�R�v2Ly��t��F�Md�.Y���P*�M/X:�Z�_=@d�<φƅ��4Ϫ���U��xRJޏ2MA��E3@�x�"�j�,c��q�qT\�x
��k��(���p��D�}���k�i�i��1^{a��)";f�tt(#��#�0��������P�l�&���@���0'�O��)
��?�7���c��j\���14��O6�,eՍx�F!Hܼ<qn��C׶%0��|k#��Ri������LC�,y>���n8n���qߖ�|�L�9�Ɍq��N/X��@�^!�}|n��i�h�_�,O{mG��JI�` G��Ε�XdC�3�ǂ��S�AD�n��p�
F��{m^/=P&���������u$�����+H��F,0	�j
lR�e��	��0�ޓk�����-;���}�9��^咪JRIU��`ٲ��1�4C���	�����a03�n���4��az�i��g{de�l�$U�r��n�'����?���9��[�W�î]u�9g���^{����?~���sg�?��o~�cS�l�oYX����;�X��zaa
��+����^���e{ۛ�������m4�	g�3(�/��;d�A�~���r�3�QV��.Z-��=�L��55Wk!��A��V�0$�<a~��럔��u��7�w`sw��7؊U�,��_�Z�#(�s)
9Y�:(�'h}<9��
ܖa���8�a�@my	���:
��o>'�ٶ��,ϱ ߸�
��V�����fa���	��#*dڱ���-�x9�4�O 0O&W��Xx!%�ذp��
N"A|�,6-�9��`u�w�Pn����K�ШR��@#~��qȊڄ�{m$l���:|��M����
*�F߄�Jʘ�H�`sf�D��z7I$	N}��V'M�0�O�^e�$LS�Y
*,�U��3ͭU�R/	82��~Q&B�:a?�-5T�j�!�o��.���0*��.�L�O��w��Ĩ�R�;��,!��h�(���c`cyd&�
�O}�Ewh����௙i�ls�f�j%[��(���@@K����;�{F����'�9�y�8]k8��.�1��1 �i�_L�m�����4�u/�� ��A
��8#q
Z�sMN�j��%�2����$|K6�TR�� 27�	����S&X����	�t.�'$OH��X�G�X���?j�'9ɂ��Rd��/W�8pO��P�np|���5K�L�gVEa2{���N(s�(5���%����QqW���1�r��	C%~�����:2_��'V�z�*�aִ*5>¾��3�j�ͣ�^�D4��%����m���D �1p��c�2�9�d
�fF�m�ˌcE���	ߍ�=�3�A��8%Ű
�lAm[c&[G�����v�,5b�e��h�V�|�#��%�
Z���#rY�q�"��aˊ�h��񽓐C�PY-y(��[(j��]���)[���<&�'n�-[��{-���K$!�D�!sH��k��7�hq�6�+������C`3DZ��-����dY�k�n_׋^D`5Ba�
+fZ�F��.���ׯ�k�a�S�$Q<�k
�D�P�0���B�͊G�L�z�%�lI�#��?�I����"�Sa@ndcn}��r�O� d�%)��k��FȻ����^&�c���õֈ�g�<B�L4�XҁK�'
EMN�SߑRu�|���C�U��4��aT!��J	様��3���!��ܧ��o�=��R��G�-�XY��[���E ��CkZ��R"�DWF�\�SE%�K�T���
"���;�=�54�
�V���"V"�3I��D�G��*g�[���P	�>K�;Y���x^\87��/SO��"n��B
My��W�w8���@��?͇�B���2)���~��BK�u{-xY��Ĝ�%�J�G�=$&>�NH���h;��f�+�\��݁�P��YT�{�Q|
���M�Dsݻr�$6�
L��d��l����c
�t�u�	N���,b�ǀ����k��s�#S��Bb�l��
������Kik�ZEڕ�FӁZ�:���y1
n���H��-\��-�֑?y�4J��ې��ih�[Zt�A1���߄_���@����2�/�720�چ�=��93��`7�������r���@�"�ރji:(�w�{�8���1�#�㑋r��i�0*�tD��<�:dL�{�	����=�V����e#@].4�ȝF,f4��R�G!j�=ǮV���Nnb��� ��@u�0e�ɦ����.	�+&ae��K�������M�`�6�TɛЮP�S�����FJ�
Àt(�=8q�$�����ۂ.Z�(�������ļRq]�qJ�����ki����|��¥p���aC�g!�>�)#W1Ύ:��.�]��2�i��m�H�-	|�Շ__���5��y�
��P�=Ӥ@�g�,>�^Wx��<�Ju�����B@ ��3�a��T���X������kW��É/,��a�G�D��h�Az�(ɿ���o ����4�zQ��z���[�Z�(s);�RG�*�
���_��g�)�86���q��1M�8�I�PH���_o�݋��P"�̛J]'n�#��S�g�N1bd]���)w�9��D��r	S�R(;X1��M�RQH���j� V���)[f`Q���-|��#+
D}*6��[8`3ڞc�`�B<j��J�����ga/��!I�dC���f;���1��P|G�+m�r:���H.��k�bf������;$͊1�u��8.���;)XWcM��P �FSM7�i7w�e���5�i�D3@�N]���M��4�KqX"*b�3�i��9����t>�y�	�
��}��.DH3�`/I��K����q�[��9���b�0S�.���\��Ot����&�wd(��zV]��ŭ�X����e["(����h�˹��h�!�Jj~0�3���X˄���X��$!-h���2�'%0��Nx8�+���]��:#G��^�8�T��'�����@��߫����bs�
?���a�R��5���R���E�F1E8�$��I9��;K�;�E,���[��R3&J�)	&Yt�v���9��E�h:F@�kؤ5��RF�*Cv3��i����`�7��Um$�VN!=z���k�Ѳ��J���
X^ZᵙSV9���.�T�U�=%Za+0�>��'A����XZZ�Kׯ�
�T���m	_��b�&�� �D� ����*Y�sJ׏d �������lHVP%m�8�c�dG\k��O�3��1���{|f%��=�	W�
C		*TR@k	Q�=q�H��-�	�e�$�[�����$Χ=4�P
��B���9������M8>�=`{�,���'g���Ɖ*䚌J�m�)Z�&D�7�f�$7d���%�e	�4���:f�&#�X�qV�P*q�m�`����N�Y.�i˙w�;��ls������2���m�
q�
^�u��%�\"��{Ę�T�������N�=��(&�zF@�JL�e�gӑ�k (�����\7��;��ߦ��U��b�M�O	ᒤV�XiXa��L��T�����;
$���,�����,M&����KE��b6��R"Р�+is����*0JSW��R�H�E�&A�.xrs�4��!��|�)�����$���jƖ°��3&	�����Z���&�D��*~^�n�y�Z�7^���F�D�Z�B�7���{.}�O|�q(	tٙ�Ƚ*����'�T@.��C���|)��
V�fBXȲ��f�g���L���I���
p#|�#�31�}t�x-�2���<��"F�'c�����B���ل�D=�34U�<��_v-%��G}�c�8Tw�-.�vt�c�B2|J�@��6��!����
'��Wql�d=��G�OF��ƹ3�
��PmI�ˉQ�p�� �I��ʑq2�5׆���TC���Pb9����k��5�Α�g@e
���^�m�����Ǹ��h	��y
���:`�l��1��&�q��2�:fF�$YP����YYqm�$Y�U�T��'N��6��8
6�C	Ɯ�Z(hU���GkS�V�_xh~f�&�qrg_j��g�"�@pV|k(1=�S�pk�I�o�:�˰G%��ԍ��V�-.�I�b��-)8'�������@h�H�������F��f����}�4\�|	����>F�D}Yl���]�r���N�� Yի�"�J���~7W��K\KR��N�D�.i$��d?eE���Hms}V��f��yG`�I�Zh�H��۰�#���W�?R�;�c\A�F.��ơ�l3ǯ7�y)��B� ��	qϱ��l;�E�g��F��خ�⣡���M�*���b��{��۠O�`���;>C�;�^�Oa�g��P"�����p|v	����|��~��;
$�
e���*YC�7��K|
lI��f~Jwi��&q�U#V!ܛt.����MJ�M�jE���G�kHh!<��M��P�J;n�0)�(WLj�#�F��@Y�(фs��4��\!�g��,��3YI�@�L,3�|F<ȓv�9��D5�X[�@�L^�dr%/F]�Tӑ�&n���
qU�sI5A�Rz��
�t��p��g�h[r^�g�}�]�B[vpJ
��F�^&t9ղ�&��U�c��9B0�|�3�2b7���1x�$�����vE����G����2�p�X�-c��nr��9JW��u���R��ܜ�G0�B	)��=ՇP�ԪV��!�JQ����jsBr�q��i�*)���Z����Y�9��ۨ��2�к�u�4{kI�.^�^�-]h=v������{�չ/a1$~E�ZC�c|,yd��8Z�l&��$���!%��������&�1�}�\˨
J�0N�?P$�Iy���u�݀9TfP�W4�p���ZV���O���-x�{�� �HO��RlR�➐w
X3�ׯ 8�W:�
�=CR~2h@>>�0)!~K�H��B����-aF
�V��6�=|�nV�>{�2�*Jb����-����C�n��p���!Jb�H�A���#x�-�!�9��N���O��._�����R�ޣ�j�;�0�#�.�:��\�`®�<�ZV��3�ШՄF�̐d�R�uŞe�B��FjQ�B��Z�Ix���R��Vul�����ۚ�UDo����T�甀N!h㣮qS���0(�1S.랭F-�V"8W�a�Lh(Vd��o��؄f���Ƕ���-f�ϸ�p+/l��R���C�]{������4k�gI��A:*�,�+� B�p�u#W�R��[W�(N�@� ��T�����fmq�i���,s����B
[�������.I����j�<H�;[�3�9�i�(�[��0N���
���}zqs�[�@�ux�wws&Q+�"����{ M�񾱎B�.P����{	�	�ֹ
�˼e+Ϝu�����}��&��YpҸX���m�`�D�x��3֖=k���xTB&����� ��@�0xrj���i�Z�%�Bx�s	��������Q-:��W��_�[-	NN�c��Ɏ�7
�����\M)������&���<�!���r.��:�������>��Z(��PC��)���dT�i����7�_^����o@7��u]S!�ŕ5N(s��M\[�2����FJ���G�L��NʂGe�9�lt��tž��UqD�&�1��a�Sb�������9ޕ騥�=MT�4ТB���� �AK�����,����FL��Eϳ$a�C|�@�Z�)���d��l(/�QVߊuE����ׁ�s(�6dm����bk�,u��q�Se�5���6�̊Ŧ��;�ې�,AJT�(1H��\i=��l��箓w�emk�<>���.�Q���a\�q��M�s��("-����H�:�w�Q�T�RO�[�-��T��[�L�I3*5�^.jjD�*��<ѳ7Q� �AR�}~T0��T���%1`B+Ґ��8r�K�i��)ҍ*���:D�MI�e��)"b�elX��ȣ�-�)Ve!�����&NV�v��b�1���! �>���/It?�<D�Z�[z�i�f� �L��bew� ;���{`��g��KK�cw�5鎵$�B7+P��n�b<��ε,�����E[�T�Ksu��:+�<(�p����M����\��":*́b%$cO΄i(6j,����0�����:�tYv�ċ�[il�x�xi90�c:��x�40}Na�E�[��*\r=S�dUh�g�@�˅AӜ�Tߤ��)��'������B䉖��a �1����ט0[i|B���臿��ws�G)�Ҍ����C��	,q�PŲUH�1jzG}��Vy>V)����il-���+T�l�%�6j}I!Ak�_��i��T���pr
Z���XAf�Ԇ	��ᾦ�qj�R6/^B��o�o 7�N /	��\���DA�bp���ZܰKY�ƒ=���Y�ɵpcc��;�h��ȜBG�����A`��M�
��!���H����;�{pj�8�9���tQ�O -�2��N��q��j��(-�(���1�l9y�'�!E�ΰC�#��o�ŔI�����%��k�scA�b{H�>��Mv!��܀�
7�p�\��'��� X�{�0��l��:�/�5
w� �����g^~�;w��7o��C�x�QD�(�l���p��zLqFNi)}�4�
���۬��r�x�L�
���<���{F�G~D�f�p���Q�)��b*8��9��	)]�s���&�i��{ Y�]�C ��or�L��o	��E�͝#nj�Er�\�|0^9;�����GB�G>uyQr��%�
m
HT�x��["�hj#yV�xNa�pk����kR
<�F�*�4!޻ n[�ߚY=�W�!�x+��K�P��{�ݑ��B���Y�wqS%�����B��w�Bm�-(4a\ܐ���Z+�&U�DN��`�k����8"C����u?��K�B�m@��>C_q��]D�&�,"��O��Nǚ�oQ�̴@/2ǒD�D��ڠ��}��V=�.���E����6l���C�(6�"�v�Ôn]H��B:��3=�o�q�����z=��9���*I��5RK9��BU��Ԟ�>�����=�j���q���V(��0#�*,�ٴ(�&(q�3ɝ͌XO������j{$T�e2f7>ʿB����
�)@|��o�o 7�O��Ih�E`D�
��y���m�b���E�:�/�3��k�n���j�#xE�R���g�Y�}�F��(ڣ�D��6[^�=JT�h(Z���X\aeZ�K馫�<��璻Y�jqn�=7�Bvuw:�|6�m�d�I-%yك��y>oso�P
�h�^_Zw{�ws{��r�
Yo��rf��h�e$�e��"KՅ6�U��4�f�%�B��<�\!�|
-p7�ᑻ�ck��"?G�H��|��<�쩺��L�����;�aP�AFʤDb�Iq[O)9ΐ]�*�2�
2r�Gk���}9[�(։���|c�1l�,[pR��H���'Y���-�'M�^����P���OS�Q<�ɵ��q�ȟ�NMs��Ŕ1����8���[��'~-M��(qu/����d��P�S�E~0�9H�#�"�Mun����<��=H�փ��L�ڱ<�~���Q��N��Hw�Y[q�^~Q0��䤒����?nѕL���z����L�"_]�I�t�p�9/�«���5�"5�2
��4�^ܜ��Z\��� �x�(=��,�'Y�B�\���h�Ԝp$�F�j��޻/���y�ba"���E+֠8
y H�"2g�F˜���p�9
�a�;$��p4`s�E��A��c������g�Q
�?E�?BQ��(�tmEڨbWm���c8�hۙΧw��n `��<��bu�Rl�"�Ud�����f�t�!ӛK�D�c)H���I@I3�@�ҨH2��5\��J(�aLY�&_��Z?��r�����k%��n���̐;��V�
��`J�?ĵ9y$����<%M$�t0�C���2����&�a����
�X^���e^��]~I���tZ���EJ��u�P�gar�j�Ι��t)�7�l#ȡ���Z��� +3���%���F�-����+b
#%����y����A��9�C�j��Z�N���������*Z��pu���~�K��Y~�8�s�*5�l�a-S4(�;�Ѻ�Ev+3i)���BXA�
�vQ���ͦJ.Ȗ�iK��>�8�Lx�L�����	���R")옅[�!�E�<s�\�zϬ�E�[
����A�=`PG���Ph�<Z�(T`26��5����珱D/)&�d��%%i  ��2���r'^���uͺfMP�q��x�)��Q���AT�]Id�*�i�}���O�k�
�p��~�� ��B�W��ܦ�d*>חe��&�������i�h(@`��I��.�nI�����36�����(�e�x���%� �Ѭ�nߝ��q�v���mڕ�t��뜐��g+5�8.�[a��}E�.m�I��@��	�m� 1	V�®Ք���&�f���Ij�}�۝cJ$�r}^i���1��!���ϥЫ����IY[EV%�\8!W�L�����5(�\�Rq�
�S�:H~��{���:�2�[t���J��}&�S�K�0��Iw��}����E�0�)��|�h��B�BB���l@2`a��}����.�u�j������Y"�`oX^e���}��T�q�~EY��ꔐX;�'�	1&g��or��5E���㌃��԰�]��y��WL���Z��V��
O�f��
B����=�������
_�$y}{}�/}�n�l������I1�6M|gZ.dZ_\���76�6TJ�������\��A���K��}v_#0B�8e�%D@eyn�]���C)��F��q	�5dF��
��p��spf�8g�3��M2��D d��������+6�Q�ʍp��huZj�uko�k��U-s#���D`X!UN"�HJ��F��|�v�<�#��X���g��/���&��y��5��u�J�H.�r�=v&�7"�G� �!>����\�Rv�.CBJR~u��s	��EK��U��֦��8�x�x)h��c{kP�[���&c'��� �Z��&����@1}e���I�H�J�(�s��>��4bO^
�oNW�<��h��f4����I"7�����[l���{�,"��E���r����6���p~�NDc�^���9�A"�����Q	�Ѡ%'�Z����r���1�;Ųtǹ�6ȳ�+?�71�L�V�F�hN�}ua�(p�-�P�"wH4L���B���FSn�9�Nas;|���E#��Z(�'�p�k�`�	�f��K�8"�T��T��ɣZ����8�A�� �1k�-�+g��'kpA��X�X/�i��<��6�]&�v�S��<�����.#�*����!�fZ9�&^h3��A�iz�̸^�f<�2ar}p����i�X�\�Z�
��'��|�{
�Al����]�3`��$,4q�=rjN!C���6��`�pq�
m<�������>ੰ@.oT1�B�	����}βey�ǖ��r{!��p�Ek
�a��yY�P�`؍%a�'Q�>V4��S,C-Y9�Ek<y=������J� bf�����!���(帾QE�gP�JTpug��R�i9E�e�T�Gr�.�lr�Zl/�ee#+�����p:X>��jS��<WA�=��K�[�u�nV�?G
�BQ�����-�[=� ���sI�JI.�!����?�Z��.Ξ<
��Y*�:Z��js�=x�It=��-4Zl���쮗�@uœ#�/�-Ic8~�4[��^�[����ڍ=��ͅ9������F��hj��j=�7o"�2p�pm���u��J��Y�{�X]�/@Mm�DѽS�U��H3�2Swg���`(�+J�-'�`���2�������P屫1ȥ$|�ڼ$��[��pa�:ϟ^���$�:Q^4�a&�.�xQ>�����?���\4Fr�a�
0�p�)��A��>�%5����:��Obeٱ$��#K\@I����E�b����-1�b�����|�.��X�9Y��<�^nwd��Y4� R���@#�±FZ�5��H� j�}n�P�����S��*��'!f�e�#
K��l��qAR�O��*��r0�97<�V�j�:y}�&(��:���(z�t�x͵k�`�D��sgC��\\9a�bc�_FtH�tKe�4*���|�r<��1�t~Dl̬Z�}�Y��H#V����u��+B:�h�������V���Ah@ɖ)��ۉv`LL��-è}��n�n�j�p8Fi�&��ૉs�닰^k��fn"HIG��Z�ym����<2�*"����A:(D�B�o.�)�	��	�!�p��"("
2�I��OJ@�U0O�YqM����$#<��
<�M�^s�}�d��W�O��}���R�I#�6b�	�g��`�#_xQ��i�Xwv`[��4cJ�ةv�6S<�ܖN�5��t:b�U0Z�S�ua�Z��\�0��T�����p��m�*6�:9?ǖ|�u�=���Z60��Ee"
Z[�1�;r�"Eجe[���2�	sS�c,cf�C��pli�-�c3�,��`y�Zc�1�*:oR�����X���l.I��Y&>����emn���v:[���c�r�mr� �ם�Vf�<#y�{�!��V�m�t���f�xj�Y�{�Ȅ���+�"�#+�N�˱T�E�0Q�w����-YC�dii �#KT=0Aq�;�(�7)\����͙�Ja[�I��Sg���>��{<~d'�y�
��ܑx&��"W��v�vY�C����]�.d��!:���{JfC�Y�뫰��#	$��X�
e�cz=awF�Ըq�ڐQ+U�&���YAY���[���I��
`�����$x�=f`6���+�����~�rH`�Ə�dѓ�O�S(3[P$�l`��oDzX�k�3��X��NZ6E�oC��=�q�H�'�Ѧ@��)"��ׂT�f��0�TK߯�)��V1J�e%��D�)���n� �Д�	P�]�t9�UЊ���G�6�(5�#R�5g����e`�L��-L���Dξ�c�kˈլwŘD���7q;�HAv���4$��.����|�hWJ��G��@����@E=)S��8���#����Lk�xKIb������<ς �ڴN�s�K�iA��'��h7�wcOǽ�a�93�,�fZr9H��-zg�>��D2��6

�LjF�ξ��͊�� ��D�Q�nQc�d�w�Ё*�h-R�/���c�oy�]����]x~czdyE@TY]��6Ix@�e�B���n� �0NĈ<sA��G�(���N+�R�)�|N�ϟ�F.V"^Z\��H�[A��c��w��.�^��{�V^Z�)��p������>ߏ����������,��y4�.�L��r�!/�f��`�k�Ē;8&/m.!�<� �%�x���\2V�ȩ�����H���<ܷ\��Tl1~l�7��/y��@̩��}W�!�G�OIhh��[�"��}$�1C���
�D]iآM���]��ݧ�~��B�e˻,g1�H<��x'0���k��HCLc��j�6��	Rq� ,vUC�B����u1�.��NI$JTP�y~5�D��jQ�h.���Xs^���!@�lѨ�����bC�L�չ9���.��	Y�'��V�m�[H(�g�����7����.)Yh|�r|sG���\'��
C:��ŐU�Ť7�.�s���wr+$�QmT%��w����e��*sx��e=���Z��y�9�u��ޜx)�U���S�"�l"�;�1OR�v��ZКd-3��֝wBz+����V�%��9�K�P`���I��4���a��/��,S$�z���$A��������D�h,*�J�|��@Iv�翓L$�{q=��ȰS���F�D4�5����K�VS��� o<X1����j~L���U�ͥw�3ꋻm�:��fq���x�Q����1��li$
�RH���0���w���qp��;2�m�Dx�e]�:G�w,�
�ԛ~r�r��ZK�+�g�8ue˽ �x�6W�5�s1@�f�a������Db�ˆ��3�2��HQ��0��e�lu�:㞇|�?��O�{��^��g����]Ԏ-,,�FdI�|����Z(4,h����h�:?���q�vI��>a�5N�p�p�J�	OEA�BT�-~�v�'ҺSG�%�2��i2��u�
@׆y5�g�[�hڃ���:��K
x��2Ђtesn�u���@�(i��T8v���ϒ��u�2q�2ud@��Q���)�T��V_Zd-�'�%R�6�b�p"Y�&���6�Q�%ʰGRt�,��2Da9a���돑�5��vn���2?�3���,�p��������u8/S��@��BH2?/���H�p|\�5
H�YF�6���/.�����ڗk��D�x��hG䂎+�c"P�������|H�� ?��]���=1��i��$�fC�9�^Lqx4��;A���N��]�6p�Օ�x'@��ށ�Ⱥ�Z��0ꬤ��Q��s�@�T�ȽN�B&�JX3pi�A����$�
�kK0&�4l�OckoO�0@��9s\�JD˭�|K��h�m���S����I���\��z^޼me�yn�AP;Cp���fD���:;�m,���Ւ�I�*�n�d�5�9�'�XA�H�pC�*ZJ�M@�
���HV�>���Hy��;7���]��++�p�R��`-W��6�#u㸒��3�G��Ոj/��q]������U<�f�~RVЊ�������v������
پ�w�9,mNIί�,�I��u)���
AZ�R��`���$���0�~�\UH��P�Y���ho�&��,������9y�a����޾�|i��"'-�8�e��,.�\\����og^9e�.�g���F�Wn�ʀ&��Y���h*��ɉ���o$��j�E�f���M�{�ݑ � �o�uߧ+N�T]Ӹ�o�0H"�BD��Zl\�.��9�uM�d��L@d�ʢ`�E�`'�G�k��1��-<T�[,]�B��ņ�tq���	tR6�*�!Ey���|�������c���B]%��t��[XX��H��
�J mфۓ ��!�a�X�cZ�i.	��L5����X&��t��=���a���
��-̋[/�����4�������=�о)��l�>_.h��v�;?�xQ,�H,uv�w�!0+����L��3mx��EH��o�F��^�38��:j?��5X"�*�� ��
8gѢ�"a5ջ8Wzw0!w�1
�j�ȥ0-"�qq��.���$x.ec�Lv��n�J�^r�iֹ�4��ha�P�ZI(N�\F(������t�6�������D�O�u�������u0L87��
Y�/��"�u�bBv���.<��R�"Jz7p��֭�*�Ʊ�b�%��*Hd��3ʝ��~���J�B��X�T�<�tm�6�>��Dل5I�S`�w��5��i���DAH��%-�O{h}g�{�RI=��[����_S��`h�2ɫ��4�H'���b��Na��W�;����
�)A��Rn��N��k� i���`�����:�ؒ,n��n~�*FRV�%�V���2�uN���n�P�Ն��<�_D�3���Xf�N�Ő,b�W�!�p�7�bDp
!�O\Tv,�2��g��6�nG=��U��H-]���L���
A �4�R�(��w�Ͼ�[�N�{���~���!њ^U%)���ff�!��RH�(e9���e��EZ�F0�7�;�m�%F�R��Kb[��ob�����_�r�j�]"�J�Ϊ�q<�()��(��W�:�O4�rՄ�
E+�q
#}����e���ʐ�@�f!���9�q*�(��.n�ԠS�ؤ(M�����^h�l��-��w��D1p��������O�v��M����4x�E� �t�mwdL��f�����ZJiĕKbXȄ��H�(�<��E�FY�璪��$�RE��r�<h�;9�
Uצ�j�d� �y��@��%�F�H��RkЬ_��7�HuHݢ��]���Q&��uH�{ ��(S'�Y��j�Rk�!�1v�H$�}4�-�L-.�V�W
���ŕǗE�b��uPc� $�0YV���~��� .:�M�Ab�[Z��׮#f_�b�f�o�6S0�ś�i�1��X/�:a�_���
�#�^l��L�KI�1�E�J (t�N]�4\�m����g�6�7���p����V$J�PC���L�
n��t`o,������q�F�2"��(�`j���f׹���8g震E�T�6��G���i�P��+�n(��#�HkiFF
ZR
�b�vie��ѳ&��?e�J���N6c�������`�Z#�:
ݰ�E't
x0f�SL�x��i���2�S#B�K2�ib-���
=$�Mr���u�%Ьd���-O�%� %+�x\lG���.�f#`/�x0Tzf�M�Q5��s��|
�'(xwG����m؄�Y�n
e1��C�	~i���ی��Y~_��'-D�s�\�Hxe�LV8[a>4��;��
ЂD<��l)@��|m���QZl�=���p�p�AD�;䦖6Sdmf����Ӊ{N\�;�F�^��U�Q�z��s���^�g_���1m����B��)��2ly~-^]��T3�V�쳜�@c�d
H��M`���B���T���|��1�$���-�F&R�����)Zq��(qͤ��0��gN�ɡ�V#���kI�׾*�sJ��6ךc~L�	%��lxI�?h��,�C�)�zh"`p
:�ժ�ɑ��x�%+�9��ltF����bBi�i�l*	��s������&��YW��e��u�b>����]c/���⭧i�13�.D�2Q�E,�A��B�f<
��	��s��w���}l�ψ�gQtDn c�z�5F��n�w����Y.t��,�nI:`;hp�Y��[9>�x�o�EO#�ؤ��4A�k��7kɘ�
x�U�4�D���%	���λ�,@y��n��r��I����R5��,�KW�@�x��a

du�l��%�
���pv��h�<�w��2b��T�5	�E�OnH�8�DUo�"�u�n�P�)��	
����WF����z@��yX���uB��<�(���m.��kýcb�T�fQ��
�K.�D�=��4���PD��n,=�#D^�J5� 
�nG������Qm�l+���>
�;�]��߃��R�Hva�`m���~v�8�D��P��9{���u�“�-k@�w����XchN�j�!&���ٺ�q�oI�H�Iv���EcK)�I��Eˎ$���S�9�L�ܾ�
�dp
����-.ƿ�ܿ/y�b�LI�g�g���$�{�oM�W���ꪏ�#@a
k"���,a…�z\�E�U�}p�rYr �ڬs|h|'�,�.�Ҁ�*�Y�R/kb�wgrCIϕ���/#�(����x�u„����Y[�-�U�#A�_����\'VK����0^"�}Bn�&�T|H1�]9��(������(�q�(��7F�d�h�X`�� ��,�;��2ިK2Y�	�%�O�w�`4�(Z�ժ��!^H�J�LP�҅�,��)�\<��J0B�J�/����OFD��ze���~V$��OqEU7��<
�Y���y��MIO>�j�����9V��i�sM���E��3Wp��l9�o��X��}j�s�8�s�y��E<���,ss�y'E��Ɔ����h�:��9�(U��N}����q��5C)*��M4�zš'���dN�2W#
J?��0�=�P�)��|�%�2�ba��bY�a&�1M���&s
�`�9:�i4@l.�_��6��xq��\�ͬ���G�
� w�	�W�ߟ�C����{��S���:�����L�>�5�/���)���w�+�,$+d��]Ą�ϣ�*���n�[k��8��[�@��V4dnJJ69ON��	�	�:�
EBU�5$�Ձ��M(����peYs�\96j"> ¬R���'�n~q�5�-kw�6X@��}�-G⻼��.��3��q۝n�Y�q3��*�&:�$$d.�Ic���s�� �h��9#���G(�=N��si�-�*��CDD�_0K��H[��X(�
x�;G�K$�QF���'�d���Ҭ���8��͸�[(`([�V�q�iXK&,u�l�F�RiW(��Q�j�M�;��j
�\*��]���tт��%�&�]Lš"�c�B��l�nx��e2Q~䚝��3ȮHf���m	���C����R�D�#W:w0�۷�;�M�� r�����r`sXC�ښ;��� �)��a%&$LM�ܕS�p}R*ܽc��M-�5^!S��Vg�Z.Z��R��͹��\Xxn������Y��� WJ
lo���ʒ���~G�1]�;3��@�����먱_E+���NY	�Z�e;_��<¼�������rM3M<��N"<�2�U�*[�({�m�[h՘_�g!����fe?�y��:^oH9"sU~�,�hY�R�����{#/�_��I���=�O�����8x��Be4A
-OKn�Z-��rO#�=�f����F�Q�:� ����{!�m4�)+'Fbmr�&50lq�0ث�R��j�]w��N�n��F+Q���13Zڃ�Z�g���:��IK�*�6e�k�_u�q	4q�Fk5!M�~����C	D�qR{��A.T��$��� [>m�a��-��>"	���`�My�������vhq��+�,A :�xé-��(?�sCCW�!���e5z��㨬���h�g��$��u6)�E�[�G�4��]�����i��T�:ŋ�iD
ǣ��
m�	"�B^\=�-�J+s���T��
&��֘�Ի�v�|�Q�%u���D������	�$�I".���ں�Q�X L:N�	�BJ�k&8#��F�=9�T}F���&Ve�=T��BS����ہ3g�•�/1����Ѡ��>�\��ۻ���i������ � k��?DFD�٧���'N�e���׾����9��]8}�.�^#��wN2E�=��9a��/I�B�=���N?��)��`� �zBf=��Bf�	�A�-�_�s�t�
�)nI��z0������:o�NZ�*��{�[`yu������;�~�kK@I]�F�׃�R��a��qF5��|��=eלe��d�&)�:,�a�4���kg���e�S�h�c�	(4�	 �R�%~��Nv;`FU��TӇs�
����cs–�Iy�޵*�	��@\��m"����Z�Y��n[��1{�����N;��CԔh�Kk��Y���Iqr��?xp7�,w�3�L��t��L����e[w��];΅XWri_��sH�.�_�R3���-�e4�օ�_F3ƣuX�y��DD��q6��ހ���������
7���q��$W����A*��Pp__Z�*�Њ����m�d�Մ�1%#�4����j%�b�tH�8F��.g�8��&� �@���2�&j�87ZQJR�c����2^��N����+���D���<�T|u2����j��	`�(9;�$�H+�rJ*i�3�#H�����Ŋ��C�;;���H����F.y�Z���|Ve��j@�U�z4'k�.���	�ʀ�y�ؠ�w,���&Vr��xvsjw�`���{�'�C�M�x	�m�B	��M�
x%����7�E�@�U����b绢C���CSJ�f�2׏��:٤�8D�p��x�0&ʌ��"f#1O�,��q�y�=��v��� Y�l��W�d�;q��c�ʨ����_f^��5��c@Dnm֪�(��8T�@��ho	p��e��,�}	�'��L.���5�ILݩh����Phdw;�6Q��(O"Vy��)���Z�\M�궪��q�+n�X;�.˜�B�U5k��_��׮��G���/����&ǥAJ�J����.j��<V5dۛ���Ƶ/�.�pިV��ݼz���f��aV��}L �����}g:�4m�U�7{��Y�:���KM܂
���� /�O/rF��Ƣ��fʍؙ�}�h=���e�'({Tց������~V�PÉ����@@�	-���@s�F�-��5h� �X�8�&�d�����\�q�Q-�\TQ�X�1����C,����?�mQݢ�@RSf<��V�tv���ܖ(�wZo1�)��@IF�x�l�{3ޑ���c�ք�x�ų���*`��ef���ֳ�l`��iGZ6��0S�{�y�/(`�I��N��$��8�1�Yl��\���"�J��+Yqc��I�S$��Vҭ����V�w��$�W#�xU��l�W�I�	%�g)~E�K}N�:YO����"�`���!�g�#�<�a�&#uϔ�C����q!<Fr��Jk��L�HP�fQa�9�_�h�v�sU����>oM�ˠaWz�&G�����e��J�����5�*<�HmBN}�eZ1�@Ę�h)�|�e�HҚO��n�Àq������l��$\�0��qz�E*X5��18����RT�h�檍�
��e�N"sDS�Nκ�̗(%4-��YG���foT��G�dZ4�1�Jf�O���o���L&]�1����b��?n	�Jd�s+�t|�F���O?�m��<|�f�����Ƥ,oF`����'&����q7���W��S�;�Nm1��{T�����$:��!��"�C��	�=�L,���- b��a-�J��SL4d�_��]܌P�B��cP��qOc!�tT��i߭���.���k�
�Ő��$+3�b��\/�(bhL�5��uUZ�\��5m9I�)�T��=I��x�ւ���g��xvQ���Aa5s+'�Ŏ���B�Z���́,d�~���-,A����9�G��֞_�t2^���0��$�+��
Z�i��ګ[m��+�J�I���c�t����S,���~Z	P���#hv�-~$2��E��/JL>�o�n�*�D�l��;�L��E��v��6;��
H����9A�ߗd'����衔����g���+�Oih�fP3�9s�X��֚g�sa��x�p��g8	g$���V��P(�y����R�S��F�د��D�+���:u!0�~5K��Y�N�<j�Y���)��e*��{���z�����>��)�� ���2_�:��m�r\C�3�\�f*���%ك�!U�BW�0I"��O���b�#�Zo!e���1UT�-=�?1qc�"(�Y��q
�{��ee�;HG�L��t��p�v��;�˽�X�1��̺���Ԋ���Ry'�I����:��*�������s
Yl��Z�IM%ch�}$�OI1F���C�*Z���)�&�����פHDC��8S�I�W��0�c�y�N��&��՗h��9=v�^a0�k,+
�rE3 ��{�'o�:L|����O2B���ŋ��s�a}�t��-W�\��߇1e��k�p<@W�-J}T��5X\X!v�	�V��M�Z;��)�U>��sY�:F*��#͖i����Xqk�58�0r��ϲJ�%��0���=$��8p��������E�<r��Mlg
�*�D�0tgV��/�v(�lf�tu�y��)�i=1
�ǎf������-����U��#�r�s���ịN��i�W����"�����SPON��;b��,I���s�3K�<��B�r������� �//���F�>��D>x78��P��u��P�/d�q#M�#(�IO5iU
|unw�9\;���ޟ��Ke	�Ƅ4��힓ٮ�� 9��h��ܺ4�6�91�K�bawqy��|@�F�5�m�vI�694�ؠK�A}_E�~�d�b��V��E�("��l_)�y�ۗs��إ�'V�;�\�-��vhV��T��M���C(g��3f���>�u�l�(�U�c8������Md����܄]�ȢC��_)7
\���Di���*nxJZ2�j�tȵ�J-1)&+Z���8�\$g[�d�',v�˻e��3ӵ�� ��_�]�~޾M��e�:1�-������Y
#w]��J� �����P��N�-�8�]*dr�fz�%�9	�e�~�_s��Hp.Ϟ�k��=i"���V҈��L��"ٗ�2**c�9���u����:�2��p����e8ȋA@x��㗒��K2�)zM����-�3�*��:0���T@�2��$���A2����&u�(4L�ۈB�b��d$�\�B�=��Z�kY��>�LT*D��}�?c���d����}��8����V��I�R�؛*[fF�"k9cf�b�rY��X�:F�ér_��b7d⶛s��>�~��0Mj��L�79��X���b���5ˈ��j���I ��xɭ������qJ�m>N����]ZYF!��ϵ�����.�EV/���\2��乐��7D�Uib��:~���#�C٢$0���$�t2��ހ�Lu2�����bU����q��lmP��z�<�XΆ��c�PPќ.y�@��}̚h��l��G�sw.��/�@)��:�>���	��|7)�i��jf��˜�.m+���Y�_�7]C�5؇;b�cc�f}?較@T0�:�_�U%>2]i�S*Lv{��g*f�CfZt�ߓ��l��6�y������5��-``��ǵ�M��&����$�4�i�>�'��)��-&�'��ZI�
&"av��!�A�odّ�(��,��a�u�}�YŜZ��D+�1�j�$.�KL���3�C��u.ֆ����v+������$X�~��=c��D�8�>�x�|������8�#�߹��MPzjeZu��|Nuy^��	��P�@�U���A�@p��#�C�d5�B�����J"�@���t�3&P$�L$6�S�\L6�y�Z��f-����jAcI�$��Υ]
{1xMmq��:��M�P�G���ó�0g�\��n�	/90|��1gme�u�i3�W�\�D�n���6�P��Z%��j,��ٮ���:�%�U�C�l�A�O�@ۥ��^s�<:�g�@fjf)�|b�� �]���^ee�&�*:;�DP&5N"�
�t�ɽ)�K�0/���(���x�<���E�Y�pt���p2*f�	4�b��k-�K�c@mP�s�ӣ�&��C��׺�}�y����3��.$V2&Z�GT�>�/r�����jb�t$^ހ��%N�!'�h��LO�/i%�UH&~�3�� ς�=�q-�n�2�M�·��	��������	shi����\���'sn�؂F�Q���I��%���3�������q��-:[��RJ�h� ($҂��

d3Å�3-�v�s��>������c	�'���R�\[��G[Y�,������ag�}&G���݀��l� k�H��gn�����;f
���f��Q{G}��v�f���0���?�����1��Y������� P�8���G����:��!�&1��f5ډ��KqGbVD����""��I�f�m�c,|�`m��F`Ƿ
�wg١�Gi�-���{л��f�ĹB�'Ҵi�.�e�&���e~�ܸ�8j�\�m��"]����@��!0�7��b�t�c��BP����1�Ϙ)�9���������k8�5T;��=y�5��ϓ��o����d�3��
�������Zk����ᄁ��d��O����Ī@n'��r}alR��,D��)eSB�2R�z�J
%J�LV$g� aN��S&��6�����9�U��;�m�X!�����:��;1��'I4��EshɰX]h߷5��^BI|VJW')O��'~�mxfz�F��ɔP!�b��F��d܌��:@I�q;�
G����-�����G4�,0��4(ۣ�;�����ʤp�|I9?��*q���%:RޮMb�4�_MI��)Q�*F,'OI��h�R���0��ch�Uf��f���
Zv�) mt�q6i� g�p�B���yJ]3Ϣ��bK��x��Fԫ
^_�4����AjVS�\��[zd<�.�d�"`���kϱ�h40��l�xQGcI������&�t�2�Q���f�����"���G4'(�m���o\�ē6WW���c�̡�U�Ggjs.�Rh9�|�ƿ�ݹ��8$��?�+�#B&��\a�/��?�(ï+H�u��-m�gv�X�V��NHV~X�!3�Y�h�6Jb����P.N���hͺ1���Qz�9sĩc2�;�@�i� y����
�BD�%V�b���zAH�Ă�kz\K�(oSC~X*���T���P����ʠ�V��P�N{nB$�pߙ���'n�,s���$�rx��޷��.��1ɤH&�+�{�v�%I]*jwĝI$/0kߨ>��>�7gJ�'0���R��5d�HĻ��g!"��0�I"�����)�L4��Y��E-S��^Z��ڦ�3���ics+nT�>�c�>�O�Z*)��wJ�IҐՌ���̋�T�d��DS��W������ʛ-|�P���\���@�����6�93A��n&��آ0�)]�>,��u��F������7���=�Ks�T%��ѐ9��v�a��2'k��$4$��� aK.h<	"�юR���r�e)U/%l��n�6EmYI�@���QaC��.�b��Ġl��p2�m�aL�ocv��N.�܀s��ٲA��	��H*��1��-xMdb�#f#��Ϙ�s̐wۘ�[�Ou�r�SjS�
%�LEgY�d�'9=��h�m�������}�
��Gr��;5Ew'��U�
�r.���X^5�[�3CB��x
BV�����ˌ<=/�L��k�,WA[��R�b���=�X�1p�6r�&+�
x�e����U���$:�jB�1+����no��Sq��T�|r�Ί���}�i�H�S�k����?MGN��j��'hR�=)��rrP�� �S����/�^�28�=ڨ�lF%	>��>�
eQ<�Db�ɝ�j[;����z�ۡ�5���e�U)׃j��$�:ˍ�q*qUj&Q��%��s��C�')��x���)g	��d�8� :Q�O�icb0� /�C$�#EV�h��nL�4;9�U��8�����`l�6.J骗iT����׉��Ƿ�L�ʔʗ���G�"�N��^	�ۺ�
_a�����Q��D�|�a��떤������~�1��H~�wf�<Ĭ"�D�+�&L���&�ޘc�G�7��?��>�k��0�\��?���o��F�gy����)p���T�4�D��/�ȏ�@�K���}ś����i	I��5M4™��?����+������
�|�#���w�Irm2u���(��ؓOÏ���A-�Kd����,�*�#�/��O�����J�-J��da��?��?]l������/�*
�^��	̍d����G����Ǡ	��_���0������/���O�qx��7���jmb_rz>���t�:��'��f��W�7�;�����ΞD�r����1�y &\H�sN�J\�%P|�2[R/�\���5��4fzc�΋�p5���K��S����g�Me�	T�h����A�]�&���5q�C�	��
3�d;D�<G��M�w�LjtP�AA+炊�
�ѥ`oҺ�|�(^�O)'~�vh�h1@�M� ��P��.�o8_
}R0� ��E�7�x�۴��g�y���M�RI4��v��Ex��6�>�
˫�B%��&���E���r[�O�L&b��-���������Y½�ZN�W��P�̾��D+�IT0�r��^�bb��D.��fY��7�l(ʏ�BP�'�~�cצ����a�bf���Owk��»�I'�����[�
�us�'q�A�,A$(�)��׻*��	@�8)ÄyZ��
���8%�8"r��H�\�7�3��iun唸�<9�r�4��s�5HA]k�δ��bߨ�Y��g����=��f�� 
�F��jb	$��qIx����M�Q¥��V�亢 ���j��>k����5�nQQ�.������R��p��$�%�t8���gsN`�u��M��9�=u�S�Q���}cK���(�����si��W����al}K�d1�k<5p@���U
�k�Y�������F�3_��i��.n�/n�S��[uf�N��&S��8�駿���x��/}߽��X?[Z��xw�s���]3�(��AD.�6�m]���}<�-�n4�z����^����W�{���W�����wk�#7���V�������4V������y�1"_d�l��e�����C��a�?/\�ϼ�,�Lp�9�<��Kp��ix��{�&P4���=IϿ�2�h���Z	[lr�h��I�E�H]�!ӿ�w.m���cK�-��Ͽ'Pc�g�ȷpzU$&Lѹ�_wH�oRv:l�����:dTk&a�4�d#f�(�|�&<����}���+��y����e�EQ�<�2g�#��>�k���+�YsA��08��4�C<��%+��\�^@��~���piA�\��z#Ai��"ٿ�B���9�5�%���f��(�t{�����MܿC���:��|A����S�W`�\�]C��&�Ͻ4C!��}�E-4��+���&KMN�5�o�"�T(���l�I]�e+̟�L�����YB`�J$�WJVQ�t�x��e��t��lg�+����J�z_���V��k�����*F�j��m{F�Ҧ#��1����B
l˫��n�=#�L~����k3�����0Kt�@�D��u
������@�AM8)	�����)����狤�c��m蜍�pP��ؒTT�� v�����Eg؜1Ĺu�j-�Z#�j	@����ՐJn�0���oĒAnvR�B�I|�Y�ٺ�e����&�MF�?W�g��%����X�K.Ξ��
/6.~�DD���ރhGmf5�˪�Λ,,�P�08+U�[A؅2�-1	&r����+��"����\vUgV�����Ru�պR��@�� +�D��R�zp>���m��vp�'>ΥC@c���
PR�����Z	��N!\4��\�^�BZR��9��j�]�����N��<�!�����Q�A�!vv�
�[���o>7w,g���e���U�/]cZ�M���䗞�_y�2��v=ewľ��L�Tf�YK�i�]If(V�Z�~��?
_��)�
��\M�]�㠂jTN��!E�`ٲ�������s�L��Sxl��)�R���-��Mds�,��J�G_]),�>�[ Ͳ$�I�iI�X*����`!`=�m��1HQ$��b6f��Y���u�'�HK�KRŪ����O�����moz~��Ix��x�����\xA3��3v��N(F۝C���~��]��98�]�"!�����D�(�|m.�܃�Ϟ���?��³�7��?�O<�����7�b4cdRUJo�!������W��rJҟ��?'��ay��Y�d�Ys3�g�{	�M���o�P���xé�Z�Vi	YSC����8�.F+�����e�R6*�)G����'~��'����_���K�C�J�P$x�j&���q��0)�њxD�P��񡙊7��Myn��%p�5=K����7�S6�����_
����[;9\�p�/�*Z[r8s�h�4c�����qu��J���\�u��h��
���$$�=D3�f�Nh~T�8*Z�R[�J̔˩��TUXh pDR�-���B,�2HZSTw,Ѥ ���	�W�rٜÀN=,�Q�=[����lJw?ھ	�c�0W��b��k�zws�dA�����n���
�}�lUc��Hs#�e�Nl!
A�1��9�X�C����V�?��^��ƌ��f��N2sNξU��.����^Ȑ���X�]`��2\.f=��E�―k�3����X�|��e�}���(:��$g�TrS�r�
$V�?��蹁���v{���e�md�"�3J�c�,�Rg}r�8�5�#�w��mM�A���i�&s!����� ��VJEQ|ܭ}L���(�4q����|��T3֊� �O�X�\
�E#���|��T�
�0W�	[���M��y&�,d�a�a��Nǒ��3B�,)�9i�-r�F��$��>��Ӣ`Yt��4�$���cq\t'���MX[�h`-���,�ʉ�����?�؛�^��/|�-���Ga}�
��|��c�w>p�y¿��Spq���X���>���;8	��p���$|��6�ğz|��
x��g�3�_�������Xl7�������ѻ�^߾��7�W��������?�2|�#���#��_�����~�����tA?ge ��N[�Y���Kڳ%��-=r�Cl|,�8 ��@	JI=�궃\�ʖ�r��A�{8��ҶW��fc���Œt�Iof{3�PΗ�]U�HF�Dr�P<D�lA[rb���][uY��f�tfe	�z�Y���IL�uvٵ��1T��[5�Z]�`9�]������U8��T	�h1>)�'���:��,������'�Z��G�g��!a
YU4QY�z������-�q$P��;H�V�^uZ5�>⛈i�x�",�Z�(
qd�X��L<�R͢�D��FbFh�j_��R�ubB8.�M��1o"��N��cޏ���Y�E�G�=��I�r���GV&���gFU��9"N���L����da2�o}�k��3�>y�G*��9�D��
������ٴ]�m�Yj�y|����K���k��F�|���ژ�gΟ�G��}�8�n�E��~�F��U����}���0�y1�w4� ����q2�>>�����\rJy���#(�Q��L����:)����	�3��|�5�爛��c�W����+T��
M��(�>�	�P��(�3fQ�\���nBm�	�|��loM�����ʅkpy�#\��~P���}���w����Z�2�>s�*|�e�]2\P3���F�@NVb]�Xѷ�p����%�ƹ��+^����*�Sൺs�G+��[������&��Vf�s��N�T�a#Lq1�s�>k�L^X5�vB��r/�09���K����X[J{�ă�0���}����Jh>~�w��I]��=��}\G�L�7�\��&��
ю9��ĿJ��A��MW/p�r���T����$
U���S|9����'���)ɋ�\��l<�����SA��r&9JMJ(& `W:����%ޟ�UMY��5H'�$a� ��'i�����l�ƶj(H�M_,��եb"�s�J���}�I�R�"/�n>$l8~ȊP�7�4�h��>w��k|ϭ�@��'#���(�7^N�.
��f�M��PW�F���H�>�>�z��y����3��J��]�/�؅_�̋�O��'����x�U��YT��-w�!�kj��O=wv#��k��}�]<��{�?���O_�?�Gޅ��"�:	��w���|�W=t�E`�����N� �»<
˨�~�C'�O��M�/~���g.�ή����o������><��U�s��Vx잵q�$I��XY;���8��f*j (_��jɣSq����DmDx.�a8��ގm��1�f6J��N���
�4~	�ag {�#�nƈ5�����{�Z�5XU.�
B�4#�dCM�����1�R�I����Z�H,*� A�D$I�XL@Q"fR�%�
om֢S[$�&�6H�ʑ۩�'�����ŗ�O~�������C��)�Jʩ�4P����\���Ef*��'<e�1��1��G
�<P��ϓ;a����y.\��L�1.�Υ�"�8�#M���
u�w�.��5j�P�u���*M��$����UC��m<|�|�c�;��=	ʒ0lY�c���OKPv�EǑ#����k���d)�x�PL���b{�5N��2&�qy@�)�j[���oa��X<��ë��{�~���(�LT�7˓�#�܇�gJB�Pb��� @I(Q���pK�HB�T�H�,|��#w�L�ۚ�n�9O��HРD
�6�̖�6d�RJ�M"m�i�'b����VZ�}zmn�Fi�+�|�g�f�9|�9��
a�{����|���D��1��g_�U\���"c�4��&��� m�h�p�gC��6�&�d
����IƟ���^�ӓֿ�`ia~A
[��p-a=�[hm^_]�f��A�y�EX�5��kƱ���J�i�Qu�S��P�ƒ��be�p����ݝ���{��p����blA�^pǓv�IH�� �%
Ԩ_���S�+�H�&WrN��ϝ�9@�s%I
�� �̰Y��"���km�$�F�֙v{�+/G�n�u��	�'1@�����6�WP)a����s�
	���/��I;.�$��	��������z`e^���O�$í��1�2��5n�=At�%���RI�Oӽ�1M��w#@)�pSp�V�� ��b@��()��æ�ܳ��f|��⁓�\0������ۄ�CZ��q}��.�C��b��>{!�l��+{�ӯ�#���]�?��a�sK����4Qb,Z+UM��>�"�ܧ_�:��v���|�>��F�tm����߿��K�O]cz�~<we�u�;9�{�a}��Jc�XEB@X��.�2��	��REh��;�	�(�h8-M�؂n

$���c��}4w���)ϥ�K~7�;�ݮl�+oePT0ǗШsm��[���av'U�"q�P	��ã�hn8˜���U�jf�Ĺ�I�N�������p��5�G���$�j�H�J�4������Pb'�H@~�7>O�0��8�}�cx�6Mq�L;׵��x�����o��O�O��	�|�1 Uz���@��A����@�;�z�0"�YA���p��J�PЉ<i���tm�k��ȃ"�����+xT�I��Ok=qf2`��@	 �@��˭K�dō������RAJ	=��p�E��G����ᑻ�&%��_�أ�_�up����H�-]{���ה��"�eR`
��E6"���UP ĎY}�m,{�g�PM�A�WT8��
�p*@T��s��m��N}u9�����m�c���ϭ����Rc�-��^GwY][�۵Ր޼�x����+���֫:�-���:?q�
��O�x冬K�aB��$�������*�;��~Z�W1Q�!7'��E���$i�L'������feN��$ ᲏V�!j�ɝ�\{��g��7{����Z��=��٢��~lg0`@�t(�3e;��U���l_&���aѭ$	2����	��c�rma\~3��"�I�4KXξ&`���i��@�'a��=��Czov𮈀:@�D��"I�����b��P�ZE�V�����A-�*���1Ad�%��b��#�Tw���Nrʬ��jRT�k��n��H��V��H,��z�l��)N�Y���Kg��z��8�o��$�\�X�3F�7��M&R�-k'ĪP��F��*�]�'x0�`7?^φP�2���^g&�H�%up^+��9�k5��H�$!�T\����[�����uӁW�9;��k�ླhѓrMBz�����F�u/jm�Y��l�g�����7��*e.�Tp��_�Xj�������=o<���1�x}�9���?k�M�É�g�I?���[O]�?�5�`�ÿ��3l�Ur/_ۃ?���Mg��������C�~������g��ǃ'�g�)�
.��Q9+�L^ZK��u��,�ʈ
�[Z<Ɵ⩜w�7�:�$��g��D���\�K��������Y�{<�bW����߫�,&����-!�CQ�)�8�?����.��n5a��#B��bQ!Sx��׉1�(DG#�t"����/Q�ɠ�&�?�>_���9�M�V7j��L�
��y����p���Gz�K�X
��kI��ƙH
�|���+?r
�t�"���	���+�Ƴ�$c
_쮢L�e�!�>��xS�s/00�������8^7nބG�x?[[�v���p�C�"�U����-.z���?>;���M.�$����9,�������#�Eж���m�s�d	"��V����_�v������I{־W��*3��s���!����}?켃�v<��Tn�|�U8�T��N_�&}��e�y�"��!�����~�.�Ź&���g׵��H1_���q<��^���:���	��<�>�[o�J�]��q=P"��u���p�̳��by���닶�u 0bW0G�&�j�bZ����밳Ё5�ε(!�q���~��O �Pt_RL��Ұ�A�Rj�:w�h5��:�m�>����Qa����/<w�F8��ޡ]��2G��-:�JD
�Mn|_\�[�bm�NRE���[�P��ϵ���=���u�ˋ �}�M���4�H�H
�B� ۉ$6 ^4�WE��SB������@�	�����Ym�^�BW����k�h��z#NFDB���&�'�ۤ�[ǜꛊ�V%�ڪ�>Sv�VS|O����x>��d?�vL��!��	_�B�.
8�cK���h�I� n�d=�;��8�V㷪��$��	Ҥ$0���$�pM*(ҳr(�$�*Z����ow'c
w
2{PZyom���O(>1!~,u��k��|��5҆K�v�۔�a�c�(y÷����?�LG���e��_�f�{�~T��/ހ_��y�.[l�����x������/��ewe����p>��=pu�O^��y��������
~��>�s���Y�\���?
����K֧�d,s͕:`L)v��@+�S��t�bU���x�H��IA���Q	��f�P�>��z��Fgo3D�C����;(ݑ�d��Ew��Y�hAT���)UBD�j1:'��D��PmEZ�@3a�#ŗ)qL��I�B��/����
�ا����[?��+����j�i��ݠQ��w|�`m~N.�C��5 �tȕ(u�}(�rj�
���O�����|�O�_�;??��?�[�7˺���l|H���.�:m���sg"�Z,X8c�
�.#�@�ש�e��k���2l�u`{wN��`��vg�-�&)usQ��䄱J�����n�U|���W��n���|�O��}�W����Ͳ����,e¬s��Ƭ���[m����v�}U��ڟ��g���C`���6p]7agW�#xj��
��?�;�
������=�o�O��x��3��*b� ��Dks�����_����`���GO���*C�#=Z�A�⑲N��v(��D܎	�2�F��ɽ7�[SV������.��M8���sb-`�_6�"��HYB{'���Q���p�q2la裀�l�2%���#bA����k/ÍK��x0:����XX���6'�F��Yp/�|(�Yl�Pk��JŠ�VES��9��&R�@=ǫ&�ϖD���uq$�a��G��"�.I�0��5�G��[I���@-$��l}Q�CI$a�UIO*E7���z
T���,j�_�	"0%�	�]�+ ��x�F�$uns���� ��h?�]�or�c�68���&���k)��xB��$31
ޙ�HB��$�n��ǫ��=1��n�ʹ�Ae���	c��[��T�?/)��ZK�/���=fY(�+��� e5�vq�7��ן`��|�C�O���`�
�����{�]#�-R�ӗw�/��F�
=���5����g�e�ڻ�ϻ�����I�!��.�7��_eྦྷI8��O�����ؿ���?��Nm}�W~�]����3g?gg��fk�J���*V��,+�z��J.�P��t*+��4p���qk��k��e��\��펌Ir�a⁌�BA�CmF�A�u��G��&\�ނ�����1%�ѓ/��5�3���Ca!&�t�u��?󿃯x�����7x��c����)�3���\�u�"�����w�>.�+����5���j�ؗ*Y_��
���'�����ȏ���z����J:�Ԩ����֒��^{)��.9k.�.]b��㧠�kim�}�Y�r�&�=��~��X��h�8����� ���=Ӓ�J���D�p��,..��G����7��G>�;�'��;a�Q�#J��En�F�R�ne�����Q�;�/G,G~e �J����(h��x��x�3�y�������{�{]��n�
j�/����M�A:q�E5�����Za�����ss���0��?����~�~�Ï>�
�H��?��~�`]��3�K�.�+gR\![Q2-�W�v%L2Q�K��;9��`5�T� 5����XjQ�£���">	�x�PJq*�R�h�BS�+��D��\�82T@d�/��y�v�e�+j�dz+J�N՟�5g�E�yH�"k�`�`�ɘ �<�ڜ�����t��w���fYC4]vC���m�)UV�I}r�$�{0�R�J?P�L�,>V�br�t����  �r�>�d�ܻs�G�?�#i���Pa�T���b��J���v����ĥ�&���$q�%Qf���8�5`-�UW�Ċe.��ٕ�)��MX�9Pqi�q
qz��b������ |�!'�K	��*�%~��e4���.'�H�m)�A�+�u�)I��fj�U�ta~?�f�&*�Ce��
�I�}���[������yŦN)Ȭ�XEsӧ���-+�CV,w��WW���r��{�����7��~~��l�3}V��l��uH�;~p.�_�H��c�io�#�W���^��(	F�kݹ��9Կ�m�a$�,8�UNm5%�5M�u��?�P^�bL�.p�U�86:쎗]�'+]�«.�]�I�o�`�Y�����������:I��Q��P!�M�)��zMW���L2J/��0�c�̙|��aS��A�dY�^\ԕL��_��s2��Xm�Y�Ó0���!����P���#�,�G,$�
�5��R��
4��A���=�Я~~�^x��o�?���'�~>��S�A �T]�T%N�'�awB��AI��>��Q�^BE9��c"�.^�	���_��ȇ?/�)�2p]�q
���E��
�*	�����7�-UTC�.1Mh��̌Ň93
�=u�8��4�� �6����v+m˭��Q��a 앜���Y�A`�(ۭ@�a��v0���)ޓ29���*�L��˰��_�=����3=�������H?gW��jT�9���k7a���c+��r��`���/��s>�����e̠������J�ơ<g�㐌˴f%����eF�"����%�񩐰U���"X���2j��lMrJ�1���:Z0�&@F�3���۔��M,ez�qg�]q(��ў#�����g��lom�&۲���mS|E9�+supb2k�ƛ�
"ZGVn
�mA��p
�>+��!�a�k�xB�ļ1):�ܞM��2��>�1���t��f��;%֏iv"��NF�q�
yt(�'�O�9U��Q�zB�'K��D��\L��������<�������\<&��:r�bU�Lv��rR���'�3	�J5���Ѧ�c\��*�œӔ��A�+iE�5FE���&����V4���\�.)���Hl�q�F޺���$
|�s��w���2Թ�tB�c1!qC<7���D��Uq�/U�]~��gA�BD��X=��ПCrc�+�ϰ�w��4�]#�2�Z�}��98�)<G����p�)��d�x*/}���]1CibM8���L���SxN�?}���@&�"�
}��G������;*�Q���Ph��s�=��史bQ*DY�L2i��Ĥ�����ׄ���L��J�e�h��	/É
���_}�5�IJ9��!��S�9CD�|��M$8��,�f*�*ĬE�JE�Hh�M�)jמ�|
��O���G>�����+
`L>؝�����ƞD$T��ᨹ�4�\���W/�ݽml(�BN�Liq������}�.^�����x�ō|/�T�u䓜�Ld$�EFb��Q��%I	5r��?��]r��W<�1!#S+e!2�p�H�/|��_��A(ʄ�V��v�8�ܣ�y��*�ʦ���y�m�=_-;�=A�X���9?��؞o��h��7>�EXl�ᮥy���]���������׮�	\R�砊�m�z����ӗ�r����^���/^����O��USrC���愝��҅S��xc�}փ�ϴR���2d���Hฤq�E�I�#����p�]�ɵ�HxS
l;�*@�}HFhM�jC�^�]�����D��8~#�6�S�`��i��U� �#@z����7o��y�Zl�o�+�@@��͢la��7�t�.�B<��F�x"kQ�]�j8ަ�4��q��bZ���{A��S��va�?�w̵�$[��<{bB
!�D��MO@�����
@b�\�;M'><�B–\����̥�v[6	<���tGY�F�!�<�l����k��F�ĵ��=gZv����Q7�
�z��|�#v�
T��uT�V�J���gK|]��ׁKA}Q:�@'Uk?/�k�X�\Jt���{"L��f�j甖.����UH�]e��89�����
����qrM�!eR4���7����� 	N��߄Z,���"㧪�֧/Lc��Q��)T��EגՉ�,�n����&�ޟcʀ�{�B��8�Ȭ+Ū.`Ėz�U�`m4W�;�ị�є�.���wwy�6j�w��`��3�Q���fm�%O~��iI:���,츭P��y�<e)����L�
�P��RURY�suEhR;�I��"#7�5�3���y����sC�}Z�f�ӆ�!�P���	�A��_��g�S/�)��3'�oy4$I\G@��J�:smMU��g�����'�sO~�3�Q��р���|mvuCUQM��~�I
V�����ZkBM$��a����D�����s��_��g�'�����\z��Xz���2��֖�m�����p��<���ЪU��
ס�٤�o�Ă�]XI��Q-!�
����	�~ݎB(^�����C|����>�^G��a�v�A�,�s;7N�L �ڟ�{�E��Rh���q��G�}��'>
玭��*�s��\G����%��n�#hI�wmz�>4Pci�����W������A��7.�?��o�_�����Z)�J���vvر��o��'?�}�x�K���/<��󰼌��T�kHC��*t&�@
��e5�8	��� '�%M�<Y��1��٤�'�*�;�Ċ�hi竉�_��i�in�\��1׻���9%���^}	v�����;�(�@ei�Bgxcʒ��\W������J6,4f"�O	gl�n[�v��r��s���A6�o�{m�UaDy�,�X�5�D�	HpR#Ir�sjs�D��zt�j��V�-��.`\z����nyIEba)^�<4X�%a`~�h阦���a6IC����r)9@�!��� �3�F+P)--@�C�c&��%K�6T �qE 3NZBn�
�L"�H	��uv���s���1�5���FJ�m��N���J129Gcvk��\��;E��
X7J����?�TW���d�
�转&u�h<]�2�����u��x8D��+�]x�h}7b��b�����c��L�'
����"��\�M)R��V�}���Z����g2n��{gAҞ�cƷ��J���U^�+�4�C�b�r/Ia
���0���2����0�:_@�WB�zU��(�/��
��f�#ӂ�j�&����y�4ѐs���H�v��ŵ�H�c���OvEg�W�A1�3[�+�r�~(����3����1�_�I��6����	��;_���#�G?�/Q�����[�o}� 6yq����*���o��=�$��$knח���aA�[Y2�Z�!"J�Q��r�.�o��D[�qOe��
t�}�v�:,��vߙ�P1�н�qR����A��F��Z4�&~d�� �o�Ư��������G,�����*8ul]��x�(�0i��pR�R��T�՛J�L���mֺ8�u�5�*��A��`�VǎڇÒ���W����W�ٽ؝+�YG���Z
L�������*x`�	�N�+pi{ތ@���?�]��-�Q	rq�o\l���&,���Z��N��������&��/|	���V�.
�plE�J%6�����g�e:�%F�ii�ƅmX�l��2T[
�W�Uh�u��5h,���l�1%����ؒ�	�8u� 6�5��ׅ�`��V���i�Jc��<��?\�D��sm$��Xakh5�����•���\�Jr���-I��]uZ͹���9P:V���2 @]~�P4��M�;�5JN�^���0����_4���)t�Y/�sҿMNF i��}]ܷ]�i�Ch�ZY$,u–)�V�<Wc��[*��`A}�O�
K�a�YuiP��D�s��>���F�.��ݳX�ڋ@���~j�����4�
����ɀ��ı;N�@
?�3g����?U��ɀϭ5�Q���.�A�:�@�O��nr,D�z��H����/�D�F�K,��DK�F��R
<��s%c��#�6R�\�L��D緳*�{�8lw���g���έ�Q��?��Y6��w��Y�k;=�9�wy�_��ix�C'q�&�+��{�~"Z'���z��׭��p���0�=�7.���I; �9E��	S`cj���L��->�|��4�[����w��X:�̘,�kfХü��B��$u��I*ﻕ X8V���g3e$l5$JM$|ǒc>�����Bڬ~��.^�n˨ݥ&�|LA�����`uEj���k�8<p�Y���q���ۿ�����k�\�T�S[�&���c�����JNn+�r��UV1P�hʃ# �������"|��`�=x�W�׾����1����D��hˈa�k���|�7|-̣P�n6<���	��
�;�D��>�y|���k��,�~
4h��~̷lͩ�@2F!�16��D�僰�����x}���m�j�s�^�!��!s�'�_�հ�F&b&����{tPCLV3k�a��@�|�Q�Q�q+K�+G��Wj�%֦�F?�>�����L�'��E5e��{PG�iJ7�{�;/���N����S��t�y<��B��{Q�؅����"�B�?���&���o=v7GEE3m��|�ŋ�6߂o���}d�߸���6v�Pه]\Csx�7�:	x��Νz�����*�f������4�4���ع~s�����'���e�B��չ�S�&�վ�V)% �l�4gP$ֵ]�p��B�֨2��۵P�3@�T�+x�A�p�����*3�R��,�����5$f(�Z�*��H��@�J��c��_{��=`JX���(׋ػ /i��d�Dd!+V�N���M�[�쪕TAK�-Q��ޅ��?�ַ��S�"S�[N#Y��k�B��灉;�j��m/P����DB,@����R	DZ��]�bI0n�=_�����`�X$
� ��׋��h�{�P�m��7�\wر�n�o�]�?�,|����>
w��q-�?�����ͽ>|�;�=�<|�;�������Y���q��K���v>�s�;/oBo� NJ����a����c�9�d��o(��$�������F�x�t�D;�sҹ�i�_������pDg���q��̀�*�;�Ųz������;a3���I��,W�Y�׬��O�n'�B�}�A�q̦q��E�`�մɪD��ͣVk��&l_��N��ŵ2��ۚ�H��2A����y�)�m��j��㮰��R�E*�:�t� UҤ�v�Mƨ#�\���JM4[��48k�<W.Y��u!�*����n �=���؍&E��OP#k�W8��f����~S��aM� ���N78[Rȧ;K$�E���E�p����2-�(I���P��N��^� n�G�J�'�HP8"���@�\]_&�8q֎���o��n�:�^龃AF�I�uM�V`���⾠啻@t|V;�{�yG������c{�K�����(%�.��v��5ߠⰋ����G+�����O�5�5ᮕe\o#���W�}�<����}�oy6:=x���o;����%�B�㥡���9�a}��U8^����R����d����P�p�]�=���RGKPg����	�w����	���q�<�����{��!xAZ�颠���G뷅�–b�F�%��\:��Y�\�k6�������r?�:3�Վ��H�&~.���tl�5U�E[�m~��p|ZDs���#M��q��Ǧ�u�I�a-x~c]�7�����?C����"���xTxo��F8��ؤL\��;0�h��
x���;H�V��XG	�MR��S����j�E�M���B	�v���L+�|��qv�+�n�v��M�~c����A�3���y��-d[/TϏ�q�L�;軃[�IG;~�$��t�	�w�Px��O>�"���s�m����ob���7;p��E��o�O}�w��z���uo9W���q��?�^XGx���_��e.�N�L�Q�\�"-Hi.1�p��A_�!s���E3�Q�n}-��N|��6��9�-%��{m�Lx;ۓ�Y�hzX,9�h<GC>���/��s=:��z^����;c=�q�$�fi�g	K�9��J_�r��u{w�`������/z4"�'�
�fί-C�2/��1k*q?W�{�ŵ���s�3=�@�!O7�IP(�s6�rUQ�n)0�I$a2��t���@�\,[a���.CO�xX��0ҐzC�|/�(R&u���5��8qC���+�)�yc�wNi�PK��I�ф�:p�Tn�FABB ��d��Ϧ>���Hf#I�9�6���	"��Ό�S_'RW"�cR �?ے�D�{���2�SD���@>s�Q`,���Q��b�&0�ұ�XJRB�F����H�m����T�q�1eP��w�=@�=n���v� p�q(<���?�F}���KEb�L"�2@�N�Vdd���U���Qa�������"Z�~�K�|�=V����H�2���3���gO����ś���5�G�܅7U'��g9}�b�	ݛ�7�t�%�*]�ᙋ�����7\~�c�̶`�}��|W����hRV/<�ZkA��	� }���D.w�#�&!MKw.��('�_ʊ�B%��>[�3�AM#�#
�O�-q�=Z���@eͯ!�G'LsV`�V=��}i��7����Y�?���`�td�ZA2����e>1��*���	��\�t8��ʶ�b#��-��疠6�ʮڮ-���OR$�t��/A�V���nA��V�A�6�	��u��5��A{i�M#�4�����S�4m�&��n�_fj��ł��{9YTO��@�=���M�ש�����~��-�mCb{���N�(�K()�;�8c��yN����+;�Տ��?��������ݽ�4b��|�_@z�û<��O�x�N�"/>_:��e�D'�{.�+с��T�ʷ}*�´/u�]��c�ߢ5�
}p�*�),m+��DA�9��wV�mv�>�
>?.�P�tJ�Y�4^�������펌I:�6S�10[;nD;@V���-J ����s�\D������6\�zN�>
�(UE3�0 71��$�m�eX���iHl�؊;�d��;��@���WE���3��@̩;m��5�}�u��a��F\�D�1�ߒH�*�{0l�s�R��`&(v�h�lep#�!U�q�ٞrn��T+�m�%� �d��V�_T�Eϓ��aZQZ��W+����I�l�cW���f�8��63��Z��r�߭u�xB6Ӆ
���p�#�lGQ>ȱ�&K�	S�̖ڵ1X�5x�`���%V���Z�r7 �
n}�xLn7�6�d���}0�-��랄�J]j����`���}xxe	�mt`�ہ+��y<���6�Daz�
�&j�N�:���]h9Y�&�2��7���u�e��A�����=��B���;�l}��a	-!�?}��~�ݥ+W�����/���t�9�\Y/<=�\R��x��<��
3���c��L��z��Mx�DjЄ�{ch�Uv�[�`!
�_� {�8
�A�h��2���VHn���r��:�dU��@���O�_��
`K86�8�T�t�����m
��1�D�y�5�����"X�����.�E��UTҜ[]@ŚĊp��ͽ��MN�\_X�w�ڮ�Y�
E��~����Ͻ�hE\^^���U���������0�vN���׎m7D�S��d%-q8ܖ�*�N	DfưY(����ꀀ�m�$<�h�c�l����{�>�m�Ft��B_�=�4`Z/�������9PH�b��;YP�r6*@�8g�~�i��w���b�O��O��@\`������O-��kѢ��
(_ի)<��U.��
&-��|nJ�a�h<Z�/؀f�5�k �E�gX�m=����ɬNL-�{c�
`���*�s�D}*\a�&*��,�g��hX�Z+�����n�j���1Il�	l�����u
���զ�<��Ɓ�TϠ���T!�EQ��'O�1ڭ�T�6��D--�P�%R`oș}4ѣ
��X'r�����K�*��
���L5�RgCr���@R��"���NVV��0n�I.��,���źC�j$��r|=��uK�X�}�Q�ZN.�s���B����S��6'K	�Ru�K|�$'�0��]8%�P�Z�A÷S8e&z����sox�hQB'�V ����W��?>�������Q��(��3�JL�+�vS`賶�z"�GR�qo�[���
;(hP�=qB��wvX�;~���>
�[;�x�ԪG#1�}
�,
�8f�ܹs\g$\@�լH0���{Ct�&�U�X��C�VJ�Q����t�ƾ9?Wv����58��kI�ـ���%5x	�һN��\�8'9}2��Ž\�؄5��l�å��w�꙽t�-�������{[
�&p�Qݡd�|pe�x�~��~��&�Hma��v�]\�R��֢�_�/^��,����f)��Jo^���:�M�l՚pj�<�#g	�c�t��m
|
θ�d:��
��Q��R��Y���ͯ��A+�ʢ6�����~��*,MP�������No��C��<ŀc`�Gsh{o.���[_�{���R�Ti���a�l)��;���m*��vj5擕;	�ĵӰCv�#�Ѣ8'*h�__k#hZ�k7n�SO=	�'�]���1lrSH.q�n�6mI3��$=�	m�#��uZ؉��򝽯B�`L%�
���wm�j���l�6�;<S�}�5��ή#S���#����K���g��T�su\�C��������Yy��t����t�~�*�]i��y�F�}PL��M�0����Zu���LI	RhE~����F��nf!R�Z��S}0ŵY>P�By�n#!c
a��>Y�!��D���7*�(Y+�^t,Nժ���7�dm�LᠹO[�ƥ�?h;�U�������L�P���aB�?�!nO&i
Z~�h�!
E-��Sp#�0�٪B����v��t��L�'Y�2-�JVwO*�Gq8TTq,Y�R_�Z�B.P+�x�k!��eثh*��:�\�z'g�2�qƍ	�ME��)S�PT�k�p�G�BP(>�c��/�
$�!3�C�3��4�Бk���nq��R�;�?�\��J4����T1�z��ȁX���{I��#a ��/|�{�Y��?�N�Rv���'�*c@�8&[���G�ܔ}����Pkn��/��`�,	�N2�&�ڨO��͵%����O3A�~�����{}�G��!k���ڵ���l�݆ShY=ub�{�Y*
q����Ǡ�B����o�����o��|��Nh5���w��g�_��>�����|��z���
[�׽V��nk��yw.���Tw��0z��l�7ri�M��AZ��P��
B���Z>���5���E�����v�Q��vP���e�¬���ǎ�\�	�K+p�s��K����/��-�0�4�M��r�k��9Ki��q>,7��pZ��p�:8���g!��3����dp�\q�h��$�9�A�D�/��nw���xM��/ 8��X�'��U�27���s�P�Þ�RT��^���j�k�+[�k��}#m|^����>�q,(�g�?F�E$h�ֲ.���˸�7���̺;j8�Y�-6�gʅN�+�i.����y��o���ԃ��l��Ԝc��r=$z���{N�{PAP��)�EM�'<���w��r��C��s5V��pϢB���\�v�p�U֎I�i�2H��ۈ�<���8��m����O�T3贷�SBa	��OXp�%�9��p�����	�6�0��flGcFe9'���ǭO�sS��7z����+K(�?|�J���Xl�v�:3̑��I#<<I	�j����W��ާWl�<K
����3��
$O�-]�.2�H.	Y,ڥ�S͹s�(���
��U��#�EԺ�����;�ˬ�ˑ�\wI1@+�/m�9�a���-I�l�!�3>fq���	��O¾�vzȸ����f���
[0 ����Fk}�q����JB)?��3
ٍ��V°��o$��s��p�P�LLv��A�jv�aR�;�bl	����T�6hG��pA�N&6J��R�&�TAךQ������1ugɢ�y2�j��bI�u^��T�P��B�p�����!��V�&��K����>�.��	y~e;���!���m$�]�|�p�W�R���|�?�'�p��2ѹ�(�eq~q��
��@��{��{����" ���������	��������|�dž�`'�I�)�ݿ��2HYYY���o����=��$
��Ε����H�䓟�
ӟ~��O}�
M|������e����a��'>���Moz��w�?�'���u������Q^�*Et"mlnr&0:>�Ϸ���������}�C�(Rvc���X��q�"���Ec�o�ZU\�^�D֘��*l��"Mqǜ�Ū;%��� ��':�k����U��9�&�yH뎬O��?��y�b�x�Rw���։�6,P9;/oo�e\'DE��/�
?}5�6*�6�-r�Cn���k[������|�&���	��c)�TDž硵���%-b���H��'��n6��pba��x�����_����@Z;�4wiH���Qꦊ��r��ޘ2�J��!%��E�YCk�A�K�G8f}\g���0��@qAL��N�
�έ�z�k-��4*3�@i�{P�t��/C9&�3�fa�I�z@<Ț�|�$|�sO��<gח�na��!*�ϑ"�˩�NF�z(&
-\�g��Hk�疚�j�}#z���iL�R�������pcc��v�5�R匉.~�vna�xzy0�m�p���X��(��C,�=����[���S��M�m�ﴢƨ Y�^���i�A����o�l��m���Jf���w!���Y�G��+5�P�(�
_V�![�$8�l��;y�b��t�µ)|K�p�8��G�PVnX�a�>��[WG[_G���ݒt�v����;S�2�v��U�@�*A���ki�cl8
�&7��H���,w�1�pJo�Xg�I«�J��1�<�fΉXN�=��].�j�ĈCˠ�)�4��w��D��Hڢ��F5�rό���\�;yː`���{Ւ�/j� �i傹ު�f��v�q��&��/��dY/+�j�p�>rmT7<^�d�3��9U���
�h�͑$Ȝ��nn.q����*�c���>���+��?}	�E��H@�>Hh�Ո�=aiq����@���п�ك��g��������ux����ד��ރ�-���Ύ��}����~����=�a�bk�+-X[x�}m�0�� �c�$��|����S�O���g�S��4
�#��C����Zk"P���>)�^]Z����z(o���Z�g}�-o�1'k�.��ʕ�p��	�W�Ǎ@#(�>���mJ=���{c8�B�u��썍�-�d-p�2%@Н�3�_����.�ç���K�b�d�R2�=��H��pf�^
����38({���8*5�j)\�t���
�p�:�gV���w���߂�+��.�_Zϻ�kVqn
���^��?Y��*Z��V<�uI֛*��l�3/R��!Z�p�/\݀���m! �j�G*�Z���sl����J��ó=�B#�{��.�O�A,r��Ќ���L��}��{���!vv�֞r��6�v<f�Xe؜�(���P�(RPm�@�ר����~���2>��
;{�t�>'t(�Ӏ\����m#���"*PZE��X��:yd�!�%:�`��A5�����7��&m�<�#���*�a����r�B|,\�� ��za��pՔ0�g�*�8S:�z�_�oN�3�R[�uAqX>�=IAt�4�=��w�Y|V����ɛ
�λ�����]/g����蘙�m�Pԇ��g\)sK�[�逝|s�e5iv�.2���κ�pIZ��I�m%���Ʋ,4�J�T3�NJ�ǃ�)�(��'Y}^��-&;Kh9P��O%��4Ӯr�$E�`9�-��M�2|JA�#a^^xVV�m5��e.��J�
gw"�*�S�T4}���3?II�͖���\��7���fɱ��T\(��)(�C��z"�e�>W��(Px<�lRV��QXk��y�.w�h�ϲ���*M�ԏ���A�[�
}�%sT�1F�H�l�b�);.xGB�^�j���h��{YY��RI�W�@��}%Z���;�ӟ��W�5�Mx�;���y�;�u.��,"�j�ɍ�F��/��/���k�|���H��+���A�exWVט����@5��Ӄ+���a�� e�{w�ގV��W��{����sg��|�����*
����zH*Pz����o�X[[Ola��
���������g���>

����ͫ�z�]�蝐�Ɋ�$)B�RZ�%���@�����.��ά���F�+�[u��Ł*�ez�G � ���p�}�
Z2�{O"�"J؅k�k�����ZjZ���49��6�B��8�;�q��!�j!��SQO�[x��W����]8Y���?��]b�U�{��@`��j���=��\�u8�@�f��m5]\h5���C
�-��Ԩp*�.Y����ܱ��4�}�5�ВDt�7"p8�ET`���Zh�Z�� �t���p��������Սm�om��݇+s��Ӱ�����=
�U�� �1��͏J�9%�P,%e���V�ki����������,���s�Uo���9�\e�]N�b�,�j�%�7�<��Pʪ�q�8n��KȜ�y��a�q���%���'R����9���bk��e���4��T��W݆��%����Iǯ��F;xbJm߄s�R�)���-�Z�Nx8��R��O;�Oz��c3}޴u�|ݬ{�����\��K��ԯp�iP����7m�8F��1:*MauZ(�+�fy�3����	�X�L�Py�Z�(����F��Qt ϭ]��3ߺ�ݫ���~����kHgS�U�pµ��Z����UU�l<�O?��s�d����t����r�{�N���jH�'A�Y|@r��$�d�o�-C(��Z�lT�aM,Il�"@�l�6���4�"0J�4$�=��#�/m�Р�Ό5���욁���@+��

�Mp���.7N�@ɹ���I���鹨=�Y"l�,�wF3���9�2���
�U��X%a��K�ͮ��>��
qO�G/A�Vlj-gZ�]
M�j\�
���&���/�M����\���������Υ��7�L	د�_���w<���,%�AP4���c�+h-r��ZZ hq=d��ϵ[�m��M*�W��	����]�T�H�7���oy|9[�^(A���ǧ�1}oS�a�_+����e<�܍���^���]�� �$W��ZkIq�dQ��u�2P:�!Ҧ/\�@H�rr\��
�	X%ڕ���.��_�2�G�wWV8M�Rc��������ڄ�%�x�9�9�Ihdh�Y���k۰6_�fu7�@dq��"���Xa�_|yAG�J������E��E[_��͍?ψ��&�B�A	�&�(�g��!�P�Ch�!y��Gј$��Gkl�U}����T����ƌ�����l̴jc�ϼ��D�/�`
A��nA��UH7p�$��jMh(��O�S�<	�sHʸ^\��au��������K}�z�"��MC�VM�����9���y�R•�m�z!�">srE�̻[7Ț���"p��t�-��l���E`�ϻ�}�9�h��<�&��mn�����n����!x-�)�N�mwkkcc��CwA���
敤,�Ek��w�Ê��2�R3߸������<���;/�� �L�Gm�#8}ӛ���o�������N�(.�)�M�4��ف.�K4��v�*)��w��R�(K���t.�lg��V�]��߸q��өS'9���G���R��N��.��#WhJH����r�J:C�C���LT��b�����h9�,��7�cS4ׁ��V��F�;K�8�Q??=N�<��ȴ	S(a�x��E�wV��3ܒ}��p���D�.�p���Q�-ye�Q�=�Y8��G`c��J��Z�W��v>��w�v��r�/)����Ok|�=�J	�J�C����/Gf�����:I�B�%���c���L��$%A��X ��I�G��;�}�I#KI��˛K<@�,s�C_I"a.
���I
Bb��
Mܴ��_��|��
�#�1�:}�/�Ed�J���)!@D�G��uV�h�i0Y�ˣ�:Jǭ O�;aw'c��}��dIRQ��pU�ט&'0@��(�`�J�u�R–x!9��?���6ݿ\��0�K�eU�])C<gg���j	�𘆇+����;�BTN��q�Yo�z�M�E�^1����9螅'����2�+[�f�3� ֗�K�-��H}�l�Bv{��2�e�G�1ŲۙEk����C�n���xn/l���w
�Q���p�t��Ju#���=��LP�G�4j%�

����V���d�oc�IX���|�{���@P4�� �kW����%X\]���B��F��M���!�#U+	�]�j��y�H.���p��j�i�wy#�Vm+5�l�P�DKK�R��*�ձmkh���4)i\��kW���`�Qdq��*
���#W?��Ԫ	�#��d#N@��<�Q�@��Кcz�ظ���4II�w�H�-e�#N0ׯ]�q��J�6Zv/]�	/��%���{��-�.�{����2�⸮��g}i��
V=��y;k+�(� ��5(R���=�B7?����7�$��ђ����kW�Z�)���<��Z���a�s���S�s33�i�����#(��ŋ��&r%@B �̙s����0� �E'ՙ�����3� �X:��3l��D x�]�58)˩S��_|��Z�Fz��P[��oy�-��ϋ�
�ņ�y�&�&)�J�c��@����������s7�'�={���/����.�^|�%���庇��&�_����%�ϟ�� �Hn�Dûݜ����`��c@s��h1�z���u�)�F
�K��bɠ�bc|����\���t�6ri%��Gtӈ��Fb��:k>�����P�'ˢ	���y��('q�_��Q,5";(��i�6,�,�m��Xo�)�CgA�j�Ib��3[�I���|�	x���-���hK��:����M���,_(�
�pA�@�i�%u���F�Y��3�F�ի5�Q˰[��Zfd��(5
H�HW�W��߻�mD�>�ވ�3@ĭ��ߏ�ƽ�}�1�N�|����Zq׷/づ��8�(.�v�2E��ݻ]����!Z5���w;�<��YOo��r��;��n��^�h�ӄ����EPR,�PZX����W�M����iAV�j/e?`�N�B~/�l�]hR�>�l�����BY]-N�ޫˎ����P,�D�&3൏9b���s蠴�,lN�ۏ�ae�y�нD��г�˛��F}�`��𥉉�(�v�kȑIP�,,@�?�$
���qeL�b����8a��+���% ��� z�ߚ�6��p��X9��;��l�;���{��3z?`��C�;#�:����nv�7�fF���sL���Pх���`�֐�8�)��@h I¢i�ĚN%��A#a����蕭*~���$�?2���Ƨ��u����g���L���5�q��2���V��x補�a��R�6�I���i2H]?���x}io/MK����\�'9�e��,�l)�{�#ܔ#.�TB{v^֛_��fi���&�"��qm����<D�:}�
(LӅ)��"C��7���l����el�����?��q5�ε�:��eQk8r�2������	2�(Od��@f��y�'u��%.l�L��2�I%{��I\�S��z�c�E��Z��(Y�N���7Ȭ�ךR��O�KX�����!G�e{��F����Ɛ9���i�|�LIu�m��̅�6�
f�2exY2�g�H�����9��
��7��l�yS&y�	��9�.
�����p�����N,���Ã<�k��:��r���y}7Ţe@����{?r䨽� Z�^s�cǎE���c�E߹amC��$���;��`�~�+����N��ߎvbn�9q@dz��X��G�Ờ�A�u�q�ʄ5ʶ"OP���P�au��#������e����*d�%t����պ���D�•+$�á�t`�"�g=�"�28�W`��� #�n��3�bs&�0���Z�3��E�m�����yY]����Ȓ��cf��^3��d!5��oO��0y�8t�9�A��X�^@�Ic���s���n���w�Q��O��@y{���a/��(S��[73g�, o�A\w��4��9~�I��k#.xa��m��͹4I�O��/�RRT�L��HLDȀW���x�E�&�A"z�f/��[VF��ZU�ɩ˾�lI��I�矜O\Ŀ=a�*h�=Zs$J��&��иťܤ�8��a�9�;pb�6��{�1b<:�\�������9!#gM"�
޷,n��~`�"�.�)DCk�5n|ڝ5I�+��E��n�uG��(�24'ǜk��-�a��ʍ�������o��3O���sf��80$Řu^'��4p
��H�anm�~q�P"n<�MH�K�5��v;H��&�2�����jଡ଼��Ⰲ�if�:�NE2�6\^2��yǧ�	��O��nB��NY"2�u��MJ��BW`��v�����=Β�(i��_��J����qd�H9��e��I2@sT�$�'��5�L����*�P�`�
t�u\��F���Hflu�����V�`!�L6���rhtiXq������g�J�{`2�0�C��u<$Se���#�L����7�ꫯ`�l�o�L=���(�q�������SG�~Xc{Ce�8�J�(I�~��&.r�Yā�)��:��Jd�4�2�~�9���i�A׊��d�'PJ�}�m�VGws��6��Q+oo[�5��ɗ�mAvB7 n�Кo$�`��BT��W҆AG�{@�n��u��l�1��gHw��u玺`�G�?���1��m�@/��q\9v�n|Ϸ�s���&rc��DvmGT.24�(P!�2���e��N����>;����;4\�^���Cev���*���И+]�29"F
��qbR8�0��=l�6k]�#w�������L����F��Lx�?�����P�#�&���$ickWp�ͯ��˗�Aν��Yld|~y�uSXK�@V�eܮ�yK��ܢ>y�WE��qϙgp��)\��X�9��q�k��ɕ�nx���c���r3Pt�
�Hw��߷�,�S��`@*Y�c�2HM
X�9�w�
X7����ͤ��:4��eA�ŦM]�Re������a ՁNK*�3��h�y�Tg�C��c�Q\���a�Wmޠ�^ۍ�(��I&wJ]�Lֶ~�,�0Hn;M
�0�nⅬ�p�˂���5%�IAd:-@�a
�FȘ�r.S@�7��eL�oqM1 �^G䘭�dd���V�A��8�SD
��v�{�3���k��s�Z�B�f��F@e�uofa�"ߢ�q�{�f�X*w���n�� ��Q�$�|#��])M 
�c�X��CX�EZW˙,�<���o���bk��_��K��|��Ϭ��s%�&V�ι#��d!�b�G�+1�4H4��FSۑ�<Y8�z]�~�*��M�D	�EQ�C���� ��J2�B>�	#&�2�\mb�
����:=d3�����G�f<zb+�
�P��g�]�'��⅗PL�1I�W�L։�[d�.�b,��V�G��CMR��d��0��6�U�=�M�4�zO��v�<J�ƒ��T��5X���&V�/)�	
p�q�Ė�w���f���f�N@��C�dà	7�V�H�$�_&c\�k��HU�:��$���)�1p{&��睙�TW�٤�?q��B(�8�(��g�!j�>�o��=E_`�K��Mq7����N�Z΍�e�:ʆ�3F^8{~0d��ȳQ1}#<�ݵ����#���֝[o�.n�tu����V��У�'�{�$ƒx�3�賮���+j���:�^�
�Av�6H�*�19�plE1:����Y@̉+�wc��S�D�!�/�}10�k
p�h3b��N�R�3
�R�-y�����x'���/M!7��K��P�`u����-o$�jX�x���Q����G��>d�)�N�Ai�UL.��S�����O=��Œ�žtIl"ߠ�q���~wr����R�n�"sSE��e�xaU|)�2�7^�Qw4�
�fkIL�f�#��U$�
�L$�؞�=ϗzK�d3�a��d
�:�H�%A�)�0��z(�X�5Q<{?������&��`��Y�b	s#iu�Std
�}S�շ�0�����$�>k?�-�f���cѓ@]�LTB���Ƶ�&�]�95��7H���\�X^L
��V�o����<�=&��F���^Ҹ��7z�P��o�o���[�m���75ؔ��]\MV�8�6ׇԛ��|��f^o��lJ�Z��iZ��
����k5i���DZ�q���3�ʶ�'�ghu���8���ju[����Ƭ 3i�Du���g<�ܬc��%����*'[�6�Yr����(s�R��b��Qô��˭*�	�$��:�S���+T%�R`�����0ʓ�R�vv�8�M.�ۗ��X�°sߦ��څϛ̡���v�F�������m�3Y�x�n�����С<��S"�z�AHF#	�WC�o�F�ٴM�!XWX�6����l�;���~	�(J��pͤd��LOp]�젶��3�.�ȱcX��SW�-�D��q�J�,�>r�$S��}��U��U�RI�N�w[A}��ŷ8�~dQ5ݶ�"gS��ј���3N�v�a�i�zA�3�>� �Fmt������[�	p'5�UR�?0�ܜ��m�y'fh�^G�gߺqJf_I����ӇA���� 6�c�v�mNt
'�ًCP�R��0S8&cYw���k��
�˜���5��3���`��4�A?�{f�x��H�Ń�2ғIlS���6*;=���=Op�ϐ�&�v��ה�ym���Ҵۼ��
����d�%�f����
���X��*�>���ކfa
�D&����m8qí�F{m=ם��Ș���4�L�~�-mOe+�ɵ19�_�oec�%r�Z�R�D�$�ed6s���$��TÖq1'ul��}r��߳)�QJbߏ��q� (O��AyjV�����Q!離�r�~Ϝó5��?]�e���NkϺ����7�$���!H@T�4k`�b�^��$�]�v��v��B}Ӥڳ��7IL�r�$��2Snd�F��5�H�H�ܣ�
�����6�_�=����^	7o��x�l�qF���[|�co[�s�;�h&2��v�I5�|�Fks��Q�-��J��Y2D��y��#ǹ��C�׍�}2��׫�>���R!OC��9�Vkj-�lJ%���9(c�G�QޑY��_�Eq��yVXrT�%���Vs�q�<tp9��V;���<��qYa�G�e��d�ؐn�u�d_\,Lf1QJ��J
siu-�+'5i��FU3���4�YI�h��&��M�	&(�h��4='G��8S@��ӣ|�88#A���$;^�}.�����.�E��u��KJ���M�/Ť�6�K�=-�/E�%�P*d�#k�H�5ŏO{�ۜ��o�&��L�.f��39d�:�#�/a��Q����?�x���Ge,LM�l׾k��.�5���`Zs�
X3��Y�w#�]���;� ������{�~熛����vgσF!�87�����[�{u1[��z��f�o71W [.�M�>�O�b-S��!\�34��(Zd�ә�z�H�b)G�c��ٵJ��?D
�0"o�]=���Jg�et��/��8�
��zcخ�p���u%l��D���8�����ē��[.:~��5L%�8H��]G^�.�p��o�[Sf(C9��N/'<�i|�r( s^Zn�
2�K�� ����>�%!٤�AG	��y��Rg��.=�C�8{���4um1p�w�!�����5��w$H
�.W����^V��E�\S(���3��e�H��aPBas%m�c�����O�&>ɴf�q�A�����Y�I}$[�#���
������)��y�j��n�/
�B�@���,�I��K&�F@���ؔ���Y� 7���s�E����>�H�֑���$��;��E��I2�f!K��yZs*��
�R"��F���ة��B��jw�>��PH��mm좏�Yq��s�����5������q�c�E�����I��^�|��Z��ݺr%���T�\O3d csb��)*�S����2��π�dv����%]����n��F��Džq��W��i�y$�U46�p��4	@��';ʬ�{��v�ɹ��e�@@$n`��eH.�j#�%�U���7���<������1�|��%Pmt�ސ��.ehU��d�ꘛ�c{��Z}Gc"��֜��hJ���
�D��ۤ��gidJ�P,Sf':(%�X�5���F��V3b�d�Jڢ��JEe��xa�;8���k'�D/����Va��|΍�-�m;���u�k��zMG��R�wke[�S|��B�p�!�7�}�et�/c~�0��*���ӧQ����	I>��7�s�|G-��IܞZ��P�c]e`}��{p)�ֈ�0�ڳ9�{�!�<&1������`�㌞��Vy������[�_���ҹ��[G�ل�m�!�_}�f�3�Y�SQ�Q�I�*:I�2M
Y�6�(L�5��C�$/"�_���B����v��$=C�t�Pu� 6&Ա�ұ �k�1��xbm	���M�-�[9/�<�ѩ�r���8�lQ��x�����Q'a�3�G}����Hz-<���	�K���\���-�]+�XW(o~0W³��K.fy�{����kd��Y{�pr��3{˓h;��E0�-��������B�3�y �i-F���5�5��A	�p��_㎖PW<Q��9w�Y�A0��{n&�2.t��e�.���Db�����<2Ob�?"(��tI�fŀC����i:9��8V���Jr�߬��G�ȉ�I,m�i6��O8��8n�`Y	*�$;Jqg�f�d��d�`g���7N|O|D�#�I_���������&�d`3��n��>�xu� b�?�b��Jh����M�w���]~��o���ڤ���I ozY��wT����3r����爙���}
�N�\���#�"�*��{5cz���s�����o��Ž��Ŭ�v����^q�ܑ�w�r�&�H���!G`utvǦ�(���t<�8�&f�193�5s��=:u�qLp�K��Z+u��$�IH �E��J�ϜBe��XEJm���T [�����Tz�I2�g˰�2?)^��9*`��u���u;hz��ʐ"�?Ož�gk6\�J͚��n�@4?�B�F�P�f�f����+�^&�-C����kd�:�'��`"�V �Ϲ�Zx�`R�.	�& ��;�d��GI�P��,����4�`�zH:饥%drY}7�lF]���&d�0wZS����M\�oH$7+5��BK
@�wzՋd��G�(o}��L��Y��� �z����6�[[|OEvľZi��fgp��1,���vEc`́}6 �-�F���ǠѮ�$\���v�5~�@�hH���g����(ے^|fzZc��%%��WInag�b#r�f�|c�!�}�
�wsۨ��̕U�%�7�ƉƗ�-��aF9�]�Hp'�_yՇ�X�H���`;��}�K���ƀ&[\5�k�3p4�\EW��l�����5��g�]�5	�n�cs�2r_��^�5}<��"9������#���5�א�W���G׎S�q}����8L��`Ô��D ��VO\��d�(KϹ=|�Ʀ�grH�|��n]�0jR����$�(���tp��m�N�`/r�<�se�f�/a.]F���:��h�٫�ȵ�f�����6�;.qí���r��5a�o��aƳ0,��ׄ!�ab�|c}k����\��'��қ�⨈���N�?�xI}Y\w�7Ѣ5�07���2L	����4j[��7	�_[�����n	�U�1���R�%E6�,� ��,�R�x����jf$I�`@�1`K���Mp��ZH$�0a
���<A�4�,�&�|��(��4D.O���I$�%�~�b�B7<qeƍ�񇘪*A�4�9rKmH�Z�y��X<��s�1�7�`�Ɲ,�z)v=�D`�^2A�p
�`�о#�ƌ���Ѕ�n�lm� ��A���Ӎ2D�g>��	�ol��	v�i��G�����h�nW�����I�V���Ŕ31*p�H�{�3�(�pt~��&�i��40�����$�N`�M�1E[���s�WV5�K]4�X���I@��3�d9��Meܽx��}�+op?�'�S��@���;�U\s��-���G��iMaT$K�2q�kP�eȖd�E��)d}�Il�- ڬU�Ί:���
͚�ɧQ��ck�n -К��Lϟ]A���<-�I�E�Q��LYS��(ov����Y��&�cuEj؁�(G ��j�o��lԘT~���~O��
z��o3z
���t]h�E�NĦ�M�RB�:��̐Qk �`l��Y4��׏J��)�%={?���tl��E]�j�FK��W��}ɶ͗�85_P�m�XF{���w6P������۪P8C`'RX�B4�Z���ai��_\��I�8f�>����8�s��$	����#��7^W���ܬ@�(��Z�fx��q�]wA�ܽ����}K��kEp;����^�}h�� �1��F>X�Qh 6ͱ?�}1黇V��ɞ�|5��z���v�S���7�v�����R:����Y�K�S?�4z�Kx_�Ón�M�BV��5���AN�����=�r�����t�t��F�C��\�\���\%@j�B��;��„z��U��7h��P���i�M,
�{M��\D���� �
�
W{me�W{fy���%��|}#�bs�K�������Pp�	��i��N��>a��`�Bnt
�h{Q*ik)�59�gr���;���K��(L���EL�++)���e��*��~��Wq��A���XA�Y�r>�H����ح^Ǐ�ٰL�"z�8lZ��1�3W,h%{��(K�g����D��|[�I�GM�t��Jg
��i�L
qu�x��KG$]X�E��7���?j\�X�|���J�~���2K���&s�y&Qb�6�J�;I�A)�7T�m?-�{�,��T����9v��d\�7.��:����\3��(�tD�[0BE%|�\�&�Վd����!�I�cAGh%�ĞiL�N񂜎�o����d�	��L��2K�9 ���3�`¦�'�����i$%�fN�p.�'z��v���,�@b��˹���a���+�J�]M-.A��ꡓMDL���ő�6,��2A���T�>�@�A���H�Le|g�
7q1���ȜX�����
��D�p��AlQ��>zdF�5M����ʐ�����Y=���"5	�4��$fC�@m��z�Ӎ�*��q�嵅�P!n5�@��9#;��53HhݷlF��>e���+�unoS|�><�z�M9��~����!�"�r��(��l�lM�-��Wɤ%�=w#�wx��׃����Nbug]Y��g�d!�s޴�gϜ�~����&����D΄��%�C�
����$�5��y��<&'Jd�z�m
��.��k[�(s823�1�`���LV�E�7��O�iZ�<���"������6pf��\�����039���ԶJ����b��n3���=��;qˍ;Px��3"��s����}Ɗ�!h�{��~���_ߓ1�FKaW�^�Y׉rIARϾKa�:TV�@ld�2��$�Ț��v+�^�%���������,��x	b�t�0�l�`��u��1��{7f�-B7c�3@0�N��c�r74bF��`x���G-�N�t�qs���2޻������/K#�t�%�����a���D
�����$���'�~��B��>ʌ4��A�^!��?�[��O�>���p�x��}d���N�
��:מ�;
���L��*�y���|���ª��f:	\v�x���<C�u�Uã<�I��S�7о��o���n�᭴Ѹ�;�ݑ)���œ!H����%g\|Dd9�G��?*Pj�DE����"(V�����W�A����\H����+�p��]����\�d������7e-��}��Z9�0C�c꧘$H�Q6� z~�51O�#��Ņְ��|�����d
�j�t&:gW�DY�1e�1��Tɖ��u�
W��ܓ��'p�ަ��oi����6�4���W��J@:�"K�%KJ9��Q-�:�U�$���܁B]F�lm�0�izj��Ġ��M[��|�?�'\�tI��[;~�vU\	��iQ�o�[����&�[��*N&qH��i�E����T�h3��f~T�0n����x�4��?��*|�ק�_��/�=znF-��
��;��ܣ{�Cr?<6pv%���tGs�z���֔�f{m�����s0��+nI���)z�3��Q<r�]��K�6Z6����y3ܣ4MCo��
z��\�x	i*�9J�Y	�
��ŵ�M,��+�����?���+܎��������I��1,�ŔzH���Ҝ\D?��)e�)U�)G��xq~K~髴����{�I���)�EƬ�o����1���mlP�.�}�g~[�b��I�
{��$�'ӓ=�6��}�~ZS�
��C�d����6�{h����}�|���j����Q&
(�6�0g�D�(���V�rE辩���秋�ި�qr5��t!�cS�a������-WQJ
�C���}��4O�=p�>]\�¥�k��3z�|��ed��]�6G���|����)��Qy�,ȼ������:*������$�|7==������0�kͦf$l����LM�u�B�����B���|�pY�"{��5�+KH����REvH���M^�&��-ʈN^T����BcՐ>���pF��T7��x�Z�G@��2�2�u\Z�J�|*�D�:��x�A.EP{C��h�5�3h�op�s�:�mj��
u�
w78�/_�qh�	ܑs�q<��'g��X���U)�;r��`�\������u�.>�w�y	mzx,�Cy.�����P��28���?����:�RSSdyN�ͭsql}����ďY<���E�^�:��DG�ʝ�4T����]��z/�KsTJ�NK<�3\C�M��j� �d��2��D���쿳���q�X7�ө>�ch�2(S3��%��<��w�ݱ)����l5Pis��;g0\'�؇�;i
�����F�R�[<��`!�҄ݐ�H	@K�0,�U��<�ܖ���EHh,�����B&ͥ֩��ˢg�LI�d���UPd��ե��:&�^"��ny&������
k@�UY�8)�7SdjJt*��gk1��R=-iyWז���3꾰��N�vU�����R�[�U
%���B1���,.p�:�����3�"q��1¬���&�+d!�՜��0ose�.Een��/�~�X5�Ni�c�`�����p疮P�i�+�0��t��Y%*��~�7�Ƚa2WR��Z�bw����dh%
l��U��g�_B'YBF��b�_�s��	@tG�5t�t�	L�D7|�0��‹�5K�p�X_qejȮn��]$}�ţ��b�".(�Iq%�A���$�]q��-T��(����
Ci�0陯]��L���d�d�F�t��j�9�}׫�]M�A�p��w-��	8R�L�"�#i���Xrcw{���A�|��^�� #�9���_�,2���e��,�;�ʲDB]�$��B0�eIQ�$���OqnQA�D+�X�v4�d�����zU���CX��B���Y�霃�Z<Z˼o�üU5$tP�9*_#KR�BݳL_�rp�2��H�m����xd��6�*<p~*I0�|i�������|f���z[8D�H�#34)�i�jpprd�������H�p>I쏤R8HI��{����sS��A�����O}J帰�X��v	�r���[4�k���LV�1�H9����Z�D��N���R�Zb8�/��|��kx�Qi��y��LP��& ��Ȧ���aVY��mM9.϶A0�E�|a��K����)���ح�;���ےHvG�'��q:P�ѫ��33�	��pxg�FC �f1�^�+��74�^;b���[��wM�w���뱶H'풘d`@�o�#����(�x�F�/;:a0�S8{.�r|"vn��8�m��X�ǎ��]\\ޮ�����>���� �G���O��ZW���x���ׂ:A�d�*�7���Ɣ��Y�og��'�E��O��>V)��ޑ��*��oШ���s�]�!��5�2~�]ś<߻����:�ۼJ��<��	���3?O�y��Q:�v5���{Me���^�(����@bL��(�.J�u��4�ɿ���n�Q�4�.�����Sͼ �z�u!L���{���&2�����u�R�k�PR����\H\���c��W+,�9�X�~�bg�xC�e��&�	F��%D)�E�Е�ix}*ƚ�."UL�M����/0�'@���K����Ji�rّk��d�Z�T(�}�y���dͮc{gǸ���M)T�G�}/\D
��ћ��Ň|����ǎ�������IM�ij"w;71������r�g�
@�<��P�l�F�PG(4n������_���N�� ��dr���R��|��<���x���Q�ʘ+�u�	���`]�&3�S�"d!�@Fwl��ܤ��7��gN�E0�qB�4��5��	il5"�<(�K�ei�'e�q ]+��9~��f\2�&�xÀY۟�Ę��<����Z:Oƿ<iN
�J�F}.��"��RyMk`w��y+cj���ݨ�v��%9�;�,��>�'sX���x=*����U�X�b-/���$O�) ���PJsS�I�"�\$�Q���1��N�ըo�d�v�NƦ��XV۞��iwe���p��چʍ���c�sgϽ�mB��D��*��hu�{�@��5рz/JbMN�2EG抨yHK�t���C�W�tz*C�
���LZ�������!�'�y	�Ff����0�Y4�IDd"�������;�ھ�
����	�L�/�2Z��ƿ��#�k��J�%����n�2O�$q��x$%��y��NZb�2Q���$��pn�L�P����F�H�$�Q�lB���4Vֶ0?;��K4"�Laq~�/^%��{�xw>��4�:pϾz/��@�Uh��z�~��
��n!9���6�}��ZV��+�W�{���8��O�z����ş����aE�&'vy��
��m�^h�㸃(�\|{��C�4������H	bW�m�mZ���_�sr��Q-\�c�8#��װ��\�BP��}��z[א}�kxץ3�ɶ��s�����4��W)s���)|*�3^
�Eq�	�Q�I��	N>N��L��
�4\����̦p��cn�O��h����r� �9I��u�3n�����!ʰg�u���Y����G���
�?{g���l֦�����[8�K�
DG|�F�??9�����g]�r����$�ۍho~lV�xR�OT_'�lv;�!γ�lI~�p�(�\�7�b$+��pm= �1����_��5 L�|X ��@�Vߦ�%I���A�h�5	�Pw4\��KhF>_��d��R
�虍�`�<'���!�RI� ��CEK
ߊ�K��R�.���U�ї�—��
.\�"��N&�0�&a���7����m�!�+�|_�l�V�ƅ�g��W����)<�=x׻��o�s3Z�)��N�{Zn�-p*���W����
F7BC�C���	�J����*-˗W�)�<Z�E)�+ۧL�f�����Rw)�)
+���qQ���^�:��M��BZ��9v����&���n�5{`�=���\�f$U�]Ͼ���1�;۫fn����DF��s�
�)�X���!QN����v)��wh,�sѱ��9OK\�@��w��I�K�!�D�A�O�l\����n�D:�
{G����h"����:�&�,uu^_ޤ�.����8���S��/5�7��fД-)chI{�m��YZ��".�%��yǞxY�w���+��(���g�,��T�/W�)q�}� [���ӸNKeo��&�L�ʭ�M�-ݔ��Z.-�D��ܿI��Y���B	�B��5W�_��т�r�2�NN��у��O��r�Jy�ei�,^;���Q����d�ӥ4e1甸�q[�M�đZ^{Z�(p̜)��4y��03+ /�NE^�r6�O:V�[E�-��Z$Vݰ5=�e$��Y�)����Iوf���J\�\�$�w��\%������@1��y_,dQ����+װ�����>���0'�L�g._�,�#u
���s8yY�J[���\V�#���
ή���fpL�=z7��>��!���^��;��^KEto��}v��f��Ȫ>zߛm`���V'�a��r,���B*�0�£�Fǖ�Jg����7"�u�ߡ˾]��a�<Xw�jD�C�3���^}
'��|��ē��ҘS^��z�o5q���t&����r���T)/����%UvlQg{��X����d�^�հ�x���A����
\�u�#;�''&�5�����N�Gg�&]���z��s�8�S��9���Z �� �������Dߟ���6j��ui�̗1IV�Q02�Ҩ^�}w�=�(c4�c��v�Ѹ��c�#�ip�H�4��I6�ۊ��K̎q-��#n2byԽŞWX&�����8uC�K��Z��B��zL�����5l4%���Сp��55���"������ٞ�R�sj���Y��l�oUw5I��C�75
�HԚ��%|�w~O?�4�,�1�X�g�w+8�̖a��(k��*؄�>X`d�ɠ�t`�od{�Q�%����򗿄��x�{ލ���ݘ��_R
'�:����wr���E�됦N',P�53:6�nMڥ��mh���-q9��rt��%L&4�^�?4u�;�$��/��K�=7�.�2f}��I�~�l�I"n�<��v_�9��\C�q��vƞ9�+��у�gM�'�[5d�Me�%8�Pػ�����VI`}���	`\D
`c��
JvIy�be萡��MlԩpO��2��&���ГqϹ,�u�!})�2�����٤f]���H"��믡8;�*�N�ͱ�U��_��b��I|�m���{�#{��K�~�6Jfx�#�Z����Y1��:eJAXx>@��WI�.%
w[c�!�q9�X,�$�&�L)�[����q��^Ż�y2A��666+<���*�l<�c��g��Mc�}�]��J��	�L'sd�x9�ݮ�gꑍ�wi�����h�v\\��Je�4j4�sV�E���hn��'%z�6�P	s�3�"�t[4tl`����I��W*M��h*���
N�G���Vױ�x���MvI�7��ԥ2U� ��b���}���>��o`m���|��kL!�h3��w�5�����p��b��N4rc#_;C�:��?z3ApʙE5��[o�-V��Ҭ�e�������
=��b�cq7��6�E�AL���9<�m�c��G:#%Dl�_��k��E;��}p����q�~�Q��;i<P(`��$��Z�ܕ%��Na�s6M��nWx�$V�H�e��4��P����n���R���d���,X�z�����R��g�$�yy�'Ҹ�}�u:(P���^h��t��������\���~?��e>�S4�}�U�kj���S�v�ZY�_*Ρ�5����L��B���JU���{��~�����nw�6��at[����]��.�'

c*
�#�H�		�q�^�Yܵ��-�:��@]�|�)���o����?�m�&
�(2n,�� ]�l?SInGR����u2�c
S&�$�b�$�p�
'�0���a��w�X'UplJm��K�'��	[GE�ۜ��R��w��W��sϫҞt�Y3��$�W��P�~„���J&��#��@��,��-�����k���\�pE3~�_'Xz~�c?�S'O���j���$x=Ɏ���zבCT���mnUU��S!�GX�2_�.^�L�cBS�;��٬1�H������y�2�� �K��
��|�Ry[RKP�f6t��䘅'\�-vC��.�6��tOw�.i�Y�"ǁ��Z��#gXr0�B1�C+��š'cڣe�A�=13?��
Y(a�2�4nW3�}��� �2��q���J2a�9�?uon�S�s�܏�bNAT��M  ��MV.q��Z2��;�YM�b��4���������W�^Ž3��d�b��W/_��jC�w|���߇�T�;b0*�q�›�Q�0�6����N�$fS���e3�t5y��c�I,�U��*��̐="��6���#��m�X�.�Kx��y�	2��3��Ѡ��U	��@�g�r-���%���B�x��4�:����pF�Y�kr�E�-�~���K����Z@���	Ô��@
�
[799I֪�E]dե�e�LMN��_������m퓙rA�K�k��D]�v]���K(����������m�X�K������z/�:�6
U��L��$~�c?���&goW)Y��9h�]�gH��
\�-G��pv=ty+_�cx�^G�Z��"�L�����PI^�w���[�J��8��;�>�.O��XVR��$2��V�MfN�&�2F��d�B��ǘ�d� �u�}��% p���p��_ğة�}�U��i�i���6�֚��2s�W��w�=�#��Ҋs��z��Ļ�s\�8FP���AF��D��N�}���
�Y�r���Z����{]|���l��ƹ�&���7�D"�z*[���y�J_N�pʗ�<>�,c3�+��κ8����/��j\#km�4ek?P����w4�+�($n��d��;�Nҭ�7��a��9&lC�Gm�a�W�P��\�� �u%P8d����hp.�M������1�Q=�$L��8H,������Ɔ"�f�KY�N�\[�]H�x��$��H�Nto���%�����H�nO�A�@���]�D���M|�3�V�d^��&���)h�ԷI�"�[OR����,����1L�a��~����įަ4��n�(�ڐ���_�p����7��O�ď�?�C���}V�oU#�;mR�N��<�wB+�jG�L��UU�r���*�����{��U,̮���A�R�	�#L,+�(hL�Z�h���v�5��������6DF��
ć�KA<�)��<�v���Qk�^n%n|��^����O�d"ht1���h�0 8~��+'��N�o텍�KZB@R���ЦS�O,�<I)��<��!��I�(�_�]A2>J���=��ŋ�p��M1��9tmJ\�kV��oS���}[�U���l6��Y�t���\�%ewys�Ñ�E�4Ȝq]+�N��=�\~���a?�� �92�N��c�\X���nKQ&��2��I��N~T��ެc�fP�NOݐ��Oo��!�9�?�,��+k9�m\��@��r�۩�@��AIҸ7h�
J�&.�)'����m5�R ���w8��R��5}����fH���cB�(I��6�Q�^Wݨu�.��]�0[.�{�֤쬳�����Tٴa����B��gܠ�-���5�õ�5�o^����ab��qe;���bx�QQ�8W��U�e037�����o�|2�б�,��$�Z���x�X;{_�LZw�7�qd�t�����r�5���G�lE�|�<��[ڏ.���91����@�q81��=���#e0�"]o�.����|��9���7�p{,N,H� )�"'p*P4�|�ǻ�.�4�/S��\N�����)+��H��U�~���e�y�C��
��i���e�6e�eʗz���,�M��O7h4��:Ix�F�3����w�'K�X'Ⱥ����/� ���8O�ɣYK��g���d�_htq���#�$j��_Nv�

�o��G��G�k���ԁ2�B��	^�sd�~ys
��Q���+@�IS��������\�:nm��hw�t3�4�4��%8�����S�V���B����eq�
�����Ɉg�R����*j���\��],PȻ���d�s�k����꧀�-��k���A��;Lf).;�I��x0e�U.��I��cb�<
��T�
�ZTT��+���¯����׮�!G��O���u)��jm�?�6"@HܖD��抦���\fY�����ҷ���N����Q0Lr�GA�il�����a=�s�/�_���`�o�?�;������"e~`J�>��dž�G��L9:�&�Zܩ��ZT S��ۢ��IK��`7^Bc>�|��W.`jb��t)&<�x�J��f�X�.{v�w�J&FR���
�6��W�	��R�{b�G� �kghA�L5\�&�H�Z�`S��xg`�U0��ȸ[��5)�e��N�l9�O]&��Ż���N�Oy�/��<,��Z�+5��T�Mͧ z׹}w�H���a�Ň�/@L��;���co�&��b^�z�B�$!W:���|�Q���^`⍤��L�r��S�m��KR����s�]\���"����C�;e��O������hq� f��;�<*�(�V�B%�"
)W�Ik�"�3[L(�P���>�ksi.ʇg
cH�*3d�&��W�9O������Y"Z,/�!��F����c�AψL#�$5}z�!�'�lx�=ZQs�y(�9��$vZUZA�\$��Je`tm�,�8C�O�R��2��/V�:��r|���m&�*�R���sK�I�Pk�4mw2�j�Tj
lg{%����Zo�\9HY,��$ν�:��J�8O�]����17=eR�7�
��&eHF3�I<���Nw;��0&���s�
�����b�*�2?1������m�
���]{/��}��w��;EXf�8�!7������
��Mލ�����~tF�c��q�vL�@����G���1;�׏'���w���"~�~��ĵ7q����G�j6Gd�[eخc�r� {���5��o�6)eX�Z�U�n�FzI'3Ϳ.P��A�]NJ=t��O���oPf�4AɥF��F���~`\�iP}��e�7����iH�pL�9L�{8Ϯߦ�o�3����.�q��^��$^�/���N�\���fh��t
�]��}�R���,�Pg|I�@�jg�[�C�F�;^	�3��_Lv?�w{�&a��F��g\z�ap��5Q�yM��T��9ߜA6�0������Oºy�H�X{��Ӣ�+�pd~%4v �B��.*a�Z�%�l��
;"����b�H�#��	&�j�Yk�Ibu�
�ep��2~��*���4u�	��bnk3��=1�E?m��Q	��#Q�%y���O�1����O�!�I�:�Nq{��ʒ�g@��M�G2�imN8#���C�V�X`��g{kO=�5<���x���8�F~߼�3�Ew��ؘ��g+���Q�l6h9.k@|��/K�HUw0���.A���5��k6h]>���}�
Xa�*��&bʇl��x���~��̿r�kg�h4���5ʱC�_�B�v
�#ǐ>y/z���4���A@�g��4���ʲ?��B���e�d�>q�Ʌ@iС��[�[xC{�)n%���+r�~6���I�'w�hK�92��b�7�pneTܼ�-��ޅ!����$���������w߅?|�
d9
�f��g�jHȤL�ja3���U@IƤ�w�E��G�B^j��"+�<�>�,P���~��t���Բ��N:��G��G�v� ��&���C��X�|:�̷�US8���YM~O�$�)��I!�t�^��=�•�W��XE�
�,!��>=㣘��1��1Y*k���l�L��$�0�K��~�I�$�6e�4'�Z��]J�<�&Ø̧�Re�������v���Rމ[l��WF)M#Q����tIO k���[b_�"���S��qebDr\S�N�ɵh����8s�*�_׼+Oe~�{��\O..���G�*+���E��]��7�Be0TQ�˱3��`��]gH9CG��P�u�9B�ע(g�Ȃ]w9�ע2J#��p3�p�X�7������^��^�c<l�{(
b�F�îa�l�8~LAb�q��o;�t��0a�`|�8r@�lj��8�0��0�;�1����ݫ�x���#dz/q����Wv��v��;�e|�Ӡ���,���we
�*�G��~����E��$AOW�?�k�G��LCT��Th0z���Ӹw���qFZ^��\���s���B�Y�ڹv�$�f�����:ל�i�� וG�	<��|��W��R��)��&Y{��Y�.�Y:@u�'�	|™d�T�B���05��lm��~jR�=Kݭ+I���Ќ��{�����,&�W���3�m��G#a��f�r��s�&tH$Բ�k���$��L=#$�\��	�8���4����U��o��iu�3
IB���(���ƒ�`���������Eߺх-��	�e�[������hu����_��_���MX��=�x��	�2!L��|.G���j5lW;�P��|�mAC��������dREy�k�RyuD/�[�(��F�LWK�?�
4���Ie�\(����;�튕VLA`O;`ye)��q��q,]�� ��a7$���H|��b�<nsg�\���@�#Y�a_�5&�21���\;�΅3p)��
\�Ⱥ�$���*�����i��m��1���U��Td��H�!ZHBeo�Ì���9<�c}��w˳�׮=���"F�X��}'�Eʕ���q}C�:k����[3"���5	]ԕQ�$�2���ܵ8���.d��2O���1k�L��tF~R�ޚ�)ae�q���ğ�}�#Q�e��|���E�W�4�9��*y��w����~���12�HpWA$ΨE �˦���Pq/�=ک{����.m��g����RGg����X(eTfI�[SFhwj�w�+N�J�2���8{����Zt:IƩ�7� �87�����&���Σҕ��=�im��/=�A�I\�6��v�d�ZV�/�*�'��e@����u�{m��2��<9�^���R`W҅�M\j��&�q[�&X���!e�d�h�=^���5���A,1��N�����ʾ�{>����"N?�s���N��Q^g
�i�"\_�>��q�:�0�t�g����/ś3``Bp�}
]2��P��D�7��`�I0^���H{����	p��22��-#�ݨ!Cl�9с������5{��δ����|L����Z�&�L���^�km�2��K8|���U�9�5Q@�L�Ӕ!on5q�̹���Y��
��c4�f9���	�h�y���G(?�S<�!Di�*:
?U�ɇ������_�l�X��龃��<G��E�?�,)��Sx	�)'� 3��b�`i�od�i�k��f�R��.^��U��:�Oa�߯&}�5���_��C��{R4X����CO�`�#e^p�6:��b�F���n�v�ύ���w��]0f��l�ug�� `(�Z�A{�g\��@�|v,������0y�*�&���'��@��	0�Y�3�kh�*��*P�g�g4k��G�Vx�Њ�٘��JW5�<
��	������S�����o~ᗰ��i��Z@X������
�E��h�
U�<�E��=+E7�,d��	��I(|&�
��*j�[��[�2N�O*iR�c�K��(��^��p����	��%q?	<o���'`�T��{Z&�g�L\��֩<-<�'O�C��}�
e��H�;bmW���f����~q�*N'��80�m�>��P�7 F�p�]��Ĺs�뺾��\�Tsz�)yZ�)����l\�S9���4����e�$h_����`����w�@��
a�=��޸;�j�u���)�V� �����)�|G�<.2�&�>�/q_�Q�i�o��"����V�2���|���;
,]<�c��‚����H��t6Đ�H�^_��\�K�
�pV�TK��N�
I�ie��W��&�Y�ꚗ^}�e������*���j�L�z��<��\)�NWk�'ҨE`4�K*8���j��%���B�,�:��Z;m_3	�	4�$���!����&.�J�ELi%mtq�`Ye�KV��!���>ΑY�v��Y8�n��>�
�`�l��h+���J���Âԙ%���5>����-a��sk;;STov�!K'x�2��O��q��!T8s%svs�J�IE�
��XDz�"�v�vȚ�U���*i��+U��NQt̤��L0놧i�׷�(
��{������sV
�V��m��o[w�F4��0	�Z���F�b�]�-�7fRq�C�@y5�D׊�1��0�60�f���:���	!#�1�mh�PI��qe?�O����|/b&��.A�Ԍ/D���OƓ@�7�����`c��`8�3t�!O���[�Y<ق�Am�g�3�v?H��Y�����)��������ܙ�&�\��Z�G����yN؜d�<@v����D�J�z�Q��ǂ��ܽH�j�kt�K�;ZI<���T_8��d��$�Y�:���?���6������J���d�V)�gŀC{o������>13M��C�rr����4B���y���^$�T�~�A���~S4�Y��]����(�  ˉ'C�y����
�cM��nw�6��G}�b��#eBmU-��pr��5�}��+{��Ժ/��i�L�;�ll�<=�f��E=d���Ԓ��	��d�Q��H�";)�����Euײnkq"˄�����3L}e�4	��4����~�S��_�
���SЦ��'�s29�MNM��9aӟ7i��v�O�v�Ź�Y��Pg��/��ޕk�DA���Y55��Lh
��]�X\V4�I2F���ʈ0-�r�5�$�7?r�V��-��֤���A�ζ�UX�!�PW�V��T�f�&i���K�TS]�P��K
��W���aH�X��B�LI
�{���������3�zmU�fIۿ�0?U0����m��''�x��7РN��
S:���|&~ڑX��I��x�ؙ����N�o����h߱�+�S4C߻pl}v�*&Q����	�]�vZwe�ͨ+���������R?i���g1�q>77��BQe�0�F�N��\��JX���2��0�IhfDI� �C:\ܳİ"nw]��]�i�!(P��+�~	�ni�(��c��e����öB��Y�L�h�s�/gȂ�����R	>ʙ.��$ЩT+�?4'i0E�A����F*G��T��[xϣ�a��v6'`��t��[GÃN}2O��l�d���hIL��LJ�|��s�O�^����,�P	 �b:����R%hvZ��$SW�-6��eܬ�o��N�}\��# =r`G�f0�y$E_�7�)���W��ع����G�_'��ci}��3�r}U���k�:���%2H��A�9o_9Sd���3S�&K�؇ұ�&�L$��NL�6X�n�>|�����3n�!�k�(ɻ���[��=���g����NQog����btd�__GF��^������	�9bB�ZȢ�����1�7�����1��S���:>�&Ә���y���𐛥���^	*x�r8����/	z��p�>��@>�Ī���2����RvQ6n�}z���
�K�M<d�
�y����7��0R�������)��hH}��m�z���[x����jPI��oP�
9gh�9H#t���y�i����g�*~/�[i�A/�,���I��z5L�W�^�Տ%(%n
��˝�ݎv��$���B+<p��3�c�Xe^��}��]
�Id['��M����뛀!!�~�|M��8��(�$=�@�X���J�8���9� ��m	�%/̶gA�0X�*
�l�J��O�[�)��a����o�?$5[�^i%�$bञ��Bib�iF�ɵ��jX�F���
H`��qB8���͚p��i2�)̎-&��  ����@M��y�`J��Z�5{^���R�'�(�s�t�wL��=r�d�5[
*LT�(T$��L&@�p��#G��I���59zm�*�Y*�kZ����90�
K��)(����E>U$%��}��b���l�����&]�V��R���x����^D<�g��C�3�D�EvC25��V���s2�6��{F"\��Y0tێ��[��HoA�֧�lAdE�e��|�>Ë�8$�9�haQg�I{��-�������d�d$:<_���zhte~$9ג8�w
��2{�@(Ņ����\���"�Y1��5��2��D\#�U�Ȏ�S&���:*W�5Od��jU�e\�Z-��2����>��Ȉ1�1��œ���
�qJm�$S\�j�4�d��8G��$8Z,'�,�	��<�V�$p�n�e�*e�R(Nppb��
��* ��~�KrʄA�$�i�ต��N��&�2.��@#�9���IS��*m�7x��e�h���ͥ�!�`ذ"N#E�N�R#�.c5-Y:��2S�wf��Ë�x��E\����s��K�Kܕ$�i�Q;Msei
0�:���x��5lN��0;	I�ӓ� n{���\�xe�R�������6�A��s�zF�Q�����$._]��{����[c�n�ϭ%���w�q�H�Y�u���{nvޛ}�R`�>�m�Q��Lm�c�a�Lc�r!�8Hq�ށ��"�3��v]ڂ���S��h���u9��\��~o�9|�����;PF����/ormI�^2�Ō�ߧ<��6�*�8e���>�H�e�k��9��S"+(3�I^��^�
:�Rֿ���'��t�r��[��آ�:G��D	�y��J��
n�X:�k�]T���L��(厬S�鷓�z�i�t��sH�{,����u��S̒��OzE�
�8+�Ȓ<�����M�E/h����LPüd���1}��h�\�S��$�%��\�nЂHi5�#! G�a�BW����y}�9z2������,"`�!��	��d?Y���J�ٴ�Q�]�՘([��f�S��(]�yp�ɽk̒k�����1�Z^�W@��N��뿍���F����j��p�&�{9x� >��7ߤ"h͐(e�g�7���	��)7,�a�<�W�̲Bҿ�rR.�5k[�(�m����h�o�4I�^"b�D�j�����ԱE'���z+Cx�[��ha1FG33	��߆>����y�o���,�J���p�	N{��S*�WR�R�G�#E�]��m7v�P�"� ː-���"x��\"Wb(�o�c0�{��;EUb��=Qx��j�P��!!�4PY�"S�P'70u���T�}��1�`ƴ !,��+R��.<&@�6p��oC�� �Ԉ)��x�b}�WsFGi�8֥&0I
�U����v�Yd�=Ib�k-�r�Ѻ;O<� 67v��w|`vV�I��@]3EQ�K�n����8�ܐ��d��c���ɔf!�l}�h%��9)� �)�������Æ�[��>�L��j	K�i,%�1�4�-.��d�����A�DZ���'�INR�g8��>P�t��H��f��^�R.�ְS��"ʉ��{�38�w���*�%��#�Z���%�JF��+�_��y�0JbpʡF�C6[P�B�SWc���6��v$!MR�$ě֢���"#�2ŗQ�B!1W�d�v�ul�=���b��Y鏮(����l�q���L���`�r9\[�N�a���uE�U�-��^��
�d�,��S|���;Xߨ��`��O���ֻ}�2!7r�	����z?{��׏o���;nτ0c�a����'���ǭ���f{X��|�⮃&<CP�^!���,��-�DGNt� YP�:�	��t���7P|����
>N������@s���t�R�щ���V;�	(OV��V$��7�f�R���:~rj_�<������86�F�e�a�x�Јu�rh� �V
�Ht��~��q\^�񔍒��9ꓟ�9�V�,���ƛ�wRʢ�J��&V({�S6���y���w9��W�(=�d�����]2��<�}\{v:=��_�.�d��O��2�˔��D3d�3�o��Ʒ��q )��g�FY�w�ݘ8��
�D����ۚ=>,B;���ZZ3�\��jL���"kd��N/;����&FǸ�$m�o�\T砀IR�@�MF.x�3�kG"LO�i1=�vV]d����#�)pr����*A���g�ۿ��hS��/���d����${ n9/���Y��фA�~�q����D!ۥ����\>�Ϧ��I�n3:Izݞ���R�D�Xx{=+���<�����)�B��mKV�ۗ���5��i_�%v�M:�٪P(h,���G����A���Ϟ�j�dS�\M� .0n��b��.�^��nK)�A�,�]�ma
�[,�5��^yl<�D!�R��@���6V�=*�u�r[e�S�W]$
�a�0Y�����05�|ģ�xWXjmߣ���Rq ��#�;�'j�Efܲ��70Y=ܾ�95�w%�s��E�q�ؿS�k"�>��K�5���|g�r������l�[���옚J� }��&�QĄ$
��%�^ )�9ުIt� �q׫x4RHewW�2 Y/��0����_0Lv��nz����86�
��%��xNqL��8I�f����	�\�	�2{ɮԗKb��A��.��vZ<���2(N�W�AΉ�d}�E�L�t���5.�e�{?Hj�%W
<.�AK�SQc���I���MJ&�O��z��IVd}o�
wx?��5S��-�i�655�@I�9E�#��A���ċ�ʜw� �E^��U���%�)�m�xS��k�(P�TRe��&��AQat�u�שԚ
�d�z��6;=��oEU�G��x����q���:�cG��f���ynt͛��=�*@���}�1C�;|
��O�#�G>���n��Xy�5��zl�7�6:[HC9Έ'�d�=�,�y���q2,��9�5�G~>�OoUQ�h�m��A�h��Y�Ľ��9�M4�F��N�t��x�2m�5�o��JR�JSx�����u>�l?�V��ϡ�h�UnNNLa���	��£B��TmʈS\;N� �4Z8G;I]�bw(]�<�F��wL�p�Z�"��@"��)G���&/��')3/��I�p��R��\s���G��|���3n�0P�4RMe���Q��6F>��7o�`�jwd1�qBf/�g�F5'�=��`�2G"�*�(�EϷ�_`�zv��k�U�����̠���H�u�+(��
8���NB�`�0A��7�F���:��yB��ؖ��MLL�h�Z�,���,�%ٻ�t����ӿ������T�[6n�Qp$i�s�<fff�.L�s�u�$~(i�X���F�MAݔZ��h���dK�b��NnL@_�JRj�
P��'IK���J%zo�/����n- �}�r-�?���n1+S���*z��9v,����LZu�g��.��)Z����fE�q�ࢺ~5)�V��175�B6G��qR?K�d� �w��
nST
.��IA��l�M�=���	�yW�8d�8{�
�n5�#w��}o^��?H<���L��ĥ����ky6��}.*��̏A�~v��x�+��N)�:�/�u��c�>�;���.y�� q���h=;n��Q���QvSv��Q<|pVI� ���`ukG��b���9Gieژ��Y�H\a����>j�����'L}��b:͖&��[�Z=�om�;
l}�c�	a3	�/~�8�q������"�V�F���h1���:�(Z-9�&ˎ9M%<�N�5ݶ�Ⱦl���i-�<Z[�9q5%I99�
�B��o,�=W2���	(kM�OiF�N����⳥�OT�DVJSJef1�c��Փ��H��F�".%m�%R�X@�R(���0+��&�9e���^�E���L�Wz��iâKv>�"�\Yp�'p�X�7�u�ݑqi�2��u��k����wL-&_�G�윧�h����8n#�Wۏk�8�'�m?�6z��������Y���c��[�oM�D����6
l<qX�(��/0d̊6��P�:#�ĐQdZ��8nl�8vI�
�����g���u�X�#�"���sz�W���ȦiĹTr��n�
��m��s)�\w7
!��Q/Pοon�mo�eB��cݤ�� ���6��6�N������x��-��P&�d�;��$6�2����,
_G��l��y�F�K���wj���)4��=tR��ZOP�/�0~��]�>�H#��#��(t����
א/T����-m}����;�w�Z���G����r�>��{��{���Cd�2o<���nH��Ș�`��l�p��cI�~�G
rj/��Å.J&��c���f�
cf�I+�1?}s�)�ht�L��!���Ϧ�c\�5t�]��~ׇ��&��ɬ'
�pPbݚ�
�����o�~��Q�Bb�B
k���095�	Z+Dh�"�����<��X?Ö��"�L���)ϓT����A�P=b�^ k$+�@B�����0I���]�-@�U"r4���wE�w��l?쁑��	lƝܿ� Y���렺��'��R!��i���<�镝
f�,�
Y	��aj�v$�"-A}Z�[�s�)��He����.Z�:t#ב��Ke���w6M�HL��^��W>��r��������Z��k�=_33��F��Z��1lk/0~�a�b׳�'d��_E���>�%~B�ڍ�o����Fř)C$96�� �Ϯ�ʢ��}\�#LrQ���,oWi(��pd�D{ʶ.8��}K��i���f�739�cG����%ǐ�1�x��5sS��H�G�I[�'̔&�/��[ۚ�R��)l�\��J�o��?�'�����mo�W32��CEl�%�8AJ��d��ȩ���Z|�$�AKSVk
oʌN���n�<�j}��m��;��&����kr��FE���)g����+�"	-�r��9�F)����X(Q,z��A�c>/������n㦷|w���!�<t꘦���m%��d�P7;;��H� �N��h�XY�d_d4�han��܆��Q"Oy/���U����ʆ{Z��ƲI�Է�݊�/ss#6jt�qǏk���~@�8�.�}�,խ���7�ٟ��.���~o=����,��^��h�;�v��w,�C\4@�K���?‡v��PN*'�N�0l�u�0Y�R>I�Ѧ�* qQ���4��Q��
t�:�q�s^
�V$�)�У�<W�x��m��4F=��q���72ܩ���~�����+�^�N�0��L��:�O���3sX�J\�i��s�
?�]��NS]�S��{</��p5�)')#�P��@��GEnQF���z�߽B&�g攥:E�]�1�h�y��������T�
	t�b��q�;d�~�gƼ�����NnwdL��Q�(���G����kON��qq�y⃟��G�	��yK��	�&'b5d{BS{��u.j1�XaU��z�^�H�Ű�)�`�c�E�M�6-*+�!LV>�O,����B$*i��0�\b�$�ʵu2H���ח���N|��J��{B�!�Tc�4.r��io�9�����$B��٤I��b��<�	.��Ŋl�M<��ɷA�a"O����)g����O��F����u�`|� �Z��l^��K�2�	�2��n��� ؜ڼG?K�fLN�+�*v��l���A1�7*q��c�Q��ڕ�,(NL�R8EI	Ĕ��iF<�t��L-$\���Mܬ��~��Zmg����!��6*��;�Yq��y��*ZTO��u%QD5��a�N�va	���'��{Zz��3�����D���DLT���6�a�?ݮ��WC��'ѻrl�7r�Ӌqa$�id�NG
�x�5lmn�He:!�u8�׫U��8�Tw8:z�R�T&�tg$�0�¸2a�
��i���!k-lS��ASÂ$E�� .x���%fH��������X�m��u�M������LoW_O�2�c�Jd��hp���y����Q'�ù�I�19=�k�M�zi��4���A3�"�ն�b��<
6S��q��d*�n&������<(3��i�~��K�����&�������Mr�zm��
Z�'"��-�K�"iҰ�Z��;C���=�5>s�R��ʚ�w����j(�RSX!�t�м��*����5��)��ۦx�$o��P�O� ���+{=-2����N�������{�?n��q��K�Ce�U+���ͬ�����8��f��h����>{�s\LԸ{��&�g��,BIv�E��	�k��)Cv�0�&��W��12��A��.��m��Z�A惿��ͧp��W��M�'s84�����HYp����⮖��r���wե9�5����4��ǩ[]��h��xj���i-SO����:�:��2��#�N��G�E\�T��
�8�`1#%�x���*�}z���9�ͭ��,��{F����C�}o���.ޠ|��H҆Kv�"u�
����:0���w�D���,�

R����@t��(�ꔓ����j�d���.����l��Jb�z�1X^�M��\"�I�ϝ�Y��N�/w��]��()�>:v�p"��B�D�͔�Ă)�E�S0��~�2�L��ьsj�vMR�d2�9&��Z\UŴ�G<�j[�!p�$<(6�Vb)4��,��O�v��T�	3$ C!�����
~�?�&^~�u��&TiNSQ�r�/����G,�eQ%N���Db���P0�rT��'��2H��)�]���+���"�i�6���'�ڇ&���g��i���K��;�@�ڌƂ	�����Z����4�1�v����h0jY�ѱD�워pmQ�~R�x(p�-���=� %O���V�2�������4ꍆf�K���>F_Ҟ�ݔ3�Υ�U?�5ͦ����O�3w�n��l�k����|�n�`��)�1q]t2S��o��ɠ�9���$T��x��<�h�З&c\�`�Fz$a�U�l
q%s#�A��s�
�q���e\��'*eD2�"7�`�.m7��cG]
�',�R��9�����
�z#ď|�G�sM��ţ'�?��V�y��i��R��L���,���8�z+�#��x��ā��ֵ2%a�uB��F-���_7Z�ZM��V�j����x���9:�X�@��R~�b[������|�H���1��<-��$�_��H�����
-1�Z)�\��蘬�´�(�s|5l�>Z�U��VWQq��$๻���p$���4�r���)@x�h���7-�2RgM���Q�z����O���ӈ���rA�L����! lR���,����T̫�C��{j�1loW3�D3�$�C�\�c[4iš�M
�����(.�b7[�~��f��%�%�$�X��Ƿ�ݪ��8�g��=
DnX��>�Y���{��7��b����}��)���?H��^3�iasc�2�wFVIt9��"�6�)������!3�
��9��.c���ûW��/�{�y���^o���d?���4~��關6Nt]���xve�x�5��k��A���.`Q8�ߧ���
E�U(���8�vZ
@�)��ĕ�u��Η�Tm�A�U��M�k3uʄ
%<F�2e��5�jQM��<�ޯno��L�qm7��a�;
L7�x�z����B����@*22@�*%�P'P=��8OM��<O���{���<oׅ}G�޷�o�x�Ư�	�L�p#�3n��m#�j��#e;iSF�K�($Rc&��
L`r`c4�@,�&d�����!7/4�!�%d����1�o��QƸ��j��J�-�Z�U�X�%�$hiF%�P��$鱥���K���>k��=.�W˦�.)��P��(Q�$n�$�C�+
MN+Ȼ���]�xϓ?��JT�*Z�1!
��!'���B$������<�z��Ta�VY��uZ=l����e�?KETj7Ѣ�Q��W^��8�M0���[J�.)L��9zoU��5K丶�#�Ui��KV(���$3���S���X����yZ�8�8�BNC��2/�[�M!��(a�N�Sw�� f!�ؓnt���z�����q�t�19��c�{�����ݪ{LL/��N}w��u" ��0{��(�qF)�=�[`4?��K��wG�c��'g,I�~1�8�= ����h�1�2E��\���K273�?��O���۾��p[�]�oRG��~�����{=�`�^�ヒ��s�+߬�������[���[���*Wo������:����Q������o�RԚ;h��$��g�n(ؗ��Ɍf��ɌfOu��Ry��YcĖ�O��p[ �5�;yFK��ۅ�F�������X,_���k_�=o~?�L�Q?�#���I���
dI=��ra:��P��x7
�Uj,K�	��<H]�D���%�4�x���<���:m���#Ә�0���\�_j����I�mq=��*��3�6~�<�$u�CA�X�h��J��	ꤧ[U5^���򙷨�M���qgU�[
�bȡ���k�^��ɶwY2f���zV*�ZQX#1ŠA=$���tdҲo�O���P��>����F�h���}�I�I;�V�K�`����NL=F�mg�Ƨ��,`r)xC��f��c���S�Hq7��j�� f�CR��6[UW ����a�2�u�����X�}b�G�L�����>�BLh�\W��ŝ����羀*��uMb�$�!EfA���^�҄��qFr?r~ ��ASN���}5�q��E|k&�F��\�2"�b-N�B��>�^�hy��驢��X\��Z��_}]o��6��Lz3��3M�J��L���[)zj]��z�I�&��ci0V�]�,:#�w���
]�\
��t��5�KEu锄
��K�f���y��QL�(H7��V��HFO܉��;bq���d3#����"�ڱ�	6���8�PI��%`�4O�!���ͽ�q4Wΐ5�źk\��SSHzi��:�C8�)a���y���Mۭ����f�D�N�!s��X�:�`{��ֹvQ��>�����v�LzvG)�R�K�H�Z��)'��ݜ}m��/��盽��w��9c>�}G{o�c������=��׷�n�s��z�}Ɓ�����oƊ�V�����hۿ'�wo�����+ב�q#mª8
��`��#��f��4�)=��J�5�x�����I-�5J��y�0Q�2u�)��ŵU2Q�
��\>AH�ML/���=|���4���SY<���u�觑%yI*�(���.7�9��4p�D�Q�{���{�T��`^����֗�,��q� ��:
d�%��d�FOꖟ%�>��)	 �o|�@�X��l�ۮ���o���WK`>ϒd
�sw�H*q�ܿ��J��ٗjua�:d�R�O<<^��uA�”V��!�t�h�rё[��9������1�Q�&�p�1�����[q�f`1v�A�2'�cq�P�O����L'�U���/M�
��Śx&���.KfSkV��˰MN2&U�kj&I�P����D_]�B״�`���A�� �g�e�"6D�eN�f'A��"�={Q�Wb��x<��`���IqYC�� �g�bX�À��NP)<)��N_���_�ێN#�*j=��GҪ�����2����JB�v;-M�j�4ع�����Wqd�$N�vr[㧜tR' t2&�m����(]!�u���[�L���[�;T⇶a/k��s�}#�;[
?��eC�0���>?|�yIc\��!47��-IR�'Ӂ)����">�E�����	[/, �Ĕ������Q��y�N��ܱ�����ӻ7Y
�l�E=Ha�ñ�� !5"t�rÇ�F��n>�D�q�g�3��A�a��'*�d��Gd��`O�(��w�\=�ͱJ����ov��w����
������v�6�Bq�4�z㕬��ٚ�6�fǍg�$����Ko��sU�%5�@��0>;n��J�L}rc�R�G�I�f�Ӓ$��O�K�}z�%�a�����|?��PpTַu?��:9<�<�Lf�R���:�*���`���/%kz?�4��JǨ�Э�� ��]��,��f;d���ї��Ww���ො:A��k�;3!E���-�7t��/[�s��vђ.�pmܵd;�L��I'M��3F=@|��$sͼ�>��m�x���h��SD/LY�1�T骎��^�BO��Ĺ�;�N��34ؾ���'�)<����]V=�F��~�w q+펮�4����@%T���f�����=��hu�y���#u0���u]Ǻ���:�m'��
�Ԍ�O�8e_�ܴ�O6��>Y$���o�P'Gu�UE�_�0Mr�$���{Ƣ�u�K`���$q������/E��k��e�$΁�"u�L����iR0�5:<����t��&�B��lQ�Z�����O���c�J�ں�	ߥ�^W+N��D��У�-)p%��ԩ�i�qqu�4��o�.g�w^�����A}}Eߙ<�0s�ZM�Q��v�1��Z��$�%1�D�s�3��x��h̍.�؛и�i��Y���|��ki�E������z�%Je����H�xY �@1��1@VI,H�Ҥ��;�E�3-'�}4�ہĩ�$h]R��R�'��@�����񳵳�z��,�TP�	Ʌ���V��f�X���S[�(:�|��Lw36�{ Hm��zc1u��Eb�}6��� ���C^�
�+�׊ް	&4�%̯R�,-�e��[���~hI-̸��-��-�7��\��;�s�ja뫁��9�+U�
3��d�}eܺF[��~>Sd\��$���`�+����M�^cH�=���⁐������~��nfޏ�Ͱ-�X���G����1��ǩe���Ț&�V����d���z�w��=?�&і(��B
�b��.{�
TY�2#�?�׉N�Vi�G}�$�>�5�NΗp�g���-d�Nd�M�����q��PN7x�R�(HSgi���<C�|�KC�ćsiq����:iM���{3=�h�n+l���:G�c<��<uO�ݎ���~�,��;��S���C�F����UZ� �g�Zc��А��)2j�n���/�Dh�������1� �z�kD2�=�O�G:ܛJ��G3��̝(�s���̦ޑ)����F:�F�xv��D�B}O�C�
��-N��cXǢj���k�)�F�α�X|��U�Ҕ�T���T�B_v�$HJ_AhZ;H��I���ƶ;�����5��\׷z�o�98��N�<Q��Xi_\�hWv��������k�ްH�4@�d%;��$%4�B�ױ����$�L���޶�%I �lF�M���կ>�S�>���w��Q̗�q���tVX8O��
`K���LM��w9T[W�~�_���ȩ�#��>�'|�55R̵;�H��M:y%v�'I���H���5a�g���kt�#ȾGk	,��bD������)%�!L|KR�$o<M+��M�Ϥ���ʑK'TN'<�����W>��sIr�%OALQ��=��$���I�+M7OA��Ա��7�������|��8��@��>.�-�8/I���fQv���u�:zK�"�][�f���dTSpn�U)����@���5�g-��L�c������D83�LQ��E�3�D�l�9��j��}X������.ɛ��_�ʺ
�y����3���5;r7�k�j�S3(�2���D��B�K=!��l"�~����eγ�ə;H���%N�4��� �0�����;�Ҕ��%~_���9d���}$�^ >�=�@'rW���G�x��D��^���I���s2�A]56e)GEvvh�j�*8u�~��|Vl�b���D�BuK�dg��<�gIj!���#wԻ�oSá5��q�p7b�Ƶo�ܨ�J�Rx�q�~{1R{1W�r�?.M��8��(mǀ#�i)��x�7I��n�h0�)��u-��sԛ�6&[%�d��~���k���^0�zXC��%�?�����A�����~�@��j�9�9σ�����O�|H^h6q�\��:�&YW��N�66E�se�u�ͩ��s�)�E�`R���$iCB�~�ʾ@��.�0�k$�o9u]���/�ḿ#�r��g�,Y�Z���qM�$�Ok�	�cx`<@�k�r�f�sT�K�e��<��Ov�X?��KYL.�^�/�q���au��y�;{'Ϗ�Zw���#QF�5m�ԫ	�D$��xc�6���d
��)QL5��I������Wc���Ⱥ/�xŵΰYI�v�1/a�
h��r&�������h
�$��+��g�n�@�╫x���L
��ʧ�S��⊵ZS���|ʙ��=�FH�Z�M���<>I%>�)����T�'��[��5L�~~�#?�rf��Q�^'+�W;�L�L6�	)���B�����_�g~��8<�
d�ڽ6�I3d�R�Y4�5P��X�rؤ�%@R�S�����w��iT�{�cT�o*�m�D�1��>�F|H����.�I���*��f�dH��$1'CF��Z�\��mDD�"��nD� U��4%�;�إ'��xhn'�Y�5td�$m�$��dy��Ԥ�.�Go��<���&Z�܋+�M�x�:��~,[ )��\_��;����0��t@��4r�89jδ�߱-�HO%���r���0���n�;V�|3M@k�l^��⹋����e:�[���R�]��
�"�m��������4ݓ��;�;�T�!#*r����Y٪p L�P(M���K8ڞ��bF�I�s}��9ͮ)�*�!�^ia~f^��'f1].�;�ڝ�&J�5���jb��g�*��z}KS~'Se4�v��Nb�������������X�<�jXM�N�cz� r��:���Z���?�nG0w�n$�ߪ��^�ތM�+j��;�J��h� 1�\�DY��(��݆�:��J�G�u+3@���KrXkD�160��0!64O"�J�g��!�P7����{�L�p	ۙ$>{q�;�'S%<��⫽:�O�I$��(�q���d}[�\�5��

���Q75`��T������u��7��h��S���SJF�Z\��`%İ�5���%��ڒ���\��i�YMl|O����1�kV?�z�]��7:�-
��J&�K�&ފ�w5Q�� p��^�(���f0{�g*��F���u<4��/V��ק��Y'�f�%.�v�F���`H�q5��q6RkG��p�f����6.v�!k�5��rj��C�jo!'?t��8�2�60Ed� �1i���@�d�!M�L�׋Q���/�0����u(5^{�4v$},L���u�l�U�Zc4�u�|߀)G'��V��oIz��Hd��$'�]9���}ޏw�'>�m1�(UT�J�Zd&�84[����7Q}�e|��1<L���=�(Qiw��Tґ�Kl �;dQ��ж����b�Z���Z���&��
HG�^Z&��[h�yI��c#n�@��A�#���P�P\%���`�"�$�E����
3|yES"f=���%�$�Hh}�������w�p+��T��}�>
N��q��&L3„�~z���GF��Ѩ+0�l�)�$�.�%�?H�^�5��lj�<�'��zg6��!5jd���L�
+�	߰�Q�nu⊅��lV��Fv'[����C?CU��"lw
a��[��+��88Cc��+����9r�NH캙c��u�P&���Ź#���.h�S���:����w�z"�r��z��)�r�F�͍�8HF(C���p\��XS@)�!S�Ó�x��M�Vf%ο��ك���Qv�;�����>���i�'13u�N��U2K�Qܦ%������X�ϜQ6P�x<��-M#����/[ⷳ�e�Q�[u�� �	nj¿o���������3�$�K=z[�`;&�}�����V��?j�|s�˘��o�x��8���I�ձ�[��*ƽ:���E��O��x�C�83<O#�S�W	r8RH��.�]��&
~��|�FM�]q��kJ���RYԓP�#���'9��b v�	�$νc���:'�(�AN�!!�/�g��*�sU��U�>qBo
����f	��Q��@�����/I���ŵ>���&��ɀ�)���Sq���4���;�8�>�a/�!Gt�����Y��]�f�x��.]���/X^�֍ߌA��ݾ��[7��G��!�5FVʠ���B0�;
T15���Ӝ�Ѡz���[��d��Àu�SfH,'}[�(m2�ɑ�[���E��}-�*�Mz�v�b{s�lM�VV�
�H펧鸩kAJu�s� )̖�:��'���d'3uBr��v:!l�L�-=|�ƔS���T&�#��p�L������t�f�J�U������~��^�LV\_*S��*'�.9Uƹ,-�pe�����P,Oba�0�d��3*�zx��"�wژ�]������p��9����f4�-t�R���K�ɖ�@rK��\&�JSsZ[hP�"�K��%��$`��K��:a���
�N��cJIB������<��%������ȕ���Q!u�\�:�I!`�M�I���# �U�:��9f̤y����<�-����6^Y��"V4Ov�!��,,��`ƸXh�X
���6FO��wq�s����ߐ���]0�e؏.�ǰ�<����x�����~n�ehd��MM�nfz�~*F�&���w:�5a�f�DKI�Yq	��+Ij-�b�|*����}��^~�Qd���®��K�lI'�Mٜ�V������mt}�Y�Ƚ��nv���T}3�f?��躾�}�h�����~�mM%p5�jpq`��<jJ|߳J�ѩ�ֳF@�h+^`RP��٘�Z���˙8��y� -
{~
?(�G\O�-�Ac�/�cr��GJ�R�\��+ԟJR�>��5)�͵�Kݺ���`���5٤�<�F�-��l
̐�Yb�JO=	�����4��O˾�qѕ��&L7:q�S#�c�Ŷ�6.+,1S�s�w��e�ms[�&�5�l�0vnh*4%7Pe�`+@�5��<q��wb:ț�D7��x,���[�c�P�r�6���/��C~ʖp���2��:�.#�~��w�X��@�^1H���$!��*�i�-�r�L�e�<
0Nښ<nT��Wk/�˚L��HY09��Y-��Uy��
sLm��U�c�ERZ;��Ld����zZ�V�o�gv�:٢�-)�%�D�w��UZ�75S^&�V0&A�b��ZN�M�Mq��m�Ȅk
�J�m�R�2XP�`$r�J��<����x艓H6�Qy���i�d�h�Ie�;R�'���-Q�T%t��)�WP(��K�Z��="��™�k���M�M>A���0Ou��9����9l�{��&|l��{
�]�7לh��"oA�&�@-n2<�%��eg֪U�2�B�$
G
���'��$�]u�A�[gt�V�"��.�~I��Ų�%��6�z��s-��\�~��{H��M���/"�^Q�����r��d2��$ 3�>4�60qx��B��/N͔qe}�d4��
P�Z��z��A�})���ƇP���R<����	��~m�_����7�5��Rh'id��F���+6Ƃ�1�˰�����-�_|�m�~�]��W����w�ŕ�[��w�q��l�[����F��p�~���5�����#�&"$rH���D5��f�J��h͟L�k��™��4�eIx��'��U���Me�
��W�n������f�X�jbRbq��3��F5�e��zY7�MI�dӒ�R@AG��o_����I��f1���hC҆!t4N�ı'}+$�)�o�3���g�ˬ�v�ƃI�����VG5�V�3��o��#@KبL`
���<���x�4���{='{����(�c'��r:���|
��.~,Q�;�Ư���m<֘�{$��k7�/w�ؿ����(�Q�3�X���h�q��tSK�f]�4%�g�Ċ���0:SG�o�k�"i���*�
~�f\��U�4�Gb�q����r�]��]�I-��T�@~���^G3����7�D��uK��8�B:�?	��H����M�q�2���`s����>k�
|?&J��p��r(�qb
u����ԶHK��o��- �p?\~��_E��E�`H\T��2��O��rS��++�pmm)
���,N>p]��{���7P(Ϡ���׮�Cek=�z7�z���[��&��c��J3i�w��1P��ȷL��U��4�S�s���e	hz�ת(�&�~{���~�lA	��&]�R�J_ߧ,]q�I� X!�[d��TQ���E"O5I�%��Ds�����ً ��Af����,BYllV��WU�:Ǻ�
k�D!྅)l�_�5�z\+��t�l�썯?���`�x�]ꊠ��npm���azq�`H������c�P���c55�$�HR��;�mv��\_�H6e�&�1u��2��y��2�	@48�\K%���҂��o[��\
u���f�E���{��&�Q��TF�yr����HI�ߠ����E>��cskE�Ƽ���kPw5XV�#qoYS�ÔEH����)jad e�ܿ�8�3�67�0Y��1Y2���A�]��R�e�_�'���	;��N���b�?��~�Fm�N%��L��Xu�Lāg���@KGP��D2
��+î��V���%YC�>�+UL�z�j�2�|��u��/�@�,fѠh/d�֘'I~ڨ��N�(O��p�}�{�d���H]�G-�{������>F���e�c�\{]��ߋM�N�����&
�Y#�$q���(��"�ʄP�0�0�����x�e��?ǵ�C�,>����L��&�CB�W0Q	�SS�b���6����_fQ�\z�s��+�G����i׸����WM��>	{$El�N��V7AY��(���K5�d��
�P�+%MfSu���
_��L��k�K��6�[v�ިv�ֵ	�$�����۵2�qJ�]w�u���{sg�5H�_%��m^��ѓA�d�ff��.�_H���<w�*��1���:��[�x��A��XMxz�p�x�L���h�4�"�c����@iB+v9�+�k��I+@G$i&��Q���a�HS��
�FV�'s-q���U���qaS�= J�u���#�̵��T���D�@��%y����$����YL�ַp��9*=-+u��z9.��"��`���Dul����J�Cza��K�ݟj���ʧ���Q9��fh��j��-���l^s
����r���x�U�?�w<x\�S�re�ߝDŽ$l�g�m�Ъ�P>|��V�q��^��<�Y��xﻱ�^��4�k=�W����!2S=v�]��wf����`���
���E^���&�!)+|2|W>� Ⱦk���-om˦�yD�I,QN,Qja��+�E��-�{ɒ���?��{
��U('e���|�����-b�,B�ϧi��;.����e��'�~�i0�u�,�t���(�J��U,��Q���_��r�u�Z!�F��>f�ب0u<n��gh�ڜ�ۦ�Y*��
*��3#ue���+��	p�P�wz��]XY���_�F�r�����,P��807Ep�#S��
�C��ɕ�����e$�2i�׮a}{UT,�Laum�„*/E���$��^��B�-F�����ǜ�͚��J�[��B�+s���<rK,����)r���u̓��MF��Nf|M����v���R�
���tT�$�<Gvs���c�������T�$��reK�5��սN\kdɥ�X�ƞF��`M��e8�J4\lUwx?=nbj��[��2�s�)[�	�V5VJ*,��&�IN�Ĺ�F[��'�N6���l�l �&&,���~���G֙.����xi`kk9������V~��u�Z]]�mX\\ĵk�4���uۥK��w�P@�V��Ύ�֐�|"G�gff���:x��~��9�ĸ�{�w�^�ŋabtӺ�>|X��ʕ+���W�����b��iL��d��k+[��8���s�5�e���<�bHw���
L5Y:�ж,�Ʃ&3]?K��d>���!��Ŕ&9z�O�O��x7���\*��7;��sx���E��r_���%°
צ�jW�ؖ���R�D���vϤg��.Ӂ�):�u���*+c��	U�4�HFW�A�[�q����k���Ѩ�UçkMUv|_]񜰸:M�б9�e8�nt}M����YW-�4�-�k
��)�k��&ᅩ�I�8o�]�~�)��|�I?R���y���g^���Z�
����di^�j��S\�6{������[u{���t#`4j�
7�:ƉY�S�HR�J6Bau��YZ�$�p��� �c-~2��x���c�0F�'�Y݄a��@M��v�)J+�E��&����K;J
�s�NZ�d�j��p��,u}��%�olDqK���1�G�����s0���L���C�Y���u�0~���]�#���[ul�;�-�
���p�
�ԶѮ�q��R�2��W���{_��|n����4.u:��-���������Ko��̕5\n�߭Gŧ�|�$��U�����y\%�.P\,R��R��Sq*��ͺF٠��L��9Uݱ4���
,��a‘T�Se��>��D�P��
h)��ڮd��{�R9.b!kQ��hMΘt��F\���+��=	��[p�(S�?�"���T�۬��86�0�ј��Q�5r4�|��?��`���x$����4�ap�
� �Ѝn���r?��+ޘw6��q���E-�9�ٔd����og��=~����.�Ǻ�N�_2W�i���T���̖{����)4->�[�;h�f�gg�v�0�����??*>=o��@�kL����-&@9�pļ#��nW�N�i�2L&Ѭܛ��D4�z��)i�'��좩��}&
�G�W�H���9��,��ᵾ�b�<�3ְ dpK������c�d~ o�h�i���*����Zx�&Ց9'`i�}��5Hdz������{�6Is��EP\ (-�&���2<._�T������T�·���*7j�;��śd�����y������XYY�m$/�H@�]w݅�~��x��GL�{���-<��cx���7���?�G��~���s?�s�'��h\��/�>a����;�K�/�3����_��x�'�+����	=�+������1>��+����������'�|_��W��C=�O}�S
����[�{�����>����}�9��\AҩS��X�x�5+L��v�����9&Y��դ�k&��gt�pMQ��1c-�y8O��~�L둹�ɂ�S�|�:��x���J%��T׶�'�r>��]�{�L�)�c(%�ȎX�yc$^�#\�f��:h<9�}�[��	c��`�d�+&\M�-뫸�W5�B¸�C���n�d�~� Zӱ�Q�1L1vI�Q�kFn$T��k$���Fzh�+5P��Ä�X��w�����}q^��@�4�}zy�+u�$���\�9��?�u�Nc�-5�Ѐt���|W۶���^m/&�NkwH���G� h,!��[^`�鰮@��N,� ��S�sX��S�S"�0`BN1��>�Sx�q�
F�.M���*�ӷI�`����r�����rMB�|��D.�̂Z��3��L.Cg�/]�Li�NS�5��M�	Y��]���Y�ϱ�*�Q�EyQf����C��h�	�6���x���`�B�ۯ��ނ�~Ec��^'e�M��0�8��g��Db���=� ���k�"p<�V״���'Q����`�V�&��>�"-�?����ʛ�bes�2'q9��O܃V��J�������|V�A,�-5�<ar;et(�$}���p�w"�J���ݾ�sq��L�XY�~R�Ca����s��s�*�h�ݪ�(�PS�N	��Or���TEX�����I}��a�iLi�{?��i�&s�n�T�Ez��L?r/5c�Q׈>
�G.Xa��@�>,H2(-FFy
A�.ip��4�����J>"�BD���P>n n<�V됩Fb�C&�b�T,��H)A9wZ&�̤opMݞ¸�����k�Cb���^.�Q\
�{Ft ^q� �Ӝ#q�}3e�Ĉ%S@��k�����J��&n�����`*5Ń���.�:*���v#��h,���\���.�1�!I~�$����|�M�տ�W�]�ǿ���������+����ӟ�4�����k���s
�W��_鵞�y]�\�>}Z٧�	��4�ǎÏ��*�vK@�\C@�|��}HA���2��?�g
�����y�~�iI�>��������O��g�RK��o�'�f��m��x0�g��7qG��%"�$���%��� ��K�Q�Gr�O��G�T7Zx��![J�?u�X#��@=��[],sݪ	��*�6,��x/\ow��m�=Y�\ʍmC�b�Q��((i�Y<��0�g���~�;/	˚A� Խ��̺��nJ\�%���B�L6?U)�B�*�1���}e�WH_8����mH�9�
�\��ɐ㵎��~������F�mb!�ԡ�)�_#C����l�W�7e��
Ty_^>ը�:t�-�b��̖}�7���iw�1�Mܰ�7��oX�n�U�x�p_�
!dP\�]�в龓Z�S�=��v�u���О>zo��2٤���É�1dg���dO��/iܔP���i��R��ڋ���o8���ԏ��|�
���-&)��F���ז�2.|�.�k�0�T2ڙ�Ja����Y,`Ӆ^ܺ��H�_�_G��sH�'P��"�h�[84�N/���&�-[d�����ۨt�Q�B��=t��}Gぇ��o��S��z�Z��Y��-�D�N��o
S^�~�.|鵋�l�T��؂�>�-4)�w�:���6r��1�x�B��.-�ƴ��m���U҅��D
qR<TF�L6ٞ����Ib�A��#�Np���
:YIn!lS4�-�t~��x�@sH-���÷�M��B�gv��0��z&�G�.?d�=�E'����X;i�*�Uj�Lޥ����ψ����->b@(�\�0���g���_Q��}�a��1��R$(���v49����� H餺H::>ą.�X)�L�P�ج��#)��^�e��Z�Ke�����Z�ZM��(��U��(d8�x~������ZE*������Oc�x�<�Y���p?M�&�&�yu#+��W���+��T���V�U�o7���*E���W�22�Mb���f�S�V��I��֨R�B�l�)8�k���
yk��c�`�'+���'a��%o?kp�̼̫.ϟ�4VKb��4������W7i���_i���R��XS�����f�NO�jVK-�-�K�\v�
2��U*�<�ь��ڎ��"�E�kc��,��w���;��|;t��1I7���'�l<<\�zU]��%NX����
T~�g~FY�W_}U]��;qc{���˗�Y�F��/��/�#���8��ٟ�Y|�+_�y#nyn�eO�+a��Z�N�8����ϫ[߯�گ)����k_�����O�$&&&��/�E��o���!W{�՟��ZY19V�(9v�������U�%~G]�m",�ߑ$NR�Q�!U��Ƚv=5�[W݌I|���8gN��0{��MΡ?����fOd������
>�12�~�ׯ�oi'M̓0G�rGR|Հ!K2G���ix�������g�M�	פ�����k��e��9oX��1.x&�����z�(�{+�Z^�`�O$�&���H	�
&����:�G�Ǟ1|�֋%n@��}O/�����B��$R39��J��g�n�RS�'yo�K���}��r���GE�\��;Թ�M��Ӎ�;�
J7�{�~�I�G���u��>�`���;NdךH�7a��LX%Q�躱{�_Xkv�,���&G�C���Ű��\�\߱�&	ws9՝u<���ο�����x7ǩ�)M-"X��*��\Sp#P�D	}��T����W���o]m�1?�}��w�5�(Jxg���^I�;��1G���B����B+�V����G�8�8ŏ����A��衷?��B_}�
\X��wg/\#�
P�ª+���885�7��=�ǎ��$��s����a.�%*�g֖q�|
^6��)(q7���ej'�7�!t�5�s�[�<F�t�5��~�$]�Tݖ�d�NLv���	9ҩ���&�Sا$�5*�T�rTh3Y��!t�s�z��^SD�0GK���ɬ*br7�Ԫ'�H������;=2�*�������k���=�b�0��}*ha1��^��Ӽ���=Ij����7ɷ.|&	��T�fI�XS`��d���I�=gH�C�"�vƈ�˄e�ɋr-�t����ҵ��x��<�Ff�<7d��Hw�bw�\�EQ�aʂN���Ccx������%�0+�g�ʶ3K�mCYU=��AR����lus�`��֩	U0�m�ml����M2�]uϬ�\��3�P��NO@��R.�,w�J� �G@X�>�B�Oő���n�P�)v�uU�|���*�ʗjSI���~"�e�x�Jb�>�.����2�LyIn�#C�Vװ0;�}��ؚ�$nhjb��쾞G^�k&%��k=�C��k���j�1U�T�G1|�;�T���!p�askUc�r���0C�[�8�A�Ά2��n�hՕD��Ьo�h��Di�̼$c�bi��5�
iK��U��k>A�*����(������Ey� nY�>��O�����Yuo0"@�G����ï�ʯ����|PY��/�%�����8}���ښ29�'�^�',���?~\�(�)����?�����>�XY��MMM�=�����_W6��8y��=	����x�{߫��СC���o���b��.Y��/(��Kb��R�������ZȻ�8?J�#*I�,p��H������;F'��<H��Ot�x�dsG���)<�h��m�\c�W�f����$�qq�g�DŽ��)Ճ�`�4�Y2Ia�� Ր0��-�G�Φ^6�@Yp$�lG]q���ӄZ��S�$1MN`kI�V~�Ԕ��)P��,�F�gj��%D����M<y�.bv��5;��,\���#�G���<L���;���:^?���4T?��Q�C�F����O���Mf�h������sd��)L#���6����|�D'aۋ��S��ؾ�f�	-.7DC� �Ҙ�-O]�)Id@A����y�8@�LTx��`�vx
Q ��RTPĄ�+{��㲐�x��^�^���KD���~�~���G��q~�/a�>L���D�N���*������E��n)"z
�y.��q��LX���7�69�I���*K�ޓd^*Զ�W��P���7ᤤh����>�8�����›������?�Y�7����������eZ+�޼���S�(O-H��J��&^�@鮬��=q�~�]�ͧ�F�0��
S��Oӊ�;��|�kK����u�.�
���{�?~�o��˰(*��.~�����ڛ�{B�<�<�~&�[��T���h77�ڮV0	�*0�4�+q�Td��	g�|
b�J��kk�"x�R���P!=��[�"H��զ���e�Z�]*m� �8��������~�c��<�utA��~"�)�Ղ/�M�G�>l��2I|Z��Z�v�LE�`���F��ʱР���:�MDb"�II�Jp�pL�um�v�א)�ڧ+�&��r����W�Q�
5N��8qi��翂'��`���w�jS!'�z�B0x��R���z�����b��?�3�����pۚ(�\\�`3�u~��>�u�p�WfZ�0P����q��&9Ǯ���<�=I�vk�����o�W���q���8. ��#��̜�,�^��I��>8,��a�yksW
3���`�����^#��|���)e�bG�~:���Fh4�;�a�ܑ�-W&$9��H��4
�n�y�q�m�5��j�z��D���S�1W��e�ٹ�^;����ި��nGo��O�������&i�]sz�oK�@�]',#qq�r*�����v�x'�w�1y$����9����>�����K0ƫW������5I��$�-�Eq��
���,�{�q�.w$�@��S$�^�w�kܸ�9Z�� ��g�m�y��e�;-JVϠ��hv���.P�H��T.Y��|����5=׀C��r�׏D��o80�w���v�6�]*�xlņIn��Q��@7�?�K��"��Z\L���F��*
\�S���	��	|��Z�}�p��㿢^�0���m�M��O��g��A`��<���뿄l�t��=�mܸ[k�~ġ;2qC�.�+�8K��'���q`�H�#Bn؅oxAE��{�~�� �P05�d���`Q�ą�ьd	�l�.St�c����6'����Ud��}�E̽�}��i�&>���t}YAP��_��&�*�k?qL�3.(H�?��+̑���o̅�'E���. I����4A�my�#�3_	�]{��$�A��������N_[����%x��*�YME��3J����[�%��e���?@�t��vQuJ������׿�2-�W7�¯�g�@�?���}!-�,�B��ՅKitI��㓶		�)��FJN���~��n��q�Uw9Ǻ8R+�W6q��2
�	��QW�D V�:Zl-��&-ڝ�^35���d
R�5ݭa���3��7A�~���y��F���I�`}i���I˛G�J�6C����D�LH��M�����xT������~���f'\[�=ج>����(���s�+�)��h�g��(W�$�j�e�n���Ӆ&ÿ�U���~��5�׺G�a]3��M�Es�B�/�k�-�K��&i�a��Nu$�c�� �������$���?"�}ޖw]��n���`�A��B�+R�EQ�"�V�Z}�]�B"�"%hAh�IQ��`㧽7���&_z��9�Ffd��g��gj��v�z/#�ވ����?�?�b�x�;��p�c����(���}ڄ��]�b�o9~��p���Y/��	}v��:�Eà��"�"q��'�/#J�_��{�58��0ף�þy��`8�0i�6,�hP�a`l�Fm�^n3��a�7꼇mv�m�������FE�w��}ך:FJi��%�,���r��#�U/��f�ȑ	��#x������'�,t��d
�U��Yom_��Mr��09:�*��LQ0��hQ&#��|&yQ��!WE�|�k�!��7c��#��c]'"6!��7��n�M���$���ک=&�����&�k�0�eW=Քp����O�d��v��~]י�O
���?Xj9�o:�T;�_����٣c1Sq�r�߹���+x��6Ƴ��R�n{9>G���q:]��8�S��ܦ޺���I<O�6/�t�~<5��wo!��ޱ�
l{��`���#n�o��Xl��'%<`���@;?{l7dH9Onh]=���b���VBB4TLb�M�m�i��^�N�Ә�Z���N����Ⱦ�o�AD��oT*ܼ|�Ž��������5I�˙3�����4�$�z�\^�W��D|loow��t:�$_���E\Z)a��>���nm �)����$��M�u{U)���|��O}�|�c�מy_}�M��[���Ԅ�|��ə	<�(Y�����T�yh/m�#1u�}��XZ-�O��gq��u5�œS+�
�AI��4AVTUc��齼��	QIK�ޖ
��<�T���M:Gx�����)��HƔ���Gګb:k�i%TKvCb�Yh*��!	�+:Ү�3F�1�j�9ZAzzmׄ�8��������eZ]��ncg{�*&	��C.��3#^w�S�ߡ��V�xq��H7K��<�2p�瓸u�	]�	%j�\9�A�X�H�:l�~G%�����
����kC���9C�x�$���;����7�{��{�ajjN�
KM2	y69�z8T�L�3'N����7"
r�=k6��+���Ա3=Q�b�&���~�����������$I��0rU^c�UANj�pα�	
Փ>op�IƢhp�GM�\���8/�l�cu��[��T/��!QҔ��V+iNRac3�H��e�5�i4���6��&J5��<�9K?|��εA��z��Ap4�c^g��3h^�P0� 0u���[���p��{$�o��L]���j��u��:�)ېy��]ļ9E'�i�.���G9�'Q���뛸r���M� �U��YD�c���
O�>��!�r
�[�ΘZ���[Oj�Id�DŽٙ�E\ֲnC�\_�j]7�gK(u�\�:)�d��u�qL�\ǂ-����H&j2±�&�8��phQ�k�nc�F�.�d@�	�sm4�D]�q��7�S�.�R e��4|�ۅ��3�p,��?�h��?����֬��_�T�����J�Q˼�k�|�����VX�c�o��t\�N���p�#G��<����}����F�ԅ�<a������5�5ۄ)|���H���oXvi~φ%�F
Q��%7�(��1��4t�b���kM��:L�Jm��rōuL���q51�]�PCC��2I-�m<"I�n�5�N$o$5�٠?���
�#�|S�V��o	?l5[
�0��&El[�p���d1�����*Qgc(���vpdq
'N��?��3�O��`z<�[�%L����!�C�H�ex��4>��s��+�ƥ+�R���D�ZF������FMs	��R�V�F�Ý�U�qzh��Y��4���zx��s�8���kW�C�:�w`T����z��D��Z�����l�J�zvb0�W�Js��1��.pPO��o
Q��1�O�7�;�_�������{-�f��T�|.�ڤ��]&�n��Y�9��!v���p�I%���s�b���0w�ڶ�?�1`j��,f�$�����*��h�\<y��m��aC�n2��%�'Bb0��}��N<�;��,r�eh���|��U?�Ja�ck�����`�})N��Ig2�N�d���-a�q��q$h�cD���@�L�H�K���2n�|I�@��ǥ3�o��qS�M٥�12��#���qeO�9n�J�Hd�1}�۴��9�͋�d6����d��B�:��)3d��li=���*MJ����,K�"�y=NBB;��Js6�i.�y��ڰ��Q�
�������\�  �kX&ֱc]���f}	j�D�ًe
��򪿟�4͕��M}dzR�xv>��'�'y���&#�t4^�O#��B!���Z�_ZFnG��bRU�U:x�PD%*����*��صc~Q�$~�[�-�I��l$��Py���h��Ii)r+̗cl.�2P��!�̎HtLW��QфR�uT�V��"�7�Q���1�����{�H�F�'���ܵomSQ1ɝ\ U��v?�9��L����ޢ��[��B~���E�N�6��������<��~z�c����x4�ű&G�qrn���4�m��҉x
kxX��Np�R�HF��;Fm����}�$i��� e
�>������{�u=�ZM��3�\kK��랋թr� �w�.�98Q����V��(����8�&	������i7T2�&EHK�t̞9�U�NB*��I����wT��Vo`�X�1����_h�M
i–� ��[X$Y.�kb֫5�E��OE��en���:�
�EZ����6���O�|l�(^~�&�z�W7�_�W-#9>��;�T\�~��ptr
��cx�^�3)ԶK8w��=�!\��¥���'?�QxMO=r���_}�}�*4Z��L3��1s��ٔ�bPƒ
���kd�b��-xڛXPd�+c��ό������(+��غ@��Z��Q_�u8�F;����C04�Hk���=N�4�tTnm�Lz�07�zq�DZe�ab|U��$W���!r=�J	�R�!�t,(�+�m��z��i�Q ��R���׉B�L>R�K⁼���N��t2�����\.�@���g=ni�*�.���T��j�ʾc�������a�ݙ��Y3![S�n�"Zѽih���HyG�=7{$d,�Ƴ\X޻we�u=�?}��φ?�)$��"��:������nc~�e'��)�^�4<�����N��O���H�5�$���d�z3�P��4>s/��^!r����
}�ێ�q������ƥ���;�sN~�Rg�ܓvPy�u߫�8�L�o6��f�J}$���� }����95��<wsͭ.zq����_:e�Z�D��}�Έ�����d@�#q4r�E~[��txdܨ�YF���"E�Z���R�*����ӎ�jw2?����J�}NȢ�$[H��(˺v�3���+�5�T�1�s�<�0
�õ����9��Lwb{��Z?_K�'�$����F�<�E+���e�te
�;q�GS����{;���6N�o�����-s���_��%ʨ�i*��H߮�SS������wx>R����
~�١��!����X�����ք�G�gQ��X�lV�[�y�`f){��zhe��7Ϸ�2�.����Iȉ2Ib�<Sq�c�$A���]���8=�<��M2C��}�x���Ҏ'��2�<���"�q
��'E�Z/�JD��p��mC]kP�FC8�I��T��(�[(�%y������}d5�N�S3��t�|�gf����[�z�6�A�9�8���KKH1��xx>KT�i���"����t�P$2Y���`��-|��	x|A7��p��m̏e16�����"�'�1yl^�dJj��z��W</��#�uL�aE�O<�dkZFy�*"#{��L�]�v
�3�*D��U�zT�<�[7o�����:If�G?�����^T�O���ܬ*Y�ɰ�x�,^|���bs��vD������!�A}X��^�Eu'��XѸ��q=��HHN�}��v�B���i�	�$/N�d2�}��]�έ��.Ώ�t�J�:���6QT'#�+y�1����/f��<�;s��qo]��YRWjDq�?��bss��v�)������^V������(�jw��~���"�+M%��o��K"�ԕZཻ�|��᧶�NJ�	�𣾂�w��dv���"����}0��s���
�}�����X�G�B������N�����qo{-{���3��c�h|��'�!u�Xw�vBϞӽǾ��29~ke��e�z�R���%����oX�7Qv�B�ů8i�[494�|E�O/\Yű����,�C��7K۸���8AFW
�����B�����"�2Urw�D�E]oV�A��jV�u���a{v�dyC��\$�*/ %�6���Z�h�	��]]�{R� �D�3���q�m&�G��@�l$EDw�=jd���U�<=~��X��N
?Ig��x�����^����/5�q?����T
���"��z�ÿI[��*Χ2�T�A���U�h:6�e)&hW=D�nۯ��C?���~<�c��() \�0�K
��{���j�3��{s�J�Kw����_�Xd�M�Q�}q�0� �'`����'�Zq]����z��u0$GH
yI8]*���u�:F^[�m�h����%55��->��Vo���.]�B�'?�*��$�Ѝ����'Q\/�������|��h�lp�"u�^U�\�ɔ�	�S���#�2I"��g���G�$�Y$}�iO\~vO~�I<��� ?s�����6�ىGk�V�h��z���sآ���o?�ɉ=r�ǣx2�@��I�5���M�<vs�G�3������1����W�J`��[o`{����ų'0sto�~��c	�kMH~�m#������i=�������xD��Р�ؐ{z��ul����Ňq{�>�s?M�S�=�_��Wq�x����wo�P�����Grn��-|�g��yC����܊D�Gx���~�#X 3w�2��t�\G�����W��۬�`��̓�̫,x�3�a�|�$�ȤJ\�x���(��佞��@�5��H�
��|���Y&x������4��9;~�+k�Wsȥ�897����"�W���J��ю����+�>~��<6�7�ą�p�Wq��q̌��.����Y�ş�il�����9l�o�,����ի��fR��aq�=��t��c����z!	�O^8��k���S����|�Vװp�(�]���_ 빤�Kn�0��R	dsj�*�٘�/3�x���c{;�f��s�ܞAFi�A�yYd�}�7�w1R�Z�n��9Թ�m{�7��u[�����7#�S�+f�pgRhq,~��&�&iȧ9�f����ہ������ts.L�cB�Lh\6��P9qV7=��$���_�0??`wL�\�c�׌���e�M�]O���i|��'F܀�*�L��.6�ݿ�U��m���ɇ�.��
��D���Z�t~�/ϰ])�����I|��Zn,��L��,��(^ݮ�_����<N%��k��&L�F��Xw;x�R�9�I�&�cx�бB��+t2~���7�E���q��H~���U��������$^l70**}/�tT��&�mimX~R ���9I~��@cr0��I�o#�>�	�3$q[^8�����:HiNAA���$00�G@��
"�����s��YC'A��B���^�_zS�4[u��R�j�ӱ�&��CB���5�Aȗ�$y6lPœ�Թ�#ל}o��v��ζ4Ξ/y6E���s���˿���y��|�m��]Big�s�O."�;��T��W�X���q��	k���ב�%pl�����'8r��/á���d�\��ժ��o���ɐ%���p����_�Y|����՛��(zk4%Z1�h-�C7�M?�u�YZ\X���
����	��‹8s�,N�:���n�{y�������dp��u�8C����ibn

2)��<:D,��q�x�n'�O?�k�"��=Sserr�`!�8��M��\B"����yo�drJ~��KC4����~�Q/"Zq�yh)2�:d#�M->*��^�ɓ'5�l��IdçȎM���a���e�@�X,�C�J[˨o�E����&���<��\8���x�`	�}�������8����>���
�i%��d�
��?�!ܹ{�}!H�bҞ�"�`&��!�>��$�w���c�yxm%��������wR���872S�(\*"3���E�\"K�������C��ˇ��
S�;�qt/����� ���P4H����>�Ì�Q��c�~L�2$"f�wqD��)zľԌ+r�h
m��Lk�&^x�N�8G��7J<W���NU����k[����=��~U���007b���v�ށ�� �LH}��FAC���1��|���ݺ��}^ڜ��L�c���O��)yEF��
,_��;
�z���T�M}N��t�g}�@v44�x
����@k���^NkM�&_Ƞ�t�:�����ֶ[���1���NV�J
jb4]��V�Ag�㜿T��!G�x-|�Q�t����s��	%�r:���ҁ;'���)�6��Re��gL���}�������{���}irO"nw�4�<�	��BI==��?
P2�>�F5q٨cE��p�b�6�µ
.Zؕ�FB�^���l���@��i͒:���d)_HD}$������b�����
4���?�>�s�B�>��gsnd���B_ì�F�s)�+�ڿ��G����^��U���-��om��T�Ti|��c��8�~���t"�|����
JW������#����B����=�o}���+�(V����"s#8��1�E�T��]‘��x��9�7j�����!S#��E�SM����
`W��ԺSU&/,)��
��N�e��yx��a��m	���/����#������0F��}㚆qUi�w�-����7�L�aY>*/?�],L��'q��yܼt�`�a�
��v%�O+9I���:�P�8��k*̟����-3��P�HXM>�: ��^+dprHmll��s�kQ)W�twEN����4İF�ݛ��`�54
�����/<���T�`�����6���)���W���-�1�K7Q������>Mp���3����g絸��Ea�[u�����5}o��3�Z쫻<�
�҆��>��8u��
޻
4�
$�	\~�

�h^��*�w�
e������{��y�"�����~�^�~7,�&���a�<ވc~|���{𜇝�a��Yދ`JS`��m���������83�k	����<:u8N�.!̫ns4�=_���D����{ӝ��5&%��"�NH�ns�ܦD'f\�ی3[彅i�w�x+���i�cB�T�[ĶRyo�	�T[Q�x<�ee�6� �'B�Z�E�|_ˆ���7T�!PΓ#���v?�H�Iڢ����H�%�"�̍M<{w�J>>Oa9��?kl�[�!O�n~��Y��b��?��ok�Og�M/���А�N{�r���Ѿz�s�V�\��<���~w}S{�t���8��~��yn�O֙�����=4U�qBF��t��Ȼ��c��B���P�Uix�[�I��	��'#c�j�_�L%��A����n��A*AʔF�fi�,Mq��Ez��s�xnywRQ����/�<\ҾD�
��G���c�"�!I�n�x����:����mcX?qT��+�G����86
z�W������4����V���������6��	<�;_��w~��4Zq�
�t��4��ُ�Jv��p�ׄ(�j�뗰��T�O�o^�D2��'O`��"ut �(X81�sy�s'Q\�����תغ��;������1�5�\���]��r�.�T���)`l����Y!#�����Ȉ�(���X$���UT�J[;�k覣임��w���4�$m���Dr��e�˘_kI}�A�X58[�E<tКD�Z9[��#:���CZ^�Ǥ�V�}�&��c oI�����0B1J��֦>��y�e˴��j����u�qs�o�|�f�	�!6��u�y&��-l�2�'�J�{u��]������ۥR8��>�NH��	H�n�c>B!��6�ܾk��U�3�y�W�,iB��ښ��Ch����DŽ�K��~���v#}�
�
2Low{�w�v���ݨ��a����6�\$�Y:�~����Y:G`��N�_�ae���~'�*mҡ�?�5�ib;"��XTk*
�й�7�+�, Y��8�֑�!m
S��j�����Q��$+�t�M2��8��@��K�~3�[;Z/�n%5���wn%�MA�
Eu�1J����P���:0jv���<��X�*�h2�n�>�&��dp:��bљ�q7���M�W�8�=�O��D�আ5:�E�.�﫴�~��?�S;G�Y�~K<����sxmu
\�m�����K��,m�VGRI��ձʳ�N�����9�N��۬���`j��1�K��$��
�����d�`���}xC��ݗ�tiC�f���	
��A���"���R5>b�k}��&�1<�n��Y�\��?�M�.�((y�'����9� �|��q4&�Q�x���~O��/eI	��笞�$K���0F��S$�\��>�й�c�%W�T�F�,��'q���AT�I-�d�8�%���US�ֻ�|jVv��?�*����a�TC��A'��A^���&Kf����wQ�J�pkEd	�2�dO�o�J#��!u{kUe�OM�!9;�ɉI���D~wjr_��/���M,-o�?[���;�Lb��� "#P���]Q�_ƵZ��c�8(F����}��Q��%��k#��"�*V�%��b��ZE�4A�P��X�Y�n�<���V�@T�l�!Kq�������L��tK�s�hH�}K��?߼/�E���=��U�B*�����np�j�B�4,m;�oXO�(�n����k^*(��;?dp��.��(r�<{�n���&����Æg��=����~�`=hڏ��
/ƴ��7l��
���9�9�Q�f�z�b����}/4�SS�҆�5�"��`|1��T��{c�+��\��_��X6~@H������zy�s�׹SVc��au��UD"�b�”�1��Qio֩�m�=���;&MA\f�NI��*����>$#�u���;[�uT"<�۬i턘�#3�jN��T����o�{d�H�>W���8���?�J��#d|f��p�ɨebX٨�+7�p��;��Y��W��̤0Y��3��rE�D'�fg���*~2�͎���qo�M��gN�(��뎙��9|����_y����t��d��^��?3>��8I�߇H��G���p�����vmg
��Ee�����.�n7I�z<�;pb�� �
�!k����Q*�0
�
}k�1�"�������do]��)����ܸ{���fON�'�����q�g��iP�u$�n*�T�{�Q��.�+�`.�x�d�,uD~�66�t{Q {ꩋ8�x
U����e��gQS�MD�����ɼ2
R��|_����M&e�;[����O>�G�|S�z,߾���ۘ�^���o"7=�;�no�&;��qg''�$�I���y|I'�pe���mn/��#x��𡏼��;R?:�wTf���I�ζ���@-O�,W�� c�U��Mh(�Ȼ7�y��R�*"u��4+.q4|S�	yTu�X� �ӊܲ����ϣ�g�$�K%TDK�Q��0I�T���|9��@� S'Oc:��}:;�o�c#�y<��tT.7M�+�E�.�ͨ�O��|�UF���$U��D�ϣ���J��12��8��&E&��w���_Q߾�(
k~����d?Q�U��֋
X@��
���RL��H^����G�ڃv�4*,.<w�[��^䃄��z����F��u�$m�`�Wh�*��щrG�xW6kx�%L�cx���w����r�ʉ��(�*�-���h��_԰�cUߤ��T�1
�Sg0�\<����
�?t�F-������s���`?��pv?���b��tܮ���0t��7��/�7n@XX���bw+�I�%����C�N����C(2#ȫ
�r��Y]�7?�8#�W�ƅw��*��/'�8��r�3lx�$�
H�N����p�`�]@i��o��x�7t�={ͷ���9�����GW�S*W2y�T_Nj�;jȊ��$F�~,N̡]v0�0�N����[���(cu}c�Ug��IĐ�e#��jR\���_EA���$=�c����������a�������D�?:�D,�by92Hr�qR��v�H�W}�*
��W�7��S3jzg�m��O�S��
��ENҫ����%4��q}c�J����hL_�&�C�\��f����s�`F1�H��i�2��iz���o�����SM�����	��AvF�(�
�YӼH%OGs�x_7�o`zq��.���ݩD8�uw	��"+t��mY8n����W\[[�/Rۼ�)R�x�&��ed��(�Zh���o"����eͽ�b��	E�E
۵�*�k�,�?�d2~0=9
��gg�Q#Ȏ4I^�8$#q-�)��H�'	��UM�E�}����?6,ݾ�|��������VD���ITUL�Sx��Wq��qe$ۤ�s��]����7ɾ��k(��NQs�n��#�N�C�6os�	ȋ�U�O<pQ��\���@Z[_G*���:��X_���a�d•b��f7��A{�ޯ�^�a�)�vF��6j?��?Ⱥ�W���r����?$i�]pnr�st�N���ћW7�~��Y��,ŚX"��`<E�[쭈�֧�)Yasy�������)kҭ]Sے��癔��H	&��M�?�q�"�.x>
0q�&�a�ܮ�����A�g;��9
0tEzkw
�o=#�a��,�f�V�2'>�>;��77�s���5���i?���SxNě��}'��v߅�
��np�>Pe���D�-:)H߄�a��F��2K�]az.z��Hl��w�hj0����&�'?�k7�(�
��.���nf"m*3�4��
�whx�P,�`��h(W��t��
�i��[f��a��+�{�@�e�.���펥~��\,�񱔪�i5QL�p��2�4r�,⩨��=����!6����#�q`{j6��'��X��N��M�.��"���%�sc��󗱲���>�@OP�wְU*�[����[�`�	�E���l�/bv��%���B:5��GN �Ka{��yz���eE��+�+���}�.�JkN�IuQ��Vy�m��)���dk��
V�Y�0F>+�i�
��f��
�B\�i
�nol`��1�xO�0+[;(U�(����j"n@?b�C�<�p4ɟ�����E�=� ��@x9_z�T{;5�l��� xo#���B@��P(�P9���z�Mlܹ�H��Tlc��2j�
�"ݿ��	��%�/Ap���l���9��H�k�`d�L�'�{�l K�I�ry~���9uX?��fws����눓A�@�L|_�Y�����"�жa����׾3f����mZGƃ����^�`?�0l���Q�t��}��A�A�v�{�a���Y���&��Ng�|��^y}
�69��z-�a�v�D��_U�#EU6�)N-��9�u<G-k���
:t4Wk�|ߑ9��f+q1o�ϭ�#��!i����
����aψ;r{���3����7�KUب��<�//����k��<�i�D�S�+$�09��QL2�������:I���s��`z��	�ql΅�����6���ѱ�HLI��TM��~�d��Z`B�\U/�0,����G��D�M
�^<z.���^�}��1��?J�!B��B:�NjW�I�����,=�����?SD�-k�5�B�)�b�����FA�_��[DY	��$F/�c�d�e��/��]�Fu,%eGi(z�2	e�W��A�˯����+4�c���
ln��C
�h�������3�ި����U��=���%Z�ݯ�H/=_3��<�Z$C@!aw5���t�Vcsg����,*dd�^ف
�9�Í%��Vax�?}�H�z싻iC�`�T%KjX�y�u���o�H���c��Q�l��-�Y+�@@(���:�`x	>S�C'0��o55�ԍnH��RW��Fvl
��&���[ʳ���ǾV�!ej`&
/��١Rk"'9B�M���1�Ҋ�bw �+
Dzy}F<AjD��h��F�]��N\�y}��ۅ8nl�����)!��c2�F�װ^(#�����-&7��B��x�Mr��a�K�8��s>#	�!lB��*�D����:�u8潮��J�K�_���w�}���=h��z��g?����ܫ��`���A��썯��¾m?��K�X���;�}�0�4��s�����X������P߹��w�ǻ�2�i��{��^kr�.��rewn�`���f����r5�D�骈A΍i���b��j'�BYΙ~G�ߦ2Щ��Y=������"��-�� M��E;��!yia@�v��Q��~��uv���@�V��
�����f���f9c�3���uk
��#kh��M�;GF�w����I�뻠svG
V�k��Hk��sT�47x�$��	�>gr?&���^$�{����[���+�zD���nOM���G.��հR&C���O|��Hɾ8�����,o���|G2�d����X2-e�$nbbcc9~VE��(�g�M�:��!�aح��vKC��j�

t��v��V�^x�N�O.=򱴋H6N#���?��o��o���EU���Ʌ)�k�'�����ƒ<�
|��L���:^x㪲T��	DI��|�;��ڭM2	q̏e��u��5j�H��gn��e�o-��I�[Y��o�G�(��csB���v�=u���АJ�o�\�N���X4I6f�ZE�tO�z�d���6��X"���$�\��F������vQOC}�<�i�Kn$��O���9��i	
��]vO�c�-�kjq���t�]u�6fm��m��E߄�d�vC����
��Q�<¢{e�<�.@[�G+U ��־C���F�`8��+yc2٤֋�
�1ygć'�^ �j�~��>�(s��0|F�G��7=`�w�F�{3U""�{�-��l���eG��'�5bQ2MF\%AV�%5�:F!id���A{�� � ��pl�!x�9�@��q"P���XNH�I�C��6�A�P����~��̗�:�"v��i�t�c�:\��$?F��*�<ݞ��1g����a�E�V�i��d҆�,w�hf+39~�1�0���g��֐�����fO�ڸ-~�����n�ѺN�ⷿw
2unD�x=�Q��t4�*��Jd[�m�#�*�{�~O�Ra��2��ɶ�vTF\�C�Q��]����7&Y[z=-���+ߏ���1�Q���;�x���5�i˞�s��?�yR�\���x��-������&�ڰ\�a�
R#)m����3�Gը��l8���9v��)�bB�d��5D��':8���`��iG�v�(4���y�͝�&��(��I��Y��G>�����g��:5O>�8��VѪ���'053�v��եU�g�R+���L����G?���Y5�����F� ��pڒ�d^�a��#O��I(�ib���N�֪�K5N�����ݍ2�y�&�~�CƐ��!�s�O���e?�"�Z��Y��C˅6�@'��Td~�@)?��N��x|�,��SZn&���x�4�;N;��<�+��f'�Lr��*�[8z�\C��m��p�e;u�����S�!@Q&��fs9���/�@�\�,��_{d��n�1�f�:$���@��|b|�����2�-o@2��\2�OR��B�%B �h�Ef��T6Ap(yn���#$�s[z͚m[���9Rn�T��:���ɳ�IO)X�� �35��ٹE��$j�r��&�I�2a"K岆q���&ٳ�%<qj������s?Q�p��<����ҍ��;u�=��7��(���w1�8��r_x�y�Np�oko�2fJ0���`�!�}��}��%:"8s���8t4,R'*d�L"+7���ޥy�	2z��7�|gϟ����N���ON�A{�ޏ���_™�G�8vwu��[:�H�kQ�|��I
�]%�M��Im�@ܦF��h�vG��*uS.C¶��GTF�G�CeۺɃl��7<�wvjfV�:#��`�ζs�8&�@;(h�ƈb���J��W.]G�e�Q��/���lF��ő�J��2�rt�e�Ԋ���-�.ɡ	��wC��!�Q�V͎�;(r�i������}���IDl�7�-��:���t�ฝd�J�kh�K.���G������؟LD1�f��ظ�[�w���N�[��"���:
b��P�	�)`�"��r5�(S�HnITm��>cn��%&�.ƾo@"c�oZ�G�`���nu?$E��u��@���k�4�t�vo�)ڧ�ʯze<���"����9����g�E����_��St?�s����ڏ-���=�\B�|�C#(m���=�
��������XC���6
}os)俏���~��}ˠ��'ƀ+�9pD}7p�AL�`_rv���m5�����LZ^�W9�tT~�R̾\��4��K��i�U�;��?���Kxwoˀ�sz�3�rM�K��K�!���`�Lhj��$ZzVb:"�;&$P~\o�Jy��;��0~\�_�I�?���/j@�9�w�I�x�$�S&c1�'''�~T\�iDˤ:1=�q��#���ʧ�Q�,�\&�A:I���&'�����d�$ժ5QY�'��uwi�3��x� ��,&8�%D-[
�Eb�_&����J�N��hi�c�X�)��Gpiy�����M^�8'ָ�#��-0d�T�I��ѣ�)�P�O��C�i�^y�E�$��g�'��m���G#+�
����%���&	��*�JhTT��J��G����[�j/\��������WW��!5�|LaΤ�U4�PT��Ǐ��"FX�V�Ms<X���UW6/B'��yx���ck�(r��z���cG�XV��L�e9NĄ+n�0A0�"��"T�7�T��i��	,H��:��FTT'��	�.�,����*H=2:��dn����1:�r�ei����+�hBlG��	:/v�L*�kX�Xzqn9F�}S�SA�D?DX�c~���F^m���5v� #`����*B'XL���<mD�6�
 ��F��Nj��x����x�jE�z�Y.W8r�,pL���펩���<؎��)��cQG��!#�!�����wU�C2�)P���bQj;�ꭨ�Ţ�AO��i��G�_�[�w�x�`�݊w��9BT� �}�kr�Z:�Ȝ(aw⬬xV�4pd��;�F�z��-vZ�Ν)G�\��xi�X:�!!��i�lS8�h���{�:����p�����>��zb��R�}�^����l�b�t/���Qb��c��������Z�� � �J�kC�4g#Zop��mW�ې{���=+���A&���?��~�U��?nx�v��^�dmlL�A/ֶ�o�����`��Dо�M��8özp|�GcE7
5� �+�,�Qb��7�	���x�on�pH�mK�
9��!$��Q��m����EU�N��:J�>��S� ,b�Op�Gq/��ŋ%��������\88߼v�|��.n\�Do�'�[�"�7Wy
-���X�}C�94�7�ɑ���V��ڒ�'�u_⑎��1�O�'@�[���X���Iғko��p�~�H�R٧d+�����-N�;D��N�>��hH�i��l��#Hh�^�Fp��uS�K�׈ޣN��"�N�+%\Ym�u$n���e�B��Đ�䛋�,�ԁ"{�k�l�d�#%4����4��v��G���@D1.��F�>U�2�k���tCS�J�þW�\�Q歬a�G��x���[fg~fF�B&g�C���B�WFC�[on�`nr
'�N�s�[#��Mp"���8"�H�%��͖�#AI�T<�L�����r��O:�Ž��l�i�T!Νh*�*�%��o�oa� j<��9:��x���H����Ѱ�2�ydž�ʸ,�+�,�(e:���(~J�FY�zU��i2:�_*ӝ'?�79�z�n�/���2l�Z�mO�k�M�H�(
sn���0K�x7f�3z�)h�i�++%�V�Ҏd��O�CX)�#@+Wy�6��l���D
r-{�����,q�ˑJ��S@UB���)�M�\�:��"	���MQh8�_�v����p;&,�O�o�T�4Q�Lػ���
#���{6t]�¾��M�zp�U}c�
S0v�ꂩ��ל��Naa���o�aE-�������a��/�}�@|��]ˆDv��� D�~h�e��Q���`<���܏��f�����ȥ�g%�C�I���gcT;�ӏ��r�D&��E�5n��_���/[���0�e�E��REگ����D��b�=��R�4Q�!]����>�=7ױ/�c��F$�˕t��e\[q�z��9^7O����/���<��ڑ�*��Fۚ����L��c�\z�g(Q�aI6���
���7վ���@����B��]+A��@Ds�d}���u�xMIz�"�r8�й�T6�8'~����T�DJ��1
����.��>Ǯ�'EUv^���7ōu�5aCff�P";� X[Y^&��Fç�d*���1�=35��#�IFj����N�F���
�9{�����M��S#�T��oex��)���O,O�@��Ϯk���bT-������>����Y�����&�!��u���p�zom�*��q]� �gپ7�s��A{�5y�K���:��gq~vw�쬯�!�e/Z����ӳ�5�3����ARȰ=��)���+�H��	>2�24U2Hʺ����&w�Q�),��Ǧ��	lllr�)*���k��UT8�L�8[\�Hp��h���>����d�G��G��q��}�5���PC���� *1kpRhT��-Lsڰ��d�j�� y��
�iafD��m�
+�6��*d��-c�k��˚?	�6f

��r��k8��/
�}U���T*&��Mƿ��$U�'U�8���o�} `��(�k�U@�L�U�[z6�;�R��s<��c�%�Xf�:�,�c�5��1b�.ﲂ'�Q[�^*"j1'FF3��B�������3��ׁMW{O�ˬc���H$�
�z<>�[:�̈��3z�`�̯Z)[M:*d�&�s|J��fs��!��`muCé�	޻�2����~�]o.�A�/������G���u�;�F���̏!�V�Q�c+<��nu�w�=`�F�`0�s��������c���Z_�uB ��̶�1׃HNh_�6Ȓ�5�E��܋޵1���v�w�߽c��I���V��[4�] gH��}}؃n�-�����</Z Y3V��Bf��,R)6c��g��(�r]#`(��0��������"��;��=#;�P�F�>sLbp #߻�ޱ���	J�xm�RS��F���0F2Ʉ%ɩ��tY�ë���IFT�A�����}V��QǪ����؉���WuMD9�ª(j_�&Ʋ˧id�U���1Tke�O+�
�f	��h��U�O�#O%R�N'��+K703�����ic��G����=_��|z�O=�����{��?L�c�>1A���ދ�Y�׽W�;��{�;������N�\��?�o���y���Ԫd�vv��"�i���#�Hc��g��6B]1X�qG�N+�*r�$=�-�n���O�P��&,
iuTTh 
�"lI��x[
�6���|��%�T�T4dO�U���c�5�K�K8��
�}|�x���E�E�뜍�u���mk
8jؐ�!:�����H��q��h��H�]S��N'�c��Q�OA����ۄ�֛�����vR���!a�dێcD3:Zޱ�ff�RZp��D�c�D>���>⌓��5�9�N�065ɑ��eU�UPTU�9w$-ђ�*��E��M�|�j�
�4�J�?A@�?	��$���:rײ�KG34|�W��|j��M>�(K�Q�2�23u4�ˡ�Ϸ�U?p
c����� s�~�7���O��Oc{sǏ�c�L��s��� @na}m�Gq��}�.^~�:�ҿ����o�1���e�;��_�W��?E�s����(�'��Stn�l�;��G�����~�z�[�������|���Z���'�|�����~?�3�֨��|�&j䞀�����x��V�3�<džS��v8NVpޕ����ă����/0I{�A�s��?���!�q��Yc
����8=��]6prRpv��G}��@-�im��x�R(��gq�
���ʄ�f~�XfM3�ڿ��fq#�yU��cvu��U-K�*k
�M�6DA���,���^�"�^���o�YT/�9�p��T���^��Ԗ�n1�E�0E&G6�����]��5��H\j�hq��c�u���Ӣ�A�m�{�m�X	��<�J58�QނI��_(��%� ��{��� C�CQ�j�$l�Q3R�k�.�L��/�I~?q�(R��8��+ +���.p@�����
ޮ��wM�i(�}�<�9����ci�l|6�x�c�*���&'|?�wdr�!5;7c����3�~�w��lS��눥�x���c�B�m�ŹtgN�6Ǥ���BE$�+c������L����@:����U�y���
��؄���O��zD)3��G�`W�����R�(�0�j
������^��R��i�F�οW$�P$���:M� �8��V�A�"c�JG�	�%�[6gSs��L��z��r�`�cN�T�\F���P���V�������:�����2�;���O$9I�*��il�x4�l�8����
IH(�0�t�TBe��h��˗���w�E�)a���N�<�O}�d��Pթ��#-B�W&bF@a�{/���3���|�;f�x.3f�o+��$���Q��$rĵ2�4���ʋ؅o�-$?X����ì�Y�#bs��2��b�AH���{&|��W�y���q{e�S㘜����%=:���ηw�أ�q��m|���4rCj-��׿��2��������m�Q����:wwn��?�i���&(����+/��w�|.���	c��L���WP�����3��?�2�7�p��-̢o�<`3R��m��
�~�g�ߚ�[+%��mp�s������:�?�v_�ۅ��}����W���Nҧ���U�7ˀH�L7��3@���Z��YK{'�
^�A�~��{A��]��b��~��?Ѕ��{|�ئK֫�a�"�8yzZ���7��n7l�k���D�B&Q�M��=+-^81������5��E���_�H�s�k�c.҄Dzf0��W,�e�<ӷr�n�>�=���oh�)|�����bhV���8�-��7��
N��zUAL�m��O�n1"�u5��vѶ(�D�M�0��D���p�D4;;���?���ɟD��2�^��E�3�
]���("���ih���{K��0�_��_�˫�s榞P߄1��uMhD�m���t�K�ȉ	��W�̐��>@����s����D�*c&��.Cob�
o�U̳�M�����sr���݃��l"#��憆;�ggɰ������֥kX�e��
��H�G��������46�������A�Y*��%!c>����[�x��	1di�W#U)�����I]A��BqG����ҧi�U%�N��j
�Cv��h*c�!g�����u+-
(�*t&G�$!w�c�<߳JsFH�)��;	t��~WDt,���Z�>�ĈsID|ڝ6��ua�����I�ka�jZ���ܧ�|�l��^J|�ȑ��p-�kmc�^[�ڍ������
yZD^�X}|����w������#�M�q���ON!1=�bU��M�[ I����:k8Z�ȷ�%�y�j�Aؼf�\¦%�H�'�r˲�m����>{��^�H�I^u�/�
�\�u���t��{;��~�Osn���ǩ�f8Ͼ��k��?���ILMϠT,h]�L�	:n/-��_��|'��~�s���4J���z��i:W��LN�����W��p�l��by>5>�t�2�r�Z|'�t>H��T�r
�t.��t����d�t
�x��u��Β󴏞�{��@�^�M��c��n���9�!�]p��$>xs���|V���-J|(s�&<J��F��/��x��%��jMU�J�2=9y�K.�|�)�b�X���?�î{��޾|�ٮ~`c*#���e,[ˀyR��=j`�`���%�{`Y+�2��#�|�w���ʽ�Z��Ýc<�ʲȄep�x{/������:n`�c���LZ��+��2yj�,�w*B!�C��(��B�!|��<dS�\�L���ϏF�	Hr%���,
_c�}�(zv=
�h��]shk��:p{AR��$p�\ZZRn�l�L���
~!@�q��%u�By*�+�Jh��4�4/I�2�Ѥ��8N��X���96�ѷ�`�$���y�Z5�9���c�,�	ة0�¯����D�[�B!we�x���ed1x$LG<�ro�<� K�Ksv��ڃ�~i7F���q�

�1�7i�}�l
q��U�C�<q��Q�,����8N�0L�b:�9F�db��;u�\G#U�j��n6%���*nD�)��pq���F
�Jx�/9I}%��C�[��8 r�2��L�g�w	e��u���A��r%e�d�I�+�m�.B��f�2�*��qP,o�DD-��	))�	T堬�\�kk�9~K
�f������sޑ�i�5t��4
mq���M��2�"Ư����\y�l�
��lǷ��k����+	�*�`�q[d	kkw��K�l�151�����3a~����]����P�I{;�J����nr%�K�aq%6��|d$|]���&�%v������Co{��[r����`��9�rC���<h
F.����m�-:�>��8�f�8�G���1)�����{���9L1��܂~�p���>ͻ��Sq�C:8w��=�)o��q
	�?���"�������M�#B�s>�4�����^m�vr�F�pG�ȎbR����f���)m�||�����7�W����O~�	4� �����I[B���Ñ�Y�q�
�����8����_�ų���Ͼ�
~��7�����'���[�/���F���GϜ�_�7�u��]���v��(`x�M3���jM�@���J���l�q2�@S�z���^���X�D��;�y:�w�P-k ;���3���V��T7r/Sp�񮣚e��KP��;���Α0��qܹsG��$��r� �z�ZJsss���>m��S�N�Q�zz|8�I���n4Cb|�#�D$��􎦓	�����0��0��d�&8jq��Ȥ(���]�"jK�3��p[;�<�*'�T�g�ŗ^��ʊ.��G�\Ɲ[���}������@n|Js�<��|������s���Gs����A��s�d�����#u�M�}+bΆ��BI�6L��=�$���r���V���zv��v��ܽs��-�,;x����Gc��σ���������"�M'•�u:�l 2�ͣLO���S�2�yxk���L6LU��A�b��Ml�L�	��@�G���6[�,��ߖ�Q�I�k�8��kkk:�J�*�ͻ�y<R����k]'�A��:J$wH\M�i�<�Pi�hC�0V�+J�d��"����X\j=�P�	��*{/�*�F�:����Ǎ��mT��RS�8��,�#��cd
"��&3s�Y��ɠմ$���;H����"�&�&�y���j@x^L�G�E����Q�maecW9�g��M,L͒e�ǟ��_��c��n�V764��"2GH���?-b''e}�=
��M
��g��X0��mĨ�´��('��8(݈)܋D�������Kl�a@<5�r2a[i���sp_A���C��{�?�|Q�u��g�����El���'�|��3|o7��;Vw�A��[�5
?�� ��/$o�>���fj�8�c���I-�q��m|����L�s?�S���]ܸ���I���_�S�����/
�$�mla���6\_Y����O���������گ�����m�Q���vgË�8�tA�oAJB��f7��	�\��&�q�e��C����A�x>���Ԓ����yv_j���c>GS�ʵ��������X �w��
:��y�H��P���{��խ���<d�ˏ�z��q<��Ú�#���2%�����|5��;e�m�>���}R��!v�id$�0
k��$� !Ek�D$n�5d�`G�#�Ha�N"��m�6;�`�uM�j��Q����X_WP'�/�t��3Y�xmq�1�IN�3�SBc8z☠9d�YNď�ޑ��d�Yp��q"�j�rݮn����V����?N�Sf�?������O�R�	-�?��-�_q/��s�L+�I4�ɰ�%z�ȢZ����}f���24~f����Ė?-hX;ʢ�	$�N�rlvF��or�(���+x�c�s���]N(̓5��E�ƾ(�I��3T����FL.D����+��>-n�4lX�%I��G�똨��\�$�N���� 
�D]��0c�k�2��%�F%N��Z�N2f|/jk,�
��d'!xu�*���IsܞQ,��pX�, �?���f�S�B���>jr����X��p��<�&׷�x���-h�����P#H��
��A�<�����L����N�s�o�Z�ז��F5L�<�a�Rw귱���O~�#�H�C��Aqe���c��5v_��2�ڶ�T��>qĆ�'x��{�-`ڲ���l�z��&0ܳ�0�����q@�=:(��p�˥�'d�0���:���;��i�{��E��y�h*���0���W����i�ɑQ����n�u1�a���d]��ڷ�_ـ��5|�O���(8�j�Ʀ����.E�Ν?����z���
�D�=�1Nǎ1��]h�1�����e_^`�N�� �(8�lNHW��/�n}��BS�`� �]����ٰ9��'�洘�A�~h������I὎U�qDd��{jS�v���9��rw	l>����s�'�.ۉ�v�����C��+���pr�%nD���i��1Sp"5/�Ik��&c��uS��>8���lia�Ǒ �?���im�('�h:��O �cw�ܦW3�l:��|�d�2��B�~��p�G��n�/���}�}A�Ӿct�LV�:�H<���F̡�p�� ��Ȧ���y�-z�v�.��ù��9t������| X�;���v�%$3)��y��q,Tg���.���M�(3�^, A����hЈJr;~�(>����?�y�OL�Sb�s���}��49��&��R��P��I�8�̩[�L>ץ�3Y��y:&}�'ɹvI�Z}3
I����*<���e�G�҂)J���77�w��r��A✋���13�7����!e][���82,�5���iY�Ɂ�q�ٝ2���:�6��F0'�af�s����x�q<6s�82��7�qu�B6���V
;51`�L#�����#J$�S	��H��\F�nrsZ-��/!�j�θ�
Ft�F<��y�F�?������z��p���+ea$�,��0w�6���0�Q*��|��v0��sK
���ف�@r������2�'��.[��P��ˁw�c���O�HD7`r����7��(��8��a���܆3n���a�Q��Q���t�����=�O�*��/}�'�ͯ}U�6�U���^�X�d�h����X̵��f0Y)�VR��G����y����[/?�q���-w�0����
�c)
u��+�OwjrB���f�������X�b��������'��;��x0���o=�g0�9���$xZU#�Pt��Z(��m^�+���1�2���5���b�t
�l��-K���rޤx���Ec�C��e)DB[�Vb1U���AT��ۏet}��jRV�ʱc���u��P��wʞH8���A�Us@3��<%0��B7E%W�H€�)�YfR�Sxt��- �=��t�y���y!�p��P���u��'FU�����)�2zBA(�cw<�F�H�>h?��̝���m�߾�o=�,>��E��Ayll[��V����S$��G����O?�:�&������o|��(r���_�%2�	}�%�ie{�,&�)4�H5d�q�88lp�b	0,pܓ���˘��ܟ�
0+Tʘ�Mh}�B��F������52���:Ԃ6,dIG'��"�l�Md��v
u�{Ƃ�L3W@!!�f��M�7�0��%r,8jj����[���5�ǔD��_'0��Xќ[9Z�mj����"��?���i,-�E���.��#�1���^�����|e���-��5��UH#�t�ȹ1lnW�r�M����pgŧ�aG��:���О8|V~a�{/�Fr�&�]�rkW�������[`&͵ʃÚ����
3��m�[wX;��m��<���Cl���Ed�5سی-(�M:���^��~m?6�d����wQ:F�Smȝ]���ڭx��q����P�4��_�5�ÿ��q��U�?q]�8<�Q�}2�r�+�K������^����0�H�_*s�]cY���9:v`q���ڛ\zW\o�>t��&�A$K��	α[8�
y�P���++�Y0%��^v'܏">`̱j���[�-����FC�
��P�J����:�� Z�=F��I�5���T"\����)cdd�$�v��xͨM�D���-�I!Y#ް����gl���ҙ$�,�CZ�
=��o�
���o,�M

Q
�>��(��
 ��eүcE�����D
�n.�p�yҰ�lj/��͕-9�j��h.�cs����4K'���� ʼ?��X����	�Y������z/���y|�N�������s?��>���Z톂�ٙ�`.w03=�ۡ򠽫-B���:�K��sg��8>9�"
��\VC�zs�4^^[�"��$ͨ�8m:Xݩ��W^�g~�X���98�"������E�����\9R$�i
��$�G�,'��|'�6���L"���"ڍ���UE��/�� !B��6��q�����v�-N�Y�K9i���	�K���s� 3&�OBx%Z�aC\W�nmN[kf3t�95u����P�K��B�c��t����>�$>��y��J�&V
eT�>�n��o�.,�	=<��H\}r����g4l����X�r��4��<����vZF���"�V!�눝1��R�9���-��	��wo}k��[��a�o]���.@���!�q�� �Ө��5�np۽lž�����F�"��¡�j�y��o�9���!
��n�u�ݨe�>��Оv������vs��l:�������|:���+�o��SBBXOj�u���ff�T�X��$����_�`�����v�18;go鰇z��}�����t���v�2~�6rz���L�(@�z��<`�(�N��ɬ2p�l+�5�%B�;����ݑ.(���.0��F��`-���z��,�qv�}wY�,|5�{����3=��<[d%��z-�T
�ǎ�%@���$�z-�֟Je;A,�ܣ��=�.o���v�CpYb1FL��xu+[EL�/X�rӗ;\���/#P��M��9
�^�$LK�.=JA	��&�L)�Z�7M5L�%)���R ��Oх$�"�;��@x[�ݠ��c�B��X��W��	6@�1�!��c��"��6���l�>�4 �D�}��7�g��=~��Ń��kbd��-s,�W0����c�'p;߳�
퓜���x�K������1<q�4NY�q�\V�41�yp��Av�4�R��(��
�Ի��J	�[���2��r������R�5��8r}uI���Κb�V]n��+ƣ�t:�y@%n�sL�$p�d9��V5�ϥ���
��r#�n..���mqnW9	�V�93��n�����<�
�؝�A�W�%a{md��s;t
V8<��/V�	��-�B%|�)|����~�	���#Y�U�t�Aj�����"j�"��K���M������|[ZQ��t��!u��X3��h�H}�\�A|:��bK�'��OlV��v_�w��Z�Q�n��A�������s�m���"��|*��'5�zk8�)a0%�����yG�O8|n�l�Ä��8zC��8�;W����s�x?1K��4e�p7�<���Bc�A��.�I��g���W��^G��@4�é�G�oO>�(>$�W\���%���˿I���/��Nͼ���3��w~���o����u�Dr��	��5 ÷r��k���
�E��b=l��w��"&���I 8��
+�t�t����זA
X�@��T�
�u��d<��~N��4WIT�<��ݶ�H�p�,E�����-��F������*�I�k+w�<W��GAC��q̒��\ag���ጥ8V�I��\-�w>A�2J�$�H�L�*ާ��CjY��b�J���-��O�.�o��
zfN��h��uN�5	�kj�@0�=N�I�i\Dc)[��IzJd��cY��ۛz�m�8Q��ݶ&M���7�|˂�/	O��'�<�����j����‘)0�@���y�#!tk���vO����C/��t�{	�}�}���R��Źc(7�N͙���> �~�MJT���!I6{��%ޛu�[����q񸩵#N�[˟@�+�&"�����:��y̎��{&5]$��M���f
U;�jlq�)��SصZ��H"�0?5��	�b���3��hqL�[ ���A'�87��,�nބO��똜Ii{�@B�X]YS	ns� ��̉6DvgJ*��\�륢�K�_�ݦ�J�45@V1�B�E��ѐ�¶G��4ɾ:��+�U��_��X�}
��^ÊK���oa*��/*��p��c�m����ǐIUqᔋ�7}�:QlU+�y�i�B����$�cq>��st��;|Ϛt�y:ΎG1��a2��h���kL��:����-M�����C)x\����]Y�#��{�j��DV��0I���Y>��}Bi�mG��1Cî���l��-|��9��L�=�a�~��	��3R�
��Ht�z���>H$������
�����?�+���:sa�Ɋ�����?3�� �:=h�ɿ���`�������ٳZ%�������~L���C:�8~H:�Z�b�w�Ok��s�Ԉ�m���~�}�L�G�>J�	�n>O�T��ܢ6֭��2��"0	�
��2�ppwB\�)�d�����g�˱8:�;�و��Gz��S�Md����6��\S��@��65�G&y�媉ɲO�ܗf����j$2�l�|�8i�R��uLa�d:���qlln"�i݌&��
J9�����5�GU���d���t'a+�XBA��<�31t���״ء�44F%��w��n���tYC5:<vd��jiT�e�8
l�$K�w��UZ{	��W�E���<�N;u��n�w�4F���V�^��bd��(��L�I��6�����n���q��ӱ7�l���
�dw\�u�-\_���>�AY<��o�R�V[
��;���22d�>��C�$*�-c�0��LZ�D���ܜ�{T+4�EU�#��$y�R��ު�g�Й���J�I�t�6����/�(��+t���cသs�GE��N����8j�p:��4'��hQC��k�,�L..(��^
��J�{:�zH2��8�J�\,"ʭ.Y�"Z�<���le������e�6V7!B9����D�Y(�Z]�T��z
I?��|��>��D@Vj�����v�C��}���ҝ:��.���gǐ��Q��ks�s@>���w�
��F���B�F1Î3���fA�s>[XXT%�X,�t*�9бDA���o�'���]�Ƕ����F]�^߿�@i��a�b�~��})�_�0�08Vkpm!��z�Ր��(L�x�E�Mb�j=�Z]��1J;b����$����D���=L�}9v�g��n��o�仁Ngj�B,�a���u0l��w=��zi�v]�	A;���v:67ŰNQ;���2z��gXE9'�sy�H�Xa]��eo
4۹�z����[�|1��?f=e�h ��i�Q����-3�;�2z��k:�ʄ��R𜻦`�<c���,#J#D�+Z-�N�cciݷ��|<��ΞG�XM��F[��Vp��-�
N�M��i��H��w6�Jk����m�[��)5N�9���8NL����5��w��Y~L:���9&\E�[�5���b�&�1��/]��y<n�q�E�}�8���>@�aU����>�]0����ڻ�䎟<r�����GЇv�Z�$�H�ygI��Sd�;X)WD��ݸ��(�m�$����X�4O�ꕢ�7^�>A�<�/����B��E����3?�M!�q?)��Gh�ol�sE�r߻\�,Ƕc�1,L��D�K t{�Lˆ�K2�c�<z�J���3'�sb\-=a�|#ֱ�9��9j�sq��'�N��A&���;�}�c:[�@\ 8�Z��4�TaQ���I&�;Hgd�r��IH"�U^����,~p�b�&�U��T��"3�����{!u���/�v�����X��1LL���*��GDn�FU����ISq:&݄:�6תȍ'8��u��(�87�{L�(fe�9�|/#�0�]���r�f��g}�|�#�����p΃�,
��i�����^�;j�(Vw�m�v��$�a3�}�SB��D�j��Vq��g��S��׾����I��x��7�̋/�y
�]x�+W	'���Œ�\�v��:Xϋm�@���a
|g����塇P�
l�ʗ��]2I/����*�2W j�3a{6<�N:&q�W�c��Q��~��H��(yC������=I�r�G����)N���`��*���wRD<�)�!���G��UhI���3!��PUO�(�Q<���
���m�����aY|���I��t�=�m�#�DiM����@2.�
�8�ɧ��O~��OAY(�۫� 	�j��{!�
QU�s���>�7T���/���0fm-�^�L"-R�"��L�e����}p�%QB�T���yI�	�\�k��z<��w����;�O���H
\�5}��r<h?����{�ޱ&̎��(bz0O=vo\���d�<?���K�\}��]pI�]���I�t��_~����;�o`�1C�p\[���Js��Z� ��`�N�
R��5�]<���:�f\�V�[�n�:?���2�8�'���[���Ɇ��\Χ�G�F�4��q*&!�R�G�*�6^Ks*%�2���HB�E����D8x��%�N-�2@�+
:��7�q5�1��hu�>���cүRK�%�q��J%\<��1e#b.��z�y��x��+Xk�`2��*	��2!Ei�ꨛPe9�,@�T.�m��05��O<�ƕ�&lBd��$	h�Ij���i@*�'9fo�VQ��J�Ks�X�r�I��ư��l��6��8��n��U}؛�ُi�yp������T�j�a���~x/�|?�v߇ۍ�͔�+�ԚZ���Ⱦ�}��������|�����S�-�\��[�_L��������3LOLX�t_����nPb����n��E��`tl������
|�N�M
�Y��[��i�u��aw�S��mB�Q���p�	�۠�Rp��%�Ԫ=mSp}�1�b��89r���_�Es��>�ks𶌳`
�	�sd0c���C�߂5?4��=g���;S�ܳL�G/�?�O�z�6��>�E�`��e^}{��4�o�M^��v�`(�I�_�>���\!$����m��t�&���0�:�Qq���n������!�1(�ZǾc�y<h��U�U��ΉA�~~�011��x��x�T�ى8>9�|�E���V�ǫ|��ח��O_��Z�{x��Y��	C%��:��(��7����H4S?�E�T���g��ET6s9��k�z��|7ӓS�v�&:��6����o5�"@I�b�*`�9&�!!�&���Q"��q).�%�q2�%DxG���ב�װ��Z���l �P��V��O��EG�w�� �&H�'��Ǐ^ ��сV&��6ǻj���U�0=���F՝q~.qL����΋����5?��r���*E�4� �M�Ro����x�IgZ�%�<�f����i�6�(W��Zr�v�3���=�(�?��}������~����Q߽]p����'{��ݯ�n�v�\g(��ӵF�I����?�ڈiW�'�_���D񉋆������;�;v�����A�xo�����|�XYk8:��Xp�����\``�ȉ������D�ʺ9��-4#�g�-\+��ݾu"F!��v�yv�0���~{��nz;��\F�.���;қܹ�3�����ȈtA���lf�K�}�� x�p��>o[�{��3�=F��`{?�9����c�k�3���rB��Z*+b���$��N��z5��%�Pw�Q�M�!�����}��H{,��)߽A6���I�m�����
�Kal� �c�x,� �\����t:���L*��V�tpT*��w����:��O�Q- �J��Kn&�wM[��)�|�
,��6.<�r�,��Vqbr��u������cX�yS�&S|���)��3c�>g0%��|_sQi4T<���~�FGe�u�<B`����V��6�6�����:��["�A�LP>c���S�Q�XNd�8=7�O=�!�;z^��/]ó�_�u�̝���l�+�Iudz�-��M*�x
�v��+�V�Iv���N�C��GZ-�k1
ǎ��j��Zm�߬k]%2Gd���U�}�X�C�n?C� ��~��/� ��^��e�y��Ұ����7����� ����w � �������dr��i������?���������\��ۆѽ�B�n�`�$��%9X���~���qpo>z�*�
"�\�u���$���IW��n`��akC��u�cΊl��{�Z~��Qk�
>k�T���{رG��9G�z�������Wnڃ�~j�ӓd/&p��0�I ��I�v��b��!���^��y�
��t��,b�y��(޺���"1%��t��Wn���5I$�L�2E\#ј*��M��~<�~/<�M���D�S�l�a��Q�z7���$���9�Y�2�"�M
�����jՊ
���c�K��$F�%S����Vy�\����]w�E.'�?13��H�r�4\4!�rq�G3do�d�&�q<1�>��'q��P���&�~������DkFL>g��Z��Ujc��rv>���(�E�+��e;���O��m�X3s�W��4㈓�u��(�v�B4�5*����%y���.��W�'��:�v����3����a���c8/�����c��<�:��?����;u.��+��v_��<���������ZLMq�g<��Ւ���3��1��o�w�����3�9	�kb��q7�Gm3hh���
�^?�v=M(��
,8
�B<��`��g�I,6��$_�:!V���.�oд�g��m��@a�%���Z���6i�7>��?����~��d���_��.�����;M��W�Ƒ�gѨ�4�kfjAɸV��D2���D�V
���~�:N9����}R�h<�1=֒:6�"�-���h�g��Q�>�� ��˥�X�ơD�-�h��^Y±�c\�T�!1�k��F�����HH���CV�o!��#FO���%YdhL�P�U����Km���}_�Ei�W��*ձ\���8�h�#4�?;��zo;��NO ���'Ȫ���2Y�;u�@b����
�`�k��$x��$R�zl���̉6AP��+PiJ}9�'�p��
d;M5�w�~t�9\7�n�M���*bBX��j�Af��bG�9iJ�F�^�[�	M �4�!�D��[ K��M��nzr���E}͇Rj��#N6)w5t�V%�I��J��\ 'F �F���Wh]� Zk�Z� ��]�Ƒ��6�V[�J&��h�f��E���E�\�ښ86�
T�H�����=��뢙, �Y?�R
%ޣ��
�*���FO�8�EA�}�5���6h ��n +��$dwm7�F��� *�QF1V�v��x������
V{�����\��u���o��W���7�}�$�j���0ch�ln�?35�گ�������e[[���������?���WQ��$�:o�~��a�A��؋�c�|0�w���
��֖1��t������f��'�iY�0���!?8b/LJ�&;U�p�o�b�fr�@Y���^n���v��>����a���{p/��}���ށI�~�G'������x���1C�O����DtZ$UJ")�͜4�M��^é�'�S����F�QW�x"���
t�Z�2Bo�����뗱03�Vd��f156���}KrQ�iL��wK�T�E��hh1&u�x�������*erWv� �U��Q+����F���ggg�T.�u��\<��JDK�cq�$�`ln��V
�#jh��`xK���ylm��A���׮�CO~W�<�mcHe�qt�(��2��E�R�1���
{��[w�`uc
$&�Sk�o���Q��h�g�qL�i�7ڜ8>��"'7�Vf�X.���G	��L��x��
\����[�"���OdeL�bB�#�Ґ��
q��1CI9-��
��:A
��r~�W�Z�H�O���V����t�u�ɱ$n�o��s�F=L�Zd���H�hE�M�(A��u�'C�ƍh
9��V� �Ȧ�_C�s鴑LǸY�FLCޒ	:$��:��8~�),039�GO���m��L,���akSz����M2H1y^]>�e�Dn��$+���b�:�#H�L���<�\GURS�(�d�Zm^{�AS�9�؅-�h�� )l�0+@��g^����7��#19��
�:�h���9ܜ��p�]�e���n7]1x�Î^�����
<s�����K&� ��#=�����U��<���������1L!��r�i�������K�Pc��v�v��}�h�gA���;8�3��=��.��y�����a�e����M�+rl���'�NJH��H|�~pՕ �/��|FN�?������b�gl��1H�����h5�Zz��>X����~�Kx����9"��++�	����t
G�Q�Y��E�)�#�!{B`rw�&�������K4$W��8�K������	��k[�[�J�4�D��h�����R𴼽�|:�ΐ$�Yqg
��-LesX&Sp��\��r�Ilo�B�N����vܽ�t�Hoݼ�3g���W��>�q:����ݬ&�o��ȥ�ޚ�Ro7q�lX��=9>�W^��gF���W�x	�4^��"�h�
?35��7/����f�LB�גF��Z�@�;�~��3��&a`�X�#pz/�V���W��6�d��lz1�>Y�9���l�����,�i�(o���r��<��_��ݏ�dB��Λ/ç��M�"d0�L��o�#��ߢ��(9#�I>e��5ͩI�7xN
�3��*A���>m�a�ڮ��:�:�����ɒ=�$�JG��z�BC��&ll�Y�%�l���!���w	�<U��eD����&��(�	�c_$S�r�>�1<u|
��y�j��P���A6nn|Gs��dʜt��鑵��Y"TG%���푡��n���*�U�&�7��0�&A�����(���N����&��93����X�$j��V�j�z��`���ܯ���w����_�%|�[�ñ�g�o)}�h: 1K�Q����g�?����3�W)��G|�5˚;��)`\�%��@�Myx��F�ϭ��	�.���ǎ�FF9���a6�^`j��'��6ʞ����>���g�M��a��C��x߀�}lG)���)��/j��C�B:G���_���
n\����aL$9���6�f��6�n���h��J��E
���t'=�)a���G�<��t[���sX��`RK��d%�~�^��
����| ���Z��=Z�f?�u;P�x�������|'�zo����Drr|���N���!�	rdx�,��,L$1FP�P�!0����1P>-����g�<�`�'@�Y����4����3�NћKi���O����#	��g�0��k�1|2�	z�y<^�L���^nh��\n����I�n�!�!k�l�0=9����U���;�Yz�s���ٞY^�Mzݣ(�+<�8��<��8���8��Ҕ�F>7�m�Í���;.���*L�Щ�:
���f�����-��yk����4��bοw�3_�h߄�U�W�B	[�q-P�}�$ur�F��)�#2s�Z��	s�LHM�6�7�K�R�[���9�N�"Kc>�"��I��1�
n�䠾�&8�2a�&SZ�)�\"�MeE��AVO����i�0Q�
�6ht�	ܦ�����d�l��`Ǩ�i�D�=�|����2P���'�CQ�M��q!B	"��k1�~���"ҙ<v�(v���=B�l�{���yYU��
yo����H�)d����L�2r��dh#Q�©Ǵ�r�*�/���d�I�l�8����S⽔��z�S�O�&
�$�g��{�k�y�=�4���n3����	��䏰C`����j}U���o�=��N������ƥ7������+���F�Ǐ���a���#Yg�nс��yL֘u�@rzv��ed9�4[%I�3c��,�g�>�c?<�
kþuö����3|����v��?(غ�}]'i���gx�p߯�ȕ?r�!<��q�����c8s��;"x��qCsT?�$]b�OP&�,��3z�.�f�Q��>C?��ώSy�E~px+� lU��h�b�f�^z	�Z'IAA��J�jZP]���*��ðE��׽���߰����dv��aƛ�vd�xO���MDc�w���ЙG�����`E]<|�	݇c_:.�ߡ+_<f���f��N�OL��s�ۍ��9�h��fg�++������q�tG~wdᄪ�����ɱI]wff�j.�i��6�d�`�������g�@>vF)�_�;�*��i��Ϟ���;v�\���)LϘ�㩉ɀ���Ƀr�S�#��ۚ�2hs^l	�O�,#�[ٙ"�ݨ��tӸ��'DC�*��"���c�4L��A���{��)�K�p��l�������l�(s۱��
�!�PT��f�1,��0�T��4��=���*|>�<�)��(��"pz��{h�]�:�r�
�YSWD�F
�J+�WnUP*�:�X-2j�K\���W�@+AV).��iq��75
P�������<���/#�1��by��[BSh~�J��7K��tȈ�EԼ&�W9rje2{��H�<�ͦ�5"�NS*���~�����g�'�Ĺ�X�h�
�.��w��B*�PGĻվ��o����}�ҿ���}|�7q��4��g>���!~�g+x�7����"�W���_��|�z�N�1�S�[1pG�G��Q�c��ɓ'��6j�y*0235�LlY"t���:F����sn�N�����a�vPx?�+u�A0 m/��0F�1�n��1��|k�B��A;ȃr����5�@�n�:��<~(hM���P��g�"ئ���u�~�˷̔ci�^Oh^��K^pV_ϱ��\(O=_z��@��}���~h�e�|�`�rö����� �x�n�6���|F�Ӱk{ﶞ|�4ys��f$ǒ}$b�`�N(�fw� ��o�֘�J�N�o�㧽���g�:�9H�����xؿ�;1=g7��Do7	�O=����u�������{��4�%G�%�4d��NLٽ�kRV
��=�< 	��P9.�:-��N"�"��%J5��!�i��KWq��G� �Z���YJZ��@��V�9����x�ە��:q�d�V����/!rRK����²4U@���\��"�m&�H6k&+�C�E��GP�Ep���G���pE�<�t��$ �F�'s�&4LB��Ո) ξ��1T���)��/���n#�/�� K23���k�hNS��(���%�G��sx.���&#��V@��t+��إI2���"�����kt��+U��H�v�l"�@AN�a;;���)�I�' ��J���[&���D�	;��Y�d��L��BE	D�[���>�Οƕ�����ዟ��q����x,���9��еc�m"R@}�2�Gg��A[v��N�
�1h����c�s�h�_�}n7̸�ˠ�z�����N`���\� �:к�È!��@�X�k��L~� ����3�Y���j�>�@���p��d0�`
 ���5����
D�/�$����^�fl1{�{����ȿW`�N�w�u��=��;n�wj`:no���r�F�"�(ۥ3�{Nd�6�zU��T2e���*��c	UU
�k¼��Q�o���;>��e�S�y^����f&�Q*5��񌊦'Qm��;\p�P��G�{���N��q28
����$�H*�*QE�I*�#��qq��G����N	;-�	�e<�A��grY�wJ@��
GP:3�+�1�KcnlBU���'c�Y��0I�9)���WA��R��D��x���
�5)�j�-�&�m�2�9���m?��$��c��VF��f7W:��]�3��2��4'�T�QFKT!���d�5��
�A�,X�lOS@T������<�ns�!����6��G�E�]���w���i�+r� y�V��؄�Hn��s5�u�Ke)��6��4ria��*��;d�`�'���͛K�Bj�%�<�nb�%��U��#XIj)
�k��0�m!J`����������
��W��@D���)e�f�$�/GT�H�q��&6|&ҹq���}�8QG�={����� ��t����d?Gܮgl������^��^׸׶{��l�Ұ~�o�P��a�k��}���4?��N��{�4H��
����J4a�u�����wVa�F^Wб�I�;�z�MO9!�b�0��v�t������y��"���	��9`�L��{y~Tm/O���ð&��}?l����	?��&��Gt��h��{��j�X��@�^�D2�z��Z��+W_�#>J/y4^��7��d�'�jWU�,�`��e�'�br|Z�-�c�i�D�A".j`U�MM��Wi��0=9�������Q�і��p��yTʛ��0�����g��N��,�C7&��5�\MO΢ժcs{���!PB;>NOyw��@>?��#��Q�������z���lo��%��}�?~R�P�Q����6GOI'ausU�
ۼ�(�'�@��|R!u1�]�qz�	d�l�W���]+�@���#Kǣd!���
�M�"m<55�K>.2�I��Pv���|�?����ʴ!��X��6�e2"�xI�źd	��QVJ���v�5h�@A���*b�Ϭ6v�`_D ZH�ڪ޷SH��z;%a���nW����/!�u�)�=E�6��N\�2W���>�<�8�%�5���/�q�Q_�����7^�4�V�����#�齂L��w��2�P�	-U�C��`<����(DJ���Z���y
)��g�3"G<$����EP���H^`)ރ����E	vk���&P�w��x�4667�'��/�U!�q��~�4_R���� ���{�l��ա�_}��A�c�͛�a�B�{/�;萐�A�~33��{Y� �����h��@���}��$m��4��5�6���yE�%��u���g��q�eKv��Y�D>�Y�o�}���p_����Y�4Y<��\kd���t}�VE�9���o���:];��B�(C��L��~% �1ޚ�}5Ehe��('PЋ�\'H��_=����?�m�����~��:{��`���܇���a�
n?�n��3Ec�˯���O����ٓx�g0�٘	\��*Ο����O}���[/�IRm���F�Ri�s�޸�2b�4��4��X~�X�*p��i�đ�$�{3���=�o��"α{g��UUϧ1�ˍ������(��~�s�����0Fcil��.]�Gy
Y�R"*�h�>�c����&Νz�͒��=����CO��C�O rX�XA<��G��Ο~�o�F�p
���ݹ���?�7���a^�d�rQ���$���⡓'����k���Q(m�6?�<��������'�m�\319N�B�Ad����OO�[K<�K�./�&��D��ȱ#xy��R�
.�L�l>����	|"�	n+�ˍz�ø��w���	�D5,�ˣJ���j��$#�I(P�r�o)�PW����L1q�w�M �QaK:���)&�ʥ
6뚄��`Bd���:=&�&dh�"8�C�ѬK�L���������T���P��1��*��9�~"9�<� ܾ�
٩sdNVW��[G˩�B&��Vu�͑���-�)v�
t�tj��lo����e7�͉P

dcĚ[�h��#�M��su�:�S���T�H�y�"�P���4��y_��g
:6JE~���u�L������Ę�&��0�_�K/��&r���ܩAV"8F�x{�{�B��A��06� ��ˇ]O�}�|/�a�^�������LҰ�]Z��lH�8��,j�o�lcmm
�}7K^�T:E�*2R������􈬮���#�^$H9���Uj��9�ml�z�:Lzkf9Q��1���Q�+��w���.�1����B�`�p|���?��Dv�1�1!�n��9�~���8v�6�L�Ȁk1Y׀$
��ʞ
b��}��ɶ�oR�k�(�sP���~��f�5�7�
[7�|�m����A܏us"*��rW�7k��9�je˼{4EmjazA����@����8Y�����r�;2��[wnba"��7����<f�f��~��'��X�N���GO����ͫW0Ar�����YUGK�(����q���5�%;td��$��s��HIK7���Wo� n"AP@��;�ux�667�0C��%�16�@����<��"v��)|���p��-9�q�@&�G�Z�q���G��?M�ly�:}H`�ˑ1�yL�Pe��r��Q��QSU	�iT'���Z_�A�g�
Ը�sor1<47��ֶQ"S�Z���lsd`�G�
dL"�s$��T���?�����P(Ӏ�a��Q�C�
D*Z��y��C��h�ϝ��E�O��k��~6;#��u����ǹ#C�Nx�R�jL���6�5�g'	���E��S�`1�kM�j�E0�>��؊�M���p\q�<G:��E����$����Fa����R��g���}P,��!���G`�S��SZ׫.�qi7�	R#��x�̗���hq�Y�ϻM�)����m2D_;(�gF&�Zm�&G��[���t��$�{c�A��{c>�0�pD�z�.G�.�{�c��a;�A6jٰ�{}�ߺ���0M�� ��;ݻ��h|/�e�uNR��Q���>wq¨�J��I�߼{G=�ٌHkVqdqY�p��U��pr����)���p�b��g����t�*P����s��U���J��q�Ur�}3��������T �����ͶbWt���c����-p���g�h�x��uݮ���Fz,�"�R�N7I:�]=)�&_"�}���h�ލ�����Q��9�׾ޭk8ȶA{�@睸�������$���c�w�����gN��:HsO~2��CptR��N����'z��X\�a�N;��:�x��!�~)�*�G�>�[Q�8�,�hx���ca��=�
�5c����s;�(;�f��x9 G���/�.Z���������?{B��o0B3>�~o�Ϗ뀥�o����~/�T���b�$<��D�����O�P%`X�
��X)���<���� �e��2��i<>�VV%���D�G��Uޣy�SSH�<e���_AV"-$��@����h���5� ���'�U<�uasD�s�K��6bC��6��I��ې
7}��E�U��E�,Wk��B��'|eg�u��7 JB�c1_�/��:R�5�H��
y�����{�� �v��w�Il$�8;E�S"r$;E��5x�tV�=k��*���D�)����u���5�Z5OC�H�I�_-K
��^S6G�HX��Mt4d�Qs���U�	*���^�SW�P��m�Vc(��x��a
�>�8t��c?$Xg?�1�M�XD\���Xq)��OY>�F��yx�{}?�ލ��� �~h��4؆�=;��Ҟ���/����,f�g��4�S���md�� )P���q�����(=@N�5�Mv���
�����tNo��2;���/��~�
`ٟ]�\���w^��P��o�l������vLr�gAh�(ݘ�:�\��h��2�Բ�u�҃d���W�~�x��? ��#Yˁ���~����ޕ�����^��
����NJ8����}�6V�� �5w���`_���H\>|4�;������h��GM����B��z�2(F���^غ�]��k
��{�e�q��+z2֊`B��U
>n�2x$��b���j�L�$NE�͝�-np�<So*F�E2��G���*�|�[����c��[�1��YĦ��o���Q֣N�p-8�/��,J�`LD?D�:*u���(��U���ӽB�`�HG��K�F�%�)�?��T�-�ټ�G�-������e�,O-���t)2_ٜ��y�� E�F�D��_�6��Z@j��}�F
��.�&pf�Ľ0y,��%Q����1je�N��iT	}O���v�h*�.��͖g�,�%2�w�6�1�Z�O~��yWj"�(����F�)�	2�έ�r�ֻo���]����jC�
���M��K�M�(�쨒��pۖ�N��o*�ֹD��8��N�3�x���a�ΰ�ޭv�{x�}����XI��N�H����9j�`��c�:�����b<��HԿ�~�g��x&m�/�DO��N�}��N<ԃ�� h�e|z�:��?�1uN�{?�����=���2�s�C����R0��	�p�o	���o;�;�|��u<�L
�9�����~�k>��ȶ������'�|��6���H��O�;���W
��3��mFyÛ��w�X�mwP����.z-܃��gq�&�K��4�[���<���6��~��"�\E$��q����Y�ǽ�V�
٪�n*C��V���Z�gN��pi��	�M���9u`l-2K�>��?����P��Z
;�

���͐�;F<�,ar�5�����i@�z��X�~����,on �1�ưUoh�ߑzE1p�����Z�ބ�臘��NQ�ökA��y�@,m?�A�(�lM�n�=9�)�A��eU��N���WB<�hS�O�]���ى]�q���`|���I:G�#r�cd�>�0�]^��p�r�,�X�b~�A��*d�:u�EI�HE>��3G�]�ꦧ�&ƺHb7;㜥�&a�Qǰm=��,�<�N���X2�
	�#�$T����X��D��O͈��'ow��`>�8�y���~�
�!�rb,KV���ڤ�{d�+eLONbK�'9�5��\)a_1�e<�4A{$�(�>��qڗÀǻ�nF�x����}-ܰ�߻�=�u��aZ��׌0��Q@���LLLtsnʥN�<�kW�c�;~�ބ���]����"E�4$�su}���6�M%���k���R9вV%w��:����0~dT��K�	U�Ʒ�ݰ�oN�7�/�;h@�
��^r[_$��>&�Ȃ\w�O
Fk`u�Ɔz��9�|-Oh򓤀�0q��iЀ��gO�s̈́��x���k!o�~tzVa�s�#a�$� ���w��(t�ᛉ^������u�LMo~�Yٵ/���z~_���.�`}���=��U�7�F�F����++�p��>?�7Ug#�ђk�[jX��A���wZ
Պ�8�nݺ�c�2y2q�6��HT�V�����˾R��޾���qd4�;�ˣ��&�IX���V���0{�O�}ɱ�������%2I	$ci�=y�\�SÓ�<���DV;I�h6�\&�Y#�ûMa<ACP�x�7h�o�!�R�VU�;�]���Y�,WO�Pj`g���������a�B`@����ywM�<��IqQ��<��wQ��R�X�u�D$��ŪȒ;&�U���h��ܐÌ��2��;dUD�;��VS�A�E�ω\w������$�-A�lq1�b�����ʛ�>�7Y�vC�|�E^�sg�ȴ��#3��C�����y�5̥|�҇N⛗��ufHq���j	�tFTE폠(�k�_<)5�Z��
/@M�J���#7�[@:���윏�5�	q<����s����wu�T�#���Ed�
�W#~p���Q��0c~p�þ^<���E�{媆Y�q�i�y�<�(�|*�T{g~aNAU�϶�wf�&&�ݚ��]�
`~Xl̰���8���>�(�}�$
���hh�M�����ߧ���v�k��(�K�G�XB�w��}�����iT9LT���-�gRX�Z�ƺ���pr�}�^.yH���K��"_��K��>�.�

��u������ܜ��
!f����u(
����ؕ���t�ct�IU��;��u������͍5���~M�E�FԶ|n+S�5r-�*�+��,�0�tL2��T�~���a���,��{�`��
�s�y��v�߿ή��t�2B '8���P����5��C����쫷��+��*�B}�oA��u�����y���:hk4�x�W4O�V.�h�h���u�2�Ng�����&�p��C�s�:�
|�ѧ����c2��#jIsQZG�ǧ�E�Md�&���=�j��1���@$�FY<��w˅&���\8y/^}�z��
��I�S�^���.���~Leʫm_�:4dwDj<NgU��ׯ����&&��Fb�X��R�;C�⊔�[j�Th|�^��=�M�v# �$�r�S�Ә"K15;��Ww��[�d/��6��Y��O��U�]I��ՔG��ɩ5�:�Meyd���:�a
�&5</��J�:�$��{���-ehc��q�;�P{R�Cԋ"C�@��h�U�/��D@�q��i�L�G�ǧӏ�H�[\��D����%[�M���&�㘚�iHy\�[	�>pr�3y|!�A<{���?^wq��XB�h�Gk��صu�12]3�)J�Y��w4�K~T�>C�Sn�I>SG�n����,��Z�3��Ӎ{*��j	�5��x�[hŸG��W����^ۆ瀽@��-�G&��Ϲ\����E��=&7�e�~�v@�(;��W�N��@��z?�I��h74�/�òt��g0;9�1���FjL)��j�jTp����i�<�N���iH'���D��J[��"?*�Hc�������܈�r����w]��tY�*�m���t� �4���ס�^��h @�޿M08	r075�<�!�A�&)��9:99]���yzN�����eǠ������a������`Еz��a[`ȳ�
Y������ַ�e��O���ߤ�mD+�lҘrt|��Ha�i<64��QY�R���&MgO�&�^P�(K��wZE>�љ�)��=�ydr9l��E��R��H~�x�2d&��<����ar�V���qd�Q
�q<qiЦ	�h��	�n�m�w33Gp���QLҠ�Z>4/1K��r���	<h�--�>�5'P�&ʼnզ�]�tv��AAJ:�q�NE.o����Z�5?�V���|cojp;M��	����k#�g`���FЯ�"�7$�H�o4�HE�X���s�o�̨�$Ho�;�c)�~x��?��$��w:�Wd�b�)�F[�#s��44z����<ey�o�-a�����}Tvx."���Ԩ��$�T�`2��Cd��M�$�᳏�O<~\s��tl�8�Su���o��"A�8��*0j4��Q�B��,Q���KH؝I8�+�l�x�m���	z�p����ɉ�O���A�,㦫yV�����������(C� �a
�c=lď:~8z�D�ȟ!'�1���_Y��S��p�s>����ᵽ��A@���Ku�Qm����C= �V2��Iz�T^<�ڗ�S
VؓX,b��nX�����t�)�u�:�G]��v��]�S4�
�=�b$0�N�-j �����ס�4����L�D�h�xƱ�7�[��0e�kB#��́cjP�Nϻ���d�}1���&��L�{����Cwr�u�U��~B�w��u��AC��7�G�D���=��4�O�Os�w���a�+�6>1��<
՘&�k.��|��g�҃�?�&[���"�W��<LLJQВm�yGU����|_CT$,����ժ82;�cj���*Y�4�Iȟ�9�2䢆'c�����1�+d飱Y�M���h�]<�Ó�~Ȅoѐ���W���~a���Mr{J�6���,Q$p�0����F���i�`��_[Z��F�7��Li�@�3&�n��6Zo�U�B���d&�†��4!��]A��M��,W�!��ٙl:�93�I�
OPƃ��h6��[���J�x��:����,A84KT�:m�bDC<�d�<��+,�m�D����h8O<���$���2N�,Lcɼdm�|�s��H
�4���-�
����g?�0���^'��S�`}C$�#�:R���jI��$�"d��H�=+p¬�Z��mP���i��+�A[��
o���!�w,�jAA���
�b'�A���!@�L%y�����/�A��tX�1�x�����wp٨u��}����k�k�öwj?���^@8|��E�/��)��(#��~d>����V�nr�c^��z���|�������D;�Sy�zOS�$�]d��͆��9y
�n�D��5�)n��Z/�e�}t~>85��z�i�i����;����v�=�Į�ΐ��X�t���p*8nEsmֵ�<�L#�X��9��w�V�[�N�8�GU�"���؏E�� L`��e��=�r����h����q�QO� �?���=;F8���;�Y���k�~��u4Ӣ��3�3��4.%crb60}��W�l��ixK鿹l�oi6kB^1�]hs�{
&�L�n�'�8�e$Z	@�oc�F5	����X�V �81����
bI:��<��..��#�߽�n���'#I�g�:68�~��_�'?�i4��$�26�u���l(�`��m��0�[ۢ�F0 ��Z�*n�%�*&a��T�g�鴸^[�r�+e�|5�o�ŗ�'þ�	��NT@��Q��d�&ר�v��N�%J��&���:x-d��)���-io
�$��C�Q�=Q���婓q�3�Y��̦LfRhNJ�\�&&�^����uP(EP+G�,5�5�&��fɸ���j�V�*h��I~��dD�F��>��,��-
۾���-� h2-�+!�.�;�J��#��Ue�����0�0��~���a�3�ÿ�m{�G�;��^�|��<r�=g����X���ﰄ�0��Z6��&�LL���M�Y^����@�N�%��(��5�e�1z7/]������:rXmHpЖ�zFە���\:��i�
5L��㈆څ�%���\ר���1�<MDTfH��A �L;���Έ��G~�
f�g����|ۣ�o��Ω%qю�7�y`������c٢~�:Q
���k��#
�޻�v	=�_�à�m��k7,,��ءm���U��V��SB�y#?��@�$���c��V<h�6�W�ۤ0�������j��5�M�9���ae�8�f#fh�oqN�nl�\�Bd|��x�t�Z�  �t2
o��d6�N<�����ʷ���b���Р�I��)��Y��h��P6$A�7�
��L��$y���[�*&�LI(�<1�z[��]V}C�1NA�-��D*3C�E��d��sll��0?�VU�4��>v�;;��N���68�{�*�0��8b"� ��hS�^���y��G���t�I8����:0���B4�o�!^SrBr�
�$a��;јκ괕�\B�K��r):z��
R��?噜+xMy�T��d�*M���z��E��?�u�
���������A����=�ÀŽ��Zz��wh���x��ިm�'pw_�$��u\x԰8g��u���=Û��8����y�)-�H��E_%,�ќ���s�P�ɗ�$S�L�%��4q�d��eDĘ�ágC^��>ث�����L�E��o]����Y�$QD�$�x���ds�3
�t�o��]��Y�u�&�:
Z�F��'��n�]�g�	U����6��(�ﻌ���(@f�ۆmb�a��_6�N�<ѻ��#9k�a������p�x���G�:����}�a�6K��>wj+7o`�]@�����d��@����b����	3�n�M�>�:����)��*�-!�X�����*uD��S^�Y;dd$)b�mSBC�gEXStNJh�q�̶D!x<��j���?�
�#o^T�㶴��V�-B��,���F��4�����H�[[*.E[�쏭�����o'����g���CF�ƲI-��5͕����3�ت�\n�ڌ��j�Qu4<�i�i�,�]����c^'�k�O���s��=�:�?^���'"�O*I�'9Ӽ�4���o��dj�����ͧ����o����a��D��C�B{����^�N�Q�>��;�F��{��I�C��X�]��&�7$T^�k�K�qR�U0F��$6q�(4�*�`�D�:��)(��ɠ-q�.�Ѿ7?�|p�Y�4T�qj��54�θ*�����*�Yp��*�.s��/�=�)�]��}
�q}#ԠX�,w|��	h
Sl��-��[�d���x��E�{(�^�k�ؖ����-����ϰ�>�	���A򦗣v��}h�����8}絛)���{��z��=�ŋ�_�<�<v*%Qw'C���,���*�0�p�V|V��7h�Kԅև��-mr=����CdD2����?�3H%�*��SC��X#�
��԰0~WmѨ)yǸ�|��d&0��"�	tb�^���(�&��1;W���u?y�,~��,*��hGk�qWsd��42�6�/.kg�>י���|���$����jU9��X�����1x�NL��\]�e���ZZ�&��>x�Il�JhD�hp�P�MFh��F�[툨F�H(��a<j
�
�&
����y�g�h����+b-d�F<I�U�75N�\c�oK�){��w
$��Ya�T��'��;���^ߏ<�!�c�;�nrj�s�G���aAb��~� �H���mЦ�S�I|����^����r�'��m�11�9��vJ;,k����)`<�W��\^c}%�n}mM�}����VO��V��դ�J�J�)�yIơmn
�knfF��_�y4��umC�ݻ��k@vTZ��}ulX��#/b��W���~���oP�E9�U�tPf�&g,#S+�S{Y���n��X#�o�n��y�����ný+������^-�����{�
?����`���s���y��:��0��98����A{��Gm��9|��Ǻ���k������l�]��5 -����,�T`l>|򌉨@����ڿ�,y�>ðg��k��l@�]}�,�H#��'&'���2��N�(�ى�^��nh9��96�Ѱ��x� d��0�,���^Qy���S�\,�z����No�tg�,�{KsN����إv�����і\�y�Wusx9w��	h��	�PbP�D-ɒF�4��%�h{y�Y�<�^��,�k,K#Y�-�V�EJ�D"Dh4:w���_�7W���SU�nս�5������[��9�N�����ٛ��v�o4	�i���[&(�Z?L�\��%��̥����x�$�^O������?���~��i��Y$R)�G�TB�RŮݻ#����j�:Gi�6������v�����6�&�P�"|�r-�9+�����0u���mqʰ���f���yR�ͤ��U�h�p�m��(����f�XZ\W�hv��p�����y�O�\�Ճ�}�wmC/�]�Դ�i��	w,���1���*Փꈊ�.Yʵ�^�������Df��M�D�}�"�b�?�&fфU|�Z��ޣ��bbg'���I��֦0@~���dr}f�7���=5.�P�A�b�=��#���LA�~�^N0�v�h!}����-Y����3��4#�0_�q�7J��MZ��9P8}8ύH��B��
�p�Cw=��v�� �f$��Wfq��YY�Y�\%�)E��޼b]+�0:X����<�5�F�Ҷ۰sr�k��n珠6C�g�����(W���2�e���ƾP@*�����<���u��g}�fP������f�M�I�M��Mi��m�A��DZml�4�Mʔ�i������iL�3K�A���H�<�rl��9�2-cn͸�dE���C�;��3�I].�F��F��[Oڤ�O��do����x�cOAH�֫D��w`]zV�L=��������zK�-���@`O%-T̰��,��]B� �����������i�m\���� <�Ҕ�\�B��\�-@aIT�1�/O��X��~ħ�?n�����߻��)����*XC�,
~���}�fk{n�G��O\��?�U\�t;�O�sO<�}��آ��,�?!�ā�N�]O(��<���7�w-x/l��	�"x���vs�2���S�g14�K���x*d/�E�;2�$*tm��Gf��X�8��*沊���y�8s� _�>*
�3�d
�,�$$g+�3�1U�`��@��(��fS�1h(
@��������@ x-�<�D��W��UϚ��?��5̽��w&�r��Q6?#@�<�l�K�@]�!��$�7�6<�kJr%�^T�ҎŝG��ݰ�Ā�!�	����/��C�wn.�o�dy
��ƻ�\>�6��~l��QL<�spf�"{�p�����bf�x�����6�����8Hd?����� !�64]����u�ǖ��6d^<-Y�l�4q󴾩Xk�;ST_�BV��9t7e�s�f�c��轂��SC�p�y���i[5P��1����:����ĥ����S� ?yG�^¯�b��p���FqM^S���8F�<߉)��
(�Tv\}���Vr|�n�[��[(���wR|��T���a���ieﶥ�|`�wq���0ox�L&���۔��v�_�y6�g��x{���w�f,l&�t�vQV�8�Cl�퀒�kss���A����+����E��6�ML�fg���S��а�]]]��G�peeE� ���ҲD��q$q|��g0��BX�["p�[(�оb��Q�z��I��"�(�[��8�{�Y*k4�M����w�����5����c��7q��߇�=?��S�@z�a*-U���麻n���w����솴���H�|Jǟ8er��=���-����RnZ��.�3�z
�<]Ǥ�
�	����.�Ml'AFT�ֺ�M)t���|�(�x0x/�`H�${�n��-�&�
�=�:�V�1�(�?�)��?�&�ߏ���o퇶0�HF�.Ǯ��	��a~�.O�,��<:�1J+�M�E�71͹�"���0 ~:?��⾑��hO��
�9
��;�*�[�����v�iLl�6�]ڍ��D��qC7��XF��}m�`e�V�I��6!^��4jd*pX�0<8 &t�J���>��~X���O��7H5�U`@�z�/5�rEܢVj��)��T�S��8�f-U��M�jPJ,��x��<�>��%�j��(�����
`�ރ��_���*�ٜx�s�r{zИ�j�N�6?�T�NGE�vX���c�T�lʔ+��$z�ǣ�v�6��b�U2$��ydy�M��8�$���y�X���yK��m�&�:�Hj'4�J��<��Yc�וo3�PY6I��3c͚+]#M�k�������wup9j���q�c�آ�N���JXX� M��c�����;��y%������
��~RP\/�	��k�4q�o��Dqp�=7"��j�v����|�a�]�V�7nt��}�/�����+*M�>��F����Fa����4mJM�9_��k��E��߁���!�*f�2�vz��g��54�ԏפ��@xPN��vdX�9��G�%*
K诇QV�G$�
���Oª�Q��-$�ަ�k�h^����)ލFb�Z	�j�%4,�	B��6XGnG��%�N����QX���a�ݔf^��H�ĸ�Bu;$ljcj�TVܙr:��$RbF�$Hڽ�v��^�i�;Ysl��q�y1�hS;��F�;-�Ѧw��7A8f�Q�퐹g[ޮ��/�����pÊ&���ϼ�d�0&-��R�)��>�
�oD��>�$��O��-Rd�>A��'�ͽ����4�2�fM�*	��\��g
"��f��ֿ�8E��0���v����i&~�J��̸�!N��y�����8~�h9���ȍR\;���n�n�qs�~�����:�N.;�~��I��~R�m�ͷu���M�'��	N����Φ��Z�\��Hӓ�˵�6�J(�XޏӠ���;U�jX��W�F�LZ&�6s4v�ͱ
8Z8�O�f�+T�pr�7m��v	_��^c�4����y��i����Q�B�H�n��h��
������R��Ȳ�&�MR��YҞ
�.� {�q$S����_�XwĖX\5h`Ɍ��M�,ُ��3B��y�tΏs�m�]Pb,YzAH4��>kyl/�g�(���V��}�=x�[��v��zZ�r�ˊ+ו`�vU��f���XX^t2�uB�L�L}6����E���DGnLڍ�S[�(Os�c�'q�w1��1��P���ŧ��-m�V]=z333ػw�xpe�Ā�0�>77���5<��x��g1::*ϳ%�����&&&���W��~�cuuU�>������ۍо�f�[��{O�:��'O
����˗$r��3�>ܦ�)�…��ͳg�J�m۶�5��m>99��;w��D��v���jGä́�q����(�8�^�RD�pՎ��)qo����n���
��L��M'�\�@Md4C���~����<.\�(��"^Mz{zibO��O\gϝ�cq�LI0=�s���&��&�K�t��#X��y���듅%�J
hR{�V��C`l�P���Hd��`NJ|
�7�َx�kK�,^~�$;��c�agY��VWΣ��4�FiF��hY�udj�9��f�\�a}i�k�`�.i,GxO���1���_/H@>�=-4,�I^Ӆ8ʒ��\k���+͔�ѯ�f��i�nEj�ޑ�ǭyA��c������׵x1T�K�%����]uz�~PB[�������`��>��>���"*K�q��Q�ܽB��M���
������1���x��ߏ�w���d愅������3_����;�W�10�Ly$sp��1���x�.�Ç�c��0��h���?����{oS����:I�7�p��Q;~���W��i�����{�n�9sF�$?~\��ȑ#��ŋ��O`�9V��=+�<>>.�?t 	h^��=kF�<��˷i=�9QL}���Sڸ:ƥ�&�Fˍ��܈&�_�hS�I�c�0��s�.���c�e��KZm���S�<��uZ2€�䕢�',.aqq�b
�@���C����~�+%�
ۑp���A����Ң�f�9��\+�(!�N*!��k��q�6ln����u�2�PY�������}��˯ ��W�@�zE���4��'��]����Ճ�7�Fn�2�z�Һ�	J���R(|>78�s����^�C{�U�I}�j�!�w��c�
������|���e�t��iaHXɋ,�� p�6�>��@�8k�&͕�W�Ib3�3gN�Ԕ��z=�b�~�_\�tY�R$"�:&���5/��YP���BH��~���� p�>J$��v�Oap��ӼHLw����ᨶ��;�)3�1H�_�oy>1`��ݲ���)?À����ݵk8 �<��C�oP�n��׮�a�b
;I�7�6RG��}9��g>�r�)|'N��9�ۏ�11
sZJ��&��Fk��_\���)�5	��:��j:gAr��oe���ۗ�5h/=1�7�'�ȸ���g�ԩ�nǧ�-�<}(4ILQ�(��<<Iv��O�
�ߐxLk�'���`(���O
�Sq\�^$�e����Ј�US�Ls��E���i�ƒ$��}R�,7
�#�ӭ���i�2�=�������%m���4i�$^��r��:�O�')I/^{�/��P]O����H�/~�ip����6j�dVԦu����fl� ��Mucrd$�R�qڠڶ��G`�&E	ڥ	�g��?���p�]w��g�M�6?��Sbs�m��(��(��i�sj�/���_�%ц����w�C?�C8s�~�$�\,[��\�s���-���4�v+�
l���7���~��}�,/�Z��G��U��jA
Uz���o/��Ě�Lq�4�<��ً��.�e2���B@���Ě��ԝI�'Z{)|%��]��ŭ����y�P�9k��چ 2yp�ob@�����fzz��b�oa`pܐm�g��΁�S��Q�5��t����z�0���׶�WB߻R^#�q���Mœv�Q&w�4q'mG7�o�:i�=��D�nOR��(J��\���=n�r偍%�v&�j�*O	#f���'IL�xY�%Y{$����U)����ڤ�vu�t1%��V[l�
hjy/���{�c��D���,r�$V������w�F�%��0���I�-�^-�p������4�ޔO�F����n0e���uU�����;�r9��-���bVm���D^]�r����Z�_�݋ᖤ��Jx����aYd���49���^$�/��2~�G~D����%�l�f3�z�g<���K/���ロ���O��kx��	�m)gue_�������_{U�(�y���XZz���1�c�����W_%�0^|�%<��x�W��2�8|����`��3�ΟǏ�رsG�;j��y{G��-��%ڳ�T�
��ڢ��x�/�.�|�LXj�iTQ�~K���Ẍ́|����-w$��(�c��}=��n���26"Վc��q7��F�$*ݍf"�/ƴ���];�	��ʚA4@�xf��5mv2�YV�:�k�n)^��`��4�Ys��&~/!�-�i�{�~}��>G숄�[Mf]��i7BAˑv�郠(ߩ��?>(ڴ����€).��ߔ�C{3й<3#��6���{���wI�]FOoQ����� �/�&(�iW2��U�� =>6&1��咘��sY��%K�^>�&�s�2CHP-ܜ��=���&fR���h�J�a�AR��vT�6���61dOuU7ag�]H�C(��N�/��M<px҉(�gIyuM��=.��ms�^s��^?�2M(2!ڮH�l�()M�'G��AR�/a���8���,R�/.�ab�6\����w&���@��H��v�'�/�y{7poqqϿ�ط����{��à���S���q|�O�bG�Νa���2i}~��<$��y3�����z
P |�+��}�O�PD�Z#)�!���~�o�
������~��e�簶���T֡Cq��OSSS�������+��'>��}�kj����(��v4B~�>��X-���p�O5vC��*ͧ�TN�U�?�S���ó�ͳ`~T���h���;e�����Ǧ�L,1����q~��hJ�)�1�y�W�9��a~��7�q��h��Y�����X���kAmZ�i5�L;�=n7�7sY�؜�ӳ@+
�q��D>�4��ܖ���g�F��oA`yߊ�4�n&�>���B�,D\/P���Ng�vW߰h5�Q"�I0�w�>%d�R_��j������}/3�VA��h����i��y��h��jh��.�6��f
k�Z�ij�;X�:M���p\�!�Ĝ��샑	%�/�?K24��i!�`″)�zid�E^�NK��˾zv��I��V[��Ѝ�U�=�-�A�uHu�P#)H�D�Z��iⵒ�ΩӢX�z@JI��CZ�
�Νǟ~�e��Zطk��˰�ij~����4<��N *�z'��	P�h0 ��H�f����ti�R��@��}o�s���#����$+���%�x�(��~<����=w �S�c�Fq�S����Y�:�M�������o|�/�{�nLnߎ��q�q ��]
H}��	�\ľ��H�fi��I����;�/� ڡ+W�z/�����H
_�5Ll�NڧX'���b�G���2�]��A�j=�����ߣ���1��+/K9�9�2i�:�9Z�>}Z;��w��Mp���[�����$iD�����?�}���rg��t[�J�|�M1%7�Ṁ�<���3�|�AO�Ё��X��Bf�x�
Nk���I�����k,@�8��n2�����NX�ep�<߰�=���p���f΂(��uf���v�<i�Y��{�^�y���9�߉5��>x�9�?��:{�3p�N������W�^�t���߁ߏ��\�rEҳ֟ۜ�S��)�ݷo�x�c��er}�w�4\/>�6��uV���b�����	Hq=o&C�B3�j��J�&�/	��,:��5�kY�Er��n5��j��<�୧��t�?��9�e��\�X$o��CT��n�F�N��v��f�M븡���	�Ɍ
�
4�����|ޛ�Y+�Ӿ�Ce�w
���Z��\�󄥬�\�qkew�܎Eq+N��ǿ�R�C)��4�8��L�B�Y�\
kĖ4�e��3hT4�	D�\d@������8��Q̬8ر}Ev8A/�	8�
�
���W�
�'I�g��#u�~�t�%�]�7�Z��Uy��=/�T��L;,A��7�GD���-�4��8�؏}Q�?'�mï��*�6b<~�@
k;�-��^}�<�أx�ŗd��8-�;w픅�K_�<���O��}�ދ����7��bv��_�җ��fm������{�����$Ƨ(��o�-�C�,�.������[o��'~�'d/3�?�1�Eu

�1=�c����J��*Tq�y(�tJ[�&�F��z{�0�mof� 1 ���x���F���	���L�v����,�1`��e&�A�a\�sZ����p�C�eǠ���9�Gp�O;��`�6����w1�)�����<㼂�ɿ���� �A���s;�����RL;�s[q�&�A�sZ~Wn[S_߳g�<�c����=.���2`q9A
���y?4I˫k�����+Wj�Ys�cr��=��I�)�ZV����Nԍ��߿�2�ޡ9�f
��^��N�~3(ȏ�Q'��fL���擟F3=���hV��E>[!�@�y�W�FVSyJE.{�,�5F���F��u�T$GkH	�I	��2� 6(��'}`��R��f���S@�7�M�y��!x�`
O����2�������kK�?���M�Ә�>��C��)m�&�,-�x��c�=���p�����ӟ�gI�V���
�Q�S6��DȢ�z;`l���7�qf)���T�i���$�/O���9�q��$��~�I1�K$��.�ٹE�:s
�����㏈&�M��}�	�">�[�����Ӹ�&Z7�
����mv�cM�C �/�0���u���z�4����i�8Z����.���z

��+z�mѭLˋ�V��8���b��D����\�!.�`yq̔0ъbԢ��:��ẘk�Qp�|�|�י�)\T}�y���y{���`N����*�j��a	���6-{�E�6��ёa�-}��q���6mb@}0���u�ӵ��S�{uz�n�us���V�Z�Sθ9�������m�|;b$�+���n��D�O�n��&xq}E�Ny��%�=w^DϬ)J�	O���,�پm����k{v��SbR�٬��;�$zHb���5h�[��
G�>�-�T�%flrĆp�}��A�.0<�^o{��4Z�e���:N���� v�b��be�v�]����$pm�����"��Uq.r����l�F{�ҷ�p�4�NnJy�'�jw>	��P`Q5��쐁ӓ����5�,QwQ^.�-�P]]D#Q�CZ���
�*��:��P+�"ie��wr��ou�[��}6p�����x����s�)K?+3�G�m*M%��N�cx�[����#9��vh����D�T��z�m�E[t�{3e�
3N��aⵋ5��0�lx
����1�ⵏy��5Ä1�uٸ�6��܌5&F`�l��-�R�Ls-����&q&�._O�!܆F�d��}nS~W���
9mLq{�u�3�݂�M�I5Z�p�;��ERi碿�����\l�Z��
����R�F���m~���2 ���+J���=I�?Q����;d�̤�>����ޅZ��Kr����į���1�ՙ��%��HyL�Z�~�e�_o��|���ټ��N$�b~�yr�$5A��0�yB��-5�o��q��>QYq��yZ�r8wr��IsHK3JR���2��>\<w
����yT+Y���&M�~�Q�����4�G��I�k�gH��� 0e�k�IeE�n̍jc7��Yʛ;�`�<KѪ��������ܩh"I�S��Z�U#�P��U�U)n��K�|������������[W��T�� ^~4��7�����:����#�s�w�fP�d��
��R��r�mL[�EM⽴���M^y-c`��`��D���&h���g��56�bs8�x�d�fb����˗/{��9
�N�p�'�|��yA'18�ub
;1��(<g��	N]�'����e���izzZ��qraڑ�#���o�!�@�r���1q5+����$6��v�a�lT�5�o�� �<��(F���[��~�{�5����,�W7�h���C��{��CT�����o3��M�Ij�����@�����7���M`��}���W0鈒9��4C{�j�8��!\��~-8�ܢa<i�t<����]7��G;�� qu\�4�/�in8�{���S���7��ßD2����+�x�*��G����9�}�+�7އ��?�3o����Y�9���
'�d���^����Ղ� +��Z�o��p�)���S[%\��ܛ���ZY�K �P��w�
���z]�abFk�4J)���p��&)��G�k��)Rъ�f��횝m��=;-�P�WW�1?��X����Pk�ڸV��w��)�V-�'��
�ˇ@A0��߹&�-��E]J`aG\��g���!ޓÌ;�#��u3 �4�x,��1@��'?��1��~��jD]�iX\��jZ�ͽ�?���?��?�`�"�ɞ={���{����ݷm�&�p�r�qz���s�;���i��nF��_���,�: q��	8�4*$Xf����ܱ���ݵ� N;��~�<���*?��`�n�ݸ2:i��ʽ����:���&)��La\g
w��'�6�a����L:
�\I�lXk��A4ŧ?��Koւ���T&-��k�޴Γk;Č�R���� ���e%&@���o^/W˨�
��q�[�CT;ymc̐���*�}'�&&���o�����x�}c�r������8sv�J�0�����o��W���;��:�C�X��C��>�ұũB�Q���{-.�5n�hf��I3EZ!1d���O0�"���dF���i��M;�ʸŨ�{Z���nrhj�\;�iXIT��_��C���&�ћ�p[�I�J�|�`?r��dwζ�u�"� h&ȷ)U�m��
&���y���mzn���Kl>n�ǂ{7�Rn�ׯ'�t�ؘ��m�^�o7��n%���Ӎh+��4k��Kg�9
:Q0u3ׂu�����Ofx�T(��?�)�&�䐯��D�r���~3Gk��{Ei.L>Fce�o4�l��o��ͨ������nm:�F��$���n��vt��4iXN��|eeU��;q����#a'Q")k28Fҁ�
g�T�X.��H�V8��>�L]�rY�����ի�ؾmB�&e3Y��$EJw~j
צ��GC1��*�@�[���1o�@huL��A�����[�������g>� ���P^�p�޽�1ޏ��1C��?�/���:lw�9bt�$���8�R���3�
&b��҇����i&�'�:�U�ܢA�I���ڨ�6fVK(I�X�z��j�+�F�X%����:��ʒ'����kU\��P7@,E-���	�3;A}bX���b-���j9V�%mj�4`��9�Z:��W�0Z�VS�>�i��R�P�4]	���	|n�}dH�1�?(,�g��6����Œ,#��b@�V`��o�Q���J����Gj�:y�,�����w?h}]�J���Ϡ���u�0<d���I�T��X��(�q��C7�9|u��y���h�:i�n$m��݀��F�$
N��&�V�¸]2<�{��wbhi:*����+�8plz����.UJK
*�>*'��EL��	��ڐF�.s�QbP�R9��N�I� 1�ʦ3�9�Rn�9N
c�~v�I)v�z��v���i6�VU4>̜f��܅����'�ss5��U��d�S.���_�ѫ�2�(�Ԟ}�K�IR�+>+���*�S/ze�j;n�k���$�<�l�Q�<�R�`�fSYu��
�Y�.�K�ky������
�X!1ԥ��P]_��qO���@]
��gu�,��,�ZU:��7X��-��@��^;�9�6��37�h�c����}ڽ��g�4k�"R�\k�^[�EQr��Z]�i*S�ET���g<���_3���f��`:���7��wbf�e(;�k�&�І)�|��;e�m��1�����7|꫖޳_w��^�,5���"���᨞�����22�`t�5��n�I�ꆺ��?�{�)�}�u���~�'mZ�
a�iZ!�X�b�g��,
۶�i�/��L����4H�4���Ɉa�$N�ۯjd��M����}G���
�lS�5F��Ѯ��ޮk*,��ed�$�R+uTI��py'^��{��ӟ+�x
K�q���Z�)���-n�m�5���e�C1tZ�&cr�@�X��.�͠'��M����*Jz���	�EҺq̄�V��qy~�<�0���Ә��<�y�nl߱
�{c@������/j�8�mY>0h��gæv�Ɣ����`I"�˞$O�����KA��-�,]��j��z��1:I���R�L��5�F�U��`KL_�3}1‡�Wn7m�E[t���,j�/��_�C���/����;�uC���U;iQ���2��O�`�'?��H�I�R�&L�^wQj��6�YD�7�ַ�F��h�V�
��H�KM�E\k$-��ځ��R�&U���������vnEo��S�ߜ%^�D�l����M��3�(

Ι:1���k��	�э��fi7��u�#�N�mT�aJ��qC'�Q��4��!��<�$23ג�lǓ:�]�l�kij"k�r&Z�,z1��3�
in2�E��J�lѤ`!�S�2C奭�����V�r�
�����^	�A��X�JQ�|�1��b͑�ս7�@1Kڄ��?d�f�[�b�D�@+���BZ����Oeҥ4l��W����$i�2r�� w���H!ՠ2ת�*M`2?8�*e�!�[��~P�Z���J�$���s�jU뾬n�w������A& �QIG5µ`�6_I4�!����/����q�8\�����
@����O9��Z���ֶ�k�������`��-ڢ�#��8��B��[���]=�-��m=&���UA��u5�{�I&�?xd�/�F��)�����M��jԁyڨ��b��0�謗P���D᫯�j�y���������~����&[��z�*��]�v[�(�;�w�5�f��������VW��/�֑�yv}u]x$R�p@b�y�{a��4���`�� ��ć���q�u�@O�u[�}F?(�4�ꅕW1#��9�
-�����7�6��>1�Min�I���,�}=�3[uq�
�^�F�244�{��`qa	�t
�ˋj��kɠ߹c�;�yJ$�X]^��@?�����S���,���^�7H�,Q�\���ү�"�M�%�����m �M�f@�r�.F�"�^�PR_fQS�Bֈ�I]�'TL���%��Տ��P%[�OX��w�
��Ri,��j�?�Z����5K��I�rC��R;�2~lعLI��B�byԫ�*
CcHd� H�y�7%)I}Ħ~TI(&"�y]n-��o����O��ڢ�jz.|�H�݀�
��2
(�)�V�6�X�x�Y�K��bS<�D��YBnB9��A����y�L&�آ-��Q�ֿ�W_A���N��B
��X,��ӞI�@�Z.�$a!1]
[Y!�>�D�4�+r�"�]�*�:�g����QT_<��g�2A7����L���vZ��8ƶ�2�����'�����)K���]�6c[e��H��k��R	n�V�$��.�I��q�O�N^S�t�R]�'(Yȝ�A������+��M=�j�
��B�������bj�v�7z�Lu�{Gie:���P\��������������IG�h�(��8��ڑu���8����y�bo}@P'�t�vLq�3��\�����1���5��`M��&rE�?��/�(��`aa�$ٿs�tr���kdD4Pl{;H���а��.�*��'ql�
M*�ʕ�ؿk�b�Xj�h�r�m�S;x��XV�U�
���\������Zڸʖt�Js��f�?k���8�a����z��԰K̘܀�2��ahF4(��%H,��%���1Zh��@fpő	�5�͞K�
�=}HdH�H��"�^A��O6��m���}C��ߐ���k�i���j$]�ӕG�w��'�׍�(b��D�RD	:��LS!>���'}�j�-@I0/7��q�o��j	jPC�g�'Ҿ��<^�K_w4`s���ٴTtL�+}�nX�ϔ�)�h�>��C��u�a��*��{�>T9 *�Í�u4�9�_=�����f����Π1��nh
)|�-��UF�:	��.�ˊ7�ъ�Ї��0��(�x�_�4	Yy��K�Bb�������,R$䘊�3�`��;��e�z2��J��{����=��w�B��ZQ���B3�Xu��ᙱ��7��������z���Q��N#�隡(@z�G�6)|w�c�u�w�Zy�2�'1W����b^���v�Uj�[�h+�33s�ؒ�8+M�;�8�,�ۛ~��L���FQ'��k�0���b�_�Žw�M�Vh��13�#�i_!��
��Z_^i�D����6�x��6M�)����b`��OM;����,�K{�«'���`�<G��,�md��O'�-:�$�����J�5��u�<�+�e��e�=Ff�։l��~��Id�F$�p�S��ېr5z&�����Cڤl�4H��K�ib��,��p=�zn�t� A�(�l�����篡D/���n�ᅁ%;���B�}b��J�޼��
�SX���Z��p	V�%Q��Fl�M�wgsR�V ���|s��VX#��9pe�Rs�{�,>�2��0d\�,gP��G���m(�mU�슁����2�U�E[�!~a簌�GȮ�ό9�j��u!��.h�%�jhL͈�S1-�1ɖ��:��&��QOX�Y��>��ޓ=#�Z`��jgZu�e�1�~�k�b�%h�i���i8GS�s��`�ļZlNN�i���&�dU�F�y
IR��^;�ͳ��L�ys����挌CV��W�n���o�kqd�$#��>s��ف5%��4�$�y
\?~��Q��C�R��[_S��%A	�W�B��/���zM�P��� E�L�@�v v��g3�MmnV��Txb�L�F��{��9G\[�_V��:�i��٬��o,qp�Ĉ�ֱ�ov�u,�����Uf���6j
ID��mn���5�
�2YcI�j*#�8��nG�@����7�X������һj/(�c-R�z���.r�EX��뚝T��lⵘ�U{�<PdG9i�"ط$F�q%���!��t��%	d�T���l([�t�d�I�2��~"�M�mG/KKZBiZB+`���ہ	Р�(2��;WN�,a��������?��s+)T�]��\¿��xl��I�X����j�p������ׯ�$����@��@��7��K��V��GF���@��}�ұ��3�~Z�
a�ڌK\'�r��{"侐�e���Ͽ �pz�a�ۿ_�vB����?���3ٜ2 i�	Di��!q"����k��Vq��)8�(�Sh�v��h�x�#(��ݓ�|mc�F�*R�#��ۏ
i2]�^\?ڻ��6آ-�(���|�珡��7�0*����p�y� ��Һ�	j/�z/�oZM3�35���!d��R��0�a��8��ɬ)����ܑ���|�a$��,�䄷8��;�	d/�����m�s{dz���k����#�O�)��f��3@�����q�Zʠu�vi
��j�	��.�V7��w���E�~H��pv�m7(�hc��'e��?Pc-e��Gږ��.
-4��7�����n���i]�3E�3�6�Q����Ҙ��cxx�>�\�%�[�A��]7���ص��l]���������]w���SX][��*��a�?9�]"k��%�3OZ'6�c&6KL!����E���s�NL]�f3I(�{Uh��ny��ReV��SR�,1��I�-e{�͸��&�~�b��bB�9Oh3;�����9F0!K�b�]��b��byUJg��69�\�
�p(����Q����ʲ�MŒ�W����ت��Qy�Қ���I��L?iD�PRJe^G0�z��2֓�eR���{�;���ώS]�X�~ u�:��aL=���Pߏ��l(m��!�~j�3���'-v6�(�T��Oj������㩿�+�;t�Hz��wI*�K`i�'&�;뤭����3�
x<�{\��58�+�^=\]7�I;h[�mף�Y�(�%��:=�c'�Q?]ǵ�'�}|g�Vpzz��	�.���>��� M�UI:�l�A���D�&{�
���L��:�h�>�ijkj� �/(��o�>~�Ɗڱ�8X0z^��I�
PR�"�,���}��@��'
J�s�I�܎�j'���uCa����,r��s(흄��oP�����F�Y��P�$
$l�P���?�$2w�R-��S�@�Z�p~f�У�^ϛ��S^���&��|%��1,R�]-�ԯ��K�g2�39l�g��D�7�ݒ��%<Q�%������#F
zCRX�щnX|?h�y��F�F�q[�o!#�4crr�����X!�3>6.���$ywI#��.�����l&#��]��V��wf�݆+Z�޾>�z�=��f��1	JK�g��VoO�tR���1��h�e��zCk|"6�G��eE�'�������f�1��w�,\��R�	�
Њؓ�D�����ۥ�y;���j���cG��/�?׻�ŵ��{���R��6����U��v����Zt�l�WGKc��H��{�>/'5�k�dK���usn~�&U��1;�w�őY�z����2g0��_ăS�J�/���݆��*;����7��f@�.���h�λ�ؒ�\�)�d��L_���|�$��m��i3+�.��By����^���w�	Z��m6�R�r<C��l	0\kX�[e��A�?.���m��Mx�:���,F98p��E$'�ѷsX#��6���2�S�\�,b���V!erD�J�Gaq�$�c��H��z.2��<�&-�|�dAY��uA�E��ë��szWI�{�����+�i0 ����?�F��~���F��]��v�0P�5Nx���3�%@��k"[zT+M���.����8���}ڔoYZ
$���ύf��Psn�GsV�F˥E�m�k��g!޴q���a��
�3kv�$�vE���R�x9�)N���s9�<��78���x�Dө�X�|5ڷ�X���큢�1�I(I�]��bn��5oU��
�Ab��O���\�It-m��-$���lg)����G�E�9�q^{��
��۰�jmm]�/Q�yҮ���ܿWL�ؽ��\�x7�Ծ�t�T�5L���a`Gq��qT;���IJ=�n�t()<0��?{�"��C�Π`-�s
	S^�);\nh����o�PP���|1q���`��O�������W�bnv�4="<����)���8w�"�	
�x�{o�;���a|�6�Ƥ�x7M�A[n+�}�Wai� ����(i����;��H?R$��>i�W�L_�a�)Ó��I�Z��"� 	u5�9/��;��u.^[�E�YZ��N�Io<x��i^������Ɗ�(����&�e�	���p~��w����1�5�JfZ�&+xd�z�>�GP����B�P�8.�v��z�����YF>nd�H<�(��$>�샵����?N)*p榅g�c�{�y�@�g�4�rHY�;����ߍ�-�F�]�N�)�$uJc�0��#բ�������ڛ�"���a��OxϨ�W�i�4@��}ȓ��6�L'v��!58�����Ui����ʊ��e�*�8k�ؔo��&�H�4+����@�u���{+p���)E”�A�
�Ԡ7��"M@)��z�-�̫I�L)J�ɖ@��K�?�Tۛ��6�c�9VY!����T��=c
\O_/:����ҹ҆�@s�9v���Zu��e3{v̞�89�a��ڢ(`H�� ��Fc׶
7%�(����E�Tv�N\B����8�
?��0�S��jE�1�fVX�c��l���h�̯��ᶲ����	�#ߓ��Ѐ�����ֱ��ݸ��#8CZ����B���M�Q�V�̤p��#�I�WZƠY��ǧ���oxTx_���n�$��|
e���b���?ݯTI�E��7�+^�FNJ��
�gp�$�iZ�Tg�đ����;l��y���!Wye�b��|��EQϵ���t�LW;�N�t˴ǒf�-������"�M��-V=
���͟�{`{����5S%�*PJ��<���#��O�s{l;��0��@/h1��ޱ��U�����@RԺ��wz�����w���l&��.�͵ Ce�4�6R`���|�TH��@|ʃ�$�:sV��86�
P�|�I�G�Ĉ��؉Î�m�p�2�YZYZF_o/*z�����Ӄ���i��s�%`��M%�6�Nz����/���H���2�"�060(�&�z:z+���A�mՏc1$y��q^��o�e�B�'�v0T�1B i�H &��� X�	�Z��j@���+�K�)��N8J���0�"�o�j�)m�$H�xHS';�pu�[�?�a-����5V�d�#8�&Q`��wP��J��F�x�	8�9%��9��{�E�6��F�Dl�qf�a��T'���Z]'�\�ɳ�Ƙ�i��
��\�%vذo�>8�똛_�KR�/�~�K����ٙk����,�Mn�+����<l���X�
��n&��E{�}8�'K�$��Ij׻�8���=�mC}d�P�g�=���h�i����o����T\��5P�ގz����Q�U��(�9�a�K�n|��s��]kWF��̽�4��v��)j�3k�Y�ձ-&�l�mh���FӇ��]YG㩯�׬���u�ت!A|]=C��rI�;Y�\É"l�Y���F��fZ����ęFƍ�N���6垤�`C�]��
]Sc��!4�M��AD@3���۵}—4����Um�4@zx��¢JF�~Һddb`�-�9�I���KZ�2=zϽ�6����d��Ω�y�V��]�w]܉6�Fi W�u�#�7H�\���Ie92� �ԟw�CZ�l�&���v���a|�(�ܺ����
�TY��e>��a3:6�#f�=��LS-�I�刓ޔ_�<SP �M9�Y��;q�C~uK�hr��=�VA@b~���@�߶<g�01�L�h�lP�m��Ir�qش1�
83U�`]�	OD������[u���0�ꣂ�r��T�Eر�p��R���x�+�����>�S/!�7F��l%�
�}��w�d��P�6�~��7
����ȏe�}mM�1��+/Z�W�����'���b��F��`�P�?�n7P"�w�
�WS	[<F�+��/�
�8��Iu?�LͭDj�����7l�d�{�<I7n��18����H�s��^ڛ
���y�Ɍ�:����PE��8`Ő�1ia�5j}����d2!`��S���c���p�ju��>��6/?����
��=y—��'|"�՞l�*pi
g���L(��ڗ�(\�n�T�绞1r�)<����M�o���-mj�v��fN��H����n`v7M�'�P.�W콫��^\,�rS�h���̩t�!�{sy/�d��熆�FE���L�:Τ�;��wau�>)g
�b�J
}t^��H;la�M@[ˉ��\���l��,!�	$Ѡ�8�A9M�kH���A�ꝭ�����n��$�,���4L����KSb��#�Z7.��;p@^�'�
:���hV����������Mm�Bo�7e�v��6�l����¦�AJp�j���"- �93�4�'��RV4w�yS�{�,�v�|�3�퐁���ĩ_��<�ʳ/"7<��N������^<|��X��8�
��g�!	°�_���6����f���0��b�4HCCE,,���ZA_>-�k�V��Z���h�3NL[�GH�i���t��^�R�����_�n���a��d�ֿc��j���
�i6n7�o�aՔ���=L��y@�u=3m>�y����c�^�,6K��}v{�R�'?"»�I�k�ucf�^)nn���
�馎[)LV�?�G�i��!�.��c_3��R�?	g���z+��],O7��������jzS��\.�έ��[�o��D7z݈�6
7mJ�
�I���W|Pud0C��h*�Je�x������=ML�x��Ւ݂��of�r���������U�7�4E�w�c�0��� 8��Y�8o^�+ke4��>3�H��P�6��vtl^DI�a����#}��a�Cmn��R
�z}�x���n�4L�4��mٻd�_2E�B�U��,�H��Q�'��r�*8�~�8F��h5�Ȟ$W�b{���(Ci��Cb�Z7�BP{W%&�*}�*}�J�kX�6_/��Z��f�8�@8	�6���hl�T�:Nd���F��-`��'���l�í��ͦ	�
�M[&ߐ�V;�dy�yy���x��g1�w/J��[Z[�������Ņu��9���8Hf0��1�k�d�$�f���X�����0��ۇ$]���:���L'H˾�J�4z�r�šH�`��csK��j]�5Q)G2�� �Bŭ����nk��!�q�p�zw���$C�B
���yvX�p,ϻ��Q��!�8�_��* �yߤ.�	���Ni
u���HE=7�o��n��Z���f�I7���#�z?�À^ĭ���[/�k@Vy2>��U���2[��:�{3Q��6���� X�J�hS:nh��Lax��60,L�>u�"�4�+e��î�yo��
�� �+$i@�߿�N����"���������~����͢P(b|lgΞ��Ì{�:~�8zr��=���͑:�iQ��u��v�ʯ��<���gQ?�&���@��	X�˲O)m��Tfu)G	Wp�YЕ˺@�9h��jN�D�pxb
���
�2� �����D�"f&���ʩ�ɞ�D

ʸD��]pӵ�U��,�.�=��Z�Z����3�f�	�Y�/_���gΒ�1�#G�D��$��K�=J���oJښM���	�={33W�crv��&��V��	����`����`Bk�$�����w�0X�3�����.70�cn��|��
����𻹖����4žLO�̂��BI�vl��L�����z��]J>C��gW�):�沺\O����K�N�[��[�X�#��VF0�����@�h��KX&��(&=\Y��9h��wp������زTT��t��zހ��>jM�zx!�P.��8�DC[��7�ӾF%�Q�b<�~�幑�u#��2�권���1�Ej~�K�sOi!$L
�I�Jd�^S�H`=
�B�����|�8����U�Ni��6�aә�]τ���c����`xh�@Q�h�L��L��OspWG�b
Ro&���#欆b� �����1�M����(��q�j�\WI�{���.u*�.N��6�N�K�Y�K�i��4f�$e��}�d�z+Kp���/a��w��w��-��V�5���nj��ƚ Wm\�2�圥����$��$1��$V꬙#�nMy=c$�(���4H�'����l2'�xC�M��u�ƕJk��X����sX"p:;3�2i�">g+ �!Z�k�	[|�*��R6f�1j*�z2�I�����?�*���O��:O�5��O�)|��m��hK��L)��:V���4�[��7�e�ruU����
Ѵ��^�?�w�
o|�
�f���܏��� �w���RW��l����@��J��E5	��c��`�W/]�������CF��:�A1<��XL���>l#�y"����Q�2����Ғ��%Hk��Xr�{Y��&T
��
�^�y'�-���[Ɨ���|10yUB =0X��8�1���4�~?��:��LZZ�k�&��P���֚���js{���y \c�gLy]��1�S=�ո�Q��l/��Z��<�@O�sݒ�tz���i#e�����v��nQ�)x���,5�&0�.��)/Jq�AS�w�h�(p�Y��M�ݮS'��DJ�:�'��ڞ<��p�T6K��� &M�l�
v*kZ�͆L��О$��/}F�T5vsͫ~�uބ��԰���:��z��U�a�$F�Bv�^<���̟D��3p�>k�R�8Wp��;)���u�'p����ʲI��ᅜ�KXuܾ��(7J��4^{�1��>�Q����!I���+�t7���![Ȳ>mi��1��.��ibx�éU�tm��|�Z�=8y�?[�j
 !!!N���Kb&��Z��S�k�8^x��T���Y�bX��ɟѵW@�72�{�!�\�ew�à@>�9��9���)H�*���%(G�@N}
k�L�\C��Di���3�����م4���95���o�L`��,a��1�u���VN�9A���.�� 1@2���t��,��2
�^1y<tp7���5��J����c���S�0An�y��M�^'��,z�\�eւL��[��
�`t����Z?!��;b��8%)aX���x�]]�6����:Xӭ��l�& �'lm���vj&PZ"u�@T,yk����-�8��V�:,[����h|$Y#��
b��bV�P�G����������r%
m5�4�1�A�u�(p�)}��Q��F�(`�N#�G��:��ب��}�)��1�q�+�l�v[m�N�~'�b�������t7<Oukbw��?Hڴ��
�8R@�5]l�k����R�J�zY@���*
lVG��C/p0����#�L�u�@_��ȦR�EYai�;z'�~�;[�*��ZxE�@�H>yC{U֜$3H�܉�����'����_G�ڛİ�#M����$�F�R�&�DC�#@�4tR�*m�M�&%{�8�����p�c	U�H�D@�ҕ5$R�I�8�bN���Jڸ���JÛO�N,�QkP;�#��|[�C�6��i~��\J�bQ03���~�.���%�B�q��z��1�0�\�"�]X��y���e|����m@�m����.��*��T '�Z®4���n�
^z��ͧ���$��!*W{���A��V/�J�����A��v�,c�����Obdx���p]^��������������&�l6#�~����?�I���+N2�ߎ=��T�ֱ�$l��,�"ޯ��H�ySs���vi�3��,��"X��Qw]a�٬*�K���_�*�O��
�y.Z��a�'�k�lэ#τ�OL������>����h�#��p���K/O���5���
�{(gܿ���+���}�����`,1ϊO�6YZå<B����)p���[�=g1!�����K'-W����<�^���%݇��nG�/u�va�(�G�w���\]���p��h��
��W���
�ݬ��
&���%A2�}ҡ\���˸t�
�Ib�����3~)b�xQsz:{>����NNN��a��u�(�mt��Z�d,X�M�]�_]�uu�!����+U$+tVM�D���݆�?���O�:�<�������Ҫ���Ia�y�­$���.���g2���X�����؍%;s+�P{�>u
��f�����5�8�.F�sPY���s�c@�g�Wm���D�<Z�~�������m����~�w�U��"ۓ�<i�\7���uz$/���y}6z�E�u��O�4�ۅѱQ�#�1���4�51�{�+��HKWE1Y��Y�����G��_0u-���w`z%��R���]��
��Q���1��`[�2�(��7�o���iܹi}�,�fƌ���HE��0��׬��P�H�s,�d�{�q�����˫ȍ��I��Vpf��=�KB������c���[YoON��}�����u�'�[T&��V
�oE>�|���ҳ�ߗK��3Y�9VZi=���S�����4[t�I㡄6�㩏��XݱG��I�[ʴTuM�(���������${�ӞQEc����DL\��\��T[1�k�kʓ�?,���쥲5��Z��Lϵp3{N�� �~Խnh���ve��gݨ��F;��V�N�z�Y�?��j���UN�}��w��Q<�fq�sG�:V$�0��4�����2jbi��y,��A:�I{Hcq�>�'��N\�&��v�Dd�B�9�
�ŕ7�O���ʌ;�f9���Ţ[�T�+a��j5l��em'
�S-O:9����>���~
��)�*���
��x�s��Z��h�d�MBŤ!
�M��x��0A`re�;�F#�%hd�Y�������m#�:=�ťUX�,ƶM�J��;�cك*��N��G_��Sg�;9�mh�=Μ=��ۿ����x챏S�/��W����w�k�N$S�8wf���9�Wm���@�\�&��7@�vu�o�"vP���g�o}�&v�S���UƋ��7�+Y���?Aժ��?�v�n���_���8Sً�{�0w����*1Pa�$�J�y�T0���Po��?��8v�2i?�����x��?����ඬf�4[��%����<��ϟ�}?,-�M�;w��{id�C/���5
(�Z��HK������khm/���Ҽ��ƺ�J�! �Ad�4�x!�0�{/K�z�f�^�b�\"�)iҤ][����3X�o��Ɛ�A�!�$ �4����G���ʛ�2��,��X�9h4L��[�',�e
�*W�m�5�����|y�3{!N4^��D���3��Iq��F%��4C��e��)(�2Xq���'l�cR7��m���(R� "��S���z۹����w���q+S����^m���Ԏ���Z�Z��`�C�a�H�ϫ|̜��|d�ϻgy��$�v��Nh#�][��/�Y%hB}��3(H9J#�Hز��Bb�*I0S�qd����_�
*�#�*��x+�r���?�t�x"�S>c���Q��/����o��4%���]/��Y��4�ˤ�c�̹We�������v�mHP!���ص��ɧ������#X�v0��o����w���}�DZ�b�O?��1�	���8u�@X ƛ��0& ���0�3��܍���8?u
��G��Ο�������~䇿��B�kF{�4U������
N^8����x�<�/\��;1ubW/�7L�x%Б(��܆�),���n�g�����H.E���7w������Kߣ�"<�����.L�����b��.��LR�i�FGG�;�ɪ��j/�����P~5z���Q���c�F yaa��H}�.צg����q����7����
"A�:3�^�q�Je�{��{�B/���R��k:iHJ�l:N�i�F@f ^���5\�\϶�t�ʵ	�5q�a��;ٛ��A��B��-7�brl��\m% �Xf�0'�ֿn�0p�dE1��L���ٍ!��卬����_�n��Iw=�ۮ�v��)�]�����рnV��
�i�����@RT#��u���l��F�{����ׂM������"�_�qW��cC�$��g]hc0^��h��/��`�,W{Rp#�eB^�֨�Q�QK�"��_Dc�X��o 7�&�C;H���a0l�=��U32贌G�4��ڋ��*�҅�-/�Y���;aϮ���p�UԳ=�S}������R,�=���d���]�02:�H9��ڶ�v�@�$���.�_��������J�c�\$ma��@F��e�;�O��m�q��wb��(1,5<��S��s�sx��718Џl_/�������s���r��/�Ϛo��B�O������g�x��<&w���~�{|W�R�%	��RF2������^�?�;��`�@�勗��ڿık\��ls�qh{�4����$rn�Ԇg��ƴ������*��ΉWF&ִ�kk%q��C�I�u��d��i���Y^*y#��J�W1��ҌA}1���Hw��H���6���r;�Q9gֱ�;�-�U���ل�I'u̻�v�g�<GL�,�����k��iM��bO�&>	I�o
P���6�s�����M�bb����gN�{jo��]��o�Z��oܔ���[�,3���_3�dv��I��oYP�x����r�@Ҳ|�h5-��X�r���j�&�Z޻)�
��|�j*'H-+6cx3)�D�뤉y/4�Wn��uJ��λ�v��F��U6R���B�nOR�{qR_s��5�a����M���ȸ�5;�M�z�$�H���y�Y��a�\�S�\��H1�
�lWm��{?���!�|�� ��!U_�K�j��L�%�d�eL��KU|�w�R#mC2Ge%�7ԋ��!��)b�m�e3����ѿs?�j
�<q�/\�oE?j��!�Ae�:��{ﺝ@Mgi��s�v��?�t��CI���N���փ}��8t��~��߷���!NU����bo=������(f�ѰQ*�������W_z�0�'�C��wf�q�?6��s/�w2��p��3u�8v
3g�0ڳ{���Eܾ}{&��Î���X�:��w��?��7pn~={�"�Y�;���]s��:}����]^u�I�W�&d�^R��A��H�m����� 1�8��۷W��c.�̆z��of�H����M���$k8���fJ��x=|�^��=���I^�7��3�b�(Zc#�7���2�`	�C��ƭw E�\ky|:����$hn�(����8a�Th3�ӽ���ޥ�b�y�`=��1�g�@"�<�����d��1�T�l�*�4�,��s�$n$Ob~�I��&�K��TZ�Dg����j� �n��Y�M|���+�Y��f�
�=,�aP��?(��彣n���Vm��a��M���r�z���l�F��o�6�J׵��(]��n�ь�淑�D	���F5�Qt�������Ԛ�(xX�d��Q����0ػ�癚�	1}b.b%%�Q���T�&��ӭ{�>~x����Z)� �a/��I�?�w��C�;��t}�4?@�!�D�|'�V)q�N��N��>;�
��i�Ff��E�{���@1���,�5�=$����݋�W��+,��`ue׮N#M�J>�骍��F�{��y�Oq��ݘ�Z���&G��s�y|�3���`%!�N���o����yyv�@��ǎ!M&;UC���=V{��{���g�v��215�P���bԞY�{����Z]B�ډ�ϬӽI|��{�S?�)ܹg�ڣ���EL���i����*��~�6�)-�g�@cm��`_Y��ݏ��+���������#���R�_������%\�v
���L����\�]l���(�H�p�v�GV$(Q� �jn��L�m�$Y}a2{{I�v�*$�e���ā�;�IQ�6AoU'�9r���m��擙7n2frF�8o�`��C��4�Uj�	��b�����f���� 5��^#��F�$v�kM$�S�i�~���JnU0�i�յ$	f��ϥ�Go>���|�fCa:w�*�?�4f��R:�?����<��7��=�L0�D�J�<��h��~���_}��d(7TO���w�ce���l���������\�?�YjN�}
:0qS9����:��h�r����@fF�n�^�c9=f\eE2�W@>a7�%��D�;Zm��ɯ��8"�p�qi���w˳uSn7�ӵ�/NCڢ��f�H��;lvڴ.��������8ͮP�M��)(n`E����N�y}*����h!�]ޫ�B�nkВPS��(̚$˅�T6$r)횕E���R"��C?��CX��?G��+�Y5�0�֕&�5On���u6�K��4-���^�@���(�G��݇1֟G��z�J�.��o=�D��"����a~e	�ϟ��?�~���`	�'>�q<��П:���x�޻�k�Ne��̈gé�Wq�ȃx��O I�e�I��o�&i��(��sh��֢�|wKW�$�-��1��%s	��zۍ߰�L�ػg7v��B������w�������gN���D*��>�(i����fai��/���i�&��Um��~������NQ�.�=|_���z�\�~�E�����wމw���%��K_���S��9�����˭a�L\��ū�j�>Z����ż~�$%�_\��ęK��i�q���G02R�ib^��?)��U@=�Mn�Ľ����W�`f�L��}ĩo�\s�g�(�R����z�=wC#��+�*f�꼸4�5�'v��FF++��-��h���i\]�4k�}:54'�J4L��!��ۤ��󶻑�x��EUWk�L�mH��:���x��ձm� 2��u�ϼw�`b~-���z�_1e:�S�2]v��遮j?嬁��5��O�J3Z���:�*e��Z�L*-Z���$ѿ��?
T��&�a����[�؅�-�#��
3y!���/aS=��I�Ӕ����K׺Y��;�p�E�����C?���A��p�*���mB����\���S�:d�m����O `.517���Wۑ���������Q
���~��m7$���X��΃�t�p=����B�&��^ǽ��2&�d{�枹U�8��>�@܇a�`�t��@D�^������H�J�i�26�w�{�vi�� ��>a0��I�
��N�'
+��}u'!A_8zqf��Tו} J���8੃�Cڥ�����_C��~��FrYKA]O*��"{fJXN�T�XJ��.�l�%��Y���1ޓ�&�v�\���"��s8�_�\�����]h��GI/�?�'�x�w��`�0��I;�K����x�{o���2i���Y��ϥ�s�^��/��Y��Ր�z�h�
rbƳ�0��
������9�꼎Ǟ��06�`gFGP�+�	l��	���k����\�tQ}E��H�vd�(�� ĊK���X�黖rF��t�tqޓ0:/Xf�u탈c7��/�ۿW�E����oap`�.]��C��=��:6�]`��4/���Vk�0:&��!M���•y��yJG�f&���UJӧLF��R,��թgD\/��!M�Bi��5�����.R_�b;i-��^�v�~F@��������������ULlߍ��Y��,f.��>�����)l�؃~+S�dž����1:�
�J	Yb���b�ܳ�V֖1�7@��������`n�"�}CĀ'Q^�ǹ���gr7.^>K�<E��}�r�4z�QZ[B��Z�� -F/R�,�K�ԇ�oJ7�y�X\�b>젙	@q�*ܨ���;�
��h��)ʃ��F�9e�Ofk��.Z&��*njHoVf|
�ൟ#�ha6��gR	q����*3h�@���|�F�`Y�y��Q�1K3���#�]"� ��z�Y���T�Y�N����V@��/A�e= ��i���������b�f�L{뺺�Q�o7&�>��
CK�N�~����&͕�@�6^Өvt�Bc5�#
��{/�6}���;
`)J8�gX���w+쎻�.}8]� �SF) ����Q�)��y��$�M�'�r��A&�0���O�A��
�J��v�"�0p�^��-����3�21�@���[#BLu�M��t��~6=af����VRM�v�k;��7ngz�Fna��%��"��;LwJt����f�%����Fh�[B�!I���FU	@�./|j`��HL!I��8��[���1��X�UB�ޣ�=Z'�C6��S�>��*N����ilN���o=��8�J�0(��Hb�d����$&rdt=żZۉ9��F�4V@���P�X����=	&��Hay���o=��^y	��2�i�������]�q:e�=�"�=��ä=�sb�S���3L��u��H`0�'�൨�{�=Gp��.����T�>z�m<��}z�������#Ȣ��0��}B��M�f^�"���������.��O�JXw�*G��"�*�����L�a+�n��[�[A���|��ߩZZ�k�/b����9�i�v���8C�dnq{��™+S�����|��'�Ʊ�	$-��ᇨ��6sgO�
�8���x��g15�.J$!m�X�x�ڃ�j;'�{$�?���o�;��s�<����X�>���mR��E��r���K�;�W�]��_=w�y��_�\ߨ��׏�F�'���A�K���8��N\�>�g�5֓�B	l8�s��`�6]�E	�}E�DR(p0fq� ]�p����?=�+���9����'Kp\$��Ny�3��4�j�Q`I��5�o�Ǎc��%��)]�\�j��fA��	3<�b�A�N|v��Ǻ���45�C4s�̔������NLvs>&k��V�~�|m��Z�gi��6���o�9��
$��R��X[�\��.��!j@�x�V

�,՞�~!]�h�D�y�Z��mj�=ۭ=�L�n\A�96�c�<�	ݞ����'S����wS�n(�������H���>�MB���በI:�q�~�7g	i�s7�8iF����D�+�ʲ�*-�Sc3����`�v���V)W�a��2�IЄ�5Y���i��y�x�g��N���6j�q�~�����E��F��%�
�؜����頶����,,50D����q��4��?���/���Ej���[g1�"w���'1��Bl�p��"�SQ�7��&�ꯞF2����*��<�߭L`���O��g�����e:I�W!�1H��0�;��o;�ɝ;E��H��]���X<Q�����NH��b��n<����;�������%	i�Hr��I�{Eα�fff�[oa�~�=|��}�c��>
[���F�kX\]�g��WD��֨�p��1v��K���x���p��	I377�#w��S�m5g���2B�R��_��T0����TV�zq
G�{+�q�%<�~���Ʃ9�-��N�%�'1���Ӻ`���ʻ1��שΉL�49��v��^F�U�%'IC9K���H`��������sI0p�=#�=�'N}#���u$sEqVqx���w��>E�Qw�A84�N�;��1\��E���-.��i�t����][��so��a�7T���z�
�V9$@ao���v������Gp��i�
�ai��VWhl����I�:Ii
�6Qm�s�g)m�fx�^�YK0�8��n�z)8�Yx��4QJsT�:���
H���q͇j$�y|�����4pb`Z ������x����J��>��jZ{}F*`n���@��� �o���1{�@������I���?��M���$���e���_ż�j_�dyH�u��8B��0���	-����R�P�C���wS�%�%�����6��j��� ���@����,�1ʝ� �i�&Lqe���3D�U]2�A��^\�H�k�7hf�L{=ԩ^qi69}�Aҷ7H
3iQ�!HqR��k���u�v��@j_��tI�$
-�ܚxF�X�J*f +�%���Hf&�Č�E
8��P��z,Ep��s�c*5��E��+*���	�*b|�r�*oy��%�I�:K ��fc���HCs��<^~�
q�Ĵ�R�J	K/����
�zǾaڐ_��_��_��3g����C&�����
�jO?�fE/��2^|�E;��QG:�����U�II���T&[�0xe`z�}�aphW6*H�<�$�P.�B���d�b�t��U�|=�W^~I�CY%%^ǵ*�����I�M��N�\���‹z��o�:����Q���~�ק��y�̦?z�
���Xn�n�N����^lj7��c�i��P���5f	4���Ti�y\�+a�����W��p���ō$n���]�oH�^1p��!Ec�����a�I���DQ����Q�S���3e��{H�_B���#{��xxx���
����ۓ))�6��dR��I��:��N����{����i��Ic�Q�~���WW��c���l����ޏV%m�m��9��Vz���x]Wi���y��W�4�vG��gC��̼��lo��qQo������sѲ)�hO?��B>N�IY4���*�����.���嵅WG}l��e�y�X:X��ke�ڲ��Y+U��� �˵�٭��}����ү�k3����
�@yn�Y5���j����	z�#��~f�[��϶����r['4slԳ�0�k-aE��~���x�v�"���q�yx}�K�mQ���?x?
�ĝ���N�ѿ�绡vm�	��{���k��U�g������$l�0r;0wQ�7ry/�-๞��?;K���"R�HYeY�ϟ���NM��RC:���1b�!��uD�v�
[IfUy�r�+�r	@3�t�SE�����'i�s�N̺�/��yMb-�!M\v�RƵ�:(��w_������صmD�:ݫ������Y8I[��_��<F��1<2*��D	�߼����.FFFp��N������9z����.��^1��%)������]jS��54Q�Ui�j�n5Cڍ�{'�[q���z�s[{��<'&&�s�<��C8{�O=u��OM��Ͽ%����AWE
���^}<ph��qf�G|�;�PRB�g/��{+�ik)��)��mz%�glˠ%�%�\����U|b����<��bUK����N-��w.b�
	�li�f�,7X���o %�i/>Y*�j��-��i�r:���\K���i�dS>얞�':���Au"�\�rU�K�̏-����V�a�vu6�;�*��a3k_RIK-}A���i}T�k���`�wC�Fq�r��}��ʤW�Ҹ�۝�����jѐ�m���Cu;˻�‡LZ|��j�Lj,��d~o���c���e��f�گ�h,��6
0�w��,�g�9�
Y��3;�2�"¬�n��s�~K�|��w�AB+Y�-�$~&��Pz�`����H�X�#o2sqྊ���k�B�sq�E}�t|�h�=�"����G��5���|7�R���҅σ�z�p;x��λ)�S���-�0j׆K�(�=�
����Q��
�o'��҂�I�������S hP���:���8�7���
�l�Q�����\F�t����w_>��·������L�B�z���H���^W��X8$s�����䕤�.{���Ԛ�%2�=�?bu�"2'�.��e��C�p���B�P L�m��qTP-Wh�M���B.�A�4>�L�6�ω�����J�U^���:��v�4�����bӺj��/��$m�V!-ME�I��7608��!�!���Ȑ�r�D�����$�oP��k|b���ǝw�:եlvS��	lRې�Y2�/e�H~�	,�!�7֢���ʊy#|�3�F/����Z^\�v@��M���pԹ�J�:]�=W��%�gKضcX�t��_ܵ�WΞ��H�im�4i��S}��Į�}��!�˅Kg�sro�"$6����oS��k��q�����&I˓n��Z�չk�1� ����:�}��aii��fý���1���I�8��A�������D(`ys�韎k�yx^=q���J���~�g0� i�9��p�5�=\�#NV#0�}���G]-�P ��Q�)c�>��T����u��� �o���U
T��<������z�����O�=�뼙��j��mV���=���Z@P�aR�an����:�x��t^h�#��m;^�ܾz�J���k��K�Y�
1����(��3���-Xv0Mحx���=
`]�it:���W��nL��)��q|�F(�oݨo}#��}��E ��5س��u���t|> �☸�"ywlF
�c\g���)_�s,ż��Vfľ�����k�ԙE���I��>�����A����z��!�e��rh��H�ĸl����˛����Ǩ�^,x���ka��h�D;����6`��-�-�߃��ub�WYY�y`c�x����o�9��)��N��:Ųxb"l8,����ۡ�?�z�W�sNŁ���|6��7�l;Z�a�nA_��p����m�>��
uj~��)6��B������M�"W��>�y{�L���vB�9*�4i���Rqp`�^T�Kpsh��
#���Ќ�Zm����W(�<�#v��s�ʺQXy�鴘K�t��p��K(�\��Fa/uK.��Rv,p��s5�=3wE4�ٱ�e�$q�F�����y�sE���Z�b�˫�x��ر}.M_�����zm
�.^�M�̐��a����\�4��F.C�}$��G608�U��tff�ȳo]L�z��X]_�%2ɜ�y��q���Hvax�C�,�C����)��Z���r��Aƌ"ʜ�0��2�3���]�5<�^%�w~����5��]z󾦄�C����V���5H�W��P��}N�Ʈq���;�XC����*J��%���ȚF5Mp����jN7��@�a-���	JnE#(��Zn��Qe{7��8�&����'ˊ�d��CUQ�nt�r�}y�E�ctݘ�""m�8���v��R�
���F�E��-
�D��S\�����ݷ��VO�2��"��-R �A�1)��IEND�B`�PK���\ ���&assets/images/settings/git-compare.svgnu�[���<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21 23.5C22.3807 23.5 23.5 22.3807 23.5 21C23.5 19.6193 22.3807 18.5 21 18.5C19.6193 18.5 18.5 19.6193 18.5 21C18.5 22.3807 19.6193 23.5 21 23.5Z" stroke="#6005FF" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11 13.5C12.3807 13.5 13.5 12.3807 13.5 11C13.5 9.61929 12.3807 8.5 11 8.5C9.61929 8.5 8.5 9.61929 8.5 11C8.5 12.3807 9.61929 13.5 11 13.5Z" stroke="#6005FF" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.833 11H19.333C19.775 11 20.199 11.1756 20.5115 11.4882C20.8241 11.8007 20.9997 12.2246 20.9997 12.6667V18.5" stroke="#6005FF" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.1667 21H12.6667C12.2246 21 11.8007 20.8244 11.4882 20.5118C11.1756 20.1993 11 19.7754 11 19.3333V13.5" stroke="#6005FF" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\w�����#assets/images/settings/branding.svgnu�[���<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.333 19.3333L20.9997 21L24.333 17.6666" stroke="#6B7280" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23.5 14.3333V12.6666C23.4997 12.3744 23.4225 12.0873 23.2763 11.8343C23.13 11.5812 22.9198 11.3711 22.6667 11.225L16.8333 7.89163C16.58 7.74535 16.2926 7.66833 16 7.66833C15.7074 7.66833 15.42 7.74535 15.1667 7.89163L9.33333 11.225C9.08022 11.3711 8.86998 11.5812 8.72372 11.8343C8.57745 12.0873 8.5003 12.3744 8.5 12.6666V19.3333C8.5003 19.6256 8.57745 19.9126 8.72372 20.1657C8.86998 20.4187 9.08022 20.6288 9.33333 20.775L15.1667 24.1083C15.42 24.2546 15.7074 24.3316 16 24.3316C16.2926 24.3316 16.58 24.2546 16.8333 24.1083L18.5 23.1583" stroke="#6B7280" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.7503 13.8333L12.292 9.53333" stroke="#6B7280" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.74121 11.8334L15.9995 16L23.2579 11.8334" stroke="#6B7280" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 24.3333V16" stroke="#6B7280" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\�D$assets/images/settings/plugin-st.pngnu�[����PNG


IHDR22?��tEXtSoftwareAdobe ImageReadyq�e<
�IDATx��Zi�]U?�]�2�f���k�B�
-�JH	��	|hİ�~�Dᓑ�ш�!�� D," H
R��i�)t���ͼ��mw9�������vB4���]޹��o�B�#^�����\�E�^�^49һU��)�����6�!$l,�K���E�����qh$����M�+�-q@����֡J��Vx��#�6�tao�!$�˲��>S �c/�<t����F�K��`��L�h\<[�o~�f߀ �[ uR@X��($��D��~�(���vr!��v��O����&!�=����0��ad8X�枵p��r��tql��xa=�B� s�W���ўu�:C"y�f��
D��p�M�a�4b�W_#@���D�~�Q�y��B�U7�*��f�Aޡu�JhR�f3電���y���4S[�liX�|ā �@9�_b����#�fu��4�Aa	���s��Ϧ	�XH�����<���{f2�ADN��a����������k����$BQ��`��k2L'�:j1(1u�hh�4К>�imc	
#���\Y3[�b�ZU$��Ǘ
/�Vׂ��6\0r����b�=�S>�$mpl(��R���
�X���p�{��S���d�6��e�[/_g��;���y�8zw��dH��$���y���}�a�g#�3S�b��v
|��	��R��&ϷNЗ��q��;�Z��h������)�Y�fH�IDe'@3�v�OْU�%%�'~;��o��;�BT L�&��hE�(�+��t�#�>�>8��F>5��ǯ�s�$�.�c�ڪܫ�Y�.$'�D	[D�@8
��&LR���U�K�i���y
��;I��G'��Ɖ�ڪ�[���I;�9-�_9���r[
[�����t)=����$&���g����*�v��`\)H1M7�2e+��2�Kԟ�;�PZ>}�@@_�˽�w#O#.pEXJ�i֣5 ް��~mI�t')6�T����%���@:���dFk/�O�Q�'LM�
x�+N�����Z�Z�eC�]=���@ϛڒ�'���I�:�����v� �����!�N	������<��dSV�?v�TA�#[��:|���B~v��Y��4f;2â<==�.Q�Q��*����L@��n�Ŝ��:ށ�=M���`���w/�>�� �xu'�n��*�{�S��
*�O�#�.b���W��G3��#*���ag��,M�Tא����5Z21�e�s^m�ͷ�d���.������~��e"��{�A���y��\�!	N��im�Qz
w}S������$�4���%�m��
�j�gsZ�r�8Bf��y��t7� �C�$�=��:]QdW�ڏ�~�&�q�kd��0��3��pE�UG)b��d�;`�2��	rNj&|���v���0G�b	��EZ�Gs,����y�	��e#�c�F�MA�@�R��j;�?��<�F�MR������y���蠡`uaEs侺?C.J�X��q�ЖbIH֫E!�er�����*�	�Ҙ`
~eG��R)�o�3��kg������B�o�#��iސxE�.�$6 �`���e����8bϳ%����~ߨI�὎���[��)�
%���̻�s�7��Ԃ�����4A�Y#�9/���XI��^�Y��$���6zz�q�f�Q1?p:Jr���v�����M�k�Iԁ$�
���F����t+�V�?C�����\��|l��Yf�/_�BM3�n�>�<&H
��C�b���u�T���:{p���g���g{��r�l���q��##�籊��kS�'��6�L'oM,����OX#���s�Z���n�Z2��"���"�TG\H;�X�I�:��Ϳ'k��g�ٓ���	[L=/_�2:e.�5qR0K׃��՛k� ;r��ޜ��W*�7TN�#�?�ә���������xЙ��lX�x~�N%��K|/�6��4�]A�č4���m�t�*�)��裸��O�S��OLld]8cI��(޶O�㻘���$tBL��R���A�Lc5�bq����ԼF9[�:�#Hs�Ì�7�	�^nj�f^���eR_s�����ڧ��.�S�(c�'�
O����ID�A��E)�b�^w�Uzb��R�x-A6&O��je!�	�QE��Oֺ\��Ȍ�@r`�K]N��n<��K2��H~=�XkđwS��m��Wt�g�8�F�����Q��'׺ln���EP���nvTN��&�G{�l�}�L�tӓ��Z<��R�8��W�>���2�ҕ���Vs��?��FW�w�)s-?0J�j~:
`��Տ�XBG�E�s9F�t����V�$�I�W�x��uZ ��m&����D!{����йf�O���;��'�B81��م�Lg���u��������V�J���qj_ $��d�@.��p�˗����0:��KH#�78�}��D��
�����3�|(�]ͳ24�Z ���9>�J�9��<鑈j��yu�K�`я�.�F�ľ'��I䖤�� uD�"$}��n0
r̬�NL�*wx
�?=�ᆠ���V�W���%eHܪ�LՄ��7,�(sLFk��Ҩ_H� ~q��˩�}����\n�#��3���ZvF��Zl�2tT��g\2��,�jyo���e��:h
̐�d~����Sm2���f`����E��/�+�j���5����b�g��\jO������9/b�CkO�h��
-mʚt�OW�W3����V�E��r闳��p Q�9	�8���?_�O�2�d*3AfM{��@�����[_::0Г|�0�.�ydP&��t���.�q�V�CZ){3�:�Zm+T��5���N	�,T2E��!h鉴�_�]]��w+Lhe夙���[�(
���|�D@�iI[��
�p��͉�	��p��\Զ��kPx��%S#���R@0A2Ջ�T�n����D�9i虉�L$4ͣ�F��K�ؐ�,�Z-�s�!�7����K4\υ�����̧q�@��<�T}����u��¾���s(9���	�m;�,����"%ؓ��������]��\S].��C�V��?�^w��;�� f�kި����~B�ђ�lz瞁U�����'2�S�P*����V����-��'%�)��+�
D��5Ԏڸ|�w�=�]vU��}vg�H�3OܴE�����4#�_T������!�m��ڢ��(�'��L�!�lo�b��A�~�x=}��F���L�x]�"W�}d�A��/RL�C��?���1i�"���0V1N��o���)k���#	��z
t�9���wЊ�W�1�Gp:
��1���������r������IEND�B`�PK���\\ʹ�� assets/images/settings/theme.svgnu�[���<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.5 8.5H8.5V14.3333H23.5V8.5Z" stroke="#6005FF" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23.4999 17.6667H19.3333V23.5001H23.4999V17.6667Z" stroke="#6005FF" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 17.6667H8.5V23.5001H16V17.6667Z" stroke="#6005FF" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\菼l7R7R!assets/images/settings/icon_2.svgnu�[���<svg width="131" height="28" viewBox="0 0 131 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.1212 1.99414C10.5062 1.99414 5.14551 7.37061 5.14551 13.9991C5.14551 20.63 10.5062 26.006 17.1212 26.006C23.7353 26.006 29.0965 20.63 29.0965 13.9991C29.0965 7.36921 23.7344 1.99414 17.1212 1.99414ZM16.8901 16.1957C16.7437 16.7053 16.5252 17.1557 16.2248 17.5421C15.9324 17.9238 15.5502 18.2276 15.0921 18.4469C14.6299 18.6649 14.0863 18.7741 13.45 18.7741C12.7917 18.7741 12.2335 18.6565 11.768 18.4241C11.3044 18.1963 10.9301 17.8855 10.6344 17.4963C10.3485 17.1099 10.1338 16.6605 10.0005 16.1481C9.86338 15.6325 9.79788 15.0972 9.79788 14.5358V10.1827H11.6993V14.5358C11.6993 14.8667 11.7301 15.1803 11.7905 15.4738C11.8527 15.7739 11.9496 16.0352 12.0927 16.2685C12.2335 16.5 12.4085 16.6853 12.6336 16.8201C12.8506 16.9559 13.1225 17.0245 13.4495 17.0245C13.7765 17.0245 14.0465 16.9559 14.2715 16.8155C14.4966 16.6755 14.6818 16.4902 14.8152 16.2606C14.956 16.0287 15.0552 15.7608 15.1141 15.4575C15.1712 15.1597 15.2016 14.855 15.2016 14.5372V10.1869H17.103V14.5372H17.1039C17.1035 15.1331 17.0314 15.6833 16.8901 16.1957ZM24.4437 18.775H18.6844V16.9956H24.4437V18.775ZM24.4437 15.3693H18.6844V13.5899H24.4437V15.3693ZM24.4437 11.9649H18.6844V10.1855H24.4437V11.9649Z" fill="url(#paint0_linear_14804_3010)"/>
<path d="M34.242 9.39887V5.69727H35.7494V9.39887C35.7494 9.7708 35.8402 10.0559 36.0222 10.2566C36.2047 10.4582 36.4713 10.5576 36.8241 10.5576C37.1764 10.5576 37.4468 10.4582 37.6349 10.2566C37.822 10.0559 37.9175 9.7708 37.9175 9.39887V5.69727H39.4245V9.39887C39.4245 9.94767 39.2972 10.4199 39.0417 10.8171C38.7863 11.2156 38.4635 11.5054 38.0723 11.6865C37.6812 11.8699 37.2578 11.9609 36.7988 11.9609C36.0826 11.9609 35.4776 11.7369 34.984 11.2893C34.4886 10.8423 34.242 10.2118 34.242 9.39887Z" fill="url(#paint1_linear_14804_3010)"/>
<path d="M40.9745 5.69727H42.4819V10.7503H44.359V11.8988H40.9754L40.9745 5.69727Z" fill="url(#paint2_linear_14804_3010)"/>
<path d="M45.0374 6.8448V5.69727H49.919V6.84667H48.2267V11.8988H46.7198V6.8448H45.0374Z" fill="url(#paint3_linear_14804_3010)"/>
<path d="M51.082 11.8988V5.69727H52.5895V11.8988H51.082Z" fill="url(#paint4_linear_14804_3010)"/>
<path d="M61.1812 5.69727V11.8988H59.6742V8.40067L58.2379 11.8988H57.1183L55.682 8.40067V11.8988H54.175V5.69727H55.9019L57.683 9.9738L59.4539 5.69727H61.1812Z" fill="url(#paint5_linear_14804_3010)"/>
<path d="M66.6991 11.899L66.3557 10.8574H64.1353L63.7942 11.899H62.1895L64.3397 5.68018H66.1728L68.3137 11.899H66.6991ZM64.5128 9.70891H65.9758L65.2441 7.50064L64.5128 9.70891Z" fill="url(#paint6_linear_14804_3010)"/>
<path d="M68.8925 6.8448V5.69727H73.7755V6.84667H72.0814V11.8988H70.5744V6.8448H68.8925Z" fill="url(#paint7_linear_14804_3010)"/>
<path d="M78.6828 5.68018V6.82864H76.4446V8.16284H78.4185V9.31038H76.4446V10.7505H78.6828V11.899H74.9371V5.68018H78.6828Z" fill="url(#paint8_linear_14804_3010)"/>
<path d="M87.0804 11.899L86.7379 10.8574H84.5165L84.1745 11.899H82.5698L84.721 5.68018H86.5536L88.6945 11.899H87.0804ZM84.8945 9.70891H86.3575L85.6263 7.50064L84.8945 9.70891Z" fill="url(#paint9_linear_14804_3010)"/>
<path d="M91.875 5.69727C92.8593 5.69727 93.6715 5.98427 94.3064 6.55967C94.9399 7.1332 95.2567 7.87847 95.2567 8.79453C95.2567 9.7106 94.938 10.4573 94.3064 11.0341C93.6715 11.6099 92.8589 11.8993 91.875 11.8993H89.6976V5.69773L91.875 5.69727ZM91.2041 10.7503H91.875C92.4504 10.7503 92.9029 10.5744 93.2318 10.2197C93.5607 9.866 93.7253 9.39327 93.7253 8.7978C93.7253 8.20233 93.5607 7.72867 93.2318 7.37493C92.9029 7.02167 92.4495 6.84433 91.875 6.84433H91.2041V10.7503Z" fill="url(#paint10_linear_14804_3010)"/>
<path d="M98.6515 5.69727C99.6377 5.69727 100.449 5.98427 101.084 6.55967C101.717 7.1332 102.035 7.87847 102.035 8.79453C102.035 9.7106 101.715 10.4573 101.084 11.0341C100.449 11.6099 99.6377 11.8993 98.6515 11.8993H96.475V5.69773L98.6515 5.69727ZM97.9819 10.7503H98.6519C99.2274 10.7503 99.6798 10.5744 100.01 10.2197C100.339 9.866 100.503 9.39327 100.503 8.7978C100.503 8.20233 100.339 7.72867 100.01 7.37493C99.6807 7.02167 99.2274 6.84433 98.6519 6.84433H97.9819V10.7503Z" fill="url(#paint11_linear_14804_3010)"/>
<path d="M103.811 11.061C103.197 10.4604 102.889 9.70113 102.889 8.78086C102.889 7.862 103.197 7.10366 103.811 6.50586C104.425 5.90946 105.177 5.60986 106.067 5.60986C106.957 5.60986 107.706 5.90946 108.315 6.50586C108.923 7.10366 109.226 7.86293 109.226 8.78086C109.226 9.70113 108.921 10.4604 108.31 11.061C107.698 11.6616 106.95 11.9631 106.062 11.9631C105.175 11.9621 104.425 11.6616 103.811 11.061ZM107.248 10.0801C107.544 9.7576 107.693 9.3236 107.693 8.78133C107.693 8.24093 107.544 7.80693 107.248 7.48353C106.951 7.162 106.555 6.99773 106.058 6.99773C105.56 6.99773 105.165 7.162 104.869 7.48353C104.572 7.80693 104.424 8.24093 104.424 8.78133C104.424 9.3236 104.571 9.7576 104.869 10.0801C105.165 10.4035 105.561 10.5659 106.058 10.5659C106.554 10.5659 106.952 10.4035 107.248 10.0801Z" fill="url(#paint12_linear_14804_3010)"/>
<path d="M114.487 5.68018H115.995V11.899H114.487L111.967 7.98504V11.899H110.457V5.68018H111.967L114.487 9.59411V5.68018Z" fill="url(#paint13_linear_14804_3010)"/>
<path d="M119.677 6.80256C119.491 6.80256 119.335 6.85202 119.215 6.95236C119.094 7.05316 119.035 7.19549 119.035 7.38589C119.035 7.57396 119.089 7.72609 119.201 7.84135C119.31 7.95615 119.458 8.04576 119.638 8.10502C119.818 8.16709 120.017 8.22636 120.236 8.28189C120.458 8.33836 120.675 8.40649 120.891 8.48629C121.11 8.56562 121.309 8.66409 121.486 8.78169C121.667 8.90022 121.809 9.06589 121.924 9.28102C122.033 9.49616 122.09 9.75422 122.09 10.052C122.09 10.577 121.877 11.0254 121.454 11.4011C121.028 11.7749 120.466 11.9611 119.769 11.9611C119.071 11.9611 118.511 11.794 118.084 11.4585C117.658 11.1211 117.446 10.6456 117.446 10.0268H119.05C119.091 10.5228 119.344 10.7697 119.808 10.7697C120.026 10.7697 120.194 10.7123 120.32 10.5975C120.444 10.4836 120.505 10.3357 120.505 10.1598C120.505 9.98289 120.45 9.83869 120.338 9.72622C120.229 9.61562 120.082 9.52555 119.901 9.46162C119.722 9.39675 119.522 9.33609 119.304 9.28102C119.081 9.22456 118.865 9.15456 118.649 9.07336C118.431 8.99122 118.231 8.89276 118.054 8.77702C117.874 8.66316 117.731 8.49656 117.617 8.28142C117.505 8.06629 117.45 7.81196 117.45 7.51609C117.45 6.93976 117.665 6.47589 118.094 6.12869C118.523 5.78149 119.071 5.60742 119.738 5.60742C120.405 5.60742 120.943 5.75956 121.354 6.06429C121.766 6.36622 121.981 6.84549 121.997 7.49836H120.359C120.335 7.27482 120.263 7.10076 120.143 6.98129C120.02 6.86229 119.867 6.80256 119.677 6.80256Z" fill="url(#paint14_linear_14804_3010)"/>
<path d="M34.7515 21.3975V16.6235H37.7V17.3618H35.7139V18.6162H37.2288V19.3545H35.7139V21.3999L34.7515 21.3975Z" fill="url(#paint15_linear_14804_3010)"/>
<path d="M43.3573 21.4458C42.67 21.4458 42.0922 21.2162 41.6244 20.7551C41.156 20.2941 40.9216 19.7098 40.9216 18.9995C40.9216 18.2893 41.1565 17.7064 41.6276 17.2449C42.0983 16.7847 42.6766 16.5542 43.3606 16.5542C44.045 16.5542 44.6219 16.7838 45.0902 17.2449C45.5586 17.705 45.793 18.2893 45.793 18.9995C45.793 19.7098 45.5586 20.2936 45.0902 20.7551C44.6219 21.2171 44.045 21.4458 43.3573 21.4458ZM44.4081 20.1359C44.6776 19.8517 44.8109 19.4713 44.8109 18.9958C44.8109 18.5217 44.6767 18.1455 44.4081 17.8609C44.14 17.5776 43.7901 17.4362 43.3573 17.4362C42.9245 17.4362 42.5732 17.5813 42.3032 17.8646C42.0319 18.1479 41.8971 18.5273 41.8971 19.0023C41.8971 19.4746 42.0314 19.8507 42.3032 20.1382C42.5741 20.4224 42.9255 20.5657 43.3573 20.5657C43.7901 20.5633 44.14 20.4205 44.4081 20.1359Z" fill="url(#paint16_linear_14804_3010)"/>
<path d="M50.2441 19.4958V21.398H49.2808V16.623H51.0353C51.5855 16.623 52.0103 16.7616 52.3083 17.0388C52.6064 17.3142 52.7561 17.6539 52.7561 18.0604C52.7561 18.3618 52.6639 18.6418 52.4828 18.9027C52.3004 19.1645 52.014 19.3404 51.6224 19.437L52.8375 21.3994H51.6973L50.5571 19.4986H50.2427L50.2441 19.4958ZM50.2441 17.3613V18.7557H51.0353C51.2767 18.7557 51.461 18.6927 51.5883 18.569C51.7156 18.4426 51.7801 18.2727 51.7801 18.0585C51.7801 17.8443 51.716 17.6749 51.5883 17.548C51.4615 17.4215 51.2767 17.3613 51.0353 17.3613H50.2441Z" fill="url(#paint17_linear_14804_3010)"/>
<path d="M63.9683 16.6088V17.348H62.1811V18.5996H63.7638V19.3388H62.1811V20.6595H63.9683V21.3978H61.2187V16.6079H63.9683V16.6088Z" fill="url(#paint18_linear_14804_3010)"/>
<path d="M67.6826 16.623H68.6463V20.6672H70.1744V21.398H67.6835L67.6826 16.623Z" fill="url(#paint19_linear_14804_3010)"/>
<path d="M76.3014 16.6088V17.348H74.5147V18.5996H76.0965V19.3388H74.5147V20.6595H76.3014V21.3978H73.5509V16.6079H76.3014V16.6088Z" fill="url(#paint20_linear_14804_3010)"/>
<path d="M85.209 16.623V21.3966H84.2532V18.3805L82.9567 21.3975H82.2662L80.9758 18.394V21.3975H80.0111V16.6235H81.083L82.6133 20.1608L84.1423 16.6235L85.209 16.623Z" fill="url(#paint21_linear_14804_3010)"/>
<path d="M91.7122 16.6088V17.348H89.925V18.5996H91.5106V19.3388H89.925V20.6595H91.7122V21.3978H88.9617V16.6079H91.7122V16.6088Z" fill="url(#paint22_linear_14804_3010)"/>
<path d="M98.5448 16.6089H99.5072V21.3988H98.5448L96.3875 18.0873V21.3988H95.4242V16.6089H96.3875L98.5448 19.9213V16.6089Z" fill="url(#paint23_linear_14804_3010)"/>
<path d="M102.981 17.3613V16.623H106.508V17.3613H105.22V21.3961H104.264V17.3613H102.981Z" fill="url(#paint24_linear_14804_3010)"/>
<path d="M112.146 21.4458C111.46 21.4458 110.881 21.2162 110.413 20.7551C109.944 20.2941 109.709 19.7098 109.709 18.9995C109.709 18.2893 109.945 17.7064 110.417 17.2449C110.889 16.7847 111.465 16.5542 112.15 16.5542C112.836 16.5542 113.412 16.7838 113.881 17.2449C114.348 17.705 114.582 18.2893 114.582 18.9995C114.582 19.7098 114.348 20.2936 113.881 20.7551C113.412 21.2162 112.834 21.4458 112.146 21.4458ZM113.198 20.1359C113.465 19.8517 113.6 19.4713 113.6 18.9958C113.6 18.5217 113.465 18.1455 113.198 17.8609C112.929 17.5776 112.579 17.4362 112.147 17.4362C111.713 17.4362 111.362 17.5813 111.092 17.8646C110.821 18.1479 110.686 18.5273 110.686 19.0023C110.686 19.4746 110.821 19.8507 111.092 20.1382C111.362 20.4224 111.713 20.5657 112.147 20.5657C112.579 20.5633 112.929 20.4205 113.198 20.1359Z" fill="url(#paint25_linear_14804_3010)"/>
<path d="M119.034 19.4958V21.398H118.069V16.623H119.823C120.374 16.623 120.799 16.7616 121.097 17.0388C121.395 17.3142 121.544 17.6539 121.544 18.0604C121.544 18.3618 121.453 18.6418 121.27 18.9027C121.086 19.1645 120.803 19.3404 120.411 19.437L121.626 21.3994H120.485L119.344 19.4986H119.032V19.4972L119.034 19.4958ZM119.034 17.3613V18.7557H119.823C120.067 18.7557 120.25 18.6927 120.379 18.569C120.506 18.443 120.569 18.2727 120.569 18.0585C120.569 17.8443 120.505 17.6749 120.379 17.548C120.252 17.421 120.069 17.3613 119.823 17.3613H119.034Z" fill="url(#paint26_linear_14804_3010)"/>
<path d="M125.059 5.00582H124.643C124.566 5.00582 124.512 4.97642 124.478 4.91902L124.149 4.34642C124.133 4.32076 124.117 4.30349 124.097 4.29369C124.079 4.28202 124.051 4.27549 124.015 4.27549H123.897V5.00536H123.44V3.03369H124.082C124.226 3.03369 124.348 3.04769 124.45 3.07802C124.549 3.10742 124.631 3.14616 124.697 3.19936C124.76 3.25162 124.804 3.31416 124.836 3.38416C124.865 3.45416 124.879 3.53302 124.879 3.61562C124.879 3.68142 124.87 3.74069 124.854 3.79809C124.837 3.85409 124.81 3.90682 124.778 3.95582C124.744 4.00342 124.704 4.04729 124.653 4.08509C124.605 4.12336 124.546 4.15322 124.484 4.17842C124.515 4.19476 124.541 4.21249 124.567 4.23582C124.595 4.25682 124.616 4.28436 124.636 4.31702L125.059 5.00582ZM124.084 3.96096C124.148 3.96096 124.201 3.95256 124.244 3.93622C124.288 3.92082 124.325 3.89982 124.352 3.86996C124.38 3.84102 124.399 3.80882 124.411 3.77056C124.424 3.73416 124.43 3.69402 124.43 3.65016C124.43 3.56382 124.401 3.49569 124.346 3.44622C124.29 3.39862 124.202 3.37529 124.081 3.37529H123.898V3.95956H124.084L124.084 3.96096Z" fill="url(#paint27_linear_14804_3010)"/>
<path d="M125.074 5.01337H124.643C124.563 5.01337 124.504 4.9821 124.472 4.92377L124.143 4.35024C124.127 4.32737 124.111 4.3101 124.094 4.3003C124.078 4.2905 124.05 4.28397 124.017 4.28397H123.91V5.01337H123.433V3.0249H124.084C124.228 3.0249 124.353 3.03937 124.453 3.06877C124.556 3.09817 124.638 3.13877 124.704 3.19337C124.768 3.2461 124.814 3.30957 124.844 3.38144C124.875 3.45424 124.889 3.53357 124.889 3.61617C124.889 3.68057 124.88 3.74264 124.862 3.80097C124.847 3.85744 124.819 3.91204 124.786 3.96197C124.751 4.0105 124.708 4.0553 124.659 4.09264C124.615 4.1253 124.561 4.15704 124.503 4.17944C124.528 4.1953 124.549 4.21024 124.572 4.2303C124.601 4.25364 124.623 4.28024 124.643 4.3143L125.074 5.01337ZM123.891 4.2681H124.017C124.054 4.2681 124.084 4.27464 124.103 4.2863C124.123 4.29844 124.143 4.31664 124.158 4.34277L124.488 4.9149C124.519 4.9709 124.571 4.99844 124.644 4.99844H125.045L124.632 4.32504C124.612 4.2947 124.588 4.2667 124.564 4.24384C124.538 4.22144 124.511 4.20184 124.482 4.18737L124.467 4.1799L124.485 4.17337C124.548 4.14864 124.604 4.11737 124.651 4.0805C124.699 4.04317 124.74 4.00117 124.774 3.9531C124.806 3.90644 124.832 3.85277 124.849 3.7963C124.866 3.74077 124.875 3.6787 124.875 3.61664C124.875 3.53544 124.861 3.4589 124.831 3.38797C124.801 3.3189 124.757 3.25684 124.695 3.20644C124.631 3.15324 124.551 3.11404 124.451 3.08417C124.352 3.05524 124.229 3.0403 124.088 3.0403H123.454V4.9961H123.896V4.26764L123.891 4.2681ZM124.084 3.9685H123.891V3.3679H124.084C124.204 3.3679 124.295 3.39357 124.353 3.44257C124.41 3.4925 124.441 3.56297 124.441 3.65117C124.441 3.69504 124.434 3.73517 124.42 3.7753C124.407 3.8145 124.386 3.84904 124.357 3.87657C124.33 3.90597 124.292 3.92744 124.247 3.9447C124.202 3.96104 124.148 3.9685 124.084 3.9685ZM123.91 3.95217H124.084C124.145 3.95217 124.199 3.9447 124.241 3.9293C124.284 3.91297 124.32 3.89197 124.347 3.8649C124.374 3.83784 124.394 3.8075 124.407 3.77064C124.417 3.73424 124.424 3.6941 124.424 3.6521C124.424 3.56904 124.396 3.50277 124.343 3.45704C124.287 3.40944 124.202 3.38564 124.084 3.38564H123.911V3.9531H123.91V3.95217Z" fill="url(#paint28_linear_14804_3010)"/>
<path d="M124.149 5.72216C123.206 5.72216 122.441 4.95776 122.441 4.01976C122.441 3.07989 123.208 2.31689 124.149 2.31689C125.09 2.31689 125.855 3.08129 125.855 4.01976C125.855 4.95776 125.089 5.72216 124.149 5.72216ZM124.149 2.49283C123.303 2.49283 122.617 3.17743 122.617 4.01976C122.617 4.86209 123.304 5.54669 124.149 5.54669C124.992 5.54669 125.679 4.86163 125.679 4.01976C125.679 3.17743 124.992 2.49283 124.149 2.49283Z" fill="url(#paint29_linear_14804_3010)"/>
<defs>
<linearGradient id="paint0_linear_14804_3010" x1="5.14551" y1="14.0001" x2="29.0967" y2="14.0001" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint1_linear_14804_3010" x1="34.2422" y1="8.82902" x2="39.4243" y2="8.82902" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint2_linear_14804_3010" x1="40.9745" y1="8.79803" x2="44.3587" y2="8.79803" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint3_linear_14804_3010" x1="45.0376" y1="8.79803" x2="49.9191" y2="8.79803" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint4_linear_14804_3010" x1="51.0823" y1="8.79803" x2="52.5891" y2="8.79803" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint5_linear_14804_3010" x1="54.175" y1="8.79803" x2="61.1814" y2="8.79803" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint6_linear_14804_3010" x1="62.1889" y1="8.78953" x2="68.3135" y2="8.78953" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint7_linear_14804_3010" x1="68.8924" y1="8.79803" x2="73.7752" y2="8.79803" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint8_linear_14804_3010" x1="74.9371" y1="8.78953" x2="78.6827" y2="8.78953" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint9_linear_14804_3010" x1="82.5694" y1="8.78953" x2="88.6945" y2="8.78953" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint10_linear_14804_3010" x1="89.6974" y1="8.79827" x2="95.2569" y2="8.79827" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint11_linear_14804_3010" x1="96.475" y1="8.79827" x2="102.035" y2="8.79827" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint12_linear_14804_3010" x1="102.889" y1="8.78651" x2="109.226" y2="8.78651" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint13_linear_14804_3010" x1="110.457" y1="8.78953" x2="115.995" y2="8.78953" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint14_linear_14804_3010" x1="117.445" y1="8.78482" x2="122.089" y2="8.78482" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint15_linear_14804_3010" x1="34.7512" y1="19.0118" x2="37.7" y2="19.0118" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint16_linear_14804_3010" x1="40.9215" y1="19" x2="45.7929" y2="19" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint17_linear_14804_3010" x1="49.2808" y1="19.0111" x2="52.8377" y2="19.0111" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint18_linear_14804_3010" x1="61.219" y1="19.0027" x2="63.9685" y2="19.0027" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint19_linear_14804_3010" x1="67.6826" y1="19.0107" x2="70.174" y2="19.0107" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint20_linear_14804_3010" x1="73.5509" y1="19.0027" x2="76.3014" y2="19.0027" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint21_linear_14804_3010" x1="80.0118" y1="19.0102" x2="85.209" y2="19.0102" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint22_linear_14804_3010" x1="88.9619" y1="19.0027" x2="91.7123" y2="19.0027" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint23_linear_14804_3010" x1="95.4241" y1="19.0037" x2="99.5069" y2="19.0037" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint24_linear_14804_3010" x1="102.981" y1="19.0097" x2="106.508" y2="19.0097" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint25_linear_14804_3010" x1="109.709" y1="19" x2="114.582" y2="19" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint26_linear_14804_3010" x1="118.07" y1="19.0111" x2="121.626" y2="19.0111" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint27_linear_14804_3010" x1="123.44" y1="4.01966" x2="125.059" y2="4.01966" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint28_linear_14804_3010" x1="123.433" y1="4.01928" x2="125.074" y2="4.01928" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<linearGradient id="paint29_linear_14804_3010" x1="122.441" y1="4.0192" x2="125.854" y2="4.0192" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
</defs>
</svg>
PK���\����=�='assets/images/settings/build_banner.pngnu�[����PNG


IHDRnC��g	pHYs��sRGB���gAMA���a=HIDATx��=I]�s�}��<vY�GdAWʂ��(�F�h�hHL���
�+cb%��g�$��*�P(RR*DE�e�ײ/���}ߏ3����s����3=g���ֹ�̫�����ݑ�/Ƨ�E^�<!��>�h���D�Q3"�ۺ�4����MB!�������3�ݩpo\��$mBi;w�<��~1~i��/B!m�t_d����k�BH'H4��(q��B!�3�BH��pBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǠpBHǘB ����e��A2/ΖEQbA�E���g~1�G��'��Eu�R?��D���ڇ�e���L�	!�P�I`a�ld�=	�+���'��JH��޸�}OJj�'.��3��	QЎ!�r�_�h+ԃiB(ܤF �����&�&�kP�I-��]��m�,o�E�,C�&����&��4JeC�i(�dbT�_S /�L�,C�&�=��!m��M&�и�i�=�u��q�d"���o_;�N�o�˛o�>0v���� �s'�xvEvw���`�$�%�d/��~?�`q)�M�ҡ�M&b/���!���\�|��^�}t.> ��"�,^�'c;�q]zH�"�D�63h�O����ܝ�l�{�\�-I�p��4�y�?y�3D���q���E�����cD^��D���'�l��!vw2�r!�]9�Ep
7����x��
G�"��w�o��fdI���VvOZ��zi�J�1(�d"|�(��[���x��n�;&ϛL	�쥇E6ץv��4/����.
7iX�_�������G�۾������c>�A�IQ���"B�1��M�&�A��h�҆h��V������W&�9��yp�`]X��M�\M	*�|a��&S����l�^����@��7;��ќ�,�e�7��&�Q[9�%�h+k{R�N���N6�4kê�H�<qZf�F���q��~bG뉽x?�l������[����g�p1�Ӊ���ow�`�w��ȳ_|8�o���6`hoA�G�v�y/.�,,�,��8�ru�)�y@���^ID���ݭ䞹"SV<���M��'�5��Y���
���^I��A| �����v1�4=_�lW�a{s���{Fb��7�v�&�E:�vў��ջ��q([��U�:[��A���۵���$�չ!���6l�,�	i�v��?H*�������^�I��#�+ m��W��;�7�Y�H��=�\��
�7�bDI���.^���F7=Udգ'1������(���~�n�4 ޅ����H��~�Q��3_#ׯ�W0 |�)�6!�`)�O�w�7C�`/񴷏=�����n�2D���ۇ���X�`o�H����ru��z���~t:�-�zg���o|��Xp?57�7e��L��%�׽z&츓m�S�B���G�?��s_�̀���C�+�y��b��]��A�����>�o�?|��+��c˞�ȧ�_I���s��oX�x8��� �+�ÌƮҦ���T<����v&��B)W��ߊ2�po����o����ݟ}���-?�L
uH�@�Pݖ���)�-��X�wߙ|>#�^٘X�G��i��&L��@�w����J�1
�Z�J���%.����zj�����˞L��5�|}�
KTD§M��1%�8�s6X=ɀ}A�{/���;/~N����h����
�{91�����|�|ྏ���]ִb:�Z��^>��
B�K�]�b�=�0�XI��%qZ�5�6\%��>3�<KJ1O�ƃ�>���4"Il�
N&���8�;dn;�o�Trk���P�0[�� ��n�������1�V�!e�J`q�e:�	��Qr]����4�Oquw#���MH��}�~Eط�1e~�Rs�#�l<�K�
M�n�lty����ϑ�&>����t����ci	|ں���/�o����3����#��UI�*4R��C�I�8��@�A�o�7/[��N�?�A�$�@���%���]&f%��>ǁ �,.���:TD�Tָ��d�"�[Wt᪻CL�$��A��^om%	�Ϋ�T��?�6}'����M�I-��?{�w�7*
��ύ��x����9���L0�c�2�w����+���k8�!m]�b�ir����o�l ��\er��g�&I���o����
`i��&�����`J
�P�u�l�L�}���\�p��6!m��]*�ʱNf���j�Yr���skmB�* �ѥ*��A�2V�k�z�B���ȏ�yi�HVf�m<����%�Hg�}p�n����5���y��6kr?C4��[T$�+�c��HN&��6!��5�x#�y�@w�`��60��M�YP@��+���&N@��͢�9%�O����
��.Y�;�o՛ ����-�d�ח�Ǖ$�X��+��
‚?yf&���1�&��(�ͫ�#›@��1�E��A�&�4z�h�����|�-.��ć�_��A?vnB�t BHǠpBHǠ㨥���.$�����W�7�t��^��'.A�JBf��-�|0�M>{������|򽘊u&��z���'�<�;'�\R�1���c
+'[@&�;�g_��dnn.�2@�wwwSK=J��pB�/�)sp�+���
����Y�U��������^*�^���B��=E��e������K[�E@���7�	�o��H�q��=��;�J�zqqqb+;/����Ī���J�|H5�zg���ڢ��Ӹ�8۽>*��o�A��(=vI?�P����ކ���n����N-p�7�.j����sT���Fy�K�7�(�
��Dq�i��$g�n��AK�ݭ䁽�Y�!��/�fNK��C�n��!�oy�y��&[[��{!��$�iB�MpY-$6��
�83�x1u!�ۦa�����u�}Ҵ-��q}��8Z�Ao
K��X���Ęg�v��i$y..�$e�M�ck�]��v\���:&���y�s���-���f>�e+ZwgS���Mg�~-�i�^[>��v�X����dK����랰�Ƕ}�z��o�F-nu�&��G���9O�_��-}��-���%.��\O����S�μ�F�3��k~����`?>t��ۨ�\�G
�ȣ��i��_��F9�#���}H��@F�!�J���Ž����<�9@e����=|��{�f`L���2�k�H�E%Z|������yW	�`ډU��.m;���4�o�j�������E�t�L[O�rM$?ɝ�(�����F1���Я���g�ip͍"?�W���}���S"��E��ߞM�����,�W�^]ƹH���t�����s8\0Z=v�{�v~G�=�A���|�u�OGÉ�\�u���C[�C���b�S�ck�ɱ�G�����/���2��m?s��vl�MMG�sh��q���'���7����iD���� ��wc�ӱ�@b�ظY�y"Ɖԉ�ѯ�����9:)ZFc'Q�NOG��}�lg�G�KG�-����� r6ߧ}W"�'3Q^~��%���nP�v"���D6���D�g����K�n����������8��|��Վ�~a���y�D��:��P���:��:r���g2�/\���!2�a��6|�j�h��ص#��'�t���[U��XG��8�k9i�v�i��D���:��9;n���*�"�����2��.ֺ���,n��f�ـ��3����Ja#��	�����{���"g#��~)=�nllJ�`M��l]�B��B�O�TB�}�ȇv�4����ҖL��523����N$������ȳ_"r�:��s^&r��l���7�� �''չ�pb�vLр�ĵBj��+�x����J?�����8>�e��!9>.VNg�`��l�:����[r��6�2��^�fKmT��e���nq��E�j�̴�[�G�`�� Կ�Z���h|��I,��y�ȵ7�K���D�舊Tc�j�z�UPv�-��Ԅ��!T�I#���6�p�6����|��D~�"qG&ȏM��'ߖ-�c,�5[g�}R�y���X�()*!Q�u�i�*��vJ5�땓�;�����^__O�۫^�
qV�
�~�.��wdV6�h����n���ͷM#�nll��+(ˀ�E�>t|X��w���d�Ǎ�.�͕�dhw��m����*���7�l��O&���[�o�~��i�2ų�4����#�*���!�
�l�#�pǮXT�͖�������fp�s�c!]&5`��BUN�Q���K�V�|P��2_�/$�c���7*+/�Q{y�y �`�����'�<�!�>�h��6Z����{>����~meY�#�i��Ye�;��m,�:O��l���d��2Q���Ez�mD�V��
�Ȉ*	A�p@���,݈�F���d�}4������!��{��/��_�۷L$l�I�;��}zs��
T��P�j#q�#f��p��$⦋��a#����>��M^ȟo�$�D����B=������5�1ܪNW�[1�&6.dc���A�X�Ѿ�m]Їĥ��ȫ��hʞ��|�q�h5���i]�	��T�?�|�I�	@㘳7�|�D�������pO���]fn�+Xm��Y�9�מ�lnd~��5���|�"�}��exH=�����+T��SR".B��!ؿ�K��NJܒ����^!/�'r�����g31��y��m��
��1,+2���`�����U}6����j������u���+�h�ΦҖ�7e�п������
L�RI��3��o4�1��&�	����qմ��99�ߜ��e_���d�W�7��
?7�—
p�Mź��v �n��$\%��cք[�R�iA	�Fe$�Hb0@�>�	7"G�|�4.���#�W�6����MYYY��ۃ+��X�J���gDn{��6���/2!)�hEY���Y%�әS!���CAs���,Z���v��W|�&l��r�ABk�6��n>�>����D[�~�g߯�?�,c7����6yO(U!���݌ɥ����&~io|���	y#�e!ń�V3�m��ˊ6�P���f�G�`�wd`�Va�?
pFC��fh�H`mommM���l���T��"�#�p�W
���.�G�y�R7]��j�s�~k�F/|�h����J�_n�s+�I��B���
N�7��Ϛ�?��n��V��0���w2�
�9MT���O���岼����_�By��_-<��u�-��g?+/}�K���y��(w�uW������?�3��'>!M�F�U��J�^-�I�db�2���"�Z�P$ܻS�c���3i��NL�U��.��Ӿ弼��,���c�]+>����w�!o}�[�y�{^�b���?�.�Ї>��_��W�J���Ѿz�j*��w�w�yX,��_��T����]�O��r�ܹ�n��DQ$�q�\kYY�o��ٷ��>O����y�Nqr�]����0���w��+�|�}��y���O}F�+��sK��{�ul�[F����i��۶-����K��,W���Շ$(�����,�!Su�@�W��_��t�{��9y���o�vI~�?����<%��U��g<Cn���tV8��oNc�	�×}���˛��&�����e/{���L����]^����~�m��~������*���v5�v(��#A>�;"_��,���%��W}���ߗ5Ĺ!�47�&˓u��t\>���-YM�C��G\{6�~�+_M��ey8��]�M���OE����Kֽ&]'o��eowWVW��/~��O�1���Kr�����&�Y�uᒬ��&믤�{�̩d�/��=sJ�X��L��t]^��JD��<6��>�A�ɺi{��e��#o�=�> �|�#$(J�TC��]�[��r� ���������Ѽ���}���ƺH=qℼ�=��-�4,h����m�m�<`}c%����|&�+W���7���B|��]G�	�l��4��{��|�w�|�Od���[_�X�_��F�|n}a&�g�f��R�
�`_�|E._��Z�c4��6�oӒ:u�D�^Ox���	O|\*�&Bq�Xߐ��Hx�u���X���?.�
���7<:�������ZK5��.�[���\�O|r���4�'>���$|�%¾�<$�m�<��
�?:)[���? �{l�zi�H6�#���;a��:�v�c;�2��
����6x�ޗZ��yۀ���w�;���=�x�K^2�
!�c��Ñ6P1'ʵQl�FC����B�H.ܛ}����
K���>(�tr(�O�ZSB��?>���n�%���s�
�<E��鷤b�i�K��#S��a������pwz
�B�e^Ĺ�…���S���D����^H�@�a���zw}��ºN�O��x�M��q=�ap�}�u��7ҁP��?{�t*��N���y�v_�r*�X?��\�m��e�	m�N<����C|����?�|𷮕�>yZ^����{�:�[��O~��<y2k.�y�����u��k�7��i�[� ����b��rA_"����d7J�@��AGQ�`;|`��`?�p�+R;����ž$P�s���(���ӏ���=�zn��\��x��
Tsr�m
�~��7�d���X�w⬿�ᕠ�]}H��h�[��xo�d}�)ZP��G�4}g��r���C�Հ��p�z��8M�B�m�������w�40�81�e7y�����H���Y����"=V�6�ꯄ�)T`�5=|�>�:Y9��q���$��͢M�A���U#b�{�>���c���$짤ʿiu{�,8�B:C/�(|҈��]V�U����ڵ�ܻ��y��UN6�B4˝L��J� ���
�F�vD��ml����}$��b�r ��u�:)���]#�!Bu몀C���&�8��C�A��8_��L�1
o��Bu��n]�1�*�Q�p��.G�ć!��8�BP��C��t ��}{KH4¹�Y'J��
�[Y�u�7#Jʓ�Ǎz�h�?����\�^�Q�1��,�q)��!�ِƀ�m��P�
�����P�=m�2%ڝ����P����*Q��__�����B�ap��rX]%Q8�;x�q�w���!��	Q@����F,r�;8��]�À�]����`ǝ�q��䝐��F�|�2�E�P��1��e���z'SZGS�t���9�@hhmO��#`�G�IQ;BH��-wb�y`i�eb��cN*?�	�q��!س�p
Id��I3�S�I��սt�;�¾�ڞ�Q�����J��W�*�H����
��;�Sn���U�L�<�*!M�r�x�L�/l�UC�t4N�뤹1'iq�c����2���ft�p�Jb�eBHǁ��8T�A�Y!Y3
UP6U��Ir�@��.���9�Қ�:1�:��5�]z����1��4
����CP
�K�377��������\"~ۛ��K����3:��3F/���آ�ߛ�e~�2_Y0�ilԮ�yy�:�<=-s���Q\_��jAo�KP���V�u>� �
vۦ()ܸ�0�/)��Fl۱\9+�y9��-i�~���p��c;n��偬��q�Bl�_�+�.�N]�(K���y��*!��r*�ŵ�;�φh��:*����~nr|��8�Ų����	܃��\X��'@����|�u_3�)�0�O6��B�7����i���o<��ƅ(��9.�z�J1��X�'�l-��9�"߱Z^���?zR��ޑ�^��VN�x#jd�Q&n\4fE[D�Э]�@L�G��0s����^��^g��n"�Onq�[<}9��B���Ӧ��*ѻu����s(j�N*8��Þ�m7�>Q��"�F_�c��4�bVNF�q2���F���j����HÇ��T�ε�ᦘ��%�.�w�}�5�f��0�X��pST'N˙�Ír�;��#��̏=��z�t�Mk����
��������A�}O*�(ܤ
�w����8�
x����;�ۣ~��G�9sb�'~녥�>F�M��%9��o���zC����)�M��#K��I6;�����y-"�߮���ӧ˔�V�ST	�u��2���m��I}�V�6�s��ֳM����էu��ٖ�m^Q�H�����yo����U����q�%hKH�IHp��ט~�ۄ�%^E�ˈ�M4�ȳ��|]�<��V��6�;[99j9��0��,���<��f%�Xº��Y��p��g�/OT�,o[>�7�"+�V��ōc7���M�q&�R-ӿ��"��"��--S�].Sx}qm��kK��7��Z�)���ng�!3G�x�"�MQZE�ʦ�y�x`�k�⮳�b�C�s�>z�}��D�d�ZR��l��X�i�s���4�#����c�hl��~��B�J���i`s�4���{���1'G���B��8�o�E�/��]3�UN��kM�C^���2!d�h��yv9�$�z˪��p��ݠ��7FiM4��U�f|�1�$����"�D���v�z��šO���k@��q��&!��S%����)��m�$�r���&�z�L��K��\�����.�%��I�O�nJ�z�._I�q��a�֩T^$E��U���{�)S�e�i%�|��E��w`'������@�4�+!5S�z��;���os;�|[+D�ѧ}�t��g��os�>/��{hi��t(��QS�mZ	G��j��Z}���OGM�2"�'�&>i�����&*���A����2>�ۢ><�,��Ω\�\}yU߳OgS>e���Tc	�y���^�Z�W�$�%}a$���p�)��&�N�T9�u�Xw%]�!�g���R{�u������pOBiz��q�qG��D�ʅ�OBHY"�l��#���q7�7��R/���F�<��:�788�dcM�E�q7y�	!�PwC���P���=܌�{Xxz�]�5�w�P@=7����\�I�6!A)���_5|����l?+��Z�iNJ��^3qܪǬ���N*Ǜ$]��b�ᣮ��H�<��kE�o땔h4���a�!!n�V�f�E۴����N�Z��H�C��<��@�ecq�Q@!�LQs]�m�f�cĖn�Φ|��jgSE��l*M-���6h�?nj6!aq	����_�Mh�,TS�m�m��������*o�M��h���F�Y?IHxL�vY�6����&�f>fLrQ�|,aӢw���7�d.���ŭ&�WN�Z�$�nB���m�I��k�.o�||����7�N����b����i��փ�	!�Z����j2$͆f̠ɍ�B�2c ��ˮ�Y��!3B��g͎�3��1=����
�����Cu2E�;0�0d/��4���i��2w�Q"���u���X{u��D�@k�<u��"��J޵�7��!��Cw��8�bO�̳m��+O�1+:�e�����T�D*�_wsw4�р��ٰ��С�|��_�|�K�����(+jU{ܫ�]'�ǣ,�f�f3$�U"D�j�ຐ|F��\���,\e�k���@��/u5���5�^W�튮->-�֫CL�\1���Ƅ;}�>L)j6��lB�g��Z��&�f�y=�پͲ��5�E���y�o[stWsu.�w�on�C+}������8�vW����U��v�n�wV����Z�Z�c>t�0���wG^�vy�M���6��{л�'��|�b���.�jTI�;�gX�'��F��ų�eYƵ����-���&��vy�;�~�a����c�X�2��=��ۊ"k�FS�y���n`
f�p�����]�6��kږ���>��t���f�!�� 47ta{5-[�RT]�]�L��u�?e\N.�ԕ��:��e����E���"�B�X��,c��)lyE�^���_�<��貺�}湰=��i�%GHg��z��mW�H�~i���uSQd�^���掱�%/o׾ض՗�ַ�ѕ6!�Ĭ��j��=ݗv���dUa*���_�,z�>��e�hO�ꌵ�T����=�u��5Q
����<&�fʸ�xm�+���C9�����aT	�s)��y}#U�սN��S,�i�~`�|�T�w��V��X�J�I����!yE�����Y�m�G^\\R�6�b^%xg�;���h&�Dw��6?��BPl=ڤ*��âum�+�*˖і&��p�!��ԋ�E+���w8�D��<�u�y�4iEa��}��ܕ��2�4]����ˬ��%|���m�Ț5ߜ�}������.z����5j�+�����k.p�"ӣ���M�Z��oR�߶�@���_����W�&�{H=`���`�*?F�]%|�mmm�G��M/.h�7��_^>�m\��eE�-��Նnqv�43�°v���?m�*7���FA��ȫ�P��,c}ڬ,��o�Cs[W��6*}3M�]�BmT�}н
*�����xv=%e}Ů(�4||�U.l��μe.��6��F�ɯnB�5i�6�3���m�j~��V}�<�7�0E7o_�ټn\��S7���#��@��y��ֆ~�7�˪��hf:�6>�k�Yie+�+
=���[�SD�u��e��y0V��&Զu\��'
���)c̲���[�ZQZ�h�6S99�����S>*��\i�	��z�mʖ�ʾ��Ε֤�>bU��} �Eg��#�C�p�%�UN�k/�PO�ƭ�)0���z�pm����R�a�SI�W.�v��zEc_Ail��Y��|o��Ф7qݯ�uS�Z�'�6|,]W̳�^�l�M7W��u�r�0��>�:]H�%��uYYQT� �h[3�Pe���ם�'�U�u��O9'YF�q]s!,���X����5y�q�n�:��f��G^y\V�MȊҵ��W�Y8΍���l"���Nc-'g�����������m�eqY�>���.�-��2��W>V���-�s���,wS�z�X,l�v�K��8�TJ���h��i割�6e�.���:iJH����Ť�;�yi�jY��4,� y�%�i&�d�f֭oR/Ӹ�F�
�P��W���G����,o	B�-'I;(c�6Y���i����֝d�|� e���1���78`k�X���]Q��v��7��ӛ�kAo�E����p@G��uQ��\��
�����-_QL�"U���]��s[}Y�q��*���0D�-[���\O[�/����Է�	j��hۮjZ�{0�-n��g�
�w�7�M�ʈ�+o[�j�Mg�.�<sU��i�E�P��U$��Z�>~gs�mǾL>��y۸�1+��]���ヹ�>���z�+�o��A�
t��Lw���`F�����sA��2��,u��#�>i��.l���=��u���}�6�6��A�9�z����+W�vE�2�Z��+I$A�U�UBH�(����u-LZ������w��Jc�R�����E׎C��
�%��7�\w$3����I���MY���C����s��4Z9ϰ1YT�|*}��ETyݶ��I*����I��z9�J��uz��,%6��%�z�)�6�.[cn�0�*�y/�7
�H���L"nf���U��O���L얣5o��J���ԟB3HUK��k�I-�iT)s�2��6��.lQ��y�E��V�yU"J�D���j�s������@�h�q���\֭�A�?^����1!E/�����]k�}���P�nq���,��I=䉮�N�t|�j|ťLy�E��Bշ��Z溋$N8u�4��4����`�r5���/�Z�"�U�t\�P�����;����i����l���;�K�7/s�E��[�4�w�l9��KSd�)te�ݢ�67�o�,��p탏xC�766�~�'��ܜ,,,���������^��^?𥹵d���W�H�β�²�*vM�c���yi�Bc.s����|��<=o���q�I؀H_�z5l���ʊ,--���|ssS������,̭�&�	7���dB�M3�2iNÿjZ�y�eγ�<�q'�΍�m�k)�8\��V�iK/o�����8qℬ����]<>��㳾�#K�'R��F|ܣ�����ye����b6��o:�e�}�T���})��;�.q��g�L7��]Q�}�Y���˩�
���ӥۤ�������%9����I�J#�^�JȤT�4|�-��(#�ye˛o[^d�����Qs~Q^6W��J�m��:�c�*����^�ȅRǩS�R+�N �x���#kK�$e(�`hf �8���MB`��
���Wdmy�ۻ(涶��e�S��듏m]�|��:��m���e_Ξ=[�h�Fqt ;�
ͅ*7�׍W�0��w}:o�2��G&���AP�"	�r���ڽR�mҘŝ^v��!-���i�nB����ɓ����|6Jm�\ܘ��Mip��ߌ�CwӬ�����w51r��5�W	�m�P.�&f=�oZ�e��m{o�{�f�;�p�^ 5S6���%�E�V����=�چ��6"=��
Q
�����Xܩn�UB0��E����Cˊ�sQ����m�"rڨ>����\%m����:����c���(�#�m�ZN���V��y�ֶ�����B���Ȅ�	��YŶXa`��V�m�{z�:ef�\
Hl�#�@#4E���޼$�狼���I�C�4�)���c�7!R%��G�}����zqͣuX۰r};���D���ʦ�}�EVNK%�2��0/��X8`ZA�k�����O۠K֪��
��&��Q��A��ݘ�$mAI���QR��6E��/�>`R�p��'
A�&ǝ�
�*�p�C�*o.6�~�;���Ż�����Z6H�&MQ��pR�oh!E{���l�P$�=��=ԋc��k�#�q�p��;��Q[�]��ceY�m�S%"���H�u���TN�n]ih�@��y�<4;�׷)���c��#�����?=����v:ȯ����D��k�X����Ѐ 5�Y%x6+�e�����i��-w	�Y6�u6"~�X"�ۇ�>�/�
S��x��p��A��q�#�R&V��]�;��l~�o	�z���O#K|��9�_�8��i��r*��/gi��0�^�X��������kWݺ��y��!��!d��{r�`��zԣ�M<���_MΣWI��&�%�@���
,n�%Ђ�-�>�4�_,\���I�[����2~榬\Z�͠���I���,��s��A�v2E��`��}����oRh�7�R�X�F������m/k4�; !5��i��U,����U���O��pC�1�����J˲4�7O3>�!�I�fH_Ѷ�4\�G9ݿ���#o�I(�<j��4�n5��܊WD	h��;!5a6��	���S��q5�1�smo�瓏���P�ɛTC�5y�R�捞 ��w��6ǝ�
��M&��\F�]Ӿ�#o�2������H�W�\I-oX�M���q/N{[۠���ڄ��F+�˗/���a$�&@e$�{qn-u�����IX�4*!-�ԩSi��p�@PC�<�W?��兓RF�BH�ٳgS�ɅRK8�i#�^��X[�F�И�$��BHK�h_w�u���
�	�(�q���e��=R��V��)Bр�M�!�hY����+���z��p*��*A�*F�B:���!�@tQi���cU��Xתu&��5������M!ar���4�[Y�i"�K�7���i�b�w6�e/��Wkl�	!$%�V4�fÚ�8�V�QR�G��BoM�s2�_�!��TN�/��}`e�\%�M�>�y`X�,�f`8 !�ԁ6��"�{���B>}!d�FקCy坾B�q%�K{�ig-����!�[��B����\%mB�,�	x(�k&0����"��B�
��/Ҵ����UA��\:!�}�p�p��W4��>�Ԏ��exl�\}$��?��S���i�?��bϣ�Y�@��}�Ǭ�P�0J_[k��^��ď�����l;��"��]�c��s���1ӊ�c�ms$
mrt��m���<��1ڇ�v�����,��]�.�YV��	�~���8��������~�~-����li[�W�kzl=�������S�lB�6h��j'�Od��֏�h�h�i�,�A8����R�e�&�ܰc�cZ$�|�m�9�b��^�� ?ۺy��mlˋʖ�F4��e�HSm�A۶�s]����z���E�D�S&}}��U�?W���:�y��5m˳��?2օ��BI8����q7M��@ƭ����O9��2k��2}{�6�k�e�?r=�	����u��ә��s�e��Oo��-��Hnَ��뱮iq��;WeΏ�LOP<ֳ��s=ۦs��-[/q�=���㼷��;���F�@��^�Q�6/�щ���o �����Ų���"�{J�.s�"K�]�%};)���2�o�x��l����-M[f=��o۴~�iq�ќ��COw`)[у�������ڼ|�t/'�1�+Kdl�/s�Q_��_4�օ��N@c­�.�Ꭶ�`8kx0\@3�H#��Q5ṡ&n}��mD��W��^׼k;�@e�Ӗ�h����lcu�"��8(zp��p���7�܉Y.�v���/�z0���<�ԴvM�s����#��צc�Ͻ5�o6�:Ē���c���o$������B�#�";�����ܼ�����Y�cy�y�:v��e���7���*�K����H�Zy�c6��0a�{)��$�;VidY�,�a�%�ȉ�V�+}���c��f��<����v�k�q\�.�V�\�q���s�l�R�#�c���8������鏎��#t˹�ާ���v�z~��ܖ�V��T���"$e�����q7<6����)����c��#^�nxl
a�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1(܄�1z�ȇ�BHW�����BH'H4���ŋ��E��L&nB!�%�{�L�ޙ3ѥd�[1C!��h4�z������K��I~�m!�2uM��A��^��(1�1�Be"*
�IEND�B`�PK���\��c�:�:,assets/images/settings/create_new_banner.pngnu�[����PNG


IHDR���O>	pHYs%%IR$�sRGB���gAMA���a:KIDATx�	|T���	Y���F �	DقK
:��jQb[��.��u����o	�v����U�z�*�[A"( ����I�b�@6B2s���L�pr2�9sΙ�̼��g>��>g����y��y$H8
�řm��c&�(������jJ?�YQ"�+�x(!AB� ABqۈ%s�|c^�ԛ�d��N�t_KSU���{+k�}QZs��r��Y����q�0	Ľ׼R<�SG�����Gj�A8F޽���{��:p.� � A���E�}漌��
\��,��'K�:��Hn�YRx׿�V�u������'�uЃ �)p/u�]w���&�1ؽ�3�zI$�k|>��ʙ��d1P�
��ԁa�'��:�9B�9���w�g}�����0q�k��}�\�r�1�0��1G�8��6��;=dc:���5+}��7���� &���w�w�+�8�b�)(�A���%gk��:�a�oO\V���((�6�o`�Jˑ�Tr��Q�,@�8��ī���;�fR��Ձw�oE�1�LB�8ο��;�=y���P� @2'��哮��1v(ee�xG��� Θ���gޟn�0q�p�]?J������
wu�;���#@���/���;w�o߽�m}�l\���PBa�8����|���>�đ��:� �`ο��6�pHv?]�� qՁ0q�3��X~���n2�P�����c����?Bķ: NXp����_s��u�@�8���"9��F�������}��Ek�QH݈R�ڒ)5-]V�����@�Bs�����;����A]M��AqMOS��p�
���*6P3B�G��1#�k�:��: �#I���MA�o��w����:ބ:�^u @��ο�����ޢ��U�w���y�;��t��;$G���(�"��}��?��<�#�:��:e������+�qX��4�H�;�2������}�i��}���.�JNT7̏�G�/��Qq5���a�puPV�=���ʷ����[�ΩB�����(�:x�}r:K�(�.@n�y���������{{��o�4/X3M5(n�i��K���,���Xsx_�l�ճS��y�	�ξoViua�P�^�y�
_.5~Df��St��Cl��V<��g?�sY�(_+�P~߂i����o��;6�%������aB�	�oL�~i���OԜ��X�1���Nʦڪ�ӥ�e����zh���E�o�{��C�&��Au�I��C�%_T�ԥ�¬�%�<vGQV�@M���c�nʛ>�f�;���`0pb���}޵Ż�ezb�/�$�:����3�ԁ0*x`ڬ+">-�wl�MCݎ._�W�����e
+"�W
���L�B�aT�}�����.w���V������Jqx������Č�Q�w��҆�����`Fg��DWpT��z�hM����E�0�>����k��|�f��t�c��{�
o8��l����w�I�%y����ߎ�/�g�o�ґC�4�,f��� $�$Q��̱;��}m$
��I�+�h��i�'���+)n���Ϙ<�'��$���<�<fA��Ӛ��]B�J�!��T�?��1%���4E�s���F���5��Q�9h[��� ���Q��/�:�����IS���.}_,�Ab�7�eØ��c=������o�!3��X������o⺯�-�����Lpҿ��c���o�#��"��g�AKS+=���˄h'}@��P���H
s�|F?{�zӤ3�@���:�t�����|{~dǤ�u�~&;(C��Õ�]����K�Pc<�����4r�0�0��59��p��No��;z�j�=���t�/���Dz�Ys&�o}������x�a�P8�����K��S�%�A��ɿ1W���:����\u�����q�o���7���=�J�$̨8q����]1�3˽�N�99���n��h,
�Fp��׃,&��9/�@Dڙ�5�p�5�\�7c��������n��
�l&�I�V._Ϝ<G}٬�5�kOZQV�fI��ʕ�[4�ѩn҉���{��s�7#E�*����rd�|��jO6��B�,�ظ�T(�v�~~|e��Sy(ji��p�q��r�f�|�{��G��_ο���!� �Ȫ"�j9����bLt��)��x�Ia8k���(�ɾ�Cs�̽|�`Ã%���U6�!�_8��N��:z7���^�S.�ˎ���+`ԎF�H��L<��;�$��pn���&�N
���$�J�`�,����:;0��f�8����S�1i��3+�է�z���m�B(����]�z(J��c~���?��GY�/}�)M�ĺ?@8�_�)�}g̀J9+���rZ禍S��P��'l���l��'��?�=fD\�70���l.�12���a6���²����*�YO��b�l0�zr}C���w���Ok�)ׅP0!�=z~(�xI�㱋y���pk��� �$��)�]��;�P��߹�M:��׶k�u����[i�k��?�00�0vR1݁U����M�W��zȋ��hU�r���y��Y_	������X.`�^��gT_�\L^��Ǎ;h.��Ԯ�kebG�LR��j�/�}߂Y�;���Q�N�v|�$����%��ͬ�r��� u�9�>ia����NV�l`�5��r����R�gz�	�a洫�憏��n�ϋ���������AdD�ƒO�x������T@����Ξ��}0��Z�'�r�����x�Lf0�{�d�д��.��^x���ޓ����P�$K�2�t(%\�#��R$zd��r���ʴD����=�C,�Rͱ3&AWPc_���&�s2�c���B޷⹝Ү-G�C{O��S/߇˓?�pF��_�6�}��d�+���d�ۇ$3h�k���sXڵ���?�Ǯǡ;�y���Kw�{�\}�;I ��r/��>,�D�Sl1+��o�ξ`Le�U^�1ɶ��y`�1Kb�w�E����X��o���d�z�6K�p9e��qDV"w�j���
W��Jj>�ܥ\�XP�?���Ңm���>'$x9 ���N��V��W>'0v���j���>|���IgF�&���׫V}^�������$�#��)�1`Hz�?�`É��^-�HT�z(���Q�N���:⹡8���e�<x�.#���$���g��׿a�7��yd@H2�0ޥ�W-V*\��k�=�n�co;y��V����i����	��Ԇ���b��pFj=ɕ����� )+���#�c_\�I���W'��c��ǟ;c2�P�Z�����\�nU	oPh3o�p��v�|8Y��VolOY
W]�;�W~����|U{��` �]xڭqh_npCŕ�E$C90�\��L�5���8N|���<^^�b΁������~��N2Q��B��t�v�Q�A��j�keǃ�ן)
�($�
��/y�IR��k��77j���53>���KU=J@m��T�6T/m����{J��f����aȟ�Iu��1��x\�%��l�g�\6��p��f0�>���N��&^=�]�'��v�Z��V�ʴ�'��	)�_VѼ'
�HR'�
"��d���Ϋ#e����?�
��M�2<]^�N�ڏ~��W��/�^|(��A��;��`��M��	��;;/�]��n%xm-1�ah�?7�Z��H��0PH�7�1���B���v�9�~���*�����wT&r�6�������8��»/��H���	��A����à�u��`Q������̋��z��u�>�4rxMu2�p���
fDp[ߌ��g,���I]fƫn�q��s��h?i���83D����FY�ı$�\X�0o��n'_5Іea�����p��0#��o�m�N�k�a�c@`76�蕄��ՁZ�{z@8.؉���*�P�o1�!/
d6�y9�:�P<wͻ�������>/����D�p��F����@�>+Q�k���VD8����yv�J�D���X�1	mB�fn��x	/��?>��:�ܹM�!-�N�Hv�a������·*s���ø�o�U���s/Do�u7{^�؍v�<��=b����,gv�1�i�|OHwF*�,��%8a�����]V�eC��#�?���3�^[�)}�~%�|)S��B!�o2��5��')�<z�?��<론�Of���͵�>���M]>$����g;�)95�������k��uO;�>U�u?�����Yiv��C�)K�a9����C�T�������8JkO����w�T̚���]��!a
����E��9kO5�ŗ]$��o�c��I?�ꓫ���t1��,ú'����i���?���N��3w(D�UI��Q��:uL��̮��9�=����?�c3�����JP~���蠽WRS���e�����R������k�!;�
�r�oc�q�!W���JЯ=�CVf0�<��
���������]̚3�c�4�8yG[#�T����[0]s&!w��6s1��v��|��N7{��^~�$_�ηҰ�d�l���; g|���~�����e�ui�m3?�'�U�]���1���6�K"���$�@��hmp0����<��@u!��ϧ0�9g�aOI����^x�8��!#T���
}R�d���?���H��EʺJ`��y	e ٴ<"-�?[��)�#0��I�����CaCJ���d�=�xj1�O������4ִ
����/��d?�4�YD��ΐ��A��� \�_+�"���sDwI�9phG�@��6��'�EM�𰨙��'6q��,�םp�ɿ/��c�9��:T���=+H#	g��t�0]�g�ǽ+g����)i�2�p�N�P��?e�rp�5H:Q��d)�p2-M8�t=�2
��j�f�N�
��/����i�k�o�2�5�I�TM�:,GF�����b����~$\=T�՚Ϗ�_���
~Y6+?H�}F���P�e?a����|
d�z���y�	m����G��)v�lF��L���*?��Y����W����S�pછ�s�� ��C
|NjZ
{�1�B��>�����������P|;�9*:���~����р���ƣc��ЀT7KQ���,���@6j���~��F��P���G������xx_��A��c��Yq�8V�-�η=A
*Tf����XM�h�?'#�P:�xvc4�lC�!`�0���Ȅ;y�W\��aGx�@o�}�7\��`$���Y�_� A�K˹���gv���a ����P����C�����i��� �H�����e�u�r��u�T;� ��)�Q��t�PN�	W
���c�U�n���s�)��.d���V��O�t/n=[��uG�х���M�s磕����vމH���
�3c�.���ו��=���{9�瀕]����ғ�П��2��p>��`=~dč1�����k��]h#�Ou��@��Σ����a9�G^�݈�Q(���n`���k- ��]BQ�0K�Y�Oz�e�a`�j`p1:�9�F��A1��7"���-�ճ'wXE��?;���T�����Ԍ֮��߁[�c�0����Q,|�,���9�z0R��L.+�?ʏ)��ڒ/�q��:��D��FB�����ʻ)�����-�g��П��Q�Ù��`P@��>�%uD�`D��`
�T�I�0�S�G|O�Y�?��R�0VvEO�'��D�tQfK+@�
��o�:�	h����V�r�v}0RD��P7k�V+�j�>��ߛ�-�Zٴ��П��1�zw궃�hf��#5K6��������`m�<Kj���5��33Z����a�kb���\D��G�˾	��	�*z�?�P�ڟ�8`H�N��8��`ilSF�n�TF��~�,�y�-A����A俲Y��ؤ��aw�6$f5�1�RA��Y�/�=�Ao<[�u�Z5o�	FB�Ġ�6��D���>�4�ⱊ�Ձ
���C�a�$P=����]&�)[�vc*�?k�XAM`ݍu:�Y�&(
u�r8x�o�w~- a�����N���A�a���R���)��%�+�و��l5�3c`W�׀]~��T�@G�����<9+X��h�����#�П��	��n������(��S�U�	Y��i��ζ���F��D�D�/)����I:v̥��h��׍8�[��%��}pZF{,�i}���w��6��rpۈ%s/�<��K�tiy}�[Oi���u5��Lu������(5㋩�K�d��N1�&�Z�T�c����Q�,��.G������LvD�l��ė
X`�W:�p�P-ᵾ�r�]����,7����7��s���0;?��/�T��^Mns(���d��c�4՞�>�!��{��F�l��&�;;fmT.2�)����JM�s�m��7�E����`jbK{e!�gш�\��VW=h�DZ�*�����E��R�6�v���Δ[��f�`������~�ڵ��@�;�y�
<Cݣܾ6���{��I4�b�/�l5����=�&�ړer���10z���5�t�^��S��0k�2�v�90^(e�epK�\��:v�/U��~~��ǾN]�� 7eݢ=��6�/���L�t0˽����u���M���73՝��=��\N���V�/��C�z
h�3��g{�d!4��\t�܍��=��J1�D��X� O +�X�]�~�aF�x��ܧ�c�E�����L�W���}�6��@��W��^˜%d���k��=yӆ���>63X�;5��䣋��岃@H��g���[���N-tQ79�%�ov�P�p�5D&Ŗ�֨���G�<�Y���l3�&X?=���~T����Jʜ@G�]�jVa�Ո`t?YW��L�.�����{\)s�ྒྷ�
L��,�5"�
���l���	^C���~��Fw���N8�����©7;��v�6bjk�uF�p��i�Qn{�|��y�R���� ���,F�j��0��Y�VC���CJ"�U�Y}�^��)�3 ?��"��7�����PJ���x�/�TJ�Z��9�/i�
���7��w���^,�'������1Q ([~��)"�"0�a8/x�m;��T	������%K��5�L$�(pgff�|�[��E���󇏩�:���T��$�Y��O��8�H����|�M��j��3�`ް�
iʌ���~�ϣ�ޅ��tM;���c�ʽ����,�'CT��@,1�€Ǫ䶺ݗ*Zg�_�v��CP3�YԤ��{m�<8'���I5ս���'ʳ&N޳��!�F�}P�IY�t�z]#�SRhi�A�� '�N�V�C/��QuU��0Ġ��
��(�Y��-��C��z��D
��e��/��tQ�7�=~�w���hz'���t��֬��S�4��0X����L�fM�X������i��S$��!�t��+����Ѣv�b6�m��m���N���S����ߌ]��d���t7����W��Pj�l�����G�wa�G�o�)�"�?`�[M�3� �Mݼ�-�@��?p��l�G"b�jA�!��xX�����S�a��i����?��#L�NK�ɢWky8�Ho0��P����#�@~g�>�d��	3�̞�[`
�����xڷ�BU���}
�5��Pؑ�-��Co�=t���/�ْ���w⃾�m�ߓ-�֝Jf��+�^��p^���4�	9�	�',,H��?��~��Fj��7�t#�,7����C�4��ьR�V��1���w_�%���֜%���_����O�le���d�����ſ�ih/����qU[�[���n	�)���8�}A�cm��שp��!F=�xd��?f�,(�pp]=���=e�r8^��Ī��K�a�3�5(�8jBn���3+g��Ql
��\����|+�M3���N����J�����?F�-�pZ净�/��_N�Q4+ź]N�a��X����{���X�~��E#�Z�P@�׊П'�����e]���e;?�(F���}�u������L��B}W0k}�����,��,z���L�$w�����
<Q���?�������c�q~*�(���k�K�Ճ��g��
����A����L�OS�g�)����߻�NI��)6�|8D�&���=��n�/ſ���/jG���ߔ��d2dw��x1�EZLV�f�Pp�����o{��s���]�)^��.�����8�����,&i�U�&�����ɩ��il^�|b��,c���/��1S
Wwx�_��.����c����_N�����WN��W��ʃǙaJv�@d$f�������F��:P*Ddf���6��u�p�b��[�ab–��h��Ð�r:L�����A�
��`my��~iT�h��0���T���&�-�F3�Ng��7��$_��PeeO$;0����"��G��&�/o�R���/��z7�E��n;lK�Ùy��jKL��a~5���П����$�	2Cګ�D���'3���,^۾��m�g�㌯��ݻ�����@R�wo�̴=�2bV���c�����wv�$�E�/�0�Q�K�fFe�P��RZ0��G1-

#��o�X3�u~��y���]�'���V�
D�r̙�r��ovگ���+� P��*��7�<��0Hf��h�=�i��n?zHJ��D��ၢ�Pj�aͲ���T>Tz��氰��� �fH���μc�<pQ�#�ކ�VI�(��,`�,o���!��,���s�s�1>��f"ZC�r��P���?������8��nu����µ%l��koKZ�<��;A"��ݝ�
Bḛ���{�{il?fU�.�P�Ȃr��' VaFnp�9�����Yг2�?%Γ�ξ�Η؁�?wR��T����hEH�Y����oW����R�pAPC�h���>xc&9����S"x��9;e�Y
L�є��R��AuUCG/�X>�C	�� ��@8�'ʻ�PI:q��4����<��xBz�����S
_xӪ���~���k���H}?6�l\�}K$?���:�P��Kp�9��qO>.���>e�����wR7��A�v������:�0X_O����2��%>j[��)7R�q��!jF�=$�^����E����b����0�P�$yw}p�[y�f���g�!gy,6�i[�t8��J�7�iN1I��OM�:�cC.�j�YfC�[P���Ϝ��VU�:Pδp$"���PF6��*Hz��m;�П�$4L��䎇.+P�9�^)�p��^�J��1Cv@i'C٧_Ծ����g�`wEU��w�5ϙ⿎��&"1!����h����{?�D>�:��[����{���2�L�ѲZ�X�g(;��ꠘ#u��b�S"O������
�����][�/�p�����;��:~����ӹ�b
��茙�&;��� 'fޗ��*��N9��d�)?��1�p�� ��d���?��f�/w��f������c���
��<����L֗��0#PČ��:��`�'��u#��p���l�끆u,%K��m%�c��N+Ek`��}��9��s:*��q;��GsN�U�}8>xӿ����p���{L��l*I������,���\��R,��K��u�l�0��c��a?An4�d1;(�,�����vK�����6y�][�mx�ww��.�vl��n�j%�ߒ�>�[��J�vX�@���g�����Iy!NtJ�����i|<��`v7�A�4V#Nw���t
�F�K���\R�=v�=��t��\��齼��:U�Ee}i��Ɲ�:����׶�.�ˌT�tg`�����;�`��}픍=̐�|��u�w^�SЮ(��&7��#�4���v�b�Sb�\�(@�/+�0�#ߡ'�	W9L����ei}�~0����S�1�!�r�h6�k�.[��s���|��u9\��$���	� `��G8�6�&�{]~�p�
��D��?-���?����X��f����gd�=\F_�Ql�.�f�v�	.����{�z�0�[KwCr��L��W3d� �J�<��w��vm�M�0%�f��F�y�H6���j����U���O���/E��N�m�?f}l�A�?5-��������8<�C�k�0��o�x�ٜ��.Wk��v��g�|�s
I��Z
�DT���@)i5�)����`����N�w�f$S���2V����<xQ�H�<�	~�~�p������>�Pȩ�.g�C�ɒ���ml-��Z�A;%���o[R�ڵon�����a�-
l�8b���9c�A+��
:ZO��{͹� ޝ�Z��著��vW(]I���B�LT�qO��:9���7Zi���,T?4��T�ݻ��fU���<~`�l@#�Iq��ۏ��h%�����Rw�d5E��>��jٳ��W�Us���G�w �P�t"Җb��);��_�Hx
ʌ�"u5C�`P��rFU�2ڮ=����*���HdvƝ�� kMڴ%��v�G��9<�F)��MDM�{�
���:?���+�i��,��@�.�,��Q��/��p� a�;�kM��K�O�8u•A����v+|�@���ؾ�e�*�E�ϥ�	\.g	�az0�n����7�Cލ
C�ݎD���%eᱥ�W-���#@7aFH쩟�7��<�f�νd��h���WY�od��u-��"ZWs�V�$�hj8��Kd��ٛ)Z���vu��WW��wq���K=���-�tM�uyӆ��]Qu3\ǖ^+��16v
�)
�xv��6Y# ��\��+1��*v�NT�jI^�������#��fD�f.J�k00r����1/�)��_/Œ�i�T]U'eז�ҭ9Oh��P��<Yp���˞��u��^�o�g�I�{JZ��N�zuU�|����1'�"@A�%x�͘���2ؒ��HBtn�?o�M%�@�[�c�{���l���# �ShV�I$�H���"��>��륉�;P�	Gq[D�t�#G;���0��o5�6NB9G�A�:�&)�'�H���0�
�:�h��@��BJ���D�~k=���l��2�S%��P���=��B]�Ƣl_�m�!��`�x�;��'��с��ކi}R+�pup��X4
V�{�{)�a,��
3�V/`��{̞9GM�I1�,ԁvzJ�Oi9�V���-9KjQ�g����pS7!�Ax6��]�o��a,���y��S�{�C�L�BK7;8��:�~����z���Bku������7����Nـv!���~�����0��'���\kE�>�����U[;����R/�l����Fǝ:�{�O�01�_o��Df3j�`Қ
h:���~����u�=f�챓�xs��������a,���L�uI��쏛L�H6�]�ꀠg���>OOV�?�iiw��ҋ0��:~����k�˹�~�Q
 ]�R���SuOPr��`!�$W���l�?yd2_�48��P\Ҿ�^Ɯ��h=ѬW��8�B�����S"���S�q��LSY@rJ��FŮ�9����Ď�w��F���i�+����M^+:���7K=�SS�͑Ձ�Հ�`�����P#$�Za�2�M�����yC�ط�x�	�)�"�q��$
���(��&�B��AO�)�B$rtJ�ҁ�
H��e�0!�F^2h��)C<�_?2Ө:@����S"�E42��AiU:0�}>	�@/	"�I���?��0�\��U�u�����[�=`��kҁ�6��e�	��<��:���_/��q�?%�X��rz�u��gVo�"0u��e'gO��z�AO
�) ����n�0feډH��DUC��)�"xK%�U��8��9�.S���俗z0�X��\�|�Y��,HN��&ALiW='	,��������*x���n�@��*��t`�II�%|���Bԩ�~�,1��d"��C\��k�D�
(�B����BF��z2d����G�H���s�v�4�>���`�'���� ��p�%�@7�X�	��t�Yӓ��
��Knt"�E\�	Й�t`ӑ��cj�7x�D6� ��eO%��*�D6� ��eO%��>a�@d
�A��?�r&�]�"P`�������nU:��DCB+gLeO%V��l@A4$����iU:��D�XX@��֤�l@A4`ʞJ��\�QD6� ��uO5-��D6��`�$�U�"P�a,B�@�U�"P�a��ҁE6�@/�X@$'�U�"P�a,B�@��$K""P�a, XO%>�Q�hA.���E���t`�:�l@���uO%.WRic��
(�~��&,�,�:�"�{�ҁ���}D6�@3�X@Z�^�H��$)�c��w�7	�k�#>���KrF��&�@#�X@��J�+�d"P���7}���lB�PRw���,ـ$hD�~����n������I ЀXX@��J$�Z	蛑L��*@�	a, TO%V����~T�0M`azt�^+ҁ7�uțD�%�@I$0�P=�$%%y�=E�7�Q��`ݫ���-GJ����Y�}�K����P=� p�k�fe�/ȿ)WW4�a�֣R��T�����n.Ys��%$� �
��9���*����{�NV=Y��'μ�����R��Oz���޽2��Rk�/39�U�p������VW5z���p8%��J������α$�H H~���7H&�ڒ�gDN�SpP���:�ڜ
�x`�{ԥu'a�?��UW5Ў�U�����+���s_Rji�|�)��m#���G�m僋I C�ά�'=�#o��t�Pw�dH���3�λ�c�z9k!ɑǯ��$I^��V��_����_�>�,�9JQ.��(�V�\�]���D�����F���u�d�a���Y��˓[�+�}X�0p>�4wuՃ�I P!��_>�<��
���O�K� ��X2��f�5��wqf�5�=����t�5��PBi��'�y���Ԉ(�6
$�<~�D��\K��+��̩'I]=��+����yyl���d�Y|�K�j]�\/n�F[�^���Ǯ�ɴ�7P�Əhĵ��ү/���z�>�ES&�f_{Ŕ5�"� B(x���
<d�ĕl0f�M�ރ���X�s�k�-���C��F���5tj�Az�e����p��6h�=R���p=�H�BT�L@�L\��M4�
F~pt맅Y/^��f-�LO�={�4尙�Ƨ�_i�%c:?�KR�/�ز��(��L����������keΕ@��(k��R�yˎ�E��d"��`��`|�j�C,�u9�n���#�)={�|]�&��S�Q4?͋��'�ʫ�m-�tQ�xJ�NV!I�#�����=t&)-5����d���=L���X�wA6)S��"p���Ď=�LM�
�%(ޛ	�X(��RmÑ/���JG�#��]�0�!��F�v���q<gX�er(��G��%��v�5�#����r	�R�ȼ���X&�!�Y ���,)��F	���+9W��P!��=�9�bÚ�
Xx.�S��Ff�A�t��<$Hx���<�V ��C�d�ٿ�"# Q�l$<"0.�.GL_��7'9g�9�ߧl�vj�AJθIHJNf�5^�Y���$4�� TF����#�n�Y���Դ��ʹjZڗ')
?EK���TT~;M�/���_�G
��y��j:y�j�?��R
.Nr�$�H���B-��H�K��E�1y��w�E��N�s�^�ɏ
�[�.�����y�|]>k;�4�FŚ$1�a:�-��@�|�O� $�h�/~�:Ey[�o��'��Rtv����X�#�A�{�_�/�و��E�K���sw��d E�.�]�
��E���^LD8MB�����u3Q�Y���dSt���"!G�]�
�Մ����IEND�B`�PK���\�=ό�'assets/images/settings/plugin-astra.pngnu�[����PNG


IHDR��
	pHYs��sRGB���gAMA���a!IDATxmU�NSQ�9�V�����A�]�_�ז�TBo�Qw�Puo`�OōK\�!�V��z�͜s������|��2]�e��r�Qk���n%�j��8�!3;/��k��t�����%�	S�� ��ܑ�e�3ɐ���������b�Ò��D/,�I�Lg�\�pAž�
��K�Υ�[w���p!�d�\�"��D����p��ONZ	'�fG�`����<H��:�k�X�9�L�B�k��~hˍ�9.��?,P8(c���U�Q����
}8Ȏd,5�h1oz��dՌq0~��a�k=(�z����X�>��K*�R+-�_1�q�?N�tU:D���1�+ �����i�����1y a��t=�:
i���8	>c{O"<���9�W��C�)0��¯:��|�LMԈ��e�
�x�a� `�����az�zd�w�|岔��|d����8\˜
��{�g_k���w
XS�m��~m����IQ�de)�%e	���d��b6+�R�L޿��b�ĘG����?kxPV!M,u��
�ڍ�
�7�"�ͅ���2��XO�02�
�Ln<�zP�]��XP?���dV��x��o[D��1O-�|��:�/;��]b�
��aY�L*��s˴Z���<�G@����xi�%e������~�$�3��P�O� �պ��P~��y'a��L
\p��p@����s�f�[�?i��*�I���*�f�]BZ-<R3_~�L�X~nˉC�߀1B)‡����?���.�}Q�b���;M38IEND�B`�PK���\O�ޥ3�3'assets/images/settings/uae-logo-svg.svgnu�[���<svg width="219" height="44" viewBox="0 0 219 44" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.4151 2.85174C31.8398 2.85174 40.4059 11.4073 40.4059 21.9999C40.4059 32.5925 31.8398 41.148 21.4151 41.148C10.9904 41.148 2.42434 32.5925 2.42434 21.9999C2.42434 11.4073 10.9096 2.85174 21.4151 2.85174ZM21.4151 1.14062C10.0207 1.14062 0.808105 10.511 0.808105 21.9999C0.808105 33.4888 10.0207 42.8591 21.4151 42.8591C32.7288 42.8591 42.0221 33.5703 42.0221 21.9999C42.0221 10.4295 32.7288 1.14062 21.4151 1.14062ZM21.0111 25.8295C20.7686 26.7258 20.3646 27.4591 19.8797 28.1925C19.3948 28.9258 18.6675 29.4147 17.9402 29.7406C17.1321 30.148 16.2432 30.311 15.1118 30.311C13.9804 30.311 13.0107 30.0666 12.2026 29.6591C11.3945 29.2517 10.748 28.6814 10.2631 28.0295C9.77822 27.3777 9.37416 26.5628 9.13172 25.6666C8.88929 24.7703 8.80847 23.7925 8.80847 22.8147V15.2369H12.1218V22.8147C12.1218 23.3851 12.2026 23.9554 12.2834 24.4443C12.3642 24.9332 12.5258 25.4221 12.7683 25.8295C13.0107 26.2369 13.3339 26.5629 13.6572 26.8073C14.0612 27.0517 14.4653 27.1332 15.031 27.1332C15.5967 27.1332 16.0815 26.9703 16.4856 26.7258C16.8897 26.4814 17.2129 26.1554 17.4553 25.748C17.6978 25.3406 17.8594 24.8517 17.9402 24.3628C18.021 23.874 18.1018 23.3036 18.1018 22.7332V15.1554H21.4151V22.7332C21.3343 23.9554 21.2535 24.9332 21.0111 25.8295ZM24.0819 27.2147H34.0218V30.311H24.0819V27.2147ZM24.0819 21.2666H34.0218V24.3628H24.0819V21.2666ZM24.0819 15.3999H34.0218V18.4962H24.0819V15.3999Z" fill="#6005FF"/>
<path d="M54.0631 14.8299V8.39288H56.6491V14.8299C56.6491 15.4818 56.8107 15.9707 57.134 16.2966C57.4572 16.6225 57.8613 16.7855 58.5078 16.7855C59.0734 16.7855 59.5583 16.6225 59.8816 16.2966C60.2048 15.9707 60.3664 15.4818 60.3664 14.8299V8.39288H62.9524V14.8299C62.9524 15.8077 62.71 16.6225 62.3059 17.2744C61.821 18.0077 61.3362 18.4966 60.6089 18.8225C59.9624 19.1484 59.2351 19.3114 58.4269 19.3114C57.2148 19.3114 56.1642 18.904 55.2753 18.1707C54.4672 17.3558 54.0631 16.2966 54.0631 14.8299ZM65.6192 8.39288H68.2052V17.1929H71.4376V19.1484H65.6192V8.39288ZM72.6498 10.3484V8.39288H81.0543V10.3484H78.145V19.1484H75.5591V10.3484H72.6498ZM83.0746 19.1484V8.39288H85.6605V19.1484H83.0746ZM100.449 8.39288V19.1484H97.8631V13.0373L95.3579 19.1484H93.4185L90.9133 13.0373V19.1484H88.3273V8.39288H91.3174L94.3882 15.8077L97.459 8.39288H100.449ZM109.904 19.1484L109.338 17.3558H105.54L104.975 19.1484H102.227L105.944 8.3114H109.096L112.813 19.1484H109.904ZM106.187 15.3188H108.692L107.399 11.4892L106.187 15.3188ZM113.702 10.3484V8.39288H122.107V10.3484H119.197V19.1484H116.611V10.3484H113.702ZM130.511 8.3114V10.267H126.632V12.5484H130.026V14.667H126.632V17.1929H130.511V19.2299H124.046V8.3114H130.511ZM144.976 19.1484L144.411 17.3558H140.613L140.047 19.1484H137.299L141.017 8.3114H144.168L147.886 19.1484H144.976ZM141.259 15.3188H143.764L142.471 11.4892L141.259 15.3188ZM153.219 8.39288C154.916 8.39288 156.29 8.88177 157.421 9.85955C158.553 10.8373 159.038 12.141 159.038 13.7707C159.038 15.3188 158.472 16.6225 157.421 17.6818C156.29 18.6595 154.916 19.2299 153.219 19.2299H149.502V8.39288H153.219ZM152.088 17.1929H153.219C154.189 17.1929 154.997 16.867 155.563 16.2151C156.128 15.5633 156.371 14.7484 156.371 13.7707C156.371 12.7929 156.048 11.8966 155.482 11.3262C154.916 10.6744 154.108 10.4299 153.138 10.4299H152.007L152.088 17.1929ZM164.937 8.39288C166.634 8.39288 168.008 8.88177 169.139 9.85955C170.27 10.8373 170.755 12.141 170.755 13.7707C170.755 15.3188 170.19 16.6225 169.139 17.6818C168.089 18.741 166.634 19.2299 164.937 19.2299H161.22V8.39288H164.937ZM163.725 17.1929H164.856C165.826 17.1929 166.634 16.867 167.2 16.2151C167.765 15.5633 168.089 14.7484 168.089 13.7707C168.089 12.7929 167.765 11.8966 167.2 11.3262C166.634 10.6744 165.826 10.4299 164.856 10.4299H163.725V17.1929ZM173.745 17.6818C172.695 16.6225 172.129 15.3188 172.129 13.6892C172.129 12.0595 172.695 10.7558 173.745 9.69659C174.796 8.63733 176.089 8.14844 177.624 8.14844C179.16 8.14844 180.453 8.63733 181.503 9.69659C182.554 10.7558 183.039 12.0595 183.039 13.6892C183.039 15.3188 182.554 16.6225 181.503 17.6818C180.453 18.741 179.16 19.2299 177.624 19.2299C176.089 19.2299 174.877 18.741 173.745 17.6818ZM179.725 15.9707C180.21 15.4003 180.453 14.667 180.453 13.6892C180.453 12.7114 180.21 11.9781 179.725 11.4077C179.241 10.8373 178.513 10.5114 177.705 10.5114C176.897 10.5114 176.17 10.8373 175.685 11.3262C175.2 11.8966 174.958 12.6299 174.958 13.6077C174.958 14.5855 175.2 15.3188 175.685 15.8892C176.17 16.4595 176.897 16.704 177.705 16.704C178.513 16.704 179.16 16.541 179.725 15.9707ZM192.17 8.3114H194.756V19.1484H192.17L187.807 12.304V19.1484H185.221V8.3114H187.807L192.17 15.0744V8.3114ZM201.06 10.267C200.737 10.267 200.494 10.3484 200.252 10.5114C200.09 10.6744 199.928 10.9188 199.928 11.2447C199.928 11.5707 200.009 11.8151 200.252 12.0595C200.413 12.304 200.656 12.3855 200.979 12.5484C201.302 12.6299 201.625 12.7929 202.03 12.8744C202.434 12.9558 202.757 13.1188 203.161 13.2003C203.565 13.3633 203.888 13.5262 204.211 13.6892C204.535 13.9336 204.777 14.1781 204.939 14.5855C205.1 14.9929 205.262 15.4003 205.262 15.8892C205.262 16.7855 204.939 17.6003 204.131 18.2521C203.403 18.904 202.434 19.2299 201.221 19.2299C200.009 19.2299 199.04 18.904 198.312 18.3336C197.585 17.7633 197.181 16.9484 197.181 15.8892H199.928C200.009 16.704 200.413 17.1929 201.221 17.1929C201.625 17.1929 201.868 17.1114 202.11 16.867C202.353 16.704 202.434 16.4595 202.434 16.1336C202.434 15.8077 202.353 15.5633 202.11 15.4003C201.949 15.2373 201.625 15.0744 201.383 14.9114C201.06 14.8299 200.737 14.667 200.332 14.5855C199.928 14.504 199.605 14.341 199.201 14.2595C198.797 14.0966 198.474 13.9336 198.151 13.7707C197.827 13.6077 197.585 13.2818 197.423 12.8744C197.262 12.467 197.1 12.0595 197.1 11.5707C197.1 10.5929 197.504 9.77807 198.231 9.12622C198.959 8.55584 199.928 8.22992 201.06 8.22992C202.191 8.22992 203.161 8.47436 203.807 9.04473C204.535 9.53362 204.858 10.4299 204.939 11.5707H202.11C202.11 11.1633 201.949 10.9188 201.787 10.6744C201.706 10.4299 201.383 10.267 201.06 10.267ZM54.952 35.6892V27.3781H60.0432V28.6818H56.5683V30.8818H59.1543V32.1855H56.5683V35.7707L54.952 35.6892ZM69.7406 35.7707C68.5284 35.7707 67.5587 35.3633 66.7506 34.5484C65.9424 33.7336 65.5384 32.7558 65.5384 31.4521C65.5384 30.1484 65.9424 29.1707 66.7506 28.4373C67.5587 27.6225 68.5284 27.2151 69.7406 27.2151C70.9528 27.2151 71.9225 27.704 72.7306 28.4373C73.5388 29.2521 73.9428 30.2299 73.9428 31.4521C73.9428 32.6744 73.5388 33.7336 72.7306 34.5484C71.9225 35.3633 70.9528 35.7707 69.7406 35.7707ZM71.5185 33.4892C72.0033 33.0003 72.2458 32.3484 72.2458 31.5336C72.2458 30.7188 72.0033 30.067 71.5185 29.5781C71.0336 29.0892 70.4679 28.8447 69.7406 28.8447C69.0133 28.8447 68.3668 29.0892 67.8819 29.5781C67.3971 30.067 67.1546 30.7188 67.1546 31.5336C67.1546 32.3484 67.3971 33.0003 67.8819 33.4892C68.3668 33.9781 68.9325 34.2225 69.7406 34.2225C70.4679 34.2225 71.1144 33.9781 71.5185 33.4892ZM81.6199 32.3484V35.6892H80.0037V27.3781H82.9937C83.9635 27.3781 84.6908 27.6225 85.1757 28.1114C85.6605 28.6003 85.9838 29.1707 85.9838 29.904C85.9838 30.3929 85.8222 30.8818 85.4989 31.3707C85.1757 31.7781 84.6908 32.104 84.0443 32.267L86.1454 35.6892H84.2059L82.2664 32.3484H81.6199ZM81.6199 28.6818V31.1262H82.9937C83.3978 31.1262 83.721 31.0447 83.9635 30.8003C84.2059 30.5558 84.2867 30.3114 84.2867 29.904C84.2867 29.4966 84.2059 29.2521 83.9635 29.0077C83.721 28.7633 83.3978 28.6818 82.9937 28.6818H81.6199ZM105.217 27.3781V28.6818H102.146V30.8818H104.894V32.1855H102.146V34.467H105.217V35.7707H100.53V27.3781H105.217ZM111.601 27.3781H113.298V34.3855H115.965V35.6892H111.682V27.3781H111.601ZM126.47 27.3781V28.6818H123.4V30.8818H126.147V32.1855H123.4V34.467H126.47V35.7707H121.703V27.3781H126.47ZM141.744 27.3781V35.6892H140.128V30.3929L137.865 35.6077H136.653L134.39 30.3929V35.6077H132.693V27.3781H134.552L137.218 33.4892L139.885 27.3781H141.744ZM152.977 27.3781V28.6818H149.906V30.8818H152.654V32.1855H149.906V34.467H152.977V35.7707H148.209V27.3781H152.977ZM164.694 27.3781H166.392V35.6892H164.775L161.058 29.904V35.6892H159.442V27.3781H161.139L164.856 33.1633L164.694 27.3781ZM172.372 28.6818V27.3781H178.432V28.6818H176.17V35.6892H174.554V28.6818H172.372ZM188.13 35.7707C186.918 35.7707 185.948 35.3633 185.14 34.5484C184.332 33.7336 183.928 32.7558 183.928 31.4521C183.928 30.1484 184.332 29.1707 185.14 28.4373C185.948 27.6225 186.918 27.2151 188.13 27.2151C189.261 27.2151 190.312 27.6225 191.12 28.4373C191.928 29.2521 192.332 30.2299 192.332 31.4521C192.332 32.6744 191.928 33.7336 191.12 34.5484C190.312 35.3633 189.342 35.7707 188.13 35.7707ZM189.908 33.4892C190.393 33.0003 190.635 32.3484 190.635 31.5336C190.635 30.7188 190.393 30.067 189.908 29.5781C189.423 29.0892 188.857 28.8447 188.13 28.8447C187.403 28.8447 186.756 29.0892 186.352 29.5781C185.867 30.067 185.625 30.7188 185.625 31.5336C185.625 32.3484 185.867 33.0003 186.352 33.4892C186.837 33.9781 187.403 34.2225 188.13 34.2225C188.857 34.2225 189.504 33.9781 189.908 33.4892ZM200.009 32.3484V35.6892H198.312V27.3781H201.302C202.272 27.3781 202.999 27.6225 203.484 28.1114C203.969 28.6003 204.292 29.1707 204.292 29.904C204.292 30.3929 204.131 30.8818 203.807 31.3707C203.484 31.7781 202.999 32.104 202.353 32.267L204.454 35.6892H202.514L200.575 32.3484H200.009ZM200.009 28.6818V31.1262H201.383C201.787 31.1262 202.11 31.0447 202.353 30.8003C202.595 30.5558 202.676 30.3114 202.676 29.904C202.676 29.4966 202.595 29.2521 202.353 29.0077C202.11 28.7633 201.787 28.6818 201.383 28.6818H200.009Z" fill="#6005FF"/>
<path d="M216.091 11.0809H214.959C214.717 11.0809 214.636 10.9994 214.475 10.8365L213.586 9.28831C213.505 9.20683 213.505 9.20683 213.424 9.12535C213.343 9.12535 213.262 9.04387 213.182 9.04387H212.858V10.9994H211.727V5.70312H213.424C213.828 5.70312 214.151 5.70312 214.394 5.78461C214.636 5.86609 214.879 5.94757 215.04 6.11053C215.202 6.2735 215.363 6.43646 215.444 6.59942C215.525 6.76238 215.525 7.00683 215.525 7.25127C215.525 7.41424 215.525 7.5772 215.444 7.74016C215.363 7.90313 215.363 8.06609 215.202 8.14757C215.121 8.31053 214.959 8.39201 214.879 8.4735C214.717 8.55498 214.555 8.63646 214.394 8.71794C214.475 8.79942 214.555 8.79942 214.636 8.8809C214.717 8.96238 214.798 9.04387 214.798 9.12535L216.091 11.0809ZM213.424 8.22905C213.586 8.22905 213.747 8.22905 213.828 8.14757C213.909 8.06609 214.07 8.06609 214.151 7.98461C214.232 7.90313 214.313 7.82164 214.313 7.74016C214.313 7.65868 214.394 7.49572 214.394 7.41424C214.394 7.16979 214.313 7.00683 214.151 6.84387C213.99 6.6809 213.747 6.6809 213.424 6.6809H212.939V8.31053H213.424V8.22905Z" fill="#6005FF"/>
<path d="M216.091 11.0809H214.959C214.717 11.0809 214.555 10.9994 214.475 10.8365L213.586 9.28831C213.505 9.20683 213.505 9.20683 213.424 9.12535C213.343 9.12535 213.343 9.04387 213.182 9.04387H212.858V10.9994H211.727V5.70312H213.505C213.909 5.70312 214.232 5.70312 214.475 5.78461C214.717 5.86609 214.959 5.94757 215.121 6.11053C215.283 6.2735 215.444 6.43646 215.525 6.59942C215.606 6.76238 215.606 7.00683 215.606 7.25127C215.606 7.41424 215.606 7.5772 215.525 7.74016C215.444 7.90313 215.444 8.06609 215.283 8.14757C215.202 8.31053 215.04 8.39201 214.959 8.4735C214.879 8.55498 214.717 8.63646 214.555 8.71794C214.636 8.79942 214.717 8.79942 214.717 8.8809C214.798 8.96238 214.879 9.04387 214.879 9.12535L216.091 11.0809ZM212.939 9.04387H213.262C213.343 9.04387 213.424 9.04387 213.505 9.12535C213.586 9.12535 213.586 9.20683 213.666 9.28831L214.555 10.8365C214.636 10.9994 214.798 11.0809 214.959 11.0809H216.01L214.879 9.28831C214.798 9.20683 214.798 9.12535 214.717 9.04387C214.636 8.96238 214.555 8.96238 214.475 8.8809C214.636 8.79942 214.798 8.71794 214.959 8.63646C215.121 8.55498 215.202 8.39201 215.283 8.31053C215.363 8.14757 215.444 8.06609 215.525 7.90312C215.606 7.74016 215.606 7.5772 215.606 7.41424C215.606 7.16979 215.525 7.00683 215.525 6.76238C215.444 6.59942 215.363 6.43646 215.121 6.2735C214.959 6.11053 214.717 6.02905 214.475 5.94757C214.232 5.86609 213.909 5.86609 213.505 5.86609H211.727V11.1624H212.939V9.04387ZM213.424 8.22905H212.939V6.59942H213.424C213.747 6.59942 213.99 6.6809 214.151 6.84387C214.313 7.00683 214.394 7.16979 214.394 7.41424C214.394 7.49572 214.394 7.65868 214.313 7.74016C214.313 7.82164 214.232 7.90313 214.151 7.98461C214.07 8.06609 213.99 8.14757 213.828 8.14757C213.747 8.22905 213.666 8.22905 213.424 8.22905ZM213.02 8.22905H213.505C213.666 8.22905 213.828 8.22905 213.909 8.14757C213.99 8.06609 214.151 8.06609 214.232 7.98461C214.313 7.90313 214.394 7.82164 214.394 7.74016C214.394 7.65868 214.475 7.49572 214.475 7.41424C214.475 7.16979 214.394 7.00683 214.232 6.84387C214.07 6.6809 213.828 6.6809 213.505 6.6809H213.02V8.22905Z" fill="#6005FF"/>
<path d="M213.666 13.0369C211.161 13.0369 209.06 10.9184 209.06 8.39249C209.06 5.86657 211.161 3.74805 213.666 3.74805C216.172 3.74805 218.273 5.78508 218.273 8.39249C218.192 10.9999 216.172 13.0369 213.666 13.0369ZM213.666 4.23694C211.404 4.23694 209.545 6.11101 209.545 8.39249C209.545 10.674 211.404 12.548 213.666 12.548C215.929 12.548 217.788 10.674 217.788 8.39249C217.788 6.11101 215.929 4.23694 213.666 4.23694Z" fill="#6005FF"/>
</svg>
PK���\�0�+��*assets/images/settings/surerank_extend.svgnu�[���<svg width="18" height="20" viewBox="0 0 18 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.4165 7.42798C17.4165 3.39895 14.1763 0.133789 10.178 0.133789H0.0458984V19.8235H1.74853C4.7042 19.8235 7.14337 17.5993 7.50924 14.7197H7.51403L7.52597 11.6642H7.2701C5.22312 11.6642 3.55875 10.0208 3.50136 7.97257H3.49899V6.99904H4.46748C5.82096 6.99904 7.01901 7.67377 7.75077 8.70511C8.44903 6.21106 10.7256 4.3821 13.423 4.3821V5.35563V6.6641C13.423 9.41358 11.3689 11.645 8.64512 11.6618V14.7197C8.99904 17.6066 11.443 19.8428 14.4058 19.8428H17.4213V13.9896H13.3417C15.7569 12.8065 17.4213 10.3124 17.4213 7.42556L17.4165 7.42798Z" fill="#4338CA"/>
</svg>
PK���\�Ӭ�
�
(assets/images/settings/success_badge.svgnu�[���<svg width="195" height="214" viewBox="0 0 195 214" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M86.8156 148.827C84.8954 148.827 82.9899 148.739 81.1101 148.575C71.4107 147.716 62.0316 144.701 53.67 139.754C45.3084 134.806 38.1795 128.054 32.8134 120L0 177.996H42.3042L63.6403 213L94 148.429C91.6144 148.692 89.216 148.825 86.8156 148.827Z" fill="#6005FF"/>
<path d="M106.337 149.137C108.298 149.137 110.244 149.048 112.164 148.883C122.07 148.014 131.649 144.966 140.188 139.966C148.728 134.966 156.008 128.141 161.488 120L195 178.62H151.796L130.006 214L99 148.735C101.436 149.001 103.886 149.135 106.337 149.137Z" fill="#6005FF"/>
<path d="M91.3062 11.7122C95.2869 6.02208 103.713 6.02209 107.694 11.7122L118.347 26.9392C120.758 30.3863 125.069 31.9555 129.133 30.865L147.081 26.0479C153.788 24.2478 160.243 29.664 159.635 36.5817L158.007 55.0938C157.639 59.2846 159.933 63.2578 163.747 65.0342L180.592 72.881C186.887 75.8133 188.35 84.1114 183.438 89.0198L170.292 102.155C167.316 105.128 166.519 109.647 168.299 113.459L176.159 130.298C179.097 136.59 174.884 143.888 167.965 144.49L149.452 146.102C145.261 146.467 141.746 149.416 140.659 153.48L135.857 171.432C134.062 178.141 126.144 181.023 120.457 177.037L105.239 166.372C101.794 163.958 97.2061 163.958 93.7609 166.372L78.5426 177.037C72.8557 181.023 64.9378 178.141 63.1432 171.432L58.3407 153.48C57.2535 149.416 53.739 146.467 49.5479 146.102L31.0345 144.49C24.1164 143.888 19.9033 136.59 22.8407 130.298L30.7013 113.459C32.4807 109.647 31.6841 105.128 28.7081 102.155L15.5623 89.0198C10.6499 84.1114 12.113 75.8133 18.408 72.881L35.2535 65.0342C39.067 63.2578 41.3609 59.2846 40.9926 55.0938L39.3654 36.5817C38.7573 29.6641 45.2121 24.2478 51.9191 26.0479L69.8674 30.865C73.9305 31.9555 78.2417 30.3863 80.6533 26.9392L91.3062 11.7122Z" fill="url(#paint0_linear_2113_32092)"/>
<circle cx="99.5" cy="95.5" r="49" stroke="#F1C900" stroke-width="5"/>
<path d="M97.1468 71.7812C98.0449 69.0172 101.955 69.0172 102.853 71.7812L106.735 83.7295C107.137 84.9656 108.289 85.8024 109.589 85.8024H122.152C125.058 85.8024 126.266 89.5213 123.915 91.2295L113.751 98.614C112.7 99.3779 112.26 100.732 112.661 101.968L116.544 113.916C117.442 116.68 114.278 118.979 111.927 117.271L101.763 109.886C100.712 109.122 99.2881 109.122 98.2366 109.886L88.0728 117.271C85.7216 118.979 82.5582 116.68 83.4563 113.916L87.3385 101.968C87.7401 100.732 87.3002 99.3779 86.2487 98.614L76.0848 91.2295C73.7337 89.5213 74.942 85.8024 77.8482 85.8024H90.4114C91.7111 85.8024 92.863 84.9656 93.2646 83.7295L97.1468 71.7812Z" fill="#FFF6C5"/>
<defs>
<linearGradient id="paint0_linear_2113_32092" x1="99.5" y1="0" x2="99.5" y2="191" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFEE95"/>
<stop offset="0.85" stop-color="#FFD700"/>
</linearGradient>
</defs>
</svg>
PK���\���(B!B!"assets/images/settings/pplayer.svgnu�[���<svg width="123" height="20" viewBox="0 0 123 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_15325_11558)">
<mask id="mask0_15325_11558" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="123" height="20">
<path d="M122.969 0.0429688H0V19.3746H122.969V0.0429688Z" fill="white"/>
</mask>
<g mask="url(#mask0_15325_11558)">
<path d="M82.6465 15.4869H83.8632V11.4863C84.3267 12.1821 85.2536 12.7039 86.2964 12.7039C88.2083 12.7039 89.7146 11.0804 89.7146 9.05115C89.7146 7.07986 88.2083 5.39844 86.2964 5.39844C85.2536 5.39844 84.3267 5.92027 83.8632 6.61603V5.5144H82.6465V15.4869ZM88.4982 9.05115C88.4982 10.4427 87.5131 11.6022 86.1228 11.6022C84.732 11.6022 83.7474 10.5006 83.7474 9.05115C83.7474 7.65966 84.732 6.50006 86.1228 6.50006C87.5131 6.55803 88.4982 7.65966 88.4982 9.05115Z" fill="#776A71"/>
<path d="M91.4526 12.53H92.6694V2.09375H91.4526V12.53Z" fill="#776A71"/>
<path d="M94.3496 9.05095C94.3496 11.0223 95.7981 12.7037 97.7678 12.7037C98.8106 12.7037 99.7375 12.1819 100.201 11.4861V12.5877H101.418V5.63017H100.201V6.73179C99.7375 6.03603 98.8106 5.5142 97.7678 5.5142C95.8559 5.45623 94.3496 7.07966 94.3496 9.05095ZM100.317 9.05095C100.317 10.4425 99.3321 11.6021 97.9418 11.6021C96.551 11.6021 95.5664 10.5004 95.5664 9.05095C95.5664 7.65946 96.551 6.49986 97.9418 6.49986C99.3899 6.55783 100.317 7.65946 100.317 9.05095Z" fill="#776A71"/>
<path d="M105.531 15.4868L110.108 5.57227H108.776L106.4 10.8484L104.025 5.57227H102.692L105.763 12.1819L104.257 15.4868H105.531Z" fill="#776A71"/>
<path d="M110.629 9.051C110.629 11.0803 112.078 12.7037 114.221 12.7037C115.67 12.7037 116.712 12.0659 117.35 11.0223L116.423 10.3845C116.017 11.1383 115.322 11.6021 114.221 11.6021C112.831 11.6021 111.846 10.6164 111.788 9.3409H117.524C117.524 9.16697 117.524 9.10897 117.524 8.993C117.524 6.73181 116.017 5.51426 114.221 5.51426C112.136 5.45626 110.629 7.02171 110.629 9.051ZM114.221 6.49988C115.264 6.49988 116.191 7.19565 116.365 8.35524H111.962C112.136 7.19565 113.178 6.49988 114.221 6.49988Z" fill="#776A71"/>
<path d="M119.262 12.5302H120.478V9.05143C120.478 7.42797 121.463 6.67424 122.332 6.67424C122.564 6.67424 122.738 6.67424 122.969 6.79021V5.57265C122.796 5.51465 122.622 5.51465 122.448 5.51465C121.637 5.51465 120.768 6.03648 120.478 6.96414V5.63061H119.262V12.5302Z" fill="#776A71"/>
<path d="M2.50753 10.6681V13.5568H0.0869141V4.22168H4.18216C4.68962 4.22168 5.15138 4.29266 5.56754 4.43456C5.98364 4.57646 6.33884 4.78422 6.63323 5.05788C6.9377 5.32144 7.1711 5.65595 7.33351 6.06134C7.50605 6.45663 7.59232 6.91785 7.59232 7.44487C7.59232 7.96182 7.50605 8.423 7.33351 8.82843C7.1711 9.22371 6.9377 9.55822 6.63323 9.83185C6.33884 10.1055 5.98364 10.3133 5.56754 10.4552C5.15138 10.5971 4.68962 10.6681 4.18216 10.6681H2.50753ZM5.20218 7.44487C5.20218 7.09015 5.10065 6.80632 4.8977 6.59348C4.69469 6.38063 4.36989 6.27419 3.92335 6.27419H2.50753V8.61558H3.92335C4.36989 8.61558 4.69469 8.50914 4.8977 8.29629C5.10065 8.08344 5.20218 7.79968 5.20218 7.44487Z" fill="#322B2F"/>
<path d="M11.8171 10.4704V13.5568H9.39648V4.22168H13.5983C14.1058 4.22168 14.5675 4.29266 14.9837 4.43456C15.3998 4.57646 15.7551 4.78422 16.0494 5.05788C16.3538 5.32144 16.5873 5.65083 16.7497 6.04612C16.9121 6.44144 16.9933 6.89249 16.9933 7.39927C16.9933 7.89595 16.9121 8.33687 16.7497 8.72198C16.5873 9.09704 16.3538 9.41632 16.0494 9.67985C15.7854 9.90283 15.481 10.0802 15.136 10.212L17.3282 13.5568H14.6183L12.6696 10.4704H11.8171ZM11.8171 8.52436H13.3395C13.7759 8.52436 14.0956 8.423 14.2986 8.22026C14.5016 8.01758 14.6031 7.74392 14.6031 7.39927C14.6031 7.0547 14.5016 6.781 14.2986 6.57826C14.0956 6.37558 13.7759 6.27419 13.3395 6.27419H11.8171V8.52436Z" fill="#322B2F"/>
<path d="M25.5984 4.22168V6.31982H21.3054V7.77937H25.2178V9.83185H21.3054V11.4435H25.5984V13.5568H18.8999V4.22168H25.5984Z" fill="#322B2F"/>
<path d="M29.5951 10.7894C29.6967 11.1137 29.8743 11.357 30.1278 11.5192C30.3918 11.6712 30.7166 11.7472 31.1022 11.7472C31.285 11.7472 31.4524 11.727 31.6047 11.6864C31.767 11.6459 31.899 11.5901 32.0005 11.5192C32.1121 11.4381 32.1984 11.3418 32.2592 11.2303C32.3303 11.1188 32.3658 10.9921 32.3658 10.8502C32.3658 10.6272 32.2897 10.46 32.1374 10.3485C31.9954 10.237 31.7772 10.1458 31.4828 10.0748L29.6864 9.69469C29.3413 9.62378 29.0166 9.52242 28.7121 9.39062C28.4178 9.25889 28.164 9.09167 27.9509 8.8889C27.7378 8.67605 27.5703 8.42269 27.4484 8.12873C27.3267 7.83479 27.2658 7.49018 27.2658 7.09486C27.2658 6.63876 27.3571 6.2232 27.5399 5.84818C27.7225 5.47317 27.9763 5.15893 28.301 4.90554C28.6258 4.64201 29.0065 4.4393 29.4428 4.29737C29.8793 4.14534 30.3512 4.06934 30.8586 4.06934C31.4371 4.06934 31.9497 4.14534 32.3963 4.29737C32.8428 4.4393 33.2235 4.64201 33.538 4.90554C33.863 5.15893 34.1218 5.45795 34.3144 5.80256C34.5074 6.14717 34.6393 6.52222 34.7103 6.92761H32.3049C32.2136 6.66412 32.0512 6.45127 31.8178 6.28906C31.5945 6.11676 31.2799 6.03059 30.8739 6.03059C30.7013 6.03059 30.5441 6.04581 30.4019 6.07622C30.2599 6.10662 30.1381 6.16239 30.0365 6.24347C29.9351 6.31442 29.8539 6.40059 29.7929 6.50191C29.7422 6.59313 29.7169 6.70469 29.7169 6.83642C29.7169 6.93778 29.7321 7.029 29.7626 7.11008C29.7929 7.1912 29.8438 7.26212 29.9147 7.32293C29.9858 7.38374 30.067 7.43445 30.1583 7.47496C30.2599 7.51551 30.3714 7.55096 30.4932 7.58137L32.3202 8.0071C33.1219 8.19968 33.736 8.51896 34.1622 8.96493C34.5883 9.40079 34.8017 9.97852 34.8017 10.6981C34.8017 11.1746 34.7052 11.6003 34.5125 11.9753C34.3297 12.3503 34.0708 12.6645 33.736 12.9179C33.4112 13.1713 33.0256 13.369 32.579 13.5108C32.1426 13.6426 31.6655 13.7085 31.148 13.7085C30.0213 13.7085 29.0978 13.4551 28.3771 12.9483C27.6566 12.4314 27.2151 11.7117 27.0527 10.7894H29.5951Z" fill="#322B2F"/>
<path d="M36.2017 4.22168H44.4223V6.31982H41.5301V13.5568H39.0789V6.31982H36.2017V4.22168Z" fill="#322B2F"/>
<path d="M54.498 8.8889C54.498 9.58828 54.3863 10.2319 54.1634 10.8198C53.9398 11.4077 53.6252 11.9145 53.2195 12.3401C52.8236 12.7658 52.3411 13.1004 51.773 13.3436C51.2148 13.5869 50.5953 13.7085 49.9158 13.7085C49.2461 13.7085 48.6318 13.5869 48.0735 13.3436C47.5152 13.1004 47.0331 12.7658 46.6271 12.3401C46.2316 11.9145 45.922 11.4077 45.6985 10.8198C45.4752 10.2319 45.3638 9.58828 45.3638 8.8889C45.3638 8.18954 45.4752 7.54591 45.6985 6.95805C45.922 6.37018 46.2316 5.86337 46.6271 5.43768C47.0331 5.00184 47.5152 4.66737 48.0735 4.43422C48.6318 4.19096 49.2461 4.06934 49.9158 4.06934C50.5953 4.06934 51.2148 4.19096 51.773 4.43422C52.3411 4.66737 52.8236 5.00184 53.2195 5.43768C53.6252 5.86337 53.9398 6.37018 54.1634 6.95805C54.3863 7.54591 54.498 8.18954 54.498 8.8889ZM52.0319 8.8889C52.0319 8.48351 51.981 8.11862 51.8797 7.79422C51.7781 7.46991 51.6361 7.1912 51.4533 6.95805C51.2708 6.71479 51.0473 6.53232 50.7836 6.41069C50.5192 6.27896 50.2301 6.21306 49.9158 6.21306C49.6008 6.21306 49.3164 6.27896 49.0633 6.41069C48.8095 6.53232 48.5862 6.71479 48.3932 6.95805C48.2104 7.1912 48.0684 7.46991 47.9668 7.79422C47.8758 8.11862 47.8299 8.48351 47.8299 8.8889C47.8299 9.29435 47.8758 9.65927 47.9668 9.98357C48.0684 10.3079 48.2104 10.5917 48.3932 10.835C48.5862 11.0681 48.8095 11.2506 49.0633 11.3823C49.3164 11.5039 49.6008 11.5648 49.9158 11.5648C50.2301 11.5648 50.5192 11.5039 50.7836 11.3823C51.0473 11.2506 51.2708 11.0681 51.4533 10.835C51.6361 10.5917 51.7781 10.3079 51.8797 9.98357C51.981 9.65927 52.0319 9.29435 52.0319 8.8889Z" fill="#322B2F"/>
</g>
<path d="M70.8018 3.28809L76.3779 6.65524L70.8018 9.87602V3.28809Z" fill="#3058E5"/>
<path d="M59.356 3.28809L65.0789 6.65524L59.356 9.87598V3.28809Z" fill="#3058E5"/>
<path d="M70.8018 9.87605L76.3779 6.65527V13.2432L70.8018 9.87605Z" fill="#3A30E5"/>
<path d="M70.802 3.28809V9.87598L65.0791 6.65524L70.802 3.28809Z" fill="#4067EE"/>
<path d="M70.802 3.28814L65.0791 6.65529V0.0673828L70.802 3.28814Z" fill="#476EF9"/>
<path d="M65.0789 6.65527V13.2432L59.356 9.87602L65.0789 6.65527Z" fill="#624AF6"/>
<path d="M65.0789 0.0673828V6.65529L59.356 3.28814L65.0789 0.0673828Z" fill="#4067EE"/>
<path d="M65.0789 13.2432V19.8311L59.356 16.4639L65.0789 13.2432Z" fill="#7C3AED"/>
<path d="M70.8018 9.87598L76.3779 13.2431L70.8018 16.4639V9.87598Z" fill="#4F46E5"/>
<path d="M59.356 9.87598L65.0789 13.2431L59.356 16.4639V9.87598Z" fill="#814AF7"/>
<path d="M70.802 9.87598V16.4639L65.0791 13.2431L70.802 9.87598Z" fill="#624AF6"/>
</g>
<defs>
<clipPath id="clip0_15325_11558">
<rect width="123" height="20" fill="white"/>
</clipPath>
</defs>
</svg>
PK���\WC����!assets/images/settings/rocket.svgnu�[���<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.99935 11C1.99935 11.84 1.66602 14.3333 1.66602 14.3333C1.66602 14.3333 4.15935 14 4.99935 13C5.47268 12.44 5.46602 11.58 4.93935 11.06C4.68022 10.8126 4.33888 10.6697 3.98083 10.6587C3.62279 10.6476 3.27327 10.7691 2.99935 11Z" stroke="#9333EA" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8 9.99996L6 7.99996C6.35476 7.07958 6.80147 6.19734 7.33333 5.36663C8.11012 4.12462 9.19175 3.10199 10.4753 2.39602C11.7589 1.69005 13.2018 1.32421 14.6667 1.3333C14.6667 3.14663 14.1467 6.3333 10.6667 8.66663C9.82459 9.19911 8.93123 9.64579 8 9.99996Z" stroke="#9333EA" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5.99935 7.99997H2.66602C2.66602 7.99997 3.03268 5.97997 3.99935 5.33331C5.07935 4.61331 7.33268 5.33331 7.33268 5.33331" stroke="#9333EA" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8 9.99996V13.3333C8 13.3333 10.02 12.9666 10.6667 12C11.3867 10.92 10.6667 8.66663 10.6667 8.66663" stroke="#9333EA" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\����(assets/images/settings/user-selected.svgnu�[���<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.8337 17.5V15.8333C15.8337 14.9493 15.4825 14.1014 14.8573 13.4763C14.2322 12.8512 13.3844 12.5 12.5003 12.5H7.50033C6.61627 12.5 5.76842 12.8512 5.1433 13.4763C4.51818 14.1014 4.16699 14.9493 4.16699 15.8333V17.5" stroke="#6005FF" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.0003 9.16667C11.8413 9.16667 13.3337 7.67428 13.3337 5.83333C13.3337 3.99238 11.8413 2.5 10.0003 2.5C8.15938 2.5 6.66699 3.99238 6.66699 5.83333C6.66699 7.67428 8.15938 9.16667 10.0003 9.16667Z" stroke="#6005FF" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\�0_�,assets/images/settings/branding-selected.svgnu�[���<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.333 19.3334L20.9997 21.0001L24.333 17.6667" stroke="#6005FF" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23.5 14.3332V12.6665C23.4997 12.3742 23.4225 12.0872 23.2763 11.8341C23.13 11.5811 22.9198 11.371 22.6667 11.2248L16.8333 7.8915C16.58 7.74522 16.2926 7.66821 16 7.66821C15.7074 7.66821 15.42 7.74522 15.1667 7.8915L9.33333 11.2248C9.08022 11.371 8.86998 11.5811 8.72372 11.8341C8.57745 12.0872 8.5003 12.3742 8.5 12.6665V19.3332C8.5003 19.6254 8.57745 19.9125 8.72372 20.1655C8.86998 20.4186 9.08022 20.6287 9.33333 20.7748L15.1667 24.1082C15.42 24.2545 15.7074 24.3315 16 24.3315C16.2926 24.3315 16.58 24.2545 16.8333 24.1082L18.5 23.1582" stroke="#6005FF" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.7503 13.8334L12.292 9.53345" stroke="#6005FF" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.74121 11.8333L15.9995 15.9999L23.2579 11.8333" stroke="#6005FF" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 24.3333V16" stroke="#6005FF" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\��Ie��*assets/images/settings/layout-template.svgnu�[���<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.5 8.5H8.5V14.3333H23.5V8.5Z" stroke="#6B7280" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23.4999 17.6667H19.3333V23.5001H23.4999V17.6667Z" stroke="#6B7280" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 17.6667H8.5V23.5001H16V17.6667Z" stroke="#6B7280" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\�9u���,assets/images/settings/starter-templates.pngnu�[����PNG


IHDR<��m��	pHYs%%IR$�sRGB���gAMA���a�oIDATx�I�.Mv�G�Cg06`��Eg�] Ʋ`��e����<�0<����#<dP�e ��hd���)��1���/��žrݑ��穧
�����3##V����f]����c��m�����U�U0�k�D���o��\�*�ԉĭ�w<x!nnhݫ�K�v/>xٞ��<����\�g��Fy��QV}G�w�X���q\�zd�B�ž�eF\�E}k{��I�O����2V<�i�-h�ڲ��m�{�*��H��{*In�g�k�E}z�m��j}�'C=�k^��
����~||�o߾��+�~{�O{Mx���l��.�f��m��h�ƪ���g�_�]�$̓����{�Nǽ�5M-��w�m������;��c� ��'Z{��?�g����^����o�����O��#�o�<�aO�<�z���p��5�ey��~���?zMi�����ݿ�w�4��?�'���W���t�����=�����m��ܟ�s�O��?��?����߿q���o��y��/���_����)�/������C�r��?�G��������ߟ��G���?�����xF����?����_�����h�'x2
e���������?��i����ߍ��_�Kdz�c������m�y���?}����ץ���[��=��:ҷ�����#�o�Ϳ�I�{��Ͳ�#�?���p#?��%=���������j�m��5��\�����/�ō�?���4��)c������_��u��o��
��
���������������?������s��}����~�o�
��F=�xhR6y~ͯ�5�g�������<$�����Ƿ���>x���_���qm�@�2��sx�w���m�/<��U�����o&�������f\�=o��6��`����y?��[��[����_ޭ�?�'��?<<��L�A�_hA�7��ߴ�����~�'����_{��ۻ�3�����~�/z�_¨+}�S>i����/��v�~�o����{��^�'�M�/��k����?w���<�i�=�z[�A�v�ۂ/�$/�p�F�����O�_C����wG����HK���t����m߶��O�����Ii��(����w������G?}⻡]�_�Y&��{�E�/|���\�
�~���]����O~cW�?�G~ǎ3��������1�8�1�k�K�2�����g�!=�&��c�i(����
��ƙ���\;�;�A���
�|'�u�p�j%8w1�1��>i;O�V�:'��{��{��s~閗���9�'���Щk���y6���؟��u���C��Nki���7ױ%n����Xm�󰮙"�XO��X+ƚ�e������Z���V˺�O��3\O^c-��?�07����Z�_��~����o���"�?���}Z�oo�� uoޞ��+�ShP��zԽa�����vݗ���#˼�C�k�_�,u���3���U�0�M��謹 S���S�
^��W.��Ω?�ꮼ�����u�_����<�,�WuY��cX�W}H_��^��q��y���_�`��+�W��e9^neR�����
.x�׃ˇ<���
}z���O����Z;�%��W'�R=_z��v���VoƏ�
���QH��+�xt#�?��.@��X�^�E�=���ϳ
O��E�'�B�.8۪�����6��I-���l�����[�[��rcT���V{.榫�U����ٿ
�����%P7�fN�^�'˩�I�>B�0��`H���S*_	DD�Z�^�*t�:A��op�H�eB!� ���K߀p"�3�Sni�	8(��������LpA��I��I��g&R�}i+�"��e�[v!�iw:��Y�����pM���6~=6v��JHG�����.~�җ��Џ���{A�]�9�a)�K�2HjY#<i��#��hx��{hS�T���W�	 �5��6E(�{[?|�_|����R��mo�{xR�}��Ba����
w���.�~�����}��
�S�.@@���1� �&�'�Nc
�7�W�?�y���?�������:C���ʲ�/oY���]���}[����<����7��5���,s�q��`�|�Y/��^}�#}	�z$�P3���������[�2�'<�_�O�K@E!9��i]HK?M�ී���ͽ��N �o�o@3�|�����I��I�߽�i�������@��0��cY%��W�ʇo��o�Tx&Ryׂ��'�!@"8�h�s@8�o�c̯@8�5��w����1�����j�"��k�=A��<!.���Mg^��ўB����+@2@�<�z`�}LH�����5OR��'�@f[KoN�cmujK��^�A�G�������c`�΁�z��\K����rH&�X�yk�Y�P��G��V��i�'���rpi�ƿrߔ�w�ʽ��g�,$�{�wU�Kr��j�~��O���}�	�G'��k��_��
��J��y����l��_�n�4�iUfk,�˺��ͽ�ھ2�_��E��%��+䴵�ϸO����e��m��^����r/��)ifx�ߋ�G�ӄ~{�a\^7�<^D�c�=���6y[O*[��^"���vr�ʻ�ua2'Ҝ�킲����:��!h�'Р�@�YH�,��+m\�Y��4�7�����u���z�洠����k��tK˪ ę�֖m�ﰔ�Zܝ��C��]��b��k��L^����]%���Զ���'ƒ�Hw�3\��[�U���!o����F��jA�I-�S��ǻ߅�'
�0�Mo�$�
<�g)��n����C�S��������|)� (���
�!LO�
�{6�1��Ӗy"Uᆚ �0��[	�Gh��F�IY�(���чF�g�6ӑG�/�
�R��<lzO��z����
�̿�(wS��0�S�\#�D���<U�@�|	|a�	8Q�#Ob+\TX�Б{��UsCP�_��q
���+�A��W�G�����{���tN��1�`W�o��O��x�G���@H��t�)�F���
�������G�R8-� o��!_��o5�2R�!� "�@z4h����1C�g	NX@[ojS!�v�.�����O���6Jmۄg�-	̤ֆ`aA	���d�$���i)3A/�˻�O��R�&2��Am
��
��}Q�J-< T�|�
�dH��=%�f��7�/�o�x���)I�vep�ViL/8I���%��ؑ`��d9��
��nR�k	z��r$�!X,��������{��pL��:�q� ����oS�ξ�\�
�}��R�#�~���{M������tr�`�<D��|����񩑙�E�/%�5�|5��~h�<y�h�ڄ5H���'k�c���0r��/�.�C9B�j�\�Q���ۓ�G��S{�rF�C�[\$�΅&E��OkZՔ4G��Eۤ>����-�>��)��s}oT�5�y�g����ʻ�l�{�v�o����-��G
�/��QF�������2�w�M��k��K�E;�O�������I��o�������g��D�>Է;�P��#���U��?�����g��m���;�_�_�i��^'�{
�v��C쟪�U�W�r��^��p7<���nȏ��C��N�2�ƻR}�Պ�_����R�1h�G�<��Yi�~1P�En�~��=��O��	!x陦,.âOt2�v^D�~_h~d����7�N-��6�g��w�m����]۰��X촚'��]F�t�QZk7�ȩo,Gt��̳=/$����[,��&�e�}��IC7�j��-H�ōy.����)�^��]�w��.�Om[iB���Fa56�nf;��a3v�me��Z���;5�Obq-ӹ�O�J_��&����|Ɔ�{��l��q���}l|g5c<�Rߣk�
|j�̲�	ʣ
��m�ベ�!�͉�D�'/����;N�f����,1�B[�B�iA�&lb�ㄫ��n(�P`�V�	���yT��Bg*�QB� ��i�7\���"!J��#^����
�,!�f��43�i^�A�-Y�'�_�I��Z�2�	H ����j��.(=�:�!lD�-���e~ʤ�*�E@�9'��,(���g4=�NP�ɯ`Z<#BQ�BL����0v�y
e��3���;0;d[��0"O�s-���Y��iB���0I4�=M����'�0!7 ���/)|FЎ�
�Ԁ�}
�i+��p������7�6��=��k4(r	�G���yN9��o���V��,P&`u">5/HO{[�I/���`	t���T@��ȿk\�>{���G:껿�7�]6��O~W`4OG:���G
v���/�eG[R�䏴�Lx+��v}�~������#?`|z	��'��|�C�E�EhR���|��Ʒ@���MMp���w�w�P94>Z��g����Sm��1���KS�0~F	�'�����O��� ��%����8��X�wI>�sϸ�}jr��AZǦI�;�4!��v�<c\gNB+���
�{�txp~�����i�iX��|ͼ��\���X(�ϯBz�9������x��
�
`���x�����_m�e�q
D����Z�_����(,��|u���$;ҺiX�5�C�8	v��r.��r�6�=�iN&�(�%��0תC�D����I�䵌
,g�� �������\�fY��k��7�#�g����]��~�˵���/i�졶-����7���/-lu�֟�}r��?eu���d�u��n��W�'��{�6y*��ޟ嫱��a;�۲n�Ѫ_����_W���- ��eDƟ���v����Wu���k﯐+^�/�&�S.��r���k-��o���=��J��*Ͷ�햴�2���En��zU��՟em���;�^�;�v���uVC�0�_
j��B��&nE�^���9ŗI�fs~�5A_�Q���H{Z08���v-�]��4�.&���]�w5��#�M=�����/�1&� �S��'�������J�i%�� '��g2S�Ӣ��,>F�LwZ�<��W��\�&_u��i{��u�g3Qц�NxC?��n{�P{��:�|IpQF�gF.tmlp��q,7<	<��r�1h$2��T�qCs���z�ߝ�Pl���bs5�g��F�x���b�`�9_�8�7�$7��{l,݌z�p�2�OPE�Sml�=M��j6�l��ﰙ��O�>�=<���|l��IG�k!Ϲ攦�?&pM��M�ifJ����/��5'8��O�Oz�*	��Sc��胇�Ӭ�p��\#��N���&Av���A�=5B�R�`�wNݰ[� >6Qt��n��裞����dhmX���.�2����9�<��d�y2�4�E�/�Fti�>D<�@��a"��fp���3���Z~<�u{2n���y��S�ҕ&��#�����q��&Wx;��=�Ck�I0�>�{N�C��Y�'�>Hx�P���i~J�.�!ȇ�Z�=Bq��FH�`>HϽ ��M�w��
�x�7?4K��~V%Ɠ�{���X@(����t4��5�B _� ���Y��.f{��zj��g�P������	��IO;H����$��=�$ќ���l���'��~��Y��F�]p�wHݭ?��&��Ck�h;����?�P�����N�;�i�d�o�����LL'-L`��9H���x�a�� >�=���.���e��_G����?��7,h��s�۪I�"��o��iRK�x5I����~쁱��s䗱;�� ؘ�<!n�t>:LO1?�-&����.���S��pGTm�4��5�=s�s�i��4���9G�缚�"�Jp�+�/G9	p��?��w,���!�3�߀h�)�ߎA�I���P��q�iԞ=֎�o�X�P� �X���]{/����e���^��?5/�k��z{6�$�2��D:�p������:����8�Ƨ
��?�45��!�
��������������P8��sK����s�h��� A;�ն�������f�����?�˲�Vu�1L����|[�[�+��_��������z��V|.ʝ4l�hӭ�{֣�������?��)�ߗ�m��g�L+�i�W&��y5�������q�B���Ͻz峾�z�ׇ����/�j��fUƶ�5�x�r��e`��=|l�B턫4�ξ� ��k������J��G�R(��w��H���Ǥ���_[�E��/�Q3N�(���;1�۰��j�r11�)|�}Q��ڍj�K}��j�c3J�|���/��i�Y��?�yA�]Lʓv,:���v�}�Jw[�?=�W��4�˩�V&��Z��ķ�i��e�[�}W�"�v2KV��ˉV.N�jn)���}�\�vЖ���g�ݪ�o���#��=�^>���64߻p^�@[M��45;�i��4<�(� �d<�Q����ѡ�l�J������r�?�
Ю&/�G��D�(8��IO�#�@p2�6�4�aB�qhr�B���053�����w�q�6M���#��Ch�&K�����s�i*M��4�|�:��3�&T���ꋣ�d�̕�+���W_Op$(���W���a��F
I5E��F��1A�Nw�A�-��`�o���Kz��$�W
�4�$o���&�2��G� 0��S�,�*�#tHz�g�{��==��O��O�#�W�@�;o޼9�������)��_���Ɠ?�b�I_ ������P����]�|8�7/y2�2I~�&p�����1}�	��sˤ~=��_��w��ƶ/i�g�O{�	�F�,V��!l�
��b�*}��i,��Ǣ�٧W}Ծ��6}���VP�o˲�#�f��
·��?�������O;x�@�ijv���'��숣}�x�v�%��	~�/�1"������p,%��08�3�K�i�GSNsX��LӃ��i-����F99Ewn|O�Yj�$@OPۃkҦ�)�G�2�D�gt�_���:�:��G3Z�N1.�~��L�h��_�X=��c��(�v�5[�Jk�t�Ik Y�jB�>�>;�C ɚ�z���r��VZ�^�����ݻ[��Vk�\��;�{�)��tާ<����ڔ���V�I���wgSb��"�&m/��v-��ܓ�;���`��KJ/��n�-���Y�odL%�(_i�#�������Zբ����=W�?�rF!7�Z�5y�V���U�Z�[��G_�5�+�
���|��|�r?���Q��P?��{)m�7jX/whTu���Ƚ����i<�������|����S�]^��o�;�⸍z?�d�D�{\��Z�E�ɻ�1��3�V~[}o��D�mv��G��[m���(�q�md��Hzm����v!�\�?��ȿ��nYFU->ջ�g��y��z�J>��FX�m�EC��s�9�4#�ד�-6�)�S[)Toc�P�q�N	o��������n��$?���ؠ�K��,�]�+Q���M��i�
sEb�v0��77�I�|O4�Q^s#�FW�	����S��>l��!��ݳ}��sf�h^�M4�����6LY�t��&�̟ G
6v��{Oq&�b�� Я�4y1,ǽN[	
E�E���U���oH��a�a�����jf ,�+��A��s2�t<'.��'w�V��	A��H�A�N�G?k�(�]<�19q�G�l`E�ؚW�&�}j' \3����-�9*���Կ�fxF{z�Zژ���#�$BJ�y��W6'=���]hڍS Jۧ��e�@��틃�t�,�_
��T��C��.���ش\�Y�t�~!�
�D)@O�cV[��0h�J6e"<'^�Cz��K a=v�l@���?�USDdo|�`t�6��Bi�$�W�_�F	�0�a���N����|h1/�� P>���e�|k��`m�F��G>g�/�٦�#Z�1�Q�i]��w�c����R��gU�G�:�H2]�ߝ�O�s��}WP�>j����o��L�>����cVK-�.���0��M���v��)�\}�XJ�1�?|u0�8F1v�/ ��5،�M G���jg0^�G�2�f�G3D3Y�8��4w�{N�o����d���i���L�l��?s��#�-�a^��
�F�|ӧ/����=�w��A����H?WC��К��<H���K�?��e�U[s��hj��X1&pX�5�X3�u�c�6׮���cͧ���$�׮��"�1s�5���%��C����6��6Z [j�$���\��W��o4!�y'ת�n��f�G���h��w6���Z(h��L�OdK��o��I���1��}F����?Ӹ_r/���ੵ3����Y��|%ȯ{��e��/]�9��k��쿃�������`ǝ��J���z�R����C�=YȈ�z��^�Mמ�i�R����׾���{*�[���j+�R��{��*��������N`�v_����-+Ӯ���k�R����j'�Y~�����ߤ�*��ߤ��_L(���|x�`��P��T�@�b�NAlLK[����4~O���Nmrқ�o'1�����a�iu���	��~^����;�	�I��5'��0��ˮ�z��]��3�o�'s+�Ǩ�ŝNYDߙ$J?�'����iq���ϋ���|�Ʋ�wp��'Z����K#�'��-x�lG~L8]�96I�`��Ko�M�\�{�l��q����
������l�����_ݰ��Y7h���?�y2�2r�;6Y
mGs:�<o��g��&S�	7�O��F�>��q��}��ړ>���̃��II����4Qe\: ��\���=`��+��H�C��l���@x0N4�),��*�i�J[�-
c�8��_�y�3������Y��펐A�8{^4s�IV�4թ��l�]��c<����~��/��  ��Ա�1m�p��=��!�x~��/A���6�W
5�j�
�BI�xP�H0~���:aF�IZ����в,ޏ�r��hf����o�{�>W��VAq.����̤O�t=�O@(>�i��`���i�I��DhR�-�ɧ��b��6B��G//�� P6��C�g�E��,�RHO�Y�@@��A����/�
qh�X������D���PGZ��f��a�9���-�VI��g��h�_�>�#�C[CsW�x"h" �?�
p��K�(��O��B�!��ߗ�<��wA�)�P�8�sO����b:ç���Љ�`|�SV�a�����s' L�X�#�NA��ő��2�Cګ�_��O�i�c�"c ��S�Q��J��1�h��P�tj����+����X
X���B,�1�q��t��c15�R�9ch��|�@M_�
`�a�
�s�`bJ�V�-j!��"x������
��+���C��yT���X?<��̑����G��=�C��x�ϵ�[4X�TsZ��8x��?$�:�]�Z��!�֬��}b
T-ۃ?�"#��'��0�J�f�f�Ԍf���\�ɦ/8�cm<�#�k�}��c�Z��Z|�� N�u$)��#l�� mО�ʿ�����i�g�4�}���u�yb���+ ��qϽ���-ҝ����������K�'yD��A����-��m�|������i�\��Ev$���+���Vi�딟�v���b��@�l�~-��Vk�%A{��y��%�-�dy}-�;�7���!�e���+��%��������7�D}���^���vm�j{Y�w#3θ�z��p7�1��㶂����Ux
���yqd�6&ל����Xs�]��m��6����5T���%�:�~2aT'���m�7˟K���;�m{^e[�P�`�Z��[�﫺�2��2�<�,��|l�M�wA�?/X�ʙ|d��p���z�|���gҧ���[����ϊ��>������i��N���b.h�bS4���<i��<LMi���Y��>��/6=Oae���!cy6;T�G�O�?�$O~�y�&b�9�����S�kU����ك�4�6�^�Y�j������=xojc�}րi�G�@�m#��4E��4a9���p��@!�0'u��H��i�J�Sa���f��D��P'�oȓ�������� ��[c��i}(�!H��`���#�li4U�Y*MKY��Ft�UM�HÐ&�F�kڪ�|J:�%
 <�
|}��4�{
�����g4-�pГ���GH�f�}�����'�5w�o��  �䔸&��������P�:,���.�|'����	���5��Khb�!��!���`�O'��GZM:�,MJ)�f���!�G���]�5A3P�	�L���C��cC��8@>��\"��Ľ�,ژ��f�H�ɨ5Md
��OY�Z)\<�2��
��]��o�K��� ���d"=�<��u�X�v�=R�}��"_`�-���49���Ho_�C��=��<}��
�5M���D��i��B�N�k��H0q��2�߱Z#|_���N�y�l���^J�<>��{gNLE�c|���+�
���+��H�.i5����+h��Ǽ��<�)@�d�@�41�X�\��=_::'��Dw^�Z��(Mbi��@��m�9�E�2:?�E��#�xn�Q����4����	M�z��s����I���9F���<i*SM�V��6��t�1�Vhq&�\�k�c=�~�N�F�mT�Ūkd�u�h��4U���A�4�e�a2�=Z��@�5�X��������>Ɓ�'�*��Ok��<V��(��|'�&_�������|X���,�/�7t�_�g�,i�Zٿ�����W9Ik��vWr��W�J�s��i_/K��V˒O��+�����n�Z���d,w��}q}o�ߒv��$�.��Ѝv��YE|���������݂�I�r���)�ۇ�R^p�W��Ke���ө�Wq�Zv��w�4�;rξ�����V�o��k�p��1�
�}w�k>�����3�K����a��~��y��E�A�+�wk�Z[��A�z�������^	�W���x�~��o/�Y��yib����K����5)oAcԴ�|��S��v������}M��WN��������rq[�m�J7�U��	x����	�4�b�?��ُ%]7qy�+�Iv�/7@�73VP�m��H0 �E=Qf��@���4��{��aҮ�h_6Z�Xm��|�<6�es�tڥv��R�f�@���&�U{���F] `jm(`Ё���6��miT�i4p� CS�D��x^�3��;�'��[4�a�Ը0^m���i�*m���5N�>�-���=����v�����s�{�c!
��a���lGm�sM�̬d�
|�g���Cab��a:�J/Oe{zA��6@Rp�|h�_@+���:fv;x
K�G���R&��'ׯ�gx�����/����A�kz��+�N
��(�����?���;h  ������	V$ Ȑ��A���y��{?<�;Z
�4e�
$(�Z&�?@ʿ���~z��	pm���� I-'���Y�� �/�%�������s3�fZ�&(��чI��җ�@�m+��`���?Z+�Ob^�[?�V_%���F��Bp�#�6��}�v1d_��*`�_�=�?�ߊ�pL�$�̱�o3��Cخ��e%�I��8��
��1����+������x�1�d��K��V��I���H_ jy���Ly<�>�����Η��L<���s��h�0չ�jV�Q8K���R�j{���)�	X��5辎�9tU�i�?}o��?������W?!�9��'5T�W��2����-��D�B�=��!�>�I���G��yM~L����n\��c�T}�Eڛ�t��J�+�a �'�k�g�e�`��d�t*7��yb=Ǻ�����}��q��/��cݟe���د��(ʬ��y�+���ݝ�r�
�o��}`�|���§����U�����o�T�����Ϻ���M�F)�YF_��ЯeWW���az[�y�w%�j�|�3�I�G���Ͷh��Kp��}b�f�^�W>��X���w�/�����>��w��E�,��U���6|4i���긵�y�񫎹z����ڜi��\����
��V�o�@<��o��YVK�M伷v>��j�Z����۽r�}���N�3|�[i$'ڒ7'�9����>�4O��E�y�`d�ń���$�ʅ�qmR�ϩ��Ţ��������s!�.���"��o�#~[���g��`?N�O>����b�tn$F��67���2������w����2�J�nUu��n�<u�*�c3A9��q�rZt�=��:h��ff-����қ>�)�z�L��4�?�͡>7�~b�X`���5W��`��m�Oo��O���i�*MA��l�l�?��
5����MY�n�}�#4�D(e���?����O~BC��e��У5JH����I�IS}eb�g��B�Բ@����!=���W�$M�qXm�4a�;M���!0`�&qy"�?MX)LCؖ����5â	*��
�����!��\#��@৩+���@���g�<�A�'�Fr:�_�BO��,y�)	�@�	-�m7�"`EP*R��iر��'�
���Z����A�����4���=-�yy�t\U�]#��4}��p+�G�� `�)�ʡ��0�u��k���9�����y;�vA�a�I���<��B���ތ��'a<@<�����Đ'~S��:���צ����a�S��6�{_:"A�,���o�۳�(�\�v@�6�_��/50����َYҐ^�>1̀�ڇ�G��~�����@���4�*�Lj���ˡO�_���v�M��7��g�F����Ң��M���}�1����u~�|��_����O3t��Z}��a���a^OM�0�H�5u%��FZ�Fh8����u�Np<&3�2�>������7�f5���:Dۃ9I�J��K9�w��<�r�;�5�32
��s�Z ��"�0��
a>����`�	k� �C�c�u<�W�r~;��1^��G:�=�����WRӃ5f��w
�Z���?d�0#Z��mü֓�CG����w6}|�&�g�'���4��T�<��u�6���t�(�ko�}X��\ck�+C��Y�>�ֈ���eҎ���0[�\G���T�,�<���Nk.�ND9��s��.LY��ֲ�o�n��.�T�e�7��}v�����m��u?����������ٍle+�Pвl���g�����~���o��El��CVӲ����2����S6Sd%}���i������K}�jU~��yX��V���ζ��S�"��U��J|�����o�l_������N�72��B�}���vGn�}�/���;h��ǰ�}w�v��e�wPȫ4+Z��/x��L�*o���Ƕ�~sa�_:��xU{e}��I��R�o�[ O�f|���U}!'i������Z+a�ϙ���D��#��&�vA�ն_���w�ڹMg=��5,��4I��/��=L&�p|��i�~Q��(�F�m[�oE����δO|V'��;�\��:B��zf��'ᰕ�8�u�ޓs#퍹���ȓp�)�zb���<��\���/�O&��{�yOC�;�S���3yM�M]�*V&"�)�	�x������C��yMxj�|���	�3Ҵ�eU'�������NQ����zMYH��O��2��:��Z��NB��V��+�
�Q���a7� (f.0}5M�hg�S�	@`�A� 5C(3S��T!d�OO
C�r��Z���
B��[oZ�=���F�tAC�+Ñ�AS0�sҺjt ��&�<Q�A�
���/>|��2�q�B#54\{:�_M��NA������$�]���y(��#��D����j ��;�B���i(���}1�B��ϓ���d�^��'��#�ݿ�w ��^jc:IM���=����"5�#��5�gނ֏�a��d�J��Ԧ�ٗ��%곩�ayjH�=ڗk�zM��blь�ޟpPn�÷}۷�������ڿ_����˫F�x��|�\�hc�]x�D}��>Hl����|G���H�}���y�j,�=R�$��f��{�`���}$���-5@胤��@�
��硻��|'js��P'����m��c�~ө��w��v~�jk��ᘀ�W��i�*MR������M�U����R�C��p��j˩=�&�\;����4u�s�49���_��m�|E?DK�}��چI�-�*�[5=4}UM(�.4 ���|�\�`�9z���y>R+������?uU�ùP���QÑ��e�Z�j�����g���<=�T���Z�&�^"M��oŔj���im,(�-׽�Y�k���'͛\�fФ��_���u�q��4�{Z��[�i����X��|���6q����= 6ڸ�^���Ϫ��w�����?�>�E����Wݗ��u�Ip��{盼����(��-����_�%@p!ۨmr��θ���{2�A�V�6ض�P��y*��J�ʻ�w�_�S�]�s������㧕�ݕ��z�򿶢�_/��)k�#[�ʻ�k�����@ǫë_��cX
<����l��/����hT~���mh�x�4��K��u�}׾��~Q�|v��Ni����L�Kگyw9�,�s�k����n�|Uv[�3m��.��Y��n�S��Q�A���A�5�,.��E�.��#}��q��o��\�.���_ֽݶω߬�ך��mq8���G��F����#6\i'�H+��4e17TQv��[ߖ�+�̍�}Q��1y�M�Q%���km��;�O[͚5��~����j� 7��WT�%p�f����X��2
$<��ڲ��ɇ�ꗃ8���G��!0�6�+@��,R�6�F��h�D0�v椼���p
U�
|�U�"MO��l{�`q�\���v�,I���?���]x��PL�A���F����@�`@�(���$�i��@���/
v?:�w������
���FӬl�#p��?�w��N�`~�fu��i�4����y�~�F0���7�,h�t��څ��M)����B<�I���W��$�!�#n�
:0���A�*�N�O
�G=gX���N��l<�[|��-�����\�=�{|���y$�
��#�E����t�9פA j?���/�������_��ȏ��A'�g�����	��E`"m۫��)�׏24�'xC�d;�N��� � ���mB���]�6�wK��rM��o៦�����Q��L�;�["�~nO�	J�G��p��\���PA'�!���9�H���1.ǡ4˧�*�S�A4�e��u�a8a,M@#����g�3�[��h�y�8��w��bl�:�6MVUsX��7�e1�������k��g�sJ:黃�'�b��@����	��I���g+���
�u�����<h�FsY�S��i��2H�a��FsXӤ�k�\G�'cŷ���e�zIF�@C�a�t�d�#�f�aJ�X�����K�8Z���kz�^H_MlմjI<�1[��+㫲�[��$�
ƾi����X	,+MP=���I����-����"�i��6ҽ$�]����=挼��r�Z��*3ZɋN����ڴݡc��|'�mU���hE3ڶ]Ȑl�
�Ͷn�l�|A��6����-o��	��m�V��^F�+�� 7�v{Y��{�>佽 ����^Eg������G�1|<kաV𥏴_���~9l�Q�[��]}(W���_��@���-&�;�&�fN���l���x��	"X�~^8�,�,m~���N�H�����J��gV�(�������M��o�V��xקI7�]�>��Ǩ�\��~^x>�@���b���'��,���9Y��u�v�ّ��tҢ>�\i>��]�כ��y"~�"����X�i���>	RȓMW�zhmpp�����dnH3�܀^�!:��Mmm���iV���=���
��'��o�w�)A��	8�j���i��l�6�4UmtT(`@�7���&¸���[� Đ7~ӆ���:#���%.�B�dϳ�#~����O��r�#jX �7��`�'~GԼI`����vZ]�C��81l[M?+﫠��Q��?Ӗ�5M\���1�yި{j��sC
�D5qi�U�鈜�
0i+���N* Ma�v�=�m��H�����S�^]���}��i�'���_���<Gh�����\a���
�$
�2�R��u
�M�N����t*�7��3
�u�_��'���Ziފ�������R.`��,4G����=k��|ƫ��3AA������@F�#��q��O����P��y'��Aܓ����<�F_$���0���O����/{�C_�Y�V�#��|ߦ˾6��6i��
���b�	���}\
�hOB::O-�i�
�+�H���Gy>�yU�R��jm���F۷}w8�	~HC����O���7I�8}4	��^�ss�l�&�K-@�yӡ��g�;��W��R$��s�VP͠*5C�S�����ө	R����=8��	ژ���x_���� =sdY��8I`d�]m�:jݲ��B����u�,T� ����S&в
U�������o��f�����@U��V���ou�_�5����:����;e�:�U� �s_X5���j��W����a�g��F>��O\��JFR��}Q�����>p����a�
��)?�.��Q�_�%�0I_��̳��"��VzО�#��h�[��T��ܧʜ�;��]�B���ڪ�Q^���B��o)W�|e��|���U�T����чǝ`����-;]�%��W;����P;|�)�Vy_ԫ���y�]zA�ǯ����� ��Xv~��'���;���Vu�6����B�]oσ�u�T�W+�o�~I�նK~I�ϋ�>�r@��7'1yL���6�o�2���]���m;)��}o�G�l%o�Wq�|=@���0�E����=��Ҿ����M={,�zY���a?�{���۱7|�����
ۻ�w�f2�}���qRm�i
�yƦ��O� ���"6@�<TlŽ
\n�|?�o۳��ب}{�m#n�O����n��/SΊTA7��{����;n4b�1�u(t�*?�8�i*j{�:��S�m?�鶽/ظ#�z��8�z�2�xpM^4P�A�L?�A���F�~Ff5�E���jF@(�����w�p�zUH����t駃g�� 0�o0�C^�Bs!tA0���X�^�-��iX8�d+�i��@��`Cs�v��[]�x��4�Ж���G��=@F���2��v��i�����	j��z�+`$
f��E�"i��>9�)��/�/ءsa�At>�t����cYB���0�<���BV4>�"��K��hq`
��`�04��?A^ݚ��D<BR�%ȁ0�|	TpO�tB�@z�W��T�i�-�`<���8���Z�a>�>t���8 ��9uD�A@$h`�!z���b&ij7����La=�� N�z���!���'<�]�'�/�ئ��ȁ?�|�v ���9|ӏH�A<��`<�P�{�?@˱�t�.PE~���v�9߿�E~��
�o��m��L7��`�E�7��C�>N�|� x�?��hv�Vj��!�@:���y���g�j���o��3v�H���xB�F�	�}�=5:*���Ơ?�8~�s�#-t�s���J!�X���+@B[�+�9�4���-���?�`<(w�v��p>��J�hM���0e��E���ezڕ�s��i�J�Ï�tvNp~�G�j��ő�o�_�R���[��]ǚ�4�%�Xo��`t�1�	�rh�����R�u}�EƁ�L��G�pt~��	vD�p��q:��n�~���u�ɡ����6�M��'���=��k��6�X�K�C��ɬ�+�[]�����K� ����*���{IӼ+�>�~s��}��N吰��2�/�:��E�dYE��b�����b�ui���w����S�U��[�u�>"�	���21�-���,#�vI��M{��������	VZ+�ض���m-������ٞ�>[}_ٿ�������o��T�ߩ��V�W�q[��r�L��n��[-�˶�/ʙ������/���:�1�
��ٶ�����{���V�j�$�C���ڸ�69i�xe�<M8��o/���cd;iA�^˕Ǹ�ɸmە@�	s��[k�A.��/��7��yQr�C��.��<�բ���}k'͒������$�W�b<���,��r��Jߚe,NҜ���K����ٻ�����n�cl����ƪ��D�ݭ�[���Jxk7vF�[��z��ݭI�#۸δ7'Ǫ��nZև��)�a�jn�Lk�jS8���g��m�
BHm�Fᖑ~:�y���iU3cl����|�<���٨����Ф��aOD�LR��*�"�U蠦�f��LE��
���j�4	�_�N�i+�G
b�54<e�>8L��e�}�AO�f]�yjehw����'e˩�i�Aϰώ��5�9��ڧ�7���3��8��d��C�/����=�A

�g���˘��y��/��m�ۘ��1
��,A�%��R;�S�!;��d���e����0ǣ?�4ٓ&�R�#�c�E3W�Mgؚ�J�L�8@.�<ݯ��I���C���k�0�u��F�VPh.�ց6�T��H
@頟���6F�0
�o��o��9-@	�fH��]x��i��]b���2SCF�Z�Q�d/p �Q�S���ɬ�-����,yu�S+� _��R�E�5kUCj���x�$��(԰���Z��t����K��}N ��I8���`C3Fz�xv����q�I�QЂ����W�������3��h~�{$����c�6�I��Yɫ�Hj��h�g?��jz��$�
�K	SZ�����&�#�l�sLޏ���]��0�x<K
��~���!"mMR��9Q�G㜋y6�Ä�χ��_��{�k��������z�]��Xc���Z���5�X�2��Q~�਀@���gD������F�\�^�3}J��ƫU��jƞ��S����k��"ʘ�w�F\�{(�\�W-�U�Z�gP3���3���{�W{IJ�^��2�by�_�Z=�P�^��G�g�d%y����j��������ndU��r���im�?m�]ȡ&����m���/�I�}����dA�v/�o䋭�-��+��O+���]�}I�wj��u��������TkV}b۶��Ί������|����9ԏa_����ɯ�vk�pU�=z��(C>n��f�\�A��LV�Gy��v>AP�9A��^����-r��	yַ?Ϣ��ۂ盉�d'Pe�QN/�ܶ���~^\�L�99]��i�v1�� o�f��eY�y��b����Vq3�bQ��/��TU�^���@���{k��E`%6"s����9U��+B5�d�}s�	��!��2��V���S��=����a�K�>^d@LS7�uc��J�( Q�%��̭nf�Z�|v���kO4ZW�F댳�S���׆�k���ư9}�k:B�VX��B�C�Y�,�d2B��tI�4~�G�!A��{��~9?ҹ�&1�H��OǭW&=j�z� `�
�ĥ`J�$�yW�CZuz
���k�~��8�Ju"n�}��X!�Ҵ<�vV���͞–v����q_��:
�9MN��i)�(����=dT�#�YM����AU�_B^�����קZ�@\ BsC��J��:��^�G�,���g�I�²��P�Ʒ������A{��>�?i�K5?��F���t��9��J	�Ho��÷|˷�b��O�4�=�_iH��x�I��������J�G�&��-6�Q�w`�wBߵ<�YOh��E!ЇW��G*W �mñ���Z����4�4��s-x�&�|�i,Ma���F���<�����C�p�OX鰼��"8��������	R�"�+B>4>5��5��n�DJSU�W�9�CWSV5�A?M����tV���@�y�����[y���̖�ɡ��4���7A�\��z��4	�p��s��4��e�p=2�ħj�ӵ�k�U���^3T��\k��l��<��z��M�E`$�������yPgМ�	��<�Ӟ�3-���а�Z�����]龻c�1L�f�c�0��y�+�����ߌ[������U�|�L3V�y?�I�j�Yd
������n�i�v�ST�����-@�Cۅ0����
�O����R~rf�,�Y�Pe6��I��Pg们g[����k`������v_���mպ��s�w�l���/���^�}�鲮W��ȑ�V�`Nj�I�;�t����/|��ƪSWz����Gp�[����~�<^ՇAe�|K��"������z���H'�+ry�l_,�ݼ�z�Ac���e��-�����4��QV_<[i���}��©�l�r�"�yN��.�6�r�:�t��l�	��"קn���h���F�0T��*��
�AH3Q��%2�<�Y�n���.Ϗ�f��,����=�[��=iA������L�feQ�	�f�����ý~x�
d�F9aڠ�SU_m�w�,W��$Ӆ���=z2�M�O�Q�y����Y�A�4�mb�lj��M�Pl�t��Q�S<�l{����6LH��f�?N4�.O<i^��7��VshT��*�)L �>�'&�E@Da�C���7��vp���{�R�"�5t��W���&=���X�3�J����K��{?�a�ч�6q��A؄��4h~ �  �B�5�o��B��}�}��)|#�~9�!T�SÚ]1!��Zx� /�\�����8�zp������CVj�F���{N�#��)����2�B�tV��*��p���<!Fp+�!-��q��z�F�v����#]:'^�iHH��
Bb�1/� /�� �ԏ|X>��� pz_sP�!`G�B3Oj
����Ldp�o(A�tHk^�0�ɾ/�v���`����Sc�~��C_�������Ó渠
�"�ny�$���r����^�瀾N�F,�ߌ#@uؿ�7�xՄ����o�I�/�W
�&���Kۢ�x�O��	��x���S'���y1�"��N��ќY�
Z#~\3V��t�ZK��Ƣ/���aF�H+k��� N�r|�	f�vx��7�	��}�1�X�ejr|�_�<q��G��x�NϽgL�e�M3����"=ug,�^M:�wAd��I�<@������y���s�i�˜aZ�'���yi�� �����L�C���y��砗�#�%B� }@c��)�Q�	v�N ����Mǵ�!u����na����G4ՙ��0��ut.�b��ι�ֆ�r�$�HrX�
��X�3���uZ�0���i��yH�t͙�M��5j1��ϱgM�rj
���I�{���t�05����c��Z����7}�Sd7�ϾF�أ�o9"�y#���c�>>��]n=�v���"*��X�{�e�=�{��S&�^���
�	Y�j�߾
��,mUnҵ-�9̲�Ϡ������-�b�_��B.T˝��u/�k>���2�-y�y$<���+��-x�������V�w�[�}���-�9ա�]�-�+���/����g���wq#+N��g���>�>6�a{%�g����Uޚ��W�ݠ��_�B��M��>�9��G������fP���x��,�%_�B�s�m�DAКJ+}_���J�`U�iBn1I��D���}}�=xY"��y�x���y;O�'��u��]�N)䂦�~/�]�;�y�Q�i"��~V�Y���z���c89T
��=ca<;��Q�0��ʏaeK�n2���Sk��٧��ޅ��X+U�Ԕm����ܼUg��m?�xo����Y�e{",�,��������V��N!�Ӫm�l%牾�{*pl��&�<9��M�'
͗��)J�}iMI(������O���39�ɽ&+t NP�c��]�Uz)T���S��/�f��tG:�%��bM���4�E�w�O��{*�"��4�Nfɣi�q���s��t���۪����L��S�+Ǻj� ���t��'�}���a��3̯)��H�<���&52bj��S�AA���fn�1��p�7|�`u/��O��u�:�}��$<���z`�j�����_B
{8��A��ۧ���r54l/��eN��0����d���;Q�#�I�+���"�v�iu��dž�����2�@���t���55�F�� �|��\��`�1�o(�k���UuPn{��HA���g�n=�Z��g]���whj�:[�4�����)ڣ�O]>�pHd����bR����LZjp�ښ�J�k��B�T���'~�'�g�	����4�f����VR#ľ���I�w�7%XH��|�ok��g��Q+_�!{�M�V�౏����p�JXL
*�~�U�i]И����ǜ�&�����S�C
�4Mh�7�C2-󜦢4�<�+ssO�IDS$�e��/e�}��(D��HΟu��]k���ȪN�D��G�'>d�O�����/�$�j����<�Qq������0���i������CXW�F	
_���'��Gh��'.5-��-���r5�U�����j_������b"v�	�|��δu������_O���}������lWt�M
Cݫ�H����o�P���ζ�W��++�
J8YZ���h�{��q��Sޕi_���|����I�H�w��'ZE�u��\�W�0M�m_���~Nx��%O��RV���K�*���?L��m��e�*��b�v����Ȟe������`a��n�����
/��ǰ�}��v����aԸ{�^�E矃��$��KWy~:�?�&�%������4rPL��j"y�`r�ub�EC�y��jqB3]5m��o/�}U���{�WeI��Wu<�m�&�&�Bc5��ł0M5El���E۴;e�,4W�+?�2���-�p,�G[ׅ���;�4g�u���(/�p�s�'��TH��Qa�`����aVJP�:7q��{����l�$�i��?�����,�cZ���0%u�z�,}z�f0�jJ�4��(8�����C~Z���{���ͻ'&=I�e���zi삄��SP$�H跣��|�
�i�;�t�L3Sy
�����0^M�*'0�e�3�yh�*MR�9*�6i6$MQ��v����]8t�mȫp�{O
+�M�(�"H��f�
��d�>6"���fx@��`ro�'49v��!�DX*����)^9�M^@��T��M��Mo4��3���GAA'�g8�|�T}R�:TN�Q��I�63��sLH�4k�� �)dN�4�p���Cȥ	"ҤY�4]��h)`�Ia8|��~(��HSO�(���k{�N��7�x�^�1��0Q�>-
�s���;|�|i���hA50���WM�0��i�tԃ�����<	X�<�ro�)\�W�	 ��`]sZ���	�` 4�7@��{�8��i4U,o����q�&���
�5qU���A�д�I,��&�|h;i�K��U�E�%��(W_+�S���tZ/�!/��D�l����?�~=0Z	�
�ܦo�1<i��'��AA[��(so�'�U�X�q�S�#-~њ��9��>G���l|t0n���c~�Q3�th�b>��S���J�<#��{yr��9��
�8f<����̩+P�皿$�TH`�y^`�j�'�FX��J�T�#�Op�4�Y4��/餩μ|l�
M���N MPy�k*�I���Ln	���4��@G���� @_Sk����W���d��
c����v����v}^����]�7B(�Na�3>������{ٶ���i.k�#�zW�6���qa����~I#��n~��W<�^�F;ˤnd5/�]A�+�
��B^R��!�v�|��	^��'@h���Y�w��~
ܭc��#��N}�K�/�W�]P^��w�Il�>��_��`Nj�U/��5l��T��+@��֌��G��?�_@�
��`���~
�\
��#I��V���S�>я��T�+���֮�.���ų��&}�آ/�G��ro�)��:���e+���1�/U��K:�,x�^�_�DY�������4�x��o���l7zY��ӽ|Xm!o�������R;��L2�hz���ُ��ET=Y���ø*���,l$T�#�K�N,���}��#��2�trF��#�K�!O���t�ҧaF��OY����'c�aV���o�@�'G�	�����j�0~6�w��B`vҾ@U�:ͲSHazi�)R}q�Sq�:[��4=�����>�q�_M���ܓ�)d�����l� ���ĭ�iOO+S��rQ[C?�65;�>}!	T�;D�L��1�@[��D5�/���&|�w����H
?����!2'�=>�<cΧ'�!�a�ĹQ��cz�S�|�O�@:7 ��-2�.1'�3���W���Dg\ja��+_�����w��y:H��	j#�,�
�$ �W���~&��u*A�;�p([ԸH�P�:�k�c�_��{@(A
�&y���1E��?{\��Q{$��chm���D���V�4��)j�$ ��w�O������NⳟRT�!Cj�$�f�0��x�>�%�?���`\E��G~�G��Q�5=���m~� ~�ƭ��U���sN��5F`laL�ڱ�~�@�H{�"�^������~��븛@2㿠������̟c|:�N-����DmA���_8��cq�)U�r�ˠ�c=�/�4џ!9�9+�q��¼�KP$�s��I]O�&����_�ҳΑO�m��!��1K��!hQ�wj��k���N�ç[��J{�ug�
�o��0�d�к����Z:}̩a�mk���?׺/����%\�_it�^�}R�o���x>:ޟ�q�:wu-ӯ���a��]=�}rݟ�;�2}�{���i_�We&�v��ߞ�<��B�������kݕdګr���{%�Z�GN��aй't*��FV�x��'���ϙ�}���}ȳ��_/�[>���s����>8��}�T�j��kp�2��z������H���e}�}���|a�d.���Bl[<_M���j��dfX�$NV��,��vK�a���	���m�k�S{���$�h��r[i��N�^{�:A2�zn�������x!��WkZ�+f�<��ڭ��~�}
�,yw��nu���g,�g;�0�q��l���t�o��ӳǡ�M�&˸v'�}���I��R�*ꄺ�M�	6���qa�*�~�4;�J{!��	t�y��F�(�[��O J��[9�L'�hSX��9��sڊN���0�t
������_q
�sP�O��t��pAPa
��
9��a�d��'�i{�NM&�%�&�T���!Pz���P�Yy�o���~?���F�M���o��m��}�8�K��!���S���~��A`#�\)��������Gjv�N|�F��FF:_�Rp�N�L"@�@����j�o4DtVP����I!������0ME���o���Rث�ؓ��ɡn��a�BbO�I+~����j���p"ǯ�@����)�s��l����d  �Gx����Q��t(n�tfZ)�O�雾	pf�=����[&H�&���YcCM
�(�Z��vm_�X��n�	P1�� bY��*I`'MNU@%�`D�L�]�_��F���A`c��;&��o�B`�,5�47&�Q��N�mS�I�R�D���쳆�R�����b��'�"�a������s<�OЄ���	�,4ɧI=��
\T�tc��@�f���N�ՒS�.
�3����8i�y.-�1�W�5G\7
P��:J��Їs��g<~E�ȶ� �b��-BJ`.V+R�gz��o�V�F��4�U�2�rݢ��k�z_5YY�s�͡�G��x���>��[�B�kA�y�SMMU
ޕ�s�-�~��ejTԃ:�u�o=�S��S��#�Iק��y�����[��I]�:H��R�?sY�P����Q�vx�^0�~����`��o@���s!WX��,�N����}��O�;|�Z�.�ry�3�n�o2���g��y�{�t�?�����T��ڣ�<��0�����m�� ي�ޯ�M��A���p�gn;��E}�[�Y���I��c�j�|M��@�}L�:�����/ſP�ܖ��H��;͂���oN�ku��2�g�1
�9*U`+��w��u�L^������[�6&�Y�B�je�.�o Յċ*�/�>��"�W�V�x�����9ś8c��DV�_��c�r���gfjeԴ�ܓYs�}���ﴸ^���
�\O>q�����:!7+ST	���!�Iæ1��	����`q_�C�}V�y�M��Y��F3+�n`W&V�5���xM���p3_53�#�	�VG�n��Fy擖ך��܃6�=�5�P��i�����ABjb���(��4[����θ�C�Z�-а0=�?��T�ZYF��" X��tI� �pKsU�bU�_��_��� ٯ�t�$��J4�"��<=�‡��>4y�3�
S��"y�[��<�u���!����k�'N!=BR�hn�+B����l���k�.tФQ�<���,C1f��n��R����1��-5+��H�L+�"��R5&45%M��	��R�6��\��i��o�
�d�NU:8�y���kyK���Nm�3������z�G5���	*��}��+�Q��	"�	��+�b�Ib����m�|�wq��\�l�J� �ļ�m���`�y��������&ߎo-��PK
���m'�&hZV�����NC�M��8�0�	�0f	���
�d�Fjw�0�����YMgU�\	��C:��iZP��)�hJ�D�M�U���栀s��|���Ϸ)�&?ϙ�#��X+����t=��ܝs|��b>M-0Oߙ�]OZ������H�c�q�֩�:�'M��R�$�4���Vͼ�&��V��
tH��Є]������dVs
����:Y��ջ�/�S1�
�h�֪k�ҷ
��Ԗ&|����2S��d-g�א���c_��_�=��¬���>��m+��,cmg
��/]�-'���ou/\��S��������Ű�0����Y�v��8=7�v�_•?��$���b��r�%?#���k���*cI��O��[�Wʀ�hW�m!�o�v�P�_��>D�wO�Y����������);��2ܗ��}A���V{���,s��5���2�1�
�� �e�7��&O?���{y�U��/�їh��~��y�d��O�v�����דe;�G\�n-�ڒn�+񵎗�ǽ� �?g;�ݞ ��L�u�)J���y���O����muR��
�ݎ�ʼn�}�^���he�X���T��xL���,���y,��y�~�P%�SL���I���1Nx�s77:{m����Cn��{OE~�07LW�ײ.����>�uL�©b�l�l<I�f�n������9���5��
�.~�@��H�p�i�Sv	����4���'&&��v��"�		OfR���|H�C:�Ĕ�b;^�CZ�>'���QNHjf��9�+�S���9�Ӱ)tQ�"NW'`5#RA}w�B���C�����*O�V3T
��h^�T)�!Z:�U�Cg�_��үF����'���=�,!#����a���F�H��1%���p"~��A���̥�4���ф�&�tZL��}F�D�;<W�"�5������]��� ��f�ȣ�"��
��tP�@`�04DNf������@�	0�F_	dh��{��{Y/�9����j�J@�rm���\��09��-���_~J~��t#���*�1.���
}Mi����j�j��{�~)jy�����o���R�X��E
�(p0��f���#���m�����y��}�g��>���A�3�=�k��:O7 ��7��	�o�Q�;v�H�����v���C:7�j�%ȱ�3��	��^�q�q5}����?�\�j�PH�����o��Ư�4�scj�8gT��ZqnӔbj�8�a�j��?h��a{E�L�|��t�^}c�C-�<����u�g����t���Z���|hg�'RKU��v����{r��:�4��יAmZ��٫��P���;��'S�j��a�jb�u�|�<ĸ�u��kNiV���=���Z�8�v��:8��O�)��
sr$����K����>6��Ť�ys�V�@y\h��^��%+������rc_7iU��Q��}�x���U_���S�t��T��8,?�_է�9+�Ky7���cۊN��J[_�<K���*��#�k�-����_)�k�럽�o	<lײћ:mw��U٫g���K�4���������n�.и�+Tw�Q�D�5yW���䱿y���t�Cx����GT'p��Nx�A������@=���rһ3if�N��e�R�� �n'��:y�63mk�~>LW�&�R�Kǐ'C�V�4/�R$ouA(�Z^_L���*T{��<Q�K�*��x�l=$�+z�n�Džj������6n����`�::�	�x�N����0ՍRUy�ɞp�{=mX,����<��o+��n*s�e?�M:��d�*��f�M:���k�wn��&�k6�i�:��ͼ�ҧ��p����d=T�i�A�+�Q�'���	:N��6Rh*�:BE�������6B45�L\�>2�+J3T�6.�����v>�|	���aЏ�ȏ�I�$i�]a�4��N���_!�4_�DVH�@Hj��AP��Ѽ;�h���xNI�ߧ��w��'(��g�!��T��XD�B
����sN%��@�'��"���r�/�4��� �>
R;c�>}��}��=�� @ho|Ki�
�Fk��P�?x�m�(}� ��m��f�b��$O�s\��P���!�F��&�y'�~�g~=<���O��Of�45%�A{��`���^Iπ��򉯴�A^ ,_�
x�^1۩��J�j��O޵��AԞa���J�+���7ij"L^(sW���N�)	�3��i*�g�inK�nhm�FsW�����M֌[�W�w�o���2�j��s�8�@IjtA'�I�w��gۏ���7�#5E�),�ǼOG�Y����+泾ua檎��?i�-F4�H�X��,�4�9fKKM�fi�
��?�;��#~��x�\D�+��@����� �i�g���@�Ή4�`Z�J������ꧬ����"��a#�����_�X�`�8�p���cX��K��`�������<j��ne��th�>���\K���� $���<��e����Z�W��	���C���s�����o���6�W�u�Bx,&�b/w�㺚�qE������s����l�2M1%�r��>y��ZMc\��,{u�x�|po�߮4?���ם��xldi�+YI�(S�;��\�|�Jf��{�Ú�2�i_��)|kt�|���o��_�ߑ�B�wU�)�B�x#��D�e^��tBs��}w�C��:�UG�q5`�wչ3�k~W���Y�F�|���"�����+�U;���S�_h研ȱ�l�(j�U'��{X��TV
�a9��v�Оk���Lc�a�1�xe�Zni��N���b!'�m��m��>��"h����Bx��H�v�ef�<~⌯.(�f��Ě�EV�Y�c�o��m�{�J1_�U+`1��s,γ��OZٗbA|�m��oK^���Y={�.��S
�MA��vs����@��Z�>W?6���<]VmC#Og��#��&�M�p����/f�f�@�M�N��+�vc:ʘu�>�����׍k���f��G�������M���L]�e�Nz6��%H2|c�6@Ȱo�A�}}��T�eT��Ъ�?m�I;LO&&�IG��A�a��
]L��'��@K!����d�(l���0���7�i��Пe���<ɊF�+-�My B�D~�sr�ӿ��U�E�?�c?v����]��I.+���L����=׀ �$�ڒ�\��xy6������a����Ba�]�0��i��1���q�'��*E����%t���m��������p��k|
�}���&�2ȋ`��|��@� W?̣hoЇ���� xo�'�ў
��6p��O�3�\.�N��C\#�\�(�oK�<s2�C�9�I�6���4��u����}��U(��Bv�RP����NA�Oґ��ԍ�(�����Q��?�ICX���/�~3?���.����Gۃ8�T��c��>��qϲ��>Е?	��-m<��HCC������h�7�!/��~a����|�TTO�����H����wO_f����>@9���5ƭ'�p鿃>��,�}r�7������7�/��U��*�߼�V����,��~�iҌ1�1#A�r2n�9�/���ȱ	`�{�?�$�!hB� l�{j�����@^5:4���5y�,!q��V��m_��37��'
�Y!��?O�aN��?������BHK<����ǒ԰��jO8S�Ԓ4�<�_���9�RÔy����2�`ġU
�A������@�I���oJ����=�����k����T�e]G�`�Hh��"�;X�e0��3k0�����|�s�]��~�6��)��u3�ܛ�{�
v�F\����@y��IZ�7�kz�m5-�?y�����஦�\���	_|���>�쀟x��ޙ�8���'�o4�s��{�c/�1���Q�i�i�e���r���L���_��'�#Ӵg��,[F
!l>���J���>��LȽ�b�����Ö������J�B��2�ܧ�,n����lf��,3�8 ����ߑWYP��k��3��]ɳ���+�߶(+�T�_�|�R�x��!/���� T�1�nZeޤ[�n�G��P;㪳�[;�����/����o��j���zGr0�uX
D���N�B��hA���=l'��`!7�����WN1�E���Ĵ�����r=�)����m����$�ڲ���e�v��{;��tZL8�X9�SN$�Bcb�E�V���ߊlSCբ`�ݟTO�2-y�>0|Gu��Ğ&��b�`��7i�x,�9id��E���|ca+�Ғ�qm���y����
?��f���Y�QX���I�g�W%�
�*�n*Uk��D�*����4���}>�aKznԬ��9��
o�7��*���P@Fy���ar*O���0G��&��t��@udc*�`���`"���� 8�'(��;���F��9e�)�F�����>���=~�Xh7a��B�񬥽n�	� `<A0�Й�>�뻾���}��(��4J8t��5�E�,��B�r���h h!'�2{;���}L�U�H��76�m�������i��D�P4p�µ�!\��U�P�E C����{
y�t�,��{EȦ�_4;�x -�M�DH9|u�z��yv�!)fe0E�����uF�ژ��O�. t�+��O5���|���k��O:}!�3W�зxq��p���{O�Cg��ve:�;؆�6BP�z��
�m'M7�i+��đ��S��I���'55(3����ti#�&�}�
@��`C��>6i!h;�"h'�p tw`f�дC8�6:W�A
�LH�?��1(}��P?@�f@�zQG����8�aܥ�c�Q&��{��X?t�N���B{�>�1i'�����r|��[ A�J 	Z�3�IC~�sj�?(^�3�T��~�S��G���lK�e;�w8 ����kЂO@6�Ik�?�@ޡ��v��*�_���2�7������҄�+��D��`q�5�C����	�9���3>^po��&�30�/��;'Hb^�D��xGG>�r�������V�a�.y"�G�9џ���{5Gܜ;�'�_�T�WC�qÏ?�M�h1r��<�e�����	����`�뀜�9$��M�:���_��@Ҍ5��6\C-�Z�ܜ�ܓF��q�C�z@c��q@�{ף�$CCv��p�%@@�4�_͏�I��)���D>ީ<B�C3�?�K�w
���<�1Ywz �u+��O�kQ=�Ľ�֬ԛ2\S�rm�	����hO�s�@����?`��&���\�/�so#0#�������C�W�0�=��xּ�i�ސ�7[h�L�S���
�"��c�:lQ���r�c�=e�^4*������W{��(����6ʽ�b��-yR�%��ݞ�u��U9P����N�=����Y�u$�Bp.�^���۶����
{��S��&�O�>ʑ���V���i��^��e[��5��M���p��|}7�c[;Y�v��E�����W�z+�M���1��G��N�� j�4�*�v8y
/[Խ�Z+�ն@f�3����;��J�Z?�3�O@�,e�O�Z�+>�U]n궘�z�u@�Z��q��3�&��w��y2��D8�='�Gy^o=&��Y��!�*��I#&�<�� �zʤ9�Z��l���F�}���6�ϛթ:Q�'lf>b�qC�]q��B�|U�#Հ�����w�m�H�9-0���P��dzs��Z�f�c��?�����6F�vp�'�F[�����`�{���U=�]��0��K6C	����"~U[�PUl��F�MT󰐦i�����-�����&Ӎ�0�e���p<O��~��`COZ�b�iO��h�Y&=��&�ؔ�ϓ��)���77�_�!
 �@Ȑ��A��P��r�Q0�t���=�NfR�:>UP�`b8���8}
m��"���<"�A0ß<��4�!���
ꊀ��������4�4#B<�S�?���K(�p"{�{"W�
44��p~�����>�=m��y2������w�a�J�����iH�=�8E
�w�t����5'���wFI�D
��jn����^k�k�Ǚ�D��)*���IO�C�y��`�����?��﷡5�+���!�	J�Gz�hz�뼫��`�sD
��sM:�m���-��E����Q�#-y���MP���. ��ԠjK�3��%ܣ1�ւm��^yF��v
��X4��Շ|J{���k���bjZP� |Y'y�M��?�&�,���� ]@�2�{4M�o��6; ��	�H�;�]Tj4p�h+yt�-i3�����@�
��>X��A�����O蟴3m���	������j)iN�w�
C��*7�-�[�u��X^��P��߾�׎5�h�1�T�؜�E��������S|i�O�D�>��6�1�k�#~5;H�V+�t>01O����?�g�@	}�y���9�o�u�@��P��E����E��u
�&�qԓ9عY-J���ғ�5��iLk��Q�����y�x�" �� �i��C�{bm�7ĥ9+s.�ȏƠ�ıvR+D������P�^�MmTʰ6 ^M���W�5 4Y�����Lׂ�8��C$ֲ
�{��[�S��x�M��u��Z���}B����\�������<|�k�׬�q�[�)ҥ���L�}�c�yj��:<|��^*�X�Cd�@�*���&�t��j�?>kC{��g��8�:���@_�3�p��{�{{Ћ���u���{���r�>���^�鴼��3�S~S�U�����<���)G�e��GY�"$�k���+�Ly;���O#��M���zm���j��ۅ�5yY�'�ղ�+B֡��F��/��-�z}�n�s��@���P�I��y��
�[5}ҽ(�f |m=^x��`z���Ѫ=2}/��t�(�t+�������oNP�k��}^n�3����q'��N6��M�v>1�E���n'�����Մx7ߝ���	�H۝�[N�_��(���y�*�U]cx�l?;�m,>�b�d�'H�n�7C:��Xa٫sڑ�f,�7�N:uq^yZ�O��n^T�o6)�1Ϲ|�jP���c����C�%����''�N��FL�������
6��ׂ�^�F�KA
�mX7�	ZTC3Sڐֹ��M���c؏�=��3N�Ӷ6�耴���Z�4v�=�H>	�h�A2B����5��4|�
S(�cLǨ��C���i�����=������CtJ>l��ٽ���[���u���G:nj�����@ai�ݸ�ើ9�i��RC�g:�5/�4�f��<y�yx�׷�|��k�:&n���"�5M��oOjE��~}A��З@���$�<ݮ�%}w��d�2����yS��������μ��G�>4�h�yu��=�fMc�m�c�9N�*C��B�@$i�[��B >���`�sS�~�FBN�H��ѱ"�`��퐝�C(��RkSZ<W�!5$үS!�)�_�*�k�e�M��m�8���/}�0�h�D��@�&��Qw�۟�|�1��]-��3b����>�	�4�1q�$���~铅��蒆>��\
���]��W������͸֕v���4�d�VNֱ��w�7���~o�{}��_}���T��+~c��2賈t^4�|F����{��
�|z��~�7c0��c��`LN���w��~�������x��չ�@�N�yF�/|���!��`D�5D�鐜9�
�z���mz��C�1�s*댫���	J0����y\��qmB�h��K���q�SV�!�0��:�5��Dӄ����p�SK�vO�[5F\z��u(���l�3�m��x�ϒ�Vw�~@r}�x��*��_9a�r>���;�i���Dy�MF��Ҝn���x�}�6�ɽ��*�}R7��v�9*,>BV�t�>>rO7���q�:���p_�7r��[��Z�W���2�dU&ԞeL���n�h�e�?�8U�sO."�{�K�I~��)�Rg��
`���0�Lm��:n������&�K��g-�;��N�h�KWB�ͩ�m!��2�U�W��ߏ�:|��x!ԅ��t��^�ܶ[U�L��ޯ�/���{*��W��[��s"��d������,΁�4p?s�����9�g�+ߙ��[t�Ank�}jB�r�K{�z��۬���1�)'���WY���3��l�����pf�m����I�E����D-� i�3N����6���=�5o�! �i��ܑ�2�˜t]\��<�7�bb��+�u�ʂ;���#Gy�SD{��J/��S|���t�f�
$d\nnȗ��2�v��?64-
�<����<�e�.�:��ɤ�s6��i��
7q:�晛[�G�1y�i�ㄛ 	���K���1E^Wm���4���
6&�4k��4�чi�L=�;t������� A�C��	���V�5������t�]n�S;�
?�����‹6�i{�k��.�<�P��@�<u��	�}H�o
~5��X����he�m��3�O�GRi�"���Ⱦ
~���)O�!W�?±�|¶o��oz�so�� p��k�	v�����EK�x@�y� QA-�F�����@?C��?M�(�T��io��v��9����A����+��	O��L��u�M9�]�|��y��:����a�(Kὦ��W ��v�O��.%����S픃�Θ�WN?�8B��,@���i53��$5L4/���9��-�C�1�@��F�SY���u��+ю8�04������A<�
�n�)��U��K	d@��`���CS��'�)�9�>�G����p�>��&�]�5�.m��
f��K�b��:��A�i�JІ4jܨ�B N���$�GB��ä�C4����o4)�/���v�+��{����==lР]ՔQÉ��7i�s\��������>L�f��ѹ�?`�|~���['�3v�ʵ�l�{5;�1M`1f���\3V2�X�"`��49֗_�opm�l~@�@�Q/���	�����?�	|���~f;���m��:����c-������܎�,x���1�/,҉:&$ն$�C����������rm�a�c2��I� �����l�4�ŵ~3� ���k�G�{�S��92��I���|���f����u�gZ�iҰ��,�!�z���Zd�����<i��u渟�O��i:�_���h�:X
���{�]���2�Z�_������4���h���ڣ��� �QLR��<=��;R}���p�i�����8�/�is����6��1�-2m��84Gȣ�اO�����w��v���B����q���X����m�C�C��{�R��"w�2{�Wz;��&-�7!O:�ut�`[���Y�i��vF���I�C�'�V�0��Iv�_'�[���m5m��{a����+y겜m;ko�g[ȋ+��Ը�{M������y!l�ڪ���0�����Ac��
x�:͑~FuW�N�z7�B�UF�@�W��y���4�p����n�D��z]�u"ωB�m�ߤ�t��mU��'�e?��J۴Zn�:���I��g����鎫�,Ysag:�_�6q��8I2*j�q�&5S��r�\�:�3hf�-�eTM�\gx���.�u8��������N�zҋM�BnR�T�9�
�t5x�zzjhX��ӱ���ؐ��{��0���թ����:�N��U}dž��$����:5�}��㙛�tV.��	l��8g ���	
�9u(��"�c:���&�h����7}h�.��d%��
�fx3��S`��)Nw"0!��{�3拓�S�b���3r�k�J:#�,�=��*��Z���Rjh��h�l��PS��H!AV������D-xC`��-ͩt0=O+�����t����'Im��U#C��'�	��A�.8�t@��]�z��Ah�]��S�IZC5რ��A0�PW��'�Ec�>�@T��ʚW���y�^
A��"��S�
�G-�6�N�S�A��
��6��i���4�]�j(�><O�����v���Xm�A؆6��`"A���>�MS�-дPco�
@�=<�=���$��B~S�d�����vO
�|�xW?��?}��>�o�^��r�q�D���ϩ�-���b���NH���kM�}�Im�}�����w�f����w����?�b_��0F����	��\���UE-%�	�̚��M7O���<<�o,�?��\}���H
���K�`�al���ǁC��<)\�12x�>���f�nާ�1��q�0�����-u�Q���85�N�;�����$�I@�1sKY����g�G~�t�\��m�-��!���>��V��l�Y�CXx��pj{���j�g=�����p]�!�>=�@�jyr�
�f5aE�P	4�a�P��.�L�:��ySC�|��o���3���ji�U��u5��f�)Y#��4��U�8׿�٬�s��G�dM,�������W{�_��>_i��x֬����w_�q�;���Y������|�X,
�jm����{��+���Ss��2.˻س���P�N��)S _dS��7�Lω/��U��m%w�I>�
���ך0Ik�KY�I�����Eޛ2[�ﵗeE_K���oE�*�.��������_8Ⱦ७�Ȳ*���^����vG�_?��vʗ�*}���V���kx���*���}����I%��1��@[�5՘$N܇��A��Q�f���R�+3&�����;�4n��>��x���H:M�vZ�a�c��Y.P���`�ua�c��P����m�5�������m;���zT^2o0��W��=��y\��������85|hL��^85w�����R�ލN��9�P�E�	��f�nƪ��̣,ң���E6fn�r��ɷܘ�����_�Ħ	,��Ф>7�i>��#��_მ�LLC\5C�f�M9�˝��h���%‚�ӡ9!=6�	B $���UH3W�UC���L���tȠ��!���p�������'�^h���Ӯ"g4�AЬ��i*����<��Ay)�Q�c����ǻ �B/�]��Ϗ���ǯ��O���C��H�	fA
�z���V���N),TP�Y��A>�4:��t
�8��w�0n/�k�&���9	��c�rbz�����ۂ���'��~ҟ<	^(M�LgѐP���y��+�6M��42���]0��;��u44Q�B�L�6MM	6A
@�=��"}�w��S�&�b>hR(�WcB�t��}'عNP�{��l[@�ש������V��&	��,5^�yϳiN�1f����I'�+�L
ڞ����V���+�5|��>���'�	h���(��b�#@�&��_iB������;�{̝A�o���ud�`<M��]
�O@����^pP�PB`�q��q�t~�>׌��:�	�������V��<��c���C�<0�	�06�ǃ8���Acy/MxƘ���k�Ќs�@5��>??�$"p���/|ajr�R��~�A�������1_
�����[		P0�2B�9�g%̙�
|p���K�5�Z	p($'�Z��<�!`�A��=2�D8R�X���I�)�F� }s���=,�v�R\�	v�zA������7����M��G=0õ����jj��s׼>3����5q��<�˃P��?SA��X�O�VՔ�����{�^e;D�m�p��}�ӯ���[�|^���v��uO�>��}�k@�L�{��_�!����_!`櫶��?F8�3���M�v_�3�(�Y�LZkW����|���UrO�L�S���x�����z���|)û�ǝ�ϼ�V��m��LN����r_�N/�'�#�q7|<^�P�Vyj����/�N�oD���/V������sp1�5=����g��|\4�i���Di�lQ�}\.��g�.D*�T�_l��n�_�=���Rw��x�sN�+^�m�ۣ����$F�0'6�=���zb�Ԙ���U?��i��m�I��W��$WU$�ܳЖ�j�y(�9�.��+ʛ��UH�*�H�G���ԭ�.Ʃ���0�֓e&�Q�d��~���i�6�&4�'���hN
�r*U��fz���ps\�<E��@�_�LTA37��\3O$&�а�ޏ>>O4�_	`�P��6�W�8�z+T�yh<��D�':(ɠ&�i�p�EǨ�,5�����IGA���.�8ִ�B � ��t-�1�����)�"]��NP�C3W�|�«�;|�� 
A��N���k�~�P�ω��N��$<��.}��q
'3=!m웷�:<&/��0!��c���\BT�]9k�o��I�)*�a�������k��� ]�}�
��
o�vz�pX�R��OMB���LU�`��u���?�{���<�~2��PxO\�q��9�Dj.4��}�U�Ã��u�e@�9,`�4�	��D�(	|$ �K���#��؅���I&�	�#-�'�vP��׈<Ro��=��ɟZ0�	̌����j���/<�o8ag�{��
��lh}�s����`�PL�6F�C������{��u�#R����ƺ�s��R}����K����hp�QC�qF���a&�i�'-����0�'P�{1.�7�)��c��t�3��Jk$�5��"�;�1����אZ�\���c��y���9?rN#$�Q���>�68�kr2�84!I�s�ڛ����A�A�y���s��Gq}`ı�DICPE��QV5e��k5�b��ڼhŁ���}M3��6$��¸��J`��j4B����շ����}�ϟ�S�W�!���W�I���S��5����������/��u�_�A[M������}F�� Gޯ���G��j�z��H�q��{�徵����վ�}u�_5�!W2Q���/���Mwo���?�x����!����<>k�,�(�ۢB)Gq7��{����%����!ؙ?E&	^�����8�)7�T��|ߓ����g�ߋ�W����_��Ɀ���?�����p^ہ�W5�k�W�����wPʫgI�b���UͲ��A��0��}����Ӏ�t䗃r��Q'՜HF��ˉ3۩�{,�I[�e�z�bQ��	�B�-U�L�]#�vUy�'Je�&j�f}�2�Z�ϧ^��3��.h�C�<_�}� � �L`=�SD�Xo��W'��)�+�a�<@y[i^x*+l�N0���:)i*�Lz�c����POHp����<�a��k������P�wc�	<7���cr��4�v��4B�Jp�u�iH��:'��4�����7�ť���S���#�D��v�Œ{�'2 ���)Dɓ�����>�Ї7��4W����U0�k�	�S!� �U1���4�����A�{�v���.�y��*MU!�ʓ����'��W@��l�t��	c�u�yzr9O)+̬�7i&MP�_gØ�ѴL��>�b���]{��X9760�|�%�q�61i=�n��;拼GP�p�{�?�,�_�Vj���B �i���>��4Y%�tS�Ҟ�����@A}�_
N�/X� B��楪�)�X!�>�c��ۿ�'��|h*�֦�#� �s��>�4�L�[�o&��;;�·�
eu��24�z�����@_ @p#y��Y��<�^��,�w��b\�d��!A㒧B�3ju���~�4<��S�(@�y*ik�,�a����"��n||W	��-�:CG悑j`����0m�fV+!��2�@?ǵ
��O� ��  ��YO�Cp�:CW�#Mf��0��t��"�L3��A�*0o�<�ӫ#t�=R�P�"M0J#A�0���1�s����0٘� �Om��tR�5��pB����S�3��8�W�"�2�\?b:F���T��X�z	���J? iF���e�������ۦ�o5u�Z"�S#w�>��l/׎�L���P<�'��k�JӴ��D=5���7ֻS{�?��hG{��+]�W���yz��=�
H��E"{|Y��7���2���h��,�{N�'~�ʏ�P_[i��|��a�e>. �����Q^����t��j\�u���w�@�ȷ3P��YTͯ�g���v
|L�g�r��a��_���Č���W���@��Ԍ�>\�We��U�U�׊���;_�N�쯐��n�88�}`��p>:-�܀y��K���gymǼ�9��%����)��]k���DFޭ~��qo�ϴ1���?�L:W�@����L�~�=���$`�ZnM;	����o1)�v��L^�/�:.�V诂��0^��3�0�W�i�{*�Gُ�ν���;�@�X��,;~O괙��r�ο�R_��<:�ɣtl�\�Y�e[���BuQ��/47�N�.�X��tJ�y�Nҏ8i�f������E�c�0������5N#6N��ũ�����l�<�V���ܱ��V87g�u�ӆ�.7l��`�9b�����z�F3B�ȑM��I8@?�d�e�"t���
�f>�/�����Aۺ�gC�5�p�B�����:c�?O8"8���HV ���<x ���qʩ��
�
�9��S��څ.��o&��,��%�I�"��'e�B(J3#"��5�|�I��{MX� 
>��r�H�/�)����{�s[v�as��Խ��E��"Yd��x�Ħ��8!����!�h�$J^=ݭ�l#���0:�J@	~�hJD�A�6[-5%�覚�l�ug]XUgO����?��=��SY�<��Zk���k�9������ �~$h�P
!��68_�~�Ʊ�/TOxuDx���pH+�� P�@�|�9�'��w�eY㝀	�S���A�� �FA{}��h\i��?~�uNZ�b'@BI����*��\�����`yvn+�5G����
� ح�0��ŲL�]w����v�^9�����	�@B{���K���H�zP�w3+��ޯ�Cm�gе�/�{��b\���k�c��'�C���M�7� �~h��;�Y�����,Vb)0&@�� �М�g��`=�*E���?t�\��`�=���>�����2~o����g�q�f�:��:ͬ9�*LV1�[1z�X���~�z;
�������x'��#Oc�"��ow��s����R��	˭.��;�y
@����O�_��||�]�����>Jr]={|������pW���Zs��/�Ӂ1=?4Y�a�M�6��"D>D�Mvn�!7���{�s��嚵����=���vݴg�="�nUȾ�^C(���c��
�E��ld�����h?��q�D`�7��J��=đ�܀�^��Xy���+��i'Wu$�!)4��h��c���+ʡE2��FЊ;�����"���"9 "�	�:�z�|hZ�N�)����1�O���T�!%�E;�fv��$h���C��Z}R��ט�̅s^W_�aL�u��Ig�N�ht��ɧo�*S�,����:�A��Fw+�P�i���#0X=�����L�nU�Ʋ&;�S��9���f�Pi#FH懆|�xd7+
�ov�����A��>{���_/����d���$�F�s�J�.��,�M�~��,����69�ϳz�_;z]�VMF42�f����+Y��C��
@�u�b�k]Nr���Jy��ѷUq���|�������j����t�y�\�Yf}��,v6Nݐ�n��Y��.�q1�r7]L�P�Z/[O������/��O�Vu2�1��O���c~i��P�h���d<�(\�l�V�����$�H�PW�fy�m����!�������w_��mV�������l,�}
��V�z�����!��� d���)��?i��.�?�>��J�.�;���dλO��oR���H����͓���j��cPX��W�oo�9 y�wk��4H���
S�~߮���T��pM��I�,� �U��L[MmU�ɓF��s�ϵ�f�o�w�cN��[x��J�,[s�Ki�}�d8�}?��(�i%�5���Y��	湷��"中 ��[�$��������-4W�
�%���+H)B�E�S@T�蛶xd�R�N�p���F@��S����&��G���ԗ櫬6����k����ĢX��t��ق�$ �v��!�T��`�rWE~��>�c��X��U�bi�Šr	�@P?���s��Q�����s�ۗ�~J�҄$i}���s�������|�1׮�����6����
�����]����!Dz�@3�
&tZ����8H�,���۴C�-K	�_�-�w�q��-����?��C���=�\�_���B��|+�~vR�ZV���^���$ɱ/�_�ֹև�I�[m�6Z������3G͗��cM$�5К�yYT_qGd�"���N%�g�Gm�w�'8��fn=!W\��{S�����W.��^n��T@a�]k�Ϸ��@]�����%���|�;|�{�D@A��%LQ�s%�Iﵓ��%��?so�k��Q���!�K�0@�b�x�Y|�7��b�{�P�H|C`��:DVy�J�
ao�+B����e�������zg�rQqEd�}�.��|�I��H�‘gL��7���5�\RʺQ�.};�1��d���� �ʠ#8�LD/A��&I.�<�,xE;yʖ"
Z.eYw�b��jC��8��D�y\їO}����_��_9�z��n�B��~Utl���;V�˓�,�iV��zN��؜��I��G��e�x�.��=�O���r8�Y9
��d-1��:o弝�2Сc��p��Ͻ�>Y^8�j<g�gn��(�můt^<��c�+�����%��:�Zğ,r���,h����\N2d^���p�$Ϛʸ�s�iv�+`��W�м��mȊ&�V�R�h���I=������j%���S�_k�/��V@�l�o;�$Y�ս$?����0�S��l��\�DF}7�Ӎ��ה_޶0��4��L��<����i�9{�ҋ�?ګ]Y??�����~��4�CT/m.�y�>�>�D�m�2����ξ�3�c��1�qv?e�΀���y*�7�Qqt����͔Չ��
�6�q�y̶A��S�<�,5�CW�.���������;����.��:sU�n�1��ͮر7+�����+�%�C��32
��wR���<��!f��\�Á	����
�����"�ʣO���W�X>�Ilx;g�h�����rs��gc�mQ1�
Z9sk%�	C�9Ƈ�p1�0��G�I�",�	d�!F?<X$	
$�P=|s��2�#�~\��	 By��_��W�\`�����R7�5q!Ă��W@q���H�"ae�U��ąE:W[�p^I���ZOBN���W�W����„z%�� -�!�ܐ�|��=��r��A����������1q�2byHx�:��Z��[ù��笽�'�$E��8�$���U��y���\��
m�'f���*�"�;r�C=�����WY5H�m�V�΁�q���\I����9�t��k�E�B{����
X���9i�cy6t��\�o�5�s�oB=֑�ت�@�����P|����,��Z T��r݇�wQ��T�w�k��zh�r�o�u�J�8`E��&,dJ���,��6,0�"���h<z׵?/Nz�9z0{�-GR�k�p_�W�	��"�s��x�\^�9�=�^N�*�r��̘ӗ��-�蘙�o�� wU%WZ�'���\�9��(ׁ�w+�Ȳ�8In�b������o?���P.�Wrx<'A“�j��~d���=@Bn�Ⱥ����'�w=��L]-��A�9x��h0�1�b�����e�Xrw�����Ng�=t��
��Z�%��G<���!�N�-\~zW�<D�8iN��}|Q}%����V����b�+�x�{�����?H�9,,�W<�qC�ݔ�z(���'�3��]�:8�/��&���/Lbf��O]����#��'�8�Dz����l�+^��7�A^�g=��b|�������dy����.�h����R%��.��r՛F�cn�wG)�ϙ�,ɗ|�g�.�O���L�6dH6�L~5�Ӹ3�e���I���qS�_��j���h��M�+��=�z1�T��1k�SYn�F�[�@\�S-w�f��F��?����,�x�m��K�1�Շw6�٘�ž��d
'��>u��lF���ɇ:�kB�u����s��F���F�Y��[�I�e�)����:dDe�f���m�~�ؼf��\\��/��j&�r�'�7�ub������K�fn�'V!�-��RR@��:�=&�	�?���pt@���̇4�d����v��3����}�4��#�b�r|�lB^��*�O1��Ŭ2��?�e<�pS�Z��qu&�
%i�o�@�pyF��#�wh՝�������Kx�v�[��ΖF���19d�����Z�$����#dP�
�J�_���ME��fJ �R�Ч�� �G(y`qU��ѧ��.�f��%�sYc���G���p�V
�+�T�K�'�R
JP�5�%��e�b��XAR@���CB���"$�ﮄ����{|�(���7]H(7X���!r��7�=��f[���{q�!r�{�v
{�w����
~8����|z��F�!�o.'9]� :XHSY��,�8�9aYu{�]�5�[E8�̍�e�=���#�pPP����=Tp�!
>�l��[`H����[FW�1�_�=Wh�Ǹ=nH��J?g�ZsY�Ȣ�r�&�4'��~���O`��蛹f	����$��Q|=�B�Q"	0�z���3�!ra������[��xG�5�>�+nH�գ������Mh�A�˭�#����o�8�ͭ@(�1�d1'�cf�o��{�
8"��~��#X���~��w4]{��(�#����M�#�<�܎{���|ݪQ@�ǫr��ºQ`���<���e�Y�(��е+f���j��P���2�~���˿�S{���F���ܝ<�,(��<���(�$���\�t��������ӆ�����(��C��M*4���NK�%��A�E�is���šs�_�c���t=����������~
�.E�A��Re���e���P�n����0xN盤����_+k�$����ݱ�zr��;�n�@��\�z�3Pcr﫱g���Q6��m�S�Hb�]�w�b�n��C��򐍩����b���|�l�'�U};/�~%+7H��ofݱ	��pn����g6����Z���m[_l�:Qe�gn_'���>��ֻ���t7�Dž��'�<�������Hz�8Kz!gsQ��?���p��
�&��?,�������wv��y|5�b�X<�_��X�V���:��yC7QO� #��tWN�|6��@���9M>�c���:�}�lxP� ��_��������4�}��TI������#�A�\N�9l�k�}�:Q��oK��Sy�_7��`��G'dTGZ3ʇ��_W�k�h<��V>_
Ȩ^���s�{u
 �ET�eHh2
� bv��0�v0�q댇"J���r�,���!��<�c�^.���<9�O�Cs�9�Xb�`��`~����c ��
�)�&\h�u��u�X��`��(��>C��6ua<qE%`�qt�<�0�0��z!,K:� ��v0Ŕ�S��W��Z@��I`�6%k�Qu
�}��q-�~��!��po1��c�ϸ�^B}�C��i��H�%Y;U�	�X��;]sD@D}Ye�~Gq9$�Yr�c��C0��bv��9V�vП�9F܈�>pA�9�I�,@���Q�V`�v �Bȶ��;��c��t���A�o� ��C��u�OsT@�G>����UG�K��h!��&Z��#�t
n�U	>��r��a���W	�O	�F'�+�^qA%�G[�B�[v|�;�Aı�}��ݾ�\�u�
�pװ� !@g	�2p��1`�X= <�	�P�����umG˅�ijޏ�c���V���[�yYP��
��.s�%K�.g���}��=m��@^�~�{��h����q���nu���R�yd�rD�}h�-,a(�>x'�>�d�7�6��𤋮U"���y�Թ��*}
���tH�n��3�1��{�h�x;�
�"�:�2p��GB��#�H6�%,n�������5����������/��xHHǚ���C�Ir����`��|G��B������������#�PC�;��e>�ݺD���<�p�F!� �|�3.�<����¥_���=V��7uy^��5	 y�!юo5��C�n��}��B�{)��@q�*���/�B��|���D��\O�K�x�{�)�th?l�][ދ�����  ��{��_{��y�$�P�9羡��h�ij/CAӡ_2��D�r>��&u��������ÇU*`s-�8�����Lz%����9�v�wyŘ��"�V.LE'��8�}в\C�B���A-�|�)�\4x��+�3��-�Zo�Ã��
������{/�<�����}�݌������ ��"N���+>�[�X,��woV"���c*x ��ű	���^��ϕ���
��O�x�9~���)~��:���t�7��y퓢�x]�������_9�U��'"Չ�ו���+BN���H-��gju�|g��Ē�eT)&�2y�/N]�Y�X'���U���DzԹ��ٚ�i�ɇ�D��fk�q�A��\u"Gk>�`G��
<�d٢�S��Y�O�?���\�D=���t9�<�I�4��	�1�k�g�f/��㓄�5�>���R�G��m�/�>_ͫ�oD��t�h�
��{���ku�;�{h'0cԫ��jІ�
��t��1�ؤk�(��)�l~6��P��Y�z�Л�����	*e-#(Z<����ς/��	H�u�<��2����v�`XYqd�Y��3J)�'0f-W�����6���2��+� }1n����|Ɗ�5���Օ��	�؇�4GԧL�e�!fB��>�'ipI+
-/1%~���Q̛�V��@�Y�����FL���
���uFN��A�o������ׇ��VL~���x�l��sN]\#����D
���r F�DY��E��J��������>`��D<�F�������`�H��z���G	�d����d�pDB� ������ю2�p�4A��Eh"a��,�F����4s�5T4�2E��ߧ� �
�W����u��V! ���qU�rABB��x:�d��gT@������@ ���ړ/�c�		��>�k,5h��s$�sv�in�V	V�n]4Ε4�u�R��9��D���0����X�R���W���n�ARL��A��E�p7��k����z�P��#`�N�uV�.<�@���E�c\��]f;�p3��#A~= �駟�$wN��#�JІ?�_��0�:m `
�\�w��O̭k�80Ƴ�>�t��~�@.p?�/�Bu�������+�<�<	�~N��o��,��ӸZ'���r����q��_��:�[1&�,��J�qT(v
Gڅ�L��xg��i�{0��O�i�3�	kF����@���.<�
O��%���[��,T�ߝ?��?b]8F{�7�Č���<pߖ4�6�~�uWS��9�
��`�:�Mʞ�5t
�@}K��`_Z����+���RqFx����)<�ȜG�:�S�od|�:�����L"0z�a6eXP�Y%?\hu����-9������/�޳/PX�~��B�곟���wH�L�R�q��,��}݂�?h�Ĵ��6��( B"�֐ݒ�=�>ٳٗݢ���|�k����btPzCm(�$�c��*`��,0�nS墓�%�$�#�#�hh$��ށV���#�/�wh$ѿ�BR�YB�`�
�Q�x"7[�' @@
B}����]�B�Bя���\��c}J�[�e�bI�?}���x��s�u�:f�_�͌�'~�h|��zK�H�ȼ�x'��5�A�PVߏ5x�����Iȼ�2o�V���f9��-5�_�5,Dq%;@�W|�{% m�$�3�[׀��3HP�+�_Nr�!�p���F��f�U�w�k�w	�Q\��,3�c�r��kk���2��A�ˣ�Lj���YZ�_@K�����k��*'y�j<�����K�:��8��.�[��T7�+�'݋�˹
H������R�ȇ���unR�QH����.�q����a�u��|�E��I�����Z����|)�q������4c��>�����W������#<�<��儐��3&��b�O֥��-���|cjyL��6�K��J6�����o"��X�)��u��vL������B#�|���M�+��u�#bE�D�����kv_+B([gD[_?��-�VC��lh�ph��U��$�x&T�@��"6�%',=/�5����+-�_=p�$�#��1�;�YUw�d�j���2g��	�ِ�^�a*d��zj��"C��Ƈ��(3�@A&�\��]�$Y���P8�Xa��L7i'��17�|wIr���bxp�I�>�1F#/bna���M;֐|ơ��J}��t1�0�$H:G�E��/5��hAJ� 
�_��_��
��g��@(�S}�bP&PE�J(��~뷊=�D���v��\�fr7#-���)��@G��V�T�*�'�ȭ��3�A�$A�����r�+�8��m�cqP��,mB��	p��Ɗ6���@������k��l��G�F��a�1�7���~�GH���"��
�������L�>�Nh������\�d�����V�p�A���"�
Ƥ`לs�8##������hh[���}��#�v�K���be��~h�E/!7��Ў�}�!�\	��@[�"��=�'��p�p
�݅qX(�5�uY`�#��0�~d�P��d����z7B�� �<�pڅp�߯��q��̇��W��y"��u�������S'�H@�2�h_y��3/�i���B�|�~�����U�<���BZ��gc���~P�-9��%�[�R!?bw��D��a1�ܣ�U�uͳ%m1��;0��5m��d�=ϗ�mX����џ��1m�s@|�򴞴S�v�…���]l�bJ�z)��d��������I|�vz�C���-��Y
�V����^'�����~}+{(���OY~4��A����ﳬ�0/y���k��C4��i��!�OX�
;�z�~���g�B��`���=�w�<��~\�t%+����9n��e��ԇ.��K�*�Z(`�G����|I�:��q�@�@�@�@��J���� �Ӈb{���A���2~h.�	���w)>p�U܂��5�+��Z�Ni��v,�Y���~(t��A+��X�I����;I;��
�q
� Z(ǍS��#PE�ͮ@�A�w}��n[�������VvE�ˍ�,?�N�'Q_$���{�0����+��w��CQ��l�nV�߇�xC������k?����\X���-�5��O��ga'^��=�rO��Y�]E5��R�3�_G��t>�e	6����U���c��7:��.~��r���
Y�|����r�qKy����}]T��Mj���S�y���ǽ��\���+9�(��~}
�T�rK���
ϫIƩ�j�˴v-�V2E_�b�IjI.��)��zي�m�?w���t!�#?���Z��Z��@�ha����Bx��}�ʝ$��9�:P�ً�m6��5Z[m<}��p��|_����Ϋ�v�����Qʯy�y�F���s��Yl����(ikm�qmV"46�Uz�9���}]�X;:ߛyl/TMgus�[l��`xp�
L�7��4��!��-@���su�É[oe�m�[R@�^GD�,8��!pO3�~r]���\�f�9�Ɯ��<��lS��+�����ѹ�v�ƙIu&p��9�̂����Y��U��
���o�`�[A�a�9���Z���-�C~�]��#�'Z�0��
N���c+1�	�#�p��X��9QOu���� 0��(���L-B�7�Ru��$�#�QPU���`���͚t?�
$�D�Њ�׳x�$�-�,^X�(Ƈ��ߝkj�Nh�����SOq9d��>�ݷ���UN�>@�_�	��N�����O�����[4 �z���I��JrG%�j�t}�Um�/�	�� O��'��]�~$����	:׽ ���s�dq��D�1Pt@ .�~Y�'�՗,!��(X8Bx�(nF��T�Ș�s�i�q�\��/����,hCGƑ+*��`��A�z�u����ヾÂc���3Ǝ�]��b1���vh^�gJ���M�+K��[1\�e������s�5@�`q0��)��u�GA�N��Q{�hM����8!|��%�B�ڗzc>��硏�g��b�㮯H��; �V�=u�N>����U���U�du����5��<9��w<,�V���ӷd6�Ӄo$�G��XC��!�6���S�ؼ�݅-��� ��.,�v�y���8Pd�Kzpr�S� �J��1���KX�h��@�J�t���/n(�����rD{�����)�J9���=V֝���U�jV���V#�/����"|眶�u�
t2� �C�/��a���Y�ʂC���4Q�[}��JY�R���E?�
���Toi�-:d�]���U�%)��&:Z��Ǟsz�$K�=�1E<�����˓x��Q����w�\�C�,�ኟ�|�}n����0�[�����+[p8����Μ��{+?��T=�s���u�$�s'����Ov9G�G�-N��\�/��aZR�t�,��*ey��Gq��+./Z���hg�\�2��(��AF�[��:��v������d��ߨ_6d٧۟���I�����a�O�s��9�M@���_o�uj�k�q]��n���{ o����R���]��@�
0���:30�n8�e�.ҜǗ��}Ԛͷ�d5n���>Vi��5��Tu�����
�`��
u��#���l�ޚ�WK��JCfA�g@�?Dj��ވ�X�~&�ԯf�,�u�-V��/�3bM��P̄����.��u)F�D�p�y
 ���niA�s�V$f�m��ʙ�O�t�!��u󑙝��5ǂ��N0';g�t�1p*w���`�Ҥ�)FN̙>��E�sP�pՙ`Ji�)�<98s�$�X�L8L<n�d��c�
�{Z�;9:��.�: �|�g�x�P�ri_"\��)TmLڑ4���1΄!�E�S.9"u�_��#4Q�V�(�+u<p���),z��"��BC��P���k��f�T��`a�$�r�VZ���/��rjp$a��1�9B ��.���S�{Օ�HN�N��Q��ׂ�p��5(�q��3HyϿ��� �m.LE+Tv�Xn�xw�C�
z��F�>����UOq+��A�[�YX����w���A�@\×߳����A����.d�>%ܧ����/$�Xo,c�����װ!	� �>�pT�Q߸�rp�?Œ���~�w��
N?�;�W?��u�pS�{ǚey�y����a.�����>��O����=�|�A����hN���s#q.#���>9�A��˽�߷ꓸ'���R�=~�9�z�,����~S�K��[����h���������{�e�
��n���S��P@
�+�sYz�~�	�C���޷@�p��!��� ·�s�,ʠ�3�]�=���o0.��R�ڃ�?`{G����
�=B�x�b	��� 
���[v�H|)�-���w	��>�Xڧh'0E@n��Q�#y�/���U{.����kn���e����
P��W��o��4�h��1�S(w�C4��8m�t�h,�N�A;�A<X��SH��dq"w[���Gы�,C�9��xRv�<d��F�W���ޏ&\c���=9�N������]�åm�����G��)�k%�R�k����(6�Ŕn
�p�)�U�{��f|g��j�7%9��~��7�{S�gG%?����
���_�s���^�I�K�'��wy��y�8+��m[���SV��t��_��Uo7I�G+�l�L��dp���3��jIvS�_���G���՗�mc���T�@�[�e�~�g�9�Sg}�����z�Z����Ӎ~�t�����n|$꬟���_��,�h\��9yQY�j�ۇ�Y��ʁ��>wich��|?+@Ay��R��`z�������u��6	[��q�7߻�Y^����k�:�<3q�p=!2Q�ҺP�_y�ae�y+,�S���sk�눺��N��֎[jP��2i����T^��X��8�x��5��0����Dzs� �#3
���q侩�W��_�ZR3K12�V�[S���\�z���0M� �5��i�ч:g��޺e��uf��a��e�!PC�bZZ��c��1H�T���6��
�H�E�[��_88�'}�t�
Ce��(��|��ܐ�(ט�A`.%&(_��O�(�mN�p�!�#k�
��2�𠞄3wI0�� �A�cB�*+��/���#�B��f�H��z���Z�Z��-�h��k�y�_z�`��@�}��}���Z��ȅ��RF����KhH;���z \f�s��b������]��`�����*��p�4��	��^.����S����N��������,0B�9�F|o�ۡpY�Z�MB�������2�-">E���!����
…Uq�DBz�ީC<
�%��vl���<=��o�2��\07��5������^��k���ҵ���@>��5�X�:aւg���zPN;t�\�-mB�� �;���~ ��Р�L�$���8��.L�[}df؟;���g+[Lp��ӳɵ[wОs���Ϧ�G�ò�ӆwBn�4Gg�0�>���������Nj	$��x�}��BO�5�@\�U��;�]%�QH�۾�,�RDA�F�7:�ز�`�e$�db^r_(׆e#�^&KI~K�.��)����֍�v�=�1�W
Q}�RJء9Ah��5��%h�'\a�-��ׁ<�����
��@%�I)$�_+���P��ᖰ�;ԇ���<�#5T_�*�`C�Z�5�-���K=�-�Y3ƓB��#.���Ӳ��Dt�bm(�}4�h�l�"z[����re5����y�����'e�C�OV�re-�"Qo@8���$���V����=�����r+�Q��x-�4?�س���*m�����#��������eY�2�;f��$S��n�hwp�-9�X�I�ubmѶ�c#�\�s�<��CYˁƘ�n{DI����(&+r��(����.�C�V�����]O�L�wݘe"�,I���3%��~ߋ��\���-���4Iwcx\��u��bT6ʝ��@z0�A��b��\&s/��-.�W���ҷ�%FQ�ѣ�f�<�(�5���9С�W��Xm�|
�z�j���%4��P�34;�W��rm^_}��֤ePM��&4�{��˟bYhs���e��6ro��pbD��m9N��ږ�bJs��L�X~�ظ�|%�4f���Ŭ�4��,�8"�`u���|�����GPqFn� ��?�����q�
H]�z�����������ə*��m�m92w1;�9C�ϳ�q�/�C�2vd<4�b��@f�0Pb��� 5ʹ��S>��#N����	Z�d�&�bfD��Tү��r����0��G��C�;�d,5v��G�'�0��s~��8��w@C�<�21�
Jt�A��$�P�ha"h`h\RN�k~"��O�B�MN��(*I�� �Y�.hA����:���&�Q��R@s�ו'����4��k(�,��\K`�.���*,1�\X	�@��F-�=u��2�Z˺\Ih��m���l���_;�	�P����񠜭�#�8�F�:"�eB9@C��4�/ed �`H��4�	z��z��Dd��•NP�}W�<D��.,
�DP����h�S�	�q�C;	�%�g�V��0���<NZ��E�^`�����C��~)�,z�����e�q*�X�=��H��z��e�[�iH���[�h*��b@D`}�=�p]�,E��,\������ߡ��F����:zՇ���
�!i����Y/��b����p�Gk�F�"K�]47ւ��fp��,[�va���w��Ds0�t�Q��H�g<r
F_o���G�`l���,�t�z��x�ԑ%�!�-���}P?��qª�<W�z�ю}F�i���̂�����#�b��_�ϷG�������_ч��ܠ�+�Vw�'�
�Zʹ滦|YQ�f���4�?�_��WZ<W�<ʚCVz����Zn��ww���vP_q���G���(.}�W(����ُ(��>�E�8��P/k��}(o���k��׵����+�'=��dOW�җh���>f�?}�'k'�k
��GߊB��"�C�(�&����}q�]
� ^�j��Xp螡��P s)�0����k^GV����@WLQl�?>���2�H?&��I��� �Y���||�G��@tsXD7)AW+h�����'{�,K�Ȫ�wy��N�+6������f�j'�_<��㕫[�Q{[��c|���(���=��|v��� ���6����v�c�Oڃ_\)��qIϨ<�R�S��\�o��=-��'���'�P�����j7�ŷ#;؇���$�v4���jo��\��$9G�/?�B�*՜,�h�>u�)��婯ZL�d��3��^;�����Q[jSCN�y����[u�da&�r�$�+�ﻑ���R��,\�es�{����qP�L:�Ǻu.��$�Li�n(�+/��(����Ť����P��Y�~ZF�	y��П�4e�x��&�[��9�>������ns�BF���e���' C=�3���g�cG���ڭ�V�D(6�~���i�y�
�� ��H���m4&}���&A`����Dz6�:�4=�}�{�Q'���'�#(���:Ϋ8'�y�N���9�-�b��'%��W້k�U\�:f�c+�0�}z�qi[qNG��cl��`~.����u���8��Nb�h˘0Rb\�hP�5�8�y�p��ַ�Ձ
��U���À)��٣�1�3�~ͼ%�_=���,�@��M1��繡�ɋ@���u�k��!�����]3,MA@�
�0�
�	��|h��:��ߎ��]  �Gƒ��,�`��(pN?�As�5c(�k���T�q�$��6��0C“��� v���c\	!����jE�!e��f�q��J+�W�}��]�v�(w��p�����v�q�k*	ڸ� �����YC�F�]�%l�H?�G�ܾ{��"�+ԕ�%�R���{0l�7ҏ�M��.�s��R~���p�;�	��A�(0c����-�
�N���yW�K�8�}U�����+���
M�-{	}��w��@X���`Y�1�Q�k�c �&�@Z���>��T�o�N���*�z�%�����	��S�cX����{���mn���,Yl0���uh'K
+�zX��]���6�Q �34��:�b
;@@�\շ��$���5���k̝��?��,3�X���?�g]M�;�0O���X���a��gEcӷ���O�����k0=?Jܿ��E���~�<��
�Y��9c��ɒ#������S��z�e�Ñ:z?�w�k���ꊾ'V��L���Y\�����;���z�% `�op��5H���w���R�oV��}�@�rw�7Ϳ��	�`����'k�۲8����o����w{\%���?I.	�k�Mv�A��m�x��-�@YvpP��I�t��s�kF���A�]W��~���<����^X�^+������>�ޫ}���r@�KK`J
��o��C�@�HIB�A�� �y�5��2�m��
0��1"`y�"Z�~�a�zM��G�
B��
	��0�H�u���p�ň\`yt#4&m	`N�5�Ǩ��
43m�oe�V*�f!_�I��5��f�
��>FŮ���`Q7�j�Ӏ:;k��Wܑ;��ŧp� �.4�x�h�y��(s��JR��IS�CR��3���kM�հ�uc�n�Ϲ�x���c�JmŗZ���F��V������u�Vⱳ�}6H����r�n���U��iO1�ޥ�q���_D���Iv�6�n�\i�,Z���V�t���+���.��>�I�v<�d�aKJ�(��i��b�����8�y��f�F;Wʭ�����o�}��y<��)�7S>u}�������K����]#C�HM�Ik7�����${�V套��z��i�4ʏe���N��9�o9ž� �n��g�vС��O룳�q�X�M����[^���Xۚ�Q�j�(k�b��,'Y��z�7>�c(���ц�5��}�"�icO`C��\eA��:��,������$���V't���x棍?~�23�u��)[Ú�fD�����׈��J1�QDfK`��-���ɦ��/k))��Q���5����p3�`<$�ճ��S�?5��A�32�(g���<9��ĬЇ,;�S������۩M0s����������-UФ#_f���#1BT_m��I�1���
1���PN}��JV��O������i���rD� YV$����&OL?ma�	�	#/��\MqT�|cc�� ��?���Z���f�Fho"L�!MP!��B ���@G��!�U�ɝ���.6"�F/��l�vG��E����d�\�&��c��A�"��Z��ܜ��,�U�OA���"x`"�C ��0z#���3�<�����[t�`O�E����9C���

�7Ԉ��n�:µ��p��2\�k��غ7�"p��9	���w��k��n�|E��>7���rY�߈|��1	�C��5����@A�bR�8���q�k^�w��`� �����C�
�m�,&��<���g܈c��s"��#��|s��^dU"���ӗ�,���^����2��[P4�"����C��(�߇u`>�U�P&WX���\���_���Aw�@�^�$�1����@�,���n�dy���OO��h�cDl����?���X&z����}�-�3&�T��U��#��M@�g��I�<�%���oW8R�~�Y�/�=,����*�m�������ŷ��)����,{ȕ���E���K�S9ct��4����ىv#���Z�)���&��[���{�-K��\�<@�N���~|z�b5)�����?���Ky��؛r-�Y䓧r���cK�9�A>������MVH�����雽[Aɉ����+Q_��PšT��se�6�/ZD��ȓ�	�D׈fQ��u�����9@_�(�!�Ʋ�pT��N�zW�(¹Ǖ���eݡ�!�\d�����
�`I"�ZZt��'�Y���-ˇ���^H����Oҿ�Y�P�w˕���.�J<~���܂C`�Ჷ�`�j=�#��H]}G���`�,J2e}�����Q�����S�F�Y���o:h�c�#�#��ku�,�~�J�Jl&K��U�#T��w��n����ic����,~O�T=]�Q�����L��V�|Ȳ��eCk��X��e�.��>���l>���DgRV���7��~i���?w=u�>�Q����m�߬�M ��:�M@��wF�	�r?�N�����u�hw�����DžT�����ӹ��"�������<�w5�>���2볝�����>�t�K�b\G���\�����m��gn�~��A������ZUo��߳&���ٚ�5 �s+c��֤���ޗ6c	��е���Zd��kDL�g��5���Qߟ�t�	AT��?����ɲB���f�}�}�Vi����u�2�����A�h��R^��/37�4��C�Ykh2˭
�Džo�b2By�id����*�����`�`$t�H�Ĩ��`C��՟4�|ik��D�)��@�@	w	���|P���z�I���'� j�rG fL�auљW����]O!4cJ��G�х)ֵ�
~K�&�X ���	�¸#H�H?0�Ϟ�y�Ñ6�MGi��u��#tP�t����j 4S�dh���F ��'G]#��|,r�$�@�C]4K���\V�{T���`�]w��|�p�rK�17��,�G��pi�Q�;pO�pwi�������S� �G����;�V��ft,�2�K���= �C8Gk@�ܾhlwe���&5>�y���j
A0�3��I�_�.��O��
~\��C߷Ep�SýM��;�L��Ņ@�������g��n����ǀ��@�"db�<ד`�k%R �V�����B��増�3��%6�k,(�"�7�ǃŧp��S@��v=�PDr��p'U0[�u�;
�Fs�Y.�@H���꫆ņ��\�-�Xw,}������J�&�>��sgNaݰ����~���{=�ߢ�ގ�~�Q4�� ���/v���Vm�g���1�1�<_.���~5��{p#�o�_�&�2@���3-��- K�
������]�s�=W"����l�2�o����_��O]��?��~��7�J��
��D�,K�[N�����`G��[����TӞ�;����!7�T�	���{��/<���o5�X:�=�}`��~M<g�O*������-��2�*�3,�dž���	h'�y(�}_�G�]���7ˢ�=P�w[ ���A�� %	h���Ϲ����];�@��˺�� _�ʡ?<Ƙ\u�t.zG�8�,�D�=��d1"�$~Cއ~P��+�D��y�>�-��CoC{*�wZ
����ҙkx��F���Ѝнп�'�Z6�Q��=�"zZzV
G��D|;���7\ZA�R&Pk�����h��/�#wy����=H��ſ�gi]T׃��EȐ#��+/8w���O��*���Vżď����5f�C�,g���98xa.�Ŋ,��8(]ʆ��.�}��S9����2�Q7�J�t�Z.�ݒ��kp@2�<�i<��h���ظ�����2h��bnCn�y�$�� �jp"r�Y�9�$�km���0�b���g}�үݟ�J)s��:�k5C^j�g4��`�y����^��m+�Z�<���9����6p3�K�M穖��b�������\���	�Y7G�ɜ�)����>��gY�V}�z�^�?>&>F��3����	�DZ��j��4i3�o�1Ok��z�*^'IP��-�Yp�� \�c`��F��%��8�f(��m>��Q�\G)��(g�P��1#P/՟��k8�)0��~�@�N��Z����u)�f��L̪�A�\7kyr��|z�gc�Y��|�
(s�24s�:�v�
��qH>���BC����T[��a�G0�҂#y H���=�ac��)c0_Yt�X�=@��W�¬�I�,��X�n)C0�
�)�	�d�#�@��v�9��^�{'?�>����L��w柔��{�P|�+���k
	6` a�=8P�q6����!,DhBR�T�� �&�"G(����'!���\{ W�8W��2Ia�Ѥ-�<�+�8�
����%��j�#�Ox���VEe�U�-7��@ئ��Y;�(G�Zȸ��`����_}p�Pa��-�@	q[5�_�A��z" z�P
a��x��ю��h"�@�Ix�3� V���P��v�*?��+�x{�j	�íM���1���p�����W�	��5T���	�{�H l��%YA���8`I��V	
|�uW��I���0�]UOkC`�*��[���'y���iT��x��坼
�����H{ݓ���=�	�᛺�9��^s[;�-ߘD1gY�l�7(����kX.a���M߲�:Փ�C�E��%��ZkY�D>�;W�M��%
�}�W	��4~��w!�Lj�! D�'m�o�m@�X��]��D���z��V=�C{��+I������5$}s��S��ظ���V�ӹ�`���o�t�s���z�
�?�
��>�&)8:�|�F����O��>!�W#��;_��W��Eԇ�+�X~�y�s0��u�}���&K{����*�ס��`gߖ���L���N��/�W$W��4��Q���\q�]+�9�tGJ%�Vrz��4�H^Ƹ<��:`���A��A�=)X��@�#U9nL5���� 7t$)��<t��}Xc��&F�����=�`�,+k/��٤���z�JKy[�?�kh|?�{R�@��x�uR(�iU
f��P�uՓU	`I��l�m��Fr^oi�i�F���#�)ٺ��|��t��b���q@���{������UVO”&yF
b��$�:�M����Dmt��ْ�h.�L[��6�{3e�K�*�OIr�
�`���yN�����Vb:�a����ey=/�jZ�,�;�G�a�䩞_�<��f�M� �u��Ǽn��\�K��6Ӎ����.�l�^�z
(2���C>���m`�:���5}��>i~%�U����`]l�c+瀌ڬ���
]���y]��י�]R�͍c��i��e��t��oʳ����n�h÷�^U`��q�`@Ȩ���'6<���)Lۛ�I1VG�{��_5�^5����U���
�\l���	Y_��d'����0��k$	0�`Gvc�@x"��!�ظ�2&�esp%)g��/������4	��7$gPT_��X�����"@D@����n@��[��	#�L	�T�|%/L�p����!�1�0���7��Ƃ9�EF:�#�93�]�d�D#x��K
�X`(�8�H������d���	$	'J8�!�zt�
Ve�ɥ�ڡ�) ����BmT�^i��@CB��zC.7�!B��Ն~w��l"�<��ⷽ3�� �]�7(�`�6Xd���������_�����nWk��C��︴âl���2Ѩ�����Xl��nN�W�gNu�7��C?_����רTq�S��E��c�>,m�y�?�_.n�1���K���X��O��&��CU��t��������=��άa���hK�V�%ZȮ��#�M�p8�0�1Oß�hz,�Z�>���IݝXB&q{Yi~�#�q�l0�p�G�Z�]��2�eN�,Bԫ�>%o<5�)F=����gm����Ak��i��v��+&�u�"���5�Z��#S��6:��"�a�|�ŠТn���hvY�<�e��m�x4N/Z,�Ԇ;4����Q�*=˃�l�B�O�������>N-|=�{��ԕ��?UO=�{=~
�7ۤ�Cϻ�̔e��e=��W��m��E=6�swh���u�q�J�w~7��(��$tWO�5h��o|\��.~�C�v����4����x����úoq+�����9N����]��}��7�K|ڠ���ӡ��7R��� �2^��
���
��������}��������+��s�@����$���%�ً��tD?��>��I.�d��A�E��
(!t��rDQ���<�co�{>�(Kh_hNh����}��g�@1�X��V8�
�:a9���_4�5�9�w�[D�P.Z��+�o�� AoI$�%�S1\�E�\y��F
.Ѕ�:��'`� ױ��Ոi�\#��$�R�9
>��ԅ.���C>s�"�\�b͑A�L�D�{�$���e�L�3whO�,��WR��
�Y��](��+=�\)�����֊��2�H�ϸ��^��fe��j_
u�_ɕ���'�7���׃��v��j���ϠH��/�.S�~%Cqy�~ÅV�a}Vʜ���^t^�)P��&�q��\�u���r?��1�Jl�'�9���K)F|�Vy���?�O��J��>��o�N�c>q>�Q��ś�.�m��n�Ƞ5�V^Yo��Z�ٜ���4O��M��0������,��g��D�>>.��rM�7DsS�E���Ps��#����j}�o\��>���Y����`����G�@����\�7�6A��7ߛ�>����smխ�d呴"V�1�J(���z%�n��M	 'z ����o��B2��5X�ވ���@�d�1���aCRצq���T�o��ڲ�P���ܘ�<����g+�l�1Ӕ�AP`n1<�����$�s��pPAc���
��e�r�015k��f��e�.su;�-G8W�1�r]�
s�<@��9Q<s���K1�*#��:0A8a�mI`���w�L}��R<�� @̲Ɩ% ��+�f$)[s�� �z�#@�84���
�û�0��+�
	3|r��|�*C�&\s��r ����-8B��K�!��!au=V��@��F0�3ɳ	x�����J�di/
c�fx���_y��G���nJ�̹֓l�)�6��^�pڧ&y��v~����̥����&��.弴/����$mk�,��K8,�9MF���>�5�J���[�]�'��#]���c;�~|�w+~�X�k�Q�:Q���3 ��&ŕ�������l�I���k`��{W/�|^�5�>#~�3�vWf0e�?����ox������>n�8������1��mf����u,���h����N9>�Wm�\m�?�3V�����_��?��_����[f�Э%qP��`�K���yT,�e�ȹ�8g��z�g���]��C���.qA)%�(4���K���I��e�@
o�r(�1t���^���\�����`}N�HiD� R@�UHv�%�.+W�7�B
��d�+��*pq���hK,{e��9
5�;��� �Vt�+�(zZע��+z\A�Yd���ƌ���r�	��@	Ƹ�_)�����\��-W4�Y�A�� 	� ��0�P��ђ��ԲC����y>?]�}[��c��xO�Y�GN�
�+z۬��<���n�.��!��u��D`����\�Z�Y��\��x�r�x���(�]PP�%�
�q֯��V����Me|�KY��*k���oC�W�\s}/�3Y��Y�eh���!kl[�܍�\�7Y����gc��q7�ӻ I�Rkwn�t]�Rby���zx�^�R��-����k>�u�,��1-�Z}��Z�
e�)�|x����	��8�zy�
��ji�C��㦉#��A�|�(�o���[}�f-B��ɢc��3�O��E�~b�������˴}&�f)[h��E��8�ArmA��%��aH�Ұq��	�I��i?N��0�z�:;�~�;����rk�֒�0�Y?�v̏Lŷ��wCT�q�
�#�+iaI�L�H�H��31N^F�Y{��V\��Vn���J��`N�|
4q��{)@y���"�"�m:�����s��h%R.�Ih2�o��j��֖P��9�A
����"=(��(�	J��Q*mP]�p!�h��W	w �M��&�	 ��<�&ҒU?�C�<wI��`C�7�/�c�����>���>����Q[�T���U�^���7�x�غU�W�P��:�$>�vҸ�������1��ŇYz��jc���uZ�P�N�յ��0D8�W;ïn�{�<N��Ͱ�[Ӱ8���v��Yl���@����
�8��>ެ����߮��Be��g�l�z,zjSN~�o�<J��s#B�jw��w�^�͚Y
�.���.�$�k\���7yW��oxe���E�H��#�p�Pֲ��+X翗�9���Ok��*_��r����ӈ�k�f����_����K����kv�V��"
xw�X��x��Zʻ�����ZDV��(eWX��Xh�n�����ak��ғ����
��S�h�#�qT��
$Ѽ�-�L��<Y{D<� ��.<QYh)�e+)��Z��܍�#��-?��bCV��X��V!PPEs�^�0��E*m��%7u����H�Q���#�:��]U%��V&3�_ �����!��8�Ϲ���,+>����ޙ,R��hم�[ܗ����f��ۊS[���k�گ�km3��\gr��f�,J��W[燷�@<]�g�#�h17�+�Z�}�
�>�k��~���{��"�a�\��Jr��)�&ze%��������zr��EϏ>Wm��f�[7d{S������vA�8�C�� �i5�v����7��n�Wo^�ʝ}��i;�r7]L7y��yN�ʬNwck�ri>�s�Ѩ�J�c�rnj����Y�&�Y������G}Tkm�A��i2%�(O�l�ʈ���i��yIp�����qN��p�a�1�E���&]�����H_α�����BD�ʜ�il�{*�o6FN�s�-�|��د]k�:w�/O�h̬@f��,78f���|��xm�]��Ⱦi/]�\��W&��|ݵ�T�Ĥd���C>{s�]v�����WgE	�9���:�]\eFK�v�~ڻI��	�fH�OVny!
;,)�̜Đy�\���Gn�7�0�0�
�I�h@XW�P���%���0��W`"WS��+wa��rpQ	�>Tx"����T ph�.�zK܍�\S9h�<�8ҧ��
�>$̑���L�������\s��"bs�IW��\�9�;�����{�g�?G�V]I-[��5c��f�6��q���s�N^w�����6a"W}�@�\��>,�	�8��s�nL��6:�C[�Q/�_ʟ�Y�|&�v��&�u�3{kms��Y?u$��-ˇ��C̟~�V851ay�K�Cie�qaP�ۥ�ω������]Wc��GS)g�p�4~�Z�<�}LV�PΟ��G���=�����3H|�v���3Mn�Qo~zJ<L)��]�a��~���������
$6{���|8�>���K/��9xAR��e_��/E�˫pM�zXw�[��udN�p�5��d��c���@om�R��%��w�)0Dt�[�*�-[�b�����!�K}HYD<��X���\�9@�qtE:ȃ�ÂB�+�(���%�P��ro
�)�T�$)����X&cM�t�'�$��]`1o��1<<Έ+���ܽ�'�����-L�b]
Xr���[n�A�� _���,@�=�2�_g��l�]PM��x_��/)�2�Jy�c���8㧣NI^4����n��Ylк����:�E٪��{�~�#�~�Zk�j��Y�����e=1޸����Uw�>q�Unr]נ��O��̱�M*g��5Ȱ�����v��|oC~i�Wm~�`C�!0�� CV:��]�MZ�^&�Ǹ���w�Fz7���]j�#n���[|�@�,�W�j�s����LJm���=��m�}�}�|�!T�&B�R���3��=�)�m2�^_uK����A��V��j;�l
U?o�yL�:�B�(_�e�
���-+���M�ͥן."(�|r��~��uon��Nu
2\%���,%�Ls�ʌ�T����gU:��ż[�K�8N��y�	䄵�:(I �
4�8w��������]�Vb8<H���&�Rv�E�x���$kYz��C�`�����'�(L�L��݀k��ė�3�b2uM�ry wb����(�����v�A��%�Ն[~��W��A�n)"�i=�^���J����@��]�T��.�P`rwaE�	�
 �3�6
��*u8G[U�u����u�� `a�;�B��Z9`d�
i�*@��g��_��w���V@�������W���%i�����5�_?~�G�n���Ng5ܕ��rJ������VQz>�2ƶ)�qZ�ٽl�R��5����=��y֏�s��oF����W��2f�����}
�M��^4�V^��}���
�#�~S6z������1��]��U>��]��1����<���[�����?�O�4����Y��}�o�o��o��Bo�� {�/����#{m>���1��}���#گb���>8w�`bY��pѭ	PxP{�� �d�����
��5�[�xt�ÒŪʡ_�gH�O4/)�x�tw���NWI��;Ys�D����Yr�^ƒ�C�A�R�|H��UD�J�G�>����p0�󨓭/|L�'݄�W�7����R�uء�r�Kyv��sU��<�h٥��e�$��R��ϙ\���pd���w6�������~�&���'n�f�fq33���;2���4�u�n���1$߈$!�
�p���xrY)+ZI=�s��?3��y��Uu-��z}��Oh��x[l���F]M��m�� �s9��ZkӸY�7�K�>����N�`aac��x���ݎ���ݴ�nN��&�`g��C�־��Zp>}X��.�k��[��f�Ҽ���6��R�^֑e���Q��S��)����7�h涳���&2Kg�z��>���7WL���6X�L�������
�̟e�m'��h�c�9�,�u/�~m��̈1�4�-��A�
��On��O����q	�Oq9���5�g�>V��f�ܔفO3�$��B��f�h�?YyH�Kq3��p�YF�q���p�y���64�:��9z�
��ye&�<w1�c�����0|��!���8j�-H5�p�� M4��!D��s79� ��,@�L��L��b�L3w�Z�:FL��|	�B!�4)Շ�A�$W������=_`ȷ���.��Å$�̠�#�<ҽ� �U׀.�!a�z9�r�P��亖 H^U� �,Y0�e�<�Fm�Pq�����?z啿^������h'A�1/��@��~�.,u"\���,o�����$ԝ\�^LYM;H�Y��ԅ�.���m��i����J�,���et"n�X6�2-��X9��^��|��c�I�YV�s�1����ثv'��B<��}N��8=w#�r�-�m��i
��0~�Zπ�-z�t/�v��:�pq��]�vi���o��#�ܖ�qE�K=U�*-�ٲ����}��լ���F�c�����~����5�q�*��j�G����o�����C��2>�������Q`�@	����X!�:���Qѥ ����Rud�A�[W�[Լ�+M�`M�5��,G��*hh�=ܥ&y���-R��u+��
y�W2������Q�rY��8�2����m��|]˚C���%��9_t��rD�
� e7�cN�7NC�2C��K��9��4���������qU/*<�K�]f��g�R,K�;��fم�eM�T��JlT�|���򜗜�P
����q,{ٖ���*e�Jړ���g{�k���Q	Y�7��ͥ͝����疛m}o�2�[I���,&t+�$GY&>����5�����}U�d]���e>�KI�������EzDݥ�m���w/��L���Ի�U71k3ַn+�on�^�MgS�ks^����dM���M��.���ܥ�R�� �N�z����ԟ��y�ɸ�����K��5k�/�^���r}ܚ��L)��Z���:�:���[=g���C�p����F��_����W�F�����7 m�ڄ���MXG͍
�<���4���D���ؐ�z��	�h���|�	b��c�/�9�MKD�SM�03��:q�_�ԺFJ
a�h�k����AhB4BT�x�"�(<{�!�)�}��>�q
��_����s���~❾ԇ�zr?LD=L�]vaE^ּ���{uD>v9�5�b	�&�DL�s�-5��L��	�.���L�uN}7��D��|�;W޿�0�Ҏ�#	�*�H{�Q�\c �=4���!�!����C�f )�I�d���f_.�`�9�Ї>t�q�L��̓h��
@�p?\�K��}hQ���ء@��3�
%�珹r�]�����L�;�A]�9z\F(s�c�0�n�!!�k�rD�B{.Dp�� �ߛ��-0��@'�>>�rqE��NG��媋+UZޑqN;�K��x��5���N����JPһ�rr؝3N�2��$p]�U�+�/k��~���w<Q�mc������<���{�ՋR�-"��N��md�K�ݴmN-�$$^7�c�Z�sy�s��J����h�{_��ӽ�֗���0�ZK�]��#X����q�[����b�vJ�m��!�E;��^����xl��=��u��i��6׿+�߶�߼���ެ��������:�㟞�>�������O÷b�����f����zxz��F�=_%�7�Iϛ�-��t~}<��<���e����>�`��9�3$�)�u��@��Q.�S�k�釣}�g�O�zT9�?�ciɘ=��|�\{����_�UV$��U��Z�@ ��5�.R���&�zZ#��!�P-D�x�r@���.��p�!zI	�%Z�$�O�o
�N�X�@C.kޭ��UW��".�tM}Y�b��Q�)ֻ��п����o���s���:8M�QӢ��\DJV���%��A��wC�{@v��_Ż8_�-@��Aܽ���s���\�L��J��
�!`��ru��,2���7u�_狣��[5��Yŏʊc�����������V<wq�&*�騟����wY�A(���p��x�P��*�W2���SN_�v%����ޮ]�$s!%`�Kޓ�	PݕW���(d8Ay����%wS;�'��a�?�A�V����7�vj-�����n���j^1n�|��
��M6�����s�tm���6�u�����,�N�^��Y��4Ow�I����&�Z�[&�������}��PQӜ�a6�hSӸ�c��H�?����䊋J�R�^���Gx|�k=�}���c�}���;��։�D��3�[�4���D�`d�V���0>��dɏ�v�g�o���4�T�*�
�9�@@��мp
"Y�a���Y�ď[j�H�9I�O�k��ƹ�ܪ���}���Pڋ qH)��V�"����t5��p�A��e�S�"�p�G�?L�Wf�-s߉�w�fQf�e�@`r��R��q3�4������旛��ٜ�|��#&Ku`�/�2��sm7��j����H´¤Q� �B���}�&�-up[�U�����%�_�s,
=��q���K��E��3v ����y��W�z��#���C/�E��
���AB��]G��!IuTH�A���9(A0B�XdH�A��;]�3���Xo�w�sw3�؎r0H�]J�<,E4��A���K�#�
��p/�Q���r�I�< j�+�H=ߓ%�j7��y?����<�P�w�J(K����������p(�]L3��֛������1	�i7nSo��]sr�6�*kFGݴ�w��Dq��"Ks�¥h1�k�|�!�>�H���w�{�t&��w��v���m��Ş�Y�z��ymm
J�
��{Iާ�}>N�֝�i��m�ʬ	(j�a�-�<���q]�@��ϙ����8�X��,{������+���
�g�,�\��gIQ�=������
����K,��=��2�*
r�H�����u���h�j����t�7��q�j�� Whh���O��WΡ]T�	���}�E��iO4�[w���`
y��/��x!k�@h@�����Dҷ[{��p�ڕ<�\�!
N?�A�B�R�z�X����9�h�x��ix4�xb��J+hp���!a�R��D06���D�ˊ#�6)\�����j>�3⃨�k�$@6�hD夯_��ဈ�8��>r�A��c8�eG�5
l�h��:�<�xW�K��ղ���a��*U.^����� ����2����S���~�${������4&`LO&{j�a�([�8�H!ciR�T��)��|��Y܅��t9����|�V�GL��xk�ۭ���,�ˊ�+�"˲Z[��d��ߘ����W���]�S= ������.����mFoյL��ˊ���<���'��ZRN����1��M�t��M��N@�w�P���);��F�`�,�SJ�>�J#͡x��f<����M�`������c��񱶹�:*�����z
V&���j>9_�Z���W�
�oޯkh̴�	x�T����>6߾�/�"�i4�C����>Uw����d!!3TBrR]�H��-�!��U#V�����5Gt��;��uG�th���d,�Rn�����^��Z�Y{Se����f�U0~0�nҼA����ٕi��I�%%1�C3la*V�t�G��$�h�t�s�厊zb�"���`e\�A">G��ZB���X�䰛�/�ƈ�A�zN�yp?�5U0x�#,����6Q�Y�[�'y��@�}�X,*�b�~�e���x^�7��%�0�r���0��'&����ea»5�dmV ���+����~0�0|`�_#�X��4�p7C_��7~�Ѹ�Z�A�-
��= l�X;	V2B���G��-�̀���눱������}Ί������(�V��z6xaI�h%A�&Yr��K��b��>%�[�`:�W�C�[n�soy����y����*>�w���{�)�Ɨ�\������W~��{��ۤv���=Ny��_W�4���i���Z�)��	�F�`u7cD�����N����[Z�y~��ov�=�����(U0�\�&��,%��y]���i�4�Ϥ��V����G�Nu��^���gd�K|��,�����
���|�΄1�a���M�����5� H��m�u2��/�(�[��iը��v���4�\W�~����=�}�V��'�0��X~������tg�4�AkR5��h�:��9�Y=��n��zj��A�����.G�f�Nm;��nl��:/��u�j�s�H��tVZ�_�b�_ܲP����R��E��1�w�
 a�[����[�t����g���o���-�6���ۭ|�o8�8 �Q�]������0����瀥(m(ŏ���O�?�U�;µg(Â���?'�unO��+��8��{�7Se��#`z]�P_r)E]���5eL�;�0�A�����и%��W[� T�Φ��}�̣A?ˊ�[y�?�
����A����g�?,N��)����	���.m����(bA�G<�^�2�5In�o�o���G_?3�/#��z��x(��%�落R<ӳ���3�լ���o���q�w����X���/�Y:
|���s
ejuc5��(����V��X�1��\������b��|M?&墨���$��1y��ܟ�?{=���v�tx�py�+��,���\���t��<F4�́�>�Y�s�/��yY��Y����-&��&⺟'�ߔ������l/~�����_��$�@���	�R�����l6��usУM�z��z��n:O��?��ML��E(w�j���V��n=�4���}��K��o�Y�Y�"C/�
�����^V����J#�]ʅ�&@d2_��1W�|�Γ�-G4�������y0o!�9��gA�'�L����YO��Z�~�M{��ND��`�ނ�ɧ�,F<�ط�����1I�A�D8퓕��9ȸ'��q��C�C�IL�8��|����)y����	U3܂��)��~o�����ρ'U�fƽ���210n�.iMe���c5N��s@D�����@�n-��az���T�p�����"ɵ��g���f'C+���@
���ee�0��O�h�)�%̹�A�X�[Fp�:���K�}M+�'c�/Z��[����<&J�6&�H�
����b�d(���z&L�r�\q7���fܗ����� ���SO`��4L/�P��MX��coB�1���+N��Y��"@�-�Z��N�������S���Ү�׾���ʫ//����W^-/��ڹ�h��V���/��y�����.���?���AH|��3!׭è[O`D9��9��1��%�׌�}����<H��V }�x�t�-aꝦ�t7h���%׹t�����N��ZN�`���B�kҮ��߹��u�<<�>�Wvu

�㩤��>�G;��x<���5ww=�Ǽ�����r����ʟ���EJzgn����|,����zl�e)cN�
�c~y�X븇��_��9������w~��o���C w�H�b�s�@�-P�-"<�8G�/�.��2�Ex.�6XHj?%)�@�`��.y�(L�Gk�f�Pz��kޢ;r�s�Cto8d�
8��)�/�U�P��E_�"@�wp��*��$@)G
���9Y�@�d�de� �Sh;��!@C��Dˊ��<b~�Gq=ԏ�i�k��-�?��;�C<ȹ�����#.����һ���K�Fr�GDqB����zUO�{
 �B�u�D����?2�6�˔2_ǻ�s)�bR�k9��ן��qgqB��v�ef���e���K��$H���g|�>���y�v9���4�݊5��A`('``9n�L��Aȕ.Ɍ$��}K%W�K�Z�?��iL�YYx�NU6����q�#��9���c>e[�9Cs�`J�ͥ���L岗�)�:wP��*���"�sP�m��/�Ň>�m}�2�]�c�_�1v�+����'�y�X;0���i��l��~���9�3ڕؤ,��@Ug�d�Ł
�o
zl��j5a��|/�'SLm�q/����p@#��iT���f������'{ �D��%�W?@-���[�3���ʶ����ƍ�/��[�{�g���S*��3ĉ�hD�3��-72�=�q{�1K[̆�1=
N��	��r�?7���+Ɖ�h��љ��4��(xP@H�aT�p�\eb$,Ġ���<x�W�<X��ڀUL��9����+`&	Ɲߐ~�[ZA���J��u�1=ԏ3�D<��.�k�z�+�8�'$РN���ښ�Ɣ�C�E��8��w��A�J�4�S[����q5�vb�p�a]��pk-�b��E�3%B��}#�BqQ��[��>H��������{j���X~��K�����Ro,ݺ�<����>P��������~��(h��_���*���5�e��1�v��Ώ��D��٤jC&z6��5�2�X��S��6v�#𨱕���;�rJ_JN����Y�Kcg��9+G�B��Q@mej��pWA���hp>�iN>��z�ӓ7�}�8�u��^E��b��W�N�.��C�A�~��ơ�Y<_�}�{��o�e[��˽�&O.�ǟ��{<���H����Ѡ��&��	R~6~�������ŏ؊���l���-A$�x��^z��^ϟ�ce��e�kX���T�oҗ���&���C��!JR p�H%�R �:#R:�* ����PO���/�A�g{s��k\[9]��2�&D�����1D눮�B�'�@���Z��}��
h;vP����{@u<�.}��Ӕ$�~���
:��؜:���܁՗�G���`K�����3��������:�0���8�q)1~oE</�4�YspbKY���|f��۹U��3�ԙ�t7X�W+��߉��3S"�n�2�q��+.~�����<���Yr$�-Z��dP�3��{�}n[@ԏ�u\�x�iIIV�e-3[�
���-�er3�{c�::JJ�y[�/L�7��m�Y�Y����8�]V@�2�m�h�.��~��n G�w�y���T�ɷ]~�҃�*�a֮��몙P@/u9����j�T�_���ː�0���6�S��[��h��1J�)�(��:�?�[��Y������1T�v�ȾG��� W�/%;_���?���~�a�I���զ��>L7=���䛦�[��:~x�y��D�	��ĉ��:$wSq��h�d檠h��fߣ�`\c��-E\8����c���6bs$A`b'�\(����P���rb �5�h/��y�+�S�����vH�JLE��K�١s���!
0���Q=���P�q
'FL�H�L	f�<1.���%`�[l��p��]Ny0Ҭs��ɗ�e���OL��N��g�K;i�q͑�8����	pb\[�ZA~�;=8G� �	3M#��w���?�i?w�6v� �|�R��B��#d��k^�뉮]�<���@�X�!t@��D.1��^�k�cwȵF�VXaHsUN%1+���)h����1�u_���^{�Ҳ��0�v�7G��A�[�H��}�����ʋ��Q~��+��w�邽[]�zL�!=P��V�|����k����<�я�O}�e&�/!����~f���3�eT+קfC����������y�Fip�֋�Β��'�E�%�קr�z��x����u�]z/m��?�G�1cX��-�O�z��j�����'[�d����č���-С�1;Ư� ���?���o~��=l%��z����4_"��g�x��ߍ�g��c]�o��8>�����:n��
�>�ݻ�6��ю��n��X4;?T�j�7{=�1H|�:���1Xv��\=]Q���x7�D�����th����\ŷfp4��>ͽ���2��mrM��o�eV���d�>�U!{`{
�t��k"i?�v��O@t�P��S���{l��SuH��c>��.��,�'���@��/ט�\���ߢp!��QΡU9�e��G
 �q�:݃���#�)C�
}���+�$W*Q¢��:�M�����X(h�\rAO:�)����Tִ���.]�0����j$\b��R�Q�!W�JX&�
�u�pzY�����x�w����x|�"+����z�$�Ar�mO�w$��13 �O&�W�W����8��s���r�s����P�->R��Qo�ISLJ�ǵ���=��0�
=��s��f��
�
�.@��w@f`��2�j��Y��ʝ��HfRO�J���=���}%G�z
��
B�\�sԗꙬ�:��5�1V�����2!�muRo�g�K-s�_}�?��L��xÒ��Ќ���e�~]�qU�G�ӽx�D{�v�w9��ʤ�6�o��R��4O��9Km�E��yN���lVg����z��~�b6���YoF�ۄFV=��~�g>��:���4�1V���́
������X7���<�x��u�>t}�Fk;5��y%Yc�}�rMu]���6D6U��:&R^v�ё�P9�妱�C}�j��~H*����&�$wK�>V�S��\U*�\�lh�,..�E��M�t�����$O��5�fR΀���̘���iq&t�VJf�3y�vQ����b�O>G�!��0����?I�X`��)�ȣ��bc�p7�CL+e��{��H=�]�O	�:�Jw\�k'f-A�S_��Ȗ�Jn d��0C��3�Y���I��4�\Pɺ#'�ri!MPY�`�!����>��������`�������	Fd�q?�҂�#�� `���J��<X~�W	WWZgړ>h�{�n���k_.���V��e]�ҋ]$�����s�Z����w�?{�|�O�Gy�������{�}�/|�|��G�?[�}o��`�]�(������KA4��׵�.�֠[�w�|���>�	�i_<�JV=\���u����I���M8-�Tw�1G�]�㉸���>������m�H���c`�᚟K�ۿ���$@����Y�]�,����צ�	���x�^��0u9y�n��J];,<>^�d�o=�{kGW\�H�9�b��)�<��Q�}��;�o��<��:��Q��#*!#�խE��=�K������5��z�0�,�۸��;o���o��C�+`Ʋ�u:R���k����õ��l8�ƫ�:�?��s�%����^��x����Z���r��h���RrU)%
͋#4��q�S�͕�;��Z����}:�$���$K]h=���9J,������m�J�d�W����J��O���� n�,W���q��,��YQ��[l��ןY��83�_}������	�p��~X�s̖�3�v�"K<)��X�b�Cn�t�mT�4S����ֈIr�R1<�U�ڸ+�����u�=�Rvsu�>e
"�w������v�y� e�>2\�1�cҶ���,"mѐٍ��K�>�}�dK^�����oK�6�p��Y���RΔ���c�匶��_�W���)���e�����כ[w��.�i�_��űn0��u��N鮅�5�M�A�kBg��ڂb������Ic6�K��y��,o�RڇJ�G�5Ò���j�j�}�#�?��ʭ��n�(� �9�9�Q5v�o���7�^)	����
�y��W2�L�>�F��^�@�=������P�|��r������$7Q���0��7�Y��Xt7��y0m�˜�!w�R�Vq�ωOOҺq"34j�z*�n��� ��4}f@����l4���Ԯ���(Kf�UZI�<|axw��$��a8�C��f��,���Ubz�Nmat0����?�������Xp�m0[�LVXn��R����aǑr?\`	���SP�:�I�$��&`4�}4���U�5`re�A�R�Q�0�0�</r�@]�amͅ<�\+X_ȝ��+%�#��5=��G�RD�����yH`�B���E���K�8�p���ц?���D�! k� �@�9�r�A��w�[���o0u�pD�#�W�ǹ�W���^W���Xюڵc�����
���8��i�
\)�sb������o���.����w:@	V��ȇ�W�������,%4�yb^|�եퟖ���Qdz����$N��ͥ����$�e��c�?���u�P)�AG�ֺ)p���uC���V2�G��!�L��+5�ٵ�8[k�/:��tb!����櫾�5�4�K��j��Z���[r�q=��y�ɧ���P�x��=��"��=C=���-Wo�[K��;�t?���^`��ܗ>���g>{l��/���.����!�_���o�T��>v��C�����_,�~�ܛy����_
��Pn]�S���G������+"a�>^�ۥe�b�F'2��g��T��g�)�<�QЗ.俧��W�.�>����o��6��\�{����={jk��������LV���ӟ�Ty���.�?�p��ӟ.�>�t���{���~�\����G?�x��g�*��{�<��'�S�|�\ݺU��g��>�X���W�>P>��g�g�~f.>T���G�o��g>S>���g�z�|r��g�N�x���zޱ��
=����xnq[vk)�O1V�)�7{
��Rk�ঀ��S
���{_߷��(�@��Pt�B�}W{��(c̳5о�=��K)�?��6����z�/��`���9-
�A[��!�{rs�!�Yz8�E��<�U��䖼���%��E9tt�hNb�p��Q��de+�~�ӏ�	M�$T��J����>>��]�9m���C����(�!��U{����u�x�D�70���r��>�M��H���Zѷ�	�Pߏ�`I��/��
&�{ew��X�L}e^��븋�\�o�/�ٓbe�c�]]��:�37U�����k~�L�Ox~Sn�j����S��F�r�٘ˊU���R�1r��8�4��[*�ZT��Q��q����X#��}X����wW�M���&⿣xN�U\���^.:k"���ޅ�o\G�*vJ�ӊ�<����H�4�#�o��z[�l̺f��mݰ$��˝�w��k�]��i�0�˕��	�V/ ��l��>����Y��Y_��hZ7?z�����J�J�{�u��e9��/���*҇1�}���V���SZ?��LfFO3<O�fV(#�-��k�ئ�d�mA��`�<��)]��	'"@����
8q�	YCx�k�"H@���U�C���Z���j��@��DGYxX�Q΅�܌��!����̷�k�PV{_�D�#�Z��Os?կ!�Ed�m&�e�.FSr1Һrk��^י	�[u�ب,ב�`��\���`�Q��p%Č!�4�/�e�H���?z�.���ǕK+1����S4�E�u��*�<��%TU��$h�ɭ�0̸�\�1�$|D�\�`��S�9L=}���O�� ��`��e݁�A}Jx@���� Ҭ��Qp+E�H�U�qW� �˽\���,E�#a��<w:�����J���傒��=�ڃvh������}��r�NzW)c���Cp$�Gٹ�.I:K� �P:��"�+o�S>���ʛo�c���ʫo�Q���*~y>U�O=
����Uy�E��O�
�cHN��.���6�f��:����o��+�9���������)�l�J7Y��3p]�bĥh<�U�qW:�k�x��ʓ�=V>��#��py��ϖ�}�����\��"�_x�|�s�/���'ʗ!����"��Ƕ8��<��å]���#�?�Hy擟.���g�^�.O}�q)O|��'�(�>��	Tsʰ�Η/�[{��;o�7^�|�O-�����O|�|��E�����O�<����>�ly��ϔ}���yj�{����g�,�{���}W����?��?,?z�����Mx�3O��?�x��?���>[�X��s˸O>����O?U>�|s��.��'>���0�������s�Ƅ[���z�ŗ˛?[���x������G?�ay�]$�[˲��#������[~��K����>��u(��Rg���x����|����k垫]y���!�}��{n-�~U��W彥f���${ Y�-��r:�=��,,؛��졻�r�x*@}h"�5��_��W;�Hzh<���
v�ţ�
���R�C���4�
��ԞM����/�ZE��e�\g��+�د��4
kC�,<��?@��\��C�U'4�ʰ��#��N7�"�H���HH��9yЁr��b{З,51��|�5�E�RW
-r�ʵ�g�E�A�BG��U�Ɲv�X_��W���>����E�f����Y)�e�[�@��,���u�?�
��Z�ک/��*�4�!dW\�z�t�x&��,?�+����y����sP�4���A����k�ه�y�f�E�`I���Q�-���J׮LHBΐ�L��ߟ�q�_Iʊ�U6�I(56]{�,_�����f�fd�����RF�P�{��D4�d:��P���H���^�b���;�������o�����do��ݐ���M�_5@%� W2�$Wm�o�1�D��3o:�S��d���,W�������hk���$���B���=��9��;�ٵ�\��>n�W�o�6�Vq��!��&{��8p���)���-��qm��鞍��s�%n�L��)enf��Ze�����}���1��_Q/gNx�7sE���-)��D��7u"�^ Ǭ�g�����L��A�}r��Y�LY�@�5�]@����(��Y�4]@�F~���9p�=��Ʉ��XYf(��9�*_m<h^��}$��>����ͱ=OG'�1!�����w+�rY��ׯ�څ�<`�n�Tƹ7Q׵�Ŕ�x1,O`Qu�*�P�\�@�\�.�b��cG9��%U��r�S�H@�Ј;h=pE �V�&�-��7���Yu�BI�̳VavͰ���u�n(d����Ep���B����A��f
��E��r�m�����+�\Q_�	?N ����$<c�g�c@-@	]�M�"��%ʃ�������
0��H��2�X"�G9���Ѹ��:я�^ޥ����B�����ѯ��.�:�{֧��<��O�?{����|~����U�]~��o���{��������˟�ُ˭{����?���R��'Ъ���Z�����V����6��?��yRu�9�S��(G��v׻����\�(���=׷�:��	ҕ�'c����&����&�Kr_�XM}�sY�fL�K�K�|���"�f���'�E���R�ً/���z��G�,�-�O���r�W���g��?'�_|��E���G�k��p�����_\@�������O�>�xy�7�;�<\^~������_*W�HI�D��ru(y�c���jy�S�,9��/<_y�r��C�/��������|%>V޺]����GP��*o޾U^y����=p����W:_�z��q{�4~���)���/����?\�����_z��7o���R���ˇ����ή\���"\|h�'�(���ˇ�P�z���?z����6�M]�����G|�W�x	V1��@��c����:�����ݽ坟�^������I��>Tn��K�����/����7^)?�}Oy��{�+o�X{tK^�q��[ew�c������֛/�O>����7����?~�O��˷�|�O��ݿ�\Z��W��-�~�c�c]+������_|���;4�g�%U>��>��Uc/���y�X���J���!F�sz���O�0z������x�kI\J���}����!V#R�P�����
�ι�`ɭ& 	4�V�sjN�0���T�⊤���D_q
M/ϕ_��P@u�5傔s�`��4��J���]`Śt��]x,h]�$���elh����cAK�FK�.󢮻�Rl��U�����Y�܄�Ϯ���ܜ<�79h:����"�r����J�g�6����LY�~݂�+Ia���x���8�+���+�����z�\i�ٽ#��PN�
@����|�<��]YbdW�We~=K�d���$OY�R�͕�]�͸�3�=꣄L�ݐ�k��W#��L.��t?�4�D6�n���g\I �����+���?F��_�U�r3�ߐ����SXU���L6Z&���O��������ʝ��t1����Z��ܶ��$�
@d����q�/�����͹����1��#��c�?h��Q}�5r�G�?b30BU�������K�=�9J=�8�,�_r<��\�?�@��7>���r�tK)��Xi?1��o�y�4#f}���ӂU��uWċ�Su�vF��}��@|�#�[v9iE,�6�cTn��[\��� ү�Pʁ�D+x.'��r����m��K
��w�|Ox(v��0(�wAL�7<9h�rL�a�<�"�
�0qw�1��K�� �_s.��}s�s�b0|Rq6<�(��2��x��{Y���L�ظ�
s++�W[��>��ʙt1�0�E�Pw
D�D�1�"�#�8���S0����Y$Nr��@�_��Wz=,5r|���1��Ђ���߿��S�p��D��x��$�>��>���/��}�
	�r��s��+,?��?����W��+�V�e��Y~8�O>���/�������kd�G��䗾V����/}�����/����~X��������U�}���/�d�pb�8c>�Ƭ���孔�k���4�ģ_4h�h��Zof1�A��9(��m�f�=6�?ryp,?� Ѿ�\�6��.�E�C�>V^|�O�#�}��޽Q>�ǖ�������z�<��9�Py��F����_{���C8��X����_X�Ï�{��ཻ���-��c���/?_>�أ�
�O^}�<��?�ɋ��v(~'Z���W,��g>�xy�go���Yyb��O^}�<|��~Z>�����@����x��O~����8������0sy����a����{|�-�'�X����;�<���-���{�-�wo9��vy��ko������� �h_�w�X�q8�������������i�9l�m�u���ʫ�=�x��W�G>�X���{��W
��>T~聲���~a{ky�'ϗ�?��������KE�-��G0�;?+�.uz�zpě�<��/��.k��?;�=�t<f|�CY�U{�]ܮܝ�$���������o�F����w��h�����(�Q@� �b,`E�]��%{�ba�cc�؇��U؋���A�	�9����>�x���/�%��&�䴒�)cd�G��Z�#�t�h'� ����Nt(t��Kh>�(]4��Aԇ�w@�.��]��~�IV�ڋ�%���*��h�[���U��
�&�
W&rPC}�7����_���~�;@�C�;�A�k<�+J�h� �x�;�1�9�"[|��M�y��1>t�]`��[N��I^�8���z�+)��)0�w��g#H��2���PY��:8�?���T&�<xT�ǭ<R�0��?��c&��f&K�s��8��*�'@�_��k�ϲ$�����y�>gR�ռ�D��e\�WL�?���;����g}��='�%��L��A�3�͡x��Mkmsc&��y��'�Z�<fG����M����y�]bl=�[kjC��*�ƞի�IK��M�e���L"�`l���y6�ه��o�e�v޵�U@C.�m���\���O�3(whX����xy�m���z�[0-%����@�>L7U�ctl�,N 8����'\D�d��:���r�l�u��j���-cs+;2��V~�H�qk��Nu�4�~�p�`h�@y����>����[h�e��-m,��Rf�V[m=�7��$02�3�@�SEr�G�L4Y_H���S �k�	x�
̞|#K[O��5�@m����F������ba8��(��]���r� ��<?�P��9����"Dž��D(u��
�f����/�B@4-I��@p�<[�!Lp-M���W����~�-�>�S$�B
aPg�7#�mn�A�E�qMV�K��y��K�#ig���]-��m�ہ������ڏ_}�W˻L��{���?Uo�U~�K�EhGz�˿�������|����k����{�޺*>x_��}���?�Xi��_������u�:����1M><\P�n�VtZ�3p���FJ3z�?����^�1m6�Ih��MN��z����8^�4����c����w�^<JQ��6��d��^�rͮs�s?���S�
����-�m�o�F�>�C�㞥~@�˼��.����������x_o���̹҉V.�w����X������!,j�i)w�>��'�_��ؖ�S@�]1 cס��F��>�x�яKvZMڈ�Vn��1��igc���ҭT\_v�"}�kҚo�Z�>�8�2k�~�"���C�}��>w�;˩���B��ƿ�o�[���"	����S�^�C8���*��ٚ1\]�f��+�i�E�c�R,��w��uk���~~��p���&��!ԯ�X���V�t�C�\�-��oڥ���}�kE�'rc��#�%ƚ܎�.s���l�݇� }�C�B'�5�ddQ��*Λ+�POG{z�-��K)��v��2@��2~�{�G���JC����׵�Y�����t^���byp'Y�q�xO3y)�ͬ�I��>�
�H��o���O�����9��2�~Δg|���#��������X�￑�$��*���8 Y���x��[��ؒ�P.@��^L�j��i�n�X��v>���m=Y����c���k�w5V������f�ʬM���y-�Me�3o��l�e�7����p��ջ�ǻJwcx�a���4\�/�|�!�:��X�A�s�
������C1�{�0ͱ��ǩ}�5w��{j�^�?����`��~�;�X	�G;��[�����>��)&W��S��1������o��ZQ��:��h���dY�5�ke"�c?q=E���-�'F�>�\&"��\D���x��y�����w��f��~����;�sd#�r�EQ'�<e
v�"B@�BQ.��7��A�1
 H&�8�0q:��d���	� #�4�nߚ�>};߳S�]��_�v=��~�;�q���S��v�[�So��]�ň��`��52��(�e�������殿��r�~`R=*`��<b@#k?w7h���v}l�ձ�e�"�\���sV��<4��u���b����B��6�n~�Xr�HHQ[\�%���C}Q�K��K}ݑ@"a��r��H��%xQ'��nE�!a�c�2_	� �F›��>�X�5S�p0�S�?���GOd��O��YjH�
E}����2	�;$(���5��$h��!���;D�zv��r@@��
� y��,d��"`�d�$��U�_φx�"��"�-:IX�y/}��뛎�D�(8x��~W��LJ)KX/"�u�.��5�+X��%��.#�h���!�u�
_�8R�����X������{����|���+�|����.
��ʗ�?��+_,�?��i�ߖ��\k�xQ�������H�Ї?\����?�b�髡g��]�����u�_9�����+#/z;
$^��Mݼ�y���yIr�q;>����nsv�=���w߬�>OJ�}��U�&_��o,�o����@��혢���2����x}��xG	�%��	|hX�\����aK��E��e����`�x�ָ�W�ECҨ������{�����X�@�$1~����]Su�'Y��7���v=��U�s^]i�L@��F�y���j��20^;�A�z��x��o�S���
�c��~z�^�_��:Q8����^�;U2�s*��|��\���6r̔6��/�ȃd���|���!�Ck��y�V�Z�^	��k���^EN�η���Iy,ʫC����
ߨ�T��L룎vp�����9�BWe�����܄�f���XO���M#��r��p҅��O����D�v ����{�
��	9D�N|(��_�_� \)�
ŧ��M���V����G`}-��Hpct�"�1����窾�x?C6��\�J��o�����+>�r�[�%��^$�:v�_m�w~^�~%�h���c�w<�:������e9���A�s��<gI�G�Q��.�`��@qU�\�c������T�U������w�r]�w]	��`�,:�����Q�ܽ3����rl��4|C�az�Qc�LԵP����3��գ?8�Ɠ��q���fL;��O�&�;�o�+��ktA�����{���M�u���Wi-����3�;ݥ�j����������[=�ƚZ�s�݃?궘`�ߡ��3lyl���Q�L�\nͫ��'���t��^P�ջ�m��s������@	���F��v�ٜ��t~Q�]�$è�A�j��6���)�>w��v�^�8��.��6C�-��ދ�`�|�D�?��7�[	0�{N��_#S���h�,aZbA���PT�1��e���EXr�˘g�5R��<�������,�9�׼��sn�0$�V���1k/�D*;�(�6��x����RXGA�N�-�Hލ۹���1}9�Œؿ�ca��_$�R�"K8�cYv�rX)<?ث6�4,��� �{s�%|�?�^ֹ�V���n]��/�����ͅZ� �zЭ	�@H<7f!^a�U�RI�@	�	(�R���vP]�Y���I�EXf�o��P�날���Dʑ��NR�(����\�=?G�X�H٣����EB�i�Å8���g�E-u�wWm���BU 	Ǫ���/��V��w���N�?H��ƥ|�r�?����?W�����/|�K]�ւ^�R�ӓ�w}���/�v����|��o�J�t���W}FN�:O�|���z����1����:?mL�}�/�nߏ��n�mv�eZ~'�����h���.mf�5G9f}�Yӗ{y�{P��o5��_��
0��/�̵�ǿɗ���0㐀�k�g���e�w�w���[=+����+�1
�h��]���pZ��������7��ۣ�짻�XT��C�+�D�<�"�������ʢ<��@ԅwP�β���Ã�=ᮖ�t�J��G?���k-c��k�{~��Q�I��tO�^�#R�F��	"PC���d^$;@��w�P<E������(���^a��7*m�g0�p�S��L�oX�^���5<F�ᑽ:t�:���ȹD�1�_W����k�6*Ԁ���{yN|��
�pW�_'of�䲣�"�陧��v���0��
��<��,�m���+r�%�γ|F>ڝ�L�o��UN�+�!��{p�0�iԮfYνA��EF���y�3J�v�"��Йw�_���_{t�ޞ}�H�����1����$4U�uЯ�gn9\���#�r�d=�,?ȣ�-�k���/��3�K9xx���jԷ���Z#�/}L�u��{��owO6߃�3�#��3��?�Lu�e��v׼��ޞG�G�\�����򚞤�7��eUC�ij#_�6�G��CS�	��vۼ<v/��W7�qD��-���^2��~l���[}���m<>4ԫ��_�W�pkm��+�*����6��/*W���tDݾ�ip�@�2h��[R��=5�2��-*�!��
�{�͜(�́�Sea=S�c�f���*B�l01��`�,DR�-t.�ʽK�P?x[�U	������1�&��Axcx~�K��1�ڢ��աcV��?��s�qe�Ɂ�FNDι{|�y�n�b��Z�qء�:w�s�9�&��8�D.r;�s����^����8ܐ��9�"G��aMG?*�"M@ž�N{ʱ,S]	t�M�J{V@�a���IF��	?Ÿj'�;%W=�ؠ
�0aɰ�]{E��c������+��~���;���;�Q{]S;,1i�J�E�!�+�,e���E��c����B�M�!���!��p����s�v�:�Z)��W�׹�(!�GcKQ���?�Q�e!K}�K�ĵf�����B�0ϡz� z'3��?�G������y� ���E���=�������������#�](^_5�:���7����A�c���ͭw^����w���ZyנKE�~,�����������׆�"�6�oe{?;nQ�Rk�9ю���&�J���X�Ô����:�nn<��ff��ڢ���0��J�kҌ��� �s�$n��5Jk}����{��Cu2?�7I���J|��Xu�'T��
5����8T�I�e���ڋOP~0�q�16Շ�!o�x�Hn��g�C��xeEth/��C�A���y��3W���ϓ'�xK���yC~�1����מI�g���^#���1|4������/kh�:2��['�Vs�~�w���5�����u-�w������o~/�/���yD��\���A����2<�����5&}���S�L�H��!��ȧ_s�j��C`��At�/(���BVl����P�r��8ױdݜ4���|����`	`R��
$�\�.���ϵ��c�\�$��@���s@/�Ɯq��;"Z��yw8�g��{o<F4
���ƯD���]z#�1�{�-�*�G��z��Qof:��\�Y�2�WI̅��؛��㸄�����g��oԩ��
���ޔ5���2�qwo\k���)�P'�U���ݏ���CM�⳺��^?���KT���M���֝!z�H��G�>�?B����v%��	Z\E�����)2={fg�sYz^�w�{�<�{\do(ykL���Qm�_�A���=*<V��s=>w��X���8	q���,�v�h䘚^�da�.(<?f��R|�{��A[?ݲV�93<�8��*��nys�>i����c�Zy͖<n���w�I������*/ͯ_c�k��!@`R��PHT�-�܂Bp!O�'/tp�so�uρ�`��3��ڸw��)�CCe�$�y�p	��:�wxtvpA¨@���z��p�AW�Ci aY��I �XzeI(+;�uM��)��cV���pO�k��{l�)�Ǣ�`�����w��B�	
_�}�B�p))�g��N����'9;���}`)�zX�B�K<q�ې���X���q
�`el�/�)��g��"��+d�,b=O������ŭ�S{_�����~�׿�w(Ӎ�~���.DZ��������7����o���_����_�j�bj�}�,��y��yy(���o�_�W�_��7�1.O���l�98@m/O3~�w��<��^{ޭ�콬��ˍ���b�M��Q;!{�ҍ�V��c߯��}?ky\76�2�$Vvs�36������SW�G��|O��}.���y�0f�w�^��üo~5�	)�7��-�r�Ѷ�`��g��}��}P���'��8S���=�U��d)_����oT���n�ڪ�u���9(���#?�����]���h�Y��e��.��A_:�z�:��愊R9JKB8f�=)r�tr}�cCޗx|H���da�ƺ�w�ͻ����q�����9=�;T{��˨�,9�@�Z�&�Z����ē�{>�'-�<_���
 Q?��EyN6�����c�2��u�muݯ������=FT����Cca$�74e��N�1����$��3�3�?��^$^.�߽�=�H2���\�,� F�����`��;�d��?�9<̛o��!b���]6���zV>��0���[��a}��\�&��:�<~��~"�q�n%��n���3�LI��v�6�?�@��
���>i7>}G�m�=��|�g:3�hm�ZRl�+�ն��'H���^R���9�Kk��ٔ<���1^)��Ym����}��7��3ٲ��=����^{xܠ:���/���D1��>vʑ[shD��چl���b�9������f�w���лT��*v��>��Adۄ�v07��:��]�ԍ*S\�}�ט��/-:w׽G�� �"�G,J�E��l��gX��YcN�\{�ш�އ6�ݱ|,4AO6>k ���k��9��q4T�G����d/��Y�}8��Z��j���21yn�x��R젞�b.���X⡑����Ó�Q�2���zH�1�j����V�϶:�.@#���@��������Ji�cU!��q��:‚�ˢ
�J`Vfj�^~.��C{	?�,��� ���R_������[�-B�J�����~'�C��T��e�'R|f�˘�'ٸ�S;����]	��t�/��ffJ1��^ ��j	�($pc���u�,x�U��
%�5$�$�/`Fo�:v�AB�(�J	�,vh�<��	%��G>�p�P�w�j����`��Cu]��Kq��'R�����Ց�e�S#���Uw������e��+R����x������>�A�{�(I�n�]Q�,�g��U=p�2���&����?����s�]��h�P��w�)��?���������k�NX$�;�R��:)�f���?�~��!�;-�W@c�3"���~�Zr�������'^�W�{�d�i{���9����D;l��6�A)�o�N(1��ۘk�t���ŵ�	�/�+�_~�����ܯk��n���O���8n���뻺��z]��[���|�v���#�GZ7_%Zƽ�s�w�����4
���:>�*�9�Z��f���W�ǚ<�S_`��^a� >Tk-��)9����<���_���(<9����й�	́�`*��g�ε����s�\���#���z��P���$|���_1r������ӱxB�!�Y�����O!�.�)j�g�g���
~k���`P]�����ø»b�O,���V	�_,�GL�5����$�9O��:W]������O�9��r��x�x{�Z��Abt�&˽]�����c���ؐ�$W�ud5�uݼ�wFi^F{��;߮u�O��8��1���!Ґ_��˦�q$��d����Z���;��Iˣ�!�>t2hL!��S����(��D���=4���I�1t�9�����a�h�?ӕ@��|�pv���z,G��{y�ˢ�E���x��1=�{d��D�e}L����-��n�0&����'�����8m�EA~+rΏ4���CD��AL���Lw�.�Yt��t�|\_�7�]T}%�&^�����6��[mk�z���I3D���	��ٽP'�Y��*\�<oHۣ��{��j�i1׶n�D�G��aK��Y�>&�@�s>���3�v^���1�p}��������G���3��efU���bb2N��������ɔt�csR�rw�GN�5'�{�c��H�&r�����n9C\U/��&��a}cm`Zwcg!��rpx�l���`�ًq��O���	RR����W�[��V�WB�~,�t݅01�6�W�([�a�FO���՝�$F�	�j�c�&P�	����9���X��։�c���Ⱥ�q��|�w�A,=����e�s](	�	��$��C�B	Ҩ���� F7�E<oG���-TW����F,��)G^`*�
�"���;���t�(/^�#��~,dQj4)Ƅ���4�5�K���s)���]|͖rJ�PT�7�I<<f���⼞D��ʗ��Q�k��$�m�~St*�L���KZWP�E��L�����W{������D�{����o�?�{C����=��em�r�r�CC@��.���t�~���|2�_M ���y��"�d*�������p�ys�3?�Th�v�~����;�|W'�νNx�ߨk̼و�	��oO��ϭު�~_Ñ�f�ٳ����F�|��?���iε�,�=:䐧�d�ȿ��ס�G�Lt����{=�!I�*����2<6b.}=���ב'����j��ڬ:8�@]DZ~�{�x�xu�ē�+�Gc���y�1��{��k���O}�S
ώY�I�(�'s�����.������}�����Q�7�O)~��Wb��g	F#�s�>�{�(x�r���͙��t�-Ԗ�V� �?��<��g�
��1�Pױ{|��G������c�o���i�g�e)ʨ�э�f��z��d&�a@�Ht���KX�3���0��xȽ^�2q�옕g��
]����q�c��.����ӓ����r����;�^P���cČ6�
���)O�N��r���O�I�����6��!b	�n�zN7���!7��&�1�yf��N��S/�O���ޫ�{���P�����L��N����|��������'Ƞ�����R�Ü���3���d��"��L��r҇�����&0�ևׯS'������Z`r����RQ��qof�WJr^�MO�r�Tx9�F�W�-�u�K��Rd���J�����WG.�d�37٘Gu����A6�G�5_��S��ʽ5`(��Frw���
/��\ϯ��<:b��*ʆ0脂&�rՓ���e�	8����m}�<�AQv?�[;a�h���w!����K�d�~N$���	�KT��L�
�O$�C����{���&��ꫝ�
���*��ey�, �BoukCHmeH���%�c
	-J��Z^
/�	=%�+߆�a�H2s��랫�D�:��2eD�K���F"ԼN��!4<��JA���:ܳ�
=՗�c�X�0T��A��z
e%�)h�h�X$�U�rn��j鿄e�L�������o,�����
�[��g…��h����娼��V%���(߯����R7C��lP~�Y$<��ug��yv�~��פ _����o��y}:�3VR�Uy]�9���~���U_���h�˃�H8�:߹�t����r�M��z\K`���]�6ޥm��z8�}��4�{~��x�WEm��nP��>�c(Qa*aY{��.q�_��W���
��5�BƷ��ˊ{�ji�H/d�o.�#owy�v�'�\�"Ł$x��6{�sBaQ.�C��-P��V��P���i7�8�#x���*\�XD<��a��u�A}����S��W�%G��P�s�9����D�*�W���̨�~�����Rt�!Bv!T��FD�4�f@!�r�s��NO��p=��}͌��]C d{�r6 ��<40I�E���	���F�r��W:�x�ܠ����U'9l��ӳ�V٫#���~�?�u=Dn��Ś��
�u���A����ӗ��Һ E�k�tv3StbV��ǹ�yp�B�G����'[[�uS9D��{���B�X&��~\n����Јý0V;�(;`�u�uHt��f�f�𣦰U�]����[,7莾���[�������	��q�Ãc��S�|l���cڎ�bgc�6%(��y��qZ�P;��wF�K�����6��g�c79C���&Z�I�΃��[OX=��r��k���E�~�B逃�%9�$�%{f����
"YIT���1"��2��Vʙ,D8�ddST��άe�������0f�%�Xt�cp���1����g��F4D�	$�1��z*ς�,N.�儲�#�d��QJ4�A.����#�j��(7+8��T�`��HR�8�.p�ά�$�"آ�'vsX�뮀�7���x9�	�=��%8�Ͳ�µ�"@�\$<���㾺�%��+������53tRRD.��y_?�!�����U����vR�,cR�8�I��52��>ʜ�{c��z�Q��Z���1��R])���/������b0�,�(�Fm����}?�f�j�����#�g��7�u���x�o>��0y/{������u����
1ʥ>9��
�}�>�
1ǘ�x�1��\�lcߚ�}��~{N��r>D/x|��_��?�C�g���6�#�J(E�5N��g< �H����] kf�XG�W}��*���9���F�Ő��nፙ���{���c��4�!6SFaX�K��"t�m0�p�U���|��/��E2o&�P!C�`��#�l,C�4xH�G��
�v�(D*�x��wc@��o?,����ɻ��?��ѹ��9����%�9ׇ��!��C��
�I�sn�\�<�:�W�A�D��>��~��-/�|��–���(ro�y:�&������3���jdp�[�����q���?���u���b��
��7vƜ*�!�13�����BY��q#�����m��U�${~��O@���'z��:�u�O�f�r��'>��=F�=�2�ՖR�=#��ɵ�nxaLt��i����³��^���b�re�k������f��}Fm�ή�λ�J��aᾈ!�hc�6gT�(��1o��m�!E�Xz?|؆Դ	]�w��/b���O��Ɵ��:�{�v,(�xq����1�(Օvs���I�
��ŒMm4�5�['P�8���'e�,�cH�0
�2�P�z�#�oΈ�92 �fwX��`A��F;�bEu2@�<�΃y����З�G�O��U�9��1�t0��s�=-��Jn
�)tM3}�@S�`�Ő�@
�ILx�
e��?;�ONm��r���x�7*D�����:�~Q:V9}�_	1��+ �'3W;;�t}vh,w�G�Ӝ$ЩaP��l��a������Te�&��2�YXJ`�@���K���!����d�������JB��Hؗ�-�W���h#�,��e%)�L�)L�'X��HQ�Ef(:
��R�������P]�3^���gƺ��?	N�u)d�`\���3����*�{����������ԑ�G�2De��P�;ym0��I��}����7�%�-JEߗm�C�Qj(��[�cm��r
�v[����1�S����ʪ����~����
�L�i�h{�ݘ{�O�z���u7�K�9c�፩��q�^���f������,nVj���B�z�uz�
>����/WVt�D���}9W�_���:.6�<t^\����˘J��bA������=J'�NFe��x|&�|g���8X��7r�o�!�C7���i��u�
�u%�C��1��X�����LJ�+vh�Z֥~�P�;��� �x������s����(̕�v���:�	�_}Û�7��M�C{�/>�>XsI�Udp�2��T�넴�����i���b�s���<;b�U|��L��Art�S���^��o)�^Le2���PxE��3 ����#r]�
�ϩ:j/�P`�>����j�sr��of�K5��!�^Xe��V='�ӱ�k���������TG��v�y9{x+�vHN�1 ��h���6y��)��ݸh�|'odAQ�W;>^F�c;���N���W�8� �F~���oY�2��\����!O��CN����̈�����S��<$0w���/Ⱥ��C2��y��O{�!O"hX�S�(�>]�^��\,��O��jLrx�{tWIU\�F��tR�!Lj�mq�t�5�l���v諔Rs9ysid�nI�WL�׬n?/�<�'�����t�#���^��Rk^IrbK{05�5�\H����N�r��t��F�߮�k:�׀�
�/����^������;�}�?��{�Q��G�H3���!����Tߑgʪ����g�8@�����>�c_�1yQM��{Qp>���9;H8�`_PX�X�<��@$��9�c�I��z=NbFf���FX+��<�p��n��
�9Y°QOm=1���k��G=Yw��̙���#�Ա$h#�'!wЃ�
�>�V�J�ZՒ�&ӭ_Dz0�T��r]1�n��D�7��&Y�t�!;�v�)3�V6b�
��D~"���.��'�,�`�\�XfP��X`� ()a��p��%!J�kO�HH1�9&t�:<B�߶[�K@����$��5�!���K�չB�Q��\��PVve�GrK���P$��(Ă_�+����!�4�o�U_¾�(��s�G�����g(���g���R�H��k�`M��@���HQ�
EĢ藢`���s��-����t�1P<H����^{YJ#�G�	�S�F��X�W�CC=)mª����HX�`�<�&��y�{�r���q���D�ůs��w�\�=��6W�&m]=S$c�P���L�ܱn�����f��|�F��R��D�溧�vpN�#�;����K�<;5�э�MQ���j[��� ������:n�:O�>��m�|Z�ݏ���}�o�������4�ú�u��-���W�˶�K�uS�e2�u����8�Z���=bk��
��g�I��פ��{t�T�#p�����Y\�.���S�z )k�e�fPH����w���r��oߏm����V���؟�w�+�W0�[�[��x���K�?�x��~h�	��'/�ڢr�9ZW4T�woB�_*�¾�1dĥ���JO~�ދ��C��k-e���_ �@�k]�K0Z�0�x��2��v}-����=d(1��H��R����uj
|����8�PC���-�������cr�
�߅!�H��
�ߨs]�1�qo�/>Q��,����X��3��{�/���+C�z�\y�Ϯ*W�V���xh����O�'���麇�R��yBV��{�=��׹�dm/��u�<Qz�?�UO�P@�C��]��w&{�/��a���<�A^+&�9�a�=G�~
�$<��o)9э�<y&�"�F��s~��)!�.3@��&���d���!O��u��EYVϺ��Ѥ�(8ǏJ��u�߀�j��H���~]���^�A
׫`8�8���}r���j�^-�x�=�a,:#��̇�������&�LO��N��M��m���my6 ��c�C�n5=fM�ֺ�SH�M��}�9ij�5�bgϲ�y:�\�u���\j����#ߚ�k��k���	���g/v=q=��bHbI��s�`l�}e�����c�>?�P��X]���A��&��uh�Mg趿�V�e�J �c���}�{p0��r8|1��w��
���w�Ȟ1�n!�@HQ[�K#\7G{1���<,V0n���F��p�OY<�'�<aYԯ0SX$��ץ��A�B�<7r|R��N�1��W�f2[�B^�0�~ͽ<<�Ln�_�y5P��g;k�
1/�C=,��7s]{O<.�0R"��$48����r	XG)F�
L;�]H)�T���:��I�ȵ�P����/�n�ۻ�I� ��$�軃/$�����.���7�/��uH�TՑP�ׅHB�މEx�X�I �l��7�F�n-(�B�_�� SD�<�����J*�4aGȹ��c�Ee|���>��
�����N�	Xv2W<<B�ѭ7I��PC�pa�z�I4.+S�11O7���(l �K��P�
�C�ʤ�hOBr�չ�RO@���uz����z{�D����M坭�7iP�t����t�j��ϧ���'�4,|I�f�]g��e0w|����V&Z=#�v�������ofVn��M�ź�v��S�S�{��=�����~��{�7�
=�ܢ
��wG���5�^���+_�jx/�=��1�'��}��zx8�sY�y{�����5��j�d�ޗH|��'�o�-�<ċ��u9����qě��<�6#��>r�u���H$Bsvo��O|���R=�%~	�N��j'O�xx,���9�:&_�� ���r���F����w���3�����t,X�/a�t,�����?�����#5��P$;��׹����Ò��Ʀ?H�"_\�MHU���G璏`H&AF����E���@��1X㜾sʜԖ�A��I��<uG9���,�6�*��]w/���p���$s����y8��~o\�
�L�w C[V�CP`�FЧ%0/٫��X�:�^%�Џ�y}���8��a�<JFI�z)��<t=y��۫�E��/�s��;�����<8�Kx��d}�m6N�?�5������gmh��5��2P�(���u7�:��gU�7�I}d&�&P�}d �V���k:�׀���6{��
P�}z�|��:��g1�P?��:�I_��jX�B��ҡM���
l��?Rʨ��w���6��j�1��X��k���7>򴱏���Ӄ~<�F�šY�p_|��c�$/ǡ��u���q��k�
oQ����!�Em<�{�h`}�CLO�D�z4�s�lh3��1'1n�EL�[�D?�S�6w�e��P�3������@�Όf/Y�����s#������g��5R0�]�Z)}�B���б��l9����X�ѫ{f�8�9�D��I�i�Bu\�eQ&A��>����/@���P�:$���:B�LB��X��K�R�xn������!A����kC�ձ
��W����\(v`C�.�@ijC�x�%ćWJO�	>#~v?���r�/�I]��1�܈D�c�S=)��8�R�x�R)d��$����Q�! ��V.\�ԡ��-�q
�������ѯII$%�BW6D�熔4�҈�n��Y)���9��#��œ�יӷwI
+��j�*�1��,uzݳ�8��l���Әs+����3����f_��uo��l���j[o��dF�p�Цofq_�җ�����۞�~� ��ߘ�)�S�@�e��E[�:۞Vb��q�-Rs��;�5y��O��
Gx��x�~�[������ֶ#Q���?�WDxr���wP�|����U����o���l��ܜ�SU.��o�{��1��Km��4J����W�o��3�m�<��G;�.ն�Z�υw~o���"�-.S��NdL֚��	t, d�,a��:���Kk�x����Puպ����
�1�����~��|�$���l�A�������c� 1��1�V��M*�F�����pV�)�%Ox!�x,]0Bh,��{���s��f��/��N��݃��`X���D?�*��ϧ=��Ɣ���]�x{h�����a�c񵄹	����OM�C���?�s����k�{��M�o��R_X��A=�e��H2�d"�G!C��8貖�6<?T��]A��r�p�dG�c� B^t��0Wԗ'7 ���o�����F|$���Iz;������ �F����q|K����W�lj�m��w�_����5������fDZ�pt�Wɺt+��<<0d�9��o�:�]$�D�<�h$\(�K:�h$�<J
���6����o�z���ӯ%�_9�
���Z_����a�X+��ֶr٘�>�Ğ��Y��[�GyM�t���L��;�h����ě��@����XV���l-���r����ҧ��8���d�V�[��}Xݖ���c>�b7[nQ���{f<n��8p��e��ʟr��1��}Bs�Ö�E���a��T�	ȹ�XDG2�܇�|<ڷ�*�2�a��0)הԼƼ�9	Έݙ�8����DCFLR\ra�<9y��n��(�5M>Δʉ�u�d�wsˡ]B;�ٱK|7K:N8*�	`�E��;���@��X+f�� 	��Ʋ��j�I��8�j�#�sg�rr]�v������r�չ��e��Y�]I�(�NB��9՗�:v�~��B&I#e�PJ�L�L(BTrd �*�B/��`,�W���ZI ��!KC�?X�	�ڑ$㌯O���E��E�~wb]#�{bϥ����F�*|�`�P>�H��O@�J}�|���j)Z"�iWl�3��L%�m������)�A�"�uQ����s�
� �xZ�4&����96�ʝZh�;�Ŭ�կ�x.ym ���v�)������~�'J;OBn7[n�t�ۇ��X��JC�����r��z�o��?�h{�/cK�6c���cwN���������'��(w�K�m��]�y����N�=���{���:�����;��};X0�g��LBR��A�;~��@j;�6���l׷�IZ�J�P�a�ӿ��7����\O޺��vm�95�{qq��?�v9��A�.��M��;mKZ���}�����ɟa�P�*�b�Ёt��կ�;qY_/�֨��8�bc�����*�=$���9���Q�Lf�1�$B�v}
�z-����E�v��6��n<�hx�PW�I�G���!F$�yD��_<�BZa�c�$5'�9F.0�syr#��J{�G���-����&@B�+��xRO|��Y�D�-���"�2 :ΆG�m���a����|���2"� ��o�\;�iC���=4Z.���P���gԿf�#�M;)G~.)���<��u�x�"!˃K��2a�3B'M@��I�\���}<A�D.K'9��CW�@��O���A�b��ks�C���;HN�ct Q޲w���r���qr�b��:��]oˇ��>��M�P��0��Ge���A�wͮy���Dp��
����O���l���=�m����:mR�s8�����dүRVO��g�����c��#=OB�&{	=��������o�{���i�<nK�I���ړ{t���:Jf��}������@ݸ�BL?�V��cV�~��{�-8��)/T���T;��-��j�`#}�,t��i�~��C���`>��1I�my�:��ь�dJNN��]js��m;��Ib�ZNg��>��nX�`8=�{s8���E�V�9�9ḃU�~C�9�� ����5�|"�T�V\� $��3B=�"˅�!TI`"��=���[�JcnX�	ܐ�H��p�	����!K9�K�`���4�U�MG@�'ZJ�l����H~
	�o�X��<]h�^��]��J,s�eH��PCI�9�CoRT��� 	��$�?%_��z�
�H���Uw�鐒AﵔR���C�
��/}�@���=�8���s��,Pi����8�1[�Q�D������v.�˃yrM��2��;P$��o�HѤV������������o|�+?��:���˶��O��
���1���W3��*.
�u�q��6�ب�=ö�L\�qM̈́�\�H���s�v�]�ٶ�X�c����w�4�+��<�Z��~�ռ�i����V7���IL�s�.��uY��@_��3~�
�Q6�Ɗnu.�Ԛ��Vg�w1�`mc��G#{r/��2}��)���(=��7U9�z�2���푾h[��J����}>�4��AQ�s�I�nu��L[R�����\��^f�%�Z۞X)u��*s�����������Q�֔�����X{�=ű��1j=�)U��9��q0�uS �H�Ok��e���:p���F#����$Fw/M��Sm�;�����5:ī�7��C�>��{��`�!o�t8��"n��<��x9m����I��2�U� ��ԧ
F2��`�#pD�u�%~VɺQd\���)'^[����X�/çG7��WN|�d*��⣑�����e�C����E���6��<�e�yT&O��R�+B��|ecm����@���
لv(9���ț.c�h�H@$˶F-��B6N}���,g;eCE��쵑�o%PbW�'���H�;��ys�<�l��a��ϳ��@9��F�^6���"u$�c��8Nh�b��DQy6�!���tf�뚖���f��wq��o�V��=:N����u�LV�7��m_N�5��ˬO�ߘ��������[��^�|<�S'@����֟��y)���a|4fo�H��L�M�q/)Y��3�G}��A���e�l?n����Ǟ>|�Q�-5-@�~4'w|���7������=7����� �/��k�A?���ף FnG��@��;@�3F�A�|d��̸e떙���#������$�8xv8c+r����r@�R�ѾE^�	Cph��O�c%��̦[g�ؽ�C�B��,�I	�H������'f�.4�҈���@pT��X	��R�3’N׈Ռ`!�"�f�
�'��/BlON���k40,�ѕ����
���t�P���
!^ǀ(�	��G������[���1�J���P)8����{b��5E!��ڋ�Fek��ݲOJ������\��ٚ�cm
�e�Pz�ܺV
'ݿ�-�#y�4<>����K?����2�11O�E�k����+�*s�_���L�єxC�R�;?@�k��7&�˭���z����	��_{�i�3⛒��0���6k��.�U�k����'�h���A�9����'���L!����~X��g�J&j=�8���:�g���w�]��o-�#/��m�p3�}݀>�C��D�N��3�yC�oC��\�	��t��'z��v5����&���ۤ�vxrs���s��֖��+��~�+?�����t����u��
 ���Z���P��6���z�>�ɥ��ֱ��`m�����d�V��S7`������L�p����^��c�
�2R@3���{�P��ANi'��r�3D@��]�co�^�&^��UnĢc�(O|NH+�򿩽<1��?�Жg��r�s��F���po�xl��˰h�O&�:��~�2ޞs��1":�	��ly^�e.ʡ��;��SD!wU�u��"��6�CF���0������7Y��n��5�:�-��b��Q`��q]?G�u�<!!�z��G�G�<!�����+v:t|���	(�������j��+)�F�@���$zG�fe�r�@�4qʹa�����Տ�wQN2`r��k�{���}
}��=�nۺ��e�6 g�D7\�<�M�+�}������sj'����:��4{�2c�r�_�[���nxu�=pA�ϭ�R�>FW�qw�=�[�ܘ��\�~��V����#����=�����h1�O���0��㊗�����'q
G\�u��J��ؼ/���4��a�3�ȭ#%�"
��Xx�c9l�x��<�������61$�u`>�=98t���f�Q&D���1���I��xY2�>�0��)K� �X��:"�Ǩ�a�|���5@���:��� �J�Fs�$��8{g��.̺�����51�X>��~�E�[�Ֆ��C�91wu��3V�u�c���TN�`�������T"	`�P�3��B�'k4	Z;T����L���"�wB�I�ء��␠�=+y8���*��PT��a��Ej�є��y�<����Cmt�O�ý�DH}K�'����ցg&���O�X�}��@mU��!1��
s�&�{�*`Cca��vRZ�ң�W���Z��D�6�Ji�6��`��BK/�jUa�r�q]S��y(�b��;Zx}h�s��˽>H�$B)��������
F�Ш��V�}o�߬�ͽ�l9
�g3X���7�G����E���Z��4������ަ:Q��Wt���滼]��cϡ1k��y�x/�=���X�I�qϗ���|�.~�Txc�ユ�v�����!��n*�d���7q�5�W�x��{^��3Έ��~�{���a�z����S�t�
������"�Q�Mq_5{.�N!OYK���X�W~�W
!U�sTi��1뫼4�P�5��y�W��G��i�W�LOl��:W�����0Z�2n(�G"�v�1V������s?E>2m
#���'C��<�x2�"�d�W�9���j��;��G7��K�*�U?x�G�(]{��W�����$��
e�%/]�gP"�g�xq�W�o�sĒ����=�?�9�8���1����:2I֕+D�	s�g�����U���Q"�3@���P˞�Ȁ�-7Ǩ�k�X$`$���᪼�H�܁�>�k	Y����ǒ��􇇇��ĵ�����qK���-�
C?��]��w��\!�Ƿ݃l��s@>�l����8��F�vhSr���“��F<�	2�<΋1��������[g��b�ߣ��:z�������I��ǟ�v ��[�f���4͹���GD�z�Ǣ�=�u�O���j�
C�Tw�R��Xu8������y�=L��R�4 f���n4��������	룔
��v���RS|l���xkN>���*�W�����y���Z�8P_�xjؼ�}����~B�5���<�=-�$���q�^�Z4=�$�uA�eg]�Ts�J���9>r�F�Kk�G5���լ<�3)\���IB�l)��m"'G�Y��5rwdύ�wde5@�C�T/�����ܒ��,����ա}v���[$9�2BP��������~eE�K���W���T�-�D��Urn��ԞPR���$�uwy;�%V_g�¥���G��c$��5yq/Y�e��s*��8�~�_��
O�JU�R��A��Ͻ8�F�z$l3�E� !\B<�a	�ʿ�94rh�1	���#	:����2�y�*k��j�ڨZ`�9[?�ѩ@,I�oʊ�5��Q�q�U�,\}nn��s)�A��!a�z����=���P���rR��o�����2����'}�ש��xx�u��'���h�O�[���P/�q~"��=�����Q/X���_��׿�zv�Bs7�Kҽ��s
����_��P��=<�*�v�Yb�^}�h�|.m:�R9�oY?b���w����Vַ��{�&���7�������2`��g��:XୟKu�x��X����4tM�6����K7��V�y���V���R�-Ʈ{��3���w��\G�T�^0��>9 Q'�����P&�RZzG��G=�͝�W���~�+_��?���!�����C��D�8Lo���/}麬/}=Ҧ��u(�[*X�=@
!�4���h��8Dxn���eC�E���^g�ŋc�{@��T�+�)~Gަ"��u�`t!�Z<��*�+q�f\B�O/
��y?��{�+��޽�����A%�bDz+����S�$��c�=�����%^�<!1���CF>��	��kU
K����! $����݉_ױyqB_�����	��������!"]7ìQ�����F���<ً{����s���>g	�ݛ�:�n�e9�s��8ȉ�yt���Y.�F�]�+3�a���^���d�������E�؅���S����ܘyw�X<)�0r�T���)�fu�dž�z�n�����7��!���?��p|V���_�\�\!��.���um>��=G���z5}���#;���P� �����NY���=u���v�k���=uyM�����9r�6O��u��x��G\��s����Di{���<�~ojB�1�	�u���Q�;$j�&��ʨkm�s���xj�>����Y+�s[Xj��h�c_����
���6�ӭ�'���X5�0�Q�=�pk���B?���J(��`�����^^o֏(���@�z�zh�T��4{E
�
<:�[ �,��,U�}X{BT��F�JfƠ���X��p�V�ܲ��`��3��C0�xs��v$�N߷��(QwXD�XB�J��p����W��徯�׼%����C��M^��u%\	�P����庮�����0U��ԇ"��ګ>B"`���Cc�]H@"UB��\�S�"�h��PBhL�Z%/7���!(̐�*�A]W�eQ(����!"4�6�KXg�"1~� ��W@ϻ�k!��CJYZj�2�/�L�d�z�?�K�ʭ!ņ�G��a���F�xxh���J�*Ф�֕��2�e�6T�p�ʉ?<Ⓩ��Xƿjn'���1@��	��rE��=��L��PR4q��	E��5��Ե�;��_��d?	e2:�U��ψ��>��~��PN��?������An�gG?��Zz4Q�uUK��mx�,J�t|�_ۄ�Z�c޸���wn�>W�`�)���h��=ʦ����k4��u�
n; ������z�q���a��p�[�<p���?��f@�dv���1�.{�x��vǭ�ۛ)��
��g���>,�ॼqyX�K���l��S6�KiN���qz�i�x�m��q����&�;�q�'s�9W�2�&�'�O~���>!���v�?�﹍Dz]cCZ{�_��;�t��%Z?hv�v���V���z�s�E�j H�Y����(�v�_�a�.q��)T�ڰn��r��("���5Y�Y}����^A|��w*[��~��Hx�#�i����gH��F��N��6�ɽ@>���'��h��?�{�PU�[�H��ׇ�:��1|�xB���^#xz��C�𛌯sxoy{�v*Bb
#�[x=w�FF<��W���a�#�C��-|8���{�\*S��/�G����!QW�^�ZC�Α�T�$�,�,τz��V�D�� 9L��vhL���_�R�N�Cf+�5��r���#GP;<A�|���.�J�(/����G�q�����_�1�=<$�����""սC��6����(�%xP�/�
�����s�����}�7��h���Dۮ{q��~[��8��k��:�swL��;��a�	��'7���>ѽ=�~���ǡ�q��|�z����������yݒ���P���͌6�'EOxF5�}��
��U��>��8�^�~���^�5=�^O��Bu�JT�1)M��%�*-���n��&���W���W�?�u	},�G����>�����u�}��@��������qZ\o'�Q����vd����y��'���Ϳ80!�>w�Q>�4?�!��%�=Q�6���>�P���HR�E�2�Y`�L��Pm��r��LI�<\��ﳗ��	uR�[�@:w�$�>���ow���`�3
`��J�3U}����YU=��Q�na�j�<ܨ�C���Cud�BA����s���!<�pU����[T�\�͜s�!Xz�\��D�L��W��$L	�p��=F$D��
�@(SbF�UG��hC�Y�Ž6�A!0˻�A
�J�#V��#8�@��L<=<b�!��]���2	��O�	P�K��ueBU���}��Kh����w@Y:
ؐբH��B����l�P�ک\s%�'
Ey��ꑈTDŽ�b���(�(����	LоF���zw�k�k.�����k��(:B�3�|R�h�닒���*�Ƴ�0!� Q���y���\��C}a�+n�?+Ԍ�?�
D�K(/�|{$����o��F����|��h/Ei���w���_b<Ϻ׉�U���������³�O*�30��R�����\Ph��Ꞷ����fF�ba�.����؞�M����ٳ{7��;�x�{.i����(Z֗l�{��{���%����(�m�<���^���Z
8�:�ؽKd4@H+�����o����+�e^���X�;Ϧ�U���E��	�P{�k�6�y�i�,<U�A�6�#4�x��9�=��j��1(	^d\/&�Me��|x�_�rŐ���W���2:��o��G���M�cd����><��b�#�B���Y~��Ќ�Ыx�P�t�?��&LJxn�/F���r���xyd	���\N�|!�3�+.�@�M=�o�G]�A�qz�Y�Ia��1�tO�Ĝkڐ�\���G�cˈ.';�qs�s�`���!_59e�,Fɺ'"��"��!�Fj�����q�����')�Dj��������� ��p�50-��~�]H���[��+��&�6N)������F2p����W-	<��	˝�|�)DB�
��Xo���-�wdܧ�%)w@`G��t�q����q���m�!�Aw��s��8yo{V�5�5�q'�����&�����5(-!��/oOY{�g|��?>(�k}�V��g��@�<�k��\(@Cc;�ܻ��\�0�I��YJ ����-v�j�.֚V�ýFR�^l��<�U,(�~$*w�?��Um�/���ᩈ�	a���krE�6#���P��hF0?��C���Q��*n��8�OJ�Rrph�*��H�6�=����;��C׉ת���`/fU,��3���>�=:���<?��yd�#��u�H�=�9h�1�; ` x�p��3����ҏ�`E<2tAF ��eѥ��GB������%ΊMeְ*��v�ԟ�9BNyx*���Xj���(5�_�C��N�T��C%��I<N]H����6�׷O���-,3E�M�ڪ��y���I�Ar8�{@!ʀ>w�O��[d��ۡy�P�Rd��	�c�C�����S�
�n���P��>ޭѿ�@�"�@����"%�.�[ǡ�u���_x{��w(�jxn�3��
�ZB��\�r�H�ݗ�\��S��m�*nk��3�_�/�Wy�R�8����m+��D�}�������*��
��oe�;\��K�Ƌk��;�k��7��eO�J�<�qݶf�sk�<����l}���G��l�bz͍qϱ�'\x��N>�E��Ə��_Ԓ��i��m[��h�%l������|����vs�o��?}U{���\9�=&�?Շ����o���y�b�xX�x�����<��<��[
߄�����Ե��^-�k�
b���z
��R��ǵ�?�]��s�۳\߫x�n< ��5��=�8�y4��K��5=���*u����;x�mwq��9kP[���[o�<7�����&PC�?�!����Q^x,*�#	���?���\V��]^1pP���r���/NjS��G���F���?��W��)|�?#�F��-z]��ş&�/�Н��.b�c>����<<���c�P��j��t
/���i~�22��`ay�\&V^�:�O*����U�C��O�S��2�]����G�����@t�[�?@��x}����p�Ue��i�g�KD�c0�r�Ն-�	�qIV#��S�r���ޱI���H�6�$:����!�&/�Q�
�����~,7f�	�9�����W��3�6O���h�sy�����4�y`����2��y���U:vP�|A�q˛��y�/�$�K���v�7D'���gH
mŜ�ފ��"�i1��Cc%��%c��k�>-��X̹��\�:Ǡ�}ļ�Vu����Y�<��%`�M��Z�1�|����ey
�<��\�ߒ^�� ��H��;(��ub�r�c��3���nS����u�X~�[ـ�U��׫uCM[�x�6�q��r�f��/Aپh̥��0��Ɨ.}tYf}Y�[v9@�/_���:�QΩ?�GK0e��lj��fJK�����`^�Z�c�{���v���6*$�+z����
���p5�l�ᮯ9a���
�4�i�%���{Y�p,�^�������á���{,wDƜ��,,z3��3��9�eCElY��`ƽlF0��p�	&�z#��5��$�\��"���:||��ߎ>���P����E��!��G�x�H�m�jӞr�G�U:�(����G�q��PZ�B�I<B$�j��B�t/��G�"�a�����c�@h����*�	� ~5֍ړ�S@��n%0aA��"BD�+C�x�0'�n�bBʎ���V�	]�%�7�|��ù&�s_􎪜�̥h����+���e��7�v�F�VY�*oG[���7����ձ��@a"�ʢ��c���U_}��^Z??��m^�}O�iނ�����:J]���xQ^\_�
O��8�-�_�X��?�w9z��q-���Sz]/�y��T��beQ��-��u>?���
We��IQ�*뷲[T��/��#.�a�r��KyZ���s��}��?��F;>���l�7:����Wa��˽g��;�7}�\k��'����5$$���A� �³�Bk��ߵv�x3�WA��:V�e-췫�K�cN�=�#G?��Z�՟� �@e�i��*�z^��?���*~V�d��y?b�e��h����/x��U��Uħ��	O�S�]����Ƙ�����7�$��F�> ����ē��C�?����@G{�x�p�B��=��w2<�@��kCm��!��W|0�s��##���	���0<r����H��&R$��p�P��'�CrH�^&�G���C?�-u<3�����!W
�c��.xu�f!��0fCf��r_���C�$c2�넗4�	"�P�UrO��G���������k��Dt(��+��Q&:��2����zF����t��'���w50�bP�CZa���6Nt;`�tWy�B��~j�9D����pi�D�O�\㟡��wo��Z%�>G���0>�:����L_[���z��|̀�r|4��
���W���L}Msz
xܠ�"�vt!�����g/eb�fnd7_bdZk��߶���)���>`�Uju�'�G=� 9�3CXv{�k�s^��}���n%�����3o��”�6�y�T���e/�y\ss��k�����]r�R=
�7"dUa\1fYEH+@�C�1���	������-��G���l���X�d/
��\ѹ'o�Xk�K����Qg*7�r'�3���g��ڀqfzW�HO�8�=mr\Y�q���
ob�_yvJJ�ܪK�u���9,�zL�$���dž�=v��I��c	U��̙�T*���y9Bx낝�+������G��C�-2��e�xc�w@ªB�\{<=�F�*�߃W	�����@ܺ�B�I����}>�#���R��PeI�䐥#JՑR@�,+����[E 0�Թ�io����RʤY���X%PFW_?5O)R��������±���P���X��7}I�TWO��Q��I�*Y������,s���U���g�g�	�'L��q?Q0��|�f�[W�M)Z�{�O�)oh�KN�F��\o�N�ߠ�R2�r�����n��F7��խ� KK��
�?��T9^���=��+����[s���4���
!k��r�[��['߂��ݽ�h�C��%&y�f9�d��,g���+&�����x����c��>�$'���[k��a?�WE�*kJ��u�u{�^�T�m�x��ZMk�W�ヵQ됃�6W�W��a�|%tc[=9*�}hmT�x9�Im��0�"u�z��28g=�FZ�=�$�?S𨭮��/Pʛ&ܣ�:�"^FyDt�k�uۏ�
~�����]�9���l#���� �pW���-M��,�	ء2K�=`�W�ExM8�eȥ���U���.���%�V�>p���ky�� �?��v��8�X�ym������2����$�І���S��U.�c��SsY�
�\.2���Y�s}Op�_�Gvs+}�Q�#�*<;�^=�G�l�s]�����TɯD:�?�G��<>��-�4�cz���x�M�^���s�7��>�~��<<Az{rzD�������B4��27��%�=�>Z�����X>tM�������W�¿{X�1F��/�nF��n٫�?=�]�u��%�_������5��՘��<ƚ2��R��rf���b?����2��Do[O<;&�<�}M���q��Ĕ_�L5y]ܸݍ:Ȋ��Q�]�Q��ں��W�[����X�1v۪n��>��m�0��2�K���z��{c�����ڗ��.6����F�����˝�<����}���c�G���X�2��8��9xLL�p�U�3r]�r'Ձ���A1?���3.~�Ó[�DO�WQ�8�儲���6��]��*��Nb.q5�8,uu��L�~C�|�wǑ�c���S}�0�t�c��R)���]uHѱ\�%�x�\��I �p�3X��\�X.�d$<���ULr��H.�
ώl�&�|/B���C[BpM���$#T"�b��s���~���U�k�JR)�k>��\=�H����L{?�UGB6�6��ɹ���?[�"��
B�	�*�5m����@�]���m��P}u�J��$�K�%-GQ��D$Dmb1�Q)�+B"<G?F����jދ���CIs��RQN�-mK��1>��h�y�[�Ha��R'׺Ia�t�������c�����P�R]�۬��|[_S�h��k����J�VJf���:q�7�ੱ�uo#�|=��fP�����;���/<۞�f���
)��h���C�>;�'��~�"�R��3߷���XO��y)�õ����:����Sϻ�[x����g��'ڞ���KmC�ѿ��z�d��X���;m�
��q�~�@�ߑ'�?����k_��O����B��c?�)�,����xZ���	� ��X��u����uY
b�>��>�6/���+3@���k霵������6Wrx�	-<�~C���jz늱��m��Q�K��;�@��o�G���A[B\������]׸�yu�B<�dy�(χ�3ʀFu��w���n񚴅T.<A�^W��s`"���p/���ش�;D��M|���Ýn%�_r�rz���.9�T��� ��e������C������k�c%��$R��"���\�Q�a`F*�Bpy���˒��eEΑ'���t�����#`��d�:��<�F�h��
y�z�g�:93�B����?�#Ih����@�]N�"�����6"�1�~� ̸�{<����H ��5���'^$�-	�o�|a~S�ڮ�D�溹���W?�1�����P�軕�G�c�5��Xc|����l��T�[o7���BK���~}k�������	�%�k�m�]�����P���4����uJ���}|�L�y.\���iʔ�>g�s����=�،��7��-�[^|�����8��c��ya`\_D8wC��#�9����X8G�X��\�nm���h���h7�wO�k��G0��A��؁:�Ǻ�|9�[~�����>ݣ���F�zQI�<;`������b��ہ��0�aUC�qⲲ�<�
u�`D�]U,����;���ĸ;�0ޞ�O��%\��!��V$�!�H"�D���B���]� +.�	X�>�(�G��/����1^!�9™'z$A��Ux���!�5Yɩ\� �KX]ޭ+.�du��D�5�	%�Ա�]�uM����O~��{_�%���/
O�)�������`9g�|_m#|T���\ء���������m�FuM`���{�(98�5h�g}�װX(wz[@�Ǜs�]��;d�J�(<;���1����E�
)w���Zb�K	$�[�վm�G���Q�[�����:����~���-���z�g�{�譾l�ٳ��,��[W��v�(�߱��O�����J�v�K`�`�|#�V-�t_��
m�mlg�x/~�m���~�V`c����hS��^5���}�-Ht}��o±�p=ֳ��5�X�V�$Q[�k�F_�Y�T�]e��2��������R>7���ֲ&��/��������N����C�3��TW�1F!<�}�f"#�����%x��Xe:V=)����?��$�<ԕ�Շ��������K8!^O�����+�w^��K�+�!~����;"�;�*�#�`�x]�gU�xj��:�_�J����9?-›��u, �?��?����"`c'Ϲ����U&�B{7�R���s�/��5�W	cEX^�����f!��ι��1��!�|�Y�v�wY�8dL<?&re�kc;՛���_���[ԃ���B�#�
���<g�����c��=�����<z��W�����0��	��c�ы�PV%�)�G3��zxc���k'�}�{m�����H6Y)�����KA�$���'�B�U������[8�2�5�3�_��8-{�
t�.�y
]��-�>�K�@�:c,����'z[���!�O�F��t���ԉq|>~Msz
x�A�45@�
D��N����d�ҔϽ�����1΋��W\s���]�5�Tk��X���Y����fw��<�3�}/�+u�Ywj�$b���Š�P�?F��Lj��B���C3oγ�"��߃�"���бy�4s���x�Oܕ-�{C��b=a^ �b�$d0���U;F�k?��k*^"���A��G��U���Ʊ^Gc�(��w�R�|x�pxx*^�_�1C;��Q�0�9?GX���tg������'������_�e9��mT$��YA�p�XI��"�k-��=��%H�wT=�
�	^�v��^窃�>\x|�2b��Z!���)W�K���:Q%Ʌg	�z~�@Է.�O�s�9�з��Є��?	�0����=yxx`�"�����Q,�{�p�&�I��lh�3#����H9"�KM�G$KO_�[a-���S��(���'��DI�"%�{}8Ip�x�C�B�)�C�#�S��{dY�����~	0����WY�O���==�ƍ�QT�5��Uxk�$�~�M��C=E��yΘ��׷Z�F��i�R����F�Y�G�b��Adgc��R�%ei�	�~�abR2q���=��Պ"kp��c�۶Ѫ��O��oe���[$�nmU���9P�cQ�rf1�O��\�gljw�h�ie�=��t�݌^�]���Yߊd��ۮ����a��X������z=y�ʖ\^�w%R��}�q���:[+�r�mK�NRt/�>/��;r���� ��Ar�Jb��}m���5�	�����<�����M~vO��<�\��3D��k�\�ChO�>kM)��j[��KWr�D��{xh��ڨc��yԞ�X������P`���Џ���c'��H��[�u�r������rr�!{b� �X�E\���\u	kU��
�O
~G�`�H2s��j�a���y��#�F�����r�"�9�{�>��"���x�~]�r�xs�s���A��me�Cn�W��V8O�F��W��V�*����
C$��?������_	�%{(���B��E�o YEeK2�d�B�"�hO��z�.� ̓���{����u��
�"�-
@�Ȓ�#�� @f�� rP�9᭐�=Z{.$g���r��0rD�W�-<8*y:��_r�@wE�t:֞Hah��a}�rx�q�Hw69�����C	��h��}��9�2���
�'�����BהB^��]���8���z#LVۃ]�ur���ERׯ�x��5�z�h�|I��z���̼L��x>.@�]S����y��<2�r�����츼�Sz�"�73����ԩ�<�լ/.��Oh��Gٮ���I�|�'ϡm�cl�ٜg��K���Lx���^��A�{>t����b0<?��]�CƧ>n�v��N$����P����5�
2l?�%����"L�������Ǹ�J���Xl�k3F��X�1f�2�~���rF��n�^g���cǼi/&����}f3q&�e�i�ds�J�-z<����gb��r�C9;F�*ʜT�1m9�a� @	3�3�~��X��+�8$THp�������`��O}������)��/<,�z�p�~�c�l���3CB��`px�P�CqIx�^¨,�$�z�)�j.2	U@��"��F�0��� <���>���=�
8��B�������R̙�=t�S��_X'�0TX&��@@C�r�D�("�f܏bb_b>
�BX��z���r,G󚠰Ux}�d���CRE��a�vF	ԋ�W�>Hiy<���v��@�!<U��UIk�ڨ�'����������㟏�V�,�Q}*����b�P/���$9���`���D�r�ސN��Y��o�N���]����}�S�'ʞ�O)^K��)��I�w�h
3�^��zr=�o��O�Z(�o��G����5�ԁ�塃D��/f���#ں�<@JiN��C�>&֧��1�:�6y��߄�˳�n��;~���ӎ��~��;���t�oq|�|<�dg��d���߉]h�����|�<�;�5����/���#�g��,��X����[}}Y�����1<A��$k�x��f�3��S���9y=X�<V̿��*�/�pW!q��_�0��ȢLH|�<K|��BX*���v�CD}��T<���3��'����{��=j����\�1%�G�#øE��{
	�(~Mu��(>�CciN�K
KeK[�5�WUy;����.PC|�xf+@G�A�2��j��U�w�y��p�;#"���@x�[�?���]��3g<=T.Y��\�p��3��ԅ<$�H{@/�x�P����V�f*O�Q�g��-�
]���H�,��˟y�!@�/2�_��΅�r��r���a"�#ϻ�.��<+���V^�����]���xӽ<T�eg��,Z�.T��_0X���F���tA:��&���{{YE�s�ڙ>
���h�����5��8}R�9Q��r\�Q��L_�|�R_޶��|�{�e����{��]�։�	v`�LW��ܪӞ�?�~�k��{,��ާ��h�}�m�C);�u0�%��"���HO�s����ce����uo��K���n���������y6³�lD݌��_����)%��v���b���st��K`�ΛC��ȔcV���б_��U���j�!��w�Kƹ\P�1�� -�K�:+�k�׈;:K@N<Rw����`���H��ÙK?��oc��9���\�)�s1�:���/�">�Y����.�.�H��7����R����K�B��������
3��"��%��[��9"���<T"t���k�oI�z��#aYpd�C�jg����,sQ��n����d	�.�3/)2p�̐��\\���FaL��XW�BQxq��B]ѧ�a[3J^QzHY�5�<��W�>�L>���6��=�SQ�D�Cls��@;��R �Bi$v1�ک��?���PF���r�5��ſ�����S��sY��XC���L��><�P3�6V�f
�b�!�ƻq^BI;�UF�|���a��Ǹ�ݳ��k��S�n/x���qǾ������+b�2�m��a�����'����l�P��y+o1�KEA_ngT�{yZ�w�ơ]�����	m.��������������̢�.�c�y���v|_��~�����rD��u�[�J�eה��_�1������q��Jn���XS�沶v�N��B^�<zh,�������eMV�g�Wj��vE�D�űx)Bs��Rb�En���Š��8�:�]�2�!��G������+{9<���5@���T8��><g�+S|��Q�/����E�Me��� ]Ju�P9����pd�#�.$J��1c�������-�`��7��Q��l�u��`�>蠎�,_B��e�;<@Dn�� G�w1L��e�<'����P#_'��Q;����E��sF���s|�t����$i_�'���'�z���)'H{LyV�y�B�[�z�=��s���m\�ދ�G�6RV���Yvq�\^ۢ�9��pQ�.1z��7k��ϣ����Y�Nd�z�2���2F����ZO@�ɼ^���MI�CZ�I��q�r���Ӿ����H�,�����Em���>(����jm����m?Be�_�:�6�Z����L�X��a����2}�ǽA���
1��>�;�Yb��עF8+E��0W�51$5�X\G����T�RAe)IWo�.�����<�DFSb��@��d�!f�U�s֔o��X�Nd�y�X�^��z]9�m�W�߰g7<5t�51�3T'{�ڰj΄BR$;@��X�D��,;	�p&ۙr��+����v��"�󼂑/�.�e��;$�,��%�}P$@!�HX�'�j�z��x�C�2ZL��IU&`BDzh�`�MsQ���B��?^ |7շ<B"�T# �U�q���"i����E*#T��~ԟ�ۙ�+���3,ܸι{k�ݐ�L(+B\q^W+��N��|�\�H�hSh	��F���	K��c����%$��P�Z�������Te�(;�}��`a5�1Ci2�٫�tP�"�9P� ���Q�j
%����d�6ne�M��q��]��|d�m�bI�yyxZ�%{�A�͖�~�g*#�K��$�K+;�B�	��c^<�Ol~��F_�#b���^��u٪~���m�{�jm��+lU+��ѧ'�\G�����i�)��{c=4���]�ƶ�IS����v3̖�c���=���f�����s!���2
�K%\U��v؟]ǵ*�:XTw�å�{��~�������F_�1�~^��Ѧ�_��Ѵ)����9����,��^�/�߾VJ*���a._'T�yK�>G�2�����9�����&���0]Gh����w��r�[�D�c��f[�>�r��o=��v(D�ZS�����u���ުi
$c?u�����clx#F{�c=_G+��/\<��"%BQoM�{hL���?]����^M	o�c�>�l��dx��֓��^���Wv�`����K�XV�jL�Kv��X��%��_s�+�N-�p�<�_�H7�KW��Bn7����>�Y�2��ʿ��;�u�0 E��ч�ݛC�^5��h)����������{X,��E$H��"a\�yw����i�����d�.�n Wq�
.��D�l�¢p����8wo����0�6�\�&�Q"Ls?@���M�+���@���O��k���'0
�Py���D>��h�<�,���s}z{�����d��ZNr|��cܓ�9�U���|�N�����|����op3�kn�x1��{h�{�Q>��/r�_
��tx�&��3��-ʦ+ݭ�c���s☪q^l^�}��8׽Q�X�|n�k�ѝ~�N<3���#��<&�5�~`��%$�Nе:As�[��Za,7�&D1��Dg��X������2��%_����f��fT��O�$��v�y:7w�1����=�?N�	�����\$��y4G��mv�\�'��4�Rp���~�
��j��#�g����r��9����u�GFr��u���,T�7У?�3K�	W�a���^ge0�����C��Lg�$R<6tN�����L0�����R. b��v�P��F�*�˖X3r�.wm����)�Ѓ$��A*ys,��7�X��X`B96��n"��@xι&�uy&W�<�Y�#��+}�֘�ݡk�Ep�o��sQ�k�f���C`F$)��2J��t��:���=L���bR�BJ�	�_W����c)@���C�w%��9���0\{)���5�u蚔:z��\��
�a�k�{v���q|��7nQV��������|�Ƕ�w���ε��M�ݢ���z�"��K)هcI�?���#M�%O�ڞ��i��&�E�lns}nw�2Z�4��S�����>��4��Mڽn{{�Ʊ{��]���ށm����8��[?�U����ls-��y�A��pJ�'���M������V4{8������ܢL�^>�>�g������z�;���f`ċzF�9=����_y����}�5E�a\Z�z:�^!�.Q����"H��Y�����+&���g�Z�cZ�	�5[�U�{�-���
AE�K����������
~�	�X��J,�
��roY��?ᮘ��Q!L���i��^�W~�W�q�����@�r�l�@�e�ML�87���X9��
�s/+XsQ�s�)�	�6"O�.������==��Lxqv��8���L�pلp��k$�x(,�z�����G!_���2Ȗ����3ͼ����%����L���9|rD%�3��(�r�� ��A�sh�-Bv?����!�D��PT	E��!�DYA��䭱7fa��c�gN��{����_��n�5˞y�p�Y��(rfd�1�v�AW��
�uU�#DV�nF�������_F���'�U�7��Ѝ�Ǯn<+�iy
���)\g�c�y�ʘg2�k:�Z^�M��R�{�>d�ZgX��ד��̩oG_�ǥL��w�l�gۺ������c5&��c?���
@�@
?n{a���ɢv�(����,�U-2=N�Ǔ�V"��Q���ŗ63�KQʿq8�ձg6��p�p?���~F}se��02����vd���a3B�1Z�\r��J)�nN���g}t�r9��0T�p���W�ݜE���Ta�h��!朾�ˤ3�\�c���)���݈�+/
=��с5\�P�c���X}�\8� bK�!I��
@rT����
�C�pG��UE���y9��c����@�OW)d��~�����\(E(�@�?{B&H �ߥJ	�X6��W���!��ֶ�R���;�~������OT^'�3�6bu�DR^,��q�(-��a��
��"d9�V�J(�6�dAy��M�:�9��D13b��J�/J�^��{���+o�]9���}���1tK�%�k�~\�WxXu��ܭe'�Kh=(Էk~��b ��ޏ���m��c//xL����<�O�z��Lj*Y����.�TFO��\E�_���l�̮��~N�z%'�
x�7�D)�c~�vh��q���o��r)�9���@c_J=�St����8�oq�uCe�9��}�m�\���ٞTg�j)/xPs�T�����WK������'�s����z�V��M���~pk�Z�������$P]�=���A���*�Y׸��G|��C�$OD���>��zM�z�en��8Z���S�f�?D�.�����Q<Qoú�>o�1j��u>m��B���	�B8/]���m��"�)-�sb<(��7��u�vṯ�)0�a|x[�q�OFC2�q>T<�xY��nV�+<F�,��U�;�}���=�q��A]�焺b�7D|�=l��^�L�!�8B=�ԓ�"9�<2�BrC�lvv���L�����!�h��C_��P2�'��F���ȿ��Lga�B�e9Grx\���\�g���䉎a��-�XNk�U$�ͮ���XIп�؁����iPspBnp�7h�l��pӰv��z���"�Ъ�*�c�snG�	�����=|C�x�$�������K=GFq������K��c��3�~=��g}̨&����M�r�o�k:R-��I����f�{^�v����a��
a���9�8>Zt�|�����|�xz�\ꤏ^�|/����t�?�y�;����%p���Y��o�q���}�־Oקɰf ���<t��;[&䅜2ڻ��{|�d�:��@O�IR.�ǭ;��,F���c쒑�<^�,n�3hV^I�s���%�C؈�GG���W8SN|�!Ù���c�г�3�.Hy��[׉k,D<v�"�WX�`�By8���5�X��@�K���Uxv�
��Y����kH,�v;�W���$W�q	y
U�g�|h�Ɍu!��h�Ьn���D��H\OijěΞ���O^�ٽ:s��2�z
� ���\����5F�U����
���I0���Ph�2�%D�p�s�G�O�rڣR���~��N�udQ��z:� n^ �[��C�$d��|A謿�w~�G��_��[I��La\�	}�u�C:��5N3E�{�~���f�	1xf�����W;���rI~�ō����اQ{�[肺vS��r�M��=��d1#+����T�9~���"�V/w��{���gе��Ѫot?ʦ�}��+ϢV��u����vW�|�>_'��lA̮�%Ľ��m��9.9Ϥ���u��\'���7߬�������́�(|��ޗ����{x���Z�u)��)�k ��"�<�5����z<d�br�
�6#!:u�աd��:�Uu�o�o��V��{��{{�m�R~��w�\ #�8Nf�t^��'�
<�x1��3�v~�ϖ>�6x3��Xx��k\w�
�����]��կ�� �G�t@B���X'�>�>]e����I��۹���<B�&��҉��cgOj@�7��PB�@����.���#�,��2R7�(�z.�y78��-H�b����G6��$�PNv�����;�����LR�l0����}����s݂�ߍ��9?(;�8��":1��;�T���<�	���l��a�E�)G����3������tVx�$-�i�j�J�rB������Mw��(�w
	d�C��R4��
<)�n�Z�s����tm����s��w�����U��|���%��(jr���N@;(�J���h��;ϯ�|\�O��2�Z��`�݄��w�`iV����7!5<O�m-��0�X���<���[_5z�����v�=��[�jZT��#�_#�׵�U�NĆ��й�H�7�3+th�����E�`����"���|WO��bB��و8��*c���q7�Ĩ��Hf�=�p����"&(c�\t�6�>t,m�C*f��S��{aL�7FҬr�sV9�X����!�3+ �`&\�F[ �]oԉc�b�a�=�-��.��*7�+m<Bț�cwk��s�3�����8���ԑ�����	8�d��%��y�?�A����V˹~�8�o ��X;*'��R,�_�����9H;<��BJ	��hH�a�[����X���%L���ax��<�G=6�Y��a5�Ģ:�E��JycS[��1�+/DRR԰��G
��&�	��h�1��F�����XwK�Ɣv���}�!e�=R*�ĩ+(3:����>��V�R6-}5���)��R{�.Ϥ�	�ߍ��P}���ʟ���?��?�v�<F��xvN~�m/w����]���<���Qj�C�������9��F��d��cv��67��wZ�s[�]h�mw�����1������ٳ%?��-�|����>��x%�w�*�-kUq��kZwt��{�*|�-rĚ|�2<>F����	���0$��0����'��}�W�s4�T�{Q[����9�/�
�F�+m��V��vp�P����?�7�EԿv�$��7��35�N��P�. C����O�'#�����I�W���b.�m�;�oϪ2��Wc��k~�%����߅PX�~����<$#Ǜ����q
(��{�� �c��E�W�@���T��E��0���yHv���[�<;�ae�$K��B�4]�<���!I�+����7o�J�ޫ� :fsB��< nD�c��;��pĵnTh`G#���l���ds*v���.���Í$�#����c�n���z�'t���w&���	�<�G�cG.�bsG9d8�Rp��X2�T�=��;—g�Q�I�z0B��3�壕�s��B�����u�T��z3U�vY��cd�_���*�>�5���߸^����o����(7ys7��fs��O����������s;�w�L�<�}+��^wPV��^�����iH�j,���܌���
��ǣ}[+�@cl�7�nm�G�?D�P5�&n�ne����Z;����C��Q�I}��U���sN}Q,�!ܵw/
��I�*�C�
�	��8� ��'wWI[O^�X
��-��V�u�
��-9yOT>���@����
�BV�\

��8᪆�����6���y
P&�z�rCȡc�.�Ã�[���Hu�YV�'���a]����Y��Ci��6�:�!"�8e�ױ��X�Pϙo����.�k%g�X�B����~�D�4|\�ʊ�$��0����	����J�����([y8$L��\�>�!j��ʲLŸ���F�G8�^_k
a���&y��o��S[��r� �ₓ@��T\窧:=᷄Z��.�B��6�:��	/E}�G=�s��p�#�yC��~c�X�:�)^������F�P�p ĄBWH9�z���XMV�܈����#l-�; c��0�Q2�ܩ���2R��§�$�<ruȚ��u�P4��Nl��	�POd��>�Eh��X�eM��4�
ly��X���Fk���n��%���4��^%����(VY��-+8֨��s�yڝ����kY��C��0��K���[!9�==2S_����"i�l,���s��}���A�[�+طZ�خ�Cᱱ�@��?�β�|��eQ|�\^���k�;���J�=��Z�o_�<�H���G����Py?�%P�f�y۸�

�~m�=���t_y/�x�p�S��VV�A�ݶ�]}�z��*�M;�&_��f���v3��ޗq���U�r���Q���_��g��/�0��'S�����o�f�H�j�y�t���v�u�X~��}��w.�V����`r]5��?Z�P����]y{�e�2���X@^�S޿�[�~���.�z�y��c��d<��*g�W~/��`�g�:��5�Ց�����X���#��P_���<y�q�,���5rt��W���ABt�JT.�N����\|����~z��s�$�ox��'���hG<.����,�U��x\��K֣O��◑$E��+�d�����g���
P�=2�X
�@���� �$9��{�#cl�\�hA����;�Dבoc��{^���"����8d9d5d@`���I�C��I����pB^~�$�\3�aH�s?�R�����G!��0L4���]��A7�D����r�%\7�[���1z�����{�nt#�VHt.
`���p�Σ�`��k�n*� �g���]���tV:�F�P���9AyFЇ��S���%1�Ac���q��� B�m�LxK���6��@_J���
�y��k��}Ù׼�z�(��f[����(���}ۃ!c�<�:1����5ͩ��t�^��n���]��e�( 	�땏F5��ڕ�q��zv�h �}��.�e\v��}}Ӿn��l�G��P7�f>��JmӢ2�0�����5���2�[`Hl5�۬��qo�Y�Qs��w�pۄ��a�2��e!��e��U׏;�<N�v��sx@����N���{�+��S����9��Y�0!�C���3����n��uvM�J�p�&!�4DUv�v��tw�׵���"gAq���`�z�Z+OIn�;,�����%�A��.�y�JVb�c�q�ə!r��o��B	~����\b �;IP`��c�1^`��gT���`~X����u򀨾_�&��+�9B/7B Hx�RG��2���ܗ��^.9�Ԍ��$���q�c���n��0����t/ʇ���?����ݰF���
���t�A(v@(�ǯ�گ5�������̯�
�,A�nmӘK�[�v�De���n�#i����o���~�#�>�u��:�C9�[�+��XeS�_�AY�@!��j��Q��uZ�4�v�gK�v��y�#nf���{���~>���ا�􌮓9�����Wҟ!�xW�~��𢕯~�����Byx��o}�X^�7��^�S>��?R���)_�6���>��ڿO��8k�O{/k	��Ziqc���ޭ�黰�y�'^��0�[u�<�~� ��2�/��j�����4y�#ߏ�9͞������gD���]d�؇[ߵ���������Z���,k�X���,k���Q�LT�֞J��7x!��rw�7(���t�G�*�'�fF�r���!���S�$�#��^��?�MM�i'�B‹����0V3�A|���%^Z@��!�X�}F��B���.9�P0-�A���ē�kS[���u�\m��C�TI���8�U?��:"�-/�HH�ya�Q�5�?8	��;�9��B�ҧ� �,��U�����B^I�S���{܍��Ӛy�(K�L�}���!r�x��<��,��ȁ(��p S�l&Wz��f9%;��"da:@s�+�$�y'�s�Ӈ��=���$QC�P�r�bPI�,�U�_Z�y�X��I����jD�Ģz�I�>:"��w��f�fƸ����#\:m\�ӹ��J�����麷L�u��T�g�����ry6�DO�s`�:�]�{`���k퐚�597mO�x�|j.K����״Q-���90��c� �ށ��k�
���j�w�2i<ov����#6�2[_cB�[ܿ�1��f�繎��BUM��k̇��z�v�����>9�1V��c!�<9yI?���x�|���<-���Tz���a F�S21(_w �s�s��YlPι�Iμ��Y�(3k���!�gW�ltFR�x{p�y7,��(����#,%�Y�*��e`�r�@���1�<�_>F� džʱ�rf`C�ve�����ͬ�8j#̏g��y^��@����@�sv��\�􈡬���� ��Id���\�e��%�J8U�L�g]���X�{�>\�n�5a!A�,�|��c��y$�����bn�T�(���<f�?��[m3jX�J�����t�E���rm$^���Ӷ�V�ħA1#���P�3((}T�<�֒�N�wb�K�$��7ET��E�c��W
+y{����~�������H�}���Q���DX�X��/����ͱ}r��8���y�G���.YQW�Q5]�a���*����j��]�
��O�q�^���a(��8�6��O�w���&�ɲ<�$��<�����o���sδ�{&��/�?���g���?�������j�ޮ>�m�c�y�;o�")��{�ॸ�ܖ�#?���l���O��7������]/i�{�}��x����0te����]J�*��j���{{��<f�~�н��u{v?۷-���߁�����4�����KI��'>�W�v�.ew_{|�
��e���C��#�cBN��C_/#�#�}���,�3kܠ�ϝ����u�=M��ݓR�Oc�?�������7��O,���cC�`��c�29�XMF��|��V[��:_I�t��%�z�O� �o]���H�6B��Z>�#^S!��CŃ:�2��9��\�E���s��\@�����
�W$��y����'/�?����C�/%r;���$�e��y?D�Jn8�@��~{rs���(�M�1��WnP����ן���n��G�0n�Q`���H���f�#�Yǻ��|�'�AF��ELᮚ�(G����O7�<��>�=;��a���`��Z�� ��A��X\�@����z�H�-�+�D����)��L6�Ū7?��%���fmvzA�V�0���zD��߮~=�r�f���lؽN���WKrŬ�)eٔ�3=�=}~+�sd�oIj��h�(���V��1�ܬ����L��$����4�Z���QC�'&xPO>R���g��&�Q'�2�P�X܃�%��E���؊���n!�(q�?���]&���n���4�� )��q�	�u��F�~2��w���Ȃ��| �T��ϙ*�Sׁ>����k�<���QV d0�3�H�60��GK�:�>�\���x܁��9���|��_��3��(�n�D�q�=4��pfQ�BGVAHL�2 %_޵~삐�/��ؽa�5�I�*�5~��\I.�O�s���G�u�[�&+�v���
��W�
o�7�����,	կ�/��ʕj#�A��D�$��Q^ ��?,#�����Nj���<��w/
�y��D�d���/�&7����S����i�'�
skm��ǡ��y�$�:`��,�b�(�z�X�I!���_����ѷ���>��|�[���V-�+�I�kK1Ϻ�W�뻕���O�Y�
�R�f�蓚Ł�[U�]t�n����S:��̽��o��C@ob}�N��1/�����rv��q��{��-_��o�o|��坯��?(�ח!_�����7�X��,�=,��w.����\�ϥ����<6��a��q��.C�_O��A���n�w��O��,i9�治�:洅��hK����.Oy=��<�f/�p����ړ����Ѫ��][���������}_Y/����
�s)_֖���?���r�3ZoB��,<	��UW��Խ���[W�9�] Y�/(>��%�3Rmb�tO��j������Qǐ3Y���<��=tdZ���E������.!����o�/-���O��ޟ�Z�d��{�k���U�Y����X\��k 
="��Hd��&�E50�tc0j�?��Հ(`��#aF�-�ٔ���&	���K��(����kddƾ�����?���v��xY��
{�����������9�Y⡹E,�
-�	J�-`Y���>4�9��t�������jC�[���^�Wc�tЁ���5���
A�-��W�$�	V��~ܳgh�B�w�49it���V���)�Oe'��R�Z�O�
�h�k�_�� H�#�)~���PZu	�����(�9��4�c�D�|ʈ�+��k�D�&�oQ��UTZY���G�4��7E�%o�|*�)wk�/D>�KJ��k��[k�<lU�T�;��GiV~]+���G�9�5�	ʬ�e�!~̠�*�j�Om�˞NT�6�������G^P��������E���T�N˂�%�4(���k-�M��[��ň���k�z);&���|�Czv<0��a:6�P�Զ-?�LN��ê�Z¯m�����DQ�}�m�>�D��j$�1b��<f�xN���������3x�d�cA�9/qb��f�Obn}*:͉~BT��Ql����nd],pXԢ��c�c���"�r����M\�����8�,e}�A�Z��)���%�Zm� Ԧ�
<�~=�bu(���?����R�Ʉ��=��釔��x��c]��|k�`p 0A@�H��F�:������8�K``��`�8"M��;P�� ��k�	
:b[���	"O�&2��d-GK��h�QA���0�xt��T�~h�ElR�4r���>�`�'q�*���^!�A&�	F��l�=(�j��#�{C�S��c���!����F�Z��/5]-�on��5vp�b�
�,��k�1��^hX:�]�jTF�L��Š,@
���>�噴`�nG��!�	�
��<�9\VA���.�x��|}Nn�k��
�p(�KA����5�y�>֋P��vn]K��|��ܺ�B5�u�%
�NR�a�sH�o!��}��
��Ƴ�</�[e,:�W��훷����A*s���$��N[��%Go�q��o�WnX:�ܺ�ȴI��R=�y�
��f�N���ny\杼C�W�w��}.�{�������8�����������4�ƢL�_��|���{�o�y��w�.��;����l�*�55>��%����X�دS3�=X�4����?���LH�kJ�n����c��	P��T"��XGk�*���

��_S`�Z�"��Á>@!�g�q:tc����[�GY��u`-[A�-gi-�|�I8�8j~�m]:�}B�c�t ��螔q�v��i(�8Gz����4�Sy�0h	�-�pk��t3�_�:�6k�%@?m
�WH���W�Ѡݑ�@�8�#���?��--�iա���.���-�����{#��X��`��*ɹ���L�\��?Cjc{0_]k�s*�1����M�H�q"}_�&�h�Z�bR�[I̎j�A/	��x 
|��V|_H�<��K��j��Ev+Sk������B;U��	��&jP����? W���J���LB�>��G�<��0���L�>\���KeK�e�;.H�X^S�C^�Le`\;)'C�q:��?����Xۼ��������,�[���H>����i���Y�8�'�
����FyT����ZM?�����x���iH�$ؚ�4�M*�K����Чm�%,�x�~���_�R��x�Ⱥ��M�ޟLH���X�v��g�8��=sRû� L� '�M��(c�e"ȁg�&�L6��B`I�r��6ks.x��EU�@��D�����a�Yǔj;�~
�EM.�Z�G����s�9�(`�W������K�����4�%q�
y|>�*�q�l�vKp��/	G 4!��ޟG��
�WXw`_�7L̑�Ώ�2�F"�A��
f�&��V�j��Zo���1�Y�rC]V!�Q	M+&���T��Ƈ�`�0/��,_k��2%d�P��?�)��:�*##�|Xl�a"�FM�H”9�7	J���٩�=�QG,U|�D^�c����'Ê�`|	T��2�AF^
�8֡0C5
�ԯ4�v�`�и���
	����l�A��Օ �b�B��AA	�w-@� �_�oQl,QʈׁMP��
�3-K�W�p���9<n)"��2υ����
�Z�1�N#��Ȃ�(
� ��\�����f�Khf�DJ�}�-�+���&US�ٖ���X(�&�O��rC��2-��B�\ /1W'~Fc��}@�|p`V~%���k{W�ڢ�����e�%J��4�l���k�l�Χ��e�h�:�_�_\�Y�4��[Wm���u�d�h��g@���[@pfjt ��g3���ݽv�'G�F�]���7�5��!h�̆������=��a���y�z9dw�۔:�$��7�_}�>���7
B�)Y�[����I���H������	�/�A�~��ÏεN�u���;w���/uC�O<G�O6����r��ud���I����H�aV���j�4����V�:U֜�o�W�G�c5�9�
����+�O`�. �cy*�A���p�UV ��Ɗ ��(�Q�41���U���%c}��!��������h7�]y_p��!p���H�D:���`Z�"Κޯ�h
�4�Z���q�.R�}+N���1��"+��1���H�2�~.u}1�h��3�o�>hZ�KaE��"n�p=��º���cr��']M0y����p�O�.x؜��S�C�Ax]�0�� ĭ������n��
)�;�҃@��ؒ�D�5r(�y~��㡼g�ܯ1=���}	��3ƥ��o�|���sk���J��g*����hcx0Qvz��z5��̣+��󄺴jeL���|#G!G	��穻�h��e){�ue2x�z�{�@�e�r�?+��A�[3x,�=1�u���s��
���
���"^��!g�:A��+�)gc��d�1���k�\���e�iۯlE�bm��߮h[�aU�}�Sr��hט,��Uu�qZ���ؔV�1=�֟��-'����$���Xy�ԪS�5[�g<fm�mg�Ą6�+'S���
�1w3��Ƀ9�D/H�
&L����U�M �<��<��v�iAZeL�j�O�yb�1��a��%ΫVA,�&~)��;h���
SA��U�>�5��ȕ-BZ�V��њ��5L�U�`2X��ոHnx?	d����a�[���5j�$�X�b\ʵ)����L��+�����+]Y�+9�e�h]W!1X_�Wj;���D�� Gy�sk����e��g&	���п1�Z�������$gpð���w��`��`�<���`��5���Մ��ELfςLD}N��7�#�s��2h�Q�י����R��.�{C�RS��y+����(���L2�a��z�7�9g����g��{p�R�ci��/�
h�-������
E{�{�u������s-��[��gʹ�b�TWp��S�Foƽ!ܨ��.�^����r��`�:H;8�z���o��Cp�8�% ��5�\0�^�p/�r�"4�v��5[<��]�x�֎����m{��G>�u��6��m���H�6A�"�Szg=I�Aέ��?�N��[Z���?c�;:�{�niám�jcmf���?���������rBx�l��y�_ie�J��I׬<�V���פ����oܲ�{�˷������ \��V����U��ɮ����+m����y[;}��5�nn2"gֺt�C��Lc)7ڭO%�X0(�q�֩Tp�V��M��s�d�������c'U,f�S���1GǦ�ڟ>��-[i����S�?�����'�ш6h_��7�Un��{l���B2@�Z�@8����6�W'�\(�x��S����pW����u����$.��c��5y��{͉k*�R�tE�!�6��쇕D-c�6���>���A 
��"`9��W���i'�3��>'�A�W�o����]��.Y�#ATГ�K:�I+’��;��*ڧ+����J��#1\�&�c�A���p���
�����jwww^hc���!����cၟB��Ǹ�q��Xj���B�WXH�-`1�6�s��]`1�h��'�ݪ.�������W(��Ň6'_�Z�#x�Q܏6�"�	��W/�\�ɨS��>�	^n����G�m鲊.�xMLj��gD+f�,�뷪�?n�=��jo���a����x���q@��e����Z�����q������.�5�i��۔�x�D&��~��G#�����wV*G��� ��ЯcWV#�$�ƒtm�u)��Ǧr�%�R��Q�����/�V,BL�~lY��BS��&U�\3i=����y)����#�i���;�E��mu�)-�yl�ڗ��Ynn���}~z<0=��8A��/��Q�؎���`�שy����L���N`�\�N4y�(�$S�1�9^�z�ɫ�-�d'��e倓/�f
�S)&�\7q:F��cT�X��qoŲDp4+$"��AE�^��|uOu���z�EU-@b�%��U���x��c�@5����-*@��ژj��歉���9Eh'{]j�0��I%��c�,�)�W���c�LԀy�7Ρ��x�`���Q�9Ԩ�(4v�
�
bH~u[�c�&*)ȡD8����D���6B���c�~o�H���^��L���,00��c#(�o��=O���O+������_�C
1�ǡ��&�`q�0q�dy?8V��T�
0<,�88&��$��r-�	�Zyq
w3�C���, ��mu_�@	O��!�h���m��!�N^���|lso�Q��pBpu�Q�w��ZML[��*���K!AҺ.B�a�^���4� �Y�&�߉8`/������.,H��~;
�p
u�~��|�ԩY���UCm��07�	�Qcc.R��8��r�u��ܼb�|�����o���b7�~��~핒��Mz쥉�K�r�x��@�k��ʝ��4����qpc��l߷��#��Y��ޗ"����<{�^��������}~��w����@�a�C�����]��(0Fr�R��+��9<:�"q��+Wm��f�M^�wԃ�i^�A����q0z��}�1*rX��<�(�F㥬���R[í8l�
���k�M�-?���\I���2W�/|"�q�N��e!��e���ΰ��y��񯼟��=��'�1f��n��KB�'@:M0\�:+��X���<ZF[���ϱ$�����8-Ph:_�A�Ś��3�<Zx�
�9D�v���u�b��c�s\K�헯����+��P(����9�AԊ#�6�
Z~�Jb�JE�I��:�V��x
��ՕЃ3��>�M���U���G�#\X�3���ֻ=�J�\�:t��r�Oh[���Q�~^�/hT�{AC�~Ơ�B�i��A���wҠ��p��z�k��T��	�0:iuZ[�@�⚉t�ދ�8��;+^_�$�C
hp�|���V���ĕpҸ�
W��[`����`GU��k,��;��I>�x#�� ���|-x\�|0U��!���zZ�]U��9�/�G�	�!C�[�óu��yDe6�������97��C�tUEYJ��B��� ��qz�ˏ$�ʣrȉL�$�l�r+�71i>����w��SY���䨖Q��s}'�7����)1vO"���$�9zͺ^��z�i�v�^�����q�[���{�}J�Rˊ�5ɽ���<p�<�QH�i���}���!��$��E�x~�N��|s�ײ���5���~�Z����>��f�����\����K�5�J�m����O���	ZĐ���/ĺh��ٳItc��E�&"��bT=3_�UU�
E�e[�`u��I$S�`KA0j�'�v��O�b�|��D4���Zl�U����+�ObF	E6t���jv+�(���~R�xI�iR��$ꨕ���'1ڸ�����ct����c2 �A�?�Sš�j�Ab�`�j,a�ep
���9�tc�����1�0d�.iOwS�_ԡI{�w��Y4�g�j@��tY��4����� ���<�y��6���O0�I0���S��ǜ��`As`@[�e�EL�Ę3Kk0��Rk��8�h�7�I�e�T+��ŠC��
Z��p��
4�(�v���w��2(��@�d���
��OpW��*Q���(D��E{˰ఘ[vpL[h¦^������@(�>��-`!�����E�r�S�r�y.�*��{7���o�W_���vjq�6�#[�����ٹۻg)C;u��9�B������
S�N(`��%�mk��_� ��E�6��J�{I���8.�֬���7�H�I�UWB�Z{�{v��]�`���ݷ{�Ó�A�n�#�n�^@�_������B��18��]Q���=ˇW	���r��oܶ��Bz<3XL,�*}A�9�>�pq�?k��e��-ܽ�Qyֻ�C,�{ww����e��<�4�����lY���;��~���8�(��=΢�������y���}8юe��N�pC��}�Օ����v���:Jz@F	���>�/�����s�&+��ȫU��H@�Gfigz�#_휠��rL�%��������_y�-�q嚻��s�]�|��z��2G���D;�-2~���ߨ�q�ֿRk?�c盉�c�z)
1=��2�5[
q�
���1(��-�n1��g� 	�;خ/g@sZi�(�k'�J]�x=���+�)���ӭ0�%.i�c�u�^���|ȇ�WX{D�z�K�.�:LZ�cx(�
P#��*�7C@+�֒�s�9�%�A��N��DfP=�%)���Cԅ�0���s��AO�Xiұ�N�i�R4"�A��t2��43�S�0?����-hv�� ��/��F�Z��?΁���U�<���7ʀw�%����9��6h��l���6�9c�l{�JgʛW�W!�D�l"i=�Kd?fui�-�@;�w*�E��j�C�Wyg�%tipC]^�yy$���s$�j��,K�ti��𠫫F��"�9e�)�pPR�<5��
RP�.�S�$�.��h�ʩ*ˡ�
��`_������KtnE���G����~4�N�u�z���ąUY�L�L�uD��R#��w'����-8�I������^p"�!5_�#���{up�Gu�ά�NYۓ:���
0�Σ�elj�C��)M�q���{�1�uj��u��<7�Sӗ���	�{8m����V���84[2��Q[0���2�i@�G�/�+��]�p=�}mi*(9���Z�h��5.�{,����6.>�ZxD۾H��%�J�{�\���`�ʢƁ���B�#!0�?��P+�د婝E3�)��m���P�E	��v�U�ݟ��`���"QF"M��VsE��Y�7@$b_bpxY�jNL�T-6��@b>�`�*<�C����������6~54>ˀ��{QPL~�	B��3����_�+>����2~�%��T�`�`���pn	St/CfM}�=Nl5���y�w
	�u���<�䘗������y0����A����9\R�~(��9�}�Ԗ��^�h�m�-�m o�0�{�6Ԯ��#�kl�h�$S�k�\��=��rᆀ&&���w�V��ڀ���+qέ+($a0qTB�3��p����X���_<��CDP�֣�&���[����/����� imޥ'���|��]{����#��N�͋P��;7m��v��>S�;���_�4T��-=�jO�G#0G�FR����+C]���9�qX���/x�gk붿�[�;�/�P:i��Tо���;]$�ba�q��Mפ�xȺU@�"�	�N����Z����
��V%�	3��7/� i*�����j;�~����ݴ��x���w�
OoDm��"�:�m_zF��ǿy\5����)�����@�z�I�� �}��u�w�c���+`2*��Aȶ�O���U����y�]-4��a�̈́߀��W���XゔBG��u,�V�o��{K�����g���P����:q$07BX��&��8
^���$�"�Q���wE�h�k�[\*���� ��+�4���q��Y�S������hDE_�V��H
kӤ�]t���5�M�P(�9�Qȯ<<c~P�%���Z,�Y�]��?�����?�=E}Z��Vz��U�ҿ�-t�[�d@�������M�:8F�iu����2T>b�;���C`������|^�JU�s5��bL��kd�q;�w�9�,�wFX�-���|w:��X���ֺ+Fz>\���l]_)ء��ȧ�=�G"�<xa*�E�����>�Q�φ�x�H;µ��뷢���x���zTΤ�+�E9�ѶT����H������^3Ġ%�*�6��S��VeIT�U�[�ジ_�q�ZY�d���)��4�7dt�B���r�/�m'sd9�-F<�>��G��(���5�p+�Kb�������V�ˊ����[���7�9"���X)�m�)������!= �0��Z�$m�G�V���W._wՠ���`�ꖂ:�&y@EHR��R'�f"M@����>N�׶!�i��i�!�Gϧ��[�-ӂ�T���
lh��ԥ��!L6�Q��젆���k�9x^�y� c���y�q\��X��I����3����ì��E�5���5X
�GMs�3�š�̽5ex�r,m2�\����f��S�;S�I+x����g� �j1.�ZmD��ϓA-1�h�}0D�ޔI����{��Ջ/��ZX,8_E<�Sf�ad~t�9�� �1:�s�B��`�J��S��s�CX~��]�O��h���pd#X��ij�jZr��
Up�P��"���'gZ���鿈�Q��g �ҥK��>ЕC
W
s5�~��F��&��lK�bkd&b�jp2!��1$�2��Dj�6�&�'쀛+�!���R`�2~T��Ϻ�ʻ@!ݪѽH�M^A���{�����n7uO���?��]��G���]+���3v~kf�G�_���{�v�ܣ�9_�{>�1�x�6�k���X��I���*fu�Կ�tBK��˙t��m	�o�i)����fs_��1zq����Կ��l�x�M�
!toY���[����);���bcͪf~��q�$�+������{�rq�sc�9���x��My��9q��]D,U��j}s�����ۼ��ٚ������@������;\@��"������w=�[��J!�����q~��^c�������_��y�	;�Ϗ���Q�޻o;I�k�u���)�z
k!k�ʓ�YO���:
�� ov&x��i�+��A(�pJF%@a�Ur�<u�5�fht�˴��;���|��Gg�`��O�z"˽�x�oB�b�ڕΟ���w�����ȝXr:�i�S��V.�N����Ի�ڛ<&
sר�m��u������c?���źQ֔��Bw�����:�F�h��\f|������O��%uyBS�Y3�(��ؚ�JG�wIy��+K`�kR.����NZ��`���u�i� F
�ۈ�Q��:V�i)U��<�+y�S�A�m\`K�-�;��YOiO@o� ����:z�>!�y$�C�~��;XZ�X�(�e4�l����$��!M(x�#�1U�nmY�q>�~|��P�Jk8�rt��e��7�+� �1[�{M�B�r�{�gt�����!����U忔�IW�H�G��1$��u@�	�77A�k���E@�dqGM9I���r�O>_�&����(;�񡩑=����FFr�CR�PZq��MQV�.Y�1
j�&Q�M��rM~d�J� �Ai�L�#�U��g~��2�W�ha��6ݏЉ��;J�'�p*�b�4*/��)�_^"Z>W-U�^[d�& Em'��ļ���y�F:��
�y����9�aZN-<N�V
�|�5�F̚(��Q��j�>�}���ǡeF�g��8?֤m�G��
���zlx<�]ff{n�����D�m�<�X1p9'c�_��Y�/��r\tj (��0X(��Z�D�� ��yN�A�u}Am-5tэ�嵯Lj��-�<5�csТ�`�*��DA����6@y���Vj�Zct`���Q�ta\j��Zt�<����n��1B[��El2�� k\�����*�/��"�D�`]U����� �MЃǙHȃh����e�S�#Rj5�nЊ�`�C��B
,2>;b�G-9$��>���/^��4�'1	�	׏`����f����	��=�H؂��c�M&���)�k+�d?�^
)@��/h�d@c/�	huy����+��c��ƾ2��/`G�T�M�z��*�MaE�m� e�`����!�h��њ�����a�ZM������ߡ�
��e��9�2��D�T��A-,���J�����O�
�hI� ��@JϞȄ�)��p�ż���w�ށ�-ܵt`�n���W�m���sk�w���koڕ7_�;W^7+��;���KD�&�忴nO�̢��R��<�Ǧ4	vLv�����&���O��D�F?����F�z+ B�y��r���
��wm��m�G�Dn��#�?���Nx�LJ�gi�T�����>I}�mY����s뎃���fks
`�Q��6_�w������蚩���\h�� �谌�������]��>����]V�R���ha7�.k�Qoͱ�-ʺ�;>��k�p��� ���"`=:<�Y���_�a� ��~B9OX&D?�e�s���ʽm��[�c
��,9�3�}?6;�Ag�P�:���y�w�^�lڊg2��ctO���5D��̩u4�V��ЪӨ��wRy�70w���������.�Ƣ:WS�EXcК�Թygۮ]�V����͜�#��@Eb���`=���~ě9,����ڏ�ϫ���p����4��ײַ;Z�e"~X�⸂Y,
#��7����
`�Ɨ�-s5��H�S��zܮ�Y����O;��}Р���'��OK
�Qڟ�>�F�V��h�����Yb���j?��`q��b1<�b?��d{\��*e��B�
����L�Q���AX.b���2�}��|�T�������&
��-�QN����S�	��~��c��t>�i���O��,��<V�Wȇ;,��8_�{Ч��+[$z����Q��Bă�(ء	��	v4��՝/�B0~ː�:?i�p�!�k=� �h�Y�K��;#��5^	F[��اE�2�V����'�a�Ͱq�;��ϔH[��6_���2�'��Ÿe�w�ۈu:;XېѤ�܅qS#.��i�9���3�����4�+���确��s�g���I��)!_+c��
)���,��GxPɴ�P-mz'��f�c�#����د��*�Z����R���"O�&߄�L�T�2�Z77�E��!zN�r~h�q��f�;NSU�J��Z6>�ч5�����8�y;�y����A̓ʼn~��~@�A\s���6��>����vxLd8�}"-��v4��1O˨?Cd�e��7�u;
*��8o(�3S�B�պ�
P�$1<�<��l�$iڛ�|!H�oM7� �|_j��<VS���}�5U¤������DR�(�8����į�Ȓ	~J�P�S/��	�4�p�>�HbB̶G���6�����<���IQ6���pS���>k����<�b��q�z��<�V�:Ԇ"��41g��[k8Gˎ���dDp.���`�`b�O��{;(�c�������f�?�
�	��y����`� �"4�ʻ��Qی`@!����}2�x4<�S	��И��3N����{��A�G����}0��!M?�P&��>�w�=9���zb��(NG������e�b�SlQ����659�hL"ApA�J��5�S�c�=h#�.�f�p/�R��:ﳸ��v�������v���_B�s^S�HOc�!u�N�UEXK�C;jn��N�]����"�+|r���b��lw�L.��!C�����N���cB�|�i|�0:�僃<��/�Q�a���}ĭ��Ii��>����v�Gv��-KG�j���ہ��2k$:��
��@�P"}�:�N��"fe��ݾ[�����T�W9���u�'/�l�y�q[������`�����W~�G��/���?�w�d����m�A������>��
��͍�X�������M.�ǣ-�$3o��I�~:f�I��%b;}�C^���}B|cݖ��W����.\]��4���m�n�����Z�zu�@@��s��٠�w�I����:�X�gin_HJ�7@
�8������>����*�C\��f������ @��ȡ4kf'����Cy&G<��*��-9#f�7�|�
�V�t�p��?�U���k�~yϙ"��aUZ]���i�O��4��sL���EI�?�e=�n>�pV�����<�V�8�ס�=�+�L�!$h��	��ϡ�2�6����=v|oZ�c(�D,����<�X8����@y�
��N++��r�ke��R!.�q.��+Z�����D�+q<_�A\;�8�8��Ҷ���	o8��^>�ٽ߭�<���
`�q��c)�9c%��DM�-�UP�$�#�+���Z���
z`^-|��w�c��҃|o��6�S3&�g�%�M�
؊������a�x��#x�D�W8"}Qق��,!�7��>|��,���)<���y�:*�&�1�1?�}��FT��\��A���)BY�
l;�L#�!t}y�@;*#	�Ө��@�>���m|\�Y�5�����I�y�*�;���2���O��Z�N�؎�
��d�I˲\c;r��Ii�+N+˝$�zf
���Rb���d��rzh�q���鸁�'4c��Ҥ�E���D�h0��0����_��ږ�+��zm�z��IN'������ٖGj�^�����Xs�`���
ϩ%F,(~s��a��ʊ�م�Ԑ�?���đE.8(O0�MN�ER�ZqG};����h��屯��D"q������P3S�a��稵���@>���2\�GAɛ��^F	+5��1�??Xm�2�
#U�I��rK�VL$>t���B?��A�e��v��+��;+���}=፲j�Am�2��Z�4��O`"����G�1�&�l�����<FB�qjs����q	��V����ɀ���3N�o���c�Guq�z+g��������	ڡ%P�j��Z��75�t�E���84�rh��e��o0��Sp([�v!�fj(��2�`��&�j����E�O��:�[��d�%��qp�	Ρ�ae���'�~�Eٸw
D�xw�E��|t�w�B�3��Ѐ�K+��:�6�\7I8�~X�����_��ïO�S\_י��
?�>���>��)��ٚ{��!�:*B�5��?(ɞ�.@˭�_���nۭw\C����;r~@��d�(��2�p��C�,AC�J"�����4�~6�� 3�t�;���q.��]�HC�
�W�nܶ{7o{,	���Ȧ�S�m����q�~[WG�;��ԃ0�-��{��������z�L]W�޽�|2J�7��sG���(\<���Q��z�y�;��ޱ=�ƻ�E��mm�FHol�ٹ�
w����$���G���Ey�G�G�[��}���¤ #n�k#���a��]�9ķW��}�������k�sk�8�{Y0�͍-&X�cp�8�Dp��?)v<(���N��n�Q��Qf���jq�	#��t���+���0t� ~x}�t��s)��ko_��O�.1�����sZ�w�X2����ݕ1`?���o��v�����2N�9�2i�Y�m��o9���`a�_b��1֨��]��]� h /q)йO*X?A"�8��n�L�%,!-K|���o=�aџv��h�J)R��p`@�����uq�<�yt�韜X���e6^�мZ���th/��j�<4�i;�'ء4�@�-)�i�K��,�d
l'��,-�Ic��
_(��4-��!ђV"�ߺ�
��4�.Ƿ�'!\���}[E��Ն�1N�Z��숾������ocl�6N���[P��hX�P
#�DKt����	� Q��k��ɃEY��Z_��A������#��.�Ƀ2�d�w��'q�����#Q^��3��V9
yp�p�V�Q�|8����1>A���:0��*��x���1��s�Q�AK��[��x��T,Cr��u��[*�^wV�,*�e?���K���S�,$z��Jb�cu{��*��1vCNV���Q��o��ܯ���R2�[� �t�l�i�Δw�)3[���1����B��2ͺn�^��S+�[�r^�ē�C��o������'N��3�9n�����c�2<�^nhr�zy�<������P��k�y�~j?�����2�6Qn	����+�˾�f)F���D,��o�`�D͉]��L,B���G�M���"XQ�.��68U���
����	E�`K�-���q�f@r��"����-R�
I�
FF��:<��՝���4)����j��6����S�K�5<�ضf�H$-�I�c���Q�����2���`<$0�
BN+���`"��-�Mb�`8j�4y�$�1�y|���`�Zp�<���k�}�tY�{T&
�h��`��]�i��_�B�Ŭ5�G�|�2ix�d(%��'����q�kQ��űM:0���`6�x"��j0�:��<i��
��˕{���C��
�PS�`Z�S�c��X��׹�̷��HZEF�%R'ǹ�� �@Y���1��C��
1��iB<�&Nm���m�@�.$�3k����8��"H���)�=>���<�E;([i"�VA��}�2�.�U(W�Ķ����>\���{ f<�ã�k�/�]�^�嫷�������O���B��ۻ�G�j)�r�<Q�1�V�ҏ�����:a�C]S	�1��d
�H?������f��-��p��,�U ��_&ܻ~�,^�^�Dͩ��;z�m9o{�@译B �s��������_eف����xt�Vjm޻��v(���=.F9��q�'X"A+?��-�<�� ~��M��:��j���,���}����{y��~N�.��W����0�A�
k�l�X���Z��ݫ��nY�z��
�  �}�E~_�[�U�v��}��݋�^��]��4�_����i�;.�g�N�[j7����iv�O�\n87�_w���F��p|�/S�J��n �3y$��
4I ������b����2��߅�3������޺�+a������1 $��;I�@	�@Y;<N���zH�Z��&X��˵����S��Xj����t�sȧRTɠM�ַ�����4,DA�P�B�肠��(��!�v�^�}
%o��l�\[�P�E@��*���д,ڡ"
T@*O�X��%�N���y�"î���9�-�`�=?h�{���m��!��8��v�45#P$Z{DۗsUi	��[A�;?>��}q��3A�^�ɂֶ�1�<q��	�򠳳�:-OD�#�L���c~(���*|������'��lآ��y�NШ}U%�����M�b��wU^����S������UVV�G;������}u�
���p�秵��(�|��F�L��H�g>��/� � 8�� ��C<[�9�iӘ��G�X!���Q��#�y����RV��r$*�6����;��J�
z\�%*����#)B����m<���n�R�֊[��`���;*�c6�m>A�(��L�y�&�#
&�qL�#�dm,e�$�������`K�I�����m^{n�nz|<0�3��?���xK
ʶj0��DZ[?����״��:q�1�aR֢<󖀒<&�G���kd�Ƽ��%�y�%����L�ɩv�:������/L�+�r�uA>�oD7���ࢵ*y�ƪ�٨DZ��Kf`,Zu i�r����6���0��<*�a2�m�#ڱ��6�hu�0I����Ij�Fu]�<rtW%�4*�F�nj�ݲ^�<
��,sppPl����1�t��%!LwV:�(N�,
�~SD��R�#A@�Ѐ�7jXr�=0�����9��j��f��'�ˑ�A���T��3w&��^�S���Tz[�VU�m0@�Xs��Pj�c��s�m��Z���n�����ʙGh�a��`RK���#P���5��u�G�S�k�+�pe�5��3�<�Ȅ3/Mh|���*��K� ���+*W8�#h�kU�<5+)� �!��9wc��ڜ��<�`�R�u�O�R���B�8N�W�@�pEU�z�$σ������~���լ��1P,S��B{3�[��NA�x饿�ʟ��?�U���}�w�w�Y�ϜZ��"�]������3���Om���`y'{��W|�m����ׇ�w(l[Ug���{���K�(u��&�U����4��+��l��[�`�"�wuU��n�P�����Nm�g�6[wӝQ�U�f��M'}��ĈWv���o���[5�1';�rpP������g�kk��?E�
{���=�^{����m�v�}����W^�u�C|���"D~�K#�0@�}��y��t����{{�����}�����){oN-
��s�D�T�f��_�o���h��'ʵ��z�	��?bgϔff,��_���M��ܴW_}�
������!�)׹V֒/��/�5����.u�m߱����.�ڎ��[k�����J�W<>
���m��i*H��wR�`�H$��,@�a@���_����
��d����h��:�o؟�Q'^/��#X�t��	���*�f�yuQ��[�5�����zXc�2����"�+��;��f�֔S���)t��>k�\{~�;��ھ{���~�OX�e]k@W�:ƦM�\d`]dsX/b��>�2����LQ��c
k	x��iՑB��U<P~�ec��e��a��|����˗/W��B��=�~8�th?�T�@<-���e�p�:Ю���&��M>/��`�������=����n:q
��{�4]�ֵ�A"�H��m����g��$�Aw�K,�&��:(�|���xx͸��tw�c���W�v}�웻�E$�����پ�'���9��|�>'[��.\c����e��8�/����\��6N"y�6��>7oyB������j]'�L._�����[��5|�?n�4�=$<(�UGn,E2��c�SˎA�m�k+<�:����r�v��B�!�n�(3�r)]W�׌�ң�]P�2�_����r��+&��8NZ���Y^=�\hܳ�ʴZp��ޛ6|�hy����r��'����Q�<�
6[�`ι]-����*�<TN���l*��yi�?��T�;Z?۔'���B�0�N_ ���t�"������h��MY?�k�1��~8,�V]K�m&�%!���mj����D�$8�,&�2^\��,�����];Q_�r��F���o���ȫ`�Yt��4�p��b���p*�G�t�e����^Km���UG��[.�Q6i�rl[ߘ�&$$`h�A�C˒�i���(H��&p���+�Vϵ@R��yuA�s�@b&j�s�V$
�	�����2�'�K�#�QY\���U�C-6�?�L�#p�(1���9j
2��B;�䈘K�
	r�g�� F�pc\�L���=��i��OVu<
�o�������R�
[-�ym�uy��j��� 0��h�B����|�k��<�oi�����:v��~)���C}��m�k�)�Ud�G�/�	��ǭ�L�/j���(}���!M(4��0 �B�p�ᚨ*ą��:�y"̩����.�!��ϔ���ɶ�aS�������|��O�/�̺�={�%.�ܵ��n������"��,B���=�d��:�?f[��{��l�g�ܱޝTD���"���ޒ��U��?�n$��kd��1����4�
�A�
x`����9C�U�ݏ�f>����H���ő]��k�y�B�M]~�/�{�w��T�_�u����OX>�e��?��*:[t�W�S�3��d�J�����X (L�^?}��0�z�/����fА_��w���y������o�毷������o��o��������Oڿ������ߴ��cO��]���?W��ס�j/�5��>���
��Lqh����c)²W
@��5?����.�i�}�5�޿��k��ۥ�d����^V_��_V�����_�dK>l���d۷�|�=��m�,%���c������ۧ����y����G~�o�'>���c��=Z���o�VF-��^�.����L�
�ٟ����5�r�ݙ�±~���,Z5�{>93� �������n޺�0�z�I��ش��oٹ����w��O�BS���W_u��\�1��8���}���������y������2~^�6�?Z����u��*�_�Z�S֩S�M��ww��z�_�����3�6~h�*k�ke,=c��N��
��'�G�5�<=�> �c`�y���O_z�'�ě@�c��u�������a�1�q\g#4�'-��6��q�F�F�Þ�uU豎�cm�f�W�-���
�cw�P����(�$\`'�����_�tTM�~���z��4S�[��΃�+�� (G�WHTn�3���ҀO"�k���eAS*�����]ҷ��Mg`��S�4�#�F[p5[���5�~A���)���)��x7�#�0��GE�ز�f����7�6>!��m���+`��2��V�Lc(6�k9ʹ�a����B��ѭ(��)�
z��,�G
tk��6x9�_ŏ3i�M�J�a���[W�U���*��'�*����>$�ۅ(�z"�1�ceR+�k(�Eռ*�+S+�x��[�Q��z]�l�u/L(����`�R��JN��Sy"����+�S�ٖ�}��\hb���5�q��ݸF��G����~J���ff#�@��B�{���nzt�8=tiuLjZ��o�<�s^9S[�e���-��,Еhk|Jie�A��\��n�/��_�x��ҕ��tm�b�ς���z
�\��.�ɝ�%V�<mg�5���bb���%"��碅s�?�z=CԵ�!^����*դ���6����'%�,�H�kY,���Y����pi��I�вĆ���9=j#Z�n�HH)�����W��H��:��R|�uG�9��}��6V5q`��}��Re&
N7�����sU�-A��dIS	��`^�m��;hP���-CӪ0K�.Џ.�D��#pa��b�C��V��u��mj�ز
�&�w
1��y�y��X�e樹FB�&ꨉ?�����:'�`>}��*�1
W,7ø�a�A�`�#8]q�xC}��!ʄņ�oc�S9���0�2�(��,�]ɯ1=0/����4�x��
�	5Ay]Zy8(�],�"�	 ��]h��#H�B��t���v�>D��+���`}��EI���m+w
\��{��mA#���5�_d�W��;ʛ�e}=ۭ�}�݇뜙�����Ρ��ٵ���vpo��A�w����vt���.y�xɕ�)��T^zz@	�I���4?|�U���!��N�zy���yensh���.��Z��K�Y��p�-�`�o��l�?��A�
Ą0'J��ֆ-��x�x�v�]G�>8v�MQ�f�̇+��x��ݺ��]{�m�/c��҇���~&�
��4s�1�ēOz �^x�^�u��>�~�l��|�?���O�򿴏�����/ۋ�,Њ �?��\��ǟ����d?����~�~�~�'|�9�{��ȏ"�	,�&��û;_���
�>�O���ۯ��o�'~����?co��C赏a���?��3gN���1�g����o���ڿ�-��'��}����FZږ�0���D�SF�����)�zKu�=�b���Ǻ������wl���]-�›/�v�n�B���Co�@'~�O�]���>SXT`�\�+2�g��[o���a��M�\F�<bΨ}ɽ�����L,�vw�7=ʺu�c����t�o(�۹'�k*��q��"�π�~'������[֮s�{�
?�yY���fq�H��Jy�g��.%�ϭ�'ء�e-����m�܋��8�i��H�ea2-�����5$�{Fs��_:��a�]-9v�~R+ܸ���[Z$Uda�
�7Z��Gqtܝ2�9�����VA ?�c>���
�#x��!`���4 ����.�ʺ�q�$��TRR�3E��R�p�V!��7�v��l�c����b���T|�K��G��rޫu%�~+ȁ2��.�XƷ(n���qmo*|�"��19�-q��?�Z�?�o������|4�o��ϋ�+&u'�q6�m�U��?�;-�n��<&�-�1d;pLY���UQ3��u�G�G��j��n%vjݪ�F㬊��ޓ�~�Z^F�w�uH
�ڤ2�6&�5�,ε.�.Lx=Q���^z	sKZ� ��ޏ*+�?�
��z��z�S�?�M
�!ר���/���g[�krh��I�o�ܑ���B�ܶ�V*�0��$�v ������F��v�&�p�C����
��$+����s�5�`5����'��	�mC�l�ؚD�M�`��1�c��pj�o����9�jƗ�#�uSu\‚Dz��h\a��W�>"����۩��;�i����·eb@r�`y,� �zCcvH>]Ve
XNp��4W%a��M��[?�ج`G��f���D�]쫩�g2�sU��FXs����Aʭ^�O�*�cOJ������~b����f��U����w�ю�� ,?f ��[nl`�&�|(��H���İ<�`��Ne:�>��&��j�kj�1��Sa0�)�a��eUh�9���Z�L�9�%�@k0l�C�uA���yE9�3�ZP���9��*
�D�.8��L4�#��j��|����;���3((�C��}X1�w��5�ښ�8�>��&D�
4(@���� �)�V�>�5���
��V�ˍdA��u�E
Y�5F|\x$��~��	n���'�y
�覍��	�h�X}�_	W[���o}��=�ؚ�y�{��|��E�5w�<�����v�T��m���r��.8ܷ�;W\>-z�
�[�+?Hhן?��q����ިM�MM�f����7���b��G�ܨ(Sd�S��p�>@zi�<�2mA@{�����a��][O��Kxۅ����y!���N�D�*�o�Ǿ�E�>�����=�b3"���<Gy>����y�����v��+v��7����E�Wl���߬���L#P�?��7o���ε��(��o��o��Q{��G���Zւs�����=����Ʒ|����<�B|�?!��;��g��}�=g?�C�����a���~�m����…۰ɡ^�:��A�����~W=�ڟ|�����wv�S���g�}���.?c�Ϝu��/|����i�/>\�xh���}����٭S֕����ߦ���<��9�s�]b�a���±���
�����IˣVO�������;v��
8`n���R�sĻ�-߄ay:>PN
|�~a��ꭟ�q�1<�>\V�<��.��~aM��G��u�b|8Xb=��җ����Sb ��Ɠ���l���x����o����,��D��Kڏ���7-�{��c��"]�|��:ƵG�}�gj��և\������.5N��X��>�(���c���EK�?�X����k>�ט^G�fn�����ݪ���bh�
!�Z
��@_���ؠ���B
�.I�t��C~>�*7މ_�J'��R�X���:�&V���j�1�J�p�|��
��dz�ha�a=�u}[�/q;j\;�]P��X�0�~�Q�S�W�z�
p0~�� �Ѣ�^��B>h6�d�^c*���Z���ke��^�������+b���Ha�/y�m��2��
�Sݏ2u?�ܤ�}H���5y�ֵUk��-G>*��}���7�gݪ�*�$�
y
� �y�g�M�@��e#9Ix���c��Vܼݢm��pN�i�!"xAOr:�|�B�~�<	`>r���ޗ�V�}��T�W��k���ѵ}��2�,+r�% AϳM�HZ�xM��%�K��~bTY$�U�)��X�z*7Y�u�e��cx���f��!�/�O�Xn��a{�N�>�$x�@��S���a�`T_�cS�?�<
�h'�Y����tܵ�~�}������?&Ldܨ���h}�N�ƒW�S˫�ω�ú���Z�q_�GУM���WQ�U~q��p��1M��%��>|S��<�)L7��n���#boPK�27ԺX��A?�m<�քU�uD��TsU����V�r�ɢ�:��J��1;45�|���
�'5Sf"67�� ϳ,�T\�Ɨl�rO5�J�����i��`9Z��Y�+.��T�����C�
@����!�,�%���8xQ����p��/���҃A�ĕ�;��
735�g�
&Zf�"0�0"Q����8��3�.�IG
>��+0��������l��b]�$��GcA����#xb� ����9Zw���1bl���7m����i��kx(A[N��kS�6���ft�A?�Q����]���'���sY/��_C�3�
�0H@�'B"�׵^��F��o���+��O��1�K7l1�G.��#��c�<ҡ���eϞ�tt�ExY�����ѯ��2�A�l̓4g^-���bѺ��~iB@7�7����10��-�	8w�'Q�<��^p:+����uv��6��������v�.���t�:s��׬+��3�•�̮�q�;�{z*,<,�5�
��}�^�P��֦!8�C��W��O��}E�w��"�<�g�-���O�^�X����_P�\g���[���/צ?��ֿ'XE Έr���/}������W_����/�������߲��O�W|�_��޾��վ��?b�{�u����A}�s��˯�I�ٳ�Nۏ�'�v
x��Ge���1�������O��,��/�J%^(�q������Q��W~Ծ���~�>i���f��'���^��~��櫿ʾ�k?f?��S���~���I�~������?m�W�rA�؛o�ϥ��~��;�:W����+]��2��"��9�۩����fpO}��3�N�3�\��+�9�;Р󇰖���5fH9~�������X��|��<�s9�ӛ�_���.,*��$���\�`]���0,>��[!�T�!�76��
�;|_��N�sx���t�Mwk��u��&]�(����f�,�Ͻ���7��{��s���о(�k)��d��?�/����z�Xjem�H8kVL��R�!襻Ez�>��X�c~@�FW�\�b=���]��N�s�WX�7Y������:XG>�+�vt�IW�'�KwZt�I���k�4��t:4�?�6jb~8�D�������ſ���}�e�佡<ڇ5�Z��:�)��~�8���	���t*,��EjL� �V�V|��n�W���{�Å͠@�Z@ӺC�~ �~K�+P���׸ mBxB�-�dF��a��ɯh�@$�|�1$�Z�3�ep�/��w�8 �r����T�SWWH+���.��T�C��ab\J���7fj�sk\*J^�������5����Gjem����V�
K1<���ƛ����Zx�L�n�5>*cx���)��ʍ���ʭZ�.�/�@&~؍�kR!�M�v���kb��q��I��-4��0���2�*�l�Q��us���:J�ź4�,�rSJK�%����)MȊ�d�)o�Ѷ�0-�/���4E��iKc9)�Y�ڞ��>�<�퇩}��$!/�j66)�Y���b�s1	:@�s�<��y�!h1�Tq^������F�u"o��N�$�Rr�"���Sqx|*09�����"�Se�U�.�4\�0�v!����&��ם
��A�ĝUM
l4~7M���Z�b�1H9�҂c�7h��9=S��F�L�UUd
���I4
��}gpr%D�$��W��ǖ�����L���f(���I-ءA��9�@�����)��L�M��G�Bgx��P�^��!���ϯ�@��
8G�10]+�ˣi�Aea�fl��Ab��<�e�G0	(C�:�ൂA�m�5�e����9�<�'��~��J=0��DP$�;`�2<.����r]��/�����5;�1�f@�B_�C���'}��i�Q-�$ +�LWU.�u�-�j��"�눘M������7:3`���4���k�go��bq�o�����?�����Nm�g���{ٴ�f.��.�"��85���*�� ��"D�����N=�=���m7�9�a�W؍[7�,\T��x��o���94�shv��@��;wm�d��-֒�7a:�^�����"�=�x�=��Z��#�����2�����w
2_��1pƵ�a0/�U��b����:���]GW=�mm�J�vP����#�*��#�����־�	!�}�tT;ٵ��.��=��"��.��Q��^w6!���Ah1b��u�P���w��1������߸���|Ҿ뛾����ؓ�=n?Y@�'yԾ�[������c�A�!�����?}�U;* �fi��瞵���S?mWn޲��|��c_c�;�����Oڏ���/�(�?�g��N��r��o���K��}��W���Kv�7�:�����;w������O�_�K�aO?�.�.sˣ������?W�˞)��?�ٟ��D�s���-p�݀=��݅VZ8���;8	ÔN �'<����R�����ڕP�@��ށK�]�0���~��)k��Wm���\�ni|�$��=����E��>Vk�g���Vta�b������`,������ew�|c��~\.���[w#~G`x�������Z������ �����O��V�Γ��&<�ܾ�����L�0)
.	v�p��>�C�G=Z�Ե-֧v}_�E��ke��>���3�GkL���u���@B�~#��]U��P%l���砕�����c�֏m�Q��Qh>(�tB#)�1`Io�tW以.h?��R%�ۘl�˵:�56iL�+��J:�Shڬ�<����`��&w�Z��&>
��E���
E>����<��+��<�$�
j�M��܂,�幷/JU�k*�HtyE`y6^|�EJ��*��1~�H-�A~��Z|�O��y;�%HM�>�wT���OT�<�b��Kx��"�UԤ�u�O]�%X����?���*G���\�h܎)��6ި&�/�?rzPv�*��0_��1%�Q�Ъ8�-�
n.In�^#����h�*]h��0�m|�Ufwap-?FY^�Bs:^��Wjd���O��9�m���|���i~䮣�i�ؔ����I�s��Ss�?L��C�V� =h0N��x�`Li����|�#�����Z�P�	 ����^��A��/U�4*8�/�%�CLFm�%�G�@��V��2,�2��V�z%턮����2Z��]�?�}���9��a�I�9�ു��EOʺ�F��–HYpg
t�l�n�����ۢ��VC����O@C�i>
�C���g'���H���$���񼸟"qD�#LcM\YU�Zh-�Ak=澺���JHB�
��>S�p�;���P�
��*���`�ܠ��PJ��
�tY��$�I��@�@�p.P�cU��7�
��jC����*��L�[Z�S#�\)�O�̌�Kvh�|e
��Af���:���.�`����Ɠ����Zepo`��l<�;���pNK��� s�{�8vTK��F�+�g���b.��u#�Fz��g�������q7p5�����ʐ��
�j�m��s�վB@��pPH���B�`�J@��IhjL�Nf��X'i�Q	?����m
a}��eFݧ?�8�(��vf! �Ѫ$�;Z��p�`�|��r?����g��ic�Q��;�����e�f.������=����4��aî��/e�Ep]��{�s�Omv��ݻ��vP�7�wx��D��e� CL'){|޴�/"V����LV�H0�"hL�4��;w��k�l��+v��5���+�W��A���i@�d������3Uꮴ�e��������G�W��Y�f�;(�vA�Zo�BѸVW�@!��7��>�:���l�w����k�G����I+�����l�|��/^�;W��A�J�ܻ��A�C��v�՞�3�=����P<��
��^�>��3��k�;��k/۳O����y�����Ϲ˧������=���}��w~�7��
�_���}���2{����k��#��_���X���]~���|����� f���n۫��n�]�i�#�w?��}��|���}�����|cn����{��X��>�B��`gϝ�o��o)k���{
p���[	-����+��KyX���3���]���Y}����?�# ����r;�'J������VN��@q�! ��s/��	���^�޼v�����B���ݶe�)�Ro�qѶ �vvp|1-��G_�h�������tt�>���bl��y��#-�R�_ϋi����A꣟�zc�LJ�����Ɂ���̂œ[ø�I��h�����X����\�M�/�M#֙Bs��j|*�cY���IKI�V�3b�[�xK�A`	��y\�	v�L!~-������|��C;�+�E)i����>�?p��?6F�Oˏp��[�� ���Б�`n0�X F%����־��	<�#����#C��*�D/��§�g�<(�e>�H<'�F�2a�/�
�Pe"���g���pD��J�#Bq��=�|�I�3�ǖ���W��730\�zkyZ�����t�u�v4b܅B��
 �i���q�A�W)�I�T��r��j�����x�c���[e�k��
� �s����>��@����O��-����=$fyy?���
��D���Ɩ���C��뫗�6�?$�Rb����hA
=������9�Gb���j��yc�R��j�1��R��X�ugE9؅��ZN�qtI����%���L�J¨~A��F��</�38ڤ� 
ݔ�=�Ve�6�����m׵%X�o��L�k���>�ed)E]��]�dǹ��k�w.��.=<N��
$��E��#Y�#��=V0ٴ5ʏI#Yi�X�`��D'Ej��+�N ��������ߣ�G�V�/�z��"����@�� YmluAPwJq>�
"�xD\xbQ��#�T��p���a�k[�|�3%���v���u���A
�.�ގ.�F�D"�@�7؈r\XmU¦.$����4�P�@��Ɯv靂 S7V��o)�S�����ô%�Z���`�;`:��bИ�����,	anC[(7q9FI|ǎ�8�������s
�����#�HdTk��E0'�X�Vu3�:�G9ZQ���;���:��_e�{��W��s������Kȭf�����!T?�����n�!���N���j;:��z`n馀 }C�=�y�A3q@?Ӆa'#&1*�(4}7WA�Z�>4i�x`ܙ
�}TpAW(���y���5�� �a�Su��Q���$qD�uF���<O��t�~�6ʙZs��ץ��DE?�b�1�+����|�!P><�����=qn��d�-�������~�?�����C��}`����Q�nm���{�������ٕ7_��?�[���g��g�����D��ѿ�I���;I���_E�-�0�̌��9޿a�}��&�����2�v��`��Q��b������]z�h|��c��8gNo��3�<V��G��/*�J-��!Lva�������B{���+��\��X����Mɫ�Mh;��|s���oi�o�pO�]3}标�����ZA��>,P�ܿ'hܯ�)�?����kPA��=�T�w��[���a�����v����;x����j?������������x׮߰_��e�ȋ�c/�d_�5��˿bo�5
׿r�������]��Cd����]�~�Vyv��/����O�[��[���V֐��/����^y�-l����^}�޺|�|o���.@���v���=�g���ۅ�����ML8v����>�p��l<����6=�OS�TbS'iS���+�滜��E�E$�ݶ-�Ŕ��p�U��2k1��n\z�[y]q_պ�!C��w@C�XsWj2�FY���
��m(��%�����f�EH�/������
�C�Á��������sC#{e^-���+�Uϭݢ�_#M�{��eh��\���V�,bVqݞi�hS'�>�cY����2�xR�W�_gG�9����J�
�Ō�q� 4�൓���.��6y��QwF��?��g�����
a��H���c�|�a�@�Z�ޗ��>鸰�u	i��~�G��(*����o�r@P��+���!7���*hި�[� �@�	t=,�#���#`�q<������X}q\�e��3�o����)g�*l)_EWVz�VN�.���B�b��t_��y�zTp������W�389xNu}���H( ��_���I���/�P�A�#/��?�t��h�����WeI(S��`�U�ҽ�\��:��"⋶�j�r�	P����`9�_
�6�[o*�as���ק�G\��L䜀�Ӌ	-;�&��U��� �j��[��z]�и��B����8���
.W�x�4��_zF�iz��JcN�_\G<�����Y�]��lǴl &x]�Fj�s��+��c�懠DZ���9&�	�#=��)=��)���J˦J�h�V�W��
�X��O\jɅV-8�n�ㄤ�k}��<l9I�yu�A'^�����Pp���hL�}j�S�8Z�VXte!���b[�5sT��
�`��"�AV��>.N�&�����15X���jMJ[�S,����D
M]qN]XM��"��@Ml�u}�b�~II����7&�u�SS��`�l�<K�:'x��U%��
�
v�oX�ݑ4>GzL�%�K�O�M��BYtU�.��4��.��
����@�������qs*}
����!s��#_�Q��>0g0��9��2���`L&�P����Y��q:�L��+"�aBT�EG}�zL�t�@&Z�n.i2"@�.����T�)K���}
@hm���U�y�F�>/uMEa
A;0�L�h�����Ʀ�w�B�������= Ъ�>�AT�k���BPU�~?�#?�y�S��l��Ѿݽ�ogד��ɭ"�<��"�|���.vvvc��@���){lsak�=/��]-���rɽ"�{�=��Y��w`g���{��/�#�}���ɥ蕡�ǟй4�+�x����?��^Ǻw�@G�<�޵�"d]��ngܢ#۹"��<_@�w?f����M16��i��o_�a��¤�™��=�� ǝ2_���r���+?�t�#�2�@B[=�G�"��:����l��ޅP����/W�;��i돜��R�Ի�����)�V���kQ:w�i���G�[<O�ep�z�O�^#���d`��<4�I��n� �
�1f���HX7�	�8��`���%�vn����i��[��~;]��
������[@�s��0�m�N������Z)��^��|-���]\!(���Zyv[����.� �>�Z�_��}�Urf�Lig�eE�p��g�������a����Q�խ3gm��!�Fv��8���Od�1��
82U��w-����!���2޽uǟEfCe�X-����3gΟs���u���ի�z;��!��6��W���ނ�.�r[*���q�4�s�c�z`��Z�]��8�8�a/|�ۥ�
�QX���"��>-��G�I�?cZ����Ϭ?�Ի�c�N�3�l|�x_�w�������šS���n�N�G��֯��>E=��-�K���u�f���G�Ua Qс�*X���V���X�3-A��E{
�Q�����2������իY����$��HK������A%���eU�8g��	d�����Mz�.�x��v����P�)��@[�P�I��Vm�h�����>��z�)�O�]1.f��X|��O��I��GЃ�'�NK�)��[
����������B$=@��xU�0�d[�uL���ɐZ׿�"k�͕z@b����x�I�Qus�<,A��]�PF���(|2y�z�H�Wcy����%懟o�c3��VV��n�%��}��*?OyJ<�{2x�P��L��*��\��,Ǣ�%�VLm��	������n�Ϊuծ�l�wAb�R���6.��檕��e�R��-���"O�ȟ�Kbw�P�>(��W�5�V"��Fۉs��i�)�����^w���}���C�cR������@�����>�V믪�RC��!���9a�rS�f�:���M+W�.&@Nrͤ������>+�@� ̵�2��XG'\��¶
\.�A�0��F��mG�@��<�(�u��!�젆�Z_����0ɬ�@�jΩ)�!��ZxD=��|kՁ�7@�$Zt DL�<	j� ~@,Q��Ē�x �U�5��Z]W��I
�#��ڇ�8
v�H��_hǸ�C��5ɵs��+���wV�BRh��Fp,���y$����c*����Q�j7QCJ�a.���y0
(��je�	�9:�h_�n��b�B�3�a�]���I���$"L��I��isF���������P�n���¢	����)liR�����`,��F=�Թ`G�vˎf�w�i�$@��xB}0լ�CF��>q�vH�q�L
RhRwTB�c�9�]+�<�s�nXu��IM�HY4Ds��@A	ۦ;)Za�q;�
������+�K��#�ˋ�M*�h
�{5�ݠ6,�J$�kj�.*3���f2�@��G^t��X[E���c�vcofo�,����f�x��u�B��V��Eh�a���_^���#���<�9����;���cGE��{�>�>n/����H����[l�u������=�<9�;�����g�w������C}w��„!A�	A|�eH�fj�N�f.��ff۶߾�1)f��Ć�r��C.�g͎v�������Y��}H� �z�*�̣{��2kӎ�s�y�ro�ڭ��]�}�޾q�n�?*�}�^燽�#wS�S�����3+������۵��ƚ��[ת_wAr���$�a�[��A��|�����������`7��e�Q����e�Ac}��5�!�M�����Mx����Y��>So��c����X`��1V �Ё��k���7"�ޗ�"d�5���{����8�S2��3�{�tT���g1Nj�֨(������%���F�;�gx���5�t}�����Ri3i}~��4�e�������<%;,���p��?t�*9�uX@��W���+W= v \?�ﰓ�-9O[oL�?��m�omgL���rC���-y qT:�;�w�|�o��e�.�\��au�[����nۥ7.ڥ��:r�����y���D���	��r���EI�If�*w�p��S��.�`��1f��(�T���8�eS����1]l�oG��p�̓��@H���E��pCV�k�oX3-������A7�����}�5�;��j���,|��d�>�>���<�p�Z52�;*+�`Rh#���X��,�)x�kl
�I��B[dZz�,_�A�ҍUX��u�U�e �G9�����a�N��)�(�C<2U� =F�
��`���fA��΋6��A����(|���K���{�
ҡ&���|���)�r@�=[�W�%�
8F�W��Ic�6s�����eQ`��#�a/��<Z>���(H��|E����Y�	s�x��(� ��h�-bv���
~0?S�Ƿ�Z�7rw��8
���ӂ8���"��h�xG�' Bwȸ&yE*̵����<�#��_8n�=�ʊI]bᝂGV�@��-�c�Zv�<�u���6���`���	�dܷ�A	z�/B9�'(��[+�'Z%��K��Hv��l!�I�!�f\��V!Z���%.k�+M-�<9�*{�g2Zi�v�6vx��c�g�A٘[��"�k�\ΏC&�߉�ON��/��E�A�|is�α��$p[��|V���j�6R�p+��R��}�A��/=��C�ڔ<Z�����q�!��D��@>.��۶t��1r9��ؗ�O:��
��ѵ�<�~�9�h�RZ����Cd,t"a?�c�Zt���`�q)Ȱ�kAN�l_'r��/�E���"��S뎸NnA!\��I�
��4��1D�f���X��2�@�X�}�.���Z�\�'������ZA4�9�LN�	t�p��*��Zo����?3>��a1�-	+U5J\�
��O]Zv�֊q_�P�g�8$$�,�$8��AI}�2����GwV$�[�!�<�x�׊��&�tS��z�%��W���}q��ª�`>P�9���L����qLQt�ʠNy/s^;�����1h9�8Ȕ�m �#�9j��h�h�Zp
6�O�Ќ�2܂�,c�]F�Qm=���"��\g�� `mD��h�f!�&py�X���!���mr��
��o��@?�t]�;+=�`?������>08x��kP��-���0Q �aܗ���v|�a
҅ ��u;��L�7}Ʌ�e�ǹϯ���uKwX��-�|�r{�nnõҚm�ukc��6\���9��^��ٍh,�>�tEw��A�Ae
����"��}k۶w��h�k�l��m�s�Ӷ��+v��d�>�q��\����a��E�W�$7��,w��MEP}��}�e;�v�6r�sa��n\�T�u��E�p��:�װN)l;���re9���*`���vp�lw����9�nl���^��֩3����QWYj�cA;�J��UT����aU�_�ga��V�6��w�-n�<h�\+`��7R��3��h|G����BWN]�&d\�ϰ�1�z��J�t?Ln�_�^���y�G�B'т����͍*4�3J��O����Q.pϜ,M~�!�H���������f�+��F�*��ǽ�j���K��>�ң�_)��a�n߸�B��8Z
vL�k��6瓹�bRQ��Ķa�r��u�S���;���+CDž�Q�?����x�Ǒ�����{��i�U�S�O<�~��q_�n����ȰT�*��7�?�ݽ��g���D���P�.�x]�ߨ�Ty.qyՏ#�C�W�
���I�1}b���]��j�AK����:�`=Q��pT@}*��k*��u��k,�������X��|��?*LТC�Ě+
j�d��@��YK
}�
��1X4�Ig�.�L�4��^'��:f�0��r��,�R�!�P�ӽ'i6��hHQ�q��oB�z7C���
��Ƽ ���b� ����V��_(aˀ��I˂�&m���47�u��J�#t>ʑ�g��ey�c
�Qm�Ǡ�\�/�∶�u:�Z�P�[��%�5)b�y���Є<��P�E�7~���>y<*�!��	f���i,;F}'��D�=�|��o����cs���k����k����e��B>������@y�B|umE #�
{]�s��	�#h��
zh^<���r�ަ+������}�b����E�6�W�2�",cx �eHS�t���a̐vRȷ���иyW9>b�h� Q٘��ǔ�Egf��=�����&m�J]7��3�B�:K^]� �T@�O��iן�3�:��b�b4��P􅲕Z7�eo� ��K-<�M�&��NH�sRL�EYib`���*�n�eM��5>P~�Y�t��v�a��zAbs��d�b:�1_���yEw��%��V�Gϡ5�k'��Q�C�rZs��ľh0).H��x��0����cu�5��oP>vH��}���ŗ��"?iy� 
��Rt
D.�ɝX퉤Z��ȭP#���~<�O�V���O�
Zw�)m����i݁|
�F�,0ߧ�
��Hm̌@�R+
q[UAuY%u���+��j��u��S -9���poA�WŸ����m�ʐ0E2
*ȼ`�d��x���+��x��/ʁ�&W
�/�L����A-�0�C�&�?q&�q;����Wqk͹��@��x�7f�`-1�0�FX�0f�I�fG��mq�8��{�袊s6f�c�1p�ac̀��s S�<>#�_���9�r|�B��>���"Ï�t\2�8�2sXfP��Z�<�eG�@�����s(F4����-�(��y�Ygy��m�m����
7\u�9[�xP{��eMі�|����=Rx��e�m����.���[ؽ�M۾����X�~~���S���w�j%���N��{��ϖ�7�N����������~��|�m�����Կ�9�����2P��v��o����f;wẉG�Ax�l��K��,��Q��?W��"ܿ�mw._��bܹkG�z�=ۿ~�n�Q��;����������������fm��!G2��;e��;�K�#�=_�s�<�v= 7�]��=�^�p.���r��P9��D�G�/!̟��Q������<�o
��6z���];j�]��uxX�-;�r�ry�E�>p��$(��
����\��Q��_�]�{N�^x,��˲(�X����1~Io}�?`�mm��,����}��8���ѫ�]����)�@R��Jfkmm$�ƶ��0�1W�[�6���X�x�nM��B{��(v�Bp+x6�zݹv���,����u�W|�\#�?.�I�!��Ml�Y5��_��N#�s_��M�d_: ���"�W�Sn�Y��{�<��;�t�;���-!<��lpOe$��� G@��� � ��}�X� Ģ���N�O����X:}X��H�<�#,��{���4U�m�>�s�ƍ���;�4X��ޥ\���R�>1sm&�a�ڒcr���\�~AO�/����\3,��1�SbrЌ��D*�#pA��"�X�������<�br���(> ��p�=B��טa�UT�cb����2����A��A�)���aM��qm�h�9j�М����m�GS7���if>�*�0����
:8��3t���]O
� ��|��H��i���M�Xq��E0s֍|���-��p
�1�^
�)�	�G[��&��_��	�B�.y>��²�x�}Z
[X��G�/q�[�Y�׺��|��2�A��ƝQ 	�K��ȫ�[��O��P�#
����xSJx�X@+&uqE��ʹ�
��	tГ�Z�����[�?$Ջ�(�9�{p���;h݁c*X��U`�r�8��y�D�Qe"T%�IO�F�rʪr*�=te�OȀj�PxMQ��0�$�뒌�MO�b����s�/U֥���{饗�g�)�d[��H"+Y��<��U)yJ��*D��l�
ǭ�����m��O��#\�ب���5G�yI	%��I<�i0b$ӕ>dm�i_���?LMzx� �46;�
�����vV����դ�S�V��
^�~D6�_��KD��QP�d
���6*ש��2|��x
��I��%�ۉ�Š�I��{��-����@G
<��񹘵���c��`*���{�R\8�6�U�30p.���J�
���>�\j|���2��_��9,$PJYmD�ѽ��!Q�|Xq �P�UL ���1=2�8h$�P�n�C�G�D��zq8"��$	��sq\�R�(G��a��
�?Op����/f^��@B{
pH���F�F"QAD�a�답�3d`�P���[��=PQ]P1E�E�#�؄齿O��
�Ѣj�I_��"��(@�̓fZ�{��tOu��%���0�8����0Q�B@<�Lˌ܀'6�ϙچ�cd�p�1'���X̡�I	.�H(A`�� ��n��z�)Z|� �Q���W�Q@�?�g����x�ڣ8���TT�W�4�5!��k�����A��l:U� �Ѻ��#���S؄��h��;� .�)�޹�lO���͝�m���Q�z��`NJٞ<�n_�ܖ}���=y��}n�-���̶w����-�
h��q=�C�cv�ƾ�7gG�}��ͻ�#���_��7���>m��_���/�������v��Wܢ����fat8���
���'�����Ю�~�v�����`��+o��W/��/���{�������;�]�������f#F�q276NPh�֊0|����C�
�l��N���Ps�[!��7�#�-@�Y�VDž�٪+�
o�poe�.vz!z�q-zἹ[)��"V��`�>�� ��)�w�&���[��}�(���m��n���ˌs�0;ۈ����oj�[�?'�煄{N"��c������a�[�D�+�c��<h8  �J]��=aPg�J�7J ^_[�g�q��^��4�J����������{�E?����Q��y\�E����:㥸��lsbaa��^�C`	�(�7-0=���#o�_����8N9���4�vY��_����	n��.0���[n���g�2}9�"��Zɟug!G��@�W._
�ZL$�p�S
8NWp}��DL+�+�F�B���G���_�r�́{}�]h������X��%QÞ�u��˜t��p�7��_��1BK��_���y^���ݾy�v˸�E�IS��\����� �1#�c�	�ƚ�5�X��n�K)�S�k����>����ˡLp�}��]Q�JaR�6���<�@��˴��_�s�.I#�pw��ІV��q�V�����$T�(�D��V-l��^�j���

+�X����8�ʎ�G�O��J5,CK(G	�F@/ !�Ak
�'��8˃�&�{���.h��4r�B��Ǵ������t$L��x��l��
yZ��C���6�_r�2$���������U�>�c�%qO��P�M�3�B�N��6�����_�a*����<l�p>��.K��
��2�=~P����;&��3&(�C�<l5�yS�yH!�`���J��"���
1�Ȃ�(��#d5UƢ�R)�a�U:�����W9��V��s�$�b{!\��r�v��-��h�!�:�8�$wS�w ���D��2�Jh�
Z�*��4u��S�U,'���v^"L�J_��E�kN�c�9/[u(?=z<LNk�0=0�l���oUy�pҪ�TK����e�|���d猍�<��u�j��9�cT���^��U�7mZ`�G�n��CJ�t������Xm0]���2S��pk�}
�V\\s,������s�*6懣c5z���"��/�?<O1�^��y�(�K���LX"��f�i'z��N��<$���9&��`,��B"!��J��0�>A��}$�Qߢ$�x,�:�7kÖ���-5��9Ep�@Gu7��jِ E^:�q��M�4�'�!}t�FHp{�2W0�[a,s��ua3�q�C����Wk>��6�Z��υ��G��a)��wI�1��q97�oa0e��T�D8
2Z����[���<2$
4>G'�hۉj�1v~p����Q�A�3��̆ˌ����$_<#��"�L-0a�}U&c�A91��ڇ�&��MMA~����#p^/3��c\���}�u#�}��~53u���9���3�.�k�V����_8�mt�~j����ހq��Bu�A�I� ��s��j�@���ʚ���Xp�alA��,Q�̋�3[��E(���=~��"�G4 ��#3�:�f�oX���w��ý"|2./�={��#�ڵ#�^�?��ٝ��<�*�-�v�~�m��ҡ��@w��(��Ν���v���/��cE�x�����O��K�Z�Z�GO?a����N.�-�
�2;X��l�j�C�a(�T!h��L�)ȴ>P8�G�a�۰�p�:,�R��-��wm�u�u3�GX�_��+v
��bn=�1�]��uх�~oM���=,-F���z����F.qL���
�K�,�g�6=6E�x�o����Y�y th��Lh6�ic�\�\렏����+�Z��5G��b��5��p�^]�^U�&�����FH�q���V"�?�mnn��2W�Y@c�5�ͣ���,V�孷�X/��|~P��
�M_�?ι��K���[�SZ O��N��u�@�\���8!����(�qKDz۾sͪ����OS>ŷ2��VY���l;Pt����3�~E���t=(5����������bAk��hu
���*{����@���
c��hx�,�]S1��<l��q?r��T��z��sy��
��Y@He���XoqE�aT��\�k������Zpq���_@����x��.a�P���z���Ó*�XGk�����C�A�]������![Kq_I
�N�T^m��e�u�/�N�d���5H�@�t�s�F�3��B�X~>b��"؇K+���X�v��b{��3
�Q���ˮ��駟���� p�à�A��V��V�~�}=P�	p�t��hՠu�Y�#тC������uA#��#ZUG����v�&��ԃ,CD�[�?�@�x��z>��fkX���`�t��~���؏�w �[|��-?$�6Vx*�ʲ1�Ϥ����p(��y*�9��6ϵ�r�G������@x��ȳ`_�}�lN�<��$䑅w6	t>:�`�#'�ʋ�J�-���@
�V9\n@�C|0�攜�2lA���P7�!KI��$�Z���E��ڄs��ʹ�D0�Lo����<	wW�AӭC���@�Q�#�ᲬC@����3GRO)����x����-F)�K�<�OVY��/�ʶoKrJI#�$y�uRK��FF�kB��l����zi�6�!�1x�~�Z�v��5(=AV�wF����48q��V�>Tb*����<՞gM\�'F���kT�P��d-;Q�$fS�[$?����h��p"K�����.�<��YF���D�����C�X$b��Z��a�X��bu�4ѥ���%�[y\�AV4徚��&�/p�U�}��dRSU�W���֊�w��߱~�������h�K�+¾"⁘�A�����4����c�YF�̵"P�uE�V
,l�g��s�ã�����y[��fq�^�nٙ"��\�����O��`$�w^Ƌc��vp��1�?�
;V0gJγK��fq��Auq���%��;p�Ph��w�a���]�P�d����R�E��P���{��L.<��rc�`%���g���ED�R��8�դ��(��z�+���l=<�"����wB"��������ϣ>k���9L�KLj�b/�3c����Tvv�C7��[��%��{ɣ5nh�����Qv��`]�5Y
�6�ғ�[I���z��,Fy�}�D���CU�qޫ�֯ekW��ͩwҔ�v��g
�r�B��b�m���p�Ƴ����ݷu�.B���f�w���S�B���l�ʋ��٧������W����9w�.�ٷ?�x��Nm٩r_�:5���2G�m�6�TGΟ;��r����W@��+
-��SO��S{��a��i�;<����=�nh�޷3���U�'��mm�L��F���
���y*��" �s��ܼ�|,\�\���,|����66�]��GឆBkO|��߷6�lo��9;x�����,���+�;(�����c��_�w�|�10tq+����u?��n�5�s7�_<;汹A1-â��ZX�l���9�V�S��k@Y�@��#��`r讫�|wj�6ϟ)���n�u��׌�`�D؛���k�`
�,�B�ο]�t�v���
e2�Nau��r ��4-��b��{�u��'���c?Zqg
������9%o�����U�5�
�u@�C�`����v���7g �w�m����]����U�8�@X�ty��vl`P��+�O�q�.�ٹ�u�����󞭯�'��z�L����O���J�l�t���!��w4�W*޽uǮ����!�{��Qҥ�ߴ����>3^I�n��ln����}�1)sB
�|�`�{ˆ!v�7cw�xtD����ފ����@_�ע
<3Ū��}P�Y��su���n#ޟ,2o�u�ZF��q�i����w�f�2�s�]����>mgN�+�[��׮�(`�bx���Vx���m�t����AVY�l���z��7���o�rKlW����Rؖ:c$�I�A�Ai&2Lx����k��
8�����k�2
F�$�5ų��۲mҺ�g�׵`���_�S+H����:��\W	�Z�~��qu�dj�N%�S-�:q�.x�s��-���wR��~\j�Y�ǻ��8N��/F*��|�3�ϯ��~���*,�x��qBTf�c$�\z��A�
�YE�k�V.2��[�@T��M*���he<������Q7h�ў�1�I�MS2�اK�$�JFIc�a��qa�e�oy^�j_������X Qnrm�<r!�f�߽ɺج�Ӕ.���l2f�� �i�K�M��Z��A��ô2=��8AZ��1�-���`#?(�6|p�u�`j�D8��"/I��\?K;��֯�|�!X�uƑ����� E3����dB��zy*�Q�=�p���E�g~�g��1�gZ����"��ڊϺ�\$p�#�f�dX*�,��t!�k�˪t�<]P��.buM5��O,�5х���1�r�訖�
�uq �YXt,5�Kbp�(�I��������b�'warv�gd{���י��wv:L"�i)�HG��z]?QL�^&u�,B��-m����r%�������_n��@AG�u]�$֫��V� mc�x����t�:����6|�N��l����V�B@���|;[/24wq�k���Gݢ�Y����"�5��ZHY�Rfy�X���^�Q���vi@v��!5}JM���j�\�>��N�;������-&������R=��SZ��8����zk>�Ko��G�w�7�`W
�!Q�T��]���Ygn9�zR�� �7��{X�<�l��+X���<=�#���}0~��]�nn$�Q@��2��ۄ����E:{��e�0��=D`�};u��
X�Q���=����	�u��?�+;%~������>��
��
~�9[��/�H�C��앯��cp�s�N���'�?V����??g/~�y@�SEH��q���)G��P�
`��<�C�\Hm����PqD�[�#��E��(�z�����ևs�>w��3�t������o���_�q���Yd L�+��;/zp�A���\�^���B��{F)Yu�Dmy�cY��w��167�<�|����Ha���n�w�`�E�#{"��ԯM$�,���_;x��y��j�6&��'O�95���܁�cK�9��4r�>ݭV|7�L@"ֵ��{�g�G��z�ԝ�z���g1��>U�@� ��sK�\��}Tk�5t�䮕ʙ{�w]���g��d~4�kl�*g��/a�:<@�v\����mׯ^�m{�q��C��Ż?b�X�iM�4��a��=x��)&�Ģ�[�٩�LX�=b����c�%��c\��1ʧp�+��<�)�XĘ���w��u;鿾��Xߑ0e�6�
�W��FkX#|nA|������L{w_i�o��w�l�̥���ēO��:�W����ϼ��o��{�t��E}OS]y���
ruo絖�B:�,ed�v�lh	���٨Z�4�R���=�GzZ@-Ϛ�)�z1�n���J'7�<'����||�q��I��fwt��=�X�/�I���Ւ�JWu��<�&�b>���ag��[���W���2Ͻ���uC�g��v�X�5
÷,����Z�U�BZJ�^��%&�;,�������;�@�,�G��F�t��)��ڂE��h'��ܺ�G)��B˿Å�X���J�#�7��;�"Ŗ��\���s��m���JR�f
�-��>߰s���ufV��|���2�?q}<�Ã=C�.�G�&�B��[�9�x8����~�&x��0�{�A	�\Agv���B	�\�LeϜ��跾�߫k�o���!����;�;������@bL�)�������M�X;�%�A��yP�3�f�G�ڃ
����E�R]�c?n��R��D�M��t.T������<���P�ʛDeS��)�"��ꩄ�K��V�������F�Gk�Q��F�� '��!�
��9Ư��p�ey��;��vs����V����2\���eY'5}�Qh�9M(��c@�|�a�N�$/N2��g�<m�^�v���ŵ��M���˲_�ɾ�	4��H�˾�u=���NX��0I]�`���$N�9YV�F����-��<�
j�A�f�u��*�j�'���|���Ps����O�(.�rac>M.�
j0qAU`���hA��E\�WR3B��Є��
���@[bnJ��� Ay
L�XzxYBtiE��������Ds
��2��0�-��სwD`�C���O�+��%~�En�z�$�(���]�~�~��T@��ᕋr{�f/��#�6����ش/�'b�y��݄����K�'.����0)tZ�I�2$�
�#��Q�F2���zf��]���Q���̊�F0��W�ۨ3�h�4��Q[6�J%
�9l
խ����aI�P�H��|0�v�xH������mե�wV�4��9���G��?	�H�8͆��C ��)�F4����8�+T@�N؟WaGXgX}/9�ڨ����-��	�>��zZ�\P�xa�N��/���v���=��E�>�-X�s���nA���6���e�f����3��Ʈ���"<;��{���?�,d!G3��n��n�۞٩sv{wf�Eppw����2��ݸ�k�~��<��7o�ƽ�-��ܣO�b�iO?�^�����v e-��L&%.��)�s�
6�Z���i\[{s���/�VDJ:*ϧ�&���{E��g��lww�<d���q]Χp�c}�d����e�J[�`	�	�] lY���q@���Q|�^܏�� �@��f�V!�ֹ�E8�(@�Z���Ch�㻀�i�:p �(�kuL�G��?� �i�ıa�1'|�� 9
��{�B�^��>�5@�ra��*�]��E<[_�Ro�7q����.hG?7�kCyo���3����-Q��h�`��_J�C�k�>[��cg���|��.��^)��{��$�u|�G��}]}�=���}l�P���V���.��I�
WEP�iȯC�a��F�?xW�.^�B#�{�{�X0&���ܒ�]5�U���V���_��;� ��4J�:n���Iq/�z����EZ�E�՘3a%�i/�
�m�~r'��]�>W�����0Y��1�PD�?!<�;��p.�����m�(�E�;³y��%���+f՝Ww��������.Q|p}؅e�^�ƍ��?}y�'�/	B��f���h��FuSoJ�vD�b���ָ\'&�v����k�FO���f�:����q��?�����g��(_�U�$�7:ڷ�}'s��EPcE��9ZP�9�2(���6�Y����l6�q������v�s��PpI�#���
���2�]a���P"�;�]Q���Yn���`��9y����WZ��8��{�|_�m��h8w���m�Z�Csw��J+;(N�0�?
p��gԯ���z�V�3W��ot�B��-`f!��֭�nq���d���2s��Z���[+}��ۭ�,�"�J�p����y����ee�݅�3�Ϭ��3�;/���g��Y��Ͻk���I�	�/r���������?�����#Q>��H;$��:(_P#O��R�C���BF�.h�%�(��L�[��#d/>t%n���:��u����#�xt���C��,K ��B��*Rjݰ�<���\+��Ԁޗ&�G�(��euY��r��yY.��{/�L#%Z�0�rA5���4B1��G��F�Z�K�e�- �r���JD�%����T�A������	R��M�4a�m[6O$=�Nn/�]�͒�L>:iS�92en&��mLY��B�O�#&��e	k�kd�c|��&����9��m���^zi������oau�D��#p�
A�0�B��
Z��A�l�;+�>��L���t��I��Q�
\�i��<��.�:�G�r��Ak�$&����)���hj�6��}��Ouu�m:��W��3�Ĵ�&������������O�i�eו��}������@� ��,��U���TURkY��p+ܶ�a��!�v;lE��h��j��RU%�bq�$8As&����{ߝ���^k�uλ/�R�"�#O��{���g�=~�Zߊ<���Fh�~���X�G�D�_R;/��`ً�2�1%��a�3U�L��Z^�<$��JL�FS��.����n��n��:2i����,��>�ڹ��d���kw�.S�g���oXݤց��NJn�
�J�[���^`kx��
��	��S�\�-�,�ߑ�:?�b�,���4��WB8�i@�zrZ��V�{G!��ޙ���_Y�[�����4 "%sS.�1&i��lzmZ(��j��w�FWu��R���.��z�L.Et�1u��@��H3��`���Y��x�}p�E�/m�]w��qȧ��K�7���N76���Q^�"ݵէ�q���%*���hJ�I�zm�E	b�A��H'�X+�L�jG��ӝ�hh����R!������~��]�;D�b�:���+��3�Swi��z�@�h�#e5-�	$��-?�|qR�
!�[\F;L�U�j�ö��)���"
�;��_��'L��%�@TśB�)`L$I�y��X�i�ک�&�̗���H萫}�;1^�K���K��욎���]�u&d`�	�@�+���9��,�(:m��B�
�s���Ck�B�#�wNu��<v\���/�`(�͑���w�h��'���+�/08��� uҧ�#xV�&$�e��;n�Sw�E=&�P �^�N/�9�urC��d�c����-{�Ko�9��E��޻�b_(]�ڠ3�\d�E��[��N_9sV���16��J�o
��Y���]���/����T@�V��([\ollе�2�w�m�r۱c\���?.�a�6�9h��}�	��w3��(���ș�{�q/�igk�VWW�7{�����R�C�.^b���?�^h�3� ��xJ���n�4�`�ȝ��0�M�"��I,�.��TcW&3��(c�5�dus�	I���l	щ�.�aI���iJ ]�3����`J���h�x�d��ciA�\R>!T�[�s���h�3�"DPE�ص�
�)�[�ХK��XY�Gj�-%>Yg^B'��
��bu���K���n�0g@�n�K� ���>{�CdF���s})��Ξ�j��HT���n�'�?1�j4%;�Ϣ=߽�Q5�pi�~؜2��B��}柍g���n��9��)Epy���(��2��ҵͼ�1�w���A6���3����-�vy�"}_"4��c���/�	�2 �C�+�B�d�I-��Z(��Mx��W������k	��HA����
�O�2�P�%��""�e~@����u�R����e��Ւ1
^��v�#!�Y�H�jÏb&�� Ŏ��ۋ��*R���3�}E;Ŭ��%<bd�#�B
��wv��Ҹ*n%���A�x�8,s�;�2$	�NzG%���#�4����Vo���7����j�w�>�c�r�=����S��惘�\�#E�w6pu�^b�֡z��6jr�=�ķa3Fh(�!�-~*�c�cA��h5�h����N�J�X.J~�|b��K��/� �t��[5��g��00_F����WE���}����X�ߨ�y"C
cN���õ��&q���(Q��?f����dֈ�j^��������<b����Iք�z{�i�1�Ȏ׶�"<n��#:���*u��'��]��W�(7�P��
��М{���5�H�9d�1��G����;�P[lQ��Ot���c*enk���5����`3��:Q�����l��I:���HU�crg1�=>2�n�U�n�L����`��6e��H\�eAC'2���q#Fԣ#�[���A��pxi+���LN>Ș���a�1k�
|� f.�L����֛땰^�-�$P&�(��^Hnؔ=<P����֡�܌��]"�@=U��"��G�7��QId�xAu"��N�t�Ԧ����O�='��n�3o���=%��n&Cn�GnX/X��w���gپ���$7ԝu�$h�؊�H��A���nS��Y6,�|�@Z�Z�rS���=]����D��cuj�H�Edp"�B�Li���y���M-�S?�Ȑ�_����d�8��pÛdNu��0ܸa�.u,̭�5��I�Ȉ>���L����v�~�cs��~�~��s�m�UKKS��5��nG�����4b�]��7)�$�~eimE�]��X���E��yq�Ko<�Bg�Ez��
��:��%@��xt�D�0L
!-�E�h{0cR$J�S��m����dp`��2�K۴v�8�}�4��>ئ�w��i�S�áL��._J��	(��!��䁳(�6Tr�h#���%�K���>�P,2	4؝(Y�@;76��ځ\�>F�D��(�Z� �4�I�j��"��i�S��leԪN���f�卹V�$���g[Z�dV!�&��;m���c�t,�D;&�]f�����8��DJ��G��o~�cR�����O����w�#�YH�����\+}�[ߡ�<��Õ�6c�?H�~ǣ��$B"���G�
����?}��\~�Ȫ���؇?,��|��U����b�0n���ų�x��D��ѿ Ǯ\�J��ŗ�o���4�L�:\���y��R��gF����:;�fue�>�s�n�?�}��_�׿�z߻�-���o|���}��_Go{����@���/
�3��o�}csK��@��kB|�oBv\�� �	�o�H��l�Abiie�ﻱ7�|���������_�J��L�ɭC��[BgC�2D�ɧ˃�(&?2I�<b��'�pI�n��H�Az�Rɴ����$�.�<�&��D7���F;�+f1Ib���gbq��S:I/)��,�;�^M����
�' x2�D��t��m)I�ʲ��\�6&y?�!��c�g{��XZ��?�Dײ�	Pu��߼2C�
��WK�j�1/��P�^(���UCxe4A6�M<��#�+� �'�3s�U�F7��:�D.(�")�g+
�,����|]���6���9;�>��K9��9ͯ��Isw�O�$G�J2��R:�l[�mr0sk��euQ�U�i„�b�-��|��L�Ӓ�Wu$P����Y_���#x%��-ު���V~Z|�r��!��%�K�!Hc<�
�#�m
i`����A�`�q5�yJ��_�ydl9��l,#H��_�
��($]��궺L��i��s�rw��BI�8�{��jL�"��^�x(<�R����Bz?���g/g!{�$RB�á��*b��g����
^�i�r���)kq�SNw�lU�#V�����1���y��_~#p9�έ�0쳸��+ԁ��cj��s=_*�	>��UM!�˅�o�a.��a8M���]�~��,>��ב;8�(��C���Εcf�ڔY7�S�0�D�5�Ҷ������ ��&��=?d�V�&��;�֌�aI4pϪ7��y�<8|>-
�c�Ks_<�����c�diyr�a��b�}��u��=��~t�E|��"<n����_���"�m��aDD���h�<ȍ�9����.��,�U��zw֡����`��ê�gD����s��s�G��n2ʵg|�5�cv^t^��{�ا�`.�6��`祮��
\v��`���0��*�F�a�-V��5O�ʹb�M��l�J�$4���Lޅ#����l?,?v�^�4�*Q��*
oM�6���!dF3�w�bɓ*l���Ƥ��bl��q�;0OJg<a��HK��;�&�=�|NB���!�`m�~��1�)��QHJ��k�^�9@I��,rn���N���~WW��r�9�����֮>}��?�۱Z�V�ß�H�Z�Uy�T=ItiW��κȋ��{��,+��w���g=�7+��8�w�Bdw��'��֪��n-�a�E��z?�=��� >x����AE�8H@���N5�g�5f�� H��}u]��C����A"������D�C9��[e/�?�����iA��1�q�-�C���YIҧ Hu�ϣ1�-�xm���D�+�����r�N��=HG�:��y��x�
�ߚ21�>�Q�Zh���J��;��s�&��m:@j�=m�#�9���p��>o��n[��R1ޙ�N��\�LW��4X�No�����{� �$2	�mAj��MÝ-!V�V���yw�����Ɛ�%�GCi�%u�	�� �ː�<�Xd!�dV���F;�0(�<O�'<)Ia�*҇���~iһ��#�B�����y�K�LOT��T����S�k��d<v�#Z^[`��w�� �����׼H,��T����&ɦ�Z��6N�s�����}�~�^w�݂�
GLAւ��>8Xa`�{���s;��$�G>�����_O	;����$� {��y�#s�Y�?�ԧ�^,Kb�e��an��7�i53�)l��u,��\�L�o��K���OT	'H�,�Ȥ撞y�����=Lvt�;A���s>��x;=��C�}�Z9Y�F����B�K��y�֘4y��H�X�oY;���S[7�s�$vͷƮwG��i� �u��e��@u���1I��~.�W�1�֣m&DSY�#:y"�t��Î˾ˆ�B�6�rI�.t\2`�A��އ�{��m4��<KH�o���TU��1���QI2��Bֵڒ�̀��K�f�V�i����^~.B�c"��x��L��b���IE�'��*�u�Uh\퓆�!]<w�I��Cy���(M3Ot�ͯ�XL�2'����z��A�)B�|s����sZ�j�XJT#N,'����p�q�Nާ�9{�Wy^���yE5a�2%?��gc����˲LG�P�צ"TI�֟?����`dG�kČn�R_�ǜ^��C���X����%��@�wy�s{��a��K��X��x8�v
c#`�˜���s�i��xI6*�c(γg�r��L�7�յxG@}�59�w5�OU>d��,&!�����
&%�X��s�$�Փ>��x����0 ���Z��_]\J^&�?�%NIA�[�Kzh7ҩ�(<EI)��a0�W�"*�o�N��J��O�m�ܸQ͓A���%cZ�ެUĢE�|bJݍ���y[�<�[^�WN���ޥQ��zն�糙1�3j�
���r`s ����G��b�� �Ј��А�{;�,sexH��`�Ÿ��kPcT�a�FSr܂��{����Fp����F&ie���z,�)���y�6�qiY;�a웽6<��H��cy�N�ZYv��7�X��R�	����{.��9f�ྮ������dh`��~[�����M��=C�wN�{��m����"<��[lxy4��F��Xg��T��Ω�ʹsg*��vΜFQk,�sj�{/�S;�F��w��q<pc�7�!E3�60�>营K����#i���z̐�a��b̳yydI*�w���
(�ؠ�=L>��[�-ДpQ�U�:l���B�j�RVvn�ӻVz��҆��yy���������ȿ��Fm3��~�$'`2c�l&i��'O���s�
OB"	��a�\��u!�
����b1k�$��P4���S�A:���!�%�� �x�+�b���CV<@��q�aHjț�Nk&���l���)�-#�� qq�D�uϞ?�|�/t�'��{�䠊�#A��έ�*sVW��.O��p��
Q�ͼ�ӥ����(��NUo|?hy�n9���ّ��|MJ�����&s�Z��� E�@��>SU����Ɏ+���>{�5����Q�G՛6�qO�jV50"ߔ�;����?OuT-��tϨ�C��E��t�f1-1�!�'!9�Cl�=�����`x��IA1wG#]�'K���Dk��HJ�G�޸B���vz�Ҧ��;cq߲�=L'���
���ҵ��w+L��ru�vg��@�	mc�S��~�ϋ�#�-�C��%X�P��o�p�[���m�K~�@��S�S���l���P����9t������_�B,ӌ�D�������Jq�D�F4���09���:$���a��]�I]��C�y<إ��E��DA��V$}�q
]�����`#戼�2E%�4�����J�W�k��B��ʛ�(�~;�=B�3(_B���b$no	�U�	�Le�E��!��r���#mE���#�B��K�uz��3I&�O���c�?��t۱�����2�~Ed��+},"��(�z�?�ǿ��A��y����7ӻy�T���^z�o`��E�`��_��K��=~�C�1���K��>I�|��HyX��I�,P
��(&�W�,�lKH�'h�(Z9譐��wljt߽��LB���2�(%�D�x�~zӛ�{��<����O�8���ҩӧ���|'-//ӡk�S��+_��f�ٖm�OR�
"�q���ྡྷC�e�1`�ߕ˗x��*���	��`$d��7�W�k�9Q�v�edZ�2����yT�z��&�.j}U	4���qA	c�Ê"
��`��a��@(���R�~6U�i��چ�:Hy�����l�6TV}��C�<X�=|��\J^�\U*)$HѰ��&b�-YL���т6�"k�C��v��ꕫ���]>c5Vy�Q��;F���㦿ƃ3���J��@"'��2˨�<�Vx���]м��B-]#B�*`^���p��5���ml�v�2T��Ǿ�sF_��\ʻ%��Lȧ3��}�D!J�$$٠R{�ƈ�$D�p�<n���U�|�Ɯ,�{�ޒ�6�7#��!��l�1���[zߐ�ŨH� ;x���b ��
N�1���וXߠ�촄|ƠSp�>~�����_�/��k*�.��>]�Ὂ��h�_��@��x�u���<f�^&�I�0�;������Қ���#����^N�"�5�v�H�R�0x���>@&�r����$����+灟������зlN�ό�xN4�R��ڊ�T�y���
��,ar�.����8�Y�D[v�'��^�ǽ�i�����^��5��z�m�����@��v�W�yn����������[@s��'�-/{�%���V5V����(��p'k��x�`�@憝o1���ܓ�!�t�Y*|>�1��x"�.�9�n���]��(r��wý�8c]f��
����'��?�c�*����c��9������<C�o�3k�����䃨��^���z��C��|�0VMӒ�度�f�6���<,��'�1����m��W�#"�]�f����*�1�z�wln��s��w70�i��C-���k�\?�
�=:��uH�'���ϗ� %�f'��-����~k��w^��C;��u���n7��4�y ���������z{��k��>�bv��Fs�0�.�;�X�.��,>6��2wM�u���&�ᤫ�@��a�فO+#?!Q�
��x����k����
�J;�s'�gق���-1%�i���uL�kkwD�{�`r���u�c�Šc	�g�p#�9�TNꈋv1$���J�
��<)b�c�,�@YԂ� �zե��^�_�טrh|u�׸��:�Mn��N�Ewnt0��-�A�|d6hNzym�X��ƴ<ThE��z%�u���(�ڂ€�q�'_&���%�:�_=�r%�v���*O�~F^�U��g4���‹^��'���~�μ�7r��TV���H�Z`�g��gѧNf���)Y%��
�_@�]F�z%�S����r>�qX��D������M��`^�]ښ�"��)hm1Ȃ���x-:�4.���2mo
��ݦ��]�h��mLz���m&4���ԣ���>Ā�x*16^�0}�G�h�l� �,qw��ܧ8����ٔ�:�iL��ɋ���b���>s�Ǘ�D	�)�=���ΕWh�u���\�c��N�}�.s���!��D�W�3��g`a�����b����!46�T4+Ǣp�H���i���fp}]�.�K�Sd^4�F�(M�(@�Ij�29a��p1��"^ޝZ��*�~��wc�S�-�A�������Hc	�:�E��@(ȪD��o$(lS�w�`w��v�J`�U9�{H)mmo���ӕkd��08w�*�����o���)��:y�����RS��<��7gY��|����>)k5
������{���z�az��%OW�]R��P��.^�.@1܇�%2Vp*���V�-�����qL��#�	+��o|��ç~"��#�Z)�큵z��G�Y�W���!�1���H�Hy����ŋ�~���u�$���4E�H�q>����y�����$��uz]z�
�y��u�W�T�����kP�lV�<��H8f}��oF"!yO���@�����"VJ%m��!@�^���V���S񲁺�=�����Rb������V����i�S�#����W���l�=����ՠ�yiU�Y�%[�bm��ko?�j����}�A��m�ܮ�������2_J���
�\��ϥ��R��b���
P���+�wn>\�xj��_E����p��h���gѕ��b�G�ܛ��ܧ�I��	:.W������)k��J���y� {�P�h��Y����E*i�F�WsL��J�1V�f��?C��&�7�Ȋ�jʪhr=�ޣ͏���Ĝ������YL�L�NO�^ߌ���w���6��[�WC��ˆ��onQX��U�֖��Kc>�`Ģ�Zc�$C�r:<�X��x=�i-tE�E$��qnVN�\6���4#G�)���sNG��s�K�̃Jˊ�Ù����q:"�t^�"�/�X3.�I��^��g�ӈIe��H�#���Ɠ!�܌��o�;.�?)ӛ�DT{oAN!����U4ڣ�b��HB�[�	�/�$Ҭ=K��P.�I�Y�<����	�<uC�Y��..��D��?o��cZ<�b�/���=`�5���W�a�>�z���4�9ᤚ�KC�2q�*]Ԃ�yax�#:�)��cqQq��Z٧Ɍ�Q/9��:�<iHVe����n�T�-x�Ó�=��)�\�iw����Ǣ�wWo�¶=V�T���6�
�=��*�5�?��<�H~s8�ߝ��_�V'X���g��\On��eĽd���7s
{���9�&_��խ��tk�w�{?B�f�+6<=nVI��9����?��1�~�̗͆���M��Aʃ����;��yxsM3w5��}r�s_��S�t��ʭ�kv���n�yo�f�%
r����ؔA�d�
H�������ͤ�l�w��!��y	d��j�����OLj�o�>��>�|���y��-n�yx�d���b�b�pC��c2����$���'�%@�}bI�5�/�l댷���G�����~��y;�g��^����n��?�F����4�g��`��#�+�#�/>��ۿ�.z���OꙨ���2��_~�����~��o�GN���������ۺ:8[��>|��_z��_� ��_�%���Q^@k{,�poT�?l���+�
��W�O��&�Nn��ծ-
(��I�r��$�h^Ǻum�.�AeKHבn�ۜSxi���Y/+�I�T_&����m6���P.#/l�Yh�Z]��*W�'־���j�K5@�����@��=�_���F7�'k>oU���R�gܼ�b����uP�G׿Tը�����D���ǒ��X��Kr`H�ׇ�R�Q�ޢF�W���ܚ��1��z2��#��{�oʀ8/�E2aF��q�����
��L�D�nР�b2b�&�x������f��~�}G�ᓋ��	/w:���.���b���t�Z��
G��
�"��w!}Xw�&�XAn2&}m;�$��y�Z�N�_�����ߡ�/�@/?�
�:�}z�ߣ��
��pG)NF4�d��0s��O)�LF�Y���tR;0
�<2AI�d@	�A��/�6����-&j��L��Bޱ�fz����r&"x�K݅=�r4 +$��"$ςd�N���o���K�\q�Eh0.�*Fas�^���[�=�*�«E:�H=Jf�<z&�T⯚�Y=D���W��Ln���h�d���9���)y�py���NQ��M:ݮT��r���a�!)���4�\O��>���Oi�<;x�--.�
b"O�](pf�&-��
��EsR�3��:�B�!Hw�z�d���$�RxS��?�������a��
3���<�d��Oҹ��彎�߂G�5���㝝]�淾#y@�o}�CBV���<(@X��
�6q�w��+�ةu�;Ϲ���mf��A�.==/,�Q��$e�&A�a_�M���Z)��!�����Ђ�>h�q����i���d�^"��{"���"��ſ�k��:Spb����=�<V���q�xX���e��:�+j2rKD�K�BQ��V�X�U<Af�E�)}J`k�F0+�	�y+ 4yX�|f�z)�:l�ݻ'b���;E|'m������x��N
T{ػ�M�h�9b�fm��)}~���<Կ���ɇ4ߙ�y���3�9B�F�Dj�q����.��3ֲV��d���7�4�����z��\Ug��t�!��F+&�YȎY�n�`tm'��H{�0K3Ŋ�KM;�M&�\�j��z�wP�77�m�!�
��[�wtJ�ڠ	�F%&!~�|W#��z�I��؍S��5#�R�e3x�NE��pO�E�%}!n Y�<3��'�Ah�>n��/���^��U��
�=�}�\��{Bz�/��>X]�#G������k�¿����Z��o�
��
xo�ҵ�M]�A8�C�>C9�w�3���.?B��LR��T'C�m[��2��Irܔ�Y�Q��)y��Fv��@`r#��Ҙ���n桧7����Ɠ"U��ͻ���
D���%[fiWP9+!5c� ����lLm�0��W�o���P�
�L��(�������a�6�����ވհ!/y��Fv��A�>��ci`�D�����p홃3�%Gt�7G�L�g�OW�/�&gĈ�0���m��i�)�j���aq��Um3�����e16��Kj�B��p� +�|�ncxrm�Ǖ�a�7Û�5����-��l�!O巸�ޚ�.���)��F�~2�wn�n��i����"1λ.7j�����<Ǽ��k4�ڢ¼6��߾�gz��zO�fǬ����{os糎??�c��ͻ�)abDɃ�
%�U�=8Y*���۔-|@��ӂ�9P?�Z�s����`���-�М���ߝ{g��gkzu�f�m���E��ع&ee�u�]�I r���
K�>O���]��>B��TJ7����O~/o�跾�$��?�2�}�O�#�;�"�t��St��no҇y��O��_�>]<ܧ���{}��g���:��o����u4t�'��~�E���
�i�����f�[�à<9��i!������6g�����?-�U��������@ui�`ʛK0O<��c����f��nT��PH��#B��lX��[��U�k�P��٨Nr�J�g�=_��V^B`5�㢕U�g��{��*��B3�&Qͤ,�Wʒ�x����ꞹ����Bb�>�s��t�>+�\�ɑ9�A�iT���,D��e+��H�I����x��8����`Lk�]��þ�X�A�	BP3&Q�;€���t�e�c��b,��+׮Щ�'����#Ȍ����c:�ڢ�3���k�t�@g�01�{�{���U0:-��"i��}豃�h��y#�;Ge���-Z�Hu�}q�MW�����#��ti�	����g���e:p�v& ���5��߸N��E!U�����C

��lE�8��!�&�*֍�{�!&:�C@����q���UD7��=�bC9��R-C���Q�3�fYV�
h�)F�1�4[b�+E�ebi�b!��,�]R��@#E�(r�ͭ���)4I�vbF���L��-�^<#z��$��O��˯���F���5&A�����wT�˭(E�qw Nѥb:SI)�pm�봲�$����p��8O��v(]�^_(���\T[��URE�Tm�9�b�h�S��o #���$ΊI�Ԫ�r��K���|啗�n|���A�E/���ٗ��t`e��;&��@�!햂�-�#a����k �m���gw�<B�N�m�חy:�@~�<�>��%�����z�/j�Sr#�nz� �׵�����^Q��"k�s�7�壍M�΂�O��Q�4Eg`*�N�w����[��'G�OL��eo�Z�i�Q����΢�Sր�i�,��iV�\Z�8���3�6'��)%�l��'?�K߮�eL�}�1�Ο�~�,�b�s�\��M��7D�#�{L��=Ϲm��U+��-nW����!}��n�9�+�jj�̃������Ɣ�1�S�kJ�,�ۅ�k����޶t�)X)�Wc�Әd�(yf(S�܈�y�F�5��YJR�IZs����W�2���h�!�
���r~�n�����}��D�22�>#�1��QOW�� ����
���F�gk�Z�>瓉٢#���a1��Br��U�]j����H��l�P���^0���N������<�Τ|��q�/�
P5E��80������ �ч��<�> �-�6�n�##$5���hHo]/��g�A���%��4�X)���LD���.��}�	`��kg�4Y���1���"sY`};�.���k��P�h�3��ƺ�2ywq��B��&��}�:=��Uz�p���Z��v�?u�t��I1n$�E��h`M� ��Q�(aF�Fz�0�m�mi�x������W�0/;ǩi��ŗF�7j1>�+��5˘�aư����<@�������7�+/�ei5e�L��<A�87D�˦Q���*�c��x�x��9����X�HZ-�8�؈�6���NP��yP`6�4�-��w;�ρ�����U֨1��X���la��P�Ex�t�Ex�l�B��!���S{��#EH��sT5���3���F�9O���ѱ���j
x^���\��F���qGJdA��X��ȡf,����64;d��`�FrX�*�佇��9����Kl�'F%'�F��Rf����DGM��'M�
��'9��oA�m0�k��_5K�Ɂs`���
�r_g-ͣ�<^s=�ǰ�&-���1�n��I+�ӥ%2W3�T���+�7#Z���Ck��C���Iu��eMAw-��?��G���~��x���_�5NO��������?�J�{�Z�E�.O���zףo�^	plL�����|���G�3��X�?��/�g��#�z	�%��[��$��+T���Ѭ\a�*+�d�%z�*-��^��rUL�^����
$/R=�Yr�6"�T!�r/��R�H_4�u��ZB��� }%����>&K�TQ	�~m�Y*��t-Ր�[fQJ�h�d=mr@w$��CE���
x[�!�_�w��B��
Ie�R�T,�ڭ��kƗ�M4�1ҼF�|�.�`��Mu�M��ŵ�ԍ_���Y�E%S�7sz/�i�oY�����>Ĝ�`����4�)�P�")@I�%��lFF;���G9���fr%�PY��3�}C΋IX�BC@��p�e`ϝ�#�<��d�
�����E}i�N�c�A/�(f���6�!n3�)�\�����8�k:Ze2v8�����Rڗ�f���Т���i}�@+|�݉��/]���˗/с�>-�L�&0��B�oM�-���E h6.^��;<}�Ä�k$���������}	)
�5��YA<�&���CZ(��W�?�Vz�"߾�I�_���9�/�B~E��2���N����c"3!�c�聧	�,	F�B��n
hY$�o��=�1ʙ�9%�v��1�o�e3R��
,���޷�{��^���
�l��J�I\$9��m
@N�
׺�*Ě;�ǖ�/�:uE�k�;��6�̤,�[����"��fjU�"\���ի@	��q�9P�s��
&��Ã��W���㲅k1KC���N���B����{�j�7ȩD�6Ɏ�׶p3;28^��J/�w!�L�TX�-��;���qc�l�f����HN2=G�Ɉ�fO@�E~�%&j�&��ѣ����Ho��	�G�D�?��"�L(��EL�k�"�ԉ��h�R��[d���`o��;$�BQ�׮\�`�3
�m��)��:��l��h!���9$0��d���J��5-��?�BE
X[)�L@�%9�?�t�.t�s@bҥBj��>%y�8��X��4C�X����/�Z*����<�m�����+�jqT�[.ǜ=�s����wJ�o�-���QA�� W���*}&#S�>��O�����H�@���E�	5�jܴ�@��L���L�(6�]�R{��P7�zyԾ7�p*O|\O�����yO���Zf�z�ؼ��ؼ,�ߐ�Z�Ѩߡ��T�� W��c�π�`��t��p��gSk�Oԟjښ�lV���<q�6�Ad/q�uS[Z��
%�1&>rDi��ﬞ%�}���oP�s��<�#�{��s�v;���N��<���\=�,���r��5��Ƅ���-��1��bX�F�ْ���~�C<^��?����'$�P��8moo�p��N+��^W�yx[��W��+l�?Jn
(�%�����K~��k_�Q3YO�t�	dz����%�G[��� ��V�|�<�����26��m|�}�y)xMyz��c��xa�$@F�Z_5j��"�����w��/|�V|m?���~���(�4;�H�V>�#��W�����<N�)�#��4=w�F��A��/������'i�R��O|�V��/�ٯ<N'7�_���I��X��i1�C7Ft�ڐ	�ei{m��s��R�j!:�ۯ�����q�7a�<�A^����䬔��I�`���)���Mˎ[0s38U"C��y�y��P�'�>����H<��k��[ s#=L�7��L���>V�ŕ�A=D�p�ǜL|ӳC	��~;��g�s�x�ϟ.���N+w^����a�z��˿���f�nǂe�q�W�	.��r���y�{
�u����s�{\��-�q�[�M�[�ǟak�g�����wh��h���cQ��9��1�K��yvO��=�͋���mN�}��	��Y�} ;���N&x�W���A�����1<�8��	7;h똽n�4��P�Z�������H@m0�:�����y�V���1��a�R��E�|�<��n�elӦ�
�Rq9�,i������	��a���z��Jz��Y#=0i1k�����I�	h���Np)���ִ%w�=@'t��+��S��Kik�I������{��מXj����]'�B�
�)����x=���,�8�@�yuk���oӝ'�}��z�vz�o�;��dݥ��i�W���xz<�]����O�+�|�ՂIs�B _Ql�&�&��o&:�	4�4��W�3��I��%�����O-	�>"A
E:$B�p��,g��
�j֒���H�%�<g�����Э���t�h� !XJ��`Y�KڻET��)%�ǙhËl~e˳B�������줩,�v!C��$��4ou͢ ��x�3KQ��J���."�r��&B�	`3��<�&3�c��.�˻Y ��JM��I絒AD�[0�R���ށ�7�,����HT���5�%V�;D�zq�D��V䛩_��;u$���MO����$Bf-'1�	�C*x�G'[�L���T����t�2�	�<OبT�Bj*K�,OU!��K�WK�#�� �%������L��i���T{��"z��X�O��4_;E�@��v�h�/}p�ֻc:w�</�Wi���#� �kw�~�ʐ��6lM% �6����t���g����AG��+v�:_w|�/yY[nӕ�H����j��5^�.p��5�h�+IU���a�c,�x��p7
!%�����sMZ�k��@2���q��D�L�ܸ�Z���y�����*g0�3�`�/ڴPQu����H�?�l��R,�5-�]Q���ۈ lI�0i����W�{+h��L��yK$0�9զ�..��x�V"���Ԯ�^a���HK��N��NwEi&��u��6z�PB��@�G$��$m��0F�BI�pC��m'�Z���	2�����Ho}�靏>B��K�Y�Y�q��-�Iʿ#��,��<��(�Ԓ�w���Z^J�ڶ0��߹�+�8G��Y��Tv��F"$	)�2^���|3��䞚����"��Ң-���,�|M
r_]2C��@����W.\�ݝ��-���M�b�A5طP1��Ɏž���ӻ(%�����$j�_��D&^bU�i�k��Ŋ8.�����O!lҨB�ȃ��C����0�Lj��*�<���f�P�~��m�co*&���~^���V)s���QQ��U��U܏d@U��r\�ʛT�v�A�͋#Vu�r��6f1U�^Ӈo D��C>��T��l�)��8�P��'+e��?�o���"����D�oad��Τ�,�����H�޹op?�\�Vb�9(�M�޸�r�H���@�=�������0|J˼��}� o���ס�Θ�<%-�X��Ұ�9��oo�r[�ތ�Ƀ���;v\x?�����nc����3t�wI��K���o�{��:~�8=��7x�y͕.�	+�?�w�~;}�+_a��C���$�w�� ���\�p�^w�}����C��~��[��V���kt��A����b�v#���9ʤAG�d�"q%�$�x�<���n�Շ�<~�|�lo�֍�t�SҖv�D(U:}�"�/�t�^|�e%r�N&�$��������>��t����<�^Q������{L��AG��A?�so��vy�;N�I��OK�<�~�.݅(�0�s�!-s�|xҖw��@J��rO�C3�p�%Z��ô����>��;�dX9@�<M?���Sz�_�[4��w�f����������E�����ء�����gr�ޟ�[t�ר�����t�C��#��9��s�
��Hh�i��<���x
���s�Y�\��7�yC�k��gbM��{[��1�����*{Uk�fX�ɚI^V��j6q����U����=�1��I�9+<>��a4J��>�6��oی�0�á_�^��J"f�k��ՒLv8��pb�$ML�$���i�獊��?o��o<����pI�G��K��f`q�eN&���isp��a��@��w��
r%�9rT
R�ñ16�i�Vk��^�[�ǫn��W����?��V\�&�o���X�����ڧ5�浍�!_�h���R�/:�� {<�bI)�!���7��]�_0���A�ꈏZ�7R����—5���
:��F�X�?47"�)������+럥�`�ɣ;.���T2[
�|��\�li�ԙteD7ۼd�N�d“~���|�DD�L`l�I
&9�ܓ�lb4�׶�)�=��C��1�����e��ß��tǁ)�����vx���w�Mo~P�qDf�j�ؾ��{hk�=t�'�-N���h��Օ%�֘H�ٷ��ƱC��@���O�'�|�gA��il�V�l�Yy
`Q��5���H�U:e��Mwa	��΁I��Y�/�`g��L܌`�����+�`‿���N�k���};���E�eO�|:�fc
����ޢ��@�|�Z
bK���d6b�-�e��/���D+�A��^Z"�>�� �ڼ��IӚ�L,�L�3-�4UO^"3�Azg4�.?X�!���2a��#��G��eX���՛3�(V���P�����O[��w��#��l�`��6��/:��p�i:�n�:���h(Y�K{re�/�Ԩ����_��;�y�Չ4�9{֗���wk��7��x�&���uIJvo���9��Py�������}��ѫL�X� �!y1e��Cq�\�m$�:-�^�TΟMGRWa�*�u�ب�>���x�݅�H��(9�㇗���C��`����Ƙ�νL��]�q�F�����׶f)�w���N����M:��@�DnL(��M1���<�Nh;�toD�o}�A�YK�!?�jw[�^�	�������:�E��GB��=�Dژq[b?��L�tw��g�`���c���@gϽB��5Z�ig���.�ፓ�_;&�c�}Թ�Н'OI{O@v��)j�-���G�nv����c�E.`�?U�uQP�]���\��R�b�fIei
0
�RF�z�Yu+5.���*.�gDe0"��E�B�2��x,WCa��V� F���M���dA

��%F򡨞�D	�e��o�:D_���ϼ���G�8+hC�W�ݸAW�^��(��{�&E(�/y\
{�!@ɉ|��
���h�{ȝR��L^�Yp�y}�H��{&�LvM�MI���W�&bl��|����bwt� �ǵ燕��Eҁ7�`�c�B�O�z?X/��8^��G���+��*�T�c.b��2��+5�7)�'R~�I~�C��2�B�Y�M�)�C�V~S�4�$�ɉ	堤�?1���0�j=�V����l��v;{]��K�����Ǽ���X<_�P�:��?Sq���{�?񾱷]�-��ޯ�o���N�0�3B_�@e�*bG��(�ߖ�(�d��b����Q�f�!#R��R�S��~��>���7E��)UB.�t$�{�Z~�3U7�p�^n������ZE��C%=*?g��%�b��E�.�_�SZ�wc��m|B�[t�˻4�6Y�,JZ#�lZe+g�s��(�����w�8p��az���i���7��
�]֌��C.��T8�e&*�s�]-�oY_��χ�~���?���X���F�b�����x3]�|�����?�u�e&_�Й3/����ؑ�"����Vܿ
�ci�}Ġb��U:��k���Y�z����_�?x�Ǐ{�ȡU��Ⲹq��}��7��qz�׫;<�/0�|��{��^J�L���ʨ�[�>�����@d
O���>�O�G?�Q0������7����ūt��z�Ï�:j�^wǝ��?����蕍-�s��|�~����3^ &�^c���_�4���2��ܱk����`Jko}��x���xnw��Ϝ��c�hk���5
K<{�CT\ۢ��I�"��Ԙml�2ש6���a�9t�eZx���:x�4}骨A��a��m|(���E^��-�Y���9K�W݌�5�[�?�rZ=@|\�����7�lM�m
n�NJl��JnHw��\��0/3��0�y��&M�>ɤ��+��:���i�SC�*�x 9]/��LT���Yps='����=��x4�=������Y;G����5�gj��G�[z��`�9Xnp�����ꍛ��}�������iz„nm7�n�a����WaӚ���y�78;W������l�>��i6�C��]{:�kl�vT��c����֤�pl���(�A�4M�";�==��'��t� (��#k��?>��x4�
q�
8ꡑ���o��f��{�)���k����0�{vY��
��q3f�IY٧�7WO�F���?�䰁�F��+�r�y{��Oޫ���}��@f6q1��nX.su|��Ǩ3��d���.ҹ��T��c�=�:m2����;�`�@V�-��t�b�����^8���q�pN���xekL���~�~�?��������޼��p`��o�O���z�;�J3�L_�r���w��7���=�a��}�%^�I�.\�����O�[��/�.��<�ԏime��<ȋ������G�����y��_ޢo=�#^����)z
�� ���}wѕg��'��Kg�n�6wv�7��~���h)蕳�0HY�{?�.��I��Ǐ���6��I��*�̅�L���`���0S�g���������M�����|�<w��t��ez�…d��@��� ,R,���b2� ��߁�.���7ѷ��uLO�#o+��ҡ#G��������	�U�5�z���{N�A_�����x;�Q[��}�[hks�Ν;Nj�>�y�)*y�x���X��W�N[;#ڑ(�_��g���p���:�1�|z��e]�*��)ϴ(ߠ���^u�S�o�َTE>�.ϑ����y��������bO�q�Y_>�=z`�N��JU�����,Y�:���^�w�Oz�j�k�L$�Ү�B~�B�F1	���t�_Z\�&�z=�����\ ��-���"�̋j��A��o6�{p-��[���]�	�'�ZrrT-h�o�=l�h�I�I�I�K}��x�9����+����t�nn��[tu3�k�-������ˌ�eb��=mOI<�F�R�� o��!��;܎[�-	�ݦ�|��p������my��Wƭ��=�8����e�;%�g�6ׯr�|����hg�΁����zҀ����)���X��r,�����1�����b{�������P���@K�*�L�_"�΂�z���f��Q�G9�"�T��H�d��ꋀ�~r9�KDH���XBn��0��[@q�i�d�$F��S]wxk��&k�X�w>���'�G��"U�;�$ /��#��?F�<�TiѮ�`R��*�p�;���������B�9�V�f���!�`Ԕ�j�'����ƓYۏ��ŹR,���xss�~�wO�'�%�6Bf�@l����� ���o�E�F�T���i	 *�GI�t��5CȆm�oH[D_�^n��r�`��{(��V�L�Ҽ�2(T[&P�h�����?��L�h9U�yV>Y����U}[В��H:�	]�Tk9Q��L�%	)£��AՀ�2!���a�����3V�-�~=T����u#%TZ[�<�j^KɈ�z�2'�r{#7�|B���rMO�^]F������*ӳ�9$�fm2� 2��̸�>M"���s�yK��5!���1?�ޓ��Ln$L�zD��%�}N���TB�T���X�P���o뀯]�:�;t�p`ң�5^S,^ߥ�צ�+�����u��D�#�Ì���v����)W�C�ѧ?��{�b:x���>�m?B�<�{׻��d�&V��κ�Ξ=��}+�l���=����k7�'?�	=��Gl�g�--����h{g }ә�_��;i�Ɇ��~Z���J�ЪPr���b*+�2@���sϾD�=�<���9��]���hk��gB/����B��>����%o��/����ڱ.i�g��H��ե���i������/���s?����/(�ۢs�/�&��ox�L��e��xV�������O��S�Џ�xR�	y���M}=����)�9M�zӋKm�M~F�g��$L˽�b�աW�i���g���Z����e�?L��8�1�x�e������Ё7���׮��}�iv�"��Kt|Ԣ��:��3~�)�x�Ej?�M;�!-1�ԙ%OH#��M$h͞r?;X�%��Pţy��nep�<��׶�w����(�`70r��0d�Y�lnƚ�=��C�r�s=@̳Cc�F���I]٧�9FjX�U��Az<磩
bd�I\5c|�d��88����xϐ�惑�ƾ^�=�̕bh�4���"8o�}�?�0�ϥA��x�:^DK��=z�Qލ]
$6�ڐ����s6� �]k�������I�&�p�y�r�݃-��[���-��U�8ǫ�y��*�sb�mi^c�GD����8�^t��j��n^P�Z�b�Ԝ$�N�䨚�6,�u�F^x���`�2�a�����6=O����xg܄Ш�nj!"mc�m�
<&]�*���sl�3�*#3�yÈ
����td0��y���<��7O~��}l� ��<>��l��		&/��2�ɍ�f�K�<;�����
��mkKt�m&'z}��_��4�O���H�����S���@V�-�����}�/�dzE"_9Goۃ��<�
~TLPml��x�,��5d4TV{IFB��4���@wiD?y�G�w��6οH��<̄�1qS?yp�I��N��/}�C��?K���h�*�q��?u�n?v\���=�7�Q~��?�F:su�����Ґɇ�d@�e���F�O�v��S����k_�"����6��'��~�W>J�.1ap?�����W~������t��!���z�)&=FS^8]��Ud�J��b6�G�r7�և����^ ��OC,�~�@����D%$AxC�����c�_w�)�����v.�D�}ϻ�>�t��i:y�}�KJo��3ޢ��U���G?�1�둇xq����I�.]���~�����DK�ơH,X����ӻ�~����|��tG��et��{�(�8�WREh�Y�S�N��(͹͞�H���e"R��y�V���)45��N�GJ�\Lz��4�C	,-5�̼2��NLc��W4��?8	 �]ڜޡ�z�;�N�����w�Cb"\�v��>*��Wy�z��:=��ź��}��Os;0A�ς/4!'�jE&�.���m�H�e���B2��v��dI��>��E^�o308�����>ڡ)����%�C����.�K�@f�Mc�~s0�.��xƷ����	\�tȐ�a�W���ݻFb����ˀځ����c\ľ%$���(�4-��D��Q1B���83&`�<�#�_��+W8_#:r��c��4s���1�~*ւ��7�TxDŽ��w�S̀�n��AVw�I�����W��vo�t��KP�a"�-Jm��V��(�����P�"�B�b;b8I���3�D�h|�L~��G5�P��lB]>�Fs��g������_�z����Ǖ8�b�,� ���������t���I�O3Ş
�L�,P�q�A+��7�a 3�leiQ�1@q3�|Q*7�P���	�£�%��2b E���[;I�ã/��&��Ϙ�<���G�NkE�rl�DE�({P�y���Fk&ɨY\����S>>V�[5�I�
*
Ff�Q��1�MZ�!Tu]�B)At�������Ǻ�&���=���5�B5���]���XAx�V����:Ṙ��A�D97��7��Ϝ�P&2��Y��/.��bzi)d�#Ҷ�b��"b�m��s,ΐs M�c�\�܍�Bc|w$qtck��{f�{��>��TI�e)ȹiP.�&a�Il{NO$E���ϐ��jOz5Z���T�4��E#���^����Vo�P�Ѕ�4_w�i�g�<��v]��:<?��`��`o�F�{�@�z���A~Gw�=��6�^/����}ܳ�>�A]����B��+_z�,�ծ�S�nc~��xkn���_\\�������<-�ܹ�tfz��~��}��!��ҋg���K[����'+����Yо?��-J���u�<@��"���_���s��>��t��u�t�O%�h�>��|��g>��L3R�5��֐��6�O���ɏ���9~�B���"���n[b�<��Y��С�y]��}�Wy�~���4a��%����d������vZ����<A�t�Ǣ�x+�D8�$�M��7�T����]�J`�-!���P����g�<�w�I��4�ş��>E�\�?9G���
*�?�v���B�OyM��c���.�����O{���x�K�)�ڐN���jHR;ڄ|�
��DP�JrV��Ͷ�o��d�e����fIT#;?�s��
�|�.l���[q�ZF���^bqO��Z,`7&�}��H����aƭ
��T;�1�+o8k�V�'Y �V1@,6G4��=>�ܐ6�b�J|de��!�Ǫ�Rs��'=��F�7/}��?�1&��Cg�����Y�s#:s�\��z���W�Ok�f�YZ�c��#Ҽk���y��a�m�&jC���W�
���tu�����>��*�<rb��9
f���U���q�tj�9t]�X��"�z���|�y^���uD���Z���z����-Aڻ�>�g�	v@�-����l�O�d�$%��H�ɾ�wc�1��a����6/o�I%H���Y��-������e����c�����J‚~�ق���Φl> �!����i�����M�����Ƶ9v�&<��I�ڢx(���|����˙��D�0}�ɟн��!�����1�_�:�P�����!�_�7��Kt��^�0 7*&��k���ӑ�L*�|�ӹ�+ D�XI_�[��2��`�p������a�� Ë�����hg{���ӟ��N��������Ckk��`l9���ϓ'����=�a��y�H?M�{�ba`hUϾr�~���O�]�G}�Ο���u����y��`�(
���'����+�$_̋�M&ޜ�d�|�2���/�]�b�~��G莓'��ƈ��>�?Z�yg����>��@�‚
21C ֥���^ĕ���[t��E�
i�ɒs�/��`G,�/3���w��=��?��=��{��t�u�p�H����@��͙,��y��ߦ;N��;�<Eo8b�i���ϭV/�b��U�[���L���5�����q~l\�g���o��y�ݡ��I���u���c-�P��SYH�SZ���#�I�B"C(;�2u��I0`.}J@sT���v�mt�;��k��g�n�ӯ~�n;~��q�/{��un����2����7��}�˿v�LZp�e������wi}�K�ܦ�f�x,c�ђ���:H��m��q��1xz��|����}�C����,��L$hυ&-�=�ܝ1���0�=��@�sr��ȝSL�,-���s��;Al	HA�&Yg�y�"�-���u&]v���!;V�)F��}���8a@��"���H���{ߤ���t�ŧ�姿O�.�M�ˀE7������J��$���fI�e�H2�)����x�3�Z
{H��@c�u�T�o����r>1f�ޮ�`�	�l�z�x�!h��1��
(��$�Ϡu�?ǞfV�}
�°T+��lw�4�};vT�<���[*���|��L>,5�k�8ڨ�#E�x�(cBp�8P�o���Ҳ���Y�D
B�,`^�
G^a��,�^@�2�5��^�o���b���v���7�.��|~A`ku-�7�@ҕ3�%E:w��"L�z���#�H��\_��$�ȁ�m_���X���Xl̽-?��� &b�ߑg�.u�,k@|��ԬK�֖* ;�� :Kg��0���ŏ���ҠX"�#.b�{���?#/ɵ�N)�<�O'��2�!��{6"î�ϯwOuC�@9��2�P�jG��r�4��m���z�_���8��\ػ~�{ޙ�G���]��F�:f��p��1�°|�=����Q��KT/���y�)bW�c��܏X�qWdf��.���6�A��ct)�Ǥ�@��J�,	�Ɠ�x���$
�$���K<�-�wx^�澱�-�m1�D}h�Csvxp�c������R�5�ǖ�;b~�TF�e�G!�%c[��D)3�o'%οA6c��tv9�O���x<�d<B���ё?���~�{O<�Bn�mH^��T�p��	��$V��2�o�Պ��h�I��T�d���@<DK��ڕ}GWic�K�����S�]�A��Z�LD�6������E[%�����/M�ˢ.b)�R}Y�h���I]�s��A��d���E�
@>��DƄ��}�T�^Yn�������ٍ�m�ru�6y~:�b�R�<e�����R������'��em]������Mފ�46��b8iD����&|@sl^�x������c���(�|R��V\L2��������p�"���67R�gU�C�+�TS�rU&mՈ�7ó�:��T%��)��H�Ҿ7?m�d��4P�F�=�c�����'nl��k�k5���X�����p�P�G	��Qr���69���V^��3�����%��<���a�.�[�M�[��kܚd�~�Z�d��u��5�Ʊ�Yl��8͓��$F�ߙ�p'��E�φ�#^ʮ����0�þ?悖[������"��|��2�k|��ć��Ygh��z���q���]/����8'�P���@&?0`5I����
��:�s1b5�G;fq:|�����~�n���
|�<L��&
&]���#�&z,6���o��冗����=KZ����]%�Z5�L���?���s;E�\�@/1��_�}�������ɻ���bs�/�w�:G�1IЅ.9/:�����ǿO��G��!�'���9:qh��X�c)A?<{���O�.�Fw魷��|�t�	
��7�4A��W��'���?a.b&@ϝ��K_��S4���g.Х�]:v�����?�e��c�[�'�=Gxar�'�0A��2�x�,}��W�</���wϝ���/ӷ�y�~����w�K@5>b�l,��Đc�����k�/>�9z�����_�*=y����E?��מ}����J����OΜ�K��t��=�Z;D_����?�]Ni�'�e����%�3@���a��ҙK�鏿�m�g������-z��:}�h��~�s��@׶wy!)�H8�.s�+���A���Z\���8�����7��߃&�=F�o��i���9p���?Gw���\���Mo�����ٯ}�����~�#�<IO>}��z�y\7�is֢�����Ӏ/_����<y׶����g=ofb27�&HV���42(jꟴ�o�H~,~EP%�BW��Vq.�#�-Mgur���㖼����k�^+"�wF)@~j��T�P<
 �`�Ձ�����/NG�i��D�
&>��>@B�?>6p�����]�^G�O�w��˜�1}��?�>^Θ0����-��13�����_i�X߭s{��>�K�#��=�^{J��cr <ݝm:y0���xT2��/d�l1�$�8@�k�L$l��0�PJ��c<|�#m01���
��u�P^3�vvA�NhsТH]Nwc�/�oS:q�	xă��_��.��5}[^�L���bu�b;ḢQAc~�]���<�L��.���u�g�A�t�0&��K/��kL8_����ƍ���J�����*�.	��U3@�^hg��-�Y����+	u;��"�2Y��=�C\�%�m�jn/5Q����ȒWE�e�P�AʪpA�K��J����V@�"&�
z�|�T��B��jT��'K
<5)�����d9'����"���?%�D��I�2X�谗B�he5IU���0�w����[����3��&%+�V���v3�j�,!F
�
D\��[[����o|�i�><� �V��p뽏>"+�4�>"�sV]Id��`���QI�F)q�����>�����$�V�s�h
 X"�~�g�K����$A�,#9������HL#g�A������K�y�w�U��6
z�*�U>t�д����&�Q���'1��.��Y�d�$�+�[��ka����E��N�c�6Sz8�g�޾>�;�ɒe��(���wE8�s����j�>���!V��!�E��4g���,-���A�<�Hl�)���F~H�6sd�����
uCb�O����h�wW�޲�vh㹑yԼ6�u�'�����<��:%`m�~ ��j�׼���0_Y���C��}�~WQ-��?j?h��<����:�vGK��?��9Q�y��&<vM���<向왚�Ë��84����#�J�{��w�s�hL�j�9�?#�-�v��c�H�l/ks{G�-ơ1���r�mj&�p�#�M�XJ���\��$����B�B�O�i<�4��e&�����An�Df�`ҟ��/Hr�(���LN�_okC_ug�/�7b���c�s��pW��!�j�$1և`x$=�]��
��	�	s�e>����y�����a:��*��6��m&����]���kПi��5ӭ�dH�%d��}E%(ȼ��>�s�0�I���}��R��>U����:WU��|e��O�^������
�i�_�F��v��aLТ��[I[�����i�X�7nl��s]�����,˼�k}��7E�-��!��[�R"$�}�|^���&$����`�a#̀�*c���ޫ����0���N&A3��2�3~5,�d�,!���l����uIӐx^��z���
���T>��f�lX��LJ��o���9,r�x��c�D��Gô4���'�Oc�^c�&4��[k8$�1��	{���O���󱰏���p�x���v�pn�ͫl�*��*�~��W�O�ϼ��#��B]"��CݞY��G3E����]�d�*��έ}R5�̮h��=l�<�û�ٵM�ٟg�zvX����Z��=>��?�^

FI{?]��w�`)��J;�I�y[S����70Ӭ��0�s,'�	S$�	�Yh�����Ɏ-�$��r���+���{��?�E񏒼�_4EՎM���������+��]Y`���"nѷ_9O��_�;:�����&>�H?��N�����֠�����:���E@)����?�c�g�}�}�#�2��~����}���ӿF�?u��Gzq}J����o�w/^g�n������@V�y����
�Yx�Q0��[�I�LywSP�r&�����Zۼ0��z<��bI>���0���sg��g��$��=�c%�z+�^1Ƀ�>��݂eјZ�&ʼ� ��J���d$�h	���A��gP�mѸ��."��B�g[��Zn�A�h?Y�k��p��0��4ҼJ^��e �l�x@�NHV�p{���`�ŋ��U�̖��U-{��'� �G�a�*+�6���Ti�w��u��̓�����ڵ#�	�B�b�s�~�.ݥ�.r�)<�ޘ����]_��{F��c�2'��9I�D�"�
�
�9a�uP$��]AG[�+~���!Y�:m,24�z�~���IH����@H�pz�WW%����҂X�!n�����ܡ^$C�a2H�����A���.��-1��KK�B��/q=��ny������s�[&�D����ta�SZ�w�͍��b�U�>�g]^`�e֥+��t�Y��N��H��y������@�-�=�$��+%�9�`��}ȝG�vl3`ӧ����utc*��ўP�K\?3�RNS\�y^q\c޷1�b�xp�OW�6���ɽ/E����fK�Qj�8rd���s��@'�}��^)C���9b�SL�%X���K�l��f?���b"l�HW!9��*\�4�J��~�d*�,�ۂޔc��ҧ�_濙���X@l� W��������~�Qv�u2�k��h&�G��h�1 E�֕X�_��z���7>��2��GOџ|��	�����*�܎s����/I�����9uQ���_�K�.�
`�����+/k����m�ſ��OmMm����t��u�A0�{��_��‚���	z�I	�Ϳ1��-�������y&\����Kg_���\v+�����t��!��)��q�t��9u���_�g���������� ��ݮ������W��
.�O�t��!Ʀ�?�h������Ѓ�K����߫�m�w�doi�[����<�'ϙRƸ��;/$~6�(�}��Dl�{�/tz	��83�)�1
D�$�{6o���f<BB�E�m�2XR�?.�*�Ty�H��h\������!���2X��)fH�x	�{c�!�l$� -fcR![m�ʛ!6�H���7!�B�~�K�<�\��N��ʣ��u��D�������(�!DUm�����.�JQԼK�<~ܸr�����߫�^�И������:k�L�K�8+Cp�X8o�O���liR��м$¦���c�!9y�Z&7aϯ���P�YIl�'�-�q�Ȍ�ƹ�Gk��neb�e��^Y��̯�E����~����$�$�.���||4c���Y�ޢ��%#m�_�x�%�Ҙf�7�l%'YI�#���}uyY�[�d���f���@��pz��I<����v���9SJ^�
��C,{^lm�k�
�u跤�V�mP�QL�/���h:��X]\P��T��f�^-�#���[^^JA�U2)�5Ąφ�]�?�
�m�g_��;_�/�x��$t��!L�.CU�c�]'B4O�\)�-��a�H/cA��צΨ�6��kN��J^K��֡������Z��v�?����H�FJRji|/5�U��6��\. �VW��9�j��c�����/y�bC��9�h�=���ib
 :���^�9�&���D
��a����`���Ñ���1/e[S��+��Ì��p�;�Z�n7�ë�x��<B�y}�\U��a�ǂ<A���l�~���ZGz3���������Gڃ�60�ܑ�t��v��X���ɛ��K74��p�f�b�B�1�
��ė�-Y��nm����s3�m�s�;O��� Oj�p�&6�˄�5(א�~�O��:�F�RcF��
6V[]��1�ұyR��	������2�AO��>���6��jK[��
?p4�s_�O��A�IzB(\�U�f�@���s�l�J�7�lq�H=W�y^|�РjR��g3�MN'��d�a��d`"“��zsxMN����Aɍ�Ň��ܯ�.T7t&�/Z��|@���XP��M,���
z��s��>��h��?�����"m��;�_�3	L��?�!���RK����N�GzesD_��Ez�.���}�&�y����r���}�����x���q�Dr�2�2��0�1��a�:��1�T[�-0�8���uOP�ϙ���xW�O�d���Y��.OB�O�c@_��	�NY2`:�����r5��q�����#[�qkk�z�eN�$��P/Y�2h�	��_c�ܞ˶��4�
�R"�
� ��"�+4�q8����t�[Ƙ���B�v�Zf��W���b����
��:\�g)h.t��5��� l��*z��j˄&��.���‰'�&
wq��f��܊�..ȟ`Q�Uk*�@7���?�E�R��<$���fc!��ث̙���9 �ߊ���5�!-�S�X��$���S|��┬��X����c+�L:��"-�ۓd��.��q�XF�e	�<K�fx1�5+di�����ah�]�ol
R�f~}{W��%&P��Y`����<N$Kn���o�XHN���`���->gg���X�
�v�:4L���t}{�:=~�1��fdbqm�O[L�&�~f�����'�p���5�C�ܐ&t�2��t��>ݿh����s�v�	�Ş��m&H���
�u3@���mem�M�.+İ��$�̖/�~a2���3���ђ>���;0��1�Ǘ9}�
�L��ҷYX�MfLdB7���3�?pD���7����8
Ђ���niP`�:�$��$�)���S��.w{)�sYY�'B�d�p +,cg	����w8/b��t�QF"c��9\8��MB%�َZƂ,K�����&�>��^'���1�ٖ�PS$�� �|�Z��Ӆ���G�3�7�ct��&.���kt�]w�~��
���{�?6�4Y�omo��K����������V���E��7�M?~�y��y�Iz�-o���U!H~�/|��_�D.^����5:}�I��}���܇w$`:�����
�W_��
x���N�
}�_p���#t���~���¥��ʹ�Ҿ!Uw�ݧh��4��m��_������˦%" yvT�k]�K���{�=�E�?S��1TJ���Q���,Oוe"E�ƥ�&!��cP��U��Pf�8U� �
1˲�f�Mb����R�RRg^�B�|
X�ae�Os����OS�
��Μ�.�`��F	�h�O���~��L�A�x%�����U�'P� %���B"#������ +ʘI�H�5�ڻ�A�!�<*�x����l�ێ��P�Wu�����+tk�;�_�[�qSM�.�h������mܯP�˓aO:q�g��j��Y��Q��O}bl�+]WT�͝W�1��)�r�
VuF��퓁H����<�9t��%�BF«M@�hF�E<��|���*
���t��UZ[^��%</^�9
OXĐ��X>�x�2P��V*x�a�����b�X���XA�LA�i[Fr����	Y1!Z��Yz��@=�1c�A��0��⽛���w�e�-(�>�Z��0ID�K����y|��1��yas�}�P���tb�Z�2�׉�VH�J��R\�H�c��K�#��J�8D6�-�����d��0V$�ɼ��uɰ�^�;tv�Eg�L�X�o1a�`�CB���	Vl�~�Y�mllI>VV�i�ETk/H��|�ȼ���Fz�`8�#;�P)��HO��;���U���byP��Q���F||'�.��� ��by��ɕ/Wnx
���6��b�|�
���sB3�>�i�x|8O2���Lc]V氻��3�q8oh����ግ�y^#��Cr�a���qGr�c)�Q��ȅ[�=�0���Y�����5�V�C�	����8�nm7�n��5+]����*�;��Μ�d�j�#'�
�>m���M�,d��@䒾kݾ�Y~���$D�>t>lȥ#�|g���H
�c:~�ߟ���U�p�1�^�h�\��,�d�h�=%0��_hHW�~6�m������Xh'���DGv�O��L���s)"�a������R���� ���[C`������A˄|@1%C���#�W��0O��>:ٍJz��ܬNL|ȓ��_}N��Q��c���$U��X���QK�����?|���g�ɤ�
A�������}j1�QN�t/��]]6������g_�%�}�{/��?�D�\ސW��9 �;j�Z��
:6;M������ғS�d2�瀥8���60/�DA;; 
��K��E�HW(�e�vj	P)Z,2�'������uL����!�xL$J�|9,[;�Th�q�y�2�TM��U��
rH�l��e�
��cA����v�ւX�$�j����4YAdp�0��$73S�X�d�l1<��8��,Ӱ�Bi��Q��sya\�S�c�r�K$��8-R(�F��Tu�q�Þu�ܚ�BꝩBe�ռzv�}�G�&�0�d�27@�yY��?�s
͙��A&]�lG����X�g�Im$J,�ɺ6�,0���F��ks}�b���$���рl�d��_b��S��H h^K�9�AH*����:�4�k�ˠ�xB��}�h�6����)_\�;�G���#�I�� �Z>�0�AS&$6�|�v��׷iqr�ͯa� 2�0��ً���z�@��L���o�'t�@�.m���+�[\��9o�
	���}�^�4��]	t��P��)���8�ԥ�]�L.v[LDZ���ס'.�@��/���bk8�>���_�|����������w�	_C T�q��v8�SX�w�a�|���)p۽��i\~I�&�ǁ�z����}+	�d`?Vr4�,���_`�Htȡ��Eꙅ<õI���/bEH~f��l�N8���Ⲵ�Kؤ{U
�ߒf,4���2ܣ���1��NP���nR���뿀�1f�9[m\��E���%��d��Au<'�p1?�>�9��G~��>,�<yB���V
&~c}�>�O����^��KQx䩥��3_�2��_�U:��"R_k����#���bn�������_��_�)ԟS����i�z�g_>G���O�/�ù�*D�>�o��0V����:�Ɩ@������/л��㎓2֝<q;�q�	�'�Ŝ��k��s��]a�G��Qfk',_�����}�`��9{!3Bj�R���)�L�j�T&��>��n�J�^Q�~y^�Eꩰ�5��ԑ��8l����.�D�����u�u����!`�EK��R��D>��P��ÅJp���{���t`�IW�mh�d�l���J�eZ0��:<�@L��u��Pi�Bn�؇w��a5�5���䓸�Y� t=�Pؗ��{bվk�@m
�W�{π`�Du	��Fpa~�k=Mr�|*��Ҿ+d�Þ�J�?��Bs�cs0�+�S���\6֢"92���)��|h䫚�TS��.N�U#��\WyΩF5B���W�A1!ҼoD-��0&@�	���ζ�`�'�?�}x>�`��+d	�ڭ�1'�H@g�n��ƹ�9�v;��PTkh;kC�[��bxT�<��Y�d܄n]$+C�i�P#1�"���@<u-h9�E^�;�O�Y<<�@�[<"!-��z2F�iw��2��)i(Is�I^2m<�����X�h��2=s�-���,{�Lc��5M�Y�4xp^/i�� D.%�D�+�ݎ�I:ɀ����$kc~ԩzc�O�.�f��%�X!�V��`�e��$2�F�w�H'��B�ڌx�O�u����C�T���|sOz O������󽇇�kPb#6孚^��d
Gt���ƣ�;-���&sEn3\���>^�2���g�=��#��v���X�X3����7�|6I
��kxzD;������/�S|��²�=��c�xL�<E�T����I�[zv����e�H4��p��LXe&�F`s;�]S���9"�F�����t����n��W���͓	��߇��
�Ҳ�l3�ڵ�Ҍ�.
a��%�an0�:O�P����lQӳk,��ҝ���f��c���5�m~77;wM�/Z����,4���ő�p��<;�}�����D~�n�����8����̑���1�J ϣ-���Yz���J�[<݂���Au4�Z�t!��~�`���~���a���|�W���io]:
�!O���D��0v03 �]��<A�'\�S�H�s������?y���Q�Y��.m�d���#����~���E�׿�9����1�ɐ�p�� ��P�4ۦa{DS^�vhF�e=r!4D`�����J�VxrĒ'��E�
�~L����@���иH��B2`b�a�~��Ŷ����H�(:ˋ�N�X�u��� ���g���	��A��v�j���I~�˄�$��@�@~��Lx��[L��i\Ҟ�Uw� *䥤20Bbe/�Ņ�|��$�)&+-0QJ)#��h�e4/J��t/�i���kr}�}Q���4}�
N‚�a&p�}�R<HD�]"BFqsGz�����c%x`,�D�f�����n"f�ٻ��0.�
?�>��!�Au���b3c{2I�ot���iՈu{�hrD�lm�[�dY�vQ&���.<|�{࿥�u
H:/�X��H�K^@�PK�H`�/���K3���e:QZ�_��ZgQ��7;	��.t�7�{l���X6�+�tucCH�~�>S��]Nw�
�	^�r[Yj��h��sm�XL�~�VVU�������'����֙(Xa�b���	��燛�*A�+.o��J���2���ZX��=����N@,��ZX��\Wzc:�ȠI'�ɕ�ۘ�Q?,�DƇ�E,����:��
H�?�B���n��F,n����cy��[ɂ�p����=����B	^|�_~���Z���T*�����R=1@xH�+�ʬ��*_Z����i��8$OF#�<�H[.5n��e�H3+m�ԶqJ��j�g&<>�Ĩ�`"	�!H]G�ѿ�`�tbei�M�uBH�{��x�j��^��6�L'0��ٗ�[e8&bFϿvc�������7����>$���
��<��3�O�h8�����3�F%l;='�[�������N�yR,�q/����!�	��`P��o�;�6z�
���5������x>�z��g��:񒌡/l���Q���;sV�&�dlI�
��n��;B`�8���C_�җ�����cǎ��h�x\�r�^x�%��~(�l]�����"f �0W�caz�
H�LK��%�<{����rP�D�PԬߴ��_��)�D�ܪx3��)�na��X�4���5�}�^�IJ�2.m�Tٖ��-2K�,��]�~)H�Ԗv�	%4�`X!��ۀK�m-Zy6@��sH���)��OZ9���Y�'O�T#�^ͨ,u0�j�d*�T�I��%�1Ȕ�,�����[�y���wK��	�����>NӋؘ�h���?��rM(�a
�%i��OKB�C�x�(!M.�99=�(�-Ɂ���Զ�א�(����l�!C#�LD��Mu?y����Ha�mU�*��Q�Ca�w[K��dQ�},�50���ؔxi<KD�Z�o��=$��,��	O�˫2�Gڨ�m�A:Á.�[Ì���M�[�m�O;߀t�/ �Y��J����0Fc<��I.wi?��m����B�#c,�o}��-���岕��&"�Yd�S�O��C?����Ӂ%�0q�沍���u;i=3�$ϕ��D�"m^_���Q�q�	�/�Z��c��
l��1�D��o���l�ƀ�C��5-x��(b�@=�%L<�/�<ׁ�Fs\�c����G%���i\ˋ�,_�������ѡc@���u�|:cII�
#FԸRҶ� A��C?��fS�
X�y)o�cO/�D���a����8�ܤ��JYljMcVWu�|#����<K[5	
L�������])�e�>�873��p85q��XC�
���������&�爑�=��U��� !���z�sqK�5=�0O��A^0�����f6։
?Xĸ�,�������6�o��s�w�[�n��W��M<:�iZ�>���!̫����Z��&r�0k�.}�+w������yNm�g
�:C�D��Fr#�X؜w�o�,�q��d�����{����;�#��z<��@LQ��7ֻ���F�DD�J\	ӎ�D�C�"&�R���aD�1���� �\�jy�~MO\�i�$ǀn�tB iڤ�������Gt�@�Y�0Ot87T��Y�����=@v@�#\4s��]p9� Y�i��JaN����"&���Z�e�������
�+)*��6
B `Qp`�=w}L_����sW�Ӥ�����[p)��CU�+�M�'�Q�r�j�Y�G
���4e�]jX)	�`#�X�[;�I����,
fՂ���s�iP��$Yfv$���X����	�=%
�T�=�Ċ\�v�y�׃�%�'$ӉZN�>,@H�j��.����d)AnU�A����Y/��"�Z%��#���nX\�T!tM)��i�]��t얾3��T(E��R%b��.��l���!�M��X! ��4J��\�4����\���P5]ٻ��J2҃ji��t��WQnT�Ŕj����Y�Ov{#t҉�_Q�ݤ%H��ݰ�ϐ��J-3�SX�Kɕ*!�@��x-D��/�.׃.��i"?J,^	��]�{S�m�x��
����E�p�b�$F�,��"r�����c���B�C$�&���h%��,�З���smIk4�^�Ɇ�9�H�QH�98�Q�F
 R�/X;�K;�-.r����1�2����6����n�5z�&""Gؕ`�L�p�pms�����<�q��$��#�6����~AܝE��#����ÍY���龣]z�z�mxÌ����K���,���rY/1�F,��!��|��xԵ��G3}�ej���{s�qL�����$��5��b�Fk��l	��x���C��
@��\��c��&��&ܗ3"�;HA9���zl1	l%�f��l���w�璀B�P��`�1�H� ��'�sh�g��V��_���%\L2:��.�r?Ż������n�h�W�g�R�3����A������snI�g��0�-|�;Oҷ���,k��poA�;ῧ���~�Y�ŊVzPA/�S$ϧ>�Sz�?N1�z�D�(1`RPB@p}}�;ߥo~��:$�@#�}_�[?��rV͗�\����I[2�_�Ou;-�#�σ�'!Y��K�����/_�
q�`��z"ʐ44�}��J���u����zҸ?Y�*��2W��P�Bn�i.��2��blUC�@1[����T��m��:��m��{�sӃ�����b����]fD��� 8"�U�o�Դ;���)e^�N�5���,RZ��i�3J>P"ق��
=�xeD��k�"ق�t�,s%ϧZw��2K����k#��*��
��D��򱥍�����Kg
�٠B���1iB�Yn\��5�5V�ё5�F��{G��Gf;=ft>�L�e����&X �ZZaά�o�R�U���*mM��ܞDp�~��X#��͚�j�O�h]�"ȹ�|@�=��ݸ�?6�[��@��BQ/�ʾ�If�<�j�ƽ�6����2<��8%Ok�a�����
&�S̫��"��v�N�K
��:����A 9�*qr��Jzj:�w���&�T�1/�f�3Q٧�$�3���"�>HcK�$1���L4���R?�L��{`��E�0�=���v:A$�l��92�Aq����>� �;�rӆ�,bEm��%2	�.q5��)6������^�o�g�R���l#N��lhË��R��*�PLޜ8��B�nKޯ����Wb�?�i�[��Z�sN�>ʨ��k(�EY[ၲ��9�� )�ǼƳ�e�Q\@䬐4�M��zs8���jBj�!��ͩN��Gz�72b��\ecc���%�OQ�����Zr��°�H|��j�s������ӫ��f��x���)>�c�b�.�؈K+z�\�X#��߯if#b��POl��t#���~k�6.ct���q1������<x\�A~�v>z��=�"I��|���;��z�t�3C�-���h^k��tk{�[�ǫ����jVZ���TJW��ZO��BɃ��naiP�!�=�lpF�(�Yk�.��ؕ��]撦Wt�f�(�[�u��:M��Ol65;�ǜdV�K�t)��N�}��f�V�#D��A�(�f<4mp�NI�0�Fۼ��'E�&���
���6s�ğ�eھZ�7�A�c�QRD'���pNs�ad��W7TLJj��5�	�*�����N���[�G���R�*	P��m]HKMy���װ�ɚ	��={u�>������nѓ��K��$�8�D�ʓ?e�cB��*O���m&&�$�O�ܣS�q�?���`\$ZY@�-���D
�H��
�nS(�
+Y���B?Q�D�6$�f$��܂��C	f��	�/ʖ�0�&�������]�.�0�B@��@Q�5fyᙤ�H��4vWL{<xT�}�&)b�E�;6�lJ�S��ݺ[���e~^C��I��ⳣfv����)�u�Z��jb^��oV�~�_I�ߒW�Sp�<��K��U��͓���.0M����3�!���_�_��V�v+8{�2�5�,�EXhDY������ x1{ti��x�ѐ�|�,�DX�x���&��@�]�x��r��bi	�8��:�;��d�b�z�_���>�%��p�l����/���d���t��d���>�H���� Bvv�BF����LR�����?8���yd
���խHW7f���>a�"t����vI�v���L(��@�	m�"-/. ��0ɱ���.mlK��ۗ�N��\�E���p<����v��9_Pc�>V�v���% |!��*%��C
 �ih��L��á�}.�l�6'*0:���L��!�ɀ��6ػ��_�z�v.�HW^z�6�?ͫ�k\OR�M,�T$�3		��d5�_����ϖ�&�c<�Oz�"Y�dh)��0:�=����L�V���Է�༭�\�5�Tۄ�E�������?�B-�1��vn���)�9��F�@����
6��I�ܮゐC���Pf� =vpp!d]�Cm�v��S�~E[��3pZ���
r+1��Fz����
�	bm����_ekgG� �6ⱀ��Ĥ��ś�L�\���S*�Բ�ő����Y�:V�j�͠u�BQ�|G���a��n��^�g�_��5uTI5�/BH)����6l,H]o�y"�Ə�������m
��ٙ���
`�c� 
�n�v�$�p�hʫ�4�h �mN=9��
��'��Ӿ%�*�<)y�:�.9��jzV�O��k洩*3K��{-x�R��?ƨ"Ձ��u�N�<1���g�{� vм*���$�Ƣ(Š��M���gmKf����BPQ��}��z�u�������R�9Y�\J����S�1�ƥ6ռ0h�<|�|�N�l���-,�n^Y��"��=T���3��K�㡕$/��2�O&3��T��L�#x��,s����d
I��ޖbJq)b��L��@��)][��YH<�1���'��J8�N���[�9�2𢡄���qw���DŽ�╥%�s���_�n���^�֎��ǎP����m���R��-K}��uB��'FEP��$��}<�v����Q�s ?I^�+�w0B��&ډ�O|��7#�w�ݑ��mw���h��/�_����[H�U��mY�,��1��` � 9�dc�ǘa�.��)��y_�=0�Z0x�a.X��qq�6|����y�j=� �9���;��ɣ<n��!������ˋ2'�qE2�P2t��W3�p#��K�[r?��u�B��(�V�S��\�+߱Vnɼ~&R���+פ�r�,خ(���2�!�������$M!���ßo��+e
ـK4H/s\l�l
���w���e��\#6���1�$��1�W��� 3r�>#9cj����;#�`�#ؚqi����j��7���$<�yl�>
_kz��
�'�4����[�p��;��qÜ�9��&Y��Ű��-q�ipXnty�DF�}Ta����=}��Fj�=�Dq��V�n����q9�~�e�y��jH�q�X%�K���鮁Z�_���{�9��ǧr��?�'/,(�wcsiK�4����%���?�ҵ��F��N�.{����O�٠���ʄ�
 ��J/��Ձ�"uk6�������������IU���ly�l���;�<b3 9~������d���KV�w$�'�bj��nV�*nj�G�M��^)ECu����k��boLh�*��8��N
����p�����OA�'���=V��1#��΋���>�ҳW��H����À��P�����F�[�H�H�	���{�D%]x�5R^�R��No���t�&X�9A�L[�ܥEq)$ž?j�EG��e���H�gt�?�W�Q��M���@�D�i�^��ޥ�Lw��"R�Q˸�J%�d�F�6���@]��๰҆�R���۴s�My�Z2X���E#h<3�0�@��;۴��N��u�loҘ�F|�x����q
�X� ���޼�ľ��&��]&�B��/�� (��r��樏\�.�ń�	�ۃ��ى��v�z,`q,^BƔ�1��&/��#�7��$ƥm&k���8�1(e�>#F
@���5��x�S�|�x
`mH��T�.o0�ȋ�nAW:t�ɐC�n_[f�eWb�&���5g�M,.ueq�4?�~@=&IhH���7�3��R� ���H��Y�G�g"��\+�q!�Q,6�)F"��� ����adfJW�>���5&c6h��yZ�z�.^<��bD>g:U@�`�c��m��.Qh`���?4�KwL�&�YCE��BpZک��45م�<hI��U��n֥�o��D5�Vt�O)��S&�E��i U�܆ex�tB�g��u&��˂�2@���+���?�I����&����ψ�?}��J��`U��C��H�8!4@ nC(DrQd%`��_�Dؙ��X�Y��B�ۼ�U�$U�':KvJ�y�4�ٮ��Ě�QQ�r6�eAZ�E����bjn�}p_(G�,��{*�,�kX;go)�<"��r*b��WR$�5P
�����y�w2Ʉ��iIS{6�m���N��Z,��_�JvI�%�A�J��$�w�$Uҳ5�j�L�s?ך��.��ܬ��j����������b>'�S3�06���yq�j.3p`sr�*?�6�L�jnC2$�歡�f�W�9��(�Ԑ�)��m��m�C~�K{��l/��jFBAK�-�O��j�)��M\�N��1֓�����6]�~C�� }�=���\Uǀ䨡���J�3���W�K<<!��
���t:�V�؏>�lc�4�:��ԅ���}���&]�zE�v0�� �a��EARk��3$�&dƑ���p$ʟ��J�*�|<,��Da"�gjp�ck���Ҏ�K^�!�{�8A��Bb�`�x�[+���^Ge�b�yw���yz,//y$VH���-��$$I�!�CA�X�s����-
�2�$�@@�`�1��;����,����il�N���ecc#y�ru��O�;�����,/l�/K��V/r�-}\��*�D��rϩHK�˚i<#��*R�F\���e����ǃy�o�`�	D�_��{Z$p�(L�ʰ|Wb#��?�H������Q��aJ 1,x�#4�y��LG�}�<�#�+f<	D��0��c�4=�����!�IZy�vU&ٳc�F�FX�:�}:"�k��F3_��~���8�P1A�^��%���<n����o�����y�Rb"�,���rs,���c#�Gh��yd��}�9�-���x�-Э��~,�����n���F-&Gt.R�%t��(I�y�x��͑,��?ga;OkO���C5I렚��cs�z��!me���L�RVy�	b����Q{�F��'5>�d������i66Y~?�aȝgG>��vPcs����#4�v�V=K��z�v�,)����f��Z^�1X�&+
�*2-O�l�
��[$�����0�?��Pd�5�g�*���hL��+Ls���n�+�W���C��_0�yn�ßO�+B#�K��$M�clX��j��A,Ͽ�|6�'o
g)���z[�Ǵ`�r�R��k�{�j��i���K.�5aU'���Ŷ��9u9Y(�ۢ�Ŝ�w��_�I��$�7�%�����UAT�G#��	ש�2&
�FW�������Z��$�f��u�`�⺨�H��C^C��v��kLY0˂7Y��V���I%��/&7�C�7P�bn��)�|�q� 輕ZE�������㟐2�#�%�%,�q/0W{�������@i�D��?�d:�s���9C~�#+-����h'&�>U�&p!�ZK��<�Q^��~�KWS��i��:���l|���"Yo���e��/����.�{yc���ґ�	=s���>_s���s�&-�x_��\��89���m�KZn��_�W�Y\t���?�&/��,.����D$�V�SY[X�F�{�ۢ5�~�9�+%��׷{4�2=z�$=u�K�	��P������Qg
# l]��1�3��LH����ֵ|��b_�P��7�|��e·
s� h=,#0,��"�$^A�b���'U�L��N���I~��@Y�K�i�wCn�E
�d�Y�Hl���%�$/�^hj��6xxP�P�Oҍ垹h�,HrH�#%���QΛ(���[D��D�`O��Ne���Wz���� �,ē�$��4H�n�-�xC�|�Y?��Q&
f*��ׄ"I�%�!d������U��i�O)�)�u)fZ�)��DȴN��O��X��b�N��;]$]xחX�
|G݂��M�C��9���fQ(�E"cc#EI��xјn�y�`�ec�"��]�ʜ�bz�z��;�o!1nf�s��Z�O�JH�r����{v<s��x��2ܫ!/JZc��ā� �$ױ���S���h�L�l���%��S"���
�~���G����L�<U�CZ���{y�l�g��)3���Ό�l�z�uht�w^æCEY�;��V���6�
��zM�+%U"�DO������j�h�Q5{�G�8���-.>!��_ѧ�|�`�����'��U�,i��#���b�%YO����퍒%�x�r�5�h}}]�C<N�,F��3x
��'S�NG$
I�3�jS97O�y����%	h.9�j��_Ч&�@�d+�]�%��<)h�V~�Ȇ�$LrU�V�l�4^�3��2:r��v�^�/����.�
������$�w��R[���t�`d&t��Q�Ư��)�����D�\�g��L�W�>K�-����¸ee�{Cҫ*�������w�#u���<`e�{ʌG�%��n��a��S�� 3�uh�璨�����'��¯�m��
d�;09+��g&8�����:%��'Dܾ�=>�5�[T#C`Lj�mk#*ge�Hd��F�x�,��1!������ი{[l�?5���<�o��pXԐ��g�
cn sl�H��1>l����cs��
?�}�����㘡o�ڤ�K�Fm��g���y�4��׼��aN<h���Y>)Y���׺݊��*�~d�~������k�!����q�4o���*�,#P�\�=@�9���9����L�?�L;�O�X����i��ʡ���qaL�yv8��hn{��7��:�M���`�@�5
7��(&�g�ԅ1?�|��p�TR^���#{n���ߌܰ�\*geD����IVa���w��ќ4ا�\�D��#Go
�͑�H'={��&?<�b�`�BR��X��j�67|���b(iކ�������#����ג�K�i[l|�U�9��[+�N�փ8T	�>�zM�g�v�wZh;"T+�:b��=��=�[���ip���Lf����[���|T�.2�.N�S9WV0��}ﵗ7��_���<��>�|��.��]�W��\O���������Ȃ������3LG<ȸ�i)�e��I��Xna]Nh��@Kb����ZB�Nx@��R�����!�6�{�~�����9�0m9���ő@��D�9�r���P^���3����,褿*%��Hb��L&@����UEo�nY�.��#m�Zt~�A�Yjme��/�`�<]Rcr���E��ʄÁ�@�,,���M!5Š1��1O���%���Q)�̱�.�絻�wb�a�K;�?x�,2�q�T�n�<�%���.��~ cAe��p����ǻB�H_+Lxw�$D��W9�+Q<�H=� {i{��d�C;C�D��L�Ёc�ĒրQ��?��Jqb�;�G&�;��i����q �ВEI�� �����?'����V�OHxY�j�W���G��� �JE"B,�	�*��~,Y�V�T�F!�h��0�N
k�
`O�s~NY��*��`�HL�uQT���v��&��ׂ/c����$KgQ�|����j�@4!A�#�p�Sq��/�.�@��m+�9(;˟�V�p���XN�jcR
0_�Vf{���x�Q��w;�~̀-��Z��6��\�.1˿��)hހӔ��d����Q����Ĺ����x� �x���@��r�G��l���Ce�P�2�e*5+�@����QehB��x�>K�u��)({��k#?����$/*r$�uJ�\g��ܙ�t/ϧ��$��돽���j�7�&ym�\'��bUor[5 97��lMY��T!g�f�R��<�*2�c�㇨�ady�մ�j��o��+����j�aOU��L����l���Q��J��g^;��uz02�9��O�p�����[8{g(i/1�P�&t�ޣ���N�������_?���~�>�'x����̒SeL�^�V@���-@5���-������xBFl�����H�ĒX��L�%���>z����f�B��T;�~��y]�..�B��MJp*�-c������c�
�6f}���پ�R�S��+��$�$���?8�
ߏ���tP�(�&IQ��%���:#��]b���_�\�r���~\12��d���qÈ�ót@����~e�PVc+��[a�c=6I���Z�Oxx��٠҂�����=&^"v��dԙ�
#9�8635l�;���8��HgTJM�+#;,�96�v�m��!j �5Il�Y99�����u�˴c�$�ǿs1qm3�/sE�	@��0�1
P�Ɏ&���Œ�!ևz{�{�D��[���f�)�}z+3��m1�c!�ɒ����;�ce���1^���W���{�rQQ}1�5����-I�װ�*Ǟ
�3s+�~dH���+ڣ����\��恧ѐj4g�b
�w2��󳜏G��wpؚ����	�Xck��Aځ�����^S���:|���o^lK�d�00y�E�4E�G0�D��6����
u�$���Q��
�1x[Y�J����0)0�
�����11�w�������lX`sLF0a�{`cW(Xnǽ��Z)HF̖�	B�jq����J�Aֻ�M@�".R��jn��[0���o�g���$s5��v��s_�_p��
w�t_��� O�O{=	;	���[O�я�Q���sϛ�?c���`����7����I)*2$���z������+;���,����+��w�����P~ڪ-�|^��ۯ���z-2��n3P0��F]��^�ˤ�(��h��}�)/�#��ڦ��-ڸ�!�:�x8��2=�a�X��_�!+k<h9s>�!��&5@��X�'
�X�#��l4I�C�@z��
)��7D�
A?��ЂE\��j���N�=�L��{�VZ��\[��"4��T���]Y��'��X\�3_� �hJ�#�؆d�����2j)�K���>�©x}l��c�ý.m���H�����S�$>�ңk�lN:�緦�/}p�`Rd$z�nK��pl�M�T�K��Q&�>/�c�$�;�m&8R��#R�(���Z��bg��mDTLZ�UѢ�R13��3~/4S�!)�"���"�G,��-{%�\�m�=�w��Z��P��^7Y̚��L�g`3��S$�ton��<0$J@��T@1�@��=-Vg3
,������hHw	�b����bi�$!}$FL���!��2�"�1C�t�=��nl��`��Y�s~�
��!uZ�ʔz���"}��8��PBrpnK��J�$����Vn �\�U�d	pS�lK����AT�������'�Fcv�����{$�>��
]�hUVc���}vQ��d!��c�Ϛ-ɲ�@lm?�=w����se%jB%�@�6A6U�nI4kS�Z0���~B�-Mf"���$��d�'<Q֢���	�Tj�̬c��pf�Z��/�{"2դ;��9�����}k}+T>{~�~�⺀�k��|e� p�O>;0$��k!6�ݤ_�y2	+��*�Y�����QO��$�C�9�{���S3� �c���򬛹Je�#�R��W�{|�D�4�J�!_���)/���׈��������7_�.���_�/�6�IJ�?k�m^ts�>�zE������6�&l˭sb]�e\����L7�kv�����w<�(RL��r�t,�}��8��m&��|sʔ-_�=�/�W�;��H={NO/�ѣS&��]���9�Ef�f}�OA6VJ�Wj��J�!�<
���s�?9f㲀�+.�߽�"��W3>�B���Z{��܀w�{%�A�v=���;��Be��$�݈c��ds��<�0?r��g���
��lJ��W���c:�:������RrA$�̣�e��߽
��*�B��À,���Sx��p,��Ӫ���ֶ,�z�A�C�E߇��}��y�R�����x�3��(lw�O��r/����^��p��?('|"���p�N�v�<!/ȧv��p��j1��\��,+�.�r�-��J�E�j�0���4B�*6;3~L&q���$����A�'@U����q��oO]���`CO�%1��ϚѨ䏱�
����/d��p"��ݿ#�a���b�W�D]O
7��'zk��P�d�S���5�X�� J]�o��8��h���`<���?'1�$ōk�����߱Db�<Erg=�ǗX̶�5��})��C}�cR"Λr~J��k�f��C�mJl���)�/�8�;='<>'�
�GDM���qe�m�)�ñ��/o�i�
"��NP���)����R;��
ݹ\��7��˔����~Mguc����_oɱɽ-��M����{�u�w�A!���Ȓ��:� *�-<8|{$9"���6�|4�#�4��0R����P�)�n����`�����.���߷�6�Hv��zu��l3�#�[+�9��Gf���V{Q�<�gS�c�.2�C4��8��v���S��`�Q�b�?�����"Ai�lj�r��so�K�?���4H��l�S���5���Ī|��%�d߬{{�P����w��R�s*+��t.������YZ��ͷ��Kj򐛿�e_�BPdG�ڟ�ʥU��Ϳ˭lr�Bal�6�
�н�>o�F�d;j'�;<��Z�%_��;��,8�.Qf9��v�}H��©���+^��b}1���1:f4�V2Zþ�W�Zdd"�y�9��Ţ�Q��~ow������U���-�����9oQf�~�� L�����]���'t}zFo�����GV+D\I�TJ�Ui&��{�c��|����TnH�κ�^�2�e�)�!�Id����<O���<+5 � �p^�/5�Aq����Z��lI�<��%���s�M�s==e��޸=��j*rGKX����zkD�LM}��2A�]��1߫����$�gŤ�U$���A���]�*��r� Һp�0P"e2�!�'m���V����t���񐮖�ړ<t��8���#~7��:Wr}HxM+F':~B��L*���^��a6]r���������A8kOk�]k�loK�$���'*kg꿀�U�5�ߧ�t���z-����q>f@rƯM�ȏ�GD�U���l������2Ȁ]/�L$�I0o�a��S�<�vj��О�l�;�[`�d��Z��WI��sE�@�>l[����T ͖�
U�(!:j�7D<I���J�n7w(��s3�+9c�"�_U!>8W��������;m+�;0�iO�A��Z��ըG�3
!Rk�\'��<�*���8F*:I�I�r�&�gU��H�J��mx��{*�3�?yu��b�nMܷ�/2c����xk�l�hj�����m�5�CeRdN��3Eg�<^���G�M��׫�$�ι.D�,
�IM����7j��˶�Z<�D�?k�t���gW҈D��k�
tS,�IAw�JnŮ������&����r�T���\⢵�턏��J��4�<H���O u��n���]�Qr!d�,&�anP�R��1$*�{��W4����*�f���/~�2��qR�o+��E�R!,�I��稍Xҡ����ڵn[g'F��}%L�:z�xs��x���u�./gBn<xpD��}q��XW�%���:��"�� �|G�+�ӯ$����'!I�+&/�[U�p�)�m��/���!}�q��r��qT�y>��0��x�]]^J�`>��1��6y'�2R^�ƿ��ݡ��}���7��"��(?���Kڞ����h���|���!�hN0�:�G���q�{7L�T�����=�`��gՐ�/����~�^�c��l�T��jm�d`��g%^2C��2�:5���4X[��I��lj�*�`��Q;q�c
�K��"�����C���� x�,@B��dNG*w�����*_�:1�1����
��m\s�݃v6��ws�>���_�tzP���2��K�xYr�ňQɎ�fZ����2�2WR��Í,�SN��8~�5Ό�&����=;�X�{{�~18��ߗ���Nt8��>�q�a��9�Ar#Y���ؑ�\u�s��d�k�X��Tc@l8�cغq��\0��d�<6��J�]Ȍn�r\o��0��K�8��n#c�ZfwI�k;�Q.l�H�x��`��x�2���ش��@2�$�;^�~簿�-mP�b�C�m�����9�񌔃vZ�R���l"6�3b��&m��玧FX�渍��,����d�"wM�)��c`��P���w�x"���;޳�
gnpe�1��1�:Z�G����n
�[a�]�
	�1��8�ö Y;��6
B1�~;����{�1�*��hrT��c��f�=�䃳KW�����~�]��O��O���i������
�s�ÿ����ؾ�XT
X@����s>9�?O?�6|��l&76�G�E{���g2����})�`�!�M������_>�.�f�
�%�71[+�@"�ˉ(,0s�w���2l��T�3j��h�6�Jz�ěʷ�W��$��+@]s#�Cs�	�L�how���#Rx�̓��'�r�nțx��Ή�k^��,}vkP�	fh��3'�l��`n]�
4%���QS�.W�P�C����t�Q��vL��0�����	�^<.x!�oM��x q�aw{�vw�ig�#�� `mv
�#�xL,�%RW�
��� ����ݣ�d��n	�|Š��x,Zݵ��8Kd��/���
�S�WW4X�4Z	�!ɥe��i��4d��ÅLWj�ebm�{W��^��|ZKPo<�%����Cb�Xb/�Hǂ �XJ3�z}�{d��]ͦ���tg���H�������nm�d�����^=��Y/���^�I�I��襢��3�����^���>�B/#	����=�k��O��x����a��]&_�GkzyT�umAO�B��{�NO��3~����������{`. ѓE:K:����z;P�s�u}�Ҷ
`beRV&Y�\d8�h�<�,r@�@H#�D�z|��b����O��B��~_����	�ߏ��sA�\g\�Ӈ��Ǐу'Gt�@ڽǏ�3����?�����}����_]
!rq}%�+rQ!ทg��� 0=b��r	
yV���Pu`�� 
���w
B�}̓zJI=��J�{�r�
u)���e|��l"YD*���Ntl2�����嫿?C��x4(�~����.�|������A�����5t-6/IE��UO�z�u�S@�$&�0Q֪	T�	.�[!iRU4�$IV/�k^O����	�b�ޣǑ�}�����7�ޮfY�u����
���� �sس�
D�ª�x�C�������~�f�g��1&@cԔ�����%��3S@z8����91b��f���ǔlJ�W���5�$G��"�i[��>�s�q����:��-���K��p�Λ�ͳb�?j�6��!T�O�F����NϦ\�k��X�+�C����z��d�'�"�^#V�	9��`�/fb��,���WK�z=y?d����9���!���sb�.����<el��t|����d�I��Y
0�lM����yp!:�*�X������KT�ă
��_{t��'���&�= u�*s�V�m�@}�cr�Ԩ�x������S�8��2��e!��S�׼+x������mo�J��X���\�<d���>��	�$P9��՞��xR���jt�l�Q<����p�W�
�<�g0����Ώz<�U�Z*2T��#�j,ݽc��+#vVk]#y@y���ؗ��Ve1X�D�q)6ͽS�-j��lB�gYk������]��.&���#�1?��	�X��.������~�ۍH���ý<����oH+��8E�*�?��B���)��/`Tf�K�������cZ����Q�ć��U~�#1D��(؝�#o��1��?\����8>{~��12�ts�|W����s ,���
�K��p���:dFy�8'��)�T�q��6<�͍�}�)^$�S���H)�I��3����s���*i�O

S��u<y���ߥ#�ͩ��[SX0�>�Z��=~N$9�3��eS�ѵ�/6츯t��YzG�@=�wtsdk;t��9�� ��W6�����#�󈃊B.i庉�O:SdN�8�ᚎ>��XA��ӽ=�����n�I�s�"%/�-#|�������{��Je�=;l�"���L��7&@����"�_4WQ�q��>�����Z����%�`�G|��Ou��պ�Q+��Ϻ�[���t����D����_񧲏�[��;�6O
�t�Ď�U%��j{�(����$_V�.�g'�ƚ���c�~!:l�X��C��)�)|��S���k�HVU�<Y(��_Cj�#�1������z���^����G�"��m?pj��&Z+���@���W<��-xqU�xج�k�:�k���{xd�ƞ�j`�����մ?�ӝ[c���6���mz�����]�s�M�vǴ�=�}��`��p�a��LP\Ng���\�y�C�͔�9T܉�Z�­+?Ķ`ij�He��
Ҁ�|��ŵH]�`MȿקW�/�T���:�L^�֤�:�b���5MW���O�^1�2��m��#�M�涅��͖��
p>."�R+��X��(vbroܗ�\X#�7��1��/m��[LZ�3@S��J� ��xا��5d�4W+�
�����wy2[�L��LL�����F�XG�3�p���bc�e�5@��5
��4�t�1뻁U��X�DJ���Q�R�W��J��kzt��+H��!�ń��N��?�O�'2Q���'���'B�8a!�`Y�R��R/�5�K{d��N�����3@s�҂��p��d�^���wv�0I�vx�@�ʃ��U�`n
�Q@V�DP�7m�(�e���8�`�Lf���O��'��ӣ'���	�SzpvDGL|���X���ɍ��^�ή�Ls�����|�CH�0Q��{�X,n!)�@1���X�ԯ�_G�VJJ�-��$��xldj�E�>�{����5�C�
� �X!<tF���N��A2�9���JH�Ka���
 n�z��胞J�X��u�jy-s�|mr$$����1�Y.��B��b��+�����8��J]]kf��U�=א$u�)}�I�P>���h�$�!���k_�5R�!j�������u-dH���G�,�t��I�(���b/�-�����ڬ��uɣ���1^�Z'�.���㛸?��=���I��/H�FVfj�/�ek>��>����ѣǏ%����}2�w�J|_�=9>��?��� �� �ãSn�S��'^0�<�Ƨ<89�G�Bh�p�_
`js�p���T�w��@��T֙��U�N7�q�y�
B�����Y(-�M�L��qs�n���)�Ӌ�Kz�J��3	��B�KnH�Tº�Jx���5�dI�b��Xx^��������u!3ze-T�g��հ���s�/���s)�=�0�������W%@&N&P[e�⍠r����gI��X��u�o��I�r�
���bd2��j]�q[�<��*�I8Š��F�,W����~�O�d�Wdl�9�࠿�^�q	� WBH/�7��͟��<@;���xD.�]�9<�K{��zZ����3I�ޠ��( ��ċ)]
;�=f�$�r�r��:Y��!ﴧF ]�]2e��V��i����T�H���]�����u>>����9��0��(;�Ѝ	��]��1�
h�����J�{�lj�݈����ōN��#�ٮ!�փo�z߉
r<<,�k��o��63��Nt����u�;L���d���8�nx�e��ŕ���A�%�%��ls|�1D��o�;��X��"��a��+\�`��kG"G.k�N�9RP�q�6`�N��=��.���}scNO1�ߴ�yj�>=O�L]�#����f��Q�FFF.ڶ�i�90�94���Jl�)�����o#1�{Z�N���o�1��o�c[.iN|tbz����v�lw�#އ"�LJ~��`�C��쁚���&]%�$��~ǁ%��d���`���n���o#9��N����o�7ȍ��Gp��n��dUL1��1y�n92$ZZ�>�Е����F�
�Fl�|cdz��/�j�ȕA�X�|Qn�#�C��9�t�U�bㅃ�7�od�7ws�S7����(SU��үܸp��
���e\fv����V?��f�u��;.!��*�%���״��sc���k�21R��a���.S�rȝ�/�^�w�g�:��O(š����:��y�
%�<O����8N��U�7o�����tec���>��bg�3b)�B��m��_���Fy�P�Y�`��i�k�����=�Kc:�o��Wjl��W�b�z~qEi)�7b
,�Ju������$^�C]�����0���d,�@�e��� J`yI|.k��oA7�z.�o+�iM
��3)�����}8Ωh"yT�|R�x����b	P��{#��)���(Y��O`��6��l�$.J&��$��h�Og����rݗ��7���+za�A>��U��%�y�])��X�~��d�z2���Ś�?�|�!�o!Ǎ���3x3���q��,�+zr6���L���˧^/p�+#:=�����:`PG�((���5�\Y�3cQ�W��h�����/�]�y'����c:`�cz5�����A����p"֑Np�A��R4ue`�Y)�Ӗ�9�~R+Y�^+�2�N��ay�3٠J%�"��4�^k�&�����(�sĄ��OUփ����4�����ⱒ{��rw�^�
Ab���1��@��ȯU"3�vzuF���� %��]*�Ac� e^�BA6�d��|8OA=G�gP�P�`�JJ�2r5�¡sW�{-�>tl���1�^/��s9,�0 �,��\]Nr@�_�&UV�V�(��H��>��
���cn�=��N�
�3�Ae}CM��U�r(]i��ޥT�
��ͳ J=�(�l��KM�u0��t9�l�%�4h-��s0͉n��Ro�&�d��{D�l\���s�d��&��)���8`��j{�8a�C0�(�me��s]'�'�[���{��9p5;_�bʳR�^Z�Tz��ڞ��`F���P��믿�c���{�7I���3!,/��a�|�����s�9�m��5]3A	�q��؊��!����]��/�%����a^�i�s3���n܄�Pl�����T�_�g;)�5�Z�g9�ur��V���Z�C���a	��W2y.D�@>�� -�ob�X��]$ds�������35�P����ٶ��0�2�zp��[*o��xq-�FۆG�x�T�4��^_<$���H�֥m�'��sB	}�RÂoL��F>�Ǖ���P�8��I��;
���D�{c�f�^105H
�׸.g�ȫl��O�y?�V�q�+�d�"
l���i}�$�q��^w�������	k�snD�Se���y�d��吜�΢w����R}����ƃN� �	Q�����:�o�Bx��&�Ȼ�zu1��\�`V�*�dU�b4V�s�6�����?���:�7�A��q��Q����\������:�Ol��#9�a�G���kDQ$ۗ�>!/��"��1`3�[U���8�	�����mNt���	
Ǘ6aQ�m�U�l��\}����aH�y�}!������{�;,w��w�D=�\����(A�]��˝��:<Y[�����Qy��i�2�s(�n���6D/�6��Zj�`�yѺX��莹�s�7�s��s�s��s���FJO���@\�@�:�˷�@�DŽ�6䣜n<�/I�������H]&�S��H��(9)�Ϯ�>��ȝR��@p���u�BR�ӏ��{i��U!2p�SbuH
M��E��cv�o?>�7�?�$�q�����*���.�'=,�V�:0W�� �8�<��6�c�ow��.�a�+��=<�$'��Yz�� ;��"����Z$�E8,^���/���Ls��-O�BV<2��pn�����yj>��V��΍E�<Oj���U*DA�ƹu�tc��S��<%���w��x�"�,���h]?�	H�go���1�
"��S��۴��CޯY4e{�Y�b��|4�/;�If�LD��vRj18mp�S��J���+��N&�@ͭg��9���\��R�9�+F��d�P�+��@�[��$��j��eʷ���a��Lv��dD;�w��%C��,  �@���8��My1w� @
��HVR�l�H0M�+��J��!�Z҅�`#�18��뺀q��t�]�C��B@���ꁠ�x�	�4b�)֬Z���Vse`*�����ŽL�I۽��H������S�j�Cv ���\�+U3}�劉x'�`���qq&���m�2�T�5b2����*:�tE�x�>M�Pg���5�3�2��|_�o�>��3(�58*����'�\s!
��Dw���rH}u|/&_��ho4�X�L�V�d��&?��Gc�`�	ϟ��J��NY	��]��8���)b�_B��3z `�r�����9���"��w������@S�Ȁ��T��u�l��Z��,,����#x>�
�#�{�H�@�數'���[?b}��?!��8��H���Ō���I�����MZ}���QC�R^��r�65�_������@���:6��֗(}�ޟY�x@Ac�'�)�������*����F�>��nO����ҖJp��>��?y��hX�+�b���#�ck�{�_����p/f��F?�C�R��
�[��|mh��Z���0q���O���h���֒~��gڶ}�k�x��g4Ȼ��T�;�`�������-A���M�*� q�SP�JPr���z�,
�P����J&h'�n*�,��)6��GעA��rf��H}�R����1`���b��ѽG?�����m�.s�WF$�Ǥ��=�y�sO[�PSE&D�ڛ*�*󚊁D�"�-�ݛ‰�ʼL$��f�bm����6���=j����\�
b���rݐ"�s>��?�����0�<x:���WP_�����P��s���H��@�L�K��~�c��3�?*i���C�^\B��>��S����`3�s2���ZR����-�-�?���:���מ�9����3�8k�y��%��3�wP	���c�{��iHH�l��c��䀲��d���qY�-`�/��6�Ool>7B�B!��ЈǪ��m:?�+� ���|)^�C��^VW!�8�*�6v������y��H=ԥl�"�����^�qi��R/��@<z�u\�D����	ӺVO��Sϗ��C�7���X��ԋ!I�	�C����=�R<�G{�/�(�BH3P�
�)y��>ns6�w���E��(�φ��)Y�oʬ6��H�z���������B�H�qb��Jٯ��@�{C%�����ͦt��+rgk�W"��P���ƍ�Y_(�ڞ$�V�N�����Pqp�F��=;"v��cs�r���p^�%�n���D�'�?�x!����Ɏ.�\��w�L���p+g��^F�n�j�U�?zx5� �\ic�|7��8>�̝�p|�C<���u����` \�mx�T�w��s$E�
1;��(�t�?'5��br��ܐ�@~�2i!��Yv��V�[ޓ�m�m$6_
�s��k86b����;�J�#�Rna���S�E���)�����%b��T�V���b.w+���ɉ�����1��h��e�1�mNr�6����A~̻4����o�A~DF��
�pN��N����v���Nۓ�V%#2
I�u�$a��}����o���F��w2�y�����&]�#���c2�	�� 1�RU����>��A�����NHR��B�1<��0������������5��7�-�"��ڣT�9���|��ma�h=��\�Ǿ��Z��|�yϼ&�XNn�[{�/���HԂϟv�/����E�ݫ�gl����
�]�l/ȉ�'��]�b�\�NΩC�P�K�g����8�	��n%	d���bשn��M�H�u�8-��/����#t!ش3�b�X"�jW�#�L?�H%�?"N�j/M��ڭ]zi{���^�g-�f�	)	hY#H8���`���J��r}?����ٵ,�C�\��8�l��&=Xd����k�F�b
-a���1y1U�tyN<C�7(@�m�x-���$z��+���/��W�T�O+M=I��~Ǣe�]�sA��'s�0���H,��0����,k���z�-��5}��}���uj�`��
d«�k&	�Z�dH3ȟs�.`����E�N��"�N�S%�=&�&��>�Lt��@�	�!={ C������|G��L�f"�Kww��szx�@�s��#�ӂb���p��݂�B��K��Θ..�L� �Za�?��א��|褐��?#?�~��Ӈ�$n˷�����d�Dd|�.�	ש�X���ni�4��U�Z\����g��<3ě���3bAA� Z��J<��ԭ�-�E0������s������#HH֊�ڝH�TD��?g�r����w���޿��t}�׿�ty}D?��~�ۿD~����;�A��%����{��g�	��*}��w�o�N�ӽ�}��7��?�}�W������'����ίSz�s0�y�/���I��_�!}�7iy��~�ѧ�~�^��K��|L��;��ÿ���/l�/+��_�)}뭯������	��ѓ��/��������N/�Mx�=z��3�>�Lo��
ݽ]q�����w�G?�9���YdܪAE��s�;�x���/ޣ���ט��������F鐆�}�O�oD!I_r�œāQ ���m���,މ0���ZI%)T�L<�j�<A�]s�{V��r	A�
\O�"6�ԢS�E�j�M�ת'�rj�OԺ�������}H�a��j�X�t%��U�|�Q��l*bJ0C�L�<��+!j���GY�]��5K�<-�(l��)9�![d�y�$�<�w�R[b�	�&^XYD��Vbe�F.�����+�D��UY�`�棏�?~���K�'��}�}�P�
.X�?�2�. 4��O����C�����r}Z����=���@�����@|w{�v��a��/Q�(.-#��V*���;��qk>_�!R/������F���}���*��+��S��2~'{W3���] m}%��'<)p<<:F ����K�z:D�F�r�T䫆��,�K[�<B2���!�n��P/��P��T*
���&�B2��3�c�p��5c�d���G�2�|�t���|v�RHVw$ uҗ
��w�D:�d�{P���$ς��a%��v/m���Q�+� J�2w�7G!F��^��k���+�أ�p`A�a2�R�BA�SOE��
��Đ}�sfs�i�[�*�mϊo�J
��x�z��KI=��@.H_&4}�vMb4��c�"�%����VI
\\1zy�N9�T�9��et<��py�=�HZ[�r]��L��A>�W&IJx�Z=�R�.']-�}�+9�gqT�Յ���?�o�������+9�~ ?��.�A4��H$D�����Ҧ����1��1�V���L��L�6e�w�6<E�+`A�}�ص`E Gx�Q�j@�̻ƴ]��w��y�D�C}#�eF�����Ս�~l|v���+��1�`t��ۿ];�Mn$���G�g�O;�n߈w��V̑fJ��d)�j8�KF��=��Ȍp�ƛ7ا��3��_ �͞���m���%,��.��Г\>���]�,��Vj�uP8�Fޟr����q����v��������wM�6 g�x�"-�nG#)A���㺃vl���]
�Ԛ�X92�^(�Ηo��O#;<��.�����<=vG��ᤈ�kV)�ᰁV��{�ڐ�p��c�Ԑ����U�I��*ߘhtɎ�t�'ޖܚ�ϫ\�3���+}��V7@����|��o�|����s��y��ҥ��p|�s���5�k���N���u��s�#�4	p����P<3��S��MyJ��Ϡ���8F�OXD;���<OMa�,l���#�H�M�[M�C��B����U�?��/�����*eA�4�-�<U���ޕ���)b3�x�yAˋջ�� 믾���"�c^�B3DF�kP�H�j��/��hk��&;���L���K;���fX�hwgW�5�?V��=���E�."r�Ypn��u�.L��Ȥ�5p���ZA%(�B��B9��7��ĄEUnټ�wm yM��ߏ��#��!�ǂ����Á�A�I��w�f�(�&)��6�����`��W"{�2�Ϸ��t�`[��K�/]�|:&l4�G	��;����W�W_�3�ѓ�"��=�d��W��#��6v����	��S�w&Ό���{tŤ�d���3,���K�� 	���}�����"��6����hg�ɏj��b�b�ʮj�P|��Z��z�z!��^ӓ�#:}|�ghy�xz����-�4t�4�`ƽ��������l ����Y*���U}��K��ұ�W.��K�zI��C����=8z,V�g��90S�~��*z��W����M�7�I��?��闾�wit�5�=��r��>����?���~���9��ڡw��]���_��|B�����/�l�鐯�|��~L{��?��ҾA�;���>��gSZ2��/i�����Cc�Sz�g��ޮ���>-g����P��>��Z���y���[���t��:c��k�ݥ�}��r~-m�g���N�.���G�ώ�o��m�fү� �5��z�_z�^��P�uk�P����*{�t|��e�^?ж�W@��+`��3��G�ח�#���.2.�
��Z󪣏���u�σV7�D�)s#�R���NW���Stc�k�k�����[#��y��_	�\dl�#�W!^JU�6�r+DB�z����::[Y{u����
�K�
,H�@��D�[��s�#&ɧ���;q����<@}�f�!�<.���|�����݉<"�G'O�?���轏?��?�O?��!��Oޣ�NN���&73�&s��;�ϧBήf&<��~0-5F	�r<խ�6��s@/2@~k��������?��	��rq�N��F�ykw����>�T���*��R��(!@�=�j.�"�2&di�Z��oQ��o_�GI<*D����>��(��2��y���d���_,�1��6���`�Eۇ<�@��M��T��|\q�N�Vk���+e�|�%|OHw�o��������I��hy�	Kxb�#�=�P�!�Ĥv)Mx�p�pa�fg+��K�u��Bؓ�A<���p�*,���L������cF�[`8�_<g�J*��<����31Z�:�2�j�!sB>t�C���{2�(���7���K�fE_Ȥ̀���-T"��ƹY �<���O�c"�'d)�b�Oera4싷��n�H�[��Ɉ�r��V�?��C��|<��
���/r�����X�Q}m+���:���U���I�q�@B�g$�s!Ҕ�A�HG���XC
�#�ь�}��k�띒)�x/��ZB��܂'2uL�;#7��#}��`�xU��1�C��͸�@}G\�</sx�{���<��\k���ϮRj�����A�݁O\�w�G�?7\#��҄ �/`���]�d��V��o���HtĮ�nx�d�{�Ę��W�\�
_��I��j~Ö�����s"�d�MƸNv �G�ǴE�ɍ.�gu"��
���o֒��1����)U#^�'K�6��}#����o�7ᒾ=1�H	��9��gn.�횙<�:�l�aS�J�>�	�@R�k���8�7>S�����鹤�3R��#w�;��]�nxX�5�M���-��,����~�]�u�o�*vS�܇<o6��˽���EM�)�)�2U�}[q���!�7v����,;�]�aĔC�
0���#W%y0�ܥ�ʵ:���"~ǸH�<���0f?�=#D�1��R���Œ-�y|��%�@r p�GY�Hz`{j�Z�Nr�Ʌ����避}��)�62$w�:�í<�<���WŪ��w��
C�	�Ƶi�$:����Xym���}s9�H��H20���I�,�u�z�x�J>����2� Wz.dz2���l�m���V&7��n����K��N��q��{oyGA�R!n��.�U��˯<Av���%Ue`NU�<�X�%�1�/^"�[/�[/��L~�Vs^䙄�-����W0
�]30T/jѐ�|��L�6j^�C+�)cƱ�x!b,I-��$B��FcYϮ/��`�	�m��.ya��RI����v=���J�6cd�E����+���@��t{������̓Ua-g)�že��7�ƫ��o</���`q]3�1k�W�t�l��Xt��d�ZVtuٍ1]10�:�ܢ;�[t̀��1��
�Y�!M��s�9eb���DS&+xu'�Xϖ=����vo�b �G��s�&��\c��&�E���y=�j<���ͦ\�kڞ�~�襟�a!?�5{��]���"+5��=�~���\) ��V��;篘cg1BdYϹ~���R��	{�N��n�c��{���mn�:!��:�c|_m����ƅp H�ʃ�1"�fA˵ͨ~mUD�(�����r�
�Ш�"G��͚v��*�l����յ���[��3�#۴`����W�Ʒ�Ǐ��6���7O����џ��J��e~�������k����&}�������z��{t����+/Џ~���W�?�:٧?��?���}Hk���/��)����{��7�ß�>�:��Oߓ����v�3�39y��#z����z痾I�N>��������]ӯ|���g?�}���ͳ�c�8�v8|LO�k���|�N�\J{A���������������k��7�a��B���_Ш>b�xB�ǟ�Kw����.=����(�5��Wk�x�H�"#N���Z� d�$�H�7jӧDZ G�
���N�*�ܰĄ�Mn�/#��P��(��=#������&�}K����n)�T	�V�_<ВZ��Bx�1n���Xk���u��Ś��Ż�J�����B�pY�B� ǣ0x�����q�}Q�hG���pY��2�g~'!���4���ь{2���d�SUZI+ϧԗ�*s"�2V:���HdR�^��X2�1��W���1�`�ǡ�'����<�M�Ï��:أˋ��� �����;	e&r4�{�=�~���7c��1s��Z�/>������y�~������kJiuJ�ץ�V���hUabY��
6խ���9R��,�>���X�P)}�9��K(���pyu�e;���k�Wt}5�r�OX�/�*Y�
��G;�)�GE��2_��Џ�D�?c2o�2w2Y%�"��w�q����]��J�,�&"�G��Q��u��Jۓ�ʟ!з�m�㒅�e{ uf�u�c0����q1�Q)ý�����ف�޲r$_�`wO�1�B�Rsm}W�ǖ�E�=�xls�(��3߾}[=�j�v�<A<��!adB�����GD�3�F�FC��c�T	/!�S*1�ěs��p�Ւ���1V�/�G+�c!��	qx���?{��׍V���=7�lC*)����:^���x�&h{�1�ɹx^��w��u���ru�Oq���?@r�I|������+��hywxrlߞb�R`$vL���@V�<ع�*�w��qU�a6r��5n��x��!%3J�V$���y�'`H&o%�+��V��b'Ź��o����#�g��ɽ="�W�^�˹�H�q�V!Z6�1u1C/�-j������6e�,3�e���5�j<���[�F�M��x�fcg\��sn�r��/?'=>?%z��P�O���݊�oj����=/�=H�3�BR�k�}�|h���ml�ӯN�q�]$��\��H51����w�����NӷE�+$g��Iv|����Lv���	���i���ֳw�䤆����'wW�ovѝ�򟢤��>r��xM`:�-�Iw��m =6Mbr�#�������m&oպ�Mf�%��E��][ݫ߸�j����?���[E����KZ�O��	����K���@ml��M��
v�W����~�bI��|�Pn�9[^���4������
�nnj��WR�v�@�;:O�q�3�?�g�.��y\h�F�>�<��z�Fx����A}M�;#�ڛ��+�mږ�Ő@ e�v����bm��}H�芌�ӹ� ($�2��g"GW��a�
�ٔ���E"�#������d1���Z�����u�k�z���`�X
VX�"K�h&�_���/�%�n�i��s�Ë��$Aa�e=��[�䖪��D0�m�ae
��*�0�it�
|��!}zR�k�wǙ����5m����‹�$V�<�ӫ/0�����n�"5�	bs0�v�ӣO/!>V|�������1_��}r���^�r�B�0I^T~���/�i��fB鐦L,moU4�cw��|̊Χ�x�w�,׭mlx�d6��o�䢦�O�3��X�=V�r]AvH�%�"ҝ}H�pY.�p�`"��`kأ�N�B���jAw��/����u�iD�@<��TY�h<��s��Y���,Xz���x���<b�VUp��ܠO�~�s#���QC��
�3Bh���=&ι>7ce]�����f2�h{r@�	S��8p1�Z�/_�u�z���>p��[��*�H�K]�+ү��H�
�nCN2:�;{��\Ƅ��	��h����/X�J$��-�@�,dK.��P$ۣ��}ttIId���އ";����l2 � �¾=����K�X�)kY�V�֞Uj�;�s�p_?�-y��wpσ��	x����$�9.��]tC�G�G�Bܔ�9�ӣd��/Vcq4�-z�Ԛ��,0rm`�x2Y�5/�9�ѥ��,@�������kq�PW�@��� ��~�n�=�C�.��e���^1��������X[�u���Y�۪V�F�n,3�#[��.�����~�)}��'�u/��j�d�ԕý~��"�.�`&�7 q0�^2�)�9a��8&D�����D�.��P��ۇB: >a�Af�[�{�ܽK_{�m�0���nέ6�0�	�Y��:7�Qȯ����LK
�EOYJ��RN�\����	�7��D�&[M��u����Z=vpCji��
����0��[��X>ۓ��{�1ZQ�>��o�~A��}��F����:d�P7j#�Kd��[�X����H%�-��o�w�R\�Tb2_@|_�W%�����_ˤ�|,M:�~;<l<Pv ���hڔ���e!\��L�C�׼�v�g�3�;��7����6D�J$�jY�T�Nz�
F3[�#&��ϥ���O�����z��oJ�&�ݻfb����<e@j�� _ {ൈwr�5�U�&IV��V����N*���Ӻ�ŵ5�{]��kiHpOo&��s.�{�ƀ��3�6P,�ت��˵R#��Dy@�c@�@�����<4�wG�	�>��(u��H�"�߾��h��X�{8��X�a%�A�qO���U���v�a"F�	ˉ���Ō�Ԉ��6�Z�L�;d��UW�
�t��h�����Y|V������y������1�w 1�Y#!�b��v�]�S0̧�q��#�y+�f >�Z�U�l�T�8o�ż	CNϐ�z����{x|N�A�*w�:�w�Ro���3쏬�O��q{��!�I���qdžzc����S7nGJ%"n9�:�Ãϑ,�����D���w�Hc�w����:��I;ˌ��h�c�F�	cH�>�����P��P�I�����nۨ��ɂfI�����EY��@�<b;s&^*�=�An5�km��<;��2U6!��"�����F,;�|5^�EK]}�����d�@�oj��ڹl^W�b�JK��7�O��)?�ߴ����r��in�L^R��6{7^e[�d�g$�4o�!F��3�2{f�P歂��Xs�
����O�����3���c�)����!�?s�Ј���^;ܥ�_�C/�#h��ƓjX+�%�A�
�,���J<��ER�k"�	:=9ɉ��S������{��5��e��sP��F���-.��
�X�E+��z*RO��yw���J5)x�n�kF�;},FG՚vhs~�x-u�e3 �'��p�Չ0��C�dX��D��g5&JEW\v�5$b�"ϋí�Βx;@: �h0c�d(�W<�{�ɍFS&�t�`��Ϯ�l�h<ᲿZ�唯���`D�3�z��ͻ�1ypvU�ޘ����lYI��Y�D�TA��>;��<KX��f��E�5�@L��Ҝn��d
�7Il�	1w����<�޸��"&<z�%1 s���1?��k��B����	P��}|���ې�Р�׋�����dB %��w�]I};��C\���oҺ�@��O�
�y����d�

�\7q������ǵy�Zm2hB�A��05� b5iuT���3��Xj��k��@�.����/�m�2���3>ed�R�lq���Zq�=��	��k�t��V��`ݐL��ʺ:�:�F� 8=)PP
�R������%�ϴ
���m%!������U��W)�;�:���n�ꑴ?������jl	*?O�Z��[گA�{�ϡuL��lR]4�%�6@>�u��1��Ñ[�T��m�;�;t� �ra ��"/c�$�5�m���^�<:��}RC���@+�N�8q"�V#��b-���G����uЅ�S�7�6��J��T��ʹ�05�����D�IyI�k^��mE
�Ij%%���u�k��{�dž������lqv|��n�x��tR��'B���4eS���a��ŵƐ��c!��xc��C��>�ej��G;��;�c��+�K��#�d�6�= ��q�!�x.�2^���(?���;==�۷,����{��`9Ɨ���ހ�#�@�aJb5�5��t�=�Vrg����Fg�y���)H�%��8�]��[�E��|B5��	7޲�/%�5�	�dq)z�~�.$��@I!�$6��5�h;C�F2�N�����Ǔ����9�Q��h\2���I�wHc��'�t)���G��{0�HJ�ǭE�l�򍜿��-)��<��������]51�ూ��T���}����j��\���8i:vUrM}�U�<&��-�V�K��k�o����A�k��f���5��Z1�R�i���P�K���'�1O\����#x�޲�J�!2g1�}/7,�cuL�w#�<��;H�i��R�z�Z��P);�u��u�1��S4$�xh���ϋ^(���q�=:�7���i@+�������V�?�� ��Zٸ��y~��%���|�@32�d��-���O�i�J1u���)�j�q*�?����
3ju]�<��`�wC�Ǭ��r�.���즀��W~G#�M1o���<�wF��w�����}���%"�&֯���e! ��S��yȓc���p���"I�
�C�QShG9�ea	�#���y~�xl���-҃:)o�ױ���xfJ�<=3}^E�T��i����ihT�������Ɩ�o�C�sѷg+��k��9>"�''?bP"<�k��GH��ԑ��q�]��8{��[9��;R��n�8p a����M�2�x,$'<B�rq]�ʑ���a�e�{ttɏ�䮖1�5�
���w"���c[����������;@t���
'?ܒ�;��k�v�4�/���Z��-�r����D�R����,������u"1�\���7�Ѻ�O"*G3��"�i�,��"=w�3�f_�7��<ߙ�q�_�D�H�O����<tx�����=�+V���@���nfl!S$I�礍Ì���{��2�5�&��̀�9-��ΐ~��o�n��멀eb/�Ȉ�TH�7��m�$%6`���T�УGO$�.�Ap,����)�&{"MuO�h��Ɂm�|����p�Zc�p_ċە�d`��H����
b{�P��_+���+=��w�`2�Τb�:�Ggs�ae�Z��{�*�S������˜�\\
�0E<
�^h@wH��^b�����y��D��e4�'W3zuo$��\�7X�5�]�t�y^.*:�2I��6_g��I�'����-�]/k����tg ��_����3�^3a��������X|�Ϟ tn�dO����� ��`�-�]Rf��O{��錾t{Do�q�n3!tQ3�1��IM�? :]��m^�=��׋�JW�!�Z0��ăf�!Ӳf�o��Ft|��C&Tv4Re�R��9��'�FZ���0ѝ[L:�T}�k�Jt�%���?�����y��?8�e�R��/um���Z|S�@���Z��p8�&2�tq,@�	�ze8m�]� =��ԛ���9�__�D���Xt�!u���X,������P�)z���r��b�s����;����X=_Z`_.�
�	W�����O|-�!���MK��З�Ҁ��.W �Lc@j��i�A��幒��Z���$^U��V���Gr��J���9��(!����b�18{�&�5�Je�/'B$����;G���H���QB�}�?�e,�Bfy
	B�RrS�x�
w  Qm�)�$X�C��B�z>�<��3��z�䮋�{� �t&�V׎>+Bd-y��
xṖB�e�_��mE�'g{��w	s%/(K��
���hm��0��ro��{�8I迣g���>�5�XK���u��8[rЉ�m#���x!j����HRHk�&��s�1�6±"�u	�n�7��X"-���>y�S%�2����1�0�L�L�/���(���R����B���0����+����dܔ��׽�@;㉴���4�@��w�Z��ׅL�x3ц� ��q֘�ԥ��NQ�:%�F-
�ڙ�Y�7��QO��Ą(N�|]qu=���9��5��}i�BϮ�l���i��Ȥ��=�a���kyQ_`�ׇ�)�?a��d)
f��͠/��~�x~��Q2�A	�%L��c���;Ļ�
�aP��e�?��D��Ŕ��k!-Dƪ�B����xތRFZ�Q���0�ۖ�܎�]
C�=� �}m����L=�*);��XBH�/�3���?��C��4%�d/�<cN�gm��r��bBs4��\]���>�j�$s#���i5�����g�ߒi�l1Wc~�Ț_O�3��^]kM���M��Ի�x��J�T*߉�VbhP�_n�۪bh��Q� ��i��W	�Z���k2Q ��2/�:�HBp�ǎ5d#K�g�ܶn<FJ�K��Z�;½��4���;����|}���vl���ȏ���C���QV�ӗ�w���pO���p�`!.i�$���ޮݛ�b������/��&`8����0#�z�m��:�q�Hz�c����,���)w
�����ߎ�E��
����ݶ�Hk�	r��v�v�8j��'�-�M��Yx�Fag�ڽ����ݟ6(���m��s���S���)?�u���ȅ���pSJ���öx~�/�m�v����At����ݍ�۶A�w۱7Z�w7����}H.[�N��<D7:R�#��1Ҟ�����M݁ �.[�=��ܶ�Y���n�-��D����,�����
�+�Xe�`h�z���������\Os���b���rV4=��A�j��ߊ�GJϻ��l�^�~��v�pn<�6-i�To +��	�s�{��8.s�p�W�zD�܆gڔr��>�0C~�.sjg����Y9����A�j�k_3gR[�<i�����y�g�m�t��2�JbM�1.M�8ܧw��:��_�aOI3^�/l�l�:�%:��:7UX,������U�"krɋ�����f��������hq/�kY�zhOWk!<����)��`K�.�^�EB�Ȣ��̱@��5���=��1W�/�\�ѧ�O[�1�2yq��O��`2aPU�+R_H����ېYg�T߻_��qA�~�ҋ[�O��ciң^��!�=+�-8��ӓK&D��„����í~_��~r��`DA��s�i+��U�6���њ^�b������5ݻbP��@�/�����.;2��d�v���bq�f2�G/�Yп�i��O���Μ�|kI/��1��>��F�{|Rӫ�1���)4s�~�N��/$����d��9R5>��>8��t���w��j�8k�*�Z�.�o���6���7���)���ka�7it��T#x���`�6�	�(j�� n2�P׶�=	"K"�e2\f��� V���l@�هG�"Ys���=X�B�i!-m`�)$P2whD\�N�`)�E=�c?i��R�-��ޫ_��RW���Gb�>d�f�@�-~wo�F�O�1��@z�/�a��6�o����ͷ���O��@�Օ���$�]n��.i�움���h2�̐��_fdg���޿����*�=~L'n�h�c�0��}��.��G����{��b�v�� U�)�s~W�
����I�!�rMI$=�.��W�"ϗ�]�qV�}����u�:��O0�s蓐���T���ˢ����/��!It���Y�Wkh��`��[�I��gɍ'��[CDd\�\
>(�9�:�'��h��n�_�Py&#�0��ͬ��_��.�=JHy;Rr�*�B^�7>WVY/iԌ\����ù�&J[M
��ﲑrQ95�����W�ֿ��%9����Vr�^��<����GLv������\g
�A��B��F6I9�l2�
\��M�˜�6�y�����W_���$>@r`+Dz>����Uv	A�!����^yY$1&�tRwS{�Bu�GR�F�ۛYC�̹|F�����d4����[Zg=���p�����zC���,�"�����-юz���R�ꡕ�zH�f��-��13d��
��q{�>i���H";�?a�.�k}�~��U|��d��$>�k"P�H!"_�cp�t� ��x!��;��#&�A��@��R�w2�IZ��OB�o��|a�v H�sT;�����Gy>{� �g$NB8,d�%u5UX������+1��bⱁ���dς�FT����5I�1/D���<��%�{���Y�'�7<o�=�kep��b��95��BL
�Ȣ�y&�Q坃,A]�N����\[[��ai�Y�X��d������1�P�0&H}��8H~���P�FtD٩��o%�B\�LI=]�Ɔ�W�G������\ƐEY��l�����\�
�{ZLo��C El���Jl�7	�S3aTE�m;^<<ܠ�6$�G~�����v7:5��dH$>��A�#yPs�.��G�+�P��\���KE9+��XX�=�y���D~DI���cu��1�����;�9Gw�ut#��5uR�mn��9�l�9������
�>s����W<��B鹤����U��\�o��7*�O���ډ��-�(4T�6�,O1�Ȋ�{f#���=hS>܋��w�_ﴺ�;C�^���qR�=8��@G�sH�y̎�J����7�d�V%�S��J�Fh�V%��<<R6eR$U��z�*��c"�����"Ez"�1^GL��*�=<��p�N�����qr੻�&����w[��Q�1k��QGwW�-�"��|��j��}Z�OO�nΧ�5kJ�7��E��N���r'
��,>���ڍlU�d:o��}��I����9�nƻ�F��|��$��B�<�Y��8�޽F3g�[�š�f*�C���CX�܈���Ź�漀�`7�iwܣo��
M��"P&q(��u���S	��z~ K�".�Z��2��O	�Z���"qK�AE�z�2Cg�A�ȹ'�F�a
���Šָ�@�fuO����.q��P,��e��E8�w�a2@����v@�Pw�R+��>�O��|�Z�w�3=�jY�ܪV�����wk� �,r��+!F�w��jM;&cx��Ϙ��r�X�+o��~%�����Zӧ\F L*����g�ɣ��v���tg�I�yM�f}��,ě�X�}Ȯ���3��΄$V��ق����"Ӓ��m�k���ϗ�|���^���=������>X�gי>>f�e��0�rɠ��$�D�3���
a)��	��	֝L�0&�Y�\#au��	�q���V���t��m�>`��A�iM�m
�i{�"�_��-��[|�_[%�POR�9�Z!@�H���;P#=�%@DI���9�`�`��<��`n֘���UP@�@�DqC�b��Kn�K�
Խ�������N�����i��h�`�O~�#�_�&�&����1��_�5~�%���sz�����>�y���_�)M^x�˦O��wNo��E��Ѭ����П|��o��_��{�t5��G'���ߦ/]-��Θ>�}�w�	�?��E�;ߤ/�k��?�S�ַ�E��qń�9���@�0��4�;t��6��c���#��_�5:x�	}�􍯿C��&��"@��mz��_�>���ON�E���g.8,��� 	/��0B�"Z��%v��<��l�m-�,���d�� �Tb<��K*R5����j��ek���$.F�����~�Y@�J�|�Q�'�E^�UL�J�

գN��sIw�g��6�-	�Ƚ��E��!���
�(7=4rJǨ��=ȳ'������bpx0h�V|���6	��xXU����FE�x�/,гx�x�C�kdV�?V�}���6Y�2"ڸ�.y�x'��F��W��<~$��R�2����x���Q���\d�$�]�8A�;P�ۃ�w�w~@g�B��lo3 {MO���pgW���y$uDR?��(ϐm����1����W~�m:�?T��W�њ9�����![��S�H�p[�6��>㫍F����P���D]�_���Jh�9�����\�/��T��)Ի)� E�6���av�k��P��j�RH�}0�*D��|�^��!MguLˏ�o���C�+��Q��h&��A�����M4K}�ї��+Y���_�W�%2r]��#/[/� �xN�W��P�A��'Q�����ڼ�\vJ��FC%��pD���w,^��mm��N��������)��v�v�1����¹�Zs4�C���ť<+$��r%�1}���K�e��/�˅a8�3��"��`�ګp�v�<�GB��y������Xkk�E�Ήi�o�
������<��Hn����g�{L���u�X�a��Fc׍ח�3�`x���M��^?��C���ލ?�}�<֋P^*1��婅o�m-�H?�kL==b�� ���T��.�8.*Y�����2����S$7��i�rR�r\��cw��y7���?�ǸS�^.q��|W��o�]YJ�������G9x$`m����$�8/�[��2��e�o�����G]rāR3�.C$9�ܾo�wv@�C|D	��������J�9v�2=L��?b��il�X	��9)==����9��T���̔�q;Z�<�� jؽMl^8�Y���:>^�s��Xd����)�M
�s��o?��I�H��H��Z���4�M���.�,ٷ!�,�~��ȍ�H ;�-���Nݿ=�G,�=�wW��y)g������@n8)��ƣ'�l`,��[����.!����A�0��W�[7���{wD/���7�ñ�ƤVq�/|҂ILW��'8F�������	����(5���#�\`�J*!$�Ԇ��/0��,{7���|Y��������q�;��h����W��LQ��Ȼ����MeGm�?J�L�f�-׶yM
7x����R+���C3�,D�SC�{�b6RS͵s)�����K)Mz�����1(��[v�0p��;��ք�=���|��5�qp��0�w
�^%jȬ:E��Y�F����h\C����7��3�ACn�A��+��X��@"&A�jm���;۲���ߗ,
Qǯ.�$��
z��"�x�.E��zO-�T�
ւ�IM���sd���+Xq2�d*��*�Ӏ>Ү,����F��9�jY���I�n��PK��;�zy��,j	2~0ap`ʋzz�P=�.	~G�?�z�s@����
v��� 0����G"����+�X��J��O�W��yM�.�姾�Ƣ�	
&/`m�0X�Y�֘��㷛�F�DfhgR�!�b}{"
)���|���X��v�1���ٜ˘�[k�=�� .�����{�����ܡW?��W���1�� ����ӈ=�Z��G����ȵ��^h{����'������N?��|�#Z	��t�{�9X���5��-��`��r��2+�DN��{�O���>~�P�A܅4��j�d�C���8#)����$�l����[�-��c�]]��/N���џ��#��׿B5^�c�D�&.��������~A;�[����4��O�/�J��ڧ�{�e*~3z�����G��靯�
�_N髯�A�N��WޢO~�}��?y��w��ߧ~�#&y��~��ٿ�#���ϧ&\�{�Ǵ��m����q�>zxO�<��g�;�z��/�m&�@1�vI?��N���O�s=��=����?�3Zr���������Wt���%��GL���s�́��v��M/锏�f�Ao��������I;v���[����J�%��GI��g�y�$�$84��P���~��5�U�CG�|�Tk�qא��Z,�����C�*�XH-�K�	��/T�ޠG% ._nA�uP��-z���Z�rϤ�&NZh\���^~K��2����p
�l�E��$�m�|[�-v�J���/�l��}UIe��
��'~3�+��7�~O�Įe\�
镓��)x�ġ4�H���%��:�@�+wqu%R{���_��X�sy/����^[��$�H���z}�0���ݻ��/J�G����s��'��iᵕ��$x�z(E�zQ/�A���w@R{c�~L�� �;G�1g-�P�ý��=�8�;ܿ>9����?�Ng�K�v��b����Ws��<^͋��H�qK�=ٞH,m�}!*��!%�PF�����I�������Ba����ߨ��U���{�>�H�{�xG��8�%q��_媔�@?�w��ŵP`D8<�E��n�}=>�H8�w��N�H��D<3���zT�dg]<z2g���/|\����c%�����\��3�pz}E����ɲ����K�i�@�䚐�"�8��3U)H�whck;�<0ģO=�\6�
���Y�xA�j:U���_�.�	���I�g'c�V�:���_{������'�q\ǃ��q#�Q�Z����X���E�WU���h�<�����8%C���<��C���yH�!�N��c2V�,����a�WN� a0�Q�*"�ǀw��q8��F���e�=9ف���݈)�{�ߑ�pol���;&�$��!���$�j!Q>ɍl#��)�_0*ͮvcxx��x�rBW&�����+����3��Ynxt =��}�m����Nn����#&'?�\;'�epjHȔ���D55lv3�ɇd8n��M��K���}�J�<�8y��?�����)?#~G����,[n��Sެ�V�sң!��:�+��.�;���4g�SŸ��6��dw<62��{�Q�N�{:O;7EB$����V��DY+c�s��`M~�$��vp���K�(8��8���
e��=?<�Qʪ��C�!(�`�%��n���þ�������>��@����T��I&�NS����I�Of@jD����d�c�*���"�������=�M,����o�!���g޻�}�6�C$$V̽�,�
��Ԉti�,w)nk�'oȨ�+,���-v5D7�O�<�s��}�f���b�؜���yU�fS"�,�,%{�Peg��Dk?V=�d�yg�/�G|��'��O��f ��x8�>�}�#z��Vɰ�
P�v��]U���A��%/�k�<4V��O���&= O���vX���*���xd�N�ZA�ʂ�WfQLY�z�⍯S,�=� ��٪Wh���������K!dv.�*An���X�yA.��S��ଖs�s9�!9��s�!!��&}��`D��]�R���(�-ޖ����=�/�0ap��
`$�>�������h�vwVt�dE'K����9�X 8�يn���$��U�A�k��X����ug(ֶ���o�3�_���Vb�`I�Nh�H��	ds 1`P1!*��F���{��Ch���}�EJ�<��Ê^9�;�ҋ��`3���������ꂟ,w��{��D��&S.����8������L��>=9]�E�zq��{�yu�Zom���H��}���ˡ�:`G�	�w�5�`���9P�Q^�OO�@0����6�m0+M���n�S8x�\������1�
�ޟ|����k�ޏ�c���.�?����o}�����@o��+����/xZ1��z��^y�m��L��G���ɜ~��tqrI����?ek�����7��u������7Vty�G�"���x�-���'����ӣ��6=8���>��x>��G��^��j9���g?�����;��z��K]��zB�֋������������+�O����m���?{��������@��*}�ßХ�2-��`��I�9,�Q�gS���������[\��L	�A6H�Y�B��_�'T��ώNJ��\�w�#�˹X��Lƥ?H�-w��Ͻ��� C�X�j�Д�x޿�o�8
�z!���ܷ&[z�~�a�.��0db̍��e��`�zZ��lљ�����g�L%�|n��k�����ݸ6Iw�}7?7>�w�}�H^�$	���Tm��c\��b�(1��!������=>��7��n@���<��9�u���A�����|����[ϗ��R�=}��c��!x����<�=y�D��Bگ�΋�ܗ�
 	w��拷d�r �`�@ȗǏ�}&6_�s[,�`�>霣��Sj�"AQ�F�%^|N�Q�{rD����F�W"5t=S�,\d��^*)
*�yp^}=���#(xD��@��$��XՈM!A�k�s�)�-��Y�d#�k�JH�4�ƴ�X.Á��K��B<7z�SO=B��{��P<{�%��7�	�&�f�Oy�*I�u�˵�=�ҩo���z�!���;A`�W�u���-D
<e�<�T�S�<B_�u�Hb��q�:��'��ǽ��v�d��yн��h{o�������{�3��&������+�����nm�s:ċC���PI�ؕ�}&�}q5�y��ݽ�_�k�{pST%t�y�Rd˸,W�RH�R�,�BR]3����W5�
FSH����x������dӚ6ҽ���^v Mc��9�o�c�^~��R'6|�!��K��!�Q�����ح-�'�n߾m�@/�$�x`�{�H�kMJ��æL"h�ol�?\���ԍ@C��x���~lP�H���!p�&���T=�y}�q�#eǒ�
��=E8��~7�5$\+��1>�{�D5|wc�:�=;�9홊ʊǧ}�)�=6��\	�=?�m��o�c��a�rэ���mǥ
X���~M'0��#�,7E,6*-$<Og:�„7�
�k���<mL���g����t38��
��2��v�l"jKHuH���84���d$L64���G�_!;�m���C�5˅B�r�w�[���~<y���߱s�c6�1Ŏ:*���{� Y�N��=��X�>�t4K!�@S�ETnH9�C$87�Iw��R;FG	��s��ANx�oNx{tt.�me�ID��@
��˶M����t���z����������ڂ��»�R�ͱ)�2)p�Yۚ��/,��-1���
��Iݿ�r��?�oJy�(lS�#�,��	�sn\t��ƭmԾ~����1��(@���KD����G:�D�=ż<�(z��u�'T��NF6_?���Wr����X��%��K�3��}3S�WyڽZ��˯D�w-�O�%�0�|�>@��s&<��������{�����R$vvh��^��2�v�� �ZIK��^+u�*��ӕ�Z�w�T�8�����{b:]��qRE��Zc��?[��$$�$(�0��D�q���|�׃TV�Tu��%��j-V��F^����iO��_Y�Ž.���ՂM�$`�q`�Oe��f�Je9`���_�e����c����K	.}��\kX}q�Y�q��=<[ҽ�>Wb�g;�R�M�{���af``���^_,�Q>���R�鵻 7��Ç$�H����b0~��xa�ztȜ�t���C:Y 6
X��f���=a�'X��3&=F��zb�f�#�(��}&V�?��n�xXl��AP��=�XT	uSI�A �a�c:�$ǽ��o
�@�3�ӧ�a��캦���~�dM�~y@{�y��œ��_��Y�noJ��!�q��N�^ح��7^Z�WσþT�k.����LR�{��t��[����5��G͠�<>��:��˯0�7b2e(�\���K&�.鄉��l�D�5�<�x`�4.��Ɵ
��Z[�c��-�oY��I���\����w�^��'A���Ėm:�g�\�-�t�X�C���V�>K��u/�9��k�x��{>v4��}N	���"��K��٢�G�w༵h���U=�B�
��D���}��Ӈ��+g�#�-06sO���O��j���Lc�9�,�+�`��Ҥ��_MUn�P�Y%���>a�m�/�]������@-��C��Y�q��,��u![�>D�Q~xq@Łm�(��
P��z8�����$닥*��AW��We�h��$+��@8gmq)FЪ�������K%�rx�}���F_Sx�,`yr�@?���>g+��K%���R�#P��HcS���{%MȤ��#"IJ�oT�@��Oo_����}b���L$�U�;k�bަRH쮄�t��aV����,�q�S`���ާ��?aB�T��,�}��!�D���Q�����.���児�o��z*$�6��G'������Έ��r��ѭ;/�`M<��o1)"�]�������{W䁫oNd�s&P�!��|�I���R37l�_�J��k��'Ws:;�`�`���}����v�fd�b�LhRk����\�0�up�¡�-��bl$�):�S�*i�2E��[�^V�
|X%N�iĻ�grB�m$)��J�H�!�ƀ���]�0��c.8���S/�Z�
xL)!�����D���6�V�/���M1�-��c�wU�K����z�qs�5����"ȟ]M�\�^H�z=����"\��3-�-����%�=!���|pp@�B�������d{�+ς6"�*�_���'�Mڑ�k:�"�kH��όֶ/H��lO�xK.���\f<���~{k���{JH,,� �o|�(<��Ij�,�-�<�tr��3�y~v���|�J��= ����\T]{t� ��HD(��+�'�gc��ͻ#5N�h=Y�Ǫ�Z�w�`I��A2��L��g���
��mb.E�.�[H#EEr�/������?�CL���b����@�nL�ܘ��`e'�~;)�F�NvtI�8�5"^�M�g��Be:��䤇 f���s�u<Ec׸�c�3r����=;����8��zC�b��dGכi�������z�ͽ�W~m�����E�#za�<9����H)�G�7"�;�qW�]H�f�ۤ��M�q��9/B��xn7�
�����ddz�s	��I)�Ruɍn�N�@����>��vl ٱ�o"����9�ÏI�<�k�<Vn�i���>ޱl���-.zd y'f,�
R#~{B�蝡A*$�wƑ��Md�'�l�''.bl����d�
4)l�1� '?�%��HQ��cw���RUH�
����]bE���G���AOInŀo#F$�&���Nr�w��D2���P7IXI�D����c����>b@jy�|�~�	�]�Gs�q��*�ϩ�9��K��wv������o���S�%�v�B�6�1M��Ϫ�׹U��\)�[]��&�P#3?9|�=�Ǹ�Usl]��lZ��y�W��V��ܳ�s�9�K��ϥ��ۦ=?Tw*US��I��&�����)�5�t.�*U�0uЃ�.ҔyrxD��c�G�X�R�����6�l�`ɘ�F$����t��w��U�10>a�r~vE�>�O��?����+���l%q)�>=�AT	���w��A��u
�
�Ŷj(�_p���KYc�d	�&�όA����ѓ#�yA~���/�@� �‹��i�Ly���B>��ߢn��L�L��z.@$�����I<��"�V�<�k�[��P,��b�yx0O��e��r�f.A��֤�����o��_/E�������G'��t��
�,XE"�;�d���-��i�{�Vt<]�g�D'S@g4�@�@�<������|�ĚFװD��ʹ���.���>�_{^��	�Q`K��kD�&<B���%��Z�3�L�@[zI��K~g'��}:?�])�V�b�r�R∏���Vp��c.�τ
����WN��N �5�_zq ��ղGS&t�{"G�7��?�\��LT��h�k��kz��=y��N�����F��s�����S�_<����3x��t���Na�ztLNN���􌎙 ���?�)��KP�-�6�)����a����<�$�j9Vds�6��א�(��
����&F�,/�A�+z9K��	�u��J�(�s�/��9��Ե%_ ��s���n�S����e�㺺�K#j��<��>y(8�Y����X���]̧���菿G�|�9���B /p��\��>�T�<�v&�}�ȍq=:��?<� ��tLfe��/�z6�d�$�e2�#˯�
>��`̀��709���|+	��
pks"��\����Y5@^���&���p�ɸf#ڭY�f��ѕBY�/�Z	X�o9+�f}2�����BPj�i]���6��f���h��W0[���X}U�j����xe%`g�/�=�nQ�s#�ܻ�$��ޮ�=#�����,1R�9L��k!"�N"�y�刓T1��P�E�uf	ˆ�݅Iӑ=;�{\���1=:;�Y� �8�} ]���V�E��#�S0�y�rx��� ���x,29���=��Y�13\�������X�_��K�Ɋ`�5b	�Rk,xP�̓O�D���}e�̖�9��E�Y��Y�kY$�aVV�(�J�&x����szȟ��+���cZ\�dg	
}�(�K�z$^tWL6���dT��K�^	�D��l�'��%���r/�)��̯��/�$�*Ɯ+�
0���#���WN)I�~F�ZBp�I	���Q����g�t9;�1��р&��oC~����H���\�@��3�?����9�[0t��o�(�wj�x!r&��ޥxu`�'2_[�n�M��G��5שK~/�%�p1�rJ�|.bx��9�%��=07��ÿ́�I��*	V��Ud�����߃�J�k�e:��(il����;l):</��D�B�1��J�BhӃ����rSy�Z�c�e��\�<)�_\����I�Y��ۧ���<��#�[O�&�cx������r$��/����t�_��I���l���DHT����
�*#�l�j��j�1V�NѶ���L��8��^�x�	�K�����ix.�\\$7aH����~��n����0�8~`ƓE�*��,��'8Ln[���Qp��!g!5��Az��p����8�����U��yz����W0|�}��0#1h�+�t��<@z`�Ŝ� �.rW�md�S�v��N+s�(}E���%�<�.�1w�H\�1�&�w������m�{��#0��Z�6)`�7���
�m��|eӵ#Q��|�`X�м�����b[)�����Ӱ�����9��S�lO��H�*hwh��E�r����)
��g�%��t�L�P"�a��	�V>�cs��o"=ܛ#2������nG�c�����d�{w�μ�Y�} w��ED���w� P���> y��1�asmFP�I�D|�-���[8��u�to���o΅c-xWכ�LD@v�}���H�X`b�ߘ��6�[k`��8�IOtiE�\�;�G���)����?k��w�1}�]��Z�(�;rp^��Ԛ
��q
v�`A'+���ʔܴ�+/��2� z��BP��zQ�ƽR9�͛��d����צ����\���y��w�Q�X��tJ+mz��<_?���oA����L��G�6����/�x�w� d3�
\��ѝ��_�_��[�[o�$<���O�z����X�ق�@����@u�>�=$%�$�<��M�����ugF�˩N\�Z��y%D��p����kYX���H@�>%��LSzX�Fu%%�$�7?+���I��e���s��u7�e��o�&zuֈ�<��D�
^|8���?�@�aJ[�&p��{}Y���#�R����Uro������l4�3�x�z���C0y$��x����oĀ.@Ǒ���L�@��j!��pI�;5���tQ~�ǝ//i�'�twK��. ���%���|���B~p��}yO���|z<e�f"RXgLn �t�i���0�U4���N%�`D5A<��X�r��c1K~$X��(I�}qg��)��!i���. �J��A`����1�&�tw2W�󺸮Dbl�A��n�A�j$�t�_��!]<��N�G��Oi�>��^-��:���������=,�+=��#�
@�b�Ij�Z@_R
r��0S�H���z�$��'T��c �d�E�a�xf�\X�>N�Hڋ�Xh�٬V�"q���>Q�=Wӯ��k����)�s�r�Ȗ�K�w��}��\nj���9��x�Z��,U���< ���0U�*囌��]	0
��`�3~�O���rǹ SQ!�B�2�4�@�
��`�i�����A��_^��^n��DM�-i˚?�>$�VF��ɓ*�,|���`�Ū����"�#Z��R�� �gQ?�Y�v{�'^��g*�	���=�Q�@ȃ�ڹ�n�8u��X��;�����B�g'E�^�K��P��H"#=��^rξ�R�⨤ʴ���}`Z+I��UY2�.R2����ž��q��,駗WR��Dw&q
P�@j��x����裶F�ـ<�Y�"n�x�M�<6�1��{!9E�d<�%�YI9%�c�T�����ç�(��6q���'�H�
d�^[I�K�|�����Cz|v-�<�3xZ��؝-��x<oi+���)�P��y�E,ik2�qR�&ӄ�d��Eɻ@������^��Y0~P��Ҽ�������K�{�U��F��x ~��x�>>9V�^�>�z}����J|���ct�<��u�!�h��T�y�Ytk�E������9�ڼMz�}&�P�R~w�їqE��J��5��3�	o5X˽k�5�~Mb�����@�XH����Y�D�x��I>��E�W�A�
�eI���D�)�!	�7��=��ҥ�!FH�.�T���5]�p�y���RdE��o�dA�K�bȲXj�6�6����A^��5��r�2��|t-���A�a���p�('4�!���g�u�ڂ�_��R�A���yw,%��L��|倾I5�l��j�Z��ۯ6�8GX^Ő�-5c�Bm#�
b��BL1�������ش��!$>��Q���-f�xy����b;߿�w$R<�(pW���p����HN�D\ōE����ԏu���7`u��ۍY��p�����p,��yp y�����<'1"�
(��|�K|�wF�~>ȍ�Q�<���&O�h���,�x������R�㼞�-p�_s�AT��;�GsO�o����G�w�xބ
w1�MXr����ӳ�s��sR�E|����x*��=���e�:a������ՠ"��!"����@�nc�Y�ێ����μ��.с�nG��e����.��iCr7=��y0&l�M��;|�K��.ae��$��L���*�{Z���#�5�\�a�A�ˣX���<�`Y�m�J���|���	����D� ��K�<��OL�w��# ?<H9�=|�b�)��w?��5��]N���Ӎ�h�p�������ą���ߩ�VRj���g�@�+`�o�1�ր�T�no��0��Yt���l9��E�"y��d�S	4���Eu�P '�kj~S��ʹ�I>ɷ7�˽�˷��<{yά߅���w�R��EvJ�FJ~��9xB10
��!�e����0/d�W�c `�s�/��}�`�cwg,��dD�n�ӷ��M�ί�*���]�<?���?��}�{��#ѐW�*ɢ{m J�s��m�XpBo{�ɕ�-����8�k]0t��T��ŢKT��3K�e-��X���#��B��,�k	���E�I*�y "Jv0�g�d�g�}�dDž�-T����������\�E�ϐł�(4�w�����^%��v�.��dp�
�	�5/�G=�q���*�r��H{�)��=���ٌ���9��ϳ�`� >�i��Ú�G����T��|AN�r��f����8>[	Xs>_�cx�T}a��ԓɍ���y�_&������%~�����L�l���X���xRi �ţ�vE��~;>]��$�s"l��`���@�t��'X�rYL��`m����w��Xr��]�+�.�X2������قD��ﵿ�����נ��uO�dogE���1�O=�ׂN��0�wBW���=�8��~��ߧ?�1}��!���Ǵx��4�#���Re�@<%� +ֺ�F����D�`�`�.�&�x!/xی��1"@	����8A�	��K�&�+	�][�PĉH�x/��"�!1����tZ��|�5�Z=��ʬq�gL���,X
a2P2���Y3�S1�KeHe�&�	�%�徐k
ޞ�_�9bq/A�՚{$?x�`�cc�'���&\��0���{�������Z��H<�ԲWc9�������Zǎ~O:v�Ղw�HL��`]�Z[�8t�Ld�8�[��l[s�H|L?���
�4�S�$�!����B��9�Y���O�q�@XnK�
���wl�@�V�򈤜�L��J��$^BV�O���"P6����+�P�����}�x��TȀf��Y���{�L��vO��ؘ*�50�.��/r6�� ������$Fe 2�
ޝ{8���Dpz!:�t�2+ �Zi;��+qv�M�u3�$�<(ǞY���a�m凱���R�! ԯ�}��q�e=�JX��ZI�G>����Q� ����๷̛d��(���c��ܣ;�#j�ex7���B���N�.��љĐ��������s�E+H��fs%������ښI�Sik�œԈG�_�`<�s�:Z����=���{���X�'�#�?��1�c��:cB
V�"�~p�}�j�R�ȃ[�;Q��#��x�0M$��p�ar�{t{�P�.�z�"ku���n<�
8�H�N��|֓q�F=y�x�}~6�����L�_�s���dK�j��$�1������S�󱅘i|��g'�oT5�KL�ݭ�s�/�9��p�-C�v�X2-%�QA`���;��T�& �0n�k�3�d~�TI:�[Aރ��f2M�C#)��b��9�����7�ts�R�z&�px��r�)o"A��ͷ�G��x>�����e��Hq�{e���vN�ߌ]�|Y$ȸ����������1H���8���
	3Ҹ8r<H���s��{y �w؟"v�8T$��� ��	|�B�'=܀3b1>id���(^p���L4JE�x�DJz8����p�.V�V� ؓ�P�9��;\�d#6���w���b���o�b��@f<��#�c��Np�6c�e��������e
�Xc7��E�-CKq܉��ˍ8�c�~L+�"�-��l$'b�n`������ӈ��9T���<��s�����W��[��&�#&oq_��)Eet�Vt
�Q!B[
,2��Z��c�Ө��������)��܈A��{�4z�#a�]�����to�s���y���-�H`�c�%���c�����Av�+�^����K�w5Xy!>��V��}pI,�8��X! 9wH��O�%��a^��	D�ϋ{|�����7\�*ZMĠa�`�o�h�;��'.Fv�U����� ��p�Fﴱ����/�����!;+h�=���)7ۄ4��t�
�[�U�:1�Ɉ��U$m>�tI��=�x��/���W��<O)d$�+�LO�ô�Iۓ�t��Z�6�U�j4w o8.�e�eS��æ��)��e��@m5��v/��&d4�Ռ��1�3fp`�Y�33[3X=�襻/�׾�U����,�y����g?�=|p_,4���^�=~��kkg�'�����*[�f� ���c�-A��M4��Y֒ʿLP�ܞ��eq�g`^.z,Q�:��D�W4a��7�
�&XB�����
�쀠	2�4���{���w�z���Dc9@S�l��c��I��"����L���8)q�5,vH(��zTe�$p.�.�+��:�܅�*^�3r-iT�>��"�����"������/���ft��8ܛК��a�d�A�	�Fa�7X���9��k��/��-��'��1]ѝ�L/�HV�/\�	��Ah�Nqj���te2��9[LLh�k&@��t����J� 
B��H��q�`9MB������UO�"H������d�������PA�ј��኉=�SL�\]��D~������S:����<����9�<�T3H u$�\<%$�����Yw�E�)�=VH��)`���v�kH�8��*Rm�p]*�EN
3],���<J���ȭ
��������Ol��bU��"�	y��]�����GxL��t�x}���
 �3��UP�h�	¼l]��ێ?����li�H���B�4&����W��F�/@�d�V����V{���֏�^0�j{/���<I<�����ƁpP/���u-��ƯBS��R���Y�Q<\ +fV��H��j@ o`!�6���$\�|��b�֘(�~��8���L�J$�Я�C�~�^�ʼ(��O��ՋTU�v��(�!ׯ)�}����E�h�,ĊK�%�#B΁��+��J=�06�n�ꀗj�����{|d�b��u5a#2h8'���cKPf�W��2!qxp���z���1�<9�1a(Ûc<	`��KE�e���N�] �'���Ʌc!{F��\X_���m��!�I��x���T�ͷ�������q���>{��ǫ5]\΄H1�|mM�x�=���x,d�i���qjb-8 +�g�>����U�$F�x�U*��sx��
y[�=$X3�o 5f��8�p�'�jza��~���R� �$^�
��/d��Pi�6g1N<R->	�[CHK!�U��׷�L�׬n�׆y���D�{H���8d�oJn~%��Ы����A_�&ړ��PbH�smqk��tz}IO=�:9�y�\����OE*
D��#���g��
H�K�7!����~�������ʔ�e�"�TK?�/e���U�@<�x��W���Q6x��멌j��HVN>y�p!U_K�F��}����q����(���ʼn�"�_�&%f�5��8�d�u|ʘ��l�Կ�y�霑�7�Ĝ��_�Y�
�u���D/����8��R9z�?�vA"����TH���v|�����m�����[d�o�@�%.�
lޒ��&q�-�i�������	
����!����������GT��ߦRH�n�L���vǞ�w�*�x�6?ΰ/���~^T@���v�
�I���b�BX�!�{|�}l�R���`:�C���{��n߅��$�d"9�Y�i���%��}́��Dz�Ȍ����r�g�ߝg����s�s���
�JV*u��q��%�q��uX�r�x\<?�#�sb����,c��7P|�'G8W~�an��U!3�$�c���!(����|;�w�Y#��gr�Mޑz|�ؙ����.���ˣ�K$@�G��u�@�n���zt`-۟¾��2U�*�`�mFl$Ӂlyq�@�+���8ER��tx	b�؞m���I��Q�Ž<��'�z¿11ˋ�RlsI+��u܅��oy��ab$�V�Uݱ��e���_��A�ֶ/���͔;��N�㒣���J�f;����}�}��GQ�����p�T:ْ�&�es�Hvt;�Ns��v��+��|S�����*�֯r�}S�@4d����W���C�u����C��(d�,2�P5��q�3`��3���8
��]���ͯ�7�@BG֋�rS�������wޡ_y�F��'}D�����3��Mb#�2�����y�	�[��rH����X��Rt�G*=		X��O%�E"��׳9+�
�	��H@�A�T$S�J�,� �%�)�/dQ\����txc��XФ?�-�%dO,�'�1�E���1�D���M�dVż���%t�������z�f���ŜN��:���5=8�q�����5���LN��@Hux��)���t�L(���z)�#�Un
�e
m�-,��aY	
@w����wt1�ѭ�>�9`b��?�W�T�ު�!N�!#.o�C�O�Z�Ky7��.�Wtr��^�eraDg�Ār��O�RГX �?g\���yZtq�@y�� f]�瀅�p��Z�^8,��U�="H�~��׉.fkj��g"��wy�E�cg@[}�r���Z���ɖ����w霶G�~J����Kn3�T#&@JT�2�-1cLn�K���B�Pp���!��c=��ѯk	��a�u5�u,rlM��0_*���.[��&�Y�_�'�w/<H½�^�+��t0�K���
����W$���à^��������7
�1�/�D%��z�RQ�]й�!���܀��1HiSv*��qr`�$D��F�)Bddb%�W\f'P=`�1�}��ZP��(eW�`�ڧ�@"�q���X�V-�S��ʂ�x���'�$fO��P�п�8P۲����ԕ�� 5��RW��'2���@��f���,�0'񌬠��9��@HcX��|@�{F�Ե����S����C��S�zL6��S�����p�*�0Yq�xC$�T���4k���%2	ƾ�Z�G�T:�	���2�o,�g;<��<I��n�Ǐ�0�;"eogW���5�4��@w����	���Av��D_�}ط��
U����;/JY!�9J
�?$���^�2ޥ�5K�`�ҕ��m����"VȤf�Lg��q$rsf�/x<��„��]�.A�k-�	�l����}m�����0`�z�a�F���z����׀��ҿb���J"S���IP�(�5f���!1���+~'�gg�dXD��6<�za�W�\Eb��1����*+�:o�Ui�G�:�]H	�`�st���d�wW�<̵vx���T=<0�9==�4x��8�-%�8<�ӹ�ј�ɜ���;�_��/ݦ���0@P��݉��O?����c�1Yt�	���Ov�vh��c��dŔt��I�$X�Z��ڌ��*}w�@�s<�w��H"�U%ن�X� y�I<�0u�<�
@��S�q?�}�=���fo<�[;{��eN������t�abh2���b����u�Ն�)N�		g������?J��r<���ޫ�O��HZ{��n<����6�qH����X�D�)�)��=x�� :`����$vT�p�l�(����B��#bQ���ryo�&.s����K�2M]iq�v�+|�q��v�'�1�v0��RĖ���$��� ���?ΔI�yQ�ĥ���U�fƟ:�ϛ��cnؔ���H�"Y�!�h�l�a��^��kW���Wz5u����;$^3m���w�>�Է�q �'-����߹��ѽ�k��8�3bu�a}~������Cb�n�<�-o��"#.��y�qB#��Qa&S�fj���vq[`Ds7?~\\xY�u�Sr��4�Ze���
^�� �Nj�*��kZ�Z\�l����q����;~�"���'������=��>�o��p���$�=@H�ԪEz��%:<y�?�b��4k'>0���6�c�r�F�/������`�vWR$��x�� m�B�mR#����]H=xxhrr�b����Ok�۞�=~����Sސ�γ�)^�-�3kC'��|�C�b�z*:��`���csc�G�pN���@D!#,�
C����|P�9o�n�slJ�$rx��!_9^!^��9un�= uN����9?w���|(���i9��8o��,��ra��}7o�>��k~����+���R�vN�;
��2���L|�
}��7E���>��'?�����,�a�Ȥǐ�	���X�a�u��b:�GY�n��^�74�K�|8ap���ǧ�"���}���-֘"#����2�M(��Y���}~
�ѱ.=İ��ҫ�=��7��(|��E*$��蹮505d�N��Z&�w��s��n�7^ܒż�u�Ԣ]�J���j�CO�r<_��r*R]C%`��7�x��ҩ�8�fy]K,�]K0ѳ���uc.�k^^^Ö���,KjXsJ��񂻞ҷy8��K}r��[��g���5���m|�y֠��3��w����z�䚞���֫\Fk�;@��*ݞ��^�s]�����ֶ(5!h�J��e�[�sZ�Py�e:��A�1�4�<��<����א�!��H��xC^C�'�t�l����l�W��,;\V+�7����H��j&�l�A��S&<�ik���Gtwx�$J%^o�֛Nv���jْ��B���	ͫ� ��b�`��j�B�����ț�Z䀄`X�l	���U?D�<�<��Q�*�Y�jxc��^#�k��4�g�����'��LZA�J��+
�,d�oqL!f
�N{
�0��"��a�J["���'�YD%����U�9Y��{�W@o��u��6K{�=�F,Y|	����䍤��X�$9��E�}��v�Γ�zr~�@�J�y�L�ŭ͓y�h/���
�r���ӳ��Y߫� ,�f&��O��S���6��zyũ�2չ�1�*�k����F�蓫�_��juJ��_�6=���4^=��}��.D�@�['�_A�-�%�z�-����#-e}w0=+I%Gj�n�u;B�4��B����CAo%���+�����OYP���1�;^5�.��H ʵ�Z�qs��D&���Ql�Ҹ?U�_m�ăD�g`nd�@
b<���O���2�r�%!�W@��'�~�7ސ��.]�Wh{�B�.q8��lA*�$"wrvJ��ߓ>!ۼ�	1��G�D�i4
ӈܮ�e�'>��x[�>?2�'�2h\s�z�c���{tu1��!]Azy]�c!1/����^����N���w%�� �5��?�gwg[��E��y	Y���6���zc��b>"����G�-m��t�7
�z
�����[�/P���D�o�僜��}��/�8�u��F1ẕ��F�SM�8p6P:�=;L��8�d�PƔ$D����L�cq�	��xǷo�hegq�l�T�	mp$��Z��1��$X��:�I��.����r�F<f�9�V^y�u�!��i+}���]�%�����2�UeN�9�%k��c��
H��$�1s��,R���O�k�+l!��J�^)W�_���u�xaqH������\�{�5�}�O����ޒ�`�<~r$��K�I\���3SⳠ�X(����8qJ&�C�S�O��N�
�*;��ge���pQ�
��x9[._O����Y�~�I���T��7�#��<�)��#&��IA���ܳ�i���Y�\,H\��w�����\Y���N`n�i$��)|F�b�7)=��).s%��)+���Q�E�#zuD��;�q0z�������ˆ�U���n2Lʏ��>��6`[�;�cA��q���aH� CE���)�.u��/⢩k0��_����F��qS�ܧN
綮�Mvn�[%���#�wqTߖ;DI�On�Ro":����ҟ�C�����H�X�nEǖ}��+{�Nhѝ*������_F�o?~~��6�b�4:hܹ�U�{9>$';�F���;�Ȳxg�����U��
�K�f�3��۽:��w��Iv�;밓����1xywp�)2�8�>� �1�G���0`�xl遏��q:�<�
�\��v��c���||�.��ܻ��w$:<�d���d�[O`~Ó�=;\�
�\���3�ۃ��w���xuP$=��[)�I�0N�s�y<��P��xn�� �'n�#o�Sw��o�B������7L&���rLm�Z��d��?uC	����JN��+~�����F��i��6c��wj�A�X7.��ؚ�-`x�I7�U?�Н"J�������7��8%�/W��=��@�1�	+,A<�8X@� �Z����A�w���N��D�}-��_�o|��~M���{�~���0 qi���</��y�wk����>/D��&��86%.y��ZA�9�g��9;g����eM��<>�'O�-�BO���)���&L��P	�$��C
&;�%��7 ��痗�;��U�[�C�X���|���|ʋ�	m3!q���g �����ź�:2�s��(�`�&�J�N(
@�!����Z��Ry��5 ӥy�4�4E&A�ZTs��]��g�c�U.@��p�簾�E%���xIg����#zx���^��>�̄��ь��.�=��W^a��`B_}u@�鍃1�X��7����7�?��w��7x�Зom�5�*F��1��{I,�aa��C^d�l��r����B�Zv$�?&��ġX�5v�"�9�+&oή��1f`1Nܳa6�tE�zq��� 'W+��~y��\ֵ�/f0L&l�紳:���'T1��-n��.K�w��-Gs�F��ګz}�
�NE�¿�um:����I�"��X�V��-?=�E���5p)~x��^gLt\0po�!Y0X�J�o�������e�u ��s替�����Ba @R H��HPݶH��j�2lɶ�?lz���Ct��r��;�vS��`Hv�V�MQ�2-Q&%N T���7�<�{��>g�<�/_UAd�֭z_f޼y�s�=�Z{��1,z�`"�3#T�7n���0sdX�Fo���[���׃����"�@�K��䜫<bss[L����sRI�����-�.�� �N��sv*�/Θ���B�=
��2H�Tdy8g��\f�^���
��(����yi��uf�W�h�)]�!��S�v!�*�犲?�QN ��`�nt����=��=���)��3@x���;�UD����eߪ��dk�Ŗ9ˬ��d�	e�T�*d��26�$�I��UY���i����RV�z�J
��]�ȯʱ�V��8x�(�����;
��Jڬ"�W��v=<[�E �ʈ{���K`��hUn�8�'�ܒ��jv���Tn�'�p��
�:ꄱ�VY�V�!�BT��$��Ź��S"�Z���F��(ט%Yu�S�Q[թR��o�o�`;���a&�T���d����%�$�k�����h��95�&aG �`�2�-{��!Q���6J���e%��X������}"=��NO���y�k���i�zp�Idt����
�A�x���6=w�NS�f*�[
�/�Bj�0��93XFS/�D���s�A�r��^I���:�'G��P!�.�� �^n$)�kY��'��jt/5ÎY_J�b��S%�ڭ��T���F�J��I���v��/i�Li`ے�}��a���c;���i��Z�T~w��'���.о�4-�2m$H�����ԑW4~n>��T�-n�g÷a�� 8X�&Ӆ���A��	%}6��`�&�,#�Uiv!3F%��E$QYO�ٓ�JXSʐ҅�m��� �w��E�e��~�/�gh����7�g������R�:�6�mG��1���V´�J|��'ܔ`��r��K��_�eԮ��+Kf�(i����NE�;�Nq���̓���I�NM�O�1�rb�zK	�2d>D�����>���\S=�`��|�ew�:��`I�&�-���=�E�{	S��o�&��W���b%��Uض�'F���(@�Z�ix��#� .�w$a�$V���'Qp,C;�ɤ۱b�)z�gR�\o�̛�����?_���ܹ�p�p�t�h���f��&NJ+fV��G�זM�/^ox�K�����ڌ~����	;���y����F@��a�$ʴX�G��پ�7��1i��1�bx���
��_�O�5�	.�|Xh�l#9�}�u��M&�}غ�0��������X�ՃZ����‡�����m��������.�3{�͌b���q[+�(�c�x	6�l���Æ��?��z��{3|2��:.�gn���sb�D��Xz��L=;�����.�[I���4C$�$K�ߓq���Iy��h��������;��{n�bD�EWp�,{�ǁ
1.��䫙�������ϕI�sq�e���|]-��e�}�$�p�[�!nU��I����t�a�k4}8��8Y'�}�q��5�ן��]�̎��qt����,��?��0��ZA����n�����|�����m=�
�:�wtc7�Y�[�ww�������g�Kv��I_��Pvn<sc_:�R��>�`&|��N=8�)ѤlG#��ă�J(9W��G�0S��TMG�%R�h�Hz������ )HX\\�0Y�Z�e<]leD_⍂	�(F����mY �W����p�-�Vr�9��@C#��s ��oɳG���I|�x��|��L�F:�u���)��%�?4�>�~{�2Q�\��Qh��Q��kN�Rz���S�LY�T	:�w5�I�r����+��(�BF>�Xi�֟�J����_��Vm%�⚻
�J�r�_�A����G��D���=�5ϥ��c� AZs9��b��R�j�.��?��O���OA���noՎL�~��o~�\^�"�ES����C���4���c�{�Q0���T�@�����Ѣ��$D*��7�w��Ln�'�ڣ9���ʲ�^���C$��A�Άr�+�d$; �]0�d��hf����@���l);�T�9H��F}Ppg/������lX*S��ed�]�<��sS޾@]N�>���	��lI܈�
37	k��j���	���k�37�3�.�)�Qp���U3�hs%
�U�����E^2+��	�MR��T�<��R)��H���BV��l�	v;�30���Ƶv[�P��Jü���걫1l��R%�Ԩ<� �W�[Ξ�H���x��t��i \�K%cʠ�.�J�������R%�Xvb�A���w<6#�iJ}{_Ap��8H֘9tZzR�¾��1!�q�����A3A%f���Yxٚ��Q�y棇U�,��R���揱��J}!�t�h��
��4��$�@h/'������|��RO���RԞBC�G�]́ӐeRZP���(
�=�i7[���;�H(����1	��7ː)��u�v:����%}�ڲ�I����
H�`B��lre�׹y��V��Kc-���?^S����=?����
����x�x	uF랈���k/�&��7T���n���L�Ao^�5�w��Ѹ���󭛷�d���+�K/'\<��O�.%�̎���*�8����/�o�T���	\�=Pcn�֌�N#Y�x�
%,SSd��S��ԏ����)HL����i�A�+�ꫡ�^=3ܫ���{`���2����JO��7e�jy0�N�9�LɤV0���/3
?��D4���YL�C<�f���dlϻ�C��hv+8X����h8�Hb����nk�i�/d;�P��`$��$o����fE喦>��t�nk�x����	i��c�ƴ�d�}~�J^�e�?�n��U���J![�{��Z�r�����S�A��d�>�؎u,��]�%�Rm�@\b\�d�@%�Lf���$h��3�	x1׾`2Y�v:]���]������e R^e���A�28|2��襨�:e�깗Q�:fs�e{�!"��o���<����'�ox��o=\���,�+���yEi�2y,���[!��(��D	˴"E��yO��>�}�����찶��l�����#�I^�>�$�"�+���,����X�����j�D�a��ޞJM��j6���~�����H�$&Cl1� ���Al!��૑�,t�����=S�0�#�ְ� s%���Frğ�m6�V��P����lߓ�0���40���媮èLn�|h>���������0�,^����X]��2?��?yiK&�}�c,�%�u�-Q�w�O�!ol��^<a�D���3ƹ�	���۾�FVƖ�ſ���m#=�3<�s�����r]���]�$,�c�+D`�U��s��^{7��4��M�">�&�R��a'�҆O�-��u۶y��=�����7���8�Z�1���GGLn��/����l���X��2@�!:l�jć퇟���N�c��z�erĦY�����ۙ�;��:�m>Հ`����l�I����8�U�����;��qw������?g:�]��������/�Wy�6fsI>������x�u�a�]Lx�dF�#IBöv<��g����re(��~�~M����Y;��G����z�[	kS%�wS䮞��f?b�_��m��+�G�
�x�Z��_�EM{�o2��u�'���_�.����>&�σ���k�-4���L�sO�0Z��~�)�=<���z8JŊ��z����P�J4"m���<x�@.�&\P�*�B)��˾\����@6�
���:�0iʲ(�&�H�z4E�S-��������UԸ���/��᧞�dq�r�=׈A�8��TN�	0����Η��u(����[��@َ�49��w�`	�C�&���G�iT>��I>�\hL����	R0��z������$xҵvWOF��H�0R�@¬��Phf4�����N+��&�l���z�.��U�y2��ͮ��>\�ͽ�hCڔF1��.5B��x��y
��[mY-���NO��x&g�#�0ycL��B>yԔg{ y�l�(���L�[��å�v��k����=��|�F�scd���<��ڏv�qs����I)� p� u��Be��8��e]ʝCj�G<F�Q���Q�uy�(��i]�K}��Z 7�lQ���nS#S)���K�:x\�Ȭ�i�EBy���ʕE�����ʔ����5E T��RDI���$<4�Y�\�jx�%��h
�Io��n�x��r�2��od>u�:�HkF�@��^���Q�;͎��" &�S�t�r%�(
B u^�D�.�h\_<�����>³5)'��E�~D�w�z�ғ66�0Ї���d�>%9�dfhCۤψ���5փ���G�Y���%Fhüԉ��J5R�{�hT/}R/�B�7^AD�'�����U�4�i.~�6��0
`�:��B�:��A{-�Ж�A���|ڗ�t${37����dt~;���d�t�g�@z7>#�m\_�5��$)+�{#��L@7�y׌�
xc�Pz��,�Lbmw =���"�V���*�emZ��9�h���p}��z=���v�h�ҭ�A��
{�i���ԗh�gr��k�w�{�r9�_�o�-o��&�c<��25>��&����磲tәF��yOX�鮄r��L[A����È�~��2��hgh?����D$u)?sp���}}�n�$��[7�����?d`�{.Ȉ-U��( 0&r>f��Xˍ>J�b{#S�V�JP䚥Q.���^�T��
k�-�z�ymhD;.��h��53��:�vGۖF��y�e?H�[��-j*8N�H�9��e���w(�G�0��2�^8F"h=Q�9��/�Wʘ哮|�7���(U~s�D ���nTu�2�\h�b2�l4��d�7����ԩ��vW�v�gy��TR��S5i �&�o̞`V+�9T�q�\�-�P�Ė��9�l��Ã=N#�#]o�,�o�����½o�x��oW
���B3!�1\�e�ғ���$H�	���\��±|Fb��8�2��c�yY@$�ligR�>��^��T\X�-��<d������ָ�~�g�p1R��{l!c���}W퓵�$�y�(����3����~�#F���cY�H{��1��[=Y��+$�_�Z�@���?�>����1�̬����˿���AܺX�a��b�_��aE����S� ^��35��������j�V��ELdl.&+���aRW�u�X�|^
����@�/�4�7Q������5�cS�=^,����G 8��e��ۃK`���~����Ù��X/\�^�71H	xi���\�*7���#.޿.�U�}l������9�=x=y/L9���Q�&�|��e����}�
�!�Ȁ������ܗ[�o���v˱�wv�5L1"9�Q��t�q.k���Y�6&.z���L���u�d�����'���[z\�G��~6s$�.&="Fڙ�ঔULvX�o�7_m�؟�Fm�Y9��~�	1��̧�E.ֱ�l�F�'�KDvH��$&����{�\,{#t��ֱLc�cC��o�ٱ��%�^�(�T.��)�N���d�oa�]_ی�	�m?��ܷ�ٵ��v��'8�뷽�l>�^��n����:���j�$j�씢���0�ʊܻgGu�m����)���7~Z���͍+&�I�V��m�h�?uW31n�uH 5�y���?�U{�*|6Bdu�1גTĆ}R�;Y�����I�^�
�鹐��s��z�+FC�6�0���`��I&�n$��~�Y7��-�������Mh�&2笑������C�������Sy��wTn�0��R
�%���غ02/׈ʠ��zg^Ҥݜ��lU		�	�.01�����>F�kDh꣘	npI�q5���Œ�6^꠩��>SC���<3�sr̈���h���z�{b�Ln���{Y)�0P+��S�'�w�`��^N$u�ܖ@	�t%ףu��X�R�[�3SX?&8<�G,�E����ɨ��m��4� }3>��D�`!�j����5�?,h�~�c���R�Zu%��7���3�����{���<����3��;�4���z�+	ȔO?}C��ߝ�H�x�!osߘl�|�/wo����\Ƀ�nW�)%�Q-��Iڬ�ue�v�����42%o�?�&3��03!�g��M���`�JL�d"�D�1c���;*y6�:���3M�[��47��zX��k�)Jד�s��]9l��=P��ISͱ���B$3���҃��?��yVI)8K�g����x�cstB�\��q_����&�`� <�,��>��u��� .�ehD|3���Uϻ�� �d��Y��D��!;�̎��e�f����8�7�G�R�}��x���	%�O��5X�@V�&��%�I�T�^�!$FB���q:>S�]/)�f�q4�kF�pOF'� 2|fA��ݪ��x�I�F���IM����ł2*Ȳ�6�ҟ���ԲVɪb&
ԭ�;2�}��t�4��n�b�m�~,EȰ��B�M�l�o8}eGQwNd9:�t���6�����C%�{��yS��|)��{[�vK˱�`�e�h��]� K��itx*�ʔE�Q�	;$�]��jʵ��3}�`��~�UE29�Qq�_��̕b���m �.�Gi�'�N�}_���f��l�K_�<Ic�CkoN�Dߚ�f0���h6TH�+�eD�u�=�F=��wh�����}��;�G��<�F@�C䵝��J��V0{��J����dJCp˖�R=N�U@�ϖr�y/���P���N���D3�JN����
m#��'��I�P��@��7�VI��G��+���:W��כܒDH�L��o��	L�s�{�s�ZƒV`/k�>{���G����!ԯ#�")�R}t����i�ˏcJ-R�RI��)�,/tgAE�X.Wm*��p4��Y�VDF]�`��%���]��;�'�򽽞n��<�~�ϑ'їz|%eQi%���5_��l��L�װ:p�n�ϭ�h��ܷ�J|��ӺX�k6
���s�����xh2���ܰ�2I:���}��y�))����`b;�r2��>Y ��P�m���i�d�8��G2�$d�R˲7�g>X�Q�Ĉ�8Yy��~q;����]���l!�0��@v@��;#7�a�3R�x#L�YX�+��2GX�x�)�e_�ϚJ}`�f;���c�,$ѡ�t�[I���Sy�%���W�}���aJ1�@/w��@pĪ�ba��-F�<�N�g#/�
Y+�p��_�ǘq9�MV#;H|��5�X\�N?k
���A�_F��r��������
SRX.��l�3?bo��G�Ah�������0L���XF��C����$`��
��\���D�,�	��Izā���9��[:�}�kL�7���w��Ї��_>$<�c�V!����]�V_[�mn�`�m�cK���l�w��DVm�ly@��G[g�diH��� U�Xļ&�739�1�k
|��ffG���ʁȨR�L��
6�+m�u,mŬ1���Ƙ�aLz�Vυ�a�����2���-��U�;6vx�����u���>GdG�mLf�Wg�C��v�q�B��:�����s��tQ���
��k,ae��/Fh�Wg$H�����L�OL�)�2����OD$�ooۭ˟��6�퐉��Ր�)����xI���a���������͠ޭ�@�ڹ� CR� �֭��A�
&!>ζ%n.#���X�W��v'kO\x�\m�T�'���d�s���A���)-"WH�@m�O�rL���RVE�I"�L͟�W?P�u�ד^
�٥��jȨ�[�΍#>4*|����T��l_��Ly�c=g[���N�4)\ c�8A�z�+��-�9;;����X�L����YȒ�C"8��y#��t��N���)�x�@�	:��z=�(I���L4j���|��`6���@6�ZK.1������eL��i��]��)��k�,5��r
�)mL�/�N�̮HR��L|gR��)�Z�-��k
�F~�g3���7"��U�)�L
�5$�%�����
tTC|>��rV2�WS��o��j�{�4ҕr\��m�z�_��z�z�k���e6�Kh�	���i�}��ysr�ϣI]��(5��}F�6J�+5y��1&{���We\�iF˓(�:vzk��{\ù��!�'���Oyy!��OL���ͯY轑�9�y�q���c�� l\Kиѫ�N�
�
 �z�}�&4:��`���[�&2ԍ&N��X�	
Rk�G�@��l0��.J��N�A�rJ:��R�;C��pΝ�'�j��G�gj��ڛ��'(�F�3��b^eEzR0���"
�{ɫL���z���RF-�G����@>��0Џ��/����'R��?�P2�`Ђ`b�?T�%�������.�Ne�+�%>J��|�H$���﹩��}�K�x��,dr�S� [A�@-3t
/=����-��_,h����=ɍ:�K����қm;��<�?_�r�P�3\������q�������r	�Z�5�j��I�I�7��kQ	 <�
��Lq
#��#��h�X�
�u���/�OɃo˭�O�-C�B�V����KU�u,�+�W��f)��ݞ�K�\(��_�VA��f�k� ��Pb�(�c@a�Ѣ��\�B�K�5�0)�V�^FBV�-q�t���ZY���)��^��ND,��S%K��B-� C�?��\�Qx��	VSZ����ևə��U^$ؖQ�4��;Ѵ%�%	$��i�����I��9�4S���1�},�M�~��"X��ď0x?�������o*=���๑daf��0d!��e^���O`�Á��/�r��W�+��5��Ⱦ\��<S��,��g@��k؟8�L0^PbD��2����KB��z�2T����6=ﵰe�+��L�,�l�,[�^�͓x��		�E
A��W/��5䇆I��J L�|6A��1
��X��m~f�0�jPSB<�m����'��Lݎ'�S#YDx�	3�j�HA��3#���c���c�{DI+�_HT�;���-%��� $�z�3j�_�6Q�#���?�+�\�u2δ<�^��7T��<��JR.�p��A	@>[e��"1��'8�d�@9�e�h@��&h���3��~)�e�*��L͚Yjٕ6�L+��b��u���p^�W�?�0d!S������q�?˲�|&QQ���o� �0M(�3����|��'?��-K�K�U6�>��n���ҫ51A������$�g�$e�x���J[ٔ�0�>dzh�1րm\L��+��E��Ú��ؔ�6�dSSϰ��1I�X^<��m�)ydxP��EۉevpÚb[����l @�yв߰L�M�#V1���;���$3���$@b��޵���U$��K_��"C",1&?����pM����K~�&]uG��v��@D\��Gc���-Xnb�A�l�6�^�O�d��I��r���L�_��^d���l��K"��ֹU�����g��S�OG6p�����^����u�a����j
����h	�V˖4�/�ܗ6R���'̍��ڲB6��������ƚQ���{υ�:�ð��8�����:��m�%��T�p�σL��vl\���Fd�d�͈��9	���u�|5S-�ZGlf\��qV���L3����9h�kE��ă�7�#~��N�W]s 9�H�4��E&��!�\��w�����~k��s�X����ar[�m����j7��!������+�M����@��*��G�W��+������rƑQ<Ft~��x�-Kt�mK�s�<�,�hC��d�l��|�K)���LӉ�Y����o�w�fP�r�.�sn�r'�l�q�}"�\O5���Izt|�IaK��N���4����D?z(� )�NN�T3?Ph��I�F��f薥F�+�X8�'Y��������N�9��E;61��$�'pYꍮ䍖�P
@� R�A�}AY�#�A�P����to@\Tr$[<��h����xF0��|41/k5�P�e0�,U{�&�$=��4�̤E}n\��RA�D���]5�DJ��y��]��4":*��Qf����@�y+ٍ�K�,����	%.p�yb_
aE#&K�m%���DB�۔Ȉ��d&�ދ�L����AA�/Q�D�LTޅ��ev2.�K5S�&�3�������<+�	�eG&ݛ�[oL�~u(��`1��|K>��Dxhf'tA��x���~*��y�)$Ԙ	׭+{|6�2�ڰsy9�X�sO6e6˽��8ճK�{��'�5�{�4���Q� u
�iᾌK���m�Z�����쎥����9�
�QB�i�
AwF�0q}f}�]�{�sF[�g2R��H���W��e	[V��!o�%�|��-���K`Y�$�ӥ�
�.P�%��O��	B�?�'a&T���A�(���<P���$�W�b�-�Y��I�^����H�T��ɒ�v����0�G[x ��gh��$�Q�w��2O���.���{:���o���+�O^��Hy�����_�9��2*|��)���8����&9�:�f��H<��مd�W�=�cioH�6D�ݐݽ=9�\�qu.oxi���=)��.Q���}���R?����q!QP=N=����j�<�i�?���!��e~V ?��*\�7J�T��g9����1y>	4�uThv	E�ME�G�b\�Y���3���ͣ��#Ȭ�Y��A�B��r��+�|c�P�ڻrs�P���ܽ��ܹu��
2C�~K�7�}�R	3�T>2Y#$�t��������T��K5��&�G`S�bNj��!3���|!�|�
�m��(���;!�(��eR���D�^H4Q��ڧ>�����	<��(�����*�`�C�����n�Ќ�V��eʌ6���+Pz�zJ����3�JJ��Y�/�Z���Tb��5�G̠�Ur;f *����1%�F�Y��58��=�Uֈ 7=��{��T��2c�9�[]}ώ�&׬G��̘�a9��:Ø��{, ��o�!�Ïē~bC7x���qh_
�x^@@�=�H��C�(�Xa��?e�4�c6�K��ѱ�l�ж��y�g�L5�G�p����t,c3���<�1µ��d�҅]��%�Lt���sz,�.N�xЗ�Ǐ��'�33�㯶���b�����"4�����o2�8�K5Ä�	K/��+���f����,�+Q�-�ؗ�Jk�T�=���a�H�Ҡ��?3�r��
�A�`<zzr"���.5��Xg#�	fS�9���A�0]�h��l;�LC��x2�@%`J��i4���'��E�@���w�3�$�s1��
%�̌�d��A��'�����+�����p��Kd��&!C"���^�#���x��S�R�>����K�1�(�|0Ϸ�������j��Vb��� �+e[�o6���op?AѢ����ez�d��0�*[��1��a]����Y1 �A�a`�vQ��fq��H
.��2ю�d���Z9b��'��W#D�d�^����~!H��f\��q��w��	ՊE��IXŋISQ#���M&�]r;��H��'����juuD�غ
���v�p^�;Z�ȑ�,�MLĭ28d#���>��@˿F��9�ۢ��������m��v�l��c�KT�;6��bB�Ҙ��!��6����&�jKL��DF��g���~��q�e�D�F֖m��a}i��V�H��Y��X�mP��q1Cr;~��Q���g&U���keRn��gt����2Rò;�!��U��aK�S�b?�8��	Q��~�4&��EVp�.�gs�gS����NSN�?�?��2���~����Ѷok�>�~ݷ�x&���O���jT�C8'�G���7�W:�8��d��u�Q}����}u����(�:X0��4>��6_E>�|��`�Zn�([��v%WK����Q���P濱��ϚA}X�T+�yD[���U��߯fYp��G��4�L�;�������<}@�/0<y���
0Z��z܅F�3��<�3�.K*�
U@��TZit'��TR D�e�0# �	%#_�t��8����..Gr�����Kj
%y���I��&'v��H'�u�X&K�ߜ���mR�#d��K�2/9%uP<����$��'��ʷ�H�R^��I��+��J�<�s���2��i�I^�A�ғ9���ƥ)�!�0j��}�NDi*���r����"�ng���B�y!H �@��P3եx�#_��4j�J4Q�`�&,s����B�F�:�<�I�2��o7A�,���4g�B����8��SP����My��N�9l�J��N���~Z�|�mz������'m�B�N��~��tє'�i�̧���^���?����F�@�G�\����fg�w���G?�8�3gV��
	Ja�����f[�r��2��9�7��g0g����*T2e�}`J��҆�{�k���"�j���e�Xw���(c�>;=Ol��޿��7vv�.e]nw;��vﴯQ��j�L".*Ւ��"�R��@�e�s&!��D%��ſ�o�%���U��}�"�
�6#ٜ��$dF���eެ�K���~�m���ߐ��˷�a6������BNj2QSb�G��pjѬ�'�7N��G-��kD���I�KR��)"��*�j�=����H�B3��j����f�"K�pP�z3��l�x[�Ku|�ai��
�T��9|0
�T`�Y$-�7���w�Ɲ�|=��ĩ�a��̖��!����,$�p��e�(��]���c��$�A\b�1��Z�)y�rv�@�Dǯ`����{�JˉFR���@�@Ο�����23輙}�&�Z��j5��G����!@� 5�k�3���4	���!�da�����l�h N�	�x��Kyh���aDz�����2;BG[ͥ�R$��έ�l"�-�Y�*�����&�����o�y����-K	�ǀͷ� ��3��Ԃ���k���V'��?	4S�'����X
��{�d�t���(���w�<��z~v!�n��2�����TbR,p6��?��;)�;�7�rvq����}�E)�CZN<6�ߌ����2�؀@mf�%�iv�WfT��^y�Y�xϐB%�Z���/��L.���&	�c���乌�~����q@�Ϗd��1��<Y7�)�Ӿ�$^�aos��+"5�al(����c�\1[�뜯�^��R�� Rs��K
�`�I
��
�6G2�"��fQ�Y)��u'��D��@�Y�Kͮ`r+�N֗�d��Ud�Rz�-�It���û��̼�_Y��V"���¥JV�NvZ;�aA��6�|ފ�d33�@�жRɷ:����N
uz��-|v�f�(��媘Ō'�1��T$��W6�|�E��Z9�iM�fF���|&�`sN్kw{�Qw�>Ø癮�ߪQx��g_̱�+�`¹����XW�t�TrR<��E9/Qfm���IL��M0$g��i�����{���?3��oÃ��yI�}_��I��m�b�@�c���-$�fK/}���J}Â�e�0����������p�o���p��'S�rٕl����l��W�
Y�mR�k����#6/�M�#�1<�Nj�*�U�s«+V��L��-��BL��q'f}D�%���M��u�U��-�\b�� e%��ۖ�3	��kw�gw#�Z��J�L�
�_#E^
RW�9�@k�������J���;���n�j�%��X�L����9��m�����p��|�����"n�p�}R��#;���G���C�l���q��+��Yc3����25��}̊n4z!ָlf�\���k��aKx��ƏK��4��X���1›��u��k�uLv�����Ў t��Ilp1m�8kc��`���6;-+���W���rC����NVB��4���h��}f{v�b\ϴP��0��n���i����z,[���41�ua;�U-R&��S�T�����o��~���Or�o���d�J(�ֻj��h6�k��.���X�ζuW�K��m��e�'֦qo(�jn���鎯=Y]oU�b�$��Y	d��i��|�2_˭N�}�mq��8G��䅯��%ՙ��߭���<�WY�#<�OZr��@Ё�MJ��)E����Z��a�5瀌*�Gj�9O|aR��$xК������IM k�ʄٗu�K�3LȆ��f�\���&Fs�s���驟�噏��D����_�)3K�.@3��T����ԋ����i��I3�e������hdzx���J �*�P��D;Ȍs�=+J�b��iz_z
hԪ��m$
;�q�(?SyT��\�K]����X���\'�Ժ.3�8�6r�ԫ�t�{�XAJ"�Ԗ�3�`��y8k�,<	�BS��
�&���\pr�kϥ���%Λ��XF��ӋB.&����j���B�G�ѱԝ��.'��3O�����{���z<�?x�R��ꅼ5`tlGn�A^���{O�{����vC擻2>��o�[o�>��̔��4��QHF�y9>
��'ɇ������ܙ��<_!�C����^'��k�X�i2�?�����iT���\��T�߹�5�E�L��
�|����J���Ju�S��,e/u��N|-S� ��gF*H[��Z���7���7���3W���2�e|�%��.S����2�p��$,$y��/L(�g�%	ʠ�U"�D$`��<X�x�F���!�_J�%�(���l[I�w`6�|�X�S��RA������r	�"��`�,��Cd?	$�m	F��"�L��e0O�%��,�"���s�G t��4|Ǻ��!���>�@[8�{��=%#s)a�x���1���yQ꽧�����( �����8��F�fƲA�u2IwL�2h��5�h�������#M?��=xm֮�d_\<B��
�e)��zGh	�|ؾ0�a��5!�ܗbF���M�f��`+�+�c�'��RJ�%A�����پ�0����˔1C�Q�cF����>�L�<z�\R���:�4�8�Vs���<נ]���H=��� d��ܙ��
C��ڙ�*!�>@V#��'#�?���\3w�oP^'
@)�|6��D֌���M��=�_y�`�H
=.V
C��Q:S3�D.п?|t��k��B3�X���19H㮒m?�WG}7
�;�f�-�I��_���cd4?���iר�2��Id�ؤD_>�>a3>�mH��*�G2-�o�dtڿq���A��L�yKIX���({�����Ͼ�Ծ�� 1�N3W�B��TF)�Yu�3ܷI�\S��Ro��ʰ���K��aa�<�����1�;����K��*#q�w�N���c&^+3c8�P�2�%������y
bt"<�f���d�q~�����<��˾?oo`,#=����V��Y��²5H��㺔c�ē���u��N�-v�,K6�扅�r�h�.�lwww5���A͛q��2�W����=��ϦRSyV�MYy(1���&+��1^��9�q�=۶�f��!I����������#Iz4��~�Xq�]C�L�}�]?��׳���9�+q�m�O��0����m�@h$��)���&eE��ez�dG�{ĒW�F�1�%�f�G�j����Z�;�&1����ez�~���?�I\<b+�c3�#�_7�#��ؖIW��mD�g��"��X\"�o
������JI&�=�ǀQ&1�h��'�d�X����z����uɖu���3��j��`��M�b���&cý����\>���b���d��L���<���36�mg��M��v'�C��|�kqѺ�W�a�1���M�~C���j]Dh�6Jn��R��V�
C�?� �t>�\��Xc0��K��T��q7��S�«v�a�,����L�b���Bg�".\�����<<H�D&Vk� 6#��O�e�����x'qV�u�ܗ�v����i���63<��"U{v��c���%��$9��S[Mӓ��3��O�Uy?�Z�>�p����qp�|����9	�wX��a�`��j���۪"'��m��Dlj�o?��ľ�.ܕ���7ڹ���B���?U��lԷx�W�mq[މ�̲Kd��\�f�x�C��]ke
,�h��oUHkd���3#vi"�����1�j3��F?F|50��ɛ�>���[��j4,��`��>&����o`b�WE���'/�7�Ms9Dڒ|�$��,���������fF�L�g��2Q ��.��a�o��K�c�$m
�FL�:�JK%�%��N���K�,u��@P�{#�j>�R�[=t��H�(@k�p����L۳^���,gF+@<�p��U��!��	�Z�"�=��Q���I�x��r�˱�}��n#�,�� ����RAՃ��f�H$�~40i�%�Z��e¸�/M�墀�S�R%sF2Rv����f�}�#��b�T��BI�`�^�B9hcr�r!�;[���IAF��r��~�>�i�����GV`72:�^�)3xHX,R�b~�l�"������H�5P���)�S"e:]j�ӈ��a�2b�h�c���[)<����_�[r6���N`)���S7�J���i̚���}=Y�g����{��j��M�n⼁�f�LAr8����+��;M���L���8��H����]�@0JɔA�M��4��/RH�,�Q����'A�G�mߗ��Xx���jr����
/���/����<g"�"�슘�0�hm��<��t����O��c���gI�u` ډ�2S2/(�\�Vx��&� �R\{�޷$���n�4ّ�=�5��rt��_�3;|�T��u��/��0gԹ'�X|YdĊR�ͤq�H���[��#{��U�m{��[�O@�I�s�vj�`�D��M���Pp���u-it�W`���,�!�� y2G��}D�aj��Ad�{2���M��q�]�����.��ݖ<~�@F���Oޑv��aᡜ�@n�9dzB��>��S<��x��t�w��{�L�-�Y<��y���
�|B��3�4��21�\��qx���/_�9�gj,�I.IT���P�jE�()@���D��L���ޕԛ[6���D��U{�H���x/:�5ⳅl�R��3s��кiϫ����C�@#��w���<8�6��Pv$u�3$���I_�fw��@��<M};I9Hf?dJ��z�nQ�������gJг��>-K���n�͆�,l��K��`3P�a�FSɑV�n�ܚ�z�P���� ?o?	0��F+�	�;.�`?9��{����j �P��f-�|�D%~H�-��
��![����?�F��Hhh��o�< ��,�.�� q���}�����h���'���z����1{��P�/_�+3�W�!���U��{y97��1��o}Y�W�����*�F�ה�{�?��'� 5��/V�y�T�@�� i�����2�Ko�ͬf'e��B�7���֣�y�7�[�fѬ���A/7��.|f4�������d��h��JRᙠ�y�]��5�x�k�F��e�0�A�n�O�ga)'�f�X��Ju��z>o��{j�H�޷(����a��jh⼒��Lۯm��kz�</ò�?��sl�6b2����,�@�H�Cl{x����e��x߬�saζY}�B0���j���(ֲ:���뺀Q��N��
lA/�p���t�b�1b�Q.�0��ʣ��RߦZ{��a.�X����ncA�qP*�?�!��2=,ۃ��s307|HgzO��!�vMA$����֦�&�n���[b�P�e����+b"��@e[g����7.�-��?~&���+|12+7�]oA�q�ބ(0���>Z�D���#�.Yϸ��V��H���r�M�{�˕��ֽƜ$���r��a��,��Wcsݕ�.��*a�n��x�aٱIL������J������u�IU�!�cU�у�d�5a�5@.j \hl�wץ��<�fƇi�Cl�߳��9�g[<:R�ּ:��5�Vl�0��	�����G��އ�k�y��Q�;�@�$�:+c�Il����
^�}���H�>"54��VQT�m{Ŝ�K��:rgڙ!�A��M��j<��`�s?��Fj�U��ȌP���ؔ��MO�cT[�6�n���q�H���uZ�f/�v�(���.n��\W�Z+�d�7�I����n�������y�YB�h��8����t�I��vr�6HWM�ֳ�J6O����vן�J��9�u�Wn���vՙ�E�:#�_"Q���o�����0\MvT$��NBjX�b���u��.��������O坷�����D�۷��g����C�~���ȭ�OJ�����ڂ~���-�2(�4'�\O�gN���3��-������9ľsLb	~h$�}��tIM*=>tgGVpDžt����K��������|׋���O�ǟ{R���/�Z��h����8-�Q���j�(���A�L8 0��9�WB@
�a�LSf$�hW��dr�_��\�H���!��@to(�$��a�|�3]��qk0�Y�@��r'I:����hO�S
w/wì�B}`���0���iJYmݎ��ٸiSjto��!��Z�@�5N�	 ��(�Ȃ�_�C�������)��N�rW6�S�ݳD���o���=��>���	��Dn��'��x>�G��B}R��3JVr>˛O�_y ���ߔ7
���JK�S���7t�NzqȻ�J@�S�BS��;��Ű����.�6԰&���^$N�D��.��>$�'H|�.��N���s5�}�i�#��F=m�EM�	����x�rP�����,U�����9�)}P�>5:4��{GX�(gE	��ڧ���9e�IP��-i�r�8�G'��f"����?}%��_����ko��|3���D��A)o��|�^*�1n9u�	L��k�j��Z(!Z��9O�-^��@%��K�A��,;S<���T���ڭ������Τޗ��u�ޖ���"���Q"�e��e����M!k�ϘU�S��� ��Ou޽q�����B<��Z�t]8O.�p�dJN�V��V��p��iY"f:T$H0y���Z^J2{SJ\/������tfT1���������O�Ӂ~�X�p���@��񧋡�>|
m������Jlѿ��]�`?�w9P���P�QG(�U(@J�:j�ӳg�}�ƒ���"A��_�3d(��6�T@���~�
:Of��#�M/
̈́YȨ�0ˆR=�Z��cT=	�y������zD����Q���%
գ�P��2���s
�و��s��mr��Iv0��%JL2�"�Vf.Lp��'�AF��Q�Ǐ+�L��c���4Ucm�m���<hJ�\�Q�wG �DMM�n���󀮗�l(
�~jc�k�t�Y��h��̞^���Z�D��T�Gfrv~�k^�t�S�/��t�V#�ך���Dό^�G�+���㹑���햴�ߋ�D	�D]���e9���	3��W�5*��b^g�.kj.Z�*o�����2%�m�&+	�Z��qTfU��s=_��˜�)O�����x���sNB�=		��}1i##T|�H|�
���l�����19%f��8������=yp~)��{(����[��kGz{{ �Z:&8Ÿ��ѯ�9�%M�x<G�����J���ē����L͐ͼ�z��0����C&��m��{�+��aO�,!��q?fecR��o�����EY=�s���h0�+;&�Q���LjF�M�$Z�K�������ȹU��$�x�Vs��te=�g��wO�Z9�A�\��r���1�ŋA_��2�p,GTv��V"���W#w>ӆu�����y�`���޸�Qx,��@K32'�a��Ft	�{�a~�qv�5�'VÈ�C+�S.FR�}�˘oGP�H"�����H0+��X����5��<\-���Ŋ"Ħ�9d���&���2�v[g��@�8 �03[��*�#lS�Z�%�x^X���0�5�ps{�r=��/~�O��LDz���6���oX릑!��A��*��oDN$���X}�6��+��[�ª0��!�#X�ˢ�$:��	��4$.�|�����ư�E�i�6n(����2&Y�xW�z��m�&Y��0R�z�o��E�YcbD���f�G��E�jb
U�����9���ّ�WI�iVn�Gd���e�H|������;jT��A�*1�C��:3.��0��캭���9��hMΊئ?6�ֹY��u�!@,M����/��A�#D�iYXj&#6
�8����9�����;�H��H�
ߎ���@Ƽ;,�������B��ו��zZ-΃���E�?l߿�e
�w��549N6BDd�����v�X���o�F�skǓ����'�n>HH��a���V��U�k+��ё�
��>'[.�%չ��o��,����B���Ym�e��g��Ǽ��[�g�$�M�5t��_�ɫ��'8���:�j��SD�Z���b�*�>&�� ������������0�m˭��T�ˇ�9J?���Թ*�RL:�n�1R�H~���I9��NN.��~�+Rj���MjY��Ą����|\:
L�S+�|�@%�|��]yx>���(E��5�H��� ����Dc$(�F���RK^O�_�<��_zٸ�n�gm�l4�|�V]�7	jk���N�m���DS����c]AM���'�K�V�x#���\U���xI=�$
�S��3|f�<��3GTo$�l����sͦȓ��bb>���p��yF�.d�؛����x�0��;�ѣ�B	�c*N�x.���A4��8|r)�=k�{��y�5y<L���ݟ�'�`D�P�I��8�S�2㨳ެ-Ԉt�,ԓ��Ĉ#�����t)g�:���{�媈�1k���B��]�� f$�)��M)a���r�nF����r_�2����q~� f�	+������Tʈ�6��:΃�S#�)��f�L� ���F�.�*XQZ��6� ȭ���0���a�Ґ����`G��#������:	�VZ��o���0��I*���J��l.o�k�`����D^y��ww��}u���{3��'�}u�a�&�V[��>/�eة��.���b��)�Hc�%�s�5��y1�����'��70B�r��Mp];R�.��kR�����[?���
8�@6���I�`6�W�M�ڝ�䭶���;\�І�Ge��A6�����͡{X7�z��/��=z���PAu����h"iH�v^�,%)v��x,Y���'�B�����f��������2>����%~3�������,A��h�&�Z��S��� O2<{2�<j��!�������w���\�Qwkބ]��'
����F��W����K��J��
��l���z0��c�3��m�4��K�͝�
�R"�V�;C�
RWEF;%}}6哸M�L�S)L�B�sQ�$������2�"���*�!	mp�2Lپ�b2C����	1@=b{�@�Yp�w��d<�d�}�X�vP8pb��f�].�>O��4�U����V��J+5T抿�th���w��3�>yK	rz8]\��Һʌ�>ޫ��jj�^�o_xm|f��!YGd����A����̼�����%K�,弄�
e��i��<�=�{�, �g�'�?���D���1'�f�Aʨ�w��5�'
���c��lg)-��'��Z��Qj?#ID�����Ymm<5+��O:-u5Ӡ���@`��Qy��eԧ^�ȴ��α�\x�BY�.�oPO�t�,���%�xؕޟ��:	�g�q�xͧr�r�qwPF��l��|fr��[�~�/��gQv�`w���j2���R�<�D�q6��`_LCt�5�7A�l�xҦ��x?
\����M%�q=�NT~�����>�,��Q^p���n5+�/��"�\ˈ����߃laY�a~��������P��H-���$Z��=���e�yT?�.���(i��r�?��pc��@�E�~S�J�
���c�$mϘ�|��JW���������È�<��t�6$��e������,k�S��K��z��4��4�I\(�"���+�{�n�o��$CBP�z{�
��h�+Ol,μG�2>tq�xCb!�x�W�}��e���P|�Y���X̳!�#�����ȃU�Y��5
���d�,��TF�3��L�$l�B�n5�7���#��ߘ����\K뉝i@�auq�r @dz���V~��o�M���
S���Ă�_�<��{��߅}9�YŊ;��f�+�7&?*,5YW�~>'ɖ����C�ƒl���O���>֔�>\�.fx��b��}�x �x��$�U�-˕��]5���#��}�.�n�����5FvD�����p����άQ�>���s�h�UCe
#�e�oq��'dw8[�<�9���$J���F{3�c3��ąu�yX
`Ll�F�$5�]l e�V��h;���!��I~�F#}��	i�.�K6;J�$9�h.�-���-53&;Hj�f��t���_ma�7t3ՠ|S�Jo\��p�o����O�yw���t�� ���Mb���-����Z#
�����H��
rvb^N�=?��5���w�lY��ϩ���^���K�p�Y�&�^�����7�R#���ą�`pя7KΕ[J�]W�~��ϪB��u5ڂ5&r�1��1�]��Ju8�v>�
�*���M¾�E�SjTy��%`RN�09=�u{�-�5zT�y�Q�Xc�%�ݽ)G7���2��%mf��s�����_f��	2��1-w��
mܓ�J�0W�����5o���w;m�{r��#�o��;Gr���uq��T�;���?}$���຦��+ߔ׿����9~�@���7���9ڕ�@z��L��d�I9&�4�t�z���@A�|�p�Eu�)�BJ"�1�L�F��Si%>"��6�$�M�A�9�3r��x�Pk=L�k!���?��,�DVY=���rg�ʘ�%��g:�o�#�D݆I�Ÿ�Ftf4./�0�\���$pR�
�ל�.��1��a�\��'�̍��*��I3qn�(�%7�{�l��R��Ւ'��2���~.ޗ��D��ztB ��p�@A'+�֍RA�!����D�9��$G)�x����2��sVH�d3J��aF���t���"�.B� 6:�
q�n@5��zsh���[�(��y ����<q#��dS>���|�D>�$��&sa�x}6K������nYM4s�`�h�X������M��}9��n9��z>��gὢ4�`(5��Xh�K)�B�|?�����" >����{Qx/Ky�V)��Y�ýD>�*@�G�A��5'�K4 �n��8����~!O�p �@8����1�-�S�/���u���*���9W5��he��u��H��Q��3�Uʴ1���{��z��Ap-h�[N�����tZ��bչ��'�.⹟���?��]i�ϴL3;�������!�&�����ZM��G�UM�fl�P��S{hS��T�K�z<�+3¹�$�D��k4(�6�~G������@��̪�ޑ��
9]ܒqyu�
�a�Y
�cF�b�{�.s^�7�&�߽/� e2f"H���.�������s%�Ȩ��6};�ə�t.�|�R��)5Kj����+�@��I���<�<��=�/J/�Di�%�!��m>��)�3�AЏ`�fl� ��\�3����`������_�:\�#�C&�X�i5+���}���	�Zŏ)��|0��u��4�V�"|_F� ��_�,���"�,�^�U�_Bo5+o˝�w�,Ɋ�Ϟd�j4����Q9
��$5j��U��
�.�< �������l�|av
�f^#��ӳSmSX>gg�8��>W<�����瘙7�3(�G�H5�V����6k��E�G��7�r��I�"��_�/��N��+��g��&c�mE����2�ޛJ�{��͏$�C��/�c�����)=�Er���4H�JBP�i����b(b���I��s͆�L����Fe�Hj2���KJI�����$0y#�,�4��O���g���%�K<˗}>�c�:a_�v�	mOj/CP\��)����#��c��}m��� >//�|4Ҭ)f	P*�[��Z�4�c2#m���8םvW��S��.Ƞ�2�u�Y�5�I��.z2“C6�"�my��²�~�Y��;z.:�`v��@r0��S��X4�%�o�:�p�D�(�1SB���f�x^��
%�x�-�A}:���2�3�W��{6CF��>��nf�6�o��{l�a|�d
3�B=����e�E��t̆gs�,!��2c{ÿο?�9���K�e�,�]�X���i�>*>s��<�f,e^2m��{ߚ����W��w���+5آ��\����	�ϲ=�n@`��$��w��aK��0�*��H��(��"=��Բ:,�#��j�34�?b7\υ���<Xu1,��Dܖ���Ex����-Ӄ����bQ$-��
<=Ķ��	2W���1�!��†��)���
�3l�ȏm��erp��`����8���R�$��w�>�>Ŗ�a�b�"ĆaՎb�t#�܎�D���6�&�p�
ߍ�i������.�<�l,�:�!���ˇ��IND����� ����]�~c��7˘$�8ܘ�4V2&:6���ofz�[ʗm�U�3&���h����q���аF3���%�~���A֗,s��}$1+�WK�c������Xen���P�@�;!���� ���i+���Ɂ�-��6������g}Z���W�}���`��lЗ����e�iWX��4srf{Xz(?G�䶎�I���(3*�3;8`����V��aݪ�Lx
�v�J����￸k6��ƛX�Y���c�>T�w���7RM��[SU!R3���O*>Ǫ-]�nm�$��(�
J$ �W�?.�$&�+߼��aTtNI|9�NB�+gYm�I��o~�s�׃n޵dus���.0�"�[��Uy���Ubѯ��&�	�:��E�@j\��7�g�z���s�	ڀ�7hJ͈����M�q�F3'�LP���p��@>��c���='��q�#��B��/�:'�t8Jh�M�b4k��T�_��[="�
*0���dF�> �D�1)o���{�US�jP70�fd�l9�&���y�f�<,:��nVx?.9����v����
�:�N���>׈�RVe~�뵔)��)����}��@��f��g
⺤ƒ�_hd�P�Z�m�
�
lT�1��(�\
Ǖ���9��
��!}T,M�[Wښ
⁻��Q����ճ�]�f�s���\F��`���G�t��.����
�q�u'#���Ln�q���_�%��'��<��~2���&�}��&���K���G������9�u�EC����e���-<(�u�b1-�R#@!��^.@z�^�AX�Z�N4hnJS�� �n֠SH�륆�C���N'�:r����mȻ���DڬíBm⧳�fd�)��2�4�V%;�T�I2e(��v]��`2׺�hL�W�H.�*�Z۴CfO]�J���K�6uN�[Jʃ���7K�y�?��~^|�Ui!�z�~��Ǟ���q>?��0�mH�fZW>v���>��w�p��,^��`xS�"�*�Go�H�܃�{�F�]�]�\�3�ޙ�$���S�&ҫ�*!�vyr*6��i���s��@��9h>�l�ȇ,�K�����
�Mbe�w
�`��)�I*q㲬��;����	��.O�d�n[��f��:����T�8���`F;ZjDr�$muZSs��q����L2ԝ���kJB5�>ڜ���'n{�np�ef�b1!2+ �R���7JW5�Q�G̙cCԕ�� 󚚹��^O��>�̆L��F7��(�>�!� S�K1���„��,5R_��BF�k/2Y?5[5���f�Ap"�L?�����W���^���q@�5`�K ��2�������T��jZ��Ii��1��i����X�k^򊠫J���
��\��[�;F��)�B�TϋF���\�h�A�6�'x[Y�f(ܮ��UB� =�@���}1�p�)��~�����y��z��!�e�	ANވ��z5z�{�7[-ʋ����d��A}��DV���,HV�����vǔ�Xˌś��a���I�aA\��-B�V��`�U�d|�A|�sZ��v?��b�7Ub��@YFFxr�g�̃���u�ah�QWʉ�<d��ބݭ�[����`��}�7�6��{���t����$4�ABroܾ���O���K��")'
IM��y����@�9~��c�B�mf(��t[9��y�p�q
��u����i$n�.��`O�/.o�z�O�d��m%:f�� �F�+�������{�}`X��̲.{���3PXv$�:�L�(f���i�Iь�"�xy?�D͒@8-K[�L���E�R��{���8-�0�
?����M	�,�$��"�|2/��IR�[���1���jDn�F܆��漕���	Ɖ$";A�J%KA�͘aB�
u��:h�>���qڤ�ߩ]��7	�J��;%/�ɱ6�%�͖k��z�ޯ���񲿿�^��s�����!*� l^��|D�w�=��(
�.�}
RW��"��C�iX
�a��a]��<�=HvD����
n�����I[,H�43/���[��[�7Y�K���
U%�UFL�=����q%ffߏ�ݡ�y�İ����Aƶ.���b�^L���H�aKLx��5�����Fi�y���1O[6H�
��q�8hܸ#>�HV�~�����j�+D����IbRd^{n�-JC��	��^>$<�gq�dl$[Lc�"o�I�����16�^��ج|ŰD�*��r��dI��V�0�� ��X�x	�TDGLrD�Z����9fx�m��o�ĆG\�����M	���VaEr�b�����o�6�_G��a�M(ߊ%��Ȳ>b�#�̿�$�*�r��b'gu�5��Ҏ�R'-�2xy$!�#	�7��;�M��x�e���ٗ
��0�Y��s7�&_e��<X�j���,ڃ���s���c,�Ne�>�*
/���[9�tw>�ʦ��X�H���2�~E�K�zu���6$:�
&�!W!dC��7��8���bv >#�D[�5��7�q�*]X2o�1�1���8�p��۔�����k�r	���Ie�o����V�n�����0�M��"�L�)�k'U��e�C�d�4��#�����+�j��<݊��k\�oEo��D�Y���J�>ٲ��qׇU��E�"�E�w".:���ݮWn�P-겜)�~kW��Ln�
�%)��n���w?�\H�t����g��{�d���9F?{����\��>�Mk��MuM��"^�]u�y~��9In��!j@�QI"�QV[�&��p��{�|���G�2��&u�+)Mtp����X'����L儲.e@�*��m�;$���jd���싾
�ԺgvK��BIᣃC�[t�h��U2��Ѡݴ�}�F�Ɲ�F�{9�t&f&�(h��1ne��'���(jnlw*k���Դ��J�#=����	A�4W�]�O�qz<�QA�Ý&F������f)��Mn�dԟ�|2��GM&����=8�]rhY��O��nG�M�B�@y�ࣝ�S�oޤ�5&�����
ؔq0 �p�^�Y��?��>�
��d�q��P�eZ�BI�睺�N�/Sy|P;�if
EWN$?��b�匑�M/���<�Y��&}J��~6T�D��Q�aK��'v�<ؔ>��o��h���Dp���KOΔ ��M�K�G��K�,��,�%����jd3���{���j4�`�֌ �8��/�A=<V�	��Tm����jQ��N���K��2��8\|�>:���Ln�5Sc�vc�%��Kmc�1_*�0��)7�=J����W�)���(;˧	�~YL��#�@��rR�xV*@8����1w@b�8�IGu2�`p�	��Z�K�<s���쪋I
��n_��x���Bn4�rbz����r������Z>�ހ��/Y^Jc�mA]&8O<>zm^^k(P�^���5i�^
�s�y����3��^/�;��x� �n�������K��䒲Z#���p��k�U���uJ"%KFs�Q��hp����ZsV�7'���@�K|J�\|44
�g�U�uU�+Kb�R+Z�`���r��vO��F�V=�9���K�l��L���Te�_�|�r?�L�cy����1���	Pm��p-�^���*x�V��P3�:#�I�ye�p4T�(��fT���4���@�wwQ/
��/���>�e���wz*���<��u���C�7��e��~f����`0Q�x�q{ O�/� K�;���*�]/���9�%N��Vr:zo���!��������-��@_�z|��d�0	y��,�E m5�!�>ji%>��u��	
��F��D�۹��J�E�V�N-C���)���<#�UO��T�w0�5��ǥ�����x�8�B?1��z4�14�!�L�4S����9��G����gl�g���a&��ȏv��vL��LV��\��e_��H��S/6�OQ��5�aG��~LK��βWo�M$��0~�La[F�W�:N��L<| ���7p��…m宂֖�;%�9F
u��/ϛ��2f�9�#��r�dTBr�F��2T}�M�Ϥ
����	b��*�ECq�{����Cc���ex�W퀭�6C���0�%.��"1�q��=�iV�ј=��m#Ǐz��U��ՇJ�,h�;�`��~=��Z_)����)*��ў{u�3�\��t��0	1
��M��̋@쭲 +GY�&��,����|��O,s��F�W�lw%s��h�ì��`Pf��o!?��Y�$�3�p�פ�ë�$uA-Ùw���/&@�q >\lZn����U�V�'���Fz��k�!��)�n���������H�`Հ�U����r�\�L�p�����D�����7$&>bŘ�{�M�*`��YV�V��r�A��]L���ƶk�D���,v�1���e�\�ź
��"*±\���+'��#=>\�{�V}������w[$��5^���k�0�u۾�{�}���:��o�gLB���Z����x���-�Zу��A���q*�'?�I��HbC�!;v������"#!۞)j|���_��
�԰�1&8hF��
5S��w��#��!�^���'�']�}�iN��$�ذ�g�?�����FT��:�?�ty���)ko�l�/��鳸�5�)�Fvr$&��`�Vb�c�Y�3��&x��ۿ����^��;w�Η5
��l,�`�?��$������Fyl�`?~�ۙW�
JNOO1�=�װ��}�g	_���z�S�V�$:��� ~W�r]�W��l�~�/$S/w�"�υq�%���R����2��i��uQ�
8.4��z@�\�c�O
�F�>��Im�ѥ�fԍń��/�R3򥱤�,�ARN�f��wI�V�����0I���u��2��?�c4*�s�H ȁ	�`�(#����"͏Kջ�`����Xך'*yS�͔����D��֜QS�LG}�X78\#���S�K�[�`ރA7�{Q6�|���LgC�P�prXkI�����	�����e� ��P�smِZ�)�RAqFieiϨZƼ�2o�J���1ҕ���Qm4�-
N�DޅK5�8OgT��R�&�d>�%�J���%ν�9����9����dD6!E':�XrZK0�q�8�)uŅ�'���SW<K<иNh��������I��5�4?qJ���^�(�+�?�'�\ ���e �r�6c/�(�z���3ly6���?|S'N3�w�b@_�I����S��1���O?����ڢI��T�0ZO'�Γb|�G�t#�52�,�:	�^x�<���ʥS���ɼ%�$��&�ꆫ�
����?@D��Q����I��E�P3Ex��O���o@)�I(O)�ZF��5��#������@R��
;P��3�}2�F�����NS�i$����T�(�%6Jm��1Mm�)����]�n%���>_w��
<�c�����]�y��aҽ:�\u�y.��1z0��$
��Q�F̷X�2DY
f~,h:8����u��a��5-\��L�I��R��]����5���ףK
#3ZI�Q�u�MGMN�1��gSy��C�ǔ���z]��QWw��6���>#��=RzP�ȼ4
ɛ�g�	��>0���ᨕ��}��r9�z�w��4�t3y�|Xj[��.��Q2��;)1�i���B]2��)�Ϸ��B�7�a~9�RK�"�B9��U+m'�
S�v���s2�жx�i���(�Dm��� :N,�Y�)p�Ѽ�f�.��Ac."�AVW�����&�C���\�n9|�A�D={$�q�_5������Ɂ	@;��!�	mA��l �k
�_�p��a�B_r�x4�I���7�9�K�y��|�1�$J���/�eƖ��YҞK6�I�֑>�U��,_Kܟ��3�>�إ��#�mwwD�L�.r��!v�~�^8�"_��f��S=��C�6�G ^r�g[�`�>
d��ie2@[�V�޼��7���M����u���Q���w�%�ˌ��hp���w��uu̝L�����-A���A�er��ܓ��F�]ƻI���u!��G�!ʯ�C�e�%A:�g&y��m�T���ZԑZ��O"�sEV��T^�O*�W��
<�})�Y��P�L��T^e�2G$� �+�]0���#$:7mgE��ͰG#��Ϩ�I�p�rm�od@����
h�>R��ՉF���1�s�y_�����lf[��%��,JJ�P�i��m����;4���e�l�7�r[�˼?��c��C��c��RǪl����G�+U��D;˃��
{j�ܲtμy��mg�&�ܥ�JI%�?T0>ձ+��U�x�/�ٔ�
Q����@ΖAnH��>K����ĩg����Os��(5S�q����a�k���:���:ki��sxM9�����Hw��~/.kꏑ�|JXY�o�$����Q����i�`��(�Pӑ�#!��S3\���؆��/e�=�� ���TO�w�Gs%�'�>�
�s~� �Nۏ��>pƅ�����q.�D�x$��Z����g��}���٥�����ʆ��'��i5��3�S�X���N�c�2y'.���?�1Z��,/����4��U;����$d�8`=�Y>���^�K�J��d��z@��L�c@V�>���h�]*QYR�L��2��mj;�[9��Ar���l�4
p�2��>y���Rcrlx�YטF���������7'��q�����5L,��_\\��N����>; ��!A���1�#^|��$l#7o��c���a؆)X�6^}=	�Wpt��2?�ӄ`Q���ݻ8�fFD��ʜ�;!.��;�T�X����$��2=���?��Xp����Ǔ_��_Q܄�ҫ����b801�t���$�ޱ\���b��r�ys_�]��-�������#gj(!s�217�K_�����669��?[^ZI[U�,�3L�#n���|�]�.
�L�z��	nc�CX/��a����1��ϛ��ֶ�ˆ�ö��L�5�ٰ��sv��7��<v��m��~˿.���#-&I�5^���:��m�k��I��H��
��6��m�٬x��6=O��[r���&�>7+G�m��m�_u��w.b,�k [Z�ߡA)#����6�xp�T��>ޞ
��� �@)*4�)�]~�_Ll�y�$H�� IbL��^�ә��Л���A��W^Q��R�Ȗ�x�A�*y���q��u=ɚp�Il/�
_�~�m��#HV9KY$kRuagH��e��!R!����ֵ��P2��jؗ��W|n�y�fJ���a�EB�&U��H^�&ZL/e%�"/���λ��y����r��$7�:��$:@.�+�#]ݳ"�a�.��[2�r$�5��w|T~��~T�
�3L��/���7�ko�%�#�������Y7�"�=�%M+�ՓR�3(O���O�_���������A��0�*PFm��Q��)RW�Y���kRL0~��'?��W~������?�wi0����9ȍ�}9W$Mk:��	#M�	�J�`r�Hކ”�0um�А��oKj(
�y�����G��O�c i0H�$��w�����wO�F� O�(Ơ����
����Q���n����o�;���?�'��9;�����ɟ��g̴䟾���G���:8�a��XgNWg:�\x��TlbX���~I��A9_�ijI-��k�Η����ד�V
x5L��[5'�? �q��LyWq>L<Hkw�(x2@���~�7��N��5�b�e52o��@Z$A"���y�dYJ����:�^IЄ�MU�ŭh[Kyy����I�g����W��d}ה^��'{�G�	�Q�:�u)g4���nOZ<��r��h<�W�$^��7�|�5�	WPS��Γ�ƺ��]��LJdiDX��B����!2�"��z5�
 ��#6��j�	%�f��Ve�����XQME3o@9峠�3�%�2!@,�y�)��b2|x��c���i�"���x?�U+��_�}���<n�49�]O��[甲Z�^�G
��&�=0n��M�RG��V���#��?��@N�0�N�`{G�e^�Hbk�
Pc�QE2”������Q$�`c���|�r+h��3�v/C?¿޻�@=1Fx�)���>�v�U��&��5`_�lf�!��I���F���s�%��|����6����ڱ�[�D��v���u�ho�2��&�@��|u,gå\��jO��Q˔�i�PJ����m7��5ں,�	��gI-���!%j���о�ڶ�]̔�H��v��֍�f���<8[�ۏ��blR�C<��B�+�s��e2/�|Dτ�z�����H�A�����=��6@�6�����u�zu��>�m���]܇�%��@�׃��Jo�J������⶯s״u�J۵�M{�v�H�p��j�	~.�BD� �(�@o����z��3<�q��i�N#����Ե�RV��3�Yj(��	��W��^�.Q��0�9�
!)6������c�S��Yfp�� �լ�T���@�/d�l
z�(5�K7@���A=E]�_�����[W���:�}��+�L�{��v$����7e�=�91���D��D��T�?|Z����Bn<�CP�� ���H��tv)S�X����#��M9=k`��'����a[�^�ޞ��\^��I�&M>�nv,�r$�bG�^�Py���(�I�$�-�hc�Y?*_HP:��j�/� �O��T�߹��\[��Ԑ�rEVXiU�m�};�Z�E�?#�
�wQT��"�u\S��g;^M�yRm���%�������[|Ѯ���AL0Sc��S�q�h��g��|Z�S�+����l��X�a�q͟)�Ep�d���#�O#s�n0�����I�*������̽i|����k+P͌�s�᝼�uݕ�I��H!ˉ9�I�p�J�
���@���La޳�K��8�`�cФH4�	-��,׀��x��nI@�وxFs���e�c�Ib��('J������c��gR��ub�E�C?*z��ԏ��3����$N�z�Fa�+3�p?ٞ3;O듈փӓS�>��H�E#�Ȍ*��Q�	Q90߆�5���Ԑ�	���lV;�`iۮ� 3�����܎��A|�������k��@af΍ޞJ�1�����"Ƌ����ɟ^b��s���B��sfq�5��R���q�πP)9/+�'�f��4�:^��$#ؖ���H"0��r�FV�!:}{
��+��B	8���}١�z���*���TH�Ж!��r�v�(u�{H�(AIR��&�΂q�$����;Vc�3پ����e���M��:FR7_���^$�z�u��z�q�^���a���f=�rv`ΓvZa�D��k�s�k�q�Sz��_H�K{�{�-�4�n����MIk��VM�$F�
΅s{�9��oʍ����l�ob% 4L�8ц؂.�3�`���P�Â/�sO
�Τ���'�y��ܨd�,�8ϛ��P�Èu�Q̇8_��D����d�A�vm�J���Ŀ����G\L�X�c��`sO��Ī@vHt
�J�X�}6r�d�>1?���ٟM��}�c�W;���'
.V٫�����̐���� ��X�1�#^;��T�u���>��$v��,�3��ȍ��Cq̰(��R�$�L���x���1���\���z�n���m��լ�
k���%��-�X�sU@�{���揶�n���6��|Mއ��n?ﷸ
�(~���͌ɍ�Fn��U�+$��W�M�c�A��҄�����3�6��2����+1��t42)Mn�ˆ����%&Il[�ζ����_	FDU#��l�`m��>���4#��XV
lLjغ8+ľ���l��l3����r��
츒�,�'3�Y+�@�#0��9�b�f�;;/�^��bg��O|½���U�l��a�ex���Q�� ����H���4Iv�1�s��m�6f���o�G0T�aYX�f6ά+�C��&|p�	3)5Flp�Ay���9�n��/k� -g�l�H��|Z�0+0)!!�d�xX|�������5��oޓ1�a�KV(,�8~����շ��M=�­;��Iy�hG�?�y�����u9�L��"j����0H������i��Yy�Ύ<qcW���ߗ�׏��S����ӄ���C�	J1���!��5�1-P�����'F��� � ��H�f{`
��5[}��@�ڏ�����?�L͚?@��>�L�+������?�;����$h��A�`�9=�����{?��r ��6@'���D��?��W~�53`��>ߗt�Hw��l�p�%=2ّ�:��Ѕji0�,�,Sj�`�	@��N��A�f�H*�:!��ݫc��½���<-?��g5t���x�d�hRڷ�����74(�[�&���:�A�&''̊p���dZ2(��K��j�=1�+D`�����|]�>�ֺ�+Kr���EX	/��S��i�����h�F�I�G�=q���4w�
��˓�2�5�U��������you�j���p	eM�#�ne�H&Y

)5Tte0�5[�a���Z�(P��s3�A�������묩�q���t�m�d��.��΃���v�*�uA�hek�Z�[fп�2�e}��*yqr6D[���jH���
���-_9�ɳ���#��De#j!Wu�~2�Kh������$��9Nh�<�V��W�"Yo�e8�D��[�sY
���ez�;z��b~>^��/����	3�f�PRK��L�'��@�m֣��h�3�4w3��M� .І�

a�VG��2Qӝ�pޖw2�$JB�r��BCv3�}B��%+.�4����i���+o-�ݳL����{M�H4�s�����^�i0r^��L�e�2ˌ�-m7A�젽{x
����A]�dV��������`V����Gy?<M�y�J�� Yljf��+ݞQ*��XW�e:rڮw[��J�>�-z�x2�/�F�LI�;`�\Rjh�Y|	��I6�%�\�< ����d*�U.|tm�i➥ ���/�=�k��aa��v�i���1E0mF_�L�I����3�0y��X�����-�#��]�g�3�� �b��
A��Nvk�|����6�u�GQ���х7���m<p�#��&5�>Y0E��	@H����y1�T���	��&�E8{{r���}�gr~�dz�P�}0��>x�K%| A�g���jb�.�xn�����;d�16���Qߝ�� $����z0b��,Pfyx<S���<
e�z���A��=�D}tJ��ƓrLY�R˯E�	�[�ːD�`�a�Ț��)i�r���r<�O��R6.Q �}�ytp1�� k��64	���O����[���em��g�Y�.HlɊ��?��[��9-]�P�*7Cc�Tv:m��a��̥�Dʕd@�i6 M���$���Y
5�[��Wr�Y^�PB6����S�jp��'3���.@��4��)�⥫T2��F��2���@�1�
3��G�,~	�����>��N-�}]�58�~�{CA`f:3��Wt��T,?���g��:��Rٳ�.��DS�l
r�$O�N�B��>c�[�f˩��eu�P���w�g���Ń�Ϭ
J�j&!�i~��H�����@2`2U ٹ���%J^e9}S0�Ƙ�`g��*�h�@ywwG���-C���~�D�Ul���}4�&5��Р���5�A~Д�17����W$���}���ξ\S5XgD?ϑDI��xp��g~���~9��c��뜃�a��̻*G�����=?�<ټLH�p��3�(�(�SOxj�B��h�"���_o�-���33jHf�?�+��gp���w�߯��_��xeK���NOǼ�H,�����o]e\�*��seRϹ`V�������D�[�u���Qͽ���^��YT&����a9����� �2�0�;fJ��!B��1ȓ�?����}hLhU�*/JT1��ԩ��g�P�����	�z������Al Vz �D�����9��.#:l1%�o~󛊙�� �A�#V���W��b��!��C����3�=|�u|�2'�%�[�emX�*q�m��c�)������F|pafҚ���%`dz�@|h�q֭HS+�W�g�)S!ve�W��8�#$@`�T����{��,��|@���,�J�%\Cb��R�u��)���s��*M�&Z\�@���a���r+06�o&������VW0d��(޵%";��D�X��}m[��5��^�k۾�W�_���`��26�v�� ��f�Imc���߫��l#.��~۲�l#2"�B7
ۧ��zyD*zX�;��n��֖�퍘�k�d��Ʋ8*c#,����+v5$l�Lj����_̺Zcc����"�߻/}�K�5XF�][IY�b�a[=/#;6�6�h���W��K�t�����6�,�#J�N dm�\�t�n����ߣ�.�i�ƺ��bgŎ���3�nkdE�vT�?��=���3���ڵ�o�u��$0Й�����:k.Fv�ȇ$�t���0Y�4&�kLv��a��-$@��r�H��z��29�z���YDV��f��|���/���L�	/�b
@��_�7�1O��ɋ�=!��g���?.����+�)1�ՠAM$@s��Uz�>m
�� #ʔ�3y���
�}��rLQ�累�tI���)&��j�:��=�y!uy��r�S�o�}.�NG�T�VN}}?]��d؛�hQh0���,�u�B@���'�4����a��<�
��H
��}�i��W�ŧu�ͷ��~�
`;�R>��-y��#�������S���*L�_(���Y��j�o����,��dD����.�������� "������p�7�r��b5�L����	TT��L2ރ����!_zY�9��'�\#�{��?��w����QaLc��+���2(���I��k��% 1��蹙ΟI
��K�d�H�PZk���\M�I�WN@T�6�F%z"o��{Y�l�nc�����L��wq�b���z�r�7E�_�[��E�'7���hOvQ�S�ȓG��?{�
�g��Y=�F�
�F�{B�JԏfoǃB��R��3��5��$IFz�\'�����7�k!$!�ÛPz��8ڵ��yɗ�j��H���~�$A�u�ޘD��\(!�A �r
�M�祙�k$�7�-\�T�D���89��A�%;����L�����������t	����w���~���j�Am멂w��a�0���XEC��$�\t��`F��Oo>˲�Q�ȩ�:	TGZ�*�@\jF/��A�Ó�
�>�h����q|F\*�D�
�Ȁ[;��8/�����-%�9a�=�N�E��� #�]�T��̍��3�{H(^ҬsY��)�f���^�L�>>���+���o��t����f 7i��>��(�U2���nG��|%�Z�i�;�-gzB��/5�	�_�JZ�]��.�1ږY�vdĔ��|��Ň�N>͜�#��-z+�
���A�����<��jkdm��#�ܣ�I�b��͌J+M��Î�|g�Tb
�>�i��c4�@�����\�C9��䤿�>���h{ge[����g�������7�v�}��!S_�W^[���Av�\�ysB'�j�I-����
�����L)�֑.�+Q��>C}�O$+��{�lnd�OQ2��/���Jctir��z�([L�RBj�̉�Gj�M2�����$	QF���vpy]$�i
� wR*�1@�A�{�147.���3F��l40V A‹$P��}9����	�)
��N3UR�lj���R��Y���~O�S�ebH�6ȏ>ʁ��uJ��ڻ�}9�J�,�MV�UC�|�,ֹf��!�j�|*��o�[,ݻ@Q�T�s���W����ߜfթ��:8���C�/�`�&�͇��%ƍ�C��4���l�� �c�pc�3�/�_q�g}��Z���ep�I�\�"�a�J������d�� �˯�D����޻U'�":š$s�P_m����$�I��.比T$
/k�%�l_�^$">��J��'yF�a�iF���N���U���?�NP�VI�xz��h<L�$#�
%���� ���`/3
�ʻ�P�1��Q�In��I4��#����x�~T�6��
���T�(x��n��1�`?;���fx�0~����;;]�[[�e�e���I�[���8u���MB�k��oRoBͅYZڽ��6;Л�콇�Լ,"�O���gc���fV�RG�It2�R}m��	�R"
�_����y��D4I[7�+�2f��<�������5/��R���Q�2a���N;xP0؎��9�zZ�,�ӓC�;$9�Ÿ|E����g!��bg !K�=���IT��Q���!��K��)��Lq����*�wQ
��;�9	��<y�D#�<Ho�*ߕ�?��7;��{坴���Ş�E	[r�!�Ȃ.|v��P4��8_�K�.���du�|�}�d\�[D��#W�k�x��K5��|���n���m�޴��#�[rz>�z�E���W�f�~Gˍ�Ie��X�ycCm����굑�lS(��g~\�zg��ʕ�"	��,��'B�@
kߚ{�/&S��g)��X�:n
m�?�B�*�
�c��m�o��vU�֦�u?����tYT�w;�΅� �AI'~J��8�7�#��"�`ğ��o����1ǰ��&L�G�fu0`��~��A6��Nx<��2�Y)n��7�&d~P�C=?n���g����GL�py�����a�jd��|�5dK�F�]q{f�g)͇�HJW�i9c�J�,{#9�j��!�#�gbl�b�$2�YF�`z���e|P���?��5bò@c�!�m,�C6f�F� �p�7�
�.",5�Ål��J����殷>���{a��q�m�D��
�M�#��ɚ��������I���$�mױ.�]��z�AJ�-�v�`H�����R�h�}�zdߗ"��[c�y��q������6��N����hʪS��72)O�}�
%��>j֮34RQ�%du8{��-݌
2*���O�������T73�3?Lڊw��{up��l��)N�c#
��J�F<�9��p�H$a�_��!���3����_�N�iQ����QIYE�@媨��g��}�N��D��:���w$?�eA���3���]�I���A�rM��2DB4��w���H��™�bs�`N���
�H���?�!�S�;�\��6`��NrD~�E��?����59l,��W�ʟ��|'3k��	�p�.MNt@�c�(I��7�˛2��
&������w>�+o�-�#�-��J�N�/���L��A0������=��;G�mK�u9�y�֨��qL�R5��/�RY�dZz��ė&��#L�P�@M/1�l��J�*Z��avJ��B��&d�/��|����a���C~�����J9@�'v3�)l�S?��cA����w���e��G�n�]j�b���7䟿���j;��~���t����|����$8E�sT�A�n��@;i�K(5Uo�N�F��#��4Q��F�	P�I#);�1��_߼���hI1�U���/����ǗC��������QÙ�	\�4mj6�YUS��j�paY�*0	��5ngN#x~��h�����Y�?�c�-��fs]��e�~�F�T�ORev���+X3�=��/���k�L|�Ƒ<��+;� XX���G�9��D�A�m�����f�;7��H���T�xJKh�G�ĆJB���Ox�N����/-�$z�>��n�Z��2D�N�(�*��Bu�o�N)+\3A���[
��s�(xο�	fM���	�z&��ga4d�
�u�έ�Ip��Y]^�z,R	���f�Z�K�0<@ݛP��rm©fiPW��Wj8�L�O����-b��~�;JXD^U�(�1
|�,����������/�[S�qJ�p�>�{#�.��i��8BI�����4)�����v�t��z�S�]������*�s�I���f��O(/4�H�<-����^�v�'>�W�mi�?��Q�
��'�őYw�!���=F����I�3j�.E�R��_����@s��=�%���4���!�7cª{|���T#'UK�l��A�7�,�W�N�����=�ڃ�F�?|H���J���o�	�oև��N��'�3��Մ��#,�r�Py��O�E��^�b�}���e�=��N;�uu�x�х|�!$�	��t,S�1������x�@^�A��Yax~���IF@~,�����}<
 ��K��R#Oi
��%⁘L�`�J��L����H8�x��J��vo�w�
��Jy�DM�=):�scT4���s��M�E���u<k�P}<�DIWf��*�x�/7�ש�7��?,U�G�`�]��lz��3��Œ�SdA*M��w�+��O4R��G��v��nQ����v��c��i�1ɜ��c+z��4b�BٲF����N].F���տd���e7�9ڱ*t��n_#�y�)�c9�lt����c\�X�Iށzs�3��`p	 �����Be��E��ÌT�Mp�O.�ਃ�7p����c�o;`hf�������1�ji;y^�T]���9�:Y#�Xc���	n����͞5?U%]��{�U�����}�l%O`x��0�
�WU�Ʈ��.�U+���J������{�J�1Uְ���~)�|�˚���v]�O����������Rm)J/��n���V�^����j�٥L�{��4�ux�Y�7��*3�e�Vhv��g�G3���lcO@��U�/��u@FP*.�LМA$9�X�nI��O|&�_ԡ��S��$��}�f�-�1j��Thf�U��?��a���1}"�aլ�v����%Ȕ�^W�gf��8g���c�׏n��<X����'�3d^�M	:�~��ym
`/}��8�p�&]oֵ�2�?#� ��Nj*��!pA�W�3}�*�����,����ݖ�L�[�g�L��h��|.��5s8��;����<`gW۝=��;hs�wv5P�d�ɰ����L��}�\�$�L.Q?HF��p�������������'���)%�{�Ñ0��s�e�d��epqy�"4O��ON���Y
�A� �,�@}����ۃ�;�T
�[��,H�|�2�l��4�Yض�u�tbr����Y˚ӿ���O
	*%�ENiH�R$�J�1�Rj�n�������q�3��c�`Ϥ��}e��TM��v��-��\跙q[FZ�L�R�0n��%�(���dm!�/"�$]_xo(�(����e�c 5�g�}6�l9�kН��f�� �A����7�R$�+��x��}�Ʌ�����\�Iv���e��&n���������f?K���W#:�j���B�XP 
J�5u�XL2���Ģ�D��3�(bS̒�wI�
e�*�]�9�J(��8Z K�0\mK�,�ʫ�9�9��X��!��빐ٱ���{�3�|TP��s1O�q�����q�FX���P�������pT��p?����V�1b_�
ٰ���������n�[�be}YÀ#��U¤���5��ۂ�_Gr���M��������&��0;�ηm]!^��u�y��ART�(*l�n�vn{��vf�m!G��[�D�E�n�C6|66�W�k��z�~+�M�����xD
�ڶ�'��>�icgxvV����b}Eh�a��
�y�mu�8����"-�j;�
p���q:�ihOٸ�s�t��ѓ���q�,Ȗ��4A�S)g��ƺ���,~o���l4�
Ӫ+u�� ��u�*aed���9��AѠ�����gRL�-�q3z�*0�:{.��V F8  i����V�����$du$6H!	C�2>8�1i���m�����L毐?݅Q�XhЪ3MX�r�֖EkO�L&��G/�%?�߭��w�nD{(]�a�F�|�)��`���1���ޒ?~����K11���O<%�����1�H>��;r���k�7�'>�=���wn��|,���_�o\A>q��G>���!�ѕ�/��,��~�3G�����E�����i!��vO���k�3f:I���A]>�����G_��x ��?�ǧ�2�Z2J����H&� ��@��G�?��|�ޥ��~�(�?K� R��xm4���?���ͧ���_�������M��O?��������nI�hG�g^��>���(u|��}^����'(�o$[�3(��³� �81�C�^랼�L�ց�Y��w堙�+�zC͂���#�7��7����ͯ}K#�?��s�=��(&������wN�+�/��jV�-�7&3�a��I��47�

k�_������s���;��'?!7P�G��W�._yp)�4a*#85���<	�3��^K�Gs���A9���W_}S~�k�xU3��]��z�(ld�]�~�N)��U79C�ؾ׆KΛ�3�nI��R	�,olmR�@��hJ_,��6蝃=)f��{���Lh:��Qc��Z���{L �̎�y]����p^v�^3����ܡe���*�6��
#���0u�<r��F�|V�Ɲ!�3h�s��}9B����F����~�w..5�X&*�V���B�p�ˑ�G'�,�0O}b�)7���k����t��<��Լ+d
��)S̑Lr���r�׬,��Y�PCm�5�_x�y��Fv%A+��O�r!
�2�
��*	2>�q�ų����'�<d��@'�u5��d����ꗒ��v�i��`B��Dre��24Ӏu��B }�����K�+�����
`��}��E`��p���u4�&�5�9-�	Uz�dАwOK�`����\�0=C9��(C���]=Sz�H���<GR"U`���<���f�P2���=y�O��%;� ����)h�z�f�-)=�� W���Y!7��|�nG����Fצx��{��n��Y��g����/]+�ۉw2O(�Cj� f+�VX"U��֙�o��	�}]v�����[����X�}қ蟊�>��C}�4�矕�n���+�c}�q$�F�o��\�Y)��p����4��RS���YV��a}t����ŀ2^�A�����v�xv�LI	4�>*;�^l����������N�8��},�O���"�rt˩�R*D}��\g�ӹ��Z�����-�Y�s�Θ�������`d}o�<ؕ��Åm���`�t��=��x�DǸw�R2�^0�&�n��`��u~A�"\o:DY9�y�%�3�
�L�����e�:�F�|
}xo'G�r�gD�գ���
t����xV����9KͰ��1ΩO�v9{�2ݝ.@:l���+.�����LZ(�^���4�(@�O��6��)��ЋNΦr��6����ʆ9��X�#)G���}�u��<U�€��L�Ц��Rp.۬�l�|�aĂ�nQfF��K�i�ZG?�	2/�,�-E�9R�0�)ڜh%w���"пD}Q��A�Aղ�d���D�
�>�.'кԌf
xg}fD��'��#�k�	@��Y`�b��Hm��m<s�f)�:��J��;�-������͛��x�і_t��4�|��Ox6��g#S�g�&
�([��S&{xF3�a3o��cۘ%��Q]A��S���mm	b�%�Ks�p�����]����G��}v��0�s^���~Z��Qg����Z����
��h0T�J̌"a��i�z%�Xzm�l:��`�(����x��Ũ�󤓖o�}4H*�X���Kp���	��5�wJ$5�>�sϙ���y@�i/ۙVrj�tR���g��n���|z.l�8�`;8����A,��"3Z�=Af���=��sG2�\��h^�ԍ[zMmt�����I���S��{�03�@8啘���SZ��ot*�f�����V~X��^�l�L����DZT�qk�E�T���|s����YB�ex>9�q7��%��2��۲,9g��K��2� ��<�m}����7l\�	6��29c��L�4ӹ���K�������C�x��c6����^�O��C}RҦ�V��Ҭ�Т��y�_ih涅��PЮ��b��t�!��"�f��d�*XH��|��f�Ckͬ�^j�J/%������$;��3>O��L�/��j���Ȏ��_U��)T�`�'~��e�x�I]��Ӄ1�Aeևedp�a/��A��DI�:�wHp���P���}���,�H89+��(�!Yv��AY@q��R<���<���/��׬������S�~�Ă|�LL37H��}Lv�|<16`z��*e#L�3Cybg!�䵔,�}���,�È
��05���m�fF���$8�S�A�&1�#2&���mrY~
�¡��m�&����{/�A"l�m|Wa�ɖ�M���k��o�����_)q��h佶��@����+�d��[���;�Mɾ���.u�l�2���\]����"�Hc�
i��>l2���K�
j���Ӵ�`1o��k����B�G�`q	��\W)����%�‘5N-�O������86T�Ɏ�N
ʭ�̰��?&�:_��y�� [Ύ����'�4�߲�b��N
�Z���������o���b���:0 )M�*^Bd�3�*^�xK���L�/C�/� �ب��N���8�K"0��#:��s��>(۪Q��k�\��Fυe����h�@���ЉC]#�
��.�s��͈AF��a��d^O������l�w����g~�;�c�5Ju�Q�>����)��_���	�h���w~�g�{_xF~��o�o�oK�ے������s�կ|@�<���&c4��{�S������;q�w~�s��;��|$�}�[��_��˿�㟓o|�
Yb���w1�He�+x؟��;����_&�$?���?*/>���_���>/g���q��������Qf}������$��7~�w��'�0�u`�hK����_�����G����O~V��}�N`b)��/���1x�� �s @�������cD��#y卯�'��)���#/>sW'��_*�_���[��|�G:����_��n����ߗ���|�g>.%�*'9��W�g��O�>�i�E%��>O���g����|���տ#MC�S��q��x)f0ʯ�&��Wm���%H.'{�H�G_�K�?�}�1��+�!����U��_�My��hf����1�H���)��}��g?�r[�y�!����L�]RoF(��W���NfH���yMF�pU�o�n�԰ߋ��k;g��m��?��G�r���-�+��)��	PR�Q����a�1M������@0Av2"���`jF���3��T��ܟx��8�(Ń�.�!.��R���	Y^��O�2��zr�T�`7�ς�����,H�xR��%�S���X��5R����ɥ�Y���-���EUfB��=!,uM-ygX�M��7��|^|��s��=���B�z4Dk�c�L~i9��HT��}��E$��x1vk���TߗA�9h��uAf�ц�LW?�c��D��z��\�4��ww	�2���[�T�I��2��t��0R�	�.���\N�r��#��f
�d�5Sߊ��i����p��������|�{k.I��4Z�-۲%Yvlj�'�B�@w�M�h���i�y ���H���qG�e%�e
���P�J5��3�������o�u�=���ݬ[��������OK��H��Jӎ�\[�~'5�7	EfU�ձ�G�~(�̋B|O��!�:ۤ�)��=���,s�5�jm���q?�,H"q�)��v�e�^��ذ�"�vE�����M]���;����p�v��ј�3pp��z<m��jlq`&�T�wlG������+��'N\ܼ�'��d�@�]��ާ�Y��3��m�^K`��#U/�'�C�t96��`0�l?������h��.��s{�ՙ����=���iM���{�5dS��w�츨�q]�nﰯ����&�0��ú��ɐ.��S}���[@P���{����5'����e�>��d-�F!�B��`��~S@(em^B6��<�71%��;w�^u���m�2uÁ?s��,�]}��#
����
+�����	��<F�4�YѨB�H`�&Y=H`a����B�F���kğy6R3ǣBmB`u�	ND"�H�;j#�G#��[!��Α���,YQ9�{��������v�HZ��\SW��l[�N�뇳��wS�v��L�z�T����孖�Bx��xegb��#㱥z�2�/!�C����U�&�#5�#'������u�ܜ°	��ڏ��hM݄�����Dz��fm;��ڼ��S�}��*<���=
�H.�����=Ƚ��a"/R�v�����Ms=��"��J���e�8~Ȕ;ه�MH�y�}Ǩ��c�����j䁰�3#B�ڂv2dX���� ��P����K�uځH�O~��du�T�8l��dP��4/�TX�N�=d��Mn��WF��(�F���`>��l�)U��\�H���2�C���q�=#�n�QLJ"pzt��0�z`*�|�.2M��OUN�vC�~�_�p�i�	�6�5F됌��o]�t�������A}rZ�!�ڃ0�Ȩ�S��H����v�v|U����:v����}L�Y0tW�S�^4�H��!BXE���^3d��,'2��C��Ⴤ 6ո�T�ok����u����I�j���+�A�r4���,��A6�!z�ud�j�Un���3�(�n(�����˯����7`��٫����^
�����C��|�>�qd�p2�4��/��7���s������L�Cfz��a�B��('�
w��ɣ�C�㶃�Dln�<��l�ìJu���sJu҃�1r��-�{�ɵc��G�?���V���e��TY�m���ؠ��&@fM��j;����آ�8�,��Qs�e�},�e�ȶϢ8�P��f�-ȍ@4��q>�^b��_e!�I�"��B�Lj��I��'V�-��u�Sτ���qZ�"S
��5?w��sU��=�3-2�9�F$��}]w�Z�P�vD�|��3�e�2��<�Y�g������Y��z��	�Lx��@�
_T+���w������OĈ{s@�DtĠR':���AXd���+��U�8�u�̓�9_D,��A�%X��ܞ��A�"4�>EY�f���>�Q���J%��!Ja9n��O~2���.?g�!`qe5�8f�xf�,�O�I~�c�Iy%Iѳ�^��dDzw/�Y��X���̎�[b)���(Lq!�������T��oS
�F�֩�}T
Ы�i�~�&̹�
ޛſ��]F��RWg��g.�c����1h�a�v��|
��_�og��ö�����I�qR����9���V���;��U��@f��/�\b��!��%"�l1�������#{�쨮k���r��3[�Xɤ�\��Y���UI	;�����ɗ�#1�U]�꽢��B�j�E�N�F_��{����R��a��L�
WK�,�Y�Oڄ0ʉ�N���;��~�����{�}�H�,�=�����A�Dv�T;�$ałF#�5�����蘣ٕ�O��@'���K:VL�<zǂ�������H�Q�
�.��I�]t�)ճ��`"� ��� =��V|6�����{
j�$I�j�JI�*�5^�yy�؄����DGZ�'����
��q�ٜ٣���j��+O����Z)��_}Ѿ��>��'�����I�'?�{��_��s������q{��k��5�<b�}����:K��
�
{�[����k��W�K���n��_���/�/{�qVo9�ȍ��ѱ��4�~��Oگ~�k�?��_r���.mi����}��_�rm��������}�W?i��Ή��������/�k�ݴ��K�j�cMtj�����Mo�a����n�)�\ �kq�]��= ˂�|��/�۲�����|����#��d�o����K/�j�IS�ҡ���N���6�������^�����?�G�)��/~��k���6�`�#��}�{�j������s��t��X+�����5��W^x���܋�������K|�����Ɲ{���˗���[���^
���!:chL�?����[;6�XP�H�o�<���]�����;Y���������~����~�]��o�?�+̇��h2�i���Δ��.��[_����G#��ٱ�?0��+ۗvRWB����U���&Zo�Z��<z�6�(E��iS=d0@���#*%�&��rUm	Q�M��97�3�gA ��^n��Y3��{F��/8��%F|�,򹎔=�w�d2������y�xN�W"C�F��utsM$��P�@
�F�	%��y}���:���{$�I0'�%Q�s� �1R�5���t)~s�Qe�
��^B�Ie��ֱ��c{L�s_�����yn"?"�dc��ы�6(������x�y���u��:��$��Y���z��頥
v�K# /W�l�y%���~��i�"��K��!Q���mu�|�;h�G�z<&�?�[��6��X��nH�{�GG}oc�tC��T^/�� &��������u��4s�i�]�}��=���w6�����yl=C߾��q�!�֘���4��C��9�FT��l=OAd��R��ژ}�?tP|zԖ��!O690HW�MT�����nي�-�#'2�5�E1�q���51�m�B&�P;�i񪃖<#�1��?³D�q�B�	 �V�	�y����!_�oҘ��^�" dse,2\������D��D��Ej��|;�z"�:�.��s�l��(?�BdzY_dQǨo���'��.u�;8t8=��'
.�{5zDC�37�cKbA�I?"{!D|l�_�ؖ��0v��m���C@v�A���@��iz&�����u�2��:�W��S�ς�F�Kw0.�KK�Ȉ�%|�%с !�xhN�!�=軇e��9>�������x�e�� ]�Q8�z砯gM&Uˁ�V7��ݹ��-���v����OK�դlخ@��ǯl�h=�q3{�����h�L���L4��Q0��k�k�OD =v�a�E���������J�|A�Nx˝}]/� ��T�;T��<c3/:��H���/ٕ���:��uPf��1�����.�R�)I���.˒#�7������$��U"����d�H�4'&*Bϳ�(�*?��XSm���h�dq���P�!���Cơ���z��cj�s_����qS$��-\&��S�ɔ7��"Kl�뤈{��Q
���ȏ��'�9]�K@J�P�{M�k�uH
2�hG�Cғ��2nH ��yVS��!�B��c���gj����3{����>�#*���=���K���h�x9!��a��Xi����Y�4$[�#ͽ��
'("���3�F����1��D���׊�! 7{��v�i�c{�m��ؿFT+�m���%d2�~��+�]�5���t�p�4 9�S?�̳�js�G�/�sZip�Ѩ/
�gb��Ϫ��u����;�,���s2!����2R�1�j�+ȀLC�ׁ�Z�g[+k^ֺ�'�u��
��/!k��q��U�IT�hg�z� W��u8�~���s"�'��:9&��4�#�ֆK�$�����ٻ�g�x9�E��@D�[.�Q�/����,ʚU�_ ?B�i�B&M���
,�7�;7v��3;�50E2��<�;!�b�l�/#�o� >�k=�VDhl_�L�Hv��HpAZ��4%�Cƾ��r���)�F�sK���\dmP���)V8�7��g���G��օ�@���k��1e|� ����.�%��wN�X�#xPO��1��������Rod$:����(cvG&"%;<<<5�����Cv�;w����>I*,�ߣ���$��������,O�UeU�"-)�3��n"7��zNdD�_*��s֩�@��Չ���
f>�
��<z�a�!ж��~c��}��[O8V��b!�B)�t1a�3�D* l���޷�L��X����b==�\�Q��@�m	���[�X"N��6�I�"�Xͼ���~�*������;���-o{ّ���5a��.�f^����r2h9=
7;/�~�����	%g����q�	��u�S��#�?�V��	�ޅg'��	�_<��gg00˿����<�-�o�|v�2t��<�E#[��b�*`i��m���IUI��̬���X>�R=�S�L���Q�G�i�jG�����D�$�*~�ᩦ�%I��y#����
Q���!, 7x��YxM>,լ�J�>R����]4��L)�c2*O�V��Oǣ����{26 n�A��NDŽ�Q���a�&R��'��ZYY)��NHy�/��E�����t��}b��SA�B�ꫯZ�$���V�w�U��H��g:��`!�׉)���3�<�%�K^Y`K��u4�!�4���JI�=���a��z��'��d���W������/X�u��7����R+�ԣ�	s`K`���o����Z�co<Ϡ�c�y�U���cvDĥ�����~�έv��W��X��W�{�~���.ړO^� ��Y���q
��C�2w���^������$�Yٕ��G���W�<Z~,�M�X�j9D�m�j������_�E{moh�@�G:{��}��k�t~��
[+v�M�#����Y{�`h�c���|��*����>�;� ׳9i�yH�ﶺ�L�cA��	QG�-�
7hDD�f�N0�4���t.#��W_��>H��s/�'�{^7|M�Ln_x�E�����~�˯�'^�vP�_�]�cW���޷��}��W��Iѭo�`�>q՞|�]���/�{�4�un�����~SdЪK�|�ޡ	��ݡ����/P9g��\�͍�������)O�q wBԔ�G{5�c?�=������-����/۞&)�{�4���c�����_��@Φ@�c������E;��]��wY"���_���o������1�4��G��n,�e�cy�sj�t���M�+'�ú���3�tQ��t��d��a"��Mz&��K�d_
��V�5��E�H����ގ\���@h�Yy9 EX�R���C�M 9�H�٨2��a��@�$)��fd�W^y��h�o��2ʰ����ƚ�r�V3L��0�?�"�f��c�!�A4��M���T����a���X�}sP؎@���U{yw�n�٠{qn��:���F������wvs��=�+D�mi�߰W����|2�W�;T�^�ܨ�lm�riY�lgND�N8�1�#�nN��"#s<=�O��,D;Q%�P�����C�/��)`6�vā��Zs)�R����k��
�!�e>Dv��"s2; �"d:.8�ė(7'����e���QJ��X� cS���m�9z&d�Mh��Ш�����͍�_�	펀z��3`/<`���Q"�&��ݵF6��[]�;�6��ל�2����$;03�h@� �tS�T5�݌h�·E�����jG�K�^9p�v�H`:�Ɣ��F��L�^5/���}�'G2!�9�-����j�D2k�զ
f��n�\�ɟy-��j�Ѱ�.���p�]�Q�M��i0���p�nM$��屽�20�H\�o�'Pm��A�#՟ۃ�u��:/��º^}-?0Ō�92)��1�M@�#۝���!'#`�-��k����t�Sy �b�l�����2�ñM�$�U�{�a2�n�)*�O�:�{t�.��.�U����`l��+.g6 ����,��&�,|Km,0)�Ȱ �z�׶��kw�<�Ս�
��N.@�p���ٮw�q���x{uE��I��n�>g���X`6޷k�V칯�Z~���B㜮��}�<#��ޱk����D�.Lz�H�ߐ���׫�����a��o�U?D���cWΩ�/���=�嶳�u��y�?
p�C���%��+Wm��(�^��{l��}���v�R�S� 9����,\�f��L��"-�DG��/ڶ�̎�[�+B0M�?���`3/c�
�7
D`�Q5�������>�X�'6e$jy�u}|7�&3��u�{3��c,V�,HZ&��THE��L�;H	y�~E�y�ޱ1�!8u�2ܧy�j"N���=�Ds������7�ItA`�@u Z�~��>Ȁ1f�*�)c`]ˡ�}=dSs��D�T���"�������S{u(�|G��j̹�r���yȼ!��v�#0�$�G�~+�U./��,<O��
�q���}�z�EL�x�t��"Wx���V�8�#åss�<_In��@)(�Y����E�TDI�T.�gQ C!x�ɳ�3z ��zU��,C��~mm=ȷ�o�`e۽�C'9�m��0v?���Y�Ph'=�B�<Nd��T���Wt}ȑ��ݶM�HL޿��0ْ�@ dxm�
��>-u�s�
í{w�L�$^�pdea��#�ȯU�Sj>)��"�s�>�ǽ���Yxk�3'e��
�;�0g�������\��#�Q���Ɇ�ϡ"]�߼�
��{�Cy}b�s�e�:"3�p..U��Ə�d�
���Y�E+���Ճ<W�٢?�h��	���>"���-�&)kDR=d�4O�K�O$�)x\��$l��e;mYz��k]&~����M�#y�Ȏ4�I�ŵ��:��)#�yƇ�G��CB~�g	K@9��#�����ˤ8��/�g��;�ϣ��Q�{����#)��L�\
	T�a���D9+�q��� x����U��"��v�a�����j!`D�+Z���D�a�{�KX���?��S.���A o�p_Z 1
�5�3����2�q��-W^� G�%��=�;�`ER���e	�CҊu�q�c��1�c�~��d=0I�A�)#��8�Db,z�,�*UmNa��u���3p����|1��JS=$�d�,�Ne�� Abv6bpJs˖ȍ� ��
;�13�������|Ȇ�K���޸��/�mOeB�u���/_xvF���Gڇ=�A-� ���O;!>�ײx=�����SUr�l�"�Z+�@@�1�䔜U���U�v��b�h�H"8���%V5��>G��O�n4-�4C>�%2�~�*C̶U֗�6�+K��4�lɑ��|&
1� �%ɘ�?��e";؈W�ǹ��B�$C򤡘<;b�N&G;��3�:.y�HL>,>�Վ�B�fN�%
�T!?XxUg�\�B����{L��=�s"9RvGe��>�h��:�4��Bf�"m��X&;��f�dt@t�l_�Y�/��E[�L�z��Cm�U���?��(���l.`Q�=��WEt\����}�e���_����y
�s
ds��D�����e�x������
�ihh�q���Dލ'� W�,��g ��:�h¿b;�_츱��6��I�D���:��z>i6�T���k�溧���2��@���ʺ&.C��@������ջ_��J�����n�{o0�>ׯ�Ǽh�D:�@k�	�l��:��u��tu>xm���F�v�+���;�3;":��s���5�Ehb���9�Fе���mۭ��0?��*��|�;m

f�~��x�c�����*���׵K���_�">)��W���U=�jݑn�؞��-���f���?����-���_��^�o�vϵ��l$��d��'�X@�g?���11̉���oO�T\ӽ#��ӟ{�Y׎��k��ӿc������w�+"��p\���_�����[��6���ڭ2Hpo["�|�f�PJ�ԗ��԰���\^���T�e��Dlx*�1�O���1�l"jp4s�]�f��7G^e������YH��^Ntd�$JX枑A���Q>�(�]��`�{��lr0�Mƒ���{�F�-2x�¤إ0�����R
w�>�s�:"�ss�rv���I�-�t�gyֲ�����s��.b�	�: ������u�i��!�O�u4�?l��u	�����j5���������~�gz`f~0�1��8�r5����GY��Qh1�,�d��pe<)$���a�J�����8PS����7`��m����ܦ��=��Y��O�H�
DE��{����Ȟ���G�3+nax+0���xݟߚ��l>�P�	����wr$������Y���9	�)�tW�ʍYi��S[_mi���=;���gtl���̣P�T��	�
��h�p�{0�Od.�=D��Bz��I�Q���5�,���V�LE"�������2_��0��x�|׹�1�]ro����{s��-���k�b_ub;4�}b�p96��o�0.o�=�X8^��8���H��ڽ�"��R;5�ku�.~4eH},C==:&�d��1�	1�-�ڥ�\�u��F[��3͙���/��}�l�MbY��T���uQdǍ�7w���!b�Ӏ�{vf���]�ɚ�7V>?�8���I{"��FS;<ٕ�-?�A���jA�
0�3d^��qw8sB{����#�!2�2��8�D&��y�����E�pSϾ妮3}�677A��$ަ���fK ��5��Ӛ�y�'�(z]}i3�G���g������D��١�����xǮ];1G�E��F�����I���p{n�x�S�?+�����أӻݺ��y
�V{�8F�Ǿt]㈃B�H�ǛN���"mE�4��Z�مuL�g"g���*'x��v$rcm�n�*�+-�S��('�G�m�2�Q�T�{֟�g�Z�T��پ�1D�;���
��i$�>�H�D�1�-[�]jyf����62m3�q%�&�����E�I��`8f�������ҥ�4���}nx�"�N���k�f��ra�X��_�U��&�J!Ž<�,ym�L�Y2u��ζ���{+�d�<b=�U������'rK$��!ّ,Edt��z!�1A_��Z���kܴ��v��,/Q�H���Vj\1���y'L�#�Wd��n���@�\۔��V䱝i憦ƃ����߯z ��HAHp'5@A>���������fp��'tkC;��3:k���cM�RE�
DQ�H��A�Z��+f�[�`���o�K�?)�(0M��V6�S�X�L�w��v"��3d0� �V���/R_���.��k�>�-D���B{OF��ڎ#9d�048	��������v*�}�ǔ�N:1D����j7�H�F/�z��q�u}m˿��Q�tӢL�[���ˡ�����.�6ĸ<���P����:sN�I$D�H�q}��/��H;��-7x��3D��j�v��o��k-�<���LF^~�C�Q�[�aYo���pFF�y'm)tW.^�N�PE(G�tp?�Z���b�c�J>i,�hJ�y���D@��*���i��N�������v�3���$������7 ZX�m�N�6݀���>IU�[-���ၴUY>(;�-�Z���2>"���p$�%����b"ew�x^%���d�gm���a�;�^9f1_���y�5
��n�`1�� W�'?�G}�I��U]�+K"[*��V���YR��>a^q���?��y25G���$��U)����Ar��̳=�Q;K
&N�Uf�``]�r)(9ev@bH͹=�#@:����~�K��߃UBr@|�O��"���D��w��j�<.�!�>IJ:v��/+�,�S�X�9e},��)��\�K�3�{pYL޲%��t|;!�$�������z�g������gg��dK�*�<�����	e�뚋T�M'm;��>˳31Ky��:�rU_��WoPܶX";��;&c��tN��%�ŽL��r��j�E�t*�U���[��Y���U���~�˲�Գ�l<��b��=K
Q��K�,�/�i��_b�i���F1�#,��MH��RCZm4!7`��Tev��(iuʗ�:1�|��HfO�VI���1E#�ł�U�R��RMAd�3ļ����̒��1��}U�1c��#�he����&�#-d}�G�������Fc�����}��L�3�<���[��`�(S��xSO��Q"Qr;c9U��I}��Z|�\���T��iX����l������yގ5������i�lMpRO��i

\�\�ڿ�G~�~���S���?����}�-�\��.�n��u9�h6s�9�Z���>F��@d&L|�D��vh`����ՂM��>���0x0���4�	�Q��Sױ�����5&S������S�s�������I�
����Mr
��D��<0
�兗��F�=M��|��5�p=�K����Ƕfc{듏884�������E�'B�J�&�k�."��h�.�S�o��A��&*kL�Tl塾;�|t�I�&K�����K��_��ݼq�3s��T�R�� r�S�������>~�����~�������_��.jR-�6/����CȎ	����v4���o�c���/��׿d���ٟ��վ��mc�km|B0�t^��7��x*��;z�+�vt#��mD��J4~6t�=ɶ�1�.�?!˒>¢|.�>�,u'X���V��+/�d�1��#�g=�}7_�n�vm"`L��V�$��N��EG�!5���t����'�,EƺF{n��3^K��(�����H`�>-K��~�O�[e87&���}�ɯ��xh{���_�W_�a{�T��\��z���ʵ����JG� {Z��x*�����5��&u��:弄٬7ƶZ��5�GV�"K��S�w�ܪm��i{�Y �Q^ޙڷ]��s/�{.��|/s`�IyO�ͅ^��P��0INQbeY���=v>��=���\lڕ�ȶV.��WI���ɹO��5jvIj�[�!ˠ(8�#����=q�H`�Rչw=���p�6~G������|`��v&�bcu�Y0�v֭gA�;����"'tVXe,�	�.�k�2{z";#!�Q�S'�����xv@�ģ�K5��{��'"�.�2sy-A{4�,L�oG.���"���еu�[ݶ��$�>o������3��F ӆ"����k��U>G��}�&҆5�D}���^�?�Ǯt����H@V##�A�Smd��,y��Ψ�5��٣r�Q���Ͷ{�� 镧�	�~f�vPJϺ�-�P'�����d8R�{"Z*��>m�ѷ��G��{?��	N`�c�`j
���sD�k]���l>ڶ�]��N"����
ܵ��l{��V�ms����=�U�ۣpu��I|RQW�����1�cj�؎`�ծʆK��g�n�lE�T��`��"���dar�)|]}�G��^x��*���k��nNq�!�B��h���!S��i�t���Խe�]ڴ�,�(��F���n�띁��̾vkh_y���ᡈ���z���l�hhw�>��s��~��������s�p^`W��L�UI55;LJ �0S�֛��3@6bQ�~�WD�t�@�K"9��H�*t��D��m�N��l��u��Y�=����:Jw�^?���-���Х�����Sߟdw�	�ZD)�}�>(?E� 7�7�:`x���ݗ#s%��z�c��K�M�u��F{�Q��=�d�W�=^������)��‘Yq��!��15'> �����N&)�E�E��U�RV
�����E ;^VD�������[���s�i�;N��0x�4��nB������ҫ"�"���vsw�=5���`h�Q���@ի�}�
����^��,f��H�M�����z�K�y��G�C�R��8��=�#/vQzt�d^��c=���X�M:���vq�IJHx$�"�"3tj�:�����4����3�h%cvcsKϻ��2�(�+9D�so(C<kV��p\�8����=�>:���ЎԏBf��F��,e�>�N��:�[����y�…�s���½j�A���ķ�|pCʪ*��=K���ιzo�
	&�<R<+J�/�\�Gɦ@@h���y�	�(N4Z��`�h�2�R��7�K2w�t-{��/_���³�s'�v2'���/a�N�Z[���8���,�5Rl)ta�g��$���ˡ����Ǭ���Ў�G��Df�{V}��+DI�Ҩ^k�J���c�� K�{@y�cW����؉�tN<�w]�4[�����,��>%�{Hc���t=�e5a�m>�����+���
�!uEP)����D��������q�9�󾊇�����$Ō�;�����g�Q&9,�7 D�l��^�x��xx��������'m�k
���U�$��.ɬ�@l��
~O�V�� C��z]��?TM8��YFڞ�ՠap����/�&�#)���e��g��Xh>�\=h:�e���,^)�Iy�� =x��?�x��Xxd�Y	0O�^G�ʖ��ű�����>���J����E��Ov"��p�*n\�����DdY%�^�_������}���\>�ʅfgݴ�^>�*�R.��g�s־OvwZ�k阩P��7–f�Ձ^:��z�Yy����l�U���:�##���?U��#��KQՊ��(����\Vu벥�d��z4(dQ�
[m,bfǂ<�s��I�h1�,�'.b�Y��ԕgj$�Hhd��5�g6,b�s��Y�b��^������,}��{�W!�M'A��=�C�,�_��JLb�!9��w��D�����{:緿����	�X��㱼~�}�*�N'�X"�*�=���%�q:J"2:k:f<>R6��ǃȆ�BV��呾�5eqDy+"#�H��u�����y,+�Y�9exx}Bד��"a.�[(���R�K��H��ݠ�*Pc{wb_�{h��/��}M@���G�۾�bK`߱F�S{�������[��x��|�������G?o��\ӿ
P��a:k�~;1�١G6β�ab+��֙YkFX2`��2.���.�Ȃ��@GRf
�A�:u ]�@[i"c���Զ��h��#��گ��쫯���g
�y.��?��������_���Z'��e���o|]`�-wM���=�{�8�|I"�Z�_]Y�ۻ4�/�&ٿ�	,�NQ�	���uM*�Mꚬ���ˆ�mM���迩@���o9x|�����w����ߴ�?�+��?�s�>����k����1)��zǹ�i����w������;��ߵ_y�y�$����я|��kB���@�:@�E'�Ĭ��2h<�jⵝ��&Fw�]!�#�񐦈�]�ƞ&K�����57�= �W��~�sEϝ3�1�F½[K�d�c�x�B�By��xH	��N1�g��-
��V�	�q�y�A��@���۟�W~��O�^�«��Ͽl�=M�1��m<�=�L�V�h��3�9xM�[uh�	�YFof!+�\� w���r�A(�ܸ"�0���E��pi���iL�*�ŕ�<���H��<Rq&�f�sl�~�ݹs`�̎�M۫*�e0P��k�쑋,�Ѯ*���Y�="���r�O�u)�@�%J�C�)�����_��Aa_V3��+�3{cOe	����G"?�O\�w>���ٽ��Xo͞]�ٖ@�UHׂQ8RbMYT�c�<�0a!�����^��_����*�-�ʉ]=��c`��ȷ���4����u����Dw�}0`F"eUM�{�P3��mkf�Wk"U2\��6��l���Aj?_�[�+7X�K�C�%�W�Z��;)�7�5{�(δ�Bm�@gM���b@nh��Ν�B�Av��f|2(*#�m��:&�\��}]�]��_�=�=�wGӱ\���� ��j҄�L�`�^S�p��؀mԉ�˳���Q��Tƽ���
$��|��J�7_u�h05uI"?j��vda=y�.�aº��M�Z%;+�u��v���$�]�#���e]�J�=�hpTo�W��6'�ں�H��13w}p�'Y��9�}�S*u
��_����.#5�^��Z{bo�xl?�]��#7�j�Pu%���;�M���@�ș�����Cc0.���'���wD��\��s�����������%�T�!�972>��Y��{�K�:�e�Yw���e�oÝ8�X����
�R]�-:Py�#M��^ �-y��Ux�H�,�dX<�u���Ċ�z'�#s��P=v"i4 ����O�
��u�t:>�s_i;������S}�6���3��<=�E��.��e�9@:�f�]��n�f�]�i/��z;H���t�D~k�vG�!����{�]
��7�E�<���q���G.���um���Ts��͎�6�v����uB�R�u�_�s�{v���8��=e_�G�_���gկ|]e�ɾ���ѹ��<�]"��.�"̊�u��n��G6�����yڴ‚"�wӘ;)�Y!�����3sy&o��@��5�|"X�f2:������F E��Ѡ{qtطb���^G�!��AH7%�/����4d
 �7��|�|���H
k��v��w����tA�x�
�z�������.S0̜`E�{��|G��c����b]��G[�
�)�:���}{߿w�R����~_#�'JHEu[!*��2�d���k�z�ǑH"*
�M��6m��� ����c�}$i<��&e��N�E$�pF't�k���m��u��_<�5��@<�;�����_�VW|>����<�c�&�Z%;�{����(!�p	:�3s0?d��=+���y�v{"��j�e͵�GA�BY��!)@$��=���ѧb��B�y�y^�x�¾��c����]�U�A#)?��&���2ʝ!CzqmÞ~�q�P#�#�Ӆ<�v���6xߙF4w�1eY.|"|o߻g75�er�R��r�,y̒k��9����2pQ�����1_l&�&�� G�n��h��D6�mS��"�i��?g�[N^����j��T��$��.ꙭ�h����ϭJj� ܓ"��{dD� ��Y������1�����w��L��qh/���������:H�V����>d��\��5��%�����U՗��	�W��6UNB=a�E�L}�}��wFZ��k�g];�$��cș�F�c�
fT�'���9��5�o�8��F�V�ERvX�s�=��V��H~di>'�W_}5K�B�i�5d�{Ւ'+��ɷ5������Cd��@Yڞ����>�,����c�a�Z�B	��ѧvA6W[`j|��0~��Z��Jr�`s`h�K���꒤�!9�v��([左���.��]V�0�V%21����G�$$F�w9����-�gE�&��H�ڎ��"#�g�X_`�v*Lo��)�w��`�J�H�γJ�{Q}]l�kI#	�>#x�aX�Xr�P��C�ri�ga�⥊��3��W.+��%*i��
�o¨To��wg}��(U���E�u.���8����.���k�A�ڶr>�G�,��kK�Rv���EC�J��⻥}%Y�,���,'=CVK�T��UY����b��"y���(�����蔱A*�v�2䩂Bv轧��43�E�������c��aF�{��`wC�^SÛ>W�H��h��~ 7�x>�-��E����Q�)
01౓p�ާ�Jv��)A�@v cE'��"�A�����/~�޹A�T#:XRg�X|:<u�Y��4�x��GK����t��^���w�|�hPz'�컑�R��=K�ó#�w��=��4ӤǙ",x�\�:�j��J&�1㣌i���u�
x�q�8����,U���Xʥ(>�'|b�;�gt��QN��\k[!P��{;������S����a�������k˿�7أ��{�����Ż���	p/�㺰.�c'~�(�ŨC�0�\�.�k$�������'��G�E��2DoQ�<"ɯ[eY ����:���?�Q{����c��	�;�x���aV�Y��ì���'M�;�ʻ����~�~�'�6��o�����o��u�l8=��V���b���+�f�K�
�y۶Z]��!s�ix�2�h4��>a%��ə���W�a~�[��w}��I�v�̓�`��k�4��$7��ix4kcR���P@,H�J���;�`��~���~ul��[vM����K!��j�<��K�&��	<tr2��t�v���V���7ڗ_{�vF $�w�M����~����� ����#���@��,5��-
�������H��r�<�֕t�JW�-����*W��=����JZ�C$�Z"Ά��7^R��f՟Bd��n
na{@S��p�F�)��
��U.?^��2NX�N;��̍���������G��$5䤂��T�%���Ih���{�/໾ڵ'{�.]���"�_~I������G���;���Q0�����A}���O�1x\A<߉��#���pmD�x\�\����9�'/��h���m0�۬1�'D8��g.�Ȁp���ze�g�u���/�Y_��y}�0�.Q½s��١@��d�����D�=-��c�&�6O@!���j��T?���h� ���dޖ��#��6��ՇmcU�ڬt���ʂ<�T񑈐�A���JG�j>�ܵ�.Q�[�qZ�~�:��w���i��`mC�H.��G��v��So��Վ/Q#�5��]��=�&���ri��+�l!}0�F�%d,d�Ps2���U��d�-t�{hԼNLT�ƺ��E���9SYY�MG��H��h�qC��1�DG
E4#�V� �V�qU���s�w����AE�c~N��!�BG���@4ȃ��}��&D|�@멭�:ԅ8��>k�cLJS@z�~
��z�Uw��k�^z�k�3c΀h��N����v����������̕7�t����HhQ^�:��3��Y ��o.���%�߲*�!ۣ�"+dU�9��z�m["%6�a���t̓�7�2�r�A���C"~�yޱ��FD�L����,D5#��i�N��5�h*�,G�Q$�H�`��s/=kd���X�������`(��ޡ�%2J��;7�]�(�d� ���	J'&���+ڪ?�7Ӻ����+����guN�ND�Lu��D"����u��������i�i�z�kkm=����������7��֊����ʍ��N�n�W{�~��E���O�(�U�1���l��*�h�;�g~p8�G߲[7��o���j���Ѳ#;Wܷ�yG�Φidx�Q����`��S�{��ĉ
l�܉��?���>�/kn�L�]�	�m���jO�4.���M���3��3�>�·c�`myJ&u�N��pz�I1�
E����`ĸiƑ*�2�|P���)��~d��!��F��M��3�'d��]����3|p:.ų'f}�crx%�@��X�c����ð�-�w�q��~Mm�g�M�.oT�w�5��`�1g�z[����LMՏu�ۮn�W;7����1��F���^ɟmlS�e�gM�q�����Hb龮��z���r�@
�Q�yI;]�o�1�l�7Ym$��ߚ�����鴱�/jE�"q�u���Z�̟�%��*k��'d���Zku=P�?o;j��D@�uJ��)�A���H�[��H��K^p���T����bG������=�������m��Rf���+�I�F̘;9�&��u;:�|�c|ø")�l���G.�>W��c�³1��y`R���H��#¼�=PMz�8N#�R��e<#��`��d!��܉Z4ֆL�q��2���!��Y����#C��ڵs�y�	�����Z���_»� ?Ty�N5����r��+�+�%X��/W|;����k�GC���d�#������呈�DT3s�2H�6��y�� R�WZ��UZ��eU��D��&yB��'�m�e��t5o7}�hQz�q�����b�TfV\"of
��^����Z!�Jǜ�^U[܄�5���>��ci��@�Dp�PV�l��U—��	���NR�1	���_!�sI���LU4;�m�J��w���H�.�B"��
�%�fU������M��� ���d����z���;ް�*�?,����˿��(��w,S����g�'�u0<0.��d�+�V0�Ț���\��E 8xkSKc�8�^�\��p<�>��Iy�������(��"G�����R��牬H�'�����3T�D��1N�^T�@'���~��8�,Iv~��V%��>�ge�����\9�Y8���LL=�}`��DP�ͳe\-[��:�er��_�=d�_췾|��n�'�;�f�;���E/_�Y�e������U�b��Se�خ<긥�y�MNo"�p�0/;��UR��p�U��#s[�`��w�����*��dq\�ؐ,ﳌ���r���D
U�4� ;b���t�F�}W:H
5~$
�p�I��8e}��%��w4�?��?�C�D�B�	���)es�Ɯ4ɴȫ�͵M�Ɵt��"5����H���Az����O&StDt�|϶�3�=�!9D�<��I�> 88od���yOG��W�'���-YFSp?_:_��A�Ȏ�aX"8R�B�D��
��VIF,�Z��y2Pg ��V��� �{���
��g" 9X"!�9��X}Ȧ
rf�O����z�Y�,��䚉T�ac��'~�w�o~���w��>�mo��i�������G�m����w���y��q{��eL��"/�X!���.��~ga��2�ΈZ�(Yv(�1�G�<Rq�h����,�����2�3ǗG���L�D�G?�����}�?l$_$]�ٶ����﷝���DU��1q�e��'~������M��w��~��7��ޥ�Vj���}�M���O�/~�3:@���IN���I+��Ѵ�m�#)郹+k�����W�/ݱ�<u�ş��zn�����M���mw������a�n�
�M�o˺�%#��?��|����N��~�^��+v��	>����_6��!�.31����@�9}Ȟ�I�l�*��n�ݷ_�ا���~�G(}��[��>�n�g�|�U{��=CLd��'Y�e/�{1L,��@V%>��I����D~ ���Z�,q7��"ee����H��c�7�x�Q�=;>8�Z�)���n�H�p��y�``r��D��(�Hx�IY��QةʜrU���d��If'7"R�m�D�VD'�B'���_��n�]�c��z�}��v�b��j��c�h���H���D�a��ȝ��i��r�r
)Y���X�6&��.ㆷ���څ^�U�?yc`�B��}��Ȼ"쎎�Z7d��捻��7\����^����6a�u{��%�3��H>1
ƪ*�ԩ;� 8��㹃,��<�����H{�QܵV�q�܄�yf�g"����,��2�G�9�Rk鸭XN��+�I��5�G��a?HĠ?�>sef_���QQw���1�G5'�/��T$�fOm��A@[dI�R��Y$`O'��3 ��U׽}4���=�>o���
���l�=Dr7����"Qϋ�@c<
�D+�<<d��T�zݶg�A�q����7V�Ts,鬨�}@�ĸ�h�z�ob����Z�����;c�.��%S[|Ae�/c�\�2)`R��@9�ӱ����f�3a&��ct?Љ���g�}�z?������e�
�!�7������6��h�zn�]�о �t��$�V���������N�@=�>Ȉ��.�����Mӑ}}[m�Κ��5���Fvt|�m<^8MȄ1�j�U݃��նȞa�k�	ea�o}����UC
I6d�����ߠo�b�v9mJ���%o�EP*sR�s�t�H�yM�A���@�+����:��|<T��|����}%鯭��3��Im�u���GC8�����M��������\�{����{<w�.��x0�r	��\��PD����|��

o��$�is2���jn�N���Y޼�6p��ј8��w( w0�\��GE:D�4\�rc��'�?t��#]{]�eWu��^_�����
�m�jl����C������Y�
��i�U�.Cz<�j���e�b�Z�U 3�~�L>P�,�,_0s��z�0��3��s����"�Ȑ��f)*�4(���:#7����,��.���3��.g�����Z�Al��k�d��n��>V]��Dyl5�2C<��*$��;w��s�W��F�H�BF��0dy���L]���+Yc�V�mo�6aG�"2}�`W�ѡ]�rY��s�=Z�k̟!`�վ�[����9c�2��z�pO:"�u�{�N��ŵ��a�[*��_�w�<
���YL>.m1���n�eD��1� �D�(�=�َt������s��<[���Im��ϊiȾ�C�NO}?E���d���H~i2g�_z��Y����@"Lb6�L��
�G�O#ø$Yf�b�4��lU �q����F�=WRƻ�� 1� _`�$�"u�W���;�s��"F,�1c�Ni��J�ЮA*�8��[�i쳲�J�o�g���)ã�m~��#��׿�
�u���I��|����/e|�]J~�I����y�j��Қ��ޮ��._�!%��n&���qp�2q�4���i� 0��WԶY�g"8��V�oDo2H4�TD�S��%϶	Y�+zF����R'�x4�kU/Ɖ����"��KǶ��vjL��zMRSg�f~}ɬ>>s'[�6웺�>oe{�|�y��]b=�Oߥl$�M�ϋ+A�-�װM�!`�zH��
�/[kk�0�g�H�����[~xxXV�K��|��U"9b@�x�O�I�'�#n��!4�&0��s��T(�\��aIJ&^	��<��dgD|ƒ��J$12��>����w���M�}�t@v�s��>ɤG�W'=�����q�S���9���G
p�2����e
p1$�����;�`6�OD�r��$	�hV�|(��0>0���[~��΅�9����S�3�/��sT^��J�7lW�;�W��Q��H�i�pH������(܀I�YUS���e��e��/�e��ci��^���ݱ (�����K�_\c��Ȗ�٩繴����0����u����_�3N���N}W�yՃWO�ץ�yݓ����}�^��Y�M�Q�\������h��U��s��D:x��mQ!N��h���΢�V�C��,(��uU���ϸ�TYӹ��k�`���N�~q�؎F�"[��S�V��S�!�T6���L��+�I��H�h� ���}����Ac�o�H
3���2;؎{@#N�
�g~w֛F_�{�'��+++~�tά�^5��Ԁe��O�,|O��5A���R#���o|S�Ѣå��Yn��R*�d-F�}d糔ɡ%i�
O%=3�]-e�`���C�#�`:��{9�	:)�Ӻ�E����5�ES1䪈�sYl�0h�5Fyx�q����e�A gJ�|��ڙ=
������u��wi�s����i�c�՞~��]��e�w}�m�9���s�}��^{õk��?��78�����~ݾ���>8��

�ԅ&�Y�g�j��u�c�[dX���Շ�͂��v�S}W:�O���<F��ԣ������y�.����m2�hw���^y�������_�����aJ>������?���=�����~�{�֊}�[�q��:�xM�n�����g�>�y�/P)Cڧ����UƵE�D��5ŴC�>���4�m�
�?�����+��g��?�#���>�U���W�*���J���gW�?�~���քs��b����~�j�"���"?���g�=���dXҳ*}v������&�����/��}�74�l�~���|��^ׁw��~�+����XO� �Z�h���9�L$�X*�4���=�2]-��������f��H�a��bTR!K��$�$�Z�n
&�qMJ��^ܲG�zT�|���fM�`4��2�D ����Gᯡ6��;�]�����J�k�苗��	~��"ET��;���(�܆�f�Bv��(X3%���7<���x䦗M�}�'��Y!��w�ّ&�Ǯ�?V;1@C����>�Qs�u�D,b�2KJ�b	P;�<�����\åt޴n&�в����R���*�νC�-d����@m��H�����k��-��ky�Ş@�툅��4�WQ^#�]��p����bb/�Ll��\�p�&��	��,�~�G�nm4��(�A1���$�ٽ݉��o&�
����c^�0�M7D,�R����Lmc�
���Q��o��_W������݁�U=�sm2#
[���Lm
@��w3��P�<�� ��D��o�Д�䘉fnDO�$�d�S}{7�/�t�������h蒅�fX(��\։�{D.Y�z�]^/߃-�l��&�h�9�������ܩ[����Ϥ�^��>L�ͱ>d�\�ͣ�s�'vI���u�WM�D����ͦ���{�p^�@���j� l��ך�1��m�o�I��j����#�3�3D&_�7Ryhx]�_���Z�A>���m�g�jڷ=Ҳ��O���ܟ�m�{��v���3x(׉�.C�q��D��ι�б�q8�n9��?�y�j��Sh@���΂�`Ǩ�D�CXճ�7ӣ�̉"|MX�Xv�j�%C�³��UN'N L��#'D{8�R��}F�Y4�-C$���s;ͼ��݁���':\�_؎@�V�p)�Nkj���gt�7����Q�Ί��U���?��r@Q�Q��U�:�ݩG7��b0�H�J/f=5	���o�s�ȔQ=�s�v�
�� ��zo�:p2�e<s���{�E�u7l,���r&�r[B�M����"mg"z�3�%T���"צ!�ϵA��LL�*��X�ء1���vX>+��-7e�K҉x</27�X�L,'�,��X���ܓ�~E��@2p��6�Q̧.Y��wܣ�(��		O��e(��bs2rB/�y��;AN,���x
�,��?$���%�]ڣ���� s���d<�4�;���5DB�q��9Ώ4ߡ?�Ha~��r:�/]a�,�T}�:M[�`�d�8�7	����$e�=�H
>"%x��V;.�Ui"�����Z'��e�&j���v[��@�^ =A
�ߠ�䔏t��&�A"n`M=��l7���<��v�v��Ki��W(�'h�,~]��H��gH���I0>�Y��ܻ�c�u� t>ASm��rX�	�F���h���0�:�PzFk��(bxq�d.Yc���L�}���S�̥gq�۲H�mگ�랫�B�kE��Z���a�E���Yʼn�de��px��.�"E5^�x��{��Y�>#��-A�ZL��l9�'ȭ��#�cM�b����(�W���u"��ƹb=>O��IO^Σ�O�hH���6D͑�͆��5��w�]o8CV�E��d��x3��x�u%�É#u�A�!I��OyB���V%#RH����Ȟt_�~�Z�I��?K���
�óL�L��s2V��sWs�U=6Ϟ�׉$$gB�GՁK��aI�GwS�S$���	l�,߃+��U*`jU�;)O������3��z&��#�P�@�}�dFR��=뼦��D\�*t
y�N>��<�3<\֊�L(�I�#�/I`��$^Y�X�)�k)
`I�*d@&�E+l�I
V����J��e�>���y�+ׇD��1�e�l|�WY��/�1=�$)��<b03�F�����@~1��q¨4��2)���1�1+�����V��g�|�B�TI�j0x��)мz��𾪼e�����+�������{;M�d�:��*N_%ǭ`���ɪXs���L�O������V��-�����a;J�n^����<���"@*��a��ET�KtV���W-hc��z�Gz��f�Y���{�r�6�k��$I�K�%eҕ�n�D�d�.eyTȋ�O�!)�AydI]��%��ƅui�06�d�T('M�>1�|GF���_:6
]2:JYi�Dt��
am�/5ζ�$�%�Cz�L��;dFZh��h�-5|��`�S��~�|�>�����#�ԧ>U�Ȁa�����5�J}L�U"
��jFFU�*�D�l���UғLړ��eҡ$�-�)�o�BTC��J~,)���ј�U�;�_�IM�[">u��K2+c������E����?�g43����X`�E�9�3�Z��K�M��W���O?e�&۟����=�j��� mU�w<��]������p�5{���5I����}��֦�ݛ�'��;�������ɣ)?����8��o�޸^��#���_S��؇��d�6��h���l8���v��/reP���g�4�CO���ش;��ԗ�a��{�S��M�^�����do9����u{ߛޠ�`i�����o~���۫/�l�?���޼'P��7l��~���.���x�ÿ�7l?kY_`�T�=�>@Su"�fGv~�noT�~��Oڦ&SM�oܼm��ůڭ���XM5QX-ve%��x׳N������T��\�ק���w���@��}Z�#ղ�qY�vvd�y߾��7�{���i��?�������l(p�G��Y�,xugd���uC�%�C�Kk8�7\}������K�
G���}�^�q�nj�z,"jM@�P��L�vٷ���q��ڲ�Aa���-�L7A'=�H�9���IK��&k�|�	{ϳo�����Ⱦ����f�E�ƍ�fc��Р�-p���}��We7�aw��<.Z����Es67Q]��%;�S=ʩ1��ʩ���'虭φ�>��3*�WW:v���AM񁨛�L�<��Ir���2<����rJ���|2P��sշLde"CB����������&�L�f��>�dpi�àXe����޷������9�۷-":2�ݹo{7�m}u�A��wﻜѮ�{H�2F�ݓ%T�<���G�6^!%�d�\|<��z5����ٵ��TY�»�k�:|�!�8�rޮ5s��B�ؼ"�I����gi\�po��/}��=s�/�l�9��7�؞�U���6vu��Yl�)��eu:��n���A^[9��H[{�ַ���xQ��W���?y>����Z4�s��m�i��8��ʕ&��sm7������S;q�g��.�>���gd�H"D:!*~60W�,P2�V_dA>Q�ֵ��{�Ȓ����3s:
�S� i�S�3s�3H�t��`6��Ǵ�@�y8]~<�8�z6��H���п�#��#�$DG��<h�N��ix�y��S�Z�AG9����ة������"d��j��^�����^<�}o�/�<�}cw�Q���{�|�[9�N6@f�"�6{�m�4-	������i��@ci����~�]9Ws`jU�ck�p�j2>07�?@���{�#� �B���.��~�9����Sk��8����Wם�qI��O�{�5&���g3�=����v��9���W������F�	����ZKϳ�����#���\~鵉{�p.�-�k���^�m8/@��ݖ�e&�>�g3�ءm� s�@/Y4�5�{���=Yd郝Z��r`I�b;��@S�0���!"��^/��P��|�9��B(��q$���z���ˊ!�5`��Ֆm�՜Ƚw�n�	�̈�3'�zk�kzv���9H�r�~wp4�{6�DR]F�o���S���C6T�ND+�D3{��+v�ޑG7�CZ�ֽ��9_!�P���9��ص�RG�{[��k����j�Z]���:Ύ����"PP�I�'�!�V�N׻ڰ����#�ڊ�ͻjs ���&��,]x��dT�����6`��z@@|nh��]���2	~�*ж��12����+��x�˘E���"��m�����9D�r#g��}��/4�L��KI����2
�/O#�g�6��Ј����K�u����6:V0�V�6�� �s�(@�6	����N�ͺ]��G�crM=��
ϖ�Ԣ��X}�,��qd�����)�VddA� cE��e�<�A�����}US�(�����Ș#�L�ڦ�������z"T���.��~���n��Z�Dp�D��{B6~E�l�^�D��)	��4<����5���ƇǣI�⭇g.�_������g��ܫ��2w,�?,��$ӛ�2H��Dڞ]0Y&�'�xҮ�ō�{~ N�X�[�au�N�Av�(�H-�Tq"�*�&p� ��K�,t�EUǧ㉷Oc�\mY���zt�J�g�͇��|��/..%�2���Ѱ�7oڣ��v����-�ܾ��j�	�M�DHGm��l���`H8~�"fߘ9�䝲���>���ڵI�NX�`���;q��j��L�3��c�e1����w ��z�ǂ�p�Ahf�u)՗tO�ց���7��5�W�u��&I��|v�V���lA�T����X)&P��N���Id�%�rޓ���'�����>9��~����Gx�J|.|��t~�W?��l$=D�2�?dƱ�cgd��鑲<�:i=�	���	�Q&�� N��� �p//�2�c�70�����������i�$s�R�^Rv�>�V��j���B�����W�dQ�P���������gz���}�{F��K`m
�eI�W��p.ރ�%��,�K�ZU1%ai)�"��ar�A%��.e�$%���E�\��,����U�pG�ё2@� ��E
�g\�(���Ѭ�~���.��Z�U�X��XZ'�V-oI������Mg���c�Z/�dn�k�*�/m�԰%D�[��.�藱�����d|+�����r�`�gjae�B��7;���8k?e�N�����i����_U�9�P�^pVa��A�kqX[b��[(���=X�a��V��,��~-�GrT+F��Tw���*I\��e� ~Oikl���P��+#5V�}��aI6��P
s�����1[#�X��� ���gz�uu̼��m @hi�i�������Us�dT�~OrUi�}��b��Ƙ���R%5R$�e"/�PI��E�CM��\�z�3�N�An�?"x�'O���RW,*0��Y��O/l��
]��p�Aך�9�ё|<Đu�W��X&?�/����3��̼*QS�H�.e��V˚�ˬo�4�x6�]�k}$G�1����A��G��?��]�tU3�Q�D75�TO�����;�u�{M��C�N58Fw���*�ɾ�5�1��� ̉��qz�Dw�Tk��-�Qvlρ��
�"a:"
�:�b�	O�F:�y�t9���-�h��?�#��?�V����O����'2�Ȟ�а�Ï��=��7�_�[��گ���t��\&�]Mcb�0)�����S�}$=�H)0���\j���� ��|�Y�1�뺧dK�Ѵ��1��0�,R�;�e^d�zk[�ÆX�ά�.�|����h�ӱz��=]�؍fG��@�¯s�f�8��Z���k�wK��nx>׳j	�i۹&��B����xQ�:����?g�U���D ϸ��Ό�$�hN��\�
h�J�-��k�������8�Hxdy��.ړ��_<��R���|��byzۓ쎓���LE���ԛ�mC�Ц��[�lW/���A߾�ђ=V�X����;U�)��N��`�)Ea�D��s,�����&HD�z�f����p����dz0���'঩��/�h�n߲���r3������^y��"<���]�³��c��z�Bak+]�]G�>�G����h2��	.祉��<2��G?�u{K�y��7��Lt��k�:���7a
l2�o_���٧��O�e{˅-7�}dC}��Gb_�\uR��^�o7�u����J��}M���͖]؋Y���َ��^�=:�U�=
�ߙ��;ضѲ�L7 ͜�[in����	�@��!@�[d1�����]\[p=r�lk�ꦀ��(3�
�g��f"C�f���.�c[�z�_�_}���b�<���>���Y�04I"V@��
�-������y��#�뫉��7Ϛ�O�It�0i���Ui�A�۽e���E0Ƌ[fd�T�^���
�����Gi�B6��J��u5��T�؊u�s
�9��Z�Kd��{LywĨM�%��̀�!��bgl��	�gv���1S'�B��:����V��׭�Gv8B�)�I�T��k]7��?�K7'v�YL5��N6vY�}��[+
{�3]���w��D����g���-��|_��۟��������ڲ����1O]��ٷ=;��#�dG�w��&R�2Z��s/��w^�l������1>M(d�h�d�Wr�z�j�66k^W_�5�ϽX�,�������lwj�/0r8΃�A�-��\^2<�,d��.S��l��Q^�6��H�Պ@6�b��a�y��g,���ڦ�3>�����Nν]\m��;��]O��fbmdEҒe�ڝc��&���9��}�um<V4�舜�>�?fd���.-����vG]��(�$upM�T���Q��8d_��Wv�9�3s`vC��61oo�W��Q�d5�M�����9��������zlN���=��8o��Y�D�Ml<��{)�r}K tn��{��6���&��k�gE[��5U��$оf7����-���Y���3�@F8��r��4�]�N�y�v"��G����>$�F�a�d�]���i�i�-��⡏���$£����Q]þ��>�Ft8u��/��Q߁`�G�����{�d��󣗯�|a;�#����;T۸������̍������*�KZ�\�@�
�ԃ��ݹ{���k:&G�τڱ�=�� �ν"��S��f�&B$!O5.B��?7"��moS��.k�w������z{��{�!�uNDQ�==ˎ>C�6bbN�"!52p1��J�SH
m�gd�#��zR� ?u7�M"��V�u��=����㩗I��d�*�o�/�g�y}Ku��W�߆��!�e2�3�?��K��y]},�
d�u�d�Bx����Ӌ�_un��8�4����vt����c}}��]d���c�2���V�~�{xTi�^��Ҏ���y��5o;h��va,�䎐�.�����z�]���4f�@%m�3�cS����߲�LJ~�767Hls��Mέ�'��jD��Lj��9�n�jm�ȸe��I%:�����3NT�7�74�zY�P��
��/��B5d=��,d�L��*dy��➓5��6𰁌H�"7W�$G4�>Eb$�t��q�*��R���UH�i"L�c��&�9u�J����� ���۔����%d�R~ ��~��������`�_���>��"v����Q����}p���ّ���A��%����2�Q���Dx�,�$
�E�=|�s%���|;�3�m 9D��w���.8��	������H)�#���U"9R0n�p��$k��I47�@޴M�_2,O�'|IBVH
$N�笛��L������^��N"4 *l	�c�O�"a��J߱$r��˙)���B/b_a�/������_�&n����X�tӬ�g毇�.�g��
�nK���)�Q=N„���C��,��.��e�b2���O�W?/4��?���;�o By�M��n�ҍ_����{�/}>���T�����e�ny?;�J%���wJ�"�`y;>G�
gPS�R5�0����X��`��
&76h��'$�%b����Q��`I�jZR&��E#�Q9�U�9�>�Ĝ�����޸Ӱ�I$
��y�t(�T��H�y�HL�����cJ������N�L�|��Oz�t��d<��X�k��AF)�EfG��RǎUaK�-e�N��)�#����TޫYi�4`H��8U�r2>u%տd:�"3��>�<<znNrT���g~F3�?� ᑝ�/���S+�@O�;@[��r�4s
�³��m�=Q�}8��]
W�d�i�4��6�b���ғ��"��ϲ��4�B��F\-���d�ٟ��j+jS@s�n���
nLu��fMTG�x'��E���O���u4��α�ab��
��5�7�t����?ڍ�#a�]�q��/��̂CYjRQ4#Ux�n�qo�.�Uz�S�3U4t�=���-���o������3�ka"�d	Q޾����C��rr�.��	�r�G��u�Nv���dR��u��ۚ��N0�.�dh��[��y'rfx�x����91�9wf��T#U�q���Tsb��oK��`��Pr�������C���[���]�C���^W4�^��6�ٕ֞����5��|@�Δ ay��[!�Y�a���0��7�߳A���qBx�k�	ԉwGɍp� ;��:\*'��c'r���3]M�_~�e;�۷'ܲ)/Bm5a�y��L�9����`ϼ�ռ�1���0��� <J��k+����X]Y���G�~��:�D�����Đ��et*Brn3��c{e8�sk�lrT������C4��>��E�����	dx��ݽwӲvO���=�v���>y.�>����`�kMmĭ����k"�֌��Dh�<aC���e{��n�@��.����c��z�����?��hi
x�|�)l�)B�S�#")6E�\����[����n�<���Z��X�� �2p�
BW���4J�����ts7z}�^;����8��~Ha�m�4H�C�9ٖy����@�1"����X��S��E5��D�݃����3S�:"R#��Y�p��׵@+�v=��c�M�m�<��蚈��j|���c��u[n�[kd���<rW�TR�"�>�f��s����䞰���i?��N2�7{摰��'��z6��P��ޏ�D~M绶޴�a!�tl�S�>�^���~_��)0?	՜G/tzƕӚޏ��S��;���쯥s��=#����3���¾vofm݇��
��d�g��q~���ˏ_���-�2���N��YAHH�u_:�$� �G��i7 �<�;��E�����Iky2&�z���l��NrN ߹�S�d��9#�6�hNtq#�I���?��+3}/��C=d�վ��M�dT�r�1.��c'�ك�)wvE��|��"��Z��mn�-:������Drn��g�gys[��׊�̼7_I�WY�v{"�n���~��3��H�5Wl_��=��M
A#6���Ǖ�敡��t�]�\Q�F$HQ��T_�r����"�O����֮ي��Z&�x2�J{۷���"?VV
����ϊ�n؝֛�C�G��K8�=�u���BN�+�18`��,�7i̙��`�6>\��v!�?!�+��V�DQWA�$1�����T��(�!��>N�m{��'��R�ۻ.7��u�<D򍇪�c��;6��^��ȤL!�3A�J�q�`�M�9�!���2φ:�?���=m<D6��@>�(��u��,*�C��5��L��,'��{�`��e�h�6��ςD��q��\[� ��^��t�T�J�y�(̸=yxi�}��7������F���x�s~��!�}���M�U.��/���P:`H��q�.�~ v�g��H ����.a�#��#�1{�{&"S���h����fG�����ꭎ���������s_8�,f��E[s[c��HQ��]�<!-�Ú��K䱺��z�)H��!5\�J���5���蛙y�l�>&�e�cC��ALf���pH�Qrd�&S�����8av�?��+�c^���:r������]qs���z�fxv������:���]��%d[����'2Qz�<z�h�P^5g[�A9Ϧ�:CA8R����#3�|tC�T�'yϑ����,�+��Ȕ)-��І���Ƃ?�%��w���ϐ�Bٯ��c�����z�UY> �ef"�$���M}T�'{}�*X#�y�}YY^ʝ��B��6�����D���>����P���v̥��19W=�����U���>�+?�<�`ޏ�uzM߃#�3(��%@|��9@�V��@�*}��-T(>�Ȋ�d�k�>[�໔-��E����v6��9f�X�!O��@���#�y$)er$�(��[
�MS5�6���ل[陑IQ$l�,�����B���%�Dn��>K�<���
�s�;�8�9֩*����%�*�WQqC�~U��瘲@��ʢWp��CM^K����a��-�[�ܰ�l��ۜ�_δ�3�A�)s�,u����8���Guƿ��g��Oa�f�
�+��i��}���Y�
����,l����m�~Hߕ';ʳX�����8�ĭ|8K��a�F:X�nL�\����oz�ՇW9V:�S�t�>W+Ty�A;�R�S�Tgl��G��p�H�׃}�'�땋��4._R�aH�� @z@VD�u�h8"��
��9e]�~l��ܚ�Rc�;r�ay�A�Y�����AV�,���%r���,^�tH�+�4;ȋd^��fR�R�,����Y�Db�I�A�	��/�r�����NvD�Dc����٤���S�����:tZ�����썴�=�t�0�ɤ�Γ�q�B��k���'��E��yJ������������H�vz�������SG�ԫ��=DG2�tR�ɎhH� <��a)R#}WV�7Ӓ�������[�+# `"�ڵ��o�����ܲ-8q �X�v
�g>�� `���_�@��'���(#<��5X�y��z^�`�7�7�M�X1�9l[���s@'��g}����&`���_���}⹯j�C{z�aO�D�>����������>�T�a�����R�]sI�:��0)ud4�u��|�?$F
�WzV�,o��|��H4�X(� �a�ğB���̍��&�@��!GZ~>�h�,"jp��~,�Y�l
Ԍ�Y&Y��q=N��p����#�-E��Np�u�]�*�i8�e%ZƤ�3)�qBD�ԟ'�9�8!uR��|�!��-~��K����[�Y�34���%w��<���w������&�O\�j�4�n�y��,��Jn�AN���ⴳ��K,^O��c��ɤ.���bҖ�U��_SQ�H/�οG�G��4dB
ȣY���=r剧D(�~hxx�ήݾ�'�y�rBh��s�:�j��,�xT�޵�A9�L@C�wG�N�ք��&D��?{�5�]�|a�'�YM$F�-�n�V���榣sN��m�k�����1p]���ZϞ�4F;���'q|`�{u[o�L��������=���._�#����U�C����Rts���xWH���̦��2�\I���/�x=d!+�I�
�3�M�ߣ���Ĉ�S��xp�f���7��9��
�0�L�<l��[��l��>}-�ȕ��ޣ�ܥEc�<?|�<�#x)�0s@�͠��$���s%a<sO�d,Z�6��l��N	�����q0‚�u��sX�
4�i�[*7�3;V�6�Ƭ)J��
zywf���a�*�c��
��^D���N�VZ��ԜX��3�gpk{d��.H�L�/���C��3�W�����=��hn�6r�M*1c4��vd7EH�92_��> �.3�D��A�h��p�}�4D�6��
���1�5|���nN�=q��d����6���8Q��P^��8�ذ��C����\�k�YM�S/�Dْ�BĴ�"=æ��[!�f����?Ѽ�����T����M�A#���m)-7p�>TD��	��\f�������F�C��̐=�G�
X9�w&��#�ݠn`
�U
���FW��ܾ��==������n�7[ӵn��y���4n� �"��5{�
{�զ�9�Ⱥ�
߫��@��{��kְ=���D� V��ͯ�?���Y���x2i*��;�v���5*G{6�u
f�v<�>[3��Wn�qcݥ.K�~`b�f{�
7t��c��}��C���vi8w�4�*�bqj~�,:#��`wt�o��}�`
x���
)Yc�X�궾��:�W,�3w���y�0\/Fg'-��	�L���@1��4l�B�-}M:������U{ܷFǪ{�w�m�~�Soz�F�|�������K/�+���1��{)@�wM���?��M���u�)�(!:;��O���v;�R�0lNQ���p�H� G��,��O�� <&��`d�z��g�O&�v��M۹O�2� ̣I��XwB8dd�c�H�
�!g�7�dϤ)CFG^�M�}v���P@�D���+d��f���2G7D4<xg��n<�힭vV�G��zq��������8�3�Y ����N�(��n9����03?8x�����Y5�zn����ڊg��;�;�����T��]�8���E��P��]�k���ˣc�W��}:SD���g��&�@��BV��}��l����um3���k"���__3ցb�����Ra���=ؤ���;8<���@8�2�3:�y{V�l����|Ҙ��h���3�Z<��~G��z@vɁ�1dè{�._�=�X(�'���R�Ҹ���x�\���d��ݽ�{�pkԽ�!+$�B�$RZ�~��Ij*e��kJ�J��$c,?����$�v.�����%{�n��Sf��6Y�S�$�
r��qn�k�x�dU��@"I9���Luo[����i!R#��O�C">�ف��K���Ɛd�Q���}�6Q� �2��q�U� ;�B(���H���bF�C����DvDb�?��w�YU��.�������l�����v���*L)3�{~��H$8KRQ���F³�n���rWՌݟZ򢍙d��W:'�/p?�O�)��.e{@vT�%�� 2�Ӂ!!�x������K�.*J1~���7S05�g���(��JJ����l�>R�7�e�R�M���Ͼ^5�#��QN�K�����^:��~굺p.K�yY)�y�^Ʃ�3��E�{Q�����:�����f	�_`��_�m��k�ǫ�a�i�K9u�?��U���b�dY>9��UR��΂����r�	g�)p�z-V���b�ح3���[�Z[^7�
s[B��0ѩ�˜��)�+��U3:X/��Ն�����y�̫f}����GcS��X^h�h�鑴�R:[��H:��	R#1�)�F�j���:X�������=��O��O�U�¤y�A��\�2���d{���=��U�#tD��O^�'TyG��s�=^��4���q�w�$B#�r,$���$K��`����x�g !Nex����k�x�ft!��?��3a�wy��8<<tc�y���m�$Y+��	�:h����m�G��d�3<��6%]<���|�Q��5�= 7�oaD�o��g}���l�A��	��=A�>k9�U�(�Y���	��8/�j��e�)���03��S�H�h�K��b[H�i��2i�oFfC6w#�ڬ/�d��$H0�;�ٳ-�����#M�Q��i�Ȑ�;H�9�e�<��hgt^e^8I�d�+��\���<�]���~�	B��{m����?��=��,�9�="0�Y�L�Y�w���,�d��`�/r"y���Ӛ���km�.����,���_Y&/���<��c�I�bd��D��Q��湗��������9�exfe�0)OP���[\��Ei��H���8�H�K�K�|��`ߞ���;�^���+,�0��88vN�1>��/��ƸE��.|\�~�ҿ{�Y'�UX����'Wi�9���>�#�2�9��f���F����&h}~����]��:2�	n������4�003,��s&��9Ԣ�����^�MfW�{s����TGn}���b[M�WW�/p���c�^�%^�G6Q��vg�3C�o|Ʈk��X����]��1(�@Џݝ�3�7mt�ko���	~����9b��P*0�]o|D@��maP����c5����D˾���=ȴ���\kL��-���^k�M�	���^ oa~D��ͽ����W�u��]�"�4�s:'|Zݺ=sI ��i��zi/�֝x��Je"���Ź<�B[�>HA!�5 ��ڵA�6��Id�$SlYQ��f���)*2�*�so;�])�,Y !� 2G�=d�bvM ��.��ЎFS�5� ��$�'�v@4�GV�u�G�"o�f2�,��ȱ6 $�,P��l��M���\ΤC��pi�K�5{�H���
�_�)"Le��\i����W=�XO_�ٵ�s'w��ƾ5D���Q�L��]�6�,����eo{
�L��G�Nþ��ݸ�6V�ѫ�j��U����	�F���+�ENMU2�5=C巾>��{�_� �1��h��z2H��e\\fC'��ե������e�z
'�B�qym��=#��Y4<��g!yd��喆ܜ_��*����~���a�,P����i Y��&¸��YH����ѳ�b��أ�=�c��g�@����}*_��.S�4����v�p�6��G[��T�W��M�@�_���R���N)����ͽY����=��+�|�ׅ\�������[ۥ{tD��� �2&!N��Զ�Wl�u��s"����:���K�!`��3&;��l�y�xbUoWEȈ�����6*6]��P��P��Jo-����\��.���$����Ej��붣kڼ�e�l�k�t
#��A�tfq~�t��)=��1�!�>g4G_��E�����$�S���d���gJ�]a�z��x���I�di!�z�[��D��ĶKѪn�W�.и�f��>��]�z���I:�,�M�����~����*U!V[H0�\և���<��n��h��(
Ap� Z�vq�\�uM���*M�����~*��+��sis�`hF��%�V'u�G>6r�H�z��t
�Q<�.;�L,?w����l��)#ݰ�
����K�5��l��X��@����e~��<��B������Z$�.nl9X�I*�ܣ�V��
�w�w�ƪ��9O�T��d��a��#fǟː1^�:���6��VT��r�%��v;=՛���U���3��Z7/^�_}�ɯ��5�!3���B�dV3Gʬ���'2��%�2f�wn߱7<��{�ܾw�=R.\��=��kHIEi�0>�}d��3.B��c�Z�o`���e�e�Tw z��g��3���)d�h�A7�L��?N�dA�5u��GH o�oYq��FV[�k'�F��A;"3��l�\�ɼ<r��.\�W^{�{�G:چ��S�1wU�Ȗ��H�A�丨�{��$�Ų-B�˗/9��{#dX�Gf�)H����J+�'҃{E�Af�<f!&S�D6.�1�R�8Ic딹�2�|ɃϚ������"��T�RoH����sy��L�D�q_j��#c�v�m�"���N 9�r�ȅ����g��X��W�H[ZR�GR����L�����#$�Q�����q��mp
p䨼�>b�쏄�$s�rI
'-�4
27D\dx{��<��j�m A C��8F�|>��T_����w��,)e|��E:���zU
�Wp+H�*VU�n��2>I‚d$��լ��,|uI&��r�iI��	�[�Ny��Z��fx$�`p�
'��eY�*��]���-t���WI%�D�Hf��\�_N��b�Qr�HXs<�S��K�w.�(__����M�$7�%U�|����X��;Ӯ�r�V���U7�8��e"$�^T����%1B���ހ���Y'��p,�Ves�/��N���:��{b����X�x
Y���=Pp�$�Y�r*1c�j"5RjU�O5�#�J�@6X0)_�N��mR�:R奒�/v�6�NJ�
�Q�������>�z޸$�uYҊ%��$q�fw�˃�J��L)nl���i_��?�3?SС@\�Ȓ��9d
2�1�ɳ�F9��e��N���f��l��?���Ό�	��%-�����)y�.��$�#-����HGDG*�`ι�-Z�t���U��>c�Kjd�ܠ��P']K��w�y�,!4�ࠣ�z�y�{���HD����б�'�#����,�������H���饗���3Xa�j{��Km��3e�s�U�/iW��'YN6�8\+��[�9�w	��B,!�{�@��@/SO<>�<H�
Ȑr��G��*ܷ_�<ĸ:u�&=�6�~nlj�DŽ���|��
������:&
״����dhp�ش���]��ţ]��p��
�1P&���We��Fy���KF��]xE�Z��NQ�a2�4q�W�^W@馿��4R
΄̔��W� �d!GȮ��T��\�&�屾9t�B�E	zQ�ubS�Gz\�l�Y_�	:�����1��X�lu�H�����U�O�a�ʒ�iL"zv�RV��๔y�ʚ�DF	�+s��T
'�x�2�CkQn�Ur��
s"=�r��~����E$;�)/�*KY����AV����0(��?Mׄ�]�dou4��cݿ���m�whs��(��9e�x�1!k*ex�uQ��V�qSX�>��:}�5������O�@T���er���!�nܰ/�lG�w�xGm���]�=:�cd�@�o��ɀ��L(C��#&yK�j�4�Or�\YfѤ������7����UֈPޝ�����L��Oo��S9Wݛ��Ҷ�ښ�����m{l�f��ǖ�}qW��+v�z�T��+;}S}���v=��&0��@�;�#M�Ϲoι���HPxכ����)���,��D�d( ��F��g1Ϟ�s��!�@��௢zWǐ;��\ug4k��@ᚃ��+��l8o�v����-o��{!`.���vkX�pn�i� ӽ����=N�D �(1����#�A�<���R�����0q^�H�yY�3�[|�Ϝ_��M�Bz�u����G���q�d�����@$�ڑs��/�9km���Tx��Ֆ�
0q�l�Ll��'�]�)Db�n��Q0�6�����!0��c;�:8�Pq�2��������vC���;�e,ye���gWH���摞���R	�;����@Ds?���3��c�M�����8-c�T��Mj�7�mfs�o�8�NT
�ש��f��'*��J�V=�Hk�2uuŚ����9o:�<�!����m�|)�Ũ�PnB�;�����Y�D����c��]�Q���t������=o���
�U��*O���)��u<�)`Z���xQ	�[�E=G.��Z&��x�y<9�Dn�l{��I����:�bX&�萾tM�����z�g7v黯���ވ����`�!��"I�6G6���<�SC�n���v����.������m6�/���j��Z*�j���|��}�c���Y0G�\��s/���Xs~W�y=�� G��r��6޷�q����;����%��d����щ�<`$��6�l�l�B��>��\Fi��@�i/�/	�L���/��d5�A��[dh=�KڶXd��}V��!��W���%�
���y��e�~(�=E\#i#�=
 �x�5G�L���
���w����tB�'h&9_���1"���V=�qs��l8/��+��!K��z]@x�ѝU�-�|g�s[����b[�GM&�;2A���9�3j���̟�Lc"����4�5�g��"�P^�D���UdX���9h���|,��a��	�J�E���Q�!�ޔ�eL�s���;�;;{�Q�.B�L2}�><���0v�e���V��5�C*��Y
*+�c�7�1�c>{p����Ys푫�����R c�5�9j�>��Z�뺀{�_���{9��Yd�t�iY	2[x�F�������\��"ۀ���E'�0�O��I}��g��=��g2.ʘ���; �Ӎ��|�N,���YM����I����"�����"p�z��2�����h���󞶁D��3bk�M��"x?v�.�ѓ�ei�E�>�z��Oejq=d�𗮋2��2y���zF��d���dU")8f;/�G�$w�^#��g�ښ*�ڝeϏ@�kLF�d��Qw����!a�ճ�<t2xHI�F�l�x1���=ԽDʔ���"͚�Xv����y�s�3@�S3�$o�+���n��m��DM��H�<0� ����?t��DJGz��q|�DŽL3I'��3I��}S!9�A�,�=X
��B��W����.����\9����~�rX���|���&��a!��L,���w���V��q
��ǃ�\#d��,���*yŒ|<b��ٲ4�G?�Ѣ��`d�H<,�=>�񏓙��Qu�d��$Ye��/����e���{��
�K-�J����Q��Z`�|�������\yjv��&P~A�T�S�G2M��S��<'�:'�#��X& �%�K�o��>����[�?#�s�T�������v�QiK�!*�f��
*�bF���g������H����RA��E�K7�d���s)+�(��=��OV9u]�ߗ�ԬZЪ��űlnK�O�DZ�J�V���T���7�BU��R%f�T��4����oy��Hl��<5��L�E�	eI:|��<��ꈜ����%
����x�}���i�����p������AC�6��Ȓ�@�p��^u��r��|N��N�Q:���P�	�_�	�|��S��O�ĺ|&u1������_�����B4�bJ��F�E�QG���w��zFgKD$G������d��s�%��N�
�6dT��I3��L�U�w
�Dr0�Hm@���o���Ԉ�{�&��/D$��e���[����@�'&��eG�=>!+�pi��͚.���'P(dF�� �	hk%�����M��@���<�	Y	�
���,�
.!e�	tT�D�D����|�rZHm���g(���)1Dg���V�E�8�xD��^P�I�C���E>�h-&e�"f#,P�t�mA��>��·�艒[����dd�8iH!���.?sR@��L@J�A��1�P��\*�tp�9'\0G�Y*?��ĥg�w�x=P��M�s�:h8�RFj��Z�"�,���H�ң�x�.���\���13�%�<k!ܗ2�Y�R��X�3�U�<y�o;E\���X�Ʃ����vV�O�x�<C��rq��:��!L�)��|M��#M��A�G�����=�
&1+hQ4�_^��
�p!�%�o��b-��H�?dT�{��A<#�u`����A���q���{d��B���9���%�����/�l߸~�n��q-�ۀ]փi�Ke�~��]~�Il�XvSc]ŀ����������^L���P��d�M����z�i�"�o���\�M�y��.gjg��wW��@��ľxgǮ�gv�x`���
��=��씎!���U�J"P�O���/_yW3/�п�;TQ�jB/Bc�g�7�Y�oN��I�A}���ZcX*���:�V�"�;��G��Z"8��y�dC�UwP�����+`H�f׾���n�`���鼇���Ҏ��Aeg�vK�R=;"N��@ιa�:�M\;`�@�LR�/-�C�.���9	,<_˲��y =��XcA�c��A~oѧ�M�{!j�r	��4U����Q�.������{��=j�'�����>��H��9	���mʉ�7���WVͶ6��!���n�鹡�~O��X�-P|�K�R��^xd9$���z��]� �?"#���;"N�FڦT�(@���Hgӏ���s����	�j—Ѐ+��'��� �~cdw�������	����?�`�T�F{j�^m�S�֊�Yo�����C��&����L�GK�,dF�1s���\����hJ_Do���X,!��L�y�]vp��Z���q���.q��=�?C��K�����3tj��K�v�Ӱ�=S�;ߘٷ=ݱ�����~�t�v}{�~C����&M�q����8�\{~��V�~�r����m�zu����Q]�f�Q髫D
8��|PG�J]�(��f/�y]Z])G�������/S�Y��m�56�(}n�D�\h9�q�t:v�_���Q��L�j��H$쓏l��su{��[viej[ݱ��Iu��v�]j�m��nY>|�=�1fW py��ƶj73���u��ڵM��fwT�Ed�q�ܖ�s��T������D�N]�(�� ���r�!N@\B �N����,���3'	�o'�BYs�(d|!?����������2��	�$a2	U�U�[�1ZW�V�ڽ#�)���ڎ��B"#		@G0���^m)���n��7L-��D��^a8� 'rb4>�	�݃lS@֑삞�k_ϐ��"H���}|�w���O�����1�����r@�sS"�4׵߿s[�ff�ʟ�i�#�o^�`�`��-Č���`�]z���>��o��|��?���n{���l����^���d���K��E�>tBk1�w��-����G���}��.�E��'��������=~A�~�gW����[�Ν���O�P�^�;A���ý��������d׮^�Ϟ�k�y�}�|�����"U�|���x�=��%��#{��O��vݧc�:׳����� �T8��R]��D6��o�?������`l{�r�����'|l�!ê^��O��޾�Җ%��Z���Aܜ��$�ƹ�S����4d�Č�$����?�>W�=/3.%�u8&�I�"�  �3�1�%���MFN�Q>����n;�1x� �֨/�3r'�Z���>�<V
jH�K:��S%>�@y�H�	�yq�5��Ò�]�Bb+��qӈ�G�9#YB��D����
*N�%3��!�g�8���ѳZ��_�'��q��<���B�Ԙ�v2nB�)��"��}�S���W��i�_T�Ե�5���uy�jxB�t+0^����i�mP���_&ss�/Ii۴]:.x�Q� ��g������k�0�t,��Ty���ɚ�~�J�yM�C���P[U��Nv���[5�6�]�U�Y���V�m��ܛ},��S�0GʮHj+	�#9&;��ׇp<���ΗT] C��y"H���
!�}�{��>m�q��7��9���!5*�~�	����$�3�} �q�<n�X.'�MDE��Rf	�Eɫ�b=��_��c!�U!k�
�a�,�e�v�~��Nxp�M�g�hX��ӶU |ضf���Sx�=��۷�����d�����������zzPҪ��:c��R�!-~?�������K`дz�7���)��N��gKߧmS�J�t�ˇ]��x*�cY�m�4'eeT+E�~Q��g�Pg'�rY��HKb!�w1�#O7+V�"�3J|�:O�W�QH�
P���604x|������F�D�F��y&�#yp �D�IG�(���{��y/��"���
m:?�`���v4�4���x�"|�uCt����l�S���:�O}�S�^� 4��S�9�Ê����<u�HY���(���$���ԡ��=N�O�y��)�g�cN	��nj�@J�B�*E6�C/��` ���*�xO�I�i�\g��
��7�Xb���g�CGe���%V�ىs�ﬥ����^�xdd�;"
�V�<:8Dq�A��Fn��@(z�Z?��gZ��k	7���V004$5��s��#��@__�rQ�|`'S��j��"UP�„ϵ�荲(_29�i�m����2��&�p��9�n��r1��cr��<��"�-����E�Z��?�kØ����@F�؏�6�/�ùNj��.��]����,f�0y,�MkS���\C����D�9'y���Z�)$��3�d|�n�1a�ry+@��g����Nq j�at�ęm���SK��@�y��_f塴�l�2|�%�r�_mq��r����}��}��)+̇Y��(�m�9K���XE�oq.lѽh1	Ҥew���,�_�;v��m��tC�tN�BҎb��RVR$w�	�E�
��Q~�|3&k��(�UētG�Y ?����X*@
���8hG#�6w`#D�|^
���4d�|�W^f���DCai��PBDn�
����U�Teu�m�,i�Hm5i7�W�*@�xҰ�Y�sMX_��;}��yl��&����?��;�c��+6��x��z���|u��^�\1qdW��^8�f�ml/��51]�o�ql��!J[�~�sdk����pa��I��2�5��X`��:)�#j�J�f�_\�^4��gR��}=��x�+4��"�=@[��;���&�۵s�vakU���W]�c�1imud��Y2��p�d��ڇ��'��+s�S���w9�)��Qq=�՗D�<v~%����L�NIF%��`�V�ۼ��gB�^n��ǐ�:v�#���4H
Ut
�A��3v0T`Ҙl�4�.��&��!��}8�D$]<�����?�sXM�)
�h!=Rs_�׮�ޝ£��,!��	zf����B�`\ڝ�c7FN2���9�ZnᏜ�h2s"q�Ss}~�����\D��٠n��F��#��V�	�R�:�<Z^G�>��
��]C��ݹK�w�
j�sׁ�G�a8Ѣ�V臆�C�K�:��՚]ψ�����Fe'O�!�G���1j�"P4KZ�e�b�*�?fS����=�q�To��%�U�C��>D�5��\���ks^��&�z����6�@6�݃��[Q\���jc��hw0A�ܬ�K7��]�3L��~��ʊ��=���� ����LF1�{��Y��$d$����UN�DN����gU�$����rtwX�s_�/SF�"d�k{Dz��v��M��ĥKu�={�{�dWL��u=M�6Q�ݙYcrO�t_�ᦃ�G�=#Y��	���:���3[�G{�v~����������R��z08��p�r�;�Y �C���@�lگY��#_�K߁��x<q�y����4g��_?+^�Y���d��%����"0!����k��w��^�3'>�1�̣�k�?]e#�a�����D�c�>T��?T����y`R!��� G�w���d�����xp��v�4$�:Ͷ�"�g�M,�����(9.|��`�� 9�鬊}�����w	+�Fҵ���\������oW�=��w��Y�臾�%��{�Ӯ^ڲ�|��;�.��󕋚��(����<�ԣZ���g��13{����_�7=��
{�;�l�}�[5'���0��2a�+W/��=?�Q�|����}۳���'	D*=��e��k��5Rnx��!��ȶ�&���g�]{D��|��x����������i�����mO���3O?b=��w?��	����~�ڶ�}����7�Z��[��~����{��$�y��\���ֱ
���/_�|޳5	.x�{�i?�S��������O���������7���ɻ�&]��U����}�{ߡ��V�"2�oy��X���~P�F{��{_��$��Z�����6mS��'�����b���yd�u�df�}�qझ��ވ�2�菌�ζ�}2ehXۭ�{���Ҋ>K-$�T�0��|�|Ⱦ�o�z��n���v�e��I��7T�)��탣�ݻ{��
۵�m��k�M�s!VT�P��ѽ�0	Y-qP���*�9���+�w|h�"]Z��#��u��CLO<@<��6~e�h���t�Cױ��z]&�dn���<k��V��3��A���g��t��/���]jӟI݉$�$Õ�kN��^R�(kd�ܺsGc����s�T"BȔ�v�¶�{"L2�+�d�i�������wj��k�L@d��W#��!B ��+N��2;�*B�+x�S� ��!;��FR���{�4J�G24O�3I�'_0~�f|�� i�k��HY����PQ�(��>�Ǘ����E2.�b���t���H[��@������[	�)x��;뀻�����d<�^
L�z�V����8��?�u����%bd�X�$��I��c��)�'��gI�$�! .Β�O߳�=��ܜ|��Xb�(�}��eb���/�������ݫ�"�c��V��꒾�+��Jd���xz�`৶9�_�DZ�F��z������h{@�ҲJ�ۡr8u�ͩs7M�t�p�����(
"���	�9���au�ĀEeuDg $t7nǛ���ԩ��o��]���f�^u�{��ڵÿ������e�l9�Ǹё=��/ew�<{P�}Ͱ/)��=�ct2ߑY�}�L�W%�S �Y�Þ7e:2��I�d��4�5��Lk�/{/��,s�8�e_Y�Ț���;���cN����>��t��2U�ᾎ�t���8};=;
����m�l�������
��ޱ��5��?��澎!v"I�f��Ό���F�^Ӕ:�!k��m����"���s_v�4dr����_8x���9ȺmΗ�����
I�����A��?sFTv?��&U�����'k�g�e��9@:9*~�M�t����*�{�$8��ɓ'�Ig�m�����p�^|99*fy���v����򰩣>��k�'N���C�){�ց�1cj`\��\��
~H�1�ń,�0a�`kO"�1�eRF�J ��}	�m)F{�w���8��)Y��ܱj�S
�g���!��m����M�`E!$$0*�!�>�5΅r�oIחK��GFj�����<&e�V�-#�E/
#�e�o��q�Ca�$P�A�lM��kAy�nh��;��x���b�i}�s��#�"�-�@ٯP��Ǹ�An�?���\)K�2kb�����fӄ��V���n�ڱX�B'x"���;���F�oAqK)(�`#�M���/����OC�����H�;�+Ĕ�� �AGn�dr�4+��s��oϛ�\f>�/���K�{��#q�G�s�dj�a!^/��ڔ�B=D
�H�n��T"��]_^�Ɓ�
�+i�)S��g�K&3���8+�h$��S�0�r�%&�ñ��O\�=��x�FsH1�p�g��1���0��J��(���T���d��+şL4�s�Jj�9�)o�e�|d6O`"��z�c��4
�^X�Vw5bz�?�G6A&�e��X��K��\�����ջ�D�ȕ5e��dq�3=<zx.��O�UJd��~�2:k�}���
`�Q�+j�:F�����v��ٗ\iA��6q-�G�J#/7�d�F�[��e�(%�������o@d��s�1R�
��+�9�]��~��TIˠ$[-_�n��:���s��Q>
�T�U�QT9,<eʨ�$�d��8
���iV���<cT!�xj�/(�:n�!��3�`]���}ʣ���d��\J�V'���O�;<H�ט�@[��;AIS�B0RUg��&�2cC�h� �Kϖ(�u�d*6B}��ƾXXNJ�9V���zNDFeY�b`���K�zg���3絲���� )H6��ʲ멑w�����4�>�@6A���Qz+��v���ɽ�G�Չ�q9�}y���!hlJ����0���Z��7��Ϸ�ܶ�Th<b�;Hԟ�Jߧ����P��5��~%�w�Zږ#�S��f�u�E�N9�g��I��c�x�z�A�$�9F¶�$^�_���-�+Y�zr���u0c��-#]��W,��~�<�5\����m4�'��3�m�B�l'���b��l��[�hZ�ӌ�����7	��]�?7�23���w����|�H�Jo
PW�]RuԳX3&(�ʹ:AH<�lYQ�4��p���SF��:�)!���yU��A\���;8�4���T��f�L+�3��>hȚ&�k�EU�P	�0lS���;�~BIO_jɎT�Jc�&s^G%-�x@�.��ծ
��>��(j�_���f��OAK�L1�prU�o땋���>�����<3�䑒�*��ǹ��a�s�������5����1/�d|*E�F���~�2�Ǫ&��oeY�<���$������j�zl�!)�s���(��� �0�gY4Qj�M����o���x�冹&�}8��젟(�@"���R�)�ݷ�����^�bYYX���s?+���_�|������O��o�k�: ������|ݿ{�|�V�]��~�+�iO}���ԛ��_�J�Y����A���>�kݓ�~�?����5*J����_/��7���/�{������gey^� ijղ\}�	��_�o��?�;�g��;'��o�g�v�|�|����/B3�:��t����Q�p����{�\{�Qy�+_`r����;_
�� ?����Mr��J
c��k��uO�N^����S�ʋ����ί{��g�Ռ�Gy�}�J^��ly���AO�p�U yn���p���Q��̧ʋ_�\y�F�|�5�(�g~�:~S֊��}�<�kP^��"}��r
�����I0�&�9��J4kj�s�d}}X��A�2�[hƃ���o�	��9e�y�,���oʦ-4du�l=�w�vT
%%H<��D$�cKPsN�gͲb�Il�Hd���[j2O�&^~'���~�!��
�vKI0�bi��^�*эc�[���PG	k�*�f�lG#k���E�,&��=4����)�����M���V(�R���	�b�����^�m�9g3�b���~!�1�w!Xf��k6���*`�ON=�Tb,�P’^sU�&1}V��,�wy�#,���-�����`c^"�I���7��U��'�A����?1�SQ�4,'9b	
f:��p��|q?>gf�
��̘�9 ���d�'�!�A�cii)qr�.�4K~��;�q���_�J̆����9l����45wA�.X�I_�>�$��=��˩�03��V.בĞH|8���~Ľ���UM����0���%F���m��]w�6@X�s�0q7� ���bu��\P3e�������\և+���GI|�Z2D����Ϭ��Te��	��:=���(0���Ye|��{���w68ܽ,�Y�R��:��b��=CJHF�M:5x=k�.�%�\���=��O��f�~ɼ���Yl~4O��i�<Cn\�T��9�9��q�>3����yg�7!&&����6�W��2�ԗd����w�$D��.Kzd���rDHf���Lʎ7��1u-���S:�J5sSZd�df�=��T\��fd8���pY���c8��v$�fB��gd��F�m��y��N��Cg<=����~���nj��^�4�nKͅ���t3)���w;']��f���\�;Aw]؏IS���:��IAN֙�AmA|�5w�J��pL�����F֠)k>�A�>H%5\� ?w�'.[�s�!�A2�6fu��i<�4F2�$9Hj�3�.����H�8`2�e|pjGr�M�TmI7��I2�U?��j�H��6 vW�J��<'��M\'�H	;�Ў.�TG�t4Yf�4!�au��@��q��y���w��p"�	~����r�%��m�|���Ø�q���|��q�����+�.��b¬�wFK��#��O@�O~�����ԃq�0Ǐ{F:�4��5���ps2�cU����1�.�$�@����{F&��;�$_}���D,�<���-y�K��}��/mo�H�`��E�(֨A��i�Ĥt�Cin�iU��Edv��]�t>
R�S�v>���,�gF-����)��d�i:	� ���}N���%����Ud�(4#pG�ˍm$���٩�07 {D�s����/~�m�B��}V���+�
Q0��ʌ���F�Q��.�K�-�X� eF\	̌�!U��ώ�I��3��<NEv����q��.��ɶK��\��0�#v�4�{��k�a�TY�(@���Œ����K���y��2��@Aq;���w� ��I|��qćY�%&��F��c���\���#��[�eIc��橌���f��E��YG�	�.c��')RP�c���2�#}.�ѷQ*���n��[-�jΓ!Ȏ��`����x���ϩ���Z]9T��8-Y¹W7�jVM������v�R���E����6'%��x�#	�x8��l��8Qpx�(e���5���*�<X�]��}�Ǝ.�[}��-��v�d|�z#���"��,[�y�C�K|/��b����ԫ�~�fW��,	W��+�ÈH�BޣfP�Nz���;z���D�7�O�FC��"�3:�|��KY!�^`!_@9��zi��Ji$��U�$��;���b��=/�[/�oFb	�D��Q�=q���)�c2T�T��6���Ԛ�=��s�IG�ίM3�zx��W�w�kQ�o�ϫ�
�6Ɯ���F5����X��!u�A���^��6>��\K"J�Ў|�ˠ�ё}(ÍH���M����Q�@����
x�����2:�x�Lh�kd'�t�	�j~�A�4�1~�6}Y�5f�U�j�D�)�':n��1��w�� {z�zGtF�RAi맰70����׾�J�Q�F�<J�22^Tb�p�f���X
T4�6��b�ӆV�����%�;�;d}�͘	���FG�,fq�m��@����	�"iԊ�'���*���sr�@����
ʗf�$vAp��?����}��$P�b#E�G_�G�,�}���\s��6	���i"�c_�����gӈ�瓜�}��iT1$$�b9�P��mJ�� .�5��I�E�%�_1��:ؗ�S� X\܏��伏~�I��s+��|�ȋMfT��xx����o�5k���2ʁ��j���C��
vd�2����^]`N�B�K�_��e�M?�8�zl�z��b��}�`|4�}:�p������"T�[�>ұh����=G�����A��^C���5��	2�9����gJ�*5��=��|s^J����ܹ^��q�DRok{C3<�<o��;���u-�lb�!��є�S�¶��Y�����>Fr���Ό�k9� �����a�����*��<&��G�[_���S?�s�8�lv�=�S-��_ֺɠ��k��M��(O��:���?!����;�
���ZdA3�BTdJ�i��t�J������W�g=�9�mT����F9xp��^\�,3���=3�1�,-�8Zj����ʍ7�$���W�_���R|O���[�{�w��;�@>\}�Qͼ�Tf��Jơ|���#��_�Z�V�ӿx�,,.�@f�Dϡ�h��˥t��i�����Q�=y�w}����"��/�f�l�4���#�ַ�����G�����G���ߖ�n�E��Sn�MΟ�(��_�7?���'Y�/�m���>���������dB���!�\�AP�,3��8
Ha�"	�hom���JT��5��X�φ�)�q��_'a����T�-��)����.�gC����m���Kz23J�j�|Y�J�9���Y�9?���]>	x1�gd@�H�h�`�����~�� �B�7�8o���#<�o�.����E-�sk祈5ue�k\�7^8,�f��u�	`�'F�0�����Ʊ֙�ʲ:�=U;���N�I�&&���:��0dF�zvl=n(��@�H�4evO[3�w�}2{�$&�z��� ٌ�]�k �ڽIև�/�)0`���w�T%���.61�_����dF-ܾ�$��Λ���O�<I�]qb$�E,�d��1���ߔ�b2���b6��B�!���>���V�.��J\)�C��X�'nϚ��r�!��zyxY)��~��Z���o�a1�h1��|�1��p4������gyw�y����#.g�94�ﳏ��b�?�8��q|Gz8��}��DŽآ�Yc���E9vp���yN����3gh�X��L��g�G �Y��N� wd��u�iyj;��c�d����o�y��NF�}��^��ڧ<5f~����,�o���_�e*G����x�e�/s���������$�I^�8Y�C��2zy3���=Yfשgn4��w���q��)�*�)񩔝�kvט�"ބ�J�����g9�@Q��p^��䦒$�1��.��Uh2����
�F��Gs�0Q�åOYrDo��K%��ڀj�1=..;����F��<;����?��bG�N��#㊎K;~����VOɔ,��7���p>ΠɱÎu�t�@�h�3�<;Y��$k�;��1�h�=����s�|���C��IW9�
$:�9:�3~����`�K=�w�?*��La�}s�s2U��Ͼ8@r�f�=N��"]��
f|p������`� ���D@���
kƥF^��;=L��*˚?��3&��;8#���6�B��D���' �4�å�r�‰
'��p�!;t�J��:��Q�7�T��Q7݁�~�|�s�.�x�S��ʂ�M(<'cR ����kn�o{�r-�z6�ij̉b`$���0��ya�,U�>T�$�	��n�U^���d�����`A�4�
a�2M���|`���k^)�
_+w�|�<����ϹC��]��~�+q�U�,�Zj�M�@9b$�<#E`��<^�R�F�'V�K�oŝ	z���D�g�(�@����$�
��~A�T�ň�U�g�:hZ��"'O��2�l�O8�����3�0^\�⹢���9���ߍ�'�m
Fr�W<�fy�so�c����|2�U{�H��N�2$&dGf���
��2��t����]Ӂ"3xS_H����eO05Y�UR�!��Y`ƣxB�d~'�����ф����A����%c����%%�TQ��.� 1��bed�}�E��eQ�P�h&������J�X-��JV*��!FO=5���&�cl
J͂z�e�X�JK���)'��;뽚�#f@%�i��O�fr�
�q���d��@{
Ȱl5b�F�`�hC��"�d���0����(��j^�&Vj���\�<%ЗǢk��3��i>�~ �U+}�)v*��	���|닐+H�o�S�\ÂgQ�]	�I�$hMy6.v��S`�U^�2F���J\EJ2��e�D��q��H�$rz'R]�g?�(G#96WRR ��F�^[�Q��f%ô+�ľ&'M�{�c��B	�N#����L6	ʴ��@)�C@�V�a����
��+r����u�!�(�R���J�XN�L��r��|�����s�ix�Sv���c#��)���A�������K	;G����x-9���l3�o��[=�Era;���Q
�~hn[/���W#�H%q�M���J W,P�~(g.���Z��T�e1��=�2[(�0�Cd�Rfh�~�(_�c��b}�[��xO��(�°?�]�~Qv�}��8�8�냾@f�
��f�cF���-�7��1=zF�p��U�X#���fJ#�?��L4��S�@�l��Ը5L����w`�m�á�QJ"q��$%V5�s�
H�rh�B���5APj�F��+d��i6�fo����F��A=;���\&����^GV���4_P���[}�A8l�?)
� A]�y)�Cy�c���|�Y��K���긾}\mq���	�t�&�/���KL�!�D�4�2�e��\E��T�}L�鑒(�n�ʁ�4вOc�p���r�~0h�
�?6��B��)Ljs0�1�@�f�S�����~ /s� �ڑT�e��Ei��t�d�p��G�狲���Xq[��TP��ӹ�o��G�W��4���L&�oָ�Ķ]]��,i��LߟL&���7��XeI�ĵ{_�'�c�!�]s�u��+K+��z?��S�|@�������L�^0�>yL�_-XJ������y�I���ՊF����#�%�8��%~�f���+4F�+��~�D6A�����+K�r��a}k��<|Hn��fٷ��|�W?C��%���W*�P���;��[�Mo�ny`=��=�C=������S�r�<��i���Ϲ| w}�%2)���91vI�z�~�K���c��U1D}��G�\zX+�;{NN>����w�3_�W~�?*?���ȟ��/����ۑo|��E/�S>���k�'៻� 9���x�k�'\/�=rN�<�*���W�[�M�ό��;-��C^#�x��'����5�?����3@N�Hb2�~�z��#��|��<�?)_��
��Dٜ���|S��o����>b��c�d��,y�A�y����z�<�YO�rY!�;�0�+��3��P3=�It�s�?$8X��x��6x�u��J�����a�^8O#YASr�y,���^�K��m�>��Y(KZ�L9'�l����^��2�C@�OMbɁH�e;�9xg����k�|m��#�?���ItPb�I�g��!��R?-���3�1f���q�����y����sJ��������̬
|~�p?w�<�1zMƨ_���M��f��om���+!�kc�
3O�������5�_�S"
}�H�
Ի]��p��Ϝ�N=&�9���5g��@�o�hgs�Q_V�.�n{S�s��<J���?x�s��uf���qJ^Wp>�$2��wX��q����"�`��+��_	��w)}�N���PY+~f��T
��
'����bH��q�S�p^ju�!�������Z�'6�ω)9�ș��$!�D��!$5��{��R}=���x���f����p��6&^Fr��;l���N���q6�R
�^��q;n�}�`p21Bg��%4�j�X�������w���`��p���Gv��$I��п���b@v�cة�d��)�~z�L��&�N"+q��6�#q��4<O�Cy�X�}����)��ڜ��{��;���i�'��v�^��ҳf��~7��{�{�9�|��\��
�,�m뎔I�ߛ�?����[��1En�2'�eX���#�&��<��La��,��M��̖i��2,���SB$����W	G>�YY)�

��?��wF���zl����J_i�r
gv?o¢�~�����]�e0SS��/�%W�As�K��{Gh�� ��Ee��:��|9�����ec�r&F|�N��%����4�ͥ۱�u옹/;WF�qf'�Η��ov����|?k��
�f�N2�2�ʌ�')2�=�b��|�S�")���Ih��a*fv���@���� �O$���S��ex���,��$D�@�L�F�)��$?�q�,8Ps€8v�f35H�L�����v'Qʼn�3�A��]D��o�۱#@���=&��$�ns���
�|=�M���7�ȏ&���V+]Ļ�h^_@μUN��2&t?��'�}�Ӥ��ߛߎ��K'da�����%��y7�����I��/���>�y�+4԰Ջ{��၂Z�!&xQ�g1b��ظ#�-��/��5 4���_�Cy`o��c5�u�,\����{y�i��#�< [M9z�<�����l(
���E<�#e=�1�"�lz��F���p����Y�Ed��A��S/��}O
��e���b2#"�hĪz/ë��zfx�.����iN��0Ƭb�@��q	��B�Q�N�}�~�+� V�|@�`�?V�s��{��'�'���Q�7����GO�����t�Þ�
�7~f�L�o�.1 E�cR�f�_�0qӛ�}�2uQfG�Λ�����T{7]I,i�nƛ�Z{�$���$�۾	�40�|���5)��NP���u]�&j2k#�em�
�Fi����H��(�0ɐ4IRb�X���-��PJ���(�R8�4�F�)?b�:"!��N�m�ax��&��#Zy.���D�k
4�z��^\Agh��\��
���t��gw�hZ3[��1	�:�^o�:�ؗQ�Ƙv���܏��m�e��l`��C52�������^�@�L���� V
$9)c�R��y^�v� �R��aQے�c,�u`/�����r
��6#2�ݍq(�l�i=����<�H��y����g��CD��R��Z������y\�@A<<�@G�uHڋ�?�+6�_9�w)/E*3�~�^�U�A�7_�iv���cyhۗ��C��Ը��|���d1c$�q/����&�@��:
�Q΋E��5�T�K�+ؗ�O�h_������SŠ��t����Ѿf��:��#��R=�81�?AI�n�m�
�v?�G"#瑬I�52Z݆,����\Y�+�����Hj�`�O��YO��$��an�R�k�X4Z�$Sr5ǵ���fl��X���`��:T
#�&��}%
�(/J��I���)Y����e5�܊40��F$������F�w��:�|��M}9�������q}U�^^��Y����+r�!���k���p��Ӭ��5@Nu_���Q�H;<߭��R`{�a��r=�r8"�Pu�ٯtlv�W �y��DC�����X5Y�I�Eq:��+�K
lU��3�����$�����Z%����*�̝�W�GC}��|l2>5�(� �/�.���Mmn
e�2H�� D?s�
r*����(��i:f6H(Kuz�r����>��j=/{oǃ��a$X�QA���}��ql&QD¤�s��p���y�́8\j��<W��/�ڣu�vy���_��� ɖ�����$�|E676��C*Dⷾ� �з8�=���+�J�
�=�y5&?r��,����IƝ�����~
�����Ge%�F}��H ä����Y`^��d���[��7���P�kۘ3�e�k�D�Q��r�w����%�b{l��h�!&>���<�y���! ��&ԏP'�\:W0�7��̋ݷ�O��{(73��t�c�A�%=�`J���YS(�H���u���|QM�	�;��m��i�h��dz�)=Dpu��F�]C�DyE�蘾)���w��QR� 5=	�LA���c(���'�ش������g4����ec}M~��~T~��H}g�x���u˓o�σ �wʼn��ݒ�xH���ZYÚ�ԙ5����r˓A��_���o�4ؠ����zq�uW��>{/�'��I���܍�6/�]w�#�=�ɨ�d{c]N��F�wPn��kث@�-�����d~�,��|��mn��p�8xX�-�ɩ������� hNʹ� r�-7d����O����ϒ��yH���$�����llo�So�In��:�7A��_��P_��a�k�[U<$�]ϗ�)NOyʓ��}LΞY1XA?I	���0����z@j�k���|����n�F�8v%����Ż��c���D�E��M�y	�HJZŶϠ\���4�/V�]q!���g<Kn�?�崞�:��+H6�ݯ��b��ȕ�O�c��%3��r��TH�s;	
^���%�O"�E��zl��Z�>5W�i���ל�n�O���Yg�;��g6.Jd,e�-.��JK�Я��ׅ�e���&C�_hc�����[	�Ę�S-�r�gV�1��c�~�l3��A?0��|���$�Ux�պ�젽�kd�E�<̟(#Gr�c_��k��k]ñ��c���D�ʷ��
>�R`e�!�a��v�-͔���gR:c�9t��,��/��O������z?�8��
�,V�<�r�^�v�� �A<��&�S8Ñ���}��0@�R�T�p2�<?�����q��Mip�����?�p��:��*ux���w�9����s��g%�2?�~������ZD��Z��``��j���bZĹ�wf_, |���$;���SMɾw��|9ՕY�\�X������`nZ���Œ����;��Ia9u���U6��1��e�d�fR/�ٗ�4I`u��D�Z�c��tm�=���<��糘���8�å]HF1(Ņ�%��q�.Ӄe���@��Y�;��gO}qBZ<�/2�R8a�x�o�K��Y���m�Z�����/G^x�������]��2Ǒ,I��R([0����d�F3uS2!B�V�)��N��Lmw�������N�Jf*[F�J+g���~�e}�J/&%8��6$��m4�oS���{w.w~�����:6~�]����Z9o���35��<�9�9r#���^��v/2����N����6�ifߓ�p�u��<<����H��o���K�s�7_�i.3Ñ"$,Hr8c(2�Yƒ/�c�u�b*"*gL�}8�;�����1�yw�}�+�D�^cvp䋑N���ƨVm�j��7�}���p�{&�A�sڱ[y��G��
g�I^���p�,�a����6�÷�ן�6�ó�������+���c/��4��2���L���[_�|y݋�Jv1�����}�Iv<f4&�QG����oz�Ա(�/��ο����
�X����p�щ<�cFa<V@$H�#��B�?��KwcC~��ON6GX���̈F�6�X�z�1y��,$���;�D��{e�Tn���������We��n��Ä��x�_��撌n�t&��2�m��t��*��b��Y,;���r�-��r,�j��ĖY�h�����4S`� 㡉�-�ة�qX�9Fa�HUq�˨&��Md� �f��h�nh�4�g��QEszx�
��>%X�_�_��oS��{�����(ʥ���eF~���K��,����/��ZR�?\(���Mtv����^2aH�l��yS���z�n����r;���q��������xd��v�l����Pb�m?�dBθҎ3����7�w4��\�()�|8�R X�fڶ�b.�?;r��A�%"�##c�&��Fu�Cu�
}K�=(�N=i.[m��l���C=���Q�m0�}<hkЙ���4�$A��F�����c�j�l�u�K 76��O�yQr[�������;���5�ș�4�ЬMFAm�r8=�
a��_'�[��]��09���ɋ;��E��;A�$a$�*F�>���p}����-i�0z�ȇs`+XP��+�"��2�
A}�#ؚ'�2�ۂ�@�
�q!���C�z���6�of4�YZ��GW��#�[	ͻ�$�C�k$oc9:�ׅ��=���k������|$<�H��l�<�����E�3���S|�}O�T�nb�Gc�iS�z/]5
��c�5�p} 6hm�	�\$w�fq{��J�ԙN���Q�)�CO���~%�c���/�u5l���x~�b�r3�͎�5��&�p�d��0���tU��\ɫ�ˎ�NB&�tюr�3��}m���uԉ�K1@󼚪�Y���|N�lv��ֽW���<�l'C�O��퍕x�/%rb_@�X:]O��.�B���#��H�kq.�1i��S�`����7�0��C��vK�z���R�b�<�֕՞�4$�hp?�qo�8}��<'U2!<��8�3��Y��S��I|�c��q�J��;�%C�*Фvl��þ�.��L	 ����@$�@� U�n_}4�(����5Z����øKO�^��X�L#����E�_f)U�x�A���U�me��s�fհ��(�:�j�R�R��81������(W���S�\[Ũ�l��<�X�K�\Ĺsxv��/ �(S�\�󚭝�J�U*��_V`/ȍ�Z]�1̛Hj��l�r���ߐ�A@��{X(w�\��_U�Ak_����\A�)��/Ս\��U�rC3�v�����jJ8��%���o�VA	���f�Y�GG�<9"���L�ʑ�~4JAU>S��(-�\���̸Ƭ�:�H9�XR"μ�G������d@���c�T&��f�����s�VW"�d�}0��jd{�B�i�>J2��V+sZ�Ҝ��*T��E��;�I�q�7��S���%��4Vn�m��,-�eI��dGcaQz�0���:^�1<ь���2W-+�xf���*i8��g�e�vy�����Ay��K��LS
y�
X^9�j!����\��Yw�f�u4�M����}`}��ޮ9tD����1h�Q��s�i[d�ɽN�$4Y� �:�MP�W�&1���l�ڼF���~K3:8{罎����������u	�⶜��&�yN	�<����3�!d&
A��/ԥ�����v����0��c.((��rg�lϫT4\�+j�7$)Š#�wJ��
�f�H��XƉ���U�ˑdQ�(�}�� Hx����d{]fu����RU,ϴ%���omcM����y��
�\�\���6z�k5�Ѡ�o��[�`ۓ�Z0X#��P��zDoW����<����T�@�2V��c�)=�mPn��A���ۓS��H��1$����`�X-��1W������-��v�<o���dF�f.�rckF�af��c���S$�� 3(���1�/g��{�/x�W�С���r�y}�$-js:_���ޘ�EO�"� 	�s(��p�Ϭ�>֏j��>%�f�pn�D/��郶���j�
���&Ƙ���
@�s�d�����R�/�w�/q����t|���"���V����6����� ��Q�)[ڠLns��碽Ip8s��m0`��Im{��p�RW�K�dq����HGr8�%�����7�^J�8�V�7"�a��䦛n".�K�c���H��M͝�í\�ù���$>(��9I+�YL̑�o% &�A���Ŏ�p/��;e���9Σ�/��у#K�d=}���I�d������b�>I���3 J"b�n�{�~\��1yM��#X����HSMY
p;��f�������+��b���������w2�A��%Y%�Y�a�gw�i~d�/q���r3��<�������,�����K�@�N^��R��N����mr!��%�����e
{�f%sS�f�y�B�f��M?�lڐ�yxn��SK���d��2�L��ߙ����������S�����L��᤬�v���F�H��{6\{~M�rd3?,١��=�K�r/Gb�� -T���y��.�˙�����YY�wL�{��fg�57gG褭����'�A�@n�{t�z
ӝQ9e�؁;O��N��t�Ȗĥ��t�C��Ǧ3��d��o��,�IB$:8�q˦8�s�Μܑn媲/Gn�{���p��.:�tv��W�C ���8��n���cۓk0*KeI�4�‘|e'�h��Nd\�c�9�C���1ߙ���)
���؍˼H	����0���all �|�B����a2����X��a�0�ɵ��v`E���=O��ʋny�\}���G���~$�?&_u�
�$_���g�p�nq��}O��*�5�8��ZoW:O�\|`����g�y@��V3O��<��ey��E��:c������n�Qn��J�#�p_�\�g�x�\����z$��'�w�mr;���hK�-yƉ9��<M��i��Gjr��<?�^_����o}�<��A�
����x�|םϑ��/��`A��k���?����~�<���uɄ���3�U<����m_w���YO��o�	l_5�#�ߕ�q��y����;Ѩ�+��ty�3��Eмf����{F���ଢ���dDx���o/R�C&�k���ӯ��KwpC�3�4?�$N3�����f/,C�x�ט��H����>=���+��取�)XAW����)��͐�!;�N�6eE�њp8`�>�1�XR#��W*[�����0���
�X�=F�=хabϧ�±�1���{z��L4��4���r^#��"�=�RU��2A��Q��6�i�.�eb|��Ub"�XV�d�v�t���t��2
i.�,��\�(j~.2z��RE����D\.���>�~�F
�Ǟ�T�xE_�2y:�j[	���KXD�8�륀��_�/�b��l�@δra�%�ΐ:�]��XC��J#��j�U��Ken	��r=�0�Hf�4jb�M�!͌@�Ґ[#�-���.
5ζ@@4���\es��n`>�l�~V&�J!�By"�EX�lj�zs~��c͜a�
��(�A	�.��.��xE�'�6AVv+%.H�������
�Ěߡ�M�;Fi N�v�8A21'�qyL��~D�쑴����Pj�s0�ěH�h�?�-�?�}��#տ���7��׌J�Y!�@H�z?��6�Nυ���bC��R���x�*Ϻ�,ϸ�!W/���F�������sc���,�}��|�Sk�'LǨ���x�rcF�~^�;�c�<z��Y���iz���JxҵWj�JӘ.���Pζp�=.�AA�_�P����h�-��$='1Z�6�@�����Ś�czx�:#\�&HJ�h]����Z1^�����^��1d��d�H��z*Òȴ�b��K���;��EN��/#�'�쾱�$�AvT�y��Cz�$
���njK�("Z˵������[��5k�`���g�5Gh?���O�Ȅ�.��}B�������R;��-WȦ��`�X:b�ЍU��V+�I	ЫrlY�2��BE�,�G�X�(����HM�	��@�A���u1��^�<@ێfm>����)kI3�"�d$'D��������m��{_�S�c=����*�&�j]�A=hc��$W9�rD�aG�_
@�f�2"u{�:P�[h�\��0�����&��&Q]�L����K�iF�T�G�%A��$�`�b./����w�\:V�c:/#�8��<���<���K�!fOr;�Nf�<){�rz�<H`J�.kV�8���僊��Ȍ��$*z�7D�0r�ì�D�%��D�Fc[�s��1�U�+��
��1ˌ>W�~�>J�J
�8g�D���3
�$���/��u�7hc�
�����e�^���:�Ko�u��}ɗ�J^�7���p�50Y���Q�А�v�UP�"O3��2���o�=w�����r�'��r�`��P�P�0'U�as��fkG�o��.4��Yp�X����of��o���ྍ��8��m�G͈�:��
�m22�bZl��| �
��^}fN�[�_Ѵ������� sP��u��m㧯�ZԠ�I&_%7��+�� �M�[%���Z5���ˠ|G%�P�)��>[����d�t�*��n�A�f���9��*�5jo�,O	�P	
��̜ �W�=���o{gO��6u�3Ba�a_��/��l�r���걙3Q��:��^�*4��z�T�`�����1Y��̔�u�;=�(<�祓���L�r���qe��Ҡ���6�e�r��ۑo�����7�yl��b��Y諳����4}�!<�
��&�ͬ��cm3�Z_�)�i��w?��f�?vBF8�6��H��f_60�l�Zƽ�}�|�����m鑔�=m�n�d��,SΫPqM�l%)�P�k`L
c�n{G�v����<�]�]��f���E1�mP&��ONv%�GHv�n�o�I����#;�r�$42����$��vJv�3n��)�i	�$�mX�C?�����81����dž#;�Ÿ�0��Ʉ�ǃ����of�x$D��8��YN�Ñ|#���il�mĐH���VbP܇8T��C?'NE�9�$;�{Y�Y�[%فc�|��I�8�rw�i�ƌ����{F��gr6�����c�r����on'��HGnd����w��932�7��)��gMb Kvp;��,���6��r��X�$v��<��n�Q	
b��'Kv�'��8efjd%��K�s~ 3�>���Rܖ�%.�ݙ��c�l�$�������0�k=�gdq����^:י��],�.����/��/s=Yb
�O��jSI�^�0�I��,h^.�c��w�'J��
/����g)�$K�dnZ��e:�)���x����+fj4��
�V`�����;4�f�� ^V�*Si�����Ȧ;�m<%�g�B=�e�lۀR���ӥh��p
��b�����X�+��`cr�����pرP'�V�9)�j�ɴ�r��{��N?�����
ox�T�;E�s��	F��;%���;�*��AȈfn�����ީa�m%����;���1�A9W�4Ã�iN���KFg1�^"���N�2;x�܇�U`�;�\V��T�U�Vc�]�s���Viv�g#���8x�6*!����v�6�������R3�D�uBk@�������hm��p,m뜐d�Nv,�����U+i���o/D<Q��!�Z	�0j
�jE��*&p9,JJɒ�:
���{�R^~�/�#W^%Ke,�RtrϒS��/��Oˑ���7|����,.ɛ^�j�C�����/=��"f�y,��X0�2�Ͽ�I㫿��W�(��K!;z������k_.��W������_K�y�d~óo��>���=��_�-����鵯��^�/<���^��"����gɯ���ʍ�>I���;T6���-��,�g�BƓ�?���W�)��mJs�/7>�����߼�#*��5�.Hy�{	������w��d�o4�_pۍ�=[�\D���A��
}�?-�x�_ˣ�=,J���$���}�g<�6���C��eu�}�\kI0�t�B�\,h�5�m��1��,4a��83�vG�a`+���G��t}J���#��C&�RY"��Cf?�L��1dr��<Ke\���q\�w��A�
P��8M-�����e�B#wB�b(�`4��zp0���nG�XX��M��/bc�힍�PņX!����P�|��QyO|G�����5�e?�0d���{�@)�JI#n����,�=`�H.o%GP�9��*Pf�X%>h����gB�����<��#qKy)fk1��R]ӔUɏv�:t�h�*s��#�-��y��5r������,t��`I�RF���l����Ѷ 
a����<�@�S�r�(�C,��b��ߥjE<�%a�޿$��@���{�u�C��(�N2J| �J�����p��j�-�=`��D���O����Q�{Cr��=ʴ�3c��� 14If4>�����oA7�u1�{���,�rK�<�X�xf�l��:9CD�(�`���U	���k�F�@X��w¡�������(�f�"�h������z��$FE+�F�|��)�1i'�M�$��/��I�~�l���/�/�%��C�?�gR�4y�O%2J�.h|�Rja �9C��J��I?�8쏌'F1�Ji({X��.�(�'+�N7��W�
e��T�1$�h�d�P���r��)�o��NJ��!�	����a�ԅ���S[�ے��5��j�./�"�]��[����|����x-�"��A&�r�]tp�㡑ۢ�Kh�m5�g)�F�Y�@��x�	6�5��M�ֹ���.�����L1�f	�gCbe���^M�}�O-ͱ�}���}��(���d�������P�K9mS�&�O�l㹣
�e�5���>���2>�����);9V��Sm���晁0uas�#�Kh! ��wF��u뵜�n�枧ϥ7�l�V{jtL	2zs��_דj=�̵ẏN�WB�|���P�~��3JxQ&�����K�����M�(�1@��ї�\��7�5�}�/ș��Jt/��Y�������b�@���ې��ui��.n�e��zZ�ii_aF��x���ċO=3DO�'�������0�L�㔯g]峵�J�G&�� ;�v�0��X#�
�)Qe<;LV�9���ƌ /���&����0�{�,�b�����;76WQ�$7�{P���ӈ�#��=y U.�)�L~������ƼfNPҊ$�hL)�b�u±���������sXs+5)c=@0|XU���I���l��EW)I��v�eڔ�9�_�^��;(K����>$`����0j��+_0�KI������[�"��&���%H>�-�k[�:�җn��!��u��gk����y��:�e3�"�A�?����]a�^���TFɷ>�����JC�o�k@�H(�15�ـ~��25Ra&h��ra˨����|c.�Le��:��+b�TX�i&m2�K��؉�J���d���ݺ���A|�L�:}6}�J8q��>71x���b��~)���;����+oH��
	���[*�8�z�,�`���gط���U;�u83&x�|��#j6Vb���m�z�c|Y'zo�j~�yj�PTE�l��rz��6����a��
˜2�#�Lj��qJ���ų���u����O�l|G�x�mJla-�u���E��J�p�o2��j%����2�&��]�0�i�w�Q�Y򸞒,�]�^X�I?��:�Ogh���f�l��i�F�k�v}�G�����0�h�ʠ�Ѡ��Wz6p�3Wc垎K�d�t5�ef����0�Q��?#>@���)���~z�@m��),V����}b��T��}�RN�L%~C�C,vB��z���W�b�χf���l��8Ifm�q4�&NB��h�:	��ʑ+��l���<?	fqP䦛n�rq��N%�)��o����g��ؑ֓#&^G\'#_��b��6X�{�|)6F�̑ ��1�<���X����x�8�w��sWq=��]ҋ�8�{���o��m&�Hĉ�����"�f�qŘ�36wX%I�'�5��S�����M�O�;\F�}��P��]{���x��a=��T��`=��y���x����f��Y^V�a��Tq�W�dz��b7w���eBT\b����]�H.��!��~�2��g��d��%��,�!�y�Lk����n�\t��18ޥ)%��e�����wCc/4��Y��.SL��JY���x3Tz���)C�mֳ#5G�L�GP������Y�)��F�e�f�ݸ���.m��ٰؐ����{ϗ%2<�Dr{����|�א��l&�6f68n���IW�7<;v3d�#|v쐸�Z}ΐ���{�o�/irL����$_d�Ih�=�dLG�In���{2��rUw�y'�g�c�]Ɔc�)qŎߙ��#�6v���ʘA�����7��} �����98�P�ѽ�JW�{q>x���R� ���Ly��)6�����IYa �]j%_������ޓ��ą�h�N�D�k�$C�L6'�8:qp�_����Ӊ���������0N�*��!��������<�g_y������F��Tr���<��廞�,y�s�.o�ڧ�~����jy�7�=8�'&����|^��z���+11m�o��?��@N|���p�&?�M/�<�i��^��K�����'��ɟ�ͧ���#.^1�fJ���w��{>���+���۾�[������&K���@�!T_�`nj1�z���5,�ʸ�J@��D��},���{��#���%��?�/�|P�����Mo�g�~��݇?*�!��|XV0	}������k����G0������C��zq��%ϒo|���ݏ\��ӏ��������̛��7_�`Ǔ�>.���/�k��N���?�{Q�� /AY��ߠ�a`{,��U/�+�/��r��9,�4���͜��f���PfD4��#��$�mpr+��LKO���sg���I8g<�.���7�P��K�g�L��{��k�M�	���T�k����o�&�b�x.�B&�Υh�=jT׀:�x7s�hT���cv%�����%������N[".�<tR�������5��$��)�-6R>3g�L�R�#C|x������d�FϢ�-��\Ă�祝<�͂����7�֊Xd��.H
�5�k�##}�Z.pUi�PE�*)��%�ۧ����{Om��J
���l��5	��~lu[�D��la1�����W���%Q��J���zT� X�T@�Pn�#��e�d��P�)㰂����$����W�B��J'j��W���W �����
��I�-��[ � 
u�IZ���8�
T�n��U�d����=�,�	{��%���\�K8X��{r�c���B0��| ��50~��C`�G}�B+5tPs�����x��剭��>TjFƫ��L��
��2b$�xϔ�gAx�qO��߈oH8���?%�B��0�*�44�i��D����"J�dP�t�#xO�����6Sz7m��������qy%O?�Xn܏r0q�Q_�2'�˳��k��FL%����</��H��r�#G�sr�@Y��W����j�mTkR�3M�d��#�ub��
��(eІ�Q�	.@���-�K)�0�^��*�Mo�jY�vra�r�&�>�h@o��* ��Q��F?T)������z��y� ��i�X]��}3�9����L�� Z�r�:��)�0L��o��
�/�0��t��Ԕ\D�c7��Pq�%�1�Oe�D�V��h}\iTe�J-d���#�Gx��+�A��J!Ԍ�G��hV�^{� 7�pX�Ht(������@o0��9�Cbs����H9�A߁s�M]�����CԽ�O��Sk��c����e0�)ȋ�QVP7��u��^��WR/�@�����؃:.��cD��'�.�B����ӥlț�B)&���#y��轇�*H
�CW�hF�?r���wЖ���u������6�0��@Ã5�������JA���T�c���3k ��7��p���;�>��>{�}��gJ�"wVS��;�A�k�7��!y�ivTl*\]Il ��#qz�86c��(g�� �z��1�E�$�����=��-���E9�)��� �AәIV(�4z�}�SQ.�>Uw��20���5s�5p^G�Y9�͢�%��L�--�-h��}8M�5���XYٯ���H���O	s�l��Zj�l�>�Q	!%A�=��=Fʯ�]��=;.�����x4h6���)1�{_�:��94A�:�=Kf}����G|?��?�^SV�v1f�A�T�H�΍���3�|��1٨��^Iv�*���k���3��RCkۛ
�S�D���+�d��dOL��"�}�F�E��0L=)X
yf}�LԈ�SiVDh䋸s�#f�:5��ܗ��zM�EQ*��s��H��*���#��w�$��X�C4@��z�)��Z��KD�sÞ��	4���$8�`}&�D=P�SfAجJk���9v��i{
L�����V))��4�)8���x��J@�_Z��*H�ql={ƚq���Fjaޛǽ��L���gN��+����m��翋�tqkCή_4

�����c��#+��z�g϶�~b�"�}����s���/K��E1AK<׈�OϹd��\��E�ߑ�	-���W�V��*ƞ�5<�6�HE�3�Ua��f��bf^�w�9O�,�X��߯Df���Ti�|#�AL�3�����v�5���Dvgq
Gv8�ҳV�z�[�63C�F���#���{�|Vč���A��	�8��<���v'yE��e|Ы5��J[_"���+� a��B�bXN֊A��Q|�Xq�{��gp/�>82RΝ��,�3<g's�IGv�q���∻�!��2@��q�+Sfxp%��ŕ.��H�'�{�Nz�8#�G����g6�F[DM�Tj�e�$����o�k%�I$M��q������ɇ>�!��qt�����IF8,�^���+�+�v�}��}�];����r�@���\H�,�zM+���xYl^,0Kh�yl�>s�yf�,�o?��ORF%^����7K`8�#Cb8�?���&�7����O�5����~y��ʞ|
���{�z�^�I��0L�y3̑���9\��œ�����,!�=cŗ� �R+�#E,����J�WVꊯ��
Y=���:�)Wa�9K~dӠ�>ܔ7���`H֜��0U���f�g�>�yv�^��z\~FR#k6��xn�;,�s;��IW����r�KU#3K���Ax�L�cS�	9_�P�&�ev̹�cZ���@G�!쐩O��w6=��W1���35�s�eϡ����6���&��^��RU��b������ �
�}��!	gH�ҵ�ôI�N�d�0��$l�������-ȌZ�lv#H��3n���z<fu؉�����m�d�I_�	��\�g�?|'m�4Ib���$ǽ��2I��e�\�<�+��~���X�EX<0���п�Yw���%��r��W�L���|�K��t)�$Iԗ��Q��[n��$�ݦ��{�D~��J~��_|��� &|y�7�HZ�P��?�o_ʙ�wz����?�S��|N"�cT�����ɇ>�L�ⱎs��o���c�+�z�ס+H/ɫ�>p颴�P#�	"��*��p�r@=�ҧ��Ï��_���|�3���
�>�����?�{y��> �Ob"��/֞����p �-��i�/�������?��0�H:��.���ߗw�����u��Jr���E�ү��f(��k�������G��!}<�>��7J2@���?li�v�W��~�W��]rߙGd��E�'�l����g��tL&��I�-ύ�]L�=X���`�%G2G�b��M~'�m�E��H���5L#�~�ۭo�=�^?�q�~T'�"�[I�34�)sY�Z��(GD�uȅ��nd���o��E}bO�&=�ʣyJ$���.v�-]4�N�n�``q����q*{@���[8'IV��=��Þ�*$�reK`��F�����mG�q��"�=��ŵ0�D����K�Ƣ��A��{e�%�ǨA�WN�DA_2�w��劂��@B�z;��n����<|nSvw.�poS��d���[*�Ч��H�հ��u�/��}}E��;-�#+� �v[%� ��XZ�S�]�_^�|<�{Ln:4/�7[�	ď��lV���}�8y�n��`�ND�!QP�ϒeot�'�(ڧ���G�ؐ���!@S��@��j��xod|^���V�{z�(�y�n�<i\CX��ǽSk`!��K����|NE�=�;P�JY�9Ԉ3�J�Dh*
t�X�~�d0�g�}i�G���8We6m�f�x��-��\�d�Di}
l$q�
Ǜ��J�8�-�=R����܌�������E^P&{�TC|���)���8��վ����1~2ᡝ��ȹ����"�׺��Ŗ�}q(g�9�-�Y�4:��U#yyƕy��Uy�a�|9��ȡ�H���vd^�Y�ȉ����eDI�`��
��A��4C��u/6�������b� /��%�wP&AM��4���-��;�
� ?%�Y��}޳�#�~�r]	TJ��&�����[��$$Gʏ=�/Ͽ��0Q��{�{%Ri�D\V���N�O.!�\>�m��H��d���F�A�#L8k�s���3��['0����6�#UA�TK4�ϫOG���d=��m9Be<�A(�>�Ă�2@� W��V�,T<�м�Ւ2�M�G98�ע�d�S����� �L��k
�����@�v�k1�7�}�������B��~����U������~�G�6@�* ���lA����ק��X���; ���h5|�����p�gW=�����|	@Y���<��9�+	�iF{�)zc5vgPI��M���"�KV��M�m';���5$7Y��O�!5K%i��u<{i=`�t��O��pu��7G�z6���}��}�2~nÑf��-�vX�7�#�﷔��L�#�#{lF�3+��q%�H��Dd�M�	���;nS�H�D��g���� 3�I
S^q��q还�F�[�O�qSIp�x"�N(�/�&�N�xݘ��}�n�1�� z��>�1A_����[o5sC=.�V�	4d�1���僮��x�r^�����I`���H� V��bLn�N�@D��D�fK0/SS8�Ìzg�D߆v0
@b���Y�����c=�
�J�[x���V��RQy��A��S���>CA� ��PF?QŤ�A��&�d����ۀ�&s�Y=|�J|�y�<)IE�F�4�拤@h�Qά���O��b����@%x�(s��r��� �I���H|����$3��A^6���k�)�J2�s
���ᵶ@�Gf�f�u��0��Ǫ�e�c�SS�@�eE)1�)�H��ȴWz�Ujj
Ό�9J�1��?�c�NJ�մ����v�Z�t��I���&��Ξ�m�=�`9�������\q?�C�P�?|��Ը^�Ąً�1���/���!�g
�.W�? ���Ub����Eb��+If��*��e�#=�v� U���
�Ĭ&J��`�7�4��U�N�Vl���o3�F���͊�����{e�S��5ш\�l?C|x6�CfQ'�M��aY��ۈ_8,�ۉU8ܒx�q�	�8u�3=�������8��Ҡ^�o��hs)��01�T�C���Z9���~��8����8��9� ����O�AR�8�+����7�7
F{L�Q�9��W����;y+��<<���� �I�]��x��!����Pb�_�s����2?��9��x$q%b�Vf�����V�*��w>�F�x(?#�A����A��O����2ZYY,�r���\=�ͩ��o�!;��Y��,��=�#H�wV�X�%HR�+�);�Pqo�/��dUy�x}+�.�ӕ���%:��y<���S�����ݼ;�.��_B|d�#�%2ߛ��ϒ��cɐ
Y'�e^f�w	i�nHfъI�Ǻ��"{L��Y��RϏ����{��Ζ.��*�aR29{Q=Vx�XQ�FS��V�/�^kNO'�c�#�u֜���u"E}��FT��i��!
4�?���E��ۦ�˜�6�#E���넓/ܪ'ˉ:+��m|�ͤ��;@��0�}��p��V�1;�v)�ي��X�7Bb��j���7WNJ����${���h��<�>��52%jėѱ�iq�[p%����YP[74�$�^,�d�F��}k�K�����c�X�N��)�+�L]Y��������y�kw�P�F-f��k�K%2nj�1wlew�UN$}&��P<4Ѵ�!��$�T�-���B�qL$��@䳰#�\�L()�次���-&5�Dl�(V˅jM��d���(�(J�$vQ44����G%^�>��
����!�Z/U�4N��OLD��~���/δ�=��+&0���My˫�#��3Uv����]�|��S��Hɛ����^�t��?����_����}���k�S�o{�<8 �:�������}�*������–|�W?Q~�5/�GO�������1)%��Zj�Q���?9
4㫯�Fn��i��k��*������)��������������ػ�'��!h�o{��ʋ�����=��_�=�<����?|�<�����|ϯ��ʈ�`!��_�!9�ؐ�~�3�?���	��_�}�o|���?|�K�}�{�|��|�<��#o��w�ŭH������V�����/�/?��ܗ'�T�m?�rl߼������>%?�C�)��/��(��6��T�z���?Y.�~��~]N=�|��M�Q�w��	Ӧ@����U���ݟ�A~ˏ��<���uZ�L�pmYd�[-o'!;�|azx�I�!Uf�_��79�����&���(��xu{��ed�fO�x���Œ#�t��H��$F�&фb�q_�8�	 �"����i�h������F���Ԭ\�=�%F����vS�힒��" ��֍�NBF{>��S������>5�����D�*u�~{l3N<3�j���"�V}�,F�9=��t��fS.^��qrl|x�J���~.�767��PR.��s1o��������� 4���k�5�r-�ap/@�X�5,�ǿp��5��m�J9�{ύU2�}�0 ���P�X�_��w�cy��G����}��Mq��~)F���(��rϣr�5��l����R�`�.43B���о�ܮ<��J�q���E��2|V��@�^{e��f�:.�:��6J�>>WA�zJt�b�O 0��d�l��5�� \���m�ϱ��p Lz�P��	#���(�7_4z������T���P�pZG<s=f3Y*���U�5I��?�X� ��F6��Z0�Y=�{��x��m8��*����J���e�����Yc����i�� �M�쵩G.Py��m��*$���L8�7rK�	��OH���B��'��J���F=~v!e�
��1r9f������>(��n�5��C���@#\#���u%�yI,��Y��I�G�B��6���v0/&P�kd�B�G��X���	�=�ޓ�;�cп�N
�7W�d	�R�]@}�
�c50���tA8n��둜����1�������a�ȸ`���?� "��^�ۀ�Z*+C#ΉF6��͛�ML��t��6���=��蟊���X����0��q#];@?3��R!	��}���0B��e@��>)��^E��L�
H��7ud�>�R)���t&d��u�u>�ӌqnֹ�].k&�#�@�֥D��m�0�+Ue��"g6�Rfr�H��d�V_�/2gnϾ��Ⱥ6�cj�����DV	�='�d�:k�Y�屶+HM�>Ǝr%�z��
����Z"�'
��A����K�1,�;�	��$Ȍ�f�$�Ⱦ���w�1%0�ר���v�U�y������,���Be��GF�?L���So��Ї��Z.�ץ����c����<�d-s�ج���� ��Qn���K�S�����jC	�R���M�W�4��D��a����k�"�QR2j�m��d�>�g	ζ{9��WE��z��n��~���bV	��#���Z|h3Fx�fk7%Uu��7���;� �R�}'�ҝ�]�_�i��x��1��$��thQi�r����q����kk�^ؾ��!� �o��*�k
p���P�#�)3E2��Qϋ$��]C(%v>7��c���}�U!w�<�-����a�]œk� �^)�\���M�)�4�
�bNK�{��	#Y�qFT�)g���73ԪFY4�cX�HZ1L�:�oXY-�s^D��J��u��j3�6���\�WQ�X�K���3q|��wĂ��<�D%�6C��_\\�y�Jh�|���5�@�|c��U-�
`7)*�@������:����$	��,X_y���9}�h[g��oH�*��p�+ "4x׺���$C���Z��u�Ƶ_!�쎭VS�Ф3P�r�x��x�)���Z�d	e�8�5c&��a���Y�#���c.���R�.� 8�77����Ң<|��@�Վ3�Js����/���v{��J�\Z��=���G.^@YAfG �{���Q�f	�$�V��$\cGh�*�"�Чuv�/��|`�~$�֯!�f�lp2�$#�h�6 ��[y�섇'H�m'��Y�xV�����9�����]܈�f�dmd�^67?�f�o��O^I���R0�}o���K^��2��d��W��Cw0�&�/��:qrE.0.{a|9>%N�"su�@��/w?z����Šy��+^)6;u<�����b��<{��8�r��1��e[x��w��O]����>m�C�2��M.9����m%��[�,֥��)�����sO�޻=Ƭ��N_R)�~�8��7m���j4�.�t�r�D�8�G���~�7(��e�B����oo9�pd�sI��2�T�cN ��r��k�DG��HI���oC�xNQ*���%ĉ+��9��-��g�I~��c�l\�ݿ��a�oR���PMV̊�zVJ����F/�+�
�/v�g��4���P�n+A�ȚP����4
(��i��ui�_`tXK�1�⤀��04Fx�!b'(^F�F]����Er$�����	�;]Ќ�1\�4�[�����⾾��%%Q�褖�\��-�T��^k�P<g��9'���?۱�Z�c�:��k�0���yN��|q�LM�-���bu��.6N&Hl�OF6�WV��E�ԍ̼�d��{��&�v t��xJ�Ʃ%<b�A��>b�Ę�Q����Hj�(�Q�G�-��u�ŅB�DWc��8I������㭋�P����M�#k��Zs��6:�Ol��0�d���veR�PU��O*a��t��g�[�O충R<A��7��;����G�@e"�x��S�B�Z�QX����k�/w(5@�e��u,�E�~�n.��. �Q�����β��Y�&&����g��x��Ob��d�;%��� �������r�����|�S����ίg��p�a�����$���W(̅�Y��`��� #������Ib}\��*�k}�
�h�~&F�����M�|����á�����<"����~L�dM`�Y\(�B ����=��A�������`Zܣf20lY?h��(�,�����H�� (�cF$%�7��$3�p//��n�H:SqsX/3A�{O&%�i�e�	������9�Ը����L/�ˑ�ԯKO>}��&�������b��긄Cq1=�HdC09N���K�^������~��#���Y0���s&�%f\�O2�Ee�H�{��Iz.��N&͉���9%��Fr��q66��[�Ҷ� 4�0ϣ 5
h)����E7��#K���>]����x�s&��m{���+��d�
-��F�"[N�%r�JM>}�'���U�NL��j���a�k�>�sKr��Y�xrh�.;Ϟ[����j4|���hT|sޗ�Xʞ|��(� a���SUI�f'�+U���������2�mb�H
�Gr��,�CYݥ�PU�,R(�Gҁ}�jI2�3k�+�_
URJt���+�c#���8{ts��df���=3�am�k�D}H�D.D����$�f�����k��!f.�}�Y�W�i�����^뤑���[g'�.�đ��۞�d�壂�e���r+�-ҟ$шg��M��J�%
>��r\�X@���LNXl�3�4z��Uԇ� �)��!�,b��#x��9�z(��E�8f���N�Jf��O9Q�z��ш���4bo���{�H�h�ELpj4Q������8�b����&��]����x ���x�G�ǚm�vS�1�!�6A�,%�<3����U�D�O��]	6�_uu]n_��Cky��G{ho�
Fמ���ʍ�L�ep����X�;:�χr��D�����F��c��������M�2�����NƐDXP2$�wD����F@5%VRς&��F�ؘc��h�P�"�i6�Y�()�ϼ8�W`]��׺��p��'��\��<�A"�e߉��
�fU�yY�ŹY8��#%|v��έ�e��%�
y��$��@D�l{M�����ɑ���5�S�j,���8��~��h�%�S���{��e���w�9�E����d�4_�y}������g��%N:qL�d����ZRZI��Q:����3-�s����SCo�2���h%��Y��Q�
)&V���2�}��9�Q���]]
�Z'u�.�b(�tc"3�$4���'
��f8E*C4]�u\�b(Š]��{:\�ᡃ*����XYR���{b&�{|�m���4��f�u�+=�g�6�:&���3�
��Y��	�`-G�}
b�����v��M�2_�ӵ���c#��	�}#�4�gƱ���.��kx
���l���F����c����k��g������;rՑ�2��1�����%<�*��VL����\��UL�Z/L���gf��b�s����y��2؞�U%�G���NKq�ʬ���sg�y}~N��\o�k%��e<&�Gi��L�30�V9��}O����?�k)��1�`9�,��:^%�3;�qY5
�f>�ǰ�Z���6��(�Xm�U5��Z+��R��K��_�ݓ�殎�*����� ����̲�8?e�x�:�'f�s�J�!zZ�����3�5P�$)�z�K\#�d��+�X����/33��!4D�W�P�C��0ۓ+'��J����v��S�L�A:��py�g�K5����s�3摘��O�C��)2���o��PG� "�-/�(��!��ִ���Y�&��B�on�9M�9�.�jz��0����pϘ�i�dfD*�)�S� ��Hm�݋�_IV��"e�#�L�à��Ħ����}�+���&���Hֲ�Es��[ˋL��*��&b�YSD�R�a�n�6��&��y���i@;�Zq��H�����xSp����y<�-���@&���2%nƗ�l�ݽ�k�$q
I���f�-��Y<8]f��c�/�����K��+����1c�
J�%u�y��w�X��a���cI��g�����f."[Kݱ��Y�z^2�^w�7v�N�$�}����}v��g���;t�z�KJ$C�r�T\`�!
=�5�81�N�˗}M��w3F��[|�/Q�W3��xH��g��M{r�M��)����g�a�k�9L6]R���e��p� S���+������e��2�37%���w�|Y��2א�� �$&LT��ʩ�3�:qM��1r�f�8��;��9�;8a�g�խ4�
�L��
�q:��?�"Ne�I5i�i��s�%`�3@���8��'^0Ĉg�F#%`\�\�(_
����}�ϝް#����q�w�%9B
��d65�
r�����j�H ��$A<��x?fr�լʦ�sF]�����'�ӗ)�d�٧z�c%&���]�/'<��ql"��c׬�{�ZY���2C�����L�����l�ѝ�FkH��3�W�RP�� F�.��U���)�k�X�śh�I"��΅F`H+�Q�%O���0��W�V������D�����t�n�CN�7L��yN�5��⊆�.��
Lo�{NsZ�<�~�c�H"7��}��EC,�ٍ-A�3�y�.�_��RjӞi��h��G��1$����MR�Y^�|mЗ.'�L/�L�װ@A�A�*�1"@��&u������
<�&���`)O�\.�1��/��/
H�C_�E7�W�gy�w~�f�pa��E�Yt�X��p�ި�Ѣ$�h�%lg���S1_#5Y�Alȴ 3��w�F�\
·~1��$��ްP˓�f��#��aJM�K�
b�,B
�����/�+���)�5	�OW(��Ex��+0��K	��O��ʾ����M7�2�����8�Gۉ|���ɤL�"��N�咙	wv6�n����ߗ�����١7�|jN�D�B�Ϟz6oZib�a�w�˴���@I�db��̂��\��0j�Y5Ԧ��H�}cZ�:�Ƕ�5�V�����L1��`�Ѓ���6@7��s 5|`?|p"kdn�1�cBzZ�*c�n~O�Kt�H~,�­`����Ɔ��^T��,�C�2̉��Wy-It_�;��L���</����[�͎.(Al��.��������^a,Ǘ*2�K��I��6@�u_�{����U+
9�ݗ������J��h��<ȗ"��G7v�X�Ar� ��N�� 9�����p��?���dow`���r��\uEM�A(Œ�F)H#�G6�d�>��+��:C��(��6��T�RC��*I1��v��φ�*�4Z�J�s|�rN�O,pA��]J��%�]	��D��Tñ�^���:A�����1K?a��f́�yJ��R�ь?�,��,A5Fc�Yf�5-N���u�b�GY�xM!�I ә�ƉY(孤����3C�!A�6^��?�A7V��KL��O�׋���X*��f�
��F���	5�$J�t�!8�����c���Wj����1���K��p1���XR�.<~$Y^�sđ�^bY
�
ԙ�fJ
�=5�;o"�[�v���}�>O&-����W1���r.�P�j*���kb���ힴzy�b��,�"�X�5{J���"��B�p�
�3�Iّ�H�	���-�5��\���Ɛ���-a���c��n{r�yPbH�~���%��G=�|� ��_�B(	u�V�:W�(䙺��&����"G��؁�B�����?BVhP�	r9��I�\��Z�@J8־��u�ي5+@<k���4x�k���~l��`upm �:4��x�Y.�������3��ʃ�t�_�1wc@W��Q�\�
�|�_ἇk�_����)asp)�%�}hC�~��ɡ0���d��2�!Ԭ���y���+;M�'v�C�e�q�>Bp�
���&�1���Xv6Ve�_�FCܮT�eu�����:24^Q��f11�G���wd	s��&�jO�-�fm)a�ɾ����t��\�u�$�aFد:_C�����GX2d��ܒ3$-}(���c��]M�2�71��:�f�|��n�����6x-L�Z���{&X�Ӏ$f�P�8��Qf9���wk���Cܿ��1��lG�A�ú�l@|f�X�
�q�Y�c�"��Lv�H�!�|�M2�Z-�,�nd&���-cM�*���1|�8aF?��S�-��[���j����H���H���~~A34I.=xH��ĮIb�@
�F�Gj |ÁúǶu�b]�\=�>����Ƀg��V�)���T`������d�gb%���8F��xdi��s K��"�6H����Hi�2�t�<\���\�S��ދ�j?%�}�51R��B�n_��h�Lf�0#�ͥ�h͞�,G��)��J
9�!ۯ�"87a�Ͽ�����Ü"�g����/b`Λ�������fw�O	J��;��a��'6���ς�b=�o�X�Y��F�~,�kWPZ�=%��փ��A,�+�Ӏ,ʹj�.څ�"��v���F�̢
(ՀA1u�Ϝ�F�*c�h�J�������ql�v8w`�"�13:�hO��b�cV��y��IZW9r�>?��8�b�Џ����u��9�!6��c�
7@"�](���Mm�r�,��#�a�(ѥ�R��P��0i6�z���HՀ��̧
V�C��� ��UH���s�^cf}�]��k��F�L��l�Ă���N}�}9| ����˯�ɶ��$�-f�M������x�[�{�Id�Z������bK@$CI��^O�]pz�����f��@ƙKI&�d�|՛��Խg����q��")�e�F�z�SZDYD<���S˖��^�~ֺ50���՗���F�39�uݲ^Z�}2�K�'�˭cc{E�KJ�Ǚ:����]��7N�ד�Sw �gϕ}���-)6�F�{i��@�H�H|�tㅿ��������<����2�ʎ�x<��B��JQ��&�w)��=���z��rv��z8%s���2��mpw:�9��ff�\�e�o�U�}wu�ك��NJ9��ԈN1�9;�!��<�c�82��
Kb;�!&�,��EcB�̿���%8�2�O
��w���&�Q�NΉ�,�\����dT�؂���zpe�y�����v�c.�D��1@�pԆe'&N�!gӀ}+�4rDH���a�6)�6��3��tR#Y�;�$a1Sp_et�k��hR�Lh�4"��T2�FXq�󝤒'ivDh�St1���t�.D�4*�
N��L
㢩�M�9�b�e�G���@�0s��Z=Kz�}x��))&�_�Y���a��BP-Tm���J��s��%[H6QSS�W��T.��y������̄�OLj�a��@`��"�c]�� �QIb�V�1BX�{%��LdRlg�&3ĥ�&��,R�0}V����j�9�z��W��8%�bQ��PP`���MhK��3ώ�?�d��NʝO�BVr%@����o��y�5Ǥ�r�ppakS<��R�����:;Ra�2��e[7W��'��+_�����?~�C�g��(�뮹�I^?�^��|��'�
�@�A���P�� c�D�W�/f�n�ߕ�Ѩm�gc�?�X�N[�IP0�K%�^|��H�X������Ƃ汋�rۑr�MO�����>@����0	'��HB��3{�HE9�������`:��C��Z��=��a�P�E�d:0�8�)c2=1m+�7�:9�d�3&�K�#M�s}Mf&�1/��$N.��'٩���L��^z�)�1��1}�nP����d�$fb�@b����\�*�M��z��L����L�5���
��4� �IhG1S"�i�J��.3�J댆X	R�u�}Ǯ�7��I�<�!�O=n���l�6Ѡ%��k*���2�\j�omm�WH�Z�r�}nT?#7��:l_|��4��!y�)2���U«�j�s@y��e�1"`�C��A������\
ps��,L�6v�)��� �
��x�4eyC�Ò|�Ԧ�z|^���~�Q�yH�̆Z���$ܿ*���"#BC�8�f,RT�Q/�)�G�ȹ{O���Pe	r	L	�"��G�un2�>
$�1��)�eK�!@)�8E9U�ѥ��|`�sq\�Y�#�k椈f�*��n�s���㿢
瘮���@��d�m?E@12`�W�A<J���ΆQ�x���n�Ѕ@b��86Q�����=��3
Pv%\T"|4���_�L �lLFG�PV�F��U�V�|����ZwI�G�XL�4"?!�S�Ŝ�cQ����	L��`��MJ�\�LW�h��*�9o�|	S�Y1J�2C$>*����H�y�׬%�4kP�NW�t�YP���e�L���+ �*!�~���[��*����2qg�z�����(�s
�=��DWo�3V�N8q����T�Y���V�A��=��%�G����^{(/'�(J�����e	�d�4R��Ց�^m�b-T��^�v�kC_�P'Vρ;���ދ�fN��#�<����ȿ��P��~�}��~.O�
`@��(��QNF��!���	z�x����i����i��^���+9i
�.����@���Ow=���0��d�reԜ��[�nw��@��U�Z#����F���I4�+r�B�`(���]TJF���6��k_pt_E�I2�)E��A/&̓�v6Q�A���އ����jj�����k��!��s��^ǵtt�`v�٭m������鳫J"��UJ��!v�⠵�R]]/k�{� I[��E��O�kw�����#���������6���b=Ey����xB�H��\�e�:$g��k�UY?uF,��@W�ؗ�v�5�.3��O��4���)�4e�Ϭ��6���ly�s��x��0]���{� �OYX+)��X��+�L��8���M}p�G�����F2�1���C�����^�����Թ9�V�]��o2!����2�������t������U>�J051ߠ�`�~q}s�9m��T6����U|Ʊ|de���ku�=���6ɻ�P����@��n�˕��i`�[Yi^�AqqI�D�"�n^a� *Z�X1�:V
���٬W�w���ľP|#1El@�p�	�[.�d	�s5?�8�+*
Fܷ�K���r�L
�pr�D��%�Y���2u$�����I�ϥ��L%8��~0*QL�N�@��=ʝ��s�~���G�u��pYK<�>7ԏu��9��Ʊ
x�o�	����Il��P,iݠ�_�JY%���E��}�Jes�&6��eq�E�P�)��C�#Y�\�X��9f���/�.Q��e��?���8/	���&����Pr��p�<�Cy3+��ŋ�{�V��u-^ˆ$���5�20&븗$h�����ڳ��T`�B!gL�O\7��;펞�1���,�Ƃ�m����FU"�Js���.	e�z�+������<�C��up���H�
3O=��!M�3R0փ� 3luu<��彌�Δ=��P<&��+��}H
5X‹]�g�ę,o��c��ݾIJ�I���p�7ɀ��Tp�[0dŒ&[����8�d���!I�hO.]�]n[zCS{e�ӭO���T)��'k s]f�?9�'���̥�@��U�.)$�b��7�2�ͬ�������5�����{��~zYv�$��O$��3]��`�@�~N̓��gM�΁���9S"��>�œ)��˾� ���L�(ҽ�,�>c/-[w��S�=4�N,����{~|���ǹ�����!��ؿ����L�}����l&H6���\c�-���4u$˨������̏����g��Kf���͹��p�V�&�.6rKqbR�Ɇ+ �O.L�I`˜�b�#��晴��ryN;ojsz#���3������Vk��>ݎ���'���w�n"�o�8f����l����չ��51�-�8��\��y������b"��8ՠv���mM���0?����p��>o=�.�h��NmA{�e"a%���-�ӥ^4�{͞�28.�+��Y���ܺFW~�ܒ��TS�"Œ�E�`2��&�'�N�DM�2ˎ�K���(*I���Y)C��F�Ö�f�X�A��gIz���Ͳ��4�J|��P��1��1`s:�bI	��*��	�BF\���E0�dC����&0h�R���2|�N��n�B�
�Llۓ��lM%f��7%V#��SiIK;ia�DZ��
�;*ݤ~'��/+S۟	)���*�Ln"���/�ΰ��

Ȧ�h��N<�P꟫t3pr9K�RX���^y����,˛���r�������iϔ+�.���G�!�$���A���U�Ey�s�u������4e�����9��n=&/�Q���*�<��ĥ�<�	W*����-��g>��_I>u���O���pT^��ϑ���
B᫞r�Y�c���k��X�A�)ԟ@oMͿG^h}�M���ɱ�
vS�``�{Ivp�������&�();&8�c��{}��}X�v�r�B]�Co�|�_d��#W��>G�:�*?�ӿ����iN^ (ѓ�~B��f3��۞,?�]/�d=��������͊�!Z��e�2�"2�ƛ�&����&���ܘ����M��~qv6���dv�9`2}_~~9Y��ǀ����_z�I�?dsw�?v��GƔ�d��c���<Jy�����5Cl��%����X���%jvS��-m�U+J�Q�G�Y4��W�$/6�������:F�+9����H0��)�@��0��د��k�d��>�ˋ�k�8�h��'�
�J���<�d��3V"N�mK�3KP,)�r���mE�,�D��4w�;���E���[��d<�>cuz��#rzkO�%L%U|9������e 9,�:?�"��G��B��\I\�)�"�ϑ�_��X�Ѹ󇛱�=T-����t^���H�{�5�;��my���"�Fbf���?��ώ��X���!�
��@�x�y�ul��9렎�c��##y��L�4�<dy�ؤ�o��ʍ�7S�����%��<R�f���+8�,���'�%�
�W�M�f�C����O�����m�	��%$I
p��dFOb"��e�@qi�E	�T�\Q��P�)�����W
��7�*����k��A�e�RN,�(az3pʈt�-�P�e�����{@�њ�2#���Ա7���f�d�2;a���#·|m����3+z�ς�,��3s���a �x��9귃|`Գ$�ӡQ�lϔ�d�D���2
�;�y��	��b�<o�97)�|����H�Mr��B��NwA|xQW�bE6�;
(.�.RV�h�!Iā<a)��Юjx����9�bGn���'�{�X�˒�n�W����yyj)���L��\�2�Ƕ:҉��}��4A�䚊J}�aO^{{(��@.�Zh�E�ˇ�#Mԭ�Nr���:�"�oU��:�ͭ���Tմ��keY��]�Hn�QwA�9�ңg1ށ�@�1�s����S��������yx|���6������-<˹*�����9moy�C�"ɪHѦ��&Q ����W���O�6q�lS@�Z��O�ʙ�g���+K G6�xn}qm�[x���1j 3��;(�^�{�c�$!�m%�����]�ca�,D��5��X�t2��z$(k߲���٨$3q�|_^�v�6���m�ĈuzG�86�*��xl����X��+�SǬ��Q_���	���[亊3���z��,Ud#?)#��\ap[7Q �}Q
�a�D�����=zzCN_ܒ=�
�1�x��׾�~�m��7pC�����`";�A��s��c}m�!#�c��4�t[=J:�W��k�H�]g��!���fsO���VYd߀�p�7V�_e���ql�<�L�u����d�t��������l�+��l�i� �"�͹psm|��a��޵��N�A��檉��'�bf|�lf��Pj_���\E�>*��	��f��>j�k�3�
�] ���V�s�d�ؒJڙl�@�_�b��u���`��JS��m�p�2IE#IEspz��x�R>�^sJ���>
�'��N���Ӡ�L����k��v�L�
�5�f�����@PԯBI� ?�K�3x_{��ч(D?�~I��` ��2��F��&⼏A�x�������Z,�…�Z6���Xl���\ �{�u�`�iF�!��2���KI���8�>��o��f�	IHp���$�S��0`ć6̺��5����̠�xNm�k
B}!��<���%����x�B�Jt��#F���&C������l5AP�5���|�������Ύ2n����5<k�a�5��0r�:G0~�0����U07�B����kn2��|\�X�w4��U�A��'4��rk/�ܳk�>N��ɚ�b�S�׮�ܒ��%��!.Hg���T�2ɬ��u��U��ݑ�i�"��I���U�Ӌ�D2�d�NR�#�ҰĒ7�ܲ7��-��o�f�t�8]B2���"o�K����v�>��2�M�~�}�����dT�5l�ޛ�R�9<�1�=�#�bߒ�8��q�k%��w�
�m���f*���!���z���ٳ/E�0!�G�>�<�������G>s����w�
^a�7t�o_)0�����e0�Y�?�
d��"2��ŵK|$���ʒ%av��8~�&�EdH/kZ�~�7�-��ɚ�\�5%�I� �u��
h�$�N�O������99������{�>%5T�	1�CN�ZP"�2
�-&����J`r�	���ɰp��a�##=iF�Yp��R��4e�#��j�1���5�v���/]���hg�b�Ng3����N�YYh���Wj�.�(c�i2Q\M���Ē��k�(VNn;�7�#��Ss5�d=�k��O2�I�^��q�F�f�=e^�}8��N1�d�k���y ��)��3�Ʉճ�:'�y�O�A�pѲ���F���IF�51���&��j��k0�0qI$0`��65:���5�	�3f�E�L&�,�z�(�G�UF;k�5�$	'-�I
}�R֨�D5�#��4�
��h�X
��ج�ۤײ�L��c�S7�i(*���,�l��y���`� ��{i�F�������3�څ��U��btmH�T�7)���?,�l4���o�-ox�:t@^��o0��"K���W����xV#y��<r�)��������=�8"?����1����|�c���-�Ӯ>,GVr��ST:�D��S��[�y�t*�򣟻[�|�	��Q��ϗ;QP��G���+��I^P��]Lz$,9ω=�+�Y�!�7`��9J��mۉr%�)�	�6t�,�o �%�k(^�W�h"�h�`�q;�|Y���{y�˿^n��܀���q�qm?��|�y���k��C��c6�)�O��$��}bt�̓u�Wd"_g��K^��r��N&��tb���҉��h�'S�������N0�ݩ63��m�QS��4�<����k��P8Щ�RfFy�JF&����#�Am��f|ű������GcK�L����7\�5w[Z��`4X>g�01/��Ҟ�7����Ԋ�7��卉����}�S>�-gAvlmnbѷ�q���4�=ާ���X�"5��4�A�F
���쑙@;���m.�#+���oȘ!��+�9��=����X��P�B^[�y���*ε��	�ho����cAI(=Td�?Ծ�3d��:��2����]��k�K��^^z�����0��T�r]z4��@�t�!���	���'p��׷ED���(�r@���^,��5ڼ�~��ljTB�Hj4�����̷��΃��-�<�Y�f��HH��F����r���(���0ޏz]�B�xQr3"4�z81}=Z�T@�t;�V[{�L���5�,@<�4I�� Q�3���c��Y{!�C�I�V4�E��"��+�t�nw�cf�ƥfnՠ5��$j֬g���23ނ����F"R#WQ/�x��O=F$r���#=r:�n�0jϨ0�Z��{���E="irj�Mo�^�d6s(��/HjvBiR��xc����#�[k�@��ؚ��~R�$k��Jˢ�i�����f:PI3�'|I���"�P�_ �	���J3#_e5���v����yŲo� <���{Rȴ�	�З�\3���dM��x�+�}�Y
=��@U��R��r��'W�'r�v^��}wu�@-�+ʑ̣��my"��pk�|Q�辞�$UC���[�!���$Bzx�@��*��=(��9�	����HUѠ���#ZV�8��>P_빱J�<�<}��4�2��ub��@��G �v{�J@1�a�(�m��fW}EH�nX��_�W��vk�+�v)u��w~(��i��ٳ T�r���բ�8eQ(��g⢐'�7`�pД�qs��{��U�my:a3�-J	Dܩ�rv���W�#r�cm8�m��RY���$��"�����<6Ϭp��o2��4�zƔ�V^6@�ZI��!���m����1�7c����~��U����[mÑ�b��їw=ע�����z����k�RY��P��v�Z�O<C~�uAW7��z%6�'|)H�3Ry�+/�$��ƃ�c�1�t�n�\�	����y���7�Az�2ߨi6P �G�r��i�u�I���sh��᪮�����9#�̌�j���Y�r�4D}���%9׃��oI�'�-��R�+���&Ae�ˁ�{���i�z��� 	�T*�AZ��y�Ql�(ݚM�o��9�	�|1T� �W1&���f�k�4ܾxo�	:Y�%�þ|D`OI�1�X��d��̽Gj�>��z��l�,�l{��~�V�;o#�n�E���zv?Ty�(�����s�k[-�L�f��lW'Yᜏ�%T�o0#�~6�~J�)�Ō��Ʊ>�]U�W���}���H�L��U�=�z`v���i7��j��gO���ϲNQ��/�L����2�	�CY���t�˥��vusC�h���@P�%�<*��]�a�\�tes�9�5�!vA�ě�����r.�����k�Ѩפ�c��?�t��.�i0��(�
1���91�v7��7�Џd�ה��σ�]�*縬�>a>��ahO�\%��R��F�u��Wf�r
8�Q�������|�5�2�T�՗Ƭ�r*�f�����6άe{`;��y�����8�ڵ}y�i7��Wd��R�ٓi�W�x#A����!��֔�5���7���L%(yl��֏2�f2W�@P�=z>u/�6`H���T�f
�t��[���3��	��d�NV؉2��?�Ř:��\���P��	V4�N�!v>���B���T�/%%ɣ���&�����X��,��jͽo+w�b����zf�e8��{��W��e1��m��Z��r��l��:֨�k5�䎀��s�m�Lgw��[��'�zm0�K�Ȗ���Ol]4p��
�M�K�9O�$��E{��z���3R�.T�xj$�/i���2uų�/��s4��[�$o-�dR朇�r�a�9��5x5�D0��H$���[ͦ���7�i�i�@�+��0���� 2��r�k��'u�~�}ᒛx�����2AٛͲ<��Na�ӓd�7Q��TA�r�1�mD�k��#7	�M����`ڰ�pr�Q_�����~'��9{�&�l'.�_'�A�L>�-6�4��\l3J�`�.�#�Pע�*��԰D���w�<lMe�.��	3E)�"# �ɤN���g��K"wn\�f9A�,��n@)�(����ئ�M,�p/�[�\q�|a[@?[���'�"�i�E7��w��!�I��\}ҟ�O}>aN߻G�\=�y�|~�N��9SuG�d�'�٨So�`/1�
�Q<I�|c��X2#� ���a:	4s�48w��>�O{��W�\I�_�/�U^���UǏ��b�&f�x��j�ћ�������w�-w�s���%� �~��廿�
Z�����^��k�̇>�y��ߏ���[�V,0�j��hCCL���t�ֈ�K��,�j�j�t�Ȧ�kt3ygk&ܱ���	&��--y���_�2�PFz�ß��tv��<���)#ۃ�����*�rrsG~�P�������QZ��Qy�Y��q��Oж���]yࡇ����D00��O�|L~�w~_��)���#����ޯ��j`���:�y���W妫N�-�_%��u�j}��c�O~Z�@�p^�yhM�_�#�����Ң���s���Ά���;d��Z�ڒ��G� �⃲���H[z�*����1)��̅M�s^�c7��}��>�$� *�0���@K{H�#�1�?����g����ҧY0���nO�ן�:��]�	�j� �������@9p�%C�0����>'������C�O��΢\�
(�ߤ^?
���t�J#��D�|)��L�('�;;�H7gj��*7[Q��4�#]<�e���d����I�x��dҗ=�����A�[3N���>I�Y=&>����g2ѨǏ>��O����&�4WWej����3%6ɯr&rPA}��OKL��N>�cE��yV�W��:�:�pLJ��ԍҀ���7�d��K�B��	�d3M6�踈I|�;��#��d��FH��-��g�H2�V��
�h��ݥYk�3�4Ċ����"jk�֬�b^��T��P��@6,��ղ�r,�@�iN�d17��X�⎜���2@�Ņ�~6l�4zcl��'�q��*�!ޔ3�5)1�@nk�"@J,� ;��jb�0Nm��Lʍ 6�U1�m�e�ג���.[M9�T��25�G��(�YU���ʂ,��k��3�'��#��(1b���Y)o�OrJ��'-��JN�y�����KEI�$�Df9�3G
MJy0ꔤ�E��\�h�3�\�������l�u��D}-7J�t{$�X��F���m�c��j��'�۸�R �Tw�}5=Xj�SD���>�F�kL��`%^��5b�=�-̖�|�&q\ ��P�2ql�X$�40��,�~���5)·C�ws�J�G�L��).
���
��/�ߨ����jc_Jձ
v�M��^m0P�֚�A0W�ѳ`1Ԗy�>�}F���,Xl�դ9Ҡ��m"	�?��80A9$�u��3�P��|�ّAl2�ز�Jh�������*�>�J��,�B5�^����U���E�k��I�(jJc�d�y�lxZ�O�<���	_�{�V)������z4ɱ#�U̙����)`��+�������^Q�J��\
Rq��KP�G��rb�*W�7�[���ߞ��@��؀`�Y-�֫��/�7V)�Qk��O`c90DCNe��|��NcoN�bng��OE����Jbh���t��Inb�Q���u�#Cfp��u�ΒQ ˕@	 �mR�p̟z݄c��%C����'�����U@�e��J��3�@A���1�`w�r͡2ƓP�+(U��t�C����e�D��Pέm��+Jn	D�p��*K�d���c5���ʋ��}��s���\ke0`[̹��#1�f.œ@.��h_��o]ۓ�*X����X#�)e!,3��1`$&q1��"�%<����JSq�����B�5^D�J��B�!�t�\[	�u�34���nXb���h���ݡ�k��T	Z]���
œ�`�M�;�5��rf[�ـU;X'2���<
���>	z7·��d�2h�M��}Ȃ��0�._��F��oIROB����%��|X�������	"J�Q����U�����y�|�r���][����+�r�98�Yhw��JPn�ۻhd�b�2�y�>���u}��ZI�w����s7�kx�^�7c����Yk�>�H
Ě��B��l�>��As��@N�?pyW3X�l*#[�����]�C�!1�3��8�E�u�u����@@�'�����[�m�����Ȃ�c��B�n�]6(�}�QC0� ��;vT��SF2���yz�����2�l��\X�Q@�[��S�C����c�C���Nзc�S��L�f,�&1Ly+��y�[�����1��<��c��M�Zҹ�NssO�߂H��RsgW���ί^�l�Z�����{:��w[�<m�A�3��W��x�����qJ�v;hS��\K�9=窻�[����z�P*ˑ/�K�>��B>Ȕ��MYZZR���9d{c�����kwk�e�XJr{�@.�>9?H�-w5���~�TB�d(�vkGzö�vw5W�8�g؀M%@�h𣙅�)��(�||��f��0�&F��2T���~?]����rg
��@����3>���iШ]�hH��y���50Y�pŚ1����{��(%����Ab�άY�~�}U��zth���r�
#��0��$�$�'Y�F�Ü֌9i�$�Ğ���`�J\�،�ۮ�t�!ht��[�=6��rcG.ء0��A���dnY&�v�lƄ�I����[��1���f�ֈo�B���G+^ڏ*9�L��g�� +I�[G"y�z7Uw����>
����%-���V�f]��e2ʙ��r6�Ĕc�S�d�_��j���_ZB�온��M���ߴ5��,)9�5v�d�>�?U�%}B����T�d&��e^�%�)�������?��)@�i��Þ����M8����˨Me�����S��9O���cɄWHfvN2��#E�f�{�.�$ݖ��Y��r��]!N#�����֎01#��4�ٝݎ8pe�DZ��y&U0���
�ZX�h_���ʗ|9���[�{SR"F�X,��4rF3ri��I[l��J
��I
�!|q_0Q������M26H^p2�	ި�G������+a���,'�� ,k��
ɦ�&�Z��h�N�#��\�f��� ��N��O�j��J�wq�nę��l}t� �����hJ�f*�o"��ʒF����_�����O
KG6c��O#�=-�"�8YY�К��{L�}f�T\��t�D�9��{�Sg�����2ڵ�!�;}F��-RPӗ{�@#_��J�q�Y��8)�{�.Ir��'�|]o�N���o��b��t���(R�(>>�R���jE�����P�V�@#�"h@ �`czL���-_��������;���m'�s�Jq����ᅠF�:�yFx@��D��Q8��}^�z�}��SO˓�<#���e4~��hlF�C۷�$n�
Y�-X[?$���SP��dK�`%�!Y��B5�^���W��L��?�f����g��ϝ�RS�/B��4�2z?�wʹ�5���ϸ�_߫��3%�.�r��g�O�x�H�	<:�*,ڊh3�����Ғ<��H�.R�R7����3���櫲�m��s+��3��|�4K����#����BɏQ9��o��ڟ��m��OI���>ό�u���>A<�N�3�j�9��xCQ�|�sۆ:����C6�>�y��3/���~Y�9�#,D3���yH�I��a��g��:=��O2:��xN�7ܫN�3�uyZ��b�i�Ld�έc��?e��?��� �� �:�PO7M\D/7E~�ӟ�����;��}d��T��}�a����vK���%K�R��6cMdl=�؇ݲ;���Jc��1(�3p���p�@�Eqf�3"��5�1��C㨯}uJ�X��H�Z�B����-��&/��M���UV�5�`�{�2�Nථ�]�����M�q^��/�1;IJ���_��n3@�VT�0+U�1�7t�{��]���`c�D{A_��[�бo�;f�=����9R���CP���Ø���O�����}�Ő�cO�O��d��~��H��Ю���J0��j����-HZ�6�g��
|��g���/�m�fP~F�i�*J4\�5pFFJru;�ٸ��!������`�,jr��>�N�SJ��͌��_G��
�(q��N���U��Z��V�~YƏ�+	�#A��U �^CS��
jc���n�H����t�����Y�V�����#�PD�������� drYH�u	���L�q�㯗c-�h(�;Zvď�
��s����kplu�Xl��k3��(Id2
��eRP���#��������G�����Q�Y<P��5 ��$đ��QR��wYw"G�*�Htg���U�d��1-��8���8@�U`���׿�@�"_��~X	�)�v�1�,0n�3'�Щ�+���e��.�F�)�N�XIM��UF�>F�HN�w{�I	U�bz�
�n#�G�����x�/el�*"��xβ�J���푤@�;�m6j]f�� y��,4]�u�Z���
	@�%��Q���ޫ�[����z㲦����+rbz[�Z�ܦ��	}��i�J�dF�����:��㨭k���<7�eAυRӅ��ď���q���,Ƚ,_�c�'���6k4��bU��0�� "^d6X�?k��w���
��w�
�O���Հ�_�e%(�mP�!��ʅk4;� 5��8����L�8J48e�f��j��bH�������eYVBoyK��z�mȦ&z��,��k��A:
�7P<^	�
�#&������"9��+f�$� 5���sj��z
��� �&�u
l���<�S�+�sB�s�(��{ڗ

��sJ�*A���ؤ<w	�j���6�6FoGnj>%����N��(�����\���0xJ��3Hǖ��'��ڶcv��O90[��Zd��}�?�(c���2T�Ebr�(�+��:5k�й��)�켓;N�H������H>wƲ�E�y�>���f���9�R4e�X�߄rI2�켰�)��zO��vv�>�^G�2���V��@x9��0�]aM�T��x��Q�!|���i��Y�0�s��)��t�_�"a",�Zvd�췦v3|�R��^��>d�6�7Ԟ������/�*��TW[ �6|y}uk�&�(�1��ӦՔ�	�zI,.6��M�4u�T5֤�:����40��A*8�[;f��u�rhzN�@�(�[kq"k^Ӕ������d(p�g�ĺR�ɭ�;��������ؓ�����b��qD�ke�d}c��T���'4J��X���Ab%�eH�u-�7ԝ��M�(����2
�Ӆҵi;j�,�<	Šm���'
6w��ɨ/������?jI���r���P��ƀ�$OL>����(.T��W�וiPŘ��>�^���)m�+(j�߿_�WV�8g2@�dž��g26Z�m�KPS55�P\�Ü7������%z^`=��A x�ȡCk���չK�MI�uT.�Қ58��`�31�T1�Aq-���@r$cV���'jr�L���ڊ�Q}jNm�zʬ��*Aju�����R�gCߙ6�{�ތIj2c	�J��Vi���s�e���-�k�H�&����˴},(6I3��A�_�\
�V��J\#�"�(�I�"s\��lb	�'�^��DF�P]`@�-\�Ş@qG=�=��e�yb��֖�'	��G=b ��d�������(x�^�ɨ�8y\2�>��߿�[͵ȷ/� ����B+��+��?,��qs!��;D�K�vƙ�J ��W1�?΍ :���>MP�ϓ ̧w�1�!�`^l�S��~�eYv\�������^���Z}����3�f��R��y��y��M$��?�5m!���c5G;�M��h����̾���%��$<��O��	�.�}��Qb���D/
'�9'�jׂ"{���+���{7Xc#��`-��C	����~7���0Ԏ�q�;�����ih4�Y�K�!f'-je��H��p��en�e�9<�]�?x7�Q\Y��P�w���V�( DZ�i��Y����a��#��?t .�i���0"`�A�Q� >`d�Lp��[0��Y�i@����r�����SLa�=ёֳp}��Lo��y#m�5��	�'6Ι�
V,��T���d��0)x}I�b�Ԙ`����^;$��|��}�Na
�6�]�� 
eF���&�>F��:��76��E@?ҘI��6���I,�0�,�}OBAr:0!����<I���g\=ѱ,���
�p�}����!y,���+)0�uTs�pi�:t�2���r��Le�D����7==#5}�
Ԁ��'���=H��hF>a1dq��e���X���1���,�
��H��v|�^��-��`�c���rc���X}fU�b�5�>���ͺt���߬b@�(ᮾ{Mg)�����"΀KX�$9u�Q�U�A��Ʈ�}E5a"@/>y�$�S-�.F�������҂{�Y�H��	�h��E�pM��V"�XU 
����`(Fxob�[�N�N�Y���Q�*�CH'���0W2��^��kҫ�x-25
��:��J,�ȸp���#�@;sJ���@���Rp��)������
H�뻎�=d�ANSa����Y��|�`E4u	��zn�	���S �HC�$��PDX@u��NFb2)Q�H��-�n~�Ha�,��Ǿ�r
�w���j�ٿ����)Q!�=X%N���p3}2C����ω��	��a���QHI@j��Xo�V��!z�0l ��6Q`'���?g���87��M�F�Yu A��l�h<�C�@�����y�y�ރn����N�%`����LMHF\�xU���ܷ_�cKi%D9�L��۵&�H��U���;��^V�՞e D����w\Y�ĀMH3@�_�y���)н�ې'W�rr�B��zW���EƔ�h)�ؒ˫m�վ�V����R�D�n�C�hQɑ*�+'�7�Ȥ�w=��_jr�Q�d�$+
�6t.*�OI��咽k��V���B��ƺT�"��1H���+�99Z���(Q4:��ɔL��0����d:k��zU.?/�M]7LR��س����k4@��j���20%*�8�E ��밶歙�"��n��q�:ds(}��	�7+��3%����@�W�����J¢VB�G�@�q���JFL�Y����d��Er�{j[�\�5hb3x_b/�ɴx��Uc����%�=w/VoT�֜_����M��FԈ�J��|!Z�xdPH�"�=2�<�E���cJ�˞Ig'
2ҳb� ,ǫ��@!X��1�pǚ_��W��1B�M�Uǔ�EuZɱ�Ih�O�('zk7a��b�>�amD�l���菖k����5�\7A���^'�"]�,)���@�h�G	���# f�]�e�&s#E9���k]fD5��|vyS��h���8� o�#Ϯh�����C�9}CKI��ޏ����v[�|A��hL���w��⺂�
����F����ɥe}���[��+�:�|�gn�Bz.�ڝ��^���2��c�e˦�ãb�}=�z��B9�����%j:'4;Ѣ�񸒙��z��O�w1׷�yYol��ܨ��ˍD:�s���c��A��zG"y�l,k[(�bra��V�D@[�,$�vA��V���˖u9:�>���k���q��Ϫ���(;��s�I~�n7�OU��D��~��1s�Ф5��j��
j'��S���h�z��e�������ܪ�+��W�vu,�ZR��nmE6�W���l,�=V�N�j��]ڹf�
���g/��‚ɶ��"\����g!�'^ò�s�k�$�FHR�8��;�XeL�0���:�2'����<�8�T*��F;.g�r2Q�!�O��~�(m`ȰMf6b]/�w�y����Q���vv�̄ļ
����273+S� b��$�@cH�"]�������"��2��џ
r[���b��z��^(��5@��>$|h�Ǚ�i�� f$���q�
�5�e�\�k�ww�	hC.�fM�^�HW?���Yk;;̴�-9��;��1�Υ��`ֻ����"��D�d#��>��)�ֶ7	z�ht��p^�϶����1I��T��i�t��ϧ4��麰���1�@C���(�1d��>��6�~��P�є�@}Od��?��b�!IP�ܩx?O�A����(�*��������IX[�<֑�������6��1�Y���� ���im��2����'��c}˜�W{c[�\sCm�y�"@&U������=���}F3��s4��i]���cz���yJ�����7\���$�@Dͫ?��81i�f����=���Qr�i{�����5��:�1kj�0iɹ���Jp�Lk�D"<�A��6�e�/-��\�R�nU	�]�{�_JY��=s&Wa;���~�S
�
c�6���s������do&�EWH�;������NŲoRm��DKBYeC��3���a���r�
�nMZ��5�t�,�ݹ���K�A\�ͅ�ߨ@�6!2~a��K���iB�̵Z�LKƿ�å���u:7V�9�"+[�j�豰?\G����Vh_��O�V�gXփ���Ee����d��b�<��Oq��{C60D��M���P��FI���<���e؆��I�x���A@ s*j�n���#��]�DW{'�y�~T	%o����=�����7U����Teg�����R��v��lAf��ۥ�Zf<���J��',G�Y�;! ���іPN�g�DyfsO�r�3Vv&'�2�j����wam�]�	�����u�'#U�Qp�Ad�M���G�ȡ拶V�~
#쿚-���i��p�L2���>���'��א�L
�dϗ%X�pn�� !�K��=kxd�8�l���bz������K���|>�&(s�����=�,���(�����h6�Z�Jt�`�k��\���-��#�_��������N��g�)f0�l?+��
?!���8���(��0�p���p���}�&	���bܾ�v��E�틌���l���!(��Jm�/~��Wu�v��<A�$M�mQ��j���g?@�8!�C�C�d�z��""w�qQ�\V�X0V�
-O�A,�3)���Ql��o!��^8�Ь���,�`g�p������z&Q4�b5?,��EQ,�v�i�Ee��@c�Z���	�ƽ��a���NQϤ����HL���a(!*F�o��ߖ���;︝F>�m�k�bLk?_�zE��xB�\�*W�\�'�ɔB��s���-�O�1�#�O�.�H4��K��ѣ�b�Yz�<c�/E�d��yp�?�$�j}P/92
`�I:o)�c7Ƭ�$�X�O�s�Ko$c�	i}��+��"ڋ|�B9jF#c&���,(F0��5}/�Ê���Ew�.-� ��"Z���s4��[�[��"��:�J��^�}Fպ9���:�i_�c�9�Up<���X,��pQ<x��B��� =����Jys�B4,D� �'�Ҷ�m;4DZ���ҹF��:@6�����9F�_�c�n��!"�����:�ꐔը�Ԑ,@��d�
�vʁ�C-��;��h�Lx�@��3� 1@p��4�g��3��oo�n�_]FS�E�q/u���DX��1��{7�,2�&3t��8�|�~�E���3F���9F��]���Kc��"^m)=�ZO���Q�]d��X{ ���N<��Gՙ�ө2����fIJx��D���X��/,\%@p��1*��;�&��g]��]�E�+��F�u�F�i���F�	j��ه$<�#�'�#`��Y�]�P��A����(^���;9!I�N�P�[�6�{NL�3����mɵ�x�ow�}���nAvhbT���]j�o*(�N=2�T�[��/�mE<OW��G��\��6���1�:��J)�Y���(�Y���O��Xp�22&�Ә!e{}Q��˲�zE��-JM ?�m#��pg!l�����a�eAn%.͂�sG�(eC#�d�
&��H���J	��K%_��߶mc�4ͻ<W.�*����H����
(��N��dvS��(�y���(ڂ��=F:���k��f��3I��K"��Q�5��xL�}��.�R��;K�G{�\�z7!�)�(��a_�sXo�Q�,T�-�c�����v��XQ���!����7$�y(��
�D};u�S�K?oPC�d �X�	�A+ž��z�"ы9:��|�v�����(��u�D��Ϝ��e~�,ϭ4h�����+��ov��}5J�]�J:RI�2�כ��|۫G$�`�f�(G�X_+ҵ�����.*)0;.#�u>B�G���%y�:�O-�\�����:���M9�;e�t��o�ӵ�|�%mˈ��43�@T5������Y A�`�&�$ ��g��`�5�Ԇ�u�ȡ�;�
>�d���4AH\au�Y�N�UD��(8J26�P���mVec�'7��e���<��G�yW��a}��׵�:2=i*%\}�D�쨂n:�O �
sX�/U��8]�����B൥���&��Xh��N[ʝ��H�,خmI{�]��y:��?��e�,+�;ڷ㲹���l ��ig;�U%D��9vpJA�X.�_V�\����
���C]��_��Ǵ��.�0��>uI��jD/��#{kYI��N^&����u���T�ڤgs3�lZ1�վ�-��P��3��%%º�wӯ������w�.Ҷ#+S"�;�0p�R�{���m���~�m��ʕ�3��,*^4������22�y���c �k2"�!c�s������J�ߡ�dnt$�ៀ�m�zm����I��Z��E�s޿�bٱ�.X�����*�hذ^O+H��Q�P���Bpa8_ȋ}P��܈\�ڴ �ڽ:VZ�P�cR﫴�nV�=Q@�_7аݞ!�lRQ	���`W�L���i9GHT��,��
���)�N"k5ul���
���h����n��frj��7�š��4�|0�a��3�+�O�ư�!;����4�*��F�;�
 AX��0`�s�3fA��uO�%^�"
�ĺS�1�uD�9��66��X�/&a�>��}�@.�)�`j�5peiu��W4��4(3��z��s柃�׉�a|w�����z��l�
�����=j�`�h�6�C}Ld����s,�~�{}�&�P�/���y4��訂ѣ�yP/��3��Bd-�,Ȏ����Eӷ�;�����}���Ұ�x����=a�Ğ8����Y�3[����vCFu>8>IҼ�CF�e}��X���Q�����`Fg���p=f� #��X�m�K��I/1���W���a}ؖ��e]�c��kܗ���Ҩv�DG0�]��˺>��"џ�����H���{?�����|�+�2],�N��s��88�v@K.���ǽ෤M�@������o?.�G��<�S��s���%��M1���h��0^.�m���/|�IW{b��ٕu���Ay��UA����ɳ�e���`!h��*�K$�W!y���.�XۻTY�U����x��8��
����J��6&I�'�fv�j��zA�~�Ku$/��딜y����[��^P�V�p}O��O�f�乫�r��>�ƺ��������<��y%�*$j�㐱D���?�5��,���7��g�Y��6�HD��bls�k�M>���TԆ��;�Z4��)Q�6�g��(o|����������?�v��6-Y�i��l�,J�:�`��}#+�� bPqD~��}���<)O�[�X�����}pR��y�i���ܷ�V��-?����|��|��3��v����~�6�9jhC�����>}F..�2����N2����~Tfu�k;`�
�@��T�����*��O<B�ʦ�U�2���@���� �?DN���y�%"1�Ͻ��qἁ>�ܵ�ţ�c��/$�	b5<�Iݵ�'��DQ4�K�#�vg��gC�k>��������lGC�62gB�"�"\����*�[�0��1t$[:Q,^|�Qe8(l:?;+[k\�p��%U���M��`4͗��T>�1�T]���
����_f��Eu��ڊ)u����eZ��~��r��Q������;��O<!�f�km{KF�:�y�+�)"��A,����f&t`��������Z��%s��9�o�yUn���Ї>� �:����7�A
2��1҃����Q��Y
�|�����)'O��K�.Q{EŎ="�Ν�t�����S�أ�ȡC��/?)���)�����ftF�H���,��wql2#>���V�7�ڤ����,@�E(Z�t{���xp�y��,�$�<+�e�/�t�0fC3�i���$��5��D����}?���.��l5h���nyDA�

/���tQ�y�ZK�Kr���α�	�ғO�7��}���a�#��
�	kȂj1�6Ϣ�����h��5�(�hD�`3��d���+3c��_X.{�Է�g��A�>���ȟ}�C	��Y�J��B�34
�P���<�Vb�R/x"���G��kZH��&}�y�X�ǂ������A�f(��8�
#��L���Q��p��#j���	�a]02��y:l�����0nr��l�dT�˒�̉|�k���Nп;Fv$�CR�^	�ދ=�3��>,PlD0�j:]���Uq��H
L��d��}Q�M�
���F���n����\/a�@�@_���,��QR>�Li��}My)�j�������a��
�˃��!LR2��b��')�~�&�Ms�5\I��[ҕ>cH�q��3v�����0����<4�
�#��%�	��؋}��.SiI�B��ɚ�u�^آ|���ˌ<59�c��;���$+��
�(y��Tf�|�	��>M=K>��&BI�u��Cn��ew��j4O�<��	�޶,.o��ܠQ^E���]�[�l�z���,�z�m:����'���Z���E͑��H³�g������&tck,.Yʛ>�N�
I�ށ+��6n��-�<,+X
�`��c۷ޓ�)Y� ]G�[�\ު��:�$Ď�v��e�U���9:UQ#\�=?&J ��0�7Uf&���‚�
%;��q�?��a�;�j)����P��+�������6ָNt�0��*��L��
l0j�S�]I�rD�#I�����n�K���/U)+ƛ��>f!���Bl�?�F��|�PO���M�`Z����m!8�5��牿�djU	3��)��|β*҂�>�6�:��sy1��$hK�L&���~�c�42�1�E�K���l.�u4���b����]�S�	�QȠt��)}��>�e�b�)�d@�d�� �@�+b
�b9��I�P�$�1�تW>>_$���˖��se��V3�������y��㥘�ȶڬ�����?��:]��YP�~�Hi-���5��-;�*@b	�N�dj���Q�Go3�&�I96ݐՋu�:4%�� ��:j�(8�w�+���������̿���}s5f�pm%�j��\��-��{\P�^���nD���Q����-�_1))���iM�V���4,�Kɔ���?zF.��h)y�U�P��J�,(���X%��Kڷ�Š�K��J�m�ز �J��+
�%�^� [�����ej!{
�.&��\Z��}f�c���:Y�;
��J8�`��ڶ�)x�w	������fڵ(���@CqJﯕ�K�K)��P�v��0�h���2��J<�pe��f�t��X�5��L=��羨���<��Q�H"��i��tN-Ɇ�sS�f(���q�L��J�ХMSk�NLE�w�F�O�#C�*���Q�w�
[
Ĕ%�Z
4�q{���e6Dٛ3y'�31-
8p�:
�P�w��xΥr �w�����=	�o��>[�>�/�|�B�`Q���3�#�`dG��X3a�B6)�7��*�W��^�C��B~���s�@5L*R�����m����Meț��p&b	�>��j����ف�?dG�E��!+��p΁�kC&fQ����N)Я���L)����,�n�M�]�������1 ���踾��	���)��b5����Zo(���
%4F��A�`l!(��H+G@��>�<��`{Ųv��H��s4���f�c�y�`������W<i��T���k��|F��`�E�Cٞ\��D��3"�s�8����dfn^�JnO�<4�@|Q��il�*#cH�HHL5:]f�m)i������H���Pc��WE�Ȇ�sƲ���J�(��V$�A%(�����0&��3
C����Jȧ~�>Ǧ�Z�� �cT�A����/�@|�C�� e£��X&��� y�1��T��P��B�`+N��H���vN֔���N�WQ�Q�լ9Y��/ R7�2�D$�ӔZJ6'u��]B�t�[�%�l�N��
��c�zbk�FV>dY�0ۊ�Y[�����$y���"�$��$�����:���T�����ǫ�Ɨ�f��wݢv�[�n��J<|�����JZ��:��Y��:<���?��g���z�?�D��&�@�%$�%�P,(ȱ�9���cj'(A>="%W_x�I��,�!�c��҉y���u�����&3<Nn��
 &���$ ����M��UI�ɏ/=�����Ļ��c��(�_�9��oKI�B���+z����ꍮ_��lCO�P�Xm�}�3��_}�)y^�A<��S7J����ݜ$�u��fi�Yބ�.cy����d^S�]�-`��\vNB4@,Dŀi��?�Ē|��ey�}��e�$��{(z��%�=&�����ó2��c����1�9v�|(K}�A{�#�xQ"����j`<~�5f���o��-�i@��|�_�^	�s�X[�/,n)�˛�
�W���º���<���}ǭ�m/;$g/.ȯ@�%�.�}A���)?�]��s��^�k+k�����y�Ǿ ��L�x��_�5��~ZϽ����l^Οo*]����᪮���(���y�m7�s������ʛ�W.<Q����.|ί��J�ƋmE�&���U��'jz��
^����=0���g?�G��
�,ʶe��	�%��)KP��'Ci)�I2�(lJ�9"B�: ��1����Ƨ��u�dwsղĀ/�:M�dㄌ.A��RՌ�k�(�:v��u�$-F�|��A�����̤�z��Q8}�x�Lh���C��i�f�PjΌ�ŵ5�E�)e�����ֆ�Aɀ+K��g�_V�/������O����>o��[O����<���t���2"oyp���v�p�I��겁t1�����Mw��=B�nisSV�̞��3�d[��+jl�q��ޔ7��4�Ҥ��B>HC�bp��I������|��j��������N��?{u�`Ԃ�{Q���GU����!3�ƫ��Z_jXp�� {���a]��oYв�`�JiN(.k��)��g'x#;�B�JQXjD	ϑD�����J	���7HC1��v�eA|�f����E28�H�S#��f�����/}Y
'�n9�g �n�Y�a}�ˋL�F4��̜[�V�k�d
%A=�6I�]5La��$�/^���ᵦ�	����Ԡ�Q�86/�R���'~�9ZX�r.�k��5<�����DO���y��5����I(P�g�ط�H3�|f�'���i��y����V�!�^#�'X�6��*f񥂰MF�YBD��u���%�:��E�{�xh�W�@�Fۭ�$�%�����ڰ,���1�7o����8u����]k��p���h"g�2pWH9Ϲ g`Q#l���h�3��b��VJ���T��?т<߭��g�T��X*�pnn�cJo��Fpiv�g&�e,I�����c�?�X1�L��K�������^V�K�G�5���]������g��E���8�q�< c�""?��e]���E�n[LPΧ�c����s�q������k�qh��0S�u�w)W2J0��ͨs+��M+��u�RJ����d�"ӆ50�2}0���z��_�#J�cs�A�xyeC�\Y��PB�*�Pd5}T`b�l�B&���� M�ƒxO�tGTe���g�s��ĖG�֮�����]�ȗ�2U��U6w�c�nn �?��*�l�L>PV��.�bE�ݦ:�9�h�'��a-���ߌ��#(\=��HK��'������D.)�H��ܨ�Q�Eä�wD��DA�E#�o}cIV��H��m�UG���S.Z����|�߻\��M����%N!NyJ�X�	66���es}�Y�F��;�6�m�mE@�aܽ�,�J ��eHY���D�#��$^d���*Ƕ3��3�>��dfR!]���v�[�����{������0�� �I2�Ib\
&�������l3P#��>h���L�gF+��]O@�c�>���Y1�+I����kkﰱ�^^.1�ODL�� �U�h�E����R��)�f��zW}%6w�:�D���%��.���[aS��Y�$d��
<�̬��vOv*��LR�KA�'#���$WՔ/*�Iy�>9|�-+-fS�bh���J�gG)15=;%[5�թ�o��}�4��%n)�x%EP`�_�y�	H���-My�c�ƻ��ru9p� Vl����
f��mr����|����=�w��r��ulkc�7c)o�e|,�ǶLjG��@��K$�N�)ɩ�݅u�*y���ٖ�

\��*�orD��6��ya�v:JAǾ����r�oo4t��H
�Z�N]�'��M]Q��S��v�Q7D�nqT�)�Ӣ>c%w�^�V�:?���ا.-d��_�9}�В�͎�c����
j�\�ʥ�csm�8.s33,H��Wd��-�u(�)�x�>���R��-ӣ�r��%J~U�������+����0��|� W"��em+/��(`��3�}��2U��I����}�
�� lv�=��8Y&�I8�s��R��|�FV�:��;'V�'�vT��1����M�t�Sr��R����82)��p�� ҝ~�^�	r�ע�V*�0vpE�zd��	���Bߨ���ꆂ��g��eqi���z��'����n�<Y���T����􀈁/N��4��S-�5#�է����|(���|�r�b��zFAK���f�k�¢w��zί��-�6Wdn|��(���\�z�Y
�`c�d���3W��+
J��s�Џډ5ݿ۵�ъ��5![�,&����f�><ñr��FGפ+W��-CY�����\��12.�/�>Hq�&,����#چyfi(rk 9�m�L���{ �:-��:^2�r�XCt���\h2^�}t�
�M�� Y��u��
}?37��UC���P����332���v�~�e��B�evz��gfedr� ȤA���|�g��}s$C@rDbu3 �F?/gs��&&&{]��&bU	�2����5�"Xk�r�|/1���Nlc�\�J�:��d��n1`#&��J�8hk:�_�} J�fU�+:���.?��cZH�фk� �nw�����������$f(()��X�\_���
��I˨��䐠]Z�>*#˰#�n_�㎒�:�Pn%J�	��|�Q�4����3�^����8�m��P�vBV
GH�@!J�?�j��J�>$�>%8V}�ш�<��#@��ٵ�����@��!��[�]y�ʆ�prN�Z���|�����NZ�"�eC����
`�͏3Cw]ɢS�3�	�ha�r�&�977��Cd?�5�S7��1]_1vQ.�����9 &���Io�IN]k�n�>qT�w�d��	m]�W�e�P[��\ZD��&��a������(�:?r��^�`��8i��|�g�kN�x��l'���y�JΓz=dꜧ���q�!�5�J�� �D�I���m�³Z��	�H�a���R�l?�YS��eM��
%U�&(�5��xI��w5V�J�t�]>��ZW�*I3���nG�u�:�R�tv�
>�3�C�$#���C���ߑ'�-�:��s��5�dJ�2�svQ픂,^\�'�x�9}#�bn�7!e}�n�9/�3�zI}���DI�5f̌���fMN�|Tj�W��\�
�C�ML��6�D�t���=���RUY�O<VƵ�o=z��2?) .�WX�ݑ�i]7\[qd�xX$']�0�2�����+�'̑����B횾��d�-� v�?��,��=O�>�2t�(��Htm-���ef�!2�넆�}��
��
����w����h�4���n�2�4��go�2�Fn��R�ɴ������s8hc��,_&{92UbѫPHF&n0�U�bѱ���P�m]	��&���~�Iy��_cz�j�#*d�.�[���,�P�vymU&`H�Q��v�nz��6CČ_�s9�N���v�b?��C2==+��#rϝ���O=-ǎd�0�q�)��We��%�A�G+�1E�i�H��w#���D+�k��W�R>���3�����Gn8$��m9}�-�Rx��y9x�N�ʝ�����4R��A���*�j�O�&��B�E_?2�,��i3�/RF8��ד�qc*��b5e�xIgiӒ��䇗���_�>H��Pd��u/��\
e�b�j@b�)���7J|6H���}�k_�L�UyJ��O�@c�ne����pU.50]���+//��6�Ѳ_�aA��u�-xt��Qeѿ�[�Q���#��r��t�$Ǒ��I�'!�:.���H�(�2fJJT�h$|C@&��)ȕ��2*b\}��k߲ӑ���܋�%���%�8�ًA݃p�`����R����^�:n���k���L�n��3;���?'{��]��(�'�g�f�=���\*꟯�h�{ܳ�R22ێ�0�0�>�\7x�c�`;S��E6
{�$D�s�O{8
c��d��ޝ
פ�$1�\��#�t`�k��ZbZ�a>6\���g�]�N\dd2���.�`O�SB�H�Pr�&�F�d�xUA�
�Ŝd� �������s�:uBf�$(�5��W._���:��4�����DT?�k|g�@5�Ԋd��#O��D"1�O��g231�~@֍�M�:1>*25>&QgCv��eD�6t]���9��t��%�O!��Mve�+;(\Q�cW��ؖ1��<1�HI��eJPnw�j(�Is�G�H�W���n[���VKba?#�}d� 5��	�4԰/)1u��٧�L�Az����F%u�2=7��j�v?�@bL���Ε"־��]����0M���mٸ9['sQ �c�7��2��	�.2	P����`��HZSM<AF��."�����}�ά[&�j�>)��ˢk�;`�F�Pj@e�#�Y8�gؑZg6�9�ht��E��X�Ȓ��pd&�
ai�a�讵��_
ϗ�Fq��"3��"�	�v��O矕�I�T3c�"u~~23i���2��ra:.�F+
�,�6����[DV{r�|���"`Ԃ�M��D!md9u�u��7���`�25��P�^�[��RQ(���m���X6��П�#
��8��,��fC���ԓU�,��	s�!�CQ�V�`e��t���
�&,4}y���ǘ�|���J\(��+7���&�
��6
ڏ(�kGi�9�7QF�F�v'��<��g���	��	|�����f���vs�@6��Һd�=�1���ѹ��l�@ĸ��-�u���NL�9Jb���ee��B�5�ݍ@^�#7�Jn'/
>���f��/0�l�|:���h%Q'�tDF�,E��ܔ>g�8�Q\�kl�`�+��l�ݫ@�v�����*YXj�:$X�M��5��������,f� STg]�FmSn;}P��W]�����EI��J�tF;����ק��ʉ}N�-���%a�ގ�+d)L�	�l�B����m����v���9F!Q�c��k��\�f�7�����Ax����l��N!���#�,I����g}����r�Z�:���J�st�`�c�GF-{�&⚋�#�/�����H��+�ۮ�o[ '�'y�PE-AHP9}����Fc�@��/�(���:�,�����,a_V���:܏����>bӯ¨�U�'�{�⃄@��!I���F6p�5�c��ϣk�%��Ai��꜔'a���ކ�,?�L��C�H�Ud,(YqIfԮC`ؑs�~fl�Ki���P�T@D�d��L�/�Idv�ڔ���v9_s���B�gR���eD$���3�@���ůQ^��Rۦ�]c�̬�������s�n��"�#�k��%��1�l.�ѐ0Cփ�˄�� � �R�4����X��(�Xіl9f��|f#kq�n���b�F:G����j��������>�֒�ls�b��ًe+!����U�q�)�/��t+���Kw#������l�2����U<��P��!�,d����J�a.--�_a�q2/��Ʈ��As��!
�6E9+�gSȕH �Y\�z�
�^An=xX:��s[K�a�d�rw��F1'@�U�Y�^�D'׆���bXe%ͪ�w���/dp�\0�!c�[�ѱ�B��8� �j�6;-�+��D�Ic�F	�r[-�^�,3k�B
��kJD7����}'��!C��ޞm$i$�;�,�GzZ�.oI��3����č�y�򶋻-���/HS���<tP66ZҊKipMV��-��<�b��g�PҠ#�t�mw�u�o��l��#sr���>ˑ���z�w�$*UdimK^����>'�J�]Y\��Rt�3�=�1��C/]^�Y���2�ׅ����2�/���2��NMw�ruGfMk;���O>����kJ+٣�DuH�l�~�2K�VW>��3��}�΀<q~Q�����ټ�$w�������)Y�����E%z..�0��j/�1N|qvߓ���M9�|����ؾI%�eq}Cnұ��G��wmL�7v�ֻBI�����j8����uS�1M�Q���r��>y��甐�K]I��5�E�%��C{�F�t���f��:6�w>����9���5ٯ�
�'�ul��HG�O<��,�0.��J2F��O?!;��.�-��'/ə�i `AI��>|Q��9��s�����1�P����9��VW�nm�}�䩏=�~��]J����㗟��^�c7L��g�䙍����,5'���ڵ[${%�nC�$��QR��Sb#s�ǐII����x^7��L��ۃ!qCg/~
�!YD���9�}�,x"����,Rsw��]���.��E)R�Z�~u�u�3J�D'�|9к���VScAټ�z��bP�G�cSR����ѷ�`�*TM�R'2⁡�Bp(Vւ>�2�]jp��i��kx�\UP��2R*��2�Q@��������j�©�XT�cr���<�L����Z��G�L2�����|��r��%Y��/�N�
5j�z�m5�V�\Q@iBn��L �Vɕ��'�n�i4C�9�����
;jp�S#��C5�Ը���I]L�����2��0��`�Y_g����}򪗿�@5<d�������E����ܣ�l��Av�����Ύ+�Υ:�=_��Χwq (|����"��3����i�:��'�T���@I:�CDi��Ď$�6��I������`
������A�#�9t�~��5f�ob�1�Հ}Žwɫ�%#��^	�կx�`0Pu���ԍr�g~ʢY	�ȇq�a�e� �݅�o�,Ɗ�����%�y.�^(|.v]'i$�s�(�i�S�׿���y_�y����8��t�0A�um��<�9>���vȋ�/s����kۜ���	��{_ɾː����-5���N����}�5��v����FnLۢ�=ڇ{�/ј(�U��O��8S��n��ɘ���23=��x�,0RY(�c&k�3�$IrLV8�����O��b���<�+рh�P�4�u$弼��e�����뛺�G�1a�F�*P���4C�hmm]��dJן;�!�J�+W���H:�z�T�JB�N��F�E@!wB�v�/�]��/��3�l��>D!���p~)O���X���P��ο���PoG�yK����W���R����9|XJ���n�!���z>'W6G��h�t5���en�,Վ��E���h;Y�n��]��˶��u����I��SV'����QiTǬ�hqLA���6.Q���B�G��m�j�T�
J�����
�<3eQ�(q9GY�|�u���U��_����	��(�>��0�r�8�p�vQx��>��p
�]����r]fr$&�'��&J<I�g�$��8}�Ώ��8/�>`*��M��Юܗh욖?d܌0���>��sx�2٤�gWțg�賥�`���j'�6�K����/�y�e����� O����NQ�\��mҥ�ϐ���K��w�pj��x
�>w&#��0v�2!y]�q�lܪ�84�&�9���d�]=�N	�H�\��|�k�P�D�'�^V@�%3گ��JP��ld��h��ஂ��BI>��s���:�֝��|zs]���XA��}��K�z�1u8�[m+hPQ��-����#uWr��	+ʳ���8*ʎ6b�tA��U��'��|�P U��XW��QDw���dIHn�Q�HI	:�ٍhX��[o���\�~`�B�[:V��H�õ媒����P��s�zCɔ}39<3"+g��q��q�ﷴ/�:e�/�67��V[��E}F��{tHﻔoˢ:�_��̜�^�H��`�.���eu{�������[\]cd~^I�JNL�
����hYV׺�VCFG�,H_SbuJ���V��Kuv�{[�\<#�:w|�J[V�dxX�{\�P�2F=ļ��dX�p]ϱ��:�㼇����8�+:�*3�.\���
��V�Ϧ���a͎�nO	';�LM@��2/�t�`1�>�utz���V�Y���LHHڄ�_�}v�'51ߡ>���F�[�ƶ�qQ� ^�r����c��ڨ?�8O��زu�W�w ?�p+�+F"$V� ���K0
u��}��e��G�s� ��mG@�بA	e��[�k�E
D
|���`��#3��	���
���	���v#R~�G�mo�$)��S.Y�Hȳ���wv	�:_����:_���>[������A:����d�"gY79Hꄀh�t�Z��a�پ�ʴ�ƳP��2u��1��o�ig�@�JǸ�t����ѻ��E<GHy�#�8+4�x��P��`�css���
����֕Ξ%���/��#��/N�F��5&r
d�#�D�W�X�z)ڎ+�/�����?���/�����?J�f��꣨�Ƃݨma�;v��aJ�	��~�Nk�C@�
�4�Q���4H���Uf
a,��t��j"�vjt����c�@;S��Y�< +���x�g`"�v<o�-CF-�	�;��#�kz͹�I�G���ɉ	�D|%������-�h��T����k;$��)>��.�?�
֗��YCA�<�7�INNLʡ�9q]ل�6��63
L5��L���&k�V�$�z	�SKm�"ߋ:�e�d\D��v��Yu,8�ؗ�}"�J�ed+���{H����1p'��c�_uMo���1c�g�����ڼ��O9��}�uz25>���K}�D�.m|��*�ܕ'΋�
�K�˻�4jqe�F-�`���*�j���z'*)��%���Y��%J<��e�b٩]a��`����]ZӾ���ya���Ԍ��G��s��^]ٖ+J���WMbXr���U{���&	!���܆b3W�yHP��*�$���k-羜8�;��.l�mʐ>u�
�bDWVkri����������}��<qDz
|�(Gqz_�_���@��4�J�,h�r�'/�?^��p�.�kuG��cǯ���M�����*}�M�-6���>I���<s���b���,L1'RR����-i��=�o=�g���bW�qy�J����X�����Ņ-���^ٲq����|6�z����.�/?�K	�ԗ_`KE���ԎJ�<.Z�x����]�7z��&�|v�"3Ϯ�]f�ӈuM���z0�P�E�vB^���!�#z)|*�"�Z�/��gɎ�>w����m��5B����1��k�jT4��â(�踽:'���2@����̅}֧�"YA)Ѓ�!*���@�"
&�l�l��(�c'nf1OL�ؘ�7/=5�PܰV��"���V�#�
�:�c�7����T������Xȏ<(��v�:
��'[27;E���4
����u$a@>@#���^�Qnw[^��o�Q����͉��s�?z��n�����.�/��V�kr��A9r��-s215-�>�9~�:q�QmJ�$��v�Md�\b�8��g�E��4HBt��w�N�}~~�<��s�
����,��)����1���n>���	y���޻�}����$=s❗*	(�I\Xa��,���1;�(�fٓ(������x�d�L��$��%��K��Ģ�Ө�̋�����nY�*� �>��.��Ne��@��E�D'�
�i��z�j�0��$�@�M�HI?C-�����@T
��0�����u���Z�S�R�"��c�t���,E��?�OJrd�.-��Aה�,R�׊|�U�Y'�bx�W�g5��W{��B(|����M^|������8�����sd�>O�{-L�er-�8n��ڑy%kbf�U�H�����ţko8c�Ϲ�ɲ����H	
�W�P���}���O��/c�="�b���XUDsY��
�Y��E�;�G���H�B��d��K�{zK^�6��v��a]X���4�g�~�3<E�����ڱ����Ƕ�f5�/�!"��G].+q��ͧX
��S�����(���K�^C���~�<��sSש�B�Ƃ��DQ�΅/P��R�Z���Z���O�G�| ���8oR4�����%.�7{
؍�h(0�g.n1r�^S{F�;�d�x�2
'���m�̤
�BK^��dW�{T�R��:�����ܴH��m����3���`́�y%{I�ct$�K��9�G�������vCA��t�TZR;iN��I+;�á�Ng7�3I��ɶF
�#��=g�O��Iĺ=�}O�3�#Qz�
���y��8o�HȎ��A�!� ��c���+9J⅀�%L�%&C��̋��_��s��ffp�Ov�R ��1�#,�����f}@��~B)QMY�5%��Pkzҵ	H�D��F�pn�J�A] sy��AID[�,s��9���m�=2ږA�`N�B�,"��KQrK����,t!U�E`CC��;]�\P'1�@��lI|fd�Դ�Q���gԈ	��#���CG���Ne@F�$y0�aS��޹�zns���`��t)"�`_1.��S�b�����Ȍ�Ϣ�JF|�ђ��M��I�P[�e����`[:�l����g������@~vѥ���?褵ٖ[O�I/��S�������Ւ�O��z�!k+�H�w�'Ǐ���.˷���Ͳ<�ߡ0����ޮ��t#���"Zzn,�=���ն�[��)X�����p�$�8�̈\U���R���R��#�v�(ƪ2ZN��zm9A��K���ղ�+��QQ"Q�
����Ȍ\�Z�5�����̼�5&rU�~l��869�D��]��(d~zB�T��j��8u�6k&�+%_ϢC��� �HE.�[����ߊZ$~����riÏr��V�3d��!���@��ꪌ+a;;���<$w�Ԛ��o�T�pG6�6���~~�'�s%Y�U2�l[���mϨ͓Z����u��z��Y*�*�rK"�
��Kt�%�祦�����Σ}둾ȃ
���3�%�Y�W	D:/��3"�
V[&X❘�wY[�U�G"_����?%V
hMYu�#�s�<�̰�G����e1n}���uP��I=fD�.H�۲�+G)�7�LBA*���nd� sQ�g9�=�&pܵv�E�
0m��,S�>�}��K@�s��Y��:As�,�smmoJUm�<�y�!��a)a-�GxqeQv����'��e�9Sc��9�܂�����q�@�
���MnC��L���u���N�L��f�}�����
}g���>7W�Y������]|��Ų�D��2�Y��~8p�?�$��ՊZ� C��P�hɊ��Dm��%7"�./^��ޯ�e�tL�DAqx=Ɔ*���̚�P���Li��n�@z�ɫ�f�c����/�6v=�}O�'j�Ւ�*��]\[UtKIࢌ�=�o?P,P�lP�2�����b��.q����Qڡ�8�k�����z���)�
�f�]#�|�ֵa3��b��TD0f$���fCy>��b9��C=C�%��DZJ���O��-VM���s~����t�j˪�m��d��ޗ�P�P�Yw��-f��@,�mu��� c
ٰ���EH=�}v�z�w��>�]ϻ&$$Y3��gB� ���$;��{]�Nj}��rm�
�^�+$�i�P�3�]1�:����1� [�#�v�sJB�űo�J!�I�.�w�+C��[v��:e�6&�M�ȁ�y�;����(�8��<G�,`�n���\�|^6��r����lvޫ��:�Ŵ���%VG52�Y������i�6]�Qo�}�|Ɍ�*&�xyaCm�"���@Gő'2X�D�eA��kd�Y&v�q�Xr�o$ҋ�.ս0��.2äЗ\wr��9���l83��?��wZ;&[�Ӈ]�ǜW�|ѵ~�dU4r�cq?#�I≪�J�G޿�_ j\�~L�<G.�i�#Q��F^#�9O�9���a��q��k$�xgd��
����׻E/�U�pz�A�	�K���^��~�c�:��Sg�;||v?\�I� ���g
����<�/�m�PO������y�t��w��p���9p~��#��v�(�޶�	+�X1�Ð��E�,��r��q3�t�>5�(W�"�����R�EO<�}	B9M8�j�U<@JC���.?����߈ahG�ScmD0�?�	 ��G��Ad�"�ʾ�o�1zk4}-���{�7���5�@�r��ü��IfP��p�!/�D�<p����~��A��y��j@�Q�W<�`=%V�=�͢w�z+���.ȇ�D�h��LÅ��h�'���
ޤ��:�7�d�ںAo�x;[�C�w_�jh�c���v��J�SdQ�Aq$�����l�� {Af:�~���XX�j�R�cDfp�It
Q�<�7�3i�O��$!�E��
Z8:!*)�~���d�s�oh?t"�;�\�5lb8�HwV#G�J�����2B!l�/� }���1Y/\�G*8^���6�X|�-�TE^ڋ��KR0���F�9�7,��5G��n*[�����_�$��1��60�,�g~����58�s/"5:3LJI}`�t����^DB�����œg���xU�L ҩ!J�M:����[�MM��vː��>�^ ��\/�
�b��Ơ3�5���w(\_n.a���Z^�j(h1&����[Q�
����[�tDC��o$i�F�e��(������߮��d���H���}�1���CҾZ��f[.\�ʈ�1%�u���/��Ǐ����ݝ6�����,É�Q��=n"#��%j"+L��䏰~���=��}f}y��Pd��>s�m�lR�;a�(���ܼ�v�[��f]��f�±�B-�BOA���tn�i�"�
��8Y ���~,jy��Ԥ6oQ��f���8�NM�QNsR�]F�	kD�
V4�������
( ��@6.���23'�������M���7z23_�C�:&��5;R�;��PV�s�٣<�m�6D]� ?�$�y*鄠�X�=��H6�j8{�Z�9x$L�_β���2��N�9W�����>�){~��BJ���>���%0��vM�gwb-�̧܉
\��}D}9)$��耨�e�d�"��8��5y8Oy[[�Ob�P���
$O���B G��}z]�Z� �	�?������oQ��(P����R 3!5�#b}�c�!��T29���
�F�:yJ3 k �+��v����f@@W�'���Fr�a�<�'�2���j�n�HL���,����|���~wr�$��<ؕ+9�*�X,s����.m�
����L*z��	�E�Z�{��n���6�s�XS��E���"��!�Ց
D'굎�)�w�ajè�tjV�]m��5���rQ	�^(��{9C|t�)��J[OX�|j4�`3����t��}xT�6�������
L�8��ja��g]�q�z(�j�5��X��[���:��~'Gr㬂��=R�b�ѓ�[
j)p��˩�������0pk�T0�O��o\�?}�]:n�|^8~���M�tU�`N	������'O���[���qiַX`y�]RR� �F&�r�
w�ɄwaR	�[Z9�+ �ƫ1%X7�[��q࠮3㲼��~RG�Z��זV���	YZڠ=]o�����NOn��VP_��

�H���,��\˜й������S[B���+:���+L������r~^J����m��
XKDv�5#�t}{�)�a-����̶�k��qY��g[�K�C|>C����$8� ����yg�H���0o [�y?�Z�<I��C%
	�f�n�b��]e"{:�n�o����E�t�w� @�zVw��Q�9���T���/{H�V�$�pu�x]�k��0x�}���q����:�xv� �-3F��X�4�fN��%�ox�e�ȋ�!�\��^d�N������쿺�� H9wz�N�)i�8��F�~>@q�����
6�|��Ofq�V��F��g��$�3�G�1�:DR���O��Q�7�;ڟ�I'q�C6��,;;RR����?P����3D{@�������
�{R���D���=��|��)_����-���Ȃc�ݷY�e�8jC��Q�
uŠ��i��L=}&ϼ��s��V{�����3x'L�TM�K�����4��`�]�v:}S�lI��.j{�G�8nѦQ%m@�d-��U*�sm����3��@�`�@2us{�@y���|��j�i5���b��}S3$D@�l��q�9r~a��,��]�eD��N�r�q��t
a����Q/f��#+��uŪ^��-���^��F�X%����
��g��Uf{��*%�H�{������x�=q{�n�ר�x0�RHb�ݧ�𹳨Yo�hzz��������Z�_�$QΊ�vl��Ul��y�����`�b�Y�zb����,�6�]����\��u�w/|����sβBM
f��z8��ͻ
���1����BD*������0��ϋ����$�3S<9#A��:�HPS��u�Ṉ�"�	��?�#�L���kH�?ҿS:yN'��*��/���~�`��,y��29E�[�YY(Bl�;>f�$#�pV���1�@!
r�=�c�3�e���@]Lb���L�	= �2#\��x�:v�5��=�s��$8B������
���f�d�#D$�S�?=�3wmٍ,����R�#ˆd�N8@r�0������7��=��,ّ�~�NN��._��
���/0G��B!]�k��b�B
���>��D�K�������&��(,���"}��z��2y,���
G�1��,�
�P�B^ȠǷ�5F61RƎZ.�ͅ�"�q�"�Q�l��,�s�����؄��2����!��LfIWD�li���sF�b>�:H(b�Njk���u��/�y��"k�4vz={V�D�a�2j��'�a��\��t���z���C �KɈ0��su�l(-+C�N�+f�CϞ�T�����7ls�a���q��$��L�n�5Gzi�h��X]���*y��=#��C	�z.2" <�8�#<c��Qk��U�ݷ_'ȼ�x+�t���N��촂{4:����,+�2*e9+���,(=������[g�O�����Z�Y���
�S����*2RZ����2����o���/O�HV'�G�^O��"Hy1Z��0�Y k��x�h���ӫd��Kn{���!��9�����W�}v��:_i�2?m���K�sC�gW��s���՞�Z�Y���V�=ۘ�-,�Y(K\x���E��=fn�EۓY;����<�8{�rN�ɟ�.�g�]'Y���w͸.�O��\����wK-�U�$s˛
t��AuD��Q�HrCxw����P�ߙ[��NI�i��LMN�������:f�S����[�6�U��1�>{���U8�D�����;;5Y]]Q�c[*��,�2u�mlSƲk�X�܇y�6����v�8�g%Aa9��d���E}v|m��:��J�$�g%`�?y���~����v}��n{�װ�k���v}��v���}���V�I_fvl�:޹|_BQ�{�h���9@�W����g鋌8G�|�"e�:���{��@Г'o�c����߅,ʚ��
nC�����t���f�y�%%q�J���)H{�������c���Ǖ���Ym�����L�]wݡ@��,-/�ں�;U.^��lD��(�U�1#��;o#q��5����Y�[yvV,:=/�n>����O?�ke����:��d�%F|CVM@T��RH���eGMdcU?��e5��'�3C��':<�����\�����/p�G]��O�$pyeM����5YS�kK�_���}L}z���ڑ�($�ɱ����Q߻�3f�П�hO>y���=w��<��ǵi�_�x��y���s�m�g�x�\�rE�j����{9NP����Q@�P�bycM�a�׆�	�^�MT����OG�����-��'O�y%�����=9wNZkM�MHw�m'���<�W��\C�웛���s+�ݣ'Ɏ>{fn�zSIlP�sO?/�o<�s�n)l������Օ��5#@� [y��-K�۲����\W�ۇ�b}���2�+������r�r[�b7jS6t��\kGJގ�nE;!wŬS���֦��Fx��NA�x04�#�#dt"˔�g��H���8���~��9YC
�N'
�E�&�d	�3��� ���M�Zۍ�"k�Z��~-�/F� ��	ڰzn!�+�C:̮2�-�)��<=��'�<W������q�c�u9QkDq�zë�H�k��~J�f]�p�=���ϑ�"� ���h�|�w�JHVN,u»b}�ű��
�~�~Q�iH���vh���YԔ�H1�p��\J��}ǐ�b����u����![%
>��q�)@���J��w��oO�'?��8�d	�	�]�ϗ�f�W�>ЌO޿ØA< ,��S#�]/<O�s��";?I&�[���R�!
0}/AF2��8~��z�=��F��bN�1ڋ�yH�]���z!�9{Z.}B��ZNq�C���JL򍼷��2��<_`=��Pⱌ(�m�a��$`d).JȦ8}m���@MI�r?�r A���V�c�P���Q���L&J�`md{^�e?î���?�?�q#�bH{�xhC��e��d�˟�'����I�	�83��0�d��Z
�d�)�H�Nx���K����&�1)�eT����"�R0Z�,����_P 2�re���֋"�[�6
Q��4��6�HD
9"�z�i�,�pU&]�Š:0�5ɇ�E�:V��
�����"�}jX��Va�\1%���$�(�.d^YD���H�Ef�0u"���$R]��ؿ̖�ʼn�L���
"Ob�>*(g�l{�!=Ӥ
Q���ON��)aB�`EyC���'�X�S
��7=�װHBp$�gG��L	Q�菶/M�+W.������W���n���"ޣ�.d�@�5�9�y�9y���G�e�ޛfZ�.�ȑ�G�9y��Q�W��XH���5���~��r�����7�(ϜyV��k�Z-�N_�6I�{ͭ��Eɒ��O���P�Z�$��r!`�G���
��.{��n/F��}���W��781�+�P�G{�tC?�ɝ'�\�o���\8��f�ʯX�_Q�n�E�fR5��	�������o�;�.c/6_��ү���dG��!>�!Y�&��5�
"��=�<�43�M]+Z����:�Xٔ�xQLVY��m�8H�Eۧ�t.N�	�	߱7�a�y"��` ���9��1_ :���&�0vẃm�w��)hS�}
�$~���ip�Y]Y�?d{�8q�sl�\d�[��"��HPJP�	���ͣ�N�K���:��5��R��J�q�������pq?X�Z�v}��]߮o��. �|-��cHƎk�}	B�4���u�m�O����R���,���iAv���,�)W
�R_]_�W��^���A�g��g��=*��1��F�%�Ʈ�����r��A�O��E>��J�l�dvb��|��~���}�1��?)%�i+�_����_~��v�i)���b�S�lm��G>�	���z�\]�,�MQQ����%vku��_�-��Ï���6U�ʪ�O���������EY\^�V�-?�?$3��Yl��\�s�?�.�*)�ey�{�D��Z�
%L�
��n��o}����w�� �u��y�*@E��Y�\������o�����k���%�E���)�}�	���#��;q�u��|���M�K����,���1� ?�S�H�Ւ���}�
���?��,��z�R`}��)��?�c�\#9{�����''Ǐ�_���g��#��������Wz�q�O�I�U�F���qz����2EĠ��˛��f�Bp�󆢑ZZ^�_��w���Oeik����[�"��D;�7~���4�Wi������HyU�f8�����T������o��O��	áX��gYȔ��C|
��w��Y��������'W._�E%%z���\
��D=.�T��ז��$d9��Tu�nll��<0$e/7*�M\�:j�(���eYّ˳/�C�3�3���@Y���1��A����%�q�\K�Q�Y������5NG�JT�/���I�8�X{2�B�"���f鵑���>nu��UG�4���;�R����,���| Ob�~)�V�=ܡ=�����<	�v�1����Y_֜��I���#�����კ���הp��l�#}?��gS��l�� /����N]�b�齸l��t��e<L��c.�d���)Tn���ѵWr�%���x��9p�C�!�>��������w�����^6�'�e=X�B�p3>9��i-�"5Q�9���a_�� >�V���ַ���(��K� �&�O�U���v�?c������Z手�q�l�e3�����{��P0ߕQ�Rx��de}WΜ_�{�v�׼u&����V������{d����+���#��dU�O�%���/��Λ�<��[N�>�@vd&���r��r�g��mC���^p����H[I��u�>�縲�d��~D=tA������@+B�I��"T0�#@I���C7Lj��S�SA�X2J`qטy0�V`��T�Aa��
y���phw|9�HCG��X���0NbK��|qn���J����
�����Sd�4�3������.�$�u4�0�X�Y�N[��i�=�䅳L�b�����5�1�l����c�$�')$����{I:�Ӣ�X���K
���ЊR �Į�)l������T�;N|�1a�W�.�A�����^Ó0�d��`X][���NЁ�Xų����g�zF�ww]�4~�=C��g�[na�;���k�|����$e�����d�˷VY�؞Ϻ��w*c[�T��T4vbQ߈Rr�b[��ӥy�.��Hg�3dX9Kz4�H$3J��q�c1���������kd��FBhT���u�;���1
�O0���,��\�e��~���1n���i�H�oɸa�A�
�_�Q$_��vΐU9��@_����SB#�֡�}�����9���A"��h��b�*�vK���98;!���T���w�B���tt	�{"#���O�6�}���5�@�wcѨ$;u����E�!kB���¦6?�,!��ی�C�[��%O?}���P�|b|��<4��׏HP�;=������ZKW��w�<
��_m��aB!�����2,���|�ş��v}��]߮o~c��Tow�>�8��r�W\���o(����3!�~�7��%<�D_w�e9',h���F��;!������|�(�*��z��z��e��u��
��}�E�W�Z��>,u7;���׽�)��#_����7���k?�N�0X�ˢ�L�ur||D��;�IN�qZ���G$X�\��A���=���_}�z��R� ���o9�P�1��n���?�O����Eɡ�]6������[�|`�X`F�>cb����–����M
P����
�����o|�7�ͧn��?�Ki��,�/�,6�c5�Z���9����Ę�r�cv����}B����r�؀E���}���7���3SV�\o��cA�wdm$����Q��G~��u�}�XhK�ZaMH��&������L�+��6b�U*��������
�%~��{�d��Ͷ���B�IX/�&Z�:*����_G�J��$�����8T���UQ�sw+I��(HK�q��"��z�U%~��ǥ҃�YIވ/ԾY\^��7g�.���KRyulڷ�6����hlԕɧ�/����b)2���e�O�����Lֱ����Nq�IKjw��0��186�u��\��f3�:&�)M%2��N�Z��e,�i��q��b* ��	d6A�+�A*&վ���} y�}�A�h�I�㏱��eg��/$S�����v�[G9x�Zң�㾂_<�������(��~�,�	$s�����vJ�/�߿�5}�u�����}���N��9�2M�����5�h�����a�v���BJ��qn�o���G�q�g.+��3�WBBۓ���?�!���k��~�>E�9�q�I�eOq������p���B�{
�.*�������^j#�yY+�)�ԙdྩ��$��@f��GJND�8|�l������2�eG]8?3<ȋ��z�FgO
72C�|�&��HZ�=T}�g�,ߙٛJ;6��}suQ��t�����T>I���+u|�'t1a|a�)���f��Ei�e5�E�}�&%��h�\O.g�54c�PI��:j5[u5"�v�+&	�##k�yw�&]��o8
F�+#,�B�&��cZ-���lob�]_������?Id��ߡw?28�+R�!��$Њ�V��9˨H��Y�"�pK��3
�1�
�/
tv^:�Đ�!����d~d�r��f#��'B��"Γ)�?7�u#�a�q!�$.��ҰNF�쵺!=_�"���G��M�M�9�4�,C �ᩱqu"^/;�u����g�$AE�%S�����=|H�����-ob����Y�zY������tҴ[
ufN��� ��p���/\<O��cG�XqS�'�4Y����W�р\P�g�����1�^��X�_b<<�B�G�D��E_�d��s��o�O��,9<��YI�t�vY��-�.��qٟ�߆`l�h��*�_���e<ӌ���5~�hΚ�Y���F�x=N�ot�_6�8XY�l�*�ח�"�
H�ϳ�]f���C��>;fR�(ۧ�#*��b2��i�:U� F��M�evC�s�v�'��7e���)W�j�X���͢�$����y��v�#�2��\�v���,��j
$,\:]�PGK]����k�WdwY���	�(�XRW�7dc}[��t�.��Ge{{]67���4��Ś��X#ܭ(*���M��zW��(��Am1G4��sd�w6�b�P�Ol��hNlB'�U�VDO7hL�_;�\߮o׷���[��w�| ����"`6����?����ew�M�s���@�ܪ��{�]��O�T�V��Up��/�zW�.���Ⱦ�y�=wʃ>�k��y��w��Av�{���Ĥl.��ܛ���Z�k��}���z�����_��j��胟�����}7�u|p��a���}��?��pD���Y�?��ell�6F�����NO�O��_�������m���})�	���a4	�
�h�t������򦬫�Q0��[N�;���������?'����u�P��@d��~�?�K>��GdzrF�T�fi���P[ł���;{������y(4�?0'�/~�>4-7�8"���S��/�{}�%/�l���~S>��Y'��+��*�
T�XXXW��/��C���,vbQ�P��X'|� ���?r�d�۬e֕J�d>7�?�F\Q�JP�@���Q�z�)<�
^�ܟ������OH=i����8yL�����l�oȟ|�z���G^��d���v}[��pNZ�v�~���-��?z�@߾�䨗o�JN�6���/��r�C�����_�%9rh?�����,��+�݂4�SO?�C�I�kʽD&��
����}M<g�'j�A�Ź�dgzFnط_ɺ1��H�Q3�I���du[���f�%)E���9�r�&"�����l���Qi)���vb�tPC
މ����"�Q�#�䱼���4(�Ya`Q�:[!��01�$�A��!��MPa�$�A"+Kk�z�%�D�I[�6�8�R���y�,�}ی���^3����c�v��XB�_�e0�.�ϳ>[�\Ѡg�ے�5���̝E}l����팳�D/5���0I�o�
�58}�T���^��w_*�]�U{<���:DB_џ+m^4x��1bM������Ϲ�Y�p�Uf�4>?�1�D�
�{��l�p��}���<�b�a�̆��g��_'��䱌>i'�G�\er�H�s6�PAȘ��
g�?�.O
�>[b��e�����g�e�r༁��?�w��'S$�T��+�	�i��9��A�C2������&�3�^<�T8��Lّ�G���,����X�鰀qg=�.q,fD�:�q����S$��:���s��1��pY��ƨ�viЍ���Z���B-S'^�J�R��]G&�P���`"i ����%h[�e���7�L��$�Z���I�t�4Lۨ͐X�t���q���`^aЄ��с[�CF��;
V�$�:Ј��E#[܀aR]i�!w���~h��:����R$!�����`y1�,��@	�k�e�z>�#��hf��z�=���ON�l@�fX��Gh��??�KrV�$ΐ'Qd�(,�3w0~���F�@�y\0
Lh{2��Y�"D�ձ6;c��Mox�4�M����#��s�ӱ6�c����h��y�=wy©ǂ�ɐ3�Q�˫1���[O�d��eK�,p�=�=LC'X���bS�E��.�EpY�M����Y���%���"+��W�,��m^��;�����F�����g�%� #�˜����������Bh5��ba>�?�؛����^�/����d���;�FٵX�L"_ ̷*=��XG�.ս�YQ�m������͓������+F���$%8�[0��Y!�yCO�'$�G��ox�����3H<�%�^c��#2\f/'{���Ҹ���g�+_��!�a�I
��C�g�1㣬��4�R��vL|�6�N��:�]�!��l*��Qo�bҔq=�T�-ӕXFKj~�Jíoؘb=Q��ymZ֌�:/��[^XV2c�Y�t>�um�5�t4I���
´���m������/]eTو��+�\O�''u�E���9dz�ZS��^�'۵��Z�:�蟘��K��Y����xq^�J��c��,��s^��Wt}���v}��]߮o/�Y�zO���Er)�K}7��m�bw��|�7@���#�o����U���}����H�\0�g�c��߁ �R�*U]�>��O��'���˯��>�ħ?+�6��"�O�,�X��������>Y���$���=r�~Ι��)�;61&���N�+��~D���o�~��!�q�<�����/=&���Y�ǫr��ɫ_�r�䃏)�/�����8=��n���ٿ!��?�s��;��C��H�B�A��VO�u)�?�tyYz�l@�Io����'>�E���o˽��(�����Z���������W6�d}{W��.Z�-s
��~d�������k��j(�4��?�1�᭧O�|���9�E�g���%g��#��GK#R-��oy���]��7��O4�>c��|߇B{�j��?��e�=J�K)"F�C@I�m�.L�4����p��̸<�W��~�o���s����%���*g.���?��<��3��>~���Ql�B�>`[�;Ҁr���9ȑl���+����)���&t�2ۗW�/�{/�=�u
{�͵�6㊒Y�F(�ֵ�`��Y9��N�1�,�,Q�*�^�x�B����������?!�����i��֜��fP+|���m��Q�%Db��Tu���}����o��4��o�-�����F%�z݆���5iX/��ߣ.*���hwϰʳ�v@Lߜj��MZ��0?����\,J�=��xX^��$�|_Q�«��{�4R���@�8�(}G�4�(��"�3H��K�K�+����t�>9��Q�0��e\z�b�i�k mR�XD�03W��F��!�Ff�'���ׁ��qɂ��O�����^='n�g���Y�>|�ߍ,~4�w�q�%{��%�d2�f>?7ؖ�-#+'�/��c�f��H_z�
�I��� �HAz��f�Hp�3m�R<,�t4�H�]�B��)e��<Y�,@=�d���7�–Ub
��_$(�%�ab"��2 �~s��2�5�C��&t���3�������	ݛybC���Y�
��mh��p�a��p,x�l����u��s�"������<IϴQσE���Y��`��u�-hV�\UB	�������5�}b`Ѡ���H��0�A��F�r'z���*c��f�F�z@ң�nR��
�Z5~���H,���%I:��u��HI��D�O�$�IK�h�~@Ю.ر�{���kW��bP�/d��&\F0 ʈ��?ș�6	�J��
I_��&B�L+�y�4�Z續� #b��s���%9ODYSul�P��ɐv#?�%�b���d�_�YE$%E�(�(�Y0�7��dΧ
'�a��-򹌼6���F��넏C�lX��gd���1��Y3�HȨ!2�]�����Q��;?�1n�r��91@�c<2���$b@B�ϰ@�l�C���h��a���z��1��o�؂6?�K�wB#���CL��J�GqJ��o�w�6�+f��㧩��e���ȿ���2����q(����S0��z�������p���9UiJ)���ޑ�tE���j�!�\��B��}c0�y���FG����d���ȳ��y�9��sx#8;z|�඲&b!�<]��2��|Nϧ����ǵ��QS�U�3���-�zM�x͔ϙ^,4)]d�a���EzU
)�X�o�6�_�Y����E�aD��1W2��?�b��(5���H�=�����iٙ���`W|q�(����O�/�63_�6����/�/J�(�����o�Y��x�$�-�G�1b{}�W�	�?��3=&h����v�\��(�<F"�}�@�q�'F��1%�2�����[�X��x�)��FW>��+�����\�D��
���:�;:�&���:\�E���1��ݮlo5�:��={F��pN������t��웛��)c��f�"3cS	���o��reY�w�:�ku'�
���!W�����.�g.Ʌ�r��4w�2R��@��{/ Q�1*�q!Gs�%�p��-�]z�������؆3��e�=��s��cD�͐9z}��]߮o׷�ۋm�fK��_
~&��%�)�����'�|��k���?/���������[��o�DY�"Fv
�:j�*9�O|��0
��52��,j\;rD����_���?�ڗ�m�Ֆ
�'{��`�^㳏>J)�}��r�-7ӧB��_��߶���G��c�c�¥%��?|ͤ�����oUp���$�$�bb�2%�^/�]�!��k��#{�μ^4�5�����~s��?�/�X��)W7��O�b6+�x�ݷJ\U¤W7�N��T��J���Ĉ�̎���TG�B4y���L����q���~,He��ȊtZ]�S�2���a�������DTN��������E0'=�K	�,zT @]��IZ����4�P�aGI�z��}4��F6���/B����g�x��nuYu�_���o��H���SO=+�>��ɦ����ȶ���>��Ͽ g._�N�)�/Q���Y�l��8���8�L����d2�:�Jbȡ�ճ�X�q�ju(��(�]���n���I�	���z�~��x�o3^���}��-0>~���l���҂�L�x>q�b1fT\��ڔ�����D�	'S��ݑɁ��„x��>4���R���4egsM�	�n�S�(�n�:M���-�6�r^x���^"�CU�.	I`���حf�P�
ba�ҲB�'�� ��z��+��2|���8�kǛ�p,����`�>�+�;3���}��
�Q�Sʜć����2����Q�8��%�]Z?"�u�:�b�{4$����~�e�v��A���>���}E�k�!������g�e4p~��K���jQJd:��(�bˤ��/��2�����>��`�b�i��ݏ�(B� �$s}"����2W��\�{ώ`���
ta�y�?���K���g<�H���
�V<m�9�_ڽ����/�/sƠ�䉉($"�����]�����|vι����ל/���|s��C"G>��-rMc�P5t|�em$����W�߅"&�H}�d�B'f	��F��7V�/�����RDzCpL5�2t��ki�l��p�#����=��<�\e�Q�z������-�
]DCS�=C�(v�uN��y.>
m�� 	b�&R�4�>z��䘞�r�y,9KW��{�2���Lo�
�),�
�G��"���P��!�T���J���ޡF (��P�%��A@�0!�!%�}�߇k`��&f8_l�o:A$^2��d��y,%Ab_h=I���9?��q��Z]���$��I
��\�F	�	��a�k�Ʈ�5N����PIL��@k1��,:��1;dZ"^�52I.�(6#�_��I{B��)d��ߥ�g��
����N��g���t4
,��N�"y�-Gù#
@���"����W���?�W�Jn��mgW>�������	��'�O<����-oT�jK}��������M��C�ge�֑?~����+�
��*�?p���{>.���vFU��{>%5�N> �����˅�m���ow�;t<
cc�'� 5� ��7�\�v�~^&����ox�|�ß�7~����}T�\Y������~ic��v���\Y��SC�P%A�)ډ����a ��,��o�|L^��HL/���!�mT�5d�W�wck���Q��8�u7�ҵ�e3sג`8�y(����t�˥e�$	&@ثo�kG��^�x�]�?b�u*s�;n��L�2�_��~߬����m؄�?��Fn�b�5k�D�H~�iFv�\jԛƵB���ԡƐ:�-=��q��ӂ���(4� F� UH?�5���J7T�$����)mK��uru��w���o�JF. �C�ׅ������Zp�]P%Oc�ֶ4x
|N�\ɐ��K�񳽵͹�T��
�ǥ��%WV���o*�QB��I1D�V�d�k�8%Ig̢9�GG��n
Qj��g'�g�ے��I)��׷���v}{��jU	����ye���J��:��6��9������Mf������}�SB?���O�
������*��_�+0F�\;1�(ا�b�)@:99G�����M'�Ɂ�)��[�s_|\����OQv�7��=pX���}�#����^��o3B��=,9]{��f�(��/������2y�umG�D�\b��O?����}��vW쟧�J���|�o�����jc��o��_�=�O��AvJ�����S�R�)�m�Ǚ�@ء�@y����6��xU�ON�}������~�~?��~@��_�KR�L��mb��_�9��S
�I_r�9��TR�������"����R5_��5�k��Y���2�䈂RV{�[���>���mȎ�0I�c����$Q����He�$����C�kiqS�}�����9R*�n$���ğ��d2�!��O�䏡�q��C,Z��g_`K^ɩ�Ɔ�ڦ˜^�%�E�*�e�R�i�~F�'޲GV8�.վC�q$w�~���_�vi#zT
т�o�=�E���_�r.&��F�FdA��m��M�v���@E��ꊽ�9_��-�8��-+I�A�A*��}��}	g�<	��֖�����i9>7/V(I���#�����R��A�]훲�[A��H��@��l"��J�!��� d^�����;}�j���m��Jd��s�6��شZ��4H�Ŗ����lW�e�M�wu}���c���!E�qGl	�A��K}I�i2h6W(k[�O-�����$��ӳ�5�v�6�b$��W3�޾?�
�CQp�DB�y�w�:���l���N���J�����^[ꂅL�Ю��u/[�R���Qp,]���s���f��{w��m������ڎ��Ж�a�ɸ�9�ԓ�(<,������3��vi3�n#�d��R=�`B���}O?�m
�~��!�.����/�2h�y�v�8����*�t	
aKbf���|�%��`�#K��L����
d�؄��5�B���2<�"y�ͺ��O��~�5:�	=�B���~�����GD�A��
��;�"��|{�D2�u�����\_�*"H\�Q_�}��pL���vf~߫h�Ht�d+D-�<�4�rd>@���D>� B�0�:��dAv��,�W��1](Zj�@��Q��<x��OqM�Xph�9���9��Ԋ.�X,�2J��i�Ee�wi|�MK&�&t���X\�\R�G�hu��tIZ[�g��YY���%�8,��آ�C�� 
H�̱��"{A��g����b�Z(�`�l�1}v3f�w!��ē�~�gm�	)���oz��e�p��B��ə��]�����$�X|�T8o�.f}�?�=�쇟�?��u,
���l}a�/6�͙����3�����7-�{�_��_$��O�_�~+��w���8�P���x)/"�}��~���)���)f�r��	�I�w#�����/=�onO�x���/����15�������4=��A9}�|���ʧ?�I���O��<�৕`x��Ey�m�����K)Q��P�_����=w^�G���}����^������[峟��������{��ʿ�
��I���!�?����?#��C�7? ��?"��_����+�OA�f��΃�Mq�Y7�/o~�U���"��yR6����7��=�?��#�=&W�u�a�*�������)�>y�7�NI�nV�d}�L�󒯪c�SWҵ&�WT�o���<���x`J.\=/#c3�x��ޑyu:�A4����7�'>��<���R+s���9k��Q4`eW���Ȏ�|�_��c(��2��yn`aH����kH�~��Q:0V�6

��k�=�?#�v�Ficd���^h�{o}�k�qC��&���<k��A�k`�	a.Ŵ�"�:<�:��2[2���ԉc�n������<^,ɸ������~����.t07�ܼ�k��Ʀ�\]�u�N�@JG�����o�f
z�!�����F��1�#�!�on��h�y��&gfdaeM67��dͣ�Cs�>lכ�[W�DA D˵�lG��7�"I+�ob���G��L���FS�o׷���v}{�-�~�KG,����h�B��Bv<�跾�M<naaQ>��O��z�3�̙g�ӷ��_�Z�O�z�,��Q�
�-��Z�H�\.avudT�������'��U���>����~%3t�{��'��}�crϭ�Ȍڝ/��.y�g��iǟU����Qѓ
�--��E�]�uHV�p�sj/# �d��,��y�#a[�XI��?���/%%6���Y�_��/�r�,Ȯ�߃ܗ3"�Y�e<���I��`�4P�3�_۵ .J�����JE\�b�S��ŷ=���rx.e%{n��	�����/��u�ߗ��폆��^��%��mo}���m��� ׆�_^��-��?�tm��	�I��P��TR\a��C���j�����E���YA����K�`%��Ful�O�T�xl7�vIT8���\�i��j�ʙ��f3���G��7)����<"���?$��T�.�j�%���c������'oSϫ�|Ʒ~��~���>��Pb�����O�O�3uS�	�>3dJX��٘�gbLƋ�y���W�-\�G&ǹKeB�;95)��
���]QEO���a��C_�9	��V3��wD���A�(S.��J�-�ˠV��oB��E{PH���j�)b�*�<v����	~�V�FFTQĽ\&��m�_Vo��&����!#��������$�@`�uz�k[4��	ɒh���\�G�Q�𦀙���/�Q�NcT�t��[��g���YX8���Rk��ʹ�E���s/֞��MH�B��4��
]0����Q3>L���kA�5dhI�|��*í�?�F9�h���@O{�*��G�({�h�o��`dzQv�,0�*@(q>nyڀ@������w߮ �0ǯ�K�37x�l[��;��l7:B����-���g{o�dG�sdw�r��/��~}�4�!1��$�7�e5҆��z�9e��=8��;��ef��^bV�g�i	��0Y��$���2�cC!�l'�����L�(ڈ���O��E��\�������bͅ��L&cz]$CM�.��uq,8e��p1�!\�d�.X�z����%5�`X`�h��7�@}�sD�����VkZ4����9� rfW�/z�� �ya�,H�{�eL�4�#���0��a�G”����q���K��KE)����a��w����¯�>M*)�lD4��w�i���W���izt�ZJ�I<)D��
b[�����}y��'��V�ve��FW �"?IGQ��~?����zDV��;,�~H�X��W��M�f��Zi.I��9#������2�7�#��
i��7��D�ʛ���2au��>�/<uF��i)E0F#���?!�;r�9yL>��zmS��o���
��{������7*+)Pl����Ur[�<�ey��D�~٭rp���x�L���)���r����;O�%W��C��+��$���-y�7�IN�~��\ِ[�ȿ�/�-O,\�D�W�y�|��/ʑC���^�}۶:B}p%H��=Th�"*I�����������ۉ��~L�遗���/ȗ�xH��۾I�5uP�9�-D�?��o�?�+_�Jf�A��ԩ�)m�̙3r��~��yJ��<p�����+>��|���F��/��	s�7���F�~���.0�e��A��ܗ߲�%s��Fl�klh����q�=Yck���Ff�X���%�����"{{�4x��&�/Qj˥v�'5�l��52�K�R�I2����9O
�:�(�����Q7Ƀ�7��
b��k��c������B�T��t��|�L��l��R�*�l��]3{�����7M�Z���6��|y#�R�YR��:��*4���859!ccJj��ʎ)ۺ����Y���q���v}G�3:x>d�*y��q��:�5��Q���G��	W��r�T����v}��]�^jc�;�B��T|��xT������ez_���t=��2}��e�[	d��]\Z"�"����.��o��|`Mp�� �k))�Rɗ��=,��_�~��^%���ȁ�Y�}�3�%�������2>R��_�rMc)�ֵ��J��>A��$�.� uu`nNF�ޭ7)��ځ-%[���ovZ��p�G�F�����jق�"��/W�?��o���[_�L�����O)���"�/��u�P ?
���LQ	�6+Y�5Ш3��Ё�m��;��+ժ\v&������\)O�+&��ۉ�a��`~�/��k?�C�|/l((�>y���哟zP*�,O?ƚ��7��۝[O4��[;���� ~�vd��xy�"�d�Q����s������|Ȍ�����!���^١�|bttDm�)�żd��I��������>J�A�{jjF����X��#z�	�)�a��
vymE���K��8�;���'��¾B��z�+V2��L1�e�'����V���>i\�d����\G���:�V��%���6�������x���,�OW����+jG��
���٫+ꦾ�]^&�c�Sۑ&�	�=A�B�<�0(�%&'�,d��`�k����I\* y�mw�F������9~��ŊPo�2��뗫 �*T����5v ^��nP��/J� ?P��&΍w����:��_t�����A0�`)?�9R��[D��R_��9FQ�^�y�4 ��DzTƿ�ze;�����Zg1��
���І�{P�?���2�/�>hK��ܵ��s>�!�;���eN�W�� q���q�}��]�~y��~o��/J�Y������~����]F� 뢧Y<$O���"�CHa��>½d�ah`������C���)��S��-���(���=�^=$*�,�4s�>�����d35���Wf�d'ڐ�ȕ���@��;G�{4j��Ш�#��e����1`�<$��й���'�|R��@c8��]cbb�@��ζL�+�ũS�����/�ȍ�!�%��"�����B[9��	�o���#q�l:32�T権�]X䱸<i��8'H2�Y��,:�ϛ���� ��Jr�8]����"Љ\~�w��-�0:_w!XLaQsFj�'R�"��DBע��(�	�a̠����SB#AId z��e��5V#�gH���c/,��o�w/�,�|���Y��}�+�ֿw^�L�c���0�{��ɥ��� ����=�kA��D��̱͐��Y��b��8�-"i�A�nJX%���]x�Mb�5Hl��� ���~]��7��hQ�uY���I�1�D�x��'u����0Y-�Y]�󨂦%���C>��������� ��o���ߔ�qu��;%���_��wʅ���?���1i���൤+=E?��#�]9/��O�'>�)Y�L�M7�}�C��F�S#��$T+�<P{C��|9/��%���ߑ���?(o< O�_�6��[�:y��T�eM����ǞzV�bթÜ�Ϫ��{�쟟�����Z�+��{(?�����>/��������?y����?��ߕ;�=!�/_��o����_�҉�25W���c~_��׿�m�o~�W���~Û� ��C:u��&��'��^8��?�+X~�H��� �!�!�L�{�����_ol�
/��"�Ƭ]'�>�0��_eoSdx@f��c��i�8I�p?�_l���N�:C�d�~�&]k��}��{\2��Z ��@�BRњ��B?�y��u�J0�8f[
h�O�S!���Ś#�
�D��'�z^]{z~nj�n�r%�햒!zlw�aяI�#a��Y�H�X�`OI���m_�u\�AS�~b�"�e��uX��T�*��V�tcWr:?����QT��0�@Cs���lN�;a<Gi��ug��?��y}��]߮o׷��Km`D�?"�a�w)���n�Zc�%������m�W��>y�+�K}���������V�o��{����8�Ӏ����Px���%�u/2+����3?���z�57���칋r׭7�+�KN;Ȭ�������xݜ^���EYX^ֵvDm�9y�k���l�����˴�[Ւ|�w};�S��O<��1j�=�€��9����%9|�_�-7�(��H_C��k(ɲ��o�RСP���E�9�v�����~Psx�^55`~��O��N]��x�Б�������E���G9<�O:UԄ(�g��@��}��/�@��<�����~��꿤�gh�sN��{��=��Wo�e{W۳۔r��$NU���8�o�d�m����}��c��Q��5��&�j�<����<jcx8�<�ӣ<��d%
�о�7vY46�W]����� ���oվ����%��'��W�]C��屘��-w���#O�΅��I�^_�uQA� ���~���o���PM��V���b6qTa-�J�̺��'d�eW��hq\}\S0�`�7=+W����:%b�K`��uKJ�зO�2�KŊ���ƌ����繲�)�9�����zݤn�O����Va[n�w@6@��|W�� �y\߱b1���
�h,B=J��i�AM�����oX�3����>������e{g�8�01o ;)����U"�?��<巰�����I�ᕃ�^!ׯG��*`8�x<��,�j��`��kk�R����//�
nÑW�C"�9������3�k�iQ�(�{��dP�*\��/$�;�В9�o���]�I�@�[�H��(�:�{��n���ˆ���'%�[7�'q
�K��b��
����̬�F���H����(�`�ʐ���;d��hyp �~Wd�IRB��_E��$!��-��oz�20��#�~�+K摺Lw���0�A�㜈�����<Z���$B�_�x�,���m���d�^�-��I�h�l({���^�A�eH������������ahX&-$M��^4��1�o�e����^;S����#=���ڕ�Pt����)w��hh��AB	��xp�l>t�}�&e�EC<��h4L��v3�	y_{491�#��)��n��ϫժ|�RL3�D�����.�X`��c��B�b��o|�#s數l,0�0}X[�'��8�@���F�	��g�	�{�:dF�C���]�l��ʂ��~�
�MBD����F���C�E�)�K�g��]��95Hя��?��;�噅�/q4���2�t��c�m��j�!c�0��;+�v�8�s+(f�K鲼��ʂjv���}�E�ό	�N��@Vř�1G�J��&�F�e.�~��1^L7y��w?����%��~6.�軤�)���
���ߟe�հ��B]V�{��6�Zݔ/=�-��ݾr�46���V�/*�=w�\�׶`]��|�S2��gϜ���ͯ}�LN���_�*uFJr���j���H�\N���=UƵ���o�
3�_']a/(�Rr,-MmG��N��7��E�-�X\ߑ�:$SjH�#D)!��DJW8�
�ʯ�W���C���)�:6�j�6�O�{E��rUz-h�X�A�W
pm/��aE4�LU�3u��q�E��&Gt�����kʲ�ѻ����w~�7�ﭽ�6�����5�w��8��C�5�o�����Zf���(ͤ��q�5�0^����A�d�!3��]���9,�����}����sE*+��v��;3s�^��	�0/�~�mL�7�P�:�j#���G�&�]|@��n�i�5/��Ak���SG����ȿ���r�ɶ�'ݩ	�*Q��ѹ���:��
��ƤY�trBJc��=�0t�V�����8+�r`�*s#998]���S2�N<�m%3�7����aAT�~ �sZ�Q\�������/W��P�BCD��
�����V6���џ�j5����6Z��#�6��׷���v}����ƼE憢���_��4�;�K�;�϶�]\X����‚,--�իWecc�~�����1��҃玽�dA	�8$O<�$A^��u�m�Ϟ=/.]��S0�s��v����r�$�?�$��~�g�қ[���َ�r�'����moֵ�%��Q����'T	���bUA�/>��<x��s6��̌��_��z����/���E0b������s�$��抂�jc�x�����q������������	U��Q�ajlD�Q��R���V4��8����O~����_�_���Y1���ӷ���qb�w�s5�aC�@��FJ���e6���q���ay��rt�y��gM�I�����a!���.;
�#���6�1�"��'d]�r�M���Ƞz���}��X[[�O��$�V}W����뱟�̣�ė�cߏ�=��O��T'��QW�]ӾId�xUځ���s<�xQ�Q��:@@�'��DŸ��1�N��vEi��9�n�G���}���+���g��櫣�K�XI>E�`�|p'l^����_D�p�/�������VVWdrlB��F�W,h;c=��W���hʉ�G��c�"Ц��U�@7A6~"�B�.&�d�k=�yy�(��]�@;���ga�L�+����g
�5p$����%�@r���{b���o�Ƹ>gض��gB����s�w4�8ŸE_��o��HP�Ưr��Q�5����:ʼ���q�2�/�O���q��O�M���xEJ����9m����lƈ�ۿ��~����>�ELb/�º��/�cwY���zI��
��A���$�ݻ�F���~�|�#����d7-.�9���ދ��AzX��*%i���w��f�~w<xmg�q�7���9�s�}-�l�Ӿʜ��S�?��a�͹L�&b���
vn���/�h��p�s}-[4�b^������=m��6�\ �h(�!(6�;�����&KH ;��?�@[����o���28�˻��T�b}��0�<2�E����e��
��W K��N��5<<���H�,i���Ey��1ɃP�"�+��1:�/p(j���kl�n._�u[�>�3t'{>��ޟ�ے\����>��w�5�J�*�HH��,����#�?��@��g�i�~��c��`7l�Ƹ��0�`&	!	ͳJ��j�[w:����ֿV���<���,���NT�{�Ν����
�kײ(8z!L�
u�a#�2	c󍐗e�
K8�I�ϖX|�G��N��Lr����I,JlHhSL&�	�eD�x�L��(����MB�rU@|�{A�c}3a#��k�M�IB�F��P�����Tl�خ��!�P�*u�M�”��������f%]��C���I�%�4�FB����9�L�	�^*)o$�U��l`�6'#D¤c�'�W���׆+���r!�+�_�P�(�AI����9ᬊ�a���	�fbW�4W�g+z����<��Շ&���TA25�,���,S�̈́_��Ҥ�7Z�>�"S���/{闉��iG�]�~��;n=Gg_��h6ئ_��х�����ӭw=����_B�z����gA�F?������_F��e:be�M��?�'�L^٧ݩcжFyp�f5(FMz߇?I?:���_�
z��_��.����`���v����{t}g�D�:��;�����ko}�X0>8ܡ[��,���WhZ�O?�MW���mu�+S~�2��p��5��ɏ��8�5�g~��_��Wї��Io������۾���_�k�]9�����з��?�J߂�?r�~�g�#}�7��f
��o�6����M_���D��iz�ӟA����p�A�y�@��.!���t���"�+���M�,4��z�[W��QY�Nvl*���,��I_>6Z�j�\!�PEBq�4��E�2��$Diq�7%�8-�օ�{�I��(�	�G;<wl�� !TT�Q�mւ�$��և�8�L��
]��^�;`��I�.�BG`P8���ՔI�iN����R�K��
��V$��&��	�V��4�-~_��F�)^�{+m&������J����@�rx��m�+n�������>�;���u1�3:�mLF�cPਵ�Љ5\�I@&fV=�4�z<r&�š�jA�'��Qo(Q�up'夜��rRN�S38����s=f󉄌]@�|F�{�k��������]�|����c?�<�^��?����
��^���o�m�Gpf!W�ϼ_��\��?�;{�>��OK�,�����;�-�9ڀ��x��?�zj����s#��l�����_�Uzً_B/�K��m����}�g��u��O��s��!= '�x����h����Aa�[�(��K�,�WYv�?~�_����͞zP�䲀�7�-ī	�����ߒpQ
R���>uJ�T�����ϿJ��G���1!-X��џ���Ы^�2��8�uv�Q=%�����&�9�������?x�~�7�I��_C[���m�M��Ϫ\���a��5���d��{�j��(�O���|�#��_�2!:������wL}��F�z�3�™M~NSz��K�|�ۥ�c���u=��wӏ��49����h^�v�~��.=��X�OGS�K�3���g?�-���c&]�x����ا?M��_���}/u�
�W'�#�J�A6�I�����Y1��\$S2�Sɑ�y�Ebn�y$�I:WB�!M��dK\?��׍��1:��<��>s�,�aD9ݧ��e.Ǜ͖�	�DD�����yp����|pD�����ht0�y6��$<�qB^�'�<JgO�f��,�W�ٲ��Ҥ�n����49Q��LpDf�

�+�T��妋Ð4�	�*Q:419�E��s0��&!߼�b���0.�|����k.�L$��32�T�&�l,�����s	�ڊ� ������7�g��
�GCܕ��c��y��`8Am#� M�Q�I�sPL.n%�n*�i��z�dݵ>=����W�����f�p�5�@�U���5�:Q�K�5�ι\T-v�k�f.~OUл��F]���S<���=K=K��}��Rx��fJ�{�󨪛:S�C�:l.�[<��-KzB���ݝ̣�*ž��KT	��5�n�c�L�KxF���}�G����س��ΆÁݦ�jBߔ���!��|��[�b�*�*@��Z=�-¹�I��t��+�R����:R"E|Q�K�1�#i\�YZ�*���FMB^�pL����o���9<�Wܖ
���	��>�0Y�N���6 �7P����ʊ$K�V[{1������bq0
$�֭�K�a�z�v�[b��<�UH�Eh��ܶ�Q��sC6�|{��"j	��Y=��$������rq�d��#;��#�j���b�v�4n&�|�����[���>�u����3���K�,n0�:]�-��YNX���;�X5J��k���Ҙ���(�O#����B�J}�x������r�Q����Q�)|ء��N�=��z�:�>� $d��Ň���7���1_�w�"��kfss��JA����a������Ҍ�A������O�2�A׮\�8�W;��U�=�0=r�I�rY4z,�����Ͼ�Z[�h0��`��U��~����Zqؘ�O��ר��a�c�d��=�=J���C�6��ɝ+�̮��_�m��Ϳ�[��a}����[�&+L(_������Z�>�B�|�O?�s�*�œ���'�+�fe!����;y��s�7�G�7���XP���>+��>��g~�Ǟ�D7��`F�/�F�ϯ�!��#g���_y3�f� �ЃWhc�~����O�>�>+��BЩ�D��ы\RJ��
L���=I���Z{���D&�d�.��nx���/7��H�Z���8NJ׵c�Gq�J8���F#�1�SQ.�	vK{���"�#<�>a���{�.�A�㚄��x�A�C���Ξ�%�9�`���ogXa�h~y�V�xge�&�:����>����Ҍ��	+�5C�܆����D���cZ�	8ҟy��|��	�1�҈�3�r�~���D��Bn�8aR��������yX���r(��p����6LX����ػp�:P�L��[�ryRN�I9)'�<UQ����g�I��S0^�<�_�v�m��H��KO^���>j�މ���Þ��O=� }����w�Aw�y;=�ϡ���4�΄��H��x@#l|�az��Kt�-7�����g2�!^��[��{���i4�����Mt�7�s�'��?���׾�/�׾ꫩ���~��t�m7���@8����/��O�}�=���
�אS!���
�^B_�M4����}�3?��W�ҟ�}Bk��(h4�$H�"�ij�y��� �db(��g]��W�~�P��Z	�F�Gq�w�Jw?�69�d��徏~J�n"I��W�.�v�+��{o{�{�=t��ϸ���ܻ����\;_�ƚb�oH$�l��~U�%���!^<�{�#o���W��w�βEg�x��_V�X�6\��K���h{��
��;e0��J����g��Ib��i�OLG&	f�hkc�v�E��N<Ϯ���@�=���&<��Y��{�=Q>��\ݦ�|�>j"���WH>3~�mMs�����& 'XD���#�o˵��C�T1�#���5fE�L�H�n&���>0��y���2�M��i�}~�]wI��~^�%t��D���P�֖.�b������
6W��Н��B��i� �q��\�Ã˴ʺ�Mg7����x�Y>��h�9-ahx����t2a�B��\�kI0���=��p��4:<P@��	8֍�n�j�95d���v8��5�j �м���݂ߟ���k1�,t�f��Z����:û�D.�#�׹s�4�����/r˞��Q�+×%�ǥ�X�a�{E� Q��l��)�!O�A���q��|ŵ��K�/�cAQKB.�`
l�O��66*���%��Њĸ���e��N��>[��J���6)!`����^�IS(���ֈ��=NWC�Y��ǫ��z�(�R3_�2P��P	��I�a�?6cm�s�1���W�4���A_��C,@���ۿ��<:,B���0GK`nu�c��ɕ��p��^֜p��g�]�]�<�WY���(eJ�.��×vSg76B#KJ��CfvKdb�ab���8\g��+3�!�1кf�#H�I�B���Y��Vk�oK�gYo�wH�X�&9``utD�T��g�HG%~�$2_��� ���n����B��pA6�|��pյ���fa�Ch-K��A-�LQ��H�Pb��ϲ!��v�_�-t��3��!4����<�x�e�,+3թ�LN9?��:�q&.!+
Vօ�QEh��qsH�H���)���>�W�_�>�.^,l*s?z��p��)�\r��B 	��[�Z��q�9i�
HI�����G��X���T�=0��
)Ъ5���Ä���$�"e<����^y;�rl�S���\%�G���y^JP��� �M�0D
sy7� �B�3V�ƒ+;,dBق�z��|���YIbBC���j^6�wc
r�Ӣ1_;o4Y0�:��9k�^�C��i����h:�b�����Ã���~�!�֜|���3Id��JMV8�c���]�B�#��+�ujdꭅ�V�jH�+�6��E��L�M,T#�O���?�ҘI��5>�?�5Pڄ�B�mӥ+��}�`鳘s��'	t��[��޶��
�'ʁ��'%Y2W�J5!!J)!��UT�N=����1��(	�E��#�,�S�__�:il�EI���
�F,;'��Er��M��)�;,��(��
���(�X�gV^c�+6�5��\�1$��0�ɿ}�9&�α�����u&1�t�ץS���F�#O�l0��l��@{��3��9�����+b��y��X9���2��>0a�B�-��Q�[k+��1b�@�����:a�����6W�܏�q?�$�@],P%�dH��\A�8V`��u>�NS����.���񤜔�rRN�I�QY;��~�5@6��N@O�O��������l5�LF���$B-X~#!9r��O�$}۷�F��?�n����ꑹz�g��'z_�����/��^��W��Ï>Nׯ\g �&Ă�mvs�O����_�2������g�Y���s3��pB�蟿����Gz�k�$=��ϧ3�O�8�G�~��o�w��h4�u5ק�ҭ��C�=ye������D�p���W�+��u&�%�.W���ҥ봾�f���t
I��>,0F~na���'%t�y��)	ς��>}�c��&3O�,@P� I�	j4�?�	��ξx*�������������W	^p��򣷾������$���39��%��ZXP�	�<����[ߢ��Sb�|��.������/�/y�sic}U��?��2	���n&vh��arhJk�ͤ���C2/������+2S�w2�ƺ/�<—!�E��n֣	�
������}��ҋ��\z�7���y�]�g1Vr��������3�n�p+�u�&z��}�Oѯ�s��y>�����5:�=��>C�����྇�� ���$訹nx>��5��Bwu�����C�#�"�S��X�e����.��>�G
~��S��Y7ݚh��J��!J̅9��]<88�ƅ�t�-�ѧ}��~N�LC�6��"�i@�ـ*��a�4]����r����B/��vm!�T��ϐ�[-u �{x�q���D�Q
�`�k(�	�ɺ�y�k�Xh��uؚ�s�S�$�܉��3�xDwm��)����>�@�����)�s���῱�P���i��"Q2�KՎ��SձJ��K�1�b�>�~�@K�v��
����-U��e�7��W�,@�DɌ��qR��[��?��p��*�t�]E]Aocoƿ7�����T��<^J(qNT6rtq�(i�r�B�$t��K��8W�j�x7^H��$FŔ���cp����]fcI�
=�%؄�Y�.�~[K]2f�U�I:�;;6�CP��F��S�t�ug��H�\	����rx��9��� ����b��!���1tV2�\��'�Qz�UwYC����
[�9-I|/
�D���%�Q���پ��+W:+�r����M���jXP%/�@	����`8T���"�]�@%�2�
��!�%�2�@�V P����V��mXȦ@(/I��Hx��z�,G�q 8�i�&P�$<O�HYr+��v��!��%>�V�uV���('d+H�zH��}!�g1�u^ll� b�t�DؖH�?�[�!��xN�K�tـ�<zTw�,���;W�>%�a�j�?�x�pd+��ܲ�
�~T��8��<	�V��P(�ڒ�F=|�K�^#��ݔ\�DŽ�s���Z��zHlАC@�ы��l�%�W�N�e�v�ێdaIJK���C�3��_�I��9��
���{>M���/¥���؂X�p1����✀�c�.e�9.F,�5�{�c,�5=��S�� ������F�iNg۹X]�%j���1��`�o1�|���}�͛���L�',(�R}�uw�	ꐋ�1\��=��U��e����0���Sr',X;�%�O����d���Oi��i�����a��s?D�k����s���)��F��\����&+3^;��(}�t����s�>l��`�)]#L��0Ւn<���tD���*H��&���]�+�_T�M�)w��.�qI��?b��s���\���3�‹��OD.=�SU��1���1���$(�K��U�'a-X����X���֘��������+�9�sxY�:
Q����~�Ԝ����)Z�ؠ��5L����.3M��ku�z�V���!�;�t���5��SZg0�:B6@�D��&����1(���9>��spDYo���L^�kLxb�@hKV�Ar���7c}�D����=ݓu����
���7�I9)'夜��r��#?�c��QՕ�%��y�*I�=�p�����`�b&^��[�5�H����
��>-1���]�)8;MH�>��}0�=��icm�v�w�+W0�P@Ȩгf��rs�9P��
�.d�I�n6ti��t�x@+������]g"��K؝9�����j�����x���НB^�h}k�L�Lg��S?���Z��u��SL�t:m�����Ϥ��%�Q���D
\�y�����`G�#I��p>w
о����ū���C�@�N1��"���!��Ͳ�
���[�+r��|�0G-��Ǹru��2̕�k�� r�o�s$��kt���
��1�D�n�#��D��4�\BT�n�C�]��W/���#��ӧ���G�!��;���3�Q'��`���C[���!]ڿJ{�:�6=�u�9c&_>s��|����.����}�t�j���a_C��g�����u�ty>`���x�@̈́�j+k�Y��q����KO���<�s�K,���AW���L��J�m����H�H�.��w�����iz��w0�sD���4L!|����!H\���h��4�{xt0��s&�U�r
���`�Sǻ�E�
�=���rh��C���i����x����x^��4��#mxi��n��x��jo���X���J�"o���W�Cr�`�p�<��`��ֆ���[ϥ��K��K�겷�N��o��I�T-R�;���-���#��\rK�+�+�����!���]
e��U�h	|�ZJt��Nx���U�-z�T�s)��x����t��-ՍU�^�@�R�s�{*s6�_���/5���+�o�d��ӫ�s*���4ܿD����Q4N:��MmWy'l���;�o�����;��-�z�����'�,���b���:6��N�gP&�(��3�+�8XỄ�@��R�+��x�}�b?Հ�r.��wFtXN�а�@%��@r�a���E�:Ay($x�J�^%:!o���Y�CT$m��O�E��]�������51TC\UC8���I�Ve�$��0���a7CRr�ӠyA�J �G�)2����헍���+��x�¡�yL�j�����ZK.`g ^�e�u�E�"_����^�N-|ի&�0'��&dL�6�eΒ`�/��'��nLj蟝�a]��W���=��<�$�yːmQ�s�(z/sHf����0���R�S�֩s%�}$�td�-��o�\�a5��"q2	�Rp��+���S�)g�rI� �b"w}V�bl��A���O�q��V_���p����ڂ��<�d\lSHW����?kA���ǭ�I��N<&&}%#e���������<��ZC�>ėF�.�$�Ky�sM�(��T=@�aa3GX�
�*��k�Փ�(��MI��5B9����i\U�̓�T֓F�%��k�U��eM�I?��� X�Y�F=�B�$A��zs5C�R�Lq{��$���}DlZ�y�:b	ϳ΂8���<���e$B��B�E�3C��Ȓk�xV��B�}Ƅ�]�־��+��p�\��w��$�W97Jɞ���,���_��M��l��҄�O�;���@)�ܒ6P!0��`��|va]�\�̠$f�����9��L����s�)�OB�������=[L�p���=���M<�{V�����ʒ��w��2y���ׅtk�L�����+c���
A��#�3+��Lv��x�יn�k�E��`���c�1X����{;re�/�C��f���*�Y��`�Pށ���k
!9�e�2xk"�5��Ι�����f/�wRN�I9)'�ܸ`�X$y!Bw�`�O����̙���h��p<�r4@�N�C��M��L����k�bMX-�pzU�L:�w����=v�O�z�]Ϡ�ׯ���蓐Cf>�&0�a�0��r�hy~!�}�1�ؙ|���"���a.97P�K%c�|���u&X�hy�)���0��Hdg�͆��鶹���=���k�f��,/7�0����A>L',�7�ě�G0��VY��Dƅ\nI�P���t�#�E��C�n��R�7x��@�	�"�Y:���;�<a�h4�J~
ҩ��CXg���r��m1�!y.x��j���>]ڽ�፹�Ұ˗�p|�VY���;NC��ylm��	�U�p7�V��x�Y�a��v���?}�����-�9a�|�~��%���q�1��,kՂ>[O��676��ۗ%i�3���O<“����?~��ȩ_gp��9�_�b.늎���ՠ��u�xl$���4��P�*�+�C;�.�~�V�7�t�uz+t��Gd�덦�F�\!Ӂ�7^�W#?	:�o�ߢ�tj���c{�B�f��9w?����K�=�(.($�~�5xQ�ͪ�B�i�3��s���?����`A+<,��q��b�A�q�ÍF�����Gx� r��Nc�K�򅄉C}����|�s�������5��g��1�i�\�`��,f<�k=�ʼn�9s
���	`
�&����2�`��O��ŗ�o;Z���HL�zN�.��M-�) �Js��.�Y�j�0�-���1
� ۘTT)��0�F<%HШ���>�M]��c����k�}�
�(���d��:�җ��*w�-|r�L�H� 1K*]0�t<Kmp�9F�F;I�v��i{��/��T.yǗ��.��N��+0��t���y�y��FsH@&�$�G�]���1��6�%	͍��W�
���V'-Y�Ө�_d8_���7���c 4�F%q]qi���b	)�׿^��=�1&1�������=/
�ʽ����
�Н���WQ�#���,�l�B«fp�Ga
��R�z����!!4!h��?��2�N]�n����)h,�EL�"z?4��pKب�A�d��;%�3`��8f���X-���I���!���s#�3	��	�bu��H��<�;�MvM�J��|x�U/	'ϫQ�3�>����ls�`pc"�@LXb�8~6S�ġ�<\unQ	����ad�%����*��eA �pT8U�Ao��ၒ�
R��
cyn$]��AքF[�
?����$�e=+���R���+B�>��L�(Y����x����_l'dW����N-�0.�d��<���/��M�ǒW'�j�E�w����x�����ns��3�Ey�$���>5[
k����}p�
�S3�r
@W���,�ϰ���zx^��h��@V@�5�`g���ڞ,��"S�ʺ�ʱZ�bP�%q3`c�}�6�9�y�fa
AM����A�aլ�q�̓��T��&?���]p�룫Ti��d�q��%�(P�e^"�D��pg�Ĝ�4x���Z��r$�(%w�Ī�*�_*��1�%F��+�E�ԂHJ��Ka>ˇ�}K�"����fٍ3]#q_���8���2����;;t��e�8s���C�[_G�r9��舁���B\]]Q���X�-.�1�J�~N�ޤ	�OEPwc��)c������Gtn�<�m�o����*9~_�_ۥ����5&��9<����tie�K��T����֬������a@�ͼX��D�;�&]V��e�c�4_��%v�x8��7��X���]�w}+�y�	wRN�I9)'�ܠ���P�}@&d�z��aP�ju�D��� n{Ѣ~�@��aPC72�%�|�Y�Uɇ�� ��ё�ej�K"S"�����u��y��Z�sD�T���T�����ҋ�z�#l�E/@h$Ȟ�*:�C��L� Zx/LI���ڝ[9�.�!��/S5D�;����B�J��\�#/���r`9�&�_��<>ZM��P"<�j3��N�c1tl�̀�B��?t���'s�9�qqZr��c�k4�l�p��q&�lg �0pr�)H����}	�@uA�_ ���σ���k�l��R�����}Z�g7�mm�BfR�2!�tɧ�Zd����Z�>�2Ѱ]��dS�#�����2D�#O=>w%o##䏀q�b��</�s/;���5:�r�=w�M����G@�Ϭ[y���͹�~-�!�ț�����NB��Nט�:��E��t3uyG��si�mo_W�$#�_�-R��Ȥ�����\�Z쑑AT���R���A��31��+u
j��k7xލ����R�N�H��T��[�"r���yU�����]a5�����
5�e��u �&���:K+�;�:3��}!׽��~��مq�(��"�z
S%�~Mq�\�g�+��5���?�N�1_����)-�PS��7�T!**�VqO:P�w�?U�%�ސ
2��5[
�g�.�4��-ȕ",�{:�0HǣL��--:a��z��+�|�AI[�c�JM�t9P�Ӱ��h��bM�:��f�|O�qw�v$-s��\";�#^�^���tE�
���%X`AfX�4W��Qi2�7���C��Y��P1O����4⒑�c�2\'���� ��S��m�{��;+��o<�]ON���:�sŭ���;�J�3
a��9I��dd ����I=@�
�ԏ���'�M��R	@���Z��@+��E7F%
��ք�s�����@}ɝ��L�p�b���Ɔ�uOB�)���D��c�	��w
�Kg*4���ǗTM�LB���eD[�+	IA8�׼Ib���-�x��-�[��⸅ori��
d26D�{ľ��8���,,�;%�9Dы�(�UQ��/���dBE�l���?��]2V�٨��Z4�C��4\T L�0"��%�-�g�!���l�ՒH��RF���k��Ť�R��
)��pPڇEB��M$X|�(=Z�xl��^��
q.&���0lR�+���!ٹ��gD wa��;%��G<�=��/̂�>�s��ݲs��.�{�o\�[R�S����w6����yl�DM��\٫'�K��}��6�"�VlJ�~�}��%���֟�b$��#MĮrâ�T��q�#���0[+{��	��)Z�w�o4GL걇Qn�^�*�Ny!�+�y��.݋�'��+᥄����6��G����9�5x;��(��F�6A>�B��݃}	_qq봄n@���6+o����{Dc&>Ƭty�X�b���~ޏ�4�z$��r�K[���b0�5&�F,�Q�X�m�"��X�N�ԅb|���
��rk����. ��iA���$
� A�TV\���׹o�<��6yj�G4�sf��F|.B�������㤜��rRN�Sѩ��N
�`Y��5�C8!�7�6�3�k���+ߙΐi$q���,z���g�;E�v�����e�m��O�9+������9�j4v
�b���7	tmx<,BExd�G�x����\��/�+�5H	�o�9rԉ���m��eY��u�7�ka<�9G�}ѵAԨ�I�q=��&GO\z�Ξ?'	�{͎"")8H�~n���U͏!�� l�!���f�� <�9�!��۬qr4���4�_O�l��C�-:_���k�X^�H��t�o>V@	�Ft�
c6Zh���Dr�ѐ��g�j�H�P�A�����u����ܗ�n�Z/� }��F�,/��c�D�mj1�$��L��1�O5��q��L�L���;x��x�z�-��nc��	�+�4�S1h����:Y�m�BB3{��U#Ix)`��s��X6����Ѕ�-�2��GB�!�0/=B�
>>�1���vz
�����C��1
����{��T�w��C��`(�9�3U�9�<9�G�V�V
���9�/64�+Z5�E.�`-�8L���u�;7#��	�)���� ���}���r/BPIR1t�$�U�ㄜ�XoS�ɾ6�/&A`�$��@��|�s!�:�i�%�IK[g�v&ʷ�*#{Id��@���̀o O����;�+LP��h4
�S�`2]�"0�����#�PGzU�S�Y�B'��dk�V5v�$��aꚥ]-pТ�m *UT�+Q�**.w#Q�|�LBV�S��9J�9��.U�K6yV�`|[=��d��e�RT��ew���H�4��d��@�ڎ8OʤQ�}{
ַ���\�D=�Tq�;$J�
Sǹ"��7>��p�s屐/C+p���dq�\�?ޗ
�6K�U�3K�Z�?�pv���,��ϭ8_�7���b���jx�� (�����90�丳<��I��.�ND���ZO��zBTċ��Gŭ�������Ұ�����@�O��*�:�
r2�^��(K_~�AJ`���*�|���(X�/$9x.�Mb��M!;̓#`m�`�B��I���h�2'��)aac��E$Ű�Q�C�:Z7�?#�G�	c/�Y����$�Ɉ�����!�	2B��4�B�]��Õ���"�6��A8y,x��B�cMz��-��]������{�O���Xd,}2���d�t��bB1�zQ�⣗�*Ŧe�+�J ��9��kyK��1�#�E��U�\l�E��Grx8*�Ĕ�f�jɲ����(�Α0o�
<�}A�8�>i����/�)ʋ��M���̓���"�Gfa��>L��d%��?���T�<����F�>�u�w�Na�!�S���!9Ft\x	���w��>�/���\W��nڶ�����c#�ɾ)�lg����P:F�[��4��T��;{'L���\ɒ�������)������֋e��N���SN6��Uv���M���P�Nml��!M��2��H�]�������|2h�
%�:E��6�_͚��X� 8�+�}V�V���ɱ¸���q���JFH&��X��p@�bY�˺���7���=O4�ř�M�òl0b��ǠPF�כֿ-�~H����u��a�{
��y��vX��1rհ�*���d��IѦbe�X!l��	�Z�ǬK�S=(&4��O��>���fs:)'夜��rR��Xx�뚃�"����Z�1��gי��cp��A�~�#UO=1��d�WCV�҆����
�#
���@6��ۧ��
�p�,y�Hթ\<�/ L*����o��FAP�P=�s9>)t;R<
!���*o�r�-�d��2��#b�b*�듼7o�\��3�+W.Ӆd�^魨��X��-�����$?�1P~��U	��mnr�γ����!@a����
�^{%nj!7&��K���ܻ]���AC
y~F;⡁|3�+2�	����.6�p��X��<薒��ʲ�b!�8�fӧL6�nj7E��s�&C:`����˓{�B���1�Z۠n�Ks&�V�z4⾃���̄��h+��-�6AD	
���5��f��Lue˚�8��@|����M&?�X�8&����`ళ%a���Zэ%�S��
yj�s���9���[�O԰��@N���gR��!�a�u�|���͘�G�����悟u$�/�vC"�K	��c��h�Mm{S0�\����ϳ.s��!�'g<s��h\kF�i�
�g��CP��z�|]���v20?�}&�F����F �VdN��߬�X�@F�����k�P<���_�g�1��C.ږxI�<C u���Y~�%d�r-�s��X��%N.��Ts$�\�nV�������
U��E4TS�4T�A�WZ%i��K���٩���9Y�>�z*+��}�
��F�ƙR�)��z�U��W9�J�h@��JZM1L���i7ӱOϱ�����4��6(�e����xX�N_` V0ith�V���V����?����qi6'���C�����O�����UΜ,ĕ9"Tn$��*u�({`9�e�@Lf^�k��c3t	�fd����ƒb'ƶX���\��;��Go�ed��сs�c�YI���:��=q@�ڐ��l�����MYrm�8OBm�<�"pѺ��ˆ��=s^��L����\�Q��<�c�Z��({Xh�FM�6�MKb���uo�c6+,����Dyzĺ>���I�'��$y�ȕ������Q33�K\E���q���b����4�H���V��m���B.xO)I%Y�BRX���a�Y�xŘgI^$<��RR&M����vR��E��B0�"��ϔ��X(+�e@���<b��&>/= {F	+]3�&!��vNChYۃ2c$��dV}��$}f�B���9�}��7��9:|��Ŭ�j�%�CII���Տ�GQz�cDQiQ�	�?i9v�'�`*�Eb�t}r^��+��>�"��FxW�tD��@�����W�:���E�<#K��+��B 5��$%��X-+.��5ž�LX/_jv,F'��K{i�\���=y̥�m���{�ޥ˴�+�?��hL��X�[�]�Y<�}�&�H
�i
����i�Ʌ���Ɏ+�}�<��\�f���f�/k��p*V�֟L2�YE������!�yoU�`��u���JW��6-V�=]a���4H�mm�q����:���kd�fM$Z��jqw_���5�1�~�+�X����s1F�n����"Y�I9)'夜���TE��BB�bp��n�\�v�O��<�s{	�y�C6�R�&��u/�M����N�s̈��ᡂ�51zb�x��`�/��0���~wۭ��c��8�nG�9H���g���=U�0��}5T.��f��׺� 	�/$�ȃ��4�3�E^M�������|w3�=X]�uDDŽW�h>��	�+1�c�|C���5�e�{���\�mx��>v딀��9�#�{!9��+�+B��>�a�!��x����vW$�d�����������/��Kh$H���#<_L0SLu��}���d~�va9^����x�C�B����5…��^�坝�	�7��?iq_XV:b�[�$!o�\��A����T�	<#	�
��B^4dr�v�����;;G�m�-|~�!0︯�֓����2"�y̓6@y�q�̣E�O����5z��G$�M7�$�g6�,fLH�7&�v��Xa�fkmSȚ#�`���GL��r�&yƘʌǦ���H2�i�l$�5�n�����@d�e^xɘ�-c��iD�}�A�|n�����AG<Vxp��,�ք�#!&21�$�\Ú�Y��b:�n�C07�
�V���ԑ����qH=#�,�80/[b���5�5"��nw���Mx�'�2~ ��v8�TR��X�����)0MKA�BG*��vWv�S�F����Uպ�����iLN��"ځ+N.�JKMr�^J�ބ���a��_��4�q��䯖����/ݸ��6U��%�tҔ���;�=�(V�D��ۼTܰ�+��<��z��F��#*O�,��c��m�4�{�W��{��1�q(�"��z
��)J��#Td
.��d�����Fp7�}QG�@���G2�|8%��N����޹������B[q��.��R���H��8aj�
��J����-��
6�mo{[f��=�E�!c�)Ԓ$�v��mB/ᣲ�T�
�M�mS˓9� T�Z#�:_�5&�rM��ŋm0Z'�HɣH��Ĺ��@t,Bl�z��0b¬�`���x��f9c@��1�"��;�;a<�y�RWAJ��d�	lҟ@2��$c�;�N��!S�Y%DQ�]��JsT�L����un��=��
�b_��KkO �8��o_�q<}.�N� =��.���_[��R��9g�P��8�G撘��xG�EV�i��Rwhw��.F2Q�ۮ�	a!9j\���/<�<�e��ŐraԢ�q1�_��|B���b����q�����A���{V�����)�d��ld�/��>�I����oJ֍e���������;�>/�w���#�[o�S\����Wڐ;��RT�G��%�W���#Y��m����Wƪ�����.����y���t-�Xg!��t�wh�"�"哐W�A���S��@�ׄ�h7\��`M����h�$@N��<�y_��N>�A��&>এ��Bb@+��Z]�Q��	��EzwW�K����Jӌ�|�0t�=��9+a�vvi"֞M:���{��,�!�Y�dN@�6+�]�5$=�ۧ��mʘDi �y�IxKp#��^�R��X�f�I9)'夜�����xq�jA.V�����&��mH\~��&��Ty�g�# ��,B��F�u�B?���~��P��1�Q��3��t�KO<)�w�y�r��j|�D��xA�.(���KN��#���1�n7���$�dh�g�q�Y�����E] E�O���0A?r�3�M5�C}�VC�"$�|L�#��S�	��!��ExX�K8c�s#i��kW��
��>}��x���d�卫W��G���f���@6X��"�#_(����I�l�����^(�4F8�,X�/�&H�1�f��ﳀ@�F�&3�KBw��:�:	��%�_�0M�dI�!��[fا�{���'���>���G�6�r�m����u<NHj?ȏPP�SML��'��������ŀY3a�~�(�i��f���0{����q��h�e����ꍺ<�YxN1!5f�`��8����	��96�BH�?{N�GRs�V��6>$E�%���0�n�?��ྵxn5�Ãe��s���A�4�"?��\��9㙒����h�	����4��=;{�S���Qf�	)��c �I�!�\x��L9	���õ��9��5D~>�πX�ìm�������hH�{�^�nЦ׏�F��XI�f���;�ܴ!z�g�)0 �5
���w�����;W�Q2��d��}��4����'d:x��Ͼw���a��;�m�a�\��=Kڑ%c�}����-��L7�j��~y�v�R(��O�+/+����R�E���y>�(�HAkS��ɩ)�"�lv]�T�ޤ�1�Mq��}�Jt����Ƕ�j�[�4���Nq�YS�Y��1}^���/�^�7K��Ҵ���|�ぅ�·�˧9��а*޸$�y�)�i��8F�Jx��g�x�Dr��凊�Q�(��VXi�O���KBSI��!!�][�L��`�i�Y6x&<<�|R��`n��/sݍ!u�k�Λͦ��V�z�EW����Iͤ�})ɁR"!�x��6�o��pJ�J7ŮXY�]Y��6�B)�)%���#�� ��>�x�]�%�F�(譯��7�<�_�3����1(��M��k�N�%�.ϥ@�h�]��̕@W���}�b%�@��Ƹ0�rΖ,�LJ�56gs�O=����5T��2��$�ښ(:��!�N�ylSH(Q�Z��M0\��	6��������ma1p���!�3ԫ!�j��XS�e}�6������"������&��ᝉ���$_��GC�T������~�?K�����'?�"P����P�a��2��{B�w*���ݐw�ږ~�\k��N%�K�m-
�i�r2Q���;�K�.-� I�x?��m�s��K�b�����[�t }"���KN.שV'�ztdhI#�@NI��!�T`-�0鹐'Dw|�Q'�eM~V�M�ӈy� �ͷ�F[�2�OJHp�B��"��ߧ���6�lؚ0��?��f��L Y%�$Vz��ch'J��s�G��1����{BA4��8�%
���ש�J��3gDˇ�
��CX'��WcŘ�ys�g�b�ˣ�?bųv�� ��;bhc�"�~ڼ6w�s��h�IV�k,�����Y������m�&�ɐ�����rRN�I9)OYD�����<�B�C�2���q�B=D�(���|6/tO�W�x�2d,�Š\��jȽ��ATh�Gɫ��C_8w�V�=�/������6�eQ��/~��e�;�E`D�pCmH���$���,��BȬYi�0B5]��K���{���y%F�+MGt�?`��Ͽ��e�2���h ����cw�r�m�=(��������n�3�O�����|R�d
�(uW����k��o�o9��m.B��.Y���tN��qj (c��H��b���t E�j�Z�H��<�ǝ\�`�-ق�k!��%F�L�p��Z_]�u&;.0���X�湳���-���[�=���!����Fȹѭ�s�F5�w�ޡ�F���p^�����^j@�y`-x�@7?�y�e4�x>��1$��}�#�M����x4 g���ք��.]���.2�%m�����|B�7� ��V{"k��zs��������=?��5]�h�涰�"����%dc�xܓx�&3��<�d|:]�1��� .��>bF��#��	����A�d�a�^xO0�p<D�a��h���n��a�`�kX7/�&�.!#�d:���n�Ai1Y����W~/�^X>��8�]���O%�<�ߑ���9Ǯ��E\��I��*�q���8��3�5�5��YlJq
�\C��
D{|(nX��:i��th�����}|L��V������% �JΔ���	��=v�h�L��ra�LTԑ��**�5vɧp����ՑT��
�XL�侑ߠb>�����t���얞Q~ob���Ou�R�$m�֠���|�(i��@����ݧO�����S�(
we��.+>�������/%o���*��
WrI�s�\T�K���������p,��Ȳ_@{�}���xr��`1���Pa��1!8��M����Ql�6Q��&,y�p���sq�a��b�<4�}�bĉ�'֌`�P�ɓ���X�����@k��!����c�]/�2
F���!4X��@�1�bh%�LJ�s�&��x�-YeL��G���@����ky ����(��!�#�!,	*"����-�of�ۃ����v����U
�x�~aՃ�Q�Q
�I$�r�s�B�I�]H�d!���Z�}��8�ȧeX�GTXɫ�9{V4ᣬ��#%�ҟ�\L���kW��[�9��~n4����(�=�ˏ�5%f}2�U�G��
aǾ�tK�#慑�F�j��*�U1�9�G�G�����V9a+�/�A�g��%#��I}�	��sѡD‰kV��u�3ɂ�sޗ�[��*�&7���C�z�1d�>���%B
��*ЂP����<m�;M��[8VL�G���HouVhc�$���7{4]oҼS0D�*+�Pp[EP�*�}����iRq�=���3I��`Œ��+׮�$x7�Xq�g��
`�50�Qg��
+dۈ5΀ˈ<�렮�$��p�9�1���\#|R�	�&�����5�1fpg<Q����j�ګ+ܾ�VN'夜��rRN����ϼ�𘈵9�������dԧ��&&�̇MB��$�˞��j"�L���{"b�#�r,^/4�6�N7h!c�2��b��yX���d���a�͠�M7�A����՝�Sn����H��2&א� 
�A�x���4j�u��b ���(~Ĉ��A�Xp� �)�Уȉ	C���G4dv�+�DM�S���a�9���p���xH<bt��M?��x`�n�t�p4��{۴}t �<��u�a076�i��X��Ih*�Ҡ�I��F�%ɧ���Y�;.�JϹ�.��{�Eϼ�vz�t��iZ�5��Q��*�6M�@hXn�ZB�{�b�i���"R�>X�c��!��K&�‹������F<ux�r{�|� x~\;إ!�%��I��|�4H�^����90�s����o�'��9|;�~_����[�t}���K�� ��5:w8���Ԟs�[,���"�8L��sϜ����O�C ��}n#�T�qo�:~l�
Mx��+�����ӹ�3���H�֍^�	����|"�/g7ψ�Jr��o
��h�}�Z��k31p�HL/�Bx��x!����uˉ����9-=˝9��|��H�Ȫ�y<E���k!b�L���	�5��!���đЮ�!��P',�y�8`b�l@���)��[�Jj��ɹRS� 
kՈ��x��k���A&c�\���"�|)��V���#�|�1BY��#$��४0����|a��R�h�V\e\H�ԲnT�Qr!%ƫ�u�=�@P�՟����ae(�jL�1��>'�PWĬ�F�Z�#�˥X[A*ƾu��e"5�������#F7�]h�A�,�������\��K�i�iQ���z+s#�&���u�R�u��'�"�<r����;'uXݠ�-�sT���>�TB_I���oQ�q���Tl��_����h���]��)��U\U�s�ȞyF����
���)HB����z'G+��4��z,��}6^JI�4ZTҰؖ�W��®��K�vV�$~�X�;`�ޥ`6�$v~rN�4�W:�N1L�W����z��kV��C���p�^<4�@Փ���@�p���~�T��v|���N,����Ycf*x�«�~�#u�8��%�D���r.�[��Fu����H,H��5B���X��<�e�᳤MY��40��Bіy��R�̓�B���隘�x<���[��,��2�MX"��$%���Z�p��wi.��N�b�A��˒�Y*K�N鼭��VoZ� ��:m,�`,���l.v}N��\�B�ls�@�-�u,����$Fh�搶K��p��
��U6ٰiڙ�/B�9{ �
z]�H
.�&��"�f\�3�q"��>������QZ
��⧺ɧ�0�?7jg�x��|�u^�JPx,��= J��;�^㒶Y�Q�s��F���0K���J�M=�.+�>��HQ�p�oŋ�56�] T�Z�C�ϤBJy�Ҟ�T"ZRW����o*��D<=������r���s�%>��'��4.T.x�@r�%�i��'�ɊV�]�i+��s[t�֋�[��n�3#In
0a�����6�,ri�	�Ag���j��lH5��m�U��xY��=kqM�R#J�@3V�N�;K
Kv��eo�\۠9��GLn<y�*]g���S[�mn�����)��*���%^���ԟ����F��ܧ�@|g�7�Gܧ�'��n4���3Q�y,癉��J�N�I9)'夜��*8��CsO �O��I���A��!�c��
C=��8�pO&��H�PyP��N:�k�CJ��N%I��粻�����΀}��}хɩ���T��\!��sޒ6�Q
`q>z�y���b�!���e��l1	�8���̀p:�A_CC1�a��Ă�Ab���3�c�d�I�ͳwBȟC��իW�Xj������w�cspp z���欬E�xxzt�Ǣ��0�~��qǝt�ś�ܙ�r�]kH(��vW�`�b@^�܅P75՗0b�XWp::;�]a���CC1���cf���2���x3ԕX�12����×����|\�[!G
0�z,J�0��q��/D&�M���/S��W*^G\��&�dy��k�ќ�=�Mϼ:�3n�8I�Z@��3������ѵ�]�"x^0��u��d��Y6N�~�#��esĄ�����-<M�^����.w�F�<�&L�M�mY���q4����sB�u�Y��pƏ��{����=�5��"W��چ�4\ܼ�4����r��,㝆�:::���݈�`�A�Mxi ���,�����B0侄���k��^��>�NBH/��`�.�Y��ү�7U �2S� U�R��QČҿ�W@�P;����J߅����g�����K;窝K��K׺J+�!��+E��%�L+^�w�e����U�V�JRs������=k���.�&&}L��,1z�PdY�g|B���;�Ź�0�[ƶ�'�2�W0���>�G��i�W4֦�h����c+qh��|������KfrƲg�]W>�[��;��q�������,��yyX�&�o\���%/�S9C��A�7$���(N��-����>eN�;n.%. J�76�F�nCT�1Ibb�+�WDZ�d|���X%�T-)#^a��MB(��Kx���!`Bԣ�|��`0���?l��L��.���E* ��BcT*�e�M�F �N�X��t���YB�L�����r(iFd�"���[B^%a�
���<C��Y�k���xK�f���[�F�ˬ۵-�S�L�dd䝯�?���0�^�#…��Xl\�����$�ǁA�#>�o�����~ڧV#
��&Tl�F��ދ�L�`|�fN����| (�0W��d,.ƛ¢�F�X�}Ҋ�7�� �+�\S��"�E`�[��LyU ����mX�BIhK���%nHy"L9�tS)E��O�<�h�|�}a<a�m�)IA�JpzK{�+���;R]��<��IGM:���E�v;kOA��=��A�e�X�K�OO!\�Zo���D��QqT�z]�;�q�.�c�����sJdgL�-?�M\3�b�X{�"2�	:�|�Lx�ݔN�y���V�30�gv����D����͵�m���_ݥ��딭u��"�>:��s�t�|QA"�Ҍ���ds��53���H��k��1�K=�RV��|�46f�.�:G�±�;�$�PB{[[�OC���?q���t˩SdJ���ѽ�$lWM�gj��kVX6֙��u~�2�5�6i�eq���
ޟ�Ht#�?�����rRN��
�Dg��v���x7f��g�`�X�c�1�������fK���M���za-�����`�nssS�F�Ȑ�����ᡄ�20����nө�3�6X%d�.�(� i�U����O�D@��ђ`۫�:wrh~ȅ��ʲ�� �zuh�}Ƙ@��=��sX�L���<����٦n{]si�˅��O�rv���g&a�����
5H�d�X�F"y
�����K3��[#Q�'����67�cI�o�p����h鋅?O9Ӳ�7t��\u�����P�|��0��KtZ�]�0�Q��v�k��A&Xd���,��)��
ȉQK<IVWWc��OãՄ��Vo�p{6��&��&�]��Т��΅�x��w�w}��j�ht�'y�d�T��
:1p��BBr�hπ	
��G1X��D�FMȰ}&'9�/o {��b<R�F�~΃�.�r�X)��Fx��Ը�X���y�5I9p9w�^J�2�\��4wK ��gBW��H0Τ�xJu~i�U���i�sx&�?>kH[�DS�d��9.B�{}�T�Ļ��i��pN���PF�ػ-�v�Ί����Itn���ux��V�?
l���$�L
~���ue�XuiyG启4� i|z״�=����K���w���bv��ɮ��^��GѻcǼB��'g��%�d�iĮP���T�q�WuIr�������#i�r).�����y�\g��&��ˊ&h���߀�!Ξ��Ye֦�G�a�-O��Yҗ�XF�`}�ƾh��''��O�{�y���Ar�b��ӫ���$Yy����x{P�>և�Q!/�}��K��9v�>��0��i���{�T�B�����%
3'^S%9�o.3��1a�Yy9�}0Fw*,�msH����)�p�e��,a��E��N�[Vl8�~��/�t� ��a���jec$G3��
:$�Q�W�.��<;P�͗�mE{�f�8�MI����;���)�s)m�V�hY��lSˆZ-	��ұk"0���n)Y�q�ss̨�.0�$mo��k��4�Iu<�
4�	�D��оȅ��2�&O��@(�P�^W�C���s
©Y��`LE���z��I�q\<b���pk�Eܳ�>�b��mV�>��y���<�����Hxn�\�U�:��n ����8V���b���p^^�I��6'��8�g+���#���ih��zE��-(�@�\K:6v���š$d���{KNo��$�J�]�
��o%2��)ICm*ȩ���T��p	�XA��Hƪ:��	�f�Fރ���\'���@�;a���ݢ���S
���/}��r~�ϥr�+���y�\1T���Z��޿�����Ҧ@���)+/W�i�$�||��Y:w�M��ei��@�s���mV�W�+���R���}	�0���5m�C�vS�Xa�E��,$��M�!�zȏyo����O��,#�l�%��d8�	�K�r����|���E��x���G�W��ʕ˔�~��
+��?�����Ɵ��@�<�|=�pc�?�b~�4�5!T���
0g����:)'夜�����t��z��V:���hl�R]����/�F������k�u��F1}���m���+�pH���� z���2`�x��axR��u3��n!���}D��P� \�A�Q�5��KSH �V-���H"#���C�[m��!��%���G�[HX�������)�<F�Z=�G�#����jwY��#�_7�'�A=�vDƞ��i�e������X���'L����tL�����k�c�ߩH.:��~�	��<��Μ�s[�R��T��wV�"W�8,�"@e�1*g�~�/BLV�B.�^Y�1"�+�c������\��ec/s�/�6j�Bq
sM�p�N=f�*Ȭ
�<�P�h�	�"����=B��d>�y.���F��#�� �
� wB��g1� =���1��Xx��c�X��$i���KH��	�g0/X��Ļ}D.��3�l���5|ڇ��0n���$����>ɯ� ���ÌKͰ
�n���9o��c�ǰ�,^��p��t�2�[�`2��-C��L���d���=Yз�V���a$!�HM&���6���Ê7%��x<�Y�ˬ^�IR(p	���s�
wzju�W��BCL �pj�F�V���}�sz���E5���Ӿ-��|�o.��%�J_��Q�U}:|������]0KƱ�+Xc���Εn��)�e�=�8�
C��T]ӽ�Η	�8$��6�H����>�m
��y;^nOA{�%0+�]U�S�<� mq��� Z6O>b��'X	��q�xEJs��*n�k����N�.���w�������QjQ�c��<�[�UH�8���y����#�����n'�"7Gu�"SX���ic�����5�:eOpo�+�d��1�ՁF�r3��G��8 a��"߲���8g��A:�ĥ�	Br0����EH���c:�Y�lHWG��-��&"\�$n��W�{}��ٜ8�|xp�$A ͂�+dT۬k�׌�#&b�a#���1��0�^.�-��F����\ȸ����XM�q�����PrEHl'�ky=�β���Ăl�AK�#��Ղe�Y&e��Ԉ#h���Z)�z���>Z ��Tp:˲���Rh*m�C�|��(&J7G�2��
�,;�b*�]�kY2*���ؚ��$	�����eI .�0���!�:�s#� 8������1�ϑ�����*�u�c2Wϒ�S��(A�j���(	O�uE�1��?��/�C7�Z�����9%Z a�Z���5�$���OɹA���;^G�n��[@D�!���SŰ�hj������W�y3�aFK��KF&_��)���kIW�������O�ʯ��ۇ����1�U[k�;oW���b�62�k�fb
���ؓa��1�p]�}��5�������I��{QDa�T��;������?�!�ԃ��P�N���@Rލ�^=fA����Y�a�S��牔ag��Tv����Or���Ǫ��G"��w��~A�w�o�E-�a��4D>\gu�c��"�����:^�����A��x^l4�t��Pm4��J�zw�L�o>Gs�~4��BD([�y:�j��W
v�����C��#��7!:u~��+�@bT��ª�E/6UFg�>hV�y߭!�e-�=w�=��cxg�y><Pp�J���X!�����#������uy�Af��FC��k���>�kS:��BMV�=��0&|? �J�$�5-�sŖ��&�E�g��qا��
Z��m�}˳��{d7�$O�I�c,n Q�_����/�}?L��{�]ϧW��Ut��
QS�G�/�lir�+�K/�sz졏�/��/��H������&:���u��B�>.�1�BH�;^3��������w��s���j�g4��syM��.�(�ca�zRN�[��%�?�����`�`8��nSru@�馛i�?��kL�o��.e+5ُ:���9OB�z����,/��Lo��$����A�72f�����i��t�E���e�x�znS$��d*z��/�k��"�3!9���C����Hd�x�d
�w��y!���,@4:*	�
#/G��	����4���30����c�a.I�aHc��xLr�a%i0&�屸m�!%�W�i��ԇ�H��Y�ߥ'/��z��o�)�)x��\�g�	kLH���!��S,����O��k�Ń�#JC��e����,x~@���sP+~�)��h��ZG_�KB0��q�D���H�!��#!�pM��yYd��/z�p[��'�
�h��&��P85��(���?"�F�實�lDz����P4���	�&�8��#����A�˺�]A�Yx<s����=M�
���5�b����||�����g Y.�!�BT�\B���D�uxe�sыP̺;����Qb4T'!0����L#=��1�I#6������t.'�����0��Eۢ	֕�aaԘIL�=�ÈOef�AQ�(����pO�.K���q��<��L���^��_��fr��˕3#�N���Y\^��>�ZWI��]X�T�K��Z��%l�zR�G�cDNq�`�\��O�Y��+*zڞ�^�
|쟵�8�'��d|�'d�&v����2y-�q���B�.ψ�s���0G�'#�D|ը��a��P(nX��0��Yn�i�z����g�'s�0���>�ϻ$
����C1�v�;��v��.�Q��7�̵;�����!�ߘ�����"�qĹ�9�0��;P�\A)��@V$�(t�b�KY�d��r����`�h� ;��4�Ս
i�PO�F\��!�%Xq��Q�؟m33��4	�l�D!�Csi�kWۈ�^YiL����F��y�ٟa��b��-XB{�߼/`哒
��:� ��~�|�(y��&����'�T�"�#�� .��C��^������d:������+�U�{�
p�r����K䏞l�^�|���4�%a�Dڔ��KmӾ�E��
Y6Tlj�R����y���2w�ܗ�i���K�yx�̃���wŰV١
��g�=��l,�����;�e�ȸe$����H�ܵA*�j
`}�a�{�n�UKp��_�qe���O��^p+j<�F�4�'�Z�J[��X�#�
�6}�4�Z!³�E�0��SE���4E�KH yv���Q��O�GW�Sz�[�A�_ۑ$w��p�v�2=��C,@#T��᱂�� ��(>a��a�54�
�����ڱuH	���޶�B�,t��J��EHM�/���>_���i�_(ת%Q�QF�'����ό�V|rM�/%bd<��6c�����孰�J����#Eq4�D�4���LK���w��"��O��Bع����}�������h��:�ϑ&,Ş�wy�` c �����t���%��!��X����a ��aE~��B��ר�\R���A6j�6�@̈z��m&fj����3(����E���~��xβv�m�Һ�Bã�����~؄�&�)+~��J]���d_9}���3V*�*�D�]������nl��	|�j�,�C��r�/ܦCLm����>;8��i�y�f��	!�N�I��+�.�=H?��@/}��鯿�L�|���A���A�����	;�X̓��P��$�>�y><x�~�g�%��o�^��S�����o����򗾏�6B<;��y���C.K�wk���e_O���W�CE��hvu0J+�i�u����;)'勵t�
�A�OkL�;�Q�Ÿ�`�ө�M�$?�q�b�F	;�DO�vh�Ӥ��X�YȎi��;y��
�$��"�3DH)�c�	<:t�ח��0Z����pC&`�{0�MnϠ?�|�)R4�82�H��u��Ot̚Z܋��\�!����04`�U��xm���
����i(g���f�3��Z[�y5�����t����ES�2@_���F/	�%,i$xz��E��D���܂�j�Ăo0��\�6E�s��vvU��<
o��6X��B�~��A;)�$i��!��uDπ1G��c-� �Lx@W[�����!��k��b�ix)���v1��$���D����=c1B�Q�F0���av�
/�)�lC&��|����0�	�@8o����k0�Dd�C�5����
�:M��:���S��|�G�tB��ǕU��4�
cU$1o�����k^=� �5YD4�/3x�����)�����tj‹�W�d�����iuI��PV;+*m�2΋�&����BX�D�썰�2����2�x��*Ƈ��vB����
��T�I��ɽy�$�0ej8g�n�Qý'�����i�����`���W�c1?�(XCj)Q1KtӐ�u��k���A�*C=�n��`'�:ŀQ�E	75��t�TSB(�7�tAQ���.��6�.�fY�����b�%E�	������f�铖c��WV��>Y9�F��c��q@3�����{Q���=�,�e�j� ��h��H05��\�QT���*5.�r<��ƶ ���NQ��J�]���I����0Oe�ʅ�鮷��؎p�ݦ��Z����?�ϯT1������+_���W��˙!�G�4�-�$���x�5	_�Sœ2���Sv�ҳz���^����D�熩YXqs;��8��e�O����&��\cP��a�����l��&�ԏ�-+�)@xg �XaxIf&�I�@~ ����Vؤe��2k�0%&�q̙��)a�0Ǝ{_��y�$�X���lAl�F<VP挀��A �{�#*V�.���$���l�q��?̻�r~XLY�P��)��S�ܰ$h�Iǖ(��J��u�`�|��O�u�ч�គ�O��Io��-Y�]�_��&��L�[E��b��o�(I/�-"�н ��H�1`�`�
��/��Y���H/#��"�ɉ�$c"^,����B��K�4Ȃ�S�zaE�+�tY�= �VS%��`�6�Z�ԫ��e��t�pɮ��3_��eUK�LXE/n�J�oF�(���A ^�l�Z�a�[�D x+�2�� 	Щ9�2!��Y��S���`�S_B��5�p�,d6٤s�1ܸ���Y@(����`I��j�
/�P�̅��|���	�#�?�9<8�} }������c�(/��$n����PN�إ�7��!D7�D0(e �S!T��~�a�un�^��.y��ӻ$��|k���D��+�*-)���$��'��R���ۛ~U>V��d�'�ԯ����D3�	'=+���&�-z��Gi�d��-����N��p��h���r�{�.υ��\�����9�n�Ќ�+�#�5@(�u�ܨ�RM�x$<Dh,����@�|��7[5�J�p4sn"�Eg��y%
0���X�me��V��[�M��L˛�O�%%�
�z���}��6yV
�1i�8�}��TC���#�_y�G��@�J�p�~��ۼ�6ϝ�1�ᐁ���I9)�%B���7ы���[���;�c��k��;��8��y�C��1ߥ�=���
v�=�Mϻ�=��>�ߨ�^��z�W��V��y|��`жI�����~��tm_�}/]�z�.\|=��S������>���Jr�g<�tv�+���u�_]��ǟx�>��Q�s�����y�Q�C�>��}ߤ/y�3��5e@�x�o�xF�<��;���6Ю:�����T +�;̎�p��3�<y�*�r˭���A�!�]M5�הs�0ǻ;�w�̙-��tm{O�'6��>��4�0����-�[�_OY�]_[���\�]������*���n�g�L�|��$�v�
� �GM�%)4\V]��t!z7r�)��N&��y�-{.�U��&��P�5��`l���s��T�>��r0�~m�2JO��#	��Ҩ5h "<�kz1��q�b�ܞ�. 9/����}� ?���ѐI�#�}�66�_[]��,}�M�ۏ���[[�(k��g��F��|�5g`!���a����a��J�#^���U?�{�)��h?/�9��M�i=&�G�D���c��|j0�!-�ᗣǿwo\O<�G��� ~���A�U]cyo����������J|�9�g,#���H�\�`��r�2(e��:s��r�m���i�nf��ēcJ[���ٗ�,:���do1}����[���1��aؚ����!dG���QL7�*	)����T1�̪\�8X{gJb`n�S��aF��>w>����l����k'#��k 4B�5%wHM�&��jױ0�>`Q�
�
�%ð �S#|Z�0�ے�;�2�,�l��LrI�*���p1�������Dۉbu��!w�I��fD��=6��>����
P*�>(�z��.��^�@��ZjV�]<�v�zW�gU�$3gDU�{���.��nA1�F'�{��w�pY���lВg�.���rS��z���q��`�諯�iث8��V���eM�7�,�1��x�ѕ�Hgj�!G�P�Jĕ���m9=���C�\�`�Y���J�ו�-Fx> $[lc�2��@Nj'Z��F�?�c�˜�ۇ�i
�+^�@4��G�G)χ9G��F\k���5�œ1��Ӻ�s��(WT�l®�r���Zᦑ�I��[1��6R��{d��J�����?�\"��5Y�y����^l(Q$Q�W�O�w��Y��Lp���xN�՚�<l\��l�K`�#i�l
�CX����SB"nW�¢Ϲ-��l� �\�c�[����g�~�!yH@vu�,���q����ȏ�R߬oѯz%�H���r˭�\�k��݀���F�� ���+������Y*��E�6�<��JtԄ��6Ckc��!��>���Ē�"sl�����ɒRL
+�,@�Z7E#Y���p1��!9K:�3�,L�E�̓r�D�Ň��<3H��-$[�Z��Z�d�{_�}�s�>�}�bHI� ����c̷?���K@$��I ]�E<�j�T˔X�|yXY5�+L���Tq���һ�.��K��,E(��z�Ċ�X��\�D�7<#X��,�<�HR
*󺄖�6��3����|��Do3<W��\��5.�leN�����1�_�5�sw�o!�"�ePp(X��r����T{ei�R��|���2)�/��U��!������+���e�^鄊سD$�c��ߔH?��]ro_x�-=�XG��0�6:.�n3db���W��E����봷�O+�רq��n��ȏ1���A
�z�abn���暄�Rg�-��'�PD�HxXGG�� G��t"��/I��q��P�m��p \m��09::��E�z}Ⱦ� ,�f����IN�+ׯ��D����N�Prs��q��[h�	������ݼ�)aD��cEY.��\MN^9��[�x�?z���E���rR��
���������K�bQ]F�x�7�O�׿M�>�M�٠/a�^���Эٳ��g��{	=��_.�a�{��{��V�M��?�����g��ڗ������~#�7�Gw�y�>�ߤw|�~��׾�~���8}汯�g�|�����SMz�׽���9�›�^���~�-��n{�+�c�u�o�z?}�W����W���_�K�O�}�W�w�L_������M����{��w�-���4��KϾ�"�������	܌N�I��*�`��j�%d��Q �Ϟ9K/�,2��JG��S�[3/F4:'ȇ��Ξ=M�L�#L�Y���	�"���ڶ;e=W�܌��Ao�"/��6���q�'癄�Z9u�n�x�6��iuu�����02�����L�:�̙09�)�/��ψ�O��T��\���ȟN��V�j��⇁�5r�?���Ћ7΍�ɱl��笹���@0rl�}&}��}
ŋ��q�ᠹs�r�NM���~��-_۹>�n�Dz�9Q�7^�Mj��;`9�0DxP��4��6m���P�et���ƅ��ȃ��mn�G�ƹz�,Bxg<[	��ET�����������X���(��� �w�c�,߇a �0U��#�!
�.��lD�!e�O��^0L~L�s4IJ�4!�À�m}���S��9���n�B�!�W��N�.]]��x���hS����1��v�]�I�)�<|.��܋���>"?��|�("]�tk�Bx�1��m�{$I��h�i9�gr�6�>~�{��!�	!�����X�1ϣr%c�c��5fFz0�<�fa�k���$y?AC�m�QB�܇<�N"�S���ڒsd2�ʳ#\Z����Q|�%��ȃc%�&ǿ*�?���
}��+���0U��Wn�we\�y��a�+N�E�
���m�v!W�+��%}���+ړ�kdD���u�I
��:L��}"��,~�M;�o��2�'=�������2���JWT�tle�2Ca�R��86���8ޅ�Q�]i���Qy�F�g����ic�b�V}�\R�kr��g�L��X,U=���+�'˱�$���ad�\��VR�?9�0>��W���&M�AD� �"�T���u��=ξL�U���Tah�3Z�� �#!$�a0ޘ$6�ϑ�H����4�o{��`��,qVZ�e�3�������ވ�C�;���d�1�bQ��,�%`��aӀe�1a#��ș'�.õ�Wd�x
�l�ȓ���uB�Vx^`s�YG�H�5.���%H�U���2�[��EpkL�o/�ڧ��B�_iOQ���a�2J��2
��(�R�RǹH*o�gz�^�0\z�d���Z�	���N�<{�s�鱚���#m���)t�܅�R�@/����t>�Vs!_���H��^9��eT�"̉�n�O^�Ŕ��ބ�@���Y���Ib�u��C��p2�*�ڈ�N��8���g����D12&�Ў�tQ ����.�CM�X�Xk-�3��bk�9˿!(w{Qd$lΠ��C!:K�`o�ד���
�;�|AM>g��vh�@�7�Ǔ8�^	����X���$x�5eD5	a|�2ɧ!���&�D�y��)�X��o��'ɔIO�O������BJ��\C��-Q�V����πpG,�n��x߇�M۷��in$�3��wW¬��6"�/�8�:O�g��T�t����",;��V�h!�Bq��0�֙WiY|+�:&F��"h-��$ɹBf��SZ��q3=y;�	i���*��2�FX���]a�p����.��ls�X��w��=�9
DG�n\�ڒ�8c9S�4fBlf$���H&�E{}m�:�$�_��f$�x�BL����s�C�WMx�-3�om�,��m �p��a��#>/���^[�)޹|���P�9{�X�ŷ�9#d�C��.�	X�Մ2�<=6X��J~#�ދ:O"6��uiom����I9)_lE���A��QJ2Uk
ሱ�i�i+N�`@Z�����?�C^Y�DV诽��'�/���o����O�K_���������W��E��u��i�W?����׼�Gz͟��t�*]:դ��_��׾�v�x/M���=����@�>���~����>=��MB��~�fF��7�a�3���}���?L�����!���I��B�{�.���>@n�I9)_LE�d2��j v$9������!7r�L?�/r�p<�	�9�v����x_�G\H�6˴�NY>��x-���9��B�J�������d�y/�;}z�z�C?�B�BwҰ������@eR�"{ �]��l���U_�+s�C%\����E�jG��Y����<�N�6�x\ _��RZ�jH���^��\�/�sܣ���m;=�M��<+c_�֙�G%�2-&�F��$c��P�2�K�B��T��2l����M�ĭ=�ԭ+�Dg��A���Ѩ�[4:�ӼY��ғO���#�>`�9L��]b>�xOT���2
<n%�BK�GH�ΐ�^E���\�Pr�W��X�~�r������@Ɓ@�G9d>n�4�`��4�
��IS�w��<[�Ȋc�c��G��tbx#��Y��x��q�+=�׆�	2"�[$��y�F&͇kYG
l'�+�"�`BN�}	�b�-�xCBtO�0�כA��l	ߍE��6��Ӆ�&?�DI>�s5@�$�6�T��L�y��M<G����h�!1@�p{����HN�A�3/*��2�2Y,�b������yj�+c��9�$.Ǵ�<r�n{����[tcp|�jt�Oշj�ɕc!W���)`OIN���tu�D��*�08%�{���
�0޾Edzk�*��=��Vd��yÆ}Z��\�vq�.�m,�v�dl|Y����Lu5�i�ߒ
�ș��J�ܢ]{�>U(����p�<w,���9D�;Au����J����m�Z:S�	����6Pqn��{ZA����T�>k��xs��A(��~nD��s�o�?�G�����V�D�:UX�r|���H^�Bq	s��}9��U�T�#c[�������;��W�+�ez/yz$�O\b�1���D4�E�)1����A,Mё�z��~�%�G�Y���c�w��IH�%�Jp�4�q=xN��&+�Z	�5Ѷq�C�1uP,v"��vB(F�������%���Y�T\�"r_�^�-��wJ�d�Z��!D`��]k��EҌd�%Ķ�x����H�H4��&ܣ�9�#3$ٮ�8�iމ,�zج�>x�d�b�ɘx[�B&fY�H�E��y�8Y�rs���w�&��ȍ�fc�$v��H.�4_,��s	ª�$��C)Z	��R偠��őű5��v���P%��*$�,��P��m9i��I$C(�!"�Q��*s���=^�X�p�ds�,ٸnR�{V?��G?�qz��G��w}�73��/�"=��ϧ�wj_���ʚ�e��+��e�~�&��u���~�#�t���~�f<�ϣ���/^�Ho��ߧ�ο�k�
-O�.�R��)�<_a�˜�I�^�%/�[n�H�<�m1��`�3�辏}����t�����Jçz�>���+_�B��ߡ'��B_��_Go}���K^�b���W~�+�J�]�y7��K_@�^�B��Ge-CBs��A��C,Y���Zlo�ϢJ0��3u�|
�]T9�,FZ*9��b2�&�P^��Ʌ%�J���T[X��|-Eǥ������5�����>~�DX[6�ml����;S�J�x��d��AQ�>�7��t��\����uO���h�?�+�PJ���5fs�G�O��&ϗ�?A�L������A�i����m��Qmp���Y�6s	K�ĭ8�����$����h��|��Y�ِ5n�Jhm:
���UH�x����c.�6�$k�6�1!8`�a�|�j�N���)r#V���sb}��&{)0�k�J<e<a����k���O��I9)��SV�Ԋ�ǯ��=�ש.!����~����{�Ic��'G~+yma򒁷����!2Mp�����Wг��r��~�~�M���wЕ�'�-o�e�d,��;u����v6����ٜ��t7�j���t��N_��WP������I���K�0�*r/D�y�W�����.�o��yM�2P֢I���ݢ��so���_���?B��1}���7X�ٸ��wRN�W����%i:�7y�̲&uVZ�)�5S���q�d2R=�	l�y�ʲ
����[B��CBk�B.t��ȵ��eN��2Q��m�:M����^2z0�`p�0[
���ں�!�9C�ʵ
I*�r��X������~D)pM/�ݽN!�ԑ��51r��A�F��Ր��:�h<;|����_??J�[������6��4��x,;���@y��T�@&���%���*;�N���P
�V!W�T�
��Ui��=�ҽ���kc�p8��yv��]�6�tzsKJ�3p��[o��\��Ouz⁁�X�</Ƽ�J�m�p_��-��[@�s�iЫ]��q
<��0�˥
	���-��|�����-%7��y�)���n��&5%;�3#5n�3��)��N�^�
DG
r�<E}�е��g�#	&���~��.��6�\80ʙ�Oa�M2C�s��j��a^d�����<x�Ox�u�����K�'֌Rq}��$�K
��7��}���3���7j4k��t��r�ӆG�X���g
��~�cuȲ,h.x`/��i�t�sG��E�Ē��C�X1�m�	�<�3~w�Y^#$(֌�@��D��NS<>E���%�-�窚U���E<�i;�/�}W�&�"�^^�/0]5�[b�`v�<�1G�7�<��\|&E��!]�+�zJ�i��6�?✧2��\�t��Q.��!�D�>���O��x��q�ʩ�_��X�;V{V�zv����eL�Ԕ���t~Q��5ؾ'Z�{_�b�a|T����5#Ŵ�ն��UN����Չ�#�
l��%��9��,�*�H��Z�*�}���@l��؀sRb�M>�#H
�����l$��	��m�$���XAB��b *�|�@rxs117�4�u��[�Y�C\/�zv��=€�2���#�KRO��a�Q��66���5�c&q���,�Q)��V�k!α$P���_��b�Y�E���vE��d��)F�X��+�\����|�I�"�^=;��,��z�]\4qM-aD7�\,����܀!9��ou��a@��Z�S��y���8�rA��ؼ`�.U $b�v��\�8
�x�9BY��<e�XxqN*��r��+,d�uɦ6�,3ҡ r�"nb9�dN�6�c�+������z#N�Hy���c��Qb�6�Q��ն���b�D%�!}t(��z��j��N��B�U�	s�’�o��m�v���R,�
�b#���sƥ�6:�;��e�}��}"\ܨ�Bx�;i�5_�ͣ�>"�%<:@p�s�=�w���]�F_��_O?�0�g�X�b�;{����?`�n@��
=�Oӫ^�*����dx���Eq�p����Hº�/i��SH�N}h����m��Ad&'�Lx�B��g�N�9}�W���$	���7��S?�fzݷ�I��G?H6W�%Ͻ�>��̋�y'�]z�.?�)Q�_���Ӆ��$����i:�J��~r������ge��T���h�>*�ϤJ@U���+yO�ń�BH!WTȶ�E�5��qhI�����q�R�my}�-�`�����;�,�U��|�
�y�;ܒ<�c�$L�SϾv�A��	��xjl?q���g�g�l�=�EGP��C�LX;��D�|76%��|��>Y]C@�����L�=�/�����Sv�\�[�w�8ۋ<x�d]A[E�#��3���ZA�"!�<���U�F�,x�`-��k?�} �{Lb�N����!!$��?(��IN=&-��_���CZE������P��V/��R��g��������k��]r�1�����V�C�u�^�������Y㱆.����'��^�]�Z{�.�<J�n�L|~���e%8��0����'�J�������S��b��,�x�]ݺ�6�
o�^Z���59��x�[�TwU�|!۰�Uo��+��Bz�~��|�2����,�]�P�{���ӗ��/��i�M�o{3���nꮮ�k��ҝ[�����}��.�_��~�[�^�z�io��L?�ַ���o�{�褜�/��޺�� ��YY��`}��칹�Q����7,���pT��~���c>�Y�{�cYt�M��:�E��bn�Ei�0P�[�����ٿ�� W�m�>��[p�݃��2�,��؃kY�
����ȹ�F<� �	�˭8�ۧ��=�����§bǗ��A�E�c%{HV����"Ȁzgo�P��u&Dftm�Kk�ux}z��n�A�a�"4T!㑬Ad:���i�?|�g�G
9��/^$���e��6�V��68^�ٚWyA�.�e�DƜezx�����Ҕe�+OG^��$�dz��
rz�|�{�:!�����&��A�$����H.�`�4>�A��b��߱�:�E�����=<�����N	��ˑ~��؄I��I9�>���c��5}#Ta�]�3Z��!X�B�6����d��a�#�M��	Ob&�W�h���ۣ�W�W��	���2����)r����	��l�>�3��(yS�7��cW�#JF����Y.y8�X���G�S��[��ZLf���d.�ɘ����Y�첬9�u�����VOB�!<�7����^�	·��_xRH�7Z��	��bډ�,�#��f�Ѩ���ؘ�܏�k����ĵ��h�䍝i�	u&�$2���j^��T\�e�&��ơ���-��|���Q����^����B�v-Cc����r�
Ae�!��N/X[Uŗ�E�����"��R8������t��W�B]��%Np ?V���14(�-k�F�-��TmNY��.Q:��M��/���r������O�xHp2�Ɨ�v%�‚�߻�u6�
���hQb�	~1d$X��e�n�RSZ�<)_x�$WR��)�n�ʫ�J:~K&���!.&n<��=�ce����:)�!��ą )���$����ǜ%��]AN�`\6��!��u*aTE���2�k�G:���P�	+F~�����T+��$��������B�A��vZ�:��E��u��$V�]���psl
V)�0O�EHH��P�R��
^�S�3B<P����^��Y�]R�	�
S�R�lBU#�OЉ�b���_5�gB`M���$y�Y�
R�L�5E�G�j�����$��JC�\��1)%��!&-�,*���O�`iɊ0�l������m�+}����)_,Jm	9$�9b�&sT�A��B�A�����b:���$zp����We��I�L���J<,�b>!Q��W7#�||��J���0O�v1�K�,(B�	D�e"*}ԕV���r��u,-��.E$}�E_�����k�و��R���v?�$���G��g�����g/z���o�����|����r� !#P��z��_N�}��$y�^������(�kA��ЩS��$���{�L�|�7~����׸ϡ��X�Asx�ъ�G����uiۻ�^��W����d
x̆�j���4��,n�㬜�$��P�|�-����w�9_�%�&>�I� �f�Ҡ/����G����4�_r�3�����le�j;L���
��@����<��(�Ҷ��%Ż��t\�H_�ꋒ�)t�x�J��!��>Ѫg�(�Y�2Ni�A�bm�~4]H��uVf��l3�q������]�v �ȏ�\���~�r}��v!
��4j
�KRP"H�;�!�%a0X�k���w}�� ���2�2V�CM�'��\�t�ú���[�+P���x���tBH g�*�X]񮠦��uy7|:�0�X_��k�2>�VGB��݀򌔟�\�`b�C�1 ~k��
7B=,4:)'勮8�����v�������K���
�Cy��˾�^��/���.�������T�"�3ș����y�.������������]<C�?x����̧=�^�������~ǝ��^�\Ә�bQb?�9���CL^�w����l��U�Kox�wҏ�����%4����	}������k_O��|}�K^N���i;_���¯��g����Kw�4��?B�g��ן�S+}'�1LI�[[2:B��䏃L4dPq���>mn����%l5�AA�wmI�����={���FLh��L>t:��vh4�$�.X�����<$��`J��!mm�f�t���K=$�F��z&{�<ȴ���K"�r�Nmmq�[��^g�htD���I8%�d���P��+�Z!��Vg'�x�"���P{����@z�MY��7�+ƫ�2P`�"i+Cl%6��dZʔ�Qa���`&��z��x�6����8���I�ńEd� �[��r5�{S���+����=��!�s��tmCsx³��:>��â��C�����k�s4�3�rR��/�@���%���I�5�����g�0��ǟgr91<.E�J��ǜ��@Z�1Y1�<�5��r���]�qZ��ըM�|!r7+�(�|��JW<2���x�׶�J���7����Y:8<`b~��G�ʜ�!_i�I��&�F�u�U���~�mk���mn{���6�4�$�7�h.]}B��&W����:<r���y�"�Z��G<�:�i.F0��a�Q�c����o��ۊ[y�Z�&90$J	���d���^��w0���A��݂��dؗ�K. 	�J�±M~v{��Җ��9v�5�$K��!���c�i>w�<=y���!�{��y�X�ё�<�	�%X@Bt�0�U�(!=�!*t�T�2]�i�r]E��䘣��(�>�M���s>!)|B��T7KoCE�|�3d�.U@��Z�&�|��#���U� �I%2YZy8�t^O)C�Zc����}re���n\B��z벢8P=��>�&�3��(��5�C:]�<���J;�³�o��v�\��G�'X�+/�mI�,0��<qoT��/C�T���d�GU鶥���6���wO���^��"�D�ʐZ�ry����8�<=R2$9&����BI'�1�U`1�o�)R^�B��em����9Zf��~No��"yHJv�������٩$7q)�aL�&d7u�"_�l�c����N6�`iiD���0��	\"%K�D[L}!6��GLΛ���{HG��cH��%�/&46W��j�O1̑�O��f�b"%��]  �'I֍v�
�ԋG�[|�x�N�Eȑw��4A��S��I"M�^7W�@\�ki�.���r_jcR�E�Q�V���=�$�EΓdU �dLJZ��H��j>����x=��/B���"�����ԄӋ�s�޿껒zY����\���4;7�HB��/I���6�0L��.�D�v��i�j�imd��\MWcOņ�.���8�y���x�DJ<��/�Y�詗���41^ډg	V�\C����J������~�c����t�^��W���Dw2h�b&E�@�/x+�uQ���g�W}�W�CLn<�;�-o�5���[x�z�XE�9{��|_���D'ô�DN����R���L�����G/��.�Y�{�>�Jސf��=�J����ы��������ޣw��_��w�}7��說yիD�|�;�I�
��馛/��4��������<���"9�Z޻��l�(��f�D�d�M������{su?�K�7���w!^�OȘ(Lx���gV����Td�c��Ş��V�O���u/�7�w�,.ґh��#�� ��~����s[�i��'���� Ak�G���?J��n�ᱺ�|�^_�-x32�9C=L�\�_�w��V�<޳R}B-�xlB�F��|��I�5k�V�$�*BA������&{�؈ꚋ�.a�*$�b*��Ԝ�y��+I2��	�2�e%����l�����ə�ؤ,j6;�V����(�+]
�P3�nȹƇƺ�?E�l�I�;��@�I9)_L�Qr��雿���a�>��O 0	}�7�e��/���9�G?�/�S}�:��tak��l�3�ԣ7��i�o��E�;��������|������}3݉|�r|�-z����ˏҟ���3�~���>���[H�P����m�F���[���2��?:��g}���'�>B�Z���v�{[����^N��G���Wҽw�-���?������ۗ�_�?��S��
������P:���Qmz�!���޾��I��G���"��`�_k�4	�*a���#�O���̈́����Z|^��Nm���1/�.�y�2H�C�c��-$tr@a�-LW��k~��9�Kȩ>b�ʳRu��bck�j�:�׸�}2,!';j�^QD�cmi�J�'�3[�������x�E͵�+�M���O��m���9[E���yc`���6�¢̠�a��S������~K:G+<�3>���]�x:���ܘ�mȐ��Ә�U�iĿ;�[��w�>8�\���
�"\�$2v��`J�|x@W�Ӑhf�(���}>}��X�6FW�t��U:��+�~��s�pX��2Ip����d��ZK0K/��w����:׍�������kL*���H� �����Ԃwm��c�T�AFn��*3�>��Fl
�KZ�	�.�mh�
�w���	�uD��d��j˸!��F�G7o�1�d>��5 
<r����C��i�'^$0
�Z����{�R"��Ξ=M��_��=&V�x��lI^W��g��,�6;��m0�LG�.fjsy}}K0�}�+A&ι� 9�����1y5@�<nWw�E��@BaA�]a|��Y1h�u�]O�za`7���}���C&6�LfP�0����I���h<�	�I��;�k�����w�׋:�<M�ك���
	kv����d&��
!A�{}�-�"0�%��@(4&W�U�
�o\D(���T*�VHK�������J�F�d� ��,�@>�R�tO�o�j�"��م!�^���α[��8K9���;x��UWWL�i9\����m�T�㽌�_��2���i�$XY���~91�=)�����#
�3���E
>L��t�C2G��1��9���s�����}��k�;�b�H���P�ۭ|N��R2�FS$N&�c�=ƴ����E�����R��J=?�ijC��N=:�-��ɻ�C�G�J:lEBZᤀ3E�b���R�p7��I�g
�v�a���Q i�C�r9'%:l`ys�G$b�i�(}\<͂.��y��e�y?�i�CR)!D$����`}���,��
�Ca��
y46�%��
�?p
��F]6&�z�u��i�Ŗ����w���Ƭ���<��h��rKȃ��"qv�g
��GeI�5�R ��%y[��%.�h��;�p{$�$��H�(+;�]�	�RD<u��G�<X�J�e%E�W�9-�YJ�D�#/,�c�,+^�t��OY��_�Ix3��EX.��A��Y�`�d}1 �\L�n�#e,y)���i�Ģ��0FYXX}�.�+<�R�X��\Gm�Uy>��#�K���вv�`�u��z��M�/|��M������>�����J�1H+�o��o�����/Jbn��z��^�s�!��sg馋���;V,���ڑ�K^�"!�n�����eT�����@�eg5Z+BR|�����=������>�=�^�e^�MV">��C��CY���O��֦_}�;%�tVo�;�$1��VB%�_��I��J���l(2�d��PG��l��W~��){���7�$|��"���,�Г��M�b���l_��-,j��w�cD�Ҳ���{�HB��$��������j!	x�	��'��4��L���ʧ<oa�%IQP�#�0+V (��Ƅ��-�a����,r0���I(��@�յq��*��BX*���}���	��L-��2=�4��!��esy��J�M�}f�`��I�3[[4e���`H���HCV��Ǭ\"~�<������vw�r&w��b��h8	�$�dFCq-����b�\�#j���rR����v{������2���gO��F�~�Kd?����zZ��X=�/"�y�X��.��`�{OQd���mݦ�!?�V�K�R>gQD_`p�Χ��
ɢF��󼸯�Z]z��_Z"�Q��*��y_�kLf�t�Mw0z����^��'��(�Q�r@P��y��B2}��y�I���ht�07u1������!��<| �C�
�]�����Wh�1�Ý���o���e9f��0� z�T�kׯK�&���
���?�mnnheW��,rB�ג�x�`0����{M�z�Z������C�?�P7�L�^�D�,��آ�P@w����'E���e���u�=	a�J0����i��@�|'��ޏS��y���v~�����t����^�b�{���M�;��ct�_G����߷����	�&��6�S=�o3�`��;���>Lk_�"��>���[iuBE������9gAGgۣ��I@j�j��?t�CK̙=~�sTgrb�p���wEo��kI.�d�>�:[=)"�g�Aw�B!��J�����d�q=摤��M�D�.K['< |�c\c9p^�K��o�o�H��p�k�!�M~,O�7%!y��E�k8�a>���|�A�A�ňf�W(�!�,_AN	3:
c����^R�#�R&�H͵h�DBA�x^a�f^u�F�Q�;@��7�QImJxfx͇�ؒ����K&�
���W�n�;�i�l�c(��,3o3�Y�!�[m���|�'��^?0>j���^��m�vU�d+���Bu���5�j2��^�	�r��9~�-
���Fz�P@����d| s�D��م���{�����dٜ���{�) ր�`��
�g�ד3�.Ȝ�h<���T]>j$9~P��n;�A=@�a*�SU���˚�KBXW�Х��K��hۮ��>��DW/�.���L�s6�&�*�屍U�^�Kԓ� <�:g�c�Є���҃J�ok�1����
����Q�`��O���Ń?�f*�4�2��X�2Z�XR<�$�U�L�[1�<啳}�˗']:T.���͒���p̅���ش4t�O�eD��#��w�nWjk��
JȞ�`��菝��X����_Z�%KA�c�۾��)���J���a�a�3,�yxċG���1N#j*�c��I��vN<?���wIgS���@x�����LI�� E,�٬�v4x��#I�_� B�$llp	�wG���c6�G�@�����B�d.��b_���C�!��	���a�'�4�-�v`�+�%�B��`�� �H�͠~���.�}Rb�6cx|����K�)��hH����,����&��u���!¼Y�qZ�
�Yo7Ϥ]�\Q���2�\�Q�)��K7&�~�b(�Esb[��dsQ��<�
ɫB���47F!|R$4WH�
"!T\�:1O�C�*���bH0����k�`]���8���T��RXM��%�K�v[����2ۆ-qpCx0���16o[D��E��($�J���W,BH+}o�I�]̈'i�p!���]��L��u�&v��X\yߐ��u��XB8s��\j5y~���ߧ�x�\�l�J$�^'2�E�[0 �pR8-!�X�9u�n�w=�$����\��
��m]�3�ᥡs0"�/�{
~`
���b%���jm�
D�U+�sH�Oj)��H �=�#�nm��챢�Yߤa=7��Y4�:�^o�\�q{��F��/2�rFT"�n����>��w!�$�]�bJ^��w�7�SQiɆ�op�?�G1�/��Rb+�;[�o+%�(�n����c�Z��;���f���x�V3V"G3~��V�9�s�	=7dPn���`b���)+�mV�ڬ�1���#sY�a�h4�K,�uZ���5I�,��-��B��࢏XbY�ʺ�9�{����QvC��d��4����K>
�ȯ�(���U��k��#��y��5:��Is'�؎���(���z��
�9C2��ާ�kmZk�EY�) ��e��6K���Åe�卵�/��9�k�vRO�4ͧ��,�5����S��z�x��~"<�;#r��q��'�o�k�aaE.��,���9�<޳.rM�$�/z -�5��<)_�E�Ұ~��~��~��c}�I��@ol,y6������t*��Zetms��]�',)5��v�B��LO�iI�dRxt�Ń�XƫWS���Qt%�	��K:����.���� }�R)�u���T�:�S[
��q��?��U�2r9B��L��-�Xu����C��
�cH�Wh�q�y�髟G�3=n�h/��:��a9�e��L�a>�,�4�s���n�����ҭo��txi !����L��
�{��q�l��(�c�Y.��h
5/�Q{�!95o�W��5��B�y�J�9�i4,s�
NtW!GڝR;F��qB>��L��#N���L�
��#�%��y8�-���|����Y$���ifɍF0rq�m3��`�f�m6by����!ȑB�����Ɖyz<>�{��6O�,8����c���?{kK�d	b�fwz�|�!3":����\M$�-�	Ԏ;�{.��=�Wd��D�.H�`5�"���Q�ʌ���<|�ӛ�h�-GU1��}wψ���~�~�����������#�x=I�t�X��u�}��
,�4�nxl���~���D��{���&l����{+�u:Q�덍�7�a�7j{�K黷�LO�R��U��GٙҎ!��%�RV���R�iv���]�O�{�`���/~!�Zk:%�� ���[>ܑ(�΅�mD2{D%��I�A�9��P�O3�#��Y�q���(�q�����%��[�cN�p�U~^�,I{g�<����2ū��f&W\�H	��)��%��N�.Vh?�����o2�])�6�8Qh�F	�S��A{��4��:�ʐ�D�Xk������8�hĊ-�u����<���5���*�q��mȞ߰�^w��k��7�u�[��~�� ji������m�e�Y�T~���'��N��9;��J}���ë��衻�Ӷ/����TO,o������%~�grؐ�|��sk�g��r�G|�{=JEf�/����
W��+v��8�A}��n�^�<�(�$)V�@�נ'�”�K4B��(�{�U�wH����P&OQ`��7�sZ���0C��S1�wv63K�-TP�
�Z�ɴ��8�X�,����Q�k�q�r&�~�l*�����H�Df����a�NQsl$���mMچ�ĉ�ة���Rri����h�$�%Kf������h�E���2T&Zo	��S.�1���LB��pO�j�B�az\oB�.��):���8�� <Z��5M�|ayAl���%b�7�X�H0F}A�݊-4�@	oK�it����(�dS���9J�}��X�!I
w��[�o�zHȒm@O��E2�|s�k)���Ąl�Q�Mxz�x�7A�=��t�C;�+��*u���:�)@��F}^q�
��1�F{�{koܓ�J�}�ki�Fnj�;d�5<�Yq��rb��$F�@�(P��*{�^�*ؤ�n������k��usL�����.��!Y#��'�|��5_GVEL���G&�% ��!�ۑ���/yW�I�9.���m��J��Tr;��J�R؉T�h�l�!;+Z'�з��aC������R
B��d�`X���q���a��(�"s�s���vh��w�U��r����|�B���G�3=�.�X����X`��ʘ�gֹ���E'ó�
&sV,ӆ�7V���15'�b�-�{�<þ��T�??9�f8�s�"%{�y~�y����x���?c��M��{+��y��BW5C�۫� ��H�|ky��J�`#�M��:Pn��In��4���iu�0��Xw25�w̆�+�~>6�;9~�ZK"v���4��iuuM7�k:�z���n����s�'J�%A�z�k3�+9�iN���X~�Ee;����&�#�#\ym���C5
�.^�v�XU��'���F���N�A��H"z|��qx�Z�����\t4EWU�L�o;DG�x۰����W[1o��8�`_FTn/�"��b�釲��4��^�E�F.왐Ea�͌@Ek�H����Od/��Չ���^���}���򃈗9�����\NĹh�e$G�	zᄔ%
{#t���9�1Q�dn?�b�o��vlD�M��b��l)��=1Ve���"��	�G�]6���jFg�����i��5]�ٿ������K��������D�)�@o�:�o��>����/B?�������_�S������"&�t�hh�tӧ+0*QJ�t��?�'=��/_�y%:���W�_��_������H��jUGiL�L&Ka��S���4�H8���UyR��L[I�=�{'�H�N�#����N����ui����k$_dr�����y���h�З`���2�1�S�
?7W�u�{�/�}�:���=J'\"�A�5�{������@^������f�]1�s&�
�Dn�<|��'"��Hڱ����͝%�&=-�>�MG����i
��3UJoPu]^��	h��L��Xi
+�c��d�ׯ�d.��}g�W���0Dmt��r��ѹ�o��7>Z��,�2Q��5��G���<��`�;��;R
mDP	�ϗ���h�g
k(�@&9$�o�<���]Gُ�7�y���%ӿS�*Zz����[���#��(��*'D}*�죎���j�x}4����o�w+�B��'�7������z3GJ�}*�C�
���P/��kc���S��W
&����;���*Uԋ�ԛ���#DS�z���V0#
�%U����aS�kG��)�kx�x-�_ԇ4��CF�����s>lƠrj��P;lU��	�����({����1S8&��ߙ�b1v'IsA��d����Gx�d�69���i���3�+"�1�8
b�zڂ|�HD�|h����=)%��X��G|�@��9B�IQ|pKA⨔�f�`XE�h
�]�ff���� p�%?�1�����"��b`7�ug<���"T�B(.��m(�x{bFM@���BS�6�-��Z䅃�W<2fSٌ�~��4���y��B�$6$����
讶[�,єH�䊤Gvh�]�L��Ϋ-��=Z�A�$q�[�~�rͥ��\Ɲ��Ƽ�P��$;�D߄�Aq���D
`<{�
���{��5�k�k�M����J(��D���������4h��$H���`�z3�\v�4�'y�����X�*g^�6m��$�AR=���+�@�r�t��-����A��[%��C=�c��=;�x���WJD��c����[~���Ih��6�m�8���M�D���oڮD�D([�8�4�[�eV�Qr�|�±�)���Q����{�(8�{00���o��|��e�^����T���R�9f��\v�C�T}����D��NqA#�{c6���y�]�qV��y��~WT{�������GbI{��Z���Xc��7�n�^^w8:[���v�����B����&3�vBKe{��+��1�����7<�,�AIʤ{�$+'S��R'��7a����k�)V�r@�;�
�d�Rdj�Zc�P6�����\�@&B����/��_�G�Ն�DI㽘
(GG�� ,��=+֗/_Qf������}�7]��\�U~p={,��<���XbYo�ӿ0�>� "��prCsDgnؠ|w�2�Z����9��r:d��袆l���{*��d��j������/�zM�{nC��P���.���������:����!�`ݔ�B$����$����`�^�,
�4��hJ���rҪnyq~F��|I�����Ce���S���r���-��Gl�4�}�G��xE���-D7l���O$y8�N��=]���2J �ڵ��<���r��Q���(��A-_k���]�A���3n$�����)���/���2
���%��h�aݖԆ��i��AށY���v<�??&n@+`������h%�a��4aYQ
�L�)�%����Fr��!�d*�hq��H�۩�%�N��Uc��y8�Ak��X�Lr�T�쎍�ȉq̟�u"�O���)�`�L���á�O�b��|^'Qp@k�&�>#�����f'܎�yQ{�ɿ�7�ч�ߛ������^
�P�1F�A��u0�g���t|v�s�9�|�!�F����!�[��cP����h͙fǠ��)�s�ِ�$�+�I�j��np����;��|�����#����{t�U��)�]y�N�s��
�٩v’��v�Tp���,�޼�d0�H�1q&B.��6 �c����]V�)ؿ�L������%�t��(U'��n>��V��!��9�{�EsP���i��<�l��z0+�U��IUw��jE�<R��_)�����l����p�Gb����wyۋ1x��ŭ���ȆPU�z@a
&���"*�IQ{~���w�#C�%4$6B�a��q�k��T�Kd�H��7�]��'�1ϩ�rG��l��-R�kim)41S��up��Z���� Jc44�M��ڛ�i�����}<|�rzǯ'�~�����bf��.�vl�Ç4r����%�6���w���jy�SM���1D��Բ%���s�{+	�G��DO���j�F���������֤�B[e�t���Ɗ.�����Ӑ�IS����4h;^j�z��̘����S3�;Q4���]�
�Z�B��c��5�8��XX��Cuh�x�7osW������h�YΏ�@A�-W���0:�����[���
6@X�q��?)��n�����y9W�QDuJ�~��:et�[K�^
�m�MB��<��&�������깎;x�+�9W|̊1Rݐ�%�H"~a��	��MdA#���y��F��6���+2c�^��䢉*AO���R�di����#f|��RH�B�<��#�M���Jt���^��c�.�v}�(�#{r����ܖ�f��O�،֝�E��qЖ�L�DQ��b�ȷ-=�)���.���S:�6�w�*4h"����<}�Z}+�&��B�U��]��y'^6H��sc�?����������	`�'6���rk5 �4g(�����X���H�mKB@t���:r��(����ʽ2|6��$
��pl�n̡&�����GX�m�}��r�\��������>�5?4B����U�u�e���}���*�)��@i�z�����	�才�'tπ��G�+��6D2A���@�[I\�g�ìPC���Ź�*��roS�x����X��^�������d����+/7P��
�uRhij1a�˼��Z��u�!J��}����B�o����r�����፦ggt�_��z{��l��h�ɉ�dF}�lΗ}�<���X�cy�@V��1i�=8�]]�J��gO_���������r��II$ ��p�˯���㔺zH݌Lӑ;s��ψ��ceFx���E�gx�%L���ܭ�Q��칼�֤�,�"���J�
��%﷿���E�N��VL�"_(e�N�q�C�{��0r��$Ba�^ѧ_}&�9�ۖe>ià
�Q����k������lZ���ш���U22ʹJ�,`�/�b�Y�e�M�)ݭ覝��w�l�n��պ�Ӥ��s��m�씮	2K����ǹp"J}qX):ꂞEBDK����<��_��,����_�R�U�,v
��f�݊|�z0�����?\�Q\�A>��!�����2��h!������Z�#7�ns
2�1�p�U/��>.��y.�`q��jvpq����r&z�x���3�yq�D��|"��no������N�a�އrO{j��ꚞ��B�5�����jN�-_����雷2���d#���-����b*�7=��˧���f3QD�r�n5���{t����@�� ZK�[5?nš�
I�0]x�Y�-T[Fm.����<=}�r}kDC!�+��5�V��v�N����ׯ�~<�h����s��8!4��i�:����d��NP��
�i�5�.�^���]_���y����(�"Rkx��4*�;�`��fp��)�k�*�]	�waƣ\��V�R�j�Nj��l��$/���-�m~_�S��+%�3�WSP.S���F�+{~�D�]y�o�g�)�{?��Fz���S�A��N4�T�4�#�h�X��iX�Y5�F���=�#
�9'^�ZGbpgKC�7/����V�Z�V�~t��!֔x�����}`��LKf��3<���o�7���5���]��&Rd���#�"�{��U{}iK�7&Mh8��#^q�7!���Rht��� 2��p��=,���c"7������'~Aؓ.9��nTw�8p��…��Q�����Y�C۪�~�f�u+G��
����J��
D�a����9G�VO����o�7�0#3>��e��ѩtW��J�V���7�>K�$��aר�Woi�T�Ǎ���9��d��Y+}�
#�wne�ؘ�U��W��ɑ�~���^�$s�m�(k�-�E��E��
R�D��~&;<�|#^N~�ׁs�I%b"_��k���{p
	�.��~�>5�v}o�.�9SD�Q&m;r�h���6G�2���
��>�:�9��H��	�OҤ���4�TR�*IF��"�Ψ�:�0�{%T�|��4��P�7�K�������ب��|H(�J¾'l��oxH/��q߬/;~�W휅�P`@���?�B^V�9H�6߬�XT�j�*N��p�H&�_b[�g��-�ޓJu�� ��!�
����9�Q��H�s{P���B�O��uJc�|����`�?����4�q)�:�{J{ߧ�ʹ��帊�R;�ϋ=�~_� HAl��o7����y�{%Sh��7;	�� �y�@��ǘ���Jğy'��9(p��89>a�|V�S�R�I�v���ʚ
�B�i-�#��7S�q�w[��6�R��1��"ϧ6�	�F5�X�l���)X'�~���3:e#h6���/�m$�SE����1sF۫;���9�&��[�q/�$����@�|,��<���Xb�����[I~t���/�rx2�Ɇ��=���\���U):�G�R��W����4U�I���-:S2g���*t]��X�F���I�e��#��/�+�y�^�~EW7W��"�6~�|�!�M1� !�0���BSr\��]K��W+��8�J�u0�(T���y��m+��#�n�M����+�^���7J���	�ɶ��5�P~M,@���v)-T[_����9R1����
A#+��fFJr�A�$�so9��@��c*SN;�?�0�/������^�Y1�x�R�K;�qdk�IN�)i+�x�\�B��dl;ds�a�����"�#�8�A���
��œ0c���)��ʨ�]��[rr2@v�%��������T�έSE|�0�8�k�H	�فh�ۨ�`k�I��1�x�����'��
_�yC�]����fDUJ[\q��30�>�s����✎y|��4=9�~�
�5�L���n��	��6J�݀j��D`�S�ȯ`��΅r�)���W;�?��Y܊3M��:��s��g�JUP�����\�Hݮ�q4�72'N�ļ�=1�t�k��!�o�8������s�:%��.타k���M���[F.Zm�l��r��=��Щn�U��5�է�t�H<ڠ\������:��c.�4������z�b(��!�t-��#P:P��O#�!=>��y���mA�/Ӱ4�w�
�ze��q-���J��_���;@��]/�[*X��C�JX�CW����]����bӈ�'�:�iiH6���Gު���oO\�~�il�1�Y�����O��_V��`G��?��?s������SV��)9�?0O�q �4�Sd�D)�>m�K�4$���m}��=�GF�Fv8Ё�cx�Gw�Wi�'.G��d�t�L^:0�h'�MV�Ơ��zW��a�pl�;C̝^���Q�Ω7�#��J6���:v%�62��1�kI(bg��>�^�_��H��f*^+��BR(�N���c�x��pñ�˘xD�J�@�� �Sv�'�G0x���	��G[�\/�0�
��m�X�vb�Ϛ��w�5PDӕq� ��h�V���ʡ�s��m����x�Îr�{#Iv�6�a���Z��R]�s���
FJ0�CS�:������;�j��D{d�S��>Cp���ٸ{A)#y6�Y�=��?'�����"�R韄ħ�
/��k��$�s<�(��:�VB.R���:_���e����@���V�c�E^�6��l{�6�ݴ�r����D�I���)$[��!0NgB-0ij��)+'���z�~�E�/ߦ��z�j_���e��Be���N
��
kG�BClS�aσM~���}�RK�>=p����D�k!&�gp�<�󭮓�=�A	_� d�i��#r~�cS��Pz���f���X���IY�;V�����>~��мIRPx�6I(Pd4W"�fu2�u��,��X�/�Oŋ�=���#�ɧI�Ĭ>�d]��P�z��`��
E��(mZ:�r�}�B��O�	�:�:r�(hx��翹���#B����Dy������p�����AIV4O�$�r�[:�,d}�뜭{���o*�>���]�Y���+�@�{,��o[Q�+$7�i���^)oX���z�LU��	ˈՙ�$��j�Il$�.6$�9��4�8�5jw]I��A-[��$9��*-ؐ>g���6�]���g�N��wB	:��d����i�5�=��8ⷉ�ݰ
���S����^s�.ɝ�D7��aR�A�f��A�un#.�����������mּ(&��PH]8}?�&Kd��%&���O�@�5�W���^m��1�h��k�Y��M��	ֽ_7�/~4���Y�L!̏��8�A����!�$S:�Hp
�+ଉ���D�j
��$Q�BIR�$ljS&�r�`��@�Fi��y8�M�o��D�[%�׎y,�F�Ϧלm�[K��	]OX~;_h�yR�i�Y�*m������hGW�sR�$o&�n����Dr�@�e)��yzl^_�����=�Օ�8[裭RH5�,�!�?�n��R�y?%��@�Uy�ɻ�@>;rFZ$�GJ��%��NS.�J���#�H#������@�7�+��B���"�
�y���אs������~=w�u'T�L(U�\��.�6&�֩j)W�׽�޵���g>�u�j�.�<}���)ߤ�LV�oн�;���Dle�D�>F����Jݵun�I��M�֒b���aL�^It���n��Tk�4:��2��$^>�x�D�C�}%���\lg�u��~�q��@�D�f����;�e�:�s:�ߧ��J�]�_�����FX��8
@��6��Hu����Vؕx�!vy��*@��$/G5�����������a
9$8��y�B5�9y޶F(R<0,���1i�J��
%����8����GI˥`P�ׁ�����ەY��D_���W�P:�-�fl�H
���C"�z�#��7x2`3A7%�#��cC����@�N%�oPE�u�=FI��*�!�J�"��!�����oN���x?�ϾAI�rn�9N���.1���1�{*��<�zɯa���ٔ����>H���0�0d���Q�y{E�Q�k��y1*��YH�T8.Q&���c� �H���O�N�����+�Y_�Ɓ�T�$I�4
�ijs��l�>g���dm��R_j¾�M����S���m}�ױ�d�������nq��L��8~����"��C�3��Pѡ�'�����=�N
���v#/�
PݰҸe�x�!��$� ��&��
_,@��׼p�7�sG��zS�����Ec������Wn�����m�T����]y�8
^)~��!["�(Dg�K�����-8
��7ު뮕�F��K�$l=���PX���W����^��Yp�]2��׉�����)
���7��H�f���#��������=��D�E�>�q�@�%p'�g;���2$�M�{�?	'��=}W<K��h@���5��’���e�zSv����=xű�Z^�F�h;e'�?@�TX�2>�`v�,]�p>�z��
Xe�j{��v��Q�{�OѴ]H�D�
R�spɊ��V���z5�H>����|�X�߶�N
��yi�[z,��osy/��CX���7Wo�6�V�( $J2�~�i�8���ߋ���4\N�Қ�S�F�@�
�r���<����M�,���s:;=S�h��_})Q��HNI�@�����;X̱L(�@���d6�o����N#�%��$��\��A�#S�Gڝ'�n
��>xM���_�~��^�HT�A
6"x�'u���w�Vil�s�97�&7�ߍ�ݶD!�>�{�.��V�w=�:���T�߀�כ�o����)�����͓W��_~�r�R���f�ㅌ��H���$���HD��w$�n�;���0>��4���˧l�O�8^���%mu/�+�8ҹ~����D�Hd�t&Q%�%l�(h�dH=���p��|��'��q3:??��*�����(��Sj;����Sg�B�p�s0Vp@�=��iy��<~�Y+c�Z߳L�㵘J�	�.P��$���Kȸx6;7z�s�����f_�1�<�o$:}���O�Eq���k*�
��F�����p#����WyN6��R%�s^t�\�X��r��s\����zA*��5@��SBFA̓Q��5�2�(jyω�b���mQ���WaߧP�}���Ei�k����Z��R]V�����jq�H0�8+��E�k�uH�a��������@g����-*�n������0�%����T��z9�\GO��ls�i
v
=9��f���]��)
��Oa�5�^y�]��7��������v�9*h\�M�z}�F>_�l�M&���e{Q�kL��%�|:���%-�D6�荺���6~�o�-�s����)������k,����Tok�~5�����Q���v2��w�)�$|�?H^r�A)�V��a�E�b��R�Cg�"j�B�h���Q%R	�s���z�5��T�B�i3P�15�ۍ�(^��z
�*�T#0��'DTzcstñSXIآ	���wV���%���7c�I�^�3�W�0�'8�e�/3n�a�6g
A�	?�A̾��cO�p�����:.�E?�q�)Ǖ���L7|>Ľ�,�D�\
���3ؓ�V1�J�MT��2��c��-�x<r	I��Ws�֒��f��4�Vx,B�?16�1n�ᰯ�m��޽s��ص�zM}^z�O9P��*�	˷�l^8��o�k��BK䐯?Yy]}/NY: �|�✽=)�%������V��M�"7����2
v�wW�`�9\V�Er�Ĩ�x�7-M�3�4�!����c,�%��ߒح��c�C�K���JEp�oA��FY��&��|�|��<�f�;ʚ�w�����;��y�������)RQ�������sm���1�7���'��鈟o�=u���e��(Jث��f�"
��%����j+��*T������T���h�ۢ┵Z��(�0o$��4F���ܮ�E*gm�%W���m���]��fn�{*������-"�v��MwX�`�arۉ�b��z6�>��s�<}�J�n�����3*}~���X�敼���,��M!�����kO����cy,����^��s��^\���5-xϙN�y���ɝ&�a/��&g��nJ���3��!�K4�F��,����DA#	����N��z:�����g4o\Y�ү���,oE.Ddh��!��BG�	�H@5�o�N��ZA����q;wqP�s���7X/՘��ѩ�%F c9�
c4�t�`}e�D~XM�?��nG��;��yM���)͏0&@�o4��{/ޓ�H~-�M�d��]R���dP�Q'E2�,Z�����"9=�a���K�g����lB~�ѯg;��6�ܑ8����\�
���,M�9CN�b$���V�Q��Kɢ4hH�-rG���H(Ӑ�`(�ɀ��;Ȋ|��4�Ȝ�c�s�Y���H(�P�&�tJ7�jTgހ�'	���2U���%�����w�C�Yƺhg,�miKk�9M:n$y:�m��s�ض��Is�8�3o�4�؀��Bz~����Sn�@�B�Ff"��V3g�n�:#�g��D�H�.�O"��dk�8Y���}��]�Ig��ȟ��$E����%��qlg� �I�$�y��,���=��=Iەdl;˝����}���8vr������9�1�㱚5��u<�G
���([�7=i�Te�H-r�*�r/��E���x*Fm���E�]F�h�(��h�
�Eڨ�9��]�
��A���jF>Ru���F���I=M:x�~X�R��9ژRh~�^u��'g�OCF����8D�Ё<���;kH������|,�![����
X.�ԏ52��7����	�t`E�z[�}J@�ۤڪUT:O�vV�����v�ȵ�6���.�ð��b	j� ���G�TS9�!R��;l�:`�\�����1x����LN!d/0�5�Gts�`xJ�ADGİ�,�������LP���fB�wˎI�т���#5%o����ɽ8��>{H͸xR�ĴѐO2�$����jG#Rk�;�!6��Lٿ*P�G�t�r���j�mQi���ݐh�f���P��B��6\oW�{����.�C�d��H�2�胦��Γ�)�+��y,4�d:��>��nXEj'*	�Q<�D=
���$zUS0S㉮uE����9���c�8DC3ujk�H5��v��"����ςw/eV�\\�P�^���S�_�M��S�8�F���m�btGxN�<�{���MԮ+��a��
���r��*s8�L��F�5���L{��o���%��A����}R*@��e��}�ÿIK�G2���2(�N�I�s���L5���U���Q�K�Y7���@aC	n�~��p\J�"��X�D1𫱹$�+�{��#~8tz��V�A]F����{�7�����j���Je
+u��N4:��
��A��'/
?�8e���s/ɳ�#:b�Q��m�"���T�7x`"֋S�
��턄A@D�|���$�~k9�Q��bj׋"�v��g<ۓV����:]���fk_�s?1.4�_��S�#���7P.S�hu�EJ�D�m�^�7�h­Pk5G1�0�[��g-�����YΑo�F<���7��w{��*�xX���H�!��)=����/w@��}����y3���\o���Z�e%�\�r�V}#<�EG�*O��=����v슎��Y$�Fz���r�N�P�I�]�rCR1:�l�?�t㲜R�V���-9")k>�!@�h�$k�Pe
����a�i���Y^���V��>����%�0�ۛ��C�i���c6���-�����t�
u��n�n-�E��g�6��6b� �t���?�T�kr�ry/m�#�w7t��K�ۮ`�1��}g�F"#6��N�@�߭M6�(�,�$GF+�Fn���X-@�
�Q	N��qD��X�sO�M"/H�0	�G����\lf��:.����[�ٸ�?yFS���7��5��E���,C��K>�,�Ν�����iy}�m�sIJ�I��D��,i:�`�0H4g��t�<��n���Z�L �I�;ȝ|�1���	}��W�1�s��>�4zؿ�����wBS>7&
�B�&J�+�d��Q�2�	6:`�O����O�`8���m�i��s�F
���F��m|��ܼS��M�G`�i&jUȤ�)Y����8�if��d6�=�Y.I���
� ҇g�^Ǣb�SU���}g��.#ё��k�8d}��b���.&kT��{386J�^�ωzoh��]���Nj���]s�#ڢ}x(����8�bG�:��0�zSQ���rD]7��y�����l��H4:�~L��[�k'*�U��Q�s�W׻ӗzr��J�0�h� ʮ[��J7)J���3�{�}�W���F��i��B��Q#���w~�N��N���`G0����BsT�ݎ��)�,�A��Ȏ�=P�Y�8���C�Q�xF�lž4�
�
?�P~r���h��*�y����%���+� r��!�;���m�/L^@��ֆP����}c4P�ih}q���eo���^Ƚ1Ġ��M5��	]��&�Ms#��[!ab�R����G����ɨA��i����o�(�:��s���5�OO��h��
���#}��I��i����2_����x�̀��	 �E0�9���\��a�ЂI$�J��*��#�w:�t��h����L�&��@�1*d{��5��B��EǪ/��&��R�'N���D��!���d�T ���5���P���W6
q�,��F��~7�s�3��mR�&�{@�2�/����
�+�w
�x��mw��R֔(,P�r1t�{�����%k�-�郍�/T=�R��j�1��H���kё�� ՙ��V6�>Ve���i'<Ԝ�&z���L�U.�i�F�y�7���񱩡�E-@d�\��D
�����Q�?�@<8gͻ�x2j��
/�4E?*mH���q����b��Y�r��I��>���y6�l4�8k>�)+����Y�F$�Dw�a���˻~C
@��k47W"r���X#Y�ks/�x'�Q�
��O3��D�O���d맮KX@m�@��]'^�[����\�5V���z�H����ܦ�M"Ml]���+(��e���g"���uKV��8S�c��J��
z/	[���˻%=;Yhr�&����5�<����9�����~�+ׄ�c��]Ĉ�=��4�s�Gu�[<�/c�md�^n�Y';f�])�H�9t�<�8&��p�:���8�*�Bw��(i��?9�
��'Oh�Y���+t�Z"�B��T�m�,��b��N�q�5�@�5q��c�ZF��8�MTW[m:/�4�~�۳�c:I3zҞ��e��X�<FJD��2�������d1�B虠]���xwO��z)Q��_�oO�@V�!k�oSu�j�����$���k���WB���6"[ܳ�3c�5"+6`�MG����)��$�D� �E������!m�(!�a�,�4���Wq����9��)ϭ��zͲ"�f���s�@��P"�*��t�3���sz��DIK�|��Ք)��g�p�q�F���z'��Ԯ�(�����k�.4���~\������C��y~t��G�#D��@h�Wb��}�P�!�a���@��}*���gh'Q
Sx��)�&����K�6ĀU�5@B�I��}�+]q6F�\ًӕ3K��fV����|�p����l:���=�����F�3e������@Vo�h̺�˄��zDJ�lx�y_��ȣ�̨��F�gC��Uw�3�H��.׏�^��9@cu�y����A�*��i�R<����+?�\?��
�"tA�1�T����jku��{�����#E��ue�;�Kd0���_��K#�H&�4������@���x��Ru9#*�9�s��.�ޭ��ZM.Z���v�;��[�<	cR�3���M���C��=��8Uz.*-���7"�Q,�4������$kł
r:���������5�����e���
)�;}�{Npg��9<a��<)Z�Hy����G0&ۏ�D�����#|N�c���B��謃�c0x��Dv� %�B��H�K��i��+2ņmt"���!}j��xٓ5��'���`��]C�=Bb.��51�FrLd#��W`%�|~?Ȉ�k^�B���
I�o��Rj��X6}����-�hy���t[؀G�5z�Ơ7�t���/��~}����l-b-��'K��ơ,�h����$�ҰhS��0���߷�Q~�<��[��r ,����q ��I7�f&r��ˑ!��aM�o��/q�($]��HɅ�L����#�Q�Pj)�5���@�@30�g�n�>v�e��+πEH%�:I�qM����Td����`'�1�csh�-�F����[���'F|/�vv�Q�F
����2�)��n�X�@�z،�":�q�Z�	�֫���Z��rT���*����+��@S�\ȈB�G��o����ୂ%Q	�1��Á)�|�o��㎥��ӎҷ*e��ʋ���2�n%*@�.;�$��@B2G(+�oA�`醕Q�~$�݁P��F=�z�SY��~nv����3���u�ޫ��ڍx�e����԰"!��cH�܎��
��SD�5�[��#tX�CrS�/�P����YU�Qī��m��j�}ǀhxG��4+g��A(�:Vb7B#lK�>әp5 t���t���#��t��uO��<���X˻��H��@#��N��Nrf����0r�{r��;�ݝU��M5�܌�ػ�ҪQ�y���Վ"��X8>�;����x����7���ۯd�}��,V�8�s.�.�T����+��������=�\��)����@Y�	v;ux���Ώ4Y21h#���6����lN�g�g:�1{q��#Z~���O�
]U�cA��'�G��gt��v�1憳^�?����������S2����'ٚU�Gd	j��%���a-��$	�D�r[���4acq�ʜ�]��"+Љ	���9�(��}i�F�M�OT�I6з��j����I���ao,�:�Jɽ��>�,�{|D/�<�H���o�A��9��|	�ȝ]>���D�~��k�����ɮ�D�vVl^��$N1-��	7���!,g�	F�P��0��q�	�P�Q�M���Ϡߖ~��g"+vw+��w>�۳sZ񳁈��rl<xҷ�|!�NN�A���`�0/�?�_��3��PV�e����%��\�+�Ş���k�<'_�:��4�)U9����N T�U^�\�,��,�z�K�UI��չkD
�/�h�C�'LW�7P��Ȯ�Q�᲻`ӑ9m�����0~)kfɔ�FBO&*���F�]+�]��zQ��(���S5`лKQ\�s{��<�g��U�C�;�
A_��@����|lC���C�m�R:�PNj{��a�):��n4�C�蠳����A{��Q��])��uF��:}�+���<P�w��}R`���Sml�H�Ð��A��)�O�v<��~�<R��uF�G��Տ�l�Oc,��P+fC��H-��9^f�{�5��oQ�����A���tUL�WΈ9=�v��V�a-+�Wk��>؎��x=?��"T%4r�(�������`Gy���Xq�
xÀ�����J1�jwa�/���%�L3��vG%�S6/�B�ԗ�
�/��8��\���,y,fmml#U����h	�975�c��r�^
'$�p��v�N�Cx�D��`���"^e��x���V�i�$�F{����l���p��l�f�΁�dt9�ڀ���ƽs�/h�'X�X��$�C�g�
���	"ܫY)Q����n�M[�)��~4
�~��LZ
�NC����2�(����������]��tvë
/����]Դ��8���q��L�C
0��m6ot��+��7ꕡK���m�9
�,҃���ۆo����95O���DN9��Ib4�=�0��K�y�=>~),�ٌ��H#��'���]K{<�w�l�4\Jxo���&�� �}�78>�^�{޻�F��R�bSI�U�3�.���?J`s�D��o��(�Pv��6��e*5U7k\����k�~ل�ZG2�ߔ�'c��C	�xm��ubDx9���_݀���?~�Cr����.@�
u�fToH(�P�3������!�Z�/�N(t�V�y��J!������f��V��=�~�u�h���&%0�H��k����Y3e@��.^W�I9�e�`������x�e��إ����Ȗ'�C�E�w�^�J�&P�Q �\���rV�qv��˵E��Q�hB[x"�:�	�M�L��P{{B��Z�k�rG��fOl��6k�cy,��<�����%�&�6�Ғ��hA�����G����;Mh�y�e+�	��#��v���L��l�P��X
�*�!��1��⠲�o޾�Ͽ���Vwb�-�c�5�W#��y]C:���S�q͏H����3]Yw���3�>1�z�''� F����l$?9>��Oi͠�����8&�>?9��)̹�?������8��	�ˆ0}{w���8�{p��{2��xQ��S�s��`[��[z�cu��j}K��VE/½�Z�;D6�F����`p�G�����+��5)[��:c�@�H�	�,���Ns���;���XB[EG͕	S
j��ƀN�1Y�WvI�	���Id.��"��v�˟����g����^k�>إ �.����E�=i���m��t#Qp���^(��>1�����x.����
����s_�~E'|�������uNx�"w��ko.�l�„!Q=</$%��W_~Ek�_
˴S���p��%@�F0SG�Ԕ�|��yN��|m�N5u�׍�̳���k{��[�d,B�ԫ�j�w��f��p:-�eS��@�ԃl)�7�,D`��ި���S �^�N�h45���#Y�F:T�3�Gwߏ��\��؃>�WEͦ�UKqY���s4����>ru�,�p=R�}eo�4��@��<T��w0�_5U�-���bی~<�a��A?J���p�B�!V�h��j�n�5�'7Þ�_eu�w<�GupS���r���u�給�BR����0�5XA���-߻�9t"�];�^� �֨8eW3�R�4��4�����Dxx�m��УT�zx���@��(/!e�&��A����ڙR�4��$�H����C��
��q�b#�7��9ނ��s��xh�/��U,�*�N0�y�dωQo1����θ@���(�����D�3GĦ)��?��j�,�W��XN����
Mȅ���\_� �`�˓��,/�$��:��3��F��N7Zwo�,K�Uw�.V�e5�<�?�k�=s<���BҐFM�^
��\���4Z��x5��iD�
U�z7��y<�M��6���%�GC}����*>�%yu�\q/(�$pPÓ��m�<�{*����yQ)�Z�D�I�Sʃ�����λ�T[�[}=����<�����\7�1]�=I�B�Y��>?�j�EawQ�Äݤ����>����V�/1�p�����0�2a
Y��2T�3��"~{e�
9�}��Ut	���T�#
�5��OA��]�x�Փˈ�M�>�{��9�u�P��LA���r
a΃���7�@�1"$�M?:�A�Jϊw�H��\/�5���D�(p�σ��<��`ۭ�de�	盎��Ph@h<������==>���U
�3d7�ZJTw�;�g3�I�†H��h~�m�
`�XGA>�-`&f�0i-�r^M�¢Ր8u��
F�â�`n�:��C����F�^qr/��{h(Rn51*�K|�LOt�ₖ���޾�I�Ua�2S8�;3�}���ꆍ)���޻%J��5�<���X�����9a]	�L�g�vX��9�����Уv;�&l���$��"�Z:`ӫ�7l�데����or�d�������y�����@�>���lLf�t�LGs�qQ�5�V�]�UæȆ��봈°=_�����6K�hɫ�X_��e\��xN��[eF��߭8YH4h��bOϞ�1�!"�`O�n8xuwI�lB+�M�\���<���N�B���N�˝:G��|��'O92�/�;�k$�f�}g?����e�~@��=]�ikD5(�:7�,D����w�`ɵ����'��?�+�7�k�/z��W`L%�D�$	�[��9	�W�* GV*�SN��$���{��ߣ$�_q����t}u���J��dJ�k��)�ķ�!`m�n<�
��F��M��i�ҩ".��v Jr�=�tah�ӓs�vk�g`��.=��"��)��gg�0`��*�8���}u��2?h#��ɋ����?�/._J���{�w���J�_]����r�<(<�֐�Y����D/0Q�)˿�x�i��2�g0O�hv2��o��n)s�iQݖ�6�F��ȞA_�y���ٞ�=ۚ�c�=7;s�Ѻ`���]�;x�V�uf��i��g���ʦ��S=��tC�g������҅#�	Q��<��cؤ7-}W�D^/(
T�.�e�������f��[��H~x}_u����i��^���-��㱒��O��EiXs���b{\g�5��?�/�H�mH�������0��\*��>4-�7����K�g�"��ͪ�����P��v���yoL���~�sx_��v�d��c����JC��L?�n4���hʧ�����a�
�	��4g��I%��PyF�_����<b���Y	�^~�Kgn2��^�r��՜譲#[b�N��Ȏl�:�C�G�96^pj�yc�
(��_/�$��!u���5FߥX�0�R�
�,c�':sD��%�h�WOh�X����4�#p,<c HD@H���C����
@P�%
���}?G�)g�.�>/8#LL�����kmB�$�2�>�$�ٮ�
F��e���-!	���(�.tT^��`	I�<�9Z�cYÝ� �Cz��m���^�^9��ߩג��K֏q����ж�:�k�)�d�m,?�ρhL�\%d��q;uv"Pxx�]��Q8���Q����drp�)�H�Wᑣ��~�ē���T
m+�X��EJ��0B�7�v48�ג�X~�RD�l��7�8�P�o�9U��A=~����;��j*ש��kWȴס����`o+�B�	��H�>����M'�]�p�chi�'e�
h.���e$�W#�u�g�7#[�#�c(o�y)�3xt|��x�7$����dMGRCI�	�qPk�цJ]���(�Z���h[�/<�ʥ����y��o��q}�sKΙ46}��{�{���r$���H�	+���c��|�#y��cj�Nh��3m�DH"9,+��*�ۂ
>O���~��9i�˼���{l���O��<���XK,�M5�KI�u���$���$ A+�Br�:��K.��f'�h3Q]E���cH�ȦF˓��^(�I�ղ4VOϟ�_}I����8�Z�͍%�v�yH;�*���{���̚��0���mON��*Ed��F��Y#��tax����"w����#��8Y��	��>�ZnXO^���/�7�L�\(H�����F��4c��?8���^�|%�4�Iڟ={&�
E06Ch�nn��^5���d�mc����qB}Mt���'���9�b���T�nSD�v�$�&7m5���<_cFC��$�9�9Gl���)��'?��G���?�}�=���3��N.贝K��Lj�`��O�ǟ|_������X/acpgP�A'�z��a...ij/ghh'	�y�pO�y��.uC׷ך_����?e[�Wn�����
�9���!Ёj
Q<�!�'	ׯ./�>�Tr�@'E>8Wf@}��g��S)E�vD��<��{w_��%�����ˇ-�	Q�Y�Bx'|/�f3qP�f�$�"��r��;�G,"�T���y�тϝO'��{Lg��c���&�����SKj?�)1(U�ȫ1�k����Z���d�SG"D��|m��U&�to6��&�4�뵦?ʱD5�J�O��U�a��!{c��U��]��T��тY�z��m�-�z�xsQ��>�ޱ�����a�/u�&�<��Cj���b+u!v.6r\́q0�Rѝ�j·�V��}�T��Jg�%��)��-�޸�k>�����%F�7����q�c�v)����譍���F�PG����?�(�6�D{&�<�W�o>�����0�*9�W��-�|�$��%����R�gv��xo@"����X���;g�JV���%��đ
?�ё�q(�#�4������x��=:���Ф>[d���<a��A��^�Ͷ��A���M�w�=�}�
"Bsq(�$��u�z闐�>�z!�5��&}��s~~.F�֌�؈oY�:�ʍ�;���-�&����АI��]�P�^���&m�v%��E�֍��A۪��XNG�=�0&��v�H
��tqj�M<q��$���H",*f<v�_�YiHB���c�wށ�HM��Ը';ˁ*X;���HtP�@�����[�e�R�'St�Z_j�d�wY�B>��������w�(�ʱy�J��Q�(�⎝it��=�y,s�¦�;^��
;�2��T��u+�c���C>����ngy�L���ύ^*�n�$\;>9W�&?޿�q�,��T�y�
4g
ϡ/9JR��o���s�pI�����a�#h�P����~)�Z�/�ڪ�P�)5�^�&
�T7�UJ���5�F���"�`����Ev�S�+P�q�+�Bcc	~�?ItGF��Z��[�%t>) MB���Mj�̍Q<���k.�*(kFI%@P�k����Hi���O+	�u��N�ظҞ��+���0��%	��ک#<]��U�I��c�O�t���h�uܽyC-�۳f"��cy,��<��򮢺Ruȓ-��\pn�ϖ����Q�5�3ZnVj�9PЪ^�����朅m~�U*H�aø%nE��b���ب
O���n�g���n�o|���X�E��A8#G�Ҿf �I�졭�vy��%�-����&�NB]���'�l�K	�cv��_�Q�L��Xx�oY��e�`��,�?&Q�0$o��흴���T�]C>B�e{�^�
m��`@{���߈1������-=�O�X���|""��!�$6��VBə���S򋯓��$�c���.i�
��V��ܦ{���C��N��z����G��g<gN�1��{ܧ��3:]Iݸ
[n#��k��>��C1��{?�K
֛5� �F���
����{��9��4�	a�܁0���c�W��!v2���QOn0T�:`�8q�����[���_��;?�#���V��;I�}����/�1�/+/0�+*��"���W�Fy�!_1@ys֪>�|�'�#P��h����9�y�\�1pj� �����zB->SP�� �Ϣk����oY�˜��Q�����X�Š�<N�;�%a	z�D�G�Gt����'OJ���Z4��.��C�Z��Sv
r6	��S�7��^pM���$�/�2�*5����TM��?z��ɇ��Q�7{Y�F��D���

�R~*�*Y
Ιv�A�I�k��MSs�V%�5�Ti����M(}��c�+�AA�V���(�����Tǿ���mpE��W��J��֧48ap���Ώ�.�	U�����r�B_��O�Mͨ�>/��Ǭk��6n�ۗC�m��@�Q�EP��N��O7tic��e!�:ws���M+���b�zy��P�vhLk^��
�?�)�x�O��(Zslg�,߇��=���]�y�"V!���_3�"��2�~�{�:��K<y��B,Q������D�>{B);����$��0�]ץ�j�@�|爦R8��H_�S�7�E�:�]���Z�".@�N=Y�kՍ��K�[�@.Kc��2���	���lTIͤ)�r�b\�m5|1�h�d�& w�V��r���dV�n�qj��ň@W4HjR�t�x����[�t�k��֍
ӹb�oc>�F��E@ï5�����~�ංD��b%Yz+���)i���9{�G�zc�M}o ��B2���Am[�J����k��ДES���鵯�&z	�F���� �`p`F�;��6�@h�g�Scע��L�"x[�2��!օ�Ί�z�Q�t��vƽ��_~u�.J3������arn=��������b�{���J�M��k���9�T	�N�i$T����}���uR}�(��e g���H��զ��Yܜ2�Dq��*<��/�p#�4@�-+�|�d�M�c%�T�ExL�*���H8�€��I�<��[[����F���:c��j�,
o�������Z���",k�<�F�D�ݐ�����D�������4�h�!fBNLN�h��c����|�@��t��5��7��720&���]Lߣ�錶_����{��)��cy,��<�_%��.��\!���A-�5* )p���v��'��W8�{M����FXh�,��%�F��~lR�,�����.��,�3˾��cp��i�I��V��[��e��
�J�������Po�&s �A���'�B5�Q-�~�N�t��	�/NO�(�ׄ��;p���k6��l�>g��"�o߼��a�n��8_k�F�y�	��7]��������:��$��B��"D [���z��Ȝ�&t��t���>��e2q,̚�Ȃ�~>;⶞�=�A��k\f��f�o{ճ{I��?�E��Ӌ'��Q�m��_���b:J)I^N����cs����K�;��}���{�w_�\����$OE�X�K��@�41��$�������.oe��%d�`&�&d�FeG���b�5]W�>����Wb3x��9��=?�P���<������_�C���s=3~���]VV�CU���0����ދ�0�C% @���+�vBz8��uS��vDC���u��eh>���V[���Y�v�?�9���;��W��Y@DnOD��\�,��>�:��(��g�O�?�Kf���	�]JF!�TGht��B0Ԓ�Yظ3)h�@��3o�[����E]'b�c=.�A��o�����axpl�mZ�ງ�ӗ�c��{�fT�K3�򛪂����������;����)��y���2�eΣS�K�{ø��:[ߋ�dM�5]�?ԊC��.�M�ڙl���t���+�ʺ�z�K[<_n*{t�ʵ���`*�v�����
�(�|�8��N��w��@d!�j�SP8#��ޖ��t
�n���:�
`
��C�Ϙ�
�ՠ�j�$��x*櫜&�����&W̘nN�ѠA��K��$$��CU�AA���	���6d���n�56������5�"��W
�Y� HJ5��"h��66*�,ŁI]fW�b8�)W����WL2�kڍv�
���@.9%���Bk�!�Q$m	cԾ��:�ɂg�Y�X�1��1��
޻e�t.�8�T&k�ڶI�t�
�5�x�s[��~.��Ѱ�sB����q�}�r��z�D�����d�ķ�._�üͺ1:�1ܳ�1JC�G7-SPȼ��|�9UWSt�=1�MK��P��rLW�ϣ�2y$IW8g��.e�<�}�I��D�$�d�9P��а|݆��>��P
��=�6�LC`"
�}Y�]�C��Hl��(ϺP�BU�iԘ���Ě�)
�{m��PdD�Dž��XG�\��w���dmM��Y-5�bc�g9v��܋2�%���UI@�ޔ͆��N�؝(F�"���z��I���I�Ri(�=�۝r�j�,�/�x�A��2���Ou�|Y#3z"��~g �D"�RWe)D�Ef�Ԕqt�R���(�5��ǚJ�Þ�W�솈0�W5S�vC{Z�U�\"�}���8�}D$����(Xl�0pr�^?���X�cy,������d��S����0�.D�>:>��J�"_9�A�qL��FE�R��9��,��2�賽:��&��S����-�o��Bh�%T�w�U��f W�.�R�}�mȝ�� I�YLA�)T1���,�@��Ww��~)����qjz/��mzI�E���pZ���_0p#0Œ��mӪ�6�+��2L�K���
�*�A_�FuPk!�;�	~'I��`���42���n-9>n�K��@�	c<r� �H�\s6Z/����7�_2��v��\�i��Fy2����θ=�yqpH���E��~����%���������b=�<
���4A��������uZ-�
	€O�U�Dn4���SZ�8�k�"w��"eI�=?:��yFi���e��Jrz�������˫�����Ï���ӌ�luw%��+˫�S%��U�������;B�yO �"b߷��
�5+��\N|_y���	��77"���󈠩�~�S �=r�~{)28�l��鈚��c��$|�ט53I8�L"�;�h��&�D��s�EЧ��h)��X?�2�N58���%�m�Ds���"�!����J��ڄ&M*��Ȣo�
2~EF���r������4<<�����=�W��k��G��H��5��Q���!�r��~P���ö�2.�{@�(FF�Qn�P���己���������҈1kx�ؽ�_u���~�<���7Ti�d?I�֡��i�{�+��q.����
^�������N�ĺ����Z�σ���rJ��:m��,��������誈�\��O��<���L�`��*���a# �f��ـ
ma.�Z�)��so��h�=֪<ɣ��0%���H���<hhD�
	��<Y	^� >/��b�V%�`�m ӏ~�#9KmG�>�sZ�$�n��> �U�<����t<�R�<:����m�St�'��E�ï��������%+��6�d.�_k�����%|.	Odk9F���%Ֆ�Th�<�B��f�

X�Vs�4lI����W���є\�G�[#ۂ����hP4�VS"X�50V5kb�4L;�}ɏ�d~��̅��9x�BwOq��yM
�X��/�
tT볣8	Ό����^<ܴp�&_8u�U��1&�
P���R[յ-ٸ�%z�>;�U��JuǮ~O�y�g�D�w�'U�%���x\�k.��,{ �7,)��9S�L������C�i��Š��B[�Zy}?a���\�ypl���K���_U>:�<�u�����k,+D9)<g��f������2�OU	��.X/�iD]?�h�S.j�b*�3�&�s�E�Ŕ
��ss�ꫂ]Brn�Rc��O��P2�1�׆�b.VXձ���[D��H�*�����r��n��,���o���� ��>��Ն\�&)˭��$�r½lF��Yv�6e�rI��{�$Z10`��L{��x�
<&'��X�cy,�屼��*˩�Q��d�~y/N�pDNj��2���ܰW�����[�9�Dw�xnS+��i'�}��x�yI��5��~M[���6�\��#��(e�}/���.�|�N.o9���ՉQ�T��8:����gtˆ��D��_���X���[,Բl���\��o7p\�vg �Dsߐ���u@�e��|n%��b\�z�~��(�ʰMJf3�G-]0(�d�d�ƌPiL.S��
�_�~M�Z�-��Ǭ�-��+_�aǓ�x^�zI_�zE�t�8;�'}��;7*�}��
]��ɳ�A�ɖ���4J[��l4_9�b��A�%�f<`H�\���a�� ��p{q��)}���/��c9j�v���+�1:>�'���9M���%y����RW��Y�5�`��-�O�TV�^i�-P$Y�nu-Q)o��|�c�!�[pPA$�$����8wrv*s�	��W_)֪�*`[��NeA����mq?���>��g'���?��q�1#7�J�5�<������#A�%�f/2uB�p��*�B�Fݚ,�b�s�Q`X�h+k@j�Д�C�����#��.��f���G�1��$��˗��ϣ��]�H'��������"�e���V\q?QW��&��;�>�{�( ��^��V&_2r���}���6Y�k�SqH�kW��h��yN�K4�6��P�$�_�*m��TG�q7R�h5��-&9��yճ���A_�n�k�1w��
��ի�ޤ���{e��&�S��y�	�	v�w���l�	}�O�d���0�6�kg��u�C1��G2�[*tS6w��Ź7��?ě��V�z:�ͩ��z�r���W—r�M����j�!��A��{(��L�-}��-QNm�<"<�N/��4VH^�G��p\�c9���
��L�(��18�cbs��!)6�-(���'y�H@Ppn��#�-����\�����+E� 6Zǣ;0�v�
v��c��1� R ��g|�T�*���PYsu��*	Xċa���Y�F�H��ˢ���m����R��"���y�B�/��Z�1*+m�دsI�}�iZP�8��N]� �"B�i��Q1Ћ�j4Mn\��q�P���u����(��;h�2���+�p�ģ.R�ke�v�n�`�x�Lڐ�C�'I�c�=§R�9:_#<|<��Ǽm���D�o]#Wj�
��E2P�b�%;�9�0�C��jʜ��k�DŽ�x.��Tt��Pۤ!ȥ��6[d}��H!�}�������1E�imW��m�G��wP�ɪ�Z�/�m��6e�z��mrAʽ���8`a�x=��� E���9���Ѕ�P����+6g�^�=�@���=��L>����ؗc)�@)�@��æ�� �r=�\J���	3+c��ǼF��O��SE�������z�`ܟ$e��W�4��*{gs ��)�i�5���Bb�$"�
�k������l��)�7[I�
%T|G��Aa�(�v�ɦ��x�Z�`ok���F�g����%����SR�Wҿ9�bL]��KV:���-�^m	�E���1�u8��߈D%ރ�%�w�x��<���X�cyg�U�&bPNb���d�c6��^}B��e���Y"b�Bw���Z���Q)zތf�9�x?��e����W ��͗t�^9�7]@�;����2�n+m��A�`��A1��4_���M6�H6T���tq,������l�-�3$��!e R&�3>�a��ꚮ���s�s���ɂA�͖I�7��z�s6�OI#1����z6H�̘
|c�`.�oP�`��tS�}�]��}B���N��8�v#I�9��1"N�q߽�m�����V������=;��O^HT�H��r�yJ��z#��K�#��,�Q�]�}K�|�]�3��0�?9=����_wl��E4��N��?x�#zsC����N���ӥ���u���kJ�ѹY�-�=�����$l`�g�r�3P��N�:L�he�j��v��g�A$D�x���yy}I�z���݁���f��}-I�;�PӼ�2w�aϝ<7��xa��
� '�w^���{_ux�\-�Vd�$�\��swf$�Q�b���Ap0��c�@.?��y�ȧ���_A�
JZ�+�՚����Ny�Ym�h����	�̉R�v�iHy��Ӗ�bo�}�m,��b�Hz�8�&|��Z� Q��
e�9P�F�����1<�Ac����,����Oי�a]�\(�+Ԛ\�ˣd��S+E���7�X_S���sU΋:�ZR�A��}z��TTбJYژ�u���6����Fi�"S8S����rN�S^�4I���=���o&gs�3Ϯ`���ߌ�J�}��\;�8ֹ��d��~BN�U{��ֺ&�7�����o]JR�w�mgC5"<"���KN�h˹-�Ö�����V���w�'`1�w�
�X��{O��QI�|M�V���:��\�Qk��yց�w4���;
r$(�u$	;��^E^u�B4D싆�>xDJM@�3�i��
%����‘����r��d��E����aSA"O��ȵ
BdE��@��ZX����Sřa>�}kM��6���\�#P�:�@GC=6k3Pg��ȏ0g��6��V�R|5�>A��s�*J�^�kګ����=��3�����e
(
�5���䟛v�7�\,�~����}��J�EH�L�n N���S:���q;���Df�,�G�oxnW�Dr�T��ͮ�(��8�ڤ�Pz0^)\'�E��Ť�/QE��a�oU~u����Y~{%�p͸��C�L�d�vn�[s�}�y�kQC���.6�����a��j���2�� U0�a����3�%��T:Y�GyWdr�a�\�@��[*ξN�����1�ձ)���>ןF�Y���:1��nHϞ��<��͒^���-�k�[b���
�5h�@s�(���j;U�4�b'��μC��,��gh1��{�b�����\$(�^	�2F����↕�:�D��X��p6HF��c��Ph�H���ْ��Ԭ5��U>��[�{(�Xn+�,�)w2�	'�m��8�ő��t�����5�5Py�u�.��\�)��cy,��|]IC�)���"*W��\�$=.���\�+g|o:Z��?�-%7��1gI`����.�i��4L����t�`�3�NIAh$_T�pM�%��]���/�'�n$��G���y���cm�F�5�0�#�e�n�)+���6,� ���P�'��
�wt~�Drj�eD�����_�؇�"!`=���u��q�F~8j\�1:!n�PTM'Ź�
����ia8du�n��9'ǒcz&���r�x�֒�Á��(K<�';���Q�wD�H����b�͠�_]��ca��2hԽ�e�>�x��ד���[BG��8����-�A�`���˛+6�o�d�ɦW�m���TQH|l,��I�M���H�Y�yO]kl��Ar�f�[)�'�p\�
�^U�.I��yrrN�_��##�2���)�M��E����sc�1� "��c��V�}���³�X��*��l2'�q���G�j��JԡU�Ŗ���\_��0��̛E*v+}�&���l�;��a"���g�U�Jds�s��J֊^)m���;4�="G�ړ)�
�i$W_���5ɹv��틞*O�E��]uð@�ZST�4Zz���lv"3!�C�vTۗF�jħ���s|@v�����>8��N�Zo�i�l+��w��{��ɽ�cS�k�_-BAi�k@뛵y� BZOQʛ���J��Kv�-�UKP����<n��
�"��������Of[�9���L�a.����@L]���o�*���Q��������,�.��d�UI�hh�(�cmT�?a�ݳLRL��g-پ��2� ����yx��q���T���(�F�#2E��?�g��G�I̥�!�Bڦ�q�H�o(�Ƅ��gnV4?ّ��A�ާ0���'+���וb�}@�gDr�;C��
��za����߫�[�D{"ܐ
�M��~���MᏜК!l
��I#��h6��xL�����cE�Ѫ^��>1��^�l���O���%O�����Jd�G�����>���Cq����ɸS����Q(�L�Hs^Ս���‹dj!���'�����B*}�>9袛P3�)�>i��o�گ*`:X�W����ߍ����f�ՠ>��­r�;J[s.���x9��9`<�O&O~�au��iʍ��N�1ό�pjO��-׆$���}�/}O�8�T8=}�Vo�:~���/
cY�d�\�
c:\p�o�]����u�����ޱ9Ԑ(��#��7����E���%
N1���??�S2��*װ���4z��Z_.������3?������:(~��q�]�Ke�G>0?��x��uю��I�B�<�Y�l��G���Ymذ�""k�J��&�Gv�
���lTQ�DUVz�c!	I��4=RB���
�^jx�	{F��d����%�.�fP�T�Y�~g��-�9!ϝz����]Y_�ZW���(�g��Xl�vo�Y�ן-ڴc0@����c�M�0į5|�x��ݲ�a�}���F�U��<���X˸��Q#��ʪw�D���+pv�a����7l<���\'j́r��P>�qG�0�HԈ���ɬ��?�S�`�Iʯ��I���[[����)���"�EGI�
��T�����D�h������t����@��F����݆�ذ��d'�*�Ɋ��
�0�?E�]��g�B����K���n��_�������/~�K��~����_����/F?{�9���_�O~�)�>_������t����]6�"���5	��(�zN�(
�>�xN/�����D"S����W���)Sq `�b��!3���PFK�:w�]������'�/���)�Q�</���5 o�o�[Ӓ�s�m�8A�{�cǔ��=�:��:a����4��~ �4�]<���>���gt���P���j�	�G?�C��k�_��SZ�-en�0�!.�՟YԳ���X�ͅ*�A�)t���^�51`��6Cf�����A.�g܇#�p����mENE�J�-���\.�x��!�d��Le`<�x.�^@(?��/0�����Rm���_���=��;��#�x<糅R�M�5��c`�Ahi>�#�u�����д5��")9>��v<�;�?>Ҽ2GG����~ל������>��酎�ٍ9/�s��r�p?�FLj�K=(i7B��V�TW^�;�ͥ毨�Qt��nX���N��<
���_*��Oȃ΀���C:Y9$]3fN�h�D㾤q�����em%�������͋-�����q�Ӎ��\+�\�>&�(���),�5�\������U����u����1X"�Y53����%��5"�9��?���H)w�5*v�Z�=ΆD���rRh��̩�kp�3
�ܕ<����H���y����U�3l��q~mOX��fǗJ`�7�?*��%�G�b�";r΃�X��L�����4���<Yր�b	��$��ګԾ�N�'+������U=�`&G�0�?�яj���L(��<�A�=vrP.�e��p(�/6gx�Fa�q��������>d�}��J_~��ZݚA9����ʩCܨ���
����dU�z�u�ΓV�7��y���&�.Q�^%�

�j�!u�+���%]���\-�f�x��C�M�
O��P��L�s�� ٽ�9P��N�~\���(J��{����(o6�'�EN=���S1���$ƾ����T(�|����r����BM0�Uz�
z�TCQ���75��i|��1,�Zh�?���,���E�-��Gi��+b@�N��T"���l���v��1��,u
�_�eH����ń�����~nJ}4����_��=�v�����,��~�y�����D�7�L�)_�#Q*z��|������,�	<1�j�x���_uێ�Em`8:
H�-1L��{V!fx�sx��FϦ�L�|�Mt�7;p����Xrb��G���€���yC/f
��?��X�Y���r���r�H?������e���#�;p�b�I�$�S�Ȍ ��/M�Dd�PT
�<Yۛ�*�����Ѩ��e���o{�P�J����&��f9���=��
�^RY"��<��&ɾ�	C��\�#x������ݽ�u�ڞ���tZ���~�
)@��j��Q�帆�cy,��<��+�������7}�7�b���m��R��R��Fn�?�6A�s�����'B��$Ɉtx��_}������wFsS�MM��T0qg6D�4�頑�M2]�(��[���?Kl�������"����^�wh닝�@NNO%�C��s0��M֠qb!���
E���ل.W����%]�xY>Z���i&P�:���3��������|�����7WW%�Xt:qn�P%h�#�Hx-�������!�T�gl�~��3qFA��]�]���_~N�i�������~q�R�
��!���5]_�	�
c���B����́S6�#I9h�>|�ߏ=g�����1�:�Ϗ�>��^<y*��G��|p����裏��C�ο}��g"/#wJc}Ǐ�\n�^��L
��<���["=�P�O��s>f�*��'O�nDV<�v}��%���p�D!JG��@���D��&rM����Z�4��p<?���<�9����L����~��9G��Hm6���4p��!~
�}G[f�&(VŢc �C��&'D7	0ы�ej@������gP�K���U�s𛟃����h>�H�gs�׈�V����2��Ϧg<����|��\O/:��u�p���rJ�\�*���5��h�	�^9�~�b�+i\�7�h�~}G���5{w�j���>�h�;��7�6*�u�2�w�!2�a�c�
�f���.�5��ݔ��ש� g�
���m�9��JMC[B&8(��Xlj�ڨ�z����4�k�eG�;;�K6lE%�W����b��о�Ɛ�2
Ǥ�
��.s(�-�~�rTE��F�Gq;|��3a�6����n����,�X�cl8��1��t�|�в⴮El&���8�����+q������N��i�y;��@�X���/����?�x��'��	^��u��f崄�"d4�Ydg1�t��
y�H�SD5����\���MV�i&��I�TP�$�- H��'{��bTF��G}�y�aiI�I�ZJ�*�O$G?��l�r4�"�r\~U��P�PM,�DVY�g18��cP�|1�1��'5��_HT[������t8����N�Wi��1r�D[��c��UI��7e�\%Ӧ+"x�䉀!
/�x4Q����ڻcaW==r�P�1�I,�B:�
�S�F��f<�j�+�6�r�j� ��r	����\<��H���zul��=�26���)E:���&�j�*L<ʺn�)8�$t�!ljzې͉��,=�J�^f�)`u]�QK
N���uV�2��W�U�
id�� ��(EXЎ�o�|�z�A�����p�uc+ۨ�S��s��LJ�Rx�<(pva�r���e���E������p�C��q�A&˷d����P$���^{�K[2����Qb+�Q�j�l<R�~��*Q%��)YbО4�6VD�O���`�aO����g�������nyѹ^���k��9�?���c���qcg��X5\^���8�d�~͟���j�}T`��t+�(ji�#Z���-��5b�ќ�����J/�� ��I>�D��N6w/O��2pU#E|��EH��X�
��eh�YN�����m'x��D2T���'��r_�ƹ�}	�e�n��	O���,��<��򷤸���v��g�C(�@��F6j�)�ʼn �qI�Enh�6W���DϻS�|>���K6�\R˟_�}K����N���_�j���I��&��$���
.�@�ճ8<h�lѕm����e���������[:����D'��M$�Peٷw��m��~�z��3��b�iv������kl�&G����2��Q�Ѽ��ϰӼ$oW����s�;q6]��ߤjHR�(
��R��M_�"ˈ����9���Dp�Gs��%�Np�1.�x†��o_�O�D����G,�Af��{t�����.ZZ�lu�WxBv�[0ܟ�k�Թ�ADr��̬p2182�<e���:S~��'i"N�r��:����JT�L�Q��-}��_�~�{�O�K���/U��k�38!N'�,�iQ���<�h��hӈ�/'���ꜞ3��
n^^����(~}<2�}���T�ͮ�>����y���XGD����Ku����`��k ��^n�K�R2@��\dTɿa�
jg�2Up��ۀ��8ۇ:}B^u�[���11���kP�M�C�0p��\lE�$�ǎ�8�&k�@��q�:XQ�DhŒ2�tz$th}�$?��Uf�]'M&]�
9�1���UG#33G�`�fMҖ�tp�\�?��(������Sz��`d�����O
��Ff���r�@�6C{�>Dcy�c�cE�ڔ�aP�C�ѡ�i�����NQ��{�Nj4�C�ٳ�8�)���$��m/�8����e��L��{ЀD��P���ytK|>���41��Ɍ-�	��������2���AW�&�ǭ~��⣛%lG��E?�^��Vn�G����(��#�����?�$���1��6�b�G��6���/�r9)��
|��{�����K@grHT.�J��@�������e�Ai�V;Ty�H����ǽID�����+�!:��c�$`}��k���l>JE�Z/fȉa�<X,���Dxw�m��~�&x� D��lԺ���U���
��}�p(�㿛���Q�T��OV����	y ��5pz��y�<���ͅqh(^�qJڍcj�E_�""�9صS��D�c�|>X%2e�5�K�X�nx�쬏%t�Wj�8NR4�)MaQ���7AD�(�S*P8͘��c*�X.<���<%)���s����w]�t1�s�/¹+Ie��/���GOuFg���\y�3��1�$У;�!w��;xy�����m�͓'�c��*�(���j������4�`�d�xѨ��&
�v�W����v���v�\�Q�^%���#���sSœ�xe��s�7m<.�uR��}.c�
�~��h�Ai{־�PW����т8�-:y��^�	��Ō~���ҳ�sI���޲�/�Q�삆�-��a�@��{�[���{�v�~�Ǯ��[��~����˿ϒ��7
"��W~��x�����c?����D�H�5z'�k#��=��X�޺S�C���*ԑDj��5-J-`ѩ�#>c���Σ=r������g�PoԳ�ee	0[~!%��P��IC�x�{|����cy,��<���Pq
N��`he��=�%�;���.7�3�؛���I��=�I��	�%������F7@!��W�;zyC_�^�!;OH(D
�S�ܻw�J�"0�K"rD��H��j��|�S��Ը��O_Ї/�
���\��ҵ=�������
�oi�Y
Ed%Pc���t֊�s�m��}��Χ�nDY�߶"/@v�Β�L����t�c���]�huD�v�VdND<�2�q>;�6�"A5t�
��-��翦�߼����Д�aȩ3)8՘3W�i�vM�MiJY���][z�}���ѫ�Kfn%I��_���\b�<n�|�1��x�~����.��wH��c:�����~�w�R�%���D�87�N�Z.��N�>mg��J)1�wl �9��'>e�oЏ�`��9?����9W�������~��}�	�eP��%�>}jz9��f���@�:��J�4���U�,NZѦ7�V�U�Kb�oh�[2�u/V��q���BJ�a�u�֠�b�4�Y����ha��`G��;�)�p��ex%�O����ol_�c��~v�������cZ�;��e��Q-��q`���Li�qkT��@���xX����񑌑��sG��ٮ���VX~߀�A"��TM�����]�{�s<�Ѓ5���/~�2�9���O/^|��{���������ɳ��������v���tt|��:%$3�
�
�5��ؠh���o)��6������:���T�b���s��Ӛk�Uۊt��%�5D&M͡��U��DŘ=4��Q{����s�TE������۪A��+|���O�)�
P�RٍR=�%�ZJ���g�|6e��;:�{�VwPڳ(t�_�†�����yn�^�$�^�3�H7� �ךC%D���/�U:Xx�
y<�Q{3�|����(��g�Z9�����w���Gn�{��/>��A�k��vf���|�W4NN��F�#�j
8�<�z(�)�����x��y;<A�Gy8�U臊G8��m��8ֲ���<��lA]�[�{����b�����D�5�4�ij��������	���縤rM����]0�"Dy�u�u�!A��u�K�A�ހ�lBE�W�j�lI���1�@J0Di�_I�����W�sd�c��\��~N(����ݣ	����$�^.�"��ZI�e'��+�����������X��8f�7��uq�]�ފ��z�weQk
@ዉ�$vD#$H<�s���N�q���;*��s��Ϣ���'�6��6��)$ρ��y�x0���7�0�,�	�ͮ��l��C���&����F6�G�~��d�f��S���D4�B��'�c�P1�hKM���;e�U�ƢZ
�֪�" ��9_DD�tp��B~���d놭E��4�<\�ν��8H4�Z\�������=W�:Vj��P��de�y�x6Y9;�g�?��A�)�߭x��隟�[Vr����Z�`����>x:�M�5��H�`�!�ٰ�\?����R��9Fm����g�pf睴�(`T��@��v����B{�,D}l�h�d>Te��hlO`��ۤ�]�)':�*id��$&�!�f��ê�R�~D�9o9���=��ep2�!��(�]��t��S����	��^��)��))j-��J�mr贽��p���$С�EI6���˿J!󎢏��j�mK\;
N��U��T��/�����(�#
���>ſT�,�W������Ŗ�h�x��ߤ���}$�����C�}�v���V�F>p��]*�|Xݸ�z8���=�,#4�eh(�܍�3+�!��7}M"*�*CTE7�t�\o��w�FR��Z�w�2�� ��L�N��}�^��1P��U�e�|2�������a����
�����ח�F�|�&�n�w֟V�t�#6�6����@�],Wr��0Q������l4�8�!:5+`Ҋ�����:�%zvz.r��˵�Fo����@oU�}��d��ɨ�m���E{�c���-�K3Z��!"`�h��H��׷2��l��~�<hdܧ�<yy�K5�+e�����q�,q��/h��X+��
�~���=}&T��pm%+����$��`ΖeI���%19��_�G{�����1��/�b����_����?�Gr��n]p�xI4p��씨RE����<;?7z+8��e> "F/�o�U�{|�D���We�wGWy����$,�NxN��b�sz�捎9�ݰ���NNN�
�!@��F�t�N��4��[�i��m�w���s���n^�������/3�XԌQ{7%���蝬��"]�/x~���u2U���6wl�������Um�S=�֢��N��?�`ߊ�J���i���I�2RU��
��G��a}�WCv�%=>���C�4ݳ�~����h�.��=�6V5Z&
���r.�<���/��{J���w��+����u�\7��@�J50�f��\�mv���.�G���=���7�8�-��`Z��N�ض��2�yD�e��t@j�3���5��, �t�d�K�
6x>�	��#�vzghBq�>������Q�$��� 
q��1	��:�eȐ���J�:��|�É:����pm�F���Oo��8�A���#=��
���sx8����@���ף>$�UӔ
��>{��	����j�^��%TE��M,*��d��&3�u�:�ܛ�n�خG�48X!�Xt�����7t����/BQ=Q�o���p|���1����@a����F����@�lS�q�lJ�N��%�7�;��(����7ګwTo�C���؈5��Gؽ��O~B��?�O���G���hי�޻���Ů�L�&��J�b�R5���¥C����?)�V@�4uw(�,���ՋŽ�p!��#� �i+���i�	��)6x���7qӄ3�l��P��J�'V����1�J�,��F�Hhov*6����c=)�LG%��c�헲AF%��1�q�ل2�-N�ْ�9@���Rw�u�c��:U(8�DDI�~��T{�;��}�1�k8R#�:rA�@+��q����e�_���/�֡�*���W���p��c��)��|���2����݆n�9��A�Wrʊw�0�߀��tA�	�Nt�E�l��3V�Z@@G~"~F�X��d����т���t/@8�:��&�gh�֧F��
�~��|��WE�YwEp�U`Vh�\W���a>�\+{�N�(��-Q�K�3~o��QF
�@�/��|�ќP<���X�[�����)�h@��8D�
ڿe�)��k�����SV(�������q,�'9��a��O�]r�79?���گ?�>�~�Zt����?5t�F�Ŕ�ٿ�x��o��ׅ�\�ڌV�4j�!�f<�u
NE�ly|λo�;n��%�w�W�Q��_�v�ђ=�� ��[7�S�/���py\���3��9p��0.)��=��ۮ���[��GS4vj@oF���Z�C�*�����?\~@Dd���=Q߿��
$drTtr���R
a�qY�=��V-Ӟ/��ѥQ����'�������tf m5���(���k�����E�K"c2��4���)8@i����8�����ϳ$c�Fz�����Y3���[\�F���j#N��C)�Ug��Q��d�?�|"�9(�{�l���U�'�n�T���g�\��Ȫa�x�����o@��g�K|

����0�;�e���R��	 ���׎O�⊮on�D�<��ѯ��inu/�u��쐽��}m�3l��͝�`G�Q��f�����G��� �c�x�QW�C�[}֐{�%�1������W�Ytfȧǧ�_�B�+����Sy�i2x.\�+ϴF[�<oN��x����f�N(E��{��������}�jJ�Kec���������>�7:������3M���A�Q�Q�M�[Zr��c��j�� cm����!U���و��4� �L:�:'&�X=��3�g��tr��!�D����/َ49{G#T\x�<�_��v�B����8h�w*��s�y�9Q��E0닱�,���GEW���qv@��(�n�yhc2�8�֙k�Ҿh�Zݹ���P�1k�t��u\�/�+r_^K債�rU�vh�+ũ^3����gIJ�R<?h��m*g�Xo[���A��?K�=��?���
l��3�(Y�kg�oE�!]�K�*Y���h]����)�d�s*W�3ʟ����y�^�#ڿ5����n��猵�I4�4x���nB?��ʝG����`����If����,��b�>n�c`��찀�Ұt1vR�N��8�1���@�_H>�":w��=)�w�:
���$�� �2����t���O��1 n6S�$ �2*� G�T�y�B��
��֚9��M�l&H.Q
�	�6L��]��E�<��^��&�~��
�)��
�K����Ɇlh".HB��o�6
y�9��J��_�8�+�B0ڥ\P�cD�`s6!ߣ9�sW�g�4��}�~o��#����*3R�e=W�6��x���������|�VB�-	�'B3�AB�>("�X>C��e�f��?�!���IK짔Z��a�	(���v]�(�>���H�i�ؐ�+���2�{��p<Ú���]�DZҐ)�th��.�-�|�e%�+7T)Ҿ��X�����z�����˦6��)�f=�x(��{�S�^9-�R�ȩn���:����ICCH��(���x��^�B̽����e,�<��Ea<T��_Is#�"\��j���g���ݚ[�Jt��қ%+������:�k.X9��T�zˑ<���~#���-�w�D��8C�fX�6}�`F=�
��)f�tV$��f%F�-��K����N��S�|�
��쐷��b!Ɨ0'��#�,r�@�+n�1Ed����Z�I��IsQa\;1�@!��$O��I>%ǭ��ʕ�P�(I8���-������~}�
<���s)R�x�y�yG��ϑ�(���ux&uW�4���SJ{���u�ٿN���]����*� �>掅%P�є~�dF���#�bX�|��n�8���՛קQϐ�8Ϋߛ)�f�Rc�Ԁ�*F!m��/���Ԛg�Fz��+�%�ɚ7�e�p�{�h�_��:0q��񮗩JL�c�ޮ�&�s�ׄ����N�y}8+��&G��e��w3�o���P�Y�ٸy��\���)
��o�V�̠����e���2��{m.@�:݂�ɒ�xBߴ���N�1��S~{��.8�x���'|w���;����c��+ג�gG?|���>��גL�,:��Sp�s $R�:�rcy5��;}�a�\.I�����F(�3�q�V�+�Y>�b�VZ!�m�E��Qi�D�`-2�.yy�κ�,�y������ԙPT�SG5��ُ������=o&��OL��%R^�I�GĴ�%)+A3k��X �b��8B"h��'�ty}-�
%�͜
`�����D�63��u#�����]��͝�����k�j��V$�w��;=�,�iꙌ���S
Z3�J3!�>ӂ�]��h�J�
�iD%�I⴩rڵ���r��z<�՗~w���c&QDQ��d��?{Ao��Ww�T�Bp{wG?��/���{�Oh�/��ݽrQA�e�n[dl؆�r[���v>�
�U�����^<}.�[�C¶���ee��wf�m�Ο��c���!���B<:X�"r�Da��z�=y"`�Z��	��|pl��m}v����F��!�j/����o���DQߠ�'�K(�����$8V��!�N��Yf�3�yѓ����
�Q-��|�y��\�2ֻ�����@��)���fX��M�_Ǎ��k����Lao�ay�����w}��>�E���i���廠⩑^�:��U����C�(���aH��]���$���6�Pf�{�����μu�O�!�,ײ�q��"�xys\4�.��5�O����URDQ�78�C��5��6�G�@�q?�Q�
�΍�Fu�o���gVYg�`Z�|�8����A
i���(��¿f�#PZ�1]��G��}�ȇ�j�L�4䘌{40niTG2@cpa��Q#��5�:����S����<�0:�tD�״�`cAO.�j��ʑ�]&$o@�	J�s�_!�8�"@���v�$o.&���7np\o6[���6�+'2Ų!A�3�J�9j����%N���1���J^m�F�h�p;�S}��߲i�3��;�+_�킏P_�)ct�R�7����:����J@S��
�.��d�R�M����9+&8⥭1 �!�o;M�ޚ�J�
0���Ј�L����g�㹅�k���X�$���[i��A�J�8^��_�<���x��oʛ�G󂶧��\o\
ZY���R�sĹ�+�Й\k�'g���?>��,���D8ҍ�0���u�"��bm��#�m
]!SKh�ج��I�h�3F�k��'5\s�C�å�,����1�]���_sl~��7A�c|�v%;)eDz��W���˛DP�"@�A;U��ݾL���w6_>]x���C�
A�S�2�^d�~ 0D�bO�8ذ���Fj/F{O�7�j�1՘�a	�������ߣ�>{J
+͹�Ҋ�˻5���%�es���Ty�I
P��s�==�[��P���3���ܯ5zp�\�L��{�Z��`�F�ذ�u1iK����9"9���n���p�k�
�r����~�u��=���A.��x���A[���c���t�=Nr�`̈́��}i������Dvt��	�
$dn���ƒ�j$�q�h$XN�'�$8��a�@�='v��t�4��D�4t(�=,}��L�!�W����ح�1bD��5��D�&5{�T�&�^�
7��C"y���)(��۶�A�������y��=N�X.��*
�b�wـ�P�5�Z�7?���R��vѶ
t0B�4�6ȲҤ���b�3�Ր�'*�K�̊D�h���b0��I�kr�-^W����(W��2�y�}5�N�o#� ��&�6�J����7�BW�"��d�*}]�QuC-�
�p&�L���F@��ke��~��6���3�i��:�י���%K�^g�s�~M]�s��n.��Yۣ��LƼn����o��%�w�#~�~�y4V��Ì�yZ����#�el���9ؑ����xYJ�k���Ґbg3�Jo�iK��J�m9.�C��#`-��N�����3+�����^�6�D˼/���~\��<�	�Ά
��\���ܙn�d��
���W�g�gbl�Eq}�ΑD��]�3u�ӹD�H.K�{*� G��V�A��z�K�t1G''tņ��ԋ���*#�@N1R���Xi�G�##����6IP�9�ޘy.�At����x����h;߉�7�6����#���ډC�[���z�����̡N�����i&9=�Fs�K����A}���jbΜ�[�������c��y[��.�/��?�1�����jL����rPL
�ٍ��ƥ�V��:?;�*.Þ�v7Z6v�������D�8hM�-��T���9O/���oon�=��m"�"��0ѽ�([{�B�3�\�.����
�ji$��"����]�N�fG#m�.�Q��$���������g܎Ia�جak�͑'�x�I`_��핺t�^�w�j\�B��U��
g�:5�0^�RP0iO��8:5t``�&�NJ-���^���=էs�O�b���5�}�,:�z�^�a]u�L{c��;E��l Ц4�c���}؂�냖�Zk��θ�O.ː�M��ș��;����fe�n��ƁYQ� �$A����xkr�ǧb�<b����u�!y�^���޿��Y�
>����Qrn�}=U>����1�9�`|�|Rs(N]eLTɾ��=�g�d$L;��&�Hva:^�V-q
+�SYY�=�#�!�t�*DvxRC��%,���Eݑʊ�;�q-MX�[q��B	�d���i܀��O~^<�}�t��&�OJ�Ud�d���Cv[�GW��E?��U�5��u�S�Ɛ«Q *(zt�(���@��q�CP;:9��m�=O�I���h�������#z{�ؓ��F$��mkj��~�����Aә�
$�(h����ٚ[��	������Ox�f�3�p6�aכ�b��[hk�4����;�A t&Vm�/��\��FLP�������E�����u!
c�D|�ᗩx�� s��\)���9W�b`|��>���Q��\-�p�擆�6��5֎>?��bL���� Ra��u@�vK�	��w���PF��>���	��X�^��s"|7(�y����#����٪y���/�Q>���A��V�χ���G�j,m�]7�*�S���ntiXq�����'���e���{�j��k^�v�6�L��#C�{����$��r�Pl�,N�9���d c��ok�&��6KB˩���Y��^�N�X�<�B��Hrv`��B�������}P�U�BI�h��&
��6�H֎^��ط.	�a����i�K��?¾�H�D`<�fP������w0�;}V�����SI)#F��Sv�}x`�bi�md���W~=З����?Xg��X�!�g���Y��������w��pE�t�o���bb��~���?��8�5���
}�s��E�*�t��Ő<��>�57ئwTFUV)�ӻ��Q��HE�ځS�\`i����Bd`D��C-D��ۖ���1ɇ�Q��:�����@�C�R�N�Q�K�J�[
yv�_o��qo�d<�J��G��ׁ(-��T��j��m��G��س<��o3���� "��x�G�$-P��%z\�Q���=z#�B��ݩի`=�[��W��o�� z<�S����/.N�
���^	�]k[+���k�.�������n� 
��¢Ћ�>=���g�`�r�R��w���s����u
�e�������	}��G������>f�*hXo9�vH0XNĹ���4��O��A��_��ϗ�b�?��t����SIN>8���7Wt�L�bvD����<&8mC��L�(�
g8l��MG����)۾3�i"TV'���K�r_�r��%��u�{h��I29`O��8�L%q��#��|FNjcQ��3'�PPM1���[���/�j
5hMY<�q����@��=��|���n��LD��d^>?=�ݓ��̀#��
M9v
��f���?|N/�{"TW��X��)�|��v�C��[�?��
�U�_�Qhʦ�:��ш|9C��v&�KPְ�0�u��c[ȝ8�i�:�W�Y�mə&��kg��͛���<�$KU�2�%�����,?z�7��e�%[��n=�6 Oh�pC�?�ņ�@�!���z��U,�8$sΛÝδ�^+�?D����眛L��RE�{�5Ċi�?&�'Ǐذ��پ����1H<CG1�?���d�{��c��(���ނ����������y�0��J��`��� ��m�s��aa�<�7����n�x�Ǻ��-s�s	x8��4�3?=$�Pt`Q��{&]����l6�G�l!��(�,/�x}V�o0ص�M*�4r���V�ݖe��9F��$��Wj/�"=23�޴Kf3'i�4�ꤌW�m�o��tB!�����M�y�\�1�S��ɀQU���L�Ԭ�]n����\A�ƕןE�TzW�Xw]������/��ƍ�;$��W���P�� ��J�H��e���9�Y�]�4Q�|!�c��(?mIOq�D�Y�Z����C��7�-��8�I���[qC(aF�#���6Â-`�@�|f��Rl�MԄ}�Q,�&��o���AZ��5�k���X�pt�4�*XzlP,w���$F�@Z�r�*I�gu�@RlC�E�up�6
Me0G(+5dpQ�,�a��o
L���xub-G��h���'���y�{�^#y{�!A�
�L˼x�����(�Dz��=GJ�s8�\.���`��w�S6[�1�~Li
b̑`���s6<O_	���!�N�B���Ì#�p�E��KD*ؖ�=%R��S���g���������I�y����5��E�t���6�?țRD�<����T"3�*��ItxC(�RV�(E1zq4
�LO�ʺ�q�����egFKLo�T۠,�7��1�����1^�>�&ϸ�}5�>wq�5��қjtS�ģLΧ�b��rY)S�<q�u3�<�QO�Q]D�P�c�lpח�T�tAi⚆�H-qo
T�;;�ZmWu��yr�Y8��͵�.��/����
�3s��nYY�����7��{7�(>��'���1=:9��|�I���@��(� �l�g��� +5 ,��8��;�(�\�,��u`�)�������-(!��J������Q$	C	qވ�0����Zg��H
S8�rV�I>�hA��^r
�=я�!������
Qj���(E���	�8}�|=�:݃d�����#1��Y�,+qěX#K��B����h&�P}�KBhB!���7��d$��p�t %w�%Gl��@[�86���)Ǥ�hG��&��ѝ:V�
.��ͳe���Kkm��s7D��i�\`w˛$�:�s+����/<��k�L@�v24\ᒂ���\��h�R��k�#Ն9�8c9��=-r}�B��>��Tb��,l�RÈo���M���!��V���U]*�*���%8%����*M��
����l>Kl���[�v�5m��<��|nͬ�ֽ�b�
q�}���V���I�,\u�~�Ţ6BrP6zN�#��Cai��/g��C/��F�(�:��?=9e�H�e(e��QV��s���trz�Q
moo!�kN�eVr/����A��_����	���h�y6� � �����|�{r�
��p�Q$�8g�=@2ݹu��o��1�E=e�I�: 8!��e�.h>'Wٝ�r�yV^����b6x`LЦ��BԪI�ev0S�� O�Ph��bVrY��lt�w�p69=���8Lj���	�߯^t��$1@0��<�㇏�aB�ʺ"W&6n�#�:��zy��8bgq(�|�+�4��J��fC�`CȦ���q��A"���I
T����"��zU��
�C6f}�K_�G��tz�f��/}��yn��
U�,/��n���y��Ps�@��T��x,7��"CqD=a�jI�]R�c�{:+N�;p�&r���>���=��ɓl�;�p��t�8�3<��	��q��:��cE���g&s%�A�F�D�g}� �9��s�m����n��r����<e��f�ٹ7�Fڼir��>$�}<��%}�fW:Vj���j!�%�&J��%d�����ָs�D�R�18y.DE0(��e�T��է��yU<5��=�M���2{�f�
� 76�RDێJa{���=��Z�d�8G��S �	Y��R��74�ʶD*U
z]�z�M�1б�s>e���;�o��V>ڮm�zy��3Z�4�w�JuY:Gm�x�h�=j��Պ��Е|����
���3ĕFv
hH���?��Б԰�FK^n�5|0���C�*Q�Ĝ��v�?���c3=��U/���	�a��5��rIʃAZ����*f�oX|p�`���(�aEBć����Q�T
s�G0LpJU�
۔A�D�9s���R(&�O3$TpQZ��y�Ca��k�[6�^���d���2F�Yb�k�o|�FBh�==G�
�Q�H��Y��	�BpJq�-�8�$^|�������xI��z10C�r����6Â�	� �%5��%��bI�ޑO�%}&��N��QTB�����׾ʆ��0/W�1E�qc2M��+�<gc҆{(��y�9�PIٮ�v�N�I�MJ	d��
Xb����+�vr�9#|h�t��F�c��B�#,$���c�F�5y!Z<pBg�l=�)���2�N��v#���kSs{��;������4�w�4ޣ��1U�Q�?��<��#C&���\rk��Xe0*��]���r����p�(���.��镋
��@�g�0�8Rwo�fˍ
�C��#�7�z���iM�ݼF����L��rA��|KvN���fC�B�F��5�O���qH�y��u-+`�|��~�`��n���@���!���ܬX�oB���������^ç-6g>u�J��[U�ybA���66��'P�� Z2=�Q�aclҨ�U����i���c���jG�>�
Z�^�XV��{�s�9燉��r<�

@o��W�L��*H���c�Ky_�	g6�/�F���]�����k�oWy&�杕��>�
u%o*{�\���[�?��ȵ���M5:�c<�x~rw�Z�<��J�E�=Y�J�%J�
��!�oIxQ�b��I<zӰ����3U���Nx��'�o��n��j�L��C��q�u����ɀ0��~�4�'ӍPU	��-<���"(V���S�Z��2���e�$�qJ��Ӿ֣}�J�o�.F�j��g�ѓߡ��UN�ׄ�#�G���}�ʠ{���|����3i;��~a-�

n(jY�m�za�_]��y^d��w�Ť���"�@P,�cW���]ښ�%��%V+�)��;6�H�D������x�.�%��C����#-�]sݟ�W5���Y�$�t/ĒS��8��"�[ȏ���e~�ޑe��u��Z6pfC�'v���B<���S�z#2id'�0����>Erp�
�]��^�WMR'FQG��Фހ�
6�Dٙ
�#��E��I���W��C~���ԯN9a6�-d� ���k7xl�{`�8�<H�Ή�[}vN>'"�_D�؈��uwj�0Y���^dct�1Cd.��m����Q��i��.�g�����u��uY+8g���ƛł#B��`tb�9ό����#z��O�~�#6��_��
S��W�J?����l�SC+'�1cS�T&N�~XQvpE�w5��'���΍D��yMW�_���I�9���P�/NO�=0xj\�u|��!�Qż��wz��v�;�p��t��4h��%<��4���uZ+����C{�}�o�}�?����F!�z�
+��c�N���7��p�S�^ݫbA�Q3 p���Ue1���?Ƽ�D7�h�B+b�T�V*��(N,�\i��ĸ�8W���4nTOJ%Qv1ƕ����Ip�_(���Ru����[���nj�R�fr�l�`�VE��%0*u�בf"+o�t�3��Q��m�=����@��J
�9K��Uė0�mF�<c�mF-T^"y���[�VO�q�h�e�����N��ޱæ~jH��u�m�3���˸�l��u����8���BQx����d�9`��Ytl����*Yt�.z�����m�m��mrI3���=����*og�����
�2�g����`�`�7���4Qp�':�Ə�}1�P=d�1��\�QK����2��W��u�G�Ok�q��n���[�8Y��H(Q�� ]	ʠQ,��X���b���!̰#;5���|ω&��{�(�d�+�a0<�Z�k;/�n�(�����>Ū4�,(��2��T�clx��������5�|���gW�䵖���җ�$����q.5j�T��(ޒ3�k����[�8���W_%�*�,3��ـbX��f\ǹ9H�”�D8 H�敒���
G[#�i�aTH�#�]K�0I:.8ݩA-��0��b�w�58�x�v(�i]���i�	c�y[�P�d���T�Y��&�n�F��Mi�UBW�д�\���);�`/.�
�x�:k�
qT."�c��SA"-��%̙ޠ���X�S���
.|�܄��	��H�z�v��DeE�}��0��H��Z�p�M�ye���z۸�0=��Fs����!*,�C����ŗ���l��1Fo�gy������
��u� `�ڽ����"�[�!�"LXg�. ���`�6�KՊG}++	�:1X�-��p�������@'V�sX�^u������q�Ĭ���M�e<�P$�.Ќ�0��(UƂ�{�zȱjR
 ��U���Dt��S�^DY9쭬t����A�A���g#pY�	A0��G�deD%*{�2'h�2�9&��rlDc\�
��M����0C��.b����_�8���x��ŏG
ۊ��
/�_]�+���Z�Rw��ֶ�� cGO���0�T"m�����u��W�&�V*qI�U�J;C�&m-�/V�N/G�5g<v��:*P�R23�'_��Z�W;50��Ï�Sp�kq�ʿ�:,�N+�/oF�ʅ�p։�y0����
�9XD_��4��4M���4�$X��C�6[r�4��A�E�O/��
�){��k̐*�����`� ��ڟ��̓#Nf���=~���$'��F���R��-��d���B��قa��sa�0KD���g�rO��s�V�~p����g�(+& kl��]a�
˺�B��쌡
��D�E(z��d��"<�$W��dג"�X�2���PGOx +qTĬ+�P�?:~�c���=�|�Ly6�&M��6>DIlTVCD�\�iΣ�r(�n6[���.�x�$P�&Ow
75�>��N{i���1�O0��g-
N%�h�@!��m��s����|85���aoOshĒ��p�y�ӯ�o��0Po��F��C�~x����o2�W���hh
#>⡂M{P}G/�Q�k�UΛ�	ݣ��o�&�8�T��}�׮]�9���B�� @Z,k�)���*��5�c8֭�kPؐ��~�B�]�y�=��sh��<�0v-����`��e�h ��-��I���|mn�o���
�4�ѹ��ź��>��#�6�br��G"�$����+C+��PE���+�Z yT�`�xC
UFU�m�3e�s�_V�Z�H�wz��Q��J���s֣J#K7��G%*0��+Bel�So��^D3U�
S�"R[G)8Y��	98sJ�~�����3�
�</uT�w���K�{��3�d�)�GP��41EGf�\č�1*_[����U6^�/�m�`��t�\�4�.m
�ci׹�L��z�"mA��� �8��z��55��k�b�D}��%4oxr����߆.�߰E�[�^�v�v:����+�
�"<�ha$jaI�sg���)o�Ax�v���>P�뱁e�0oQڨ�i�X��T�ALU�Jr=�{��>M]�sƍ�Ir����@d�%�86z�ؒs��U>w����4Z�yx%U�0�do�B�P���X�8�?�hI��
N�F��ʆ��|XqD<�g���L��|�$���A`�8WI욱���1&E�T����PM�m9#�U��tA�d-q�D�/���4r%�"�F�y��R���cfD���a�g�[��07�S����!�T���'TJ%�:WfD��c/��3�v���$���$t�ر��\�>����5�.��x8i_E����� JHû7ȧ@���A�!qu3u �Yd�YNt����mPF(�֖&B��+/�ÿ5�~�|";��$�X��J�)34M�Dxe�	B�̳�t<l�7VE�zR!|V<1>>I:�P<��:=�f*D7��L�	.�*�2"�p�S��q�`�����.eEa���$�d�Y~��E���pF���5(sĐo���](=���W���*�Mq��~�{,~D�q��a4��=�2;��]��,3���V�,�l�z�x�{i���ﰦ�pF���Żw�^���y��.��4��=�w<�s�V��oV���m@Vx�e!�4����G0p##�u��z���y>g�v$1ݛ�`�y�h��<+�ܝ�TFI`��?�`K��A7XX��Pq�͙cE�^�gx�H˛
�I�h�"�zdZb�>�5�s�؁�����tE�'����sP����95�	@N"/(��A`���r�:NM���QB���-��������є���3T�-���.�Y���:�����
z���!Q��B��M�}˘�Z�h\�	:MR�[��mO���J��&ȉ���3�l�E؏fH�k�*�y����Ü!LM>��
]��] ?6Q=�UA�)�6�}���r(��5	���R�������¦ԧ�Q#�,��՚F ��B�I����1��;@'�X O��_�	
[m)�C�K�p��w�ߤʪi3���`P8��J���.p��8X�;��BU�"=�L-'�}���x-���]�5��_ve�F��a�4�x��q�s�6y�V�M~��d-"C�B:�Kc��7�>�S�e�����'���,��C��s��ԁa��m�5���r���tp����J*@{��bc ��H<
8�Ӽ��<����"\�>�ᩨFq�� <�"�t.��͆�V3ZP���w�<d��`��L1��by@wnߒ��.CT"<���$A)�����'ΛP�K�$^�-)��6���=đ����)�4�Uԉ1�BMN�\r8��'H�'֯�a_E�����Ϝ��[����,C�1��%�BR��F��(��I�/�m�X�YnO��J�6cqY�	\����;L`��W't�����[y��<��V0i`��3�(�"��3�n���{����F6�������|��b��l b�$��*�%�k���#яld��sx�8R�z��(�7��EҨ�,��ћ��M���ȼ�l�[��U��ȓ��q�`�}>��k�x$���"KV�JDfL��bd�e�0��^�Я�p�›���,�*��_�Ƹ��7�_�V���E�x9MN�T�Jm�X�+�KmE����I��\Դkr3D��K���!�-/E^�4ي2�g��>g"���@yV1J�o�N��$�,�Bh��]����cΑ������<%P��LG�`M��^�}�Xu�	�)�$10�)���Ɨ���yw�)���p�
;�Q�8�FoCص��Rܽ�V�
lip���dA�g�ƍ�Y��פQ����Hf�*0|��`��F�Ƃ0�RZ?rQ3��l,������[4������'�`��)κ���c�;`	2cǸ��bm5Ã1z����Dk$�-뚟�!.4�D�
�Ll�N"��I�>Uc
BI�YY�=�{&�
�%�I$���%�D�VĠ �U!�"ޗ�����~�b�,�@ �r����Z�Ip mG
1e�ho)�>Pq�jG��H^�~�A$�hc��H��{�	�v���J
��%��W���ye�g�'J�	�� $�e�V�-������f��b̘(6�}�XX0
���kY�q��Zfv��XI���B�`@��>"�)#�	�q��I�y���&�����ᵃ�|�g���!�aDle~�A�����$��׈6F`��D&a�S���n��P���"��J'%�6�™�^�j�S�5(g��E�`�7�(x�
Q�.SL��W(a���s����OQ�$�9\��Lya�*W��m�1(�84W�]�uT��l��-�=b`��]��*���s
ے�{\ےS�U�7�ʼt�	"���b��1L�]}=��s9��W*�ݰZ��G��P�t�q����"�W>��^f���:�y�>��ǧ��z�ٔ�;�,��i�d�o�O��Mޯ�r��X�Q�,�;��3�TN���&8�}�+��Z��#��4����6�+�����@��x��X<�uK�~c��u�7(�7��'IR�O���đm���Aq�ud�S���Fy�ĻԌo������m�uJK�)�����F��ޖ�����K��
ʦQ���M��WV�3�h�;BH�o;��7�w�mmH
(�/�.\ޞ�Z�ڦ^=:-�t�lY��Y<V��U@խZr�P3V������F��+;x�&�J��7)I��%K����D�|1��[�К��:y�Q��1��J���m����w�*�pt�'^
Vz���W�q)̮��YEǼ�9��c�(?{j����^
Js�",��S���䤉s�	�Z�{���x�J��G^�.���j��7��Cq�⛹���Yj޻�w�3�F^�3q�R�`o�\]��V�ؕ����2���,+f���pβ���{����\f��S0,|��#v�cYJ�^r9r�� Q�+�w	���(G[�'��x?�_
�	�W�0�^,��"�8B1�e$���9G`@e� @ À��a�T`o�L�xls�ws:Ͳ֣�S>���;D
�ew�u�g�<G��L��d
0�Kq�3���f�ύk��0�gy� @N�<w�=P�a<B^8"��
�� ��g'�l�����(��K��pY(+Κ�� ������.�r��ϲ�)��'��ꘆ�Z�|ڢ[p$ơ�!m2O�g-�괩���I1�0@�I
5|G�F^���;��~>~��@�޻}��l�������{ߒȠ�@Xo`F$B�xړ��GYƆ1E�S�>"!���5��}���V��|���ט�_�=:	'�?�����{�Y�"�m�E6�?��8�=�g��E36����vi�Ed�SGY�6�%�H�gqE�yM�����(DB���G��������޻1^y\�/��D-+��P��s8$�_�n���)]0x�X��&���wU�G�>�g��I��,�*W�����A�4��z���f���L�_�ajo�����Hު�bho+�rr�tLjJ�|i�D�d�蜊��94);�MMޔ�*̿Jnk��Ѥ��]�&/��F%r�wKr��OJ6�e�9A�V�X�1�Y���h�i����I�<�Z�#43�4�?��C�_)���`_~�է�i�^8�4��A-5�M�~Yi�3���y<�:��ӫ�����-��:|�7Ӡ��
����}��	J����7�kćovI���q�ʷ��Y3���~y��B�a�:����X#��a��Q,#;�<:n�m@0H��o:4�#`�I���/�A#-�X�&���Y�zf<@�"���LUj�b�xgB��_��L�8��Ѽ�P�
<L�$�NEi����kynl����&�i]F�@;Svk��L
��X�<��
��aYs��+p]%gGi[%�>ɒ=s$�x���h$�4�D��	(������ɞH��yb��ƒ�Ea��PA��!��N��o5Ԅf6?3%ڳ��E�Glֽx"�(4��>r��~E}���?����D���g8���wߥ�oQ�vr�Ƞ�0�ɬSp"f�W�š���f��Ca�ϳwʁ�[���~P�/����jT#����'�'_����A�[U��V��a�8����`�˸�ޘP�*̌a�L�1U���u��؋<Q~��"e�U�_����ӑ��+[:�T	us���*|J`Ȉ@s��D޳m\�D��)Q�g�FkD�/gKp܇�9���R��g�`�M�#����'jp뙪!�2GA�:{\�h2������,|�=��n�,��~��wz�>��lt����}�!���<vSV���l"�(-��6�3�"��:V�gx��~��!�_#�TD.�x@<Y�gg����|��Br��h8s;f=+Qx�b�(�b�uད
�0����9����$����$�܁�����U�5�i�f�'�)�4����d�IL�����c$C�!���k�d�Ռ��i$y�3^��1��}ۿ;u�w��ץ0���%��}!�ns��U�v��|��^am
�;!�6�4��I%rxR�|���6�"��WIrotsc�M�N�&�صÖ�70<�$�Z^9R���;�燤�y�C$�n1=H�7�Ҭ�G�ЗN�cH�$�`V层���X���rѦ���|���h��_��I�W%�v���D���{j�d�\�`2E(�CGɗw	/�����CP�y?O��np���&umеRkT4e�(����%�y�5�v\L���O9K�����CPk#��ƺ��t	52Z�J"�յ�I��b��ow@�t�v�9��<�a,O3/s�L#7 ���?b�*8e!�<�g�0_f��AV>�\���0T�P�3�n�֐c���r8�,�0Ss�v	GA���yk�X��pW!�[�}�B�t���gqt`�����Tx��c
!�uI�����;����aqYa��Y��<�V�������G�8�#��޼�����	O�1�Z�F��G���>;��q+0��*�$���*�y��c�
S$���`p��fA�8'�X��^)b��[>�{�/���#��	0ދ�߭���jN��6	1���@��o�~!:���{�C�=��|M/ܻG��~�~���=w/���k�n�k(�g�'����z�6 Y8�ճ0��� �ɾ/�(P
�^+�#"$��x>͸ y�������:�<���8�g�D��>�1��M�� �KZu'��_��S�4�M�
qȥb{�La��A()�<h�u�6�Q���jQM	�v�C*��z#u~�{j��*TG�p��.�5��a�2r�rO�u����ٴ~!�#�P�R��UZ�D��X��l��@�
#��:����;���>��d��*����u�h�d�Oc:e�;h[+;=@T	�wm��R���z�R��su���8W�餚*�wU���)�\ߠ�(躬�P�
��C���+�O׮а�[S���y(���<'����.'�T�t<�e�1�w��_����]�%�C*�&`z��Cֿ'ke�˭�QNn.��a�N�Oj`C~#�å����k�pi��&\�r�{�?��Ԩa�8�hKm����pa'���{��Xr\r��;_`�\T�
c+h�+,��aƎ�.�×�DQ�8��^JH*&$
ӈ8l�$<��1�E��i��2i���A0��S�r7��3U8��36�ؽ-�#a�}]J���9/�M������3��Ďq�b�ZN�~<ŘM��D�,G�blmT�9�
aK�޿��O0=G�#�����n6s[,cjF�*�0,X,PO����������}�p(�� ���^oY�앧b����J�k��,TL��A��7��o}��t��-��7'��
��`�=�[Ϲ-�%�!D5Xx8߫!�B��N"Tz�c% o�Px@��7`�{ҿ3��R(̀E�p�@68	'b�����4,7�TYE�a�V0���U	�*������1�]RC`"^w���2�2��U����h�����S2bW�o��QtM�����)m10c�2�Sm��E�q˃�G��'5��c��"�j���
N�b�wi�����@h�-�y��%��"��Ć��!���ر�/�x�^��G]��}F
���s��!��oVw���9{��ŴDlj�{#��?e�EMf�oN���UD9d6|!c�|����j��7i4�^uS��X�M��C]G�'B�E��&V�.�g�T�i\�[�4_��M!t:UjЍ�꺐��(9��}`e����d�k���c��%�<�:QP�M>��?�E�4(>P�qa����x�)�&�9�K]|,���*�#�~�_��+D�>��r]p�L�����UY��K����f�j{`ב�-�b'���i�nC����}��s�7ûvD�	���0��
�cm-w��Ȍ��Ǎ��\�Z�4����Z��e�t8ڃ$ڈ��(�����hSOn~��ԃ�x�،h�o���EA�Fԭ�
<�8H�/-!���h�W@]��P�����7�����'U� 
�(V�
���@m"�$b̒(�m�T�\.ֵ~U��U�x<�̓8�7��Y.h]ͅ#NeL�*�B2ڨ��M�;�lR�)�*�7Q�3`v����5�l\��""`�\A�:v�wD�o�bZx�ɣ�@�,�A"s>~�$ױ�(o�㐃�R�}�,��93M����.�P��P�*�q�����bt�s7�a��X>�Hv�7�܋��8.����1�dㅴ�Uj�Ts�]D�n�zS�/�J�3J��QVȟ�?9� GGRC����
�Y�n�쨷�4��EO!��6�����z�8}�Ƙu�
a�0�!+�EW#�1:�ѵ�� �j�N�O�.*jBT�IT�&'Q���(�����;e�hY��������1x�ӟf#�Z��}>��G@�yʼn�s��s�]�e��"�%�rc���>��D�u��E�bqd8�̇�w�˘��k{
<UAQj�N���1]�!\�;��'�� ��l3z�H��|t(��������^F����1�.��r����sj����#B'eV��s짼��ױTVd>�<��)����xCOMU?�a"
�5���A�5^д�:>���?�<����;7��ϣ�K#'�P��U<�N��馵�o1���T��[
������ڮ�V� \e��	��Hw%�*"�w��n��>�4E�/�S���\y��|���,��߰��榩y	;N�͢�-T����T^�ڀYX$������K\^�Z��`��dI�Qފ�!(Œ��6�~��(0vx�G1�jh�F�nɌ����ߺa�ߖ�ð�`�0c�k�r.j���epG����I�a��;x��`��W_��E+��)Iج-^K�$/Fbb�ɥכT	},JIU&�!��$�|U@��(ĆZ�2��Z����U�
�q�Y=����]%0X����)�K2��Z��ђd�R%K���Cc�1�.��ł]�Q`�?����������~�C�S��-�k	�l��)���Bx��|2�Z4���H��2�ژ/�'�۽��W:��*��`Q������$s��\�@���}�cނ`����'��{������8��J��F��KU����A
�-����H`!�ah9��Z-UjQb%\�[	}�
�j��(Q���&�P�1	�	��$��#۬,,LB�Ė���7��+�Xnt�����?i��/����v*'�n���%G���ߦ�,̆	�z��v��x�.��'�'�DDe�������<BN�\*��x�kt����3���FI�N�����n)�tv2v�U��߃���rPe�
}�����m�|�;>����lx@R�W�ޢ��_�% �ǘ�y������#?+x��{���f�f���+��
Q}1ZG�[^�k$�/�
���#;���:Y#Y���HD|!�p�� ��vɜVCo쪒���a��H�����+?��mo�=R�ߩzj�)�}��)M�ꋡB 4�ؑdOV7�7�IW�i���|�F8�3����*򸞭�!�oF�ϋ�0u>�$��k|��O��C�#~���vD���m���o?������]�	d�����j4ƌ�M0�A���T�i{C	tlA��7>p���c���n�lH�z���0��MN6G?)m)[d���D�_!�6#-��z��&�[���;�����v^�1a����~�Eo<~aj}��^����9�[2`W��E�zM\o������~e�N{���O��y��.�#fD�<0��K83)�3(ߡ�zqH��դ�NV0Z ���{�����L� �B~���|���e�Uϑ��xF��'�+�9"�ż������C�P�I�
�W#˜�۠A&��g�$�����fB4�+����\��$��s92�(�ˆ�Gt �0�"�WnU�K��}��T�Hr�>~�yG��;��w��ݽ�:��Ad;�ꈃ의���f���c��ա9�bPc�(��t_�|��B乃�"��EcƐ��$��>΋��Q�l�0�NM`hB�vӓ���%5�5���7o�+��L/�p�nݼƿ��5�ַ�E�f=>���g����
��<0e��Q���F�ub��)�����y��g��絩��� v�H�Њ��:
�ƵC3���ľ�Y��>-�d�W�et�K���>�
��?W�ӱ1��=��ͷ�TDž�5���|��:���髬�@������:{����۷�`�F�p2��oxv�2�����\ʼr_���T��*F4�%�OR���d��}��h�m��T�7�U����uv�5��3�<�����P�����>����E�Z�-�.DZ�������K�h�I�:�;m�s�H}hk)�	�w�݅�w
uuIc�# ��s�:*���M����$rFqV3�?*���-e-��Z��x�G��8[u�Zk{T��)s=,�����f��`�"=LGo�N��d�|�$3t���8��D(|lŖ�� |���W�6���x@u�|�9<�]�+Կ�Fr�F�AFDc�:��0H+���u����OX��g���)�R]�[��3�k&�lț,�
"�R�x�D���+A3�� 8�5���%Sś"fp�7f䰂��6�"Z�c�&�0�~��Z�x(��]�-�QN[Rw�c�ڬ+�$��c@��(I�5uT�
� ��"_�O��x,�1�z�8�~s#�$�6�)U#J��	Ƌ�Bx����"����F#
�d��Ȇ��zm�b���R<���B�ځ����Id/�z��!\;��^{��	7oѝ[7��^㨏�|_o�ɹއO���{����ܹ@BDal�7����P��q;�T�z��P�fj�d��I��l�X��ـ1຃( 9<�����}~v.F?�F���չ&���fUMj)�^FJLJ���R	Æ`Ѷr \Q�}CĮkwl�����}�J���;�~'jp�����1}�Rsl�j9�U�,�R��)��`K��'eVT�m�+OYG�y�G�����}!L�;�.=d뜫GǦ=���JU��GE����{�w��/�B/4�_1F5��h��N#
��&G�LsC���a3�Q�k>|�kv���,�߳�!F�a2
<<ܧ����D�O���3�c�ŭ�����L1Z%�~�����5��'Q�p�ƍ��C�G�ݡ����<�s���5^�tla�X!�0h���>|�@��0*@�W8c�gڙ���&C%N������6(q2t�}Js����J����$���+_G��^�J�=�Dq�R��$�
�#�Ci�j޽qISފa[ �Q�o���7��	=`����ri1سk?�"hS���k\+�:x鳡
��6��"��ܒ�����Jj�T(�{J+J�"��a��
+R纴yL'�����*6����N�F�D�'�>L�tl�w��vV���}��v��������T�8�[����I���F��Jl�*��t��(S�����機g	�P�.E�X���k�?���:`	Yb�*�PT�ld�_Q�+d���@tv�H��� ��"��+��	
�2�� 0EQ�y�'�Hxniz�
�,׭�nֵ�C���?PfK�,�#fl�%2�u���	Ƥm2�T4���Ӫ�(�5"�`�A.����O%:�(�)Ll����C899�S�!䶞�p�?$b����}��`��A�AK�z�,/"7��,q�M��,�9�Wf�x�b�9K��@�!b�>s�v�[�^A�%�F1%�'9xx53�X���S[v�Ν�_@_���%��Cz�x�W�lyA��<O=��<���Y:
N'lʖ�3�G�����6[��[0ÁO.�m�bX@d���lc;v|CY(����Cu��5#��J�
bm�����+�

*�_Eg#!ս،*�3Hι��^�i{�x�m��ީ�R{mq*+�܈_1���3W��=�;���?M�C߽�����C˟N��Z�X�K�h�6�Fm͊�j�u��qI�U�4ـQ�&�`��y/+���S���&7�nTY�FA2D��2�A�s���2�b6��Uנ:�2�eD���;$7��c^��=Lz���7�~e�q [w՘1u��V���d��s�X�r��#�[Z
5z�f�(_`+@t����y ����o�v�ߖσ���w�>�ãi��Bo�fI�h��xc��m��}���oI��&o��Z�����6�����W_e뒇4��9OSbc�G���f�*!�=x�J��(���T����B��^��+���sQs_8ب�W�$ʖPV�bs���@#F̐����g�$S%<��X`8M�f�F��.K�>g1F�!�Tq���MN
���؂�����	t�
�v�:o,�6σ0|,���� Bta�;��5��7�YT�*^]�0��c^��d�����|������o0㳹�C?$�+��s�����:_���_~�/�E�e&b{#!
%������|�_�u���s��s���R��w\GH�����{���7�Wio?3gՐЯy��oxe#jĘzDf�,Ì�L�̣���lVt��+<������-�v�^$�9H���@I������IN��!�:�@�6	�� V�0�Թ�zy�-���F�p�L��Q�q��4�Ū�$��\�-�4���ɬ���uz�[�M�~�0��4\)9;C��ekr�j�z_�����fC[_��z�oS9X�/E�jc����,XiT�qW�0w�r8�J5�2��EPYeZs�����E��ܢ�n]�C�#'�\��2�׀�:͆�ǧy��ݗ�����h�әx� �|�h�S:�}��q�I(%8if�˜�~_F)���xc�I>�g�����,A�$eL!)�Ycy�k\{*��Q��!�~D1X�U[cDu�s�'{
�\�[%g5h�uRzQ��R2�n��t1����9nb���s��'k�aW�m�d�{z����P�[��=�U�8�'��Pa�)�Q��~G�nM�i����t�#�r�f�g[�A��uq	�+#��ՅK��sף<��M�t72��T�-�kg�~)�u�3A��iR�S|E���3�M8�)���L�mV����!Ɗu�<AzQL&Ⱥ��^�H�Sc�ms�&��k̀7#"j�YBsn��]��q��$�u��ڀT�1��Óc�,�$�g���@"�'l?�)��k-_d�%r�W�X"-�O�,ԓeQ�c�T���UPDB}�4T�Tl��A��z~�8� �'͓i�F"B�%�8̼�!�bX׳2��;�Lj@_�3
��3�$�H|�	�3O���m���҈�%�Q[b�e
�Yγ����1p.I7��y!M�G�2�H��%��%k����|#��A�l2���wL�XϜW2I^3�4�t,���a�kd�I�;"^?d�=����%6� ��0˽;J���=7���%;dXC@m�	:==&�u�	�0wsm�G�Z�f��nEN�r ��
�!y�ܝ�DtߛI|C�F�"�%�J�{��N֙��)�\f��E�͛7Dd]  ,T�r~��Ã#��,7��3F��H�g�k�s���,'�	�йy��4��u04�yҳ��A��2}�����М�IX-�8q4�\s�"�R(91��<
���\�Q��y���g�;�K��ퟤω[{$빔76��0>�G�����~Y��a͡��'Ձ�s�NkEaR��V�����Ao ��@��Qy������<;T��y��;H�[�]�z�=C�d5��R�ߢ�h�)t2Qc�VI?
�\�V������^�-��j]���uPi�k�
��hf��?FSs�x��4dT'�|��s�׵
��I6���P��˩�#�iY4�j����z��k�u��s���7��M������*���M�.�,i�>�����M���ry�V���
����z�vbX���S$4�þ"�q!y�����n��Q~�wwP�7a)��IH�s�AH���Ё��<0��A€���
9�qo��F�	]�aZ���rl�Ǝ���dDҼ�-���$�^��	�`���H!bb��k�������*J���D%i4�O��KR��B	9J!c:��<)� �FAԌ3�pP
�Mi�g�'hȳ}0����^5�@Bp�B����̓�#2�O3l.trMe��df�Q�7P5��qC�%����(� #���Q�%\;SC�]�s�	�T1kLu51wy�zU��cȆA�m4� 35o��&
��!�+���~�C�s����o��u�җ�"�jf���&ݼv���\��qVHz�������[�ff,ϳ�q����g'��3s
|�ܦ�h���_3I���o�(M`|6V������4�s�| ��)���F8�'�/�F�q�21�fk(=W�ڏ��pW�c�[���zs��Jh=J�(�Qh�J��3�t�p�:�lJ�<M���q�j}i�ӌG�-’���;ٸ%$��\c�*��v�0�΃�/�6�Pb�5Z����>i[���Q�W�ż���w�6*X*QR
�Q8˶Վ��}�୸�d�W���!��p1�ʇ�Y����µ����e�9�!ÆG��+V�Tm8�Oݾ}�n�<�=�jd0�B�~�Hx�M������A�p�\~�4"�׈�����ëQ�g1��,�R������I�@5��D]Ē0�f\l��+��ؔ�N�g�N��s�z��p�p2O�3��.�BBTǃq.	� 4�:����l\w�^��%������'�
�#�������
��
*z��=!\��}��#��*�.�?��d�1�g��$ʜ��ڏ�q�O��j}��3=���Q�QjW-��~v�_�4�c���:�=S
ʪ�*���o��w��B�RԏS�0O�W��HJ�۷����Gt0x(�'�N"���u�ǟ���Ob��?#�3]V�w���7_b򟏟{�*��
�l��h�����J3��KR0v������W&������A�?tМ��^�YY��$/��ɲ�(QZB^S���RL?��t��z�~�s��6�D��PPz�)���#���Ap��l<1�r2����$+�?�7�/t��G�L�~LA�����I��+V���ІN�'��9=���*]���������DՏ?��}Pbo�s>�#����톱fذ���0l�I	2���Oӣ,G!�9�Ї=�o��Kr("�y�QHc�^S��.�Xd�@���+��8���G��U��&��
�2�uʿ�o]o�����������i��Y �>��#z��G̏a�K:�Dc���t��Q^?{t���ΞH�p@�Y�Eǹ�G�w���}{�p|�I���(�F5NP�D2��dc�y^���ѵ�� vF-3Z0M3tu����T�u�� s���F�ì?�[�X86l-�
u�~΋���Jޖ^�4�=�c�*-x�XO�1��k���&1���圳28=
�qUb��V��'U��g"X��)�+O���!ѧ���jHnY%'Y5Uy	ê�Wy�1Uq8�5ڌ��i�Mtk��z��fB��E�(�/��{�7K2d\UpU�Oj{+�}{C[w�B��d2�V��V�3@#a��.��1H��:Q�ў�m�t���d�	��q~�L�l�K����Vx���`B���?L`b#�u��Cr>5U6��Q�dc��̏W�?��+T蒖�߈���>i9
t��=�%0�߅̚- �
�;9+���14�Ž[p�堮BR�{gP�5v�7�q�M�L-M"�a�I��[.		�1+�iKh���'���Ζ#�֢;p/��W_u�h��L��x�Y��� g��	�FV�#1�*�m�1~(���ޞ���h%�9,��D��F_@�ˎ�y*�tc3���nF�SbX��܏��u�1���f��b(��dl��	�[!�5B^<������xh&�F
2��4rE�4��:%aP�˜�m�E�X2���'I�GM�CL�9��OZc|�/3����1�h��W�҂J��x�)�=��?x���
��7_�����cz.3����>��3��������կ}��ɏ��7ߦ/�+��G��o~���>z����~��~�=a���3�v�:���~�~�ы�~9_�g�5�����m��+��O~�z���s_�������������!��������G����I7o�b�����Cʇ�޿��-z=or��{��g���}��׿N��~�>x�]�~���#aő,�y�({'x�jrt���~���(����K�P)���Qw�_��������#�l/nX{W�1N�+u��J�3�)5����Y�05��)�?T&���tB��z�V��b�I�H��ޚ���^�諟�f�^��:��a�LY�p|��G����0eq��-�y�:=|�U�l��=v����x��B�*�PD�#�fo����}�o����潢�l�!Yt0"4Ǿ��0LIԡ)z�b�����*P~��kTn9�qea��1Hؼ����??L�e�	8G��%F��*���W��(��E�'�s�_U�,&����49��w�e�K��%�����ĩ�%8A����2��+cϬ���*(Va�*ч�qv���q!���N��14_�K��X��赵��}���e����W�cA�X�9E�y��:UP�]���=�@Щ�B�.�9�>)�E�e��CA�_[y���^
�KhP<([�fdg�`1��s�ݸ���8�x�d���M��#�8��9N�n��Q�d�Xf��)��O}��y^�C�-��`Hӕ;ծ��5t�<��`��3^�n(���(-�����wX&	T����s��(^��gEM0-9=:6��
Lj���8mRV��g#�V��Y":~����W^�$r���c�NR�q�$��He���߿n.��m]f�5�(6�,ȶ�a�% /
c3t˻���Gu�$��+�aE�	�
D��Q#3{u�H>��1p:9�<vР
0Bm�!T=�F�!n0�8+�E
��Hᗇ"7CƆCf�]�;��$8n����핈��P!J����Pb>�ʔ���UiW���:�ѫo������&y>�{��,(0�kv��,���'�؈p@�͊
;�9}�3}�[��}�����:�_��� /�gb��v�flZc��X��oN�6gcÂ��ʬ]��7�\�
����܏�E�<����;)��7*s;�D���uX�9���+�
�)�o+�9
�%��/&!T��VF
#�qķ*_b2�*�h�cT**��Դ�?3�S�AzY��1����]����p���aH#��q^>e�f4j�����n�[�x�q��v�t��É��Eo�$�&�lO��e�����_��,�:���=��A�aA$)��Pz�>ԓE�k}�S�f�"U�����h4>��t�]�&#�=
�~"����̀�5�#i�����S���`/@����ݡ��	GzX`F�Ш��#�)�3��Y�r�m�ɢ8p��x8++�Bq�2���0n����c�˳����o�*�a
�N�r�Y�1H5�6���ƀ�3I�mF�a�U�g���P�a�>���ib�b���Q����`�Q�0J�jTCE�5��)Bs�g�Ez�!A�*��>$�z��	���K,f�9ZBV=�l|M���<S	q�+�Sd�c��?
�-�Ƞp_� a�!DUG��f�Z�0�-x����R"J$�'
ճ˜x��F�l
saJx��Q�}R�3.�8��ff��4+����;�Me����]�ir��
���s���
���~�^x�y��֛t��!��ʧ�7B��{�^�ԋ�f6�����=�tV�_���7��+t�
&�'H���=��}��؜������:��ߓ��'�Pq�<�4D���;�?�7�6}&]��RƯ���3���p��?�z�������Wߧ��(���ѿ��Jׯ���#:�L(��0]&<�kl�3���_?��Wffk����]^��e�yN#����Z���>��c%j�O��w��U��V]���zS֎�MTLc
�֖^��o��f44�V�����t��$�A6�/�`<���|���!j�k=�3��<�X����*�K�Ƶkt����>�1��l�=6��;��pn(�Am�𘜱����fOF(���ec5h�QX�7�@�_��AnR8"e�ne&Q���2@�潹�~�d&*�'�A4�J׍�T�V��йsk��@b쐌��y���%�D�&S��D�B��?��ڨ"P�X(�^��{���G�e)�.�P���1jo��/��������v�L�z24�W�K�>j�I���*�9�L��/����H��Otw<�~��6��+�*���O�	�>�F����o����R�x^Q�\T��3�Fr
6��uq!~?/e�E�:Z�ϱ���|:~���{rN��S��*
2'�!�%����g�ĎA��x
���5^·���uO���<��_��"��G[=�e�'z���aoq�7�3��j��+5�yP�{Gr��9i9���%�U3��}�eE8����
�O(��@�5I8�ڻ?���x&2T�^e_��},gu3��_r�yݣ��
+Dd�����-���������H�M�]D����<6ײr�p���9K�Y�nC���$k�-�W��-�2�~3���_6$$�	^A����r�:�}��D��q�\�$�f�/-�G��tX��,���IpT����T�x�����΀<O��Pb��� �k̠b��y�7�x�~��Y.|��G�u���Bg�'�>>��}z����7:=}�mE�Onm�;��5�������3��,�?�p�xD#�>s$F^sXwpjeXfS�+���(����C��,ismi�����v]7� [�U��V<dyA�p�l�lߍ�&ՈNC�k�y@|��
>J~�S�r���g�1b������dr&�Ct	TeV�!�ɄT4����m�'���c�N�׆z�6�d+g�h�<���ak,�g���1$���V?�c�ym�������ˌ��bK��\��lrc�φ���MMF�kD��}"�^�)��o�ak�O���5#.:��,3UY��z#�|s}�xL�Ȕe��R++K��\Y��
k��5��t�ʔ��3M��-���a��[.
f@ ��FJ�g��!@Y�+�!��`��ͦ[lf�����Z�f��`{�,_�\����|���B�VK`΍�(�����a0V��W_
6�	s�a��A���Qi��TsŠ�ЗUF�����DA�
�D�H���";29քԜH����	1OV����������&����^�fV_�${�%�AE�"�C%�C��s��2�{Ш0hH4�̑�Kq*9��F�'<`�W�6IE
���y"���S%[��P�uZl��,���^��%�TQ����q���(�aI�X�5T�a�`ȅI8�.��)�i�/�y$L�x[N�SUN`-E}��w��9W���;���׸�S�ş�����˯d��c�s�9	'�m�q6d���t�h��}���`�ׇ��Я����ߏ魷ߡ_��ש�����?�����Gt��]�ӷ��^�F���ߣ���p�����,=������/}�۴Y���Cz�ӟf/·=�޻O_��7�wߣ���c/3D�@a��]$W��7�k��u�яD7oߥ[���`��?�����y��a�>b/����E�T�J;N���1cl:����}i�TI�%%=�W���O���8J���*�O�<��%M�1旒;6ET�ݶW�3|�6^F���V���8j�vMr}�����r8�v�=ɞ�c&�.�cLl9��mm+&״�_�	�:$�\����Y���W^ʂ߆�r0���ِ���y6\�ѓl���<A󬔂1ps��;�y���:��Y�1���tƚ�
�ON�-�L��P `_
ĐSq5�Bƀi�:n$��"2P6�Q���D{HBή��u/0
1���eDic��BO�1����,��{����`���)]�����@��D�h>�hy?�2M@dG:_s���%�e�m""RjXP6�P���F�s-�q.�B����߲��R��q���Zh�����C�8�F-��1�&��T3�]q�BK��ƾ2%����+�+R=�Bh��:~�.e�jP�+���`p���.QrM��'�v��Ka��vs�M�U�e���T=�
K�!VQԞ	�<ϏG��"*3�$�����G��=�]hO���E�t���*O���߹�s/��2���<>�u	čn1N���<�y'�ͼ��������n��>;�a�t����8e Gh�VLS(0U���@���D�0İ�P1��wZ<�ϑ�O
#�
���*~�:�E���=��($����6��d�.�<�C��(_�ٵF�@I^�*I��~�c��Q0�7
!���,�‰�tm�Z\���s ��X��D�j���?�x\���!uQ�>j��Ȝ�N�Tv��p]00��8���l��0l)��G�l�x�p�$�v.*��iü�'K(n]k�JQ�+����@���㍟��>|�=�w�.���K�^�i6t���.��q�y��,��ۻ�\���|�:_w���V`��Xj�J��k�#`�v��9Z�FU�oG8x�������kĈ7��v2srXѰ�r��R7�w*�v�p6�>'��{e�LG��<D�NJ��}�'Y���3��5�o%��Lf��x�P��7��^_�T��!L3RE(��Bp4�g{^�D!lU�ȉ*z��^���o���U��+�6��;�cZ�&������eS��fX���=���j�����ϗ<ih��08)}��B�"�G��3(���\�e?4%��uXZ�눓sam��c��J��{�� ���?�7����?�	��L�J5Ί?箙l�]k��}]�����X���6���lx^�/�e��c1�V�f�)€1
���oo��2�f������a+ѡy<���o�)�U0#G6|�5	�4�޶
�f��;���0x�0�E��
Z#p��k4�i��g0Z��Bt�C��b��T��Z6 �7�B8�Z�l�F�V�̖�ll�H�\�� �u�z��x�y���
>8�Z�3�w�:���:'4���k�Gtrz�
+c�.M�kX��7Y9�"
�*s�p�]�b_��X�gٶ,M�<�+�#p8� ��ژ	W&Ҡ��cBX
�C�$X���*�`F�x4I��T�	]��
�o�s#"-	�f����]�x���!F1$�cX���⤲�)�D\е��1��?�>��~��~��z��A	�_�uz��t�
z/_�<�I�<�!3�{�n�;�?�{���Y6�p�#��l��Ɍ�s�z���2�u�#�ʯ��l<y�=_�d���y}/��n�G�x��==y����lA��ݽ�B><g�h����y,��˓��-�t���}�S�n6��6��.g���A�ҶasTRba�=��P�~����f���<&�_�b���r5��$`i�}_p�%�np��0�w�F��\�I#&�)��j��h�6+@#�0�)�����5�� ��k������$���/�a�&³1C6��
�*KI0Y�6۰�x��A~������*����*=��$�i�7���-�𲻞�!���n��v��kt�H�5w�i@rN"4@�8���s���Ć�L��F!�#l�P��8�$t͢��PC�c�E�b�/E艼�
j�F����8Z@D�̪!?���z����\���b�w໙hF�RA��BZIh�<���a97[��~��Ɉ=#���#�hR�f*N��l0J�H�r)yk�>@N��>_�7K��D+8W)��X��@�P�Pc
p��X�X�u\��ro��￱�j�&���t��췛05���)��%�\nK�K1<I+UA/A12NSM�QY6E����'�t۳q��v��n!�wWa��P��jPK�^LaJT�ò��3��i	^lDPoxr�HT"=;R+I��9bHn���m�ǁ���k��ӎ./�`T�vF�����nԏ�.c�}���^ւ���N���d&2�E��%y��tp[�7������&�wz��m��Oj(~F�I�ӷ��(�*<�Dgo`��%B~�"���!��-"�?�N���6N~��(�O��Y�Qߘ-�m��D3�߀�)�s[���$���3o�����O�� V�N�$���J$�%I���p�@'�	;��k���\	���\�ȹ�]�ێ�԰ �QPX�TQG�@E�cT�e�N��8�T7P3"c�S(�������>��@�bt����;��bÂ� [��{�;Ɇ'�H6^�*�m�n�$�a�H��l�59{���Kԇ '��^gY��>T��Q"�\pppD?�(r`��Q �@o����םp?�2i�c���|�[o�gcð�O��G��#
Zo�*� ��,�c�l/D�5����F��v�%��<���nG��2Wi�f�R�3L�C��:�A�ޓ�&�!TgRO���oSi�]2l4hԞY�U�f�1�2���mR��JF\M��1�5��O-e��6ٯ�����&�D����E�R��p[���:O����	���6�!�A��h4-�KT������@�Do�<���/Mrm������ۯs��4ni"/~�ׂ=��j� ��S�q�ٙD�TT}'�]�T���w�nK��
�q|d�+Op�%�7���s���?.X��@��[����+�3�}�i��6��p�Er&���1Ћ��_�?�����l\��B����Ҫ@Y)�'�#�eu��}�����[1��=�%���*�����;`�V�8g�V�`����(^�!#ی�
� �HdnpK�XsY��\C}�s~��*ٕ�=��C4��`�8-�xm�=a�t%4�Dv�.(I�6�<6ꝯA?�]�<ڒc�*���ђ�	v���"��,3��de�Q��s�@�1�'����UY?��c��Ǡ��>�;i�o6v1>��s:&Jg٨cشn�2�\���v��@n�@3��ͦ�/'�������4R����(U���"_�b�8�D��m蹯ȱ�}�W�A7���a�����a6h-��_�_��/~����/9cnܾ+k9���f|}+N9��׬N����{S�����S���� �|˳��C`YdA5�"@|�3��qHv6�̳�spx(�^y�n�y�����R$5�Jn?�ދ�b�%��8������<��~�C�2tS�
����J*��c�����_T�*��?�)A���k���&�T7b]�#���}�5X�ɿ�Î�Ln�z_���o��R�
6&g7��&��S1����ཛY`��P��k�S/ݣ[7�@O9�Hx���C�O�ٚRVT���M� ;��<�k��d�>|�=Y} �}쭠�{t��
N��������9k'��_�"��R�rk�CR'_���]+��FUN�G^4�(o6{���X�W2J�Y�Mb(�2%�83tꩉ���
A�M�:YQ�I8Mᫀ9�Α\9�gð�9=�����(]Sݔǩ�S��P�|�`<�g��a�va����3�ޛo�����qђ����=�ɘT�awUp&��m��s��K��z^ẝԯpAe�?FiXիҞi0_�oy��o}oSJu�u�ul�w�'CɽC� !�*�{<S��Q;�U�v3~���q�>s5	�L]��;�X�7��{G�fm�A����|!�:,w+n�w��v|�����J�~�t?��m�r]y��s�w9=?ˊ�
��(66-\��Bx5�x;��{v�%�E)U�N`пcL�1{=έֽ��i	?�8c��ax?A?;q��^[�h�	�Š�&;8�#m
���]�����?�z��@q��-8�n���X#†^!�,Q,�
p>[�<�؁D�/���t��c�*+��"��f86k�J���ˑ+bЉݜ=��'8�UP���0\�A!��l�u.��,���vw6S�d�<F0J����=U(I�7��b�p]�+!���
�r%�HU�`�0�`�
��r�P�)��Cq�98��V]B�uc^�I�-zD���d6�H�{
�
�K���<~�01�D&�c'@��A�=�{�]�\�C�y�\[\�=���3ϻ��l� B>��,��	��.��ڵ�������~�
'���:�5p�#*�m�R�NF�g��Ƴ{���Q�N::��wTͱ�\u{��G�6w��-�?)�[���qF1rU�pm�ť�5�V�ރ}�;Ջ�&����B���\��$&b���&34�'Qlx[��l��U��\\s,T�/���*���<��&�Y�<�6��V.�r��_ϑ��krN&W����Gr��i�m�a�=U��v�6��V�7�+T��UA���Ϋ�a	�HS�Rd/O�C��,�|�)�!��U�K�+ʄ����MȦ���P(�llL��7ĚЌsr�\.j��&)�
y��(<��>7rM��m-ǟ���o�ɱa��12`\���Ͷl��=k|���wt�o�C�8��ձ��75FPV�[?����:`���h�\��F���I�.��Ф%d���&\��e#Gp9<��6�4��4��B1�3~k#�7{	�Q�����I�A�D�;���oxM�8?Dbo�1�����l(/.���k�}���؂5z�c�$�(q��)�C*�R�����ƨ�CðRaX���-<|y|J�%g7��J5�4���.G�ab�擼c.�%]���8��W��.pU�0�<��J�?1��b�1:�Z��	�٠���$�K�<.
�3u�0�],���&�qƌZ�0��EfԾ���A7n�`b����O�q�C��x#��ܳ'�x8-������*���Y�K���Y�H
��2��n/+Dg�/�<��D� r�}3b�e��8�͛�P\��c5��]~O���j�ƒ����c�Dv�mx�x��.n�^?Ly�MQ��.�(sSx%OX�[r�	QaGb8�S�ߨ0�v���Re�F��߻=�Re���~���������;��a�E0��;8��W���@�↎�@�Bt����nf%�swnѢ���#�^s��n,�K��Y`~���d!s�����;YI!h�@$#rO�52O�͸�� �� 0�F��1P�!�ߜ�s��(��8�8��@��z�~�V�1���5
S�;���(��*2��9��΃
b=	t^J.���FLjJ�:��l�R��k1v��"	-��
�DR8��>)�:+W��l��9��)y��	]e݆-�y�p'�m�W�%L�X�~���z�D�zE��(�0����kSv�{�S,�����%�k�t%8I(���{(�����Je��0|�Xh��Iz�5���/���x��������A����n&��
̃nt�C�pVy&�B��������g��>B����81���p����"��P���G5�����Us��_'�v�'&㳩m�
WJ�z�r�Q�
oWD�H��%�M&���mU��h�� ���:�'gg�W�$Kr�`L��T"��w,c�x2�W�z����{��8�-=�T���A��3[�	#p�L;U�2H4�?T���Zo�� ��4w��G�Y�ae�z]�+x��NK�L�f#Me
���͓UsH�-���&�G�s_�8fy�_sۻ��R�z�I�9'cY�E�Ѷ�(9 ��*�#%�Ɏ�NS�;�ϡ�}h��/�Q>ˣ�5�5�]R#t}�r߁<�0Hsg�<�Q��Q��R2ǎ�̭�L?�h%�T�e�'�i-�G_�7��@}��/��4m_$*�p��y�!�᠇g�QbI���2�3�=w�u)e��f�'of9F��|��a�a��.˯��j̲�Ht�6���]���$H�A�hx����QD_P.�/NJ@^k@嘸�3��Ud[��D�u��9b�ah�v�t��8�>�n��<u7a�Lim�
�gH��H
f@���eV�iKn����w�h�H�
%|{ssr��5‡ݹ骩�WmW
D��H� �N~J�o��b����z�j�+�da�\���X��t�L���+��3���7�d�I����k�Ӽ�E\�����j��;����Wc������oS��Eװ���甈Z��0���V��ϾT:��xa�.Ɔ�]�O���N�c��Eu�k_�_��٨�+��^�*�����P)Ȣ�
!C6p�u��%#H+Nhb����l�@Fx�ߌ��o�5�Q���D��z)D���L�	Y�3y��9=4Z��\�@��<��sU�3�F��
��ҭ>?�8'�Z=f96�E+�P�1#��ɳ���Cd̩��wGM�0���ݙ�ulQ�ǘI�0��� �����b;z�mm�k��N�\�3�U"��d��,̮$d��o�����C���fE�⏚wq�b@`�T�(��4��W�� ��1fl�ْ��jK�wI�2X���Xivvz���&?c����*0��.�K��CڼgM�Q��\	�0�0�M>�wf���3�w�d��A���Pn_��� �R�,/r]I��I�	�n��I#��v�(I.*c\ %ΈG��#°eƻ�a�~�/�Œ$��f>f����	8J�anm��:U1��4�&ڧ�x��<��=)�Tr�^�ڻ��� �D������c�ǭ����QC�v��l�Te����t�ݹq�ߥ���ʘ���w�T����
G��'O���&��}����<����}V���A^���i"H�r�F6��.]����G;Q��/J�GND10�ԣZs�X�;V<��s�\���B{�D���A������FZ%����N��f��Uo)*s�\4�,���a��U�ԻUi�FxP]�d��9H�y�.Ϻ��n�W�T~T�o��溴��0�;�M>�|K�Y����;��jrH�u�Ӯ�$*�;����I<�al�غ�RI�둔�c�ap�8�����E"��||&|�<%�y�M�Mcj0Szn�I��5j�ԕR��5�l
���A�����s�X��%��Dg�gm]v��;�^Ȧ�A�sҽߩ�C��x%���n��*
�JuO�@;���v_T��Xg׎�n�.���\aN���d��\[8!��u�	�(��Y>��7[Ĝ�Ҕ�
BB���V"y>������S�����I<y�.��4X���5�����e�n��9:�E��7�*�z
��l��N �>蔊<[�>}��B�y	���(+�P98d�RB$���s�P8Y7 ��%�)���:��sT�^��IJ!���X`���}�e+D�@�|Ά��
�Ex_�L�9[d�5�Q��L�7�(�HV�:_߭:�I�BIt�{0��z�wq��Q�Z;9�4I~��cK[͐yS�GU��R��\�(*yD�}��`f���Ώ3�
J����}7�S(�y�������`o�����3�zH��}�^{���t$˦�0���3Y���s����guX%u����ƕ��u�jz�o�����a‰�&��5��M��K�φ�(u힊�14F��7��T��qߖ]�������I�U�{j��Zw�O65�����{���:u\��~�/S��R�����a�=U�h�}z#�<I�v�)9��\�k��?�k���8�l/��>�o�|8q�ʲ����9�Q;��0u��Z�S
S��k!�뷆��S�.��걶����s5�y���ƣm����k��6�{S����<i3��,]���ohjχ�mF%��
6N�6�w�O�϶ؾx�Uc��Yx����c��|��0�l�g;xݱ\��7gS
K��T>��A�5z8+��<����AT��Z�=p�";|�`�p�K3z�-0zX2��_~���T��@IԦ��g��E�_��U��0�)���@�����萕E��?��)3x�����R�v�^�f����A��L�#!�C���{������0de:�e��Jj�N���m�=qB��ȈN�i�`�6f
�Gk$`6�b��%�aÆ-���כUa)U�رaF�˲p�g�N�x��e�"�+�EXq%��cn�g�I�}�y�JB�5$��<1��qZ��&��˧2 \P��`	�6*��}N�N�ǠB�Zî�����1����qYvKf�!����x`�>�C���#D �:f��
<��H����q�e?c�	� C6Y1�lWڿԄ��Hpfa�5i;a2 4	�-r��t��7�*���ck�;A�j�~m�;|�����Du�:�BO7�<��M��I���I��j�(�F���^�h��g���1A�=�*��Ff����saG��AQ�;�V���kD�=�έ��z|�i�`��7���G�]�B~��}��^�} ����K䦚��a�>�0��DDR,���Y�?`��sh�8��
Ŵ�{��{�ў���{&{cm�`ߣ��,�gs5ø�S�@�������HI:��1�8���A��Eq��COʼs�)�3
P��9�Ud^��`��w��"��*W�01M��)9gX�|�������N|�K�M�S��g�H�`:�۱����-�]N.�������,�J���H/�?�w�Z���%�+к
����!7��S�4b)��Vg
�F�K*ù��"t��1����+�nݕ��]\=�#P�r�2��̓����׌�<Rxr�G���Y��0M̍��])b�"��0�U� ��h,p6�_�r�6,��c���"Pk�ѣ�e�9��W�t��JBOBq�R��X�f}�L.0�@���$s5\�ݗ'г^�¨4���Q*�߫�Z��"h#G�÷NHV^'ɩ�ߠ�pl�1�@�$���L�D#e8q8q���
F#�3c{� �k�����j}�1��~�N�$���V�?n�E�S;XG���M�邡�S(������D g����z��JCuܱq�L�=6�����i�JP�'N_N��%�֖N3���v�q@�<��S����}��A�
Q
,_/B�Q��M��-�#c���΢?</���*�q�5
�
-���p
�	f��hbَ޿�.�e�q�>����>��/�u�Ƌ'�O8�9�{�N�9��_�"�]y<�ܾͼ��ӝ�w)����y\�E߁��y7�
��m�(�����:�A%{��+�˚
md�.��E����z�F�7�UF
>�������o{K����4��g��Лd,�my�X� IJʊ����jmK�u�	9st�m,5�Ӻ&�D�ݺ]�M;�����3Ii��j�K��1*���r�ܟ�6%7�B��\�n�:�1ĭ��ѴTZ�c��Dc�FW۸��14�:SsO�����.�2~�O�vH���p����i��8�窼PunΈ�s�2��*Թ�������beh�3�h���ڲ������yg��y�'����c�Ĕ�b,SN���9~�T�(���TU���rz�-��A[Y�r�U�؁��ݡ�)s�0xde{��Ca��%/Ͽ���ѣ[Β%Hf�Osw�����eð=}Q�3QÁ�f�{?+����%{���=(f01"�B��|��b��B��)�'�@��)y1<���<I�#�B�;�ذ.��/�z�D����3O
�}���D@�gi>����4+��b����V(�͐`��Iκ_�D2B��3g��ذaA���]ҩ�N���'��?6�$	g5%��n��$�."�-�0�0TT��{�ćb0ó�s�'dE�`�e�Ag.��fȔDA^�^pҿ�V���l��M�8�����6�0����qsa�P��!U�����
��z����<�0���$j�~A�QF^�o��4G�p�iEA`@��3�y_f�WG��&����d\`0�:�ݩٚ�^MT���^Zv1�OS���0jFȅ�:�����*CFT��|`�y�=�|�wx1$�"��`aIӚ��24�>2���4�g��D�9�0�4.�q6�mp�Í�J��L0�g�9�<ڣ���C	{e��b�8�}f/ӧ>��g}��� ��,p>��|x��1l��8H8���c%'�+���u��c�:�,
���t���ë�p�)�1��1�\�`M��)���ʘGU,��Đy�� �r�<V��
�
�8�҇�H�H���(����$ ���a�8`g�\���ˠT�,M`�
��σ���&'(�Ŋؤ�^�E���(+��r>�+	���"�t��s�Oe��r�W�.��߿5�)Q��{���=U�瑴�]�����쪓ԕ�$��I��9캱^��E�mX�X�����P��蔏A����ߐ� J�X~��v�h���FZ����AR�,�rI��^N���&��P�T������!}�I�1U�k�W��R=�߁�ų|=6������/
{�u�:����q�w����a$�B8�k����X����U�($D,�L0�
O�g��J4X�m�c�뺙\I=�:I��'�Pkʋ��+���n�`�9u�b�'LL�WL��K<IN-��$��6n��<t5�`�f�,�,8�hغ�J���8�Iļ�^��Q����j 7��@����PJ�&ط$���SX��<F��
��ku`��8_.�S��s��fS�я��؏!��y�[t�\��Xx��DO.������gݨD��M��)S*�:���#�!�s�yF9�.C�N=Ͳ�{"�3LWQ��dMT���ʟE~7����,�uT�������Y���
M�ke�~�^���ݹs�^����~��l/sN����Çt��K��|��>����s����^,�j����e��H�
H�9�=��H�^i=P��fꚮ�eU���.����ie\g���0/�T�r���p�)}�GEq���ju��ɮ٥p�.&_?��y���Vٍ
}��'��>�j
�|=��+�/����ۗ�ߕǫ�.7��w����*_`<���G�+���<R����y-��
u�7����2�6������W��m�$J3
�Au�U�
��&���{ݣ��41��H�;"�tt�؜�ާ2d��5h+�*5�HE����Gկm��]�Ty8��1w�Nj�[��S�ھ2��5��xo���/�\��2�Б/
; ��|�;�������ƭHN�|�o��a�Y�x�聤���+Dx`���Ev�7#��2�!v�b/Q0����H��8.�NP,gDT"1Wb��/Qj/���I102��&��SQn�y�J�)ו�P]H��dj�+�s����I��⡲!a"�n|��m��F�<��`a�}�+1B����a�ճ�ƈY�0V� R��Ӡ�JlB9�5�H)��(�uJ�u_#p�l��A��+��I���Wj�J�O	��͕�+�-|��I!!Q��"��@%�ޘ�L���8���$Rx��dА[`�s��AI�����Nf‰=��=3N�Y6[kSR�5C���#��^�s��0r��zݑ�.)9��G~�L��^ԇ���PZ��h�Y׃���r��`�1C�����Pc[?���*Op�t�?O�1wadHp�������_�P�m���긑�/q�[�훁�`ٜ�*i���N����
��&�93a���K/�bƿaD=�Fheg�(�=�Q���s|Bo޿O��봁����ȋ��6���x��q-��A���q�x>��Υtf�h�'x�	�U�q4���%�QiN�{d?	
qQg|�U�o���~t
�NJS�6	�d�Vr�$��a̮=�0
�><����LR�=8l�G�i�W��)�([��>I��� ���]���s��%z&���E�V�.L�S�ue�G��+�t%�y�
��l�	����GJ�(��Q��|-	�^��tA]���C����E����
�B����6Sddm�>���v�e�'q�L#qzAk����U�ֆA��,�z��� !_��ɴ!ÊO�;%�6%M��?��*�d8�1o$��i�04�Y]P�Z� !%��u[k����I~�Y�.��3�yy�A��̣$��/�X4�b��
0��8g�s�p#�}'�P4sIn��Z�e��_;:�}F�Ϲs���K�M�1�c"r��Sv����߈��:���E,=�fB�I ����ڀL
��b��|/�$�N�$QV�',���ܑ
�2f�M9W���ӂ�:Z.%��4+ٳ��z��C�����1�`���o5A�AZ��>�P��i]gɽcW�R�)����ˆ����l�q�ۛ�g�M��oV��
c8�$z�
��D��Q�2��Q]�Τ�T��-��"N0ώ'k�6��z-��L�\JS�ȫ�*��gܖ��V�nݼK��'�4q�ی^��ϼ��+:~��>��=�G?�Kz�O�*�{|r��Ϳ򕯲� �kO7'��ر����a����&���n[�����7Q#�𱑢�
q0�i[�L�1yuk�q��}��n|l
r+:G^�seWaMհ��l^n|����Ƽ�uѶX\�Fϰ��ͨM6�ݬ:�FS^�����;9���r߈��|��Xl9����z��i�w�i�{�	W1t�'�S!g��R�����Ȥ�����[�u#��/��Y�I}hB� ���ϥ�.�b\�xB�U/�ToU��K�F��hu��|6R\�y���O��d�B�7���ШHZ6	�k��]X�39O��1kKy�N�5�;ѥ�>��wc�}m��Οۖ)������Խ[2���ٖ�gt�7n���#��I��ɀ��߀���~�喷Csv�Q����,�#��ᡭ�؁����co�X��Q�n��_
C�
#̒	Z!�� ��_5�&�C2�E���s��,Jj',vU�/L�k9�9�%b4��1]FS�w��ĈS_a	-��4S���!/�$!ŋB�L�<q��^3�9 �y�F��^K0Ӓ/��$�\�Q"f0^����nMtD/��f̰��g�cȵ���_,%7�Ή0��,�1L
1�mR�5b�!)��JҺ:�A$3��g�(yR1��W5{��2@\�2���t�4"�=r`P��،9+֌p���IdK"���V��A�&y�0:�x�pf|9�o��Q��P\�C	#�UI�k>�f2�Hݬ��u�J?'�*�8m���.ӥ��T� 5L5��T
TUO���/P�/$Ǭ�26��<���+[d�M���Ia8h��M�?�ո��2����(m3w��_�5D;�73�S����^V<�t�9Z"*���h�Jʽ�, fc��>Z
��wߧG0�]'��E5�rD ���^�p��;�b_���sл�D�Y�
��׿ՀNi�0��:f2�
�K��N�Č�졮�Q�;
"X��祲&Y�5vh�6�Y&�7� ��?v��5�����S�6��ʂ.G���P�e��"�eV��&,���ld�d�{�Z#>��2���Nd+ֽx�@U�QC6��j��[-��+ku�1�i��a�Q�a� Rܳ����O�L1��[Wa�
%9an\b����)�x�X�H#A$l�5�k��<�.�߾mCyU������gdzk�C+�����Q�m��P��(���]m)�,Jy�M�n�JIs�:���e<��{���g^v��9y]h/6�	+�!����?�ۨ��8I���/��@QG���Xpܪ7s�v��&gw��J?�y��J#�Z?�:��i������Ci�����Ć�;Њx�K^@y�[mRy�$
��~�
Y(��ȵ��0�n�QT��c(�:���Q�q/���ù�/ogr
�� 2);�m�S�*
S\x�dl���h
�'��9z�(|!��)j���Yq��\�g�/�	�����7�Q���f���e��%r�0x�"�xy��p��X38�G҇����̊|�@�`yP��������M?�r_+���<���Z,��ġo��z�~�?�+>���期��Ƴ�=z��#z��=>>���y����a�q�:���Z6�dX���W?�.��Ktt��-�ƃ��"ts�UF��ѭWV���D/��i�W���h�w`g��Ќ�F�]-����5/�_[k��I��?g��DU7DE�Pxb�Ε6�cy�BhES�7��o�ޙ��L?4E'�/�G�����]���M��]g2\q�	�Խ2yF TSH�a\*=A������}p��kr�'��A,�ʧaē�"�aq��N�+���3r�-��V�N�b����ɍ���6vT�M�a����{��4

��\����?5G)�{�=o��HB����/��2K�4�{�����fO��K���Z�B��X7T��
�
Gj�_*o�O�
���w{�}n��߷ut���/��؀GN��~_gWm�t���%�;���NTX�R�4�\<���.�	�A:�0l �#_�FC�DxX�5`����cl��%j$7��_�� �`�F���4@KN��Hp�Ţ'Q��H#��K-a�,��B��f��<aF�J=��<c��s�%�D�[����}�ׂ�9�/Di��)��O�$�B�4h�����Ӡ��ـ��6C�\ӗk���u��8�Nh�E`�Y�Y��'�s���uA%5��>6��a<��SƄ��CP!I"n)��4�O6�`c��n��!*C33��\���R҅�eC��c�G����+F���X��Ec�D"Ф���E�)=Ͻ피��7uO�[D��;�&4D+���Z�1��]��y�%y;���ۻ5��0CJT)�1�k(•�{��C��c����gT�a4FA��mJ�*�1&7�xbU��A^��ZG�MXMM�#�I����:f��f��^Z+׬ׄ�T�Eޟ4ո­��	�%��K*S��m�н;�iޖ�YQ?��3�I3���G��҃�sZ^?�Jv$��}o�$�c}rN�'g��u(��Z`����jO�v�A4�L7������������Ye����,^m���@9i��:�c�/���^`;�ۛwO�D{6B��`�^�I�"���a�1�t͚1���?y�����֞`�,	�G��ղᨸ9����ax�����=�/^{��\���U35dT���=�x�
1��z�|�g���9s��J(r�Ё�ܭ��F�Qp���mN���e�o�,�=��v��������.�+���oI�p=Γ�o�UyK���`��i
���1m�ۧ��Vv
�cE������p_!X�⭽�F4�9o���	�,�`?wO�v�-ӄѫm����P!j����W`�i��|:��~�5y/��
��g�}��X���t��}�Wt�H?�
����^N!R�1�򟱒$B�6�_�Bq���:�����
�o�(�+�;Q�3�.0�SԤ�<�N�r�eM���~���l�Ȅs������Gi*�,jД��Q�Xc(�%$�$����Ӕd�Jr�~v�#S"ɊDnC��6��8�iJ����Q����my%���"�I��/bP��^49�8�Dx3JXd,J%y���*�w*
{O�Eh�ȉ�%

��uq�kB��q\����b'�I����m�Ta[�CS�ʥ
�^/Α�L6x-���);����n\�~-�{쀈�)k���>:~L����?�\��<;�;1zV�O�ϔu�y�aS�&S������y���l^L.5��\�>^� �1lɧ��q�k��a�X�ah�I�x;V`�R5��\%���s�_?�_�o�҂7Și�r��_Ȑ�w;� �]p����aJ�˨i[��!L�qm��T�v�E��Ɗ�I�	/W������LmS��l�T��`��⮳Q17�"˓�,���u��Z�TkMJa��T#i|��:��w����g���g�Jm�w�LeOKe�l_v}�|R�괉�W縑!\��N� �ƆJ�e�h}/��s��w{V�~�/Z���>>7��)c�Ȟ@S:�q�Ю}����k'�;q��5J�:&���PH@rr$P4�G���1� ��M�;,�#B`�H��BAD�
�J#=�rvp�f3�Ƣ9Ff�i�BazB(DP>�8�@" ���g��PM���\r�������`�;tN�g�5�#b�=*��*�e�f�0���L�&i�<-眿B��$"7�����%��c&�ל
L�E�&������8*�P�qb:���798����{3����!ʖLnc�M�S�O�3C����,A6��	T<��)*�� ��Y�Fq)^@�-��`m= �#ofR/��٨ѥ���a�`v4ʄs)�ܤ��ƲϨ�T��ޤ6C5�4�$�c̕0��`�1�d�Bq�V]�`��
�6�!UF���Ǯ$
.�8�N
U8Ξ_�5��&;g5{(m��l�QB>H��X��i*LQ!��3�u(D�YV�o3����K
��	��"��
����4e��2Bn����W������T���5mC`5LX�Q6Ǥϧ1�tm����<c�md܀'��͔����[̐��0b���9���>�YZ_G!m%!7��@�=�}��\�_m��0�y�o���	�q���4Ӳ, ƙ@F����`CV�s�@@���U�]�<q��=���uOY�6���
��s���N9�'(s/�Q��
!�~�4pPÉ��!:���ҙ$�z�����{8?�R�݋��(JDu�J0��d�"��E��L��U��ꛍ��$u�36�4�J1!�l0X���:�ҎÈ=5]�~��x���淾Eײ�f����'�����G����q�!��;��{����l|�o���=��Ԙ�����kZ���m_�jp���+=2�;$�����YG�瑰H(^O��}�Rr��������o���əR��c[�a��/��g��O�Ýi����H̓�k���ˎ��2�+{FK��8M�$�/Ok0	N��`�=8E�E�O	�Q���m������u�z�Z73C�����3A�{���g8�2�&���cc�34�8���8�7�|_a�e<YN��a����rD�K�.��W��j�G��U9<h. �v�1h\��I�fq;"�2��������FN8N�by���\�*�SGy`�iB�)�����G�@_g^��:�~����ȯ��*��0��R1�y����h0�T�:l��0�#yk4U}#�w���Q����P�C��`�n޼
�/b8cݬ��h9_����}tx$y���hq�����kl����p�s�F�h�	�xg�)vumz'L��G=�׋Q�r{b-rŜ[�1C|�ӈ���{,3��%��۪��1=���C����{hY��+mn\�ȓ���tKWݙ�v�j�"�-��(��B�
�a����)ń������P��nJd7㵣>#�������3L����An7.t��T���#���G~N����Ƶ˼s�+��1��Ȩ~CeP�ȐLb=nr��E~dC��6��Sa����$Nt*m!?�i[y�?b���N�́��	��4��
6��V�u(T߰��fقC�'��v��s3h���e���+�C�=����6$�m���<f\5s⎏U"OS�|�H+�j�4;v��c���H��{w���3�ק�;��5`��|��ۿ���K\n�
��q#5��d��&ԡ�V|�_�',��pV(���j�㡉��f��u,jH�F�w�����)�0\Df����N�{P�a�}��KR���$Q6�y7��^Sd?9>aEBDѮ5{|j2��;z�7�;�Q���r�W��"Gj��׼����w�ޭ���v�0p̥���*خ��7��l�2C�Dv��F�2������^\)���X�A�r	%��,�o|�t}o�}#�}�IJ�d����a#c
�\���0�=�D������9���}���y��m���7��/���RLkZf��nz��3�8��!I-�+�
�u�
w01�%��?����}����V�O$N��`��*J��y&��߹E���2>��zg�l��y�Wf�k��R�eW?h�@�q2��O~��<��A繹}���U���'4����2�0�0�<>$��0\��=��>{�u<�G��?G���3����{������Exr����_������_�
2���O`�`�����{2��ß�I���ب$�aA���t��\��;�v��������,��J�$�߃�i&rz��⊣��x�y��vze/=q����h&�OItD�2gF�[���]ˇQ}�	V0z^ɘ��Ge�I�E�=�L��ET�vSh�
MIǨ2��\Y�2T��RUpv�6��;z���30��Œ��R~'^��=Ļq�:���n:��\�
�����mVtl�<�_����1����>2��8"���^;��6ɦ�A`�!ʻ�
�Hh�<��
j�`��b��hH�$jT�*u8B2mtlC;ƪ�aEn�f8z�0S�k��G���cC��Y�唳g�HR�9<Q�00�z6TD��म�ԋG�ƭz1x��
��a�����GŜ���l�o��rv��tw�~����>�9:<:�q�2.���'F|�Żt������_��iYO�<zH��{��%�~�V�t��H0�vp�X�>bh=�e��Ҩ��!�x�M����-��J�}�T�ܴu��=�*���<6���j-{4վ''!y#��Y�u�u�����{xͥf�5�B
9�$�(.�,�3�D?�'B�^b��T
"���4a��'�~VY�i����3��@Z_k1]xo#\NH���M����U���F
ޅ��
o��A�"G�m�Lt�9�C�b��~�r|b�<.9I=*w��S����3@��9��h 2F,
~K�mEȪ���[��b��(�� g�N3�`�C�`�Zc�:_w|&P�su�(���xsc�E�r�K�g"�#�@
ϳ,�8��IB{��P�E��ab��Bv�R�S�s:x`T�`p�˧�8��nVī�:��f줕e��*��2��H*8�]'�(�������E��{�!�uЄ��u�fAa�K#Lp��s=2V�I/�q�YY�"�Q��E	JT��^��irV�8��0\�Eܧ�1>,�����y��֙����jN���m]����#M\#.�`����˒�>IH	�)I�b�~wA�d�f:��j�́�Ώ�����2F����9���1\-�϶�+]���O.rp0G%_�7�񤆈"%����T�"��|Arb�%�u�A���#.�El�*�ɽ��`p��ʤeT+CJ5M�_54 9�U�u<��_8���ͼ�v����c�M4�*i^XQ�������M��\�z�hjh��BG��4���/�y�U��i�Usn�hn[OJ���6��+�����?CD(�Em���h���kDLW^�+��J%� 'k���M2H���@���m��>Ҩ��w�zU��T��cRkh�e����uc���Ǿ���U�7[��D�x��y=P�X(g�ϸ��LΊ�ءF�o|�k�%+G��ن�b�^t09F���!�����t����i�Q�R�x���cQ�0��.��%A�0�R(hdCfR�V�k�X�Uw�\��W��_�����`/3\O0��c��9��7������#�����˅A~Q窘��mƆQf��3�|�R	�__�����O��ko�f�ϞkU��7~`��9�jz��]������n�����
��)�/*(��xml�'<+J��Ğ�ʛ��ɟ�����x�A�[�>+�0^��?��}��������斦�L^�w�`�
��;F$Tό�܇�����O����g%M�$�h#��
��B���ag.����1������DQc� X�4_�L5��<��%��Ҋ�M�0�eC������''����ʲ��}�S����/��̹�#I��{D��uӗ$�{Qi,i~&�y��~�}�{�����IVh��Kwo���?������"F�?�������z��)�����_��oKn�l����&��B�M�āH� 3�P`D���K�����sdJ��X��2�X�٠r�
D���ޯӿ�o�m�旿H�i~'�\^s��ᵜXQ��#ya��9E���8e��]���gZD�u3�V��qN� :��
v�d��Z�X�dL�c^�yn�QOS������2aŮ1�k�w�
���
��wF���4�"<�u%jY
mLhQf�I��p61o�7n���l�H��gH�9'&�ɣGt���ׯ�
[ߌx�������]�~p�:�Jy������{K�Bh��̐
�=�H�<E�*�pxgثX�����X&�{��Q�}��`&��o���%�	�I��L����V`Ȫ�=؏{����#j��
�/�	�I�Z����~���2G�*F��ʗ#�c-C�I`��9FbP<Z��
<,��:�Ǚp��A�l@A�%�y��y��<��<�O���s���2���tt���ym~���w�d��{oާOge��cz�����
����<��;�km��[^ǜ^�@��;�OW.g�/*����������D	E���1���W����rKj�жmj�v�yO$��ChW�
*��C�S�3�8��Q��eh��Ɇ�DZ�S��Ӭџeiڑ���z>:e�V!4�z\OE>D�Q�>
�y]���.�S҇���l
�O_?8dC˥�No�s�nJ����d��3��7�%;1�X�a
ڛ$�Q�AT;���������p��
y,��x��o(�TdV�9�ϲa����1����{�{��kGׄ�,��\�c,Z�S)VxcX��������E$��
���g���@!�kT;��^�=�g+Z���u0P,��y�9�#J��r4��,Ҭ�h�{��9X���¬cY8<��"4��Z�����X��Q�a�d-��p��S��R�Q>�7!)��( {��aƆ^�J���P�}�߸y�NN�>�ӣGh1��ȡ��=�`I�,(�`d9Ε1�:���g��܎��	��e�2 U\�-�b�w��5���I� :55���F%��0��Q����8kڞ�t�S9�bX�nF���Px�X��>g�}�� 5{j�����H�5�Dɝj536��n*!�F�Xt\"j�Q�
�F��y3�Y_���^��A,���(z��-z��LYY��8Q�3z^',3�ؔ���3w�럺E��x'����{N?z���7>��?<��g�.��RYf��)�A^��Y�';���<̲���!:����E��_�G���]�������?�'ߥGg��K�(�����cm׀�A�]��,�X�~q]�J��T��t����z�>�[�%ۤ{���Ah����B9
O�����(�&�C�}��+�6cN]rT:��cɮ7������G+�c���J�~5��Zrc��[��h�?�rQD���=a��1��x1U�.c�N' =>��hDw�۠�p	��@�r�Z��;4����ҿ�J�����8��Vi��#s��:`��U�N��P?��3��(�0:�����M!� l�X1Å���S���+��{{T�YȒ��OP�.�������t7��42F��b)
�����f&��_��?���w���>}�s���D���I��yľ<�@ţ�8��a
���X���ɺΙI���
��p�Qh+3N)5�����;��
R�6��/���}��������~�笸�����䄉���c�����������9�E���<�I"\�M"D&�
_cLp~2Su���!mX@��8�c�V�(�}�ʊA0�`viҋR
c&�C��ץ�+�KS�yae(�I@�}��!=|�6>�� 3�'�+z����S�žR+ާX�����4�7��s&�����K�+���ࡦXCc�k�c��^_�0�0ұ@Pf�j~N��7<����)9��QH1!hbtĸ-^k����?�=��?��<��ݽq#��N<��L��C�wȔ�I�y[��#����S���>���nH>�X�T��T3����P#��0��g"Lia�4Q�"���ܦ�S9� yV/��ô(�cB�q��dݙw��o�
{�n�q�⧺oz9L0��f$ER"�leɖ�I�zd�/���_��g��ڵ�eɒ�϶-Z�� Ѥ)�bH� "cf��o��wsw�����y�D
��"�޾��U��U��9�S�,2_n�Dw�E�|�r�}>'3�cIE��,]��\�>�bD�
������*<��c�G�)T`p�i��OL�&�=�d�cV҇�;���x"��-\��:��\#!Ш���?I-v��"Sʫ�F{$I���H�9B�9�G<_)ԩxJ��؏�o)+�c�I����D�!e�M#�%��i2l|r��(2N~ΊM�QF�j='����O��M��P�ӃP�^.k(E°wr���5���$����$A�j�N
|��G��{C��D�ӕ�L��( ��K;i�4*�g�;И��8>��G���2�S�<~�uf�;�Fo̹_.o������=���ù'��
��}=��}05?�u�Wh�[3
%T]��RU�����/]��0�Ou��R��g�e�����D��Rqz�{[`�x���Rw����o��rW��U���B�@��}(���J�-'����
q��q.�Q���k�TX��� ���A���75Qx��!	����%�;�Au�1���X^?�٭pܧz�g�/��W�I��K��J�Kz���v<c��ƂA�[�s:��aK��b�өX"asN��H�] ݅]����%<��F,��2�k�%`w�O�2���ΐ�D��>D�l33�߀`| ��趈�P��4Hn1�(�9�h��(R0��qވ�p o4D������B,�ɋ���"smnA�p��9ĩ�u��Q�u ����dP�Ҭ-_�����l9v!�ir��1!�J/N��ӣ?36@9<\�����(k�6�Hd�-D���9u)�ks��cG���xr=#�ORe��yec�jԂ�P}�׈z*6bX�z@�%��nM�+��$�*�ב��P!ܧ�hh��n��j>���W�9Q�kb����I�F?;��CsW�ؘ�Q��0%�5���p��e���|�K���3ҕ�Y�%|j#�񖻏�_��7�-��$”�~S���>�����S�-�J�
'����u�.d�0�2�Ԙ�zu�4�3(�.5����˫pi{�8�z�"�8���$�k����Ri�F��7/�P���-��:�{��b]�{�����p(	�	C���Gߟݢ���/�����r��EY
8�O��{⡬�[�L�s�g(��^/�ɽ�+�k�.�	&��Z���9FC�4�3�N��<�2ʿE��(.���|��	<�m����`A%^�x�_[��$�G�A��F��rxp�r�KߍΊ(�,_���H2JX�*��TȨ����(Y9;и�w�\��<��a��;�(�bLi��;�G�;~�x<ʅP�MRw	N��xC�C�8��,,��AP�%����u��
t�KԠ�/Q)�g�.ƴZ(���s�v�`�'D�[� �Y�I���yL8��;X���5�����?���-N"���eY!t:1lph�'H�e�_J|��e4��"�w��S���5r��>�\��ĚN�Χ�X�-IW�8_��L��c����-��������ا)I���yc$�$�Q2�ȆG�8������un��,[�s_�ª�Q�4����%䡍��j�} �<y�x���x�\4�Р���#���	�]�bp�a4�z�`Jc�w�":�����Y�ų�/���XÿI�`G6wzp��ex�}
�R��c˼����1Q�(/R������
�G���蚗���5�7��t����b�Op���jx�ޢ\+-�� A��Ѣ�IRaz�L�NB؝�{��^�=��0����n������+���A�$e�K
�'�;���f�w�n����y����T���R�-թ�-���~�����Z)rnD����B��]�XO��B���7������\��p�@y���c'��t�_���g4��cVֆ���P7^�o��+�'����w�@|�=̙��Iz7��!p�̭m�Ί�b�:G�p
VL9��h�ۍ�#^��,���9+)��>i����i���ʐ|�^�D�KRZP��A��*����K�["�Pw�Eh:��VJ�T'�:�.r^"_�7��T�o� �^�k�w����Q>&�������ZJ��y�
�F?�yH
�#;7hM�d�/�B{�M3K�
8�p���޴4:��Ѐ������.<��G�PQ�q��%�m{���~=�i/�[�'Ο��$'�Sg.�ҡcp��<�q��^����ބ�@[��ײ�W����y5F���'��z�E��x�-�
��8呢~_V� ��\��>�Y�c���^�����5�eFMT��<�K������}��Ћ]�vbZ�v�Gǚ[��M߱�bw�.��\�cŮNy����S�
f��Ji�ҙ+�:��Y3r�;,�;	���҈�Q��K�I�p��qF�+��D��L��"�ͯX�<���	|phC�<:�E���F��G����<U�1bYV�T#�9��g:��'��\r:P���k�gYB��@p��#�Ù�in'�.d!�,�]ɈC�9�p?���r�D�T63��!��u�(�E-h�qst=
93��B�~S��YVrIp�J�JK��k^	���2Β�1u8��H�!K�M��Pm��O��8mmm�<5`��\#Ei�s6�d�O4�u*�U:QuJ#==I"��s�rJ��.Α4�6މF�x_�>k��ndǼ����.m��s�у�J�L���_%aWz:��TAq	��@8E��$�Y�l�b'K��s!'J\��w�^-w�P��uu�Nj�0�4{?�7�C�Y��%>c[��b�˸LK��R��0�J0�hۙ�84?�=�j���ᰘ��ձ1V{N�ސ�8���$�Λ��=��(z8�Mp�������:��4�ʿ�-��[!CHĸ������7���-����>w
�n���p׉%�q�
�^�3��z5+b�H�h!��R����ǯ�ѕ�����(%QnlwSل��9��x�����0��q~m��]���]�μ�6�%�扠��8�㕞��ϣ���>@ПKJl�o��ʑ�Ձ�j_:*W�D���%��o���N��C������CpE�AT[W�\�п�����>`!�(��s�1���5TT��1_�]F�]��ߢ�|�f(=��&_>��*����kv,�Vv�rc]]U��z�^2y|�� ����U��"c�;��Ġ�d�H2vP^J^N4V�4xc�Lk�%@���ξ[���T���2z�_��…��B��K!��Ad�:},�Hxq�.!�x�s�<P��R?�
��w�=��A�qa�f+�kh�jJ�!�?B7PÆ&ˢ%-i45dW�i�ȱ<߁o��w�����^�}�wau{��!��������+o��C=Y��̃@C/5y��|C�{�v"X�)=ϓ��X�^s�y�)�P�0�P�]^����t��C��1h(�$SA�,�H<zFx���:|쁇�u�'C�7��M�_��B�{�c��13�O�	�����|����f/<�$���?R�R��vxY��׿�0?3	%��z���� �3�A��_�uo��G�����Qn9q\u2���φzih_��ld2�F�@�qز1�<��s0`CP����#Mԇ��+W�+�����	�H��
8t
U�h�9N�3�H�
���uM[_��hQ�e�q�'�yc̳�g&��o�И)�h�mjގ�(�x	�$��Lu��c/6c
}'/s2&�=�:o¹4����k����=�67 c���/�~�_��?�F���^M�4K+�5@u���v��s/�;��W��o��G� P����
��_�(�'�eLz�W�i�M�6c�nW(�TZVچ��s��0��F�a��>�W��;#���XEm�"RN~�+c:�zog��BH�g�{a,Y�Ç47ՀY�0�w���WO�tu
��^��PN?���&�L���`�ާ������#RB9rT��\��R���K4G�3��ڒDr�  ���0=���e�`OF��}4��KNk��gȜHL�I�b�(y�HUv���o�:}��P4�X<YE�lȞ��!�<=i���dŀ�`�xL1����gI�!TUd��$K4��
!P��ϗƜ�[�v��0ùDD���M�ݘ��D���Z���Ѻ�a�C2Q��6��!h	��&��s����a�
Ϭ\�[���o���U�B����&SH��q�.�}m!=8t�8�7�Sq	���$�1�ky �e� ��2x�z+���O��GfHz^�F>P��IX$�/�5pq�k�
�\P��ʖ���_��I�}��>ί��W��z%�^�u�k^L��^_Wb�2ty4;�gu������^Q���N�˚��������\�Z&�D2M�mFh(#�X�Ƭ���,_%{�*œD]���D�<�见�@�r��#lj,�3�Țɺ��?�`��g�(3�k�b�Feby33���kD�:.�T�hi���һD�=d��9��~����\�<�fL��XcLu"cE2�A�`�
�!��toɝaQ���؏�6��<[��s!92d�3 ��%&���MvTI5���Q#�l��g�"�p�`?=+�`&�X[��2e����$���%�<�K�c �
�.�Y^"皡�d�2i�\�q�H�G(����	�6�y0��ͱ�n�.���>���⼢d��jc$�˳&'T�`�^Dɢ}g�5���9KCލ
�o��
�L㨵�r�DO�[�s���0�8��9>Ŀ[��u�`T��B�ؿbam'�p��4b%	�[݆+�ۜ�T�ӛkz8����b�}�ۇ��G���x�l�-��U�K�>�&�;������l�N��}��;\7�v�����&���#��sW�6���Fptq
�/�@���fw�ua}���k�KǰZ�G�ou�$RN:k�1\��fJ;⓹�1�\�62ӭ.L���!S{�:���05Ն���uӜ�2�e�o80��S��we}.����%
�k�n.Ϥp�X��~���k�pq}���P�'*W���FsvO:�<8�WU�6����2Tx$׹z9)(���#��
#حe��V�z��p�������=��������5�����ܧ�6
uڮr��R.��(= ��5�$Y��|��y�����4.����=��/���M�rx�g�T)�|Lke�d�d�P���tU��o�d�q���d�ϔ���
9�k�;G|?~�8�(�à,yIȝ��z"�Ia~$��]0��X�سd$a����pD
y�[X�6��R�=���Ő��9"���D!UD>4S�����$���pl� �П�A847�8�{�A���_�*
>�-������:4�j0
R6���E���Ij��+
N��!�j����5�oD������S*��G5��@$��uQXi��9-6�`,��Qc�G�Wmx�ɇ92�%4vM��7���WN�e`��;೟�"�ַx\6��W����S7 ��1�M�)M����N&�͹$ϼ@a?��������}f�,O_Z�|�*�3G0gf�
���t�}L�ż��G��F 	t
|��3�Kh1'��S�(��	�s5y��i3��†$�I�'��
��.\ah�Ib��J�F,��,� �7�C�>+`9U�$׈��kN�Z��>m�t���k^&�a��y+��������p-���d�䑁����'�%t��A��?��pxn�A�_������_�-�&�(<l�����G�چ�gN�Ab:u'��-dPD�.�a��2S�f}��߯s��}\};�WW���ܻ~�:�9�~�:��^s%i�؁�:�zdx���ۮ�H�H�(�P3�$
!-�lc�`!B�x��o��2���oZOy����M���T�M91�T�Z!P�
5�&+��o��Ap���t/#�*|?����,��QOy=�C1QY
���7E�fړ�����GDHu��T���0�=��؃C��q�!�C�DO���+�!Lij�Ɯ��<�$����'���ѨUN�	��a�K�"/*���Cl��i�N�#
*���U�o��;no�,��Z��Tc1��	�9{ ��&%��̦��#M�I�W*q&����N�ν<�D���m�8̔R�v)z	��y>�ȣ�W�6��05�fa}}$+�B�q^@����P�M��^�o8vN.�����tc
�`��
��4;}������
o��&X�G{+'��1dG��7�ץ��WSk�/0�LWz���E�b\�lml�{1;=[$�v�uȫ���H��h_�|�g��KQj
�@J��yd�ή&�4>�\4�]������Ҫ��)���+z5we�g[u�q*x��A��A}|Un*&\�I!��J�l9�Z*x	j�`oZh-�d�P�n����{4���+mx��h�W7չ>�H�<2��>@�v�S��ɰ��%?H�/Nu��S�D]�� S�$I*���!����E�4z��8U����i[���ԙ���-$���ζF���.	�Ut �
�Ĉ��ƒ�%6� ��PH�H�Q�*�J�=�|
��Ѻr���fQ'�<�F�c�����,�b���S��<I�,��x���N8'�0��MOO��M��i,҆P:���{9?׼��FЁ/" �/�[6.E�Ƚb�BcB99�D)��U�����\�d�h�R7�J'�����d(�N��.����Ia�g�>;��;30���>�6,�P(�y^<�Q�d��
��89;F|�E����d�q;V-�UEy��"�]m�֐q=0�Z��������EN�ӈ����8a�@��o���n�o����T���s���G���i���Mx�
����q?�rh��f+��0���~�3���c(���p`k_����yާ�%��b���(����3�G��qx��G�ӏ_�}u���O���]�߅�D��H�q�]Z�_���x�y��
h�c����N8����}�čV�/��a�ӄO?{
��6�w��Q?����<�-}��oz
|�o�������*K~�~+��^�y����b���|ӫN���p��<L�[��m��>���o=�3!� �;���������,����C��ޅ��/�o`�}rR��\�'A
`�C\��O~��?�H�/o����_�En��e�q��V���������pk��|���Y�nj?r��P��l�gǗ'��	�+�q�x�X	�� �Yk�XLG1>��.�0� ���CH�A%�3&ձW�-��U-'T(�C���/}���A�d�0�+�ƌ$ݡ4V!�2n�1���/?K4rx��`�6��R��K$>��
6Ұ~dy�j����2m�F4N�Qc =�"������4��rТ<R�c��ñ�;D@��`��%(�=z��mP.$c�	�r�&�	�x�k_�r88����{�vw��G��)M�7�G�q2����+�D�K9ZĄ=��)�
mά�Q�g�Io�@��s*��h�|䥥�=irQٳ�������f�	��Z�o�h�F��:077=h�!�����v
�S�u!���I�Z	����se�@Z�[��{H��9�-4P�J�p"��	�5�������\<�Ȼ��"B��D���dL)F�`o���*U#L�ymu]xg� �{^?��Y%i��o$���ΚҽH`��eDI���8���H�}�7�d�Qr:J�N��H������E<��jF��� /������Ԑ�R�q��*�|N��ۀ
e���ռ���M�E��&�R�����y���'ϟg��4�tw�p�S�V�5��2�g�ycl��Ů�m7��n[�zݼ,J�B2����H�E�q8)\���<�!������K��aQ
�w�Gb��om�%� jgԮ�}��n�zQ��ck>E��s'�h؆��ǵ�TW#�k jC��F��9�t���y��zZ�ՠ� ��5
� r�%E[}e�h
H���Hz�1j(qјAyt�A�vD�q�x	����QZ)#��7�s�����>*�Wv6a?�S3(4�b����(1?�(Ks|g��Nd}��6aȌ��(�rh�~�����kZ�(rd�KrK�z�$?���Et�Fs���DHp�NC���y{ѺEQ�d%�u?	�Œ���	
�/��O
B`�q�1E��G*]Kњ䉨Q���
u�;K5J)�wQ�:�'�!�Ղ�w��r�G��/g�����`��$(֐W�������
$u��K��3����w�z
�����
�80��c#�M�3�И��^x��5n�;�p�^�`ڷPb�Y��P�ZC�H�E6~��U8�3�7�u7t(A+%Z�e��;�����dv��t�7JCt-���=��?�-pI�ɻO�2���F+��(w
E/-.1��_*���~F�W�:���[]#|����a�e5}�3N�VJ��{�y&�(�0ᙗ��J���-;9:�n.�Í-�/ oL�\')v��X��{T�G��e��O	�A�g�o{q,	����du=[u���+�Y��y�%Yd�}&\�ς��6�<NKۊ��D�י�/�"�U4'�B1(	
\E%_�<����)!��RȨD��`8�O9'?���%.��l��8Tp�	�]oz��	�7/q�\��RE^t)܇G�7�Y,ڜ��ͼ�&R_u&�s�b�yї
��ac%��b�笜�}���7�1����I�O����I������Pq�^�Z^
�3�Rr��X��@}(����P�QL��:�&`N
jc[�(+��h��d|@����0[���F�%���<�W1��)�˜�7}J6�8�
�/��/���{V��������X�<&�Q�)��sJ��4˸��T���u/}�a@6�y&l�8�g'�htN�ݤ�ޕ�&�Ć�p�����UOi�/�����q?��z�״��+��c�:�pE�Q!9��$�V�j{�ڛ�A���K�����7��?}.�
�B돽^vx�8g�p
z(��ul1���{�~��6�=2�ov(�v��d��b'���'�>������V��ZV�)|�s;�5n?�G_�m/c'�+[}X�S[f�±�y=��_�|��kL�}h����M��oy�-��1���V7��g��?��8����(<t�2�m�m��m���#�xle;}�Y��x�6��t3U���oY��o���
�{x��,�����F���	���?�8���Mw���o�厃վ�sh�Y�ií��o����.�?�+i�v�B��-qm�(+V�TD�H����s|QA!��B�o�$��w	���c>��$\�9��ʰ+|,3��N���5Io�P���v����4��;�N��V�
!D���Ń��ؗ�Tר�952����\͚ZW_|n];��F�Fl��Ș"<��*��roP�r4j�Q~�h��f��Dm��
�$b+��K-��T� �P��8q9���̇A�B虙�	@<�A$x^�斪�g�V�s�6�f˥�V
[#	���wbU8�S�4��ljo�s�`G��&=5�R����Z�R48)�.��T8hIأ��1
�A_(��aA��zÁ�������x��^ğ���c\�G*`:�)�ԡ�1C�2y�B��8bƉ`�B���RK���&�'�~I�1�a@����4*�[�O���]�l�lj�,�D�D��c)\6lHհ%��,�x�>"�A&x�`�Wo
�#يp>sO��{�q�1T���K�tF�Y���c	��9q�`@)a��s��5NZ���x���o�sϝ�2$]����.,�m����fY�3.�����x��3K��L����>R�]x	����pf=
}x�LUE�+�>��B=�a�N��[l0i�0�F�ɴ:)+�ꡞ$%e�=�y��&��>��g-y�I���T *�Q"�j$,S�GnJR�U�I����68�ԧ��c���`�/�dy	���;�Tl�nwPF|�x߷� >�r����ſO
}ޅ�	 ỶSXl����;��C�KԞn��X��	=�`��#&��އ6$�\U14�p��U�.����eڡd�
DcW�z�_�:,�x�H�+W�H�w;���0��Ȱ����A.��Z�:-�gDkW���br��g��:|��64p�A(:
�Q�QJB��*Y"�9��x-��PtUC�	�	Y�))7���/)�ȃa�ǒ�c*��$�#���Ȝ�̉�d\Υ/t��F�y��b|1.��"c��j�Nа�C�j{����%���m�鳢���L(�K�򌐂N��+A��c#I���L�����:��p*{���Ɔ���&D�K�����o8�{�]<�;۽.?W2v��Lc8ߢ�#88�(7��!����py�G`���0��u��%TYYc�Zo~�	�ƻ_F���kt�y�,UOَ8Y8��+izܞ׼��3�n�W�~�;�<l)�Nkkk��������E䆫k[�������e/%).	D4A���r��<Ҿe���r�Cdԙ<��Y��?A��S�H=��E�D�'����w|�cIdШocIBr%E@~���.*���D��FS:
#Qư!��Z0���2ga~�.MeG���n��T�;��研���i2:���#CTv-�x'���t�BJ���8�e�9�%�4A�.c��rZ��u&��Fި���@rG&�?���h��r��,r�4É��f���.WߔDr6�'��,7:*)$'d�O���I�Q����Y���X?��)bŋC��m��R��Њ�3���T���LJ�����Vصb)>c,���X�9!m������ $"7�/�{���&g&\������3�B�a�ہ����`�/�����p��sN�'�d9`�W��cI�'�O��\���XSl�FD����%�RP#��=��~w�ݪӧ�3�oz@�w�V���p�C�=K�%��t�0܋���.���<n��f8B��K���y5v�~��gᡏ<����ހF���p��pq��{�q���<����_�����3����r��w�7̶�Mw���?���^.�dz&}ć>���ƻN��n?8�����}8_�n깫��.�>�,<�������}o~�P~����|���'������9���_�=�az+�8���8�х�}�'a�۳��`em�m��l���L8��O�^���`AF��?|��.�f�?3����w��c?/m
���1�ē��������]����>��:�?�G^��D<�j��O�έ�Ш��{�7�z���^z����9O�#Dy��0�b�β��F4D��ޢ�d�\	ߨF�\V�R���>���.�_�>D70|�,�Cc�fF��*�y��i�=K�T�(F:�]�B�>��ԯ����$�O.�d��켺k�Z��؉~R��~qiT~�V���Z�3x}���B����Ϛ�#��"Ç%*G�H�y;B!cG���d蔴�":N)�Ul�0c�}C��E�7;�ܓ�۰M]�,2z���9BC��XHa�Nӛ��z	jI�Ky$!�#�z�8�h� ��'��&���Zbmtِ���`$B���*pH�E�s�x�Ɯ��2�}.;|���ӳ0�6
6#��8b$��	�"qb!�!W����"��
�<{8�F�A� "w�����8҃w���¹˗�F�h�ד���|'|���ƞ-�1�q�
�#N�Ή�,Ԑa�L���R��8�$X�&�r��j��|hdi5S�<'(go�D6��z@�7JNd"I�2��!��fS�._��n��r�'�#���+��~k�k�pl�"�ӥ!��R�y�Ti�7�sByJJ�H.�j_(��Ɓk5�l��9B	��x��"���o'��CkPP���М����#Ѵ�J�<��}�Z��N
N�9�]�D�b._h�_�`S!���Dp���*�%�x��?�Va��x��Ң�ꍝ+nT:�׶��>.�S�|��6��=�ݴ<"�TN-�l^���"U��u�ݧ�������8X䷨JSX�����HRbx�ݓ3j)�?͍<�\|��G�C�{#W���
������D�Z[�"�$��-���b輟,��4<��LSD`�W���γ�nR�6�7!�.^�$�l�3�E��^�.��[k��5�A���-2�6�2��Dx��Dy0��	�r�t�$\�����k�B`���#D�Ԡh����������}���^�Z�P�+�|�\�.g�c��1c]XI�
$9:��LH2��C�X���ƹ����Gj����6�_c��eH82m�.���@л��b���z�&Ɇ��p���+�Ԕ�M7�ԑ�pp~F�8���8��*��Јցũl���2�Sh`;�87.����Ź�@���t��u������NÕ�|�����&*�hT�A\X^PR)�rsx� ���oojV	I�ߒ [E���s\&ƞ��=����_�}�nRWDh�w1Q���V��T$@F��
�{����2���Rp�r(飡�5یE� �?Zr�սƗ*�{�Ў�Vݟc:��R�X�q�F��{�^�G�hR|d9�d��&M��s�ښi���n]��a�~N1hW���b�����
y!O�Y������J��z�ό��}���@��b��"O#T
�$a/���O/(Nb�h~/5z5Qٜ(��y��#IYօ��iO�:�lH�G}�(!�l(��W�*D�����߸�������+d.����
�kD����t�'݂��m����!g0܉,(����ʉ��)�Ԑ�PL[����J��NY�$G��9J��ID}��6+h<�5���a���9ӿ�pBcđ+��V�G��>0/�,�y��4�d0��'��9��(m���h���0��"�����ӎY$�|
-���&���Y�'�]���!��I�b��Ѩjb �.�E6_��F*(���(�3P���,�6� �[����,�ټa}$q�<{�6_Z�
oy���P�k��`�Dm���a��YD]Uw�x]�g�:x�������-��~�9O]��s}�K�w�3�\�7�y;jQ����hpM�M��NƸMb/I�]J#��kW��"\^}/��w����8�jC�qinZ����q��w�������oy�Ͱ�i2��C�w:n2��
~~�M�젹��}i���G��A�̙�4�}F]��7�s�9y�
�^؂w��N�C�M,�;�<�XZ�k�'�/w�t� �c�|
3_�>>���k�� ���H�Y���pˁi�y�3z�m��
i�u���&�qn?���p.<�"ԁ<b�Y���D-�L�Y�s׈��
rT����'�ڟt�p�^��lc�٪���J����@}����p�
��wr�} ���A����{�5�&�G8�&��n��z�q�P㮱���AO�2��:�kz|�Y+c��$�ɤ�YiT/���b��=b��[Q!*+��)�#n'Ey�%��A�StJ�/QZ�12vP!�*2z�q��^h)��
Ev��t��OJ�Ɉ�ryAou:ק�_&
!��$6W��x�'��B8->�tZ�+65^��N���&a&1�g!�8�ą�!h�P�'6�8mHQ
픓j� F�`�l�el��C�z�G�p�hvn6�$��(�(�M��L���k2�̴&dT�
�g%Ei�eA�+6D�z}l3*��u+{s�/n*�_�����8�v)�F�1��M�)���L(�
Bj��:�
��#W!V�/V31��="�	�$0���yq�Ie#jM�	�`���F��>k�r3Ua��>SJ�= ���s�ylg���gp#>t��|Ӎ�C�`=��8�<�ub�M8�8�+�f*��d�� �R~�b�cJ��,���[:%�6է'�8N�%a}�)��_6p�d#c
%�#���i��;��ƒ%1��%�Y�T�q
��8tl�!r4��a�N
�iM17%�L؜��%�W���lF�jq>�)��W� �ƨ{'q��cV���v�"�8��DA!j����`W;�Hj���}_�-�^�E�#lL����BK�϶y�缺!�n�0�X�Ս3�'D���# UEJ�5g|��[�j�]��@�c�5��ϰˉ��7f)�_�Y\�oD�(������1���<&ڻ������4���=�t
���@���͢���"����DW�{����b�QI�y���Ȳ�
X��������@K���6]A~��N��
?6K<J4T�P%��:+���kI�kI�&�H�<���(�YB�V�-��2(FN8��(�Ӝ�<ͅ�
(G/�@<#�1�(�d���~�SxI�6=��5hg}��÷�����K����,qz~�,���߅1��;���&��N�s��h��aanA�Ņ��h����+���5��P��
x�����ß��.���6��?y�*,-����2tf�gE�~��f�P#��z���/Jmp�;�vUB_����]ht��h`�C�H�����!����:S���ߡ.�fgg`��P���a��v��J-��iM�h?I������O*r5���֌hc��I�T����{���{|,w�\+��˞������[���|�ht�s�V�������s�[A<���O��]�5�]Q_�H0{^;��aJ
�
#�`�{0ɀS����ռc2�/��(֤�L��k��Uj�\A�ߣ�qW�ȁM=�E���2Pʫ�]͑K�
�I�{�L������k{=X>��u�G9���.�2,`�t!���'�$ѡ�o	��y�"?I�\�>����t��FL�s���h4f�Eh��~�Krx���� 	؇<v���ӎW\��3��l^F�ttI"���Bz����=��X�'	��;P��P
@����Lt��+���F������",B>�p���.kJ��9l
`Z%/�瞣�����E��ܙ)^AE�ɜ�)riX۬EqAo���"�.�+��"z��}���������Qm��Cu��b<�ςǠbaÔ����5WF�P�F�,F'_��&���0�N��g?k�w�:>;-����U[�Z��ӗ9?Er��o��8���o~�)f����SD~��Z��4?�}���.<��>
ǖ��e7���/�+nX�鶃SK-��7���_�$���P
�����w���VHHH���:��l)��f/�/�[�w�(�@|�?
o{�M�<݆��u#�[}��M��ά���7�<D�p�Hz�E4��SYC/\ۀ>9�1n|�S�;4j�h�8ydY��<�w�	��@V�-����t�
�z"�)�mr�KF�@u�[�ψ~�ٱpV��j���~G��":��T�6W\�Օt�:A4�X���š��W5�-
����v��A>��0��+�>	�,�Cy��
G��5u�~������g�5��I�N2\����:߈oj�:�ד��U������:t������ C'(� �����Fw��	���t.�j�������o��-8X���5��`V:�*�	�%	cv�%��ΧY9V`V����X9��3Kd��>MI����Lf����Px��P��{�9BB�
���t��r�2=t�6�wCO=O�٫�G�+d��r��4o�yH`���%Cˈƭ�fc�H��+GB�w-�^�P��V6���T���Jx�-7��C����A�g����{�׾�NΧ�Br>�~]%%��z��p��ʿiQ"���ì�c����G�6�QBe��Y*C
�]q�(`�z8?Јђ�M��0�T�&N��H�lM�n�ώ���k������"~,-�m7�ʲ��\1�._���fe��S�9l��Px y����^!c�;s�򧊗��a�n���(9��
"ԙ��PN��O������#��r�%���<ƎWk�I�4U�b@r��A�P��F���<uz���Q;���o�7��J)g�X�|�*=� ��M#�}ْ��>�jh�v�.:���pn������q��_�O�X��c�
�����u�!�~��ڹ{S�uM
���$�C]ޗ��q�o�m2ܣ��^�*�`�h�L����IU��1�h��[�͹��������>nb-�5mIRNTK�
$�c���\��A�l��p{�B4�c�q'^Ttg���QE��Dí�b�w�
2�s��u\}��w�֜\�gn*~��$�e���=�w\e�<�@��Ӗiw҆D��A����Dq	b�*�����,�Y��F�]�Z$*��(���k�;���)��W
C��m�X-��W�	/咎{�֡9�2
�?�aXZ:[�s����6��Asha
q
�ƹ9ݚ�ӛ=X���xȔ�����,��r��`=�ƍ�a:�����@?K�Ӹ�n��	78�����F�|�<����4�ͩ��)�x"�&XT-��*%D��=�o)�����F���&��e��ф}((�#O9�p|���<�H�u��!w	5����`kkz���͸>�=�q}|�=�uw����B�I����=4s���ԍ��d�vaAdЋ�1z}��X�@�8�)��(^B�'�*�J��ӆ:���\|d[�Q�l�(=��Gl�h���*�	!׈w	��<�4b�x���P�}���9���`���H�3Q���c���a�?���eR�2�&�u@���� �����=ۅ����SvQ;��a�W�Q\����B-ɀ1�^C2=��*=%�!��|M��M���t^�	�A	���I�#�e�|�mQ#�+�R��&��#�A髄�ʜ�J�,�nf�T[����l<��wp/i2�2H���'�2���<^��L�C�A�@`� cF�{�c�b�;@�h���v$�H�<��F5E�7�3��`�s���,�9�13�C�
�eY�{-)�f�����$I$��/�r��WgI�]�nf`���8�#������29�1ۄ�L�u>S����9ѵ�Ƒ�?d;��a	q��ډ����'3[O9X��{0!�!����5q	��ޗ���.ʣd��ܕ�CK�Q|Y����d�+�q�
.Z1C
���P�ev
#WJ%F<�JΐTb�R��sѹ3ʝRC9[S��	�����o{+,���_uOdZ
��?����Ȱ)��ӽ�|�q��m��?���^�³W����Y6Z|ϛn����s��SG���o,�e)|���`s�3]09�Id��k;C��>����9�}��8�~�K�����~p
^s�q��S�É�)샃>���;�&��p��K��L����4�P�g���N)�)�]���X!��r�<���H�0�;��5!�7�8w�^�p��<��rZ^-6i���%:��e���\tܕ�8I2r���KG�F��|��u���ݤ�TP8�r���>�]�c�o{Yt#*�J�o�O�f �S��e���[�֖X�[�|e-�����R��z�j��[��
K�P�VQHZN��ء���(���K	���A�Ί��9<,⃊%)WC��:s�A�5HD��FnX0��`8���s�w>:pA�Ń"(Hq!�ޞ��@=74�x��
	Θ[�6T��#᫤�Ex���U�V'�s� ��ɉ�d�nH�-( Qr҂��%�x�
���'���K����{�-u�t�Ʌ��8/�ģb�f�0�`$�-H6)��\���~��
�嫫��jBxl�P�N0�h<����A�d`c$|�Ϣ�F���$��,
?�}�����`��Kk��~�g�������	�S�@����StIF�D0�D�B���6p��[D�;2�dt�ÀԒ�䁒�p�t)#1d(Er�ۍ����@J8{g�Л�X�ᘣD����ˈ�v�&%�J����B�Xg�9q�zX���q�Xo��&�ĥaB�
��TOü�E���t�+#U4�\���%Rȸ8�d�45���!���B��.gZ��x7�x[��\$<�k>Zyɳ���T�hQ�Aա�㡧��W�c{��;�p�am�js"T�ph�=r�V~����y/d�ܫ�I�I����!��F�G}��~���Zo��MN(���Uz^���}�����RO�@z����.�{���f������N�[�,��3�9v=("��/�V�Ң6����`�I�q�Km�k[\o���@���oB��GI趪�o*���x�x)�9��z�\���fz��_>��������Cpt��S��Y8�k<D��p��,ϴѠ�`j�Ñ
/;z��
��|���c�Mφ�)�/(zog�w��n����M�wR���.��U4����ر�Ls�9_���k�� �Ai^V��XT*L��N{A�ݿ��/WY����M��h�W������E[:��6�6=�I)jwD9��[,��N"�DG�X�3�ӎ`]#W�]7�Gh�8�p�=�0/�����)���W�v���gy��"��!�V�̀r��T���hD���죞0�9ߚ(�8Ż�P���*��{vy�z�5u^�&��P�J�#CQ��r�	��S�e-5S�θ1�w�-E��l���@�I�]X��0�=T*Cv,�>�빁�N��~�y<�۝�Ѧ�
�3�3����^k��A��e�E�}���`����ʼn���27��T�~�?���K7��.tUlX��4�I�V��e�\���]!+�~	�-@�"�1!�}��^hc�Fh�(vSrf	��ݝ�����@qO���W�y��@�U`���=��N�m��	HJ�*l���6�h(��4-h��Xa�҉V͇�e�����a~j�N5 �ٚEv�����N��kCcܨ�	�db
b�X7���^B��p��ȥ!}ii���8?��w���\�3p���<#,Wd&��Eד�A������D���W�%�0hp�}a���iÓ9"��=�M�+vv�t��}F��wsZ��C.��`0)kۻdwa-�%]}{�/U�$K�3�XD���3�oI�qC�N�X�=���+r���^����ҺmF���R�cW:/�{MO�52��@�_답���;j�#,�'ԩ�r{�;`s�p�T�/��
:#d�i��=�-(���G��^w<y���@|B�z����[��&���(�J�A��Rg��{o;	��?}��ʀ���<v�2�9S�6;v����*�~���S�9��č�ޓ@���]فm4�t��e8�;vk��U�c?��Y���wÝǗ����w���𻏝��dZ��9���6W282�����aC4���o����#���9x��Ē� ��}�����Ĵ����,,O'��U�̦�!
�wp�0���������$���!���.{!�	�[ĵ-8~5K�/�SҼ+s~W�v�B�ng�}T��j�;=��H_���'�.g�0�+ȟ.��EM�&������|W���������[�P��%��P��c�bJU���6bFT���x]�$WY��U���g^۽����쀊Q�8$/�<�wMZΔVd�B9<(Q9Tƌ�c�VT,i9�Z���rwP�=4����…��:�FSEܔ$XY
Ga��F�7n`d(�oo��D�����M�[��3��\%�2Y�U0�w_'q�$���H�$cGKlK�j̡���-�<��#���Z�3��z~����T�nzЅ����_φ�n8��A�J�w#��h
���f��h>�J��B�s������~�g���ٲ�
2Q=a�%��o�F`r+��@�l�
�C��8`;H`�����yR�;a%�(���w�>����}7&��J�ѧ���'�~�o�5x�]�`��@F��n�NG�����S�B����4x�����
>CI�հ���,/q��X�;f.c�f���H���Ĉ��B���}1T��y��,.���,/-��D[L�pe��'g�2՗֢r$߻wL�c�U2l4�~��IY�AcC�F�b3fJ����e���3��L�i��0\�����&2�}2����O��+++8�?S�׳ϟ�_��)�`4x����pdi��璍EXdA�V��K��jD�/��x�C�o
7!<Ѯu�H��Q�}R�Vo,B�ڤ�6���?�[ƫ���:��g_�-�=����ظ��dl�	})�	�xfPAU�J��/��\!״w�`�g�'`�T�pn4��bb�*�;n�J�f�y^j�&�!T��#}��{��t�<�Q��8"`��n׆]�_:p�s(��m�76�{��B�*�7./��UXA�~{v�>��Λq����?h/n�^E��)ܳ�h�x��U�㽎�����p��p���;N��>�ܲ4���6���И2���9�7;�t��)�!��]��9���m����J���2��-P�YYV�zh4�<g�׊��jbZ��H���1��#�G�����+��ޅcG2g�ə�(P�vX���B9鰝C���͠\�I��FDM:�t
��F2ɗ�3��1&�����j�
����W7;/Z��{��@�!�<����tq0y^��c�܈�y�(yw�$�����w��5x�*T���A�`�Z۠͠���]����+Q@Ň},9
�K�[��X��Arp��`<�u�9\Ib���=�w_���-��]�O�fC�`H�G<�G͛�At
�X��}�Ɩ
 M��Du<g}m�w�T�ݼJ%G>�T�plla�G�|��zٳZKtL[��,�xJ�c-i�=��nO���4�˼�enP��;�uqO��kJ�.�Ԗc���r�&e�^��N�P�2�@)��}.�3�^��N<�&�9s���'��	�o��.�I����:e9�-���C/tӎ�#B�L��YR�,���g���q�߱\u�A?F�F�`#�EY�Fo��/q
~`�({��ɽ��}0��r-Ä~�@���g�Ҁ9#9��=H\!���=�������,ci�%I�}؛<7�r��(ь&l�p�-��z»��C�z�%�sƒ���s�DŽ^Ύ�?��dx�K�Q�蘘2�"�,F-`W�&�3�L�w�rL��Ÿ������u���_�E2x�Z�<��1����X��߆��@5�e'p����Kk�pb>�L(��{Y��ԣ����m�Z��$�qw�x��e��� ��g�?��;}._݀���[^w�;#��� Η�'�t�|��p��i�߾�
p��2<}q�����SH��s������M����x�P`9�������x��p|�
�u�ro?��p�jW��\� /{e��p����ӏ���������̻�?�P��_�
8�ЂS7��8�\؂�?u	�y�Qx׽�`����g���|'�����.�?���f_u�H�>���0��R�wI�@P}���\���v+���A.����v�v�,*��`�yQ^��W�޳�2�Ut{3�h(߳T"�2�_�G�s|Nh_���g�7�	m�q�p�d1�����k���1�_��:������5��T�0�*��{#�}��+~�G�p�#C9���";踵�*�Ȏw������d�0cEtP�����wg��� c��O?M9i9:�oh?�
��#G�8���"�t�T�h�j�6�0G�5Y�wv��;C��Hx��w��Y�bO�`[���i�v�Be�C�H �Y4N�����Ibk�s�	u�.��7������?��#ϛ��`�(�T�
o{�������W�J%Ij)j�,tRf��x��h�P8^\�/�����ᵍ&Y�g���3�:�}��$0	�u�)0�J�I`?>,5���\������m�?�{~�o�=x��ETұ�hx�̳��?����������͂%�@����	�}K���Y/�m�5�7�r�F�xWxT�
͓��K(� Jf&��P����$�E�d�._Ya�6�C9����<x6/]aA����05�f��54��<ʙ�U�-�b��J��T����bM���(
}S^�,������B�:�IJ>����L�E�r����]�q	����߲����K�f�
���>��?�M�%a�Zz�W�b����2��)�
n��&y�e��b�s�ڴ���9������Z5H�),u໛`�S�~?�_c���'}��פ{@n�/�_Oy��V7���B��R(�׼��<Sd��d	��,�>���@Eր˛]8�]�J�g?�Q��׿��zw�O_x^y����!(������4\ne�g�A���9��“�������&��Λ�j7��7.�2~ϡ%84�a��s�.�:�w����=��}��~o�#@�d�{�rİ~�4�Q?��u����)q��������ܺ�VB2X�;f
�:T���	��zu4PQ��=���ScQBc��=�u��p��C�@\ZNi�����U�]�����0쳨���F}h�D�"c
��@���3����!���7��8_���ƃq�#V�ռ�Cb����2��V+�ƫ'���ժԯ�~�3�,�W���K���z.�NK39'�}l����.U.�+u����Q�_:����@�Q}�d��ļ$xZ��k�xĢn�$@��B�x8/�U�(�{�9�/����A�8��N�޴)�u 1npN.Zk)�%9�yK����3��S��и�o���z�U�Ckx3P6sK�D}��"�5QyP^�\0�,�wJ���lt��'�K�-��� =�քb��

��	iz�FC8W�<�L�r�[Y�J�hٹ�W���^�A��N"�B:�������ɵSn��
djHQ:�D� �^ջ��B�R阜o\)q4P�?E�Q��8�}+]���<�A��Hr�4B�υ��E|oFM�|_F����љ�)�,x�E��
6N��F�8���k�6q>�~H�J�h�
ofJ�]�ղ��W'K�
�� �\T���z����"nw�=�'��}\gIVtd�����K���{]�����}p�y+,z�s�j�Q��Pr6�rv�}@ڝ��m�s�s+pve�8<��ع��8��7���#�O}�^{�9�֡Dj|����O���W��~���|�+���﹑�9p����	?���7?�4����������	7���="<v�����q�D��xn�P.f`x�
Ƌ9}x�<��Spe�m|'?�G����j���g��<Od��2����v�!x�mG��^u+|�k�`�PZ/�"4��~�pa�9���O����u7.��}˭�'�rb(�]�f�O6�A��b�*���_��4�B��I��P7��X,O��rH��-�ǹp��o��ˬ�rY��s�dM�J��}Ho��|��e�t�q���c���8��BԜ���b�t���L����]ڂ���&�^JI.sn�N�?Iǯ$��N�_�^1>���O�.:�>Fy<��E}4�HA����7���oB���JgE�&�˃���(�������Uc��\����;��Eq֔��B�`�i]J�0_1|x�x7`#ς�Ǐ��ѐ�HI�����X�=S^��+�mN���z�TZ��3	//����L\S*\���"C�g�=���!�݁�A3���/�;����AH��sHB<]H H��
Dž�+R��-����]ߣ>�29��Z�k'��Rx ��`!Œ�Œd�'����&,//�����=R��X��b���.�?�;~�)���O1V�Ig._�����|�7��9Q���b%�<N,YS��	Ko���xQ�~&�P6�IY�����Se�6픒�zI��D�\����A�=C��\Bc�&�#R8�����P�h��GQ�/�p����-�|���&�NIa�Ӽ��/IJA���Ie�2m�P9t�2��4	'�6Q�%X�R�].�5�Eت�#��!H�F�-Q.N��H!�5�y(Q�
Q�DNq��õE�p�-'�mo{+�" �o<
�����
��o��Z�ʔ:�w/}/ ?�o�i�Y���
o�BA~+y��5�ϓ�}��MjӤ��$��*T����~���-�(�՞�:'���V�I
o�TWbi/�y/��zs�N{I!j�=9e�fg��6�a�/mn�6.n��mʖp��
���E8r�$�������30:N��6�xO'o>q^~p��9�b<��ø<��
�(G�t��g�{_�
xnm���(c<����අ94��Q����1����5�{��#0���s�cg/��^~܃�D���F�R��1@!./d-+��;��y�Qv��(_�Q�,_x��ęF��Q�e�(�D�B�*x	�7��@i�ϛd,	҄A��W����,/����;	�f��뼾S�@���=���_rǑ����i�(�azn2�(�(�Hƥzs4hmi���OgO@:=d�)���<�c�)�)�=�W�A����gTV�+ʓ�í��浧a�ƶy��/G���L���QD/�Ck��ꕰ��w�1@�<�t&��bZ���P�ͣ�hM�?Jу�(R��4�Fy�^�^��I]��5җv�%�f�=��:Q�4��m�HnJ�E�S^�W�����IA�c�1�;�#Oti	��˽�E1f�oL
�o@�;�FX4�:Jٹ&�N���)2��"�ك�]�P��O2!G�Кi��F0Ny��sΆD'��X� �B��7��c��b�����s]	s�$�TƑ��&�c/4~���L
3 n��h~qd$]����	�%�
EI34�~�Nj��$H�p��bm+�lf��������}��9r.����gtM#�'��pƈalm��G���!�@ku��yY�_�M��2�F�Z�	�P���+�<[�av�L6?m�A@���ퟝ�	C)oKqߪ�Z�[�ִJ=�҇���d[?K��a�.P5�P!���7�}��;=U`'���4y�Y����㼑=s���reɵ�-8�|�<;]�l�K^u�1���,����ﳧ�ܵ!��Q�a[>��
<����{
�=uN?̲�vo���y�,<rn坦č�5�;{
�¿�5��7�
��|�����c������F|XI�����`��8
�qk�685�c?)/ݯ|�qɟ����N>��N8�������~�1��=}�>�we�����	�fx��o��G�9��chDy�.�q���-������-���r��pxi����������Wz�t8�y��a/��\ݽ�-0P��U)��O^�^K'���PC$і*4Ál��"C�+�U��&'@h�+�s΅~۵վ�<�M�\�5� 7�5�f̜��.��k@l���W�/~+�{3z��u�:��%։���l�[���j]�oU\�zm�1+�V���t?,ƒrvh�')'J+2�(�h�Gw�ul�F�;t�PN����,��
Ew�:%	��/2tD
����S�G��V�MK�o
��0�fȋ`�jJv���!J+�@����w�f�B�(k>pR=��#y���*���;�߹(�GA��Ă*~�OP�`�#Fh(��������	7�x��^)��"D�gѦH�)S���t���SF� �O"o��D��`�j�_ST����X��>\.�l�է�l5U�a���S��ЄBKZ)��[�A4�w���7~����O—�:
Q��pm~�?�g����ᕷ�F�I�r6Y�$��R�8�RT��`1�)�,p�R�!��1�UT�.��j�"Q�W�/�؋�{J�jNNM��yޠ|
7}|vI�ł���5L�y�=<-y/�Dku�M7p�sNة���yP��`
�`�!B��7)��Qa;{Wi^6�@��B�b��	7�)["�����	BQ*Q#6`,ة���jN�p��o�=8���sx��i��?�3p|y	^����S]��3N^\^��V�p��6��6�:�~/��������@�*�T�׵{�M������aB����'��z�U��������k����'��ږI}���N��T�K��q{^��٫�p`yZn˝&<�0��m�
nE~���gP6H8�'>� ��uxǫ�7�r#l���f�[�>��܄r�Km���.��+�pW�s��:�ܺ��c1;5�hX9<ׁ/^������G7q���<A��s��+p�%x��
��pn\�ྐྵ
�~���`����M��m���1@ɳ�zs�z���r�KW����&̢|e�?*�YL��\D~!�ѡ6�$:U�QA�F�	ʷ&��4�J�А�`�J���*\�����,玛��p;�(�vA�ٸ�0J�B�1
�+�1Bc9Dtf%G�>ˆМ�gyc���D�#Yި3�#Y�(F��G����sX�R�|9J���٧���:���`�4�w���,յ����xnPN��
7�ڵ�=��~`��
p5/|��ϻd`'5�Ah�����wA��2('*&Vv_��s��z��������:^�<�]P���X��-�Y"=@�w���{�ި	�3�T�wM�l�>�8�b�R��� ��g�L��\i:�~X'�<"zEéa`̈��YUgŜ�vk��$	�m<=�|T�3ir��/{��"Og3ఱ%�Y���"BDt���
�#�%O|���(��S+��V��i�o^�:-鲬�����ɍ";2��~o���Q�MуQ_���ɑ����Q�@�:��A�86�n��#��q�{%E��q@ahX��|�#r���nqN��#08�hʽsv�����i��
z�}P�R�_�9�l>T�-[��e�����8i{Y6̃i�IJ���|��B�m�S�=��
��XΌ�
@^�K��w��8qt��/�6�QO�ì�01��ӿ��ƛ��ǒ�!s�=>��x�ً�]�x6������[��������O#	e�{������sfy��VG���O�7���)��s��y�
x�Di��ψ�"i�D��;�k����@�?�yO�bʓ1�IT�g���i\��8*%O)�[N�Ji%�:q�?��
|ⱋ���M@(����Ճ��W>��(��L��3��6L�ݟ����g�SI�NQg��W\%��^~�w��_��/��K�Ǎ�=5J�\E�CA�*s D�{�s�5��S�DH�O��b�b܆]�
��{\���!����[>X�js��pw5a�c��̐���uԕ9I�мpo�"jW<F.:)�O����/�G��%��[���d�:��zz�$�Iu͋�+�����X���">�8���-�9��Q|1��@����wPT}7*+��rx�_�
a*�у�Z�r�� ���bt��Sfq�sT� ��.4ttnf���Q�2���y#��y��c�^/���!gE�@m�l�249A�s�
�>K��1��f[9�GS��G�:��]����;������	���c0nsh�
t����r�pdy�)� Nfyz����j¯$K4o�4vb��
)X1q���BP�D!�R(lnz�h$F@�E�s�h���A�b�4�2Gq��Xc��`��~%�������ßz$D�8�C���?~�������6u�}�1��/%�"P6l����m���4!b�$b�
�J+E��	�*����'��B"<��IM��lC���ٳ��\i�Ȓ��ÇYpl�Fw�ȑ�#��k���I��i2 msn��J�և\���*�?gd����JN!�6��
�x��.���:��VN�5s�BNn��*��B�Z���yx���a0cus>���`�<=L!_�_��_�[N�,M�p��<�I
u�_+_}e�=i��/�+�3\o�;^����o���{U��t�굓ι^&��5IP���x��{�e|�k��u���qܿ�s^C1Pw�ӗR��+�/���Wv���4�������䚇�
�G໇k��	g���K��o{;}��c�C�����A��꙳0ۙ��[Z�{��.�c�����uh���An��E�e�!������A����]�ށ��)���G�-C����\��9����px܀
�*_vd��݁�{~��¹�����ԧBt�
o�߫-� �ՁA�HqnoED���*�ǵ�B�W�'m���!{���	H"�{��B9�A��F�
��G����'���XS����!�>�$�-�`�xm6v�0��ޱ��0?=�T�@��'~�F��0�>V�ĉ��ˊ{�ɀ�_/룜�29�����Ɠ7>�d�8Ҡ��L�Xǽ4ΈY��*�ؚ���쮮�D�B��T=��S<��x����D��6��qX�z�A��W�ۃ��yxQ�:KD�v{6��$c�=�;#5
(i��m�r=�1^�Ɉ�2��2��x���-v��*`��; 4�.��	Ez��J��8�Šs�'��W�c^���$�$@��qJWl�R����hl�J�~����㼊�g��C�
�?[btI��|����Yf��v_d4���,� ϕ��(���f�C#���lm�{�x�3��k���M�H�2z0�ùM�,P3��(6�n�Q�-�H��&#��q���\#2�%�~�ό�ɤKz~^2�!��b�Q� -���@�y�������?�$'և|��)�,y8���w��,���s�%JC5
�b=/��QA#W��s��TH����%4�%�M�e�`zj� ,0�	��ѹ/��qߋ���E㴿R>�	�xNf\�y�%ꪐI'���5V�2�C5��ڶxu���
�ڗ�b�N������Q`�)rI��I9��7ˏ�yy��3���A�?58����5{����{۽8�pu{���T
��W �6BCA�W�Ԑ-������x�K�ɘ@�jU�lO2ZO'
`�bZc�0��F��y��Ix�����u��8Ki��u�"�~�!Kt�/ѳ�����87+�S��'������k,&L1Hu��-	��c��Ř���#�0��
�*��>���B�`o!U�.��@���
�wU�wUU5�G?h㳬��9\8�����w�~f���a�j�ju[
}�Q�/���kl��ˣ/y1�]��ֽ��:]~��MQ[��n��oF2���?b<:��~T+>8@#:@�<�R���kcc}W��R��>�=�~�,i���� z���ܴІ�Ee��!��6c��&���™�`g{N�x��h�e��L7%i��m�1F��4��ᗸ��7��8�1�tNl�S�Ρ�};O<926v��i	��^d)?�0?��,���&���M���g`�6�>��ĹK�之p�r@†M&��JR���0i
_�j	�ru���ѹ8y`�����q�'ј�EHE!G�dU~ױ,��zj�ǎ>N#@�;�ϒg Z��|���a��%��C���\�J|�/�?�����q��1�ZZ���$䙰Aϙ8ȉ.�"%��D�)�x���2�r�3�L��œ�z֧�����3��5���E�ߴ�p��T���i8p�Rfy8t�lJ�H��A��x��	G�7Ê�g�ϒ��Ɯ'l�a*-sg�j��R�8�s�iI�Y�'}M�
�ܖF��D͈�Gƥ�8+���|-I<w��c���@��I~������_�>�G��s��+Wa��	�ۨ`��g�;�k嫯�mLu�y��:�����9iS���ֳ��9u�^{�pSזI��u|��]ϸP��
xU���Ͻ&�qҘ�
g]�~�S=gҜ�ֱ������R(��Cx����vaC�ri�	;=�]����E�	�/u5y�
s�rm�7�݇�o>�i�5�/\YeϹmT��yt���“߽<�t�"|���l x��Yګ��ۏ�w�q4���_�k�2X��o�
(���T�9v\�w���8=���𱫫�/<�4\��;�փ��?�*�����@���Xۓ�i��^i����1c�Q��BO{9�m�2)�09W�:�0
Q��D�^0�6��t����<��ݑ�b�HO7�b����F���,�O���a�	�iM23�dd�0AN.��w�3��9������,���o���Ts
F���8����J�Y���
���@����u�]v8/�K�О�٭5�� �O� ��==ǰ�r�;�(�װ��Z�����y�ՄSr����W�ig�z5Iyd��fm*9�詒;���B$,[�
�zgkpŽ-�a�E&��{��u�=����m��K{=�w��ȘJ��F&���N�6+�.�!8�D��y�����P#�%��4�}�}AK�F��
G,۳w?S!�afz&�nD�,�,�j#@�q-���h6�0��h�b|š��M�?V=�tD��hv9K@|FzO*�iL[�ڴ(� mX���h(���(Q@��<�>CkD����|�&��e��W�Dv8��g�k�L�"��UZ�\#*8�$��1�zf*��TS���^#o���ߊ��G"��h=H��9�2Yb�/MĈBz�DBeJ��y��9+ş�h�)�%c9�&�����XUg���:�oXM�>��G����6�#�t�����3s�'����5��L-#����  �x`��m_�`�d�@ǂʌ�[
�=���v�U#���p����(��Vq:�h���{����x����G��q�h�&:J��Z��^#t\T?�*z6d�
�i5g��Lǰ��t���7j�H���]fZ��5ԯ@˓�M��#��������O�
�%Zo�u�ry���W?W����;���\>�v�����y���^&u�%N��C=^
�_�*�C��+�nGti)�?�VL=�ht�v�(��g���e�ݻ�ey4��Q�,D'k�{8�z��.�o��yb
74vp���
y�z�y��l�Ϣ� nOqO�M1���r]A҈E~_�C�TZ�~���Z_�֗���z_�2	+�d���:��+vm�6V
�n:�.J+*q�G��t���w��%I9W��9��z����t:4n�J��O�*'*����0!:+���4����i���b�T:GHa�� o
��F����54v����|�B��z��x›��AMP�>aڬ���BU����d(h�)|M�hCX%�K��J�i��}U�)�x��M��_��E8{��
l�sX��b�'�P�h����I�"��h�8�aГ�	a�kR�N�Ch%"�����ӽ�T%�'Ta��<Ҷ�x�R�m�)�ǡ���n(I�Q�bj0�r����C#ϥ���ؙs�u� ��>�a��o}���07;����羠�~�3��A~
�AB#�>��z�R"��Di��#���z�B��4��x�؂�<٤`�/]���'�1�]\F�=�n���-�"ޙ��@M�G��82��Oa�R5��+p@���d@a#�ھ�ʽDI��Hi)�.�SDe���•�OV@rMdȆ(y�BE�s�Iڒ(+��,�s(�bL!��1M��RTS����_}/|쓟�'�}���ͭmX�XG{�)���E�����R��Pڮ�+{��1`R۪���s,��}���u�~�\gH����}�^�׺q�
Fu�%���6r�m�k�TK]=ձ���=�L�__
kE��q���&��h�ئ(��žq�k*�!�K�)P?猍Իh������Mx�ͷ�)�Y~���p
�K���3d����3��X�����:ܖ.r~�O<�,/.�y����'�4��K�S��ف��lOÉ�ܺ���l:i7$-��ӃO?we�5x�ͧ��/��I����}ď��T�y{�ݪ���w�iB�b����KN ��]�ࢂ�V^�q�/��.e9��
N`�>�e{9�SrM1� �3�2hH�C O66w`�ہ����C�o��M��LPv�D�f��#
A^$OL�ٙf���`k�#^�3�5��r!�gٻhf[�Ԕ��D�;�p4j����Ϗ�3;�8*�FO,��'A�ρ���?	W�?����,PV���l�dL�����>�*�B%/�Pt^����=u%��<�Yh$̭O�h�I½|�&�<��y���E3�����5{1}���]F���d�}�G'*��
Ros�d hKssH�
P�� ?�
�,?!�#��O�:�z��E��O(�S684��(��-��ϋ�H�E����j���J%l	���������t0�Vwj|q�׌oeH���%�ϓ��������pP}	���aQbIН��s^�HQ^�1�@���JI
�Y�,���V�T�A��s��NǼ��R��>G���{��J-���l�2v
�T�h��B�X/��
���m�^=�v%j�i8I�:o���^G�&�^�Q��� e^��r��qn7��}��ޣ�̞��l���1A����+��݌����y:B���vq����X���HX�E��\]5�8(��f8)���o2��d��ڢ?h��î���"���f�˲Ǯ�%J�~C����9���^����w�<�{9�|k�������3O�s�^s2v%xu0�7�zX��-��+��kD��J�7W�ҥ���Y�]�^��b
�lo�P�͚���V<�!,sPl�&۔;�s�1��c��+E�Un�ΠV����q��㿻N�j6�'����'���ȹ�����3�] Z�㽤4O�k�� E�p'ɡb�S�I�_u,\i,�k
c����B�����{�{����uƈI�D��_n��h߸u�L*����"��[Y��F�;,�}'c����˃�A47��g?�Y6|�_*��Z�hKXN���<�3=Y׉�©�D���D�0-��og{'lG������H���tyS&�a�G!@w"FX����<0A�x�c�CM�"�����I�l3WE�Ք�/Ӱ�1G��)��*�S	�3`�R��iU|��CR9�������J�WQ ^����|đ�@��ֱ:�J22��t�$�d��I^,���0�iwpl=�@�Ϙr��Gh�؀�ˋv8���w����O�۟a>E��z���p��9�ii^�Q�!��ȭH��E�7A�(�E�9�NB�\��W���K*8�~����+�k)�yt[
��)���`���زLu�ol�&�7&k����6���,M�94��v�(��,QM<�����Y~�b��b\���}a�/mg�]�x�"BO����G�N�yP��͔d�(�rx�L��i�PB�in6,�cD?hD"���tN��!V�+Z`\�F���e���#���ᨇ��&sVu�^�V���Z��-��_l]q����:�$`���O��z��6Nj[|}|���^�A|��6���j��_D��Oz�{=��$U�w�c�)u�v��_h�_
�=CI�NEy�DO��3��Pfhe���le2�SR�l �]�?��C�C��`qjέ�q��S�[�ʣ`�3�����"��ބN���u���X��l������q�Шqes6P^ ������Iԇ��ƃ��I\Ǹo<{m����|w��\1�O=��b~�ݷ�A'U�ݲ�L���c5�����)>�j�����iO=�!���A.�m�,�Ry�N%Z����kx0@�/%�~�^���l�����ǘ�v<�Rp����L���S2����Qh�EW �JV����)ZR����N�ji�ϩ�	P��)��?r���s2�Q���h��KɖI��(jloB B��3��$���s���!�F�A��LN�0x�p8xv�³O=���D�C�Z>Na�7�7�C�k��.c�"�H���6�*z4����B6��A���Fi�C���E�\�b�Q�0��'�x��!Z��n_P7D�P��B	�(�1�QTYV�c�8؏A����$����'���X�I�"�v��P=�F�z��O���`�?=m����)y&�����Z,r�8i��`0��s^�4�=k��ܴ�LA�
�u�:w�q��H�{=����t����;I�1*CDv�,�I���J�06<�'
@)�D�+ӂSj)����N�K�vz��a�[DFAi쵍�,M'L��B�[_��ǵ�����f�pd�&���OZ'i���ecO��͝�B�,K�s�sƨג�a�s��,ƀ��2�Vl'��f��>��uW_�'�$�7��„��ީI�Y��]�Րw)>� r��������y��z�Ϙ#��S`�\9���w86dT�lk��&B�輀wi���6���,�7v^2���uW��e�iR:�܅/��ﲃ��HA�o���$�R3%i��7���^�4�M~�E18��ʢƸ*�&��՗γ��C�Hg���`�p���+*�3>�d�~w�%��ŇǑ����9Wi�KRp�x���$nhm��id�)6��'�{��P�|�R��mmhC����.+�I��V\��������!�;�� � �AIv�G�pE/�OӇ���u/��ո=�����mk]�>2��ҏ�XQ��L��zm�x�y�u�n}�����&2lh�������
>�f� +���3ExP���b4X1��Sh�s�����Ay<�3;(ay�dZ�c��)�����á�Tȓ��y���>����@d��ʺ��
s����b���&o�����G��7t�/x����2e�I�^���[C�R5�$Ч`4vtQ\������EϏ{@�"�����v�&�*'$Lr�/���?qr��D9",�tX�u�BI�#/�X�k�1�0䔣�G�09}H�*��=�D�!�ӄ����5�/�����Nރ��Y��o�F�j�$�_���'��+ɶ��>��r^y�I�R ��B!���5���^�O@�5�����1�D�
�7s�$Ã	�i��CJ8�T�f����6|�a!��˗��vw�7�x��§>�Yh��G0�~"��$�mnm��6��fП�4�ǧOyH�D�-�cyx��@&$(�$��x���/F:Мz3���U�!l(4�=3���z庵Ć#��!Z�V"�N�Ƌ�)/�iH�ZR(|ދ��ađ*x?R�pG�D���3�����Q^ =	 �3`T�$�nC����~�@��{�����u���@��ig]��S�VK��v��+c��U�Q�#{�Q��aB��s]�ӯ�/�B4�̱�E!bgRpqo��! �#�L-���?���9;��3���Z�w�4\�p:�-����>
�:
�=�o�؁G�^w-�M���(<{�����0?��lw/��A��8=�]��r���p��8�r
�g:0�����{�S����a�
��@�ۅS�\����:�N�yx�'�������\�����{�2"�	�)'@4L�kڜ�5�{�
r< �e�36`8��d�_|֔�l<  ��:\.{����d���E�Sb]��>7>���.�a���9�q��
|6PqQ��qcoU�7�(��4�a�uE�y�!h(�0���^o ɆUѤ�
�� ZN���n�r	룜��y�hKQw�p����l�3_�,l�(��m�7�^\������i��=����Y�-֯����=S�G�\��[�W�0K*s3^Ǯ7où@�N���;ީw9ˊ49u�5�+��?����@	�x��~��2I�x��/Q��
Tr��5��I��p�(-~�P��8p4����O䔗k�>����3ЖHʟ�NQl$I
/�\���F��D:����	29���W�����	����U���rʻtl]�ܗqɅ�M�������n������Yp�Ӌ��!�����j!/�9���⇏���BNp�8fR�K��815��et�[�q�hy���JAp����D�kx��j����Y������i�l���	qpыE�O�$�E�VC(0{��'DcE9��5�6�-ڐL#H�Ƙ�����%̠W�|�&M~��<�x�,����y@�y��gGY�c���ݳ:�~�Q'v�ES��<�&�lyU���w'e���%��ӫ�YU�ur_� �?��I�B*��rq�z��(�;���&��AAg��&����6��z��/����X���F2��)���s�]E�|hq|��$�/�q��}�����P���G���@}_���Rִ���:��T�tJ�֗m���p4~T�G�|l@����_T��Z�T*1cG��qkj|��QZ����a�3y0LQ�(r;.�=�幡�٪/�_�~Ū�9��L�ǯ'�����k���N��K���J(i��sr!;��EvX!�����3��?���t�)�Ew�N��st2v��Xt�}����_�� �˗/��vl�TZ�$�7t���2�n�gX��&
`[���B�����P��ߞ=��&WLD^0(Вl�PS�A���<J앋�DQ�X�9�@��5Ja=�T�I��Ad\�[hp�L�CFR,�l@L��"���=+�<��`	g��sM�D�6mjf��0�U�B�&�6፸�=S�KB!�����e$�I�PV�+$��i��Y��JvA��>zam��r��c���F�������̡ega~v6��iO(�"*䙧1��l�p����^�x&I��XC�,X�&O<��7$j��(�5po�r������
:��M��<\E�H�Ô")��@td8�q�c�
(A���:�p�Q��af�!�����jO�	
�]�Y����+p��Cl|`+'��)���l}Gƕ�Ry�d� ~f#%OO��M���x�I�d# ̛���P�BN>�m�M�Z8$�7�x'��ٻs4�)^<��1�&%5��I3��p�x�Ց ��`U��&G�*Ӝ|����),�59����Ws�d��T�HL2>��TםS�'�uǯ��ڶI�^;i�&3��Ϥ�U������IƂj��I���Ӯ�o�z�~�;��ٗ��a�N��^[�o���R+�5Ǻ���AS��)N="�	��i���G�������g�o��$�q�<��_@Y���<��3OÁ����z����bgf�:��͙y�y�q�,ͤ��O�A��6vFh�h���Оi���ϣ�@���=��������f�w��U�gQv�j�w/����A���/=�yx��s�=�~5ܼ��.�,Q�탫�뿓V�>��R1���q7@��d  
q���@S�-#���;�'wQ����M��h�B�e	�)vPNn��W/��m�C�5�E !�hW�������sdM:{y6�����e
�	��=��9�P6��������U�eiP��6������
n�e"6�d�3`��I4/���@5'H�!Y����S&\��E��
!x����M�z�"L�/�4�ÜƐ޳ۃ��t{]4�QT���;0�wdg8�Y�y�wnv
�)�=}��E�J�I�r�PY�Z��t�DJ��}.��u@X�b�?h�6�NizE;/���)(l_�B
��q'�{�f�"F��J�W~�2\�����*��%�E�-�#M����F�#'�N&�΢%|���d�
�G�#�q��[��"8W��Z%
��� �
�2����{L������C�ɜ���#��n�C�L�%1w����M���u�z��C�c�=�/�X��|h�<�I��`%�A�H@�
_b��h���<@I��Y(b�y��'�K�=�� �;�f�2���0H�4���a" ����qfF
o�6��‰�
�4�gI�,���0hM��y������^AH3V�Ys�
㣹����ؠmJ��<���(�Q!�o���$�u�
o;{ˌƦSU��;N:��PRC�s�(�ƕ}:kFZ:f㱧��/�/�H�'Ug�2UWul�bg�4����~',l�{�A�]g#����pIT��ƽ�+�	�^�_��r����Fh��#&�a/��Q�kQ�C��<*�t>jWq���z��ѿ6T&��5I4~,��8��"�}�`����TT�'�)	'�qD���\jF�12~d�B����ޠ?�j���3�S�=O7 �}\?ч��y����xn�����f�S���MGJ�9���0?m��9Q��o<8�S`��g���BNq�I2ٞ� ԯ�u�������+��d�c?�cp���A���˃��]�x��ͅ���"���ڊ��O?�5�#��FgE�2zп#G�8R��Lt��e��n��@�E���X���V}jS�)�hæ��$����W�tjs[�y�/"�0M��9�@<�S����Id��E�Q�8�ƙ���2�U�HQ H�7�2�('c�T�����'`��-J�N�=���㦊���%M�Sǩw=G�8��Wh/�^Ȯ�6hn�#0�Hz,��Ah<g
��d�}2�a���DE���lgj�Q�������
J��o��x1j$�E�
9�$<�(�,Y�yH�9�v�Y��(ҁ�{�{�7�
�b��y�p�<�s�ͷ���"M(N��j�<�����V� ʠ�
bJ���a�
h�:M�?.*LS���>R�( ���ŋ��{_�4���r�fN͌��XX&�H4jQh 'V'���S#<�{'a�!�z��x}��uP�sϒ��"oRIf(���<�E
ojQ1�Ttj����Z4�>)B��4���%+�I��d�O����:��$�Z��.�Mm/ d�e?��eԨ~�t�}ߏq#�W�Q�*T��@�ܣ6^�`?��j{�ƪz�^m�4NuF���Yw�^��;��\�s���i|�I��RrZ���/�>�9�9jQ#���c����#; *��k7����ᡳ������p�c����hM�z�)8�<���0'����?h�Ȧf���]�'6W��E ��wp[�i��kp��2|A껖`��2�e�g�p�p��!XFc��f�Bg:��ÍK�"�3�9�ȅ5�?��7C��hn�ߺ�Y��~?�gx��=k����zph�v���q����x�^�{(�R�kp"y��s|�}|l�f����q�V�r	
�o�82��ː�8ȫ�<����,�Dr���#����I��*\>ϫ�C��Y�[�, �9�ha��98GZ�6lmlp�Ie-���4���8M�/���$dž��(�l�{�<����@8@pT��Ҿ�r��BmE��U�[[0�m"y�"�w6plp~�/�D�;��/~u��)@ /��;rEr�2���=8<7òU�q}Щv�˺�Ǻig�@���yZ�$&�IȗL�?�5^*.��V��W>Kͳc��������	�a��3�N��`L!E�*�͑Oa�:w
�MR�*��k~B��G�~!ύsX�Qt�DzHG:�h<�/ɍ	Ч��+8��edl��tź�s�7����hP�^u�j)SA^x�Si��9���@i>LJ���
�e���G���7�c��L&Q�ib�5H�ژd.@T�����"wv�F��3!]i�g��@�P5%�����s��G�����"��P�ㄭd��~�`��h>/�m4�5ld�ܐ��1MA[r�T�O��0<P}F�MƁ�s6
���O!��#��|xr�Csx���`Z�Y��Q�s�y9As��ܝ>8�;V��?�ƼT"��	���v/y��%�{�\�
��5���%�Q�}��E�8c�p��E�3���a �]���N{ϭ���踘�4���5���4���1�q�+3n��bH���1KtnZfl��KRe4�9�Ǽ��]B[�D����nADHʳ�G��f�"Wdm��39�խ�GLJ���A�V_,(N׺"M���K[W�v9_@�!V�G�1����t7`W_�F�p�e�(wUQ5����8�l�p
�b�.\n�A%o�F8�}t����*(��z�Jr�>���ǰ7D&��X.zX�l�����Ϲh�§"GG5{J�"���	&����9[�\v��h�_��5e��B�[��o�b1�i�~���!�}�vt�����Uj���Ӄ����iΎ`�8t�'����a��-i����ң��#�~戎3gΰ��
:�4ք���˯�LY1��Z��^�<���93��n*���͚sn�fFa�T	i�I��A����$��<���54u��`�':V������$�^_�FMP$�n�91@��T����yNI���M��u�>l���o�}�:����!�"ox�}V��3��gZ���m����]%qv�/�DI�
I�@�>
���X\�6
������'��M�fHQ���\X�K��b=S|��t�;�`s��簹���$l�I�n�C�'GҨ�����c�r'b���"`�ꠐN�ď�x
��Y�"���H�O��E&�6y,��������	py�PJP/~��?����[n��"]h3���/�>��h��v�矻��6v���@��:,�ea��.�¸k�K��AC%\�o3�
���h{5�	���ϟ��� ���,/.�ʜ��
ع%
Ԑ�L��G��A򂐐KgdI�Z�<8d|�.��y,�GrY��&�p
6ސ(�2�Z��-u�q���ו���"&�S�ƺ���{�Ձ�Ր�Lڴ'H�Ƌ��'�#�&��%~=CG�a`R={�WwNݸ]�L��������I���w���@���?�2�ruU����02I�s/��7�K��)�ڳ�G<Wp�������
���>�Q���S��w��xc� l=�����q��C3-8��e�{<l��������6��X^��Gp9]�׺#��~ވ�F����:�χa�@n=r�t�
|�
����^���ll�܀ø�\���ోk�+�{��k_��+�%�C�s�f��[��g�ܽp�<�l�0�43{Te��}��LStGFT��A�Ԉ<����C�w[M��a��4ɑ
�#z)�	U9��s�z��8�ߛM�F'3�"�sD2�}��*܂"�9^�ܚ���6�mݭ
�?��LL��GL-+@PëǵD2Zp�H���wzB��}g**��G03�9#.���U�_�eG�!��D;:C�gP�4����؟��?�����=z�<�iHd� A�	s�}8�2F�fV���t{�~��eϵ�
|L��b��Ǫ2[Z�@��X��1�0����a���:��Q�ѝXB@<h('b��f�R��a@���Ey�(��Ö́╆J@Z*Y>��������OOM�Nw[�
�gЏfGa�E��\׃�3	�JE2l����
�����\)������@>�Kj�����<��%���$�u��_qd-��<#Fd/��<#�W"��& ���^�?ʸ�m��D���>�	;���Y��-bHB@��q�m��b!�V���'�B@��=#��9����E���<K�t�Ero�;"�㙆*5|A1�#ʹ����D
�^���cG�άP�����o��h�7�"��m�P�]��FF��
����V�Fq�tjJ?C�}ib�I.	�)���F"��=�P��-z�Qi�&��D>���\B�
�O��R}[%��4My0H{q�j)�B�D�t|�%N�H����b�����aD�NX����W�>d2oKz�P��@$[��\�!X� ̌�\`#�8���n��9��e��=Qd�șiC��Hd���L��X�3M��m\Ԙ)K(���s<V�NH4�X^�n	��E�@����?�-V��؂��bC,��� o{W��|x6��s� /KR��ǟ+�����W3U��Z��U����~r:@P��^��昞�W�d"�O��0^�q�Ȁa2����5�L�S��q6��Q��������)P�ؠB��{�]\���]�U�vl��^�IJ^mK�#�V�3��x��F�I��Ìj���'2VT)��(�SX�_2z�1�߽Eu����a�;�/�Z�=(�?���AŢ<�o��7����Y��A妡Vw�
��s��$��ć����屢��ѣ��9�"�JH�(�짉ŕi�E��B����6B	A�MJ<�D=�j4�&׈�Dl{/���񆉓pY�GL�DBmo"?�r
�
`��&#��;���9Q�-T8w6s����4(b$��8����>wQ8���ǠÉ�Gppq��w�$d\H2+�P��!*J\��.W�o|ͫa�������'>
?�S��}������x/G�0�&V�@Q�.��?r��)�:t��!?#��1��x�a�
�D�`{��HusK꿗E�Ɵ�Ts4D,!�‘=��h���`"��w���pM�XO��'�9-��9���_�*���Sh�����'O�ß�<H:�&\�p��]���j�q$�Di��,H�W�� ȈB�w�}'\��gpSϘ��~��<ߎ>gN��|��<f���}/���&��p��`HB�Wc	�@ԋ�E�?Ku%s��k���9ɫī��Q59��a��X9{A�|-��W���UA�I��I�{���]3����W[��W���{���W7V{�m�4v����{ֵҸW�^c?��U��PTwϺk���^u��Ե}��N��
kЅ��94�wq/�x�eܫ�$y�9ڃ��.�h𘚝���K��L��~�
<��y����p_���~���qO!���ˇ�4H.o�����B﵀�^�rw��ƍ��n�ێ����X�W:
�{�x�m���}����m����;P1��Ӈ��[�o������x
03���$_�pO�A��W�|�3���8�[��c��M�
�߲W3/�[�(!�H�^=
����m`�9'�k(;]���`|^y���g o�Qbx�M۰���e��J���:%-�(9q��>�ce��`��G��9�!��ȕ!��R�/9���#��F�,m�q�=�ى��
=��������a���4�.UZ���(��!��h\٧W#x)njG��F,J���I��H�݆D5�z�?ѧ�؜�ul�8Q0���k.7�o���,ʜ[�a��]�N{�zk,��~���tF~ί��F|��
��7���S�cL6�pUQ�~�I��x�V=u�s�xM|!k��+�0��l��<i�����q;�cq��V���/�_%g䐌�%�th͞�^�톂�����L��9���Az�K*��T:�f�cN�?9��C=O�)��zq�+r<���bPi�:
���%ST�Y:1�Xt>17�Q��L�>l�W�H0f��r�|�+�x�!Ȩ��B�+��i�R�Ő�%(S��>ȗeEr`��v���b�gI����Q$`O�(�]�Fŗ���u�lpTI�	L]�g]��PP_��A�M��-��9�n�h�l�YP;��F�%�:�"PO�瘯rt^:��=��oz.���v���yI�Ř���I���NL��b��$V|��X�g�������U��=�i��xK�h�x�p>�(D���/s��#\�n��_48{�.,���_<ʐ���'gYګ�n,qI��"]_�LE�R�}���sЩs&�0V�b8�}I���$�?ͿrDyq�;�!�i"�d��.�r':�i�k'�"�1���93����<��|+��g���ѻ�$��q�21���HB>KIΐ:�, |�r9y�g�"꬝�.�V��$�\��b@����Fb��6ۘ�	�g��:A1)�~�`���X�3�%J��v�s�>J$/�9�λwѾڶ�վ:�ѹ>>���T}�{Q��rG|�R��!�}�9�-��/bxҏ2�@����XU�C�s�mG���\�����F�=���ۮr{WڿB=0i|}�ѽ���p��Bp���Y��W�r�zx�\iײS}����8Q9:��y�`��5��)��FyP�rw��!���[QJ+G����܏S�N1��:��h�p����������v���A�?���p��I6j�p�v�=�g4�
`2xl���-#@X|�(…�� Nf%�5��
}!@0I�_��qэ���{�(ʓ�K�� ��H ��(Zm����ShؠV� BT��l�o�fD��k4����=�����O?�u9m��8>�#�{���i-YX-�1����� K'��7=���ΠQ�8����*9�ۿ͛n�?b��A�ʰoy����G�C���s�͔6�5A��g#.P�	茒l��5X�ͼxjp�/,�Ծ1+�^rW4Di��&(r�w��J��9/D����7<�3n�_��k
����>�J}�j�ߎ�X��qR�}����N:�X�,�[����L�“��a�0Lzz��^w�=���~�S"�౫[��~��a�EtVyRn�a����|��k<U�n�->2~������
�>U��X�B(�g�OaU���I�p���V�
�$ ~/�b/�z?�h|�^�T�[׆�J\���o��o�6�XѨ��z Ϥ���}��յu��]����y��{���g5I(��_|ͤ��ƥj!���$�zM��Hrb%LW��჌�kQ���-������k��ť%�\[��|?��O�;Ј~ۡ#��>7���F��Y�{N�@Gg������s�0�o�p�������~�&��Y[�;�a���<u~��Hn�N����9���iiܹ�5B�3s��o��^8���44v����4`�ӄ���O�!��q�qHY�#���m|���5����>���/�L~
n�㎒JU����s�<��sp�,����dm�#{L�X~�L�2�0՞���<4��F9?�&9�(/�l�؜���D8���G
�E��L��K��?����7���q�/ϡ�I^�KsN���44e"��*��@�l(;��xK�9Q�S
�(��I��H���`G�1��n�=(OJ�:��K�;�su�\�r�B�D#��#@�d��@]�� T/ǹ�q�?���/6`��	}l���eXt׏����/H%�r�cp��^��y�'�m��S��
��}��ZW���R]{������b��**�[2�Fi��H��i��eJ@*�9�?���D���sn�$$3���`kf��rN����K~B �� ���B!��^9
ld��M�
�鑝)�^�sY���F"�
���;�/���i�h-�ܬ͞���T�-Ɵvg4��i�t1I�L
m&����~Z��0�z���s�,7G�Q7f�ɔ�Z����Y���SO�1�щ�8�hj)�3�c�9>S\��h��)]4/�����H�%–�R�œ�V	�VNYh-n���b�yF)�b�{�$ݒ��i�x.6h֌y�##X�G��$�jh�ܫi��<��NF�����GR����H
�����9�����!�PN�����.�Cb�iA�?�ǂ���Ǔs�0-��S-��gnn��\�l�my��~�9�wS�JO��S}ڜ_S��3�d�6j�<˃�#,����f���Lw��lp���z�L;�%]��{(Xh�H��4�����]�@�)�p��6s80�f|�º揅��-δa��۷��䙤D�M�D��sj6���4���3X���˽�P��9�=�^�C8�r�����m#�GAB쥚�!�"M�Fgi'!v#>8��,#��91yo��9����@�7(�C��.��+�B3��g�*wSѹ���8�	ƀ$�Ő�H6(�	.�S^#C�a�u��D>��
#��=�W�2�I!�oB����
WSo�F2��*��O/����`�(7�*j��CijſG��[��V�7�W^���w�?����$}h/�'��N��˘�W�{p94԰QR�ɨA�FQL_E�@aF:'�� ÇB��d�V�Ҋ��1Ez�8y9�Z���ĉ�rxP���"<�֧�����u�)5�w�(k��S�ѣG\���n��Q�x�����(�!NI�dPA��hI���Q"�(f��A<?h��C)���"2����8���F�$�sf
������}�X���1��Z":NI��J�4�Ϝ�q�#��PU�w?{�s��fk
zc��mT�Qa�M�d[�4ɫp��h���w��hD ���u�_�����ְݑ�Q)g�,�ŀ�k�}���3p|i*@0&�j�"m�S�͡b�z��f��p���AS�:8�
�>;;��w�U��ɉ�2	S�\(�,qsn�*2n
t8`�777��ŋ�YE��A.��L�r�q(�^�y(ܥ�Av�w`sc-ΫwI�Te
��"��$4op����#NBׄo~�;�3}>��(t�!�`�I^ix8H
߇ƫ�n�{z|c�O"@?7�qt�=G^`xڪ�����,��`�#CN���
��$Q��ϫtc�mIr>����"<�0�:��6����ӆI�&�Y����Oڈ�i��^'�{��Ѥs'�}=�~ҳ�ϭ�I��L���JP߫J�U�&�}������?���F���>���o	j�FM������>�1�����ggX��c���W���=o
7�>�5[�6:ܸ�K0�٥x���ڄc���#1o9~��t����֥Cp����X�u�#�]l��&��p�@��f���XGP#�6���x���.�����uf���	�gߕR��|��[`�X�A�'���X9�G�sw���Q]�e&o�F���+�Q c����0B��9n\z���B9��u�ymOq�-�m+;;0 �bc��l-���B�H4�~�M�����q�g�Ч����ue�	�i4�	��Ĺ5�.�u�\���i�Q �����
hn5,{9c_�x=_�a�ȍK3(6\�D(ZTaX��S��<S�rDNDr2g�/���@���m�K�3(�5Xf!��I&�>o��w��#ye.����Q��*�\����@��:���a��&E�P�4%�AC�|���g���!��1<�Q�[�)�F�j4/~�%o>w�}��J`&���g���x$U�
��0֦�~
+�^�*1
 /�)�$'�g�z2J) �͡������C�q�������#R�h��I��z'g��r�YRk-�Ċ��
�<���j�)�"C\���nRt>�a/���kԀ�!�5�sT;"E3G$�aJ��
eTP�5��4�=6Y�CI,����DȢ�J�<'&Vd��p�uAuT���ʂ�}��Pؒa�$�ԇ$�1�d�<�癡X�m��Xf�}(yQ�v��F��~T?a!w���l	� ݑ�r�<6�+$eN$��@i�ͣg+�Q�˔���_+�zw񠱣�X3��3=�^�}�x%��X�u�C���D:�F�_�q�'�sƢ��<1x�a4F1/��6���섪ϭQy�d�=�b��(��9��������7��<^�������\&�`R׽k��M4�����FEb-�<�M�gW���;����G]��֥$Zs��tZ4>'�C��
���r?�t`N�����Cw��ޛ����p�
(N���!��w�|
���1�5p��7�������V��=se~�C��O^�{J�Ѧ»����wÉC쨛ṗ6z��<
�������{��y�x��apk7�h�.>�wQ��-�/3�@�ZӦ��3Pܹ��֞�Y����)�+u����1���=%�<C��|T�+D��rs}��d���`���I��H��&��ҵ� ^��b������FK��|p0y�������c����l��ש�zw�սj/l�Pg���T����p����WZ,93z�aB�36(���<�39���8���x
Qay�K�6664l�w>��;,Q9;�ڊ���_tG�*���؋�ONg��4_�dp������BQ_Q��]ZW"I��ҢH��h�:x�+X,�I�,�S�<���kW�ʕU$���Ԍ��m��E��-�
`B��`��I�$,hQ����E�z[��{q\�|�PF��hS7/�k�
�щc�U�?��Z��<���3_>o����
�
P 	@ A�#�DYRf�:#�����J:G�h��fW��-eVIр	�4�ho�Muy��K�n�qo�2_ ��tt���k↻|�o�_VlڡWQPf�)B^:hxX�����T�3b*��!��Վt�֖lAr>\�ۤ5̈́[�|Q�{�V���Q�1�x٢1�`��6���q����/H�+JH����i���X?�f욶�F�a����#+܅A(�x����[�c2'���h`5C:b�=�6�06ZW68&��<���"&�9����f��Ԟ�Y2122�C�ϖ$�������,1H:�:��%:u�5	-J`϶��c50�W�6��NQT�q�W��_���;_�:���\`��sB��|�S����59ú�¸�U4Fy���F9�{[i���hd��I$@C���] �1Q�T嗭-���
�._6�MFG�$�7��fz}�Q@vZ#�f@~�>������@�M�P�F`�����sX�7z�n����}�~X~���{��I_����L���oX�Q��v{�'(��ob0@YDk
��lPs�.��(�f��^�y�C �\�����?�
m�}+ݾw���N[�]�hv~���ZTo�Q�$��u&��r�޲� ���6�#W����Wh����k������1jշ@�tM[L�䫊�0YpQ7xml��FT�):���/�6�]�3�]G�r������=����haV
�ؘC�i�;A�X��e����jrkc��X.\gp��X��:���e9 �6]��"�49_�&e��y�i�ޢm&�cF�r�JE�����s�I�M�k�hvjV��~0+��~��V��3����j,����G���Im6��ɲ̰��p[�E��̕���p�m��W�󫰌�u�#�IV��Hc"�A���� ^?�ǀ�J,7X��C	���&�qai��܅B�-K�Mk$�3Z>�>"c2��L!#�.d(o@f�_aY�"��W�/��[�62?���&����l�l�m� �2b�ɤ�F[��OOgx�v�*e�e6X|�JF�}���o�{��]3�L�7���u�DD�in;�@���e��M��餒��{�}d�A��paw�*��O0�?+.rEWa�.��5�T
h�ޣ@ݰ�h顇�C��$dt��ӑ���0m��zۆf�9P�,�.0�m���c=,�kA^JX��yϹ�1A�-0Z�� �p�X��-wLjر�TATo�/��HG�g�H�>���xmC2#���2��:RQ��ݟ:p>�AD�s|�\>X��;�!�/�b����F�K�d�٫��,p�#E(�
(1���k�D:�:���"m㫘�%v1�-)�Yd����"�m�5�iOb��;��=d�jw��Gz�}�*k{��/E��W#5Wi��)�y�ic��5�7n�q�T@r���yl��#4�x6R���-���~����=I�q��=:*���Ce��"�L<N��U�߿ei��흖�_�f<c@��K�����e	Z��fb���{��89���ˏ���'�u���G�2\�rM�v���������}���~��{aS�ܽ���g�Ap��r�V�K�,��1��{������L��]�k��ԉ�7N��l�jӇ!�w$P��c�B�sU����R<e��!�T~���Ю���ۤ�ȶ:&�c?�|�̈w�d�{qTr�$و��x��t�ur�%�ı�m��s��7^3m���\Q\+DR���X	�w0��ݝ�n&Ҕ����š2Mg�(��Wy뭎��u��өV�;z�[c(�r��)��k�R7��_O�(��#1Fi|�����¨c���r�
�W!?�7W�wd��[t0�!9����<�����`.�a�aI	XM,��b�#�ہ?gՑ�������Ռ�f�4h}�=]�0�Q*�F4\Ǧ�����Xt�Y�Ŀ���ޓ�ͤk��F�E��|�K�=��F��/�D��3����ٍV�2��L���<��"�
���Q,���e����o�����<�k�g����Y�5)����>M>p�X���Ԕ)#��;��&ba@[>W[L�����0�=Ȃ=�(���$m1xѳB��L�i�
���be���B�X���� ���!D�aA��f5��<j2@P��~�=t�w�7��(=��K���!f����ヌ��n��&1~3��h-���r�����]�5��!����/�����z�
�ڻ0%B��Ақ:�_����D(��9m&�@�~�t
Smn����_�+?'f��ez��Q���9��"Z�}MM���3����m����ݿw����Ss $GG� �6¬iuq����L��d�d����E�ȏ�S�>OW�-R����):v���-�5s���@!R$ ��}ť��^?�V!�7=-�@�z�.����ISX)MOL���<H)n��ߟ����Ä �#�ggKK�����M@�7���-h�c���>}m�~�F����ޣ���(��߇�1������K/����=�٣�tڭn����~ܭmo��Þy#B&�ǣ�����o��,��Ǫ\�O2|@�r�����uv���T��n�̦Y@�f�)ri7�=!���t���N0�\���@|�.!�4��NL����f@�nm0Q��V�,�1(��;n�kL& ����M�=��&x3wgY<D&X��d=-��Z�k�Vo���u�;1G��x��=Ukѝ3�T�4�z�
,���t���~��t�Q� �y�ϭN�^efn@���e�	�i.�3+�t�	<��^k�N�7��؅�4?V�{�A:8Q��mn�>!`����|�[L�,���n�ow:��*j&#X.l�Y�+h�����#�n��^]���IZ`�����(���[+#���Q������sLP�Hir�t* �H�B�r,W��g�k��7"-n���$
]Y�ۃ@fį=����7�T)�ª�/cH<\�P\OeX^����e9���Fn��$�\�ju�������e�^,�U����0@A�eE�_���q�W�3f�� ���ჼ�G&4XV�;���uy�����Ɏ^ؖ�V��d/!�/?�5��K��J|h�&n���s�S�����3�u+�Uۤ�2�T+4])29�J��m����}��~����sh�nNo���;i������)�-����A��|7�C,6�3R�kx�B����H�	+�w8Ւ�o�����4S� 2b�<r���	�_��@�Y�n�)����6`9>�(zp�]�Ӛw�a�~�����}�Sfe���'�иw ��@0J�w�=B+�EbTg%
~�vO��f��
�k.T��r�me�"i�EQ���c̕�t(��m��|@��WO�|gE����T�֮}/��!��y5HԋĊ�(f�<0��X�)�|�bU+�{f�:��U4VB/�a��^=�~�;��ϣfP��*y�6��R]�l�?��򁭳�Y^�[�}��3�X��r�'.-?��;�L�Vx
��_�6=vf���2���y�`�~�}w��?yV⛽��S,��������-n5����#�T1C��8=q��� ����G���4����?�}��6c^y����g��׍�)�D@M�����C;��]GuO4�}�rs���k7&�^x3ml]?��{Q�$Wn�x2V�$�g���^]Ȼ0]GJ�uG�D�h#�s�|D��'̻�ht����赬}���KJ=���m?�M����]*>ͣ�I�����T���H��H���0�2S�gt�hG����4�Ǖ�rB0t/�_��4��!��7�3�O�lYw�#9R@���B<�&Xt8�U����婰�A˵%:�\�rll�ɗq!>�I�A˙��|���
-����G����L\]p+�í�	Z���m������H�T��bCÓ����i��}�oa�XP�:h3frfb�C 	���	��Aޔ�˂�Y	yH��.ٿ@�6��QˈŇ�
X���v{�Ae�`��!	�F�H���H}Q�QK]�������Ք��?���I�
-~�Mps�1��d�}2>8��D��:G�ж
�fM`��a�^��{�6a�7�?��ҏ}�C�?=6���f� ��O���
iP\����C�mB��Ls`9XO�}�-���?��w�g���=Sn���g��=�&~�����By���C�x��6>��_���6&d͖�-l<�����}�	AX� �:HhJ�<
�:�Ye�0q�b��c.���"���������1���S��A�(�d
��n۸�f�ˬk��$��T �b#�q d���?hB���t�-�$NH6��h��h����ۻo9Iw�z��#�%�c Ab�X�;xӥ�:��0�O��z��n���a�A�wxk�􂞮{:�ams#r�O�����?>�=oDr� ���z��yXۥ�J�۳�y�h,��V��3�eN{��;�hR{{�	�����A�+q���u��o^Lڇ�>�� D����6�߿_�S•S[o�u����\��f��eRe�Q��L���c��yr,C��Kk�4V�CU��c���./R�2�rC�nٿ��2�3�Z����}trr�V��8�|�N�&衹I�҅K�5��)�À����_9ˤ�:ݽg��Z9O{�&��p9Kg�-��/���;O�O�yB|>w�9�.ә�g��|�e���=�ָ}��C}Z��h��!�ń��!�7��׿K�m��}{gE�*��i���x�5�v�)&/ʕ�(�xc���*�"\��6,C�L��|u�����o����J�@�זie���}�I�1�rT��ܐ�fs@�q�o(5��Y�\�L����η3��w�����	��*�����!y�Wn�b��u����N�e�x)d�����:!=y�	����1T�"9#�H>� ��H�U}'E�+�O�f�ILvH0f�j�<fc���x1/V�k�װ���N
-��z�.-^�j%Ce.|jL|u{����*'��:5�܀%��)Mp��<��~�.
].+,�󙛗U��u@��{;�ı�d��.mZ$�zo�� �v��lTB�o�[S�`D"����u����i��$�xE�5Uɉe��%)g&Wd�h�B&��
[,�t�����Q.�V�vJ�'�qXp%�I
soľ�5�*n�i���6R>Jⲵ�P�N�b �AٽC�*��y�X�A��'[��(l2�D�y�
��B(�����F�N�ʔE�=DVPP��/`����"?hJ�iy���Y.��c#���a��4l����?���3��Lo���<�"��o�F=x�`���8�}hV�fV�k�d��ƿ�_]d9��,���-|���������[�7�s�W��9C?��{h����r�|"M������	r�*����-����W�����G'�A�ŭ;�|^#9�x?��.޵Gv���S���,o�|�e]�����PD��$��/�E�	�x��^y����}V�P�15�?u<�Ƚ��(���I�Mz��^�$�=wCB��ٕ�U�ݑU��j�e����	�p{��*Z��]q��%�����g�	�Ack?m��Ȧt;�q�4j>L�p���v��ֈQ�{R�f�-���C��V��x$Z
�=F^�r�ЬB
�D~#~�
X.���P֝�#;�Y<��+W��wXydp�/�WJ9Cz�Dp ��A��b���R����H��Ŝ�)�#x;O[���Pj�d[(�e#���MCߺ��㻰Qd�ZI�E)�M|�E�xcm�j|m�7�3<h�
$�#bz�A��
�+`=ߓ�&�J5j[ڗ�,Q�o@��y�^�)����	���SL��*�V=�e����/e�pB{��a~*@`^[�#wbΝU�ѳ�$�H&.EF"�tZu�1����|��$}����1P�*6U&%`)�X"}�N�#;E�P��:����g$M0��s�y�N�`
�(���4 �z���4�n�#d����C��`�w�zp/���������\g��
�΋�@V���{�>�p���d�S��:J�ʬX����uh{l�Aڌq�v�
޴�e)��D%V	H7l6��D��B��6Rf2�p[�
�B�K1���0@�=[F�M,��<�.�xx7�-�۸�g���
��fzç��a`�(�{}�4j�M_3j�F����nT���j�Qm3l#�&sv���fT�7�w�y��ߨ��Drn$���ϰr�����Q���w�(�5��=g��������=Y�@����Y%�.�ƨ� '�X�YT��҆י+++�����kT�u���d*���I��@��C��}uu�6�T�V��-:>S�0W�E�Վ�<!ȳ̡�����Czzq�f�ѩ�s���?���>@���K���6���y�(�ݼ���,����1Z(��K�V���=�_io�?y�Ez�ɒ�^�&����yϩۙ���.]��`"'G�]Z���]���}����ӓk�b��0�����c��x����C�Ү*t�I�j+���9�$BQ,Hra��3�8�
��P8C�ي�cX^�q�a"gk�N�>��|�q&(6{Ԭeşz��eټ#����b����r�%���ָ�E�r"FZ�#��	&������*@���ʸ���luh9ܠY��B�C[L�L�+"��2r1d$Pp���d�J�&p�E̐�Q\�RF�n��0�NC,B �C:��	�LW�ņL�	&9
����by���Τ,``SBg�^�X��sFK_9r9�ڣH[L�5Jdg�V�c��X��ZwI��Ұ���i��7�����v���י�s;�LN�SĢ@E�x�`��l�-�$`���A�^R�Z���Ҍ���KT��i*W �mR��~��)X����"�K��k�V�EMY��<�[�:��{izn��nGn2�\IW��ɉ�z������("F ��8�&Ɛ�t
T���ݣb ���2X��q���P��
|�'.��H�t��v���_�N��H�?���-Yv[r�L��Q]��!�GI����q�~��}�w�c�dH�Zs���:��6
2�K2�Ѳ��/?��r��x�>Lo�7hj����+����U��(Q5q���G?�>�Z�q�gSaL��r�%�KKt��Y��z;��?O��NR5�%���{�
�W����S�i^�?�޻��Njs��6:�=I�7�*�2�Ύ"�4� ʊ�8���&	o��]iL��ƚ.����ŕ J�^�bǨ�c�~�{o�s<��o�繛}�t�>����V�ÎymD����G+���Vø�*�{�Kd�U��,^��9�/�&�(��nIε����_ؤ^����^�Qf��Y��D���sk���O�A�u�s>O�����>���o���Yx(�@H ;��
�}�V��k�sss 7�QƎ�w�.��o�eX|���ɺ���]L$G|�^�U��S����[�T��۔7ڰ��X[�ɩ)q����%�m�cU���B+�2o�p
���joء=�j5ibrBb*40\p��!U����K�)7����f�����g��#
)-���1�����K@*~&�;���l�m�x z���L`�``�Y������A�8&h@���\wX`7�	8-�F`�
ҭD�N^Yް���(�@��T���`�v�5��X�� @ʥ��F)e-y"����������^Y!�6@��pi��c� $����[g݃cp<k�t��Ek�B���DžR��H�LS$Z�N��@�������u&N�Ѥ�09V��$\~d����^�:�Q�I4&�C6�y��f>��+d��LJ1�H|��P��#�>�2�VxK��L�f\�:��D9�0�q$�90���f@�r
�,�c�I2���LH!���fq�!��dܢ�`�^}c7i E��A�&0Z��OI�Ѥ�FMђ�GY�`K�&��`K�
G�5ls6ja��2���@���dA|M�TN�����D
��(�.��7�>��[;�F6$A�t������}�w�ckH0���m�?*�4@u�{^/	�4��7?�pe9��u��7��[=�5c���z�$uC5���v)_��gBA�����M:�0G��Z4�Й&`�j��o�T`��V&$�����4ƛܯ\�N��Q��rNyi��4?5F���}�	��L�ܹ� ={�2M�W���	^�6y���J�<@��9�E��+��trbJ��;'����M���h�r��z~}u�j,��l���il,O/^YbP�D{�,$�gV����$MV�h�\�%6CGf&�=No���Aī�6|���w�K����k�I<>ZL�\z�k�k�Q��ztߘX@\�ң�Z���
�z꩜��4v�Y-JՉq*���o���@�^@a�0`�������yj7�Z�k��	�2x�ՂX򴨼�F����g���e�������[��%Z����+�M&��TaY�h3���H쌮
�Zd9qFr���@t�>�
d�:�I�פm&��U�@ t�2I�۹����@��V2]�6j
Z�X��%�2˔M�6�J�W!�i��Ų{��Fh�*�C�es�.�~�D���O�X��g�y��w;t�7"P��T�����6�"}9_�֚}m�F�νB�f��ܴ�|��H���G�v!_��/�sa�D�˜�/:G �trNs�,�5�-z���i��h��p�e��=�h��Q�R��љW���,MNVh{{���D��},��n���S/R�4!2��#7:n��(�
�t��S睱J�2����h����"�����|� 7�p+�rI�5Q>�a"�_w�MAH;�8-KD�9�~d��(!��"��:�Ԥ\���~jG��}�»2�m�s8�`���D�H�晔\�?Ê�C�M7;��C����e�a��(�����MX��ݾ��h�4jp��<�bZ�7Mte�# c���V�����6K�魯RF�mW����t��9�<��[�����/�H�~����47^fy)�ۦ�t�'�����_0�U�N�Ԣ�%�z��j�����ޡ@Tx����}�/#>ŏ����J��[��<�5%=��L�'���������YП���_L9�S�=��u�>SG't\���o�otg���2�?\���וGTB/Oe�c���Z�PB�s���2��3����'���n&�4��aʂ.ow~�s�ߣ΍ZK��Z;ܼ���~�ê�����÷���ѵ��pAʇ%d~�Zy�8׮]���[+�����ҼQ��b%�Zu5u6�iyk���ID�oT��	�A0ā[- �#~�������4ı�P^�2�=�����nH奐��.�S�S4=5-��Z�%1{N�E�E	��M`p!��ņA�%�>q~ؔCp��\�[��%
��.2V@C}@v�¾l*ђM!�(�_��7	�!�.|L0{�����c�7�D��Q�9%�����=K�X+��l���7�܇���)�pw`�?Q�/J��b�fk7��ы�����)lD;��	��An
̱B�"��l�##�ȼm.��QWo\BD,���N�� OBtcm`�	0� ���`9ûsk�2
�.�u��� �!.��YW�'��e�"���,م�.(C`|����3�3m���uκ]s���M���}|�6�[&Z��3d�}tM�C�W7g7Z�G��p�6�y
$�`��A��@�$�?9;�5�n.B ^������n�ķpjc�d�
Cz��f�
]�| ޿&�!֚���S�lx�m�5
v�pb�פIovc�8s��6ڙ'�z�<�w��q�t�����o��=�\�5L	c~yc���k�t���u�ˣ{j��I'����U��I�����!�^��Iw^my3��B�V`�W�HlQ�	q�ѰH��iu`�
*����+k��i��3�
ˏ��m���������]cb"`r��:T��ol�R���N�����y��+T�g�V
Td�j�P�Fk��X��9;C��&=u�,�~�(�1���%Z�g莽{�wΞ��]�J'�/�4;>NW�}z~m�22"��@��\�+"4�b���#�$&��LȬ�w���Z}S�[k�i9KW�7�oוw�M�"�^-�����I+�7�o>�|�4�D�������
i��k@�[]zqy�����7ry�2���&C!��rp3Փ���Ln@�9>70��!ӄ���5C&�X>k������C�,m��y=n�����g�cE��H�e�Y5���k��mes�&�%&M2�ܬ��☐�,WA8������@�,���c�����\�
�ȫ�n�I��������Z���|E3|�&�Zb�d�T�0���t��En�>�6!��|��{Y�l�zKN�3z}.�O��2�s�R���z�Wds��e����b��\���,�*��\չ��efA�~ű�w@�{|"�s螞��S\���M�'���E�?3�r^�̱���k8�F�����a%]�d��4e����vhE��.IGK�������r;N���q�M��D�����i}uUȎ9F�H��5ڿo��Xw��嫜�����XE(��RCQ�`��Q$\<��b/�@[�f��@|U<e�uܹ���#%a�48�vI�g�un?g�d���햹��A1<����,��yQn�dN�|�@�h8�Zq�������E�ڡ�Hޟ=9�ĵ��%ʑ,W���4����S���Ww��2$e�Q%z�R�wC�K�}o�7~2�}`\�+�d��դ/��|����D�藿�k<��,g0��r_��Y�Pe^��s}��Vr���u�G��[tn
A�C�O�ӧ�!�P)�m����{��X(��W��W���P���[o����,��G�ȭ	;]���߇%?��V�;ݸ���v﫛�=���*�"�'Z�"��m��H^o�t,C���� �?�|�`��bϥA��u������Đ�\S�h�q�FS}t��Ky�EKTr���Iٚ�8��yܹ�~C�v�q�����2���
�+u<�kK�Q�-��A��^[Ek2%+�J�5"^��_?,��%7�����k�t>i|(���H�Q�ɨ����_l���x��Xt�O�k���pd�!��ڳ��|`�a�ߖ�k�9"�;���x����da��U�K+�%x�͛�BE6��\� �,:��z?����@�ٖ@�=	��g��x��{�&�G6'䃛�`��V}�ّ���.��-4�a�y�64ݬ�-ѕ�|�)Vڸ�A�`���D��JB)q����<.���ɐ����i;lw[��$D���6p�X�H{��
�
��(�6���aC���#0�-�0�x�����r����d���@|��
*m4�vW6���`��
��/n�@@!�ʐ����IG	ѓ�->�!H���p���a�twSpS�,!Q�>��r�%�'��X� h=�(n�x�	�7^�^6~F&c�@<����*3���5Xshk1�Iy�O��7�d��Q=�ߵ��ؕ%��$/cl`H9X����8�#d��h`��E�,q��z���Vp��c�(��聡K0��3��xs��t�P��֚ǝG��0)J.B���āX�!9�Ľ�<��{آ8j!�
�v|�};�5b�7��xÜ�hi�8؀�D;����?��Hl�$Dn�x5nK¸�:
�u�m�n#���w�iV�pꀆ�]1�D{/P�����#Nj+�J�;7��G��N77�5�ۄyY�#I,�����Ҽ��b�I��U�Р�E�5���-�	�VV)_,Jl�5&������^�N��,ҹ��=3E�!8zG�D������nG,;�������-���@[,����(T�cT�Оl��l���&�s�De~��tyu��5�T�gL���'�X��Գ����1��J���M�f�.�Հ�����U:}u��MNQ�T�˛�Ԙ(�e��}�ؙ�x�-'iy�C�_�F�;|�~��
��{���&=��F]E��<Ͱ��O?Co=u����e�*O,�n3�ռ�1Q"�0C���X���WO,��,r�T�(e8[���v e+д:�7��h�D���/���}�-4i��i<�_d�I���>S(a�DR���G����Yц�РT�I>��j�{ـ55�5�qn;�m�Uc "ϲi�j����̄�!$Ȱ0܆UJ�� �Y�i�]Xs�p>�ˋL�"c��1��Y�$]�Mj�4���4���V��
��+�Sn���2�/ߓ�P�w��]��19Յ�O�{1W�Z��Y'�:߷ծs{ti�4A�_�7uU�w�;�0t.�b9.[76��G���bb���+ް#��0�
3F��x�w�S���Iu�����"7ǥH�u�����Ƹo���7��-z����5�
0jl�:�<ĩ�>,rR�I�y&:�<>��0�e��֖���^a����۩P'�Q�]��S��谭���%����1L��ADx���d3��xw��i�����L6�����?	����#�[�,(��Ŏ�7�� ���e��r���Oi���6��<��1����2��o�\�,�J�!�9���H���z8X��7�|��F���a�Өwp�l�l�7޻�fJ&��J�F����&=~�*}�����ᅲ���g2��w�F��K�<�B��|��)�c%C���X�d�J�>��	�50�|�H�-��j=���S���o޲������U��X9�nY����ߡ3X��)�/��kw�����AvOA�f���#�]�<a"��g"�כw-����@������O��&z�y�U��qL�v_�",%�*��z��O��g�ev��1�xu���	�D�����y���#��\Bv�8���N�V��N���0����Ԅ�Qѳ�uU�,u2K��u�{���N�W���C���kF��y7���c�'�ax���f��a��N
�~Ԟ>��	��U��@�rw�Ƒ�`�Ϊ�\.Ov$���H$Xy�=�w�c���L2H>��@�&:�:&;R9�2P�oQԧ����o-o�g��y�k�������-.�x�'q����H��h�;��Vׄ(Y[[���y�&�p�d�LU�&��`7�a#��#6#ü�aD� 66r Vt�Dc����g}	��De�	тE�h�e#i&/I���M����ƭ���z���6���x�<��mr`�B�P��߁�N�
�W~gi�E��倐�@��Zq������O���2�x����*30���/P��-���H0���Z���������� ��X�/�<�Y{�
�d��xWWN�����W�dM_�,��8�j�-���cX�t1d���a�\{�/�n��:
��K�иL�w�ߋ�ז8�h���&`=�ں�0�ohK�0��qA�d��Ι!�L��{��5�!r�G�o62�n^ɟ?�~rb�?U��ͽ��el3����w�9��a�ȭ�o$Gm��y�����>���0��Z��x��~��>������0Au$y�ps9�ΣR�M}a�ߨ�n����s�����(0�Y�����^3���zIb]	-wh��5_CA ��3��7�ƒS��a��E�3r��v�Ʋդ��*2н�d,Yu�@u��<��f+�t�A�ƚ���]�6���&�^�����B�X��3�R�С��n4������j�ZE� ��k�To�$x幕uZ�l�-D��0�ٵ:���qX�r�y��׮�"�q�0I��_��a���cp,yp�#�D�e���q����࿖���C����:���th�H�1���I�g�r�{��ly��v��0}es��v�%zp���:e�2tny��j
��$��
�;q�u���2��r�Fc����=P*��BY`����� 6���y���	�CS���xآ��������|�f�&(����NH5&�XZ���f������=��Jm�I�I��-*�
3�u_b
Z��
\?�.gzT���]�Q���X���aA�n�H��ۢ3ˀ�z�βk��c��׮��,ܣ
����m/^�~�P�璥M�����:Mn�����)�6[g2�e �2�$S�i���\[w�!���F�sT:5�T2���O
�����~�E}�f�+]����$��*D�7���7�LG������Y��L.�%V��U�(�����#LF�OS����&��M�p��=d`�^�gMO�;��Lcӳ�䙋�n~�@�).'H*��EQ��i��Y�w�Vۢu&;�G�t��Z�����[n�
_cgz�:*�1v��Ȯ�<5��o�����c�{�M[�ǵvn��%(c�Ddttg�;�f��C��-�mRZ��EQ�(AL�ܵN�<���WvVS�u�K�b�oJEe�ڗR.I����LR6J��uM�w2���J���\��v�Y����SQ���פ���Þ�.KZvv�=�L��d&23�����|��LW�νU��}>���d������ꕫ����./���:�0A���>!�p���4��P)ѝ�f��s�����"]\�Ӄ�4���G�=L��q�,����z����<"�5d]�,���C��`���)
��H�\g<�$i��uJdkǾ���'w��Xs<���9����+�1|T�娶K�Am�g��)
M�\k<7QѾўS銥����~�rs����IG8(o��
'q;�!Tԝ���.U��bb����J�a�#�����qY�l��>�IGe��W�ӎ�S�Pp���5��"Wpde�h���ة>��֬,����ۉ��O������2f�`	>>����o|"��3���Yw�w�����H�CZ���p	 �K6`y�d>q��d,<P�k���b�5=24���C����4V)0��ěSh���T�b�my�g�nא��Չ�'hzHE�A��E��Z���V{J�q��=�=�����]\�0Eް�m4�~]���-WH%SN�K^��%vGb���"�.cccԄ��ڨ3���G�,�@�A*���Z���p�u��lq�e��Esߺ���Ż0�ᑻ�މ&2��z$t�ᕊ���~�6G��v�r�@8E ���p�!
ܗx>����{�o,2b$�}�%�Vƴ������	S/_1^k�/Fc ��2f�]�3$�_��A@CQ�i�c�B2��{aˉ�	D/��-��в��O[��E9��Z�I��%�\���d!��cG�!DF�7&?��h��7�q�g>�H<�6l��7FRn���1�Y�d�,��@ڒ���,�Я=�GG��x�@'����8��ȥ7[C;EQ,�aD��}ԹDvj�����x��`F�c��>I���~{�J��SE`���G\�uH�q��6���n("��@����#z��PR�0�>b��+��.O���m�������ȧ�k*1iQ��i�Ai����l���������������h�1U�q7�֖)�ɉ���&������nn�\�8���t�JO�a��kӹ��i�2�����6�|i�v	//�����bA����I���ڋ`�
&^�P&�H����=s�׿.�-*@q�׬��ɋ���\�CcEZl�1`���H�C˝��� �`��L��}p��[L�ݕ6�m���NJYz��a���ij|�q������M��qg��t@7�h�Zb�@���eҟc�|���mn�-��F����l5O��.P��13̆zik��b	sβYA�j�,���Ʀ�hZ_ﲌ�x]�E�,���m}e�I�z�	&f����Y�/][c��J�rQbױ��m^4���\�|m����R���MZkoSW
L<2�p
�8|o�ݢ�dFX��/�H=�֐+����6��bwK��`�J,;�q�6x�m0&����	(��r(�J}-nH�L��;�r~ˍ��K����/om}�	��Xu�qC��qGڃk/�=�)!�j[mY�aᣙj�R����)�#��S)T��i�\��v���k�
��&�_��l�%i��W���MVr"�J�<Y�a ò��E��NV��v�ĕüfc�X���L�v�
�*e*vN�,��иLu,�y��on^�@�O�O��1&���r��q�e��p?ld�r��4����5�k�Ԩ7iks��y�{���ڳ$�Zg|�|�,CF��f7�R����_{�_�
��CH�Ϊ�I�˗�#D�F�EJ�Sb�ab1q��R��$Z+#�)y���0Q^H�1�)]��#�v���*�����&�
{���=��d�UPiYAG��)S��8H��kCB�q~XY�z��G��uX��g���o��������O�׷��	1���y&�����=���F��KsS゗]\ڠo��B�x����6���#���{����u���&}��Wh��ʿ�#I��3�[�����=��%��G�������U��c��.l�Z�(6����+v$Gǣ��ށ� ��f���:�(~��?�z�Ĕ����..����{�Q{Xl�-����u����qAw���1��	���o�(���2.���F%��ۮ+�z����)��G��b��S�U�#�>��ٙƐ�^i�V��*.ar�w^�i֞S��hJ���̢u�)�Չ�m尸��B�JϿ�}��7��Ɛq��y��{���ޥa��=����λ�pf��7��w��-wn�`��/ 7���"�VH��\[i�\\X1i�T�[w��#n�K�]�H�سw���`+Z3�/��!qK���x��cLr@@��ޢF���9B�h	h)!^��e4�%ΆR��ZGv�*4�������K����%��L�h	j�����W��]Y�Κ����p� c\����u��o %�`8���#Xt"	��l�ڲ`��%�G� ����Z�(�E/�x�&:��UH�ߍ{;"t��.��q�G�J�~��e� rm/V868������Vƍ������{�%L����e�%���ߵ�!g�h���41#�{2B�h!u�0D�qM��y��㈨�%����|K�6x��&7As�����Xd�lʺZ���
w�A��7g�`d���L�n<:�fd	G�9�m�L�}����$�U,�6��E\z��zO����KW�^�1W{L�r?�E�h�ߟ���r|_O��Թi{��g�
������{h��fы�&�n�v�U,��xF�Q�s����9`��2�p�n�Fu�œ^�G-��6x���=�;5�(u�z��/�N��c!xH}��U�xrS�	�z�e��<���﹞PV��͙L__Y��œ��L�A'��›�'	Z�e֩s��Bz�l���dG~���Q5V^���lQ��6�$])#��L(���q��c��0��r��jPqrJ4�7��xI��"���y,D��e����|��y�X��La���,�����up��љ\��vZ��
�ϫK�=0=N[p��r�3X��eyf~m�V��%T��965C߻�D!���ˋb�qra/e`�2�06N�9�o_�.��a�;눫[ԃ�|c�(�1�Q�:�ǩ��`z +�ō�X����Q�׻+�6=q�2��y����@��fr���U��y��D�\@�{m�����T�����
�]j�ѭfz�HM&r������B�
�wfe�.��٫��a�ѣKW7YN��:��+�=sU& 4�U�;�R����㕀�X�e��.3X1S
�n��
mr����m��w���[���dR��k|��nQyE`¨β˳,� x9^붩� w	�`y���̄F�g�r
,[��h+��<� �g��f%9n/��ͺ�����4�F�}&��-n����L|�R��E��o���ÆX ou�i~b�66X��y��V�~㱕���0�Ѡ�P�*mv6��OK�
G%n���`���7W�S���5"��d#�`�?�"m/]�>|?w���no��U&B�32��O��\��R8t���/Bn���\\����,��b�\����Iʕ�ԃ[V+P�eu��9���d��Y���<1
�#c��qP��v�:�G*T�J�ۅ�����������{/��,-�����Gy?S5.Ve��@T�z�R�y}OÉ�Ӯx�Rڵ��,N�2�7J���M>��vg�Xr�50�����k,W8@%~�#$�k��~�X^p5H���I�R�AY��j��I;�*!i+l��wmA;QOO��m��]�W�f�<7t��\���'-�z9�|f�ڙ�ߍ�aD�R��כ鍑���QoeJ
�>K6�*��������i*W�="C�&�G�GD��q��E�O~�����ݒ��,d����ug
�:' �#,[}��e>�L^^:p�T���ȝUF����Ԕ�9M��p��ݘwd��q�'3}��n7��H��y�?G����4�ۛ_�o7�&�x���9.�Ǯ:��2�ThX���4Qj�I��*�$1}�p�����sd0�3�����x*�S��9kIC�k�h��¥K��
k�����)�K[=��J">گ&:3��ih�L�
��d_&��A�j"�$�Cq����a�{v`#�ѩ�l�u��v�d
��@d�sge?�	��9҃	�;�V ;�|�I���8�\Z9���k+<�ʕ+r-,;������A~�^�3Y��I�a��(��C��p��!5�VcޑY	��-FXr�	
yCL�efH
��X8��ɸr���r�TG�O!(,ap@7��cRv�<�)4`q�_r�r`�7�L�#p�����T��<�sA>�!���k����.�)�/8
D2�l�]�q�|�����/iO �[J�n�$�^�w��L�K�h疊�Dk�`�A���=M��$.�u��^�xR�܃b�5����`7rY�84䑀���_ou����Ub��]T�o\>E/=�B^�0"G�܄��ƭ'�%/e�fhf1�1�uD6���?=w��֑��{&�Lֹ&3D�#X|�j���}~������r�0�[xPƶO_R�ہ�b�b˭o���1%��'�Q�:�>���o��6�W����}�c��ϐ8����=ϺD
��mL$�,�a�$"&7�D�E��;+�����7�w�w11О�{��@���h��ʨ��!,�:�>���THY
e�i���1o�M�ڹ�3��i~�3us�q[7 ge��ߑ��}#z7�_p{�q%�������O1�1�9�X����A�̟��3�������z�)��
��w�����h�EMϞ�@��w��իt���w���wς���Ш�[��3����=i�|�~�!�ۜ�]�65��cwM�Q���8�w��9i}}�~����Ξ=˛���t��ӏ���i�f�5�6!6��wH��ʝ1k������f�l�=���H���7��4�Dv�F��(��>�@)4���r�jL~H|�
Lkw%�!޹���X��,{�b�� d�ޤE&��0���o�A�V��G�M��s������Yܠ�嫙�)Z[�N�����J0복͖Xk�i��z����q�mm2P[�Fm����b����eX����|��b�F��T9�K�M���R}p�.1h��ǩ���^��6�}��ۧ�_e���u��/1p��רk[k�>nS���	��ȋ2���6;|���tve�6Z}~~�N�g�����T�M�8[涜��i��$��m��\�C�"#A���.�+��ڡ	n�0��awu����D��[^��o�:���f��	�Ʉ�\YѰ�JK�R��FK\fx���x`��X��X�"rW�b�d!���ы����!�e& ��bY���ʄ�˽���=L@����}"�J'���r}��ǧD6��;4f��@w�',���<�`�`X<��Y�����D����L���j�=eZ�]7ic�.�ꞙ<��xl�r��ަɱ
��j���"��֡-_�2ϗ�
���td�L����D�4][��sf^b�do��L(�����mn�ް�̎ʹ%�7��fWS��9#��6D���A������שܿBo��$�uX���=�����=QT"��ɛAGd�c"SM����|V�
X�d��*3���UR�"��fxW�v)6��[Oͼ���A���zr����$�9�SW(̅����!R��-d9=~��^��w���ti�I���:�jը��EE����v/����`�#e-����OD7^�D��p�Y�ߕC�|�R�x�����r���GǮ���4U���MG�U	B 	��Ș�p{>J�^^5�R��l_�W�&��(�˳d��HQy����B���&S�|)jd��tJ�g8���4
��;d�!�Ǝ�d�.ǥ���hH+��>�n$�����7Ӎ���0/K<���fh���Nպ�q�#�2�Y�=���(�B�%�y@]>�A8m��b��9���E�?x��k��sQ����1�O��ԁ�@8ƣ���Hj�/o.r����.w.mo�v����/���I���_�y��g!����M)�ʙȹ�&K��B�xUG�e��k�JJ���˵w�)�7�+�08���ފ�uO,����r���Q��>C���L�������pML>�'�L���q�5��̩�6��ˣi�䭧���=���'�S��Q�ɰ�������e�'N
Q���FDb8U�#��;�9"��O���ɀ����b�q��!]�T�W^y.��<�j�7���;wNMNN~3�T�UwV 9���P^������V�>�m��ʂ�֘���*�A��!��a-2P7`,E���6^����E��4fh�I�"@�Df����ɆO�p���Cly�����3�� ���D�۽��A��Y&��ը���@r���+-��*y2VӾo]u�q `�2cr�#l{9v`��#�MVN�hd�{�Ѝ���O*��c��	sn!2��@zG���j�{8�{cA�9?�e�Z��o�|޺�r�4�4�(ؖ�0kb�d��i$	�j''�'�Z�����<=��5@w�jߑ����(�]�-���B�T�ۀ���1-z�'H
��A�a�ws#r����c9>��.΋�#Dl t)_Ƒ!���6o���G��Tƹ6K�Xe�*���L�D�q��&h�vqi�~�~������>�Q�v�����.]�|9*m�b2��Z@Z�ƷR�		ڥ�n�ڕ>���&�/�X�Pr�2�z~x��"�b�8~�����K�c?���3��}�I��~�k�g~��,��G/������-�Z����k`�!Xv�<w��V֥�+� �0�ȹ��y��z��Te"�`	��t�vK��.�Hcc�����+��o~���9��DŹ��h�׷k�i������m���A������ͯ˻��c��_�2�x-;x��?�y�1�������.�xy��g�Q>v�ؽ{�is�F���;��_�yOa���|E���o���$��zӬ]7�i�|��ˍ�n�/��/���)��g~Zֈ��yO���r�]k��qqH�.ʂ[n��8���b��X.G@�jj�eC$�|$
DZ'������6F�S�\���k����o��2M���@my�q�%Y�\��C�CI��v ����
skc��R�B/]8O��\��-	2�{�qh�H7�Z}��XVh�ӹ���u&��
P�S��0�77 \�V�Yk�i֘����\CI��u&��tj��V�:|����ŕ�?���JY�d������a�x�ۧ���m���,P��)����y�	�	�2��>_��|q�ġ����İR}�u/��י���o^�ͥ����h�/L�8!3eE[��r��`;��gx�8I{��;ҹ��^�.�����Թ>M^7�t�����7��j�:�,�jmCJq�õt�gł�[��H�hKf�/�����X�vz
:�w훞��v�7�R?��(WH\��B�t{�2 ~ek�zb�
����+�v�=�A�
�W�z&k��,�w1��osô�8�W�e	D,����h�PE���
�����n�&o �&�cth�,��/39�2Ev���.m!xW{�p���+y&.r=�T�����kkLti���kW���`ٸ(��vc�&f�t�]����5��OljsH��W����v$�#�!�#V��/��`aj�2<����z=X`�
�Ģ5m,��>��
�A#S��p%ni��������+*�>w�.��2�u��LB]a9`�R���	�+3��Fپ�H�_��x2��=��r:kH-��LLN�\�$�\N��+����S���Jڀp\)�~��z��J�e~؊�k������㊆^��pߣ<w<#}�� ��+q^y�9�j���7�|�-]� 
j$�I�����&��_o��.��T��Sǽg��<��k(��M��_�anAv��L?;Q���;뛖qv��F埾�����fzc��^�L��r��8 /��en�i���ޟ�l���fh����U�wo�����&0Vt��=��~�xz�i����\l�j�Gާ��:����;�d)�(��.z�P��i�~��5Ybrq7�
l%2�nU;N�'u�A�kȻ���E�*�����0]��xӇ�*A�kc��:<"DԎ�)��}Co�ȸh�Kk�ΑI��j��o���Z�դ�1��3��+H�0�z���f���q��+�;m�>��:8���nv�p[5���רk~�s�d�b���'U{��'V����5������[+��L^��ӧ�#G������Gi�`���~��g�޽{i�A���u�8h|�p/����ѱ��(n/p-��/��?�:>�9���_�Fh�b3T�
(����y9���x�8�����������Qaz��G#��3�
�g����%Oe���0.@9���|�\M� 㴚����KPre,Nr�H�rFZ�*H	�
P�t����n`��A��"�q#���r���D��d_�����h�
l������L߽�'.��I�s����ZÀ��e�
�b	$c�O��H�lA���jȻr�:8WZ��$d��M�M&�ǐTOX3�m������A�@EV-�5�%CDB�1$��`���>�;V΢C�8��6�ĎGG2�v����!g��2�͘2�6���+�Tb#n�rT����Ss�sl�a\d����(@�#Wl�CˤW�7�8,�hlB]B��*������7��m	���w����E��x�	^Xq����Yj4xAT�_�D�z]�յu�ޠ3��F��_�6��9��@��׮-JO��o�3�j�E�xuu�A��$M�+�5�'��u�q��)����T��7�M�?�8��ʫ�H�����{��X���~�Xƀ� �`Y~���m
��m��W�=�8�|媐h�1�y��x}qI\nmn��"��e���[��F�]FmLӿ���`��$�8�=��SB:���Ċ��m��ߔ���=�y/}�_�^x����u���~����.^���/�&<���/�رc��o�G?�#L��'��<��k���������?�3����:��/}I�[o�����Ů@�'��Ǽ�N�Ҩv�6x�_x�E�E���>�k�:=��w�����/��X�ݻ@_��7� i�ֻ̲�Uy'0mm�iiyEޕo�QZ`bm��ɾ
��ڹsR�k ��έml2�ґ畊�Ƚ`zL���M��ג�g���g��o�_��յvV}L�xC��zҳ�Ѿ ���u�X�%��і��\���&�@�ա?|�Stxr���mҍ���,�i��zLnl�6�sf�X�9.��
:�����:��%*d�;����h��j��$�U.~������}����-����$]X]�ˁݧj!�D��J��s&)���ּN񸘄�&ϯ�-LL���-����+Ԁ�-r/���8Ϲ
���rY�+%^�M�`�h�Ƀ�`�m1�i�����&ջ���VG�\Y���fh{k���?I��޿k�t�[���.�����]�Q`��i��'b�G������1���,�I���Ȁ��6�P��_4;V�>�%.�T5'dH��!٦=�2�9��Z,���O�	�[��i�����2׵C26_���Y���c�x߸�[�+�m��-n�&���Rb��}	;���
��Ky��|���
&;���(X�֙���	qAU�`�vE�E���൥�c��� �Td��b�G��g���t���)&y��O�j���Du����:O^y~�;\�+\>�������6�M��2�I���<�#��+^9�d�� q��o~�_Z�kW��a*gB&6�f�ɜ�|�l`�����D�&v#+2���r��-2ϭ}!� �2�߮Q�DRe-m,)�Ah�w�t��+�#�3�4��y�딲�_F�<%X:�3kF�dC�;�P�X�
d���_�,��y��8��P��Q���j��k����䠄������>(���Ң��kU��%Ɋ�n�_{*��!y��S��7��(�A�q�P>��**�V��9*H0IB`�����I���|S�V1i�8f:K���u�K���jK������%�?��죇�ۭ�x���d[�^�7��;��x���==$0� z��gi��f>�/���$߃T*�����!�ێWMEPs�!%�,�1����#PO�w�vR<5�� �u���ļ���ըW|H�~�T�䝨>��֧>ql�U�Yi�"3��u ��ň��Bƣ��j8ItD(��0�F�����������L�9��j�:@C�J޸v����CGh�T�n;�F�A7�g�<M�+���L�U�^���ʻ1j�\�Y��	�����iߕ���P��sg%�_|�E!M�S~���9r�K,w1<�o��&��d�^!/���y����ټ�^���˴g�q��D�^�hć��ȹRqfP��NßcR-&�Dp-����%���M{cs��2\R���ܟ�U	R�A��X��(Y�&g�
G��39OD�p.�:����=4����������䑡QJ�P��M����r��L;�Ovk;U�1K�<�l�\ l�è=]���>3Ad	�.(O�$�Xb䢘%ڂ����q�#FL0��T�QFԁ�8?�.�d(�[[���"W;��4��C=װ�ah&��$��F��P
�GvL�� ����*�ڶ1DE[���6� "�ܘ2=�"bc &����x�\��X��*����=igi�_Z��s�[�'G�	�r~7�	mu��Yz��>H���_��,�؏����������
�5�&}�{O��v�����;��;}��1&?�K�b�[[_������<x@�E@�8~B����q�r�
5j�L���y��?��r.�VV?��b'��w�Cb��a�O�Ξ?O�/]����;���o����o}�[Ek.�@�ҥ��иBw�u�Xil0��/�տ2$9��'�x�>���s�=G?���p{al=�-��ٟ�����s:ߥ�K�H
?������b�	��ckee�~�7~�.r�:wU��:x�Co���@��z���O�ďӯ��o�s/�(�t�]�H����=L�~�QYS*-�Z�ƀ�c���"c.���w��
\G!�O�d�'Xj�z�DNz��oTG%G^���f�%�w�
��#��\��>�,�N�d�q��A�ZZ^���yV�ﻏ�~�YY�f�釹�СC����?��*��a�v��\����L }����9�o���$��qn�Q���m�o���zJ&�t�
]��Q���T)k�*���u"�?,7������[WX�Z�
�L\�= ���FС��m3��Wx�˅b%�̄��Ŋ��5�ݓ82]�Xb�I�i���kt���}O�׷�#�	��]�Yg��`]P������}D��7i��`"?��y�%9Ͻ|���c�L�Y���Ԥ�-�d��{eu�N8,0V�W��m�ɿ{��y��4���ht�"o�n-�L�
۫\�<��=ў_]Y��1���P9ܦ�l�Ʃu�j3Y�y?e(.X����T�&J{h�	�X��@��j]ދCLvx���{��@򀮉����3U�.i��tXV\��J��2�Y�N�y&��mX�j�hm�lP�x�@�C3yX�p�J��BK��X�0�Ce!�zLl��kԹ�ˣ���{���kP�]�<s�S�P��>���t~��Жx$�L(kF�I��f���ZK���Ӆ97��6m�Wh��4�t��݊.�ى����j��r4xlcTt�y�	�,��4��K�LX�ir\S)�e�HSm�Aׯ�v�n���m�9Iޔ`���&�͘��
m�	B�e,�{+�_��W�c�{'שJ&Bn�.,�ڝȅ!�.�|�똗틒rd$o������@Xe��٤��'�ujL���
URxC\�pcL2��Mܕ8�l��� �#���+��rL�5��>b����n m��{]:�o��]������oQel��[��92nC����Ǜ�
Q��yݧ�)�%Q�a����c�o�X��řD��C:�e�N18��|$�4BJK�Z�5*���} |��q[�����۲h��U��j�1�=CGr�N%��C��}�_��啝R�H�]1�];<Ri9D%�7�LÏ��oD|�J?�Ύڜ]Z�%o���ɼʀ^d�]�3r������ͻ���=Fɱ�޷�#��T�D;�n4y�{H�-����+���yy۩ـ�������vH]L����Ğ�MJ�_��kH��9lJM�t�NO{Q~�C�3��4�0u���q?_[O�ަ��F�R�eִ��d�
������12t}��0]���H�߾W��[�N�X�����l_�-}?s���d�z3
��?��>,�`L(�S��}��:�̐���@�E>���s}��v�a�����	�tr1<@|��+���D��-,@v@�ݷg�C��
7Wǎ0�e�
6o�8���V*rW�=�cC�*�4���x`�tF�2;*�/’����?��9�&@�o�mooG�����g���A�a2�V�ERǂ���o����j�#G<�	
b�b㍸q�-��L�c?���pKLg	aI�u!���mj��s��r���X|d,ya,�����.���Aκ��j�rB�� ���F�l���))�G��vUֵ�s����cʜ��\��]�1䂪��"�*c׍�lָOT�u�8�4u�E.��z�r��]p� ��9���6��1�+&I��U�%��P�H�����
ˆ,C)WVW��9�l@�e�����oǤ'��P�?q��1�U ��K~�wO�.�y:r�}���7r��y&r>*V��]�Il[�ׯ�y��fA�<�Z~k����Sb2V��K�/3ip�.0p����y�\)Ӂ��n��E�^��&��R�L{��
�e�E] �p����h�$}�ߦ/��o��Kq]m�}�C��S�0ؽ,�!�>>���r|ǻ{��/3����&P���[N�"���w��OK�Y?����(E7";��#|� ��� @z>��q�=�1����H,��Ρ� 3����{�ní��M�h�ns��E��I��0����cag-
uҗ�Y���z���6�ݟ��)��9H���~�i��'?%s#�G~��47;k�I֯5�p��0?O/�pZ�����KWh����鯼��X}lq{f��G�G���mll
��\f�����i�iA�f7����!՚�Q��4Ưǩ��TaB![��eάojZec�!qT�粱
��q�rJ��0ī)32���~�0�Tk�7�]��#��{�`}14�Bt��]Q	�
9~j�כZ^ۤ�KWi��Ck[@׭�5!@�d��RN��LUxk��U��עf���:>V��T�צ�y}0Aq�\��+�/��Wfu�N+,�չ�]<G��Zeh/�����"X{��`�'�m2@�z�[4q�k�y�b)��x���d�V���9��s�PW��Y�r��?X���ȕ�a��
e�A07@r�MT�t��,MM�\*r�r�묤�&�h���s�����s�)�����)��ez�Ջ�⵫���F��?`b�E�vC��V�%0u���mY�]�sw�I����u��x�b�ƄQG,�K�4�y���U>�y��b����	����s�U/��*��jq{4��m�g���L��<���.3h��Bv���>�Z!���=S���
�\�j�=�|���/ұ�&fmz`o��+ӝS:4	k�J:x`��/O�iDr�B;��_��9&$�&*��WPA��Kh]�N�O�k��ӹ�-z��@��W�I*!R���,�Z�Vm��]&亼�`<s�����;���+�p]eܤ�gC�F�
�����L�����t�y�6���D�[�A��N�w{���hQ
kv�װ��|1h�x��|��7m�m�Zቅ���{�(��%�
�K�������������H��}F��B>��R��������
�Վ��4x�D��,g��T��|M;����=i��I;i2�w�u�m��qLt�\:��d=��������3-�ė�dA�<�=�{&��9:��m?՗S��N��0`j�}���Q
"~��Qe�7Ӎ�ŗ
�둈��=�t|��L�W���X�/���6�{y'SV�z������Ё�#��S��;~�{�+�� �I���b��̯��f�SrsߎD�:9��(��/]�h~Kz��װ������C;2Љ�:uoTS�<��Sbs2���[������v�w�,G�!�K)�at�Xӊ���xb��ͧ�x�
c�R�uh����5�d�?��v�!%2��I%����G��\�z8����h���]�!Hj� >��V���Lt�'���7�����ʕ+�ւ����w0$&Ʈu��g@?��Yٺ���S�~�#M�5T�Jc���ec"pF���X���B?����
@`�����u1w��i��_��]҆�>����;�{}�n��N'���z���1HN��7IF��Ȑ�"��Z}	d�/$ٔ@�
�#�uT�X: ?hB&�6���:q�`=�Ǣ+��l��x��k ��:9��Ć���6ew�A���Z��ϙ�ŋ��h�LmYO�9��#d�����/b��݈:˓,�d6`�u�@u�A�e��\ ٱ��.�t��l���U{�
���Mh]�H�rCD6��X���N�?<ρ_m��M�Mt�L~��=��q��U�ܩ
�R�ҝ�mq<��Nw�i|���/��s�=��St�IJhU\Le,��W��|wGZ�?���3g�ѳ�ovKp7t���SO>AǏ�/~�����8�K�b�avzF�Z��Vz�;�F5n9y��j3���ޤ{�C�d�r�8������C�ѿ~����賈��ʹ��Ys3�<�h�����$���ݷo/�{�=���Yw��7��=��c<�����?~�9|Pއ��q�JjOӗ緹�O����|G��& ����:A3S�T�qS�ޢ?��ߧY,�aт�<����׾�U*�|Va�q?���YK�9�V��|�F�Ⱥ�N��K:"F[5S0�5EN1���K���;��ߦ���rc�䉓��o�^y��h�7m���P�cG�ӡ�irr����?�ՕUz���K�����g����&N�~�^z��' �y�IZg����:�͔Ͻ�j�6Fn�L[�
�/�2��c�Nz���[Nѷ��
Z^\��ď2韡W_y��p��~��J=����wq�|;��y���[��^�5yON@ۚ����3�v��{G����|�(�./�x��N�<!����*��`��4��xH������D�z
dZ@�E�aBa���5YJ7y�����ƒ�V��9�9��$O
A��0���噸����c��-m��W�3h٧��2� CrĒu��s�ӢkL���d����ǥ�mz�ste�s&M��Y���Y뵛|��Ww�ɉl��ݠc,+��^k��d�B�g&)��a��Yo�D�����D�^�W��0A�����G�ݣז�2��/_�B�-��s�B,3Q06V��
��q�~��^~���i�~'äM��L"lr�4ϋ/\ޤ
׳�4�B%��g����fH7�eC��}%���u�#����t�:���*�tU�r�"��2�;��=!	bݡ	��=�2Me��K-.m
x]ͳ<�1A_��$��å	M~v���:���U"v���&,m�q�C�<��2�Y��.��"��uʸ�]`B��{T���e���&��%CF�d��ڵK���.DI�7�8"&�$F��V{��u�ۺA�^��f��<�t.R���n>�;�
*fxde���7��ۦ~f��p��]�̮�syl��Lp(!��M&k�?��h7�7~�,�!�Q�� {�~���Ov8w��{&̣�븞?�w�{����h�߇W�]���۩|y�J�)ʔ�b��i5y�d��:��W���f��0~�h90.�����H��2��r��$j�S��I�~��RY%~.d�)��P,�\�jsc�,㘽���}@���j^�o�o�]�܁�z�S4
7lL�aoٺ/{���1'q��\-JF��W�-���0���wJ�5;�� ��Q�n*ӀS������s��_��*fc�{��F�`�{���D��1R`GH�r�L����TTTgW���2jM���wN�,+�$!v&�����H�1Uw_Qg���A�z�����m�Д�mH_#>v���Lo��=P�������$��W�G�w_~ڬ���Tr~0���޻�c,{sA<������*h��ѩ��������;����j�;�O�h��zKzT��S�6�/Pq'��%E���<��Mڛ��7XBA	��vщv�ǒr�B����n��7�"s�I-���f*��6��^�w��=�K��+��h�5RH�#�N-O�����s�)�N|������2,	V��e��x��V>��}�pK�2�[���n�@|����V��`�Nw:e� RZ&@ԑ#G4�����ρ�ڀ�0V�5/�!-$�a��$ +���=�V�B�~$-����Um���Ǻ�Xl8�8H1c�±���.~�m�h�f͵�6�����5����8 ��!���Hc/���9�\E�f�׺+2��eK���r���Z��ʹR�g��#�\I�� kA�@F|��
��&�dDh�O*6���J��
�������R����)Ɓ���1�֪�,�B�K���#"���EA���F�o�ԝ����Q\l��M����d\w��Ad�a�H!��i�Un�;��Y�D��AF�*�
#k!7)��ȹ�"�c��J`��v�f��Q�J�l��V���Y��A�`�D�!�e�`
(���G�B2��\��^ݠu?=3c�P�q��Be���Ʋm-�l���쇓�3��d�:	��?Ȁ��s���~�Wi�=�w���{�Yq��ٟ�I�Ƥ�>����z˃��+����8�`����bmM�5��b%�M?�`�{���q�>��m�n����H�p\�7\ɻi<�)G��+_�1�����*%!y>����yc����)���0|5��9s��3�	P�-��OG��f�1I0�77��;������L�o}�Bj��
�W�33<�`�Ѓ����m����R~��7R�ȴ���6`�E;� !=� V�/��/F�ЧW�^���O}�L�_���w:p`���r�2��O�x�An���O~�~�7�@��ifzZb�`|����s���W^��/�%�Ư��:���W��?���xR�8�ʛ�ð�;�~�	�Qm��P�=s��z�g$�Ƨ������t�=wӁ���(z��b���XG֘�@��}G��@~��6V)2x@����:�A{]�\|%�.V�nm0�^���͎��S�:��W�d]k�3?��L9k��X~�k!X�"0k�fp�&-I��;ֻVm@���<��8h19�,H�ז7����+%�,��9m���-Gtxr�	��n�d�{��<�=:�ߢE�.n��Ʌ#t�ߡ�������7�<ߔ�(m6[26`9rߞ}�����tdj��<����z��"���Yn�|Y��$.H���h��(\m}��E�?9C+�n.׫4�e�,3��j�_�W�<N�/PV�L��s�AЗ�E�ں�Q�[�M��S$1E.����z�������v�}����T�DG���ϿD��@�UȦ��6Ͽ�O� ڀ�k�x�L���ۈY�=<w�]ʅm�(�p���/�\?�ӛ�>�3�om3�\���6is�F�<�/N�6L#�t{�m�2>�y
Q�c��ϙa#+�;(���L�8e�<�TŪ��z�F��-!'���K�,�^_^D@
^x=t��Y�q�`@��ws��I3�w|��-�,}j��K6���XRo�%P���1�tvM��/�U�xr_��,�
�`�
eÞA67z�@�h-J#�}>w$AD�7��S�]x���v���;�?F�|��tם��G�z/��s�˪!x�"=��<y�&��	�l�ܾ�א�Af?�X}k�[,�~��d�'�����\�A(��\ʟG��z��̍���N�;
�X��.6�E!�ò��:���^�W���O�WōX�2�ĤI�j�E\6Q�A��s�YV(����MX��:
��*���&,�u��dv~�_KD�p�h��AA��N�U��4�bٸTS�
������N�����"Ñ(>�Nn�#���G�Q�3r�s�l3%E(�"HHY����R�~&6 %@A�Z"��K]Q�S�-��7���&Sd�D�L��,�,��IH�{}���
��t��CNu{>S�Ђ���ӵy�/q{Į�tJN��ȁv(\ԾF�N'���:���k$�^�e���N}�6�������Lo�4l}�В���ݻ��޵v.�N����aվ�;�ȼw:~��?����Ö��ρ(�Ɖ���nΥ蹉,�’�NzuMd�H�������aݐ�����m���M���I�u�^?y]/X�'�xMHLޅɶ��1�L�W�J�_ލ�{�m��>P���f���}q�s�躵��Z�#8��u��v�f�3���챼8X��6�b�5�9Uz%�_���7y��j��&�I���~7}Ο���n8Cz/=lO=w�Qʀ����H 5����kw�+�'by @9��L�㡇������x�VSׯ_��Z�B)�#p9bq��`�F��*w	>���	�[��<�L����/�Ϳ�{��aC�,0���{��Ķ��3�%�su"�
��+�!���j�K9�D�F.o�hi��|藍�pq��y�n3���1�
H�c��Œ�/����I
C~pb'�6�8
�~��ů����y�7�1V��p�KL�:��\+΢$0^������$��sC���&F�Mc�e�ޚ���C�//a&
�m6Q�B#cEa\�9
9�[S?�0�U�.��J���X�M��[�:��02�c�r��`�n2HK0sm�4��!ۦ�
\L�n%3}���2*���Qi�(N������Y�Z�dl?b�/���8w��\]�L̚�?�Z��EB�Y��(��s?������)I���mG��pM�����		z�'��1������8q��usk�^}�U9�~&BPz�vL�w��������;%��1��p����|�f���
�4��;��"<�6EEC.%���l���駟��O}�Dž�pm��J�,���>�
�� �� �Q��&Ͽ�?Ay
@=�T�Oz��� �]�Dn���nd�n�V����Ex��͸im}#�����9H��{��6��;�]�=����G?�Qz���'ns0N�:A{�헼1�0~~�3�I�S2�"����&m
��2�����}�}�rB�~����u���0��(�PW�^X��g�����;7�����;z�(�[�D.��9<�0����lb��]��'����hTߧ������|���)<�+kYHw�M��D�j�>��LB6�X�NR.��Q p��u��y!����]㢭�`/�=��xI�1�&:���C��1�{��g�;B��w�����5m�ѥ�k��sV��~w����&�T�k<�-�:vfe�I�q��R�A�5k�2`�ϕ$�9�rY���F �\3���E��X��6z��
���&h�Z���u�m\�s/~�}�	�ǡ�I*4]_k�ڿ�bb�79%&q�b��x(n�:m��=��2�ʤ��1z�;>�k=��Ybp�	����9��s1w��xz�,���x�֙`��݀{��@ܩ�y��r�VK��R��\��T)dx.��˳̱�)��c��u?�%9��6d�LA�^O[+Ԭ�s���R���v���``e
>���)��{��=Đ8m׷X>WB�e�}&�o�o�'���选n�Ku
TΎ��k��֤kׯq5�u�r�2]^]e��)�c����7\�Zu����$�V�M�uULf������m�{���m�<:�5&��J��D�jw�&&��;�Ԯ��Tu&�\�>��|��s������X�CFkp���5z������:=s��NTi�:.�"�ػ���@��"Əe�$��^�/�&���Z�k@�C��,����uQl1q�2V��l�ڐ�a=�
~�0���2�`�鐃���E��E�v�I`�`�#1sBR@f@9�)\�_��c�֙Ll0yV�p�����ER,��7�;66N��w� �d��T*
�;U⻟bM^;IZ�Š�kՈs��Kyy��s�{��ݖ��m�;G�<�Ob� ��+��e|�T��5q=��\'�_;�8
�SGe����%꘼ox��m=�7.�R�*{� �4��v7�kX9�k���;ʠG~&�%����{��7�'=j��'{�b��b��8�q��d���k��f.{.r�'�כbXP[��D��ܣ�����f��S��**�vv^E��M�
��G'R�Tv��^8�y���kk�F�
�(@�1�'�n?���v���c*�Ŏ��������t������N�#�"�Bū�r����9��l�F1�[kT�m�T�A�n��u�B���y��A;@EQ��(ySS�x݋��Ԑuږ_��4�ޘ���m�#%��Z~`�B�0��!ɲ�����a��>
���3Y{C��Zx��?�y!?��Yt��6ȸ��z�q�q⽩�� >\���L�H�r$���m��kk�!��Ҋ���o������Mf�
����"‚��g�Z�B�c��i�|ĦN�!��FӴc�~A{��i��C�rF�#8dz��Q,
�8m�
0n4,��T�9��YT��M��A�b)��J^4��"Bő$aۣiF	���ژ�&�ƛM�ѵ�k/t�<��k��=��g�a7��6l��x���nt��u�ą��A2Hq.�7$��/b��v�ƒcɸ�20�χ9듘\��xb��2�7M�B�/\�5�
�yݧ�ZeX�U�1˦�B�E�µo �����n�Y��c�,҆|q>����=�|0�
(Z����	���@emLݘrd��
6�lp��,K�)lZ�݀�FJ��M�p����~��䍪�[<��z+ �-|�m�}BȽ�ss�
?��p�]�H2��#���O�ߧ�3?Jo}�A)W��L��Uka��;Wv�v��� �+�	 �4�@~<�_�
g�&���۵���?6
�����ί�0M����X<}�C�����Q���H�1n'�}����ϓ�����\Y��|ྻ�{�2�l�X�I�%<�ߟ��Y���y�~�<'��F�!�P� M��m�[���Q���3P�{wn��6�#���Y�8�rHn���?-��[������K���p�ߛ���snM}=��Z��vO�յM�6��7MW���29>�s6��
J!|�[�;����Vk����?�-ڴ��;�o���+<�{���x<���ɤA�>~�Q�A��8�a ���D%O�+�|����m&,��솲^-u�蕕u���<eˡ
�e�:F]&j�uY��׶irj��,���]�W�l��{�^�ӊ�I����v�7'qܬf� ��g��g"�B��8Yk7�^�H���p�1�77��k�YYa%�����3LLOf�Šl�ӠIW6:4_)r9CZ�+��z�e��l�vnD����s>D��`�A�@\�v�P�a����1����$\E�|3W�W���B��SL"L�%�7D3�/�X��<<�{�&����4)J�9E:{�
�+Uhq{�Ay~V۬�p/�V�Gмj�"��CP���$���Ř	�k����$�Y�;&�LD1i���v�	λ���23���x�Yk�B�B�:��]�6���
��5���N�� �%��ލ&��2u�_�ͺ+��M3�ƭgc��&?��d���U�q�V'�i���
cT)݌b���(�AJ9j�
&��ں���|�f�wt�"\����6U�J���}Ljwhu}���o�>��m����T�t?�17���Tc�MA�hʸ�:�9KT�ϙ(ɏI;`o��m���E)��17=��1��&� �Í�̱Y�/X��Y#�g�����gSH&5�.`�卜�c�IY�n�β�5��k��6$n����BY��&_2�jƪ=!�`YW��DP�����i��bA��rx�t��d���zu�F�\���ak��L��ݰ΢ĈL}i4K�XÕ����ͶѽQ��*�U��uI��n��C���뮎��gEe��F�0���$�~��+E����	q[zLjF�=7�����Q�r3ycH��{�������cT����XIQ�m�H	��x�rc�vy�?�����D{�wO4W�7D8~���D��N<!]V��b/��R��D)����w�z�tLv�<ӯ˰������3|����?Þ�vփ\�(��@��>�_9"%�\Mal;.s�wT0c�&֋�|Nb������+�uh#�����\k�#h���#C�cw���˴����>���4
kXx!���͙�����SY2/JUmz<4R�)7pa���xMү�'C����=���g��9��I1�Q��������$nVN:Fr�"���,;���ӧ��T>�`�@����J���GU|陙��X��C�pk���.��O����ΝS�����P :T,0)(��c��ٟ=<1>�9�2�sZ�Њr �	�$�����
�o��g3&���s�Il-`Yhm�m-�� E�R�I�ۍ�:w�����:(kͽ��;�B�,�q�𵿐)Hg��@!��ބd�a��hf�|}�2�v�A�32��
@m	���	��L�m�Bw�hV� �Ϊ_����
@<�ƪ��&^��Ʊm��Q`�x؁k�
�܂Y�ŤC����`R��"��H�㬸��&�dd,h��	���C�(k� �L�AS�z���y�&���n����!� v62V&��<�OQ�K�R�߱L�����^|GzH�{���&ڹrb�7AbSX2O�vC�����=��q�.RV�	1*c�jd�9h�+�'���pwL�d��'#��>�
�]MQ���G��, �z��
I�.GYo��}0��U�^?�M���PG��ss�t��a:~�8�/DŽ-%Ig�;5����[��L��q�Dа��ah7��t�kS�tu�8*�̦*��7�qt�̽ X��ּ����"VF4��E�4T���2�t��p��5O[rR�n�P�<��l&j���ܭ.7{���'��_ܚ�u����ߧ��qsY��� �q�_F��Hc��6-d��q�z�x�g��|�;��N�V���72���ݡ�Z����)��� 8�v����|F���L&��S���V�F�ɀ���RY�$���~�V,
^\ڦ��h�	�<#��ͳ<Vg�#��	�x_bol�[tjj��2FV�!Vw\�6��+�"���L����.H3۱��E:0>C
^��o��ϻ�b�?5�Z!͏�,Ah��*[��=tp�ֹ!���.?J��$`����XV3IҦ..
 t�4���4]	��h��V�ɕ����hw���Iw�0 R�z���{w�~��D��.gKԪ�h�Ѧ
,5�N�-�\i�j}C,jL$���5���u���L�3��8LMU&��:4�$,]��gc��1yqc�A�-EWט�)36^`��I�n�f�ƙp@�<�R��	�s<�AOb����������F.��`�����):8����ȼ���f��FW�Br%�g\��%&c��][��"�}�VW;�٢�l��H�._fb��!�}���:~���SV,1�&_����;�.W���8*�T)�
�%�T�*��_p���
ĕb�ɪ��z�O�~mloSM�c�ns�~�g�w�-�cq�dr�F5�Þhm��)ס�e�5����ًWii�F�{$N�����|���~_�n��6j�_�j�m!%���v��aA!V��&U�,��I,�%&�]�B��-ʼni��%༑�QK-
<Εk���n�@�5������+D���x���h��A�W'�D��=(K>k����M"[�	�}&Y������Q��)n!#kkG�I&=g�`�k����]�[|PXt�)��
X�����
C���
mll�ѣG�ӌKQ@2����a����+/K1��L���C;�WWW�xƺ�ˬm�F�M�k`b[岌q�l `-��S��v-�x��� V����;v\�\\��w�*֮��m	�U����^
�\�t��m㢍��d��Z�Ίb���(��VA��]�_���-���:7Ը~iqQ���-��ڐ�g�~�=������m�JSS�ƳD��9�z,Ț�n��H>���p�r�X�ao�vD= ��a/^�cU,��X����_��n��I��o���-��@]�{�9r���ϯ��H_aN�����c;��>����w�^��UB1{��/��}üuy��y�2����_����?�̛�>=��%z�e��הB����#���{ɃI"��k��$��gQ�M�}Uf=L��yאy*U���ǴaR̤N;.Y���.�CQ��~�(�}������m^l=�X�N�Ʈ��cCʒ����~��IW@�ZK�yE�L}��/�����^�h�2���J:��5KTEsCd���"0�	R ��5`���Ӥ_z���k,��ܩ�Fs����-^��W.��+�с��t`�Fݣ��^ >��������$.���O��� *��1�".��J�."]��H���O?t��O����K���Kå��ݾ�@�V<�2~�5C9�7k��ù�B�rk�A6x���@9k&?v�#Z�|A|�wqr7&����#G�D�ȵkעWd߾}�ꃏ�BcM5.Bͦ�r`�h��R!2����a4JE�	�����MRel�j�f"`�!2�ۘ\6���FCD�2�	��D���s}��Y`������\0l���0	�8p�(:ru�pme���Yx�]�ԁ�����:��߷��y��p�H��6�k�;B�y��ؽ{E�¢)��$`�)[@�#�!�Pd��"��|D�m��vmg�`<�l愨�:a�FH
e �ϴ�#/�cA�11���c���Lg
	P��v�*o�hF{9�r`7���]ܕ�:��܄��2��qBƍ��<��/f�]g2����N�����$&]�\�J��@kȵ��^�>]E�2��2��bs�	�qd�gA���H�&���1��Ɂ���w*=��M=~;�3��#���"�o��17��Ovaޕ�(Ȑ�ko�2���Ȓ��+����{�q�f6ON��Y 9�m�׶�_��+�H/�ô���0
7�
,y�9���eq�g��?'��Y����:�{���cI�5n�+�В���d�;�����FdH�\�����?�&�Ԙ�C�� ���) ���s��T��г�L��_�t�GO�����n��YTd-4��_�����6;;�$E�����:�bV䃠�4l��`B�|bF�
����w�������}�.2(�D���f�.?y��7Co9�d�O��>9?I[���U�ɍQ�?'�^j�D��k��D��X���)�i�	��Yo�|�A4�d,�s��mv���d���,�il�b9o�rؤ�^V�/0�
�Q�
�`~��"���u�K��^��|�fg��Lui����2S�2�!�llӁ�	UT-dŴ���43Q�f���~�	��ڿ0E7��/]�bʫL!�F�Ɍ��^��K�}zmyC��M�u�9��
9ZYݦ��t�꼹���0���^I\O!�[ַ�G+�1&�gNS���2�`z��g��r�.�.�˥)��U`-�p{��yP����)�e-.G��bOS�P���r,Ce��xLmvV�\Y�9�I=&��L�3�O�k,,AUjmmS��"?{�5���Q�?/�8����V��k�r%��Yc@�β}�e��<m2�n��K@w㊗��x���cU�hn5�td�@�,�U��^�&��%�[@Rg�X�g�n�~��"�CY����0�&ޙ6�:d�%�������h�Z�h���-&>���e��������`����Qyymq�2jC\%T�X�����BV�\��f�R*H�*,CV-�o�M1A4}�5�X�g�x���std����SU~���R��]8�o����`�d�� S�\�,e�0	2Ť%�_ȎX�Q�6�n|^d%~!��M�-Z�mB쇙�9iSQn�=؀�9,DP�w��.��*4-��KW���7'��RziV>0��Fǀ���̽q<D��}�<�h�q�/���n��_�e��'>A�>�(�0���©S'yO~����
�]b ����ſ��Ϟy�i���ҫL�Hh������e%��Ç�Ș>q���/�{�}�N�o}�[t��Я�گI����yFƎ��o��(=�ē���c<�W��U;����9x���=�K3��~;����krrB��uם�/}�2e@}��ny�Ν;'��'?�I��_�
�  ^x�Ey���z饗��x����={�|�&f^����(ʂws߾���ߑw���������O�?P6(I}��|���O?Moy�C�'\�~�#��}���F���>�e������W�2EA$|���z�����G>,�������^q��!~���]KK��}THG�J����)�
��-�� /���oѭ�����C�?����/<�<�8u���w�B<B��G����������s��%��[�����o��|F�G��<��|'����O��|�
W�7�#��_Gq�H�#o�p��`�0��]�4B[Q�1)�e�h���g���q+�-�q�Y��}�4-�a؞���G�6qsy�	��}���R1�x ��<�C�!uW�j'N����s��R����y�{�t���+�ڿU';9�x��RE^���c���d�e�l��D�/���]"��!'�6�V�P�����e:��b?���A�fC�[X��=��y�_�N{.�F���Oߺ�tzb?�Y��R^ԀdO������o���ϒ�W�h�X��`~7�cHߺ��D����=�2iO���voT�]��A:�Q���@t��#�ܿ�?�k��'�c�G�r���Y!�_�u������%���	��mXJF�����X%ѣ���]ف��/[2��9�^E��@Q�
��A��1n5�_��/$��,�o���z��
�*c}ۋ%!��㴙�b*"_"0�N3���X�Xt`���'V	��ɻ[78�[��f@j3�E�6�̕��@�Pn�m�$�[H~����眦��աb�Q�`�Z,@���|�������6 R�}M<��0��źR2���	���,�]�qa�Ղ���r�=M{�f��t��.���qOq��wDNh��(�"M&g�b�0T�7�x�v�,�D60e��q/fbn����%��@�����Z�a�3���LW��G�a���Ɖ��)a�ڷ��d����p����Cr�p���/"�	�t��a�����N~^��i��-<ܣ��͹�/d	A�����u��/��E4g���nD{.������
[<��i�ɷ�J���w��
��Ս}k���>O܊(k5&S�@�	<A=��k�,~�=����� c�)�|Sk��Ʀ�{7�$ݖ~�gz\��ͿɽQ̥!���W���S�=Ma~�w{�n���}�A��r�с1�F�eh��nu���:�L�i�Dg���j�(qk�����u:c�댐Y}&���?�v��}h�K�@��D����h�����h@d'r:�ե�.oP�׋2?ol�\e��ZbN�U&P��@\�,1Q�[����@���
.?�ʼn�6W�R�����@�J��u��1r����`��@�@�L��a%n���Y���90I�����j�.��ĭ�v��mc0y����V�[D���^<�A���>9M�K���9Z���uS��;<u���ܾg�n���D7����5�t�z�jc��p��VW�1�k�t}uS�"-���@2�ߊ�:��	L04[X3)Մf7�~��&�Z�][m�u&#�W�h���N�76i�֡��:ן�-2��brH���mn�>�f�o�Ȥ%o<$7���U��~����;q���i~��&���Z�2ϋ�\d��ΤV��_��q��L�L�ȡ
5k�Y�	�zt�X����3I��.���SH�?������)�י���8e�����y�����B��"uۚ��u��7J�
25�$ȿ�I��<.
h/����h��Vgyy�����&�*˴��N5b��)�KK�j�e�mwM pȧ�3ST�I��ׯ2@
-��L���[��mp}�A�^��}U���&s
:���^z��w�5:{e�^�x�^>w�^:��	߷�[Y�d��2���St�-d3a��s��w�z�	C^_Ʀ�]�O�exm.�BQu%8}�m1a�&טB�2�!��͆�������$��`S� ���f2k�,���ڧO��]fp��+�'�e:u���UM!ՠp2?3I��G�K��0+�y\��FHZ�NZTD^�L�����X!�\�\���-O�<e��,�%��ߗ���_�1�A&N�~I���|����
A��(x|@ۂ��;���˲7�����:[�GN��/�$�(X�r˭T,E)��{7��g||B�Հh@�pn߾���oa�k[�98�� ;��lI���w��_}��(�a&;@|`?��Ƹn��vF�턼��W����{A �=���@|�C�}|$p
�裇zPH�dT:D���)!eΜy���o2d&���>��H1�'H&X��j��]���8\�^��e��={��y�{m(�؂�ʄ��Z�Y��ޟ��O�s�='��{��W�w/7 %�,�ɾ���v.�ٛEXn���o���g#��.,��ַ�^�|�3��l?���h�}c�	���)����$K8�F��؜rc�  ��n�5�e�E�^<�Nb���%`�#wJ?:�ի�g����K����M�=%�S��]��}���S���I����q���D���mI��PCNG$��<(��}H�Q]m�,.j�Fٽj:�
x���}�Q´V�>١|�^YI[�Iɧ��FH*�׼����A�
5_�}j��G�?�5z�ճ�>}���Ot��X'���E��~��5(�ў��沜}!ӧ�U����
�o~�>��/�.�@{:[�k�d,�l(�t�-&�n(�:R�O,zX������<;�q�������7��ק��}�[\Z���؀eȊo|�ʹ�Br��-������G���++,�pq��;+��@�,����/��������������5/�R>*���X������OL�N,T��h�`��8�
��2Z�b%`�K�]�Q��@�8'.k,�Dnxb�@�ŀ�DqZ�0�uV#�w@8e5�]��?�R��,���4�gLZ��/���9ZE�!N3\��ɴ
�B9�`�2&@�a9��!7sk� �*�i��62�
��E���ljhA���JY��hґ�
!d]c�}�
�mH�+T�W�k-���/�8~�k3������A�s�1��Jk	S��Z�(��9G0�#��>��A�	QMXb�XR���7�����4r�K�׏4�{\Y�p	90/�E���	c�މ�b9WS�;���F��|���*c��E�܂�:��i���f��>k��g
�ƕ]��0P�x8]�������O[R����jwwA�s.ؘ�S�O�sߙv[���G��î�_z��qOJ8%L�:�v�duG��)�5�W�*������wAB�,oN�L�	7����n���o�L�g�zf�<��P5,���x����ڷ��<�B�!�u�.iX`���b��J]�u�Vb�	r��| k24�d�I�I�E* S�xgyk|L�g�ym��P�E�e�3]g��e~�!U
u��/Ӥ�O�2���(?w�oZ;�]x�	�&�$��_;���ޱq�`�c��q�忶Yc��ˀw��0hv�IX�ds!��U�~&xl�J%����QKAɣ�娰�e:L$0�<U
DS�g�كNSӝ'�щyĶhP�I����G:}�No?P��3y�fP���4��˰Yz�[߻k���~�j�5.g�
�
ףC
q�U��k��i2�����6Z��PMơ{��!c`�e&?�Y>�p� ���D�}_\�0!���>�W����vU&�.e��3A��x��d5U�Ƣ�2�-�خ��,&�&��3(��i�	
�7�:��$\�2��iP�	��˳��x��n���m�׺t`�J�u�3��a�	�,�y~�8�fU���M絵yqt�"�+�2�U�L� >T�
{����>���?�M�2QE�or�JͰ�rk�`�f��ɏ������m0M�y�O��_+Lm3Y���,v�E1dBG�87���X]]�-&��w�Vc��	��uq��6�NN�d��!���ҷ��=,v��خTǙ�`�Y,J<>5]Z\�MXk�.ml�i�˰�-&�<N���(0�0�����"���嫲���"�n=wx2��e���+��#6�f�s��GLq������
[P,¾
�I�yc�:=mbo�,��"�0m�o0ץOVYX�c>�8ByQF+�zY+��3[bBezv�^\Z�'D��bÈx��PI^';�H>0�c+��Ջ/�����9`���H�Av�B���1,<�]�N��zH����0�^�s�ܿ��G&���#G�1q1.c���Wl*:q─�����T�qy��!�<�U/H�V����X=z��J=���/VI��KXm`_Wc"�ͩ[oap�y��6����ر���ٻ��V���`�o���4���O��x��gĂ�x�KB8LO��SO=M�0i��ԩSB"��z@!�����I�����x�Ms]��Zk
<�T*e��þ=�h��+�%�?�])���HA�]��V:h;�/��ؿ��|����D�l2��S�郾�2%��=���:����dN:s�5iK��:z��
a�����#��/�	��ʰ����U: ��x
�
�
�L{��\��G�	���i��X�`�%��d�7��+=��Ez��"M��Wɂ����È�˽�e��%qJz�����ѳ�/\�*��n��7���|����v4C�U�Q�p{mY��Y�l�]%�1&yyhta!أY��Ƌ4^��z��[�nd@� �Q`�W����oJ�t�dp��̷��u�]v�H���9���B��39*�Cm�k�B�o��^C�{�qj�+Qƺwr�������丳3�!�P��M�m<WŨ��3�E�wf�`tYl�"X<����J��H�@�gc���@�K��K6�����z,�����CG/�@�zWG�\_�ù1�C�i����܀u��ְ.���>�"�<�S,Wq�7��(�Lsq�2e�\���UYVbឺp�/�yV�2�  k��͠�8�H;�a)PC���q&Ǔ^,�ͽ8�J��a� �I�����]�޷���3*Mx��@z|�����3��L�Uν�ag]Y)Xt������`��:x�4��h��:q�D�|��JA�r�…r�P�,�Hpk��Ͼ���_��S��C���5Y�afP��l������}��և`����M�ʼ�t�V�X'@`2����pm�\�Dq�������Ą�"~zYX�@�w��m.h*a���5.�KB^nl�D��IP���#Ld��7���Vƕ���e"�]��7-���hб�36p���wn�\�s�(�*�Qg�۷@�*D�m[��Z����{���+�ə��:�aړ��K0�7�bQ^hS�e���r�4�b(,���Y#j_��d��$��a��X�q������"���ܚ�m2�l���}Ke�Th7���21rB&���]!iz;�מu3��Bߝ�3�N|�2�	�c���olV\~`�8CL�ɹ �4#�2Û|P^����а���9p��]�HA��}2ǀ���wS'|�Q
�Li�v}:
?>�u�N�Rf�>�R����ot��0̂d�r�d���]���91��ꟾ']w�a��o��v;?�Q}�<k�������쬀����?����=�.\r�Y���&>�jؠ�d���.���2�{C���4���;b9�_f��Q�K~��&>�w;��
��W���OͶqY�a�YȲLV�1^��2y�c3tr�yrt��U������% �g���0�sT4���i,[rc���<����	�z�7��F������+\��0h�ƚ�m0�x�ś��y��N��i�쀪�5k>˵�ҕ�5��th��8��rޤ��}΄��̕m!�'��gi���w�:F�j�����}��z�=qa����w����.��w��_�3g�r�����b09C�R�I�q����j�[��s�?!�kv����2�܍-X,�v�c�g�|�[h,���]�e٠�\^�_\�L����D��6L�D���h~b��<~zؔ��E,7�0/0�d�g\I�i����0��J
&���1Z�ަ��"�
�y�؃�I�Ť�e4\����s�w���(Y�_Q�Te0qKb]T'�,M5h�\�N7��~�*U��z�=3tb�$�WO��,0�1�}�Uk����&�)ztnq��:<���u�Q�	�	Fkn�u�׹݊��9z螷�������st1
a��bR9���(����5�}���	΀lG��7�y!�I܆�r��-�5$�b���_P�•���ݫ��4��4�S��*�R ��)���ݔ�m�5E��Xm3@IJ���,�OOH�)��LJ�<��X�vdދ�<L $6^��.�[e����b�46Y���28�vX��Ƨ|�����:Ը<���rp��%�-(t!8z�Zʷ�F`m�JA�$�m�_s��I�O��5--��"�E�D�(��AMS�0B$}���f���=��ւ�i|���w��y���YL��=�sq*{�/�	c]�2�u���`�ڷq#6��9B�q*
XA�o�A+ٛ0�j�Y���7�7YKӭ�ν����q��$�7p�����$��ڞ�#�� �Mh�����ɾ�v�l%C�	�|HQ���~Ѵ��;i�;��)`ݧˣߋcQ�]���`\���<�c�!SM���c�	�S���]"��9���c�X$S�1���Lo��O�J��|��3qx�����W�%;ľ�9ϙg�|�}�P#gR$E�l�M�[Zv�!u7 �Y������%�Д�AM�̡�,��X��7�{ߝ�=�99ϙ;�֊��#��9��D�'����d��;vD��k}���ܧ�mms��6qp:������qsm��7p}��4��)��:N�X5�9�����Ͽt�����=��&�#���$祱Gr����qi����[+"�\'���w�3����)>�ib��vt�D1C���~c�o���|��U�&"�ݽSɭ`�nDI���C�N��a�Y?n�v5�ڂ�!�(����$�m�swKe���iQ���0��fN��-K���3E)x�b|L�k��:�L+G$��١5<�Hy�
�m���k�Ϗ�1I�������F�Z۽�p��5Z�8'X�x�j�+��j��	\""�H�H?��"�St�?���#�G�J���K
P����*J�7����7�;�ɷ� yj���u�l�������x�*�%j��C�\�����j^�D��Gx�V!I٣��|�_��?~s�~?KN�u��=�?6%c�~��p~�����㿓���p���q{�bb�#;�¡��7-��`/>ƅ�:�9ѸGvȹ6�U$�sab�ZiŤ�l��B[����t�s� [�7I9�ۤu�F�n՛��W�f�j$,g��ea�I��K��p�M\Jya���j9���z\0�,�14	�DT&�[`Ml�un�{�O�B0�X:�����~"X��AD^4�T�(A#	�dj�yΪ�yV8b�(&g�4��Q:�Hs��k������.��%`s�$�ǁ$������Y���IXk�c�JLc�Q�$��Z��`�J���İ%Fx��`K�4'̈́�D�D����%���	��E��)�Q�I�&9(f�$?�n҄��6��g�2$�C~��r^�\�^I����Xh�c�#v�Յ	�%{L2t����n��C�Q�i3�'~@
&��K��

[﹜32ߙ���|���^I�G(��#��HF$�u1և*)�) 
*�?v?�e��p��s�ƙ��';所�o��E����z�����ѹ���m��^ۢ:���4�������y����
�g����;�\DH,"(��9_��w�X<��Y����/�Lx�# 3<"1֖���:��(��I6@�ǒW@ў�Cz��{"��L^�~�0�l��2�����m&L�p�+I;š6E� p�I���I/2���?�41�n�@&v���L5�Rb�����t=�19na:<%�6�B&��Ob7e�	���,�a�tc�+�-���W�	�M+D"+�s�~��y�c�K9<i�"?�/�~t�>�]�ߩ�E5D�����e4;��	9�S�)��M\���o�{���lR�x����+�nnW0�A.(A"�,vOH�)`���a�Mc��r���9QH�9�q퀍�Gm	��Dΐ� h<��I
��"�	t�ǸU]#��'�\y�d>�
�D�$�4>�i��7�P�	�N�~wtQ_��Z�H��̜н��ɳ�f*�ח�g[+	��x��¥�K��D�m��'0����>'��qz@jz�p"�zC"���](�nVpJ�F�Ȅ!M��A�<�[	PXK����O�������Cc@2�X��
0"�}z)O$	{@����+�c2�%�/>��%%5���1+Cz���%z�]\ں�Fw�ְ��+�:��x����e.�U��C��]��_��p��fC�6��u����'1[޳,gA�E�o��j4ѥ{p���[[t~�漦�<�c]$�@! I�t���J�Ɨ�"8�x�ȣ@u��+�n���\�
.`���v�(����.�?x����Z���>��rՕJ,#IDȔ+�U+f���>"!����C�ϭ��J~���p9zw��!�#߃�dci��646Aj$�z���M=
�q.��8#w�Ff�7��y��e������:�&‑��|hrmRdxֳgB�:���o����Ļw@��%Dך���A�4�U�d���JR�3ӡ�$�w��tb�/q�rdBRt-@��@�'��flc/YE�P �5ޘب\��#�	�[�.?3c�����F}�"���I��̐fl���t�PU^>?KY���h��c�.��BE�Q���M�MX�}.�E��*�^�Nz�"O��B:څז0�QXm7����!7}Z�^x��xm��6�퉗_!��&�Kz7�?< �������+�{#\����y��K��O�Rɋ̗$�,Os���e:�5�_Nڲ�-������^c��>.����q��!ҹ,�߹Cs=�'�M�&B|�8<��J
�扄�\e�Bu��5�Z2�[0��_c-�>�'G���YbW���f��F���#+�S��]���n��[�K��!��Q��#mT�FDD��\��=��t��D-R���y
�[�t���T�e_��!�lM.J���|��n����&'������a۩U�N���B�>���mL�rk7Hf��(�[c":��Zs�R1�Iq�$�#$o�n�@u�Ioɐ|B��ɏ�J��\��6z�a�68���S=���#�Np�Rō�ȗ7q���;��*+�ȝ3@�p���z�"����v�,ʉ�_��g�|L�?����/I{����^�$�…	�0���a�._��9AyҊ�:8���b�	����QLt�?.Lvp�����������ǹ�+�L:p|H�~:�֖������v��Ɗ���"�Aj�D��_�NJ�@\�y$�D�J�����q>�8~�
E8�:P�~3V��\w���
l��mK{�2�'>�7���z\2i���L�ka<�E�?��\=&�����PTq�9��0A�<�_&7��rS��C9�J�O��%�����0c`�X�z�P�,��l`���H�8I&S3�V`�l	����ea�ۭ��[��Ny�Izl�|��{��N��i�]�q�����&Y6��'�#�)t�V�8K0�y��eW*�a�iCƲ@��;aX��^<�L&�x~'S3)�[�$�/~�b��4	̵Mޮ��z�p\�t:+D�KfΤ�d��i�Im��Y�(�=S��v�j�,.�L8��SA��^�:�rQ�4P������s��6Ϸ�Y���:�F�,:>_��;拂���|y�P0�y���Y�`�7.��\�6�?���uޘ=�Z����_T���,�b@{I��H</��|cBb��15��y���t���{6��3�ІD4~�0s��Q��C�aÎ
�� B���Q��D�6�]W$�-O2�`H{�MI��t���I��@r�q8����.�+D��O��o����>�б	��Řd�\��t�c�6��2�&�N�ͥ�n��|B�E�.+�d���C{��h'�C9����کմa��4j�G�ۄ�>bw�D��r�����
\�Z"z��箐ZO�­�".�/��>VjY��<<���ZE�[�'��複�r��vB��d���e5�	�o�H�
�!K�g������د��#A�7{x4�"G�j9�?j���_��L���3(�r8�q�^R�jE��I%�I!4˜ȁ�j,�h�
)|_|�ljl!@���©�-c<}��Ƈ��4E8��{��h�X7O�(��T�y��JN�e�b���<?G,Ә��I�̎���%�qec"�<!k���i`@�����p���W/���oV%$S��&͹/�X$�F�s�;���̓�"��k^�8x�C�/:PV�2m�r�b���G��G����2{xp�q	{k���H�ȼ,�2�á��š#;���9��]�^���X]�&=��dH�f ��:�mq�1F04Ǚ�́�g�D����ziN����}�އ�{(��vi�]�̱H����	��SL[{8Ԧ]�C�P��C&��������xhz_��LU+�vt{�M�e�,<<:6�V�&���D�pΟ�%{8�plBz��"����
��A)&g9͋�x\4��03��]D�W	CXg���k<`I��D�f�,8�VT|����@����X�h���b�7��
��p�鋞������#2��8�޿_d��.[W:8Gn
f�����戌Y�$~�DFwM�j�C'�˶����� ��/��}��Xh��c郢�s՜�r9Tg�-��gd�y9����,�k��I�:�-ΧE{�����/�3�FkrueE�'^�X�G�Ml�|�&�m�d�����O��bT+�H?8�="�k[k���y�T��^�����g�Q��{�w��_o�'�\�{x��M�o�5��[$w�I���Y'y�p"Яno K�.﹄�ll�#����>^7���X�/=��aX�׬n���3�վ�	����7'U��)�M������$�<����ʢj�R�!��z4��0]�9z�[^;���N��5��Q{S������j�]/��W_4��ˎ�+�e�h�`��װ��!^ �rH��җ9�_�����d�#�D5��5�����ܻ�-���^À0�?I����B��#t������׈Hy���Dr�%Gr#����C�ȐR���mױ�S�QY��+o��h'�kĭ�ڌ���yŇcϿ����̵�#)�u�Ι�{�����:.�7�|{y8��G�D��Ɖؐ�g�g�����8�,���
!ڊ{vp8+&:�w)r��CYq^";4{z���up�T��\� d��,���9(vw0��9V&��X�K�����
X�Us��,�Yqpȟ�W�{j�H�AҒ&���ᑐ��S	Ae��p�b����zu�u����{�I����Б��֖�`Ҁ-M84�Sq�AWD�`��y�D�ȐB1M2�%	�����&F�ƆM���Fɭ���`�ܡ
C�$����D�r2]V�x���/mx��H�.���<��I��$�6�3l�gkm�KS�z�	�� +vr|2bi!�8�E�Z��t*n����!q����ƍ��|.�9�IK�Bl�J�\�\�qC"&0	٧#�����{�FS�)�1	�%t�#pv](2��(
c�F-��π�5�;m6R�|�B&$82H����S���(����y��\��ɉ��qd拳xrk�$`�	�el-��!?2�,�ۡ(����VYV^G�_Vƍ��<oL�0�m��Kc��bS�����\��O�"~<��>-~ypHm�9;�J�b�)b��,��yd�y�;�^��uV!�a	��{8�N��:>fLa�x����s>9�y}}��"b�>�x)�e>��"����g=��$�zk�2Z�.�S�n�3���:a�i�B�
�őH��ڣ�MBH��� ��`$�\O`=*M��WB#���=&��	��Ί��e�V�'����qm}7^�����>��5<��
�,�]�����	���V,#�j��$%�[E�.8���K�t�
�b�t]�䜝%���&�&.q���}��VMH���j�%����$ɽ!j�5p�:�f���5\��0�y���"N�+B���,oq)d*e��,C�ʵ�2Xkv'*I�ϗ���OR(�(h�N��!{g�^o<e;�=���,+e�֣��Cڧ'���[�+�S�?��=B�����Nm!����~�*%yg�)��A���5��'C	guxx�+�VPo��3�>����������B$�k�	�&�-�C�d��'9I��#Y�՗j�\�8��q�C:'���/����E2�W�Q�$$�D�ȸ=��_����P��T����3�9���.A'���2�
d+>��a/^Y�h�%"i�^8 %A�?�z�rU5b�b������Zh�/b�ŸON�%�}��f�����?��
댣d/a9UB�&%\/ˠY"a	�C���I�p"������n^���B�z�O��0�s���޼i"���G�r�FT֗��%�t�ާ�!����wVŕ�*j�"�/]F-W��d��M#��bJ:����Q�����UjoF���!�G�=����j�͖x1��jv����Z��jK��*�H����9�C�=�D��,>��ښ$����R�K��8K�@�"y��W=/D���@"gL�:1�f�3�/��_���ce��}���p�9�?�bp��gFn�=|8���\��>|ȟ0��q��@�?C|�=�5��S��?~�s�����;K�yYf�<x����g_0�8�:��_�߸g��/ޯ�k�e2u.iϿO�'��{o�p(���.���bP1%c��_z�m�DŽ��ÀC҃3�L�t��{�q
�j�����E��_����~JR�L�z�ҝ=����{�}B����K�E��c�����oN9�bE�8�Z��a�f���c"ߓ��u�I"A8���O�}��`�>:��c��ٹ=s]���_�p�Nr�\D�jט��o���uѵ��:�^��n���3�)kp�st�x�7
���FA��"ZO�[y�1�eK����1����{����y�Hϓ<}���e�RS�6j$��!��[�&����¿�Y��P�!�9�G��w��A��uB��Y���#1R��TZ���z�Qr��������Й�����G����h\{+�8��g�x	'����~�e�^>�q��/�畋��>����CH.�1�B[q�\�
W\����C�aƒ�<|�����‚�#=\���ї.]R������d�e/��`�ih�c���jA(>���7�
mlM�M!9-hҺT0�����s��������c���(%vι��);��p�4e�H�R���?���3�g�,œG����x��r)�Ï���]g\S��3��IBY�N��k�0�������9\�ԳB���sOeK�RЈ��	�I��4?"N\e�e(���Ƌ�%�E�;�a�`�S��y���sa�������N��Y	�iػ'�H F�%�Ȃ�#}o�1�V�Qn���AZE��}��:2�zU���a��‘v�؍�Y%9�rv�\�-��J.�0t��Ce���k~�z%���Ƴ�Y���F�cg��6d� �w�$����v����{�	�e�!��<�D�6����S)�^.��;~^��<}ex����߬�����Yt����
��=�&@��;�r�p^۞����;w�X��������r�p^[|/��H�:��Wϳ��/��6���`ЩC����li6�6�,�X)1{@����Đ�c��d�,1�c`�a��,{˒<�M���	��3���H�w�eVl�D̓����59"$������
l<@7����?��}R����;�x��
R48|$�0���,�Xmm���D|��;%� �`���D��3K�k����R�!s0%�CT�4BJ�+�����I�:�dX��2x]J��K0�	ĭ�-�.�Ҷzk�|���
n�	"}r�bzNI�CcP'��OJy����P�t��R��5@�H��X�\kȡ�N��D�O#%�
�&^���ӽz/e�X&�i2�����S}�r�	�q��V(�L�€@� �%`~��rk�+�O�ȝ�îx�O	LO����b�R	��>�5Ѹ���G��T�JJc��BIšcH�mP;FDr�P�ӽƧD4��ʿ��<�-�f{J@xO���S��Fw�O�|Rd�R��py�
��<~x���4��,NF}$�ch���p,a2��z��v1P�� �6=�F��ߛ���`�Zx��2�`80��5��32��
٣�
z�$�����w-_,��[SFVvVnF�7�F|�Tȓ�ޗ<,�]ŞOz��bX�l4���O�s�V��F��e�i<Do�o�1]�����ԇ~�#d�]���t�����u�Ƞ:n?<����[�V�����Ͻz��1��s�~wD�+<!�r���'9"/�X[Z�J�$r��D����Z��߿�A�@�8�B&%	���>���N$G��D�&~V�\Ft�b�XD~��,�a�e���'�C�"�˜3h��qO�	��U��c������g`SAxw�޵����o���w[5�M���c��(��f���/��L?�o~�8CD�A����c��|𮙽���J{�y�̀��}�ڈ�蚹~N���$�%�zg�����ϵ1�y2��ge�32%>-��2$v�!f�J�#|p"fI-	~�hZԭI˘�)�Y쟪q20��4�ɐ��x4�gd0�-������;�W)�&8��0�M{�TY�mG	�>�R'�|݀�����i�l^���W!��1�`�yc�f�4��KA8��σ�z~A5�]b"8>A�h�[��wQ{D��ع���lt�_�[[���c@Ϟ���/��P�W�����֬h�T�[�UTW��E�����@`�)��d*F����
�/O[�'��FYJY,�p���mL������u[��i�GW��:ͅ��-S�Y�O�8^+�}�]�E���o��x����p��\�Ki�Ѩ�?!Ҥ����>�;�#���mԺ�&���I�"���Nb;_��6����
�m�;�8a}�����m�\�������M0�mã�#�S.F�S��϶�."�.=��̯���uv�,�_���ޫ��?����#=dT,��<>���Dl���������3����V�%+��;�Lvp�v�Z��<�$Ғ�����p�s�Ѷ�0����[t��\
c���IfO�(���*N@����~hAk��\���w"��H�de]&��<��*,�ޓ'�ׄa�.���)P��9��fL������(K,�;B�
	����">B��c�qnIp̀68��p9CB+`�E�z��&0�j"d/�	m����_�d�� gE"�3�|��X0�1Y�싨��m磀�lJ�E��7���!�IE�L?'6��DSGL0A�'�31^
��d�lv!f��6�������%��v���.�z!_%s45D��ϋ۔�aL�1�ّ	&L���j��O��R��s6�ge���S����M;�vy����169C�=[���zXL�7���ҁ0ZDd3���
���8eJ�ۊ�/$�A$|KRNK�e	��x���y9�i�d�g!>.�)A�ꞯs�����Ӏ���_Ԟ����y�{�w�z���5��λǢ�-"Z�FD(���z."G�6��	O������q-�tƃQ>؍WV|	E11�H*aE:w ���Z�}.a�)�D���,2ay���>-�>[�';�g!D0(�R"Wqr�4���i�K�W'I{Isl�m�s��[��}
�"h�'�W���7�n�o��_���+_�rMu��s��ڡ5�`cN���
٥�v&�:�u�I���6�g�H��&�:<B�YG�@�2)5�$�tθτP����o"9B�1N!��2�V�8mtI��!l`H��[o��q㕟����˘��'��9��+�=UcMMQI��"��ȁFz$r$���y3�H� �g��f��T���>�e������:A�ȟr>���"24�[o4����͙�bt�vo�>{@>�Y���/������E�x���^c���e��	޿��|�>��b���q��2�c�	�Y[!b!�`x�Z��|�'O����džk4=wz�8 b��N�����	Y
R�B".r�>��z���~�,{���n7��|}���D}׸��1�������Cԛm1�v67r�����������,e�gm�C�\��xb$?��\>��1�1��X[������N�6�l(ݩ'C��j
��5Vac,�ܖ���Df�EUZ�Aw��-��=��m��N:��	�ݶx�Uj�wzb 3��NΜ� C�m>W�w��g"T�D=9��1��+�kX.e1�p$��3�Фy��'(�
x��[x�װ�i�K������?~$$���6���|�X���?�I�ze��Nh<�����ֆx�s�6�$��3.�����B���gA�[<E>�6�_�Z�fOB��<�(P>���>x�M��T>�H�Yt���L/u|w�Ho+r*a\�_ל�`���� P�X��:����ܹ��{Ϝw��X&��A<W��(0f�3Ĉ���w=������=f1!r�<^9#ʋd�H&Z,�^�~Z>	E����2T*�L~��$aV���	� P6��]��(�`.������.�\��S Sc@K'&���w8�8�|/�p�봊��|ܢ`�[�퟿`y�VFN�u^�8͌��.v�h�Dc7���y(�ug_7~�Z��-)�g�w͉�6�wc����"�C���(��8Z�N���#�t\��z��}��I����
c�k��<�&��s*�+
�$0/����&Vv�K�>n�Ө��@<�˙��$*U�!J����N��Q���;$���\*��ϦE���"�>��^������m�=�vH��"=~��wm��>S|b)]�Ѡ���D���Mu�iL2}+$�\wP��������e46���[��N�����4S���=&���D�8���0k��O�j�9�΢z�y��"���^�(�yflh+ι��.��o5��aCZI���=<\�rW�4��P��Å�r	����9�����pV�qs}p�@��Y(-1p�rߝh�$�!  ��(�T�$�&�:i�IrAR�(���0	�C�G�Y��ؤ\3�Au%%��I�����K+<H�oeb�:���)�,���,����^g��ۑ'��?�d`�!��[�:�(c�?�c��ڶ%)���219�x��?��frBr�b1%V`&��6	��3r��E+�o;�lN��$���\�I�n���$
l�@��GȎ�	mX �s�Y�����!GJ?{&A���3��S��/"��z�Ğ'&�F���$�s�c�om�G�#��4�&oFhZ���g�9x�m��A2a�c���ȸ��4�!g.�T�U"Lh�N]�	�]G���4`�����2*��2��X��g��1*�[Å���x���{8
?%;�*�F�4�ޝ���w�y�ÿvQ���b�w��?l�/j����y���^睳�?�LX�."�g���8ߖ���"rbQ���u�,z6��9O����<���TX�ph/�qDa��!kf[
���D�<$e_���n?�:f�Q�d	�8�cSk��6����!�MN� Jf��\
��X.�P���U�L|���-��r}0�*n���?�u������
��8�p~,ޣS�7"cL���%��7�b7qRN��!5�	Dx�~�"�"=�J��.).�℥��^��c�a�����tł~2
hZ�&���F�'LV��ʞBlO}^�DB��=<hҰ)��X)�D�=�Q�g����D��`:�>=�)�Nԧ��xIJ���T��?����<ܥ�����j��TK�m�A�d`~�D�FS���B&���,鯌h>�ФK�N	L_.��3�m�V֖�x�77���P�����{,I�䰺v���ƪ�a��$��I��Ɛ�K`ؚ�z�c���\w��t	p�gY���z�E�!��N�{4�y��1*���4f��i,U�=VG���W�=���T�x��L�=ٛ����	5��7z��h�a,Rr��1��x�`Ü1���8�ɩf��'��D�go�,�O�PB�rX�)�LT�Sƛ��l�*N��?��h������(�2�r�f��j+��N��M>[��8��ẋ� �X���\���a��$��ph����:RD�ܺ~Y��w�{o��v�:^y�<���N��~��h#|��#|p[Kع�׮`suI�s���&y}e�J���v�H���%��R�=Y�(W+��;��c�6�o�{d���C��E��ʔ���ʁ��5;�K��=`��\���%�R�T�3��{��z��wuB����� 	������0�O���qu�[$��6͗xl�{�g��>s|�1�\ kF#6'͒-��6DW����sf����"i���*#��}D�O�ӊ����?��#I���b#��SJg9��6
�Ta#�<m��@�5�R��ġ��ذ\��}C{��bF�[��{]��^�-U0��[J�q�CT�5
syvM9;���S���*^�#r�u�V��͆ޑ����j�*=ێ����7Cc����$T�‚�<:揚Q��g�z�gO��DI:ؼA�l��$��[(�|�����קz3*%xU>�Às������ܝo��)^�xn���+��$�1�%��&�,��O�w��d�7�
�!Y�5Q�e���)�?s)��9��|x�d�6�!��&��d�����|
�[�����B���N����z�*�� �F���C�'�6v�1N�걷;��)�*c|��������7^���M�*�$Rp�ʎ�J�:XO$>��5T���/^|�5�Y�5��ݳ|��"<�c~}�ʢ�'����+Ί����nY�PVLp��8)�
q���#�%/�d�6i�����Lv�_���d2a��
���c׮I>&B���c���fogIe����M�
�_�D!����Z�O�DŽg��Є�bPc·�ߔ�G#��6��ߒ��΄�l�%�3���,��N��L*�D`h4�Lޯ8�<'^\&:"K�SC�{o�9S��P�m-���M�&96B�jВS�j�*h��>Ec31����sp���F��q�N��a���-��N�b����T�\��F�wD*��h�*}R�؛��"�^��`B�a���_���<N�N���87�J�+|6�m����le Ă�a��H071M%����]�7�]���!�z11�S)%��SI�n�|��uLN�+}BҎ�yN�$��"
���G�&��(�vM�(!�v�R�'��ᩴ}�le��!�ܶb���H#�<	"�;�a��m�Ĝ�3gK �e籶��b����4��F_6����*Oۤ����q�~�O#毝?��z��_��g!b�E�-��y�賐�JF�_w�}]3/9��g�E��H�v���_DZ�u�x?��Ϫ�
��F���/M^��ٯ'ahà�]D�� ��P����`.ޛ�[B��*E�z<�W��=LID�8,��L
iίvt�&��M]�u[���x�w����p���gʆ�KT̈́x�
����,���8�;)�J�8$��2��ȁ*s_8�c("�
�ɠ5�>eY*0�X����l8E�g��>)1Zrm��N0�S@��O�0'u'y�N�~/ R%�G�;Dg�$�5�u�^+�kdw�EIe+6Z�lIJ��a�*W
5�
BN߁']"=���d�-�T��O��p�I/�Dv�*}N���+y����֖��𤇇{]��L˞܎1@i�3�����1O��9eX�Ȓr:D��Bk�Fy=��z��B�KDCb��x%��L��)�Ө���"�H��I"{�R�J�r��D�P���6��<Z����5"7B��%�&��`�12	,�
t��NG�������";&" ���8?���3ؘ#���6���絊�V���WdL�!�yg���q��MN���l\!"�		ү���IޥJI��F����Q<���ic\�0�c��e?m
l8T�y�ek���$��
��{�P�up����H�.@�{^Z��W�Q(�p��%\}�5!yNv��B��1n�>�w�zWo\��xK4���L�@��[�$�U0�tt��c�iiI�̄�5�f9�W�ưFdN�3�xu���@���񴚛_VsWs�[�-�=�Bd
�N�W�+Ī>3��i#�����"v�� ?5������ۇ�P�-�
�9���
���1D����Y=�튽i��'3}�tR�=�Y�^�x�>ବ��|ѳ������i��9a(5#�Q��f	u��y�r�l�w����sQ[?-��"�/��D~��&,˛)N9.,[�O�a�yko�^�</8	!L"�"�Z�Im< ��6$Yn��b�A���v݋�O�̬Gʮ!�1�ɟ����X�j6\�/8Q��f�1������::?Z����<Rôkv}p����Nb�yʎ�Y'%*��Y�©Cϛ��u�T��N�?��C[G�Ƌ���>���zb�KM:�>xӃ�u$X�#��
�*�\����A��+˛h�U�O>z"E~���� ��i+��-��X*����q�Ш�pB-��G;x�~�U��O'�H�$݉d�Z��/��{j�K�~��d�T'�n���"�$?
Rl42�G$ǷHV^'���l�$/�H�l'&Dz��EutGdC�V_e����z:�z4wB�Km��A$
�W=�����V�A��M�^zG�%c�s��م��`@��=y�����߷~�u�i��Y����ȓ�:��'݉Ln���aO�[�	�%�g
KZD&;���ϥRɅ��rw�<��·��Ϝ���v�$/g�&;��x� �www���t�x�	W=չ���ዦO%d�$�d��;p.�N��@ƙUN��{  Ł��/�L�p"o�B���4y�:�-6)7���F%�
Md,�M�C�S �Z�'țNQ[�%j\��Kx+��S��U�Lr���.�˒#�-/��d?��K,�`���8W�t܅��:Ex$quZ�w�/�Gd86VW)����D�ZbL�$�L^�5!��U�s�I%&�3[��d�<=zݞ��&.��h{2v��i�r*I`�X���4�]Е�!�á⋉�j�"O���\�y*�+K��$4ۼ2L��m�z�S�	����`�D�M�Y�J��H�7sMZi�'Bo7�%x�&�Bk�ࠎC��7�L�=G<��!B�8�C�Љȳ)�<�#aLb�m�|pH������	-�m\�z�ED�Y�p��{@��y��l���=����>��g�o�-�מ�,����Ee�5�d¢s�#i	5�S8���͗�~�}���o�]�^����T�$m,�8.�
+��`��H�?�}��1
ĥ��C�0{{��X��Y��^jtA�De8�C���I�=�@��F1G@�29�h|w�&R�҆<��M3�''ml\�ⱚȥ2��/U�&pX��16h���3C��$�=�	�7��y��pH�)�T�&�ԯ��M:aB�r��	���u�M++�&(䈨!Y�CdE�9D�eC�$��lq��;�<�5_���误"M��N��v��ng�����fWK�k����z��+,�K�B.�F�$�^ʖ����
p��J@2�Iy�ø�=��Z�PM��z"c�9vr�R.)dƈ~����;�ԮN��sN��������!RD,��'%r�h�l!$$��?̓�VH�C:�r�E��W����I��"_M"U̢I�gL��?BQ�JdI����e|����	�N�C8�rN�'�p�H�+�
�C��_��Qo�0�gS�TvP%B�����";r�(�����8��o\^���OpL���
�V��M� C��� -�d�|QH>�!�XFc���~)��84,��r={3�lͤ�
IX8F�&"���2�UI��F@�v��DѼ`ٕ	��$���~�3"�w�^"$�7Q�\����=�9!:ݧ~R��X�*�k1��بTP��7H�'��j�q�ĔƮ�� _(J������B����X�v�h��;:�w�}�y���=�sDZ���Ml�oP}C�M����L��D��C����e��,#���{ԯ����x���إ�,l
�T�>�9��1p�x���q����[�g��X���d�������i1�7�+�7���סgT�躙�V�8������g�1z��{�R���j�*�Y��=s�����1T�&�
���s���<9�<�nQ�H�釞�G?-���8ZM�К~u�v�N�-�_ho��3�}�Lr�r��]��6��h+	-^!��t5��,�c&���h�^|I�����h�a%�	�e�#;�)�$۾zcm��p�Kq�pHƤ3��,
���[,��܉�C{�*:�e,f����y�������ѭ��k��󕽏��_Wg��-xʯ%Rԅ2+��F'�ٱ����N/����ҍ�y�s�&O>��?&�):D�d�4�$o���&�k�pϫD���l��f�T7I�x9��an�l@2�e�H������,^IVq��D8�1����_
��K�U���氅�b�*��=4H���.�[�=<&Y*d�)���o�O�_^}=�I������,�'b���BJH��?�L���tk�"�I���t�]��-�O���;�:ب��r}���cim�
��>������l,K�ޞn���g�x���
������Q��9Ø?�����IH����3��`����Ćm��{r0��
k��x��',�����C{��gzhIi��o�
`Fb��	lN�
,0.����[8���x0�P+<V\�ܩ�X�W	���7/�\��1a��c�(�\<^��l}��4�@���q�\�Wqu�$��Y�$끄[2u�w;i\F"
�[��| �)n߹�7>�Y�^|��w��/�@'�H!dCk&"28�
בJ���&��~3Q�L���i�?D�~�$
l/�u�ἴM$|�HȠ��ܒ�))C4�'���x;��M…)Xʺ=Œ��&�䦆6|�x�(s�V�	m�YA1��?��	"��
�&���N6�6$����c)��Ycq�OE�0[�qL�qh����5�`c+[VBy���Ú���s2vm3W��	�4�y'�69gR6��!��0�y�ť6$켶<�o'�te����B�[F����󇊽�L�e��x��T�w�����G,�\��_�!Η�6�E�y�?�8�=�F|^[���y0}���-�q?��E�]�g����'�!w�E�-�gyƋ�"e���]���Ecpѱ�u�u�@x/i�Q"��1��} ��J�4��u�;�P=�u��i�0֝:�^e��	�Є)p�[��h?���D�z%k</���SR�1���F!T�,7k	S� ���M����De��x��Ő����31r���R*���i�r���I�9�e3�gwB�K�N�k41�J��4,�0���=?�r���.������&,'o��O�S$O�-��YL�Y2C�|�}T'B���b5�Xi*�J���7.m�\T#�iVHJ�1��M�!�a�H�"4���M<��B�=y��Hؼv,�%lζAo��<V�q���D�R1-��i��B)���I�E����3���9@8X�ƺB2�{�S���Cc��e�"��o�E���ϓ�*��L�K%U��:�c��")}�ڍ�jY"9��Z'%I�|3���:�(#�#����l"����S� iHdL�V��{�'(��|�������c����3���z���y�h��zk�Bl��o�E� ����|��
x��Z��aMĆYƳ8%9p�.-��)V����Pd��D����!Mum<�$X�d�R!+�7?���"�}y�2l$����ݦ��h��NN�R �#���E��+W�a�*�+Ԇf��dO>:�*͝p�����{��������&�گ�U"1N$|ս���)6�ְQ�ccu-�'�/!WXF�;�7����}��/�<鉇�J:${��i,�I|b�6���b�!��GMQX#�`Y\O��֣u3��i�]��6I�G��!66���>o����=sܐn b�ݗ�0{
t�ǵ.^L��	���{ѐh�Eą_7�Ãq_�_����ܳ�e��l�����3j�̳pw���/�Yf�6�#����n��ٶ~�e�O�3���~��$�Y�@koyw��&���^��,�%��@bk�{pm+�4��
�x�9z�h�4%��~�C�~�*rI-!6KI�H���>���J2���Z�1V�k��2��s�Z�"Ɣ�z���Sl�T(�Ф�]�J`�\��|�{h��s��.�f]\t��;������>x�e�N�ٳ�`�"��73B�ͺ�⼪�|F�&#��sk�����Q��n�v�bf��q����@h'�-l8t�k�zNJ�d;�v0��]���vۨ|�d�ib�_"���~�s��Ddp�Up�$j]�g׶�;�OH���U�ZE�@=#���(�����z���`ca1��$�6�=ɡ�G$ė�c�fh��ۼC
�rk?Y[��w>�sDx�L���	����@������K7q���a����I�s��zxj����sx�Je�q��	�[;j���3ԿW�}8���?m���!]������;��V��;��X}��ƫ8N�1�Gk���at?��=j��=e=kp1�<\��.�9λ�ye&i�W�\�%,���[1����D���!��������.i9����\�w�r�;����ߙ���=�S��O�Ze@r��-���p��-���-\�+�"�/��],���}��?i�$V>���vpd�#J�°(�-	� {"�*���|�oÕy�Āʰ���hC#�PQ�G�������;���h�I�C��e���TH��U��`]���ߛd�2����M�&	���p��2h!JRѸ�y�$��2\�#�e%P�I�y \�8�1�6��rq4��;,�aC�"���+��w�gj$<Y�&^�)���#aZH� %�w��/Jٹa��������CX�#n�x���LyS�Z����$hg/��m3�'�&�n<�T�u�<)I��8"L�ze|��Q�z*)Ċ;l�5X�W�{Gf(Kf�Ye�o��+�T����*cOW��狮y ����^t�n�v�_sQ[�;w�=�~��=�4�?.���w�im����=�E�����rޘ������"kQ]�)b����$��*��"���3@�!j�?9阵\�H�pT"'�<Z.����^:�/*��x�!�JX� �=ɹ�<�@��DPpγ���b�ɟu[��@�df�5�]�i�N$L�p�ly�ESR<5���xq0A�{s���<����=X~T�
�Rl8�͞
joF��!ݨ�!9��].%ţe0�J�i�������3�[+���NV���Y�9\��$�c�Z"p:#!��j���28���NdHh�F�H��4�?��g���:�d�,��2��^M���5����#cF�>��Y���Y����#`y��nHc��2B̌�y�=<E)᲌��Ǎ����T��L�]k��R��0OF��,EM"f��ԇ���ZĠ;�1�ۯ�-I������Q�R)CI^��%]
��[�����*�x|��b�ƈ�b�����2*�<Ri�����|J��_��uR�s�]��PP	И�R���^�O+F���|k��͓�$	��f���G�L���	�ϲ�硣s����#r���\%'2z�����nl��L����l���{t��=���Dd�v��l�j���2�D&qX�DSK�0��f$�t���"�O�}ѻ�J�7�Ь�&r�ڴ�R���J�V�
�g�U":&l��o`��o�����K�!_�+���^y������ u�!.Is������c�@Mm{���Q#��;�VVW9��$]g/���<\��.��틈�iG�jĞ>\��A��Y;}�|����-n�]c�?���ˊ�k�Ly����o�8�-���k,f��=GG�����/V���afO�Z�3�ƿ��?g�/�&����BwA]gd5���d��@����m[TΓu�{�P��u~Z>�e@��@���<�;=–�}d2Ul��q�p��(�^����*�iƑ�X�$Q'����:8Ƶ�iK�\(�{ヘ����G�
��s��{��D�����aX
ڷ�x��~yk��W����"����V�ў��w�{��|6A��
�
���>�*��?=��!�����Jͮ=s�kT��>�K��M�i��۰RzjW��zI�3�7a��3�on�+^S�z���3k��(���+��z`�����˵��h<_36�6ʴ�Ro�.; "����A��mܬ��U��^����Az�W�u��6�Ii��8V$��<y���dN�_8��몏���qN3x��K��C"ھrx�#k:�4��$ջSl֊�#|�{�+�2�c�&HW�	i��p��t�Kk�I"���9�_����.{��$��G�H��A?��o�n෎��
�1b\:�%Oۈ��S�a~�͖�m"s�|@��e�oLRX%B�gR%< b�s�QKNyI��(��X����ݷ�u�e]�pW��|�`�����d������?y�h�_t���[t͢�Q��g).�.�|a����,�8/Kr��d�LF١8t��|Lx�!����|��J�V2����uX���[YKvga��pF�
%���C�iY ΍'�1a���~$iv�,:���}ت�c8��C�X�\-+��&&��)�y&��a���3#J�k�t>�<O��&qV��r�^.Ny�6i��'�#RX�D���rU�����$>��#E��d���ĉ�I(&��xj��L�sX2 @g��q$�����V�09I�gC���7����P��q�)=�@2mÔ�B4�[��40�����X4�D'����%ЎGT�=���x���ϝO&�B�X�ņ3�xJ�&p}���1�ơ�ػ#��Yn�tἇ�':a6����e�;r�XϪ�h�Y�;���?��f筿�9h�l �-Z��1�-0y]����c�a�-e����p��X[B�S�ߍ�, �(~�5�J��G�,:>����3_�y`�y�/j��������cѵ�oߢ��F��}ϓ����uѳ<�~���iu|R��U�G���"���&Y����6NyOd��){.t��@{`�$b��J�JE�;�ק��R%�I)ѣI���ޔNX-�Q������(��R&ǀMH��PH�t&e\Z��5A�mX��a,G�d:C�L�L^���Z�d��9��D��u�I���9,@�I�%�F�0�,�]R�R	����::����Y�86.�.������x����܋�?9$�c�;&% �y��;�L(`���-�{A�s��Gz�B!K�8�0��{�2�A�̈���,±�C�%�^��CD�B}�A��ѣ�:¤�t�e����m����H�R��ƍ�^�\ã��AF�)4H�L�}����=lS�X*����fCУ�!^�z�6=�Xt�|cRF��E�9l�pa����|*�T-�O3�Lt��BP+�>�^ D
tzخЦ����Q����M�+i,��i	q4"��Cs2A�v'�=��I��x��Bu�ΐ��R��c�ȂW��Uц�Dn����ȱ�S�J.������׼K��]76	�y�8��T�~O�?~ؓ�T�K�<��aӲDh�I����>�e��kL�(c��r�)�S洋��9�_&Biki����x��&��&�\����ȸ,���{�~Kg�"7{u�;<�j��O�D�iu����Ç]ܣ6q��$�k��������f�B���D"ާ{>�c�guc۴.����8m���G�p���A�C�C�����^�w#��/��**���Glcw��ӽ>�Ea��� ^d��)y�5bbb��%Wǀ��G�����3j���\hsc����m�W�B���<��zW�~�k��}q�@��~��ơ|M�E!��3c
~D�8}ݥ
5^1���*�~���̗}"��P�B��"0h��OB���Γq�ʟnL.�~^&<#G�>�O�'��4��<�� ��d������SZ��x|�:�G�.��g�.�
C�]6-��Ga����#�_x^�DP�`����>xB���[hѹ���W#���p
���葬�ҍ� ן��5��z��瞿��v��?�=i�	���f�������/��cʯAG�u��8�E�(O�o���S�y�^Q{�x�Aϑ3͋*�k2����+�c��討9��Ԉjt�ZO
9s{X���S�O|�b<�"h�������c\�yp���'
�&�ئ�j���|�_?�
��ɹ�¡ȵ}��N���SGJ��F?1�A��_�ֱB��&�ק���grD��<"=���U|�a���O�隲�!�y_==��l_��w����H�A_�A8
�e�$����O_|
o�[�a�Z��o��WR_B��:�n�m�o�_C����/lD�.�ͽ����$��i~*Y���%|�y�w�}< }eJ��15�H�j�	��9ť�ocs�9\���O�B
MDo�|3:i��},g�y��"�y^ן�缽�<����E�?'yQ%DrDǬg�Cu����r��n���w�;,��gi%��Ґd2JN��ڵkp�ٳ�!��c}}��k��@�)HDA�O#�݄�Тl�]���S�6ĉ	�ŀ<��|�"J�3MB����l ��%aC=p]L�d,i�ra�z��.t	Mb���O�����X�O&��S�(��'i�,p�
_�ITLH(j3���6���y���f�&)�6�6�b�)��	Ŗ���c1?q]h�1")@��y)���/.O�X��g�	O��]=B�p�F�q�FK2q~��MTϤ��,R.J��W��������)��DrsLMސ��@˱��xMލDd�iCw)#>3�u����>O!�B3ϸ��ˤ�������U$WH*i��PnnDAF��5�u�x�*��2��y�Mn�0�rI��H��L\M~G�	6�c�Xh^O�܎r��틞	T�>�D��E���X~؍hQy�yQ}�����z6��@����S�I���<������+�5�^c�Em�﷎K�Z�}լ�|�^��sH��n���+������Q���|{)���>�\���ovT/�*��,���\8�q>C�	̩tR�[Ǥ�6͠��
x.�
��3Vv�}w��	M�F�S��z*{_�y'UV�d���
�D��
�������P�a��Q�ι7��'�5�JYp����|q�&�#��I�Ћ�,�.���C18&�3M�J{0�1�뼃qw����I"8�K��\�\�a�*��C"	��kU�i��S�9T�@w���I�����x���2{,T�
ǃ!���Z��K��J���1�]l�>Vc	�5e����ɡzZgr�?�x&UBN�N�U&�3��6���xc�hl[c�*�O���E�Jz_�,��52V�}ZI5J��	��4ɘK�)�)<��<4�\,��$��&��ý#\]/R��x�<z�vsH�E�����ʽ���p$��1�c��J����I����Y��:�A��^{q���}ީ�4֫46�܈��:�>nl/��k��
��aL�Qs< 2����"P��4���'(s���J��E��:#���v�(�*͉�S�/��X�3�R��b�s^
G���
8�+}.~#?%��H�B�є�݅����×��,ϑ|� �O����E"-*���s�NgC�Q�М��'�&|
�ܼLD�%�#�hgo��5�^%�m'D:���Iz/�l�31r�͙�ɑ!�w)�4���p��2%�6���Q����Ͽ�
�eܥ{T
Y,�~�i��b�[¤��a�P���*�Ծ7h�t6��&W��Uܸ��w�*2�ڪ��`ҦX�I8�GOv�q.�9��;@v{�c�h�#�ྜྷY'g�.8�=��c�[����Œ��@�XP3�����d����C�CG�:+[�DĬ��k<vA�"��kj�?��ə�Ew�w��@��GDf��;0��*2$3u�'�F}�;��d���,��v-.g��H�
<��iD��~ħ�]�����$2̙�I!�uR��w��ġ������钭�CՒ0�)zw�;$J��f������!�u
QA��	p��uBK�Ft.{ ~���9O$�S��pJb�?�X`�i�f)�e@�
W/E�,X��Q���L�6?�x}���kc4� �~ƃî�����A{���#^���}f]�-�Pޮ�Fszo�����jHR��2���w��c��U���3�v���TC"��G��;�xqHD�4�DP�cy�(��VI�y�}�M�EEe�[�=p&�)�Au"
�$�I���m����	J$']"��3:��mK��%��k�-F���}�W�+��<����kD���/5u@װQ�cj��$�����`�	���-�tr�D'I�MzM��U��G��S�W�/|�ז�0l��zV�B�e\���_�ïT70��K$D��Զw�$3N�(��:1�+�j��Ԧ�N�����?z�p>��G����r~�e|����Ҫ
)�g�}�0���'�#6����^���<��y]��r�e�Ã�8l�r�Ni?��#;l�+IVn�Knie�;4����$���)����Z�����PV��	��Oz����!��888�:�H��[�=a�?�M�	m@݄
/%y�
g��>��o:i@�ǃ�s��r�Or!��W�Xͫx!3�0��$).��T,�
�5�[m�p�� ��$�I8�2���	��!���@=�{: ^ۄ?�LV���"��d� �LD�(��K��!kLX��U�옅q"mV҅9�n�.i�!�&��k#4y;��|.+#�J|�X��O�ߢ��IIf�6�?K��%F�59D��\-`+g��钒��)Z��!0d�Xanj�Ys���h ��kX数SV���i��z�c&I*�s��ܱ$����ei!�p<����������Ʃ	�.�d�>��AnN����s��)�W����P��3V�f�EY6� �E���$�A�m`��́���B#�1�)�W`��3�2��G���q�vVާVa��*�.��#e2��-?L�����:��ׅ�0}_�[���_x�w�`���.q���<�(q�9Uf�6V�~_�(Vɋ�v�{��5z��7�_�.�(4Ύ�Ԃ1�;w���d� �ͻ�6�b2a����A�3J��|�.�Mѣ�:N^
O1�c��C|Dc��J�?>jFۈ�h++H�g�G���ha�r�����Ky���ٴ
AIBqJe��E4N�4�Pي���Δc^P5 NŒ�2�}��=+%�	��Mn:�$�c����Q !��Oa��ٷx���'alIsͧ�x����R��������`�|�[�=Y9!��m\�~E��I��׃�
:�FW�HQ�пvHd����K���\ҋ��
�D����d���Ȓsy�F
�5�2y4O����)D�^���� ՙ�;0a+��(��D��D���pL�y{']Q�S��95�lac�<��
N��H���-$������Ҵ��Fb��N/�,���?�7��V0 �b�̻�2�ɰMr

��x��x$H�]�-���h��12!.���t$^%�\��3��?xҖ}�GdE�P�v>K�3�*���>�S�,�p�fRD9�%}u:�`(�H��r1�n��u;���SDR�D�d9�<�X\�=���/�`5KDF���sb���N�����n.4V�{ؤQ��|ʼn�į�)����;1�Y���	�r	�v�m��ch�����L�����u�1�2�,��|�#��I�4��j�����	����e>�[�
�7E�f�Y��������9W
Y�\�"2X~��}�,h6ے0�1����=yw6je�4�x��+FP�[i�m�,c����Ȟ-� ��!������Mi��6P�QR���:�T�p���E��><���ب���^�<�e�T��\u�2����G'4H�Z��:�yU�c���m���`�Z���� �cEB�������Cqy����N0�{O,�D`�Z�+�b�KŲ���{����l�%Q�{�{�@-&3TTgLj� �,�g�?��0��s�G�̒��:Zc3n?���Ϲ_��"���~Mm�� "Mf�-Y�
$���[���Ό�iT�@�{���~Q�1s|P
�
�k�e_��X�g�1���|Z>���'���he	�[M��h҄�f|��!�Hh�`�H����=p9�38!4�YcY���7+t�1��q�xv��?��$�Ii	�PA}��h�� �G��P�k.���_�ީXw�4�f��{Cf�
N�p���/������%�Y
��m6�������ah����+f֭��*�k��_*e+��_7@aܱ�w��A�_&�+4I���4O�`�?����9�_�pc�ĵ0�K�VINY���O�d�7-|�dݿ�*��K�3��gʫ��q�M�C��ΰG2a��>g��]O΃1�:�x�h�\M��+�I&KOiQ�$oм�F��0��NI�y@�C�����/g�X�Mp3(࣓|^p)$���}qw����c����^�'
I_zY�B��i���;4[�5���gi��|��`��I:�eU�m�UG��,�d�?FDP���Q�%K�C�C�5��=���D��LI���i�F�t�O�|��/����5t���>~8���h�X�����~�a�|}Z�s�-w,�7�yt�g=s�����P.w���KrhG|�w��D��|B�5B:Fd�$,���w0����X�#Zb�1d?��!�:(���u;���<0�cÀ��TZ�PC|�������	C�o�3a��?K���-�B�>)L@�gB!�� t�lx$����H&>��f�%������.��ߡCȘp`+��ɩ���[�0����gJ��o	�3Ê��Q]&�/.XL�'�K�*$�������(���`7钖�pV.���,ʑf�q�
���%�I�ř���'�MH�gEmJ�o��̻�!�(H��I:��jl��%�dl%�<{HX�@>M�+t#�4E��7
��9^ƒ�|$�Lb�iI�M���#&?��2?�Z��K�(��]�q�Ƴ��@�{�1KPB��V�V��	��mI["��d�D�a�.ʄ�2s�����ђ4�6����$?{��$����}P$yVTv�s�M�vcf6-�ˆ42�X�&���]m��]Li��Y�	C��+�jm��b*�[w�u���1�ǩs�G�q���yu�]wQ?|ao�����I��6+��Ђz����z23�t�"^�(o�6�X,���w�wl������{1
W��A���8��g��_{fX/(�hZ��4&hk�i�+=߽��u�>�8�pU��Ъg&��}<J��׉�zA4�xpL�|g��׭�1g덕�������L4��]g]E���}n�^oz#�O�6-�Mܧ��Ͽ(!�#N:=$ ?)�7��v�ڧ�� ᘠ���	���{�}����F�?��I �>{SQ��ڛ�Ы�%,!�y58���l�n<:y�!{��i�0��ҹ~�羈�ヌ��cs��ͅ�=�e��m���l���R��q�i�=���/�"C"Toߩ���x�&�����ߤvMI�Y�gPJe�$ecii��$
�5"��h��4��'��2�T#-!KTO2c���@cD��";GJ�ZH���9|($��	��`:_ͳ[�X��;!���F���L�=�Q29��{m��)�s�̐�D`�D��9k�p&�\��N����ucX�$Y�
2F4o:b9�`��'9���A2q�sޅ}��u���c񂞊�W�z����=����C>e��	D�;��[��ze�v����tD[Y%�i<E1K��R	;�ܽ���z^��4�K�*��v�M��[tH.<��5�J%�<RhSEs��)��A$s���b�!()�zy/^������o�@dH"���eA��H���:�y�-���o6���M�	��2m���r�&��*�<��n������Nq[��uC���U$��#�ww���ZZ^���P]��x>��\t����Q]�^����5����oc��z�2Dj�;i�H�C8�ck�ꍖ�锞���&4͗v�A��K�[����W6P)p�������5�D���_�li�.��f�:w�����Ǹ�{����hnN�BW�A�ꟼ�M,����k�z�
�2�G$k�q/g�rߋf�
�q�UG��;�׳��8�̉d�eNN�	��.޷g%)�
��vpSލ�net��A��c�{����6���?>�s�nx��t�3��3����-<�&^z��s]���!~�/�ey�D&�g��s��
�~�!���_$���_��j"��Κp�	�G�wO�ɟ��"����xjug��2&����V�~�ݸyIaqp�����6�Y��V�`��̂����rQ��"��de�&!z�1D�䄽
��*]��~%(	�2"!:�\��kN��搀�d�i`��c��PBr���H� D�׬�@�-��܂cOS��f�`_mv�t�C��*�Dć[���]�Ì��G��c�U,���*�;��̭A����W����J�%��f<i�=�aW��|
ί��m��x���1����t�%�AJ$�e*9�����x��u���W6��	pL�����C����{������Et��"�{���B1�8%9�N�!ݣvQ&���u���e���X���G8H��M��WI��l�
̜c��HV�K7o���|@{��K��=��.ZT��9�*|e���^���ǭ:�_Z��]��F��<���?��?�o��K�g;����Wp�d�0�!6�Y�o���g
B�oI��J��%��S��t���QG�\�>l�Wt��J���~�������о��_�i��������}cѼZ�ǹ���m��8�.I�
��Ҝ�����f=>�#�=<�{y�g&C����V~.v�w��\�Ltp&;\C��>;���pa�vww�51a�&��l�9�q�,�����*�e���wH$'�6^!�R>.���!�,�LmȞ�䞘
x{zz�Z�*VP�lN~g�R��db恺���.L��=,.��l��$"2!��$�f@���N���Zlmc9RBRLp8-�c�\[b��$q���Y�]h(In�j�6��td����"7�c�a�3E/�#mL��%�Tֲ&������"�l�'�ʕr�~g��D�\Aԟ��D	���9L\cR��aD��e;x��i��I�yF����4H	Z��+�Z@�@�W�]�
kuZ�����r����x<I&r��ܾ�h,�q�+����4��;ML$4o�F���%�+���0^����~:FI3C��\�g�ߓz���y���L�mX�����
�L�PZ��(�ֺB��bkF�d$P&��S!՟����j�����ƙ�~�w�g�u�ը�a,�� :��}澜�>�[��6����J��+�8��X	<A	�8�I{��G�`8���Q�]���f6]�6����2�ͥF��/z�GjD�c��۞����=�@��ϊ�ֻ¬n�Gf8�C�l^��>�tT���6��q[�2�����=p9���E���w.�:��o����'�
�:��'w�71ؤ�X
��%�]�Ln�Ll����迠�ކ���ÄGg�BP(s�+`HJ)��a/g3�~��Ee� i<O�vCB*�[��U-���j�(9�
��D"<�Q�{�h/��+��NJ�е%9����˙C�U��S�,����į��_'� Mu&�sp��ozԎR!�6���CcEM1�s���]�
����VW@��R;D��XZ�f���6�	�-n�D�s���&�{�����Shu��U̻�"`�9Hb3�L$C�@�&�B�����Ӆ����������xS��lc�Qq�3mƥ�K��6�өx۲�D�d2E2*{j�bH�p��*9�|�*��b�9:��8�� /c���v���B7���

ڢ�b���F	�N�z-�"�g�_���V�x��z�h5�|��5M�'�Ua�\  <O���w�7���6��P�ϔ�I�!z�!$��C��H��բ��?�c��'�m�V��`:��{�~O��T(��H�W예��q��4�դ�_J�Z�–nT��D�Ү֊8:���YJ�B��x������c��"�2�Ec��,:o��`(��	)�E�`�e]&�k���1�����yg�}�uN��&a�^�\�8���ݾ�c����0�'���3-r��G����Sz�֗�tN�����u�޺.^��pl����Q �����>�I8_n{�R����qi~�l�+�k�Q-%}gDϭF"'��G�>��!�-�����;���D�����~w/l�ѩ1�@������t:M���~����e҇�n�	���.�n�n�0�W��zk���l�L������=ׁ�b9S���8��s�<@C[�n�|=�ψ`�l1K��{�-�:�/*jK��ϴ͍�4i�Ǐp��U�?99Ʒ�Pd��{{�h����?�\�ro��"*��pH�����}ɝ����˗����Vd�_��_�W��U	���ϼ��w�Q]O��?��������/|��Ϭ
j����8�+0䞎��='���w�y��͝�]��[�u̟7�n|Z>�%~͜��ĸFw�g
���.�F%W,{�j�o�.ey��%���H��B�������b@[���b:�p��\�_�:�t�H����L�5Q�ʝqܼ.}��z����Ύ��ѴW�?t��ҳ����Ӳ��� ���<�1��l����*��x��1q�wؐ��U��:����c�7q���n�%	Q���}3S�Z�t�J
�B�I���d�Q���*���[he
H��%�&��[���
�]|T��M��&�lP&Y�W�����v8�>�aB�z�-�G$&����=��~
?�.��*�;8�U�U���	"H�U�_PG�G���)^���O���.ph�@�ssE���D�o|x�|�*~�q�:���\	M�#E�����Z�������o����|�n��T��K
����Ɓ"=����_\��_;~��AKD�T����
�_[�f�d�nwi��<!:Ԗ�,�&�6�����GX�.��
��.�2�9\T��}����Q�;��t���]X+ǂ��V������,�LvX/��P�萰V.i�i�d���pV|�%>�k�$a����V���֖��� �_������J��DlY%���\�+9���pB��D-�e�
ۼ��;C�0�$=�oH��_zI~f�&��H>��]�i�!�-��$��0N&_L����{c����u�(a/�+׮J��|�3�Xچ|��J&�5=+Q����ё�Y��,C��K8$I�13�J��=��w�9.S��@��I\ފ���2�\�BK�$-1��6�DL�9�^[�0�,t�w���8�6�t\�f�����r��b��r|�\�/Z9�4�0=�&e3e6QIF:�8��=r���)&�e%�@���i�����fc��Q��7��&�@��VrSb!qߟ�MƊ!A
&�B<�S����6�x	�&�s%lU)a��	Y�}������t�(e���6}�nn�<2.����I��l6���/�����'B%ҋ��e�ߠ��:�5�y����^t쇕��:��o�:�3tG|��ګ�j��2oq��0_�֞Rl��KE��}�a�jQ�3��g�
�����2U�h�&��T�־�Q�η�]�n�$TN�]���΀��
IYo�����˻f݊�=#��w�8A9'xZ�$�}�h~��3�j� ��-	�Z&��OP!Dcc�զ_3^��^�qVΞ��TT��<�*O	w��n�Sȟ&���T�w�bE���,z���ZBB�{6�o@B�s?�h�f�R���d��	ǧ��,��ms�A�G�R���(��F�l!�F���5R�@�L��#&�Y~�����(=��2�p���udS��2���-�����K���Z�����O��O��R	'DP�!�J��j����Ni�d�>��gH�4����Ԥ��QH�αH��=�J{�6�6.IR��(�j��aR(x���*�ë�KX߼��Om�U؄��S	C�s[$qL������ ��L���V�`sa]P$�C��U��UIȯd:E�3��pn�������p��x,^�:��#��Lj�8N6�}g�mQ&e�ӫ�Z��	�3 R*G���\���	�ar��I��$R�I֭7tf=����E�
��`��W���Q�~�Q�"b��à�"��I�\[�����U��ɽ]<9�T���9E���VSRf���XY&�~D�)��NG�d'�{r(֤���B���=�V{��
+�o"-��V���J�_&b�7�����DL�G�������b�Z$٫��KB�fX>E"

������X|grY$lN:~�Df�g�mП�l�'Y����1�V�d�e�qYVc#'��X�b��l*Cs�ޅ�X� �+]"8�Dbfi��H���|?zb<�V�9��P�04�9�4���qC�ƕ�*��7�$�Ѩӳ1I��1�{|�q��#$�vٛ�ޟ�²�glp���;X]Y��Ƙ�+�ڢ']lo��h����PB���א��!�
����5C6�1|Ҝ�D�������ϯWi-��N��)���M�υ�X7�|����M|�����і�o�7����5Dz�iLy�XT��u�`���8k�</e�s��y2b�����'�{�uD�k��e���<
 �x���p���G��_��
!��}��o��J��3R%����_����xSF��^��j
��[�-��g�xCt�W_}U�1	��	����ۮ߸�۷o�Dv���
O#9\?ΐCz6\�<��E�_��s�<i���#Y|,�o����i�d��sKAB���K����7�:���!"T�
`����$B_�f��hi�M��"A�+ۼ�
�H�3KZ�f��f�5����7�uU��gt�X)௏��F\U�D(��[?Ua4>������+s�%�.�p�1�I�aG^jv��Z<q�X?S��`��������G��p�$�]
S�R�*M�W+�#���{�n����x@��+�
6��Y��WHf}K�I//��Q����M�D�����[D�i�����FX��)���(`��v�H�%}d���)�U�#�0-�J$7}g��4x.S�j'�����'8I*���&�=_""�����x�=9�U<�#:S 2<��v���'�K�z��U�p�u� ��ɐ���iO��[W���/]������
�eh�2�1��d��&}�M��7Z�x�ۚdt�{��Q!��9�g_M�����41Ř�C�դ�Y�#n��:�w��|�?��u��`fj̭����4�,��i���ߕ�=��A"54�3\NGx��.��M^����Ñ������Vʑ����BZ��6��ԗ�r=6�szpKv�w��\b�Y�>�-	�c=&t��V�`82#�`sMsqv�I��p@l�!������b���b�X�[��e��;�F��=B�OcjC@9��u�m:6I=��7�$���1��[ƃłLIRnl.ɸ�*5+k�i���{w��ZRZ��O$�CD��bͤ��#�.AK�*I��M����$�Ӊ�e	�N�z$dDB������wJ2	�B6	1c�K�����d-�#B��Сi�(4�Ȥ_V�Wv��,^$���Z��&$C�� ���9"�:�i�%&�
�����z
1��䕸*&'$�!���������"��2
D��6�D��2=��Sm��D��X
b/�6	��D�H���<&ԁ�B�璶$�s���d^S�Ą#{�Lͻ�D��ʊ�]�\1If�¼�֏��:U��k�j�N���G^���B��:՜:�w��'t�)�p��(�6črV��e���j� �<�#�-g�peϓu`Q�ynґ�JDk��D�	��Ao�Ea�p�(.��͙��^�eQ��Y�?��vo��ƃ`�M~_5f�Z$oz�o��w�n�彧;K�Ў���?w�	��h<�A��IG��6��S	�b3�I���xh�kE��N#+�h�(��;�ī�x��5�~,�1�Ls*&v}��Ʀ���4D@
��	PB����XL~�%�NJ��!{k�ubw:�$If+$'0����L���%!a�+�ۑ���P��Z!G�iE�|&%a"sɬf/L
P��$eIޣaN�¡��):Ө8{��G'��H����&��9mc�t�}��B"�M<���ޞd�b�l��h�K )��Cjuv���t��]�[�/Q߉�g ��U�$�4I��}���xG�Wm���a�*Z��4)	�pws����`"��S�]����\��Bř�	Χ�i#��كe��
�8�ˉ�	d�0p�6��s���)L�06v	M�1�H��!=�&�)�r��	6j+@��}4 O��d�a�NC3��
����'CLHvw�X&b$�	�^��不�8��ͷ=S���4H�ܗ��R��J��GIJ��Qc@s�MD�7W0�w�D�[wѢQ)R�R��"Kh�z!>���r	v�ŭ��2��W�1�B}�lk�<p�buj�;�-����5�_���.G�b�]"j(���^�T~���e�t�"3�B���������dznˏl��89#���&�n,O9}b
X�+��ı׬��Lj�q�&���޺vY�E�37ay[�hw;�{}u�Ư/a���CmnQ]����R#��W��O%�����
��6��.�g�0�9	)������ysȟ�v�D^ݺR�r%D�ȱ
/��c"u�h���s8�u���L�e	�X����\���U)1�L�d���扜*��?�G�_d���h	Xd\2�>x`���k^�3�^�۬�R�|\�ûo|}�!U�36PQ��L]��GgE�}sk�#��(5
�{��!��D^�<�����%"�T"S�����,//�Ș7�1��k��*��c".���_B���ᅦ7�x]��/���o�֭[��^¹r����J��7�L$Oy�Ƣ綈�����E|-f��_��l=��q�w)",��:3�����'[����W���0+���gv���{/ ��U!5�ɫM)�i���];����HF�d�ʽ+�:^ۜ�f��;b`�X��"���9�T{�άu~�G}W�N��N޵���h�4|�(^O�X+�́7����
��Ѳ�̑����b���/�I��:~����jsϑ<��%�`�t�Ɉ�l�r
�R�D�ϓ|��%"C�ZP��H��mP��U_��$�/���������)U�F?�=��Hڡ�3n�`����Qj�#��n�u?�P$Y�-��D2�2^A� �[�)�%{X
���ɨ�qb�O��1r�
�O�"Y��1����W�>�g֗�� E�J��)�X:�p�����]��6�u�N8r[4���@��锈�}���^�K���O���,�A_v$['�����z�����-�H~��a�HS�FH�-�=�$?�8c��ϐ,�P���b#�+��]���&�����2�>f<3o������#�/"�ϻ�����D�?�mF�0��?;��/Lz��t&;ls)��p��	�%��g�Lj�g}�7���ᬸ0�aIi 	�����+X 6�Nce�^�I�Չ)|oF�LG(�al�$�۴��gk���B`!��q(+�Hax��w!���?��Lk��I���mR8�J�˃+6Nف�p����+��H��B��ֶ!58�')$I!�8ި�K`h�h�L*0�?�]���fs�@�K�n�v�_R%#@PK�$e=9�QX-.�`�6A�y�CG<X$�w}�!�K�!VXa]�~FI�����a��
E5��m��ʖpJ�'��J†���ܤd`���5��9��VB�J�zq����)m�Y(}Y;�P�J�d"ʹ�l�-�+����lFd8�xN�-����F��pB���	�0�$c�b{8	��D�"bA�ZKr�X!C�)��!8x�`c��9:P���6�`�v��$J��r�N�U![)��+��(�Р������eQ���O��ѽ6��>7��WQO����}��U�VF�С�.E$�N+$΄�7���0k&tY��:�,��\J���1�yj3p�yk�Sra�"	Rq�q�����X��nmB���
�cmn?����I�(V�J�-�5�����i�k�o3������\Vj���|__IT1p���V��yI�0+
�^���;�kgz�H�E^GE"<O���Dn%s���h����oLLt,�q���5,U�fp}�s�v�rX��X�v��Y�Z�7I�Bz�=;&Ҝ���z�u$ɵ'&6phb��y�xɲ�_�}/d$TЀ��Dh���؆;K��*�0��&��`��d�o���R�SB�cI���<��Sk�c������3C{+-'H
�N�_�ZNj��I�h��Z,a�~"��@O�f��{�K��/D4$&=qmo���>��K�h4���.�~p�n���9�^Hྡྷ���7����I����m�HQtiί��2��2�	���a��|�����$k6NI�P(�q"l�{-�y�>������"S.�$�����N�q���M��|"����yB�PB����T��(l���������A�d0�g5#�,��=<�`��1a��kK���D�^q�D*#��"KB*��2&�T4M�H?��3!���M5����%_Ȕ�ݤ1aRl���2�T�,'M'�X%P�1���U�#�ƛ�h�T,�ߜ�Ar��=n�-�K,�=z�����Lg�ZH㴛A�޷
�Uj��u	��%Rl���{�����0�Hdƕ�4�[ԗ<
�ב((�\^�D4Q}�Y?%��B��M���5DxI��W�A	B"k�mj4�9�x��9�S�5�k_�~��~��*:2fbٱV�Y�w,��MRB��*.����w"�'8��``�V�e	��!D-�] ��B��FY,�1!���{��r�H���)^f=���'���E����
˵2�$kv�|������E���sX2o�CXo4�{D�/ll���}q�zB�q�>�6Ua{u�R��q�H��!pd+t��IrӉ�Q
G�!�tT8��b�Xǥ*��"�4i�%i~
{m|��v f�//YE��
rE�c�hb=�
Q}v?�ϝ�F�����{?w7g�P<=K���X��5�=u�q�D��;�2��f�
��x��^�0�y�%�/m��_|Q֡��%!9�^��[��A�_>���}^u��5�'��cl�K�9���7~Ո���_��_c=�ɫ�v�	�}� js�|�1�eG�77n~}O�.�|����O�pF�Zt������O�'���JZ#�����Q�
DS�͂H���{c�_3���Y����-�\2�迱~���܄��Ej��;�7���d���wD�{׼wEE9*�{*�Y��Xi�O������l7�j�͎Jrᇝ�W���J�6ͮI�1(�:��(Yt+�%��
��ī$��+\�(�:�B���|�l�
���4�Or�o���No��I�pl��'��d[��2��uO�dP���s�u|{���$�_���T��&�X���#�w��m�d�#@�I"��W������[�!������ ��I0�w�
�HD�+z�
a�uZ��p���`����_ť��"Y��I�y����Icd�Z7���D^�������n`=W£I��𒳆�u"RH��G��W._���wqk����.�IVo2��!��	�y�~�����X���Lz�cESL)|����A(!��$~������	|�����"]F�����E{����lw��������Y��:9k	`N$r�Imo��;{z�gG~(��������[�����Ɗ=D�/{r���˃�������1�	�װ��$�̃f�)��,
B��&����!@�pF.DŽIf��}���	�E�D�|�X��^3����jȒ�Z�����IKvL&�(����!���v��w�y�JE�d�/+&s2Є�Ɉ�
�t��elon���$?[��k*N�+a[,�12Ő:�HXu˵�l���!+ �MF�J���L	������ֲ�+c��!yX˵��:�n�(��qɭ�����ID�K�ٱɲۿ%n�2�'E㘖�s�90�����鳱$5�s��؎l9�'<��A"J�.̜2yLB��H��).DWR¨��?�4�}�3��X��C+&R7[T�����GT'�F
w���zk�qf��j��OI�����c�0���'&}�oC���&�r
���a�8޺���L����8u���_��r�?&�QBm�Pl�I
�p�����y*�#)vs�~r����k��LV�?�؉��O�C��m
�*�5(0�Gҝ!�-�O�2�����f�E���zQ�So�Iz^����9Bs���d8�w��auyE@��6��T,9�\�l���닓��ǥ�
����a�H�0l4������EH�ʀc��\Va���N:�YZ�'\sK�km�`-�3	֢߽���V�wr�����ߓ�}��5�u{����p�{}e����um�ؾ���#�7_,`��􈔓�5��Lg���\IB����ڏ�7���ŏ}����$'����G�B�H=p��QG:����c�0�+��*>���i�4[W�}� ;Emdژ&<��0Q�Ӛ=`H�@��s���q�����Z�0�G�CiR������˯���kaO���k�,͂5��Z�K"�3K�驒J�*H�����e�go�4��J�ޓjt�gW�X[���!Ņ�G$Ғ�/35kC���4�yQ����Ή�5I�
HSR�V_z��k�NqX.&�-�Ѕ=)Hg���>z��@̈́�d��۷Q+װ?�08S�i:��C�d�b 	�������+�~t�r��T"`8�7�<�ώ&&����1�!� �v���F�uJ$OR�$�d*0I���P=�iA֞��_g��"��:D�Th�b����|�`“�|ď/#����?�@�6Hf��ҳ������"v*�IӁ�H�8>�MV 9�D��mX�P#"���pH�-C��[z��ɢ7j����p�@uR*�)򉐈'ED�D���$��8���I�χ�U\��c���(���]�w��t��
�}ti~�4o\'ٷK��i��$^��D���Cg��i�5�Is�G����eq@
��c��*
��ގ���|�d���	�]a�P%��}"6���b@�d@�J�X�˯V/|��I�q�	~�_��$���s'��X��1�7l�IJ�O�Y��L27'8�!�)s�@���#=@�Աg�4�Y�bC�I`r�U�j(U+"�/[�e�1�z�w��j��Jh���D���r�[7o�|��e�B�w��b���R�䅎�_<�$l,���\�<K��w?��/?���p��!�KD��{ؘ�5�޼r?v��M��X<ϊ$���ƐHƔ�+'��w���%陳ud���1�$�L4Z�n��a���KD��s�X�g�q.��X��� �)�r����%(Lupֽ�@�ﵡEV7�@,���M�\뀴�tu��gb��o��&�6�C�o��6+��5�̂5�m&��1��yf�e����jBb���c]E��la��-jt�Ќ�+��>8�r��1�Qg��<�'Ix���~�r�\��s^�:K������Y�L�O�'�8��j�'��N���U5��8�yW�|qzf��oJ|�p�� ֵ�}{O�Wy����=4������7B:j��7����%���O~(��E�AX�q_�D8˙�Xc�]��$L��x�.^�n��Wg��5�(�<�F�p���}��}���ՉƭQ
����:�*��L���(���$��'�7�G�%��d
K�!j���V�u¾�h�	�� M�����'K[�v���a��l"��a
ϩ2�2�;�#G���w/���t�Ȁ�uȓl�|:����=G�}1��o	�=5F#0�㇬G)�ip���7������T	?�.��Gwo�/m�����YZ��Z$�8�({�Δ)��O���-��G]X��{�d6Yä���.5�x�����N���*^mN�G�Z��G��Yҿo>�66q��C�T]�W;���S!\�M:R�=;H�K��_+��s�#��'�x�QxBcܜѧ<a��3�?v�}�9��?�����E����PW�?�G�(:��
{lamLv�w����L|�w�Js>�]���z\�"8���ǵk��	�zggG>[/IX.9=�XX�����+"
��s�{�_���2X-x��(�D��ڐV,iB�$7Gh�:b���3%<�oCr��Ғc�w:���9R*�-?"�^K?&���ǼH3��	�'�'��'�H+((k6�n�.�J<��1sn��_�o��M2���D��J�P]����9�9b��(wG`��#Dح]��X��<��LԄS��My����z�h��^�߄���Ȇ�b�Oٿnl����^,�`�� Vxl5Ʉ�
w%I�ᄾ�<;N��!9�ڌ+��	?��<��ss֫�I0��b\.1�R�C��@�'�/��nK��v��V�-m����v�u̽�)z>�"�ˊ����Pk�9s�&Ȗ��%F-��Lq�8ieR򤰅.0�����a>4��'0���ۡͽ JK��{�!��t�����.�:K~�e��m�z L�#o�zF-�Y[�Ϯ��3V�Z/�{�}&�%!���3hτ{G����H��N‰xz+R%�ǡ 8ep�.�͈E���i8F���~�ܼ~���T��`f\%�J�fc��N)���B�*w&D���Il	��as�Ω��N����Ȇ�E�H�5������|
l;�wUd���sk�Rg�W���h�	T�u�<ӡ�D���EV�&�E�S������LM�=G��z�@��1��S��#����H9Rf��X���…�\h�"��<���N�i^g�t��o���?h�D�Jx`��@�[�=���
"B�!@�jj�i޿x�fy�]�	(��\��L말R�ON�]�C���Qʋ7��G�=s>�
;���ǹp����	^�9򬄛�h����Jl.H�Г�n
�ڟI��R5]���a(�����������2h�_����/����ߣy����C��5E�
�=;��F����$�L��V�e�$[�&����I�Hf"ecL{2�$eË	�C	�c�޾�6�_&m��I��{o��k�ѐ#y�'�^�k�&�8��q� �7�/6�8��hOe�b���e�_��L��;�w�!���i/=$���Io�/�y�C�W�������I����th_����ߗ=?O�Mymػ�@c���f��_&x2"�й4.z�C��}�O$ň�&�)�@������'���z�m!Gc,y�&t��Hޥ�@y�3�s2B{��j��zF���qk�˨���^��uH$��$�c���Ö��s$O��M�~rB��2ɼ�c$C�N��n���o].�_���!�$�k���v�|ג��}��6��6WJxQί�O$'߭�b��+W֑-%�=}�}4N����τCc
:H�&�i���{t�snp��1U��O9��س�_��o�����ζ��"����V,7q���ŋ�
b�b������V������\���%����eOg���eRh��w�'�;{�6�`8���$Gvp�yR�9T�tH����5�60 ���S�ܾ"��3Dd$�=�N��&=�"����c�R���przBW�'{G�T�����!�i"3w�<��^�q�V|x�@-1�Z"���%��ٌ�S�U�-���b���3����9����Z�������[�������`�8�bx�@�'���q-nc�{��3�8��Yʇ��>�m�Hb��#�z�1�����PU�GM�-�>z�.`>�p�����L�C��hA,�!��d#�َ�x�$= ��?HĹ�8��r�M�2�� �
LT�y2�"KZ��2#O�8բs���5~�g��a�>/�/"k�A�E�ݧ�߁�fٚ�'f΍^T#����3s�[���K�>Nw�3m��^���a�̽���l�B_y)~�g�VJE�+|�U9�O��?�ڭw��#�܎Ѣ�؀p����Z/�"�ֽ��Z�E�F�:���������޹u��m��`Lx����������*ܘfp��f-��H7�V��x3��=|��b��ᅫ�P:jI~�F!��tHE鹿#��:��Ѹ
�)����7/c�d�8��]"[R�4>���p2bH:ۏ���ө��
��~��c��Z�??��?O:�
:�k��'����H�L�d�����'P%���1ɮ�^Jg�:�b���Ϧ��i�E"B����IV�n����17�=��pJ��F��䰇#�K���d�{�׀�q��M6��$�5�X#��s���}H��I�}����c�H���s)�In����ɅxgԖ9V&9��Q����E1<��K۸?<ě�5��]������c�{�"e���<B��OF��;��9,��<�Ovp*�=<�%;`=>��V�v[�r>Gz�<gBZqqć���?3���[�gͤGT&XXA1�$C8�_�;�(��%������N�d�Ñ
S+�������h^xgi2��:m��_�^%f)� !C�+��z��`p�-����ak1�@0�Ş<hI��[ �`B/��ʼn���u�=E�g�1�7�_W�d$��$2I�'F8�Z���L���r
�x�~Bp�x�yf̧⒋'�$q����X��@'?S����C�x/
]˖�|��YL	a�2o��#"œ0�#֢ҼPƋLjα�7LPb���J�=�6�n�/	�˿��2��I(4��yL|p��������aw��JL�>3��n�8�:��-<�q^6BF�q<sε �A���k��ȓb�!��jKxmooacc���*�hY�i�]_[�2Ǭ����e����sf�(|��T��8�$0���}�\�>++D!|Η����q:S�:�!ֹ����~�mx���S��!�^X��w��i!a�XW[9���Ǐ�
s(�p"�&��࿒�~j�'ߥ�>MBD��N���i��#�2���U����\�0��̌O��Ž�qb�hl$��t+IxF_��˜�v*�%�#�PY�_��7s֎�;�rqO�Sj.����:V�]��h�[�>�	�A�x8�_5s,�R�[qtW^����ѯMx!e��t����VA����__9p�{U��޸]f\BP�B�^̋o�{_�ᾅ�+�?�y����'�+<D�ĝ��'�φ���;��P�d�p�G&�S.�JB�(	8m0�|i
���c�HB6�%|M�T�r���nӆuВ�{�oeA���"�!eb�R�JX$��9�R��+cT?����w�������4����{�D�	�0#i'�< ��g�z��&�yx�0�&ppp,!��,��Kr)[�"T��Q{��CY�9�Hhs�q�n���\]Z��
�{������H�&���9~>�D�p��ջJ��^g�2�2'?���c�-�+�5�s���P@�H.M�Br}u{�c�7H�
%YrH}+�������R�&'�%�E�9�J5Cs&������_3�.*<V��eZ{�D�;#	Y�l�P�g�*�I%ϭCm?�w	T����`l^�\J�W{��>�Z�`��8��&���T�'.�@��!%�K���Z�($�0�58_ r����=��m���	!<SԞ))y�-6֘J�*��!%�M�]i��r��!)�ތ	���nlW�]��ao_��ܪa��̕���u����I졒��Y�C@�T"�o�x����w�I}�7��Ⱥtim���V�7hNi	e��i!�ҙ�ȢG��ťZ�T����Z�η��o|s���¡s$���d^�ċv,2?���U+Ft,Q2+˓B�ZC&h�W�x��[,�dO���2�_$�"��k'<|r���k�eY��V���I�H�<ɡG��ui^Q�j�Fs�^o�O�.)�iH�$����a��.�ZY��3���;��ޱͯl!'��)j�g^~Aʧh����b��Kr>�֏I-ќ��f0���"�ă���`�>�IS��_�����d�̾�9�z����}��	~�3}\�<�e��$��f���_��>か���h���~n����z�`C0s<��;��N@�*�z1Ybd=#C�Q����=q�|Y��ߪ����J<�uv��g��_-���9}w�1<��������s��cX�W���Nj�A��n���<�jQ>-��bd�I̮�uGEJH��y}$�,�/E���U���sj�[*Th��9�����&"�AǼ�tFgq�+��b��N��f�M�_�3��!�ڻ��?����	L�p��+Z�����r�|�f�o�Ǖ�RF�dv=Q^_�1�=7��?m0@��Ɛ�t9�?z|���­a7I,���E�=OX�:�^*��WN#ɡ_i����!��{O�����S�+wvѝ$ps��z���el$���>�Sdh�
��'9�;$��]҇�X+���k��������ǍU���w{��˗𠿃���F��ḗ��{H��gA�
��t�Wj+X��A�Y�f���~�8߆‡A��>^�d�n�e�hP��}��]��wi`�z�>���_ή��"~s� ���}���0FfSI}��D���]�����_��}V�Q#y�G2��dO޽��|�~���K/��"4Fxi���`�t�v�`%	�Q���|����7�m\	�;��:��_���8������5�i�����Eןw�E�%]ELp(������Ã�X������~.Dpp�`����<8��\�r��Crz0��r�KZ~pp�	����$�LD@[�eV��CNs	�^q%�vB��@��Zy���CAGd�[h�ڐ�xj�o���g������6����I�<1�B2����Yqw���*�ơ�L�@PN�H�g�L�l�j6�7��--è.��' �R�g��ΦlRq���z�E�$�!i���Zo؆l��0!&XYI��_�p2�
�>�/&&�A�,B(/��'aO
	ץM�������ݞ=Ļ���l0a1�Rܓ%.��Z�'��$��z.H'�C��R�bY�yB$�7)�>� 2[7��7&6x3�Df����޾��|�k�G�q�ь�^3���R.�sRt�w�����P	�D����
�b5�g��p-d;
M�)���&�*�]���W��x�\�z媼�e�k�x~qlm���\/�s	�9�xR6���UT�����)�:9Iǖ�&�ُ��g떞p�A%R"m����Y�^'���y͛$?c�OwK�	���!ƒC���6�/�~�ו��"�`GRH?�=�M�Eh��v�?�#�V��0z|�Q�.�/���|%Ƚ�'Ɍ��#p������9Z	;Se��$COQSg�w\�t�N�k��؁�~�f�@�����
����%�ޅ�7_a�RK��o�����r,B4"y:"x�`~����׼�i�+먧�£>�s��qs��љI��� 4���[ �0[�'9���&!F���X�a!�sPS��ݜ��̋-���=V:�"ğ���
��S6���B��r=%s@k�$����8�o>C �Xr7��k�\�!Y���{��	�����zj��8�������q)�[�É�ٙ|^<�������LJ�6V*�����!��"`=I��u"�i/}t�B��
�P�#G�u���R)�)/g�8}�#�?/�^g/^�%�{R�2�^�rٔ�g�B�x�Z�U� �p>�C����Cqa�q����C��W��G��
gW��j��ԩ$�'����x�Pk�JD:��9���%fkmm"8��͉^O�q�뤕ʹ��Q���F)p���| kt�nH��l)�ɼ#"���}�=k9ZAB�s"r6�GF"�a�:��$���$��JH��8�؈�ʠz�C��rKc�VF�˹KB�G�4fQ�r���J�2�5+5��LG��G�rۛ5��;�G)��{pxLȋD8�1�$�'���
pm��kW����~{Ovh�L.��^�D�Z&b�/H���_��w�X[[��(������'u�	�ȱ�Kc=�Y����N�'A�f8�A�!���ak���	~����'鬴����s��z��^z�*��מ�~���~��~M"_io
z�8�,���ð�GʆBe�2���؈���#�1PB<�2�ޱ!˙N�
�AR!_���!�����LV,U+8~�o���iL�5-ɹri{K�8r�|��sx<��YY-c���In�^�KDt^Yia��BJ:�4���p��Ҹ��;��9�D�M���q\�w�̱��=]�^������K�*����MmN�P,�~��[���Q��>6k��Cv��
.#�6q��I�P��|������J�:����*�|�'RD�t�y^!�"DuK����4;�!^_���vw�y�d\���urP�a�|=;�S�ճ���W7&>1�d�H���������X�ƙg����uQ]3���8[�y˘�� �?^��ι���^�q1������-�܌�=�|��a~:��Oo��u�י�U�Rv-qk����A�j9��k��9����7:���u��gO��#f��ueFo��5גE��TߨK�,����뼵3���6�}�V)�<ˌ��N����Ml��e����$.'2"?�7��Z	�"a�����_ܹ�#�9W��T_+`D�ʛ$�|{X�a�9�8(�]��g�
n��O�܈�2�Y��!=���;��]#9�v�Y��a�����cd�������[�����ӵ5|��]"-������ɾD�篎�p�0�o�n0�#�KϒSmj���F�2�ܵa���i��K��|�����8�6p�Đd�G��|u����R�.zG��ـ�J��Ҍː�:���o�o��D�w��y�E��y��:)���X��;j�m���]��o�~M�^k$S}4f9<%�R����*��ɥm���#<���A�s
W�L���,q?//�isv]w�ëyt�_3�J\�ǜW�|I������|��E�;�w�#@����ćo����<;lX+M���DnH=�!�8�k׮����yv����:�!��In?��F��UId�
����	���ۆ\�ĭ���B,���� HX�7���+�	ڄ�	2X�FO��'(h�؄wR��3ёL���q���چ�r��ʹ�j��z񜘸0C��<����%�&�µ�����1��8y��S6��!a8Ϡ���������i��d:��~n_�RE��DK��~O�W����x�X�ȁU\��.��DŽ����,4����CˆI������6� ��n�2&v�O'!�ph�����;�4�I�09��w�����1�~����s�>�eLwYOr㦦�.Q:'b�%:�:��
%��t���q�
�l��Z*yܦ.�V@�S8�YJ�pޤ��p`ܮ��=|�[ߖPX�ZUjnmn�{�bְ���˗/c}cS�>��%F��\54OL��P�Q ��/^&LJ!w"��ϭ��n�F(���S���H�R����.����)|�Cl�n���b�z��;�b��b�=$ЇM6y�0�,!kR6GN*a�49��p5�i?%���	�'�OP ЅC��9(�uV�����A�dY�������H�/�iQ�tUW�#{�vvg�X @p
K�$H4��k�f4�F�(�X,vG�����tWO˪�.]O��*��p�wν��#2߫Z�bP=V�*"=ܯ�{��s��㊝�.8Y�2��4����<��`�
�ի$]��g�x#�=�t1��$�z�	��.?!���ǐ��A$��ޏ��0L��0�|�Z��N��8۹��!:<���CJF���}$t�&VD����R��.ж�O�$�q��p��yQ[/9F���%i��R0�u��ƴ��¡	���?	!!�k���x�����*��N��-N٘On���Ql�hl�A,�F��sE��%g���r��Q�n �5LƸ�NBF#���r(�gЕ0Lv=C�����2�VWQ� XDs�gg�JMx/��)�iDEc��Gg������C
e%r���.��z6�I�w-���4�D���*s��9$4}1x����7���!����P=c�<�;jKիch�O���m���Y��7�HQB�{Χ�j1^���IeC���޺ۨ������쑨y�.�9}
M*o\���"��+s)����p��P�XH�~�
.�5T��m�l���|ae%@�<^`�����y��t�����'�3�X��������K��w��7S:�;�w449뚃�ǣAu*�y2ȕ���!Am��Z��kc�T���{�p�=Mű�? �0�v���i�N�{HN�����|�+��-H�pQ��X'�����T��_Ow�7	��?K9+h"/�,�=�_�ſ�1����@M��h�W�dļzGH���x̦1*�|��:mk(Ԓ�)����IfI�Q���A��I�F��ǧ�IZ_Y!���r��=4$��G�<0!T{��*�5B�	���	IU���H�[�C<2�7�c^d+	��d	�!�
�"����ױ.���q�zʀz���<	��p����kG���W��ϲ�H��y.��?$��a�T8��]y}���"eCO�bE—�,s_6r�sW�b��2Cۻ���zS.W0?[ �r
=j)��ݸ��U���x�]���Y��p���W拸�����O��c���kH?+�&=�=K��Ÿ���^B�O�N^��3S•�6�h�9����xL&D��@���`��'��FB����@�	�S���ǦI��ؠ�=�ZOc"Q��D��͍�����<�8�l׏���_�(""����a����M^7ML�:L���ĉ�'p���8@S\�i%Y~����������.$֞Ģ0�S��>�mb�N���>�ɕǺ��3�T�0��Frp�- �/�K�?�[$j��;oB�+6���Yq��>�.ã��uä^;I�&�z���.�<�f���F#z(�Z�b��2�9���;B�27���_��u�d�e�lKHc�2�L%�q�w�ء����#|k�!f�����ʴD�/���a�u����l��E�I�~���+ޥ��)����$K���&�*����-�w���e�?j`�P��UL�;�.�V���s�Z��eǯ�HIw
xk<�z�Bb���?�<h�Mߤ�:��qO�]��
�c*�|��,��p@y��q�F6����]��d�S�Y<M��qK�/�3#|���W��W��qg�f2�ٶ�$�s��9u�\�߾w��3ϱ���zmOW
��3��a����f
�=Ϯ���y|�v���q�9D�u�`���^�������:���Ms%T�o�G��xI}	⾻ߧ�c{��G��'��q���^�;�
a%'��y{�Z�|'��Yo��W^�w��[	�!�����<<��\��Dž��\$7|!@,�!�����PIX.���BtD��i�V����T,�6���Ȕ�S)�	*�"����C��(���n�Y����̶�JY��ypd5���p@�W�V���m��
G#[w(x��,`?
�'�.	��0I�X��2�_C��E�[Ð5���k�D��q��pT:z��Ф����փEB�6��KV�I�����CA�q��B������g�5\I�`���#D�io
�Ҍ	����(�I076@�7D����eP��#�S 4Q�.}CYUt5t�،)Q�%i�(o��@^��G��1Ǐ	!LhC~��j9,a3nݺ�w�yG��k�0�
b�&0cH�?[_�QH�}���ɑ��L�.�I�#�a�6O��x&��yw��z��Gi���=�D�����}_�H�G ~���&�"a��Ψ���4�|�"��r	�9T�$��&���s�Xk�a�1�n^��h���	k��A���gbk�1��_u��1%SLkN�R��:؟}�50!�M�G��0l�����έk��I��O��T	�;0�@�̗��,��\BR�Rcf���Ḫ���u���Q>,�™�
��B�1����~�$�vͲ����aL�&ۛ��d,��26X��hC
<�q�{E]3���i3׭�jƻY�R��y�)�#��D+�v�PE�L/�p}�.݋�"�
�,�h�g�)���X�ڍX�w��C�{�]&@	���2�a$�ɳ"�X�x�z5�C�Α��$���^#a2.l��X�9z��_�0�50�{B����&�!�lC��f����	�8�M]n+�T1�΋���޸:��(�
�'뻬�bw!�r��;]����K�`�`e���5Rˍ�2!�0 ��w����kɿ�#��'^9ՏQrq
%ԕ*/$?(����%��ׁ��0=$�]3!�1��#K`X<%�Oз��cO��q0P�r~��
X����* �'�e�J�t]
�����Kh��Z��Ni
�uݧs\Dz<�j�M�f�HF����Ei܅���xgf�=���dK�r��zFI��B`PrA���e�{�S#_su�s�����\H�a�f��z� q"F5��r:���V�\�>�G�9frcl��H���Z���Wc��9yt��&ɗ�A�."�ȳ�:L�7�=�6�Á��֋����%�ٮ�D�l�1���h����i�
�tq��Q���<�h���lr�-Q	�t��v��n5��簼R�ѡx����88�caqNI���JE�Ɉ�H������u���Y�962$�Hv
;-\��Q�e0;W��C<u�2.?�E�;�"l��{��q*=�9v�T~���)���eP��u�R���;@m������\o��ϟ•˗I`��,';�氩^�M*�����������ά�>z��� dz 2Ǜxv˺�l4T�5I
��#��p��K�L��Tc�2I�ɅA��Z��sM�z��y��B��H4	�"��4A2WH�
��A�����v����q��ȡ�*�"Ƕ�1ѢL�P����zc�
�K2�í���Y����M򮐑g�P�v�w9o�:*GgC�"��2		c�yXSO�ɜw6��;�UZ]Z¯|��Q�a���ľx��'8^��[�qm��g�"	����*I�&N��"�R��c�6�>bp�2��'�p��b`)'���j�F��?��j)�"��^�G	��z�'���L0�N��I�ԛ�wÌHo�����\��k����&�M a��q�¤��M����^S^^�s���M���Z~���N�s$r�{�I���;�m���EX�$(�q@�I��c����n��!P>=>���/7�#��|�������񧋳�F��z��]�cԮH�����n
S8�K;��0�^BɎ�Ykp�mk0:��%�z:]ɋ�މ5�s�e`"D�O{���s���	m��~�u��{p}�]��Y�6�x�^����^���(���W���åQO�}��q��X�\P.�0?�A�L��߿[k��P��?��x�e�=�{S����~k�D�2�U������y�>J��~�+���m������I��Џ��<�����.�5�8C�H��o��&/ �=���&�=�_YX��K��u���H\M�^�
<q�lQ|����O�7�ƪW���rX�i���R}ܧԹ7�b�B~P����*u�%��˃=|v��W�E�LY�=�����yx���1�Ja�:�Y?���m���8���>�!�j5����Oo�ij�.c���o05��x�����rzx��&��u?���Z�sѷ[<�Z���hm��,����ʃ���G�C�[���O��$���3�e�����íg��� 1��_
!9ēCH�L�>�����zw��%:<Kt�9!8�ۣT*��?�7GvH���u%;ij�&�]h+9��WC�#AAԡ��V�p��K���YčlL\�!˃䜳HI
En�;�g]$�Z�C���>�����b�a��(���!ey+�o���

�Yg]���y�&V�X�A*�]r�T�-�^�����B��Y�4�#�O<68H[���IM�mK›E�.&Y��q5r^�EI��Ԥ��8�?��&?F�J��Lq����ŋ-f��RZ�o�EaC?�o�[�����X@4����$V�TI8!x47G���I�,�PGG5|�?ķ��ܺy;;�ji�q9/��Ĩ�m��n�x;bǀ�	��9㤍�X������ {�[�M6L((f�5��+��|�����������?<�3��qϿ�,Ν=��H��.��0ɘ�)�L"LcN���#
x�C����dGL	(�ŦO�N}����M_���ԛ
�F9O@�T*��Iݚ'���^���QBohH��$�m�L�w�xύ$����v�P)�`iv^>#�;�Ĩ�aR�?V�c�0z}��/��(��̧�SV u
��Ծ���S���f:A[/��d;Ul���k�.�K@��Ȭu�71,(?E�E��=�S�dyO����^|���� :e�?a)�y�>w|x%��w��H�D	P��M���o|+p��Eψ�j/��`��S:�KR��Ȧ��{���H�v�j�m�K�C���Bl��Sz�@�X���v,�*i"�ey���a7�>�Gz,}+ިͅ��S�V�=��]��0]�gBt���2Jj�|�<�G�P`�1j�\��բ4�4�?溢	�K��8�q�'�B�a��8[ �:?�%�h��N��	�e�ȧ<k�>R#j�K�4��y�#��/Z�#��(��h���
�֞Q伱�����Qo����?z��N�23�A�b3�V��6�$i�>��{GG�R)z��E�fnPI�m�a��]���SQ �Tv�w��qS�]�q������}7�������G�0g�v�j3POm��Uch�E�h��8*xje����(�γ�A��B�i�$����pv��v��nWÌf,�M����a��MHĕ�S�{{�B&R�K�k�$UR��x����ϝ�&�Ti�z�&�n�67`���g��,���^���S�}�"�<x�qO]�,���2��jl�2��|6��\;$�<�K��2	�!���׉We�2	���U�{�6۷�9*ڵN�cnȶ�p��qO�\}�9Ə���U���������|�r��Ȱ�Oc�\w��<m�H�PT}�������n ��Bbht��Y���3�V%2Z!�7�"r�#A��j�B���9>8WFc+˒�9���~����!P"Q�+,��}){�	��C^/�//^�D=oo]���>�yʀ�T���.�bY�K��Z�&c�R��^s���"7�u�ꏰ��o�)}\:5GB%��D�'^�H�{
���X,�p��޾u�WV�P�����6^y�m��w_�fJ�R��G��L��V?�k��Y�>�_�����n�t�I�,	�M���1�I��ċ�BW0.�E�yޤ�3YW/�hr��̎���#�7	�{�M~����2)@y��9u&q�	P���k� Z�rZ�IL���l��K�e�N��	��	�2&ߣ]��ɾ�~v|�q<h�Y�ϓ��q�v�}��>�ӧ��<�^��ӽI��E��G�t2{�%�q���z�r_�]$��Y#-�+�[��aN&�QK4r�͒���?��rb�ruJj��Q��\#�5�;�%u�ilH�`2_�����L
���E�frM
�x_	�m������)�]z�L"����<���s�ggҨR^��������dz�2f�XB]����J�G�M�`_/�f)ۊW6�v���Gx���o�c}.�`k�C���nWeO��x���)�WW��{�}����x����xm��Hi�����V��g�`��7�-\�RxƟ���6J�yjb����)���^����N
q���IJ��>��O��>����C���5����ޢN�6��$K2�x>O�+h����WN���-��-��	�A�3+xD��Q������|�*^`�����x�g8��A}���6|�߿���!�"��w(O=ABg�SŶ}���"F�w�Mܩ���|��7����_b]K���I��\�El<��8i����Q���H9Ү��7��\γÑ�i��#��yw�!�r��s��(��!_Hvx֫�"�eP{X�C�!=�S�9���칆��`���Z1�����M�D�#�W�y%FRʐ:!Y+�\��[���Kw�AL<�/+%��$J�����ފ��9
�HD&�m>�l�(sB��F��O� :���S�t!`��.m��Ga�4qz�&���фn`Iy��Vs���b�&�O"�H���>�y�8+j%?<C��֤����$��Q��~#�&�n�B�����=�����Њ�a���6/ y��H�i�M.y;$f��k0��>����kF�}(� ��V?�qF�C��&��>x��+����Z�ar�� rBI[NMb�k�' �T�ALVD��룓�z�7��D��0���a�ԳB���x{�3[8���Csa�SQ�:<�-.�s��&!���@��|�s����)�xH0l���˗jlj�e�⢜�-,�$�O�U�):�	ȵ�]p�Ng�F�\�j�hR��'rb�Y�Kns	�4�X�;G�MX'�J�pdB�5[Ml�X�f�0�4S*c4�]�E����%KL]�}7G���>UX����y?1}�$@�oeq�I@b���MW�h��Z�ԁ6����ՖuI��b`���K׏j���8��^�T�k���m�9t�d�a��b�)Y{ݔ��r=��ǂ��ȶ͊ғ������0a9��#;�����^k$�z#d%��`����yBp��Q �7�	c�‚�P"8�̑��D��t{&�g_V
w#=hD$|��)F6��t��z�vi�L�sj ��
�0�{Y)#	��Kp�	�G��XH�5*$����"�n�)Y���x@�d��&$��ٚ0��9�a5w�5hqO
4���a)5,�B�
Q�J��V�K.�V%����<����t��y+3
�=•�9\
���V<�&��H����)ͅ�g7o��#���5	3�<d�tX���뿈ˋ�P��Q^H-^A�����/e�&ǟ�xss�q��L~F��1
������Š��:huU>(��!�ʐ
��:��Z���tC��*)�C���ea���t�'dQ����y�N-��<(�>�j�N"�ý������s$/�w���<���R)8��Y�����_�D�$¹+B"�c&7�Zm�{�!��nb�0GR���۷1C����,Z{��z���n=��P�Ź�ls�mS��u��v1���X��~]C��z}n�µ{��x��Du?��܌�EiQ�P�E�ӣ��2e���*Y���f>�T��j�NR3Dz>r~O㴆}������	Q�]�?�v�qJ�eT��|0����n�Bvȧ�-P�9W*Jn�Pì�w�L!��,�<�Y���g΢�8G�F޵ԥ��踪�˨HFmq�gR��o4q��iD�Ӂ��\�I���<	F{$E����C���y���6.�;���Q���W��lw�c���;�1vqm/<y{Jy!U{�]��7(���p��9�f	"���iޙ��e\\_���|���6 .c��g�!r�ן�����,@�G�ba9��1��x���Hؤ'Hw��Z�;�|�%2�^�	���;.2$�[*GeL����?Y�{�T�]��䳣G%����V�8�^�N��'�[�X&��������9�y�!��)�w	Gq;�I�ț��O�-8V�I�%/���~z��Q�&8����kH��'�
��L�=������"�\΢�z�5&��EOsL�%�՚Ev��!)�:��U��cؔ���%�{�~��ߩ�z�G��'��-Ғ�:|/q^uW�])�IikAB��o��x����0�'�i�>�������(�1(��e�oܸ���J����7�w�H�Ǩ��#Qpc�nRv��h�^�������/��7���.�����(��gC�5n�:e�"	�:����#�q���(_|3�d[j,��ͱ�(�,�o���E��;x��e�;Ȍ���C��mS�)*�v���2�߯�����o���>;d�z��~��/a��_�Q��v)�u�K�
�q/H�&��S����#��>G��K�+�qt��WN�{�C
1UN�`;}#�}���ܽ��;w����baa��,�#r<��@�N:�<~��-|}�<>�{��g�g�A�e9I�1��z�����K��v���v��|���q�O�.��=�$�&5����ߧI��r(�!d�?�� W�ă\���Ã�<��C��M`���^��ų9<���,˅�R"E<=.\0y;�	�ْ�\�;$��{��ӝ��S�;��R���5��'t�f�BnG����DW�p��|�i�X#v��N�	//���x���p�ν.4�K�,((mr�G�U����}Vl�e����6�0)��ڄ�򢺚���"��yi8/�Ŝ,�
@�&uO���.��(鞵&��EY�w��R�MgM�p[2��]?&=����ȱa���<d�Ǎ��1�>b��3��-9_��y����Ho�q�L�|)R	E����i�L��w�{��7�#�qItirr��e_���]/ ���uࢂ}6������f��B��JHJ��
�R�lύcO�3���m,�������NJI��n#vDbM+eK8/����{@���nac{+����\��ϼ��|�I��,�}���x���d��P����C2b��[$?=>�!��؆'�����;�L�}O��	�-�8�:Rv�
�����und$-Ǹ��@b�Q�j�,>�q�V���,��LX�i��7?ҴOؠ�_���HQ�As��8��Ի'j0�Y�=V�Qh�WDD!Ϸ�&Ի�L��l򬷔g�@b�yK�|��
E2e8��&�"��۟�KTt���S��dc�dp�p�������ػ���5�	y��7}�woCS�6��Ϝ�a��N�!��#��x��߯d��e$q="��s}G���w�{B��Y{����Xjm�b�?�Q�Ln(��C-��|�т�bQ��L���	|���1�-l�`~�W�jQ�:�=�0�x�����#
ӺV��J���ǗW���^[��c෩d����CB���3M�1��RV�(�Q���=2��R�Q�P�fr�\�d����	�����DD$I�{Ձ����0�P^�&��b
�[�T.
���ƽ�P�<��[���6��$��p��E����i�Y�GY�	>SB]z�dv�O0�?+�����p�������[\_��O�V�/]qq�2d{�G~�"���(a�2|���ݡ��L����S��H��7��y����0@�#,�e+),-���m�xq
��GHeǘ�/cy1����<`]ͫ1�1�4�~*R��驫�p�9���5�;��'Q*����k���B]=~|�>w�i��Y���G�^��&��.�Ptpg�=�"҃4�aC��)��@yBC@�F8$�b_\���?�6�om��9^^.buiE"�an~���V#����c-��?���دU1�}�F{�x��S�}W2�\�>YO�w�˳!�k�����j6Uǐ��8�G�2g����:%�2�'��U��'ې�$F��=��Fe��8G������.�m.���m���BNת��c��	�v7аRAp���d{*)8�.�_z=�_��Cb��zm�sug�%8|�m\3I;�;},r�I4>�f���U�q=��.�(+n�/K��tZə�T�%o�\����&�X���^��z��*��۶�<����{��™�X_�p��pws77wU���$�.�1���K���i �yR��1���nt^+gG�<��`F��+"�YoK��F�N�I�͋�3���ޜ$�:%L<�e��r�	�1�&�-n��Ϝ�K��#6�<&A'&�3]ϸ^�g'�{Q]u$�!g�hrk=��Xv�����=Ϊ�
L��G�c��5�?���
[Ϗ�%��h�$Ez��9��ؘ��L��n����-�dM�hNx���x	$�(W�	^�?�$�q�o��dbWx��)��DY���kGr-�&�W'jc����m5�2��5.��鳆0�3��2��mtk�]\���呏gG9���n#�ԝf*E�s�
$0<�����]������L�1q����E<7;����A���O���Jp�^�m��6�1v�-����8�y�2�R��C��}�����u�C9�f�C�w%�O�fq�Zǂ�����LL��ƨ�Y�ﯕ*�ۺ\\ƃzoq�:����A���#4�G����}<M�@B@�߫�6�_���쏰�Qa�~�X�X���
��2���"HC� u�f.@�r�ՙ
��DJ�p�/.��)blCJ�<Oq;��9�^�5�t~���>�v��WQu�bn����:(��۬�#��
<-�)k^���>��4���ulH$����(�3�.ɥ"��.��0MF$�G��0}������{����bz_q���A�Ñ&k��.Ix1aCZy�o!A��G2����r@�#��p��]8+9��O)�d�Gp7���JH�*�Dž��e�'�K���9�*Q:��!�K�-~� �wCCB� 8�a�|b�w]��K�*Mf-�~ʔ��%b`�U�,1y��7b=L�o�M���5�2bj�C[�����E¨k�!H-O2�b�e��X��	a� �Ks#�5NC�LL
?En�pZbCȄt6��}`]�a�8��+$QW<�*-)�� ߷����"V�JT�$�lR^�1�@��	���5�e�������i��Cu��8٘$��ܞ&,��uMR)֑)�;x�[��{����DD:B-"��X�(�4�o�Ƞ� �`�{
Jx^r�01���g@�hc���D��Z���[(��+a�P
"�1�U��AB0׾�dš�<e°��\w�=���Ν�x��w��������p���ꊶS޳(�*�e!�������?t��Xot���$뜐|o�s8s��:��6�v>JS�z�<D�g��8���s�rC��Dx5��'q�	zn�Iس��./�FV�#�K��������M�e��0!\��q��n�Q�Ȍ��眖=�s��dh
U��t$�*%˥��qς�&O�h�L1a���Ͽ	�V�s�{�]'��PLI��]���%j J��
�����ޑw��+���%%h/�S �[_]9��W����|2��'��c���Ƚ&G���!G�[��G��[�8o�i��9��� ���
�$�۬���}���؇�>"�y�<8���l��Ɣ��L�A5&�r���ă�P,i��wĈ�剗��/�{���C�������$R(q��/<�b����3
�f2�	��
����9"/U��G�GdS�aGZܜz���1�{��?�1&b=�wU�P��Z��O��;$h��E�}�{�C��?���ݝ
\���6I��Sm��fp�b�
��=l�z�R�\ q�5�M����*��/�T~"��Op6�+j�3����$�N�4����Q�c�9�+x-^�7�Pa;�$Ԓ��7��P�|P��zyB�j�)_BI�5W�2/���4	
�s6ed�&�)ӡ2�[mc9���
�����#\��ʺsW�@s��[]
q&	�s�{��*��	v�tIrEx�g��GhP���_����r����m,�߫quI����aV�d������re��4���>�Dv}	KsKJέ/�#�I.�����Tl��:��QVCS�8�*����8!��8��Sv����͡ߪ#�9��q���
1!�?��s
�?��+��������������<�I߫G%���1�C��ݏ��М~��{I�<ԋ��Z=€�U��Ĺr�}�%ٱ�y��\u\�z���V1W�QON�%±x�w������&��=")U��Ms�;:dY��IؐPW2�dN����1��IBEB�m숥�:ǒ$;�`�Z�.	�S+�hԎ��;���9w�����ܲ��%�\_r�Y�GΟ]�p�W�\�\V<V;����N����-m�����'/൷�A�cK���uK�D�x�|B�k\��h�;9��q��9�1x�
	�N�ׄ���/����ryr�׹�^ �����M���Ũ�>���7)L��	y Y�k�ӝ�~4}����<LN�';��9���N_;Fh���1a�����v`B�C��#����N�7}.Y��%��D;��S��/�/]v=�6�<�!�<r8��mHو�H��F�}�Ë���D�bBq"=(9Ώ�E^�*f�F��5��k��	���'֑��fZ;}ʮ�S:ͤ_2j@�+�Q^�-���Ng�*��،��؄O�p��d��?����B�38=�(�Q֙-x(Q�Q�9|H��<$�>�^�S�2�
e(3�N�♥��q�]G�2��A
7������л
�V���5��K�s+X�$��i�j��0{��ߢ�\��o_�>��,��Q���h."޸��|N�;��O��[h�8#�0ض���S��Ry ��?B1CY:G�`�Y�DnQso�C���������<e�g�M~��y'%8�g��D��������
�Tg/�踜-S6+ϩ�����
(��=�Iu�ٗ)��╃����7v�Z&���a�v���ٯ?,�%�9���xH�okT�]���^_�tu(��f�f_��s�q��M�IY��2�c�MGձ��{�>ᮟ$�O�_>��$�()y��Gh�<t˴+�1��<��<<l�/�Jrw��;�+��H~��^���&*eTsvH�����Y��&rx���UUTub'�m��)� e�/4�#�D���0�u�[VQB�%�<F�B^�
%@,���(���B�Z�?�(LV�ťm�͛!�۸�r�#V�)�2��Ԣ��֐yN�$�a<7�׆[�7�!$�X����[�3*��"R�%bwַ)��D�.�sq�x��±-�%SpHv��-e��a�P��9%U,�`�"�oB\hn@��D\�S�Z@��pҴ'���(frt����|��g����\�h�Z�I\�Q���?ş�ɷ��ߌ����&�*w�ZAӆ;�x
�qț����uq��g6-��IؽH�5����D�k�K_�Dܦ�tdX� 4qB�G+4��Z�ó��ཎ��E�8���`�&�iߍdž�1���W�N@�ÿ%���/��_x3TbG����_�jP�p�O�����31� 1y�$�FF�����IHD,t��**#�N�RBX	���(p3���I0R� �`I� �q0���F��z���
�i�L��S=q:A�Ĵ���K�p<�	u7�0zF�u!�ԅoB� ��J��thIF�)��}C�8@u�uJ�'�VI��4l�
+'�Q�D�\�����'�8�w�S���s}�aS�y������4��P�T�n
r@��v�E��I�::�؛qBⶀMR8O�7��bH����wLv��%�{
�C�{���!�+cZ� It=lV�@vT��eM-���^x��!
�bAe�O�!J��<�=��"�o�$P���>;�Znr��
vʞ)��p�Ldߝ�g�/_�oi
�X�g�U�3��~�9\ȒL"�]���&�E��V��S�?��3`��E5D1{h�od!&��UX�@r�8�24ߘ�%@|N<P�]j�q+Į��1�%�Ad�<��V�^E��x��еpF�G��xZ��W��>��	�Crw��~eyϯ�a��r?L8���'������۔���Ϫ7�#�{�D�i
��>J��(�ٞ"��=�}�Ί\5$�6aH٧���4�ecK0Ix��w�zfs@-��β���~y��g�!����M��:��M���"�%�6�M�����s˘����҅'p��kX?��]������\���o�{�F���bm��H0}���t�uhV���nR\$�fHhJ�h�]�{�v��r=�D¡���w�Ȱ�9�[Z#�R���D����{�=��^�O�Q\��Pc��5�I�g>0ycD���
s�������xlrf��^72.�Ssd�%L�X	�n�����Ue�G��J(2�����!����u�y ���@3$�$1$'���r��i��H�/Ű\F�k���Z$R'�Ù��������":��$J��G�e<q��i��\��DZU�:ٷ�OQ���ƒ�
dϞ�(�
Չ�����{T�buqQ׈I�z���Q���N9D���ř2Z�W�~�|x�򅏫���H���-��X�=8@�V���b�Hړ�W�����:�L|�{��~��x��i|���lL'%I���{9�20)����{�	
	��Z�.Y��7��1��F�z��ɽۛ���1y�d�F�K�&������s��G��^�</�Wx	����y"��rj,����$��&��s�v&���cJTҲ�#w��	cÞ����i�j��$���0Q�t]��:�����u��)RKӧf܇NU&��x11���1�:Y�\���v������[��h֙�\ɡ#/m����2�'6u��⺇�fj�����v����ةFw0I~&�/���:�v����5+�|/��3YK@�C�]�����;H_O�����.P[�)�/Χ1;�K��o�{�Q� �w3K$�}����7R���Mx�Q×(�|��čA�y�O=�pldC����ߡ�a�����yM
<W39�Q^n�M�v5�Me�#�N-�ŕ%��� �q�%�)4%?����#��g�����9\�+⇝�����QG����kr�Y���.o�4���yKG#�i��ʩi1�N�Qf�5�m�Q�����_�XwqJ������c�6ĠDL���4x�^j�w�&�`ݿ8(�g�s�Lfo��θ�6�C������y�<�hk���/��ء�yH�mF���&����_?��ow��9�`�2�[bHE�)Ƀ:B�}�z�������W�6���jr?����~O_���N�N"Jf����&���Jr��H6 �	.��xv�����*
i%���DGv$��ّ��p�?�.x��ݓOm`rx�κ��ݐd��l�t'�ć�]�M�iQj�IC&���~`����tZֆKPeX�\R�%�%;d	�8�/!�x	@JHyv0�seX���KbhB2�ܬqm�s��*�Ϝ���rq{M�
_�1�l]�Y��lr;L�b���+ #ćI����B���p'Q+ߖ#!�±&r��p����C�ۇs��\��坊���B>ꋑ��	,���,��#�Y�*�dd�3g���&��/uR���-eC[�0�LH.	���$h6��BV���Go����ߣ�~#~��vi�e	}b�nQu�
\2v�;7��2n'�����@�=,����P��gbq��;���H�a�,T��-� �����=���X
͜�lY��ېn!�m��ɭ�wTY��!nߺ��|�{����<����22ҕ�_'	���C�?	>nf2Xez�\�)ٱ��JE�9�~�`	A'b��|�o��ga	M��p#��A�A�PKE����^^�x�Ps
u�]l��p�N�z&�����%�pB_2�„J�6���=IŮƞU�ܸ
�|6���)��*�A�K�Z}��L�!��q*q˥�X���Y�X=�n���p�c�����HP�@�i6���­�^bZ�^'o���<��J�uF�@x�/(�G�v�0nv�5jo�!�c����Xw�����$�c��'��q"���]o�A�,���x�^��Y�4����b$	�� ���m��_FNOa�s.�	<(��	�x�W�1���LHJ�#e��~�I8��%�o�H
����'�V�ÛP�bѕ�X��������<A���
��P��v>��ej���3~A���&)�@� ;�7�/�Z����X�B.�
.tАu�Iދ�=r�x��TvF�y���U�Tku����ܹ�8�"J8�7�}e>���4��2�8V
�m\�x�
>s�2��j�$0.^_��u,_�
����F�����r|^%�vS�	��$�Z$����A��٩^/lg_�8H���I��)S�����\5�HH�Y�$9u���)���]���:.�C	@�P�(��s��,���:��Z:ç��kT�N���*�`c��ӗ2����2`[���;��?�k|�hm��O�6�SWΐ���9H��s�<dY����|Y�;$h��wv1G⤆��"���&v��;���|_�x{�HL���_,��;Bh��Δt�h���ӆfI���	E��1'
��	�Ǣz�?]XX9�Q�R9#*/i*�n�JH�f�dI
�B*9QƬ�b�O��E�P�*��G��!��~��CMZ4'`�c�����¢�I!V��׾����ά.�
z����GG�$C8�3i=�\/E_��稐b߷���"i��h���ܯV1��%�^�Jw�o�w1z�
y��������ęx뽛��p�{l
�ۛ�)\��shI��
v���s+$b���"/WY�:	�T&�Y���_�E�#�A$#?�GX��1��s{��3�;��7�+�6��{S�G,.xX?
���}!&���r#�kxQ�©:ǀ{L��ey1�7QO�������HD��'nJ"��d�S�N�U����"p�6��0��G�4Y��rN�\��<��ԳO"1&��#�'��G�wґ,c�I~~Jv�e8<^[�w�YUȾg�
a����%��ii>.�$�N�M&t�!Xb���y+�o��������[��)��b�O�ZϛX1���%ѡ�4����m3�z�o��X�C�;�yB��k��ԗ�xoq׸6L�7��#�'����쫷��eG��w�c|�m��ó��dp��QkZ��8C�s1O��>ث�v�7�Y)��%���T���a�ݰ���b,�{$~zu�U���o�3x�5�}�5�̴O�[�#��/_�Y�#�z
������v�����3�=��5�������=\�|�l7ăɌ� ��G�:�6�%���!)R�x�P�f�Vy�KBg�6�h����+�|�vU
B�
�_ȥ1�L���<�s�����[����{����>��f�9�k��/8T��	�}�'��Gg��,�3(q,���E,�Z����7�����"~�����m����������'��f
_#��WH�g �����{b��y2T�ǽ���n{��'��۵�
c�DnD������ON�Ǔ�z����7^�^��&CX�u�$��J�����H$.�Z��[���=�ټ��Hv�9��Bv�g"��|].�,�R';�-N�H��C�Vo
L1B�{FI�	�3a@h�I���ƕKA=�ݽ<�8<�7��}8�7v�ä0�H)߸��!�<$|p���[�W��Pș�N�%^�vI8��)��`;��$�Xi	��!���SB#J�KV��t"��PI?�1,oM�]�D�c�N\�M�!Q"oIR�CH�v����TF,dz�tt�X���ADL9�^�)�
��o��Ȏ����u�d�Ф�@�)�p���)r���$�F�g�/��h��׮�o��o����	��<p8+
ٜn�U2v�������h�o���r����%\�gN�m_�q��MBxfʜ�K�&�@<���n��K��}*��D�9ͻG̔6v�"�Ѐ�j!�E��C�d�Lh#�#�{�� `�Ji
�/��/��/�<7O“�F��Ÿ�C�e�Ԑ��cY�(���caa�x����7�'cd�|6q���%�� �p?9,�œM�q��d#�0�Җ�"������R�E�g�9f��M���?I�0���I�V���_rS
�X�ձL���e�I�"τ&���
��<M����y�W�l
C_�#&�ZA�
��b���w'TO�a�#0����Po����#d�8��g���I�=~I��m_^�����0)�q,i���1r����>��<D���K�O�I$���,�;X��I%ћ��rE���F��=K��$��{�O���'m��ĸ�CxΦ?���3:�s�%����N�у
�ض����kSBn����G��zSƳI����]�9	�SIX��[7�A}#���	���"�d�5�x���) e���aM��Mf4eA�P[b_��ú�I��6/Io`�e	�#k���l'�F�@	�#s�����XmS���7�?�ח���y�����M�7E
d�$���<eY��P�=$Q_�A\~�`j���}�g���W�{��?�P&M,k'��2x�,?�\�Z�;�-	S56sG�+@�jV���VH�H.��$�O
��%�HIݜ�Z����%�:�T[T������1�R4��
t5}Sʬ�0�x��Q�l�a/%�[O����̋�����{�%�=�׿�<��	����w���z{w7n�ʈ��)�ѭ��7��g����.���
�7o�Jn�c_/,a�
����*�j���R9�sM'�'�{�G���,�B�^JIM!�T�J���Z$7�ڕg�ƭ�:�DW9��
��J��b��]���[n-S������0(�s'�2HC*�2Fe?�.'�\'	Ņ\�=���\�Y�;��vBލ�{y��	B������|���r�\΁0k<�E����ʪ8���������%�O%Y=9���/-ͩ�O��z�2���&����h����4�i���3g�J�"�uq��-�O�.�vw�d��������'Q��gW��a�֗�pN�F��s��5����ON�v��g��p��b�����!�Q ����>���Ϭ��i�|Ļ��_�=k�c�w8��0v��`���7F���e{S��R"��Fn�kh��_Jy�p�VĘ�y�ij���w�
�abo?�`��$��>��WNw�d��zV�|���D�c�qI��x���[މ�NB��i�ǐ�usx�����GɠSu:�'�K]�4��I9:�~|^���T2{fBrQr�S�B�f�z�k���
I�$��h,��S���)FW��U��wl}BL���h�;��O�ԛ\v<��yq��В�E�J���c>�5��j�8z�[(�V��<e�g�"^�\w���QN��ϡ�L�k�����߼v׏�X̖�\	�iVF���hq�q���5�s_OS�Z��]'�J�/�/��x�q5��-b���xeC!9ܢ��n���(��[xb���i\�M	�+��E�?%	�7����Q~��>w�I<������p'�[����>�K��5�����^�7�-QS�!��[$U~����ɳ��5��-|�T����(C��>xHy�����{���;�{|/Oi��,�n��Ӄg)_R�xkD�L����m�^�\���e$}>f�T	��=�{���ΰ����������m\��xe���� ���r�x��gy��m�_�{_�V�Z����ְ[�F�����]�.��#��p{�z����;��'���Q�=�IeM��އ���=&L��������N�IRą�J����zvHh�P>�Z	g%����q
ge��r\�ryɎhep9=l.���8)����gl�	��x��2���Z��)��\���o�B�}#`��,t�z��fe��%F�eS/Es��<��4Y�g��S�4i�!'��sgqtp��uV=���#?�7���q�GCkI�ٳ �c�����Q>�h@@�;ؖ���������bkφ92	�E��-(�����w�d���zG�=�� ��ͽ�#���{G&	8B��ZyQ.LJĺ�\�R�7�����q�9^{��=���	��g�!�w�$���&��)`�z�Mӧ~DV���bŁ��%=B�ŷ^)q�yO�@�Ŧ*��7��G�c�{W`Ł�v\"�C�9�%swߍw�؂F�2�I�v����@b�s��
��PL�Ŷ}_�E$#�	��״Z�d��d���4������_����O�?�a���� �G�&�gH0�px��@ǩ�2��t
3)�|^7�֐�I�����ZE���1�gu�m�-[�^����IHזVM�@Ϗ�J�C�W~l�
1�fG�[v[�D�bY2p�:�<b�hj#�H��LlR�t�I��u�Ǿ�5?�7�y��iI�ȷoBu�Y� y�|#!�{H���rGǠ�Q8�+I�~j�$����$�Y�ހ���ށ��^, {���C&�Y�z	��K$���G?�:@⽟��D�LB'J|�V#�#����r<��.q�kz�JHD����<O0O��X�{��c@a[	�ف�Cr:Z$�O�!ks�%@���9�zr���g�nՒ�I\%����O'?kf�����?�i��Wf�xyu��|�@w��Dʏ�ZV��`znv����Ӥ|3�#�ZH��i��f
E�4�<!��j�16}n�w&�g��U�ow��Êv��{��;"hR_X�D�r�^I0��������/��<��4H���I"w�`s$:�}�9��*���01���#������J6�V�G�\1�:�/�9��HhV��VO�43�8�@�����T*�T�$Qt�朗&�ל�8�䳘��e]�{*a%^=�k���3�8z8l�X����ʤL�>�MZ��^�q)f8w�m�u�9��-<��yM@��{70���9D�!���7�\^@a��[w����&*!��*$����ݽ}�f�gI�	AG8�O	�Ɋ�����F�z�xq����Z�[8G���n��.p��ps�~S�=���ʴ�����P���Q}��%��(��P7�|z�;tL�|6ܣ�
�o�����Ӣ�k(֬ɥ1�z5�<Z6D�i56�F��D�OIlf��2ƅ@�O��� �&���,�-U4_���g�c���P��sj{gW�r�`�sj�3�k�y1��2�w9���*��J겳����C�bB��Ҝ>O,V�0?�Y(�TH�P<�:}�fh6:�í�z���g�:���ǸxoUf+$��X[�eB4J����ʒ� c1��}�s��7B���yS���{d�	9/p�|ҏ	#Z��A3�O�ᯀx�1�D�]�$�}/�Lě�g
��ֈ�{�r�AW��2É6$�q���H�I<��+N��t�%�n�u˱�Gx�t�<�t�|�t]%���$�h��H�]��<V�����<��c8�(��q���}������r�;L[�=L�u��D뎝��TR�	b{B��R�	m�źD4��5����Ąo�c94z4l��#�mUK�G��
;�c����#&������	���W�H4��hN��s�D{�-c{�o�e�ob���O���cАP�?-�R}�WHP<ý��aQ���2!��~'&�/�����6^��I\-��i!?�_s_���=�a1�kQe���lVHW�ZXC�uxH٨7(`X�dq�u��KKxIēA�r[	����7����6��3k�|��ܓ�>���m�)�IZ8Ȧ�[7o��g�GG��Kyg����3�
���
�	}��딥�)�|��?�yi��!ۜ�d�Z�<�.���ݮ㗻�x���w7�`<7���N�R�!\�L�`��ep�v����9��{�b���-,R���M�R��_��,����(�D���(F�"Cf)�Ix�������3�>^���?���_;��_����YM�~���M�C�t�l�c�jB2��ϟ�k\G���������5�A

ʘVo�E�ѧff���'��'�����q{�I�M�{\��k��L�ro�G����X�C�|
��<�	--��<lX���Bv�!��SBZ9��zy��T�C!;$����c��׊���`�4G@Z-36�����Qx5��X���G.g�Ԅ5�y�7��F����F�b��X���6Yvh�w��r��X)%0�^!���PL�.���3(ϔУ֢�����ϑX��aZJ�}�T�Kf�����9"nԢʀ�D�vkM�^��R67�#DR6w���x�!5$B��5W����Mȅ�p$�aT'M�j	'�a$Vp�1��6�2|K
�����#}��'��5�}‘a`B�we�*�U:L2�q���Ge��7�~��ۿ��׮��x����$��{��n?�uI��$�
��
?�EL��ݘQ+˴��T*&84.����<#�dK�h�g2^:�B�o���D����8�y��L#��aǢ�+�� 	]�)k��K��N��;��	m� �%���m[5��s�X��zwqpX%�QLJ��_��_�O}�k��Gr�}�.*�1t56y��D�h�}YS2ł��	��
��(`�ѱ�1�:�S�q�`��[;kQ-y3�Zϼ{&e�<|��b��cO'@���%��,9l�0�('uY�N��}�C���ܬ�+�p(-�H�rP��kv8ι�
顃:��_�A�gv� ���C�01S,u�i�� �PsuQo0LP�U��>z��h�y�f|b"��0&���
^܉^��H)���x�����؜%�=1!�;�&��D5"�	0quxQ�&��hL���Kېf*��^�)�'�N3p���\��j��afN¾q�-f�}*�>��i7�P����V�^������?C��i^������eMhI�o�ay��ťy�_.b�=����g�W���we4ZU
K${��
R��u#��A*�U"��ٲ�+Y�Dq�\
jX"���O����-�2�H@�$���s%쒜���)qb�*B5*�{�-Cr���
t$th��O^�\[��~^��'O��a�.����ym0�Nu�zy�S����r]��gbu��R�������7�G*�𚤉(|)����KS�e$�NDd_�R���d��t<K(�a�2S�3�llGg �9]�)D�X�=qzk�9|xo��I$EF���ƚ��S��e��uq��ݺ}O	�~�õ�1�tX˞�u�ܾy�/�,H=��v���\&�Oy�3sX����~��+i��$'�Ռ0�*�J�6�+r�fv�W�X"�!�(k�󋔟��X����s�T��P��:VO���]�]�O�׉�^����H.y�C���&��y�)�[&/[���Q^=�ܐx�B��?vY�Ń#8�X�ܺ.!m%I�b�$��Y*�����Ғ<]�5q;N�-!hen�ǭ\/9֤�%�uB�̖���㚆u��B@H�k�p��6n��PCn����x;�rnuIeB��m�[���(+p�n4ƥ�ଫ�f}�K�&�,?�g1����1�\k$<���4����k�$��%���<�~�lYA���<A��	ϧ��'ڞ�#NP�='�}t�	��`Q�������8A�7�4�$�o��ہ��`��=i��N�
ӿ�Ǵ`�o���d
u}�׶��k�~��-�MRވ+:	�Xi0L�wT�1�8�mr�������!N&�‰w�(όd9�O���{�v��'�O�[ɿ?=��^b>8����3v�pC��Mr
9>�'À�B8�s<'�*��Z�M��S�ɺ�praq���Ubb9�ϓ��yL�#�s~B/2��}��p��+[b~��:�?ϔ�I�%|�'����Fz�E����{��K�:��h�� �sWY^Y"B���V<d}���]���&V�e��.��X<2�<�b�2�$�݃M<Y����Y���ۈ��(..�e.p?$�t�����ó�ʗC����H6��Ϟ�n����6�]��X����2~����$R(�)�nS6�vZ�����~e~Otp�rx3�cG0�q����<��^����ܠ�'^,�f�xs�RݩO2H�ݤ���Q_>��S{9�G9�ř2.�m�U��Řr@���.	����:�����5|�e�̌�K��|��1.�>q�{}�=��o�XƵ��h��˼�w�Ơ���|�Z
�W��U5�'fq�d�v���A�;W�7�j�xa/�-�Ϫ���54��C6��"�
�����߾��O�������G��+c�8��u=�T
i��rRH���<9�x}��2��!�Q9λ�.���z^�;�!>��l��'!��;IOH!;���T϶��Ml-��(�"�J|��e����a,����t�D���4�	� .��EB.���\�]a�8/	�D~�Z�0�Fе�<K��L�(�bmX�b-�������	�S��n�G�&��lRqw��cU�
!b�e�G�F6����Ǝm���`"��Kh�k���X�lH�~qӗ#�4\�6"B��y
����+E�ulˌv;�ᵜ��WO�4X�^�ut�u9�yI�w�yٌ!�$ǀ�y����@[�װ��T�{=2�w�����������D��0/W�h(���{�!m44�����x��i��%I{:�SR�i�J�(���R�˒���d�L:�%x,���gŠ����Օ˦���3�-�~��|�~,ŞMҎ�xh����q3���j���A��V�~ioN�1C�!�S&�C�dn�UO^��vu�j6����#0rW��_��8��!h���O�8�/��	B�G<X�s��	�8�5)U��
���|ē��k�jm���Gen��ٌX��4�G_�#v�ڐ-j.��
k+3�q.d�$��9:���NsC��&�h$�9��j�6�y��A�=A$)�^��D㈉7FP<����Sn��/���R�&�q�U9&!aEd_�)��燌�ׂרa���v*���J+�(��ƨ�CK�Z�Ų��F��N�Oy�����FQ�Jx<6�����ȝzR�wb��g�.y�]��T`Hc�H���#� �v �D+��CQ�R���*I�	��I�q�?s����'*.���/U�`8%��1)L�ɟ��SJ��>�hJ�p��$�G-�/]�գ*2�^B�p��.�I�D�3��o`�'„4�U�Q��K?��ᗖ?ב��+��Ӝ�C�;$��z����vO]�M�������#}���%�
�/������+8���W	h�(������$S���y�>��������y��&d����r�X��}Kؼlڐ��\Y=n"�^�t
-A��by/�:��%���$Ԓ'@���%�GJx��xuOc�lc��MT�B>�U�Ý]��X{�evRC�����B���;&��NB��}2[Z�W������Y7�=h.H�;5�wU&�n45|�/�煓˘��"�R�ZS��
ߓ$!�D�ّʂJ�%WE�9��XC<�$��R>�EIz��>�\�$�lCV�+Z�z4��ޟ˦�#"��*�y�R,3����>~��Ϣ�>�b�2��E���9S��5��i��F�k�W�-��{��������o4k�;���t縔�i#2C�d�Ki�aua�c�,�~7HZK*�4�v]M$�+�٠���ʊz}���Jr���������g�*�uz}�z-�y"Nj�8R���h��e*>vnٷy&�\'��4y��Ͷr��r�gr�{$�Hf��s�c���K��>��y2�D�}�Z;����\�V��Gr�Eb��K���r���N��C�$��Ò�F�V	�&��s�o[�>*�9��]��K������W��.����WR�]�v}^�`s��ɬ�U�Z	[W�<�V�=K������,)r�����M���W�j^>wsE�&�$3X%�Q��cva^
f���XC�%��]�{ɵs��\8N�e�a<G>��䬏-��	�?��)�8���	�<��v#,P	�1��֩�^�Gzj\?hF��b�#	vL��s뜇8�$��Љe�=	[
�?�������se;i'�7]�d{è|�{$x?	Ƅ�	d�40Y����q/��3�Ɇ���i�*�=~o�ۂG���=��_�#9�͑�kN8�D��in)��~�O
��a~4pIb-�ُ�X��u�ur~bb�C��ɹ�
>~h}m�'�����ms���哌�SM������/�&���M�g��oWw)c�I���^��n����Xػ����?���b��z*�^6G9qf�W9�m�3�Q~��mʋ�/g+x*Ȫ�<��K�\X(a���V,�=���A>��De᳻�^o�z�Iqj�oG�k���p����m�W`]CC
0Gܤ~T��W/^A��������س�)�z
���:�&e��X'��E1v�p��T|��9ԉy���K�`�s���^��g���^mϮ_�����v!��M���"~�rle6��-��{��?u~��y*-43���c���Fu�֕'�	�e��͝�+�}|@���^o�<�q�e�L��Se5d���ؖ0���,$^�C
��|<�L��(����t��Y�OK|���\���I�����zGW�>��Dž\��I
Eʉ?��{��!$}�}=��j�P�~�	����~̞0}�4���f��i�}�TI^�G��f��e�$%����p9<���D�X�!H^y�ߝ��g?�'G�\��79=�zzx��#��pa��#m�eg�$,ƒ�-��8��#Ă)�9���(�aa�ɒ�D�w(#DB	H/��q�
`��
G�p���X&"�����&{�uM�m�{���`�5�"�|����Mi�H{�P�pr�P�Tp;��N.��0�DB`�/Ɖ��P��ʕ
c!I����p'R'!x����"a��mA�	���,���+F��B���C���8�+	� e�k��8�X���W$D�$�<��?2a��}iH�0��m�~�������:����f?z����]\����g�(P`��K2f�q=6�%!�	ie��p�0T�J�e����bģA�/��*P#-+9M-�0�'aG$t��q��ˑ�r�軱�Jr�i=g�~�6^)б�I�`<7f�d�
 �M�
��6���-�[��%�,��pR�eF�T��,�$��n��!����^:�j3�8�z��쩗M�Z�_��#x?Λ�~�ѥEwFJ��DN�pJ�4ē{C߼O��h��>H�
%ژY��!�������$�-��Y���;mK�O	U%1�	
\.!2��+��C>S�e�Z$s�c��Z��[?����t�O[�gil�1�d��49����L�#NI�dSZ?�;AO!I����p^���bw�Ç$;j[���ڝZ�2P��٩B-�ڭ�a��g�-W4q�����o'b�</z_A��N�6磽'~�&ܜ!j"��J躞�I+*DasG�?�QB�P����\_G�Bh�_��a�ڞ�Rb�Ķ�$���[Lel�!W�XA�냳�T�@�f]�aIW��LyL	K��k�V	]%�>��-��z�డ�^���2L		].��k���
m�K��X��B��|��!A�v����`h�%@=
u�I�2{aJ
@���C�QhO]���\�����T.�;�������錐It����Y���њ�C�|��Lzr���!���ޅa���uC	?$�5�D��]��t���<��	���}IX>*��"�*	՗O�VO���C�uz�t�G=�6~����U��J��.氂��X��Ɇn�pvJ��+�_B�v�#�W�J�,���€
X]�*yc��.a&�]	A5@���>��9�5"�
�$I�K�K�3y]
Z|�E���:�F��$����.�<�������X�frE��d�]��qҒ/$����$���>��>._XG��Dm��>��}���g�����3��.�\�8���(�X�R��Cy����6zJ���H���Ǻ�F����@Y���&������Y��l���#n�ٜ�M9*�G�&�lU-$q�s?d;d���3c��T��B�u��\*/F���m+2��Bm�aP縷.Tf5���&���3k8K�pkg��r��
�"����!���H��.�#s�=7���Q�(�{Gu9��H���o�!�:$\��Li���{�xF�Y�R���ZCe���!c�DH	m�N�d��&!�9�P�g�.̖q��)ԛ-%��o��o���?��a�W��0�`Q��/�̳Oq����$P�=�\B�s�����Kq�]�,,麰wT�8��RE	i/+�5c��	>N���6+�|wH���؈�\MZH&e(�R#zϙ���B�E5�Q��hͳƠDܺ��	��$7p�nujW��S���ɢs$�K�a$��M���?���I�%��5nW�&梉}b����	b�yǽ(&�rXJ~�����M�tY᱿U��O������x�&���B��9�g'�'�<�]�!F�n�S#�$v]r�Q8�bXY,�%
y�#&��|T�w�}<��ur<G:�}ބ�&��N��W������!QW?҅����� �b�^�\X�{�	�~y?$ �y�Tv�����W�,�R�Pp,Wr��z�W�}��'[{x�V��_I-by,�(�@ߟ+���@��+�&�PZ��;��k�e�
��M��|�'� ��(#ߨ����%��$��r����l��ZZ�8��VH��DėO��kױV���y�F~��b�)t2~Ԫ����e�{pg��s�U�����a�=���R.<ө�gN- ��i��w�v�&v�,��$��4p��3$��c,�<��)d�Ԩ�θ�3H�m(�a���>���\~�y�}<���ߤ�.1��|8���R]�G���y���VgK���M�.U�1�� ��i�ҮRL}+=Ƈ$�
��n�.��/���U�T��k練M��h@�:��5y�^���I>U)/Xf��bH1�Uʽ"�'���5�Q���Y�G���dԢ�'�ѐˉ����aɏ��$����g��K�.$;��	�C�R�yvH.!;(�k9$;4g�H����>��!I˅���&.�Ҙ���6�
��YbB����"%S:o�w��ƦW@.�cĀ�fUpɚ�
�d�a8'CW	8�t&^��SH��D��]�b�XQ�+�(���jߑ9���t�S�����
�d���%�����@�$Y_8zJ�X�P�u��DT��|�{����@!�@�z4�A*�&�v�M�U�䀅�����Y�ѣI�Y�p����>+X"���{c��CeO�-�RG١��E�����?�7���$>Z�O��g��
�ېO1!����!�ё��NIx����Ae2�b'cF,It�~̑�6ILi�:�q$��xdAN��B#�u���}On\QrqM�96Ig
P��Dt�g;)�4�+ر(h=TC���H�׈ʰ[p�'�Bɉ �{)P2ʐ�7��83��s���ɡ�>=��n�z5ɜ�����>�k�l1g�t+P8���+sƒ�����B�%$����z�Y�&?������p}C}�i�CT%�/+gz�*`��P��Ќ�X�5c�0-���nh�F��D�n�9���������;[;�n�Eح�#������y��	��v]չ(� cX����A��o��E�V�1�2I��'/��K�*�VV�7y�u|-($��M�ǂ?�#�\��"4��m0��)0�u�*��|#�O�T�#7.
q<��[׮Ђ�ˎ��y��F�����6L�g��ɇTEHI���eQ��Eem����Y��5�����ҋ	�X�	���O�a�t����
�3�2e5Em((�s�뾐��f��$���]����>��N�w�(藹�̖J�8Y�d���Nˀ�|	3�Ze�Ҭ��R����J�Z�#%6ܞ+!�T)�L���hs>˽B\�T3m��ڗ�w%�HÙ�7�e�S1>�$В߂�F�gY!~��q���y�jGd�	�04�F��W1�*q�&yI�!�R���Q��!v�Z8U)q
�e��3G����3T�z�f�k��{^e���V�4aٱz��dOg{W���>K�u�u�3�Z���=�r�H���h�&J�m��{qyp8"
M�.�-G���,���n�>�#�.�}�������$$�xw7�qf%�;�xb���R@e>�ڝ�X"`�F��cu��V��t�s��^��W/���H��w�tT�c>G��23!V�4���ޅhS*�yB��'$Q�3���$���ᐤ�l��BzG����N��qȶ]�g�QG:e�L$�����V�+��w)T=%t���y�'��ځz�8Wb��:m=��!O�<hh�U�VB��͗p�<	�F�בh�)�V�beiI=W4g��i��Jh*!>e���̐�J�q��Z��>�����LB��Ҹ٩�#��4(�"��N������I��Pfyo��!�T�k��GH�X��C�$V	���ɩ�
�a����_'CB�4���s��"m8�V�VX�m�Kf	�|x�j|�Os�y�,>�G�M%�4=�<+�.���@N�ѡ�%'�)#Z��=2>�Lb��Ȉck��/.ɺ'Cۄ������򽩾������T��.A�7M�I��������|�dǯ�n�ɐ]�qo$����K���I�b�L�ãH�d�DV�\�wb��'�.s�}���P�'v$�"��A���s��R���9<f�8����ulf]pհώi�����(/H��uWEa������%��y�>=M�s%����n5}}�X�sL�at��}7�*Ny��vw��H�z��a��qa�6�Ƹ2J��b��Cv��=za��B%���w�:��mRf�<�x!_FF��	Z*b��?�?ě�>�������.��r5�k�>�=}�#*H��
��R��G��j���g��qk�Y��O�
�+���<�a�X��U��W��I���v���zxmH����@?y����l��>y߾��Ѡ�'�3(f$����G=�q�R��Ϟ����������1؏�l���6���g��T��4�1�aVt�6SP��J:�����ǿ~j�7�J�6�5�kK��%�r+K��x�d�W�=�6w�ZƯ�������46I�H�ۡ'O��հSt!x|��Wzm|���J�׋�p���zU��x���/wz���5�ɭ�j�=��c��aW�3ar$�x�Q�O������x�p��I��II�<Ŋ�x�����a�VE��#9��$HT#��C�۱���Ί��.�U2q�#@�d�$9$��#>B��\BZ���\3��C�D���<6����p5�~�����)A/��ہ�
v��NK�8��(�]9�/Mc�1��~7���;�$Y��
i�Q&�TO92�3 �adL�n�Ky���m�ϒ�\J�R��ޡZZi.n�&��weH�PO	QJ�㒓'H͓����a$;�>Ip8!��pq�]x�0I���Y#����"O���ZW�}
�3��T�ר����^�G�z�XkP��I��p��Pr�w���X�8]e���HgRjU*�p��Y.Ċ�	�zJ�E����К`��Ұ��ԪV(�l>L�ت5e�����%��moF�DD�v|�ʉg™�XRN�o`���w�bؤ�i%���!���!D�l~hǷ���Ķ��ڿ�%>������Ë5K;>L�2���B�ILq�]�fc{�R�R��,N��&�A� ������
�1��P�������Q���~�-�&b����†�w*Ia�^>�x�KH�*y��%�����CR8��I��IA9�OzV���&s ��XDg�ʖB��n�H��BNH�x�����fNƲ�
�n(_�a+���h���l_��KK� �1MRh)_B�EyE<��<""���wk�"<K��V�
��Mu�]��5w��HF��%0Dɍ��x����ǎ	}uJ�A,p��&�%/�ŋ��S�cśu-V(N���i~ZI��鹵S��Kh�V�d��2�%�8�1=��E<#�Z�"O	q��?9�$�NS��1��t>�a:g��4I���F�{��""PY(�q��)*c4��	?�����$�n���&ِ��)�|ϼIj<7���#�s�<Z�QI�ؙb1ʳV.�v�1��I�R�+��	�$�W�c�; %i��A�L��q"���kE.%z�m���x&�P����a)$Qƅ���o�`����/rM�|D���9	���i`)9F� �V6��$Z1=6���X<0�$�RX'�[�U�$��?���Z�ߋ�0�G�7�`_U����&�zKx�Y^���B!�"`6�ֵ(��8hUIB��3�N����z�SNDj��BZ�^Q�jM*��S�Uς���u(���H&���ɢB�{�@t�b����@e�W��"���ӧ��&��*��Ly	��"��JT75
��$��u�
�s�K�xo����=�ή�!��!����F��u�����ʃ�	��W
e�}��w�֪�i�J���i�8�8�H��U΋�G�/�%
5+�$▼y�s��S:�d7�x�,�Y뫋X �s���p
::���1<)�\�<9C�/{7��%ܖ��Ņ9<s��ݹ��ݜ�p[�z&�хؑ<2�$��>��C��xag��8�y]���fMe�sg�i0�x����!�P�/� O�ag�@��̑�y�!��)�4F��y�E�-P�^X�17/�p���D2���ꒆ�r�>s�6�v�.����{�~p]�2���A��R�p�f֘�@s����u
M(!7.5:�$��g@���8<ĀZN�n
R��R���o7�p�x�Ԟ�z^��yKZ;�Q)p`�~�e����'��<'�$[�_����3�/�cKB�u���t�Ob�Ju�@��'�T��'@Q/N��7!�y��9��M���o���q����!=��$��9���'�H�S����>�`ypx.D�������s�&u�����-D��h��F��χ��H�yW��MU� ���Ģeu��f1��~K\������[�=�F�0�k�У���g�
S�����
���ڇx�[��qدq���B�De��<���޼��t���M�q�zÜ��,eМ��[�#�O]�F��J�贀�4�'�����e���%6�Q�{�cA<R)��O٩Fy������.�?�e�
ئ�F�S#@�x���&�Ĥ^Z\��ll���v��D���p8���+�#��wO-���ZUCF��ڸ�.�*���أ����6���q�T���>K����}�!���B5PV{H����?wv
G������.���!��5��K�P��P����c�V��/_�7߾���+����#
���ԛ��s��[�_�~����_����!�v��[��f�d��n�y#jxѷ�M������,��3+����*���=��>�9|q��?k�q�����!:b�0}>a�'��ID��lj���O�;����$>Un�w�ё�xN��$Gr���;l�r�W6ay�K�����
���n���\H+~
�E���pV��AAؗ���A���vM~;D�[K>��&<
�p�c	Q~Mx��<����!���,a���p�L�vvL���#J�s�K&w�r��z�QN�c��Ϸ��F�����c`=-$υ��K����3B��2l2)m�V��$ʖۮ&��X/��ց�&R�_������'^��vL�����Ƌ�#]9r��("����xJh����w�6���j?z�m����7p��=����_`B��;"HH�ۑ`��������e�z�H�tc���
��z�T�%~sK�s
�ŝX��# &r��③���j����g�3��J|��%g�@ńXapM�����3Rj)fb���	-h*�bHyxZ��36�	%^�O�1
�5��;�>4��o=o<�w��-�"�D�Q����9�	W)�8#�S���&N���O�/D����+�9 ć��{;XZ���jA��B���D,��@=9$�7~��"uѐU&�F�@�XV-�f���!5���C8dZq����!��Xo'�Ԑ�-��L����oo���̩,�$a]��>��zDI.'���Z���H�ԌO�`M΁
��`a� ���H�����J�ʇ[�7�b-2�tD�
��0F�=+�'��O/��~o�f3ĤbF�ƥ�$C�9p"����i�^��VI���l�´�>�k�g`Qʬ��G�>���kr�y�Zj&kjd�Fk\�tD�Nm>��=2.e���U�4�˽�+�~��s6�� 2���k_�����U���x�q��i�`xs�8"P-}&!�d/�\ }��E���g)p�!E���w���R�V,��4!��SB��S�C�o����֓��)�,�Ii���ҜQ
K��YSC�e���uMB&er]߄�7Z��g:=�o�I9��/���ّ�X��n�uc-� ���4Z	}�{���쨓G�;�<���T�$gR�E2�Je�j�����\�' .!�z$2:$s��*�q�u�6IB�I-�w2����K��*P9\���O,�Ƈ$����8�Z�1��IbQ��vu/9���/I�CQ�B�EW./j��0H���yʡ�gWQ�TI���h��w]b�	�7�^�p��rM�]�
����Ce���S�H>(����+_d I�=�STQ{������o��3�#.󻘛g��i	m���*e�o���3أLxzi�c��˜r��\H2h��3���#�)���!>��Ǣ��P
RH(�86�ܝ/��}_m�x݈��~��ء��mY	I0���$�Sc_�/.�G�Q˲��xLB*=�J�ǃ��L�U>x�׶خ�K�]��^m6�,�	�}t�J*+I:�~jEe��=H���%Ԩ �g�wvv9��8]n�\̳m'f���չ��~��M��{��輔</O�;��^�]��1�\�M�t�1$t�]���?��񵗞f?t9�q��
v�6�[kj����O��)r��w��[���!�v��:>����۟p�a�Dxމ{�3ʋ`{/!띠�'��'A;�.�I�nz�t��a���^�w.��1�nJ8a���	��I�9�3���,S�O�
H>f��>K�A�&��\��l��X�:.�y��O�_$�;9q�c��	�Q�Y&t�G��|�	�I�V�?AGB�	S/�%�"�ĻO�m�W��X��(r�Չ`�f�H!��.����0�j��ij&��<�;��9=�x?���	쳼�:M�vND<�d�~���	sb���l��}�s}����9^�9�p�:���P<|��)�4��2�5ʿ+�,ʔ[ʕ,
���E����v(?P~9sf�5�I�/�!�p��>u���Vc?�@Yq���[����Eq����9_���w[Gh�i�U{�)��G����Sֱ��������g�#���A7t)���'Y�c�"��,�'�q�QǹL
/�=���1s$O�
�͵�C<n�V���2x�m����xG�#�u"�W)�|aq��p���1>�c-�A%���D	/�d�PV{9�������#br~��l��)#
hu��׫U���%l���x��r��^��[(�qHY��1�x�v��O��z�C�iy�"�r6,b��&��g�r�inS�lP�{�I�C�o$=�����3
�M�����iܢd}��C�O�>���zmʤ�2y\��
�\(N8��}���Q��]��s���q�q��S7����C�	���yp�pV��C�9\X+��H��!ć$��#��C|��A�ó�.�G�z��Wʿ�������pVr�lH��ZWH2�A��γ$E���aȄ�(1��</Hx�*W�<�zay���1aB����#q|�;r840�~�u�I�G�L�3�����l�̘�Ny�BtC��Ņ]���� ��&�Ą�V���]�?zU_�NߒC��h��T��gf�� #��CL���H&w1i]�i�y�F}�
$y��W;0Ըv��}4TB��$HB%ock�|�;���
��j�5d�40��d�V��
����v��蒉�WM&�U�E��"��?%��MBBh�6<$��Q����{X:uZ�
�O����5�G��(@ޝ��ô%�\_���\o�i��6ĕ�v}�x	�H��0��Xxn��q4l�Є1�h�!��e��R�AV=	d���i.����zf��"Z���<$��Fs�/��N���q���N�nbKc;0������,���!/�������ߒO&$)p��9�:���B����C
�2�/��
_�
�B�h�9���O�I�T
��s�$�7�c�	�dp��S~&[b�j]a֋�
��p�d��">!�ܰao�I��i��!��d�E �d�3�<Cr
H�v��ԫ-N�.�_��1B���ԗu��t���Clo"3����0���KB�9�4TN�AG�8���׹���a;jJ�v��)^t�++)m[�5�CMMΉ$����x���ԉ0a�9-�X�p�7�N#-~�ܓ�|R�8��L]�g-e�}`T��q`<��v/	9?��*�ݯ\�ӏ
��$��T�Z{�8�X��6��o�BԻВӲ/���A~��� ���i\=<���c1_&�<�U������Hαy	GDrU���`F�t�̻"�y�F��)i��z.����1֐��b5?�fhb�[9N�>��C��*��}9esnu������d��^�e	�'���+ݿ
E�0����{���;�A��=�Ϝ�0��?&����h����,$ܭ�`=a�>KY$�ϯi^������R���}"2%��ܸ	/-��|�5�(���Y�p��تQI�k�,��c*�=�xf�I��pϨ��<��q�l��j�-�`J���+�>�p��֊��g��u� ���Fz���V+O*�?[��tѩ�����Sh�k\?�x������8�
�}��j���Q���8B���|vI�����0�z˘*cs���qwGCme(�ݮoi���K� s4��~_ª���Ri{�%�P���2���1�TP{B�ym�!a�4�5��>�q��_)	y�=����Mb���0��a
�pߧ��jqL~������oG��	��p��٬z,r~-���r�"�?x��D9�7I��l�xL�)F@��Dn�@6�9�ː�7H�;������.~TX�b�x\�"y�?�EM*��7v������ȣ����S�;<�.I�uy��
~����Hu�����BH�)��H $;�ۛ����ȹ�jP#���yX��_z�hG��b����9'f��v�>��x��.�^�V��#�+��'�vL�}(N�߉�?��`�@.0f��D	�^(���	�9qŠ4�o�X"����^B�q��Ä��\'U��G��	b�*0���&��fy�	�gF���k#㛩}��9�N��}�3�e��s��ޱ���G8���u'����?]�G�y��N�ǧ��_�#���xo��fx�|�p���O���<��?����&:rD±�0q"�
�\-���˜G��&��yW�w�؏լ�и*�E�B�&�E»�s�Zl���DHdE��'�}�V���n�	�(�M�i��og��y�D�h�D��{i*�7�������b�:n�{�X�Hvt�%���C�(	���H�`?�#���f��A��˔�.�����2���{�^�EH^�LQ��j΍S�".f�jc_����W�ni~��a�/�M�g�f���2^=:�gV��٣:� �r��
4�����;���^ĥ|75���i\٫�t��Mo,&�$1��u�_XY�7w)k����Be?$�Wb���:���
����k�x�Z�[���2q���j��3�3	��?�>s��^>��?&s�S�gIz�V\���l�dJ]�f�u������7X��T�Q&[`9������^_�[��5w�vJ�/S�jWMHib6;�W�5��$:��y��ӳg�������5�{,�8�#L���9��O̅p��}�W�����I��t<�7W~��܆��?��JHGnL��!���К����!��]�X�/��C����CHTIz�޽{�Z(I�%��;$�Ib>J�0�0J~m��S���|���3����T0	1
��yF(�:�� �1tc��Kw� ��S�`-`��P�+��Y
ߢ<*I��x�b���8�Kt�7aa�$�./F���<#%*B�ȿ��"��T
Vqa�hK�N�<�q�M��o�*�����0b.���K٘�v#3�%T�y��:+(��[al�L��Q�^�~g�Y]s�I�+�J��M(�������K-�%�w�E�~�_���
Ќ ѐ)�˄^���p�.t|�0��H+x`B�	�Q  ���o��-��4��Klc�������WP?:�ٳ�(�R�_��4I�3��7��x�mߺ��x����Y�Ñ�UrM~߆��\�L�wK���,3Z�WIN	
�2��j�';�<a�C�0$!�X�j�ca��B��ރ�G���4#x��>"rZ����"4>��:_@l��6��Y���}���{v���'׭�	k'������OK�o�V�)�2S�לB>k,]�]�c�
��ʜ ��7��dn����R;�{�u\=��3���󜅧mw�*CϒtN9�r�χЎ�<�"F�*��\'Z��T�ZAa&e-�5OG��;�پ��������c���<N�
B�~�k�A��	�5�֋�h���I/��X�MJ<<T�7���/R�y^��ufD�����1��F�E�	e24���Ԭ���fĨ�~��M�����=��H��]�&W��[�`'�k�h�aR1p�O�dT�~�Xe&�L�BY�4�n7�� ��~�����B׳�>�z*��'��Ah�U%��{��['��YF2Sh�K��9��i�E |��-ܺ{[�����\{�۸�Dͮ?$)��~
,�6��3Jb����hdC9N��JJ���)�b� 
	e��ЄI��0���!e��Z�X,���u"�[&er�u&���ꋁ���Jƍ���I���H�z�\��6ڷ?D��H�8��JH>ol	Ks8���]H:+Wz~$j(�p��Z���+�X���|n
�$/�mn�Y..�#�+�χ;T.9�Wf����9�ʳF��sg��o��$X��g<4��6f�ptTŕ'/�v@���A�G%y�k֐�i6?V�I�AL��"�}��賞Ef�W�v�n�pN���x����ob�h���:2b�7@��BP��c[V��da��m�I�=Y%��&f(K�ʳ�[b�#��ia&�B>#�S�U��B�"ٖM��n���$�bN��;;��G�C����ɫ"{�l.������_kh�Ц�(9e>�q6枓/*�.�HX�-wan	�� �ֆ16��p$�ؗ���ܡ<_�E�ϒ_�?Є��@�:�9�/����8�ױ�wv��i<x��3���XX���ߥN��U�VKKK�߲:/��V�uI��9旖q��=���]�O���@Y,1�̅�<v��8�8����s�J�d����yVk��8'�E�cj�wr�Ȱ�-���Y[˞���[��y�Q��d�nk����k$�J|ƈ����p��c����A�z3��d[�6E>]/f��fQk�t]�$�#
����%@�z�%���l`�����|�Ӣoλ�Y�F���_��QM��s�
����:��K��/��?�^�������q�;�$��"B��M���1�C�}�E�-a�"�K�$��
wMLZ8�`?�e�r�mI$��ɸS��1a� ~�̓�Q�=�c�ͤ�N�ы�(�'y��7q�F�6��?Bv���xJ��Ո���	ѿ�0�^��;���W5D�E�-�<D+��6��2��q.Q�Ɵ�Q��I�ƤC��$��cvb1��9�y����zc�]g��ɵ	���T��%;�M���6jb$�b�7P{��$;������&��4I��`5E�_��Ky�������)��3e�c�(���//R>�,��[�x��x9�G��U㈻=bn܆[�Îtɔ����!�<���B���:��.e��T �5��Έ2��*�z���߳�2����xc�PEJ��G����"^;8���"��I�긅9ʍ[�K~]��?޸�������
��c.�Y5֬R�? �PK�7�!�|n�U�pm{�[ZD�:�G}�X��+J3Ha�}t}cO\:��J���&~��)TH`Y����C�k���ɋ�wy
Of�eٗN-�<n�^��!V��oܧ|���_^���Uֽ���ī����Y�k�x�h��Y����aS�c����&��aFB`�� =�g�!~������)��g�>�nv6?�?k�sDN����O:md��sn��D�?N�'��p⾓���(tD?�ƈ����Ʉ�$6B�ʑ�*y��Gһv�}����\J|8������C��{�$>�XA����t:;�Q�':�����w!zTM��fӖ����
I�p�*L<Od�����d�e`��_I*.4�
�>"��-��N���½DQ*��6l��-!�/�gTIp�8�%
F��F��QrĄy���
GN��)d�|h�	�K%U8]%���p/�����u%vl�|#�KD��&P�pGȤ�_>�7�t�96�CE@񔐺	��r������[��{x�GoP��h�2�W��d7=C�h�TZ��xIe��T��3Jt�{�P�>�-᥉�$h�;!k�Bα���Z�egJ
�2��O�BKZ�1��E:��<v��\x1;�t�4G}D�
��1�"�ԐA&o|?
�f��19��"Z�T�תP��PV���<�x�zg�Y��cy�$Ñ�U>I.PƵ�S˞?���T�(�A�����V���
nr��8�֪Z,"8dž5�p��XTw��	m%�A��/ק� ah V�����G����q$clw[���/��A��Z��zC8�5?�o/ֳ͉�2
M�+-�PQ�:��
�rÎz[
�}�_��-Ζq��9�\+\̱mZWïk/�ҫb�1f݋��ݹ��jլ�B����&��f�c&��&���#?��xA��G=|'�&�̨e�F����%��'nK�yLڅS��O��o��i��ԋ����=1N>�`�>���%��p
&�X1q_�͉Zs\��)���a�۳oߗ���X;���0*����	`�Ġ���^�?�̂��B,��=\�w��Wqn}݃]l�c&��'�#E��XP�s���JMY���ؔ��8��+��h������
&k�{��^�nO����:�O��������t���B2�	�)�F=%-C���䰯c�@q ^^l�x��L�C�<����5`}uI���¼M��E�`�;?D���!$���͘&�W	Y/�"p/L�{q�H\�T�-��}�+��X-��!��N�W#����-��_k��Aj����2��k�1����K+��UqD
h��j�Y��e4�!X]d�S�/��w�������w��HG��
gY��W�|��5/$�R��~�DRϮ��^F��K��V˧�_|���m�y�N��HM�K����rT��l�6؎TIX�p6'	������mL0~mq� {�cA�N�aT�u�TY@s�a=F*seyN��,/��H�eH�Q�J�u��V�Tx�C���Z��#V4D�O"lH|oT��B�����٥U����p�{�>+�#%�y�?�e�8����pX�5�GC���Q�{۸�u@b/�E�[!�k$^�ݷ��$�H@�W��.�lnc���8�W��SW��o"K�-����nq��{Q�vI6����=:���E֋Nj/1�Il���/~�9ܹ����{8�4����{�����P�(���d�㨋8O%9lnD!`9�u��p��B���u\���wQƗ>�2��Ο9���m��¹3hp^^:s�cl��*��|g���u�O�!Փ�a�HF�g0��$I�o^���#�=	�.�\ba�?.�'�N��,�}O��|��7|̽�D?�w��	)�X��u�A/�����s����I�5y>�w����#�N8�;�>�ޣrR���D{#"ʖE�H�{���gL��M�o�/��t�Ii��~z��"��1��~76���@"���
��q�0&%�s�gL�nܪ���cXiB%��WaD'��<�{%6L
I/1��IM#�s�Q��u��2Cr�Ox����iF�	&�d� ���?a�G�4=�]M^�������
.����0ē�"�)��$I7e�˔Ń���Jo=��w�A_�,�
���fJ���������%T(���M���H�w�-��2��*a����ot��kO�a�?�ae~e��.�$(D*�nZ��mb���8�l�|G�!&���'�?�RA�S7����_^<�{�-\ 9���f��s���͢C�������u��xA(g��O=�Y���ڸ�6�\���/$h���Wז��!u�����T���v�}آ��OY�m��|q
�*y���թ����(�]����G���~�Xʳ���v
۬k%��\?�&��e����:�~���I�<Y��=ʾ���ud�i��5,��(�}?�D��:1߫$u��xk��L�~=������s�o�6)���r�,���b�k�O����2c�?�=�{<-�̫=}|�d���p��I"��HVօ�����;��H��%��4�!!���r���!�;$�����	�!���rć�'�}����1��<�$[g�DžNr
�RE�d_h�}dC/9��"d;�xT��6��k;�7nb��:IX���R�;&��w�3J�00!��c#~�&�v21:��Oi�4ĒȥN#�GA�.�&�V�p�CrmHbPGr8��y���rd�<G]�����b�2�B]D�.r�
��
��e� }F��B�����Z���P
�S)�d����&Q�DBi�q��m���>~����Q1���A��� K�ȍ��
i#֝y�� P#��3OeL�,^��E,N5�H��_�1o�B��
&̆$�W<�i�TD�i�U;S�j���
��OC���# ��L�@q׹��<�T��C߄늀<)W��'���E�F�?2ߐ���$��!�̵VL��GƋ���BN	���|)�ǿ	���H�.%��'kD����&�D�f�k���|�8Ղr:
1ñ�"0(IR�b-Ab��x\W2O����A�S���F,�%ܙ$)��2���V��@Ìh����|6���gQ�<�g=�\�+!+i&k�(�4c�hB�T�!$|�ߜ�Z
=
+�A�W
x	��S��Kh���%�^]F)�f��h�3<�gnZ�[�O��g�6�I�4�g<'H�B�|`H�p�5&y�� ���	-�V��zݷ~ֱ�ߤ��vce��!��ך� �f��u�
4�=���!�$14�!�1i׶��$��T0��3ц��V�qz@L�'�s��=#��8L6S�f�VR�FAI��!��� e"V�>������ӒSA�#R�)~�1�(�A�x��?��9
m���%�#\�	�w(c�n�p(#���ߒ?����Is�#�L-�p���k�:���x04D��xh��k��C	O
2�_�XҼK�A�g�7�ގ�]�g5��#��9��(B�^	3$s���$�"+��1%� \zGJ��
�hxo(\�Vwn�;��ž���2���
�i	;��kRv}�8p�Q��j����U�p-��T�u�@ 8C0��6I��ؾL k|�G"�Cg�v�U�)X�/��{83S�R��{�M�i�I�4:-$*�VD�N?����c�R�e�ٗ/���_E���zXF�d��s�*e
�4Cb�Ael}e�cg��,׵3������W/�����Q�r�Fs�D{�CJT��Z�T�;�7���<]3�v������s�8��4pjv�a
�k��zY����&�{*�T��
�u|��Y�����T�4�QV+����ls��q�}*�K�Y������A"ΐDe�d@���[�nS��?�)�!����,�쇯����ٳx����J��:�\��^,{�{��Be���x� ��z�H�4I���}ݯe֮�,���#��=Tٯ���><��/�㣔�P:sjU�_����8��v�p�i�O�
�u���=��z�O��di�*�7��_�p���-�Ïu�p������E2�[KEV���u�M֜j��E��1*�R���<D�t�h8/�r�o��z]���;X[^�>�����Ƈ�M�8ǥN��#�3>���h��ߧ�!��"u��ʟ.�q�yT�O��qm�>wh�( ���|��'=[��Q�|T=Ozޣ������NQ���$�(�擮�~�㎓��k>=~r����B�	���k���=+�{FF�X�_,Ah��и��t|���9�D^t�O���D�G\D�N>��5�#��;V�H+I�e�YV�	]x�7�ݞ����s�%��デ��|���t���3��0��ġ�Ԉo���s>
��
�n��A�K�-�g�38G�|ԡdP1�4�1l�S6]e�J��g��o)�IN?�c�2��=O��@ll)��
{8h��%� ѰK���f���egR�ꖞ/
>��o^=��jܯ/��G�K6��$�ѓ���Om���/\>�oSFڢL~av��M�!�v%zu�	��N>Z=>�r'��˔GO�Dh�r��q\!�S�L��.R^~�0�o�0x�/�M�#}�
w:=\?����nq�v���<z��o�$>rx�~��Na���.Q�{���~����y�^�e�=��}g8���*^\[‡5�>>�^i�t�
4Q�>��~8ʴ(�z8��`��q��>`_��s%i�5���M֧���ò$�؇ԁ��l�l?��T
C����Cxz�H��瘝��<j_xԞp�~��?�]Rc�u�x��a7ܩxz�!��xȧ�$+B��Gtȧ���ߏ
��V��\H���Bt�λ�ֻC[�O
i%D��������#����4�5e��dB�X��ÐƂ�u��Z�;O�����荭���5mΧ�E:��jQ�5I�g�bɑa�.�U���S�/k�/�P`��e���P��`�-�p`�o�i^;�Z	
X�F�P�e�;��gGކ]
G��<׺%sw}ꒃ���|�+�]V�0��%��>���E	��JS�N�$=u��(D��&)E�4B�h�o%eB��p}"�H�+$����PiҘ~\��z�����q�=k��#Bߣ���m�5	��d�gb���g�K��3$ԀX�	A�L�� �4�ըg�j�r�n����[���c�IO�7lRr�1o�@�\�R6�	�.a���U�ǖ0�M�7�#�G�M�=ς�c�Z�{��L���Ď���1B�ؒ\)��f���(��ǟ�pca���=%<�@	� �k�IH2��8���WQ�/�������YN2��W!^8n�bH#�2�A�,n�9;o��Ih/aF�LIY֥�/�����K+���b^�i`u
�ĕ�B�Q�˞��D� ��	j����f�m ݨ�9#P�#p�ք�$�J���#��bU.a
%i���I&X�!�%�>��~2_3�\_>�ݥ����}���B��2�e��Ϭ�N@�č
����f.��j�y�J����0��~|�7��X9!?x?{��׽c�-:m�r/""\�a��� ��j���-�X����d��>�,��y�)���T�
�$�%��¢���8���p�q��tH���JA���.�{F�+��d�}��Ĵ�!l�r�<拜�\Z�[���
3�,��.j�s�O��Y�e���,��n�)�S%�xG�8��	���X�LV�W�ٛ�T/�S���i�:�P9T&�
��6�1�y���R���Z�G&�KD)�&\h��אU�J�%Z���re�v
zl���*�~�]��-���)�=cb��C�th§��@	Ώ<X�?|�`�rHO]^B ����t��{x���	�D�Crf�|�L>�s�y,4�HP\�}���8�#��O�$��>�����E��*HT���ꕷZf�N�
+8[���o���b.w$+FT�j��<Q���J�N��xW/��N{k�ƃ���߹���*��<z�.�-�M��#�JfSs�6�̐D:�yֹ�~�vD��H�f�ټ���vGCX�#�p�������%4j��=R�=��*�H�q\�f�$
H����9�"q�"(�P΢��Р���4�[2>��I%�T�5�K��s������HVjȨ�� ��dB��KS9��h�.G��H82ds��B~��C��
$��ܹ�E
M%D��a! ��� �w�F*F�4���7n)��0[f=��"���[w7p�䟾�~O���!	�]��.�Vc�]*��fO���Wu̝?w�){_�5��>kaaGG&$X��5߉]��+^֞�|�������$|���8{z��o��Q��Ұj=��>��w޹�|��}��տ�K�g���\�$ӊ��%Nu�9'��'�U�G���u8	�8	�O�2'�)��Wߏӎ��:%���k��d���|��O��G�q@�ImL�vһ����Q�G��O���C�_�Rk��8ϷJ�=�'�[^�OxI�"z
ʆ�{���'�g�G�1�����3�
#yދ
K�8q����b4�ý��q��kS��V3L��7Un|�)>4��M\���THY�֏��m\�Vqy��L���0��)3�f2(��+�p�2�V�r���rƧ���p�BT��d�t��1���j���<^��Ix��3k8���V_ɕp�Ͽ�m��f�`�
���s�>�_���W��p�~�zj<$F�e�My��:~��?�\�?!A�Y��N��WD�d��\���gR�^��?�gV��pW�fP�S���ɏ&x�$Fg�?���k/?��}?�����Yt(s<�x��ƒ���}�"��C�)K�4v�0*e�#Y�ʿ�]]A}o�e�*��[�k�\��s�x�GY™n60+�ԙ"�C�K/�շw��wΝ���ޭ6�sO�b���)v4�<��M�÷�����8?�7w������6��W��b�D8��C�^#�4�|_f��!^b����W.�v6�M�h(F���|�~��4e�R�|��ܳ��F�NIT%��ߝ�%�YO����N�'������$iyb��hJ2��z	Q1Mv�A�����k��O�����=&Iv���PVBv�g?�ZJ�r��C�O�d8(����}��\�#��۰=�>��E|�dz �	�4�\\%���B�"�XHi2��X�� ��ІVr�p����1O���e�J�(�4���7�PQ�)ٰNjm�s�!��Gx$�z	H��E�I�af��g���tL!�S� g΂f�w���I�-��kH�E�'<F6��k}g� ���o�6�-���t�4�zJ�����!�`�����$�����ֻ������쳑�o`
�_�@��
�qb����AP<En�f��\VC=+C�	�%Ah�6��Є�M�q
��g�?cm˶31l��s:9�+׫z��&���RS�$J�խV+ذa���_�?�ð�Z��l6�#�_��oUݜN>;���9����9��&_qgչ;�0׌c|��	��1I����Ǟ,n|5���DN,,$"hu�s�!-=��=h�slۄ�l7Z�UI i�v��p,��+�%�R�ل&1$���!�Ek~*��\�q9���I
���e�O���u��=c�$��?1�_�Lcߑt��b��Up4�W���c���q��>^�|M�WW1%9葡 
���Ez6O,ư�Ќ��?0_�1f�@��a�W ���#K�4��%�����g�w����YPƹ�r^�t�}&G�&T4+�:?�K�S.͹�g�H.s�����.1<��"�#�/&�u𔾀#Z�d|�xH;еt���0QO%�	�k�$�!e���TRN)�g�dDc�7��ܵ��<^��Zk>�}��5QtTa�&���ONxv�m$�:ϊ	�ݮ3�u�z�:Ǒ#��%��=��9�w|�g)S'Ը�gŔT��dUƤK4�c�đ��q�G������+$	��Աtm���K[��'��]�p8�y��#ŖeN:zC����y
s��!*��6�d~qM
h��Uw��r��rA�w^�$ia���,EВs�N]K�g�'�T*�LD��b�k����K���g�
�c�($B[%H����	�b�!�*�Ai��ZPL������!�����eRi��<�07����,���x	���S��!��.��ɘz�7>�R� 󗮙y��LY���o�
+�Xvѱ��uo����/J��x/k�?j��z��g
������'�G��Q�
�.
���`}��I xw=������Ŭ�A�%݂<��H3V)d�%Y��pek��!����r�5��T�,���3��8�x	�^J��92�����9\�#�?�4'��x]ny
�������A�-�f�)P�"��A�(����4�H��p��o�H���c̵��7��㉚ǾQ�����p{��'�%Y�K�;d.���Q[���ե9oE�$�fW
��32�w3�?����%f�4�A6U8q~1,�������
uD!�"�+ �jP��:}��j�\zB�K��_������?���;F�r��(�9y=�(+��<!©�~G;x}?���cs��s����vO:�����3�e��$G�Ӗ�����T[My����'����^���з� 7A@| �ػ����H=>G:�޻�@ή�������M���c����f��̩��ܑM��M�̫t��r�\:�.?}�-�
�ݾ��,����_�Ei��E-ǁ��ʴc&��c�����5���˴�$�5	p�Ϫ���Ӟc�q����F�>O^{�9�=�]㳔��}�0y�q�ϓ�N��, 븾�6�f?O��8�"�����%�����S���4'�'>E��&5D{Ly�|��/�/���ѱ�M\�iUv\;Ǟ'�m��{�11��E�>����<�%F<ʚ��  ����S���<�y�2χ9�I���9�w��e~!Y�M�,����Ξ��̴��$Wq|�Z��ԗ��W���>ܖ�Q��!ܫ���#�b���RE~�GvqS��|�m�Kfؔ���Bn��ӿ���?|Ƀ^M��<~o���&L:ei�¿� /���.��} ���|�����*V��M�7���ƒ|�ޖTQ����0/?��8fD�;%7�٪7�*��j�-`,�(��ī8$���ީ��o^��x�o^�ݗ+�Rۮ�:�ǵȆ�O��������e
5K�dx�"��;]�}��o��ۍm��ܪl���w��3��N��$+W���
��
���^D}�h�?|�@�9�,ᄈ/
�&4z�zvIv s��lu�Wrҧ���x�_���q싐��[{��
�r}���	�����[�k
�u;5�B�^�5�yȳ�"O�����z~��qܺ�Y���5�'�ᙔɹ���6�����G�����x�� ��<<��
B��zʊa��o$?Ν;��ҳ�yz0�)��������	����c��7�A$2��Ua��3G�Jy�8�oM�Fq"j
#��"FK)%Zh98�Dߚ��*���f8�&g��I��>����R��`�@b���*��v6��O�������*J��0ۊ�P�i��D(�Kz, ��F��.���%����y~��e�����E]��]��q
"c��09��T���XNP�&WdB/8'��Z�h�ő��Lx��$+|K�0�-3}0��Pk䃏n�?��[�޺kH�����i�:����6W���^
�o,�$��H7��8��C�}���ڱ�9
���p�z
��ĐP$�8}��P���Xų
�Ehrː`1�M~��s���mi�#��B�#&�F��̱��E�%|�%5��m=0E�M� ��̡U��Yo��ʹ
���d��9H��w�}n&QU�lh�+��c7�Ϟ����*�_��}�E��]��3�f1^A�	�u#� $zJ� 	��džd9wSr�h�C��kK��u�T����+�x���~�.�✔�R�䁄UbF=�J�t�s������9=��8��J	��t���ƔlA(�oI�Y��ʼ&=elu���PV��K��վ��U�?�����괷�%�5��2#K&�N���=M��\[�j�DX02�	�%�q���{�}�=��\Z:XC�!���`��z�mbI��7Z	1©�#���9��[�	p?��'K(�#3M�*�l�(G�x�䀗�-�qr��~��2�K��Ue��]k#[=�3}g�^'W�5��a�%AJȔ��h��JCR��J9˓�`�{����0�*��6Q�ͬ��:��sMME&~��p����DLj2@6��U�@o�Q�'��zk��sg����&��ܺ}K�_\X��c��\^��/4�pl�Z*7)�]m��J�')��@/�b���=��i�ppp�D=��(�?��7��n$I*���	�/������is郎�Ϊ����܋�ػ�VV�ܢ�5�o�?h�O��I����L[�ԓB=?�=�;:ݎ�j�lQ�H������#_^Y��h�_O��U�!��hd�/>��G��'
C-���[�M@|w�)�P`/-�R~A��/BY}�ە��.���l�)�JI���s �����JT�)�a�	r�H�	6ȣ5�G� ��1E��zÄm�zqQV��2d Δ�;7%B�6��kv4�g�����y$�\KH���Y��K.�bp(t�x��@V�
R..a��ƺ�Ú���b�V��u��'}y���̝ց�CQd�[[��R ��l���5��7H����]�s�!	��w�s��>��y5��>lc?�8e�ÀcƗ��c��Z�{�C�B]�fA�
�O�GRk����%��_d�Z�pZ������I.�Q9�zE�dNː$Ⲑ��1����vv��w��������:OW�S0��!`)�q��%.Փ��l#��ZOc5�0�t>ݺ�P���%ف����*�l����<!�N]����2�� 
/���ű�3�d�x��<;��g�ʏ�|G�ˁ�g0
�h�0	v�$Vʿ��aB
0�r������)��P������:H&�1�Jj�����G��m�����E(�ȊiǸ2IJ$��$f����,�{�qz�>�@�i�9�h8�3L�Vr��D��z���vR[�T�Y�u�z̪�qe uR�w�Ӑ?�9�i�"#�GNo���&��Ȕ�VB^"�l��xrT�I
M*iy�$�%�-��:�X���DIY��ش������A����>�/��7���+7&�+�2ϝ.�m�;_#�ŏ ��mI��?��7�UȦ��Ӛ���bC^��<�]���ږ���K{�O���R�,�~_�[�?/��j���v�!w�M�<�Щ�e�}��7�`��\_L�=�]ȈE�k�/�'�
�c�M�`Ա
��=�࿶B�ʛ��~s����Ԙ���'�����ې_���BI>���뗖�L}( �t��8��w��h�&_;�"��?��+�+rr��QJ:��z4gD=1!�֮���_�u��Z
�
H�����SߑM�a��+�h�{�{�ȆA�\��K�bP�I=����@jB�}�`W�篾 �>��gN�LJ���|rAFF��������zuyy����d�V�k�9y�e�$λ
��ٹM�~�P��BN���Jr�F�,��?��,��y��*d�R9yk�ޑ�~*+�fU��Ҫ�1���ו�Q�6e5�N���d�g�GU9���6��@�=�ѶE<Ot�3m��s��u�Ӗd��L@�H����I�սgx+�g�+& :���x����^�^Og��ߡǃ��W�%Ҋ�d	!�������S@��H�0	v
��ׇ�i�f���>|:��}Rr1x	���>�h��)�X I^���w.���DZ�]&G(ТYlb!�H�3�=�J�Ȁ��Y*�6�'��$����(�]L`�c���x&T/(Ij)�E�V��[���܏ƉqG��ش�$��8�Tdx*[��'%�|Ks��
H��6~?�G����0�24�ک��d��ߜ�b�Q�������GC��>�z��nHRx&	��9�=�8��t�����ȷ����ۿ����؍'P�9���cI	�ȆRO��þ��4�j��Rl
c��c|-%��8t	�{���h�\7�����dk�l�E3�����X�a�#&t�X��x/�RF�1���1�ڷ� 1[>#瘎#%���`=}����bWܬ�G�G��O����>fR����S}&��C��%��~��`�j���:�)��k�f�\:w�Ü���>���5YZ]Q�u`�`�a�W��v �,ld(��hlnO�Ҩq�0�G�HИ�Hp�W�p�2��"��kH�ے,�/��)���Z�S�~t��:�db+O��!���@�j*E�����x�1B3 )���ͼZ�2���p+��X�zJRz
�sN�!�0�9ó� ����e����֚*W�f�ջK4�N`����W+ঝ$Y'o?�̱�}ɷ�>��3�=���u65��#B��)!�;:J|�FM�5�)��
�h�{Eb����xM�2��3J11m� IhO�#��,��}L�	�;J�'ѦɁ��M��E��̌��o!Q�\C�"Q@����[����O�<s�\�v]����[=T�n�z�8_Y\�@�`��1�ϧd�¼�,��`((��}�y��L��,�Y��t}S��m��Ǻq�i5���
О���MF15}�y��׾�D\k2)��TNL/	�~G‚��{�ޜ���'W�����H�4'��j�!e<#g�\�ʙe�{ U�_v�R��2�˿&C?�^^,����ʉR52�:�
C`�8a�ۮ�S�*�6r׸[���<�}��͑���
�kt4����eY�d�� tC��C�i�X�1�aCV��]:������vG�z�z�t �eJ ����1��d����[�,֒G�}����������E�����ǾB�|��+/�^�*�=$�����{�|W�o��� $@�O�P�ú<Q������#Ɉ�!1pmJx��d���𹏽���Ӑ��e�Rؔ�]���3r��}�]G�70~8j�-�e��$�n[QWV�4$X9�	���K��$B�yH��ŋ��I�2=;Z�������7���W��+�3C+.ϕ@LA/Әj�!-��>��ac��}����3b��G�SeZԡ��Ş���ə.O��{����;�eM���keiY�薬�8{�������{�xK��eԷ	��PX$*w�L<��?�G�O #���1���,��oR'3%��w��gPDǙ�5�[�Mm�H�w=�B?���j(.��e��\Nדe=���&���Y�fx'"����g%dN���N�O�s�ǑIn_�<~ڹ�ϐ��i�C���i�m�X���f�g�,��;�ܧ���xG�X����X爜�m0����cR�^+y�{|˱^㉌����G{�H�	5!���ٞ�B��VU���Í�WRoK̫D}$�<���j����+��q��n�'�9�O��UXݒ��$���\n��7���8��E����Ď�R���J?L���T��{���䒟���܅��ǻ�N�e�	�F�!�FY���=yr��ei��zFم8sx�5�$��+|��(�ܓU9�/K�D��HA~|����uyu~A��枔�{_��?H}I���&Qw;��!ۼ���gwn�.���B�"������m��@ޅ<z��+k��wI}|9;���Ž�h��vj�)��ĠxeeQ�tk[rW.I�Ӗe�M4(�^wp�6Ȃ�H9�&��>�ٕ��.�YC{�a��r�}�U��+Wd�����yzR����J�yЭ���q
�o�e����m|�@��N��4�)هlWC;�M<�^�)e����pG*��<�.�9`2�QN�070�<���=�����aKnzRE���8}5�� �E�TW�UD�AV�<Q��7C�B/-��,���|���<�����2K�I~�rx9���:Hj�(�ʅ��������� ���	�C�ᒖ�,���w���������A��&,W�wsy���g�V��7ND�P��+�V&�6���~L���D�����Bg-/^���)%�A1I�ˡ��,Z�-�^���$#轐��K��{�Ky*�0[�z�բ�<Q��.�|`�l>7��}(�gіT>xZR�y,4y眗�8�0I��Y����cC�2Eo��m��M|��l]�y��z5Dn0jۓ�p�L�$~��L.����O�D��OI����ko�-�G"}��npNY�M)n���GƆsb"U�+cã}��&�nݒ����T�xpě�m+�[��$��ɵ������S���pa�i��&�Od-W��>�Ì}ΐT$E�^(��Pc�OR�/0�4�[�h#&�f;r���q!�F�D�1�����x��FC}�0�k���2��јLsyt��bH3�i��A��Aa.n�V̆(U/,�I��RQ-=ii��L�z�\�xN׋L$
�U�Y3L��Ң7��Y��C��I22�Xh�J�l,�5)��h #%a8
�`�q��F����{����Y�IP!���l������u��$���$qd]���w(g�0�zUC`���@��1C�1D*�䲜����HRx&����;�z#]�	�l��S(�|Iڝ��`��=��b�vIa=�4��Y�:��n�2�� 	`&�xUrӑ��|��Kc)؋��:���#ɏbsE�v�f��J1:�GB$����q�X�n�S��c�u���UC�LG�;Y��='�q��EG��{@��D�p�'/M;�X\%c��|��[����'���^�_�/1��zi�]]�o<�<�IA^����kT��!֕��{2��*��-
UE��r�c�T��RY|��Þ��uuN����8G�h���3v��i�"�H�d4$9�x�)u����@��byNC��Jܷ��!�8�
�T  <4���o��&��\1�D�[�
"Q�=4�g���2���C���f.8�t��Rm�Ax�X�-.I敯��
��稾S�T����1P��(�C�qL��H�i�d}�W�}y�$��@~�ū��/��`�h�Qx(�|(�h
���̙6H,�WG
X���
�ț���em����c$w@RaMO��
_�Vz��aX�Z�&�Y��8�I�a:�\(٠~AΗ��AAlf�/�+
X���~U�H~c���c(ZyIc͏0�v�X����Й$;�pV]�8��P,��)����Q�S���M����W��y�A�n��Ԯ0ƚ"y�w�r^�W�
M��!�z�A���<΃ć�O�<j���<�������o��_\k�PG�0;����㉱�+>ˁl�o��vAd��{��k�e�Bs���i�
$�� >zjD��2�y媇U����{+���@D��|4>a�9#[�u�T*u��Ks��x��-���k��n����� ��>�T����;#�{㱝�9KٲZk��
dniA��4|]V��V����Z�=�'��Y೮�����]����\��)|G���,<v��˽�2��~M>�e���NO;~�0�󬶝,�@�i���������'�U�Y`Ǵ{&�s�3�z���Ӵ�2�Ǖim<y�d]�#,&�pR��:vV��<�ȏ����|q��ü1�Y8�;<��Y}.)�{	�F��w��$2��ݹ���t�h���X�
��+ֵ�:Q��_$��Ec��=�$(�(1%~��t�h �5���I]�!�>��*��=�y�"d�M�s��M/�PXɥ�0�w1#�bF����AD�����WA�4 �P�h�䟍���v灴�_�l��F�K{��h��+� ��\×D�ۍ=\� _N��/@N�\��	y�-���wYn^�w�>d�+y`ìl1�-d�w�-`��s������W���܀|�Ks�lk(?�Ā���8��Xx�
�Q�G�r�ٔ��D��j�����7zۇ�n������[�=Qy	�8��e���!���ے� ]���!��[���
��W!;��E1{����y�5�*ϝY�_Z[�߹-��U	p�9`v4�Z�Q�S͆�ږ�ƥ/Kc�"w�˗�֥t�Ơ!>t�s��*��Zu_��_yU��>�;[-y��i�)9������n�`Ж�eـ�x5hIm�nЕZڗ�A�<����~Y�������>��m�$��P`n����ϴ��c~ʾ|�s�0KΘ�/�3�uMf�H&+�Ϋ��%��'C\��$�$<�W���+�,����҃��P�#�C�:���JBQ�(�����,19�U�X�>c�z��NF�$�m�[YB�tlg}��%0繩8��@�yb�$�+iBW!
�*8��TLx~l�!TR1��rGd�vϥ Šo�Q3�(�
���z���hrP~si�^0��PnxM������Z�%Ft���!��q�G.d9.o	-(}��>ς��qH.�����I���6L�HA{��{	^�Ȃ��!H��;ᄃ�iB�¤���CX1���^A��_2�Q����A��d�N�J�{���=l��'�/M���\1��V��^*�8�+����$5z����H[B)����q���2�r�Z��\�ͅc{f���BC�qΉ�`_�y�(�$�Xɷ���q�x�0�6���k1����+�TM磛3��D�?��Mzd������طf�<-�b�;E6�ö�	�H�v�h� ��p�cܵ:uM�y��c�xnCâl�����7�Kk3Ɠd��,�r\iM�
��H44s3�5B�'���G����I�@�X��šiYXX��%��	�G2����唀�l<<�I�Y��NCg^,L��� v��>�P�s�2��[&���.���b�e��������=�P�r���V��l���Y��b�nU���j
��5�HIx�w\*c�;Z�tb�5-J�#��w&FQ,�Z����G��kftT8"dGc2�)	��"y��I��t�a,���M���c��R���Y㒔����g��DO�wL*�wL��xG�0/��yJ6����[���q�A�CA�a�|����:�� ������Z*���.��`>�egg�zAWW5��i�}��͛���k����R*B�XY�{I�1�e��|�
�
����Ҿ���YmKzP��AF:c�MR�RKu����a��}��heT�^�Y%W3P�XM�?ܿ4G��V�����z���5����8��}�Ä�s�D�#�gR����p�:��w~�'��3���۞�������X�\���|�/��
��z��:XcC�����VT���ii��4��L��Î���Ⲇcei�ΰ+��k���>�Jq�e�
p�RB�6ڒ�zK�X����i�e���YZ�:XW�͕��}Qb���5�i�dޓ@�Յ�
��j�!d��VU ]~�m�+��pJϣ�����ANa���=���dy��U���#���m]g.%�a^I=�z(�yZ�q�ed(=�X�$w�o�ھ=hI��<H���Q�]�� +�9y�y�aQs�T�咹:F��,��g���<p?GFG�V6>�pM낈�C5>2IQ�:�񺹺 _yIk�=ϯ��JY���k��%Qj��IN�<������2��*�,�L/���Α!�<��8R�푁��F��V�	�\���1
���BS�:�5���n-X�{ձ�<Fy�ш������k��G�{�T�].W�X�M�:TD�[�0V� �J�Y�l;S�jH��|��I�4h�Y��d����g��Ӏ�Ȇ�u��/�.Ӏ����2���@����H�i�v	pZr`��<�$BbZ]&�ì{'ϝ^M�g���i�Im�|��Q�ˆ�	�0����D�Ĉy����-A�x�]6]ーq�,/�<��х�$���!"$����ʣ/��qJ���N�3vvU�}������2�)6�Y|����������]y�w(������Y//��F����˫e�9y�p �}��x�R*/�x�Cْ�t��0����]�_�^�u�����.��U�ˁ��P��PGUނ����%	G���ȿs�j�#��`_ E���q�ה���&�����²|r�#Kh��0/y_v +��P�P��l��_����,��
�~��IG�M)I��A]����+�.��K���t��\���"ȔGt8�|E4y)W��<ܒEȪ佽}���3r��r�*䘇 ��n��yc�@�γץ����3Г.B����>�+˛����P�@���nM.���üz�|
����Hn
[�rvIC�00�pݗA����P�o�y�+â� Ϧ����
հ�C�W�!o��� ?~�
�'g!7=�m�8 nH�
#�]�;g^�҅��q�\+�n]�NY"��+�+�dre����v$��)��tN�K���l��9~���K&��9��'e�i�Ȭr��td�%�IO~�.2��B�#y!���
�X��PV���W�ԙۃd����g��k�9��E�?��gΜ� 0{ԝ��.2�z9e��9RB���dW�򣡫�m4�Ě�*�t�}���
�	1��!�xg9E����|�d��i�,7���?�E(�&'D�ʽ�b�8�yH���I&�S*��pāK��U��>��_d����^T`�N�Xwz�N�p���	���{u�{�xJ���'�l�B	����Z�̸Ӝ�6�q&M��x�h�C.�5�.�L�t���X�"�zC�ܹ+��;�+?���j����{�'�K��}�M���<-T�	v2�W�\������{%qh��51���7mm��لx<m,��\h!/&w�g�'��%e�?d<�ceO����׾&<�&�e�l�vC�(���(�R2L��H��$e��)� z���y_�Nl/=�Z-Υ�i�x�)x�
���s������<��</s���9�Jі�8�=x?S�d�u<tI�C�{�.�u��]#�� �����;={#����t@��֜�\W��Jy�C-?�:��X]]Ԑ>�.%ҰV���k��'�+pOS���ޏ~�GK+g�U$H��Os�T����9�RQ*Bv��܋B��%��9n���x�r�AC�&7���yu�MAPl�}2�ڒƳK�ȩ���iC|�Rx�}�鳶�)�kZJ���J�ۖV�!�TI�v2 D�﫫Gj�AOƘUW�悈t-'ꈉ���&��QB�I�.ArR@N
�P��+��~ϝ�į��S�=/) DS�s��&7co|��U<IpI�+������A����G��5�#��y���1I[D9L�y��x��+��G]���Ib`$�b�F���;�Hͻ[;:�Vq\��0�]�8_��l���m���eY*�4���w�r/�ϯ(��Ci�dS�\��3�)Y�g�7�ҕc�Aj̒�k����~G�N���	�e�1�(�x��a�
�bP���l�D+�Q��!eξ��6V��,e9Gͅ�a@�����>�Ow,,�	ԫ�%ַ5�����x�ag �oJniIFKh׈ĿIB��4'[J����>y�0_��o����u�♼�@)z�W�奜Tr�	 }k�~G� +����Ν���
�%�'�3� �H���`(�v���9hc�[�����
�]0Tϒ?���?D;�8��\��r_��e��$�΀`�k_��{P�ڝ�<�d�8��g��YkW�ς4��A<�m��@J�aw�����%y���tI�`�.�\#Н���	�`�r���RnԄ,R��<�͠���d��B��1��rFޫ�-/-� s~��@v��9�Qi��i�^PZ�]u~E�svA��,��DhB��!�ɽ�M#�ɪUYޯ��ׯH��>'&����qJ���< 7�oi��f����o<~�U�E���D�_rLo��O9�!�o���|���ͳ�ћ��\Hױ.4O�t��
m�w_�����6�z8Lwu_g�2;�� UHhEv�v�M%�4��L�O:�e�F
L��Ӯu�>�>I<!y����I�@�z�ךU�����Ӯ5�~���DX�㎝E(M�SN�Y�;nlL�f}7Y�Y�=�i�z=���o,�GF�1��2&��E�D�í����E~,���^7��0�L�8Շ}%���g�A�8�s8�K�'bog<�=�t����ZV1�1绰���k�.Nc	��N�y�ꀺ�@������GR��
y	��3�Y��G ۗe�I�9�f ��A�����| ?��d#L�^�3C�ED��Y���ߖ?�L���5�*�گ��嵽��}覡�����Ö�@CE��W1�,U�ˋ+�/��4�|j$�J�t7��2�
��g�{x(���3�|�]iA����Y���C�(�H��
pp����7?���W��~��r���z���Σ���6���<�����ld*�퇲6�����ru}v>+�k>�A�Iˍ�=9��~�÷ePv\�<�`@B���Q��\�W[r�ߖW�W姸��/>+������'�H����c����k�Åe���w�[�g/@Fޒ湃nS�Pߞ�"��r~M^X[���|��Y�d	F�\��]Z�{l������W��
t�w�U���/��]Ⱦ�}*�������c�ۗ��s$Dp�����ͪԠ��p�M�%�3�!Y����&�$�{�k|�k��ٲ@r�9n���]c�����֑�V,.���zq�3�Ǟ	o�ػ#Iz�8��R����zGz{�$�=�=CX1���^$@�Ӄ_л�&,�?��PĆr������G�51[����SpZb�y/$	G�����Ꚙ9&8�$̎�8*c�h�{Z�#N7J¸skj��<F�5��#�o��$�d�A[�;p'kC[��S�;�V�W��66�6C~1��{��:X��7��%�"���3�8/�g�z�5�>,v��P6����2
v;0���uA7�F��$���3"RP�$m��/$<�';�� :ސ��~W�^-'5���9��pJ����=O:�S+P�LP���v	c��F���$#V�-�
&C��H�s}�Y�߷����hB�C]���I&t�(9f	;B�S���5r�C̃j����	3����q���gi�
&5W�
�unN^}�U����#��h�����Y�?Dñin3?\���}�l,;l=a�!Y�d�@�C�Ae�������Q%��#:��f��+��F��`�6��d��6�00�VWW��n��P��>�ٗ�JdȢx`*
����7ޚ��a����eY����LK�G G=4(:q.0z�W�1���W%[X���M�����^w��$�JA��]{Ki+�f���z"����"
�"6wA'��(�R��be	�P�/��FS�tњvH�O�����HS
ɅQLA��R
�����y� �ftu�KI)S�ΐ�9�H��2GC\ő��7�MX��7�����k�?������(nKI�ō�¶z���W0�^i�l<ޝ��g�O��GLX2�S�8��e�
S�x�zF۰���R��2EN�)O�)1I�X)��t;wV\�JG�j��E썒��JEهuk�n^_,	TL���/q=�sVss�T��=���qjk��̕��F�p��XĞ�d�kPt������.s~�:�VGڣ��/�KeeIs�p�j`^֫�-R���؞Ś�<=M;��J
:�JX�Ke�E����lI�������9t}P2����!���9�� #�u����s��1Or�R��x���̈huzz�f�
2��5���s����<D��c%��=r��E5��}��}W�ڡ<�[�8����K��jpW�q^�;٢�e�ۯ��H��:�����E��$	hؓ*f���}��Y�a��e��Ϣ�rK�e���a�0�-�@@i���2�h�[��~�C{g�h��C�x��|�c(?�a��Kr�ܷ�u����[�~O���N]�r$s����d,ZV��R}mqY����p����f���!�NU��(_�X��e�u��l���~\��IX�B�,K���&��r��������T9SZ� ۂ����`�c9�K����˼dvAv`=߭cOJO��(����W�����C�"������ڬ�hh�{��F������U�^ܔ��}YY[���Ca��:�&�b<z,�aI�|Jh%�qA��+ճb0�y墴��E睓/Y��s����[��Y���I��@���x��]?������%�'��g��=x�
��*K�G�M�R�lI�[d���ZZ���qЈ��}�����YN�N'��@�Yמ$R&ϙV�i�I��q��Y�<���i�ˬrZ�=�ln>M+��YI�im��<�N��O�o����zL��N��w�����.�s��j���I?�#܈$�oLz$��+09F�B2���jQB7[���d�=Gt�U$�mbe,VD</q�;���k.�}�(qø�b�����<(�L�=�����5�����|G�j�h�W�i9��܀��������\Fr�y�ٖ�v疄��<�ْ�{#�X��e�U�������.Ⱥ�Ȇ�^�._�X���-��ӐoT*r�
syu�B�D�]?N��~M~��y����]���We��&���M�B<JI
u|
��߃\��Ҳ�{p��/W!ބ�1d��y1qe�~
��o5���Uye���BIZ�������G҇,�f�'��¢,�~��,�/���<�� InA�C]@�P�Yؔ����y�,?{�-��Uȯ뜽"��Py�B�y��{�W�����)!�V��S8H�r�~z}�,��Ȓ�\.��zg(?�ȳ�����	L�݆�����p~E>��ǵ��y��,�~:'�]i@��i�%�rꋫ��{�I
㬀6��ʁ��H���P���=`,����+�;�m���We�ޑ
�r���䥝2� �K#���Sy6�"_A�]�7��ѹr�?�8W�{�,Y`ڽ&�7k�Vґ9ڳ'�?$>���y$����9;������w�I���g֊��|��+a��!���������\ ;(�zLZ��%-w^ED������:z��`z:.�M�?;�Xз����菉�	b�}�|\�@�K��K�g84�t]bA
���>���I�}�g�s�D�~�xn�4��XȪ�A�����A0�1�y�84�MR����M*[�هP�d���7g�E��YUxF_�Y�6[
�z��Dƙs�uq.�HȘ�ɾݳ4��rI�]n��zG��~������ZL(���'����w��}X�yl\l�F��~��/�sFC���p`�P����A��Ⱥx	�^�Ά�R����es�ljێ���%6�Y�0�§a4Ij�H�qgi��rõ���w�%�&��I�y6\@}�p��1��؟=�![�O���`hC}�4\�x8�U����%-��k�CИxHƠ>�sDhTr�N��
�F�!o܂b�h��Ēz�M��OG&4Z��;�/�$�GC�����*^�
�G6.j*5&c�+��ħ�@Ё�*`ls}
`��0�8t�c%+)C6�x`_?���D�k71���X�S��aޏ4LG`| �3�7�=�X�e%<��Ò*�,��4J���k,��DBΐx1OSJ���C˜��%%\�&6�P�M�3Bw�X�ʹ�,��Kc���1���T^�6`�.]A�-�ZP+�Q��I�>���Ks���@��>��(�?T�ܖ	����O���^V}�0��-Q@7��bX�Z�3�zwD��w�����A�$�(~u�|,0�Āw��Ȅ��$	��$��&8W���C=qͱΠ=��xG�I�*�b$Y�0JZo�ߏ���tW/s�}oC0�^�%@���B��y�d�K� �l��>h�d����<��.�qO.l��'�[�PpzX7��׆��󅢆f�U�_2
Cq�+U@t4�f�@5ݨ&�T
�S�q���J
=
3؏ٖY�)�Ȗ�bMQ^��=JK���P�-�q<	\,�ל�Ř��P2{��hn~N�gt�bQ#����;��|!)1���70�ϳ�%�+h/z��2�)���BN*g��-�"h�<���~W�|��	�~��ꙐV$�]
e07Wz�SkZY̥堄6a~�2�~(+�E
=r�B�//�1�F�#�^��V״a	d�(�p��W��:��:h��})gR
��X��X����6U��)a
mBQ�2��/���M��u�xw�edi	MC
遜�H���
�a���j]t�HjC|O�����Ξ�T�`����=$�u7�����R=F���]��\�eb�P6�70�B0������Y�xf/�ƹ ����dc�\>+/o���Ǥn��aDO��sR�t]�@k�Dè���
H�6H���
��:��9�b�T�h����:���~0^��s2����W�����\�rI>�uG�}�=�k�� q���W�WR|h	��ʦg�lj��*�C��#���s$E��4!��.<n.�˙�e�3��VO>�y�I9NN� �Ď���X�u]ɜO(���\!+�P�XO���Hސq�q��dx:��$C]�N���&뫺!^I�����4 �,Ea0�O&�w�0�>�e�0	t̺�d���g��cg�7�i J�iD�iˬ~8�I~��۬r�qǍ��:������|���{����W�ߌ��1w\4>Ӌ��A�Ů4ߡ�7�)����P������h9�ļɘ�u��ZNK��=B���]_��&^����'o:~�ȳ4���n4�h�K��?���r
{�&@�%4ђ`���R�Q�\NRsii@���nU�|����{��+%)4(o��[���-��[�'�,C䛐�
�q4k�7�eȉou��� (��<B�AS��m�j
�
��/./���]����5�FaA�ǜ��AP�O��7�M����|Ԩʗ�sr�З�QC�`b2��nA�}��c��/>/ː!?�ۑ��xF.�7��ȗ��H��D�Ҿ���瞑�Jr���R��>hHr���'þ<�5�W��޽+uFJA�x��4!��uWh��&���9��<�s�� {��]s"�Cv{{�DМ�V�d�G����~����/�"/����䥫�J�WSy�⢼�=Dw�R��{m�!�����B�ܒo���3��܆��JyIn5��C�}����>��.��w�ʻ�{�
��j=����Xu��x���|�v�
0�߆�r��B�~g����E��@nz����Ҫ�Nc_ށN�����g�������������U�{|�r^|%�W�$=lh+����qDM#�aI�������;\x+�d�s��\2��|�k��K�M\.Jx�Ǎ�d���Elͪ`�I&m
�c��d~���B��E�:�[�Z��$�8����p���vVQY��!�I$$2�%Q���D���4���M�G���ԭ��0	4��	���� �{R�q
E2GH����#J_�V���!�ɯ]i�`�N���0��t�L�S�zm���f�s…2r��+V��g%T|�A�zj�l��`z��#y�5��6@d����&��zz��DΆ5K�|LdZ*Yώ���
��"��Y{�PI��&��hpo�����0�IL��H��C���Y�T��E�3��Ǟ"|��=��ꍓP��Ɩ�����IX�Lh���r�����d�MZ�.�h�葒4&[`I��/�{�ĝ�$$��xI.<�h��>���X��j�[��"@�S�ZN�E�/���HW�B��Ĺ<����|�
ZI;?XB%�:
L�Zv�d ����>H��ܹ�@�䰯ۭ���
g
��V��������=��b9-���zK\#ѷ$氩�5�XNzÑ�QbF�#8�,�5A�(��(�5.�E��c@ڋ�i�> ����9WH��j�d/����XZ�@Ps�����)����q[�j�BH��i�\��KK�P̓������q���!�C�6���}F��7�Eh~�z��E��"�x�������z���΋%~f{�1��M잞��(�E��I��	�G�NH��S<w<�-�׏5���FG����؍de�L��_��%���#k0S�r���9冯&$"�B�y�$g��c��_�z�Y
�N��>���
5?=BY:�=��[}��y2��B�y�� :�}��=5%��cdH{�F��q�n_�
Z�g�/�L�Fs�
pozڸ�������5�^	�!�X;4D%�W�ݴrIF���ݔH�Y&xfbe�编��ij�c ��P�S�r�.���z�R�"�0��bm[��)�Ak}5n��8"a`�F����ww�593�G$P�~(�U�^|J��R�F��3�����GO8︑
�3�O��GricI�}(tP����$X�V���T�Av��II��)z���ʃe1l(V�E(�
_Ʌ,H:.�����%W>_º�}�߃2x��uU�#��|E>y|�uK6s�B����ZԵ~�����=�99�^��t$IKVQ�FG�&���3��=�%��l
Zz��Y�2���ܢ܅3狆+큸a�Z&�l�(K�ٰ.ł��m{ �{��[ٔ���rh�+ɢQ[W��:��A�ddJ��D��b�AQ-H:��}�,*�B�dXХ
��^[I��>+�p*�+K����M�-ufeYC�1�ٗ_yYnܾ'�}���I՚	��+r�]�v_�r��9";ꑴ�yՃ�|�\�z�%˯���|��P�k���:�’a�$�ҽ(��r	���� \Z�Q��l9}��
U{~S�OIM*�հWmH��q㠺�klVCÆG�o�ǓdG�`q:������}���;&�a(g�dm�"_�2	$��F,���L�?y�Yǟ��O�������O�i�Y�x��f^k�q�2y�M΁$�7��{L+'G����<�$Pi��띶�R=-��cE�u���|���ΗX��Y�(��e�X�H��TB"I�@�XW��}��Y���ט�����d�x��F�y�F�)S��H�E?4������bmG��~G6�>�g��>�O�3A^Τ����d�B�Yї�����'we�>���e�U?'���u���[)��r�\����gzR����:]�9q��>�#/����C��^���2�Oz?����Oww���uY�}(C��Y�%z4�d����G�/Ca҂��(���|�~Q~�q(��8+���rc�&��,�p�f֓�Ժ��u^<�*Lc�3�)��K�������;��O��Q�k��x�H^��()|����mܛ�\
[9����g!/�Q}_��r^��u�YgGҹ�4P��z�~|o{_����Iw�|<!��E[��
l`���’����ށ������-Y.�I�ِ�]�C�e9�� �^s��}�r?�wW.�Y�||O�%����*�prYYG�=D}w2��d�ׯn�3���;<�/?�&M���0c�ǁ��#���]�R	���X��g/ɥZ[>�����һ�
���k�r}a�\V>A��5�6O�G%�Ϻw���'L+�zEg�GvL��re�Ӄ�{{{:+In$o���`���]�r�˵k��7o��==�σ��<\9s�[(G�Qp�q\�oJH�Z��e"тם��q�b�*��,&GF���&� Lě��ꔂ��z?���<J6���RbcP�g�-)�=ý�!M���u��ќ�9�c
e�L1���غʂ�U���"��8���Q�KJx�QJx
cog̵R���=����RY"(�!���j�l����32>����0���ߐ��~_>�ySC[i�ƈ�ՙ_�Z0�1sv��(I���\*aC(�cRJ���4r�P�c�X#T��c��dlb璯���C�e�R&�e�Mʚ�CZeT�O�mnƴZ��Z���g�\�*
-R��XX�X*��!@���m�6�r��Yr�޻���V]�$�����.�O&c�J���t>y6V2�=[���p��$��$���Z��XWɕ��q��Ҋ[gg�Ǖ��P���}�v�5-&>�:`��TZ�X�u�z@����W��5���;{JjH@\*G�`(�JA@��`�H@����9@�zix6���$����F�>��w��LÁ��OR�q�j��2]�fφ�uKz��z1}��$`h-����IZI�"X_Z��ڊ�"�K+�UO4Z�|�g�X�ˁ��xf]6J9iB��[�R!-����!�wH2�yn��`(0ɉ�魌k�>q)��$�")���C��|�z�,��a���(�1�:�"�M��ʃD�6u߻{!)��s�%1e�K�k��ߩ
��h�aږ��N�^�>�#jPƔ�:"�2D/J�-R/Q�lQC�y��</�p&\
7$_~~k�iJua���P����5G���?�)[PJ���`��"���#Q�S`��a;hJ��]�|\7��L*̶��W�K��MӜ!���*�z�ϰ�:W�o�]���H�x�
�ԠGU
�CՑ`�.: KaB��9�y$4A���CC���[O�y��)Ko��	�Wm�tmd��~C�l9es��@v`�?�kh��2�V�J��a�.�K?��\�_�p~���|��г��	�0:q�)�iy�ܢ��)�S�����/���JJv�h���9���n�co�l�뾆�+hޑ�3Xc+X��na-[�,�a_Ӕ2R�.<�Te
�x	�s;�K����Ž�/̡�1P���{�O<iA�M�˒㾂z���8�W����4�H��P�2�l3�zi{@}	�,�kC�1Db�-�m\��7��|ECZ�z�סh�j=�<$ &ݖ��G]���xi��K�)�Q�Z��I. �"(���C��
��R���aK<̉ͅ�dj��m6�4]���W
�#3UP"����BI~��kr
*�\�|V���|x릴0�iD����8ׯ^���u[�x�ZS���5
tR�b?~�X�?F����(�PL��(�bI���8�x"7�s=��u�^a��P�ݽ�%���y���TpARV��JayVg!����ۤ�I�#9��$�R�^|C���4�H�s
pR�v�td��m�`�#I��D�P����4����	��W����:֕i`{�-����Ι��L^�?����}鐬�,0�8�~�2�.��fApܳ��d[N���~����cZ�#RNj�Y�g�?�/ɨ'�imsR;?-_��F����-���F̀�u��XP�=��x`Ĭ��E���%;� ��k�L9�e��X
Ƴ{���#���T�ą��\���o���w
�r��
@�Ö��ߖ�ߗ�}����(-�%+�0�S�FoieGR����c��`�HF~2���$d�W!S�;��+�J
`���0�/@g/�t��jr���v0/u���d����e�3��rey/hk�7��H��JI���"?<ؓ�]yNv�PGFo�ʞG�`_�}��޽�{���"�l���Ŭ�8�ʣa�5�B��EC��<�� ߽�%�@�{���ڑ�&��G��
�}�_w平k���]�z�z }*��ޞ�80�4
��Yr��./�[�7��ߑe������B�]�̻����q?j���+��壏�˵��;��v�-
ȟ����KI��{��t]��Ƨr�ȧ;���>(B��"����V�fU��K�I��縻�/� �]��~C���|��J$'��|��x���샏�f��\
�Nx�9�!�Im�}�_ׁU̡/��[�Gݎ��|�a#�pE��h盍]Și
\<�w���;K>p8��}iR>I�?�Z��i�d��Ǥ'/��v��Hn�w%?��<>X\^��~���{zv�����\-.�����#meɎ�7��JZ7����70��Z���8���O�����$����o�b�H㘲&,���'���a�̆(85��s��i��0����s=S_=���2i% �D�=>g*a�1��`[?Qy���	��`<Ul�9p�i.U\(+�W�����W�Z��
���W�*3�����M8o�Ղ���������).	zR�q��5�5����V��y(nd��\�v�n_��}��g:n8h�I00�����q�ל 7�w��*`����bv3��!�L�Fq�)G�tM�$�I����W��Y�K�Y�Y��
D��z��&DVz͎����2�u}�%j��-	�(�V�3�m7�~�PTϟ��o���\�tIn��(�
����lh'*�n�S#m����	�&:�S6O��߄"���Zg;����0X
h��P�R��	�v��E(&6��Q��tۤ�� ���$���Ì����OX`&Cä3)�������6M�"����)с���䱄��-�c���0�͇�cb���l����o�aҊ	Mpx��ʴ	e�
�L��Dj��N݌OJ��l�|���d��k$�N#4b Ћ�>#[[��R��R�e[�e���n֤������*i(q�u���7���^���I^z&,�g$z�qO`��b&�8����}O��؍o_��G��&uq�w1qyO\/!�`\��#�]H��(�8�d��Qt��8R�v1k2�k�5�dL�ߞ�EL[i����Zh�]X\~�X鲯�wӕ8�sX����#�w0�i0�Ã2t��|W^{�%)8������I��6�/����dy�,E�H�5OB�Ob��{;��
��]K���U)���F�rF���n��5����z��a
!��G�	��h0R�֗{��d�(*j(AN5g�H���9�|�֫�{���Y�Jlѱ����1Ǚ׃`����CMt�*ŊdJ%
���$�8
�d��Mv�Y���-��{<��m��J
d��Ⲝ]J�/�r
\�d@>`
��|w���
��YY[,i��a�}��s��
�eW�����|�uVZ�x��������z�+<�#��t6����Y���u��YY�;����h�*�aA�u�!?�W��5(���A���0F�:��h��
�!PY^�XH�TTP���Ѥ�[�*��Ȥ�j[��H}p���|�����a��y�7�('+�
�!�ҍ9A�7�yYޑ�m�s�i������_A���=�W��m��:�3K�?��4[N�~�y����6z^��y9�� W/^�>�D���s�p�&?yㆆ��=l��`0h���l��c��2W�Z�&YԅC�<�����C�Q����^�-�cg@�3<)C��@�S�"i���Q�3�Y�\�~]n߾
"������:1Q^g�H���JO��p�2��v�RҚ��?��ڔ/]�����s:a�5)�%�$Aָ���:�8?��x�z�_kɭ��|��I��i��b�ܓ���=�#��O�>
��$l�"��1y�q��g:�w��i������{�5'�r�2�dI�c�ؓ�aV�&�;m�&����E�ŞST��"k���0P�
�ҹ�d�$���|���Stb���-���X�E����<{#a�����2/�;3r�ˤ񉵸���U���*�E�PY��:�XG?����gp^-�LR04<`�Z{xmG:�^�޻�Ҡ+/�3��(#g�:��e�G��Q,e���ǽ��뻷�^ɗ@t|	�w��H��R�7P��w����ц���\�[�2d�}4�{~W�� B '2�?�J��A S%y8�ɍ �Зp�ې��A���̏�'�Â	�;�\�aJv ����x�S����TVz���ˏ>����£��8<����)gwk�@�zJ��3ڤY�'���Ң�-�N�&/_�,g �]��;B{�<�d)9@翾}(�諫rn� 7j�767d�!h�9��A�A��b��
��?zᚬ���@��²��K�� V ��sPC־	������/I��}y�h!��f�"��G73����נ��'�-�G/?+��w>�Ǹķ֖�U��O;;x�y�:��������4O�A�+��,�E���/B6��ҧ)�?z�+��E�+�m�rE\(>a�0����#��oߓ5�~|��i���sޡ�\���A_�����G	e��-�Wij���}o��>�ӈ��c��1��	��'�ǃ�JR0��Hjл#���őLZn����AO������G���yv0�9?߽{��?~�X_!�{;;;��@�9���ڀ�mΉ�P͔o�$i8(�$���1��B�ʳ��&�C�8�^�eݰ)�Ӛ.T�>��w�:ƖHƛ�J-�g�N�?�I���N~*�\�@6.�)�E�f����
�0�Ķ]���$�[/%�@���	02Q1Ar��N
�
�{vRĖR"��䖘�Ҕט�9~=���SZw�A]�Jr��"��q]0�6h�7�4&��?�V��d�'������?�����۪ԥ��]�x�qA[PM�m�W��!)��`(�|���Ƕ�fںK�b?p���ąo��s�$Z�TA�i�^�_	LJƂ�g����5$��͐��y�t��F�
�k�IO�})�¤�rh��c�=�O�׳���i>�S5��1���.L�8��z£G;�pjy�"�v_Cod{�Bo���Mi����
PI3�@�ai3k휲q�sE���z�m�����?mbdC(��V&��I���iz�gġ��)omS9}9�#E'�7yhr�w�(H0�\�S00�9|
����&�=='�J��&DL�g	�V�T�V��W�O/���_RO�l&��+	n��F]�*%��:��p�$��2!��̃��X�@m��fT��a��DX9yˈ�f�dX� 2�%����	�����1Zm���c���*��-�0׼,�����ǘK=�����}�9Ű^�y9`��^GʨV�<��J<p��'�Y�zҌ:�P����u�|�j�I��%v��V�u���B�͔�to������}*P�iL@�kU��=��n�xt���T����v¶m��;!J�Qb�u����umB\1�x`G��L0(C��扫�+^�4DN1�/�,��*T^���GCg�Ϟ�3bo�_Oe�o�p�Va��b���p���"��ϳt荇��JQ�ڐ%��"$,ZV6���S�-�b8�B�x�r�O�~XY����kh춰45?�1n���0�,Y����}�!����v�!ke|m��	��=���H���	V�u~G�������*L���3��~Ű��kZ�s��\f�6jx#0��&�;@Ac�0����z}z�f�����(la��V�rm�W��j!����?���/����q��7`�ߌxJA<g/�VK 10��0����T�!H�!�Va��g.?#���G�`
ɯ���Re]�i�5��4�ꙫ����|;My�+�R$g6��J?+��҇��0_H2�6'��%)F%yT���4���釔���Gr~���[H�����'�á�]Y����ܼ7��2������|�NK�nS֗W��c�|4�h�A���{0-6y�w����@�\_[��ܒ6d��F2	��P.��K�y��O7��ኼ��.)%�"�]dc�������g��G��FR��ߩmK�V�\��q��o�����sJډ�����ZiV@�=�9��җ��/��·����c�2���Qԅs��msn���x�0��{K��\�����0�4TYX\�� �U�MI�Vױ�\m��di6��i��#l�`�X�H�l��3פ^��3ܾ�P��k�q���|�|׷�	u?���5rkrr]��{���P��3�ɫ��zx��4��NK3�b*�ao0daʄ ��ۻ��UC� ����@r:��g�
ڬ>>�jH�<߽N#�ex}�$	��:w�}��ꟖD8�8�8�F.L���O^c2i�i@��{M�%����M���@��}Z�O�ϓ�7�>��?%;�j#�{FN�\F�P�b��[.$,�U���.��
��GNM��X]%^�c�Ů�rTo�߫l�����o|�8�(��M��Q&���C�N�X[��q�I"��)�0{ƻ$�=�}�u~�#Yl��ܨ/k�Eϡa���B#�b:=d�rJz��y���p��fץ؃�L�	�mr�?mm�����d�_]_�?<ؕ&d�!cE�:��9�[ԟP��}�`O�����)��~�³Ҿ�H�x-��~�Ǟ=D{���߾z^Z���eȈ�@&d���Z��@�[��n$�v骼��\*VP�]�mfd
�t��ʧ��܂��P AГ��������=i3�n��(+[�Ty���nCnz�֑�����xC��s��}9[�-��e&OG]:�Ə�u�M/�.���h��Km~5
�D�C�q5���?�twO����Z��@��ٳ2�l���w-?/wA�Щk�����^yN��ʚ��n"M��my��,�2���/�`@BV��ھ��ן��b$ۍ*��[m�m�%� nAc^��(��'�K�Is�ܐ�z��Yd����������bg��\'��zB�#R�1e��p�������%L+�����ƛ���`�r�,6������W��A��DȤw�x�^$=Ίd�ݨ���q��q���=;��d���\|�LhNxA����e��J+�oP�5nΣ8ԔZ�G&�gI
�^µڬWc!�VPL�k�;l"�;c��(��\'TA�Fb�tJ�x�f�Qlg���"k�(	@�lh���T@�9�fn�%B�����m�E�0�V�C���y;F����1�\�lO׵W`�kJ�����Q1�h�%c�ʅ�ʐzТ�d��b�F6�E��`�zw�<��g���	�>h�/_�vxx��w�G?��T���ƺ,z�%<m��Z`��d�(��PV&o��\�4D�!�B�w�,..�{/���mlޏ�(7^_���2�h?(�>�!,��
P������G>�V�)�a>��A��P#��x�஧�-�OC<�4�IZ�=�k�C=�-����>2����h7�O´�J=C@T˻�p�+Y%<�?��=���;�*�e(����Vu��mh?fl�2֏u�E3
850�&Z;���bOM��v�0��z5�������f'��7%�1�zR��t»g����;~X ��
�n*��'�&���enz����i߄dS��ZJR��@�
HT��@–
t�Z %��-���UY�+�*I�B��q�sL�Zk�M���M{��&=��7�U��#A�pQZ?e���P*Q���Cz�lh�(�$k�ٶ]����#Zy@x*]�$�{7e�i�'[�O��aS��r^�9�Q��L��H�����A�I��S�e��R����Vs%��W�e��6�!��:5�1m�"ߍ7�V2�y9�3�a@,���!v"y"G<��&����oO$�$(�aLJXIL�&�%�Ǘ�0wV
��È
3;�j5�PL8�(���	fOO�sm�$�KF�k[�ȋ5[Kw��r�QkƯ�5�:�u��o�jt�t�_�tO�6Y
���Ȯk���m���9.k�k�W^���J��PV��m�emi	�^J	6��ÉJ��=%�wK���ږ��e�#H8� ��z��s����j�lR���BYi�!�x�Cd�'���#�zn�,/�����]�Z{`V������s�9��9(/�̃�/�w�[-H����D�2���Ry��ls�Q��b}���������ڠReuˠ�׊�R���.C4�R��j\B�)��d�� }r���S�kʊ�B��z���-�)=/�%
�Hs�����c��+�IA��fyI�6�%��M�|[
P��]�m A��I?����ԗ�_�|�+#�Is��ܚ�l��>W@.a2e9��*�QP<����}�ݑ&�7��R�H�dy��K*s��2����h��gda�*�R�D�|eCR�����X�c3�>�����^���4!�pԕg����"C-0���`�S�"�&���"�����I��&�Ռ�DZi�˳W.˛woKa�B��}���c����@x����P
�\���~�rl_���B�>����ì�&�~�cע,-�b̃xj7��_��ة��-�0��#�5q��9��9�ag�.����5[c���ͳR���b���7qߔ� 0�e��q�7��������ƈ��3K����{dT[�\yVnݺ%-SJV�F�T�ʳ�}j�%3����{�=�FL��ce�y����̾�}��O/�<����&�ʽv��z������Ȣ���u�s��2N~��'A�ir���M���O^w�1�.��&��1Y�Y���1�!�f��|V�%y�i��֖��J�Y�̪��9Ǒ#��i��V��DGr̞��O��3�H��;���#�={D�T������V�.�Y�#&TrWb@IwSnj$	��D>�PQ�X��@b_���	8��%�Iw���>�����+���$�%�y����W�曽����@���Qo�t��?�̭���9���B��2�"�y�9�
H�����G7������_�|��j:n�<'�Sߗ����,de���n[~����g 4��Y.��AE�
=���>;D�^��Rm����O����JI�A��H?BF7��-Ȥ��U��g.�o|(i)/�H���CW�H8Xy�����ړ߼v^�ߓ��R�p�2���6���ξ��('����P.�*rkk���lz�*�HȾ���<ڀ��H���9+%ȍ�l=��+e���姇�ZJ�c>�@�h�o�ڒ_:�)[r�ȁ�E��9�sdj̜�����n˳��=y��+��L�����/k�֩K��Yy�*/���+�B-�j7�5D5
��\�h�>�
��C�#���{��v�̜����Iۣ�I�CzJ'U��b	T3��2FK�}�=�y��oE
�u�F�8�S�w)��6>�r<m��Eh�"�g����cT��,����Gg}�\�R�%9�x��D�r�'X�B��G���|��`h"�����Hz�� �PV��vZR�te1a��*�Gv�g�W#f\%�	ax�!��U�:�h,�Mc�8��Y�6F�K�LPN�܄�2�����BȰ'�\F�!~±0�^VIw��\�rJk84�Å�l�.A"����
�� �h�41���s0��U/�M�	Gv�ԁ�ћd8d艢
�dBMX��1�͝1Z�B+�!������G,?�я�q�93�G�v)�l��0��sR��#e���\�s�PM�օVcT]D��1D7��H�Ɖ&�&	aqJ�ic��bG�?��O�c�X_�nwBeklJ�����yt;}�q�d����߃���P�(�3��9���+4RQǓ��1L��n���*Ľ���Ĥ�A����BjH��g�Y6<�M�ɑ{��d ٭�mcm�d�.�Ud-�=���X܇��Mr��z�H��q�8
�`����X$�sW����m�k�]#���~a?h>�0PKJ�jrz���RI�a~�`�@.	�!��GZ�~_��5��������
������g�5���v_c���X�`��V
��U�K�P�C�v��9��1>!4�=�Mc���	�64�~�]	��
��כ�M���4T\h�
xֽ�=Y�WD[y�%�g̳aC޿.(���$�����Z={ɞJ
�VPv�B� ��⌠b�xL8���I!��%l�6^oe,��[�M�'�5�L�d�~t��H�sQ��ʌ#,���9;�}��ǯѓ͖��T�?�%����x��}q���b��?im��Z\ˇq}��������ȿ�o��;E���SX��u
���+�D��6T��1�چH*�$�"�CQ���oγ�ppn,Hd�o�1aij�=	^��}�D|cp.c��K�o�43L��P�I;<[�(:�3J�_����ϑo�Oi�!֧ój�5���Q�g���?���[���aX=c�����}Y���$�|��+ǭ�:�G0։���|v�� ȣ ����(ώđ�n�Dd��2��'I����PYB�H�շc+���^�l�x���ܯzM��)V&���Gq����9���͗��.Inܱ
}ۦ�qnׄ�Γc
�/��?���?��&�7��4DŽ��"�)���S����Bf��i8q,���ʀf��M�f=;�|Qhb���M\c$?��B��q{BbM�ƽ�쩉�{�$�/�87Ӥ��y�]d�}BW_w�)�!~&�|��I`y��.Y&A�i$B��!�]w�I��8`}P1�����v�:N7�ؙ��ǑH�םU�㾛��$�2�~��9�O��K��|���g��qcnڽf}>�O��xF6&�Jc��o�uٳ]�W����U.`��~G#s�(�K��#���Ɩ��X%0��-��?��c]HdQ�6hƧ%(��i�q���<{jy(�RT�?���Xְ���:�[��ˎ�g�X'c����A���_ߓ�{ߗ��˳�W���*�|^2��c� ��pS�7@R��h�g�4 �}-7'_d�y1�P��\F��2.���e�Ż�H��?�����
�m��}硓��!z��4�G���><��vᬬBD������<��AW�������aM���RdN�Wݗ��qV����|Av�����,�Q�%��󾺹&��̗+���d�@��8���v��c�U�gϟ��>|$�݁l�r���4T]���7�Hzٯ�d�^��TQ��Q|���Rk _��)R��A�ϔ�~?��Ʌ�ey���9Iw�j�A[d���xL��|�Ӓh����&�a�����)���u>D[�-��ݛ����=���@ep��.�v/��3D0�l��c������@:5�z1�:���Sc���� �:O\'�4i��7��ń�Wi�ʐ��a�C"���N��]
�����&�����=iֽ��������숏M�쐄�o��Dž��l���BX1Q�+$;��'�E�
�ý��Њ������d�������(
ע�8�^dY%*��QqBKZ(A�:�t��Y�%�Vf�Z�i\�rf�������&��i2��s‘��1 ���
8Gf����;�(Ob�9`�U�z,qX*^��8G��"�$�#`Rz�H\�v^�K�
[kG�8"AYy�ޞI(��k�}�?Ʋ�9����ɞ�U��Xg%"�_�sa�܂Ϻj�r�ko�qHtw��ۓ��'��G���`O��t��l�=KV�Y������L����zܨ�J�����e$q��!�f���B�Pn����±����/1�6�|e����޹0�и�i��Q1�2h���k!W�Z����6�N�%-,�d�K�v��R0���A��'l+"���?t����9��W�Q����L߇����MlR�Z���'��)�6R��3-w��J��&xWyĆ+�Xd���K�1d�H�
�Yd=?4����g���?_�Ћz��H����F��wV,c[�%<����F&���	]��!���y��0f#�m�5�B��Gc�I]1��郱Z���~�X�����[=���F
*q��+K��X
�R�I���C#đ�5�㛹1r��Z���ͭ31����`����n��}�h�>e6�A�I^q��iܻ-��=)�Y�I
s+��׸�$}#��wai�h[���]�y�@k�����<�vun^^4W�h8�hb�p,����;�6vݎb��I@(9N�'��h|���c�n��ז�P���_��G��'* O����Q��h<�]����Q,z��=��

'F�r`fR�����mcO]oT��ڧ��ǵ:1���ds{���v��n�
�9~<�#I�#ы�=��M�'8��`O<ޏO���{G����|��g���R�x���&����
�bԛ��o���?����~�%�2�Y���K�W/:aΊ�P?�&7q5O%�m�O���Ŗ��iN�?��
�[��4�{L���m��/9�͔,H\ԁ�b�=9ܼ#�a���X��92c��$랒q�*��[b"�=�+���P�������w1���m�I�Ɏ2�kS��T��߫>�J�z٤��'�Qr�N�gr���՟P���L$�<�.G��'n�0���㻵��Ns�'�9�嫲s�s@Vz�%?'�89�Y�w�d��$P0�+`T�f��:�T�Y@�t�v:�qܽ����L�O�Od&�j��w�N�H��:�Vߘ���5���]o����&��uO*���w=-�����b���>~SC��@�!GR֘RC�qE�A�	�nI�b���y9��NI���g���d����OY�]螑q_Ti�B�#�B�h1r�
���ƙ�N��&'Z��h��x	yț��bC*17�bC(/֝\�5���u���ևߗ+��䕾'��\�r���W��gdG��Q_��pK�߯J�+ɥ��L��5٬,��"�=y�/��G���w���!y{�׻�����3r�P�[��|8�F��%%-�\a4R<�-�Vړ�,����K�+��3�݀�B���HL����ȂW���v��O�y�v�!?��6:�Pn���s _Y_�k�9���P[��
ݚ1�6�G��֬���Yy8���zO�/�����Ci2?���F
l��b��Vr�ё� hw:fy��}(U�x5`��H=_�G��P�Y���`[�gŹBș�����'�~7q/FtOc^fϤ`�0a��79S��S�	#c�"A����`��h��3M�>2�S$+�O��!�9�}cp�*��8Sy<�j�JD���r��"&%R�����W�0���B(y��^��{���?�П�y�i{´�f��]�%�����GG~���ڿ#b�����p���~'�bCk��[�D�3��?�yx$�Yi�9]FB�r��d�AnY��;Z�M�$t��)<�1>��yv�94���ڀ������Y)�q�eNX�+xgI���%e�_��Z�F;��q�.ƭK�!�C���U!1a��zjb^����.�Ȍ��J���)��D���P롞+�I�0

Dc�����i1�h��a,�����ۀ?��R22�z�	�#���S�@��������ƛok��1	Ş0��c�/iӖ��S
���6	%R�*;�61�Ǎdž�ϰ��(l�y7e�u�TK�!�N_C3��"�|e]���
v	�XPZC�LH5���
�T,J��k���Q�"/`������K
���������/�7���P��i��V�����s&v�5j`�_�[w?E.�O�D����A�.Éa�`���E����?Iz}T*E���hZ:��:�pqv�H��=�HjD�]Ӌe�i��9�ٹ�>����/���0��g����H	X./�!B�zD6)���s�^oZp۸ϊ��-p�J��y^�)]$�~�Ki�iM�Bi�����
��	{�he�q�s�7�^���f�эȟ -�*�_
�^`��9� �Mt䣂y$H�y���5�������{$iT��뮰ށ	-`-%P�p�K+K�#ic��`�5v4<I��T��ͳ2�eY��{�͆��-r�Pb+?�"�/'����X(��*�۷��o��YJ�YˣI�CD�2�H�#��u�������:��i+G0L��Yf�o�ٶ�<܋���ˊ�l�ka�$~�H��c��|^��#H]?4I�����%��
�/J�$�f���Laןy��73�8U�>�1S�z��'|����O��㧜��aj�6�^bZ ���㯒���5�^��iP�hM\b���[�<5���6h�YuK�%���;�L�غ�a|œsx̺�Թ�|Do�'/3k]����y��>�q��Z�_������$��Y�{�'���s'�w�=��I`=i=9	�w��18
�/��w�2��Ӿ�$%��I��8���OSN�L�6�>Ӟ�3&�4b褺��?Ns?���{?-_�B(]@��$]�y��Ye�i>Wcxl0��8M<��~��Q���oB�҃�y�ԃ�}��V�#���DR���]��Y�H@�4�sr��D=
}�V�7�����FJ�f��k�D�����fn/fMl�k�X1���pa
�}O\8/�S���%ؽ#ݏ~"���rn�R��*4��g�g*��P�R��
�0���'��,z�+K�����\P�ti^>��x���
i���w6��.��;�G��m�G����
reyU~����se /��w��4���N(�x�O����!�=�ɝNK��5��ݖ��}=�.|��'զ��ƚl���>ؑo��K�O����l���-��sk��ܼ��} �
�3����&��.=^����hɹ�
y��y�hP�r�U)w@0tP�o�M�I��;~OVŮ�æ�G��1p���h�e�^}ig=��L�
���h�%�D&�@
c��58�2ic�cC��S�R����=)[���뜋���$T�A�k+2��")��%����t��K�Wc;��gx�Hs��H���+ց���ۆ�?#�����zq�,��GpOA>�"�w���'��1f��ڿ�?Yf�9'����1���;�G���P��V��p^I��`+��<It���L\~������Z)zw�^g$q�)8aB?�4����Y��%L����@���G,7�c',G6�RdI���:��?-�������m��DꞆ�2��	&�t z��8����D2���3�'~���·^ ��)߇�=g}��/N
���
�����tv^&��q�9#�'��p!�x|����-%�D���E�@�0P�P�< ��8W�4RU	,Z��<"�5�{��O��l����
H:b��R�w�	o��h"�����ڶbMH�0���$���DB����i����6�&��΁�oIwxN���~�W�@t_�\P�j, ��g4��u��ܜm�i5ջ#�FV�g��?�/enqI��>5��t�m���/�n��:ꌔs���Y�-�ýw�ޒ��,X}#�z�d3s�l�B�@�Dʙ{ehB}��H�0?���I~϶ѱ�y�$�`8F���d-=�^4:�
���|����>?��,+(�О���ןq���]�H�y�S̯0\O�/��~����:�_�U�^JDb�p����^G=�r9;�����˜XZY���3�kV!���[?IR�Oc�l=D=�k�O#�Qo� 0Ė�~���Ӻ��i{�8��Ql!�@E'0j��0��(A�'��0�2n]{�n�*�D����4 �*�R�r]�|J���b�6�)�aQ 0Jڄ?�[hi���Z�9��=m��d�]
�>�g <u!"$;�,(����0A�$���*;�34����oQdCsX2A7�����uuNƤ��7J�O���	��ΫB�*��L�Lc�r<E��0{�(�c�-��8r7o�L�4�#�Y�'8��4��Q�rZ��jCcX����/�ɛ�
G���s��Y�T��g�iyZ����iyZ�+I��ӂ���O�YV��������}�u�i��40�8 cZ}��w?������?�iϜ<&��NIL^{Z������$�q�1�ߧ]�:}�2����:E������+<lB��+��<�r��R��0��3iN��x�h�N�䢧P���
��<m�W��v��_VM����^�4�GJ�)O��x�^�(#2+��3�tc궚��	�{]I��_Y��S�/���zAڄ��d�%�iQ;���'�:)
�I�j;��}$Ý�R�n�u�*�b���aFu���BI桛� :�P�B�{�<���h^��(�s���A[n�d����Uo^>����@.{���)�M��+��;����ey�S���w{mY�tM
���Z^�?�(H>XX���-���5��/ɻ�}ye�\;����C�Z� 3�$�@ؼ�_�gϬ�776�۾'��%��~$�ԡ�3gA�� u\�۽�|i�)g�e�����RA{�&�=��R�6�퍏�Y;7�"��z$s�C�v�IҊH��8Կ13����4A1�k.zH�;�����C]�կ$�B�a�uL����>�
��7�!��=ͩ�!wu��3#��Y9`u�#~�
5<ɉQhBNe�偾h� A��{���SƓ����MQF�a�̏����И�� �a�1�,��*�/�y��3��0�9p$�8�����^V~)����rZ��89b��?n�O^r�;��Jzց�Α$=����[�幐V.����$=���oĹ;X�(Iz�/"ѡ��ޓ�p	�]aAs/�&+Ą{J�X�ɾ��aBF���V��>K�B�*`�B.1���`0Ă�3�maۑ�~���� �K6���<��:c�ED�$L���W	�u�;\��y�;1D�2���(�G�Oi=x����5��g߂��I��41�o	�ё�#NpK[O����p���,�gG��
���\�yKAo�$E*ss��l�6l�uP�,$��Ah<H�w���ߖO>�
��āM�-r4�Hʷ^^�[Zs^��|.��TD�o
$�z9�#q��qd�s��w̻�!��M�^�c����R�:6�X�[����h-༬.���~����y�BN�CC��3�/�&_=0�oLxa�"����5�<p��a_3gJ��$e�5�1B3�IK��]���G��[w!t|Ϸ���
x�2I�	��w�od��L���e��_z��ܾ}W[��;�`�pew�oh÷q�����&��7Ջ�B�qB��.;��ˑE��dK���]�ӎ�S��~�ϒ�n}��%���0��>�)�0kj�~rc��V>c�O2��ؖ�3J�:ţ� m���3��-i5���\.C���sI�i�Ϸn�z��k4�TZ��]�Iܻ�2��^��Ft-��s�{�2H$�G�؍3�9����kEJ-4i#�f����UI-�c
c�5�c�U���k%�1�7#���_�� � ���i���!��nٞA�c���2��ga����ĈW1X\�X#���=2Ć84�´����Nj��ȘR�5>����	f��f�t�k��G�e�O������&aw�7n}��n������qLv�����%���kB�IpF��ZCF�A�És�
�<�ϫd�z�iyZ����iyZN,Ψ�8aڱǑ$'ɵ��C�;�~|8�}����5�h�<v�2�̙v]�ݬkO0���3�̳�4�̳��i%y����g]�4e`4��g�˴s���e�u���zZ>?%h�K��I���q�x�0�.�x@#Q�X֘��|gFp�@c�@�i`D6�$�k]\�D"֘.�>�{��Fx���E�>��s�i8mM��z1?�PI�(��X���0���a��[27�Z�3TPh�h/�69r%+=�=C�g�U�����/�m	�R�d��<H��aZ.��\��\�0�nz$s�a�/U�a�.ס{^�hg`7�G�(�:8���-�IzM΂��Ξ��G(��(C����ý�}�b�
(��ruqC��}�L��!p�����`{o�@�@�n�-~Zݕ��)��e�T�G 4��O{
SHc˨ 7�e��;�忹�@��~VZ[䇻{�b����� ���E$�c����;�B�"w�}ЭI8UXa�7*0��B�|�����y
�dy��1*���급����X!�f��1���P�	��&�"��$�$���9c#��"��p����]%�U�!���8
�8�g�W�`�;u��}���H3�X�:D�.PY���37��^��e"C��4���Fq61:�0G�8�Da� �F���&.�}T�
W���|yT�K �
�#�Q[�s�4���2)k|���s���%���{%с��}��3��˻�r����C[�3=;x�D�#����_��w��%}rC�M.�"�0����{`*�W�b=&��"����[�ư�c������ΫA����%,�8�����
��z$f�$I��N��䙘��t��y.����b�ɳy4<��<� 4s(pq�{7Ix�I̝5y���hdL�ds��I�	��6��iK��}{_φ�r�^Z���P��w���$E7x���o=S\�(!c��%�ʐ4C1�C��?�ֻ����;��[oK���$:��D����X+v���{�OM�jǍz��� �r|��WJ`
G�Cf*+���%�M��	s�K���vz#��p[��֗6�$����n�'�¦+Y����rY�$���ζ�j
���ŌDV�M���t{I�"E�DRGs��Je^�&b�����΃;r���4jCY�\�gN���csSJ���V��l�:��_b��+��Ṵ�r݅3Aq\a�E%�L~v�i�P]�Lt�t���1�mM_輐��A���;�S�^i9�)��}CO
O
G�/��&M"z�S�a`����v��t��{&^���yQc7��V-%-�gqyE�U��09y���o��|/�a�x
���^ו4֠��k�#��ffǗ�G##:�z�2���D�n�&*�F�;��"�����"ִu��sX�0NGp|%wB�<�k��P	Q��\{!��K�k�=CY���S�l��쟄�-"�<�{Ў��0����~�(�3lbV߂�:�ĵ��.a_�D�D�g�^�E�I�H�$N�g?sSw�\q2kOC���~Ec/�I�e�y	v����Gq�m�&H��զ����r���%����K�	��a
�1��� 8梘"zZ����iyZ���%i<0����g�ݧU��]�4�d]NK,L+��I��8p=J�Ӏ���{�I�aڽ�*�כ|��g8���1������kM>ìz��ӈ�IRfZ_�T����B=-��mݖ��mMX�R�#e�YbK�k��2|O�F�RFŎ^�W�eu��������oM��,9�)S���U��	��}�1/�0B!�0�b��S���f4�|��1)��Z��~@=hh�A]�o��]����}_�*W�홡//��r�e��p�(�|F��iY��qԓu�OA8 E�*e��s��8����pW�e�`U��M�'��e���n�!�.,�s�P�L��9��`�F8�R�o]?/���w���*p�z�-?�����>��=q��&�8A���I��ρ�v�<mtx�Ɩx�>:��aCI��Ԝ����]���p[=�{A_����������S��mF!ɥ��F����ul�x
8$��.F!	�mZ�,�!�ُ�����(��x�Ev�XL�c����u]��8|��2Q'�'��)
'��o�0%y<1MO�q���+��k$	�JӋ�mE�����J��o"b�lZ�K��P��:���7���^�Uyƫ�ޓ�$�cOs�QD�1�c�xz�0OG�Mu?���g�8���0
�Cd�ybVV%�M?��N�"����Ϻ�O��4�E:yC���ȕ'swл�yu�<���У������ć^ڒ�Ã��p^".�:���

i�6��gCZ�a�t�0�o���<��#2I��)��T��!�C��R@�3�X6;z�����H &��4��0�.���:���Lp�%�?��g�	�b,ryo&�V&�z]x18�)�ɜ��xm8o�7=��'+�<�� iD�$Y�g�"K�ݢq;j#��G�lN��[��f�.ꑧ� 	��I�^(0�H���+L��Pom�O��<|����0績q�M�3�	�g�M���Q`�PC����<^	]�Sq_8ʴ��Q�r.i>`�;M�YJZ
�fc,9��,�4��Oo�\nI2���q�c#�굢
��]%��J�����RLz�Ÿ�Ѱ�v��g<���x�P���5<#��h{�/��ĄI)�s�P��ܾ0Λ���2�.ۙ�.�A��;��)Ȉ�:V���f��Q�k0ԅ�zX�N�=K}オI�-��I��7c�I<�l(<ހ�f��-���B���_�5
�42d��&cB	PߏĄ|�1����o�
r�^a��A�͗�-�I����)Z^F�-��_./����:W�&i���
��o${39���:�0оO��9��Ǻ�D�:���<Ւ�=���P�Y��E=R�f#�>��j�L�/���Y�H������H��*�گ!��ĸn@h��f_r�D�=G��|��#O�Ę��<Gp˘c
���&';�zq�m���(���ބ�0n�(:z���i�7�5�=)xD�Y�112m��E\�-[bU�$��-Y#bUhLeD�ߎ<�bn�\{��h=c`�|0�wC{��b^��[�˜��⒑r@�;�7?񟖧�iyZ���rei�K�;�T�����sR��������s0���u&��Yu�EZ8�dPsR�NۮǑ�H��9��2�m���g9n�`���f��`��x}Z��%:G"@���}��8���#-�7�hH+�G	�Eu!O
2���Cߡ�r=��1��0���/�ܮ���Ba�%F,^!ւ>���x�MBO)߰2�j.��1�b.Z�W���Hh�4LR��M����(נ�.�~��V�J��<��r���Ɩ��J�,�M��
q�LAn�j�V�ڈƾ�~������;�Cy4h�ߘ�9hK�b܆^!��D��n��M�P\���5����5��̉Io��{����`I�Bg&�Fc
Ix�s���"�Mvp�}���73ǫ�	�#��hx���@�����9m&�Θ����*^@��ίF2�K)hDjz�xJ&(��;�w#�"p�,#�+K{&�7	��<k����"���7G�3�g4����h�320���!FG,D1��`
��ciL�ss��&҈.���&����q1�4ԑ�N�-����T�b5�7�@��fxq�D�p��y�¿���S�ѓM���|3��sC�=��jFdi>'�E�t8I6u�<��ie�$�7��'?;�̺�9;�'VM�LX��һ�����ӳ������s��Gt�8���f+�X��1dǑ�2��
e��5r�&��
�$ba�U���<��s�l��Ȓ$n�u�7�{��Iteb�_߷	�=e���څ�2ɮ�!b�h>{�p0�?'9I��z���쎄�q�CA�c�r�*$e�"�;�9�d�̐�(�J�Fc�mo�\�O��^(|�GC7�Ͱ���}�a�\���׋!��a��a�N�ʪ�mIϤ�l�5⳱qE�_�e
F�����ӛ��ǟj�l&�2@���!�B%,�����4Q;�����J��~�ɛ5/�p�\��Fa��Pb��1��͟�q�Fc��2h߬��t����bX�"do�P>�}G�.��Ba^���%YZ^�|	�)H�הZ�*̉�S��F�Cp���#u�l��2?W�^���kV;�C,J{�H�9{^��9Z�
P�Ǝ�����;���\8sI�c��jB%MĎ9��c���M�A�x�S�u��$����yj��yn�ޑn\@m�r�h�C�Pb��V�mIMR-�\r�q�_|Ћ�֣�
�_D᝹F��&w�i_����\��y��/6����=��� ���2>�@=DH�xJb���E��yRiz��ZփDo��	c��
��*)�q.3�^9F����Nl�?y��hڭ�y�q���ρ�zd��'aoC"���+c�O#'p��&p��zٜ&���`lMހc���8x�ęn�$#M��D�]�d��"z���	=�]<�a�n�Ŗ]w-��>�6PI��yqX�#�~d~w�����8b]!"I�ɼ�3�� @#V���99��
82U\:?
���K^!цO��4�ʶ���D���_�1ϥ����ڵ$�!����/J�I�%>e<����iyZ���P&A��ȋ����H�Y�Ŭ�M�	��?��q@�$1	����I^k�>�'�9Y�;g���׬k'�st�q�~?�N2y���6�ܧ�ߴr��|�
�$��E���S���,3�q��g�,��p����mnQZT�f�p0X#�J��1TL^X�02􃚊i�iD$ank`�0��q�za�h�Ƹʳ,
�=P55�uJ�p�dN鱚��]����0V]h!~& _����<��j��%�Ec�J.+g*%FY�|
��ǽ���G���nG~�_�kx eF���Gm�=o [lg�d�IP����t{���\x��4�-�%�a��z&0(9�a0q���^��|�mț�<��"�{iO:�H
iO�j��̑�h��~HY]�^i���ӗ�.����{П��i~��BC��9vhЂQg$�!�@�\��Ah�S��8�y�� �-�ME19=y_Ś3F���#-<�7L(�a�L�z���~�%\+�c��D&脄�!�4T�1T
�%0�f#��9�xO5$<t쳽qM
D4�,�)v�ص�sf��74�f{j��-a.�P
8���)1Mz+1��Ak�b�k�l+���=+��2���C���#�)�K�R�h�aXk1�yM�����r��$�g%�*��Y����f\j�=zxx�l��1I|	eE��~��$_�o��T*i�W���؈�ئ�gsux�.]ra�<�J��V�	g���#GG3�gc���q�V�ń�2��M��:���I��M<�� �K̭�"�| h��@��4ِU#G���X; |/f����uJC����>mn���c���E���ņ������'���Xj�Խ��c�����ϋ�5<+P�}m΍Ȇ��sl{�݌ո	F`�^��(ꊐ��Z���U�z���G�+S�E`dMn]�����λrX�j8*�Z4��S��2me	�ʄ�J���3�&���4����9���*H�L��1���e��
2b(���F�o9�<+���H���-���r�x(�Q_ퟗťe̍9!][�g���eaqmܓ��Ϋ9��t:F��m�aX.v�Da}�E��;�J(���Y��7o(?��ɝۇ89/g6Ίn/i���0���,,��ʒtAJP����dt��(W*1���ab'ұ�:�\3nLp�l�<+���P�ݲ�q��ȏ-9��_~qȹ|!K�?�|.��&2!�8b����LDns9Rք�K�A�V����(�r ߆a ���I=��:^2�3.�#cy�c�zxi$U�΢�8`��FK����̡�Z4�1qaƄolj��	�1�-���[yr���؄z�E~*RBҧDA��dA=��luns1��>�1�T��P�$��f��T�{x }�% �~W63}���}z �4����p�A����mA���5ˆ�����=�%��m��VG�#�����b�ő�n��$Ht�0�z��	B�����w���'Kfł��9� ���|:Z�'�n��Ȳ���3�ɑk�`��d����8��7���H�9O��zZ����iyZ���J8H���Y��I�1
�u�Y��4�f�i��l���ǵ�q�,�d��:��yR_�ߒםV���8	M��g�y��[����o'�ѓ���]O������	�9�1^`Š�s�ᨀ�E<��#y�����!zh�>��-�/���%�L���Ё5��a'�
�y�
*�����>�!������?�kx�N9��]|�ᘚ���Gc�����?�PF̢;2���i\�����#�?�Kh�+�Na��@q̗�Y�[m_~c��o�r�ˠ�9����hX�jA��|�ސ��'r�3��9)����T"`�s�g�v;TCh�rf�/QL�
}�N�+s��^�RE�3lj8�������.�{�['S�݌'����T�.���	�_�M"͢���S	0�ﯡ��9J�zRd���z1��r.'9�$E���d�cE�'
�N���/��R�q$�*�ˊ�)A�K��[�������q<
�����m�����(���1���F�fT�nH/�����J�M荣�h�*0Kj�iF��L.R�J4N'�P
i�d�m%$>����)%8�IW0G(�<&��G!��a�z�ћ��pX?�	�bn�	��B�%�h>�h��G��&:�)�y�g�˵�/�����_�<(�?L���TWΔ${�:X�e��K�2������'��v�{?�T�u�������A2Å�rd�
q����Gd�ax�#�A���l6��yx$s
�Z�82�� >������<zx8/��)J����o�M���x�6��gI��jUe�؃�`��bb䛼��D}�
a�p��et�%`�z�Ÿ4q��qhH�爑8ԏ�6V��"/;����.A0�O@H�CB�bI'-�Yx� �]��IV�˫�C�k<G�a�mg�����I4�X�#�DI��`�'e7$ښ���H��;���� R����Y�a4N��α!v�C�t����ȍ[�uQV`ݶ�ؾ4ĆY�tqQ�#k�c��M�c�t���
W��͟aOI �͵�p�����M^K��8��ljz�}���AN���]�í}yk�̟)��2�\\)c3�>�v�)����1@$��U�xnS�!
zR,��&��luL�%�o�XF�bAZ,in�c�Z6�RX�Cy�{C���o˧om�po$ϞQ�+X���ؘ�*�%�Z�I祽���a��,s�A� ���$�f��N��P<�^K�����x��8�x��<�B�ȴ�M��&5�
k�Ŧ�ɾ����̽h��NA[ߎ_�gjr&�O�X��i��Y�"w�����ŷ�~�@ʱ͵�`���)��
 ���b���o�q���Pt�אn��B1�󤈹O��Sґ}o�����pAڵ@�����ٴ�����7��B&��:�gDA��@N�*ؘ1��ͺ�XO
	QJ�����6f(COIv�;�B��6�з Jb_d�%S"To� ,�K)P!��RW��\__�"�R��;���k��.��NE=�#M�����@��5�Ic<��7�u��c%�K
�X�tM{)���!U�O�����oC^�z��)1��5�S�
�K��yX,i���$��M2=3z�+l$^�âiڭ������T<c"��UipfH�j��.���Pˣ������'��4�%L$�1e��1	d��p|�8�,1�1���9"Y�'mwL�d6��	�ȶ�!5l�4�n<N<C�EfΥ�i`�O1g
׷�[p{]��84�|!
��O?}W�6����cy��@~�٫����K/~��M<�G�|,�<�">�D�t��O�q���]���,-̓�ױ�Ϊ��qtk��V��bŌ�v7��xo>-�3����?�b�c�e�W�EF�TN)�k�ev��#i�I���3kk����Ə�k_�%��3��M���S��s���^��,���#N�"��"䅽7D��\��5��]���>�Nc�ʀ�o��C�`�Ȕ����W+Ϙ��ڣ�
�D��L(ņ�
M�鐳{a��H&Y��q��'���C���3賵bA�~�`���WJL�N/��ʠ�@��l.-���7��U>���<-�e�5�4��ieң ��,Paֽ'�iD�q�M�o���1��M;~�>�zӞ+��y��DG�G�L��:&1�Y�I�K�k�9��p�z%�,�:�q������.�P�2��e��U��!��S���F�_�.�
S�4Z�A1�˔��� ���LJY�d�M�y&:��� 8^�Κ�K�i:� �^��-��A�VJ�� Z������ܲ�ʇ��\
�1(Ny�X��<4s)�5�s�Pu�4������u�KAF.��\s9���\^rsY�s���n�"p���o��0//�J2.&��\.T�tS~��#>0��AR��@И�!��z������<@˽�=�_?l��^ �����!@?%�HU ���ơ�"���LD⛄����_,8��0�d�4C�����鹑F�fG�������|g`'�ψ^>��}��g�x�ְ`>R,����Mv�{|����7�`���R&L�x�����ZOCf��P/fT�g�zf�F��m��h���Չ,2ZMO�z=����ۄR1�Y�z��{�5��H�$�=���H�E�ᲀ����ؼ��1�4�Fl����F���x8ԺZ��h�Ƨ��ʚV����zAQ�8d"���X������b6��B(Ϭ��>t��TG��$*�>�<�;��Ћs�N۳������K���#'���7$:U��j*�a�-.����������m�r��BYٰV�#6@rh(+zvX/�8a�+��p9<"q�ʸQ4�Z�x֓#��aI��g¢��m��BV��Q�PG��LxO�wg�>p�WV-eϵ`O�<�`9��N�$�WM��������}���	I���*��Sr!4.�,�^�wJ�xB�b�b���ڎ)��=:KZ�E+�ۜ��r2hH$\��3�t��;�즆���v�(�'>�5��ʇ~@���z�h��s���&���vJ��鑵���x����,��<?����h�Ņ�z����ӥN�( f]-}C����w�B�h��H*�9���ɽOw��C9�g9�,sKe��06'��"C����ڮY<O��Vo�4��4�T&%�ڡ�H���F�A.%YY�s��M�?���*�NM�|��ʽGgq��3����M��h��'Ɇh�
@o�TV/�t�f�m^n
�3̗�(��W����NO�+F�5 �C{���g�B�7�0�r�C��K���(��2����YK��g�)S�q���bj��^sM
�#KLf���wS��JN��I<�~f�|���C�S�3�(8��$�g=RMb��$���k�3��[�!r��s��j�� 4.y��"f��Ղ�s��]d��؁�2�gݐ#;�3ma�_���=����!
�ޤ�\>+�n�ɹrA
�C	1_
QOGc��#�H�l=jbn�u�/���)���CH����y��eymQ�s�����?{�eY����9כ��GddF��򮝺խ�C#4 �Z0�Xo�@��,Xo���a%��[R�muWU�ˬ�J�ό��s��{�{Oܼ�Y�tI]���Y�ƹ���>����f������}�V	�Т6t���X&�ř�zv��d�ǒ�v(�����FȺG��7=ô��gw&a�Ȱ3��Xk��h��9������%e���6�h�ţU�[{G�{���R��F��T�� f���mؼ��ތ1%��~kb���c7�F�Ph�6�9���2�@wO��\c�o�@��.޾���&qo}��W��y��'���Q���ޚ�ųO�^�����=�����Q��O|._y���M�7�&�8&�
ѽt�ܖ9��e��m����~�=}��y~TZ�\��%�6�����ƭ�������
byQ�e]X��sObg�z�e
�q}iwS8{���+����;�s�CJ�
������q�����g�ۿ�[�����W��|���}��@s�]"luc	��L�a}kc'039��׵�&-�\��e��sO�K_���gq��+(����+���\���E��n���}�(._�5��
�;u�o���A/�y��?�z��d���BN~��߅�
+MYt�~��1\����gCO,��テ���6�5��+�۟��1b�.߼���'`�ÒȜ4px�琌�Q�u.��|7@9ji� @�[����߭�n`~�����h��ȈN"���xtb�;��n�y�@����9�i��T��3��H�<��=������#Ĩ"ź`1���-*2L*MV����ě�{چ�`���%!J����j���m�
]c��k�c)OO�4C=�uF��U�����4w�\[ݯFP�s�3���((aC�5���b>��i�5�2�cx-Wd�����X#�g@�(Hݽ�ry���?9y>!h����7N
�I��`E���ygRB��UĄ 
��[/c"7���X�F�E�]
�X��8�@Q���;���yL��}����A,5��*�v�BRY��}�)%�*�f�0�%ծ��C%�*rpO����m�p��_&��[��=��$��j��"C��=X�'e��|��!�%"�V���

���j��vb
��/4�6�1�N
>��g�w
1����.=�{Pp���eb6��!�J B��T�"�!��G1DFʤ(�4аŦ���	5���yS���&7*�6{``qޘ�5Cc��F�]O[U{-l��
�[bO�CQ�NƠ�{B���8>*��`Cpi{_.��$���Ib<�+��:*�82�O��4�+o����>f�ٛ:��=l��Gv�-݌����C�A�Ub�[��HMZ��;CH����?�G�%;��#�N���d�e�O�A�CH��].҃�\���aJ<�Ƶ�[�I�Y4LR<���w���A�ʂ��YD�|,���V
2�Z*-dDʸI�Mh���I�m��o���%��%�_��Y�1H\X'CFkνd���x��5��y>�I=B���I�]h.ze$m�/z���8ϩ؄��]��0�|)�`	����h�$1ᱚ-�L�Z.fe
M����Wp]0z���Ĥ]�P��Z�\xM���m�Yy���Gr��.�K�������CT1����?�+����i�!?x2!4C�s�k�)(�5��I.��7�ʗ_í;�bk��\�!LzM�L�JXL���ҙ3T�%2�`���͘�/��-�bl|��,
�9���;&㯠P�,	A�����%|��
wom�,�Ӳh��A����iV����ٯJ{�Q�
��ˑ��MS���r��E�jExB�0�!��l�cJ?1M�D�f݄)��긼�<C~ɛ��D6����xM����lhe��jtz�w	��/6,�K$�4�?c����?瑆B#�)��9��$�Q�Ytb��l�A��.
�X�+9>�;��&��)�r��F+26*D9��L��T\��4"�čթ۰aá�s�bK���&�p#B�iQ�=�	dC�iB.�"f�2��C��$���8>yf�
y�{
�wVd��ا���1j*16j:��z]�����j��c�'��lZ؄�W(D�s��gp����)!J�dB\:5����sO`�/'�C��1�C�S�ѷ�!�W����y��+����/E-�£T�qX{�Î�V��6 �P�;*2�Idv�#ۭQ}��:n]�a��G>R��n�k�:IF۟���8��Z��-�
=+46v�%��0I4&�@~h�\F��	�Z��	h�`=>{��تdqf(�;�^��p~��?��~�����@i��1�hL���������,����'\~�2�Vp���6�d*⵷���l��R�_��_���4�z��J���o����U�9���X^�������C�A\�5�w�_�">��g0<2��k�bug��=�4p�m����x��!�3)�_U����ށ����!��/���
|��_�o�����۸���y�I;^}�-�!E��s^�,&'G�ٗ��r#��bV���-LL�S��~���[�
��on��7�㗿�+��:���xE�&�O�۟��!���+��p�}�U���Ͻ�r�ffN*S*�GH�\�W�qϜ=��~A��p��_��a���_ĝ���K�����\��<���%��������8;w_��r��e���[X�/�Q��)�{U7��n x�����Vw���o�n�����8��\w�n`K�>���κ�<������qY�y~g�Ѻ;��n�� ��A S�g��!�T���G�]�j�^U*i��Ÿ�@��}�5k�Qʳ��bv�ͥkuO�
Zeu;cd�4
��>.oF���c��]i��h�ߘ��q_hR����}�7I���W >)�Jy�e�Fh�4�[�9HXGL#%xJ���*]���xÉ4���ᒏ�UL�)�J��8#=Ȍ
l?�FП–��_���^��S��Tzí"�y)��OU7Df��ri[�m!��|����`24���(Q����M\����v��ת%���u|6QŦ��
uȦ��_��\SѰ�16���0�f�R�fX�M��Pt�D,��@S�-f�OC��_i־/u2�:CjQ�mX�6�8�ĺ�L<.����0��qz'��h�Hq%(�����=ˁ�^�˱Z�0�G`qa_�IH���Bgz�$����iy<�d&�>$ݘӓJu�;��f(5�VciτIb���J�i����u�gQ����
I� f@���Q����g�w�LS�϶[�+�`��
&�b~ˣ)��F��pZ��4M(s��W��y!�>^
�Ѳ�B�X[��%Όdef�lX�X������8�~����g��ҁ̃��~/��o�1����v��d��{(~�qr%9��#8=2HR�[���C�<Hzг�zw(��
�x�u���a���C�ېV�Vλ����޳���v��ȃG��I�=�����S����Z��^DhB�V����Ȧ�8"(�0X1���[�LW��<�:��G����苌G��ɘ�u�z�D�WOM�Դ�GS�k�=9�y$�8�6��q�8�L1����]MCL��0dF�:?��e�V�E7��
�G�&�f4�
4ٲͱR�{w�o	��.ҽ�(诉�e#M�&�b�6��q�P4�Ϻ�5��g4��G�a�}�v!6��"�B��(��ɐ���iiҞ��f��;WamA��o���S�4���(��Ã���&sH�3�$��EV�˸6�FLj����f����#��yP���
�}�5|�W>���+�������ATv�=Ap;�%�^�`o��aɥ-I_S�]������j��-�8s��)
�]ِ�V����
�ӓG�*p�wK8>C$�"�V6���!<�O�̏S8I(���5E��"|�B��P�`�&c6�M3l(�B!�9j���B���䘗�:$oa�n�jҫʸ���B&'s����j��|�kn
�i�B��[�Xt�f�*���P@���7�y���Z�a`���W����P�XM��<��K"m�j�Z5в��ެ�&��'ka��M�xPFU�X"P��I��L�/�!�<N�"INOu�ե�S�aO�7D
�}I��A�A��	F;�31�#��1�\\���e��TN���X����5*4„�2!����g��ζ(l��##"� ���NV���΃���<J\�𖇉�'ls��Z����a��#�w�]��tkrغ����GmyG�m?��ң5E����-���	�k����z1�6Č�㸐��Jۻ�8��A����m�������4.��o~��]�;q-3���O!7T���/�O�uϯ6��?1��SU�[^O��tS#����t]_}�5\=����K;H�M�g�`��&�G0�ׯ�
6�أ���n��ŵ�_�'_|Q�}!�016.JY�޻�O~�;��7��$�w6��tF�nΌ_��Tn_[Q��z����	3��H��*V�� �������$J�Є�	�v�M�M�ڕe�ϼ��O�����ge�x]��G2llx�7������W���
}ybe������)��M�~�2�I@�:2.��#{Ǡ�f��s2On��կKN����v�t�ۼ�
A���g��Obb�4�C�/���9�ݼ*r��Ƥ�^��{W[�A�P@��S'�WC�!4��ϥ��x���D��z����.�[7p�t?��f��^	�h�dJg�t���^�h��H����;���7z�n���Sǽ��}��;��=tz�3׶G�_(��,�Ɯ�_A��"zOFt��W+x
��/~
�!��l��L�^τX�FE�H+���eh
���Ԉ"ěmp��
�+4��_m��%�كm8`�4[k�P�m��
=�#X�d��\%�Yy��BF��s�F�%p�,aph�$�[^?��z���U|<6���\I�:�1r�3������=��)|�R�o��ï����ΏNai{We�^��j@T�a�|�-�n尌d6�������"H}UȄ�g�9�M4�$�s"G6W�Nc��1�
M@m!&ܯ�*�E7f(�C�c�{/�5$z�yB�|�&$���%�y
F�
z{x6=�Pe8w�
�II�2�3T_�8"�@�ubn�$��sW=z
�pV>
��Z�
�-�n�u�+�y[z��Q�P��zXxz�o<1<�+c1^e��F���ggt��/`�!b�$!��m��ZM����ɼ#5;B;Ν��	��F���燯!ƚ�a�#���P�&2r�A���V�p��ct�{�9f�(fl5�06>�dN�I��3J%���~��;(��`NH�b
�ӹ�}���/���=ZǃH��󏓍�+qw�x�:�TG������`���!DG'�d��#=�;�\�4!���zw�����P@8E��ފ��i8��Hq��k������o
M�i�ɖm"r�UaȂ�r� c<H|�˵�E.�-�V�D�K `���E�J�@�nl�z6��9I�
K��t�D���k&ޛV�|f���v&������s�~�'L+���&��t�g=���c���I�=�8]�J�.$
]P�H�y@�l�Nek�M�%I6����`S���j���˄�R?��kR����	aHM�H����>6�c�T��E�ĭ��aJ���ƅx ��u��z6x:*�dR7��9rFO\��{o�[G5�e|�.���'?*�[��y֬���	Te#�(��q�	�mu!hu�_�ȸ��� �������׾�~�3����wP�prp�M���(����F�P�b��U�weU����o����?!ʰ���x��(����'��*ఐT��P*�ԋ�zPF:��#)D�22-�B��z��Дrmm_��������ƃO��M0��ahh���K�o��M��ZoԴ����R����ȜJ��3kb`���)���h���
{!݉C���Z]B���M�#㩔�qJ�iX-Ch�����JBj�R"��I���0�cD�՝3�RO1z�)���y�ț� �`cr�TFs(�mD&�g�FY��8�9�+m����H^�6&ʓ|Ό�M�T����R��G��F���Ut���c�ʺ�a8=����ؖfZ�{,�!�d2�p*똰A�\FH����y!�D�����4��H�����_!�r�|��&�S�lr�?�x���#F�F�w!��6���s︑c��(K�88%4����"T�}�a��ӏ�������m:�"״����9�~-�?G-���k�T�ȗhMJ:��C����z��X!��j�>�u��J�&m���d�����8>�B�!�>�����
ff�a4�-X]��lv�f�u�������_CZ�O~�@�_ǫW�D*ۏ����p�����EF�����*^�r��q�?sg�AR�7)<*.M�e�����|	㳗��麖H��[^x�����{m�a5��F�W��Z�ܳ��'�x�����_�p�S$�\��$�x�%y�I|�G?
����n^���{��"��Ǟ�
!���rl	9�f�gg/���x�����,�����ۗ���
q
'gO�����b�֏?��y�cw��yLO���k_�G��.��Ư��D�?����������5=���}�����^��'�ƑK�d���'>�!,oobD�a8�w7w�g>��ӗ�𵯢��㢜�b�o�ۗ�§?������g��H?����Q��@A�|=@v�5���y�A �qC7P�[NDɅny6�?@�F��
�'T�����nw�h��V�g�l�m���q彜��}u�O�~y�u\u~מG�Y�Z+`h�P�pI
hM�%��ڐ
M�L�ѓ�o�X赴�6��·Z�Se�a��!�7����y�LN*�$�\�Ga���0��w��+��4_uR��@����g��Xē��Ѹn��B5�3�fE��|j C�@
a>.�i���~�����o�������	5���(�7V�c�M$}��ޕr/��DO?]�Ö�S�^$�[ҿu�gs�i۾|~yu�Y����B�_
YU��Iͷ�Є�U6���%�XkT��C|��aB-1&;R#�;c���̡�*B�����4`�x�	LkRq�a5ډ^��a�
�OȽ�Ҟ=��r��b��ޏ��.s�h�
M&��Y4��9�DE��
c�eQ�s�QWN��<Qb�9C�|$H��r�*#��2l�h�J�}^����ރ9PYꚴ�3���=�4�F�Ͽ�0��-�7bx��I�O'���X1jK��H~}lR�j	<-m����K;�3	�{E��w+$��t�@�Q�RQ��Ͽv��XG����\O��	����������]��:����=�M��!�v���������`a�$7��K:><<�$���`5��8��aWZ��ꌒ����(	%;�t�K\�y�R��2�K�f���
dB�~.�nsw`�|�a<b
��z�7�?�Xo��I����\m�!�q���X+w�os��^�1~��Q�p@m�%h��R�����0U%��C:�;)`^�\����J��D�"XJ�
�`�a	Z�%����� ,`h�A��L,B��]$�{����n���e��pתQ�3z
AȄ&p���
�ƹ��!wL�L�횃"f,��{m���s���+A3�0��"��ջ�&$�H�1q�q=C�p�Kh�e�w��C��˂y��T�^��e��\�Z��Ӳ���D5�0��d�-z��f�)�����h,��~�⮀�%`w��'ڷ���쀎9���HB�Y|s%��5=��[�xy�uوgggc�1���Y!��Y!ys�Y"$�����>�n&pb���RFUښ�	S<֯"BYvչ�iٜbؕ1�*����]�}w�AO� J��Ve3�ɽO�o ��ɫ����"�"nt�W:�s�3�SY�����b>laơ���H�e2i=��[:��ϩdFc�s�S�.J�ּ��	��.�����v�v�p�C�Hd{DP��Jk|ֆn�%GA�^!;rB�ř�^ZL
.�`O�Σ�%��V��m����aL�$K�9N˒��p5��N�����~rt�<&{{4�gLsy@����ѡ�J�����u�B�H/7zx�vτ�c����2j�l��2�+l��A��R����df�sH{UHa�:�E���3��a$'B�h?�Ke\]]������� uMD�g�ՈI�H�ZŬ��v��=�-�9O��F`|G@�ִ�i�
M�]W�*%��V]�*ҭ^�����ftR�}�~FY����b
��WqߡB�+�c��FzDC����\k��VS&3�^�M�kjr7�G��2�B26> :�z`���|�>�����K�����1��{2�db8q�)�t����@~�ُ�:����K�#��B�Teo:/������S���e���
%�P։��'1w"��{�<�<<���p�����Z�q��y��O����$�?��}跘g��s��.] �'�f�vN���TΣ�X����t������`��01<%D
�O-t�#g瞂ufW#����.��������|��<���w~�[U�����$3������w}��]�^�1��d@M�[��l,��Q}��'�rv�02	�����|�|���16~N�%Jef�;����.݀�n��q��ǎ#DXt~��ǁݎu�Ng�$+ޫ� �����p@�
�q�p�o������t���ۃ�w�"�:��a�A����?*߼�{�>�B�^�f�tb2ܚbFNT٘āU��P,..�r�a��V��('�A�bv��Q7]��8eu����
Yer10�H�b��1��c�f��#G)���^=(9YU�`~����4t�"[
��S��	d�	��^�'�0��X��q3�I�Θ@ s:���m�g/���]<��m�^7�mQDj�;�q�����Bb�9k�AKq��j�GK4���B��&�:4�$1'߀��ɳ��W�)kl�}�!�Hި�
��n��F"J����P�-Fـy
�@�R!�C+V���t[H"��֠X���gdJ�?OJ��b�%`B6k>
���Q�Va&p�ٌٙ�9A�1Bsr��f���/k�Ԅbuϊ>0!�8a���*J������~V�1c#�qH2D�1�o������6�'�4/
�$(w�L44���@C^i�}���'Nш&bP#0^��l�V>N
���^њٟ�!�R�"z�����a�l�Ƞ/(#�I�W0�|O�>iKO=���<3�Ý�m|��y,n�X6�'D��mj���BT%Z��Z�;����=�AD�+�n�#�;�䝅o�o�%+gq6�Gh����1�=<�I҃D�i�����1���!�,�`����G��'���{B~hC'&&<~�x���=��%�1�۝h�[e�8Y]bX�o�����6��iuA�C�����������}�zg�s"�(���}aJ�&�V�3���i��nဓB��I�ի�^�`��eJ��z-��fCv�A��Q*��v�/y-�C�'�T�LN�j��"-x�1jN�L��(��H&4�F�z���t>�}�v44H ZM��K˸=?��GC-�
yA�Q��ƪ��p��{��@OͅύF��d�K����#+���L=�l"f��x�G�?2�
*��&o#l��!B�4uS
Ձ3.X�Z�7�s�e�Kc��e�ʷѼ��0�C�$pi^֦&b�4�]{Id{4GH*%l�暾O�H�|������Y+
�G������P~��]CX+#Y	�O� 4uu�
Tvsr�R���B�M5Wo�az���22�}����q�4��kn���E��C6�#���b��՛X?8��,�B��oiyO\�$BG��uU!��N��SO=�{�wp���/�7 ;����n@���q�o��ޡd�O]*00&&sL�|��)�f:���b� n�̥!c�ɸ��IЃ"l��㸏���<�׏��R����>�:��M
3rm.��
���s[$�YMt_o�>U+e���˼@&HW:�w�F5�g
��˦T�	U83��i���*)�������q���֍ ���?�{A%&��!鏺Z����^c^MBF�9����9E�M�N֒�L�d���	x2�M�X��u��@V�
[���#�¶H��H�K���?���}�]Yǖ �dZׄ�ob�V�����5��CV�����q��#��*t��o��%v�o+�ѱFۑ��]�m)��R�絈�#lH���:nfwj�3���TK��cZ�*�;
h�WaDN��rf��x�cƣ ��A%)�@�W�Z?�>��[�k��cE?"�����l=3���G]�f.|�]Y5P���|<ʎ�^��E۳���@��U����g?���y÷}��	��a��.گܳ��4��Mg
��'�׮.h��#Ъ]t�ǵϏ���P�V�?�Y�~1[G�#־nmtW{�5�y^tJE�(�:cъt0�3�jɣ���Q���N��Sn�ߠ�{(8�ٶn�;	�n�w���ș�y/�a�=�M���:�y���Bj�����z��m�7.Vgg��������>*�B&����HqT0��,�Q>4T�'$>�N9th���$xD
VW����K=1<�;#����k�����(���V̄ȂIZz�⟟M+��h��XM[\C���F��E�w�g�mB��&��	}L�#/��0#3]'�\E<����荂A�ɾ����P������=��	e�<1��m�n��
�a[H���l�z��=#B>TU��
�rW�xPi��@��R��� B��z����u�Ei�T�*���x��
q��k6�����-[2�dU1�[���K�'=[R�I\^�`o���4�S64����ˆz��QJT&kO�O�FM=6طj���L6O��i�I�	f@҂8a\�H̻���Sd��!��Y\����8�����0a�XgO<�����*W���b"�U��ъ�������4J�L_�ð�7��ȉpN��8�+����� (���#6��76���b�T�5g��@�p�.x[�°��jQ��#��I�ʧ�K�����a\�9į]����;B�%��c8Mc�:J�@C^���ĕ�}8~o=N.8���w�۹*��
��-�zx���%>Գ���H~8�zx��$>��I��qpp�0Wj]�bI����O��&/'�q����� �O��î?�6�V�XlN��&LJ<ku��0l �;�u��Z���h�K ����&٩����Q%?�2�i�(�h=7<�&b�5�IH�[�'��S�E2�}+��0��ݠ y��VA5�G����L%u�+��hXM�k�/	`M���sH��W�wzt�5�,�&AM_��,�K��lN-��R<,j�+R�zk�!�n���꺺�1�w�錆�*�
�o'��#�6�pӒ>�K��Y��k�uυ�ٴ!�b�<,���7*%�s��8���CL���(���dB73�ze�;;:��g.b��hn�@�`���H4-�)�P�M�/?H�PA�ܔ;������@J#-$H(�	c=��~T��_e����aaG������5|���1��{X[�'�0snq��g��8��9��2�RYy'�G�^�ք��>���޹z[c:z�	|�/ct�/��a�����9,ahb�LL��	�_o_�tq�2w��(�G�o_}�U�m.a�,��b�ƨ⛽|s6��%���'1y��^�����cyGH,���k���z�%ä�1��q�=B
��I�uG�k,�YK����TBqX�w"��9�����T���ʜ��I�GBz�	O\�bNց�AY-豔���IW��f+w^�7	��(�ZC�#��pq8�F�f&j��N�� gei%D��3«�㺦���}27Kk�H0i"��TU�7�j�A�!Z_0�W(�`3��u�wx��!�;�-�$S"FI'�M18�@C}q
����j�{�
rj�O��޸1�]&M�ż��|IpD-u�araҳ#�
��N�lp��(�`x+(XRLy����k�&t����#u�P�׺."� J^�["��~��G�UP�Ӳ|�&�a�߼#�e��k�"��j�i�}g��4�5W
���@�GA�3}�|��piΦc���-���7�8O;
n������G�Q��W <�d`9�y�y��3z���ݮ�F�Aݞ�����=�9��Ӎ$�����q���wn�u�wQ���~	�Y�qm|/�U'9�m̸~��Q�`�9������?-�I�n����|�����$5'n
e����޾��Ɣ����
��mBk��B�Q_�^��Z7y���Wݚ�A�M>��ܦ1j%L��=���c��*5�	8���!�D}�$8�	�a�K�k`�q�3����ZRX(��3�n`u����Y�\�HK��}����<�O/.⻦�0�2�Mz��*1���v\�ҽ"�	��/�Ǧ���E�-5Pۦ�	�%ā�fc1_ɀ���b1��1c�DR�B�Jt^
mI'd���7z.	��M���~Q�-ȫ`����L(l�	Nz�!�S��ֽ�&�fX(�`U�BFP�y)h�N}�6Ԡ�!'�S���
��u�mƆ�'�-�������qp<JJM2������Q^|�aB� ~���$*����)ڤ�K�D6���x
>�{��ѧ�q*1aBOŬy
IX\X�`�������6�4�Oh�,3&}�9��	�+���Q��)�POaN�y���>;�:v��`B�	ԗ��g�S%��no�޺�My���<&'�%�X,��ao��;��颇� ���n2C�s;�����wۋ��u���T:"���$6����K�y;ܹ.��#8���Ӌ&/g��C����	C\	�!:��*d�r�=55�߅�#=�!0.@|hZ�2�]2i�X�H]�BD<LH+��$���%8��lpHAo�Ga,�aA}I1�CP�h�Y�m��%6�n��	P���	���dB2xF�kإ���L�&K'3���%$�)��vu��T���…�r9<�m��/l�Z��"�O$H\�p�Bi�$2��7H���l.�r�P��dI�TDI��kuuQc��XZ\ƕ��1yjI�v��IY��V�H�o.G���
�$dB֧iI/�nM���}O1����5�lք�e{���Iٸyn�QQ��X"�K-(3LZN��>�S����-���qX�J�����,��ғH��
@f·�#=�@%eceC$�S�Ǘ>��b|DƍL!��c(яRVH)a��^I��IQ��pw~�1�o��,m�e�{�ʤSd��y$�_땢�o��!�,�������ݒ��
#c(��cmk�H�����T.��csf,��ȿ,��-�88��ɂ&������L���Q,c����ۯ��2s�4�!��\W�mhj�̥=g
�|����SYg��� �Hh1z逡�D�Z_�RQH��C�ƌ+�{Hx�e���ǂ^�Z��B3�=	���\��&��"�H�z:�5dT\�cl�J�^Hi�%$lZ@`~z.��":�BϺ��Qڦ�>�`�éZ2;P�C�z�2������ �aF֕�\WS�&0�A�*���W�5&;<&B����� �맳�h54J9�n�Y�4�F"���}#�
ɵ�sd͡�oŽ�G�#���ơ†3tĂE�s�vBaJ�մ[�EAȫ��a�t�2{�K
���h[�M�fI�e��F��{J�|�o^�t^ ]CTwޑ�-?�������{��w�H;;��е��hu]�y�=3��=���'�GO����]$a�XY���G1$+�.�(LgQ��G8Ư[y�A#g��|E@zT���t��~;��GԈ�8`�������?��n��7����{!F�M��Ѝl@��|н;��[{D t�n�=�D꼦�;�vM���q}yY�^�����C=*�W�':s�֛��\���MnB���~�9%jrZ���ӢS	�`27��C`��؉z��$�"��\�4̰E$K|C�PoJћ��J��˂fÂ�4G��!C�U%Pܨ��ɛj�7&:��z/��8%�K��#]�@0�}�f�Y��«+xI�t���fG1\�'�������{R8,�p�^�]�/��)�����<����e���Z	}�f��K��zFO7%�\|\z��h���0U4��~g����!���I�^�{�s�^
4�
lO�|�
�>MX���<5��hXd��8ں��&?��9UB!J�!�����|�ۺ��D垧!���L��q�����A��D�1I�y}&��`���l2��h���!D�a�N[cq�3i�{РY	6���*|���l��R��K�Q�F���;b�������31	���ڋ�7��C5��ig
���#/
��t��akIH��&�|ʧ�;��pok�=l63R�E�L��^��_�r�w0-��Oa<�ƽ�=,�����r��vW5|w%�gIR����۾�mo�z�����͕VH��d��7G@�
.w�#9���x����IW�g��<�����sj����BnxLZ�O�����g�����w�po��0P����"�!B���h'�6 ���Y�����
���*��w�G^�$�}��Ca�XA�h�{G-\X+	 "�AO
�+�IG�>nb�5-Od-#�X����>��N�ϡ��lJ��\�ޫ�}@����M�y��d���u�Ϻ���FA"���v�98x���C�=*J�l�.�]l�욶��w��R�wI����#>�qy<��[36x=��|*G�ӷ
�ڕ&����޾�~�qS-1�@��>�=�3���W��in�O��¬����Ʀ�P��<)���Dv|M�Ț���6�L�ac}=�C�!
��[�w���Wq���{k����q@��j�Cy;�d���,�ƒ�>�7�,d��59!*r�)٬�:�+�{2n���S_�&LpCXߕ�C!6���v�L����y,������_�<n߾�}��W�ԥ��I{֫��>�����}s���	D!�X:lb�\�n���qL�������K�e����7}�`��(5�bو֟�zT�,�A��c6'��.C��&ƹ�+���g�X�kI_�ju�^6��-!R���+de��L^&f��Z]�u�SO��$c\O�iI�b�*%k�zZ��m��Et��5lR7����l��-������0߆��4롗��o��dSO��#���RO3%k�P?[BԔd6��ۃ�W�t���e��29xC�ezPj���hr7#��T{
c�
n�xv`;�H�=��)��_F�vrh��ֱ[c�~`!�X��:gY�1Z!d���#�Ůq�@�玡�vB�s�E$x��t|���+��
m��*t΄����!��b�=1�x�����c�ؽ��>�����:vN�Ő�Iz�(�SX����zT�G�QyT~�J�`�$$�Ǣ׸��c�@󃀀n��{�=Tg���;�����+�߭�0|p���B�t{�n� ��w�)j���֎n�<����;��v���{q�|p��dDc�%z\�b�<�f5�bV�v��I&N�N}M�j���,�v�n�Kؚ�A�HA�T.U��@7MH��4msљ��*��$��,���&<�X�^����`)/V�(���ù�����t*��D
�l�'_���Aߚ“�,z��9dȣ��j���TƬ�&Y��&�Y/��a:7��vo�lf@��-T�
c������iC�'�?�7D�
�c1P�!"9�P�����
�b�ΰ��tZt�P�<�+���5$jBjH�Мjګ��M�y�@==�B��]q��я<���:S"0jc�#^�:�J2��M͟���Zɻ��GU�7��� ��N��Hh�-OI�`Y���1��J���pU����*
;�Y�Б�R�	�(��q�6��6��it������M����
�Wر��24�K}�99�^Ĝy��nߐL:B�C2�k!�ms
|��ų#��P�$��O!כB�W�3b43���}��iy�^zk	��_DR����$8�`Up�f3�9�l�oo��\�I�OzxI�U�q���?�h�=�ۺ����5#�p���5�wX�u�`�rV䒖��w���"t��"�<��O��Oh��a�x���G�Y�~�<Jt�wz}�.����p߅���FGG�Vl���L8&�`�f���bq���-�͐/��\Z��F30��&�m�B�Lh\:���$7/���1װzÖ�;��f�6�X�]�0˺
��j^
�6�uC`N�K������<��䍺]�ag̻D�$��}�fN&�	����r���ibpzK�_�U�ۄ�
ԕJz\�7�W:!�(�������c[��]�BdD$9����E���]����6�\���*A�^S0�^��ZC��*֕܈)�Az�x1�:Fkq���&�5mƆ�8���x�j������!�H��r9�Ξ��k��	�H�U�ID��h�����4���=чd��W*j�F�会��p��"C�R5I���M�����.�qE@��>��6�Rw�)�'�ż����mN�*$K,���~�(h��F���7ًRe��e{�����\SȐ�lvvw��7eiuYȓ�<k/r=���kH	����!<��yX��'�P��Kx�7�cJ���q�?{��ؗ����x�e�n�����#�abx���(	s�xoww7��és�01=!�/�;�<��aI���-�ي�z��p{����t��M��l#�zƹ�4+Pς�g�.�p��z{��dغ:ҙ�zWq%�P���'�+�s\�>I��uY���-�y
��^�zZ�{z�Lf5
mA�&q�`򒨐H�P�o�gQk���r]H�ʁZ'�$��a>�^6T8e�M�
b2{�ہ�3Ŋ�\h(��yu���d"]�H�ҭYTP����G�=z�-�)(I���BM�I�e����]�p�>����s��IVN¶��f3&��Z�PŽϑ�i|��x* �J�4D8��‰I�ycu�Lb���KӐ��tM��� �p����(�B.��=�gz����R*��0B+xG�/2B�[	[t�i�%7<C�i��V]��zh�E滥P<��k�đ)sD�Ǒ�u�t:I��?z�F}`�.�������)�Jp���	�{ZJ����!��浒ث�����k�0��&4�9;"��d�Ⱦ�g�,��g�y3&?�yy�Zn�T�
OO�F���BY���PT%��)��,��V��J�Kd�=��P�7�3*4�g\�߯�m������G�)��yV��׵�
��J��!�m��V��K�ڱ��jg�jۧ|~����u%:h(���)�z�y֎�>1���5�
��u,����U	���ǿL�g3&�zBkȘ�eZ�������o�������ӌs���F�6O��^	�hƐ��c6���jj+爬���w!�b�A�����fD{�!��z������DG��If�3�i`�-ެ釭�"
lx���&d B����:m>v[�gm��)�t�[=������o�5"k:��n�v#/�]�y����۵���l�q$Ã�5zm��ٞNЧ�Ӎ�8������:��V�]����6w��a��|@��1����s�ټf�sµZ}��
.�BC�o�w�}ܷ�S���q�h�o��u؎^��f+,U�W;��|�3��#� ��^d6���s�Ñ�WJt�~�u�,$�hS�3��pLp����`J9_s%TcI|��&�۝E��}|��	���⡖Kc�7��<���w��^����u<��ci{K���v�q(J��@��/���N�&},��^�1O���~�i$�hH|bxL04UB�Ƚ�����0��L�$��q%
��Rg�&7�I�������	��pQ
z�4��P֤GB��g��+JnA�g�~CA�����Є�.[����	�C%|����D��ou
?eBe_Pi��,	�p�4#@4�P�"��K�F�D��V�'��*t\�{�J��.wu�UB5v3�ƍ4J��jN���gùٱoeWM� }&}���9ڒ���ƺ �>Y.�b8
����Ts����=
r߬�8+=����XH
�s����U�7kxL��'�y�W�/�{䒨�a�Q�?]��_��QIK?0O�<����}]��qW:��n�t���g����#
�E����,�q$��3XHX�w���PV$8Ht8�W���yy�D�w���'���9x�.�?��!�B�@�9/�Y �(b|�`�%MZB41�M������~�����I3	l	ځ�?�f�P%^;^�
閈���  �zi~[Տ
:���g0�FLx-���L�м)��J��¥aM��X�M�uAKje Iz0I��|vZ{7m�s%&k����)��z��|��呌��%ʰ2W��>��C�нL�`�5L=]�b�0�)��0�b������ٱ���}U��5,c��RI=O�ָa&L�c2��^��3߅q #��x��nd��D�N��w&`v���Ę��q�&hW�x��h�Y	y��cE+9�G����Fp���KR���82~R�SM�{�*�└�顲���=o�d3��f[^��|���!�MM�s�O֬J��n(�lW���z�L�%�аTto[��Bϐ���~=�ܜ�ȏ&q�~=}�+��Sd��2��[��Z��=j���`/�l
�X
�yne<wf�5<?3��'O#W���6����&}y�/����y6=>���A�,�X��ŝ�
L<}=��H��.$NHO"�uc�6���݈�ݒ�X��<��w�}�m�!x�`��_�1T4	�L�dq����'d��e���E����ɋjMj����V`F�Z�'�3�H���g��x
�%��`�6Qj�XK4���p,���J�ҋ��y�"\x
��9&�
UY�G"����f�ڊ�����b��K���(0Q3�V�����EpZ�xq!T�#Y�`�B��gA̘�sqY?�Ro3�¡u���f0M��`��X��Z/ѳ�M�I�h4I��|Ön���3Ilq��X��I��
6��ћ:�B�S�1�5�Q2����n�6���Fp�%X�!tkhd8:�1Jb��f>2N�cxଭ���ƣr�p$)�yF�� ^�yL��(�r_	�t�,�>�%�<�7�Z��Á�da$dB�թ��93)�{ͯ��,�5�Vn`~��Ѿ	L�ҫ�Z=��yt�'��|UT�l�4��9�iRΐcK�������yE$��<CM�N��ʛf<)�T2BüY�JǴ���4�;ʞ����
��p�3s�6aI�Y+�1}��6����6V��M޻&���~m[��C#r���۩�<CP��qmeKa`zdD���Lx4��v�{5�cbp@-ʡ
�71�ll�r��g��#X�SO[��=ZÒ(����ֺҚ�.qӄMP�A�ACW愎!8��*p&_��͢$kW���xO
�|{��V�KK���3˳�L�@�)�R��u�[\���8��!vEy��m��5�IC�i*�N�A��]5I�"��LݣJ����dO[]���R}���lTgMʩ�c@���M~��iHB�|��6&uS�K6�po���4 $�B��
�ӵ�&��� �FA�F�N��:u��Lj�%<.Aß�t��ke,��xrjRI-%1�}��70u�y��+f��s����8����"��'P�]%}�lV�
�
�S[�8�q,a�CVd�����y^>k�{-�,�w+�s:������s���A�z��|��:D�t���u�Wg���_\{�{�n�w�nuw;�;��n��Ǒ<��w��Y�;ύ���lsg�&�<�Ԉ����|�c��<X�.ǰ�0���!l�;��Gн�54u��⡓؝Hn��*���Q��LZ���qo�5?���X�!����S�<L�	�YgC����c�"C<[��9ٛFE�Ng�_UP�g���!���}}�����
lo�� >�[@������O�p��F�/
>�/{�f&�o�º<D��k^�Iٵ�"� 	�T����`:�z�(xJ]I���U��п5@�S�װa��54w�:z�e'�P]�W0�����h)�4��&�V�o�i�g�iJZ���e���.�T����%H��nT��<�!���Ӫ9� o`�ZXW�!��	;�6�>MtMs���"��o^���l�i���7	�4~�c5
S��ᕠ��dc���O_m�?Oە�v0����1#���u����J�]�:a�q�lZ���aN�4��$v0DG��3/����%H��H�"��Þ��N���Q�Wr2R�7THd\��.�����5!̲x\𔤌�DE�b�CN��׼
���wq�^:�j�n��C��yd�{'�&�t;n�PyAo��0������`�* B0�xr���V֣C���XzzzZ-t�;��}'i�<��C����<;Xfgg]��`cGGGUF'�A�Ä��&�;�+�<
�)&����W|��qb؄�
5-�Ak^�m�o�sV�S�\�����aC�#pP�%�wU�%L�
��c��)�L&�Z�b�]4�.v�͕�{+	��o0`�d�-����¢D�gr��;ݴju5?�m�&qoy���,�W�߬�B�0�}�X}j�s�m��Tx�մ^4�����2gݴ>���ǝ��XY^U���!���,Cs����~1�E*��dB��%,7�L�nR�`��N,f4Yz���28����z����빚��DiZO �â�̄��
����	�6t���:?��`�t�\/=C��dE�Fia
=�=F�"^HsE�:�h�WQj
��?���~����!
v���Euc�h
|Q�Wo�A�`_��Y����=�l>'�qL@�QT���{
z��"4���WB n��ko�����Y������~������"�x��Sȍ�bg����-TV0+`J\H��Dg�p]��ߺ�յmL��:<6�Q�w�ƻ��	����2�*B�ե_�7��7:���~���%��b�C�}���)<*/���y֚&f�P���i&(�`�c,9��jz5��`�܏�ui�h�z&t=?(�V�,��������!�PW��3V��B�h�0�W����O������/�[�WXT�UpnƳ2�L��������]�FX�Z��Y�����
~O�G�x{Ȝ�e�p���l�e8�"G7}MN�އ.���AQ2�E��cֶ@�3��Y׸V��!�zjv���O�S&��*n���>r�Qv��:�6��xh���������YT��1�K�ѰZF�C��E��*
�'�a��zf��ǀ��	��)B��k��Սh�N8���1-����7s��s(�Y�W��|/^��lqu7����q����&DZ)��aqOH�~������.n޾�A�ÂZS��C�L�b��7n��*����;��d{�d?ۆ_�D��'��p��u����/d|Q��^QtD��a� ĸ��w���A	#��gm�K�V�(�˘�>�>�_o][�f�Ob}ﮆn,n��xR��W���Gyow�� m��?��%u�8����Q���<�<2�nܼ+D��''e�\��,+k����2yK�$�ؕ��x/.����Ә�U>�Pd�|Ϡ�)\��1'Ƨ����|�%%��s{aQd�ҽØ2c}m	���P9�!k�����dq}��|�06='D�=]�Ijd}��r&pJ���2zi&(�Ɓ��3,r���9Q��}�����{������"|y��ҡ(�5!4.b�'�[�������9l�Ȣ%��AY�-%��
{F��5,�,�04�ݭu�����)��r/ȳ��<_�}�R��9�ٖH˘l쪕Za�$��H��lc�Byu@��q�쳘��Uh�q��+r�$z�!�~�M!����#s%%�I
ýil`�@��� �Y�`[��~ٛKE��*!f�>�s�ֻo�"�?"}�!��L��������s��B�|��IBɶ&u�ΠV��C� ;$�
x��M5��owgU��A쭭�K4q�ܳHȻ�~놌�
̌Mc}wK���]6*�>���a6�]���f&O`us[ڱ-��i,��`q��&���|g�d\��
#�z��m�I��OȚ���(�{���I;r#���p�򾾹�}��a�F'��	�w�T�q�����,GXt�G��h�o�G�w׹z��3J���ĝD�k���l6��0��;Iwmg}�{v�n@P�l����ߑ�g<�8�Fnt>�qr�q툾�n�t\���X�ǝ��Q�`&y�0�a''X^S�؈�aA]ń��x� ���0Y�#��uY�C�A���džk�3��@2y�
{e�K��p�nA�g�������a4��R�Ǔ"��}pB��B���X�aK0���ݐ����-|F�Ԕ�迫0��@@rR��ԃ�-o�3�O�J�MRhUڷQ�b��OH�8���c�ޝ�C��fh���	C.51&�o��iRmj]�6m�^�����\�J,%���Kr�ԃ�a�RO��>I�a�,P]�nU�0�[>�<{Q�m�&+|�$�J�#J����x(V+�E]�Ix��0��1!�ox�CO��+Q��&D`�5:c�y_$rҾM�����+4����0�@�RIZΥ�U`�36�%bti�KKf]q�d�8X��z��D��ͷ�Cz:l��f�[҃����̓�z������SAy�G{DV�M��;�F��P��"���G��\��͛�w�Rj�d�{"쉞� �xKd���V6�x]ꭈ�B��y���d����� �A�>���c�[���z���s�;no�v~�x�QΊ_-��E�v0��e��(�aCSy����QO��=tI�+����BY�gH��e~~>�W��ksy��!?It,//3qy�9<\�υ/n��)�)��~L\~Ԓ„\b|Xw"&�%	�a�ZK��,8v84Vr���\���6������Ƒ�����&���	lM�a��[���z�8�O��{'l���А,�w��5>=�)�`
�r������nvb��\SA�dܳq�M�o.ε��0�[���^&r~�R�?��,��YD��޺}e��	��s�=F�l����>	�b�b�_�x�{��&��;�2�i��K^�0I�dvA_�>�$�|���R��<�w�G��M
�8%�� ��S�w�|F�*����|!/�L�n�GQ��L�����Ɔ�qM��&�P�V��ϫw0ڗ��bok	�\��͒(��E�E�0A���
;���8�7W��*�7W��w4%
�;�P�ʽR9Q����_���I�3(��YQd!eƄ�ɡ(
m�k�n�W�b堁�jkՆqM��t��z�H
@���%u� ��ɽ�&���">��WP�D�r�A�H�����֎n1y��������Y�+H-H��R�MzKUL>Z-xI��pdC�u�!�[��m+]�T� ����*Hz���-Z�o׹�a\��݌I2jBr
u�/e�' �g�{��]�F�Cc���5"��]54���Ӱ�pt��8G��)�^x����[hW'�zF���7�Xk��d[4�����7A�6
qk��ɭ��߶�=��`�8B)\W�
xH!��}���j-+D��I����Ł�0�P�dXٶYp��<-�}��Q!±u��v!°���-�yG��H�a�?9BB�~���e<tz��?��SW�o�����!���֩�+MǤ%�L$������jXPL����p?���ML�L`|0��W��1: �뾎�R���ve�.���b��]������殀�2oz����0V����M�%�7h��3���Wn��'Ӌ�ӗ���78/�\.�~��ylll����`w{�"��.�cb$�'OM��چ�y�sL����WP��&!��윲Ϯa��X����5�e�ת�9��ɱq�eX�7��!{��65D�e ��7���k���T.=��o��5!�����h|�4v�n��A��?�g1���=!�����x��w�m��u�ʍ;��`_䄄�WU!��������g��	��%��W�0�?�A�MF�sx��k8y�Y,ݽ���,�VP]�,���B���6�RHVvq��7��xFT�X�XV���bg�_�c
{"W�/��Wg'Gquc�=�����@Wo\���dd�e>��g���_ǩ'�/rLU����
0�����B�m�f�Ñ�L����BfȞ�&�^�����D;K"3�c0��w;���E��q�~�@��
�{;H6+(�N#��<�ų�ɚ_ǵ�w��e/�=R�=�Q�o�x��E�o���}!�����ذ�>Úc�pI��wd��wQZ��[x���H�x<�}[2�sƜ9����k�f�"���*�g]���S簿����B"�
�;���{E1. /"��we-�	�ȫlP:��O>�k�/cRH�Rua���"�'}��"ϝy^��]50`p��	!-W�lyӄ����mZH�wE��<���'������[FA���7s����q�w��YGg9�0���^�
w�[���`�$���N��]��"�:#�=���y%8Y�����6�s\[ݹݞ���]�~�N�P[�<��@g]�~��N�Aĉ;?z,ږn׹�8⨓����q�^I�h;���Q��Ϊ���&�	�C��T�UY�<��w�3�s1��VC�!B�
��a��'-��q����հ+�W���ܲ���'u�ec���	��NĂlnD�ZI�� @�i!,�+�p^p�S�ό��f�T�/�qo�������|+"3����t�C5��2R��Ƈ��y{Y��:v�H����]Qd��
��u��Ro��Qc���4��ʨLN�;.CG��z�2<S�&��Ip��
��	�����7M����h"F0)7�9�WK�b	M%2���"�^�u�=�=�'�SO�}&��y���gU�z.��|�ZQS��C�C�5��	K����bB��4Ӑ��;6�2���c��(,6��!���#���4b�9���1τ@����(<n�R�H7`<D�h�.+�)�o�X�@��!��M��S9ޚ���T
�q�<��߇�p�,zN�ҋ�����|@�9�G����a|`��9rm��/�}�W�0O�[�mH_0]�<߉�!,�5�&Xܮ��3;�����%����qy7
EC��|����]x���ޮ��s:�zX=����hH+(�cn����K�	F��+�$?\���#t��YGH+����`slގP=fCZ=A 8n,q�"J�~������!��� q�P�7���pL��³
�;�&�vH�Ɯ�g�`�OH0o�2����m�� ܧ4I��&������������	�S���{��tɋ	�:��`&􀺔q��E�-�f
17�I��H�ɍBĂ�jhH��&�u�fӶ���)iϯ	������E���e�Bb&����!L�,[��>��`�b�$�\F@�9M�m002)*�Q������>2f��|%���eCP�H_21�cS�Xx�����'������᳽C�V�"�?O���}�ri��Qއ'�@�M�q�w�F^�����؈�Ś�3�HJ{Ο���tG��k�2nd�����~��|P�a��{(��ְ^S�#H�������	f�DQ�}Q�����T~�޹����w�V�޼���z�b<+�e�j;R�����(�䓏���
��e�^�v��93���%sI��v�L�b��ڮ<)�08�8��� ����vN7�9_�|��^�u�)��/$�n�B<��Τ托���?��+�Q�7���3N���~?lY��Œ�њ���&���m2/]w<��&v�x �_>���E-g<��+§���R#�Q�U�,:��pc�N��ժ�L�Oh.G8x.���8��j�y^+���[����b��*jb���	=糢s�A�f�"����۹I��ܐ�P6$=ם�����ܒ2�����������'�3z��0.��NFap!_���~wd��%eȜ��n{wK>��s�{����Q��H��&���6�����x�d�*�t��yhs-h���"
����	S�g����،w�#��Ϫ��\�y1�s��(P\�5�ʢ��bq�������A�t�!�8w���p��-��!-�T\@�ެB�z���(`j���YI\<5!��E�
���28<��F'�GpC���I!�j����ѱ3ڛ�b�q�-̌� '��H����ʸ���C��ȧ{p��I�Ke�Y��yTھ-{�"z
�z^<!�T�rd�=}���1֛���8��	y�X,��Jˢ<�ԇD>��+���c���I�k�ϋ�*�/�i$�&5d��2
�'�~��^y���2"��[]�����=�8n/�EQ���S'qwaC㨈�8�1i����-!��PNDŽ$΢���,7�7.DA��C�ٸ'2�Ƅ�<��{�TY%.��,`�����y�2�fϠ*$�n
#'�"�j4s�u���Fz���cr�澐3�(�3��~"����r9&��a���~����j����H61.�~��A>�Ɯ�X����=�d�Q��Lt�{�U��쇱�|�tNd�~}_C�=J�CQ���F��@E^�|k�ccxߊ(��'�����w�������aܹ;/{\}���b����k�&0*����71)}A}��'��RL��(Ҳ?���
awC��<c;u鋍:z��u��hQT�~�q�NN���Ϊ��&N�4�W�g�n��B�DN��5YiN�rR�ǘ_��c"�	)���r
�Lr���{x[��Q3�}�ۤ���°�/��$Ev�y���ݬ��%s��[Z����Oɸ�5D�Ô(��d�#c"c�\�L�#d�ȣ��X�B����9�Q���b'��ʃ�fW�quv^�h:�v���ğ��Y���_��F�������ɟ�I��?��������?�������?��O����~-�P�ZF���_�E����������w�.F�P]�s��~��\������?���Y���_�_�+����~�;�/�B���?�'��5����/��(���z��o�
�ğ���'?��|��~��SY���������_�+����3�������}'4����boo�\�g���_���ƞ��%%kH��?���O��?i��>�g�7̍���fff���Ͽ�7���/���~�~_��� ��2��٪�7�?�~���{����ƖCCC��?�?�G��b
Q��W�u����`���^��H��C���q�ù!�>k��=C�("fu�����p�|̙gr�ڰWp�w��&��`W4����dtӾ��v��Zy9!/m�6pN��{q&��=Q�͉��bX��]уW������X�Y0-����X^�B���#x=�b���
���/�]RȜ@C9�5o��C�pl���{l�(�0Uёه��W5 f_�Ҫ�����}� ���B�y5�
�6��i�Y��d��\0af5G1A� ��ś��%՛���M���^�x9C������^o<���_U<��!u�`mU�e�zs��bi"+F�BCk��at��i"����PU���l��w^�z���(�N+�Ҭk�U�bf��`��1�f�LË�-=W�
��*��XӐgz���w�$]30y��9�b$����Tg�-�l ��l#�g�I������-4t�BDrij1�f��1��kem�}���wp��=��l��/����X��O`w(��Z��
E���n�-��~��֗����=���'�H�Ev~��mm��w;��c��#+�;ލ��F��i"�Y��xij�?�� �Ar�zh��k��#	�[��p�Iv0��l��͛7C�������)��?%?\8+�l.������|�ЯOƆW�OC[����Y+�6�A������ySdEX/�|)^ųće�ua�	˝ ᄉ����ogy�O֣ �i<���h�2
�<܄[RǜZ2�	-�E�轠��I��=�d��Dƛ99��<�0K�/N��I^�V�$K,��p
�&6�f,�i<A�2��
c%�k8&�zVP*m{8����@�ڥ�Ul��ɘ�E�*ޏ��飘�<Nb'�J��L6��7brmE�q|�LOci�k�!�t�i�\#�z�	/�E&�.�6dZ�z�p���$j΂�z�L����/��x:�q�5�,R��B�m�jB���u|�Ko����a2���;oa��S������Q��>�E|$=*
eV��@�b<���Dqc	�rO���ǁ�kG�䭽}9o�<��c_y�z�0{
{;{�qG
&'O�5�.�}����K�~,����`��[X�hbI�!G��2��q���;8��x�1ِ?�ܳX]^��*.<�<i���(�y٨d�gAF�o����aMK;�bqyM�Q�ءA&|gN�yT�[�¾�
_��
�l�Z�PVM��y)��+#B[��ֵ��
M���)������2�֊)"�&�2y���aQ����!��m�%�z��J(�Vd~�5LT>G^&�����<ς�X�j�5�.�٠s�MU̧�0!��6�l楶L�k���u���<��y@ނ	��4����._�o��
[G����n��D��N��	]�����^լ�5&-C���c[U��z-����mx��f�;�u���8Qa�h(0߾_D�|G�GG��=��Y"����C^����G)����SY�Ңug�E�x�Ύ���G�F�l~���<�i�zm�%R��y�s�Tl(���.{���)����̩�U���s��X�P��|q����b�Jp��%:�k�A�S�u!?9yR��L#��d
�}D4�sg{(���W�b�S�(J��ar�D��!�?%���wԥ���gF
j�E�/�a2�/��&g��}5�@�\���V����vN�q�g��S�0/�A<�X������E��S㘡�YQ��$R���(���x_�����~m�	�̞7��?���؂(�
�Z��3�*�PB�oP�2�����Dz*�LNL�d����C��3oDs�qy���V�p�~�S���O^��ڐ���%p��9������5OEC�
��199&�d�7�R̬g*��784�9���
��2)��L.%��Qc��x��'59'����.�є&ĤJ952��#!}r&��=�7���E�r����3Ok�zR^�0hr(��YH2
	Y04���	�j�M���:������l��!�|̎���-s ��À�K�ߐ�d�wP�#�C��/�̞�y@Y}h�$8�hq�>g�)�OO�AĂ휔��(�a(�ѱS�}��Nct2h�0�
O�8�3�='�y\ڠ�����?
��ސ����^�&�9���Ը�x�y=�;�!����:�w�saэT9���k�k��|�s�NKGw�aT�λ��>
Ҟ{�9կ^��W^yE�x�$;H\����JH\�pA�%�����
�/�E%~��X�>�;wN���g>�$ȿ����<����������w���$MX�N�$D^x��y=��Ų�����?���^�.]�g�h���� �ݿ�wȋ�F��z�/��/(���$\�}y=���ް�(��={V��3\�|Y���]��3��1�Ϗ|�#-���$dدW�\��'���o�Y����p�Q���Z�ݼ�����{qM��o��o���ь�����#�s\u�<�6;�ͣ�pO�1t���T�b��M�˷a�Q�X�G_�tվ4�nR
T]r�GjXc�4��E�kx�3�R=T+���4�J�`Bl-��A+i��(y��,�������j
D>�H�x��=������ԙ
��D~�kװ-X���|o�06�
�m��>���l��}��W_�P_s�3H��_��g2Z�uы��W���i��&6��h��s��.�q��3p��i�_�4<���( QB�#�'��`Ί00Q�j�,��L��#���]&���0����}C"�Zj3H��-^�3�g	M�f��&VV���Q��3ɸ�����Y��7���3ax�Z�U&����4�rj0�[2�3c���&�H�}�'r�O��^Hf`:�
�B���0��ѷ^;�?����=����@��l"�xJ��En+n8^i�EX/�S�i�1��7�ACH���`�B@x"i�T�����M�Y����w1���#����\B�3]G�x?n�|�����kҗ%��:|�����yy�`�7c�l
�R*bR0�u�4�-�	n�!��c:���<�����9:�N�F_sxDoNR������VLb�
�Z�pV�CY��V��&0o�ﰹ;Z�p�H�7�Wl�r]��θ�����^�%zm�
�m�4�1�1(��6<QӲ��I�sy/b�{C�ÀHM3A����@<ъ	��

�S�Y;����+�tC
-3���z�hb�1�|+��xLa�T,鱘%[�Ӄ������8C�$I<�TP�Y��]��:�Xr�j(�Sb�Ü���X�I�+�({ʤ���j!��$���D��L��8��?z�(� JTY@}]|ٯҮ[���2d�#�x�_�8"A‡��1C��#^&��oݺ� �>ړ��$tH��;AS�s��|��LZ���n����BF@�1!	>��S8=�ByD�{�c��
��|�,�r6����{�Q���;���Sϟ��C�B���<�u4��Iߏb����'���m"/@F@���{omW&M'N���M6	���a'�=���=|��o`tpO�?�ɡal�Г����̩w�&S�_	�c�ϧ`��Bn������+`���w��������f�	��	�O���8�����sO#74�_���dm��MbO� z�28��i����𰻽��`dtDC�
��h6�_��e�k{Ϡ����ُ`�ֱҸsj�.ó,�|�	��.*f�b�sN��ؖ]�R�����(;�B���<���s8v�r���z��N=٬x������#�Ե-��U
}������*��o�Z��Q���p�G5�q��:[�W�74�p�
*e�k.��K�k73���KY�6/n���<,ѐ
n�ph��_�� ���0B"�Տ
�0�
��na�}wэ�#��u��S`�ÓP�|�V3	פ��q�BE�<
a�g�Ш&.+�\55ξ�"Zڄ���^*a+�	��0�d`c����ŋ�9��t�~w��bl_:�H��q�
�������,a�m���D�T���4[��ڹŇG��0b��%�Vx�:�*SF.�c��t��J��q��g�M����=^�������<Gҝ���gZ����n��ֳ��;�۵�Au�\~��A?e��%[U�O�o�o�{�#�=o����Gε��Zg�'O��W1�'�G���E!KF~����^�b���Yzf<f��Տ��251s�=;#�j;Z��_��=r�.�_&�N����޸}�~���F�*6�8�I�1Cs$��2s�Wޟ���\��Xd�%"�o��h�{�S�k��9�X��ӑ��c�'���6���o�i�ѷ�t�h�4u�=�}_�[)�Y����/�Z��8>T�o�r�r�~봰���֖�wރ�v%����AO~R���ë�����=A0�;��;��p��K��o����?�'8��z#У�峟��zgл��~��L~M������[�o�y$#��;]��?�;	z�����199yD�#�BR������'�����~�y~�G~D�8\��7z�\�~]�aHnP�%yB���_��r�V�N�?�ߵ�u�Tr�����~�oӿ]T�?�g��^C∤q��o���FR��	������aa+�6���dGT�=n<<"A~���fH-٩�xƸ��_.L�oU��o�aCD��Pր��N��<�mo����u
S��2Z
T����&��C%ex,#-&�B�ǥz�d�;�Jb�O~,cOp���}�������m��;��ӈ�5:�Ѫ�{�j4�?9��E罱����c8��Ǘ�V�ka����I5��溸�dn��d?ш�DM?�J�n�@��Ƌд��z�
��fU
k%s1fH��z���#Tb��:<
'*&�����f�+yJb���R���ͼpI�˞�C�o�/�!	5z��Hz&WrS�W�JG�Y(���Z��{���F��\�~_	,f�h�mo�ߙ�!��a%�|Z9Fs����&��H=^`�{-����w����)�A/=I��LJ��4���s��C��}8o����JM�ʅGs!�t��af����zD�?-D�c!^@��L=�{_�C���|�H��	!/zp�������5�M��^��m���u�H��s���	���qج`E��߽���_��'bJƝ�ʂ2V~a�.��3O [���Z���&�	�)�w��x���E�ΰ�ǝ�sջ߸�۹"7��8���w#V��Æ�:"�����Br�Brx�O��D�w�-nrOh������H|LMM��ᶒ�Cս�|B\y�4� ���9P�-�ш1�7����
1f�W{�˃�}�ٓZ�W�Q��d�55
�M����p�@��K1Kn�$�7�[''c�z�Ppq� l��F),ѻ"f�v|��_�@��ؖ=-�U�=%DL�b�QZX��
�	5���Ғ��S�ZWָ!���~Q��%M^^��[}AG�2���K��{��uB 1�׎%���I����~�`���@�d�!�$��`�&�>�O"-OX��`��KY��7���g�
!U=�"@O2+Ϸ�LOAȎa,߼�����o�P6�|:��~xCYz�;ϒ��孡tﺐ[5e����ݑ���o��Ћ�.>���Mu�n�ʛ�({>9ԏ�����,�/�wnbm���;��Wܯ�y��GPc��2z�D����.��B�4�ҖJQ�~�l�1�d�x��E|��'�<�S��N~��/!#,4]	{�q��+���/<�J�����B�e��5�o��ea�"���=�X�Qy�
��f�]V��
�˹��4�-M���У�…̙ZUɎ��!t�	�|�sc�;����&7��t=��B��2_
��|�j���5
��!�*F�n���
B�%r�1�Tk��B�L�^o������\�&�
l����w�Y�˽�}z{�M�t(\��a�~��sc!"<��0���U��[
K{�o�;Pn��{|p����U�S�^����VM\��I���ϼ���>������E�|���[��;��Mm�?l%b�&�2�H��?,C�k�N�h�
�]��y���i#ho�-)BM��F�)^��#d"��w�8����ݣ�W}�,�D���:��QyT�G�QyT�/݈��H��������������;
���X���<R�"�z�-�g�����ˆ��߫u����;��Tp�݇^�y�wp��]=��&������;~�x�	����@�X\h�(p�̙3ZI���/��3��W�&�꽝2!��7	�/}�=��=��������!�H��OH��d��W��?�����$6~��=&�34ꆆ����+��qD�h��Qf�z����Y�%��H�h������m�>*��qm�:�P�1�"xL#<'�;������A=VC���5%4z����۾�LMg����r��X��P+v�V��n����;#��p>����^iI�O�_��̓>�p�FΌ⩑^�%i�6܋[�r���?O=�����Q@m;�˻eܐ�[���4^.9��(�7�����A�fzEZ��q��SU�sO0��/����%q��M�*�=�H&|�с�a�`d/�u}/Q�SV���&�4�AYp�
�Fz!nGo
�ozw���"��L$2~B�,kn�&���!Ihu&�)�3�Bげ���a
ij�<&D�^+��`��9H4ѹ��
�;0y6�{��0�=V���9b��&\��"0��5��Wiԕ��o���X6�k�ह\٫`	43�mH�d�ޭ���U�	�x
��f��s���~O%{�۬"�
�/~�/���璱Hc�rQ�R�-����k�W���!>�F���W�-��:��q;;܇���/�^·�&YP�eR��XMY��쳟)�����8+8�W����'&1}X�=$31��3w�2��f����O<D��<�m����<�H���ٚ:��� ���$�,$;�gAa�rKt�Hzvp�g��ߡEϒ�ۃ�<��C�e`D����.
�M2���pq��M�۳��o�pwP����}�I�:��Y�C��4Ƴ�	�	d��*+L��AJ���BNԂ��=c��zܹ�Ã^,��P��k�P�Щ���8�IH߄��^Y�~��Q���1<'u�g�L�3��-L�1Oc<Ӛ|ww�B�Ok�F��x.	�mf�Äk�m�
�F�N@���4��2�h�b�
M2e��N2~>�L�޴D�@H�.g
i�N�	��s[����c9�(�o�*�`)9��y6�G�N"W��!�[	�3I�il��B�$�,da���亂��HV��+�V#�������� �������;(	Y�,�]DY@���C=l&F0o_x�2V6h)߇S�f�?4��^kBV�H{cu/<�6�b���������.~�W�*DIf �jZ6�ZCÚ%���+��y��,���~��_p;�0Z�q��(!�d؋l�{k��P���c`h@���p���=���߂→X������6��QB8�kJd�\��Q��FMA�I��lj��� !L���Q���jo��g]�m#�r��a�:Zelm�`S���!�߇������F&�Cبj�sո��XiYV0�']kmH����)c��{B�ݥ��G0�Pcz�֖��=&&����.5��پm���ǜ��!�p�=��Yw-Q~tl�e��P��
�l�$��C��DrB"1�"�hu
L&ڄ.l'�X�h.����A���4
A��r��DA}�ˡ��rDQ�,�ՅG��D	��k��_D�z���[���}�n
uت�p'�L¨�A��{�j�$�u��#О���#2���L�IzU>�0!�B��q��1�l�	��a��A�_��%���8��a�~X�ɩ���Q�c6��{m�=7�M@"x��*��Kh�Y#|�e�y��h�tVFr�5�k�y�Nc�N�'��>(ͩ�>��6)�{���	t��vm��l=O:�**|�%�l���eFq�;��/�����W�|���������1,��s��c&��\���"�&���������#r��PI���j�-��*4{@�z�����	��T�Ž���A��YF���4�E"��4���9��n�C:�F�l?G�$3����r^M���<ѹc����v�K�i�9�܆���hA�k.0g���1���rֳ����0���!�!^ۻ��@���n
��J7b�>#�c���ݒ�w�G��p�;�<�%
����P�����u���OcddD��	bBǎܓ��da�*b���Kb�����
��/}I�=1���\��=j0ǜ?�3?��+�c�yJ���G�!�ο�����6��r��m�Ӆ�"�@ƒ���������˃��O��=+��?��V��+�C�õ����?�O������t����o�_����>H,��'�.k�,;�F��;9�tT��G�Y�.X���M���S�ڎ�v��m��+�W� ;�{�g�=�%���Uar[��蝄�ʡ��{�Si�}Y�
ȮtAH�O��x:�����I#�+[V��ʽ����)\�__��I?���7��Z9�7|�"����
����EIx�.�cL���7q/Õ������1�NE'ohnC�#��@CCP�8 Q�����C�ƌ�U#�f�����<�D����a�u�UǬ��ݭ�˰����۸�\���1�
�?��-;r~_&'�cC
3��嚚oI$Kj�d�P�OK��`��b08lX)���7����P9�d
s���:�d�O��g���W9����d0X�����dF�F�art^3���b��(����y�w��ς��gnD䎦�[jmBo�%��V�	�̬�y�q��X�����=���jO)�1��)+�=�O�#��1�ٮ'�FV������'c靥]|��"v�	W��zg�'p���ve?{-^ûBb������d�X�{������m̤�ؔ�س	ԗR1���=���DŽ��kkxGp��ٜ�;!ެ�-���s�n���n�F�����/]�������<ْJ|�ȱ�"䆊�$:Hl0I����P8p�˙�����pV$N�1??�:gvv6�������K�8&�M�̈t�KT�Y���Nyk[hZE�GdUI�h-�Tb�j���ErZje��E_�UIM:KHDȑ���W������L�c�T�����G�2%*l�vaӐ��-����i�'=���0�ݷl��=!]��?�����Ԁ��"��ķ
�ˌ��4�i]��;�. U�I�4m���m�Js�H�τy�	�}��X�G&�sIv�p�(���-%�S^t�?z�4�	�oU=[���X$��]�e�۹)�!�$7riFGP�_�ºl�)\[���(Fe�-�a}s'��єgީ�g`q�;&��:D*�D!�'��.�\���a�#�8����DrMFȓ�!��x�7t�~�g07=��r�_{_~�2�+"�N��矕�+xE����-��	�8��aS�큩Sؚ_��;�r�4�dž�۾���W.�[����#�U�j�:9#���y�U��g����
����@09<�^����y�'�6b��fp��K�|D�*�ۻ���ݒ
I�h�sg�����Q��l�N��
u��cC��0N�
Z!��Y��PS$%I$
iE"7�J)�Q2�[vI�>�A�
�Yݸs�ڂ SV�+�"�V(dW���Į(��|���b���M�Z��C�Zn�6��
$MM�aB
Td���0+U�Mb�!j@�M��m�p�|?��F����Z�����M�{�`��4w�ۍ�JM��ĂMa��E�b2��W�݀�$V�����=�9��я뚙ɜ�]Lͽ�
�0���ᄭЉ���Y0ϳ!�B+L:'����&
Z ������Cj���ێY��[pcؽ���uE���S�C����S����]��8�={��>�HZ~d��A�\_��~��}`wgA’VMu�ӁI����>j���7Fo2*+����AX�qW�/&
�Di!�y��5��9����B��FE�8���<��^��vr���4$Qo��c�Ĭ��`.� �Rk6&(L�zuw����;��FoKJ)�*����d�������BFɃ�o��b�qY�轙U�E�aڡ��7������ᮈ-)�l`hdL��L�O,�W�ʎI[��Q��)�rU�J�~ڔvz�4����n
�/�d^�0������>�U��f��2���M��eywBBeyg)Y��2l���;��9!���>{Q�'�̠Y)���jؐ�U��w�nb|��Xم������Kİ����Qc���ƣג��H���t&�\+$����1�����4���kdԆ*�|�
�������~ܽ�&N�~B@���ۚZ���"{���HS�w�!K�O�]���4��0���Q󍟶���ܗ������e�hh+*��ot`3O�j�ף���8��5�&�mX"ir_,ܹ��gqS�ř�)u��jQߗAM��jsX,����(�rܓ���<w�x�n���̌S�����O�=���(��Nd�VҶ��5!#2s<�R���*�/>U�fQ�k�*��{���Z������0�bU�[<XC*3���_��5d�7JȤ3vb؎x+g�o��>�����t�nDDg���=��>�Pw�'��À��A&��3�c��`"m�<���}�1��U��W�]!���N�sp0|��[��}N�^!$C�}�'3�8Cs3a:�e�` �Q���NN��?L|N�Ý��ԩSz
���gc�u�q�F���'����@p�N�'Q�_���0S4ea8+�.\�r&1�s:����B���.͍B��oa#�9�`.�s���py?�S�	�I�0a|��:Nj�ޭG�D�?";~s�&V��
`(�������hCS#����C�d
�9��0��b1c��K��2�uրᎴBk����]3\sӄH�.5,5��
.�����!��`0�Ì���~���X+����x��*>��ç�~�W��)��Y��'n� �GE�_�ܢ���
����3weB�����X��I�7���}oU�p&Ӧ�PP��^��%	m�Q-�C�l��dT�2�?������s�(�z�f�5�a��&�i�|�Q�c���yI@I5�`��u@�Ř	W�T���j����!�@����W@`”�lk&b�l�, ���P!�m�Q$0`�5i
4`'Cr|�~$u��W��X0���4$Wh�.꽔���<�K��3�6T#��P\�D��~�f*�6zD�RS�ߛ�엡1�I���ԩ�kH��b���k)<&e�1�فv���[���C�Q�ռ��"�dR�����o-�z���=s2O�=�e
"s�����}����>&��+����:~��i��>�'m9�e�v���<BY��J�|w
���K{�x�p�;>�S2N�{�<�;���t�4���W��=�d�MN����K
�����p�;X�g��O��Q�V��`a%��kk�Q3��#>�o��0��E�m��(�Pk1�ɷA� *�/	�X��8��1��r6�'��ET��#BTT(��Ԗ�}$���� 	r�����{�+#,i(PZ�H	���W�/�r�KYIQF�@pө�����	���%{�BØ��~P�F�]������(���G�`O~��Լ#I�:!m�0.gL�T.��U��]��<$4�--i(-��}�v��5���u`���bذd�Sķ߯�T`���sᬤ���E�c�rw/.��V��q���,�U!*:y�zM*����w�P�"%y�P	������R��I��beco_�#
~���Y�
�T>V7��{�&��'P)�cb$���q,l��+oc@ȉO}�yL�`o}��}��_Ê�'�&��3籺��w��P��\��)$�(�My���^B.ǹX_j��w�`|sg�&�]/���|�kؑŹ,Jz^���#V�޹5/������AQ�&z�x�B�\�s[+R�T�.�Fr�5我��$ �k�^�Lk�[t7�:��ox�:>[#�\:���fݸ	��Y�0�[n�LP��&�^\�4�xd%s��L�}=��ڲ��5IFD�e�5#
�s]$YB£"�����h�<J�$a�s�<M@�n�\n��.d49�
���@�M�_�*�jB��@'��`�1<��;�D[�W�ey�I]�c�S�v���P�Z#�8Wf[�w��~D�m�p���Ua����l��B����~lj^ ��#&D1w�g�9���0,J���Y|M�O�54�U�1�R�~G�N�)^��n�>�!��O�!h!β�k�HE��#@��Xw���D7��{�h
;�jA�Ҧ�a�����"�EI�v�[,�i�QFG�����3�t����ꃥ�{X�����
�nc_��TB��0
CSؽw��:!���߸��'fpsm;k�1=1��"vE`�IP�}���d��<ؓ�(������F9���!ܾ��^|������Wo\���Ylx���(E��z4Oco{Y�Ic�P\Ǎ[�8(�06y�}!���7�؅����6e���T�kw���-ap:.��=Y�aj�o]�
��A�s1�sD�������e6S�ƶ��==�����!���&f����1���+��;�kWߖy�V�gH�y\��[��(p�~��[������G�+�Kcx�����HW��8}	C<��U��}������Bq�Y�ō{��3/h��RqG��<�W�#������(V�=�<vW����2.�<���6^����)�\V�{+�=�xn@ַ�|�,�9L�zL�2n�lcq�f�&E&ٳ��}gg�.�gNb}gW��
�|�����٧0\��_b=B��~�����o�w�1��܅�r(�y�(��,�ą�����]
c3��� {��	��i;7{
�"�^8}�K :���D���{&���pyW#�S�Y��X���L�zS�h�<�ȃkk�035���;�o���W��O�6W.��(��x]�A���P�|����O?�Ż7�|p�G	n�Z�.�w	=�#�5�ڊ��	!��%��w>/c*��>�XE���>6E�<19���
Z��l�o`zl;���|+ɼ�ऌ��|
���%!W��T��&��8.̝���ZY��C�gN]�9}!v��M��=!�k�n�#s|w��@��T�c}Xy���i�#~��w#/��8�8�w��.z]'����@��vE�X�x��'5��!>��Ok�&�&Qq���ֵ$!���^
$9��|���pQ� qµ�X	���O}
?�S?���_���o�@ ���OLTNҀa�ڊ��| �7	�|���[Qp%J
�M��`x(z�0�H2ir1�T���O|B�hG0D=S\�<F����^�sI�0�??��kX+���3�V�P�糱�]�]�*WX7��'Y����b���Iљ�n�Y�Q&l~�nc�8���n�y���7i*y�kBAf�ËƧ%FP�+f�j�d��[3bj�ɦ���>d���Gkhr=�Qn™��G��[j�����r����^��{�
x����j�Y1�K!1�Ǿ��k�L�� L5�����~��MTD��-��8_�蠈��,R���b��E�W�93P Y䋆(@�D�ޔ�*��5I	˵�Fp��y���	�,��,#��m3��L��<5�4ٸ�/1Q�s$�k%�al��Mk��D�ۆָ�dE�d�i����{��4k�00����}EI���F�3�����Q��#�$��@J
nlF@�/�!fB�˿CjʘHJҘ�iuK�[�<����x`�<��b��V���.��!��O�Dh�pj�1�<	5������`��C�z�Xhk�x�n�$=�ib��;]V=�M4 ��K�>�INH%O�\�1!:�i,�ʈ<���\6 㯌}�p��h�`~(���Y���.a_�z��oi/�+��C�]d�W��i�~�ùx�Y�B�?��:��7���*N�>��WB_:��Z|'	.���Z���^![�ݾ�W�7�l��s��������{]�d��Y�q�ZX
�=��q�pD��&*��������Z���1<<�a$=�ɐV$;��9�$ZhA@�������!=?�A����Z�HB���T��6[���M:��.a�5��	���Z��4��z���#/ڋ����h)�֑�	}=�����T<����15�&	=@(�)hը!$�̤?�74�C�z��1]Dx�Z���~:�"��#01��aE&OL'���e(��V�I�ZFLȌ��^G��~���rq�)Vc|��Z�1ՐI�&�7&3_X���0�\����E!K060!�ԕϼ���"���…-nB_��M��s1�$T�1��3���&Ng�O�l)�?�&�#[̼jA`��2|W�Z�;�}�z&/DT�&l���Z-fG��x�5����>@ic��<h��Š�7i�0�J����k� �=/ �8���X�����(}���:47��(�h��{~�#O�1Q�!���^q���\W�� �_<���C���5��~پ~QN�uX����^i
��F�p��-��qrj_@����>��K��\���S�4�S��n,�`|v�OL�$���&3�}R����$��A��~l˸�B(�w�M��2Ǿ�q69�QϟL&�ox1��6D;Mb��n�<Gz�����w���Z�ºpN��)" hTAV����caݐ���D�'�����2�S��hȧX��M\�BNл@�P̧"#D�!w�X�B� �a-��x~C�n./�*�坦L��0&���"��伬W�z걔�߄1�!5#�aS�M�"���"���PN���u��Dք�c
�DQ�3ɼYjҦr<�	���ZC�7��0$�ΦzR�V���o�nϋ�B���=q|���1�#��5U�jƓ�$�ӋD��k.��z����|7�E�0�
��q�:s�J$)�o��k�w���V�2�L�0Z��hyj�>��mb�z.|�I�k܏�\	a���3��z�p�C�,a�V� *�Ƃ�^-�ƶ�st�E�b�X�q�N��i�}�M��=�q�\�a�lɋ���♰-�琉�bѹe烡�S��W��̜�(�"f�qM��Xz[��ʾKC#/����@�do�W����0	[�d�8�a����^Ze,�3�|���
�^T%�5M%�D���QK����d~T����XBE����I\�1�>�w���L����{c�
&g�p��]	Ix��yܽ}]~�=Q����IT���}��`���y�6�/k΅�Kx��wt��"%��0;=�k���jW�����s€`_y�e��@�o�BBTdl����j�Ka���|��/`��6v���D�9�ّ��P�oO�F�n
H}�t�׼H\�w6�}�	a2����'e}� ��\�'�[FHo��6�Q��X�eL�+Q�z���;DU����=�N���;�2�8sb
��ZF!�cy}�3AC�d���_�`a�%Y�kx��	ܘ�G�������	4���N�SpOd�!Q�2���DF��Rirw�o�O� ��6173)��<E9�n�Ї��A�3F�y_{�Ύ� H�`mc�p��eL��
��BYttl/��Y�/H�
�"ၼ��+�=JߎH�†���v�P���-�;�{��[/�abjV�ɒ("_�I�%(��
Ax��{����d��PW���ʔ��{��t*-�kAe
g�=�+/Q=�'�X�:��srgk��
5�J�`y�+��>���=��8f&�����,&WK�Y�]$�Q��Sz�*�3G�aq
.��ko]C �m�(Ѓ���	156,���&G���܉Qy�c:�
=)���
�_=����~[��:�R/�!{�]c?��h�\7�•������]��-
~w�s��y�;7�
�|�y����X���?�JrD�!�N�ޅIr�!��5���0����
���{�%1@o
&"g�%����FR����Ǐƽf��9%:��".:����(&�ϝ;������������ ~�GTCQi�MyN��.y	y?z#�o�������?�GJ�0w�����3����ںֽc�C���yO�y���[��G���d䯼�J�����!YD�T&Mw�8,$��/����)#�:ɦG�]"�`�e��ɐ�)x��hP򏲲�C�Dž��AA�PsR��j�qgΪ�s^��x&fY׍""���"R�S<'��= z�E!�&�D ���#�w�%4l�H&���D&h�l�һ��|sò߆������/��L_+��}��-|ۉY�_ǼޭWE�Mȳ�U/��g��]�?w���/H2����ުl #20��Uz
S=҃�Fz��O�	%*R�?6��}HB�,�__��h"/�A���D�40�*���4���aP�DF<�=�u�!�T�N*��Eg{�n��WG��4�d�x]hT��|�)R��C�"�0��w���5�EMs��z�4i�Hk����L-�~��T�y�	Q���|jbtM^�T�������<3~��ۅ���g�S&
Im�!�h�L�:g��ڀ\_6c��=���ɾ�:�P�pB�Y�{��=W���x�DRޯ�"9�s����f���B�d���`g
|�՛��ږ�����N
i$c�t���
���?+8nM�ކ�4ӯ`X�g�P�����GN�bNp�[�6�#�����="[��O���+~�?��'��9/�Ko<���9=� b��}�qF��;ϋ~�ď�a����";�g��=tߝp�c$;D�Q��9<Hv0�������˃��sw�3��Ԕ�m�w���\���Gm��.L�a��DȆH؋���<�'�q�\�l����{]~W�����B�e��"���n�0Ƥ��bI����iJ�Exb�����
9�IY.W�Lg�&P���jtϷ�CK09q�7�m挐��:CuMV�Vܽ�-\��6�^�y�3dі�<66�w6�А��P��a�BH�%�d�.V��(��4���>KIȒͭ
�4�b6���$=�Xh�FdAI�\5
���.qS�ibp�&f5�d썦�Qb���p_j	 ����5^����RXz�����ӡ�����DŽ��9S�t	�{���?�{7�FY��%o|h�g�╫7Dq�A�xZ�%4�
����;w��X�f�\�a�]�\�E]�������H	0�=��?`rt\@�/�]��/�����š���sX�+����J��d�K�UY��KS�F�PCO���հWg�l㚐�wq��:��w�p�fY=4>�k�"DI�-����s�(�S�j�E�~��m�l�wj#�aTdV�y�{�ΦJ���ؖ{�ӤZ�����D�R"�-lѤ"�D�͡4����04`�Q�)<�M"pK�i<n��0"�G+�
c�ң@�&A�:Ă��ĝ�!k�q\`��l�
�[6Uh������muuc
q!Y{����#cTC��:��1�	I(BI����MZ�Ы���l���u"�&ҽ�Yg��l��jVk ��K@45��]Ha�Ԅ�#=	e;4R�
�1
��5_�>Q�d�Yz=��p[}!��#V�}�;����(��$=��o0,�h��QO��z��d--�����
!��B�=*x�Ȁ��׼��g�z�4F��,��gh�X߮���!�g�GymRǒ��,�^x?&G.��02�``�8�sQ+ܣ��~�EH
W"dEh��H��(�5XpԊ��Ѯ�6:��#��:/@���/:G���
ߡzR� Z�ώ��W�)B�S�aqucSg5��L|L͜��&Gư�+{�ѓ#�0[���Ⱦo2:>��g�`E���ȋ�L�cfz�+�'����y$��҅�C%�:���D�[����g��bP���aEd�<��}z����gz0:�Â�on�*�}��c{�ҽS���Q��1�cHۛ(`E�ڙ�T��Au���g��&NI ��'��p?��7P����/�Fp��	̯lbvj�d+[[�%�	B~�
�-=��ջ&�X��=&�����
�NN
��M�g��N�<:1,���(�&�T��Ȱ�rξ�ɡ<�NY�vs��@ʯ��ܜ�[B8dzգ-+�Uz����A�ia,�G�o���Ŵ��;�v��V����x��Y�=�f�:֦g/bL��C����������>Q��w00:+��06EAـr}o������6��.�>%���i�oo����/󘝜н��̀�E�]sC��.�����V�pr��
�Y6-���hY��e�y��	Y0��廈���ɞ^�nobx�̃���0bT��Pe����n,cLȽa!~e�E�N�_:-coj����D\�o�c#��}��ӯkz6?�� (��>}�Sj�8u�4޺z+�˸$Ȯ�DBvT��[��K���z�|rKd�ŵ]�C���\�V�}
Ojn6�'CB2Q��+��'�)!�Ⱨ��}vJ���	��ٗYZzʸ����ƞ���Ƞ�-iLM�����sMt�3��_�a|t�7�oP���։
�׳���;��y���y���:��'O�~�4�t
$&''[瓐�nH���#�VR#��㬇���m@@�� ��o��&Ve|���K�d���=ƿ���X��1T�M/
��OX����k�,F�pmd����Q�B����a���b]�]z��G��z%��;b%J=��S�w��|6~���$U'.��FIz֐Xb*��r�d�;�!�\?�?���%��=��Ћ��T��:3��h�������9��9_O���7[���!�Faf��c0�㝗��"�ɪÈ�ͱ�P�1s>��g=�[asՃ��ם�B���M�;��dOI|\�)���T�/��GL�FO�b���~�>��5͍p���	٣i\\Y+������X�z+�"C씱� 2�-�UE����0�"��T�c�${5zJPu�`�4�7���`TE?��	y�;��5��5�X�gs|0ٹ�|�!^Y�Ã@�Z�Ta8覍��Ԝ�^̃C$7R6�
��!7ɼMN8ʏ�;���k��13
ip!�V�s��Xhr_P���rZ�1lVCuS�cÅwR�\�UXw\	���W��i8�xӷ�bJ��h&�DŽ`WMVS��V$��u�?<c�\QoF�H��k�Wc
j�f����%6������M�͖���Nώ�P�7�b,pyҎ�o|�9����ki�
R��
[�GQ�3C�{�'�C�E��Dz�Fہ׋����&x�÷5,e0R��i
��Ryz(��^���E6>�10ܑ{���Qi�`1�;�2>���^\YyXd��~N�������!�}�*U�I/�Tg�&p��&^^_�ΜB�F�x���x�A����wW�þw�n�K{E��<�9\+ʊy6d���K��p��766�w��9<Hz����e!:�<�b:O��y=Hv�6�ӣ^��t'����~嗾efz����Gkˀ��ҭ�5�2f��H�'$�K�x9�Y�t��^��r$Ѹ�$�i�;h
O�IZJ�a����r�q�D�����Y�zN0�8S&+e�H���CR��kc�Cz3��?(i�	\�h�W`�*���x�{��
����>� �䗯��?��'�/��2ɢ�ENw3����W4V0���K�1?�#���{�*d�S�.�$'��R��?!�@@\�wYr�`�0_�^!Ȥq�-@��NM.��MtN�
���ʅ�b�ː@�]4��ʹyQ8GGEY§P����9<vv
����7P�X���<��&�,Vo���;�e3Hbhl
K���N�(�_��[���������������w4��3Ͻ���I�1t��k��+/�k8;1�o�ԧ�%$��o]��Q6��A!B���v�=��cW���-�za�����း��rZ�]�h�2~�106�a!��Q)�at$���Sx��$!&~��;x��"{�#�H���[]���c�x��el��c<y������Q�����E���zwkO��#�6�,�����?�?�{�|C��/,.j��P��}:��_�Ay�f�D��V�<܇��z�C�F
��5(fv^
U��C�@�v�@6.M��e�P��ln��'d
)H~�L���'R�<�F����i���#'�7�P�6n�tC��vL��0q����k����Eq�) &vF�dF�mY�
������"f�Mg�H��2�z$O�t�
	P!d�� �}�hʺR&Y�4^i�s�fLȿ?��0�%I�T//Z�7Y�����o�əa<6���"���d��F�L�̫H��[h,�bh����~�!<�.�)j,��W�\��!�ܨ��	����E���	��jI����}�C��9�7���A=�W�����Y�eׁ�q��U��"��,�uu���htC	Xp8�����������k�١���*.�P�Т�FK���.��*�Ό�-�V�{�}�x��?2�*v��ȯ\<��s﹵xQv�ch˪�Z���N��8��.'u��*-`�E�Y}R둫�������6�}�!u�\�Z���guIA~nkɘy�[@v����G ��E`��f���U��_��x쾻`C.��D�������4�I�0ދc݊�% �:�&e��^п�}تPD�[�">�.���G(c�V�R��5�-�~��6~�7��A
�JC%]k!竴���
���
��1�m�7�u��^G�
�	N�9��+_���������l��Z^��"o��nn��u�@�^�?ژ^��e�%���5m��[
V1���ƶ^>����yl#}٪�)�!Y��z��oVJ!
���7��=J�.���4sZ�r�2�je�ua�S{���-��l�6��R��;AS�M�C#N,��V�P�2�վJ�)t��UY��z)$\�!�����6�c�s�?�.�K��ѱ��J�;�
o�%#�ݱemG�J�0���f��qL�Nm]�%�d�4��O3�0ޕ��1�d�_cuQ��@�/�0l�yjs�2����5y�m0Ԭ�u�gd ���w�ԠU��L0P��`�+���S8W�3P�_���xA��A\�A�V��
1�����lJ���>�[f�����b�5�u4���:���YW�G���#�zu�X9YO��Q����'PQ��_������$�_��}�&���e�^�dey#���}��g�^��w���zcS��zd��rL��胈��%k?�%ZO�w����u׻F�vo��Qo���z�?���y��{��4
�����I��G����i=D&�M)���)�A(5e���qTV��=������1t�q������x*����5�ީM�X�ި\d�`��ာ	��px� ؒ\�q:��p��dO�"�Я���c���^�MQ)�QơZ��]�J����wM��)�5`I�?�9�� ��δ*�,��	���l�#{��v
	�5�HC�B5��Ȟ���˒7?Fo�vŒ�ΫcQ�����q��!y�U�	�r>=PZr�9Je����H��j���r��Pt�𛨴�
�?T)('Р�%�W
PreB�Aϒ��"fPy
:���1��Pv+ Y�aT��(�
��]�m%9��k�ncuq-*�3N��wl�{�7��>���ʤѮTM�ac�hזN7��ǐ�� L�T=�|��]����j޸_gF=�)��}Ͷ��ML�K��t��E�f���#�5�p����)�َ� מ�4�Oa�SEq,���,\���$:O���/4�W��*Ƅ<��zI�"o��|GҸ m�_����i,��f��ۼP_�u�x�H)�S���on�
W���u\%�J��0K�#��We�O#�T�x�����
nz|cK��)��7��w���oz��}�����ͻ�]��v�۱ ���T�@�%@�=��;_�0��~��������.%��<$;�L$;�J�'Bvh������n!m=�[x��W�ҠI���-i�]hл�1��U�N�8�C�ƒ��O�TP��
(��K�1�]T�X��p-a�`��jŲ���1$�87�5�tR�`qnKׯ+�72<��b�O���:�����k�b�����Mh�d�uI���f�y�WnZW0�h-.K-LSw�n������E�qq��T姚�2�W;v�3`LHh�
7'DKh�:��,�&<F랒Lj�2(tݜ�1=�V:ҞM�:��h���8���C��*��-����)crl�sW��Q�jr���$����;ѸtE�X�}vn�=�8����%��g��:�ׅa]�M���ۅ�}�9��|IɴJ9���+�J=i:I��[g,��>�g1N��n񍋝2�M>c�h)R���!]Ú1{�9���C�أ�j;+W|$��8?�B�?sQ%��݋�LE!������%xia�i)� �R���p��eTe�g0�V����[C�1g��<l��t�8���8�4jQڌ�JJ�0X�2��ZG�eR9OJ&�m�(��\,�f���rާU�l�30:�����JL9�X��
D�FF�_ưx��#�I�h�,a��c�� iBi��n
Z� &�}�NWݘ��)�A�E�.�Ŕ�X(�j��c;q��U6����������鬱R�*���׈�a8W���dwK�Mpݐ��Q���	�S��!��D�HIժ%W6�\]D�b��C�IdcZo�FK��z���Ѫ�Tf&�+{Ǹ���fꍣy0+�c�Q l3@��Pb�,��GX$A8�vK���`��
�y��Um|�����}	B�[A�n;�Z�vA�p�vB{���/ R'�C��^�:�[��둲��»����m�u>��GV.lJX���(��'�B}��_:���{��P�b7�����^���͂�������.x̞����ush��h�[��
��׉
��o]g��c�""%f��?D��C3�G<��K	��΋~�k Ȱ��][u��Sl1��z_z�u��l^�0��)c��|l��l^��;x����y�=�p�H
�Ѭ"f���B�����}g��_WR�Ӹ�����L9[�}�G�s�SD63�W��Ѻ���>�z榼8�5���H���"��D�����O��b�T��+��wn�퓛s⹑�ߴ���~S���b��AǼ� �~P�ﺃ�@�,9�ר�� ��_����G*��'�
��J[�>W<zΠg���5��
��K�^+z\��a�^�:�~g$�c��_�:w�Nm��et3齐#;��Z�\�F^�߭|?w��x|��c`<4ƻ���Df'4�0�0��N�6#��C�q���=BN|k��A=��r��]���b'�����HWZ������2�4�����X���$�xy�ܐƮ|�USy��M�*�@#�&,�X�b�^�HR���nv۲IX/}3.&4��#�p)�u)��k@t�p"����c�J�ɑflY��5yۊ��u����h9f�Ґ�zn�-[?��R1�^�oT
H6d�sR��B�0v.GY��PB�u�V�ű��Ƌ�Gv�"��8%Tf�M
��gh�-x%��)A��o��H����	.I٭z(��%",�8�ۮ��:���4нc�u�ݽgn�l]
��l���01KB�t%�#���C����í�'�z��5'G�J���H����(��qiH��������i��Z.~*3�;�
���PU�H�]����U`6\/����<>;1�k�TK�#��Z��D�����8������j��%�y���� ����e��I(�;I�7��Ȯ]�w�����PNf7��~��0:ׇ�?�rs�� ��~��~�v�<�L�����B�0ѳv\�C_�$AHz�I��!��'���+#��,,��lw�Mz��x�D�2�k��Ɩ{���l��W�`�~�QOc�+9[/
��n0���SB���xS�_�*9�l��-]5��3I
�ŧ
�`���@�u7#��҅�*�:�d)gu�����.dCy��/_FcuY��\Zf;&�˦.Lui��e49�-,8�1�F]���Ύ]�2�F�1;x?��qL���h,�FM�������=W����nn�B�S�pZ�|$<�~�m!dڶ�l�-�SA�uIv0	�|��Μ��`�0��/bi�в���d.#훒B29ų�{ۃ8'e�X�qV����Ϣ,]/[Ǿ=�d���[���ŗ^�����*�x�a
�g_}�xA�`}]Ȓ��눔�����T�ݴ�}��Lj�����\��Ȳx�P�,��r�Q���:>v�Q|��FbBx�Vqzn�x_��3h�r8t۔�1^_\D�\�.!"g/]�;'O�U�oer��8�ʛ����x�ZAǽ�Y�R�����m'u��?�Ơ�B �f��@`�>-Vc��2v:EZ9�*W�7�ŘN�(c
�a����ێ`KF{X�"���PnhXH�2JB�T����$)�TB�,J���)�^�f��q��6��^F��Q~��s��U��O�|��Np�S)=_e=J��X��%�rM�C,��e��ƶآ�],�D�5pߺ��lѷ�0�v&��-C��٤���WP^_5��rlJ���lB�l���qW�I)��06q�js��ܗ��&�)5�1��Y��je�����9j��;֊�x��vu�r^!���U���$U`��C�	6�{���
�c=>�0�X�S~�E�1m�&�`�{K�w
�T[��z��1��޽��!4"�K�Z�C8�x�����`��mc]K����v�N�I;��St�ڃ�3��GfD�ُ\����v��Jo������{S��v�DH4��)!�k������ϛ�C00���3��؎�Wǽ�
��@�c���G�m��>�~��:����t�lΡ�,�&��X%[�l��WQz��'6���	�zv�n	�z�� `NP�Ӹ&֤�Q��"��G[q���zJ"1"}~(����6Z%eߊ4�>q	�\��#�!|�0�B���}|���W�;WO��
g;Md��.]��N+����*��B@yً�XȧL���9�Y��^Ɣ~o�ʞHcm�qq�֮��3����0Ũ�ArB7;� ������ƶpѐ�qL�%+�Ć+�_@ݘ���: �S�>PL��%:v�x�U"��v�O)[�1����L#�'i�G�j�2S=A�̾�0D�y$�D��]'�H��1e�`�٥���)׌�1�6�{�J�ڽ,�ɔ4�ג��/��~�_�h������X�g�z�?�6:|�)!�������
����|ݳ
�+�F��'�>JC�NCc&�4+���Kpr2�L��adt7�]Z��o���2�W}"[�x��>�����7�9����Y��v�0>���O7V�"8�����(ē�v�l����TY�tj;xǏ���Ώ`o�����x[�7D��Ҿ����_��Pi��xb��}��y��Ƞs�
�7�~�q�sy|�����$ɉ?��?��7��������3%�T��zyѠ�V֪+e&�X�u����O!>Tʊ��Q֪�~wa
�M�	�B#.��]0|�-��-̠�>}&��}�±���ɲ��~R+g2�J��-W��I ��jڅ���0�*���A���`�n�4h����g@�ĩ˵u�Oћķ�
�bHy�N�h��ZuM;}iM�ͦ�)����u��'�Q<��o��L�`,נu?�R9`1^��k�Zj�N��N��Y'�qs�`�J�4��l�ž�9zy)�?��?�F�b��
��u�V��]�DR�����T�_�җ�,�tU��!��$_\�I![������_���u<z���YH\T��RX2 ��7]���5?wWׄ<�i<�Ҳ����fbx�Tg�[�.����C�}�c889�S�yv~
����m�g��d�K8J��69!xrs�T����i� Ϩ�E$�؞�y&GG���ݭ6���s����مy���޾2�=�?�K�k�I�!x� �/�"�Ic�Ĩ_�x[Q���u�m��Ko������`-`{EVv��v�Qߓ�8�+���C���f)��S�F&��+�Z�;v�VC����}iώ�Ԥ7W @x�di��ˆ�-�Φ���1A.��c߷c����e	W%�H �$��c��4K>/u^�:� G���>J���L��T����蘱��0�|���kE<C=��.�u��C�Ԕ�f��8i���2q�6����{�^�vY��q�DR�M%�q�1�MbKs�	B�-'�Mvl�Sv�k������meq�KK���R2�I	�+S�\�.�Tz�Dw���y�%1����U�O�r���m�k��������0�:�%J܎��A#���3�>�ۑ���9/��EH �͋�e�=ں�cs���ۖ�.ײ�Pƈ����x���a�bl�t�.�DH��~��<i?'<C���\�{�Mң�L�]"�Ft�w[\�o��=C�5(��8;���T"�KdL�,X�(�t�Q����_�v���Jhv`={H����<P�uJ����;��e�X7Pѳ� ���O.Bc�Ŵ�����xf��<�4.���d�13�α�U�/���H���A�髷��#��x2�DPK1��|,i�Z�,}u���8 ��Չ6�V[��`Ӡ�TS��5�:�VfX���d�ڔ���m[��x��h���Ro'�f�L�X����/�1����`{	rP��5�c��Ѱ��%���=���X�u'��M�,��FdA�o�Ȉ��۬�{��~�H�H�g�{z��^QY�^ }еoD�#n��+��W�{��ޠgt�A���퀦�17��������-���v�#qo�t½��u�G�*��FH�'���v��J1/�ScLc��f��n1k�GѸ�4#�.�ܼ\��\�A���}�-n
�$RC�'.ȵ�rlڕ�bJ �$^^��'�#Xm���aܛ��/U�N��7��o,�w��cً+A)�뒧k�e��^�l�e�x�w��w�����Y�Q")&봪�
bK��u���=",+�آԅ��pQ��;�c��ٗ�6NcBB���;�ձ���F���&.Y[�+��ޱ�D��KV�u)�k��lz��46JG��p���7��X�(Ap
��6\�w�X$�1
-�2X;���.�BR�rJ<��Nw��|�!e��m+
e��=m��aW�ֻC�>Ru�q4�;Р�ט�ƛ%4�c�<K�h9$'�jq�p�#��ö׌|[lup���7�	�}:e�&:�79���진lsc�(љ�:M3vbsW�/�++��N���QM�ᖹG�
9�Ƭ`)�lmOw���e�`�w-,��38&8�W���BN,/�ガ%�J�.ujg7�睗��z���$�Z^��M���/^Ĺ�:I#�\�v���nߘ�秦1w�2�|�����������^g�ڨ_R�H�e�P�������Z1Q������[�z|�Ӄ�V�l���?['���+�C�m�\�.gb�r��Y`&�\��zݮG��P��4{����v
��\�ߨ�+�-�j���2Zn�^P�rM��B"%z���]���V;��@����Y*��c���P�L*m�a��JY7Z�<�mc�Ϗ�!�c�M-��V��% ?�ˮ>��m
LY�8}�*%��Q^]�x�0(K?0ץ�s�RFB�T�,x��g*'�2V&�P��ܭ^/�c�X��ؘ��Y!(9e����^�V��VVV����u�D���	4Pj*e$L[�i;a<u����W�>'dDgWQ��)l�P1���	ܺo�VPߨ.�^����1C�4n=���&.,IyRQ��U)�����Xߨbzzo��:���v�=&�f���=�(^8v/�s�C��ͱoYk��n*�C��o��4������E{�e���#^H�޽�w<��g2�%�81����Σ8�{oǟ|�K����Ս%���>�{��r�G�����ʜ4��\VQ�-�k�0РU1��ʄ�^R7�n\�<�S�A���,�A\Vw-�}�)$=
$�a ot�E���T��U$XY�,��XY�3���K6�C�E�7�Xqʗq|�#dkzry����L�9JY�x6��/yj�k�3>Q,��R��5�&W7���U�~i�cF�P6���򰴾w,!�Y�
�.��<����Z�&���b:!��a���.p���z,�꼎jz��&� 1�
�{e}١����B��:�vrc%��Q����uS8��ѽ5.-BKٗ�K�z�č��G,0��2{U��U��\:!�@Ƴ�X/W��O�B�8׶[*��X�V+�Hf�A�Bà��|��h��4߆lu;m}��l*�7�s�!1l���&��M�U�ILm�oü��F�Ǯ!"�Gi[ə�9]�<��F>(��|uc.��{�ĺ��C�Q��2�W\���"b�vON(9�����иL�u5���ިmh����D�ۅ�&g�0F�
F����Ve]a�'9X�e�^i�0B��Ex2gdn^^ZF�AЛe���z-\�y�О}r~K�$��7���<?�Y��p�oyk��*����D�k1Y�˫��1><"�ܐ
���Z�4XȦ�hn�u�v��1$������͛�Rp>>:��������s	��L9�9��J�8]��$���:��v��.^[-ajtDׯɋz&�~�R�d3��٫�p۝`emI��#}�^kbe}	���14:��b^�oS�>�.kIٔ �V��8��P��'�neS��r��
O�$�ŭC6���y�zY懄�,��"�DXK�f��<T���k	��
f���c<�+Xi���?D�5�����E	�����n���=��i?(��!���7��!�ګR'p6�3�V�
f �?	����Df׽֖���8&���̀5��ٮL�;��Y�툗�u���A���Z7�~'}��k��TQ®�)K�<�5�4q��`c�=Ƶ�r�}���v�d���ܷ�����e��Z>n���&�1L�R�-�iP� #c*�dFM>/ϯ�[���ƒ�v!OlF�F��<br����͍V]ƾ��[����/O��H	0��|���8��u�a1ƅZ!_
��d-���F��k*R����A��1RT4T$�ސ}5%�J�楺����1���f��A�,$
����-{}~nRE%f0�@cd��\��Tܔ�J�1{�@��0��ܲ�n�ƴ$c���َ��G��OX�5z�[��!g���i����e��vXO5���6�W6� ǐ>�z~� *�YJf�-1$��C��f�
��|`b�8@Ǿ�6�f|3,p6����HK��|��#��	�5�Ƒ�l͕u��_��c�r��P�$#�k�8����]Ʒ..�����q+�7.�Ў����H��"~��Ks8��ɺ�%e�.���:��&v�]9�w�%�Od�!�2.�ߢ�/k�:�.<������'xT��7.6���<� d����8	��5��N��
�'�Wd��Ó#ESg��к�F�A�F���9��Xd��Hb���zx�z{��w	���zwXώw�8*k�^������`�$;�*��zy��f�����0�� "�;�ڀ9a�z<�eq��߇��N`�{jx�0E-z�۬$��$��O�x����B[i���F�o$Sh�R��$�O ?��A�A�I��O	Y�'��y��5+,��j(�Vp��1=���Dclʪ�F��4��P/�FG����R�dzQ$%Oq'�
�'i�RO�@��t�(�K<�����?j���֥�/���u���k2S���2��z��Nd�֭�a�~�D����Tb^&&&�,Y���Z��҅��f0-�m�!@mZ�bA6�u�(�Z�bQ6�c�J¼z2)f��39�R{��u\�<_��Ç����Q�� Z�o�CO<�����ph�n?yK�5��><r۝�)N�[Ͽ�c�f��e@����9�@���\2pƥl'�%>�k)�0�(�u\�|cI�'�x��(޿GN�Ƞ���K���q�CO���s8y�,�l
k�5
lO˂����K�Ů�	��\��W�����0���ڸ�W��v��ԡn�h��
���]�R�1$�8�K;�=$%�uG�|�����Q�䢡ű�c��ּ�-�zL8]c{L`\E
��Zo��o0�ㅰ����~IO���-!3<K���3	WF�(&?�Ҹ"�X�6!
@n!��.�u!R�+�Z���蘥����P��߶�MR=��ߢGZ��EicY�+d-p��&�f��`ȶ�N\=���w���D���p�#4�*xL���V��K6�k�d�����S�S�:k��a�2et�b�sz��]%�In��q���V+Rq��bi�m�H���a]�
��^+�+uL��u’4���C��s���"������y�LnF<�M��M�S�-^�C������"W������غ	Ɋ�C��|j�h
6Ɍ-�b�%�~?H	�p���r� $�n�,��̑Wp��c��K�.�!�����IĖ/�4t��O��:��fܠkK���~O
�Z��-�_]���^�>�A���Ǜ�^R���}������7�bD6�k���W��&PFZ���z	�.����VA⯉W޸�uY�|�Ob�����]�x�Mz��ʼ������WU�2o#;};�^�P�VL��dÚ¤l�/__DЬclhK����27�Ȓ����+Hg򸰴��eL�Ԉ��'>���E����2���4.�]@'VĴ��N�[�	P��B*�k���L�y�midM<���p5^?QI����˚2���kpO{Smii���z�L�9�so��¸z�{���_�ū�2mT0�M���5�9tjBH4�1�$K��s2G�pn~��ᝳ'U���>�k_�jC�U��t&����s��8f}X0������Yw��+'���3�!��W�N���޵_���G��'G����F���"�d@�{��m�=n�ow�Ay���B���c��C�#l��])u�|��]�[��Ɠ4\bv�&��W(�~y�W۝�I�y��~;�*Z��H�~dɠ�E�� k'�?���J��F�Z�B4v�n����7B��'��t�1
'j棻Wa�Y�oH>�k8�G��ۅ��Nka��������샒�n��-�,n���o�|f�[E���b���e��x��&�nJ�?��q�������xu�u�DC0��JL	n�J\�A��D0{m�.2���o[�7��ǂ��i��&(yӞ�����roפ���Gǒ�#���(I�\1��+h��u�z�v���+編���DܐJ�V]	�3jdl�ɇN(E��}>	��A�}+ی�j�鶌��`M�K&5�=W�-*�8vOo�������f��Mp���>𭧹o	W˩�J$Q�Ҫ^8ḽi��6B"�^*^	%ZD#�/�ݙܛ���(����� ��}V��[$����An:,���!��v
Xd��vӅ,Y&IO�~��3xg���r��-�`�2��yY�U0�ܬ�ęf_]Y�:��A�H�>W��}C#R��z�4�ڵ�8��:���<��B��Z���0�+�ץW�T���^�߹�|�<��p�VVqo!���-���eߞ�2Sl�*m����o]���o;�Bb3h`��:��6����f���>h�
�y��S�<����pà�6�9婺��C��~�YȎ�'p�zyл��_��$;��߯2W��@y+Kz�h�/��Pt��*��Y����4��
7,�8qP�m�
�[d�'�]0ϑl�Zz��������=���Y�&���/JA�\J@����@�O\T�&f�1�!�9U��S��]	�I�dEL'�z�����7	7=�S�c��4�����cժ,�|a��k�=�-FZ�=Sk�x����\�����
�n�3j����z�-,�Ng�r3�g�	�N&�4��tQ6�W�,����*48"���>$a��pd�aPv�7�zC-��n:z}ƕ��^)��
�<f ���$�Ƽu��F�$�����S��4�E2Y����.I�o�I�@*c85�|v��u��V��ϝ��|z�l���Fc-)���0J��}�
�����Ě���u/]X�cwߧ3!�avj�1�u;hj��'ɾ����������� )uM�?+�D9w�|�$eP����2Ac�/���t/��
N�9� ������d'
ػ{^x�YLN���p��̭U�`��"fƧ�ͤ���eϤ�$�M#͍{�Fn��q��ٌ��ô��I7L�������>s4�Y�c�v�^�l�M���֛!Q��J
�����a|�HSz10i�m�o����+@����Pi���k�"<�d;�`�&v��)�J����UʡQR�1zTgT�A�Nq�n>L�2CVfrE��l��9\��U�ki}^aJ�Ǥ�r,9�D���=TC"�i�o߇�w�w, B�@�p5N�J;��M"��hߔ%���l���تк�߹`#��Nd4��K)����R��(F���j�r1�ݍ�B�ph�:����g(�+�����v���,�L�� �&�D�ɵ�~8w��
a�0�e�Z2v`� ���p�����Kĺ�^>�?`#ܧl�w���.�@�%�¶ۓ6e��E7�ؐ�F�nl�5mflO��І�^�d^�
�RClbF^�eC����)�um{����\���\A毒̳M�rI��,g�h-I'1T(
�r
�覦��4����e�0^����M!\��!dݴ\S��P�rU��S����U����4Ie+qG�6ٟ(pDW�>�$�_O��aԄ�H���?]��r�2�ﭖ��*��G&�Ɍ��za|l/�ƚ�
�B����;(�-b��O#�����
�x�M�WCz��Q9�ZsE�wi;�u��KͦYǦ�9i+y�����O�����4aM6�AS���	,-�i��73"kʶ������W��9T+%%ʫ�/��d͹�K�r#J�4���Yw�CF����!Ӽ���e��xZ�� r��s��Q~5��P�5��k3���^��d��Me�w]�\S6��N�����^к��8���w��轣����^c��sP>n�P���+��+��vB�T#y�`��z#\�m^.���B�d��ۄ�5*)�F;�@�g�3�{�A�����_�mJ���~u�WI;d�?q�H�7qR�r���G\�A�alج|�
�;�2��ߨ�x]zѐ	�'�8�jڠ��˞L�Y����W7��G���ӧ.��0�N�.A���Tqd�,����ݨ�D��Js
���u���W���2}�Ū�+G�R'���y&����gb�]z�D��9��+6�DZֲ�U�j<�ۃٷ1~c+$�N��嗒�.���Ĵ�D��}^G�DS4T�6P�R�c��y��g����\���Fu��xՇ�ӟC�źn1��Y��:)��F��Z�5e�:$�����$��6\%I+M���`1��U�g�z	5.�jH`%�5i��Fq¶'�O���
�ލ�CZ�lq#�a�'
�o��wL��w�
���z��)/��V��Ǥ�쒺��OCi�H!3��W������Q\Z\EK��U�7c?�6Xj��xj�0�nMJ�\Ť���vM��xe�4�:I�*d�r�_���yA�f��=���.\*��(��ή���.�3��#�4^�5gS*}w,�Y������^ܹ�ËkKxt�$�8,m�\{R�_�!�d�(3�+R�r��^�8"���wL�A�v�ꗧ�X�!����U��j��Y� �<�� ����P/�߭����(��ϣ^�+B ��aLz0p���
轥�B9+��A˙�̛%'|;(F2����n�S��q,���Ֆ�i���7l]p�g��1�6vEx�^��q�-@Z��>,Kl'���2��d2���Rڵ���b|���901��nP5�����`L��2T]a��J
x�ưh�F���h˦�9�Y��&p:�v��W�2�Z:�A��r�0�a���+�U)�Y��]�`��R���^���LV�y����J��ɤՅ�,<���3g�t�w���.�TW��ɋz�8�Qd�u}m0��\���Y�����G�Ŋ����y���__Ş÷	Q�g��>��U�*>�vܙA���8q�8��P`P��#8y�<������R����ߖ�s�V�������32y, �j��I��e��+��ZP�V٬�5�=�CJ����a�=y\��W�_ŝw�ȞiL�ނ��
���Kp(c"����/��:�Ke��UJ!���O���D1����:�x�4���J���.dnj��5�3q��m��P-“<ee��(7�Œl�gf�X�`|b�J����v!$X
����;j��hkHPӏ���t�w���q�W/꣆z�������G���N����1J\	�J8�t�����R/ [k7��꺀����)�3�����0�E�u�l<�#Bn�{TT,�61zhI��B�A@���E�M����	��5�y���������a��v��Q��ѸK�.%����[cmW�ua�
�ñޒƳ�7�I�tZ�Y���w#�ŀq�{�H�K���]�)#���s����L*aT -O�l�!�ㆮed�÷�R�.�㫫��́�s%� }��Y�tS�GJ��1\�j���ιp����o���f�vQ�`��
"gv!�he�o�=<�q"���.��Q/�>��p��̎ӕg� $>��w`~i�!�XZ^�G�ҺI&ܺ7/ ���R]�5Gn�K�GF�(�z�֐yn\�Y��!���B3�[�ܡVZ�lJ�FF&e-1�m��v��L�r����r=ocm�.si��*r�"f�U	Ɏ̫mj�
���?I�O�k��,W�}O�ZK�b�k��C�nreӟ�	0��JS���w܇��5䅐J���D��!4���fng$[wS�u�a�߁lƕ�K���uGI�D<@Y6�C���g0"��⬬�F��mbU���'/\���4F���i��[��3��O`�p`�X^]��|R�V�����}�����M")̩��d��3��A�-�bb�V	aw?R�p�������A1�N�B~��'eYoP,K}��C[�!c9�^G&'0\���5��#�x-,��p��,ZB�
��`H�Z�r-����_��I�%�W�xAp3$�_��#����gA��~�_�N��H��h��UN2u�ʆF��ѱk��	�l��E�F��5����M�}�������v�֠珞�{��z�����kh@؏`��s3Ϲ���H&.���c	��k�=����*��$ՍG<��ѓ�B|-�
[I\�JA��u�#Bt�)�vZ�zc�ң 3V
�d/��=ltb�\k��w΢�X���r�MQ��:�����jk��Oۄ��x˯�j����!*�d%|�Tk��}۸��D��8E�y�^�#@5ٿ�T(�����F�D�{i�O��Ji."����A��2'ݖ�B�����@U2̻)��;��}�?����F��>%�S��6e��|;�
�r$bI|���C�����g��x˪��%�ץ9-��Y��h�Be��܌��4LPq��4$j��%�E`
�X��@2��9�֐�u�Ý��w	��
Cܘ���
$�E��T�'�s:��r�~��T7�=���|-��%���~X�G#�'m/�.�Kb��}�R�ԏ�N^�;g<Uܙ�L�����s�-7qO�§k���h�i�,{�b�4j9�^Z����[����*��qMp�u�1��|wi��;�Ĺ�qT�f1����䏁�sn`^���0�s����ٵULɚ����.-b:_��*��5��o;o�V	�kX�v���T)g!~��Q���`�A���=�yiМ՛b�$:Hz0��0�Go��n�K~�~�7��S�J���������6`�C�0X9?�߿??SҊ���dG�|�8\m.�6%J���2��%!…��	�Ν˄jg�V�d��[�=eA�ׅ��7�V�$��D�"�m�lGu�L�	�n�:_����S��MRcQtT��e%��F�)@=J�$�i��6����A��5H��e��j�� j���
P��'�WZ�S�h(I�m���ۗY�������q�YB`���nI�c�*[,T��q<��U�ulY�ݘ'$78���P��E�QڰP�&�G�uB�;�ۜ:��d555%�rI=dXV�6�{s
�LW��a�Tu[���`�XB���Z��y�*¶
t}~�f���koJ�J�0�+�d
q��㣏<�J���Җq��:���Y��
�G�ze����ƥ�
�h���K5���eК<��ʆ��� R�����WÅ$�L�`��9����1޿G��1.,,���s�:�:ۉ4���2���*���>��Ә�_���Ja�uh/j�e,,�cd�(^?�:�J��� ��6摜�&��I�$Fs�3�V鮐lqa�����&��VY��l��~�ړ����A7r�wA�O�1$HM�5{a$��x3a��p�M&��e����
Cxo����{�ÁN��Paf�g�ځ��\�k#T��k��pl��d�<��i]9]�`b�X�K_i��n0,1���P�j�I��#q��J'd�oՅ쀑�"خ�x|uSU�eo�
Z�
pFW�j}�l�ދ&c�!��|��Y �:���G��)�D똶�u\�8fQ��,�
�۔��ҏt�v�z_X�Z�BxW�8@��5utr��wO�c/4l��#��.�J&�ht+�F[�pSIe�X�BI�p��2�`̓	�Dž~[�z�Ţ��W:��%0��<��Y�]�[F��s�Hٵ��8���Y6(n.
;�n�\�n�U`f[3��v��ߖ���6g5X-�w�F�g� "�9��Φ�����;O�B�νlp�S���!��p������y���.��̗�I�h_�.�`�
y�wL���>0�Ka��.��P<vfj�鷶2�)��0��tS�-[5$ș:˥�t%�o�o��L��1����Z.�x��xɔ����:�r�326srөau�����K�5b^���gt>�o?��e�O䤨L���u)k��J��]̛��椾�zD6>a��Î��!;Wx�B��z�,�gf�Z_颬�\c82~�a�ӥهF'v�Z'Hc&��1&���
H
��>Yrc���9���Z:|K�����۔3{�ƍ�bIi�����=���)���aY��l@
8���0:2��_���_#	���u��?,��R
�M�ֱّ��{bH��m��J�5e��I�Å.���>��<�0��x��~�A��D�����{�AdG/�?D����5ޕo���t���,�y�WU/O,̯��
������&���7���A��,��/��v#�*��_��G?������H��Խ��1�W���C/?�"���%��x��HI��nmy����]�hL��$+�C����/MR���;�3+�8"s색<Dz����>�ËBh�Sm��y�(N�|C���1_e=JD3��J.�j1��J�e96��+ܓ[�gc���_��d[��*UA�kz^T��BYo�xP�K��):*S�2OA�#�<j�QH11�\�Be��π��2I���40k--_�1q<�'� c��5���ȟz�ؽ�+&���UM֘|�&����b��S�5XDf4�(�r��j�o
�|]D���o��q�W$���i<����[X��b���_@���,�c�bl�M�8�f��(�aH
J��{T�c��A m����y�����ɶ�`��'� ۖr�����:0)�();�$���\O��;x��U|�������0Ӑ�QK�	C	d��ŸTf��:~5������Z��{� ��^�".�n�'�S���qy��^į�sg�]ſZ����]Y��u\����Pc�U\	�o,��
k�uqF�{�I��7����똗2jH��
X�!���|��[�l�ȉ~s\t�4�l7�G��v��1��ɯ{��;�VLQ�#��`
�^V�B��0k�rzw�����5Irг#$9�<L��
�=<��q�������b��h[��.w
���Y`0��R4�k��3mW�V\`A���:i���=���x�ݴ���l�4��W��S��,��u�F� �:����M!"(�sM�f�`P&�D��4�GK]�H6�(h�� �#����2H�55���$���s���:HS7����ₐ.�kx��P=qS#�)��98r?G��D�A�Q5�
�ɠ�B���M�<a0o�M� ��	B,%D��<��lF"��򦮍�v���
x�Œc����P*9�i[0:f��V/��H� �rZ����X%�g�I
�])�cC�OdN4��Z��+�"X�)J�sna��\�_DZ3BL�㡻oE�8�.qe�O��eqen��(�
��'1<6��}�Gx񍷅
�t�Lz�SN頞;
7�)���ɗ����cF�贪���۰{$�ٓ'0.�����z
��Q,��ˠ�”O{�ƴzn6��ډ{��3/c���ܵ���8��#'��'���Y��0j�;���.��W�0�0��M9<������EdfFP�."&��E0��K®%��g�����}%3���GWd|��$Qk�F=��,��[:�۠�!�3�QP)9ڇ�D�ѱd"{�$Z<n}�Ƥ1C�)e,t�@d���ˀ�q��j͚�7���߂�n��!͢���첂�);:*Sg�zz�|��(���ͥt�o���Ȳ�H�묒�1,-���'S�*i[j��!&��hB���#n<����Jp�E�A� �jV6VW4���_A��!�+�3���T<nw7i�H��ea8��b��^z|`lA@�Y���*i�dSr��*=٤_����W���^|��� ��6��8d(�`�#��%��v�����Ѩ"�2w8�KK�����q�/ɤ���q��K(�Co�@�<�i�|a��&�czuH��t”AZ�t�,Tn�c!5٥-p�� ��d��U7��*ُ87��L�G�q7�X�k]���I\�m˃Gi��dz����������l����!�%\'����N��R��oDz �4�b�zҒ����@H�8�����|ĶOD������R�$��ؔ����#�(�w��*Qi6k��w�H���h��{��݊�t%��-�E_ͩ��
�g�h��Z��Cb:�	5�-l^�LN��6���#�(�i����-�8[֠N�2�wᱞ��摶
��r7��܀�y��Y���\U�����#�G@�?��t��[���ե�\{V"b�@��|��׌g{�=�:0����ċ��X�}6��ؖ���'���c��^P�FdB�d4�2� D\�;o;��F���t|?�c�}�*[�瞋���2����U�,��w��p$չ?4�����eP�3�[���.��F3���샞�_��#����p;b�fҍʵ7�>W/Ѳ�>�IuIt_�z�~NAiW�y�szh�F{�ځł\=��"òW:$l���#�:���%04������}5d��o�}K���qܓʢBKG��^l���+k��Z�\��Ó���Y\���@׾����L�*PcB��,��"��$���R�cR��O�kKwG���eۜ���^�bmܻ��XC��7��x�Op�ijL��$�so��|Vm �o��[R�Rם��{�A��>F/$J|c�G�A����e�#�����xU�kD�C*�p�7�{�H�0h9�21��`�1k���i+FL(���[��6��&�8��dp��8WoJq��z��uCU����I*9P�AU�Xh
b����-��1�EF%sw�=<�Nc���^CC�H�(��9i?3��t᪑��c���K��Z�G�y<�-� u�S�\PFn������qE�Vi�-��S�xz}϶j8'�Ϥ���x'h I){>??����Ǯ,��QL���Ņ�x@�z|C�)a�&��KB�л�%{�7��<���w� �w��)m�T!/�J�
�ܑu~Bʁn
44{N�y��'�ú�7�Ǡ��o4�o7O�#�cѓ����૽�
VNi�0�$:��:��3��3�yHz���9|
�;l��sC��G4h9�!��a��K�}7	6��E.,��b��V�	!���QgӪ���5�g�7e�w/�}������.o��h�w!أ�'���=e��*���
���݁�^2M��0I%�<�V���c<�>���1.F�Z�W�/C��֩M!�֣"��FM@GeUZB�`���R��=x���
ګ����q~U�UZCbr�����JF���e�M{�0��Jl�HFO}�‹��9^��7�TG�ձ���k�Z6N�Gy��}��c�
���j�@ˊǮ�o�zN:�X;g�9Ԅ��_Z/}2����$N^8/��ni��KR�jw�rH��ݍ��>x�%�xk~�lC���a{�u,-���{�DsɑR��^�x/=�J+�pb���V6dr��듟�����-�S����c'Sm���G�*crz�fƆ�*�$�����h������D�8��Il�3�1#��J�<={˕u�����v�
v����*�ej7|�<y'N��R��q�
(���� �Ma�QF^��{��I^�XY^6��i� ��_��
��G[�n�FW�7%ӌ�XH*Pw��2��PZ���1$Ӻ���?te�e��V�����!F)��I�

�"�|,n���e�;!�Nr�^�#�KIYS٦VS�+ ���Zi��k
]yrn�
�`��D�1T�,�d�G�N���p]���f��eWl:�rGq�è�T�<��McF�l�5(ZG-G
��#�PL��P�k���l��!����j��
�,�hV�:�:ƛDI
��*�lf	|S2���[G=��-]��ʄ�(���`��7�^+�*9���[�8�o��p�'�β
�(���F	9����k��\�m���+���)h�lP?Z�4��	�Pbl���
dҲ�֑Mƕ�&1�k���Z�H�tbf!L�4�9�q>P��w8^�s�2���O��q���9�Q�Y���Iwt^�t�%�tn���9t;[��i��bL�N��3�.^̛-}�7R�&�`�P�@�sjfSoG�H�\7cz(��V}5)_�1ݸ`�p,��OL�eތ��kR���l��W��2Zݻ�>q���v�N�I;i'���lw�v�B�y� B�5�����f@����y#�m�~�ƀm'g8�;���Z���4�a��zH,n]��nYE�G��"���
�&0F#7z��ˠ��G~D�Q�@��R���/��~�V��ہi;�LT��>���;����+�NӘO�ʺ��%
��0���I��|SΡ�ݾ ���I<�tp�'�i�FSX����+��0���8^:}
Ϟ��Qٻ���n���d�̦qq|�|�,^�s�n�쏥��"��Z��!�g0�F�Њ͔{b��M�H�眸�'�&�ߔ=S#f<�5%7�g�m�o���)w���Trq�1�o��;�l)�P��0Sy!NZ*��}����S��!�*���==�{�/�Ÿ���%��Q���
�O���5����h�¾(���SE�A�a�O�A'��:�Q���EB���v�a�J�����U�7Tq`ch�@@c_{��(�g\��.C�
���nXY-��ò1�38,ˊ��$�߱�o�#`�]W$'��dp�T�C��>*tx�� /�Z�+7CZڟ��a:��E���$ro-�;������%��I�|j
�Qի.؀���Ng��g��y��:�XG��K�{d�85���.๕���l5q�ɀ�1����7�������9��c��c���^Fe,��`�y٪�	��\Dz�'W��o���2>�{
Ϝ���f�_�z'^=�6Ns�K�Zi�,Q�nH����
���p�D���'���+�F�R�����d8~�~+��d�Iֻ���P��z%��˜Brts`�x(�a_-'�zx0v���p(c
Z>??�����z�v��RWT��~|60���Vz'V7�脒Rn�Z�X����^�=*,x+ʹɩ����
�So�����z
�E+lZ�ӳ���g�x����\2���(+�9f1C��y%8G�Zd��W�}�W�u��j*�3��L�kKx�g��"-�4��Z���nr�K@w�
!�鄀�e�z�y��'0�|]@����Z���=%UKR��Y��0�/6�Z'�\5�����%�J;8�Ĕ)�֗�ia�l��y�n�(���{�e���(����N�����u~B��vX��9M�����5p�0�9�GF��_����A��%nʄ̉f��#{}�ő��7>���n��kp��}��^�q��k����$��s/�y
�=���|Ӵ��+;��x�샷`O������^�1��1��(/�����W��#hvt��a�Q��B�"dGia��Wׅ�wdrMc�y����W�z.�]GYH��WK���,X
#IY/���1L�@�&�D��ݓX�����#VP7-�2���ő�	`ߩ	�S�~tt+�kX��?�Mb�
��81OLLࡇ������Lp��{/&�{�Wp��<>�ұ��Hg�'?���Η���k�.�y�]
�?q�N�R)����z�ϝ��>��g����3rNRȨ[q��!ԥ����и�������-��ēO鑖�n�+��OQ��&)ޢTlj�\�s_�~�쏰zmA-n�R7?�˿��x���k��K/�~ƾ-�=b�$�T4Xy�ĩn�4�N�*5�����D5��ܷ�cOȘ@�-�"��>WW&�r�.|��d���O�+��G��(�0M=0��d�!
��1@��P.�{�o���P�둜�mR�$J9��0�y'��ǃ�����1�Ga�)�_��p�ͷ�����*x��^FarXȏ�C$�(;H�L>=�AC��X�~�^�e|��_�x���ԬZ-\� n<D~�s?�qz�Ʌ�V�o}[��8���Y�*�Eo!;vMN���ş�ٟ�||���I����[obN���\%���Թ�{R� f��Pf��~�!��������P\l=������0��@�0�
��z��e���-cQF�mz�e�9%��"��p��I�s�Mǜ��ɱ�	�?���O�?��M�c����S2�A�&W�k
�ف}H�F�K$��v�N�I;i'�l��t|?Bd�^�?�>��7��^�Fy��<�z.8�V�~�M7O��݉�� (�׽��>7��.r�ݻ���VŞ��պ:L^��c�<�{�A��{��% ��r�:�}�����ポ(7T�4��M	���{O*|�}�ݗ9&��8�֎)H9"@�!����
�.
J�A\�I�<L͌c�\U0>%��R?|��YZƒ?�E�VESp�����
��Ͼ��r�|<��fIlȞ�
��=^
{�[&.*-�k�!:���y%aӦ!��
�(�HIe���Q��kEG��3�P��N��?��B��+V	�@�u�ΦQt�^U�F�����#ܟc�׿ܫ)�m�b�5�KJy�UZ��ǁ�ܳ�~�q���s�֡T%��
( ���m} �9�� y۱�n�=S6�O�14�c쒶5�Sc���ݔ1�g�E�1��%�=$�v���V��z8��c�J��)ώ?t�^ӳF͞
n�6G�N��g?���+��r\��Đ��~���ө$vٴ�|Q0�<����q!1&p~����?z���u|(>��d��,��0"ĕ7SğVW��mQ0��\��,�ת���o|on�>�O�g�U��3�2��
�*ux��P��@�%�U$�ߑ}��//�C�&���~p�~��.��K;>�Ƞ֮��b��O����,�ã����������b)ff�T@�x�g��q�F�]�5��-�y������W�onx`�;��;��CH
�zyл���IvЫ���~||\_Iv���x��������Po�����̌c_�@2�y@d�
-3CP��Jd`+뤞���b���s��FH��kn
�e<)����]�$$`�뺮a��VމtU���\iJ��MV9ZL�	kX,x��*�rHB�w���ds
>�Q9&l�����j���(��u�E`zem��9I�~�G8v�����/�������=��gO���
ems$Q|W��/]AZг��th2ύ�]<#�����8�lt�ZU�Sھ-+3�y����G���N��k�3�L�c�@c~���b�!�Mh�m�u\%@x��঑Dc]����$���p�(Bo�5!{��dR]YA���A\�4! �����:�i���0s�m����q��O`�]c�=!��V�3F&���qLJ>��;�b�ݷ"?3!��(|�{�n|������̓�����GO�����*���?�Q�Ľk(���_��G��sB�h/\�x*���_≴�5!+�qx�d�y)OW��ؽ� �tF�q�޻[=C����/�,���aH��'�㣣x��͗�������z	5Z-��u`�����q�÷bd:��WߑA����3H�dQ��(��������4�},I/	F,h#M�(�P����_�/�Qϔ��S�_^G�O|�3���q�}���3��_�E��C�5�a!��v���g5��OZ��=����A��m|�~�<� �ڏ{|�����$2��-]���྇�ç�sX^YR��/���ȵoQ�Njp
{��,.cr���<����B0�Д����5N��4Cy��d�N�8=�����g?��ݻ��ˢ-퐄Ǘ��5���k�6�%!r^}�M!G�Hf����2�"�d
���,P%G�Ŭ��U�:ђ�k
�i��ҧx;�)
9�GZ��k1)��xmI�8�~��EA*�E�!�7uA�+��߈fFB�&�n��T9?z]p|U�-�R�i!z��n�uZ�S�o~�7����!�3`9��B� �q�+�1"������[ػo��#��[e�N�?���Yt�d�\�$P�0���y�g���1�Mɻ'�W�..X���attD�-W�Դ��̌!�0��o|dY�S>ׇ{��U|���>��b.�B&�A��y�ɳ�ƀ24$O���G>���r����i�-	i-�9$��d3��B���Ca��l^uiY�A�j��7\<K��A@��@�}�옿e�Y�h}o�R���=|�V�r�����<7�I�z����ȰG�ё6���X�q���3^'�]h�l��a�I�q�$��R���u���d!�>N��.-���lb'���v�N�.
��5� �����A�	�t����s3`G���g���}�HLeR�la�ߴS��kO��h\:�A��s�n<?��U�k=Fe-����U/9�b�q#"��o��mP���g���%E�#������Q��#kv�7�_0�#�A<FC2W�F��s3$"�$C�$�2ncC��GWb\��/��F��H�c�ˡ��3�w�LEY�
�1���Z,���^��=�b���O�B@LG���0�/���_�Ŋ�P"��N�P$H>7Ih�����w��Ԋ�眀b4!�u\��!�����Y�x1�e�`�|&`��ǭ�}`���'���7��諲�(�J�T���~���׌5��K�]ݣ�|���X�m�w��϶x/��N]�s���*�{g�Ƞ=D�!��i�LU��tL�X|-���G G�a�`�Q;~ǒ�P�r��辜�3�:M����5$O�燑9��>�*
*��-^����A;.1*��>�
�cH�ۮ��Xw:��xmt��7�;���֞����G����~g�tGq����dc���3Y$Fe?(��3$�{VJS�XP��;��?��U!�Z�?^��l
�)�=�{?��.�Ə�ְ���.�c����-'|w}�ku|Ap�I����E�
rP��v.��!�kpӺ xڟ_��%i;0!ߝ����SE9v���v��n��:����3�1�,D`�i�c�y�>ُc��չ��?��A�-����Кe�کw>��a�5h������ñ�G7���C
\��޼��LvBI+ǃ����g�~G�&(�Pڊ���.���D�vԐ�D���d�̶�_;V�
N�R��o�x�:ҸD�$���6o
�n�7�{�iB�]]P	��ᖬბaN3@�|W��
�w�Q���'h���^�@ؽ���jm��8�?�Ɨ|+bI��e!�?ŏ^y?��ϪK=A4.�L��I�Y&�X�I6��H~S��ה�V�j�������+�ce��><��e��/[A�D�A��6���	,�e4���=a�6f�=?��z�Z���ի�``��`]��tPrJH��f�V]Ȩ>������.�R@�TV&Kfe��M'd���
�!�&�����sF@^�M΍ ?��Zq!=ҳi��.
����#�����o}��7p��E<) -�CNG�M"�*���?���@R��c�1/���S�0���{P�U�v�޽2�y�������q�w­o /y��i�/\�ѣ���铲�p�|.�RF$/,�!)`z @w� �ܳ�
����K�֩���g-j�	�.�A�ٌ́���*�Ժ�ߕI�����6�6ǂ~���[^��?�#��]2N=�܏���#�(�B"�Z|M&�[���^{�u�Cbz��[o���j�!�z�1�J��\w���(�d5"�:w��կ~/���Z9��
n��.>r#���[o�Y�ٯ֫%��ې���2���kf��K/amuUH�O���.�5���n�$?~�/����ϝ���!��5u�_\Ɓ�ȓ����������e|���xUmt�o}O}�)�]�x�y�?񦂿y WI�ZU���쐠en,31�c�8��dL7�:��a\X�?i�"�pHBB(�cI!<�ƪ��|���UTډ��sCL��\������Y$6�?���a�ٳ>��~��O����B��{z?�ec�O�hue�B:�ԩUѐ���͓BpVe�����o��_�3�>��'��|�<��w�B�-���x�����o�s2���{?��O~L�ZϾ�&��������5�w��,�}!�>�t>�����*'V��]������|��r����������]���?������]����[o9��{��!!>������<�5!zw���y��K��o}�۸*Ĝ���ѥ3�d*(�(��}����ŋ~�?�N�|�5u�չR�zs��Hg�����q�<�K���{��x��%ĝ,?���j�����t鲒>��"��=�v��6���sg1���G>����
�2�ϩ��k���'�ﳾ}��衔���9��v�N�I;i'
J�6�H���|?�y��}�k�;����3t����z���x5�s�w������&�M�M�|��"�q����lK��-n/!�[��=��2�Q�ow�(~�@��z�{��ܨ��bSOX� �Z�݁Y�k�H+P`���!����uHH�Ѻ�.?"����G1��k�7+�RV��dD(,d�r���~o&u0%{�jWe|�GFC���e��.��jS�xF�!XcPP��	#��^���K�}��B������e^)GLYd��1���
h-�g�1:�|v�~j|%���%����[��Xm�Ը�Ķ�� &s��h<
J6Q���a�UUaj���wl��̜X%�c��Giu�ʃ(7[�6Fn�D���z=몷yo���m�WW�E��8Á�}�h)�}U��<t����Ė������\���B�h���\K�A�����F&����d�1�#IB�z��'��X�J<ۡ9PA�+�ab�8V<�����9&'d��
��I�2i'�`�Ƥ\�(�Q\��܃��:V�&S��"㩱iK�������Nc�\���L���a\__Â�oG0�d:��<��U|�Y�C�Q����XPWlr\�ƶ涰�Ic��4�ՙS��[ೣ����y�V^�CC8���q�Gc\���
�gl��Y<%��gF����ٍC�,ޖ��Z���K��`���%�36�_ܻ�\<���]�g��ūX���m2�LQҹ��x��z#½��~�mG��[K�cR��$;{f4py��A�����
%��g%=�����{7+g���R����?��5|��\mH���h�oF�w�
��z{D�3\�~��ah����z���.p����vB+X�[! �?zl��5y���a�XW/�����TZ�$
q��*�o����X=N�BPP����@�q,�%ǭ��`I@ʵZ	����������|����,_W+�D!?%�c!�o?���׾$L
M��17Z�F�t��R��.�L04{���ʶ�m_-Q�����R6��,O�-̿
�Dj���a�D�%�B�)�աJX
���y6�L$,�E��GFFt��l&&
I����J͔����A= s5!:��:>�SO�?��x��Cl�77$p��8�d^�:+e�
��t�Bx$q��*�������~d� �w�=�z�1d���)��'���_����Oܳg_~_�ȣ�{?�)<���ʕ�8��;;�Vv�+�}�u\:w�8����PՇօ�:?w�����/ ���s'�̞;�^{��!�t����K��˯���2��m��Y�׫HJ�>|�(��9=>��ɽx����o������0=6��KW�l����_>7Kutjm�b)��Q��T������?����
6!�pC��/�VL$)��(�S�����w��m�H)�C��R�a��<~�w~G���(����/����ѱ1��s���-�W�����
8v�-��^�_��_�[�	���I�E����͔9^/�P�rlj������p��cxj\ږ0���z��<Z��r�m�p�)�������{8*dמ[#!�����ĊWW�>q9��M�ݲ�-��?�$^|�E|�����SS9�?��/I�H���^!�Ξz�.^Р]�oRS�M�	�����,Yd��XͶ�CBo+���
HIQ���42�{��f��pn�u�E���/���B^�BY�
)g�d!!gU
m7��3n2�	�Q����o����xXH�B�ѣ��_�Bvp=y���?^{�5\�g-m����?�F�d����[n�g?�i��왳*���C��$m��\i��I��ǰ ���=$$�8|�=��N!H'��?�d������'��X__����u\Bꗿ�Ӫ#:Q�����W,.��2Y}�C�����*��C��k_�~������g1!m�Ѭ��N�L��zS���E!q��7��
���$�~�w���gp��!�p#ٴkz�LƐ��;F��۵�2(Bh8����
��9w�_�Dg�`�7�#��c\ۏ���yB�'N��,��:s挐��5_�4����0P��e����
�>}��7p���=���7��m��سN�=���C�3S�7-�}Y�Ν;'��
�E�1;i'���vR�%��;��� �x�=�F`�u�6@�@��z��7�����=f�r#0�|�i��ٿp
�� �lz��|��-��q��5�@7x�sD�ԛ�~�5�<�t3DC�t#2ciҏx��:��W�Nz%����m��9�b����BE�pÇ�	��f��ŽŜ�UT���d�b`rA�ө�<��U|���P_h�s�Q<�1-�'�ٗ�����%��bUN��Z*��Y�9	2.��@��9�=�;�4����H׽������Cų2K0>c��cd�Dɨ&�z��B`���<z���?+��8L?P���e[�Lj�3*��I"dOʍ+֦��1��U�9�:��fT��TM��:�Âח�SI�*��2��%S�=OڨJ���;�W�KƱ%y���G&)a�w� �:~����F��^�y�(�	�+�?��c�[#7�ZᘸA�I�a�'?fx\��b�,��j��Δ�r1!�⸫�Ǫ�V0�O�38 E9%{���4F���p��.T��i�OQ�tK5_z�"���߆[
�wһ��N
��vK;><6��\������[��	��Ģ���@��L���S�J`��V�l~$dE65��KB�$p�S��ZYH-�8��H~�#�)m/yٳ�Y]¢����p�0��=��:��EL&��H��;�FF	2W����~��I��Y>��e�`��x�P@Z��,ۛ􇼍9�^����:�F����;����>H�#$5�e����G�x$9����3	Kz6h�zyD��86py�Ci�h��k׮���|��a�b:���f���$, ���nW�js��rT��!!B�Ar;�w/�'K�JѰ8�����Tf7MY��*�������h��f����Ů�u)�#S��di�=� ��bAܺh5<���w���Pe����#(�+�ZZ'��촶^B1WDU�
��$�+-z8!#|M��
�;�v\��)�4�.-�
ۡw�;�%�i���4��r�xj�@���n�� ����r���ʆm�+��J���W�ִ\%���`F�u�H�
`��s&�K3wB����y*�C����'4���C��j���$���*ZUax�_C:�����FF1>:-KV�sZ� �I2NH�,vC�����Xm��S�
F��ȣw��{��+o�����i
G� ��A
���Uٝ�)L�����n0�}�A�}�~��B�Q0�)�TANJZ���F�^������/����<���d,7*� (��ܬ�똀ނ,0;����c�k �-�x/|�9��C�%�MUf�Z��W�}!��2��x��1ŭ9������I=����װ���	�)�4V6�2�u<x�.\���)�H{8( ���2�
�zH�p�����N!.�
rmhԫ/�Z)aY���Ǽ�#��9|�\���eL�x�K&4Ps<3���skc����,�O˔�g�U��Ԛ5FZV�ȫ�g1>5&c�q+%� 
���g����}�5j��h�k��t��
�(��$^x�G:^��D��v[��*mZ$
(�(J�u�e��a	iK$F�C�aIZ�S�̊�
W��~n,�5w̸�	铌���
Sm��Ό��h��!��Y��#N��"	J�ލ�����8�������_����@�#J�q̍K�9��<q_�!��+��G}�ǿ�'}HI�KW�𕯢T��W�֯�&}��^��>�)����K�,��Sgq���_E�bJ�hX^^�	�|Ό�r��{ߕ��J�x䱇PB3Oy*�VK>�
�F�z�-z�y�|E�ۙ�(W�B�K=�sS����(``z��3�K$��gǖΫ�&
���e��w��>��n�X�^:u!�|��szY����*G8-}�3GJ�(��n���˯��n�����z�Jḯ�,魲j��Ř*�oB҇�e�3�z�5!͌ �:�{{��F泝��v�N�I;�

��YM����x�=���Z:"TzI��kE���>��1��3���p3�� f��Ǡc��F��Zʼn��
[��{~7�
�m=�fH�޲DZE�L۵�~��L�GI�~����{��>��Kp,c���q4�r+B��C���p�m�k��g�����)�T6�]E*�T�*^85����73���e�%(_��w���"���uZ$܆����.�iCNv?Qal� P+J0�Ħ���P&~�SR�U�
jS�a��[r|R��%J�R��VG�Hx�r>�Ĕ�NsT<_�SJ���m��rK�۫�X�1R�$R���,�$|��^��爐!�/�hP͸��q-��|�oG������=��Z�L#(ڀ8���Y�wz��91�?�x��\�v���{[�T�ה�B5	'��w6Yf�{,��|��ccC��k`�V�ˢ}JF� ��02f˵c�P̐�f�i�&{�����n�uxϦ�ۅ\��0"$V>�1h�����%O����ׄl���:����r��Ꝋ��\�(�k�
|���I�=�ow���+�CH�Fr+KKBV�s
	q���5)�����6-8�Pu?���۸�I�x��E\^]BV�c<�Dž�
��y+Rܧ\a����qay�h�-���2������>)m�v�R��/㳹1�YY�-�c���N'e-8��n�xG�y!=܁s��5Ġ97:��[��~k�A�X�>��d6$9�_Ee���dG��ls%�AY+��J%%;�,��˃�m�r}�Cz`�O��%�l�r}/D��8,PY���HA`�r�XcA7mT�:�Xs0V"a�qG-��"�[�0^H��-$h�
�I
`D]�T2���z��xv$��{'"���m-jI4S_>E�Z�'H(�b&�B�('0�p�Q����w�7�����J�	.,-����l��(�S�S���HM�JsE�)�Z�&c����A1-c"������@��F�p�
y6uӱ��%(Զ�2�en(!M�gK%f��1�Tt=wx.�e�Y/���ߖ~g�)�C��:=
2R~kkV�?��],�佔_���{����R��	a�K���G�2$�TB�v'*:vZJ��!o��i��kh
X�P�,�J��bm��i�w8����r$��C'�B�.J�ȡ:w��W�"�Z_��
��=�dž�ѕ3�t������ąa�PN��e�`9r˭2@;�95d�y! �HNjCp����._����2���obj�Η+������Mcy���m��i�/���'p��A�
[��-+	]�Q2�PG<H)h��9�_�ٟ��?~_�ï�B"�)b�8p���is����r�)�ک��bx�
�P ���g��}N��|�G�wj�|��x�O��o��;y
˳sx�Gp�I���SR���Sm�	`��O
���f���o|Kˁ2Vi!�p<%m���+_�S��_�
���F��%!��q�3���$���MH}PV���&dx������)cՑ뮮���-�I^���������O}��{7^9��>���J�V6V��s��	�����59�������|N���O|�c�Z*�Šf싔�s	��B��uY�ᦇ�B$��RK��zs�rY��_��l�L;����1n�*��rƽ�c3�}��J�yR�s��T��qHb}��'Uf�^�i��'���������3��z��'��cc��1)�]2/Ud����.��5!?��G�C�;-�����XZZ��o��7�|��{.^���O?�Q|Dʻ����~���0wE��W_}����&����~쓟��|��Xܨ��_�����q]��z�)dGM۪$]d,���`�RӅ�3o���_��)�?�җq`f2.U�(a�C��Z�vwu~Q����_�3�|
�?��x�W�~�W��2�W��U��ճ6����������[��C��l��6���vA�X�+�K$!ff�O|JH�U���kx�t|��4� ��-�:s	�ΟG1_���DE�Xے��SO)�5w�2��.�{�ݸt���s����h��_��}���j^y�UTd,c3&�٩��e��w�N�I;i'��4��M�,�ہ���F4_��N���=���{�툎�,U� ~��@ӏ��o�=[��z��O4����f��׆nD�lw�h~{�_��;�L����
MH�j;���*|�e�2�rp���O��E��ã)$���/y�$F��e�Rdž��}��N^죉O�^kZp����k��9;ǿݘ�Yٗ^�~2&t�CF��&���ݟ��R��a}}��:TH(`�P=�3�
*y�МD�����L��{�cD�\���Tj��Uq9���`.��Ϧ��o�}Rm�GU��^'$2��x�}h;�1��YϠ�1z��^���AU�S/�c��1��S�z�t��}�_G��i���"�n��L^��斞x&��i�Lb����i��vצ���L�G
MQՊ���ؼ)	����^1҂*U���ka�3�m5�ѷ�
���'0J�).ϔ��&��ok�8$%���GpT0Na[3�Z���K���6O�Tm�w��_\ĝ(⋂�="���.x���W�p���\�7ke��RK8x�<~�֣(����<���Q��
���n�J�h:�K�=����ͻ����5ƭ#y��8�����+)����N�uvyO9�7O]��F
N.-����]��U�R�u)�
9/__�o��/_�CB�TeO�ƵY!8O�+h	��c!_~��;�w��̵737G��%�]�f�41�q�Z�֛#?��dSHv�}>�׋/..���A�Ⱦ�����LBzBz��p�CH��p&������O�ӱc�і���)]zz����E���@goI�XK��-�
���g�W��h�R�=�rޕ��A�ě`pb&�$3{�0E"�T��<�!m\�Ҭ�����H�aH�Z���f	o�x�|�ê��B�dS
n2�8����z|5���J�	�$hv]���������$d0ݛ sLl�0
�4�D2�.o��Z�3j��/،��-W;�һ�nd����և��-���<����`ô�nH��5��z�JX9j�k��ƩS'��)+r����?g�au��h�ۨ�ui��nV���e��`�*X�`tRФ�����Z�SK�e�E"#�e|JEe�;'QƱ��bV����͐��H
{��)��a�2�Ƌy\��6F���'��<u0*�ɸ��0�i7+ϟR}zz�4�Ys�W��_�$��o}W������%ik��YW4���Z��5�w����;zp?օ$�4����l�+�+�H�3�W���⣟z��ղ��}�GR�U�Z|珝CQH������R���1�ߒ�5i?�w����o�!��*�K���zk--/���1\����w�x�C~�>.�����1C+q�S+R�$8��F�\FZ����u��.n�ה���/u�!�I��{N-�y�o|�+J4\l	����$$�r�?\�]���'�9:r��S�4(��oK;-�]��/�Od����ui�����{�#����[���+�5�Κ��[o�ׅ�~��Ǖ�����_/)�7+�p*W�<&b��\�HWAM�TAȽ�J]%hq�.��?��@R—�V�3��%�z����,h ��"3������C�q.<��f�󬥤ϟ��f�-�kEʟ�G5!>x�|�+F�u���rY�rU%
O�:��.
���_������+*Y��3?��Kj��V�h�w��=�����\�:_���`]�n��ex�5��o�3�~F��6��_�3\�2\�(���,�븲��Ss�x��54��H�x�sBJ�"�Lb[����A��
$x��K_��LL˜PFY��R�g_;�]�'��$.�_z�-;~Z���;'q��uu������o~G�W9G�cĸ!�J4+(�j0�Vcaa3t��w"�_[;ZX�=B�?������^��C�-����?��R�B!q�_�ÙSg�^k�ȏ���?�v�!�Ԥl�.���2<�w9�2��sg���f	!�W�Li
�����,���K�G���|W����n��N�>z;i'���v�ͦ^p8
f��{S/X�y�s�K���G`���h��{r#b��o���K
�_��@�A�F�t�~y�WN��� ���ە[����H�~ԍ�b4�+�A��!>>�)�����p��zwx�?sC*��p�ē~�%S�.�,@s���l�D�)�$�0v���?{R�D|45��dž0,�]�b^�@�cm|s}�� ��"X�v�xFe�o�){Ĥ�2m�x<0w��",�k(�D��"yA����ƍ`�8$=J���C܉�8��n�GE(�͸U���n����5I\1�I���f �f,ƺ����4�w�^��D��g�f��	�U�JĐ4�wJ�3�%IWȷ$��/a�s�H<�(��R��`�PPR��X-�zf�(���V������K{�x0�3�$�I
���zu8A�N���U^�(���?��i��B��⑌3�G�,����
))&8�\��f��R�S�iF.�L���;%��Y��f�Jti̝�J������_��g�pI�ytfC�e�Gw��
ɑ������m�h ��^Y�c�x|z�n�q����N�›K�e�.5�e�Q2�)��!��wd���<83�GVK��2n*b����<܊���-�cyoH�}���G�E<�o/�}ǫ|q�^\�v�u�\�}u(.����;}�������ۋ��EA���X�>�
f������~�}��7�����H��潤X����A�1<�WJQ�}(iM�g��x�����G�zv8��X�JťW��w�c=;HvhKz��΄a��Þ�A�:�v+&&��@�b¸uт�$��w�" fH�V�g�l�c��|?�7b��9�|��tT��������>�k��7�LFA���Y�`澉-B���f1lM���2�*J�����.�mS�L� l��b�@e��216���d2i�����P�r�%`$��VC�!�(��bƥoCF�D"�G���.�eި��-/,o�*���`�*Yt���	�d�nI�n!	$�%aXp�7}XG����w#���wl��,_Z�7�����T>h���سw_���Pȏ���+y,�ֱ�� �������Kػk?IQ�i������-�������]��kjAБ߳lӵ����)��-�?�>j�O!?�Cz|�4J�9N�'��9t+H#?��H��
�>���R�u���PRZf��Z�Փ�-�huu[��;�=��WL��	�qeqtf�sXo����c�X��,+�"&!m����ڪ`�QƈLbC�C��G>,�:�]�y��g^;&��Ơ���ū��5��� u	��a��G>��SR�p���ԋ�E
��0������GO]@qz$�]��pa��� NI���X��6�h�\�"m��i`Q����^#��$O�,0*�
�.�/h�3ZD09�.�u�NoZ�к �б����ã�i��$���!DMZ�R+�K�*7��}���Ui�cB�x�/�E�+��!�/_�(A!S$�� �@Y(!��g>�/��"5��	]��u�늪��&��`�H��F���!�K�%�j�Gk|��)��:�V!PmN
*Gc��\h�#�uU��L��gW%�<,.,(�n��j�PL#	���“2X�[=�|@���=	���*	]��Hq=�g� 	%��V,y;w��]:�{M��t#S��y��9],��l��_�z5���
j
OH���!Bg~U�2/�d-Z@���bvmI!�]�ce�|\�rUϲ(sZ2��(+Q#���VG�Ԛ,�6���B���^*)1m��,��@���B�n�r�T�j�s\'"�Invsa��lj�-��]���n�=B�_����5�y"%�sו0���&�F���3	Ħԓcc\)��
�<3�}>'�]�1ҷޘ�j��2�	J��
zs�i�GKHsǔD��$�����v�N�I;i��KhD�S/P�+�(���oH"7z�;�h�w� �"|�ߛ�A$K/���z�~��{�﹣�~o���^��;h�-��@���Y�z������{��V;郓�_�C�de�(���$e��۽����L��MC�r琜ARH� )x[�2Bq
�!;L{�*Ο�Ō��?�w�R�+�&��k�g�~��ク�'
��x��Ӈ��X�}����5bo(W�����-kT��}TN�9J�u��Ҩ)a����S`�U@�QL�S�z��ܓ�2het�������
6&"I�'n ���$%�N��]y���,XT�qB�� wN��͸:�a��C0�k8�LJ�$���z��
�p���u+|vX������g�%��c4.$&�k���$��h���|u�S��:U�E��1R�7��K
B�1c��r�AǬ��o\s`�[L�1�Zܷ��m0s�\`\�aB0�{�	|��ƌ<��l����{H�шaVp�l&�T�mT��]o�;o��[�פ��t��{�$jB�,�1���I�L��/Np�k)��F�Rf
���X���-�׎���Frxg���jw�sx9h�s��P#A�>��9ߘ�����!|vz/]�⥅�ghKk+X\�%�<�uі29!-����~����,NTV1.x�_��`35���r���嚴�o&xߙs�Ȟ<�Q�j+��7���<Ӭh��(7ZD��9��\����o���^�7�����#*a���;��|��G�<���<HtXI�n�T*�����U�`p�6�3��U(a�Z�˃��;B�c���v�n�q�˖�V�AN�h;U��k�Z���i�����ӫ�e:�q~�p;V֊��y���g�W@�U�O��<�IvH+\uE�h�����x�n�t�;���m��%a�NbAUj�e���8��*LuY��e�7jBh��.U��8&�H���(
kH0�&�k�VPG�
��LM�159������;M<+��[#Y�\��9���܍�Ma;My�v]�Z@S������K� ��y�d�8]O��14~_��8��zK˜Lo�ڱu�B�Y�D=�cd���S�==�����OZ�Lz�(wcM|��O`zbD{k�!�@��.�-K��ʠ\�#{P�#S��Y�1us$��1='�u��� k�ZŬ��T]D���������5����A���p^�	Q����^�ҩׁ��n\���T�FI'�X2�Ay�Y焔h���M!7�K���,�(�]@����l��ع�#���(ɠ]��j��*$�q��K�Z._[�IM�@�?�y_}�3�����
N��N!��D:)l�]��8��R�2'G�KO�u���	/��#+�������j5���D�ߔE�:����,_àZ섮c�Ђ�Fc
C�l���wcL��L<�$a䖂�D�Z�@'(�4ޅ�1We�8�W�K�?:dŔ��	y�[x��o�%|J��1�2�+��o��rS�ʡ/�aikmۏ���#����������rm�-�ţ,���w567iM��RMHY�d��:6%�t�
d�ۑ1��̸�k[ˑ@�O9F�.�hU� ���k+�����l�Z���,#��R�q%S|�\�l"y�A�����ޞ��S�&�=�CX�A�Tт�V�K؎��dU¼Jn�Us��Ø=�l�J��|��9���:HƓ�X%�]_dmv�l�s���`�2	�6����(�S@2Z�t��+��\R��/���?�32\Kc���<�6-�bZ��Oj��	�n
�zJj�(�{�1P\;;������ZrL7�s��zS��UHb��}o&h�5���4ㄫ䌝u��	��d�Z-�ъm��f�F�յ��ۦo�������\pKٳ_er�ʦ�tui�Fp�l&�2��q���$�v�N�I;i'��R ����ߘ�Qe��{���K��^�<G�k������{��w����E������{��1�[�7{�A�_}"����-���^��u#bf��[F��e��;郕k�Qܗ�䠪@N^����Z_���SAƒ�'0>��A��L�.ܬ�Ye�<�����m��4�LN���]h_+�E<�n�w;%�+/�U�8�z�@c���\����,��7��HИL��q�cT�9&n.߫'��Ƅ(��K�1�3�^G�O�͎!�-�!#�ʲ���TI0�u�_M��e�i����6�O�yUUiq�k�C�[��k$I#;�S�˵I�P��뱁�֠�t�}=�W�}�*�w�5HDt`�'�t?�� �A,�x�н`\>T[R�1�`]�3��^)��[�cx򑛁!&<���A�X@��`�&���}G�Ṭ� ~�l(�:]�����$I��\�ap�I��ZI|���ϴ38,{�1�,F�i�rH�K��}�D��X����$6$O/�X���o��\������ Y�an�$�H�����w�<��v��2$�����'�˒�oW7pi��G�Gq���k�<6<�c�_�o�cJ�Uz�^���)�t'�*�u@�O�q��>Uc�>�3�v}
o/��~�,��#�|�=�Ұ7ܗ	%�$W��pq	낛~nfy��1���0FUo�_G_{�vsY�������~�D��
o€�<HH
�[Գ����JZYd�*_\\tBώ0h9cv�3����3p��ـ�;���$>��GЛYZVK����A�Vۥ- z��򠄔�
�m�siiM�$���G� "e�����̕+�e��P���uP!{,$�J���?��4��3q9�Mi+������:���6Pw���t��+��o~����-�J9^�|	'�~����w�+�b�˫^g�p������'��'�E�,�>�b���^���<�ԇ?�O����8%�S�GYjZ�MyR����f�i���x{aٙ���ȃh����oN8�"�ČV�.C������B�>��+�-@'�c�/^C�RR���1a9���yEyv����f��(K=��YL@�L6��=eQ҅R2��e��� ŀ�Mk��z�$�i�O�G�:�8w�
�����#,�k�^j��J~gf��R0[u1[�an��v�����28{2�:iz|Lahrq!9R�m6A,�<�R\14K��H����`tr%�2��\N�B��cV�)Z4�eA�����W��VR�m�:Iu4�{J��a��(ɵK���ɳ'��H	�7�k
?v?R¦Ӳ<�ʩ�=�8�e�}v��؄ǻSt�0�U6�*�Q���
����
���A�J=����2HN`��x��ņ����c;��X`mꡲZ�bF=G��oe��"!��Ť=��2I���s���I������A�@s�n5��
�������}U��I�hȊl��@vd\�i)nc�! �L���
ԫ���LL"�>�f�>g�����>��nw	���PaT�Յ�z�Jz8�X����WX\��O�dF؇���Q&l��(� �!ѥ��WW�>���llʱ)�G\%�ܻ�YXsqآ�,�|z�h��h^:v᧮�<Gˈ�gcU���W`m��!��1W�1s-_=f��~'�J<f,�{8��n�v��+����W��uJ��/���q��>]Rq\u��l���u��
7l\���:�c�J�8��N�a�
��(�g���պ�Ӫ�1eX�l���J��<�g�ZN���}��g;i'����_i;��t�=��e� ����e;�����r��[������Ȑ~��w�~�Ho�#T]�_z/�
u�w0��#(�ߢ﷬���s�#vz��ﺽ�o����N�`&5�uL�h��	f�����Nn��V����5�Ev*�Ĉ��`&#Y��w ���y�:>�o=�6j����9���(`�zgGy�k�mO��{f�$SN΋�}VU�i�ud�Isc!�IO��&�rU\�s�Ԑ㨼1�y�̕�
踊��U��@��^A�����測�{$��9�0�ܻq��pBL�5P�z���v
�����2�k���huL�q�G���5��x#���e$��jW�͞�^M�(ј}���i�NC��H�bcfO�I���J�hy�c���}���	�nL����\����F�0�1mǀ�� Y��gI��1.I�
�bg$���o?��I�����Z�!� ���6=���D
C�i$Ƥ
Ł\A�Ca<��xfv���O�+ǯbO'���M�v�U��Y��}ݫ�k�T��#Ҽ<�s�E��;A\�cb�0F�o���*sH[�p1ϒ�Y�Q�����'�)��ז3/˞���hHޟ������������ n�"�����.v��������Ȩ`>�U�0M9�(�O���ȑ��e�����n.�I���u\-�p2�MQ��f�0�����y�f���������q&*�cw����%>Ht��<�ۃ���U@��JX!�1<����(m���]'�AI+333FVf��G�d�Ü���h����Fh��8.��2�.$��Z���0:mK�ȃ����z �H`0�E���[e���n\��7h�Z ��!V�z���d9WV��kk�Xg��%��:7et8{�x�a����Q*)�K�sZ?�a��ȑ�ȥ3������-,b�^V�f(W��ڇ������舂?�K$��4�f�i�ޱ�ʙ_~�]��v���f�Ww�H��,hU"]]�E��a� �!���ʎ���+C��F_���`�q8`�w��!u��c�}+K��5�L��sP�%8A��HJ�o�O�IXZ��zz�{����_�2))9����[�t����g4F�!D��rq�"�p�sY&�����:h���Xr��<��wP
&�䁰
���*�9�� �6������߾CG���p��y4Zr2Q7�U
F�|5��J:&$	�/�Vᤄ�K'��H9x�1Cq�S�HK~(V�()�
	��A��s�r�>���
�:��Z���ˆ$�@A��bW۠�Ll捋�0(A����-�m��B鶎%C�݂��]�AâH�ñ̈́�R����󬋩!�6���דk�P'{��p�����PH*��f��t�B�V_�|�
��\0���K��k�F��Wa;ZY/! Ȝ015�M*o+�m48;f��:�Gj����
1�Y�N�ԃϵc�
.fUZ�A�@լ�َXSN�'��F6����7�Ѐ�:��|s���:-�6=j�b驚,�`����<��M@2V=y�m6|�k/
)�6,��P��5�8���Cp�Ѳ�-�f�(��خ���];*�CW�*Ҡ}'����϶=i�ѳَ^'0+�-�#���
3Jd�x�d��%M`��x�XO,�B��I�
?\Z�ZQu|%0����-�D��{C=G�/+�h�eCO"Ǐ�|��3VJ;i'���v�ͦ(ݻ�n�T�g)��a�Jc�pn9}���~@����AdH?ٯ��#n|�Wf�yߎ��z�ׯ|�]���Ș~��F��v`��F7�f{��I���=�\'�>��V����}�t>�l1�ذ�=2�VV�2E�ö�b�?����yL
��T�aM�k�F^�5�#D��kZ�V����|ԨЮ��zjt4vE[�z���Y�d��侑���a
��`\
�wYOvJ��Y���>C%��,@q�\,��K_�
���h8��#�obKʭ����l9ja%�n�g����{z�;N��(��ROv��)k?fv%�&�F&���b�d2��n<X9f�	pT���J����h�h<8<G�5���b�5����7�ϯ�k��`�
<��O
1ab�Dvs�uo}�^˱��F�p�2ˈ�l��e�ѨM�gT��wI<&�>�?�V�
\����D6뢝����4����TJ��t����qi+R�	�y4"����a���_�W��4�ʼn���C8Znb�SG+���N��Vb�Q�M����t���W�8�w��e�U+�]1�x���[I��m�-٣����kxxzw	�=!/�N
�!����q�3�7�#m#���>/
�w׾�x�$�imG��a�O�+�%�ȚPV�������_���|~z޺x
o�j�TfӒǐ�zW_����9��}ǚ����������腝~�V��PI+��{zy��$=��!��Vޕ3���%F���;��C��d?��V���#��]�F
[Iϳ��ƚ:�Ǩ���X�^o˹��-$3B�W��@e�7�`�����pqXcz��	�݉u�1)��u�J�w�1G<�8!��gC�T�)�t�6ZU�Zu ������l
���MHc^X��:���%�u۝�������*���9db)��;ed]d�K峸r�zm�尒BE�)�IAVyn�ې��Ab}+ϥ^42 �����[Ao�0�p!�w�K�E��-0��˃���2x�u��1HҬ
�A"��m�e|a�w�9�1	��5r��r���N~	!D���]����#'EXΥRzߵ��jUʼ �RAʠ\2^-NX�&��?v_��_
�#�4��o�B��!̻|��V:���'��#���_&�L�ZWg/��B��>8��yM�y��qL��	ѕ�|��XZ�����.Ƨ��	!R�(	�K� h^@�\!��/�*�����N�P��JҾ�l#�E

�%
�Ek!W2R։X)x�6�w��������ޥ�+	9��l&���X���1g�O�ip�.RNGۮ�a�^G����3�|&D����HP3���}�'���*9:�u�PL���J��k"Ⱦ��z)�1N���CI/�&Ō�iH��$RI�簄	%�T�TI��:F��	�-�6#�e���-�ۺI�۱V��l�9p����k��c��z�FF�:��Pf�d��\��p��NE6�v�X�]lÅ��es�f�h�����T*qS~oquEcF�|��X{��d�$6`�]oqS�C0l�2*��@Vy&�B��4�j]�h
�s²�:�0�}��q�n_�<׍H��N����b��������!���z`مu�jݭQ[��J7^9��>T
X[�Mb�'�z����~jKu����\������Ȱ�v�N�I;i'ES/��|�L�� ����6З0���w��o����oD0l�\��17���-�h���o��z���[/�s�ԯ�:ە� ���ὐ:��z�/��I��d�uY�����&����
��j@�����z�ev�u�
^�<���
��Ę��2V�9�Wc^��c*d�S)��o�z�	�۝1|��:FN�� f�
+�����A��ϥ�F$<����{ݑ�灉aH2��Aޡ׆`@�_�zSh�n��fL'�o���>��Jbְ�t�I=�a<O��a�o��s<'4H�"W��p�Ft��!���=h��x��x�p|��L1H3o���5�̞۳���F=�a�D�su�<�[�涶s?�1{RXR)��s��V�@�#���E2�&�*ā�(<U�V��X����I��`�`=Ym�q~sԃ���Js�!�w��PR<�2�O�i��WY��5%��%������DɲN9�
�'�'Jrق��I�ǐ�wC�E_	���Z�c�o���M�2o���D���T��m=#�!-�_���ߞ����'�$ט�~1.y���\U����[��g����by�(�#����Ҵ���|�~�J��~���m�*��� �����r�Z��/��C�#��A��^��W�� �A��ɾF�x�
)eE�YYO*�c˃d�:�c~~��x/����I���Z�8})7"a���H;؊.4B"��ZP$.�t`�1�N3��!I�����tB@q�K��CC[��ځ&0��z|ɫM����YA윀i1�L:.]�Z�w�2�y~eΙS�c����Ï������%y�a$��J�����N#�`.���%�-�렻ZZǢ�%�]!i<C�"��&T/�E��$�E+)+���>?�OSG@o
���W��(	(l�G�)N`7�a0�z��h��E��Գc����L�I!��u�Q�z)�i���
�,-bQ�
y�{�Uai���g,�6=�?ӛ��K�D��o�J�0y���'�
Ԫm�So��ȥ4���z<����x##i�s�m(��U�*���m�bam��~
	ȋ�%9	�{pr�˳ȦGPe�ꖋ�R'�\�����WP�Q;?2����ʪ����kF	�m��
�B�L��{�O�* vJ�%!�))DH�QGF��ju]�U)����IB�8܏��<�_[Sˁf� lI'�����$��Ȇ�'Oc3l�ہ竗D\{2c٨���#�ct۴� �I5�2�mL�����f�
�C��?4jUC@Xo�P��Q��f�1�nn,x�t��P!yИ����׆�L�͇�
�*�_����a�����;fƞ�ub�m�\k���{�os�h�6�8�C��DJ����"`ͼ3/�vh��.��k�.��N��3�s��T�g��"ya]v����r=%<5����B83����J8k����.�c~�_}��J��)s���V8��bl��xZ,�����t�zu���z�0X��(�&�rN�6��~Y�\�F�zN�.����c{j��HGd��v�:����?���+9��qU��X%��m1�T���}���h�CLƻ굚���5�G˷ޖ��7\줝��v�N��M�@�AV��c�z����оR�X�=�7��G?~н��נk�W=�z��A�F_�K���~�z�y�W�es�������񃀱~dՍ��I��-޴�G�.��x8�L
��`�&X����4nT�j���R�]n�o���Z���Œ�w����ds3'���~u!(��%1�,&0rMn���9��G(Fkem�%0���DH��A`��B)%+�kAzƏ��U]�c$�M�
�
	�xW]�5������tc���ܳ1.%o�w|⩧051��!��MDZ{�]dsgb\N�������ʃG� Nd�5(�'���®���]��щ�o����<�`L�^s�1��o��o~�hL�s�h�4���?�M�j
��:��Lx/ױ�2B��E����1�6���FB��^���Fn"4`M0jh�A�HX`�0�I&>�������g��/_<o��\�k�(J[L9w�j �Fq���o\8�M�+1��W���&�)��s�F�E�A��H����9P�P�,���$<��WuB����Zi"�W+gՍ�r���j�r�Ɏ�/j�0p9j���`Iz�;��,0����=^ϱV��@�Q�~�8���t	D��!%��g�x-D�=�N���0xa��P+��U���1���5�~�+�����
֭|̀{�����/05=�^'�jE<66����¢�qiuE��)]�!_�Z��P{rj�b^;[U�ՋW.	xS��21 �a�m�gK���]$R	�v2x��s�-g;hlF��w6��H=�2��ғ�XI�x&$DH�,..���.G�Mz�4�d' h�RA>��-G�!�-���7�֖UҊV����"���Ĕ�����
�z������d�Υ|U�zWf���+���b�-+���,�Z���L�V�����o���c��)TT�^��##C���+�����X�|��kx��g�Qm`U����\]���:2I��S�!!��z���n��#c(��)�}ۡø��Aڽ��r����`[
e��w��G��$P�cxbT�׌Zu�,k�c0Y԰�>��C�ޫ��Ґ2(��]Ϫ�[R����\N�3�0F��16J���E
��WW�$��Td���,�#���N��&��ؑ��c}��d���æ}��!�sE3uJ�:t�#�cH6�,�Y���12<����i?f,�n���W
hM�V��㘘ً���l���RN�T�{9��[`<�8��S�Gfv�Q��'n!ݦ��NJh	ɓ'$�N]!Q�U�˛X
�tnj9&v��.�u�V�m�9�*�&����W�N��$<�':$VIr��ˆ��I闾%�g�.x�8�����\���;�����]4� �\q̽���7�w�##��w�n�RBlvL{�⚞�]ntc�wc��[P�����L���$aL�0�].����]���0�*cfqs��v�F���Z���W�c3=
/�v�>V�1����l
{��t�3�d�zބSiO=�ߐЂ��ߵb�9�,���E9��߿_�yu��,��>�����"�%d615���:�p���{���Lٳo;2��G��2b}9��'vM�ף�L�P�`�i��N����v�N�I7��m�����v�dž{�����5��M�H����q]�h>(��$��g(�� @���m�������u�e4��?�~�<z��64���G���V���l���;�&d��F���xDp�#CI���Tˠx���g�|I�r|�웈o��|q��8Q/᤬��f<��4pE�&m7�e�q
�r���ɳ�S���
�}Yc�gӑ{��׭�|l�u��c<<*Ag3n�^������s�a+�Tt��{I�x&ڮ	��1�5��d΍�w�-aI�������$z^a�S�������$���s#���U�򦫫�;4
'��H�{.IiH}�8Z.�ffgE.5�3��#3r#Q$E�$E�"@� \�F{[]�?��gF�=�9�FFfe�*�"�=z����q�ƍk��c���DWK��gS�e8�{X�~�����
�ĸ����I�鵪�=����+E�x=�R�OS6��͟����
�-�C��g��X\�yw.T���Z�h}�R��&�y5��'/�Q:X	�.?*m��ґ�k��[��&��IG'@��mSs�]��e'���*56V�DP�Ì�ݚ�]��1�Hm��`"���,][Y�;F��S"'�I�����2Ơ�(}|�8l�T�0����_Q�"�����w�wc��9=��]w�E>��/L�$��W@z��m@t�����h���'=|���VHZ�syx�>ХW�r�/�L���ӝu�@&�E��0&��an��D�%�ڡY	�B|�����g��&��^�[�I�*����5��NpOҤÝ�2طw�,�1�݌�$+�}GtgWV�Z
��4�<�mlnJH�\1KK++t���.�rTGr�V�:��wytD<|��2�4Qz,�[`�;��R�D��j�LJ�0E�D�A�u�;I�ƁB�q�u�i{�\�����o�M-!�B��.Y�ZcK�Z���	H��GH���v���f��]An���w"�)~��kG����dL�0 ���M6�@u��I.ir�u&����W�t��'>C�+��ĥ砮6@��M��[��_�w|�N���F�<��7��pm�f��H��5jU�L|��6�AW.�3ɒ���qɿ�Q�hc�J
^�כt�Z�z�r︟j�.��?��)޴-�g ��/|�ڵ����dB�;���OPi*#�;}���L�0�]�ײY�0Xۑp\߯�jK�{�*
O8��e����]�6��|<�	���f+
�+���8�d��{�_��*�!H	��^�_�qP���	߯^���h���O����T��M&����ifz�Ƙ+�8�Z]���y:w�,���hߑ[�����E���!?9y����Ll���N�����iyq��|��;B���ظ�	,���9����y���� -,-��[������������.^�H�x�a��3™5�
n�4]�r�	>&��ʄ�̞Y&F#n�Qz���y�01���|m�1��SSf����U�lϝ>���
3�����>��9���TWL�M_��H�cD�\�y4��FN!�@D��L@Tju*��t�}��ER�R�1�]k��:�MN�/��O�五�M�'�Yq�������������T,�����<>��=�2�q
��A:��L�]������/����.��q�����Ѕ�=w�
���>�N���@w���Tܵ�����^<O��G���N�����YZ<F����{��ڭ�5�yz�;�f�NGy�=��}z�~�P@(;~�����g�t���s{vv/�0���oY�����k����U��S8�tߛ�?�{N���w�������n&����߷�ffgx}Z�����'��&��L4�}���{hdrL�+x�an ��/��#�1H�����g���q��y���0��&����)��Bn7����U�"����Sv�N�A�W�or�[K�_��a�3��oC���� r����}�=���1�iH���m֎A�֎A�j_?;']��6����A��_��y�>T����� �sP�;�]���4ns4=�\9
GY�ANА�'w�j}������z�3�荕M�[�{2�tyc�^�0FQ`��q���� �8���8i5jP�D��"�X�E�����ƨV�9�C-�,��r}���'��H�]���Pk��$<�1�Z��B���
 \f���B'K�+1I��6]綎�	׈ڂ�E�G���0!I�T���/lM�/����s]BĤ�M���9r�|��tu���9�=%��5��
�������k���F��u떹�����{�0�y�S��83$֙\�O�)��R���o'58�C�%�цBF�f�%m����腐a.���q��r?G�%Uy#>}f��s�^^�n��4ƺ�����W�d>C`��Ϲ'��t.�h�a0�A1���U���E��N�^��y�*�}��+��_��������t�A{l�7�.J���H'/G+Ot�pV�� �';|�r����R���``�2a��|P�Av8p@��$���tX+xx�Ü���C6Q��;}���y��o��g9��;�!R����zf�H�ߜ��E&$r�@t�og�\�7��5O���}$�U7�.��g�"��D�L�F&鶽Gh��}�]�[�X���W��z�āEu�A���-		��0���Q���J��56���pZ8"@):%$�1X�C@�H�9��-r��M�4����'y�Ǻ�W�B�E�(ل��>�GN�2��5��z|��L�$�15pS	���<sH�Xec��r�y^L"�/a�>��S��<3�CB�$kF~$~��9�?~���哧��}�ώ:o�ފk�5�Prܲ+O?����/�?�<l���fRX�bAb�Y
����O�	Z\����az��3��D�z���>Z�l�VT�sUz�K��s�qG>�A��kz��W��)Ѕ�Whc�����1?�H���h�*Ͽf�I�]4�n��o���&Ź�7.����D�f�P�/"X��F���I�0/^���!t�2���͛���1�!����X��d @�uC��-��$4<��XpC�l��SN��������;����]���S���h0�v��)*�Kt��~7mZ�{?~+���ivfZ��={|}��'$�իWxζ��1�z���*ՓS�4:>&��.���Nw�y��{��t��eY[K�l��-w�؎�0Ys���ҙSo�8�W���=�`�}L�6h/�	��\�g[�by�'iH��]�[����(?�:�����˒�F�=��"B݊I�^X��sQ�ZUB#�
|����p�D$�c$d_��h�pr|�I&9!f�/�*�kT�g�K@��B8@��ȳ�um���0�WWW��+<w1��qO.�3�a�d�xc}8N�h�xZ�u��t���>��ء�����N���ZYY�M����=4:1�׭0Y����	>�ر[�}�OgO�!���n~��|��\��=�f��_|���P[XX�#Go�Q~?�<��8~�H{ǎ����L�O���{΅�[��uP��X\��1�����	�g���Wַ�&��VA��K��h���	H&9��$xWC��f:~���0���a������#�v�
?ȟ	��F�m��KLJ����z7���!���p����ظ����ѕ����ɭ�w�ϟ��Lbo��D�5'�N�);e��7g�(4��ߦ��y�z��{#�=�� "��-|Tn^�e�6
:g;�}�=չݱA�L?�s3�TG?10�=|-ϸݻ�X���<�y��3�����>�Ny�}���)�Ğ"e��d���y�r����N���/\�_�³4�Ҧ������m-�g�Mzv���6��u1X*"2
��2�;�)�.gi�	��dܠ�<j'a��#c��5rk�̺�{gb�	����3C��$� �묓#ʹ$��&U����<�`��Q-�_&6�X������!�����p���d��>��^O��Sg�oW������
����O�G�J�ZD�蹇���s�$M,]�~;�&"R{ؐnо�{$muEJMM����t�L�^�_�˥�>�3P��QJ�2��%��<�#a�S���t��7k3�+2�lB:��Q�?9�U��x�A�����v��1��ԩ�"�$}@�����Tnf���q�Q��-��)�������9<�w�;o9�B[%D#ry�'=@���(�" :�9�|vy<,���X�|"���L��Bޝ����!8�����xNPo�i2��	�]L���}}�#`ڮ.Xo��k�$�&7��X��h$>����F�L��K� �=%����Ћ�!�u�!j� uPߪn
p5:Rfp�rf���]c@+C�I�2 �>x�0�yj֛��T�P9�O��0W����HJ\��6#����%��%�{nq��~�u^�E:H��֦��A��p�JM����i:���hD��H����h��@�+X^#ɭ�*���� �F�{B�\���r��ИZ͖x��DC[T"L�]�6*
�5΀�H�YW�H�I�O}拴ʟ�<���@�p�1qR�>�-�t�t�~�[�N�
�>~�s�*1z�=|��-�s���оYz���L��[��}��Y�k�I��	&#�؛�SWV��<�xL\�:r�6�Up�bP��V�F��,�A�cĪg@I�6L]��E�{g���V�_yv7U����Q��b�'W,s?�Y8h2@�d�B����l��$��z�嫰�����7[�\9�
�%T��3<�L���0a2
��C=D��$�Z�Gϝ/��D�^�U��@;�๹��F+LT�6V/��9�B�?�6~��O���o�g�����_�,��N�<��5 �]�:�y�Y�~����DW.]�Q~/�_��p��������!�&��G�ӣ�=F��c=O'_�FGG�'�5&>Ν=M���h�cz���2q3F��~��2���I�Lx,-o�&AN�=G{��b�e������8t���4wE�.ĭ�}u���&o��sʇ�	�(�t������7��6��o(ƚ�֊
&�nۿ���f��e�^���䟀`0?/�l$�<������7N��0��|����ϝ;'k"�������A&�Nq_�]��$f@_���S��^��"�_y�ڼ�b
��<��>y��+m?t��ј���#�
�w�O?�����lǏ�{_�]�=>Ť�kt�}���g�0Y���z�Y��������n_�
�숬��/>A�������#���^��_�g�ֱI��}��T��zR]\���߿����8Ǽ���G^�T� }�|��Qe��LD\`b��={���(՘��t���
Z�{@�v�,�K��bb��C�n@��~х�yeyY��V�!!Ӛ5^��.&?�}��L��U&���q������:��5˼	C�픝�Sv�Nyk����0�ߟ7,���롿:����L�L���_Ǡ���cP�jS�5�����+7C�s~��o�:�gP_��c��N0�?oׇ��f�w:��{�����k�w��9K~W��{36�1�_`�AV�x��r�^y�
-�5���K�@���$��b9�5�'��
!.$�l'&����0���\�������Ҋ��7i���1����3g��b��
��mq� JXE$h��0"�.��
�˸�r�)�!�t=n�^�{ZJ���>�+ğANK�%[Ds@�Ei8ckГ���%27`��}�$�/�@���kvz_v�;ֿ��?��
ۯ��c�s��S���s
k��{ܨ�h
O�3l�z#�&<mZY��;�M�'gzd~��=9C��u�c��v�OO�o�|�+��~vc�v��{f���%,�/��Q�k^Ҷ�q�O_3L��6]\l%!9XG7Bf�OH����������	��=|�r�|P���;�3���};Ϝ9c@z�����q�������^��B�
����;Зt2��^�YHzYh#Mn��G*��$)�r��-ְ.�y.�q���Oܳ�i�y�{��to
�������P�Qa�Z�|Wy�����t��>Ks˴��JKִ�6�fj/$U.�Kb�|�����]�4yp�Ɏ�t��yYq+��X__��
�óų��o��.?v)O	�v�m<^�A��Oj���[M�ğҪ�N�����6����i��a�-� .O��s��I�|x��ٳ�Ē��a�ePp�A�k�� ��GG�}�_�~�L$��s�������_����*��S�1#ϝ�ȋKF�6؎���"��<��=Nz�l�>��!�k"` �F���Hw�{?kkgNӕ7^�#G�{b�#��7���m]e�y�;0C���B����[���\�!�9�k�n������8v����>���SX��=�GN��-�e)�癙�e@��#Z�w616����J��fvd���I�=��s�5X�F�2�>F<�$�a&΢�
%�H�0��ՂI�2Bx<�裄��%O�JRm~��<���^��L6�q
o��f�֘h�!���k.���9�a6��AQ�6ז�(y������"8}�KJ����<V
W/3I�w�Ny�Ĥe�c����/�(�!����1����N�}�b����M��$���4_��%B2	�� �:����
���E�+Kh�|!/��V���Z:w�
g1�y���)�j�E�!r�p���1��rnɛb�#�u)��o�\ߐ��Đ�yR����Y'�*����n�(o�p�9Fr���X`�c���Mޯ#���Kt�\��-	u��w�u�W
o�B�|@x痯\&O�KD�#M�S�ՕU�1ټ��BM~?9ng�]ƣ57�|�
:��y����dy�A�N@�9C�p�>���Q�En�O&a,�n�ۖ+��S���㾇���U��c^9o0�a������'�N�򜻄��n�x�E!�.]��=�;-�Յe���kLz�%7��o�m������lo|�Q��{H�.�A�K�)�����_�w�g���\__���J,g0ι�k���k��8Z��s���1)�q2��Ϻ��&}�|Fg�������9��=k��=$�x1픝�Sv�N�)7(��!�A@P����ہ7�`֍�Tߍ���ڶ]t��A��_�u
t����{
z����m�n�=�Jۍ�a�a1�Πv����{��uJĬ@��-2��RX�1Ɣ��^�B/��F��@����X�Y��G[��R�"(UD�l��W��;&��ٳ�"�M�_�es���6�<�6���撘@�Ԗ�u��޸��@T�M��3���2B�g��*6:
��������Y�!n}��>�ϵթ��k��	���`�>]��ہƾ��y8��Z��A�ٮl���j�̀�����[�������k��t�a�׳��m`�ܖ��.�wM������
m�>?���&�ʙ"M���JǴ�У���X��~��g~��mo��KzO�iÐ}���}-}n��6l\��`�F���U��Hi��_/xu |>����	i哖����w�#;�';kۓ��`�C�|����V��ᓖ[Gq}jE���#/��'WE�����.��6����eR䆷��dkū@��h���"�S��)y�&����A �����DB�M���8%/^.��� 'y8FL�*�t��y�t�2���)���@�+�59:2{��O�=̺߹�0=p��1Mު4h���l����,��Ĵ��BW��O}��ͼ��BNh�D�8�n����=�́7�]S���"ɉ!����E��$Jq�q��`��T���B�v�4)sF\5� �� v4�� G��	��u �fmS��[��&��[Zglb�ʣe�֪R�|�6z������?�Iz啓��O�)�ʯ�:��+�O�S_}��p��Occ�fG��J�Mf[t��5Ntw�E��F3���7)d9������X��˧�n.ӡ�):8;C�|H����?K[���~�=��Yz���in~��#%:|`��
=�3WWi����Inۋ���
jF:
��=��Ƚ�/��f������n�Hi��e$�f	ݷ��U�S���
rN�\�6��$	��dٓ�f�������l"���QL�G��H������
Ɉ��'�i5�P�I|PY@J�mml��'�]��G��pK��,r�j�r�C�xB�\��@����PϽ;n�� <�)���LU&*�Ө�$D�)f��2	0�
+Գ+x�#`�
�r|�6��)�a���9Uo���&4׵r~n^��b�^��u��-���y�	#m���W8��bUzwS�+��g-b=�p�G�\'��D��o!�ꭶ�3������)��7��C
�[��I׹r���l�k,�
-��>��ݤ�QH���M˅�����=ӻi��$�v��P��1Y�A�X�q�O�m�e�dY A��9�	�n�w ]�XB�\-<p�@�զ&��&�
�/`���$ޛ��d��um�?�fA���a=
2����N�1lᙕl���ޝ�m�%�3]C7�o�%5�|�b��Ǫ��J���_b�:�9I�(.��t���o!,��M�72 %�W�V�c&{��L�T��k�Ʋ���GR�B��TI��ź`]b��ŇU-�v�N�);e��튗7���ہN����T�/�A��/�v������'^��a$���m,�ɂ��ڰ���
���֦amԖa`� �j���m;`p�Ԯ���/ըI�m�yʔʴ��g�8Iϝ��Y���m�o6��0Y��E$Awd�a���"2�
.��6��d�EPq!=�<fF�<ь�9R:U��rxj@O@N�h�u�)֛�+wE����az�$7�|�e��c8����|"�U�kF��y�a�:Nܝ+�8�3Fo�Q�\D=�7 Vh�k��5�F�����A�F�F��>o�/��{�}oX��O��&ݟ���sP}��F��*�C�Y�x>|��J��z��Y:����Ǹ��<_�Э4*F}�@�5x잺���*}��I7�	��^7�/��k��a�����No�>wHw���<<��CZ�˃��Ll�� E�.>�`��xy ��9|�r�YH&9��d�CH�(}��ų^��#kp�|A�@+1��ũG�%7C ��"Ibȇ��r�xO�N2��Me��`�j�T��|H�Q�A�I�n�6���y�Q�0+�b��4W�5~�w�I
����+!PKm�xk��%F�:&+�V�!o#���6Lh�{�N_<���j�E���'i�4F?�яQ�۰����8����4>�[��?�-�7i�^�a~4���E�ˀ\��/3�֪5�?�$�i��}���M-�3>:B�b�I�X7I"(7,�)B�d���,L.ԕPV�"�W�II�)��s8�M�/�V�����"=,{䶷�G�Gi��N[Lz�5����U��	��Z�$>��^٤��1&x�e�:_�K^c0���^��ӟ��/2�����7�K�1Xd;�<O����*2 ݌�@���M�����v��F�Ƹ�Y�j0����z��F@�c#LNM��:U
�	0�k�o�K>��[1mT���|�����w1�'jn��	x}���k�&h��aL�ƙ�a)b}�J5����9G
�
�M	%�K�S���r�ڒ&�����m���&�/�7�xu-!:H��o���&�
���S�X�aq��;.���0�C��F>�12O@�!����$�x��4qK���B�ཀpg ��;'ÛBTA(�����q|��5��sy��g&���ڱ[�2X���2������o4e�E g\~�*��3��>o3���X��TyN��Ƕ�<42B��-I=6�Pv ^�y�K���}�I��O�����
��0��#�,���I���!R���x�,M���a��N	�(��
�tO4�N^����IfO~Hlk�)X�Ex�y�ȑ���*��<y�s\O��}H���0{ujVk, 7�s�/ m$0�N��
�k��f/5+�5O�����X\���w��A��!2��q�l�y�5d����N���|�S뒐O�'�}Gތ^��)� R�8��g(L�~I߯_�S�ʦ曒�F�dC]O��zbW�'�t�b�����a�!�8B�a�*��#M,�� �06��F�	���)��0_��}���`�yj���ƚ�&��j�씝�Sv�
�ZX%�ط)09�")y�z@�}���Y�&FVe0���k>��]�J��.X�g��4H�|rd�<�R�F�>lݽ�����t�[�b�'%��V��w!�oQ��f��^0e�p# ~;��~��^/�P�=쀿��0.���%� �� oP�}��ɛ-�Ϛ����_��]J~��Q�87&%"���[�ˌ�s�m�{�oM�,�ܦ�[��t�ueb�8-st���h��yʵ,̖%�ƫ�B��ֹs��sʿ�,G7�#�T�0�t2C��[��wX�m�0T#%.0��<�ƅ�e�E�;�`��-�,� 5DDŽ6�>�\�-��xY�e��JM���0���F�!��V�)NJ;�e�}qGHV�s,ƈb�״%Z%���[������ADH���?v��^���k]Gn����?���'�Ӟ"7ۦA�٠�]7������]��ϋ�<�>y�*�����&��.^�+�*�Z(�J�R��ŽMK���c���E�>�4O�-����툷A�f`;��Ӡzn�?���(�M� �� 9�ox��p^����p$��WBX�A|,��HXRć�B��H\��d�B�*ģG�$���!�������$U�.)��,��U@Lrf���"�N4�}n˒Kz�"��%o�+�<E�Ur�t��f\��Z�"ئBS�
Qb��">�T��V@E�tCw��,�0��GmO�p}����f<r���#ʗs����xu��������M�vL3��9�\np=��Ͼ�2=����X����Eq���I�������ցUfrvU�h3�	 �8�Qo�A��1I0��yE�P��%�O�$>�I=�~
%x ��$��%`X8�	3ґ�U�������/7%yzI�� hT��SY�qɨ)��2Xp����8O��Y��������{��[�����(��m��]{�H��?C���?�kK+n��aP����N3��w���}U_�2�_�X�S��UP�Ӥ��z���/��JH���8�_����*�V�I�K<\�th�.&7@�����x�]�}3�4;=��z�N��@��5v_1[��',����
3c,|���آ[�!�t�,-\Zd�h�&F�4Q�E�z��Pm$�f�4�s��`</��-�ka
k�J�c��$�]��=��I����+K��Z�N��$!�0_A$�j5���������j��fT5�P=������H�|2-����������uba�$W�G:<q� 	�נ�g�w�6�D�|��K�h�Resz�I���F��B�bL�<�<.A�VjU9�1<F������Y��F�O�!�&�b����@<����L�<·�٣N�:��D��X����)�&!œ#v�3׫$�.���X��un7��P�⦮%���B�1�ʊ|<!����^Ƃ[��PZ�!����ݭV]�\�[ d0<��Z<}J�/�f5��!�n2)�z�2�Mˑ��d/��f����8��V�Z�ɋ�$�U,���j'�z���,��9nK� ��C�ɋ���DZ3&���&2=ʪ:t�=��u����ŦgT�(�q�ꦊ�[����
l��%��
��0�Q�@[�}~?���BJ�ET$Bxr��O<�7!*���8 'V$v����kE�%�I�0;�`aw�씝�Sv�[��D�8z��l2��`I�~/�B���r�6H����.k `\��.��.$��M�t[��������56�C.���r*`��}�1�@��ή��(����VR�M�Rhzғ����)��P�0ѽ�����?�[w�Q	AOD������G�,�n��y|?����z���X�f���k�nܘ>��AϘ&w�;��_zΕ��Ǖ"6%�yo_}�6y��Ң�7պ|�Nߎ^�*��A���_c�'<j��h�b��]�ЏT5�tF�����n^&�Y@��X`|��
�z��ݓa}'��q�Ne;�̸�2?�c
�a�&X;��a�4�
K �;�6p.*#RL���W#��'-�ױ��))s���X����*��e۬+����:�bD /"!3��0��w�<`~��X^"!@2Ln��i	!�s����`�2���<=�(��ak�/������ۍ�A$E;�"�ey�����Ov��1�?����9�9ҿ�?oWV�ߧ��o�|b��K!O�fL���I��[n�oڪ�疮я8N�0���cLv��E[�
���f�޾�I�(�{V�A�޿�t�:n4n���߃�Rcd��V�
xz􅴒�<���ᙁ����Y���_=ف�pV��p^���ywH=i�pV <�CZ��ف{��V(>�����r6`��Ղe�Q�`���$��ZH=Nw�V#Z+��|��;�9"�$�օS��c�5��~[ԁ�q��c�����%ᵁ�ő{q�)#��H���E��{r.��B"t�q%̇T�9ڻw�L.�ZܠsW.Q�\��[�tpf/��5!��D\�X��y�*<�'fva���<�B1�욢��T*H��:3�����$�
��!�<e V�d�ڧ���ݻ��f��Y�E�.<�Ac��_��
}��ƛ��
H�T�8�z��*b�o��@MMj�u¨��`!Nl�W�ZiP�I�h�B����*�o�l���@@h��6kB�tf�taa��x�e��d��&Hx	s��M�����b������8<KT�����F�B��*���n��^?AƲ1۠#	��4À2k�CK|�y� ^%�c�&)dP��9�=�_�MO�O��=O��5/q�� �M6���9~�����N[&}
�T�7��ar���)�g�4B���Qg�I�;[�_���Ģ�P	a���z�.q�����6?�B�|�KWբ�P�	�w�W���)ɦ�g�~Z\Z��
̖#��\Ó�_bo��G�A���تЍ�"0죣�� Qz�j[�>���.d��=BjT�|�\(�,��ɩ)Z�_���<�tD��o`�33��u��l2A5)y%�D�֬i�y�
���IµJ���z�)3)
�y�׳n�J_ql��2@�BǏ�*�%&�`=�50Z!#c�c��N�$!HQ���cQ�J\ ��ϑ}'�A(�\g��	S�6�x̔Gx��:��K�퉜^�d���‡ǃ���pU��:>99�kCE����"�_�jU֣��B M�����:B��x����{��1�vScm�/	}].��`�ˆ[������j�%ᬐC�T�Z�&'� ��O��˗/I�0�yX�y=T�A�SZ<ފx��V /�[[mJ�?\���BFʊ-����*���"�{�(93$T�[��d��{r���L��2��O%��,8~o���01�
��ctl�6�7d
�)�	��oI��*��sa�d��̻C�	I���H��K�Ѧ1^#�[W_�);e�씝�u*"B������ZgD�dU�q,[r{�q�F�G��ʔ�R�)�t�^�-��5�5�x�$����/�8P\�f/���)�x�d��*\���Ѷ(ெ	`N^'���$�ә����k����e�Xp���]���D'�
]��+"�,L����ߑ�1pdS��}Q�sF	
r�G*�����DV#< �@���k�0�4�?��mÁÁ�	���HljM����]�ǀur��4
I�ؿG��} ���;l��&Nչ����d�E�9	н��dP��$5ɻ��_]9}y���S��1-�1���f�1"֓��6�E&:k'�)Om�_��hr��	měZ�]�0J�B.(~b�bd�������!�_��Vg=���m�x��D�P=؅�%%$�36Xg�G	�$�`$�Q�G�M0����<�`2��,�]3++k����5�kɁӿ����0�cX��z��ߎDH	�\������aD�0R)ݮK��9�|�ȎD���y��D�*�ǯ^���{�^��E/�-ӝ��.�]g��[��Q�j<G�ݻC�ͳgi?� �����A��v{ư���w��EbS��/�bb�o����}^��#!G�	����Q���|�!���>�~��� ������H�������pO�$ް�/��5��W�><�KzDs_gt�KD�BX�-$!Cìsi�zyH-lv��G��YaXoݭ�����Ļ@!��ȧ_�F�9D�k�L	�����2Xenj���u	���5𮘚�� P��;q�	��c�R�d��i���A�#�T.�׷6�'�J�]�=�f�42F����;�o�΀���ߢ��{�ȁC|w$���Ζ"��|!$���o�^z�@��h���[�C>��"�)�b?��a�7%,LB���g�EڈM(1�%����W�$2�#a~iU@.�jA����
:��w}�IϾp�����lT0x���ej1�S�<��unG�Ѧ����Vי:L�����˿�[t�
�#yEH6��|�7�<��=p��thj�7��Ȍo���Ϟ��[L�OSԙ�آ���3��f�wq��VZ��Q��L�,3	R`Pu|t�V�����Qdpo��#����\Y���r�bm��W�w��8�/������/<�\O��.'�
Q�&�6+�������{h�I����/+����ԙӔ����8ࣔ+M0������ܲ�#����t��o�bTa�|�[*2`]��b���[d�Je�"/%�]*�s'�c��#�A���Ϸ_P�<:"c$�Ԅ䜸��qZZ���z����'���u:~����h�I�?��H��o2�>19�!���y�ɱ!�O�f�n�����7���|�ѧ��4����Xjз}�G���ZuKH�'c|
�@�K�KLN��	ҏ��yk�+ܮI&�,� I9�6�ȩt�q8��N��$P��!^nX�P����<ƹ��VBe���M*t��D�C6�LgBe���h&,ӭȑ5��$��U+�&�W���x�C�Y�ԱN�AJ���},
)������1�n��G"{���^�� ���r�I�M��1�����=w�A�uxNY:�2ϭ�Q�U�c�%?B��Y���F��k�{z�(�=p��1q���{�޷�Oז�YۢI~_G�2����'��ݤi&� ��9a{���i����Wҍ)�.��w$�TM�ӄ�]p�4��G���?z���"/�
O��u�X,s	{��P��^��V�}L욠%^���FV�W�I�6��{�]�<, ����n��	ed���:O{yn-0!{`�=t��&8�и��	��kB��i��E&\�A2���L;e�씝�SvJy��U���OH��S�t�e�*�@�,Cb���=l��%���ޡ�`#��
��spfFr¸��?�j�u�H� �m��Z��-#�݄��@0t�z�.\�$?��"�95�y�7��r�Ю�+�u���v$���	n�bx
�h��ne�wY�	�G��V�12�ۅ}���c��c5C6�L��EIBZB1�3�xh�,��Q�8Q��ӚX��Ř4���#1��I���F�D�.]���Mi�xy�SB1�T9'��Xf�B�����{�E�0R�)�i��҄�)��s�P�B���.�-����;��k
1�d���Dt{�L��7,<͛T�7d��$j+�bc��%|8)�ҁ!&�kQSC��5��q*���2G.j�s�i�
�$ҁ��y�Ps��Z_>��(0����]ɽ���1.T6w�B
oXo����[/�^��ޒ�4�MƑ�$�17A�c�VVkX�����j�I���jܧ��U$qw ^�U����+Ϻ'�
���M�Ցy!��|NL�|�D֪�K�B݊qיs�������`�߶5�^(�Έ~d�s�%�
�C��d%G_ drG��h�-F=��U�¨0�Ѵ�x8cu)�n��K MR�����?O���~`�}L�{(=�8����=Ǎ�vޠ�7���^I~Ɉ��s�U�d�t���;�L�+�W���3��;t$��R�F3{��ؤ�i��k�^h��7�x_�$4��ؠ��=1�����~Ү����a�ڇ�Ɂ\Hb.9:����A�*�9Ip��᭨���';�%Mz��-�z�#G�$^ :P�	�Q����ڵk�~
�έ�b�B�ө�u��i�*U�S{=�׿��qc�N���З�6PFk��s��Tx��x�\D��<�E���.�x�� ��›
6��)��6�I
12�@�$���X�Ǧ�Yb��yt�r�,�?�����=�}�-��E�7J��A��%~7+td�1a�c��+Y$���a�������i�0����0M������=�+$�H>V-�e����1�?~n�&��xu�?��q��$_�Ӆ������K>
�6!��n6�t��4��7��b_��hdtG+&�A��X��=�X��� ��i0p<FK�������;�
LVB�Պq����)�ܤ�>���
�,���&�>��
��0��-Q�R�Q�L�X��|��l�Z��^Ȧ��/�`dlȬ8@��*�r�k}��F��d�8}����y~G�Ɋ�
D:�,xNb잷��֫mn�$F??�ų�54H:�?��0�_04���W~���q~F#s��tb���|���=r�~�G~��E ��h�=��Co���&�%���u��$OS��/X�7[m^����<�^�́�{��U��X湅u`���=��1��eB�mo;�N�^��U��=zi�
��"�_\����Z���X?v올�H�ޔ�U�v��]��1\B�Փ�ѡ�G��;���;&?����U���؄���=����܅�B��K��|JBp	��ؒ�Xm�K�(�����rQb2p������esJ�o��XC?5%�IV�5Ò0Ȩ{1<�L}��#�S��o����=�ȔFy,�e��2��C�\A��E,O�|x�;���eYS@b<x��{R�
��dXAW��D-rM��+�z8��^z�e^+��>�1�����`J�*fkM	���R�g���輪����ab�<JW��Sit�*<O����g鞷=H��}�H_y�	�o��6��1�'w�FS#L�-������
=����U&X���7��:-���W��Q�9��B}76�Yw彦��4��'��Y�$�E�g>����<��D��- �f)k��C��؉[�m~��׽�f���0�pE<����+��ʵ9�1s��9���eRx��_��|���ϝ����^��2�r<��ǹ��ȞU���C����YY��gg��
M1A�{�M��N�);e�씝�]a��j,�0NL��o���e�>(4��f�RaYXwj�ڢC���zr�1��j͎�TR}��a!C-&06[�U;"�0/|���+�WL���l���x������V]�"��
���8;\wS��X��Y��-�F�u[��5D3_S_�Pn�!~��W�gY^W��0yj�ֹ�U�rQ�l��Z����x�Bׅ����~��fL�����Q����1�a%���P�]�F/����{�ۓ��G4���}��ϳ��J[
R}�ȅ�u�.9�Vӕ��ױi^�
�!�?tG�� �7#��%�?[!π0�.��b�ic	�
��#�
��=�T�F��qʠ�!���}�]�w�]�E`|��.���#7@�Gۭz� ���8|��f�%��6N G�	�b�!I�4!��~��EƆĻۅ]C�s_�X��	"�.HD[	Yk�ď'B`��f�S��-�K,�޻�T�S1�@��"��K�՝
�=W^w$
KH[�>�;-!�&�P"SHbp��K��T�$�ˇ��?.�.Ƶxl�Xi���Jb��M]��PbME^]<�b��k��r�#�7d�v�X�K��>p�iFQa�
o�HH�1%�<��\x:�$��ak���c�>�P�V�ujND�,C��jH<�tM�:4�X?0�"oWn�~�������"�ο�v�̹�k��u}���}N{3�_��ymf�
�+�e�M҃�쥓o,ѵH��y��-��S���@�k�+��*7W���oGJ
+����y?aq3�oٱݹ�J&�h�����'B<��ꫯ.������;�F�D��,a���}�;,��a�߆ɍ�H�IZ�lp�XJ��\�_��Q���@'�I�|��S��G�:�[��5�H�M��z����uĥ�l�k���&�k��bP:0t�N�A�#mHA*|~�w鹮���Pa��-��>,���H�k�}x�4�$�b���I75�[��|�:x߼�/�/a�m�c|[���ɺ0`�� L�A� `03Ţ�ٮ1>�X�m<��W[s��x�T�����������s0b&�N�%���q���O���os��
Ϻi����kc��2Rw�����̮[i��8����:޸�j�R�
�$D�s�4�	F2�[��5!��Q�G���s���^(��y��0xR�z�h�hI�pH�x������#�"��$hp��is���y/}ӻާmpϱ���7[	3ab���p����
�JN��?aY�$�2�������q�4� �UgA�o����L����	�*��LD�X����S���_��A-p^I�tmn��1�L5����vg\2�<��H�߈��@{m}��2p�'���
�0IS,�?t�+�M�����YmM1A�zX��"dj�^�iH�I6%�4���A"�D������/���~Y�`븰��zs%�]�3f��F�v���g
��^��GA��޽{�V��x�5o���Il���.]��Z��:��'�?<s@|�c�#���R[����DAm�P���Q��V��k��B�%�;Q䱲�@��(�X��:��/����b�c��'h������"$�c�	�aLQ�Ew����G���˳,//ɘ\^\�i��|�k�x���Co��du���C"��;�)��>�wnR5�*J�A�u릫U�1��(a���I	(�٬U�ɍQ�D�󋴏�ɕ�5��ĩ�r���$%����*0���K���F P0��<y��W����ɉ	�t�H���Sv�N�)���3��o�
��X�m��=,�L4:R��ms����p��r�o�e�7f����+
��UE�/���x0��9Ȇ��5���%�X�D�gH�		�ȇ���"�晜Q�.�/�����2<J�x,�2RA�4�:UW" <h�u��c�g!�J�w/���f�_1��,�"��p��l9��z�*�8����6;��n�5���F�lVi�Z�
��T�P�`�cH�
/<�/��}8A��^?M[�����vH����q>���-�9�5K~;/g��*�М0f�pZ�ZA��X�����{	�%�"���υg�o��^Ca�z>��^�mgh�!�A��o�;�/��#<��>�dG,�;��H��FHIN�(Jz�cg�$�g�bGv8i0��_�ف!`�~���u6b�+%�6Y�h�"ѥ@^�Y(�	�<7�3��%���OI�
&��4�z+�$�G]bI�j8^C]���"�'�k�Z�$<:�d1��[��n���c"A�Q��(pd��(�:��:�c�ra��?xH�q
>n��f�=�RCr�1��]�
!I0�@<�u�|���QW�Bl|nY<�Ÿ� �;Mї��[�"�TƑ$�7Uϭ`N"4�7�m�����'�!H>��}�5î���6��?w�nߠ��Ͽ���@9��À�AdG����x�2��ߨ"��q؛�x��ͧ���go����Nӣ/�5�L��ӌW��ܜ�F���3��VyކJ�%m80��t�'������C&]	��������Z��BY������c�$�E�+pćM��@�r�
i%�x��ȑ#�N��z��Y��.i9~��HZ��X��M.�A�j�q��f���������x@.���,!K�{��0¤�Yc���x���}�u���Ì��o����ץ����@��鞃h[��c��\�s<9(�2b%���£!�>���T��ɷ�ș�8b}�̺vF]��(�i��v�ă�>�"x��K�?�7s�[�c���Xj���	Ȕ0O��hAP�����>����%j�+��y��^���^�g����P��[>��#�^ݥ��4�Xd41���,Z�I�A3+�s
6.a;�+!�/���s��k΢5P�+JEm�BgN��r2�?� 7^h>OG��+�/2�]�^/3@>� <���O=%5�3@^̰"���gN��pM�W�$
B�jQpxD���*]�xI�+γ�٤WY��gN'9�`���J^)<;���(����E:��I�p��][���l�^z�9Z��Ȱ{��iZ`�PHζ{�4�1��!��H J�V�	���p�P�u�X�x��]�P25Ȁ��ĺc.���l��5��+3�P�w����w$Vp��un�W����-ѾC��J,	���	�ƚ�i��@� t��J�3���L���?/
�	�=��ݬ0�-��=��@8���;B=P��#�P$�=�҈m~��6���0���+/�>{����ee�!yw^9w��=u���1���0tx�{�6�ϯ>���0����(f�M1���eK���O��>�Y�"@Am�*Bw¨[G��&sY�`�����U����~C�,ݲݭ���z�CKiAַ�[?H��<7@jmV�hb|�V6�h��$WP�R���M	C8��(�vPj_y�em���0&&��݁{��d~A��c�=2��mI�s~�7�xC���6�šڽ�.����sw��Sv�N�);e�R�n�gl�e�F-Úr9Oc�SmT�W�	�z31����Dl�<i91�Z��H!�q�c+��Rᡌ$�����,�?n��"�@���ވ*�1�:�7�5F�M˳����v��,�ED9�u=�:򥒀��{�3m�J� Y`��d�f���,��gf7�}HU��Ľ�^�zuy�:�?kI��zˊ�5�lA�H8$gT�1?g'�Vק�Ҩ�m�{i�e�,���v�U �����(�/d����A@����u-S��!\0,�''Ƥ�0����w���U�@d��v=*̶��3*+C��YG��*S�@��Ga�(��D�2�ԛ�Gː�v��G{P/�N��?QGd{�x��ʁ�d1�i�ȱ�g���9V
���*�IH,�p!��GI�8#�ᆳ(mG\���=��y��@�#ap����I��>l�
����"���#�f�a$�׏.�;�9Fb���/	���
�x�s[����^�������o
b�q]�0x�H�,E~N��:�
�y����Aԉ��0„��h�HM^,X�@�Doy�c�)We������Gȿ�4��w-��>"�\H%��?�/�h���b����I�Nԇ}��*�s�e>У[x�� �6굕��Ƀ����zPs�C"xY�-@�.����o���)=�Q���߽�����)5:|!u�;�f�����#�Z��r���F����RD�{x�]��Ş6���7��@k�n�,���8���<�A������73y�}��r�Fy��0n���h��:�M�~��a�ܰ�}cy�����Ց���� 4��Yޛ�'/�!��5��< 8�	�����j!=p�(�49s�$/G���a�Â�w�ośc|��캕�%��[�����=g`��F���k�[@����
Δ0G�yD>Y�.��K�_w�ތ��֓�{Bt��>�y�!ťJV�1���@�e�5k6��M�>���&]�I%J�}�q�����ߑ�zq�߉EB���D�R�:*��������M�����(@.���kݵ� ���KR�,%h��4����3��c㇄��
8�!��w$B�l
~A�j��̍�	3�eq9V�H DN��D���^�y�@ԍE��s }*w4ich��*VC����X�-\�&��9p�u�I����qnE��t�UT�c@)��민B'_]^L,�V�n눟�:we]�zVl�VV�a���H�6��X]Z`��L Ān������iޠX��n;�����V�N/�*`��	�vv�z�dY�T-��چx�b3�a��;�J��x29�>/�7��e@�G̡O�� ��K���Ӻ�!5r"d��bv�A�5y�f���uˊ���](I����c��{����]�0SVD�e�
>�ȁ½��%֔P� �nn��u��Y����Q���=��a
	e�<R��)&�0�����2�ű�,�A�l!o��'ʯ��;���-\���t�4+<nZ:;�F�uımS�����.�<D�9$�.�E(�<u�l!#�0�7*��oue�
,�_`�P.�/�!��s��P�T�A2=�Q����D�#�왔C��+�g��'��_��K���LoIﵘ,��&���jq~A�8���&
U.�SO<-�_���j+�W���L���g>�Y*�{�D~�[�J�
H4_�QP�okcCH�F���$�._@�Jx�6[
�);e�씝�S��!�c�41R�r$���
B�v(W*P��b!G��M���*�m	�i��,'uhu�N3�	A)��M�)Z�S.b�y�j��5��	�S���s�d��\��F�@�s�"���"L�,_7²I�]~Jl됃�,�g�-�
��U<��m�l362*5��)����=4�RG�C$�?�+���}}=c�יb�J|/xNC�%$������Y��g"�Dc���9e��bӫw&���|���486�Q��J�&�ҳ|�/�%�1r:��EL;�u�R�O�����e;�>p�h\�t�U��-�L*�;�펬�v:�tO�n�zh�&%��N��ǩ��PPV=U$W�Q�	���⽫��Z�>|��Gb�#�+G��D�@�8�{�W��P,�%:�ՈV	خ�\�n"���Z�?7�y���3g��[°1��=�[�� Dx(�C�6*Vÿo�Y��}�ԨQ��x�I>�Y�E����S����1�[�@�-ﳐ	��a5$9��(5V�V���J�2y�B��P��nU��zx�Yg������VqAS���X���z�������iu��l�yb]�*E��+��T��{1���3���_W��Ae��8�N��Qj�����n���y�zq��{�F/Q��u��Y�<۰�o��=�I)�գ�6�0��:���j�,}�؎�����b�a��B&�?^]�;���]c����m�I����n��L�^�
B�	Y1��F�n��{g����1�^7j��.�����aݗBv8��H�+Gp��i��-Ll���K+��.�sx <<\��[��<с�D���6��gD��Â�K����$��[����ГZ��G�����;&��*p�T�ue:�
"Pa%!<p���PW`2t�"?h�^����+vO��.�Yf�Q�*����]V�є�&c�R��H��8�rEƑD�CŮ��Qv¥��!l�0�Sij$H��%������)C%N110�6�gq�q���ܻ�>�l��a��m���Xc�����*'��ˆK謞�FBYIbu�F;��Z
G=8bI���zq�#�{�sz{�Y��zc���g������zbuZ�ʝC�X�JsQDԪ7�J��aJ�~����Ѽ>�7,�QGsS \N�n�p�^o5�bW��$�@u�Ӣ\1Oq>)q�����73�p>��SF��ȹ�+��1b%�AB�fMb�"9%�\x��MyV����+�9��K����3I���N&��Y���Sd\q/#�YYXm3�+X	�&R�}�a�0�bIJ(s�͉���:Z�MZ:LD��y��TaB&C�ST�s���Tdb���G�i���BA���z�4&;|r(�PB���E2k�I��$B�9�Y��s�on���j��ܿ1kPHHrv�}�]���!|N9��W�,�EX�p����+ 9�M���KYZ��Ѳ�����X�Ro�o���>�gG89���u��I,�p���7��*�=k���$յև�"J�tԒ�;�W���b��,�����z����+4�f��#L���z!V�X��?X��*0�R_B
�-��,�$3����sv!0F
���#�
$7�DV�ޭ���XL;e�씝�Svʰ261&y�,�!��XZ]Q��D�=y&ˣ4�2T �GGy��Q}cK�K�9�/�Qid�f�Gifz
�T,��D�[�ؤ5!כ
���T��F :��|{(ؗ5��Z��.A9
�QAL=�U�b.�J";�$��9�r���;�.20����-ZZ\��Xȥ5��*�\u!�'���5Z��A��䉰V���^���
mm�/�dc����a,����1���6��
*��x��ɛLԹ�C�ׯ��W�9�PI��. ��zB��B_4O�'>�j>����dMef�EB6ٜ�i��Z�Ǚ I2�1�g��z�8�@twM"8�wo��~.Id�V��ˎIs>U�wԛ�Cȍ����{����{=;|{�������Es�J�8rD�=�pԾ�\_IX�zl��΃ErNF)l�'��A�zu����� N!„zLE.<�Q�#/D^T��
]\�@�� pP�Q=������.z����q�R�I�A�@�G�~pMN��x��gh��y;ϧ�A���4ʝXf=�)솊��1vQKH<C/v�u�K������R�|�A��Ӷ���$_C�]�+ W:Ҷ�ۃ�W:�A��m,#Ŗ�w�K$��>}�0�#]nD`�z��
"V�Ja]�l�}���v8���'����FI��D�J��uu���
jor�Z����SCn
�K_л��(���>�=~=K:�ںn6x�~�Ӡw-��G��Ї7��n��{g�ОJ���}<�晑\�#�!c�lm7&���ȳa�]�]�8"������CY��@z���@:&PR@z��`��zć��pטt��W_}5]�xw��G��p��;������Kl̠�QO��YO�ᄍ~o>����eR����Ƈ񼪫�v��oF�,ɷIH%e���U�2z��x��ۛ<����?�?%�/Y�����fd�M���g�l�(�a�6��"����G%<�k�QB!!�b�%ąK�������{P��E ��0P7�sϗf��#/ N���d%�\qs����j]�����˽'�(�"bmr�k�F�+1U�>�c�@�c&šZ�w7�Q�=<\��~-c.�H��o�ĽNxt!�B��G�߻�G_�r�����I�d���8��$�V��K��a�� 5FJBIx
ṐUks�r����PP�.B��J�ڬ�"�@����]�Q�2�Q�Ď �B
��zuK<1�%Z���a��.s{L�@U��� W����|Q��ktd\��	�m���BL�vjs�*`�$ɽ5vF�!$��t>u�Z[Y%�1��P['�(3P4�x.���ɒ�|�I����e�U[���������-Ș�e����hi��sL�#�0�k=�xC1?~��3;#ϊ��xFX.�r��T�d���.d�H��J6[�#��k��$��;(s�"��H.#yN��*Q!���
y]��ވ�Zg0��8.K�<���Z�5_��Ν��j��7��&�F�(��X2�,
��~���f$lW���`�z0��%ݩѵ�1���nM��V{��l��X�^��M�e�6J��At"��b�!��"~���i����1�Ų
9m@l�E_y�1�
@���ƺV/6R�H�	V�?Ҭ��VV�����I��PI���Sv�N�);e���j��>�+��M3�622J�L���MP��Ϲ��HY�X6�*
R;�w��,�|���#�P�Pd���z�CN��h��+�����
��,Ӕ�#�������^;#ٓ%�R,�q����-�qx_�x*@�u�0�,+��X�+�I��f�)2K�Q�0��}�)��tm~���H‹b��\u!�̘����3�7c��L����dY��"��n�	Xv�m�lC�8
%��
�_�����3tlr7��J���j��0�S%�����N�y/�d�G�j�c�"R�u5�RRr��c��V�6��`L���m3=�R��^W�]�6>�s��5������%��u	��G,��r��xG!�������!'s}y9�V�A��d��k7u�#��M��3 �z����F���{V�W}��F���.�����!��:����&H�z��ָ�WD��X��M��Ӌ����F�<��i���{BR'�]8�]IROs瑁$���R^��ϱ���ݴFB�5��p�1�$�F����d$9�V�6�x� �"�@D5"�;�ua��N	]�0�E��"��SΎ`)O��լO1����\x�,ƙ�D�P�֌��+�q������8B�����Խ��k�R#�@�찇xМ��%����$ƼXtb7O����_Փ��+�)�c$�k����EgI™8-07\�c���C^�Ş�f���˦�úkXz��WØ~wu����K/�n�'/�A�:}�66:ݬ��L�m�*UM��moتtI_��$�}�5��7:v�͌?���Ǥ�'G:�BO�><ApBY���»u���Ú�P(���������9�9<��ul��m|����D�}d��Y��b�m��C	9W��cAr(�
�nc����a@+��҃k�q�`Z���1�9BL��/���cm�}�s'c���,�[�����Lz�1	��u���{���"�y�2!��c���u��UC�r�Ƚ���D�MN���Ƀ�;�ICDQ�\��4��}Jaw�JB�i:QH�};�|=)�����:�$��n�o���Fs�tYU
��jNj~
oE.���d��=p�b�k%�u��ߤRV�>XD�bo�J䨢���HA�ű��P]�c#�O�R�u���~�c֤�����܇�k6K�Ba�"�u�����v�@�XFUZě#j�d��H��a%��B-����ض�M�f@H�L�Pa��$�2L���ݮk��ϛ��pbV]ym'vu��o��3Y���Ua�1O--&8rL��E>/���G�q��fb��-���haUeᶂP߻�m+��8��0�~$��'G�����nTh��<�Ѱg��x(U�H�]"��ZZZ��I�-(\���֊P�<A22Rb%�	�VGH�7N��^�,�vM��C�U��{�!\��z�F�j�fg�Ҟ�{tLs��-\��s��}��D�Ͷ(O����@e&.Ӥr��[�%�Ə�Q����Q1�� ���J<\!�W�^cq�˵pK�����1!^?���
Ke.r�yV��3��.ْRF��s5��92�Oc�¯�8f�z�u�u��zvk]nuvZ���z!٭�&�RbCr�h7����X-�>J-�I�~��;�N�#+v{����s���;�������x0�+��Sv�Ny��B@�p���[����1ɽ���B��vQ��pU
:�g���u�-j�_��#�i�KL��<�V75���&��m,K�j��r
��	��^�	^��p�,'�Q$�D}��9���{���
����	@�g2H��2邼0i�L��t��7*!����Tf�����&EH�FGX�k3qQ�2m5#�#���K��� k�9=��j��
_S�����b�`�� �qKw�Os��z����O��׍l�1B���g�܋��h�S^��CG�}�Hd�[�SC@[��b �N���(��M�%��!3��D>9v���g�E!#!:�!���99�}�ml ��#�$KD	��F�H��L��|�
�E:���}aӢ�O2�R���c�X�6�WLb�R)Ϥ�`��Be
w$�
�
/v�*;�c[I��Q~$��u�50��nj~��p��$�<I.���I�B�S�*�'(x
��0&�@���v���&�Bx���ʏO�I�o
�-����ׄ�����H�,��cXa k��	��q��8����� �Q�B
�\�R�>��wUt׉�T?����
�O:8���*�y@A�9������ν���%�>���"�6����><�v�fq߿�aρ�ahR�����b�Q�K6(���㟟�H�}2�S��y���V,�UP'�m�sa�8�kn���DՆ��g�WҠ��j�0hg�k���7���卡1'�V	Dx4�2%�ԅ����N�1�����&�s�(i���-�ʼ=T���f����<@���?�F�qP=7C����!�Z���<<���[������D�'>�?���I���H����d2������@+��w��‚���}�r���бX�-��E]�����w��;b��[�0{�B<�4�.��v{D:q���\���(ـ��`Ƞ�!�Z��[lh`/��݁���{�:P�/\E!DuH4��Jv���MM;�.k�J_�|]��KL�2�t�`�	���_6N^XBLY��ڗA��N6M�^�j��d{7^�J��m�76I"hTx��R�"!Mܻ�2���£���`)@���B�jICJ�O��,"�.y�9%ĸ6�'z<J8�q��@� �OG=f�"�m��ƪ���t;�j(v��b����S��'=�����K��&@�Z�n�$�<mb�.p��Q(�6�W��,EeJj��D}��-���	B��n�/
�-���y$o1��J	�H���>a�9��W>�^O�O'�[J�i�@#�T\���n�n�kRWaIj!1\�UFrr�^�X1�ؘ뛫�Y_�`bB�)kݜP��=�D����V����$�,�~����:�ޯJ���8mp���q��{\��K/�DŽ�H�=ʟ�I��Y)�;�y�m'�7$n�P�W�����;l7荗_��M2i�I+q,
!oT۴Z����ߍhMP���Ű�3NL-�xү�~msJ�ĉŠ�2��M[��r��xC${P�:o����z�2_���E~L�.S��S�;R��q��o��y=�}�|y��\V�o[�W I*S��!~i����c�9j465J���
ɂy;�ȑ�Գ��X0�7N��);e�씝��(-&ڭ����v���$�
eZ�:ǀ}�r��$%��6�#lN�{��3���.ɗ�Θ�XKC�g*C���ڪn1h����e|Cڨ�
6�YI�/ax�6B5���$F�N~�~X(�HdJ�e��rY�0x�,�w9ȏb��ی�w<?�{2�h O`��j4eoE�������J�FM��);%Ǫ[[�g\X�B��j|=��؅2ʨ��]^[KBU��Ty2��$�؆|dsEz�3�ay�0�<�՚��Y{���������ONL���堀��n��r�h�H! #�.����̤!T}8)�^�Lܱ
������yX�s��T���el�A��CO��H�XM0�ߟ��0�K�0(ܱjXb5q|��y(��� }9��%�E r^�=��'v���a�W�h�����E�l�;}�|}S<F�|�"�_�lY�g�	/~���<��%96���EU)�E�9�Z;N�|N Wr��ɱ��m	�DF�4�;9�MI���#q��<���[zKt'������i��Q05j��GF�����I��[�;�SH����f�(�;
CXO�A_0FA��>)'�>��-ؼ
�e��"�"��@�p(���U�&�H��z��-P���-C2#ϐ�6��?����4���M����.=��qM����ե�+t����O�H!�`SI����P+K�7�K���sCO~���R����q�5)���'���i�G��Љ��ZGԢ��z�e�ڵ�FY������Ĩ�Pl�9�厈hUj���?K��)!͏��~��	���|��+���O�o��O��K虗��O��w���@Қj���g\Y^�_��O���~�1賛�7G�4������ؠU��L�fʣt�R�ϼv������)zli���?�{�e��,olQ-y�8ED&���aٟ�0ێ���#8��@f�&��PGrX��C����'���瘯���p�ʍk��B[	���w�o���y<֊I�7������*N�,��@�)�uߘ!�H���:��ڦ-R�X}��d�'3n���?>̕h�u�c~���A�bo�(l;�w{������;���/�%�>M�8�V⥁?��Q�W�k���I��O��������2rf�1���IMiߊ�|����L�T�cbg����:Pǟ��/&9�7�Ϋ��IvAq��X��I���w+�~�겪��v��ɏЛ�x/�����:+�	۝ځ���ǖn��)���Ʊ���UP;V�Z�t�X]���Մ���H�C!��~$�JK�SD������Xo���p�(��Z�'���Z�8��[��\'�y�sJ)��s��cMH��b$�JG�HC����"۬S�	X�i,7>�X�?�a�>k�b�$���K��Y(��!�$�w�G�͍M�vM<M:D{�T?u�

�u�\�Y
5!5�I�k2��t�PVrb��a�j����	��1�P�{��lj|�m�p�6v[�<8����e`	�NQ�� ��$��$sJ@v�6'���h��� 0�(Β=���G���w���kT���Gn~xb��d%�c(y�ɽ��jy��$��m���5p'��-|6U�I=Q��ۚ���&c�zݗ=�4�5t�i���);e�씝r��\mKK�	T&�G��v�5;
*E���&�s�tp�:v��L-�Uݐ�e���%~&�F#�U1ˉcŒ��3�z[���Q�
��
yi��%#B]IxH�(�6ЎpVh�8�	y7�~��ʇ�Q`����勀�BvIhM�s��2�Ȣ�)�_rB��qx�V�U��q?ԇ"9Ӹ�\1���\.�-��������]�K�9�<C��A����8�ҹ���;%��k�� �k�<���t��PN>d?�/c'w�B9j�BBA�RO�ȎH�\�ר59���+�'
�7@�V+����"M����ެ�	�ã�zcx�Rd�xw�"%$�1&^8�����Ī�+�h�D/	M�+�"7K�#�o�����yJ)R�� ��32��	�k$��P�@w���L���˒�����l�cc2�ʥ"�on��x1�S�}�M�:��ȅ����\:�]U�	�ތR�憐�[�Nɏ;-~k�~�!���PS^����\*�@��h�9�y7я蹜�A 0�24�<fZ�P
�p���`���꼹�I��9�^(�+�K��t��_��y�V��CFl�<�%�'�)$��H�)��ۉ���Aix�.5_�'V�����a���p$�`k�B��?B����?��䛨>���'����|����������?H/.҇?� }��W�G��/���o�����.�>����C���O+�O���/R����֏п�7�N�ͭ�z�I������7�ǟ�����i�{��V����}�w|}�#���>K���D����n��_�uZ����薽����t���������Jo��._�����n?qT��s�s��S��w~'=��Oӿ�7��&��ﻋʼ�<��W�7���U�{���tyn�~�~��q���o��_~�����w���|J��~�����S�����{~��{�����`����u���77hO�DkQ�.1�u��H�15��SG�KW/���.z�	���
�e��D�Ęa�9y;W���ݠ�����{�����#Œ�����'�������{�a�\���������0W�o����z��g�J�d��|>o]�,io����B�r|�go1B\����/_T�np&O�'�I�7��
-q�oA�R/�ǙK0&�sC�� ':���k@@�lI_���OrZ��	�A���<!)l�n�}Rgy+�8��u��n�\uJ<$�DR[j�`��J>$�Ja�2���o�0T�T<ml7&`���$��R�$�<�I�臗��p�K�S3,;��۟��0�l8|�邠$V,�K�b�]�@�:�PL��$@�1N�v�����{�t}���?V�@EނD��<�H�ӣ�5`�I��?���\1/Ē\����@w+6��D�BL�Y�\�Y*�,��!W�Րmһ���2*�3�
ĭ�a��^�ps�"�\�B��w����b��
���v���[��[_�9e%ԕ�°��
n�	�V��Y!�4��H!�W�yn�y5���*���g�^V�469!�~���I~(_�w�f������'�ĺ��V�����2���Z�K�Ɂ+C(��}஠{LW.]���-* O�]���T%ө��Ҕ��f¥#��X�G?���OL�Xq
�9�J$�1�\U^̅�#����uʨ�{��1����_��_J������No��]C��2�^�������>R�-���?�j=/b����cM�<8��X��Jl���H��
�<C��=�_��P���ƢSf�̦��Sv�N�);e�/x(`ʱ�Rd�l�e�	$g�^��\]���To֨՘a�c\���_�ɑ<�� KE&; ����<�=��L�I%�!�A��4�bq#�Ze�LN!F�k�Y���`���x}M�.^#g�X�ט���H
1�`��QQÄ0�P������uٟ�AAB� YzDž4 ]e�<x�,�?�d2T����o��
aR���A��491!��*�*?{��I�Gg�T�r��0����ȣ��9j��8�K�N}���-�����u��
��!&�%p�$�xOD��#�2�#>R	8ϖ�8#"� �`������%��g�H$�\Ƕ��&a����O)�`��#^�橈�%�o˳�8�{�$� N|�تn���g"c
2|��v���60��JD�������O>�k�
�ې��Ȁ�H1O%&�Fyn�y�H��a��RN�N��qQ�Y!{�.]�H��2^�S��e�쬄�-e���Q�D��x,VjB� �u��|��%��NB��w	��C|��-u~I��&��j��5F�G7��]�z'�G���J�ʺ��	WBnF����ˍ�=��@���Y7,�^���u`"�ؑ�=OiQ��)A�ס�NPȏ��Er����	��E��^��׎�����P�+�X���7�+V}T���KE�M�햨�>�C
�3}F��0��2����x����G*�u:r�3 +�����c����4��+�D�o�]9�}����g����~}�O���1�O���t�;�MO=�U���곔�:L�l�Dw�y�u���>,U��p�][i��ٟ�����P��FA��!C���}�q��G?Lg_y��?�A��U�����7�Y����?�����z���_��s����О��{���/�*�+���ӕ���?����#������?L���)����t����'������?�����c�?�����?�;t��9����>�}t�mw�g?�	���C��oy���_��ޏҟ���O�e���[���c��_�g49:p.�'݊�ב��l\�Kv���ȝf��;^e��e�����̙stWP���K��k�<�<VJ�xڏ�A{�0r.}�ʦ<A���y�n�D��FBf����H�Ã�1xz��{�BJ*g��7	��>s�$+�g_ϑ#G�w�yq�ѐ��;�z�d�g�CZ�Ŕ4�aS�ҋN�V�^k��kS�JB%lo��i�I5��m	����J��F����#H�3�Jz����ܨ�c]�.d�A{Я;Y�e�1�M����(��H-V?��oю�����]��9K��öz�Z'w�LpIK]@�ZGv	�q���D
^�l�~:�\�Q_?�cD� Hwo�=�ZQH'�z�S�r�	�cX8CI'N�����k4#��/҉3�f)�*`��
�7!���"xK.۵�|�k^D��XC����T���$+�
�����Z�r���>R�CKs��'T�3��Q�@g�%��d��KN��;+��h�:1�N���(	(�2`�(�A.p�`�WD�e�2��I�\�}>���^�T��J�,����&��'l��~�����2�ܤ�G�U�J
s`jjJ�A��V�
}tlL�nxNr�b��162�{�Q(�W
�Lt�g���z��	!>E�Ec�0��h@BI�8e��@�ܯ�|�=3{�ڱ�
umu�v�e���9�`ʖ�F�8Sa�`bŞ�����Iry�5<vB�g��q���#ʼw��?L�,�H�e�����aL�#V�)	L���D{n5q�3	t�@��9Q��v9�Ӹ��
&�ѻ��]{��)����%[����.�m�zC}Owg�%D6�'��%=���������N�);e�씝�]�#��Ѣ�(ў�	���VZil��
[5ڨ6iusCo�w���\�F��gh�e	~�5�ak��f�$�wq�l2��g�8ta�����\�������i�·��G%Dj��b+�-��4�w�9���b�DG���3�]�o���.F%�󙼄
`�e��{8I"�U�x�z+��b�e�Q�f�1��|o���s$�<:
�SX�u��Xw/�X�"D��1j�ie���=�� �߳��$�^��a��M�uA��A�H����{xx�8�04�~�m��+����4N��H��@��p��?xw�JCsz8d��I�O�>��<( ���Ũ���X�w�Gr������+���Q�!�I=�	㕈��J�ۏ�EG�y���X�6�c� d��GK���x!�y܋u~���<����}�燗O���K��B�=�-��P��$�$��d|��&Ԅ�SS�t��a��>H�;.�A��}�?�f[����X<��΋*�w���ƵA�;4\�!Ko�R`���j<���;km���0B��FT��5I�B�@߷
���	9;$�':g��a/�AQ��%B��E^�rVs~4Y��0)�����?�����j{��l[
�r�g�1��|�5հJ"'x�H�t	C���,kLT�q�mc��G�l/,O�ZW��������k|�>��I�G��#��#��[��G��#T�j����Ge�Wx�9r�Q
7�x�U¢�����{S����-.m��[�ҝ��J�Ƥ��4������E�Y�b\��73!��?����ɓ���Ohnn��\^��#�O,F�?�?J���q�t���r��ӡ=�hy�
Ujy	
��w����_��x�����~H"_��c$����M����w�������	�S���w�8h���� :3C�3���9L{�w��<@�^~���m��|�ɞg��_�p�Me���M3��hcu�66�c�w��:�)ģ�|\��g��"J"<9����y,���cw3�����_����ϟ������o��k��v��qVmg(!�˰�<�A�ɍpb_o��aI��L�q&Ez$^��G?���v �U��@+9�CYy�|璟�g>�< AH4�g��Lz����h�����R�=P� ��S�o����C���A�b'h�=��8�H���z�>cܩ����Jd+��`i�۾��5��=�I�	�Y�Lׄ��T�HCIj�az�q��]�!�A�T�w-�]lG�@>����ڒDM�z�︛3%t�6čW��q�����1&ЎSV��Ú�#.#X"49��\�$?EO�UU�z�q �{�8�]
k?7
#`�
D��}y���)RȆn̛o�M�
.��X*���˱���'���F��8N�7?�e ���Mk�|ucD�
�G�x#I��kn��W�+PKIL
�H�9]3\��{�ē�|�~��A,Ԡ��@��Z��3,��hw4V�X� _<$rF-r D���\�QrJYY���(��4����
}GO_�~�U�ES�mH,t2��TY�
@�Ҫ�ʡ�ν��@��]S�Y�װF���E)™�sttlD����c��1U8���p�_�)���%�t��D�e�uA9j55ɹ(�FݨE����S�X��PNH"�-0��.4W ��0��Bdp�,�
������>��?���������R���:ɿp���w��J�a'�
�wd�k��ۿ;�Z/�͘\J���=��]a]���V�ף�ַ�o�a�C?�c���]�<hks��Qk؆�K�Xf9�?H�,
�"D�|��q	��>��>�)��|:N0��);e�씝�S�+�ӎݾ���r�I�K�hbb�v3qЀE8�5������ҋ|<?:��*�[X�N�3I��Q�$B�B6���C�vP�AÓ��}�R|llB��#�Y&\b�8d`�:oR����ڄ�/ˍ��I�� �`?DAHQ�\�ꥐ��\ƹS0&q`y;nK�FFFh�<"0�/�+I��ju����{,H��{4B
!Q�'�[9�B�D�{g�<�@�@�5�b�S�:766��r�n�{$�>�U��A�EDÎ�K�Q9�5Ry�'���P���V�jlf��X����8�;��c$לZ�gC
J�CD�A�+9�(����r?�;�qc#HO���n'ac�.�J۷߇���L6�Od'g`�^-%ۑ�/�X��.�1�s���B�5�o�09�g�:d٫��H)G%|�=ȐB��XG�6	:�� T9���'��O��'�]�=mk$���1&L0���4��DO?��wT��g����L@f⬦��{�G	B'��)�D»o�nX6Gΐb�@oՂ�4�+�J�&a�$�.�����:�pMdh&��fy�XnV�`�F(yaڬ;y]��kFK�
#.װN��:U��`Mp��d�NS��4y:��F[��NKH�F��Y������`�a�����-�jָ
�iNR�~1�S,��t�<�uDB�q(�>�SF%��
"Q�יA`� �,�w��4>=��4�*���������}��W_~��������!����st�IE
�4��ŕ����qw�>5N?���M���?���~����?�z��346^�cG�S~_�~���/��?����[���k�/~����w����ѓ�>C��z@<b�#eŖ�?���e��O���������Z�>���w|�;�Ͼ@/��=��o�_ r	�
����F�Y:x�0��w��>��-z�{N���4��
���?�w��a*�I��b�K������0SbҮ�kI�.]�B���+O}��?�]Tȶ��w����_�az���{�z�>(kO��&����_l1�h	tOi�6���I^��e4���)Z��k�v�I�N��g6�I&t�q?NՑ�+Ce�����mظL_3�N�u�=���q�8Od�a~�~!�7S��#�������o��%+���c ;@z����^��q���ַ��@a�� ��g��C���F��w�
F�'�h�	!0�x�1]ƿX��䚋W`%M쀭�Բ�b��"|i2d�6�0i���R'��5p��Q�.�U��kR�Y��1L�adE��Ae�7h�����:��;���~anbX�%84>c�9�͇��Ċ ��WR��=���κ:���O��\�K'T&ؤ&�Q�!v�+r^r��q�*�PP�7&?&mCБ44��yYxP5M�$�A�%LN?�I���3H��b�%6�� �Z9�n�E���7ڇ�c��y�4�4�o�Y�XA�\�X`�ʊ)y�*g�.�B� �wч��r&�,<�B���F�y�n�BF,��
�Z	�-�:�����%��1$I�\b?JHM!�ea�#VX-��Ĉ2�5&� ��1V؏I��98E���Ek�l��`�/Xyr�GsyD����W��#B1�9"�C;�4�5)p{&Ը����(K��Gc�nnn���f���RN,޸�||�ord�$G�(؞�tVVPC2A�%��� �����Q/P��ݻF� 9�
�	 �B��Y�Bv� }-I�Y����yE��P#�ʽB��a�F���q�(��>��$������.G�Az
)9Fq�SFi�T�'JV%���{ۻ�]'��.��d�uƸ�!����6��%�{Q��HtWM��]#�!�q�p��u�6R	s�}�<����w"�N���yœK��@�RX��\�dg%? C!�D���P��Ze"|H�涸��Sv�N�)���Ġ�EN�X����ڜU�r=fR���F�})c�"�i-ʋ�u���jbq����{��00�b櫂*�^ƙ0��f���1,'5a�т��5�[,��BY�<`$#�^��M�]3Γ�^�\�=0T�~��Y���-?[��Å0F�BZR�>9��m�%}�ZU��Um����m$*B駎mPm+/��4��%�+,3f����~�f���5��|�� gK�J�lckS�2zAB�@�6)�A�� �e8�ϐ�bdn	�CDžy��A�Ji�r:x�^9��:�B7�ǀ*��=#�q�h]��;�㊝���|�,�1r:%�gW�Og��pY�!ka����>��
Y��	w75��d���1�H�9�%=w�3�ȬG��9<���-�FS�~ƙ<���éU�QE�ж�#@�H�b7Y�8}�4=����ʫ��X���4c睢�1�Љ�~9�6P�ܥSt��Y��#cl?{�����;o�]�j��1ǭ�X���n��ʡ��E����E�-�iG�<�FMY��.פ��	9	5�@`56@��u6[�kZB* gb��	5�Brr���r�L�m��B��,.:�T-xz`>A�DŽU�|�6��h���}�̉�TC��a8��7�zd�逴�t媈�0/���F$3�n2��Q���\���/6�Ճ���k�34N���5w������\�rA���/��sz�	`&}�(��W~�'$'�ٗ^�_���K������oJ��,��������C?�!l��~7�:<�r2�u���q֍B8��O�?����1���aj�YWG��;���)Η�o�-���O�o<��w�K���g�Cő����k����x2fCՕ������e0L�N���r�>����'Qa����~��ځn���3��}�F�r���R�ה��3?-#��{ˇ���i���-x.���$�%y
��ڿ�:�5��Q���᣼�ב�5K-/��'��<m	5k�(n_���Զ�W�龽St��:=��I��=�*ͷ�aX� ����ퟃ�#F��D�x���t.O~� >y9
<<�}񿴗�fttԲc�ܰ��� ;�w�9DH��g�~���"�����������a��1@��H��	��2
v�l�DE,r���dh���
��r�AB6]�CC�H�$E���P�;%�#i,p!��-I�b�j��Z%L�����O�A�f��ˠ�u��?��[���_�;�R�%lA�=�Z�o��6�O�.��Gmכ������˷��]&�+�y��-�Ru��(����G���(��C��9I�e�_r��pW��qy�fa#w��R�c�3�%�2��>��zp�'Ad��5��	�[�A೎dI<!����I����j��g%�z@��|�Xq�Vk��Y�,��X1���<ʈ�k��gyv#M���3p�׈�y%��Hħ�/D�1�s(pyTI�$���Q�r�%>�
c	�2��^�8GF�`�B�J�)]�#N�\6�x�S���4�2��q�,�ޞ8�q�Ȑ؍��1�Z�:��CbdT���w�ߺ��6 B�Qbw�U�u"b;O�OHrDH@hmw�0.zw�r	�D�e�
����P��Z�EX0p2�R#���`\��&�v�p���:��l���C����"�B��b*���S����R�9��H�D�=��D�g�>&��*�W	O޺E"!�{�?&��I�n{|*��),!���ޱ�xb��G�LX#9p"G̊����b����c<��+���;��3�cD�x�G*Qh�H�ƭo�]���8�u'Y����u֝�Sv�N�)_�rh�>�=1F˛���P܄GhL��Vi�R��}��UI&1�2Akk+���BA�H9�#A�Zuz��D�B��
�j�1�u���Ŀa2W,1�Tpalc���ϥ�)��VXO�0��3>��xy�A�X<(`ΐ��0.�������R���ʊȡY��<OO�+�z-�hH��qɝa(�w����
;�s�y�����i��L �ҟ�81V�,au+`x�e���5�$�H����ɮ!��g���v���y��K>�kHu��o��
�]x�H��hN�H����É:�0pZ�e�<w���n��\�%�?�d�;I�@�翹E�5��$d+u�LJ<0�	]��`��q�SHj.}
���!��Nb%�s$2|��4��{��,�OO�i����%ч��:�����#o��c4��@�ϟ�Z��mA�8��œa���I�%��7�3�?��P�[�"_"�cĖǭ�XV@���]���c2C�>����O�D޽��O��rF����>7N���.���*o�Fzpr�q:*�ق��Е���9�Kܗ�{u�A$�F�P
!y����c�oy�m�2U�<�zT����[ ���q�/�7Hׅ�ɩ~k47�rw�\6ϒ�O�䨆�Hsw�|oeRb� �)�U
ɞK5�d�#I�>l=I��c|�jxV`2.��oct4������w�P�1�'��s���~�XY&��{��9�շ���5dd</u� E��f�$��
�Ts
&�!�^�#��F�,^6�5�>PI=c���l7!R3E}/X��&�(1�s �ݕ���
<I�5��2N���+
�֔��cS�S}R�sA?�g��3���kP�q�aH�9��_!�n�U�񸰱D1��2��Ƙ�C;��t�I�ߛ[�ۦ��[gg�+s���2=Ą�"B)��{".�鸾}��u
�Z�[#�P�����oA~���	��Av �8��}��\���:���z�L{v� �Ȏ[o�Շ��6���g��C����Y��$/�szx���c�F�I���@�tn�Ў��j�Z$�\�C����юt�I!"������ABx̹�ҭ
X���Kr$�ƣk�(�j&��I%�8�\?@�a̲�n����8Z���(=�5C�n2Q�pq�w	�T#Pޤ�?/���Q� ��k)�O�uwst�
���:���,�� ��-(���m����'��B���~b$���a�Pbu �lR�����*F�n#�����~�l+�
���AH#G�yo��MK"��	aC�ċ�L]b�p�����<�	) �Z}���a��g�q�i����V��U���dì�{Ypψ�Xޓ��@�t�17�ר��H�	���a�,B"���u�u�7������2�1J��oK�'�$o�d���Q��:���^9��~$y�:?�$�iIbD�u��+;H���U���M�}��u��d�_P[�qVKxc}��e�
�{j�([~
��[�܆�s|n]���T�;=,��g@<GG��\A���a��6|�$����0ʨ�xNu�\r@�
7�n<ѝ����%c��QX�����`��&��֛�>�nX��6����BO�}Sw���c�m�n��I�c��٭�nU�:ō��!��#��9�9c���q���L��.Ѧ>��ZFbώM�Q~Av�J1|�ju��P��ģ���ћd=�);e�씝��-�.�Je�
6���c_t����DcR���	*�S��2i�`�$��
l�����g����L0o���5jV7%��G�dAb	ȝ}�'i�a�b4W�I� �,��X�Yn20��.!~�\A�6:�>��EQ�P8IRmc1rڻw�jU���b�d�z��lK�5P9�J�B��c���/1_��a��c0��� �9��Ї�b9�c�trǜ~/��\�fD��2�9��{�d3���M��_�ӵ}}0(�!�&�ְT�|܅��^Gzx�}��əᄾ��/@�IE�����ߍ���'#�Q:$�g@zdq����1Nx|A�����ґ#�8��\��5W�$IG�T-�55�9��ޣF%�Ȝ�aW�۪�x|w�B>���٠3���ő������;s�4�:}��P«Keg�d�^��eV�&��b�yoZ����&}�Ar��7Q����>Ux���E��v�^+ŀ�_�"ؿ�n��:v�	����j�w����+�&���$�YB4�3@���P$��C"嬠Z�D
7I=܉��S%]�5xf��:Q)N�q��D�}/��	:�x�h���G�#�tnBF=?0��;�?�`/:�06�>`�l�#XH��Ѩ
raSk� ���0�c��_����}����t=Px���{��naO;< �KP�`
�g�F�P��1�^��n�0>�N��ި�������2�Ϟ�)�<�sv��gSO@�s����lV�Qz|�Ib¸>м.����E����W���#Stk�J����l��"��w^����r�>��E�SY�;�Gi��/#<��t#�K�6����ř}�ߖ�;���rw�#4�����v �^H���i��������`rú��sy���nllȘ�����{z��Z������zx���F�M�����⫯����C���ո���[a�챧�*.�8\`v�(���rL��4z,tH
����t��E��;o�;O�p�f@����k'��st���|Ν"���g?+�����hx����K_~D�[]h4�M@ǎ���<��*��������ۑ'7C���=���mwb�g-�9�ةWFI�4��-�J���]Kj�*����D���6{b!9��pw�Y����}.�<)@���`S���ŵ�1���`穢�L��%
Nv��8]W���H�]65�w��wB��v���R��#�n�I�7�E�rЏ3��v�z�i�<�c�H,̑w����AZY]�S�N��L;v��}�Y^G����U�����矡��u���{��kt��qz�W�0�KW�^�{�C�Z�l�H�%��,#\	�i��}�^k�[�^X�C�)��kvl+�5	=VC�Z�PN�ƒ!��~�<u
�%�׬\�W�>��(���[��"�L3,���aE�h���(0;�?�U�0��?�r���ŜX�tD��YU*�p#	���k���(} 9Z2٤m� ��յ5z���0��MV��؛��vz�GT��ˬ����Ї��_}�N?A�/��CGӗ}�&v��3�T�e���Aӻ�haq��:J��q!,5G戂x*��!��\�=���o��=&���Lw]�6�ߜW�힡k�I����Cw�.�n��,�~�N#�-5�v�6&u-Q�ٷ�kᘌ�܋�Z�q$*�[�+����SO�A�)�!����b�ʫ��|q���=����̌<�P�1Ȅ9
�Y|���C��=C��6z��WD����&��!7�k��\o��l�씝�Svʛ�`��Y�("�=ىI	M��UQ�8����\YY��	��L> K�	�ky&M,�fi��׉s�D9_(�Z-�3�ѽ�k�����X�z$5��C�ep}� ��-�j��,R�A�r	:	{Y�)$�(뱣|Bd3u5Hi6&t����'n�Z�=�Z���3H�]��]��i�<"���K�%�\!������W�UIf8PCB��y��z��@�XnD�dX`;Q��lg�7H����&?;�z��Ó/bT!�+\^�X�{�H�Nu�Zƫ�j 2��߁zh.E+�Hu\�YRc(�⭜��_�4	��^��Շc��#z
���(��b�C�������@^	�b5�Z&Dth�IHW+�V�c�FE�U�-��y���	��yp
�校T�v�ok$x���k"&�H�iSH�0�Džm��@s�D.�Xd�ǰ��;�q{1o0�QQ34g��@��<�j$G[�^�ɒ3���m�shnj�����t�U1;����G��8F�,����;�bW�|��-�_�0\ȁ$�u@�t�Wi��|@*�n�>=�b?�c�wEJ�@M�Wr�ā��dK�Q8��Q�)����S���K��A��\,:FN<q�����`��Y7f4B�qD
%���dرa��?o�<0D���a����A�FZ/��cX�#�����|7��fгZ���gx2�x��<cP��\][�MD$��LC͇|r��ync�na��]���WOo��+K�=��D��O��n���L��4����oT�s:wg2�$��;��H���@ف��P�..������풖[xt0�PVI��+H� �xth�{��5�_"���d�K���e"��Mm^4����}��CE<p}3��L��---�j25�9����}��>&��r�7~���>�	����<�{����9z�;W��%s����{@?���Cw�v}
����F�����G�E�����?�'T���+��
��O����]w�PX�o,�&�����ێi >��&���w�	ʖ��ԍK�-�9!ޣ��s��h�0J���۽��m�<l�I�)��͖RB�{N��tG�}��ǺYzK	���� ��B#f!rL7Ay�rt��Lc]_��C�.���F�-��8�}�(y�ֱ��Z��R��Ȅ�K��Cm��7~c$J@� !��
��l�b@H��/����f:��)�R�<물�w�}���mI���KKKt`��ܟ�	��������&��v=��/񵛴��'?�IYS���� 5u�%����*�C��@��uB%J�mw�i����3a��L���
b!f>�9ᬦ�`d�$�D�R
+O�� �	� 5Ν�*��gԋ>i��ީ��B�#<�o�z�I�3�w�\.O{f�ȋE17�zE�)�P��lܿ_ș�<���;�f�|�癀>y�W_��/�7���<�M�x񂸹>��#����9�>��v�6��_�7�1��-��cO>N��y7-��3qu��xy�x�EV��c� �B��[�,7�\�؅��J9� !mj���	�|����%��I��m�g~^�Xu�1K=�w�!	���]��L��Y‰Rz
���a�t��77	QSB�>����x/2��?�����Kח^x�>��ƞY:w�,�}�]���wZ��_��xg�ݳG�������ey��y����/Ӄ<H�=�}�[��^z�E&��˴�)��D;e�씝�Svʶ�X��x�)0����iz��yڒ`0�S/�*�6�/�1���T�nB���\&<�'T*5j�LZd¡�Z�X�{-V���ҡ]��?��^V`��!�N���V–��´Ƒz�:�IN^,%�=�b��
Г�n/H��D� ��u��ܒ�Ϻܚ
��`�8�@��M&B67�$��M�Ȃ�	�2�VeS�TI�VyT=�cև@��^���8��gK�*�XB���Wf ж�C�O��e���.��ݡ}%�����sh�6If�ru(ё�P��*��n[=����!�b%.\B�L��N���d��H
F�D�9#�@��B}ߑ�@�4��zC��X�sV��Ֆw�0^ ��T��j��u���,ø�m�	��YH�c�I�a]��%�|&�s�K�ɻ��۴��. 5��r�e��oI��7���x������8TSw.@�Dr����$B[��Y7fCy~�q�0[9���-y{���.>���]Z�go�Ν|��ȸX����K�z׻i�{���2�������`�ˉc�?�
oL��ڊg��k��F�ܜ��C��Ah�Ϋz@K��م�̀�k\��P�x����(ތQ���$���f�L}�6�%�'rap����G���]�<�_ޛ��0�� T��zt�a�����t����70#*�����F`l���?�a$� B�f@�4(>l��Z�v�׳ �;�K<�F��x�>X:@'���ҪR;�Ga@�O�Ix?�_e޿��E��CG��闖/��
�0�)�����I�ޥ�{�u����וVA�r��;|X+�ᬌk%I����݁�\>�U��s�{y0с�>!;�Kj�����ڊ&hN`eAJb��&1���O^^��$��ޘ��
�m)�ta�u!�¶�U%*��=w�N��&���K�K��q��m�]G�P��s�п��ߠol����$����������ӡ�	
��V�^k��Yh�f�5xc�!�ι��#H��C���ϿJ�j�f gv|���#&m8��[}���nf`�h���>/�v��͒��:W�%t��$N����a��M���%S'S��8k,���h���6�<�uM�\�'(���|��ɒ�I�L��'[�6B�g\|z�0	ԍ�/ɚ �"�2ªIR<�\:麉��:���)�E�BH6��Hl�:Eqp�'B��c��7���{v��ӎ��1�Z�9ݶ�,E��X,Fȁ�61v�Q�[��I�K�&s�X.б����!x���1>�? 0�������1^��v�m�G�W�����~ڳ�7$&>�~������M��G>B��;�C��+��9B�V�<�"Mv��X5).���"�edSӐJ��,HB�v�#
J�ϯ�7%�^�
���xF�L�)rTߪ�	��
K=~����,����ᢘ7��Y��H��q[�3` �k!tׇ~�،Z�`�HBj��Y*��i�:���+�|p�!�k��Y�]�X�
V�@���m�X[��r��u��ƑN���ҁ>{��G�^�G��Z`���N�O��/�2�Y�8z�q���G�
�<�!N?�1q�:�?�^~�Ez�{�KO<�<�o���	QV�K^�,-���A��4�g��)�%s7pD�$��	ݳ�$��ɸ}6�;ڞ�A	�����%.\�u*$k%�˄�Z�5��M�0�=�m+!HLw�yoK�0(��"�:��R�d+B^�r���O��Xv>������/�"�S�S���,J������ң���={�~�aY��^�;�K��.��&�DLǎ���i��=���K5��);e�씝�S��R!O�SS1 �p��]��� 46:u�!�l�����,�y?�31IcS�T��K�f�?G,ߌ���C�l�k�!��ث�?\XX��R���Y5��ʢۧ��y��xth}uM��V���R�x��\�#����bRE�V�,�	��� 鯄tjf�#@��|�[�+��o�������l�Y�)T�Rq�&�[B<J��&�[���#9��%ņ��t�|�u#�tb�c4o�UK/i��}61�H�����sƋP�4-����k�.�;�յ����P:,?>gg:?g�%�a�D��.̰��[�=W�4��� W:
��B\	��
	�[�9R�Yy�Xی��\��#��Vi�ɩ�"&ת���f��`q�Je[��L��U*�@�<N��3���BX�,?s��[�Z��$n��[�O��$��s=$F~1–7B�xolě�wY%�0F�2�:Q=?�>/�;i�����zij��BD�E &pE<�
9�y�� U�Yꍖ�7�e��c�M)wx�����$̅������~�1�V)�r�<e�M��~�[��5�F|�ҍ0�m��C�k[����i�;�1մJ� 7�e˅�%�
1�z��ʸ/�M��`��
�>rF~����`�\�y(�望C��/..2`RT~�8��F�<rx��<�qx��4�����~��$[�-۔(Q�EERI�$Dn��O�U5k��wU��U��I���s��
�v��ﵖ���鍤ƥ��L	:���UXS.qi�8��ESh�q3���t���;��(~<����ď%郞����^I|�#�Yxb�>�~��J�≯�E�n^�J�����;K4�"�����h-�3�@��N���X/�q���﫞�.��5ZG�����6:��.dzV��Nɸ��������<#-���o.�X��N.�q���1<�vg�dG2sV�װ[+��d	>.g��q�l�a�͛7�Y&`9�к���`4��(cn8�՛7�H�^�^�!;���*���@���w܁��4��+�ox����]���E�_|�	�C��
�o����u:�ŗ.���u\�z]��4�Κ�1@���M�D��0�����/�F��_��W.^Ɵ�3
�>���qLsReu��d�5���0e��_��H>/~_j�$:�l��ԛ2�`H��Z0
�bd!c?�SY�H�� N.�*�D�l_�[��#�*�BQiM<��d�o����@D��B|�3���L�a�
��@��x���yN	Цޔ��w�����֜�R:~��H�`-8X��6��^�-1fA���w4}�SX�@ڀ�@jx��3��@2GS�0߭vK��Y�d����;�ſ��F"��4�<��c��{��j��w~�v���C����	֯��1y>s�H�8�*ղ��p
��}L	��ʤ�|��+£��U��C��b���.�R0F}R��������#��9�HѬ/�o��L}�@�)/���p��
�����rB� T|�;����'���I�'��-��Z�c�c�J%GEq���c�a�
i#�o9��
c��\�����E	X��k���!)�W���������V~A8%(7�t��11r�;�����G~o|��k��+"�w������F�V����������#��w~�g~V���~P����ុ���(����ϻ#�xTUBV�\c��������-S�P���#{6��뫱�@H,�bs"����
At^��΢a6=o�ˣ2ьm&�d� �~)�׃h�Wv�RS�!��Mҋ�{�;�_�^o�*�y�b����@�o����V��˿,�sԿ}�7೟{���x�
o����AP��7���O�۟�[��N^�grkb@��5H�r��Q:JG�(�f���'�E��2�w�;�.]��r�I&*��cݴ#@��g�&k���O���8�!��R#��*8����w8����D\�I�c��W/�N�lj��dWy}a>T>8�*XțrI�cD�27'��& �!��t	8$���F
5��enI�����k��Ġ��⼁����H��� ;;�D��E���n�y��z���F���c"R�DZ�f�g�	O�xb)@�).V��z�wg`��_�u@�������$$��e-G|�DDP�;<�e�=-�>�6�s��U��c#���	�:R^9��в��]wM\7�DZ���Y�.{�E�ʳ{VW�-�Mo�<����;�#�V�'{~H��vO���wKj�V[$��d�g̵x#X��n���G%G'G{��T#�U��HFf7i%4�9~ r������177��.�����f��K7[��D�̣��kq��<̦E7t%[��z�����Qf�T�I��ؚd �3��DT�FԿ�J�$�6o�)qpc� ��$nh���
(���)�+b�{J��A�ȏ����V$���@�'�O!܊Z�fo"jyc{�l�3#@��!�8N�o�mD��� ���C��FI�6Q~�`��c�?�.��/b�c�k�ec��8:�L�km����<���ņıX�`
�h�e�+m1e�R�YCd�?��8М��%������5f�?�9ͻiy�>��T�Y�d�_�L\���i�5�*a ��Q�;4?��A��!�ϧ�=�i�|������h,-`�F��m���Ȑx��sɔ���B�`����12c*�8Su���/�[~��3�S#�XwV�ڊ�&>�K+��z"?��`WV�� �C�!�C,<8�^i�3�L��kr��f?��x����>	�$"�=�l�sDh*���@@��<nR9eM5�#O�m>�Lt��	�5�:�͖	B0n~��4lĿu��Ze��,�AhW/�y"f�����i�T���L2Y�dMpu��@H�Y�B�D%#��7C+X�E� Fh�-"D�Ba�'bp#�`H�4'�&B	u]�u�p���"H� ���0���<
���
KCv�l,�Ojb����>�gʻ0�)�#]_Nj�I��|�Yws&8�$R�@��Բ��{�&]\GD&f��+��q�-	[�SJI��S���}��Y2+zz2ve'ܻ��`sn�?�T�J�{׏��?�*���eR��_�+b��s+>��z��`a��^�0S�_Yq4��N{-ёI�F�G
�W�� ���S��Xy�9����
K�X���'��1cqQ�\���j������\!�w��n<��'
���!��%���1;a�')�.�M
��X��B�FdJ�ꥄ!��vc] ��
��uJ��W�x晧%@<��Q�W�=�.�>#>����k��w��Ld���\�w�s7��VE���2��}������b!��?��Vꉃw.���}D~��~߃�G��_�)�e9��7Xq}���Iڕ���I}�8:BN�#�C`��D����v����%�t�f��a��13�N���L?�9+-�s�u������iu���Cmz,���?'�.�tGR�LTp;��0"����~�>^�����G��&e�5��밵���AqQǮ9��qV��XX�u�=�=��OS�~���Q:JG�(�H�b��Hs�#���N[}�dG�z����$�d�R&P�H򑋞q���uč�Hn,9y�����'>�>���(0B��I���
�6�ps�ġ:Ek]H��t���ǖWBi��iTj��:��7B�X&�g�N򆛼*ʲ�.B{��� ����,k
ɗe�	�,���I�.����X 9l��7�Z�a�0�D�4��bD,[�Uj:�lPtdc�ij�=!�D���.���h=�^��8��ź���5,I�7��sqA@c�A_�q�:�.��f�7�1!�d��c�IsY�Q�ma�.�|ӆq�7ԕ���a:��Ο���׳B��Ձ��.�}���
%R��X��t��w�w��చ�ck��.JDZ��P��q0G����Sc�cDy�Ь�%�.�^A�u�������ܥx��5\���|q�#f�T�ܢ�#g"}�Ւ�i�n%�w@K������l���8��`�v���@�q���V�KdY�mA+g$-б2_�g����A�Z�~Y����3��C�h�iOֳI�r,z�"�
��WV~����}�=(+�:����3vU�}˃v��}�-��v(&���y,xci����,vj/V�!Q�"]J1R�g���P��hmJ�6]⊰���W�AP3�'���*�f+�-�p�����F�6P����B�N�ZŸѧ�n⁶�y�$��Jݟ��$��F�$1�,b k~�ߗu.Y�,reQ��f����ӞuP���_��1E�P��0X�Ö��}'�!���=�~�XP�����x�^X�;�ހ]|��$l���~�ޓ�F��J��a�!��Cv��ɥ�������h�
����L܎p�g���d-<�ڃ	�7��&;�|��`��_��N�ƒI��������@��76��m�A���c��-���~�PË"V���h+��X\���+xzg�T�}g:�ߦ\gg+���N��1���+%	�h��l��w���lj#D
��F��5ɤ��b_gM:iy'�g�#,;�vTa9�[ED�c_OVh��8-�ߧ�Z�'�5��Tu�I�>�e!ަ�3)�F����F�����A�����fh*ܸ�R��LX� ���s��Z�K�Zy8��p"�9a�e蝰R�3y'�8�S�u�����Cߴ�-������W&9A$���bq�w�L��l�@Pލ&�)�l3��	�g�L�8RH�",��<�K�
����%�%�?�u�]H�)�G�,Ch�2+�آ�>D$x�����$x�RAN�-�($�&����.-
0�٩G�����;�h2�J|�ꏘ�;Z����#g56�d��#I�ڍ �]|܅Y�w�.�庘��H���R=E���E\�C��n6Ǻ2I�m4�����bbba~��94y7�qZC���dc-SB��|�|N캋�*�	Ῥ�����P�6c���<g_�<�7�akD	����g���D.W��DSW��2���v^
��V���mo9e�g"֚ZQ����MG	���k�XD���W!�`���P0�]�-�b�QxL��.��@��N����U|n
B�'h�"%4���>��� ��k7�(�~��-�+�������h*�#�e�t&:xG�����
��AT��L<#�}ŧ��t���Q:J����
x�ˉc����7�Ǘ��8}Rb��x�
&eI�ȗ"b����.�*��,�H~"���f��LĂK$�o��p��E�8��M0ĸ��X^Z£o}���v��BD�-�
�Ɖ�IrΝD.����J�l�䘭n{�>Ɇy�H��u���V��?Z��%�r0�1@ح_'2h��z�5|��bB�p���[!ЦNo ��De��`\j�<66�[�W���x�#��%/o\`�~o{G\��j5m�n�q����Y�&.�h}�]�2)#z��1����+I)�wE/��$G�l�:NX�l��u%�Z��z�obm���2�2Ui���P�݉/�>�I-&���!vH��2z��ޢ#nsٝ2���IGY��y"�x7��Kϯ�J���ꢸ�b�Ƽ1e���;`Ͷ������oɰ��O.�1�3���h໾����NW^��H��;[x~c�C"������\ �E�|����ˁ���V������U����YV��|5����x���r
�N�q��6�FC���+D#��Mڵ>0���n�ؚ�t��X���x,:ȼ#`#��Y�����
����Ǿ�{�%�k%a�	ǐ@�~��MS<B9��Z��Dm������'б6��o�,�h#�� �u��`��N<��8�6��X0z���
�y!�6/Ӟ2�(/&��s@&�uΞ�cyYsQ����ٔtM�6����񼳈�Y$����2�]�|�a�K��rů�J$^7�N����~���XǺ�K6�F��,���RY�&:8KG��c!��\�q㴿iץ}O�4"--��ɾ:�b�&72n~��~�I
���V6�GZ�A�?�я�7���r̒,�0��<��P/��R��0�A��;[w�ӖS��
��lL�����ʕ����	!g�8�Eb�8�֖�u��j�;��._���o~
�N�7��}��p�ԩH��N/����(ȕ
f,sjle�QϹv%pdg!.'L���-1&�&+dYP;Ɋ�9{<9��)�aM븇%3�糞�F��&���alʸ�R��o��*��D����D��u:�ʚr�]4�"��Hlt�~�����f�l(��%��,�LBpT�����}#R\�5����2�5
a�HkA�$�8\��db�7��)�KH��%�D��~��x ��u�t�
����+�nA4T㉕����+�<�B7;z�j�����_�cSz&�d�
	�,0�#6�v��9Γ�S���[���~(}��>�Fʢ�by�=����E��E���>r�`�����қ�c:�<
�sl��f�._3�R�	 �#�Bv&ʶ_v�ȸs#%J2�kƾ&�xne���/�Pb� OuR�r{D���]L�@����!��x1�L��0������4��>&���^�c�fhp�]����w��&ȝU�C0(�p�`z�6)K�!���ē�c�*O��Mis��k<J�|��f��]
1!Zv%)��"&��y�V4=����\��+�-�,��}H�L-k���w��=�
���<i�Le�Q��J�S$���e��X%d8_��X.�g^�P˱��_�;���E� n׌��H�H�w͊�	&�d�����?�j2��_&?��K�:���)S�Q:JG�(��4��ml��g����@Z���>�"�d�
�\kw��랺|>�#A�d�R	�NW܋��"�W0���N!��
	�����7�\"�Z�`W�f��]��g&�Z7 B�- ��õ��in�1,%��`*O����ygh��`�%{�.]W��Ҳ�~,��4"��
	:��ɀ^G��4�8!�ߨO؁�]=l6�6?/�%��%�a9CB�y�
�d�9v��.�(�n–�,H`t��`�L�����^C��<�ƁvǪ�,#5pg�&���1�ߍc���Et?byY�ts᪔
 Nr��
11�0�F����1]�.�����\���}}-��5&�z����pl��+�i��;F7�'"{�M�+��7����]7!b�yk��Fy�-�D����/�l��1ł���[-���[{�=����^|�2�6ǰ=��Rm���sx��)�;�o�c�;�.����/��X��P�RFU�T�P!ݡě�xSޘ��x@�[�H�@�@r�~[()��;���ĵk{T�9�<vi:��`������>v��\�W���Xo����MD�,�V�N^)G�1{+1�OG��j��Kb:VMp��|�M��	]�;�**�&֠�AF���*V���v������_�_�5�C�?��*��3����@�xJ��fƳ�_�w��Ү�"2�����z��2įQ��:
�L�iϘU�Yצ��+9���p�5#��l�]��%)o�5n��c�z,��7�{��u�nK�O=��r�#k]U3����kr��"<���+�Dv�q<�[+�Ÿ����m{\�<إ�%;L�rqg���`�#,�Dr�w^l�r��J�wX����^�`PLn��_zQ��S�OI 7zn�3X0a�(!8��{D�<�'�!���ssu�Oj���D��Ln���n�SX�c�0�3wR$��q��쾅�uF֟�R1�<�1ny� ݒb�=��Ҏ'�5���ج祕=�iaN�ž�_�[`�"��q�.Z�TxMe��",�!O�����H�}fwrx0q��lnԂ�2�e�7�wp�hgN�Y(`a&�MT��ׂ������u��Lv6O�P
�M[��@D1%0���.����-�4p��W;�.���!
i��qa�-g��D���A�&Vz�Cb��˾����Yy0�XY)��f��k��ij��x�^���<��ջ�xg)�^O4��|ƳP�X�����H������K^ޕ]�r3H�)絲�;R��1습�+`k�zI���z]�%J�,��\�6��8��i%
A�*s�ۛDB\��
-���m�ɓ'�"e������!�̊��1�c��;�9	�c�B;��N�}[��������&}�d���c���p�u��7Ư���t+��C�(~�u�_�C��)ʨRƤ�*A)�v��n#
iD��Ϲv����{;��>�q��J���3��,�B�2�[�Z�8��a�ʾ��oOQ��X&J[�`z9F���L.��N.���(�F�M�,.�!'�^������%F��k�,jO��h��7��%{�jv����gR*�JYeS�B_��S���Q�ZK��>���xv�9wN���̉�b��'`~~��V����*o!r�V*�E��Q���:�#~@�i@�����% ���~V�
�O-�+S��x���I�s�H����V��e�k�}��8>Z��B�5���oa�w�+�$Û<J��ވ�%NF��Oi�6{|o�#V�ss`��jj���h&|8Y��	�z�q6���l�<��Օ!1zDvtI�kR]�)_��L$K���N�-2 [S�]�����n+���w�D�P}���Ki@^�y�=ژa���*�Z�ɛ��X��M:���ɬn�]\�%0�}<od"��1kq�q��[%�����R=��!��V�Ԯ�Ʋ�HJ�M�@6F��C�ev5Fo�)��677u t"x�Ջغ�cuↈo�H?���>���G}��;V*x��m�|���E��C�~�0���^X�(����=%<�����g�����qq{_xa{҅ܒ~�@ǀ	$��kk�Z��Z ���,5:�B#/B�':V��nwkǖ�4w;����u��a}��y01$�!ƂiIlN�1kb�5�:5��s�IEq�N�l/���ƍ���l���6 �w<��TQ�F�6��50�F{�2�q�b�Fw
�Nn����FRBL �*�9�<U���̹$��%�d$Ӭ�)�����O�w��$���/yMVJ���Wκ�u�0Ƀ�/�i�a�:(q>���N樨�	&�hK�:����X��9�M�,GN�+Nc�Y}0�4�����/"��R.V(��*P.�6�=B�&:��`�������<��81�D'��Llp��s���q�M�*q<b1<�<l��J)�uN�V�w�?u�솆&ؗ.^�����'	��1��3g��yJ�0�̿�T�;��f��)Z���@]hLd�ɒ�nbq�c	vm9��VA��%�~��'��D��{����ƯOi��&��#��u�3�M5Z��	.�$[�G���A��w0 �
z]s�2�8�bS[�B6E���6��!*�+iza��i�J����~�����զ�~"��&8S&��N����@�h�8J�&H]e-F�|�%K!���Z)}��\�J� �7��[E���9`o`���IZI@ʢq�Sub�8T<i����]4
�!y"��H����%l�^#%�)�2+��/m�'Bv0�+�I-���u�CGC��x�9�Pf���E��3�"���VܡQ�*Uz^�`b��c�*M��|�}l�`��m,�C���j��Z�+������)��X�X�����.RhY��y��6�?c�w�k�3Y�ڱ�q��!ZP����Yڂ̀��.�XHL%��o�d�.gC�x�8���y#&�LЦ���IO��yA���awen���ZK;��|T4Uh��񯭿B3���}36�N��{�T�O�~9v��sbb̉�@���ITL49�]I���˘���r�1&a�q3Ή*z7;�M�QA,/3z�u��(�W�,��#u4�?'f���t�T,#8��x����\b=�5Ӛ�ų��qugW��/̓�a{c����V��۠A�C�7��<�nA�������l��!2��\ǰ��,�q,���;3��m&?�����_�
\��;�܁w���ₒ�R��fz�u�?������<ZzQ�Q%9�?�Ȗ�<��!t��F�ޣ�1�Qs�(!�ɂ�:D�T+Uq��`4�m�!b&o��,�Û��l2t&LF]��'������I �J��űk(S>7Y&$�c뱌5�F��}�lr��cw�sT��3�o��H�9r�>
�]���'���%�f9�	!U�<��v,WZY
�V?ܚ��f�d�W<[\%��,�"7?�9�J`�z����`J����`,У�P[j$�����z���I�"'"��X�D�ey�ƍk�����D���`+	��=/���r������ʕ�!z$�1��V��k8�6�S�F�VO��?��W�rb�FK77�q���J���O�9�_��(�BU#�Ik'�x�c����7��ΐȘ<��1�����JH	{D�U��i��T
�մW�ñ٭�7b\��+W7p|m����ݠ:�Q
�Θڗ�%�#K�
��y"���XJ3%��c��ۙ]{Q���`&<^�Kb�(ұ���X	B���S�[0#Āds_��>mc�MT�Z�[��f)��20�W9���T���$�a�'=���u��֊��o���<�x^�9�|�fa�i�m/[Z>�;��i@w�d��:��E�|ڵ���˭x��f�9�}z;�zML�6�ґ�7<73����k0M���w�S��n�Ϳ��L�c<e���Y����Y��˓��Ė�XrLn�~�M�K+"6�'�!����ŋ	-�Lv�u��.n��;0g�VDz0�!�ز�?����<x���J��sI�_z��^xչ6h���R/_?���9��a��n.���x���X[^�S�N��ۿ�^� ��U�d�	H�
�:��E�����ݮVq�L��;��-g��6~����`Z8;��MiǓ�dEjg�<�E���O�rL�b�DT?�O40f�J|��`6@�4���ACS�nx$L�sT�R6�I$��#|n�]�,F�ā��J 0ϒ�H9aaB�7P1��LR
�r�w�1�:&
�@�,l��a=���i�_��˘���
@�4���7�j�h��}�n����/E�ca�@=&E˟���s����I"�B����K\FVPF#��6�9j��C��4����d8�g3H/���{����-/C1o��J,�L�]��]F0�Ԏ����
��d�8݋Lh8!<<iO����I5%�D9Z�g=�D$�c�ˉtV�-+Dq#������on��ql�V��	�/cص[�|Lz��LYYYƱ�U���q�5z��2�������Qا�Z���L�.����� \�J���5�2��]o����u��(Q�����B�GKKK2��d��mo�`}}��@_@������q7Q$5��͝U�2�c�bs�a,�p�� ~�1��a�bS��5g��
���]�䬊�� "!"#u�um����5$9T8��n8|�	7\�T<#]~�͛���i�U�:�6A3D����y%��l�6�m��JhD��T����C&0�7׷㛿�[p����e5���ׄ\����W��}�_�(~��^��(��Ӕc���{�5o���~�����X,W0�NP&��ʪ��Fmg��q�鳸z�:�1�&�RK��j	�����2Xc�Q�0��nIb>������2[�R�">8�Eg�ǀ-��\E5-����at����JN6��y�
�:�@ n{kK��`�c��\�O�Ād�Ź#��;�[Re��>�X����,�u�2�?b�Z�L�4�st�e�>쎋cH��[��Kk�����#c�ڒ�hv��Q�IFl���#2?�ߍݢr�6?�҈�(i���i��^�	�
��=��l��գ������W�3rɴ�w�,�0I��������U
���]S��-�/�0�x&�B�d�)�
��Q`�C�!�~V�A$j[_�ω����E;�uZ�G��q�:m�݌�Pp4,�����'�{D�H��sH'9{r	�����G��?��|Hd�7�#������u<}�q�U�1��.��~��C{&�U��L���9��.���"�x��	:#v��]��f0O7Ƥ�R���YuɣT+S�����G䝸t���V�r��tY�Y�ӧ�H =f�&X]���&$�I�k�'���e��y*W��R=�Z��1��a5},
U��fK�b���{�	��d���,p� "�1,w�75��ڈ���#�����
��>Md����׊�UF_b����<n�b� �z�#tl��ab$��~w2���#�=&�b���'I"�(iXd�=����t�yHK�As=�C������u]��;a���Ɍ2%���5�����x~����<�S.�Kv�1vcX��D��V��Gk�a�:�⃉��࿱������'ƭ�XX0�q�H�+������Xx��@��h���I�n���߃CL~? ���6N�<V&��1�†�,@�@B�o�
٩W�Q��s�b�,��{��:�d�"e�s�����:qv�b�4�gv���B�)��L{~K�5)��v�,�S4����4�z��y��~�����,T�htb5maˢ	�_Ml�3�}H�ĴCxL�u`� z!�li�2�]�
��a�������j�1;��cSevѣl2��
ir�CW�
�?eM�����|f���$_�B��`�c���D��]��ȫP�9D�-z��V�Ջ�	6�'�e�&��Ĩ�!������^��QZ��4{ne	sD8L��-��f�$G�w�q Da�t	�.��s�m%9��gM{Z &`<(�,� ��8և�
�x�N&qф@�oV�Y�U��{�h��ˎ�U";��9���Y`�h�r0��'Zo�ohR&X�a�'٭���Н[�nt����8{�,v��D��Dl3a�
u��Ac_v�;.#���H�f�]*���)�Z_�ݸ.
��������n^߄/�D��Hk�h��.��<���*��yw�*:�"�S�ޕ��C�^�
����V���v� ����t:E�[����u�d���*D�}����RHY"!3ѥ`��^�t.�ߖ
�ƭ#+�N�薱2��Z����3/d���S������_[�@܌������K�#��{�E�-j��.</�~w��'S�=JG��%�hݟ�u��'�Ŏ�-"	?���p�d�7�wj?���E�=O2ͅn�v��e�?q\��G�\O,V�א7�/d�#�ܩΡT_Ĉd�\� rW��K�l4�{�$Sz�4�},p�fC0²��xX��Xͤe��sP�a�!RH�߁�
��-�s�,O��J�V�-;�y>`תb���1�m�e-	 �*�ږ7�r�4\�՚D��s9����D��Z^���ˑ}�ո�e�v���g���yT+��N���w��fsDg��d6%��d��]"4g��E.3 8�M�fs�v� `��^TF�8���X���h�[(��ϛ���B�<��pd�4��:�觢%BٍW
986�w0	e��x,i�1B�#9y@��ۚ#�p}��r���HƝ������X�\lE�xI�P�l�GPm��$}t����<��w��{�cq�&Aů����]<{�i��t��\�P"ټ��F�^Bn8���a2Җ��8��~�)��w�����3_ءw��Hz@��mL�&#����e�Q�U��#RmDD}�%u"�4�H(�����Ѥ�5ұ*���!�.�u"S(�|%/�Ln(�����*�t�`��P|l�<=�u�b����_-I��ȕT6�d��$�T�9`N��p�4<*tM}��2�CEzR��!6��q ��k�� oZY"�ĸe��e�����em]�&V�|�T���Z���,ޥ|�F���^h�}�@�/�Nb�i$׬�9�A�c2�dٲ�H�A�����r󱮠�������Z��A
fNAYcÖ7IXd]�+y]y��7�ק�a.qA�(X���0`9[0��Xx�w�d����Ã�y�;+$���aI��[��'O��ÃI";�m���H�i�ͭ-��q���I�q͍u\_��^�	K���w��s�5�B��:����T)I����D���t:(�V,M=뎘7>8��G��A
J�b,�,�#��4�JQ
2�٬A�u���}P'L{Fڄt��؀L�wR�J�DAV~Q���.P1YWM��
�*��� �=��.��Ϛ.�%�r�;���{i� ��ф� jg�E|���' ��c�	��Sd�,Ҏ၅|�ĈMv)��λ�B�z�y<ȑR|�[!�˗��
D�,˾Bd�m�J�x�M�B���K��\g=%֨�H*�c�Ż���*j�F-��I)eň4 �V��ZY\�ʉ��y�U�[#65�h�q���x � �S�\]�@���|7?Z��Ƙ#�0ڂ(wY�<�-h�b�n
�O���?���GDB7vv��i����UTHa�c�Y�ƿy:� ~��D�,��.W[@�%`�G�{~i	˫�Bl�1T��mbwg����-<�R��i�⼄:)���	�F�)�[v{�$��л�=�DL�4q)��elp\���D�Bx7��󎯜�G䆴	����!���t/��|���2s�C��ƚq�VT�^��|uT�C��Ɲ2��a�3�{�݉�5AS��8S6��A�e�>���Z�����
�*�lV�����[X�!���h.s�k�m	e��4ZL�L�D���!�;�Rf��t��.��u�����{�C�)V7�r��"gN�5;#q�(���4_&����=":���H�~_Z_Gg��r���B	'I9�4��aY6aT$~��uq�ɮM�Q�J��~��]�i�WO`���,4⧰U��;r��������XZYE��F�䯼Á�9�:�
t,�}��L�ש<�N�z]�8�*�@��X��N�*�"C�?Z$[5�2�Y^cצ�k�>LܰՅk܉�L���r�WX��j�/�7���3�gC�<��cD`4��W�!@Sd�ZGe~��4vw���D�(�k�U�ؾI��9
`vFG���Jc���[�
�a�����@��p_\G	��tO�w"._'"s��l�S��L��,�s��vg�Hy�Ucf�7��Qx
5�D}�]�9�����T�Xd("��d3n1A�H��b~�UF��XF�o��,����]�
�{Jr�\I/a�cD(�K��h������{��u=�0Ni�<Oą��=��^�m���!6�-0�s�h���u��!�ݎ��c4�U�f&�m����S�v���g�^��{�P�W��5'_]~Uҋ<�u[��R�w=�d��{�˄���DH�;�'X ����E���!Ƅ�T�9�u"=�;}��[.3�6�1S�~:�����BQ�5:4N�4���ds��[��Z����@hWI�L�c�<�eI~�:�|�����˔v������E��Kz��|�ņV�7����ߵ��ҤZ�x�����G�)�x��HnΔt�k���Ii��9�>�����[t��z�_�Fn��Y��}�~���ۃ�L�~�v<����lK���x�K�ů=��iʆ���wVl�yX��x\c�$��Yx0	"O��;�Lv0�'<��`��,�q��9�k�<�+�n�L�򀃕�K+��-�
�J�@0K�nl�/�G���������g����ƥ�.��lu�Vl{�����
$�<��"X�^;N�g�@w��I�r
ׯ]���b{{�{;8��,/�5\I���S�P��S��#|�����>�<�u�ɓ�S_� 3\|��;?� �P*)
B~(�4��CvЃurA9h��:kw��6�9^"��w�+�Jp7��A9_���(�kg�s�U�.K�
l�] $S�GFb�mTHD�A��ö�����mx�
�K`b�|��	��
+
���ځR�;����M�ڼ�@DŽq�˩�/�����v�&��@�y/�Ǐ-x:�HԎ��G6^���רV̿�-!8|Ӷ�G�PZ��M<4��d��$���/���iǃ���~���#���"eq���1.�.)#9�'=�]j%̝:���oނX�x�Ɗ�~�,Pv����i�cm蝺NsBAz����|���8wS�EX���܄ɢ\��^S|O�y��%���>�m��籸� �������ǣ6gһ�x�s�k�:����
'Rʜ::�H�=���8�+��r�a�xc)����Mlmo�F���2�H�f����6)��RY�dsb+*����$���0��K�{$ع��y�h�@���F�3AD��c3��}���eNSB��XXy6��cY
���zs`d�<A����
���
�
1��V�0s��"K/n� ��t���'��"����z@	y�SEh=w�gٱ�켤3�.���P�8���6����p2�=����:S�Z!���0�X�S�z�@��2����U���쐼{��	�V�cDr4 �kww�y�93��3����(��@Z ��GƋ�o�7H�k���J�V���6�D�_����oy�X]]��LV��kp�g��o����#]�.<��l���2a�GnKD(�՘T`���߀>ɏ]��=�{�=���w�w�?޲~�[ ]�-x�l9~��\�!���$3�X�G��f��c��4W��.���z��J���f�=l��q(�$�2A���G��H�8��
�~.A��r�h"pص��rb�d��7W[�.���<�h�ttv}�.�jD��-.���d�k׮bk}��B׭V�� �#	��.������;�F�[�U��u������
�n����m,:?F�[M���Ʀ��y�-_�	؍툞Q4���T�>�� t�Pfٶ�Zy�66�Ų���t>'uZ�/���ڛI'R-��*�C��b@EKK�c�z��;���b�A��
>���&9z�מNj�lS����R�Z�Ts�����DF�}"6rD���@�P�=���W6���%�![%
�X�-L�/M�&"cD}w<j���
NWx��wigWb��Y8�F�HҍƹX����t�xdK�=Tk]���h��Q}B�ӫs�_��Zץ>�e�O���Lܖ�M,.-��<��!�"��mj�^%��˞�0��@o��`��~6�v�aRV�I#	��ó���4�-��5�9%~��������s�Y!�;�6o\%=��{��@5Jt"�5z�^Yd����>�G�Q&�n���gB,*|1�����AL�G�$�Uiy���4��OO{�����"bz?;���-I��aԜ�d���0uk�'	�����
���!��`7V�҃�k�a�uqe,<���Q*�·5.�����c�#FzH�rvee���8|� B^`@2� �T7�]?�w�8�eZ5�$d<r�=�%��˗�ʮ�<��9-��H�{��u���<
X�~Ϸ~+~���cn)G��i|�;ގ��O���&.p�4��|�?f|�k��{���q���~�;��Q�rvm?��?,BG�wOTz'��wd�e�G��Rr<!O[
1�5er�O�r_�$OM����%k �'��k�*��D�Hy���]`�� �%��{)-�Ƅ&�S��������Q;F��{c
��-�N�&xt��M�
��}C����U��8�"��.�l]�槶|�%�"R����}SXk·��<�``�G$�~š�w��U�l���&FE�(Vێ0�" �/�1[.E��ok�P��{�MdǾ�X��;�<
��X0t4�0�XC��)"=ʢ
yJʌO�<�Tr%�A4=�;�O����m;4�������e��L&��o�1Y7]ٴ���9��؅��rAb� ���S:Xǡq�ݤH��_��U���H�������)&|;��J�����pP�<&�>
LR&ԟWV�p�=���x=�G�~�IJ�/���w4���DB��F�
v'��c��>�{���Q�+�b_*�d\B �a�r�G�ք,��i�[�f�
�݌+;�ui�J2�)�=@	t�J��
L��BϓJٹ+�˨��Q�r��<4]f������4�_���������&���E%㧐���J�� Z�c󸵊�����`���m*�����l�IE5�f>T��|v���Wo"E�� /�`}s���]���r
qc�ʵ+������VWp����s��nu�:a�@�<"�%�G�x�! ��� ��e7��W����#w߃�Ξ��M�@��2ɂ,X��͍�x�[���'�p�,xF��Ao�lj3lj !9���G?����{��.DK�]BE���]+�=�q��ǰ��%���eO����v�,���C�:mq���!�\�4���`���ZM�:zt��;��E��t�:O�	�yze�ș"��8��ob��@'`�]9�Jy����K�A�ZB�J(8�Io���9�o�P}l�녵*wN�I�m�M�"��^?�U�|���X,��9�R��P�ȉ�͖ĉ����"Ё�]-�8����e�H���B�Cz�-���C6�&6�����c,�����8~�����򺛟H��yj�a*ׂ;Y�B�����SE��P~���'�+��`R0��:�V�fC�s[�/��Z{M������{��^<L��/���;�ҵϓܾADC�	�E�\G	gWi��6�*p�D֔��9Q{��i��Ȧ�R���ʲ��U�m^�r?ܧwк��5��!Bma����b��ĠW���Kut�9�	ˇqiL�Y63Q���*�<Mʵ����-�v.[��XX(am)O�����e7nn�Ѧz(и&���j�.V(��jY���5�AJ`W`�Sr��.�0t<Ł��,�*�g���w2�:���e�7~>~�=��1v�}��c�q��������&�4�
��>����N��i��!w�I�7�Ч1:���54�v1 �{�^�����/^���R~�.���,�0��H��),*c<��8��E�ğ�u_V{��S��)���ݲe��Y�La�3��Au�J�\��&`����D�,=8��%:8Y�cuu��u(�Þ�D��8�a�&;����&"9���$[wp&<�Z��R!B1]	L$�Pq�=w��?��9�؟)��Gވ���<��2&X_��X���O���/S��{�����
X��ˣ��-s�������z7^�xMv�>����E�c�`
b��“���
�����&\�Ƿ�7����s�8��~�C���i"Jbnl�kD�2@|Z�H��ӑ�ط䄜uO��i߳~��v]
,CX�]v���kk�L�Ѐ�슙�Lu~�P�O����i�RAT� >�����m��*��b�S&!�`�̙v��-�J��.tL
Kxh�D�)�c\�~��iB‰�J$W��.��Iu\��X�@�]Aܱ剕-f�s�	�e%5�� ��:���4��A���W��90�VMn���F�=�T�=��Y��_^B��>����9p )�w��T����
�30��WB�w鸶π����]U��%��٩�;��̷}Da����\��DlE���y�`�����k��7h�Cs��[��_2���]]#R���b�,!��bk����p���]\��e�OJ���:݁���p�=�C��XF��+���,..Ȏž7�z�̤̉{7	&?b�����9��ر5Z3�x���W�&Ku�+;Ν 12f�2D��7�پ(< 
��4��tl��X.)���1�R��
�D��3�x�n�*`HcK���`�O��ޫ'�@/r0D
���c=."St��w��6��~��6�l�[�JK��&�4��]�9�~�_e����™?�֚��p|RD9JG�k,�
$�`,S�͍(���ۗ�(�@�	���n^��U>w4\���i�q�&��� N�<�˗/���ErIs�7bB`*o�aKT�~����It>����!y�;P����1):cD#�]��UE�d����$��h<�%�d�JMd��_Ë�.������	m�H6byn��S9؅���$߰k�2�]$όH�a���+���(�Nc?����k[���mꥲ\ˮ�
t�>��</��%�cX6d#O 2��b��S���
����bs̒V����.|����X'�yz���=g���՛�pc{S�c�UBk�V|��ROˏ���C�)p��٤ByB����W�q+
��u�����#S��a
{7V�V֓@�ts^1��Tpe�k\��{_���J���Ku�AŇ��#���\ѕX9w�;��ȩ��}��=R>�ĸ?���̒�ca���D��go��<_�&���$�\�����G�Jj��G~o���=8�<6nn���:����*&a&ԟ����D�k)Kˋ��'b�M�;$9�o�X�I	zc*��m��2(9��	(.��6�{)����;�#�o}�'V.�Z9pcU�u�~#ZÊ4�J.�{*
C"'tnOd��ł�w�N�.�%Q��G����X�����"�?+K-^�u
���r��Շ�)��3�v�'�%�`ֵ��XZy�c<y�a�����E�Ŀ��$��iluh��u�Կ[���n���D=��^�Ʒ�c��	�������ig�I�A��|��g$~R�Fz3���oG�Z��X,Ngr�;���*�]��g�{<�d^idz��s��߶I���RJ#Mf�d���$ǿ=6�o��#�&�u.y3'&5��0�Uҥ'8n��h2e�Vl���l��ٺ�ϳ[+>n��3�a��X,�n7Zn���!�;,�V���^
4�i���<؝	���|�[�G�Kp�w�:�����\�X�y1-\'W���}��j�1�G�*Ի��$P�%����;� C���R��,s\t��;N�~���r�u��ڈ<��q�߭�Z������i#��L:R��O�{�wA�v�~T��MIs���?��[��$TضS~-�'�S�	0C@�cr�r��O[KX��s�;b�-�i���	0x���o5^l�A
0�<X�Fh�ۮϮkhc X��fх�m���~_�[�{]&�S(�S�wȘ��~��.��pH�qB���`�(�7�r�^�ҩ6ln�*��.n�(Ӧ���/h�i;�pI؇'K�eRir)����2�+�@���y��WY<:0���q
X�*0;�eC`�+Zd[�2q�����[�����hG|�w���X{�$H�K�P��/&����ob°r8�r<?$�`��d)6RʆñXc�%�"��^�޲'�r9�|A�1�ۗ���`D�ϋ��5R�ʍ�^R��֭ٱ�����E������\y��U�r'���f�F����	^~���l���:u�;�\#c_���M=��%�>��{�p�����
"K,!��2�~ľ�Xh�._��m�֌��UCp���*�˴+]�f�T��p���w�ޚ�0�5�\�ͳLS�[��z\��X�ݳ}6>n���x�T4S���"쏱|g�ѱ��S��V��wtTl�;JG��/1�=W��N�?rC�#Z�*���_�I_f��;�hN9JG��0�����…K�����p��ǝN��w��i�ǝx"��<Ck��5�x�I�ZZ�J�����x��סJ�O2į���pac[�p�;�bBDG�s��ެ���Df#������0�����\��[G6EI^��X��U�=U�ʷ���:=o�\v��@�eg��lqv��q�Iv*9�'y�Kc��kKl�~�����`��m�
,eYO�r+��-�ؤN����X�\�z����]�?}�D�Ԗ��੧�E�Av_�yl�L�mw�\#��X��+�y*��s�]b��xRW��^��
D���}�	����]j:���FH��q�+M�Ie�U������</3�����?���;!9���ڤ_t0j�A�O͝��������ݣ9���DzQ���d4�	���v62���f�y�^������� Ҫ@�����c}w�9�}�G�#���D�+9y�<�]4��h��X\Z!9�#q�<����D��&ez���ހ��@���/��eנ7B����ɊRN�k�<���q�j󋋸�ۓ
T��uRǸ��X,Ӌ��=TXާ��A�Y���	aK�����qĪ�Hu_%�n~��e"w
D�-�W�↎�do�O�_"+G㶐x@z?z-�8��)�8��{�Tzu(�E^�s���8�L���z���2'�I����Sy�=u'�V�i�bws�B�E����E�\�
��j7o�c��q��B���!�[��9����Ӹ\��ck�)A�i��b���z=�>�=o�:����H>#�=��c�>���z��d����Ae>��g�z�a0���eV;������S��-<ز�f\���ʃ����g�����cl�a�{�p8T&Py`�yL���x�dGp��1���1<$��9ye�2i�C�$�0�|�U�|{"`q@�G�W�y���ۀ�f��
�c1]U��-<�z��-N`�}9X���@5OsU��B��ca� ^��~��%;mV~�<zV��uoj�^dRC�y���1$��;kSw��#�/��C�-v���,f�S�`��:bwB���� ,����AH����N���y҇���H���'>l�]����ŠP�N8���6@`beY��1�%�Hf@Ys\�>�瘵��e�D��N̤���`�w�5��
D�fH�p4z"�����ʦ�֢ޒ��`-B3ӰwQ{)��xU��$�@ñ)xn��SO���Q��U[H�/���s�c�!"�A+[��~�ոOWFJulj�d�7��KEi�R� .����'v�f���:)���P#������S�`@JD��f�ѹ��X^4�<��rry���z���=�}��
N��簲�&�Rz��<�A�ĩ᧻4�s�'�wQ�I��^�	^�Ύ!����X~H\!&9dU1�r~W�D�!>��:�v �� ��4��г����=V��&��#"�1j��g�N�X��y�X/A�2���Ё��[�:�uԓ�.�������W��?=Æsv�ar�E��ÉQ�M��q����-����y��u�;JG�k=�y��Μ:�����?[��Ӈ��q�<66nH�c��U�eG�(}}%�;� Sco��>^w߽8y�z���d��[@�q�Ų��(��Dc��V�!�)Ν�S� �PXg�
�{<#_���k*!��U�O�pL�뒃�+KKPP�����j�*k\��)v����u�^É�F$WvGC	>O���H����'Y��O�I�@rW��"Y�w����F�EPܱ�Y#��1r�/ַ=\�~�jIH�U"�X~��g��q�ʍ���)O.�`�Ty�����B��ȣ��vv���{�:�+'����zHb�������[�%��fpSI�
���I)���"wUӺ�ݰǛ�d�
�����]8J�d�/�x���L`��H6�+1vO�r)[���t0Uc��b��$�D�z���nE�;H��bH�x]�p�y�Cc_�q�7B�R~��@�L�O��{vP��s��|��c#�!*sy���.�܉;�^�,��>g�ٗ�uqY��R��:��	?S[r��~8�>��Û����
�R.�u��Re"�L�6�6��`�qI��B��T�D���Ghn�7`�Wi��]��
c�h�����$�e��EG<�:b�������;�qj�E���Zb=hH��ɿv���8v�8�����n�@_[)�M�������,,�vp��g'���m����c���ڂLX�������8��(�v��<��I|̷?�6�`��?�+	��:�8G��M�-��AK~g�k�}�eJ�E�JY�w2{,�wڵ��2~n�~�2y�a��k-eտMi�v�~��?���)_2�b�Ò� ���ZuX�V���:8v�朝����[�_k��٭[w�<a��'��b��ȏ�X|(��*����cx�J0�G@`�$��u \%;Q�t�WO:A��#a/ �+��t�W�X��B~H ݼ��y��X1ɒ+�8�m��
�r,`��@�7>w�7A`���ͳl�*��N���?�^25�'�t򚬼���5	�]3k�������9G�'�(�L#<��\D䆽\�r�D}I�v�>����0e�K��
8������g��ۢ�~��	A��+���@�ň���1�F40x+�\'tsń�Tu��w���[�Ӥ�����*g��і"�,���U��s2M�|9R��Q��c������/u�
����p	�5~?�r�A-d�~�,{�'�G�ۘ�P�*Rx�@I-l,�Z�>�I\�X��$n
��&}5�@���cW�OɎ�\��`��/��%	A
)�|Uxm��Mt��st_�{+�RH���*2wVh�]��1_��̱�$�
�i�$����(:���nW�{loma����6[\8�
f<-.-���.\������X�֌n����뮱(�)N��.xl�>�F��.J�=� 
��f�9��f>LOTb�����#w�i7v���}���:��?�c��	v��1
 ăuY�*�C��D'n`L�u�k0!�������K�ѐ�'5EM�x���ʶ`4/�~��"���!jj|EA�зU��JņK$p�"�B�20��p�<��|���x�r�s��F�Q:J���1Y�-��k*��痱���p���<r4\���i���1��G'����-�w;��~�|'�URGD|Lk��'pzΕ�uc!.tx�$���K��I2H���@o�s(��X~p��l�`��#b��0��I@P:�M�r=�z�;]�k��5Ԣ�y���q�ȇE����
��Eq�I�/�S��Q���Zց��3se&K����X�:����,�y[�㶹ܷ�z�?�&(wP�$��D�����㠽���i�,.b���
��w1��`y�e:n�h8����ߎSǏ��g�G���@4G'�+I��uZ�5�[�^����?l&���K^\ϒvU��D,�l��#�c–��ȷ�a$\U �!'��.a}�K]�����䰵�A�?&]�dn"��`�E�f2�eJ�����4c�vW�,�De�ɒ ��q'$��E�ϑ,�8^:�3hu���<�/���WQ�+b0�aRvEnv��`,��NR���܎��B��q@�y�t&��r�.��D,��[���ȏ2<gl�!=�Ed`�d�y*�G���TA�	�]&8�K+���xJ�q�hٕ-�:�{�]�Q��{ߧ�F�32���8�H{{]�.�Q�ӹ\]z�
��x���f[b�
��NY�}�J�޸;��!�{�����xPJ��i��,�6
�O��Ò��=Z�c�:��K}=[�ً�3���]�Kr�u��j}�&�\��-�KZ~�[\QD�įK��a�gֽiul�?��W�tMZ;da�I�嫑�x%�f������E\f���Ƭ>1�P�IPw������1������֕���9~����&98��`0�f�c�������@츓��A$�+�D��lEA�F��Q��l�˦��UZ�`G�b�1-�]� ,��/��#��!�%b��W9f��tD�A�;���k@w���u�O}�r�W�u9�6x���׳RrRH���'��H��rd1�A��8��Нd7�R��,�|�E��~����i�;vٺ���oϷB[%(�K_��ȴܿ|;!��;���a����GSbk�Di���t�
�!X��M�,+(����Y�ϸ�Q���ܼ�}��[�7@�`ƬIš'4',wH�U12)և|�s?��,H�j�[r���OQ7�+<~�J�M�#�R��g���}��o�A���e�a�ulQ&��ٝ��oPݕ�b�XBʼ���<�x璍Q�3���r�IwL�ܱ[��a�x&?�bs�@���O��#e�xl���I�`��c&Hy��tA�_����=��V��`Зv[8��1)MR"�_� ���y{L�r��	ľ�5/ _,��7������*)���Pv��u�y^�NJ�.���|����
���B3�Ȑ1Gυ!7Eqe�*&�5�-��%��X�q�!���^�p�u�+%+������J���·�v,a`�(y�(�*�?��Mn"l�����6%�җ�P��������1&$�PR�����[b�j	l��9=�D�2��D�b�?<��|�����7����՛b��8������s��Q��NC�Y�J���R�hX'�"�/��y�l����g_x{�v����$3��vUd#C��խ�
\��C��غ�M@lI�Oi˾?$�d�����P��dCG�5�_��7=����D^q!�i}��Q"�w��z{����P���b+v�1<��ovZ�t�2N�<���װO�]�Ւ�*�9e,n~�89�@|KSdr��
�<�4�pso�j�e���������B}a776I��D�:?OD�:
w܉K[����Eut��	q��B�q9��bwo[d����r���W6���n�L��k�)H�1B,�7�F��\X���6����Q�����l�L��11�ؚ����F#"��'����Ҙ�G�
G�P��/�;X�{��GNZཧ�[Ctz����*�TH^��\�L@��X�WZ�g
��_����jU�T��Vc%�ol�>2����פ���*��7P�X.t�|}gVOb����מǙ;J�[����K	&o��,�h�� (KlB&/&C�1�T�*�Ӑ�lC��K9]�čH_w+�}Lx���v�D��yC,���:x��ᙗ���%����oz�g��=�b=0�zG<�3fT-ŝ/�m����+G�;��v4��*����DJv���[^v	����Z�/�|7~	����ic�~�n��iؚ�Ү�?7T�U�4�$��0H#:��B�U��~Q���*��`Uxm�o���[<–ݍte6q�1	(��M�}������Y@y>���|~�5�L�+y��A�NY�a�q:���5��yį��++�dyf�xy���x�̙��#>���?��W('n�aIKv�+N��Iσ�:�A�S���Ί��x٘�`k��&�8��<�]Z��
Zn���	
4�L��`�i�u3Y�'��X@��0�š�K��W<��l�ɾ %�	{S���[�@c����q�2R
ep����,�<�w�R�Fi)9i��X�d�:�����v�M�ƛ�>p��@�C40\�ºV�{�b��wM\�V��1�1��g�S�a��	S�l`� eRDDXPN����貪�uɅ�	���/�;:��u3�Lvh����R!)֣���s��~�~g-(��}?�[^]_�����l�d����V?G�g����Pql��d?�%��K��i�U\��HJ�ؖSZ�!���(m%�g"�E���5Q��_p�	ޥ'$��5qXx��CTa͒�Π��3s-3�ƭ�
�]glѐ����!y�������W4��6&gH���ەkY�*�1��Fs�׃�o��x>�p��DYu����p ���/�\(aw�w;���Lj�z���n�C�>d[������&��Ֆ�ѧ�LVs?`���ʳ^�Q=Μ:-����y}�X)���^��[��d��or�àӡr�u� \��"]�fl����vOЇw�I�s�XE�3
�f^��;��{-e�"8q��qP���r9v���8fJ|���	v<�ȏ~�y.�����\/�7���KV4y�%��M�1}�R�}G���+c͸V���P4sl�& 1f`�3�.lք��VEs�WR�q�v��"���D���Q:JG�(���������C��#�W��b�tP�A{ 9��>N������1̑����~J�l�%���>;-��\�d~��<�HN�;����;�i�-I2A��Bg?���==�g/]��/���Dhv���	pB�o����y\�����=TI&b�ͬ��,|9�8o�`k>�qJ��!���#9�Jy��]¥�7pr�8��.�2����g9�����){D��$��&��q�ڒ��$��{��p	s��O�/����! ��#T��	y�q�%477�w#��v�x���ŵ�4�����ܵ]j܌�M��q�5<ǖ6P8�"gb��w�q��/��Od
��L�8z��Cu[�b+n�GAR$�rԦ>X�b�:7�6%��gy�e<�9�ԎKu�k�o�Թ��uu���Hu^�k�. Nn"�s��[J�tܺAW�3ĕS���I�'"�Ȗr�v����8W\�6{-�E���8��8u�|(�\[̻P���O��G^���%T�u|��?•]�=w�����9~�9���@��@�.����7�5ON�I���iJ��%�lH�0�䙭U�2n^o�Vc�cL�M����������I�_��'�H���C�77_�|���ܖT��N�.yzn�ڃ�P�ߓ|˱>�D�t���=��
�GK4v<">h扬���%�%2�Sr�p����ui�P���Y�l�i��*oڽ�1����¿��w�Uie�i�Q�Xa������X�D�C���!q˳�)�L�y.	`Dj�J�:�?#�L+�A�8LY����O�}��jN����a��u|��6o̪��\�F��.�
Xn~+�;��;�d�!:>n]\q&;غ��
�����Zy��L":���d�Zw:Dt�D�������}����q���Ц/76��/�'���/�b��_�Ї��I�����o�����!4Wo\�O����ݝ=,�U��|��w�K�-�e�E��	De�H���q7@P�B��~r�1��>7c�Q��_~O�}Mg7M\dM�Y�euά	���&�[�eN��	�C���
��H���%���}>%������x?=1�uȀi�����#�\�)�R1�M���فm�GV��倹6&AF���3_ v�
?ێ?ٙ�L�����G��Y,ixXN��֭�q���DGH�8�~��IB
y�s�}$��[�n�)�WzύoU�
�cHY�ۡ5)R\F���h8�fab6���4�/&K���!FƒL\���E�l?5�,�I\�/�/z�kJBx�'�?	
Bp�H��a>$#q��� ᤸq__;~J�]��pt \~�<)@o|�#�ҶL|���t�tmk�`�{���_.^"��)V+��@�K�"�d�gn����9��&¬���Ǥ�T+ut��`+�E(�>>�n��]����P�R���1R*U�Sm:>��+$�]���uI�%�V�&#��&ܙ�ƲF��unڥ�m�6�xb��Y�2<�����e"?\���6�7q@`5�o|Lq���,Y�9�LlU�	��٥��`�	����$��v����w
�$"�C,�Ȃ
�>L�3�\4;bJ���Q�\�Y?���(љN��f�����y��t���Q:J���\�ޖ���X�ݒSb�gZc�g�I����6x�A��N��$�s�i�Λ	Ɗ�}����@������4����b��;Iܧ<G�*�B2H	��\��|�}X\�@����ޅb�(��5�$�J��䵢[$�jI�n��F��z��s��`D�~��Ż�+�
�$��<~7�6�o�T��n���|��0��C�Ւ�kE
���5�}G��E"X�nz��d�/^&r�%q)N��`�6�9"S�m�b��N$��O����ӋO?+2Ԑ���SO�;]v�է����5���AL��)
����I=uJo0z��£����eB����4
���Mz��v�ە��(����aK�ʲ6oh��@{��9��Ԁȝ�b:��c�|"�H^��٣���+��"��ȸQ	QP(�~�58��x0��%���x:�=�a�Dd�3�~�W,�=T�H�ɨG�)��w��;u\��J
���R�w~"HFi��ݺ��M�8�����w>�Q4���P;���j��2by�os���5��ѣ�=r�n�r����7K�Xb
���\���5G	��s��٨Ѡ�.��},,�.R���ׯ��"kZ�l�b���� ���!Ґ�r�ƪ����l5���)�
/pD��]�qp�*�A�a�� 
Ul�6S�r��������A g�I����v�I`>Y�d��1�
#�����;sK���&Qߺ���m�o��X�0V7R��
�j�;�
"�����U������<f�?�ݼ��ֿ�g'����Ĺ���\�o{l�g='�/��w�X=LYӞ9��\2s&78p9��H̽LzX���
T';غ�	{�%;�;8��弈�Aʧ�e�G؊)��ʸT1��b9�G?�)q+�	<����$>���·~˷i�A�y�p��u�����x��
1=���]�o?�~|�{�y�tAa��dU�1�J�MHQ� ��4�
A�4�B.W��#6̜X�&����M�?S�AD2Ϭ2���.~�V��vv��hjP�QӀ��?׀�:F�W~i@�Ժ��
م �z�y'��������ҁ�g�Z)*�H�8�'_��h��c��cڄ�k��"����&48������	kod&XS�X����w���_M�Qec��{<����ӮsL?���!��+M�\$��O��������r]��)6�L�p����iۛS&��7�e�Q�,��Ƌ��k�IM'c�D�^��vŦ���^�f[��{L�h��j�z�X��b.��@��+�پ������&�H��2'g�N��!�����������"O�QG��`�j��*���sy�/��A�N�6m��yO��Sz�p��H�r&c|�ƌ%v7��e�K3W��?"D��†9�L95)�B�ߴS`�K��q.�@���Ğ�&E�D�@���u(;a�5E�V�[A��Z�������f,+MP8RV_[x�L|�'��R��XH`�Q�U��^/�I���X��� ��xNN��C�9v�Ե�oID�R�+0}3��MQ�2�z�_^�Q:JG�(��4+m��E 4��3�L��;�'v�Ρ�D<�mX�'�vN�%�;�}�`�:6{cl�q��EM�qi�7�Hq�7܉�/#?hc}���W�����:���sg�捰��V����u�[�����@z����#��i�j
�ZA,:x�[�T	��´���[�����q��ťE��hnmaaqC�O�8�<���B�A��V	y�y�I��9s�,�J��B��(���%��>���K��)�$�u�:�&"7ؓӀ�ա�P9����LT ���B�w�F.��P���{;��M�C$/��G{/9��r�9��Q�%}-�Z2B�n�W8��vx��+�}�V9�٘ȁ���ᄎb��c��G%G�DW�ʍD�%=�eY�� ���ȱ
t�Q|>������X��#ԪDNQ`��Xu������:�z��$�y�ǰV]%�Co:�da�k�R#�#���uT��^������Ȧ45f����6�aC,-�[7��M�!��i҇e�%B� �msT���!Wd7�����
DLt��<Nz}%"���-�{X^f��Mt^�@�*�&ԗ��8&!�ͮ��Ѣ��E�&\WTͨ0�A-1l1qS!�N���h͗�����j��E�:��"�D@<%��YDGZ����bY)����3k��ɉ�=����I�ȳ�?��V�r.Y�4R#
������i�q�{ӮI�G�-�Yu`�V�YYm��H��X����_i:l�fa��N�o�W���S�<��=�V&fG��
Vn\^��1��`�ˤ����ˉ�{+Kt�q":l����N�>��
~�l��y��*`���=p�d�����=�
���;�dmQ�A������v�<��E�p�*��:�?�?���4~�7���]|�7>��	ɋx��Q�$�:}Hc�R+�����4�B��B�Ϙ���R�#fݓ�L��H�?��@`�{i��1S�\cǡb�A��9�x�܄�<��*#ѝl�
��̳,��b���rL���*�n�9�>��xO�y��j��LYl.���ջ���)>6�xJ��J��µ�b���#�⓲��nAPZ
w�Ⲁ둻�H�W�w1�����2$�-NT>�ۜ�J�d�SӇ�c��{p��g���&�i��Q��^���=B�Zh�b�VV�8��J��64�e�DYB�f�}8��1-Uw�yS�e����D6��!)�A�k���u���Y�ܝ�p��җX��N3’#�s�8M���	&��]��Q�}�X���,��T����M|~ov%
��d�34��K1��|���1RbM*��`c�����r�����1�
	OM4�yPl��M�{����%�ڳ�fΝ����FU1���QB#B�Hn\.���%O�N������v�h��
)_��`���,�!o����߸�3�%?�N�R�|��5�H5��y|6�}<F���t���Q:J��0�kuYIx#@��ՠ�% �����l�_���{�y�:q
.�K+h�:�����뻸F�Iy2���G����<�ql��ʠ����u̕	��'Ѽx7��x��ѱ^�g��_��l9eF�p�%O>���moU�R��������{ύ�M�[m���q�O�����=\��@w̮����Тw`9���H^p����#�B%��]�yz?��'£�i�=����{��<�E���J����9�h��k졸����|���iM�ӹ>��^G�f��d�<[ư���#7��n��3��,@,	V�n��M`Z8$Y��x@��Gu͒���9�&��)�";z�>�O���nL��u,��f�"�}�-��'��=sD�J���ME��AO���E�ʕM�l���@��J�:6W�ݓ	=�c_�Sԉ�!"�# b��0KyvS�nI{=������Z�}���w nĖ�މ;��:EN�)�b�=v�8s
ۭ&6:{x��U*�;�=%�b�D�x)[����Kd�C8��Ġ�L�pe*���R��o���q���
|T��=gm"'`�SU�.F"�虭6�9>��s��A�FcQ�7o��3Uȉ�7�����:�Kz�Jl�8�+��!�o^\�$~M�]�-̡Z�c��(�j{ToLt���k?��Y�����c��MI�� P=
 M���{p�6���;��iύ�����w��Y�F�Y�v�u��g�YV>iXd���M�"�������g�i�f����/U>�$�w����cYX���a�%��`R������|gB�	q]e][1����c�’�,�VL��!�p.'l�a\[M����H[{��͛:��m%#������nC�^��Nx��<.�D����i{˛߄o~Ǜ�B��[ �f��;�=/P��5�'^�$���}��o5u<�a�{z"��� ymr¶���;(e�~i)m���#r-����9/�X}�˸kBXf'$40fABy�F�L�^��A�a@ND}C�{PCc�@������aT���b�–Va!��-�j��<R��,fR��(3�b:
�cߚ>*3�-]x�u�ؗe�ڔ�7�@�me��w4@�q�V�D�*1ege���*�ሱkx�zɝy��C�a|�Br!Y��8�ڑ����<UlR����c��Dz6���I���l?0>��6њ��C|�!�\��8��o�A'7�'VFe� ����o1�ݔ�r�"`b�p�q���UT��.!��fX2�l�i�]���5ω���v�3���Y��zF<���[3��g�a>NH<���`��:"�ݰ�1!ߜUaES3��{{Ή
e����
�9���!�b�j��S��W��N���g��t���Q:J��-+++v���p|q�7��PXB��6�߽�>��.�]�Bl���!>s�:6vۢ����B	O���=k��%‰�]���> �a���|��}��g>�Lj���jO\���q��ơ�oVp�
��~KDp�:q�d�1^����6b7�����R��ѕ˗���$����T�����d8r�7v�!z��(��*�tiσKȢ�'��V�Q/��,�	,�7������ۥ���t�K�p��KL��kX%2䡇��..^���h"�S�?�$Sb񐈡	��~��֢�X�
0�$�,@W_�,�T� �]�X*K����p�K���w�=A�C���K$�'�l� �����GF�7@�	s5�d�V�'X��'̗�K���NX,R>c"9i[��j���(Lv��o�7ұ-M���u}.G���H�w��y���#c���D�剸SB�뵅�<ܱ���:�8�+�e)p���u<N�Zc4�խM�#�}�*�L�,�π�O����%jU%��$�].�'�g�:���:�&���t=�@b���.z݉V��{�G�P=AAxA��	t$�^�0�:'*�#B�R��.�U]\ǹA^[����I�n�m��w��0�1㋗	ODZn둧�˗�K((��G�P@��muΓ�����5�x$��Y)�4��3�$^���Ü�¨��d��i�Z�|8lJ+[���,�GY�s2�����ì����ܗ��e�}Z�������w/6�iϜU��֯V:�=h���œf��Yy���=Yc<�{V_���7�2�%��$07.���`�C�����2A��7��`���[�Ð!N��LtX����c��<ز�Zx�!�}��p_�eO�?�7�h��q�N���8^|�ܼ����=���$\�HP
��ƑI�U�2 �
ޢ�w��p3~>��Yy�='y߬k���A��Zh��#�lz�9A�rI��qB����f��^%0Y��L0B��
B�O�������р̷�wx��6��,��w$pq�6�&�b���W�6&�v���sP(hwV�BN��A�p
�|��T�a7U�OV�DC@��R��Wk]j�IC��Xh/��RR�+�,Q����<�py}e�h���r(3��8��3`��_�
6�9i��Y�q80z�y��{t��ʙV�ă���㺞�֑����=)�d�OAl,�X�sڭ�P�Y�8�z�V�i����YϜ%����+;��Q:JG�(�ұ�k�^@wk���z���d�!�sE�M��sX�/�e����+�����9Oly	H��v���v�c�0$r�T�c��Cy����>�D>�{�yooZ[�z��=�8��%�<����N���k\��7XZ\bcu��]zD�H���<�$��C�,n]�J�'|��-��&�
����58f܄Ȑ�>�7�`���ț��ٓ@��l}ky��O�A�ZDŽp������G�@�m�:�sN�q�s�ݹ(z�l�M�Dl��A�ω�Ϯ���]��R���"J<���g��{�l�*rݩ�w���nP;�	e�
�H'k��IG��B �E�❮|?���Z]j����"q/��;D)g"������X�k���%��O숋f���Wz��Ll="�|0��S;W*e!��������glM����toR��q�m	:���ty�u��j��d�4D�A�.�+�_;�G_�F�^;.���K�;��n�>�x��-֩G)G�2$���S9���W9�`�Ck�G��v(W�D*I�:O���M$Ϡ�C���\�G�m
�PE]�iKD�tw�PɋeJ�H�n��o ���A���.�Ƹ���6{������e0�4f�@�P���]v0h��ĝ��WaW`�jM,���<���~�����z
Nu,��ߡw���h���Yr�A ��9��_v5?K�1:~�5��۬��]�sSZ���o����c��}V����ɼ�z�,=�v�v�<y>�,��f�U�æ4R����s�a��߇y'{_�<Pc����ɭՇ���ֲ�&vaŤ�e����ފ����`wV���-=ح�|�l����Ѕ�1=lk�!y��H���y�P�v^��	Dz�{qי�x���?�_���_�#�<��ca�e,PYu�OɁ?�6�%���L�r��N��ҮM+o�ҟ�H<7
���Y�_dL�^��|���!Q4ho����L��+� ��ა|5��r����~�����^�?��{5o�_�t�'G���B�`0�01�������✸���3!�88��D�M	\�I�ز���Qzm����R�}iy��,!�G=h^�y��40=K���0�Tڳ�R�\��WVy^N�Y��zvV��{ZӾ�j��u̒�i���f��i���Ⱦ�(��t����HD����i����X!tBB���r��.' �Ɏ!�ܛ��rv���M�lB����+�2&DX�u��q��#���y�Nhme~MR�W�^�
"Hj���1����G�ʹ����k���{q���=���[q��/hwM�Dtj�'c���&(*k�a�MC�p��io�cL��h��@c��F����%Ƀ���N���y	����Dq2±J���.�����Ob��g�S�xqp(�B��ј���/l�g�cc�8vB߸3�IT��3)�qʔ_���j4	�o���>��YWc/D��*s�፩wv��I�Ï��Ö*c��Ƙ��@�.N�ҁ��,�z�h�B�������pLd������j���V��kG#_��bҌ�!G�[�w�p__�P����<a"fqaA�Sv��ria��Q�wZ=,̗��P���Y���C�H�ox�~���njb�����Vs��}�I�u�P_Tl�-�����U$	[�8�No%�/������D"���ϭci�����|Ub����q��Emn�H"��D/��Q��
z���vCI�G�����_��n���N�ĺ�;{X B�λ�R]^Ce���V�{�)G��	�+"�\j_���1y���*S�28��"b���p(���B�����P���"�*>�U�!n�ZM�t�����,�� ]0������Ǔ�,}(�{����,�.Y�d�nG�K{����Jai�����ʐU��}�k��K�6^ƴ��*_2e];�s�k)�G�.�f�o<��</�O��ٴ<����P����0��%=���Lv�V�<��3�.�������:�~&/��(���ui�D�`0p�/g�VLzp���`�ú�z5�xW��×],�����I���>�����!,,T�g�􏈰�WG?t:�u��.�C�
��~ք��wZ����?���od���P*~M�Q�&�4�oܫ��g�l(;��c"�h]1iz�&���9	"�K?Ӓ�-V��D��Q1�$".�*Ƽ�8��7��ec���&�)F����'#%B>��5�85R9�)�~c	,,€!-bN^��b�>��t;� �e&A�B�7���4G�2�	�����{��g	���%`'�<̢<��is\�^N�i�$Dd͗Y����cYe������vֈ�5iy�=3�����Yi�=Y�u���Q:JG�(e%�"��=��}�q<��s(p����l{�t;ȕ���n�P�c�9�N��2�#v�D:�G�4�ry"*Ą�3��d&%F�1�M��0e�>G�w�ͽ=���霋soY��r�w}��"/<�e�?j���⛛��a�
|�;�e*o�ˋ��V��L���@��A�1�K>]'П��
�ΐ'���A��w�1��6�w`>�Cx�!��2�ߣ�$�H���]��lQC���6rD`���)�� �v0!����{�����:���p�T(N�#3��2z����mo��f���&����qŕ�d2 �k"��&r���b��*t���X,2�F�ߍ��Z�6Y��~��L��Ȯ�ȓ��?pps����S���x��K~���1&�`<��I�K��q,\����H��x��oQ>
�8��+����/0�Z���co?�>��C�Q;դ�7@ge�"�uA0��ԯ{����%2Ea)WD�ѓr�+�)���`�����9����cz�u"�N��Y֐~�zlA,6�������[���!�Lڗ�I��V�w�S?�(�>�I"N���k��ItO	�NV��ۥ����P�W�����Á���E*?���}e��\��R-�&A���si �����.��������X|A�c!�b���9�M��`ҳ��d�剧d��O��>Μt������䱃@�乬k�t�O��A��RR����X'�9(ԦY�tP��9���夗�WV���a�����t�d'����r���sɇ��J_Zy$�{�XB~X�>�$�΄�$�u'&;�Ȑ�8�9(����w��G1�q���0�[w�^x����g&Μ�&����T�'��8������?����o~���������Ä����
�x]�u.�;���%�3��Ү����''����u6�(�FD&H�dF�-`���݌!��}���,�pkY��\�U �?l9
V�WA\.��c�IX��<o-�	�̻A	SMį�F�
�]��:NB�YB�#���U�������ep����n)�݃����ȏ���NXL�T�� �'�
�o��Ŕ%�e]��%�f�Ysc��s�k��$���=I*�\�3g�3�|������M�#m^N[Ү9��r�0�G��Zw�פ��a�)M�;J_�)KI�頹�+�3�_��җ>$�����*��3����v+D�5���x�����憸�rEl�50�d�"�h���B2�*���O�L�E���M�T�6�#��d�NהQ#]����أ��t����8Fl��y|��PbF��	�'��닞~��
��8�<���
Lz=����X��p,@0�-�Q�=yg{�TotRX	A�1��E�A����@�x�>���X�q�&�u�)���w��Ȗ�����%�C�7V�#����æ(z�穮8֡C:�c���`+'^�a<���=���pX]�D60�28�w��'��?�i5��-���S��1/,s�".jD`y�O���^�
ht�>�To�"6v|�4����(ʧ\�9q��M�
O�ȏ��%ObN���߅cx�d&��DHAAd�`�^'2�ں\�ҵJ�O�ҁ-����M��	s��P�x�kD$��4�s
9?���>�	U<s�2����Wn�zj �F*�9�O�h���&v��D�QM�<"
B�q���ƣ�����l5�:Ksu8������D2�/r��W
e"yE"�����x+W�T��V:�y�
�7ڨ�qr�Nyw��*P�t{#�v�x+����F�E$��0*�ȸ�q����T���F�㰣�ש�ѣq���ъ�d�d�	�ǟԜ�Q	U�	G�5]�:�e�s��O�Y�|��7+���c�<Ik�4Y��Ͽi�Ŭ:�u� ]%�o��w���%����AeJk�,>��x���q�Ι��~�u@Ώ-�x�R�r˗l���O�[/q��ޟ���&S�NRwY
hI�4��&&;��`��v��؀�|̒�8���X�ز�Ɏx"��Νc�Vʺ�ry�Ė���K��jD� ����`�����k��AZ���E�6���!�9������"����۾��BzȤ<���� @&l�:�fٔ�I�@��r�z^�ݲ�!y,�q�~��H$p��̜Ӄ'���7��{`�h��UPB8�}L�����Z`mA�wT��Fp6���+C����1�"r�e-M�OP�0��<d���e�DŽP`AW^�7�.�}�$�M,�y�D�f�J�KG����K��p���kxWJvr���"y���G��J�]a#��4AuV>��/g=/�wr>��+~O�\�Ye�u�,�;�{,m>�J���Dz֍���0�O�g� ��Zo��Ym%�Mg��ĭ��g?A��>�Nu��y�
�6���a,חd����%;b�>��dW5'v-3!��
�z;����<��Fs�����;�
`��5e�|�q�[����p���P��\S�*Y�}��@^@�\��T~�N�ͷ�K]}��މ��;<�#������«�}D�i���>q�$�P�S��G-Fcק�͞�c���ɤ�O?�,}�������T�'"w�G{6~�H�ؼ�&��8���{ٵ<��28�bG�/��\�����f*.���0{�u<����~�c*�Sy�^�%9���?�:�L��>�Il��kec6\��9�/��VsK�'҂:��L�ʹx��
��&�}�:G`��G�����mo�3KX!Y{���h8����p�8;WҮ�h��u�<&�MPj,sG�ȑB����7󸜛����1\y����g����qW�ťՐ���` ���|./�]��E��zQ�D]�;��O����8F�V���)B�x�G�y?�P�t�{�+��K�q�=��<3�J��b9����ۛ�ܞ���mt��=�����H[ć:�:���&="��5���zp�V	�/]";�Ԣ�J�a=U$g�h�Z��P�2Y3"�Gs��)*��y���g�ڨ�R�t��ݶ��/�#���P��Ēf<ɋ�H���(�.����2�!$'}�Z��EU����\�yEe�8$T�rU�g�ۣ��G�B�Ji��;��/b9N���Z��j��c��F�X[�vU8A����Oм�!b��c�Thbe��X"H^zq�O,�^�~��	i�.����!�U��b!ӡ�T.1B�Km{��U\��Fko���E4��(�kh�w���g�T�{�C�c,���-��璧�}�����N�9�|��
��>���)�עk��i1��'k�-�B�i�:�zvN�Bz��鱴���Gt��#^�i��k�@JDŽ��?"yg0�'���J��i��)	���y���-KL_O+���a���$���0�-Y��=Y��y��J�.����9L9��0�����/�]�)K�?̳��f��g������U7q� ~<~>~,�ng���7���2Ã��	&7ز�~�oND�L=��ܖ�-<؝�^>Ȥ	���Xv�+����wc�dǗ"q�aWTlv�B%神xz>ձ,��&���wq��
Q+��۾	�����o���a�~A����A�)m�K~��5�eu�Y�+�1m>Y�J�i:�w��Y�'3����d����9"`�'�+�HA�ì��`1�!�][N����D�B�Sf����;|]�	�-$�̆d���S~����M�v��`�*1�lV+�vMp�p�w��?�����o��]��AkQ��Lh᳣2�&��mf]o&�7�9J�Ք�觍�c:���.x����y��ڬ{��Y��o���?7��Y�����K���s��+�&%�J֫:�K+CVJk�YBTֽ��]ϒ�ַ[�ȣ�쵐x�����\&P��������y��͏�o'~�#?�/^�@3�u�m��㿂�._!p&����\�/�Ƈn飶;�ǝ	�r7��3O��f��3�#�٧�������-�����]����n��w�xqk_v]��$w���e���������r���R8m�.5�E�ܼ��گ~Wr�IC�l)c�W����?m���|yO���ًWR�K����r����pu����k?����Fr��v?���o|A�c��;��o��-��]|���D��Ľ%���~��~��6;?��{����`s}�N��[�(O=C�1"��P�Cqq��S��V�@�`Rh��L�����0jncuq��R�]C
	�&ĺ���L}w�װP�s�=�����3�{��J�N�Ȑ
�cDdA��m";�_���M�r7���;���w�=C���@�k�����T�E ��@��w&{�# ��cWC]��\�;4W�1�H�tvǕ�{(��J �<��e'/�����n{4�5	�fpzD߇D"��yd8�S�F��e����1�!_,?&��+��T~����IS�����8GƐ���V�7.ڔ&`+��v-�F���W�Na~.�Vw#���'N���Odg�H�*آ��zu�#2�A��;r\�CG4O�N�"�BR(iU��/���p�
I��:������z&��Ў8�v��TGl�0ΡFu=W�<scV�B%�aH�A��D��b��c�G��G�1������hv� ���%�w{��~�4��8~��5�\y�ם���H�ɡ���r܏�JKDh-xU"�JDRqs���.�}"5��{��VdWOy�"d�Ԧ�VK\�9D^q����hNt�t�R�P�ؑ8%Ŋ"Nn"VF��$p
4.r��2Y�gҝ�5�ظ���͡X����U�n=ܸ� Š�&�b�"�U���e"\�q�\��R&��>�„꒭���ߠK�;�x52���]!��~�u	�#���Ǥ\=[_g�8?�5�E�7LC�3~ �Y����a[�+�g�OӍ���"cV=��&������4YfVJ�Cֳ��⟸{���I���*o�u�:H���Ӄ���|�����a���Ae�r��:���'�+�?[O�s�3�9I�0X8��;���� ~S�ʃ�	��0A��"���6v�|8�9�r�%=J�[�L���s���G�Y�_&>����'O���<Q(&>�;&�W��ʂ�9Z�����\1eeߤ.���	E������?�~�cb�]�z	l���;6�s{;�sd
\NY�g̺�0���J�ʝ|^�����ɉ��d�	��س��U��E�^���*����"��G���S�Wy��qT<^��U�����_�1���杝�b�����wQ:�n'$T��7��:�X���θՅ(��h>�}�#	}}�25�(+L�)�98J��4K:ha�tҎg	Ti�Y����A8����f��{��m�3�ʑ%0�	�iy�	���������='M�_�ՆiB�,e �w2��Ѥ��H��#�O�#8��wa�V&�p,ܟ��?�_��/c�7"B�E`�M�u�#X\��w7��X_�F�tsKKx���,�y�����&7[z�%�|gk��$���׾8�1r#�`ޢ���	�8�v7n^ O[Fз����)s`��>�k���2	x�Ycw�}<H�᝹m"=�7��Ȼݼy�����K�����7�-���^���6֯0�NCy���oD��гr�Ջlɠr��<���v6�ei��.��
rI�zX����m}6�7�M�]MPYZ����!z�r�}t{m\�:��Q����78l�,c�L�~�*�ojB���wn�5���rQY9r�����W����~�e�(nS{l`�����>���*��o�f�E�"��l�7�%���a��� P�A6+���nP[�E*k�G�����ˀ�7��Ս���VH���LMm��4p��rH��[��"���;���؃:�~^3�K/a���4���ڰG�~���KW���`n~}j�}��}����U��^��J�8_����>��
���{X&P|)�0G����]����<t�]hw4���=f+��K(�;�	���MN꣮	8.�0l��,.�Q#҆�����T`r������`��V<��<�Sx���X�\�=�Y7	8X5�yG�<;�E�p8�?�?"����=�0�1(ǀ"���gwCl��M8�Pt�/'r���%>	r�S�.��.GuGM��Ǐa�����.6hmا6dw��
o�%��vv��P�%��ز�cx�
�ö��%�v3�K��ToDh��Z�
��v��]�h��مU�� s�O<;�39X7�
�m�ק9q��I}����[��.�t
ǥ ֍*�H�w�1
D��\���a�<��wb��o�*]3mлv�-�w�beu	'�/�<���ͱ��i��|@�n�����ԗ�},�Q=�+D���P�r��%z�2�M	�l5QG�:�ri���5��G�J�^`����䚛�P\t�.:-�ד2�q?�^Dx]���"�������M��U�t���&�@6P�*��T�
�����V8"�s�؍V�@�ߗO!��`�C�re��qؾ�MY2s����ݙLR��t�v����{$�\�L�6�]_0�Wɒ�������8K7;��_ړ�g����e�Y:SVPN��$Y���� =9K�O�wV�&u�Y�#�|�}�A��a�鵜��Y8�I�#�)�ߦ����m'~i���eb�Z}��b��;8����������n��'�#���._�̖�-;�cH�в�Ɏxz�.�tEs��J�J�{�;��p�AJ�T�Uk���S����b������-8=4;#-�n��X�D�|p	�@���&F�8k�K~��X$;d�=�<��'���ԱSy[�2R.�����w����v�>�"wQA�Wtu��{����������~n��QB^�k���<ǐ֊d�BB%QOrRikc�a�S�l�ED�>��&B��а�n�l̎��q����&QT8Ԡ9J��d�5��)0�ߛ�7~m�pr�w��N+C�\��@�ۙ�g�i�z��sq�&�=�ȁ,�&�֑�s*�������L
DI!k溂[�R��5������5�x%}�w� ����>�w�����/7�5��O~�w���x��3x�O�����>�\�ޣ�������K�7����/������}����G?�$.��:�vn_����7�7D�=���h���/��g���?�s���u�y��I������x�ȇ��x�@P&Q�mɸ����o?O�]|�~/n�����?�E|�s�
��1r��u��}�s"��/������
��'>�j������SW6�[�����>���N�?���Es��Q&�1艏7(�������K�Ps����#Z�&��O�C\'�`}�y�‡?���ϑ�L@fo?�����B�d��ᧉt������˯�DT�
7_���������G��y�����$���s����%p��OK0�'>�)t�v�?���KD���|��o{��8��O�7���K�'����G�PG}~	ۛ��;�������x��_��F���g��$n\x����RKu�'>K�ǧ>���A�̿��^�t����~�?`��ï��/�-��g�>����&_6�<����3O~��|���O��N���*u"��o�Re,ժ�{�=wD��s��
|�g�s��~����~����ڍu��O�S�p��!��H�z�$�]#R��^>X6����lS_�����G��+�ވ�z��x��>yybm-�C{����#��:���p����d ��"'�h�A���а��Y�/�>[U�\�!�`�ex��<b8�=����w�]Ԥ���#�Nz����n|�2�u�x�X��;��Ld�@���8\ͻ��	��[4p�nvQ4��/]G�'��k�gb.TP-�S�X�1$Ux&�<�9��O�G�Q�\���*��wm���,�3M.J�W��d���&�/\����4��P9nk61h��I�!�y����g7S�?@�V�wd�����2��c�䉰rp�O�k�H%���l]��1�qV���SA��ڰ/s���sD�T�w�,.���� �'�Dt�9q��8�7ɋ,�?���+"�8z��� �="����.㥍
\�X�'�����5"�Kb��j��<y"iFx���o���6�DF�x�!�qcv�V���sD�͍P]Pb��D�I�k��D��l�\���2�D�m	�!�W�:�:�O�V��[$1I^��R""� y�
#"e4��d��&�K�n
{9�8�� �9,�1u�VE]���4.؝[�X�z)��*ѱ�@܋1R�U$��S��9/����ޣ��z��%�`x�o�����g?�1���S���x�{�o�|u���}|��i�?�A"Jy\9�9�7X�d]oGe�1 .�y�g��8�5�NKY�]��Yzh���O��5��h�1U�݁��JU��`:���z4y�0SO�2m��Fn]�ڍ��bb6�֠�������zH�,�/M'�� ���֖Y����t�Ɣ�6i��ͪ��,�"~]2��56�����%0���� Lj�kAX+��*�\>�z]���-�a�OJ�V��ܹsBz�U�f���<��qi�w1�_[Y���K�����ß��ħ>���w��SG�9�;�y��XZY�������-���Oh����G���";*^N��5�Κx���'���o�:�,�h�@8h�J�n;��;��\� ��������@K#���̄&yD.�t��9+�Ds�و�*�eFø�҄������F*@����
OO�z1����?�%.�e,L�s�/�`	����b�HϏ�%Kj����;+���c�������ޔ\��@�a�7)8���括�$
̎O�/kAM��i�����r�N�zƬ볮M���V�t�����Ǵ�YǒeJ
���Y��j�Ôc�3�ֿ��՝��*�j�
jt�*�v�v/����2�}��-o{7V*%�=��ϾH��8{�^�w]�u�s")H�<y7N��o{ӣ���Ӹ�޷Cu�(�汹���Xtc�����t�9<si����7���)�徳x�M|�B�>�&��⾳ghyu���p�A/�pi��c�"����׿��K\T*�u"<�}�`y�4�����Ve��>�Ʒ��k�����^�I�}N��w���
4Y�)a±��$�>��[p睏�<n�3�z��?�G^����I��{*yl����P����q�S�������5_@g<��\�s�pt�*u�\���Co��wcn�G��(.ޏsT���߁
��#��x�;�|�᮳x�XZ8�ox���0��׈��t�&��q9N�<�<���#�	l귮�����ɻp��9|�߁'����G�}N;�wQ���u�k�nʵ%���P��\����Т��,�7>�.z�$#����#|�c�N��Y|ۣ߀O=�q�O&8VE/��6G�^*�S�r��7����x���'��د�{�G�����ܓϠH@n���䩳xǣߎ�+�S��Q��N�qy̻�}g"���
"ݾl�ca��ԡϖ
y�h|�{;8^-�!£B`�2���ᎆX,�q��"ί.��c"�>I@9�湈���|ufy�5o��@�l�0�/�F�o,��;*fD�Y��⸗n�Oc�ґ��r0u��Y� �Z����<(��;�;ub;x<�	|����LT��&����H]��9h7���hL[��J5'ć0Y��w&WL���D�6*��I����E��V~`wk�gDdǐ�R�(�f�i�iR�
b�0���&r�OM�jbn!O@z���ѣ9��G�5��,^�}!���v�����	�^�Ʀ�KWz�nI��x^ѻ��>7�n�~�.�j��TJ>�k�v�%M�޿+�����1TGy1�0o���VCBzx��tRy{��	�<N�z(݇���W��<�շ�
�z�"�Ο���DМ��X�[�-���5꡶LO(�hd��h�a�/����lmO�D���S��<�'��'�G��$a0lѼ�qY����wGXY��zCDY]�#"�V)L\z^[ޗ]M��)��t={@���j�cmq'6����s_��8�])+m����j�������{[Z2��}��
�\�ɦ���6L"�8`�k����|�|@o��`b�;/���Q�����5w��W��_�	"dϝ?����d���{��{�ȅ7��еh ����ˮH�y��G��O�µ�
���4(K�Ϻ7�����c%���S>�~_x����O�5Q��B���_��6��X����8v��j����346�h44^F�v:4h|�o~n��W�l�t��E�x�>��.��?�u�,=+�g�G1k�MK����Y��g�#�&�_�t�:u���~����YXL�y�I���a.!G��D�2�uU,�G�����oKzX�	�x�r��n��7��b�V��`���[��`8�5��E.�8�V����`wV���Р�dN��	��)�
<��S�F��}w���#?�;N����;̊ļ?p�<��ߋ��_����`��7>�x�w������$uȶ�M‎�.�9pI�D��f�w�5��>#�G|"H8��Y���$��r��<��Ba�1�ע��5��h�
'�,@4y�f71����.�c�=�&B�(�#Brё��ZJ�҃��:hr�Ga"���r�5�®|#������`A�-\t�L�~L9`P:�9�Sʐ�5��pL�r�^�եbΥx��D�&n������z��� �(8h���;(����6{��T��YBi�ڃ���.�|�}G;��kf=w�|�%�Ϻ>M��.i�?k];LY��JY勯G��O>#��{\���We��9{���e>�I����&+"�7�߻�±�ZɡC��=k�q����?������\�u ��nN/���@7��3�Y�(R99����G3�{���o��3��r�dEK�"E�b) ��3@����T5k�Suo��=��Ȇ�^�{+�T���{�������`v����h��we.js}Ki��_�}�Ư����|�I��&�3aq�N�������]��/�I`�'�D'f����bT\�
�vx���W�X�M�܌�}�O�S��\�̿�����U	��:-ݙ-�n���6�47���.Q�X���~����N� a{�D�B�i,�-
�'nƽM`R�;)��K�:��F��N��N3����s���D�s]�k��V_����R�9�4bq��e���^±l����hu,	�-r��R����v)F��7�G��U�$^x�+j�3w��7�
~���H!�{^|�k8_+�~��מf[:��F~�;�N�&�0y�vǓ{\
��󲄰�%�%�$����g��f��v��6���������Hc�t���;-Aб������<	i��G"h��x���-��m����ZG��p}�{W��N�$��>��:��x1�hW�V�KJ���d�H���WP|߄hN;H���1��vTw�'���^�4	��Hn�W��$tgl�۸�S'�PRé60Cb�l���"�'5�G��z����1>��J�X1p����`]g��je2�ò%��1T@I�{�R��б��dٞ���m�Z#��bh�t!*)�h��!ȝd;,�m�O�Ks>�Q�]VI��k�5]k��]V܋_�p$.IB˖w��Ǻ#,�e�(a�o���L����2�����W���cx�V�HF�X���y�M����;�2�Cв��n�����/% �w�$��Up~��!�!b2o�R�e�7����E���kMu�(n�č�M��E���J��;,5�+�Jy�mkLǎn���ݰq����[ޏWH�ܽg��?���:��z{HƎ�o���r~+�{�c����*�X9�f�dz��Z=�?���6�ۚ�xj;u�5��
��193��Z��q�#�Ӑ�1b}��T2�Ba�c�¿*����LS����e����VWa��<�qjH�$�e\-1��1U��?��O�Rc�8d�9�ұ�Z��`��r�@3������.j�L��B�%�F4�-��4b̸�����A'�A�K1�s���u��A����`���2.,�1�s>��@��Qk���7~���C*�S�wM��'_��<T!,�!��V��˫s^0��9��~�s���Y��`l�n�'�\�=�;dz3�6��zF�^aYjy����KK�8{�<������y���^A�_<M���DzhG(�>����^��9Ήm��x�S3/��T��\��촾���FGF� 6Qt}���a��Lފ~�/�(�3J/�W^���T/���	_��>��68V�R�0�,KR��a0X�+����w(�!Ć|
�!��g�a�.����C�OvH�{�����qk%U�C�ȧX{ȧ��J�;�3��D3[.f�]w��S\X�W㭑Q*���H����Ő�H6����?��{/����X�`dd��W��k3}c+/� �/|~�D�o�0�u��ޯ~�c��:�
��P�Y[�`���b���
�#4�w�@�}i���a;ب&z�����jukb��U�ۇ�
�� ��-P,�K�؞E��E���wC��~���m�A�;�z
�ӫ,�G}�"r����x�Վkf���<�]�	�C�3�+�O׷�P�޷p鳈m��#
��	t�yi�@r?Ac3!*����wY��zG�σ�
�zO�ھ����^��{_��L0ܬߢ�6�_��ר~�P8�A��ZK����������N�����>�.����7�w��]�"���~���Z���k
8�jv�i��o�S_@��_��:$�uT�pVk�������(����fV����b�|�+�x��kp�6�Q5�&	5�V��}��S/���T痨��t�)�b�7���%������Ib�2��Y�d!��^
��u��u%*��M�$J`�]���E,�:��P��Q��	ό�M�&��E�*~���3�A�aH���zuiW�u�Y�j�"��Y���VVQuHX4��kgphr�O�"H��X��p��/���H�|
'ϝ�ɷ���E���Z��������h��"�<���
�S�=w�0����a��w�R>���4�����ӯ�B�"�����8&&�x��K�5���'�>�˫|�5�wU�-�}��ߟ��<�Зp���x��	L_}+�U$�I�ϸ�t�!��`�ͯW1T�������+$L+�'�x�m7�'�ž=�8�v�w�{�[���Z UC.�f����Wa��U5��{>���꓏��ko@q�"�	l7��x������6�q�$q���b	u�$���|�;��|�l�mqmd�����J灉)b��� �$..e	@K�!�"@SE��2���$2�NE����(:����G6�I<��K�L>�$a�V$[R�C�J\�y\��f��ѝ�C�x��V<�����<FY���b9&�9��93��C�&�kq'8��P��v
�"�ߗ��P�,ȳ��R���񱂒�d6�W;&�Sq���Bܶ��^�!�*�gm��c�ekU���X �Hv�K=d3WBHd_��\G�vzz��_�ϡԅ��$�K��	vǓ��U��|֜����|N�v0Y�F���IO��A�k���v����
ٶ���|���(q}$VJ��X�d5i�-/`'��!�#�$�w�`���A*�T�����"���%J��HM&ӆ�n4���9>�:�~�����d��f�FB�s4��So�����\�^û�~ܒ����p��Q�y�/��b'.�b�������8X!iG2.�A!�RwZ�r	;��\�Z<.�~�s���1��,��f��d^���_\���0���y#�)�̗�N�HVTPȍr�,�F�ɵ�Rn ��i��D<�}*����-%[d�m�|����*3�\��@Yا���J����I;��R+;�XZRϸ���
v�#H.���H�vHP�3XY���>�e<�����8r���'7]�/=� ����?aa�d�q�����J����/�ė?�?�ӧ�3��?z�����G�7�뿎7_~����ڍ���w\Kҗ8�y|��_�7y�k���G�~�W�%�F3�t�H�,J��L���>J�����-�c}�;W\�Q�RNi�醖�噹)\<�_�%%D�Y_X�<��X�dE��Ab�����4J�"fwL����y�Ϳ�q%M���wq��B�5�S����<�����L��ۭ����V��V4ֶ���Y��6������T�><^6�k���2Zus�bv���~��n��{+�Bbwx��g�a���Ox�)Hx��ٳg��C?�A�$>\� �[/�p����_��겇��\^crt���o��nG�!���Ƕ5�<[L�:�3��I#�K����z�zX�&���	�<���v�IyP]�R�AyDMQ���U��l7%�h�‚���#�Z��{(t8��/B� �n��Z2��Vא.z��u��X���6�X�y�kq�1�^�	�.IaTR�o�|�͎� ��[s�8^=/���3Ї��8�U�avc�c2Ӭ-�ў`nyy[A�'C�?���M�$��S���]U��1O��G��]�{p����v�|S�<�մap�9��u��y�|�yE-�Qu߻��4\NT���w,J�jO��~��W�>�3��<�[Q��o����iP�G]/!
�l��$�f.�-&��T"�YdF2H�o�j	�D/&	�UHL��6�}��h$G�6�J�E��O��	V������	�;X).ctd�$�i	�2F�y�W�A[Œ48W\�HnLe�|Ά@�c�J
��I��0S�	-W}��b�N#�k���O������R9�&��%�3SH'�(��!O�j�@�H����X"�>3ZPp��,be�N�2�
�t��S+���*�$7�8�(g���X��FelxRw�W/ E�}uccŧ���iL��*ɇxl��G��A�uT��4�b�����
#���K�b�$�,�/�V�ܬ��/�]@<]�ˋKK��X�Q��,	�"�*�}#�bX%�4<:�1�|�劸4S�Q�
�cm�"�L��GC#cXX[��4���E� ��S�7����e��<��$����������6��;>��?&�1�3�#��Ï}��q9�#�\YF���B���"��ؤ��3Χy��;�(�jal�c�Y�R����!��H�%SY�X*�a$��j�ξ.��-���������qɒ���#!0/�.b#��N�.~���B��c�}�C$SK���s�)��Ȧ�&87ǜ쌖��I��L���^K��R�^^�s�}����ٕN:���y�2$x9�;$8��W���m#��|�-|�l|�>�ןz�g�RK���q��wp�[&0.A�m,�J*�����1.�WVtw���n�}C%�ۥvK���	��9p���]Sˏe����/�T.���#� �O�Xb�h��W
�,V_��:uvW�6T�⺮I���&�\.�F�X31���W�bN@�a��v,)��G:F�R;6��v������	��qn�<���%U�G9��y��̛�m]�<�"���n��)��C2 �b�A ��P�zm���4�n�cL�����x�$�{�CR��k�`(�	��˥x}J�L�b�dIV,M8��U%��	�:J|Y!"�
��9.1�	���8��
{�-,rN��C�c�4H��?���q���0y��x�K��}
O�]��o�g��t��1�ҹ���X�e%�HB�^�T�C�5ض8���"�^g�Jk����'M�ö
j)c�YT��m�+���u%�;�4˳�#!qP�c[����֚�>q;��X։+�����I
f�uc��(���8q��6���P���RX!N�2��U��}��Z
��`b(�:��JY�yǑ).���/��o�S�l�^N��?����~��\���O��?�Wz��|I2/<�b�	��o���������/�M�qǻ���x��?�Y|�������O�~��ߍ���"��o|��������Ͼ�������w�r������1��=�>�I�y���?�g_?���g����]H�B@p�P�w��jøU;�Ϡ�G0Oq[|�Q�K��5be�����=���^X��lS#�Q�xIB����nZ��8��$O��>�ݻ�bj|o�8�2��1�C$��)��NOci����e��f甈O�G)��r��>V5&�}���m�Y���<>�.*���AT{���<6(ϭ��~���v��C;����s��2�=S�Y�_N��(xo�<��4��`�u����o�~���{+׷��!6<7W]�V$:�$�ayߕ���o(T��o���Zwȧ��w���!�y.����O�� ��q���Ȍ|Ժ���w���]�s�b#1
T��!?���MXP�3��v�3X��8������f Q!����oV�A��p�9��#\�ź �ջ�{��se����w�7�P������F"²6��Һ���*gm�֫�Ww�$�WW�20a������zD��*`����@���ջ�����U,�]~�����~�:I�c�?א���v�lE��N�_����i���k3� x�V�Tv���Ev��8,L
"���� �{К�>I��4E��k��Q����w�p��1<����/���z�l�h�Sr!��|nVV�/��Q&	N�f��g'�3Wq��y��;��]���'�L����i��R��JdhbtJ���]�~r�=I�Z�I�҉�0;�K�2�ب�(G�k ��\�^����	��41Pt�BL#[����g�Z)��ͨ��q]�	�$�Ny������&��>Iq��5w�laY_.��04:�rEn<K�����j��&f���~ߣ�ݥ`��n�v%َ���b^���/e�F	 !�%���ь�kT�<�Ǽ�#�&4X���4֢���������<2Λ����t��]�H��@��?>�f�f	�Ű�2��z;Y��x^�L���1�Τ�f��<�`���ԚxםƝ�e<��*W�&~����z�����}�!a5=6�;�Ӗ��ϐ���ss	�y�S� '�M�20�]l��(�fl8m/x1���^\
b�$\k��Ұ�mu�S%`� q!q*�'yZ�Bٕ�!�Qi�����K]X0ј�^����`������g7��<��X��'	�3�yZ�~��[��{��{p��U�~c��`	�b)��I���$!W����s?'D)�%��J/Kl>)1XWq$msI�H�
�Y!�-`M�o�EY],���~)-q4G�䡸��c��ؿo����j�%mv~�k(�D��G_�]�K,�n"e�
e�>�G^1���.�{�����+����Z$	ը`�L��J�dM�u�*@)Aᅮ�$�R�f;��KE����
i�c	q�UW�ێI9Bv����O$��E� �9�X�+�͉������8���c�گSk�#���T#�R���Gb�g�$��X��kp%7��]��aW�A"�<^z�i�Msx��Q��󘞚�ܾ�$��(/����!����Çq�8�\gkJ��ܑ�p2�:ˬwH�,��}a�}`��+\���3U��*�u�
�g3)��N,Y�B���xqQ��OL�h��d��Zq��vJ����D]�����{�j�c�jp<J �Ǫ�̎r=Cr*�N��z��Ia��8�q��CqAX�;�P��P.��t����txy�8�s<4�5�-o�lb6.����O}�����׾�nx�=����"Ao�K��o�����|
?��>��Ov���ۨ�G����ᔥ��Dΐ1��r�ֲM������wC|�����x��E?���3q=z��i�����a�'����_�g��'?|��ٌ��:Y��1��wm��E�A�rT��.����q�X����XŌ�p���P/"g��J�Ǡ�$F�������#�����^YV7�k?z+z�f�vԽQ�m�5�g��O��W�p�Q�G��NI�~�y����~��܊��o,D$7�ыݡ������6�J����$GW�k�w��P��Ṳ�j�K�CI��Ywt������wL��B�[dSTY�EH�F�G,�Lb6��LLX�v�K���[M�@��I`P>��~/u�{�d�o�~�֠|�2�G�3r�p{������q)�d��G����Ձ�-��ay����r�eL8��n�.)�p%(Y��
��'%w�||��?�N�
��*��\�m�! D�����
��,!4�.1��{���Ӕ��fy���1ː�r@���
��j��ы�I�(���As�fD@��Q�`8��я8��~m$�mV�A�DT�����~��c������D	����p�����koX���D�w#�����W�̺gy~�Mr-���o��XMDI��'/��2^�,cϕ�c�
��5mWy˿�����ZA�C��
b�W'��ؕ{�K��9׬�F|��x��>��|]��6|kV�7U
��}�z��v���n�^_�=���(��n~�k\��V�ݘg>i
��FL�v���W�d��i��e�����'K�����Е��`w@=���݀x���,��� %���@!0&����T���t����f��&���s�%+��G<���~o}�XA[�&�[�4�|M��rV�U�N��_5qU3'$�I�
)�Fv�gs9�WD�bE��V��@��H&:���jU����L Y@0L	�"����ا?�yo��3s��y��~q�"�	������r���v�C��f+V��o[�D��C��c�q��!p,���P��s]�*df��9m��m��6�?�h��_zW�՚�%��@�ꭊ(�&6��.%��J}J���w}���F?p��V���T���&@}[-u��5��3B�E��Y��Z�$S�S�A��X����\X�V�m�@JBI�<�g$n���h5X�y@.K�+	%7$�w��be�"3(�EKkk\�Z�jp5�f7��*�&$��<��Tk�V�%��1u�4���m7�8i����^8���v��-�����<&�H&C��7������w+1�=$�&1���%�K��Ƴ$	H��,��B��v�l�P,q���բŲ�ȑ$Z���i�Z������n�/4�@X]�g��$���s�~4�
��έ���1�K$n�[(gP���%G�dG�)�9����+!)���bc$���G�\2nbP�+bmľOH�to��$�*	��(�m6u.�����+�X,V��/�8���MWc�@����o�H������'�C���xU���]?h����@���c��c�9�37�o�8�&8&v��so��_�����q���v"�o>��9����zM0E��Q�/%).%Q�zH�{���%�/��L>��1��I�խ�'�y����W|&���2�m�<}�4�t/�Nw}��A�&�S�9�=�~xA������׾����^M��]���w��0��/�p>Q�����k��[�^���'����?&�:ĕ���rË�q<�sb�c?��J�Wby�k]qk������VJvȧGvte��{�:�1�#=(���m��鸞U�僲0ʘ�1�D(P��a��O<H||+���|��E��`�p�\Q�Ϡ���ſ&JX���
��S�_���y=�`~�j��Ο�/�,q7.&f51ʨ�\:~̉����"�?g�b]x�ꎼ��ܫ��.�ຽzXA����w�@w��F���`)	��,���;^@K˯�ߧfY�m�+#�O�	4X!O�ޛ+rE̳��d���WTyҾ5�Q��;#�`�Qs� 0|м�<5��� A'\n8�pYQm��+�6ַ �E݋>����s���=ר�–~��1�
^��:>�wP߇������da{N{�&3:H�Gp�w+�-�H[V�`Lߞ�otr=W"|+��V� 	]�xaԾ�_oo�w �`wU���(<G+����~�+W*+�CM#"|'*���QIv�'Rd����5�z���ī��xz(�&�q/�����H��7�y
xM�CAi���H�oqeQ�������n@����1с-
-�Z���L��U�Q['��6��D�w	�Yɸ^+�X^�h��ё��I<K�Q�����m�,V
��,�G���w��r�L}:I=ŀ�n��VN,��u:�T��d�ES�Nx� ����01=�.���ŋ%x�kԌ�۟���q��	�������Ⱦ���̫㚉�A�')�_���j\���ˑ2�V�
��HC�	�<y�Y�™����4��$aR�Y/	�̧�핹D�Y�ƩU,��Ea��p[݈�z �h��I�DF6S�V�9�5�0R�%0:��`:n�$�8�r9q��&)�hJ@uqy�ּD/K�X�VB��eS��:u�}�1�_� u�crzr���2^"�tb���:����R|^�x�ױ��ATe��&���?ǫ>��+f��kO��$�u��|�U���"�cm�ؿsT�-����� !#�!.�bJΉ����Oq5YW�Ƒ�$Atk%�]���֐�FՒ��L�YgM��{�R%�^G^b�8�8~�v�X�q�k�
�W�M�+�J��$�<bq{vqa��019DŠ�^��u�$�2J�WKM%���i�ޜJ�_<�8j�֘;�srE�8��lFߵfMb혍��NK��Ȝ%e��"|���bj�ZK#���5-�&[�Rp���:2�%��O~O<�<���+�������b8W���K�?�ºB�y"
��#����f�K�m�3~>�M��zr�#�
"�t�p{�2U��QXc0�p}�i��B�gܯ�~�!|mT��I)�VI�;������o��p9Qc�탇��k�\�Q]�^F�����?�C�#@�>�!ɏ�!����J�K+�(
���$���$7,�[/!6ĥU���~�"`�A�ť�-+η��:�߁n�ۆ��>)b�{��۵�T��D��A/k�Ix3A.j��jGp��3h�
�wà�e����&����pV`G]�޼ny�G������_o�����hy���Z/?���oO�	��xmt�L���q�'�_�O�r���D?��7�c������4�G~�jb�<1�G�/�����.��7@�t�@L��6qI$g���;)E-~Q��V��u�捭,���A�D	G��ԭ����<�G��Q����LQ���
�_Xx��� ���V��o����1x<�O�5�5g�k���n��.�wn2�*|yP�����&��$qsE~gSO����a�v�ަ�o5I��j��8����^A�'S���۝���k�I�&��Պ�CGH�NG	���-�g*f��t4	|K�f
9O�6�H(��.$�w\��*A��fM����f��DFA���q�S���\טG�`�X�Xi����LZ�	~�^�!Er�֨\���W���g��4	"wH@���55�J�74;�;�Km�|)N�I�E�n�#q�d���2 .�2ٜ�u~qA7r%�B贑IIL�*I�1�pp�n�Z
_��/#��`�-%1�NL�c�c.#q�k�}C�ɳ�����P飀�A���(��[\
�9����)�|��u�9AR�}�%0��Lew��*҅V�8~r�}�A���G�Y�D2��Ҙ�
��]��F���.���@��i'���U���:t����O���MX�]�\,J�_�Jr���b�Ӫ�'�!��c�N��X�/�������42q��-`��=��FGf1�ߍ�5�>q�x/>�4�&s�C+�:^x�,��ެ���z��j(���	ipo!�I!sHfp|����5TJ
LMƕ$��uЈ/b�>�0��\b���L���l�@ra�y��"9�1kH�4[
u�U\-c�0J"�Q�q,R��ݔ@�r]��� m�gB�E,��w+$ܤ�c8wvCc)m{�}!��bm��2�1�����X�tH:��
���\+d��s��ٵ�#y\{����/��g_���G9���_<�"���o����WE!K-G�7<���\.���0�v-(�s����n{��?����m���4�D�Q.�'�G�~�қ�i3�cб��;|oXw�_�2�~�����ۿ�?��R�(�3�WT~�g��8�n���jS����w;�ks�0�|7�d�Xx��f�p�x�6$V������ ��J���b�!�B~�{�g\����Iv�o�!ɏ�!ɷ�ػw��3�\~���_v�6.4�*��~;�T7�������2�׆ˏ�nP[��f@U��0
��^����3/F0O�����Д��O������/�.<߸f��5�^�п[v�2��-�!
L�]Z�[�Ob8�Nw�m`Q��&Ccѱq��t��������`�"��A7�ߴ:�H ��͛euw��y�\/;WlϪ�+�;���6ĆW�U8�5��:޷�~�ķz}����%��Sxދ:�o��o����͡aA<|.x<(tG�UF���շ�<=���֞Ac!\V8�A�͠6�*���%�9}��p��"�vz�$�Nn>�}�i���.���{�Uu[�&���m��6���K*��}���njq��\c A�c��No��m��1�L��mtN�N�}%qP��ߊ�h�K���Og�Z����U�ڜ`^��$��@p��@�׬�!#��<��\k�3�$&2	̓48t�~�8v��4T�O�L 2��XG���8�����珫-�j!�!�e}d'��4ܤ��k�X���J%I��01�V�Y���wP�
�g�4	��Q���5,--�@b�%�|�TF��t�iO@�t
��R%�Q"�C*M@Z�D�їl�M�!МT}E�X�1��Jn>��Of�G^5����V�s�ȸ�k��#��/�*����v»�HB��$�]�����zC	�X'4$h-���
G���u��@^b?0�d:��bӬ��TWLC�	m0��ho	`^+K]�h�eC��M1�9��R�*�)��Hh]Y��m[ɪf����kKxz��iĆ�����9�����عk:�*.�X���m��A5�`⯝�����A��-��j3��Y�_ �AR���|!��Nd\�ޫ��f�������$=JU��fSҮ��4v��`a���'�K�T�Vw`nfMa�|8�c�'�	��=���^� �v��'P-z�R,c� �{��0��˴2L�t!)k%}����3���5��痐���uHT
*����rN��Q��O��Ie�\�O~��?�*���Y�	���Q�;x�ؽ&���&Z��3
 ��۸�V�Vn�{?��\�^��x]-���/}
N����crz��x���p��Zf?oP�'#�zgT^Q�X�\�s�Sv�P�
z�6x<|ln�6�=�!J?���C�A���/�p�뇭��0�~���j�1����U�~�ٯ>�s��=j��߽��K����� ������c^�r?��Zvȧ0����J~�V>��
��;|?��|�#�J��J��V$Fl?n�޽{��ߝ�����Hn�OR��Kka�gk�g4 6��
�K�	-|���ɫ_9Q}�5n�$�ʤ V� �VFa���,�G6/p}@��M>��ZY8*D���X���]�[T� �z��
�m��P�����wcoq�]_��8�1���5;��u1m�g߽��s��-��=Gx�3�`yB��Rޫ���O����(���^�k��j�N�	
Q�M����9|>���5Qu�l��wM�um�yD��/*��g�c�s��m�s�;H0�:.3�{���7�7{v���M�'Gļ�Oܱ��3A}Oư���-nZ�Q܂9�lJ0���-
�M9���cy~���8��̮G\zPQ��?��a��Q4�͡7I=lO�1�xr���ys1{%\C�H�V���W_�G���+�lowDahװڴPH������#�����d{�)-���B�(��e�r���՝�u�+g;1�mn�oz���
b�%�P�{�V�DI�	*�z�w=ç�����q��+z�XT\��c|�{�����Dd����<��s��ӯ�o��_C�2M�]���e|��>�Ae��M��u�Qi�	�ƺ2��Qw�J��MPQ�w��}2��S1ݽ��d��}޽�Xh�\�Am�S8YH�蘒�	;�c�j�Ƹ�1,V���i}'2�4��Kxu���
�p�������b)��43��M����N�E�W�G�$
���k$3�&�065��g��{7C��j�����kBN$l�V-�E��x,��x��ob��������V���$�V��V q�$D�	�g[k�2��7�Z$q��Wz�*5��1�M#�N��%�h���zC�f�6m��s�Xm�&+�z���ed���_JzHߊ��������V�T\�� ��u�rR��@�ײV�C�����X�7 ���B\e��J�R�}�jX�p.I�	�;�FqI&���3l�ōYB�I��T�N�#�Kk9�f��W2I�!)%��G=�<��\���ԫ����������V�T�\
������$
��^\/������EQ���H��u"��ˍ!Q���85�Ϝ�#�>���~�&m���K��kϑ�2��ŋ,�L�$�j�-MhGn.Ο�8M�3uM#a�^[���$ɟ5����M�Jp�v]<_���Z�dW� <	��!�++|yL�$P\�p�ftlJW�$�6��
Cq�����3���HJ	q�@i���K�O�D־X	%:�:�+�αV����0�+�r5��>æ�d���
��Zv�{��ij����(W���g����w��.<��lw�����;nŮ	P�<������u�ﱏ'�p��k�O��w�������f�G�YW���f�`~v*����};q�ba���O.��3�<�G��w�b�y��$QzC�������
^����E��Np���o"�X[8�~��:F�m�u��<7�Λ���ҽ�����AdT�Vu��~�o5q��f��z_���o0m�|���+�]�
�!��ݵ�$D�X���z̷��o�G�>$vǃ>h	�!��Xw��~�ߺ��{���.�4p��.*�����i��KMF��}��T/�M�[y��s[�8������5���M:Q��'7����@;���o�fw�����T~����Y�"�z �k���Ont3q{�'��n�����AO�U��^�]b�
F��Ü�>�x���q�X>�a|[n|�z�b���m:qZ^{��v�!�<���w����Ɨ�W@v�9'�f��B#w,��[5q�J������;�	�e��N���e+��f���oм�v���۶"Xw������p����`�	��ӯ�6���ꃨq�v�G��_���Q�靕�"��^�]�m�<v'&�����+G�K�g�������:GH�`���M�ţ�)l]�c*t�u=$��+�
�뽶�Sݩ.�J�O�b��@Âb��1��U���6%���~��'Az;���J����wx����E�����쎷�Y�'}�a�p1�}�-(���N\v.�V��c%�C����Z�G���o�����-���^�M�:�K����3&���w((�ħ��-�RRB��K�Vc��?�>�����{ig2� U
�Al��8��v�R�n��|��um�'V!-�X'&��m9TW��SG_���\���S�0!i��y%x��>��_���qס]��m��g'm#���C�{�3q}�&^�mŵ�<�1e�g��$�4n��C�/N`ص�}��wN��S�#����f��X	�[G�SH,ّ.��TRm!.����\$(�3t�B:�=$ ��x�2�$�_B�����;�P!	�\1�-�Jp�,��L2�kFHfs�_X����zMeuy�$/���#>�2�D�~em
cSx��Wq�]���?�#$5�eg.�G�VU�M�VwZ�r��E��V`��$j-q$nnLq
�-��%։c�.j͆��������Zڇ���zܶ$VGK�.��M�A41d���6���E���4�� hԺo�ߝ
Z��y�%[(�S�%��2O&�^���5,��.v�ca��$;.sx��FZ�C�ޑ�$7R����*>K�CB�BI��Z,�8����M�uָM�R׀߬�ٶf##C�?����jE��V)%AΕ���UXR,��g=�Z����.,�<�/�Oa�6�3�8��Qܽ��#(�Oc�t�3l��0I�5�f��\.�g٩�7uw�:Ǫ4<�a��9�R(��ZX%9�h�11�&9C2c����*���"���Μ^a�İ��Ԡ�	�XYV�ld,�{k���
��V��G�c��\!�l�hq���/�Y4$@<�a�$Q"�*�(�B*���(Y-�-�C�r�e�_ٮ���Hm�O|�:췄e���ˌ�;��<S.�9�jw7Jƒi�v����N�d�E�&�f�C����RE��q����@e�T��~�u�����~���a� ���7^����3���'?z'R���e�⿪�ˏ�҈C�:�f�j��>�['D�X���������5��W�py�<��܃u�Sp�bT=a����k
����G��s�-��8��=�����Y
����� ]}��qP^�<�ߣ�6��Y�j�!��*��zH��K+�Y������$	�!~�rϺ��K��C���������$n�v��銅�LH���|�c:��Ww��x
Ola@&���)E�;�����W�:��7jr����W�$��8�z���֘+bQ�1d��>��}E+��5d�kmyE��ϳ�O����n��w��Ļ��V7C�|@e��U�Wɲ�Џb���-�"��N��!*$H�
�!��@��ʳeg��2�{�5d������k�簴���� Fv��{,��l���/���AsP��O��~�W����p��-��z	�~u�jO�|U�(!,��(�'��΅�
�q�ڲ�|�9��]��.x�����\�6χ׿�Z���)�Ӯ���F��������p��U��S���o�O|��M��*�x�o`2��׏��yDø�[q��K(�,U����uX8�&.+��{^u�����gq���84S��oǹ�/btd&�%<�ȃh�s�᚛0�����gTV8�8�Co���i4������w��`[/����9��n���L�ܹ�x��]3���/�ԅt�y��	��t<�,]�Ņ�?1����֪�|�{Q�&p��Kx���0��&�p��H�m���#��7^�&�8�.����pli�\{/f36^g?����{Q*-1�c������q��E�z�]�.�$�nTq���8����C���R��|�i�|�
��1$��:�[��b]	�N��ǎ�8}�E���H25��3O�ګod�~
K�4�~��'�4������5���=d)`��|o�>�g��=w܉�:�_{;	�|p�h-�ع%��X.Wp��i��=����ku�q�G13�� årǎ��+%�p�=ȶ�p� �k�_���Q��>�WNǕ��‘}W�TQ����NI�I��$n��� �����B�tRIم�L�tsT��L�`���-k�&�4HR��P&����`W\�;uT�o���%��h`j���N�#�(�=��$\^�#���];�p��w���v�܅s�$NdG��,��'��#XZ[T�>W܃�G�z����"	yج�I�t0>D�����H�3+m�m
���s��c�H��iab$�*�u�z��q�X�5���j��P�w��
!F�$YD�b�ٞ�q���H�p��:��is��)vO�S�h�lul����ml�2�:�H"�4����X[q���V�2�<$+,��!�g��X⚊4��W_<ޮ"���!ّv8>ؖZ]�L%1,�>ɠ*�o7j���d*�Ă�Qj�:Jj�\��;�����1C��8/W�m-_\}	�@�F]ż�HY2�
�Ԥ�]Y���:O��/�z�<�=;���}v���q,O/��`���B�I�;��02�gU8>�uL�d�Z'IP)����Y][A&��$�fU���XK��@�&IߒxY%c$�F~(�1�v4��(�1T( o���ZR��b^�]\G:�!�|8[2/�(c�tO�Sj�"��7Bt��$���!8�J`��1��l�^W/���#Y�)[(�U�.������x�C
�+���븛!1r9K���=��t~gݐ�L-���e?���ֳr���$r��i�)�d޻��q��1��/��a6E�jj���O� vύwc�S?P<����S�:C8
*����Tg
��'_NTVT��ٯ�a ;x}�vE��S�sմ�>�G��A�c���_�J[7����Oo�v��a�)���������ޟ���{oׂ��T]Z}��_��B^���Gdt��>�˩+�j�j}�_�$x�|�s�8>��cp�soe�޽�m4����=j����I�511������ommM������Ib��m�����'�/��k�F>\t6꾽!♳z1D2;�LG����g���ޮXّ&���]!p
�f���ט�9�ek���y�Ư���^>�wy�x�Ľa�uj�=8]�}s`o��l"��/��]�/h���z������f�����[��H9e�w�����������y�oh,��&�s7��|:�=���Zw�yM�=�R:~\�K��̪���i� bfl� `!@�xc�+%��%w-��Fа��w�g1qv�qh۾Ŋ��ռ��1� ��	$��*�������3xʃ_'�V=��u=�ƴyz�>L�ڏ�t��~���]`���77�)L���~y���	���}QdC��8(��6j�JQ�W�r���O��w,,<G�ʿ�9�ރ�En��{�aA=x<x.�� E�j;]�I�(q]����n��qx�n�M|�k��M7�E�-����@p�-�]�!�|`��"����#���,^[h����9|���Zy��p�u������3W��^8���8ۜ�x�?A�2����)���;v_��|�?�ڻGv�ȑ��i����_&n�n���_��#��g��q��~�˟��WQ���w܃/|��L㳏<����Gi��,�x�o����x�B3F�)&V6��:��$��:|�/���G�k���1��KO��y�G1����¾;	r�q�'��+<�_�3��t��o���í�݆�]��}�+�;��W߼���#�Ÿ�2��Gp��C���]�z�-����*_�����Ͽ����q��y�Ї0�1�ߛo<����1;��w���1~轸��!����q�ha�ԓ��w;��<�j>��_���5\�g��O���k�dy����Q�q`�~�9��=v��4�9r;b���'_�M;���݅k�����p��w�U^�W{�`,A��$>v�x��U7>�[]�O�q��a�./�����q`z���O㎽3��/~?�ɟ�����������ˏ�	J�L�䱝�9����$������O�٬�E2W0z�e���M	�ݔ/��:�bjo-��D��x�d��7/�����b��7��XYm�sx��E�_/a���F�x�
�1�9���^{
'���G&�����W_'�V���"I
"�6Iq���d155�w=M��ݻ���s$oo����i�$��冺��X�f��_��vM���B^-�%@�c�j� �A�����hK��΍�Xc�H	`b�I��P%q�ΦI�T���`4@�Z�f�#я�r�<hy�4���B$%�Y|�Sk�cR��Ԣd��u��6=��=���y����[8��Ɋ��k�Y
Q��e�/�v�~�QgS��4�I�NU�W����RK	��$q��heTN�]�9u��#A�l����a�<%p�X4�}�N!�D�k"��:S ���4`}���#
���S�V��f1Mr�����I���F
;IL�i�K��=���'�W�ʓh.�9vP\q8Ɔؖ$I���2�/)��1&x��ԣ�,��lk�����w�����TbL��=��0:��C2�S����9�$r{Q���������ŪF,%��\���%�?�#�Rς�-�Eq1$u�j��1B	�&�U�ġ�/õp����Wi�4��<c��]\�	�ȸ���\�?��"c�48���K}7R��I�����QzY��6�ƕ����|��v2T��kn�	�o�>����K�IX֦u�7��}�n�z��O��v�+7j��?���캨�[��������Ae��L���3h�n%���B��CҠ�,�¿�~�w"�O�P��8�������ޗ`�x]Z�)��ʏۡ�)�������9&�B~���\÷�ػw�~���ٳg5`���J�K�[ߖ��D\�\�d!����U�5���#�k4�*��N�X��S�j�Bf>��C����{�k!�Mn&С0�F�1e�/�kLleDŽo�hY�S@i9�h�q�Γ$1Q���e�F��e���WwK�PxЅ���s���I&�pv��E�ԯޖ埓|{�p��kLõJ>9`|��z�,
���(�yMB���yI>�޳�m4;����4����n���q{�d-���I�@_8a���e\�uː>}�'�
��lޫc�m�GJ��
�M f��b��~�n�͗]V.<��#� ��v��wB�'�6K���7τ����5�+'�ޡE��f��G�N�s����0@����f���4?���z}��QutNRؤ<Xf����l6���y�������.}q�K���0A D���	$^`lo����_�-|���>��('�u�}�էp��A����a�k���]��C��rAn(�Bz�ˏ�ŷ������*�N]\���n����%>������L���>��h�;�N����3����),.���+5L?�U��itV���Z	��M�O�ύ�3_�4>��Y��
��x}����1��:��?�.��
�$ـ#ΫF�v!Op!щ#A���ǑL���#A�?�����H�z$~�m:�]��+�_�W��@]�G��_�,�&�>ʭ�F
S-��c";�x��E�mN��
�i?�$^ye5Wܬ���[em)�
��dA4�
>�s�򳋛�����o��n��O=���:�����{�Hv�H��j<�|.���D3{�����3wP=�s�×��gJD��ώ��t��6�H�K%���~���L{gX�S��:���ڍ��}T��V�U�1?5v5�Q_>�ɟ���_$�O���w�b۾㝓d�Sq��!��2������I�R�3T9W4�_�c�0O�	6K i���x�kk�cmNc�$�6I��|��X!1>�Ebi��L�ʌb�z+�2~���?������~�q�a2���w��=�$+�)���_:KbQ�g���3�$	W����3���/=�
�<�:����έV�^b�$	q�� A�[bM��Lq/$>�ŒJ\�K��zŚ���bV�zv>��y��"��g�	d���c]b��� ���m�&�� �.�
�-!��X��v0n'�~�\Kw+�~�] L�э</��F��[$��]��X"��h��T�N2���)���Q�>O/�X��F�MeL���z�y&8gp6pR�Do�I�T[�e�P^���h"�L�^�M��JtA���L�V��h�"iҨ��q�D�ǘ�׬XN��M�)�-��-c��/�n�v7�d!�<��󻧸��"M�tm����X��R_�\ι�*zy
��|�{
+��sQHX'-�LfQ]]A�䓬%��5.��
�RG��\�.�M9�f�F�	�N�bv;Kܩ�.��k�Y����D�XC�s����9�ϯqLf4V�K�J�j	�;��$Y*e��D��y��6���!�_T*uu�n�O$�|��,ñ��p݈尼��xN�)#OªYa6Rą�L�!�b�;Cv��������d�(]Nn7�538x�j����d�f�Nz.���:�ʷ_����+y�s�>��A��V���t�A:h����Q t��N~�O��QeoV�~��Ϲ[���~�~n�{����~��_fz����I6{���~�+|~и����x�f��~����c��*IBx�ܰ�`���+!>|��*�ŕ�
���]߭�$���vjp��A�C��B��ܹS_!:���C��vcx��+����,.-Q�����8+���0�v��!~Be�e��oQ�Q�2�ͩ����JA$���j�JA#���m^�iW�H^c�chR�o<����O��u��y
��c�eA����RQ�%Ȝ/�V[wm�v��m\�bj�I:��3*m���L�M�y�ˠ|��-DL �2�<0ߐL~�c�dtA)���ʖt35�k�'�
�}W9
��h
l쟍��\����=߸����Z���2��5��@�-�>E�|��Z��Qַb��9НH�Oƍ
˳�������:<�+/�q{�ӽ�����t;�cR�%� ���(�1,\���f�j0�~�͙oGX�L�� a4��Aϥ_�۳�6���̈́Ũc��$�Y��oUרzG�)|<(���g+��v�L�C2;���3h�D���K�Y�@g,�7��������q����s�UV\L��c~a���P^K�w�kh,	�q��Ě���͇�������E
��`Ք;	�͟�'(]x��?�:���&�(c�XYqBh��kx
w��kw�v'~�w�%�\s�N�A���/
o�u��P0�!������o�0^~�w�ŏ��.Iͷ��'�p�k�땱���(��=n'p)��%G���������؝���_���W���g�]�+_�s���X�T䎎-��'Nii�˯}o�7������F�y�cdu#G�T^�x"��g�mPN��'�V�հsf��{�a�=?��a�W��{�Q'p	n�I[,��E��]�������?�������>���?������+�$��4r\�R�)ų_�cL�#����etf��.Y��9k�H��|鋿��7�n�3���zC�Uwlq�#nXvaf�-���Y�؟��
X��S�;(���f����hb�HP4n����8ʒ,����.�5�jQ��Y?���[n�K_���J���K%�Aj���,uV��S#$�L�X�v��I�N,�T��Y�I�u�ok����(�$	8��k�Ξ�Y&��Y��#�'#`�p�s`+$;�'�p~y�t����f���B���"��2u�4�rqeKhm�í��D��%o6io'��5Q~;�6���B�E�U$)�?_\��ȿ<��X��Rˬ�	4	�����|��-�^\B��������M�9�_��	�h�f9�NUq�l	�����9��(��K��gRJl�|.ZR�e���
�VO,BZ�WIu:�Z��mq��z�X	�+Ok;%��=��`M�k�u�i��Ik���M�Phԯ;�f�L���$����8&铔j � )���}{r� �Oc#�϶��X���N�\�P��c�}:�^#�}�cT���(VIZ�X�P���P���Hn�I��Rb�8�'F4���q"m���#-1QV8v����R�c�T�GG�x�m�m�U�No"agP���h5-ݔ��R��d[]Z���0��/�&�8���䘪�Z�ߑz�ɱ��%��"��\n�X����|ҝ$�([-s�$0�M��I\VY�(���n�H���Z���e���7��򤵣d�E�§��Q���rl��5n��H�q#��X"���ѯ� >�S����($Xf�-�{�
�_6�q�A�[Թ����g��O�
�k�n6��p>QyoV�V�V��O����[M�2�|��};�_���1H���9�χ�۬<�Y�-�Cl}������~f�������-=�@}���[y�u���`>�Oz��
�!߅��b�!���<���mYxt���O�ď���!<���8t�A\�8���a�'�3gN��+������k��Ͽ����i�SKJ`\<A��d�/.FGǸx.�������N������Q��`ᄑX�=ba�@�e�m�T�8w��T�zD�g	�>59��N��_ǵ�]+n��%�r��i�ݽ�RY}�^s��Y��H$b[z�Ã�?����/*��~�S�ň�O~��u3�]�O��]�'�!�\q���@�U��,����ذ�f=BB��4�Fr�˥&|������A�Eѫ�����[Z��^M]��R� NV�cǽ�]~�E���6��n7�.���1A5-/���\:A�����-�H���	�	������D����i(~���`n&(����B�~+�o���GTޛ͗����c��p�J�)+�c��Ǡ��.\v�=���5(E�m�0%dE��~�����N�{������G��|��]�;��;߇�=����P~��sx�	P�q߻?�����_�2_q'�Óx��u4K���^z�s8�F�����d�'Z|�
���01���\���#e�uM;���2�z�u�:-|�=DBI���R�>B"&M� ���u���g1=>�������O=��c�
f<|�W���_|��2��Q�=�^#��L&����x����M�C��/�W_�u��5�b�<�8r'�O�|�Qd�1dS#������|��Wp۝��>���lf�݁�����F��#��	�&�hV��vrHiY�U٘�ۋ��x�<��nn���7��c,���K������/��ξ��qˍb�_�ιi,-�2�2��A`m/�T?����9��P�y�{ R��nhf��ď�n|�L��}�KД���y�{�x#y'�}�x�o �n"C�idmI���Ə�$���/a7��
�u�]J��w=^}�I4/�s�u8�bSť��}>�$�X�a}^q�̶K�wRҠ�i�ؙSX�V1�B�Ā�r�1Ap9�M"��B�`x�=����=WNO��[�#֪c<��z	�
�ձ$�N�`7��:�Q�!Ӆ4�G
�ݨ��E�O6���(Ƣ�����0�)`vnG�Bgq��WSCh�l��
�� `�d���sH$�V�x��YL��`�B�q�>�ʹc�P�|Z՝�b�%�ۭ`ߵ�k��cj�%.�s�glH<(�`�	��D��}�i��T�VYF�KC@bˣق��b�!�PK���8�>.��w�@Hل(�*R�Qp����v}r;��e���iPl�e��
QM�;.����z���V"M�<ER@�J��!����a�{�Z�э�Bt��U.s
�H�'?hW������W�;��@�$��bg�Q�X�p�٬�ܞ�Ĵ�~��HDN`:1�T�U�w��r�G��`7(�8��18$�g�8W\��]�Q;q�7�H���J�d�����q�zlÜ뭶X�������X㐜�:�JH��Ư9y�,F��9]:���2>>LܣF���1��{I��$'HTM�J!�ʼߎ%8�8�;�5���\�$	��>��:�Y��6���m�8���<�Đ��s�ڪ�[0KcE�JU��$1�4�"��e�)�wY-�̚ 	��X4�����,�i�+!�˚|v��g�VB�����vqy�~xR�X�=[ճ6\�}*�����򶌪��%��mm���/�@0�p}�qa�u3=e�</�2_�ĬOI�����ػ�Sa�&��~�s��]6�'�~���!؇�t�~�a�~���uO���1:��;�4�˕��o�ߩ~.���QTꇇl�)��<���u�P Z�7W��}+��躵�<|�#x�Xyȧ�>��Xu���𿋕��[o��VA�9~��Y˷�����/ܽc���G򙥰���|��)��O<�$\y��U��Sp{��:�<�U�
�����w�F�D�A�7�����&�BNLOO��!�I����d"(��J�S9&�b���f'�M7ހG���Ey
���dX'7��y��	�����'�RS�;�}�|�
^��*	����sO=���1��{��紥�[����o m6辕���Dο�Ĺ!9�M��@��N��N1Ҧ�϶v�Q�ݿ�w�SA�Uv���w��=�ě*�5 T�'p�	��M�]W�"��W��yjPr/ώov�.z%zD��v��7�}!8	1�����D#��_���۵�p��<"Ÿ�,;�z�1.�� �%r|2E�'?<�&����#?ݝ�2���}���{��.ϴ�~����<�-���~����g[Y��J&�#c�չV�o��ҵ�sQ���<\�,+�߷R�~�����a+߃y��c
�����
��.��I�B��K-�`��"�	�mu�!nG]g%Kl�ŵ���<��
ďwÊ#!.Jb���l&�5�ݝJ~n��)����p7F��~�[�
��Y�T,}]u�d��s����E��\:�1�(99Uu��
�����nIͧ�=�Nn7�NOBw"K
�M��j�l�\�&c=-�`!��:HI^�&a#}h�b����{ղ*���Z�Gb*(I�	H�;\yH�@W�_R�c�uԋK���qSP?�r����c-ٵ�S`����z�Tfl�1��}�:HL�<u\%2�^�l�8g1���z�����+�֮!�� Q!�i�������x[����b����򒌧8痎�'����q.2I q�f��.��T��1�`�Q}Ǥ��_¯��_F;NR��P&��8>F3�ٽ������|�+g�V�� ��z�Y$��R����G�0����V��j�ل��3L��H򺥥e<~zO�Q��e���rq��F�\�W	�~��i�s|��'>�VqO}�KH�ư�LÝ�E�0J��Ѹb�R$p=:J� ���vፇ��s��N��QUU^/Vn�'�ӊ����׹��wr4���8��*	���ث�/�O�O�Ӵ�C�
�ױtB]d�)�
���7L�:u��0�wH������D��~�C�	������C��7x8� I�eb��$�l5����q��?%iE��Y!�3n�cJjp��$��n<F4�mɟ��O#����%$ӎ�Y�W�|NAv!}�N�����u��DV��׻\�RY���V���rSא�q)�9l�H��X&!��b(ɺ�����H�ɳk8������k`���78F���8���H���D!��>��j^����y�5�Q?v;��N9(/��I�p�
G,\{F�2ڶu�TرB~���Gcm(��n����Y��B����$Mb�T��8Qk�r��
$������/���y X+�Qf_K��*ۜJ���1��H��y�q�Sdr$WJ徤�Ӣ۷��f\��32
�ĉ�u�T+
�
Kb�4��������~_�!�X����Z�M���˗�Q���Q���Q�k�{����r�L�ܰ�� lLRP��kd��|"[�˧l��V8+�V�j٢,=��w?n�
�i�|��*$B�c������E�S���=R��+�c��f)L4ʣ�<��gu_���N��A���2z{�ʟ��^Q��f})��~G�ީ�g3�d9�{���k���fܯ���W�_�˃��յ� ��I����o�!�=�C˓��$=�O,F�������Ɗ���C�<��B:H���Ƿ�,��(��SO?����fw�'�����$!2j
*���Ą�ǎ��1���i=�k�Nu5�!Y1N�,N�_\`��9��<>������Yuk%��\�����x��p=�y�Y��:�s� �;���=������S�y��[��~E��"eD�9>�=wG"��A0�;6��{�&�ASxA�*�0�`�9��V��ҝpr���>��%	�ny]�@�����Ҭ�n]K��8�%��[�=�ib���a�Ww@�{ F�	�'~f7���=�1cj�YNx���7�ڎ�ɶ�6K�m��)O�y@�^o��"h��^�{��\-�.�=j�;��Z�����ߤ?M_�g��呢���A�������:��sSԹ~�%��J�\?�K[��^3�����|<LἢֆA�}�|Ե���/Ϩ2�ַ�zo����]�O��N�Yr-o�Ⳏ1a o[@pY��p�9�2��������秫��QH-��;���NQ�d�;�]�I
UfY���TRq�.nIt�Y�F�yͮ�Ġ7-ꈾ�>��6�v�,�'��B�E7�@]P�J��=;���Yn�`���~��X�lה/��a%�3��Y��B���}�g�9��J"7�ؔ:�V���	"���n|�K+�r��̢T����m�0�o{��\\P���'��:�e<9H�`�������
�!C�ă� t�)Ϻ��;����ґMG1%F�8㧒OF�3����;�-��n����U�R"ڎ�ݶ%�wV��1�c�L,ii0pQ#%�����ڛG�x�R	�y0���7O���nG)���p
��U��*��Fs�,�Gs.�Q��7J}QbC���XY��^�+ِ��-ȧ`���Kkb��|zs��/�믾���QijYěK�#8�N�ΡO�B�U@��i���LMai~� s���g�痰��4�lK�1$6�ҽBLČ�W\!1��K|}�$&����sN��FGq�Ļ+$6r�en���5�M%-��b��1C]vd�pԣ�qyltA(:�`?Y2x�+w���pbf���9�.˓m��`Ȏ��R�z��%�=6D'!�FB=KtHڈ�L:/^3X�*��nKAx��Hq<�fI	�-sl�!�I�
$��.Og���Ͼ�*�@�n�qԈߐ� �� 1�cW
�\�\m֩ZY�P��;I���Z;�ųid�W�椋���s�>�?e�O�4�9��ǵ;���(�̱W�k��I���f{
%���q��:u��ƒ(.�1D�KH��A���̙$���[��Y��m��$הL(���*	����i�˰I��9�����FR$�ط-2HU���e�lu�#1S�5ugB��:��j�Bܼ�-��}�Z�&���%�
C1�.�!�L����� n'�"�=�B��.R�L��_��1��lc�sY�����(�y�ҏ0�q�p̆�ܨ��{��1�\�3�.��G1��ɉ�9)a�Y&+p���l�U�D�v���xн�W�K�G��R�*X/\�#G}��W��F=�A�lUG
��� ���ﹽR�w+x~����a�3�BǬ�����P")���
�����~����[v���n��Kڹs'��GG,;Hz����`b�x�F��d qv�إ�(�OC�k�^Ȳ<����6�}�v���2�H��c�"���r��!7D�k;&p���8|�
�۳�`R}!K�s�cue.���r�X�� �I��]����$Aͮ�^�aR�muw�k��f`� б���5h��P�1zG�;&e�Fm��1�.Mt��.��7} �E/�G/o��p{྽��>�a��\��� P�� M�vZ�(�<`Cuq-3f�k9�fk��<;�G�hO>�����5��h��>�a{�ޮ�>��]JɄ>���V�9����ΆO>m��7E�����o%�ͮ���/��UR?�;xo?<�G�3|� ���<�.X�~)��zG�9����P>��)Lb�V�_�MA*L�����uI~�c~;}/���8�q:�J�q���r�J�ܺ���q�
�����;��av�P���g���c����"�/��4��,�k�n���z{�_��[r��^���{�<_���dҵ�u]nt��NW��ۦI�}�w|9�x�9��{*�+o!�ܣ���%x�®a1</���9�ۓ�����֡+]z�͆��s�;3�	���汾V%�J�֑X5�cSn�pay
�v��s��^�c�22�W�:�Ù��"I�&i��u��e��f*O[��.$�$�l���r��ҹ*���-�k��`tt��)��U\5;�NJE�~q��&��]��&�gO��oa��;��ҢC7	$O�0����z�����HV��[�֪�!�ɪeW�#���
Ы~��E\	�$��x�X��	<��U��j�&=H�<	%	m;�k����<�T?�kR��q�kzs���bUv�k�Dy7EA�洐��0
��:Sy�H�+a�l�+&����Ĩߋ[0	Z�I�1>n��ŁX���6��Nr,�<�m���Y��l+!���Z��b$>�$��)�Q�
Ɋ���+��~�i$3i��uΔR�\�xo<�ޙ8��Q׀���������|��N>�	�s(���_d�Мݍ���#�1nUI�݂���`a�jL�w �����3�b�$��+�l�;Ʊ�R"3̧B�eH6l֕�_Y-��ʓ�hi|���:iֵ�R�QZ�Av��I��M��I�W�9�I�-��J�ɦ�J�b~$���7��tԂS�;|��)��|w\�IJ0����xrc���!�`ĕ�M��	��-LL�a�\R��Q�d�m74&��:���!��$Ydk.�f��,p����8ffӸ��Vt�~ׇ߫���>�=�Ä�
ױ��wT;�zD�~�뇃]�K����o.���u�p�]0�+��
o���l]4+���'����c���m�٪��{E=�~�[8���f�bX����(]0\�p{�))��z���G�wԳ�l���ĥU<p������u�:$py ��~�xxn�ԥ��\	����ZI��b���#i�J<!<�o�޽zܳ�辳���$����-=�V
=	�&�FRL�`|w
���!"B��r��O�򔈥T2m��	O��X�D,fD[f痐)��U�t3y81�8a��ک��J��좠�%qƆ�(��k$�t��S_9Y�6ЙIb�h>	�'�]�)��A��@%�Bkkl�f��V&��
ex �����
u�Ύ�F������2�o��rwۃ�~�UV���m=��;�v�ȉQ��zD�x.�|��ԯ�r,�ۉ����Ҁ�vC|�Yfw��[��Xf}���u��lQ�7p��
ѳ��T�Ǟ���� P������Y@��p�xy��6��NJ�����k�y����\�U�~��z�Q׆�����	���	�p���ee�Y
�k�~���A��Yy�ʍZw���'�m����v�4�
����I�vَ����-0U&R�ޗѶ�\���y�v���z��5&?�w�m��?U	�
�X.c���n_�2��%N���́X_^��3�s|��N^�c/��Ѽ��Ff�k$�sM��.V��G���Z*�+�%�8��:��3�W��.�m[F�No�0�SWt����X�K�x�߇;v���$���^�R��7��8������k�E�`t�YCee�$D�&�H>�H��0ER��J��@�C���uӞ�4	xF�[to�^'`�+�P}���l^o[���PK9���J��
��f��9�G��Tku��y�[�VV���<�tF�jѝu�>z�e0�T��Ry›s<�X�<��H�|�h�kk�8:�����"�K���5�f�r���[i�S��JqW�Mq�C��IZ	�'�8�+-�s��YPo��$	Wc��l�T�q֑x1�i�j!.��'�rE�Y�H�Vql���ĵ
{�q�T�K����*	�Ʈ��O0��0��Gqra��:R�O��Bz�U�{$����"	��6�hǪȏ�8t��s
���c��Z��LG'R�{�5T�$��9u�5Bb�A���	���/�tZ��K5�H�M�̐�Z&�d�{	�SZ�be��D�DI�j�}S瘫��ƪ�UZj��O���4�X��3̋�	�<� ��P6�Z(UJ�X��Z��
	�٩�����*�c��HH_���`FYT%8�/�ib}��K@��8E��Q���=|o��Ͱ�A�����Ai�uMT����t�p}�ǚ$�;M��P��qdS�E���s���%�u5�G��*\epc/+��w���Z�R33#��~K�r��VK��X�ưY_�{>�H��voU���K���5�ȍ~����~���A�?#�L���Yڊ�u��E(l�Ovx�]����$;$y�Jv�!?ĥ�gձi���[+��q�#>ĥ�%���ٳgյU���m�;ɺ�ن��8��_�j���r,�����IIm�=��r���&�~���?����,?N��y�j��v�|łC|o�`����ӆ�s��T�����s�dK��"�Iwo��n�QQ@b�\�����O�Q���z��VG
rN}}��-���y��Y�@�$�i!�;޾MˏB��/�+KƇ���-H�Ң�?ш��\6�����˻��>O�=������b��m�W��n�Ӣ׺�p�]a�^��EK�\.�cz�����n�]���S�=�~fǁ!W���	F��4�da�T1j��=�@l���A�V�(�y3a7
��LH
�Q��P7;Վ���췘�[��'$^2�lR���~y��s��
�AJH�<��q���lL�υˌZӂ�F�qs�|;m�M��n[�- ݲ��;5�ٍ�ɱĢ&����L]ܮu��P)Ht����h����e����t[�Ϟ�a�W��OS?���$Bv���ra�z��kX$I�G��WN+(����qM|�WZ%4D�m��f;�0����z��c���={�?��L@��<��ғ�$>$:Q�0D�٪�^��/>���&�P�,H�-4�n��W���O��Wq��k����Aߩ,	�d/��I�����)\X[%�����K�ϹP�C�g����[��X`�%Z#v�����4eXC��[8{n^��B&�wb�W�\D��줏��^3[�4�o��Av�0�Y�k_g
�]�Lj���L]YIt�L��iC�E!$����k!�%�0�D<���펍f��oK����G�HҤ�N���;�R�_�D˫��M���ik�dL˖�KB�ɦM!�dSZ��HJ�!`���Q�G�l��I:�z����,�yn���U$H6
��01����W��<�a������R��Cg�
$�ϱ�u�䑌����Z]F�Ns�J�4V-ue8�X�Pa�FBxU�‰e8�3g�z��B�ϔd�rE���!$��JQI�R�N2��{ٟ�I�u�{\-jĵ�X`�H��1��Mpqik2�#!"�Q��$��>rl�}��{,�A��Q��T�
0N��A.?���:J�
��X����a�c�QwC�%H�4�͏��ebɣ�Nr������_
�ޛĒ�ׅ��S�(ݥ_9����~1��5H��IT��u.S)�������p��2��)��9�!��ϟî]{�����sH��>}��I��w���|�WP�M�#�l��^-V���)�c���ܹ�CWĩ��<�4�8w�;yS��������C���=�(=3܇[�'�t��k���.܎�<��c�e�ߥ�a��OֽM��~�D=����|�cq?Àe�ZuDU�#?\?x�\ߢÏ�Ṳ�@L�u�Xy���Ū��]?��޽&X�\+V�X�NOO���X�zr�<�&�!�b�*��˫��|�_�p����ض��V|5�w��x>�܎1uW�Cb�.�;
.�P&U��&�1����p�Ls!Ć��<&�5u@O)5���v�	²6�5&�5z�{�r+rҊ�.-j���.��缬���&�j/?��Nz#iы'a�l\�tI�
N���=WR�K1�������D`؅&��
Q�Py�X�q�z�p0�gf�5�^����R�~ɽ�W��o��]����
c!b{�mu;�(���߫����Oq0~M}�ï�Yd���66�6j~�w�>�g�{���̈́���Q@�_v���K����m�ܼY_D	������Zo�)7|l�0n�V�uߠ��Q�m���w�����[I6�4Z��9X߅�1�6QT��D�)y�<�[�	Ũu,�3��Y����m��(���[�g1W6��[+Wۢ�T�ur0�S��v�zjS/,����2������0 ;ܛ$N���t>����:������ 9������k$l�FItL|�ST	��13>�4Gv6�A�!��^���b�-q�GG���X^�C�sh�0x��7q�[E�D�E����X x|be�x���*����	;�1��b��9,�!iQ�������j�q̏�!��tӞ�`�X]x]%�l'�F�z����P}B@j��Q7DOV��qw��<�%F��*�$�YQ���"�3�u���n�`6n�7��[�~�نߞ�[ҫ�c�<k���:��jb"�>g��
b:V�mwULj�-���ɱ�H�;0�ro�Xi��61��4Z���U�X✢V���}մ4���	����N��$6r�p~A]ku�O\�W�[(��0:�'!G��Du��\��������ülAp�셋�e�6.r\�J��܆�Ļ�J�8���$78F�N�d��%��lϗI�dH��̛��������K�ftH�9�D�"��QK	�z���a$���?>=�j��kK��X*�V�"��R���T�#ˊ��(�����-���lo&g��j����V��Li
���P�K5�o��e�,�1����&h�KM}�M��^�ĐeW�j59��K܏���F�:��\o�*R��mE�^�{3�0�T���m���?6(E����(��ׁd|�8���uL�,e5;�'�q�c���Gp��7�j���1?{�,�L`zv
gϜ�T }��^W]u��Q%QZZ[��+��ͣ���=%X_?�Ν=�����,fv� Ϲ932f6��>�������٭�eQ�'j\���~����Vt�ൃ�~���}��u���Ac"xO?=<Xv��`��_1ϲÕ$4.�3����K��#6�Ibyȧ�~�g�yF��f���J�-F$���~��$?$�e�Y_Hߵ�W7�o9����v1�]XYрm
�Pw��0^�0+;N���Wִ�4��k����+RPlpa�<��\���P1�]�p���"�X�R9:jo�q��\�_� �ƅ��̛���I�&
�خ��S�V�������v���{�O�;5�q�Vg�*����5�����/�r��I�=�{cona�4����o��
�>� ��q�;h���kL��U/����C�s�H�Ŷ����1c
ײ|�@�t�ZĴ���w��2M��F���X��w~�Bv�ʁ,ӆH�=�EK��F��2�eQ���rՔU��
�"�wc	� �1>��P�k*L�eS,W%QP�mΙ��@��"�ϝnpRW��ɸ䧫G[�B����wy���?x�D�w}���F�z�:�]�~�ޕ�q�$���}޹n���p}�y��υ\�L���~ߐG _�:�>�6E]g�@wC���si��y��k�1����w�}Qm�ky��6�'X��nx��>���'��ޜ,oC}܍�fó����m������s�q۫o07P��sv�c};m�����d��#�Pۭ�?��/q,yq�/@��㽇rgGw���
l���X_�ay/���{��#�^ى?�~�w~�/���ˀ1��\���m�6_&�cm,�4�z~0t���y;ݘR����`�R�F���r�����N勒O�#[�c�D�k{}�G�����I'����qj�l\O�Պi�.3u���UKE�.����%������ZK��;Z?����|�!|�+_�
�N���-��Tka�H��EYu��&�M��Rƞs�Kx�0�r��*��L�A��@>�@.W}U<�����X�~h��j%a�D��pX(�M��wfV1�,/za�����X*�P䵱��pˤQ��[ZY�ˏ?�3o������hQn��L������:�)�r��y�u������ʭʍ:uX�"|=��~K�! �vq��"�l��
H,:���p?��y�a�y�&qN�-#��f����NL70
q�^�`���X�HPry���q,���Fg�y�K� u�i����`k�~�n�;e�nq�$���15#d��_*��m���&�K���{��,b��}�Vɸ��������Ư'��`�)%@�y�D�E"���uΆ��J#�l�	�F�d�Ҋ�2C���=�����B���ͤ1M�s6�KoU�g��;���s���v�ۮ	�y��J���?t�sdZ�:��22$WR	�$VJ�
�<�6?��A&�&Q�(1Q��e߃f��ڊ���E�2%y^��\_@��D� n�Vx�E~Hb,[Y��|Ǝ���k����"q�hV�hU�����e�)���(�(��
��X+u���IL�Y�cy�m��Umo��`,!$IR��a(���7l���O����6��6*�6֖����n��'�e,AnF6�ǂׇ��ۨ���«����uQ@�����͈�p=�6X����b�qc�#y!�cc���I�*��D�85�lVw�Hl���Y���;:2�HqΫ����4�k�;��F���Hp�I��}vv2��0:���j�G�T3��۷/�wԹADC�g���l6O�{ƃH�(�c�q9��;a��K�~��3��>�zaL���=��ߵ�cx�W>��+?x�����Y
]� �ᦍ�&+������II��J�r���$~�ۏ�~q��#/��/�����fg��I$LMNb��C6�Q3�W_{MA�}���pX�մ3Gx_q}]�Y=��Kd�4��O�O��	���̳���4�v��Eڇ,-���(.^����8�x�-���ك��s,�1Rم�c�%#^|�e����ꫮVsޕ�UNDi�?w{���8����r�E����Q���
r�<�$U�lÉ'��Z^^�}c�P@,WJ8x�
u�q �}��2���d1��5i�F7|o��ܫ��O�Y�9�>�R��G��$�C�,�N�6h�a�x���z��
�6�v8Vg
4ո������ۀ�n�����^پ�JW(�|Y�	C���ք3�g5d"�x����+�qm���-%&� h�i)P�H����-�G��vȮ*��G$qf|r��j�u��Jhy��l��4y�W�f ��݂�E��w�N_�����G��;��;� 8�l�u�w�q{�w�K��+��X�·��K�x�2ٶ�_B�u�A}��K��yju�����,����ƺ��Z>��%���W���'�n�
t[��ݵd�d�B�p����)��>�����AP�����׼[Xֶ�v�4�Ph�Q�M�I�B-f$��#��c6ر޼�S�^c;�e�����:vG�	�wEF���⹶c���he܄l��:O9�(��d~;YA�,�Q��!>�%ޝ0T�;�()O�:E|��$x���	_N0�61dg�3r©�/ � �V�~������'�FL���G��G�7	&��/�n,�B-��Y�eȒ6�)����|R��sM��A�Ȋj=-2d��sxi���y����C(��g�f)B�8�(Nز�(�
R�����IyT�d�����;q�uB�j�1�9�'�S�k��LS�!4�稳�y]c�j�ݒ$_;�J��B��<~�,>|�$%l
��J�
�;����Z�;"��ӭ:V$��3�k�f�G&3
�^�p~�AR�F���S���Pk�Qe�V�v��͚��~�!����@�}�R���5�O�.Iѽ�s�%(t������P���d���Ks�$A����v�lck(o���'}L]�Œ)�,�nF�+Y"��j��Q���{�@"�V�lF�3Ĉ�.����t�(��	a����k�0:�U끶[&6�(�+�n �!qG��y���IΙ�
��h�<ju�J"�B|���<�
���J5����='�+X^\G��y+>�ť:2y�)$�d=!�Pk	�Ir�^b?Ȧ�R|���m,�U5�p+��π��z��|;���nd\��FR���[ZÉ3��f5FJ����)����N.�X\�X�"s1����c\o�P=�f��ќC�%�Vu��/�o
�1���?��b��B�8���H��1�O:��b6��|c�I�ɔ�=�q���14��r��0��Nc�Y�{VƢ�.�ĥV�W�����'��ek|�r�q�4Z����ޭ7Zb9#�%2�$�{a�o8�`�V�X������}�@BQ�T0R��{���&};�w?NA��~��Gr��;|<�;܎(�B� Wx��~y��L��Q�h�T�;fյ݈���[^]��]���W!:\�lSc:lje���ު@Bݡ�T.�1�{]�������5�_�*�;�S�)��H�����mԾA)
��g��f�"���
��wR
�-l�E4E�ᱽ����W^T��zH�����5~�,�?�~�Ϡ;+)_��wWb"��{�V���l~��p��?����J�YɁ��y|��2���v��WY�3$V�\���v(�/ā����A�����E��;��7���	��S(�V�\4)��T��h7��515;�յUԚ�x�՗8yԱ���!)�F��8y&C�.�A؞}�9NPI�y�v(��مG�|B���*:��%:t��U�W���7�]wݥ�+�랓�ӧp�=������2v��M��u5
�O<�8v�ى��k��&1�!�"�VQ�(2��9��.@�&�p��b{4��j�R��r��Ps�6��^����w+��y�8�LSOS��]o�@9�[s��ž�'?/+�#���혶�[-�:*�KYBʝ�so�
�H�e,n�3d���g{��\�5�ps���Gn�3���
�����q�>~��=����zđ�.�L�]Yb���.��(�[�	
�$ǷS���r�-�a ���#�|_R�/\*�m�W�xw�s|��'36̯�~�`�.}�^zM�<�xM8��g�o.�zyn<gf'X�7���n����^3�k���9�����P~�6|��w�rdý����o%��v�/7�Ed�Yã�<����7��{�O�x�?@g��8|/��^�.�.��o�!��A�D�ΡU<���1����=�
�E�z�X�]��b%MY�����X������F	��ƒ��(��oWP�
���w������/��ŋ�S�)߉���B}m��(�\��c�i�౱YX�S�&�������{�ӟB31F�g�������-��$v�
�l|��	ʼO`.}'�{�JxE����ݲ��̟����qp6�7N-���9?���p��Bzue��8��W0_Mb~q�Fc
*=�2j�
����
���~�
�&^>�����s/=�|��<�s��x}���Ƈ�*��_��w7�1��5�u����Np�v�N[LwB6r
���#�dȤթ?�I
�˦4�ǹ��Q%ט!(~�HM{'��Jl�Z.�CC�?I$�_���'O)c�w���P�Z����\;���7_>��;wb����SohH~����j��q��QEWp	�����pa~�ʺ�p�!�ML����gj+�� P/m�J��Bl�;�y��;
H�<��fۄX/Ԝ���X_�QrW)[%J�W��b��OE��C�Q\���vY��5�ľ<-��DOnS�Kl�E�dC_��G���6�F�ȤD��\��-�4N�ϭ��P*G��hR?k4��؈�/8��W��	��O�$Q���[+��&�2u����L�Ϗ�` �y�:�z"�v�'N�_�$K��u��	�+�Rk%q&zc�z���,7P\�`41���Y6�ɜ�2�{2È����Ţ>˛�X��Λ���
7��g���:��$+��!�L�b�8��*��Z$�Xv���.^��2���b$7`��?�զ>׶�P�N���b?�Ո�����T�
׆��*�����L ���$����g�3�F��qF^����1b3|1���\KK%�M#u�NR��[���:�h�J�c�e<"�]�8!2�.���l�����b���\�۰��l��(�(Lu���޳�y��V��X��ٌ�	���'�y
J[���$�K��!���Xq����Ov���CI�jb��,IBˋ�Z�:"�/a
i~�B�/�y���G'0*òq���$�5&�W/?z��Q}ԯ����mT���T�G��qE
�R�_�4��F�Q��V�������`��[����JR0fG���k���cx�I,>$�����)1<ĵ���Bzx����Ѐ��J�r��عs����[�P�	B.NS�ػs�t�FF�o�~L���g�
V<�PwWbE15=Mb`7�f����\�G���iah���"�؉�:$3\}��8r��&�4&�:�B��g������3=3����,+΅��oR�s��waieE--���,���Ҕ
D�?��O�Մ����D,���v�ځ���h0/YtGLJ!1��Y���
=Y*�/���@���õW_c,d�\��GR'���5h��AxB�� N����Cuz��@��QѺ�{�R�~���;�E�=��� ��	L��jpS�j����UH�����0u��s���Ņ�iR��Rh+�Hpb��S�*�-*~ȮN���%ł#)n������`3~�%���'��d'�C��5U�E�s�Ř�zcE�I(�9��m�]���*߃��q�/���u��e�=��`Q���vC���W�����k�����	��t�ʡ�^���Nl��^܁�E�sT�m�k�?s��>v����y�G���=���0�x.���|7<�]+9�Kz��8ܦn�8���{�^^�:cc��+z�,N�i;m%u�?�wމ[o��?�5�Ի������p���k�4N�_�Jq��M7݊[o��?��}��Գ�sa�(XU�#;p�wczlҋ/�{�߅�k��ҫ
�	z�!��͸��Ob*~_�M�j}�ՇQMN���o��k��W}��vn���x��/�מ�:�ӛo��`���U����S���冋�ŋx��ۮğ?�~�?���O��_��X�&�wɆ��
'�~����|����{��$;\�V�b�N�z�(VO�>�����…�*��C#;���>�����h��c�Uw���(8��K�D%1�kHv���xr�v��Ĺ%�=�*>���B�`��Y�5����*�؋+\��;g�&|���'�>���L�5F�%����UGv����vz;I�8׶=�jՖ��v��������	ܰc�Y�u�M�U�cO�D��QwOg�$0)s��&��R$�&'i�%�Y�c3�s�4�P%X<K"�&�W� �)-ɐ\�����/�?=�et[c�X� ��J	M�7�c;�ϗ�Ʋ��Dg��v1 n[�0�3A�NOYK-����B���I/~&���xa��"K��y��J�1nvc]�F7sI=%��8	�<ue�]��ꐺ9˲�M4�K;_w�F�T�q,����u�[
/������#	��?N=^�W������W���	�� i���X'$�R
�CI	F~ay	bhOe5&���5��n��Z�%��A6\�uH
�Ѭ�(.�P'?B�3A;���J�9�W`9I�a�aam��r�c�]�g�x�(UKjY��R���Ę�X+jm'ϩQ��D�u�3���r|�v�~�>{GO/��/�W��#נ�{v�����*��XȤ%hx
gO�NBM�|�83�Qփ��:�2��c�ތ�B0��71� $
P�5�b��5C@���A1��7+�M���&§%SB�4��#Ob�ٰ��V�Bt�J����ub@)�%>D2*Kbrb4EB�ΰ�Ͼ$�l��yƭ��)	���{�a��rR(U��}�<]��z����2�A����wݭ�Q�D����;xo����*;
ެ�~��3�^כ+u���5g���Y]�Y�K�K�AV�:�yj�|��&N���7y��^@Y+�3E���3Ю�>�
ɱ�.c+�n���=��7������qл�v���f��f����k�>)1:~��^���CK���!���~�
I�C,<����Z.��<wV��,��U�!=$���~�C�\I����BzH�r��Cҷ�\]5�p���.���Έ*iã��.���1��*bxxx���z��wT��C�T(�`Y�
Q�Ip��%��>|X˺�}Q�V5�p�6�;.��j*�3�~M�|@�_��Z�4�ޫs�M�_�s���) Ƶ
��+���s,G�KP.�e'B��3z|J��ٽ�$st�(�'��00T(`���j���]}�O�ËU+��A��V^��I޼��]�}�[!��)�խ{��^D��T����������o�wx�뒝��p˫�O�</Ɔm�ڎ^��~�o�	�ϦmXc��X
���i�:Â_��I�k�Ջ�n�voY���<��'��1FMٶ�<����{[�v��NQ@��?j��J������dw�	����ou_Ʒ���Y���[����n�'ZY0�uԮ�n�^��1_�E�Ͻߡk��moC`�
L!�e������Ʋ���p��͉�b�ic�4��
F���p�K�yG�����K��E|��=W^���I�kod/�VO<�
���>�����8K��o|�S�0LYub��x�_���Y$��=�ށ��~���p�m�M���7�?�j����Z��	A�Jf�Y��w��-��'��Z����<�|�k��z����3�;�u-��p��~����[0�j�.dU�%Ɔ������g	���翎T'�}��"�c)%��;��H�ܥ�“�;��T4�$A�#W�������
��m��+�bdt?I���ȽRE?���PL�vq� ��m
���gؾi�K���Bo��>��羀�=��'H�V�h⛈4�w_��q)�{��nnR�/��6߱���4��P'#�ۮ�T�Q���i��5݈'��S	���/-"��0
���t���Ŏ�Y��S���Lfo�;�;�\�|��v��v�DA<Iy\v��D H�h5P��]޽�y[88=�F<K�$�o=���o���R��� �k'2|�2�ޢ�w*IңIY��Jy��!#��&�!n�,��>�muCى[�2ߚ16�M��s4N�Bu�q���N���l �M��g�؀�)��Vܵ���n'a����.�J�Օ�D�=$N�]bY��&�&7.�O�ǻ~,�-,�o(R7��$cQo/���@>UP�[�VK,M!�邂�)���Zb�H���zc�CF�7zM���	ت��>�X)b�K��s�8^z��JI\�ql�t�?Iz���̸�
%MbJ"I�t	CA�����k!�'1��bi!��mg\�HB�.c���3"�F�cɳ��gItp��i�̫E�k��Y n����	�"n�Z1I��%��{��*F�,���ӆ��<I3Y'j�KRH����j�ϑc*G\E�Y]^�X&33��9,���7I�$�)d

�+M���B��g�;�5�Z�.úIܐ2�c�7?ux���pV�^%\8����l�e�j%#n��P��Q\�k�Ŧn:�OƟ����!ukA\R�E�������� �֗�úa��Q��M�3|>|o��ØUP'؊N��1܆pY���'�z��M��w�WS�$�q��댁�t�E/ƪ������9u=HD2�*�t�u�LYA]*\�`��}զo���ֹ/=U�A�G�w��~'�����o�w?�^z�������
��~�IAwV���ȕ��+�+!>|�C�|
�!��J�����£^�[���/���ߋ��E���ݫl����C����
��N�5�YG�R	�+Ž�����zJ��B&�;>G�ЩN���v����۞y���)!&;:�1eʑ]ٜ*\�rpGFM`6�ˏ�L~�n�X�n\�!�+�g�X
dˮ��ӳfW�H���0��G�955�b�e&�@�Hw�dͮ��W��,.�I��>���`B�Cú���D�7IE-Q�l6 M�~�z���i�Y����|� <����RK���/��� �z���;�m�ջ7�r�b��v�u����/�&|�O��LZ���&ˤ
��~��|�EA
qS%�A���5�B��naȌ�v��Jx@wE�v�z�)�.�qUĶ]�\�)��L��<�6��|_���	�K��楨�l��C���F:Q}ӧΡ;�@��X���[p�B�.xo��n�76u�8��˽�?���ĥU�J���������k���K��[+��5@��)���F+pkp�v��6��Aw;}g�(�'�>�fa�<�'nx�˛
J��=��_[��^�d�Ә$Qp�'�TO��#��ⓟ�P_�{n���'�c��	�{w�aĚ���/~7��O�lϾ���O�]���gaUzk���3��q`�J<��3����S����+�Ο��7}D*������Csx���b��I��v�u�}�׿���b��2���vv����A������y ��|��Dh#��i�0>9��_|
�(J�ǐ�#�#A�c���b��r|7��?��/�wߋi�v<��c���8�Gvjn묺�!�E��~?�G�bv;w�`l݅L�<�&?�6��o��p���FgeMU|;F�mam�D���	��VOai�������ӷ���B�!*Jt091�N����i
�\i�:و֠�|���9��P�k)�t₾k#C��A'�����V�(L^$��rhTJ�MbD�c;�Þ+&!��Km��9/1�?x�
�7	tM!A�:٩1���$H���$_W�
Q)�Am�#G�#�-�u&��F�e����e�1%ER@8F�4��P�i��-z��YJ�K"@�q7U'@�l44��L$��W���A]4d�V��.�d�s�^�5Z6��\�@
hD�=�����%����(�&8�k��x ��Nmu�T�Yߡ�E0���.�x�dYŭ�e'��6u3���D[cl4�$����I<dIx�ߪ�6z�de�B2�X@b
��w�$I�J��4����<�J��2��sJ�%8W�5>i>�d�O��Z�6=o1u���qH�͎Na��=(]2$>��(�S�f�G�Ei�4NϷ�*�ɥq����:�G�4��K�ZI�m��%��mJ\@���6�kE�پ�H
CCI��2be����4�ٸ�um���R�ܩE�I>��|.��t�X�(�!M�K,�bٸ����*����A�LC�l��HC0������[IJb(�#������G�c\�g�L�pm�Mq+�=Z��4*$3�m�U��Y�r�G�u�`�����h���<T���5Q�q?����7�|?쪟{�A�	���{�m�J�=ˁ�w����w:+�^�Q:��Gj8�N,��>��7���>�j$�9ow��7���QmE��=�~w��~z{T��g�1m��d�ƭ����;��U)<n���m�����A����.�&;�x�$n���Ë�!h�$��K��Ǐ�^�r
Z.䇐��k}+?������,;�Xz�䰅��C�|v<��6��$1
��B0Y�b�NxqM�`��CC�n�p<p�m�$�v̐^<	q�%d����J����B4�E��pQ�]1����L6B>�+�YT�\q���]ff�qU(��.�d�A-ǘY2����{��H�����)��T:r�����_?<�G-`��&�A�I?���-�h����:&(0�m]�O�
�F`�|�f�7/_����f���8I���V��A�໿Rn][�K�Q�Ro�G���y���5�����n=�t�6��G���<c�(���|B���X�[4c��$�_���YX*#F8��ey�@m������'Quܶ���w��N��|g}�qЂ�o�Q�9tm�3\�sԥ�
@#��q�	1����?H|;ǂ��U뮠�B��� Q�q�
�F��B�<׍�����I�g���F��G#,kP��W�O-o��/82�lT#�},�
���t;]�Iİ�W߃׾�e���8|���T	P��G���������밳#��o�����+���w�nWqõ������8OMᕷ^$��~��fcGr7�Py��G1;>�]nZ]`�����T��'�~S�Ǯ�!��3{n���<��C��p��ıcG���5\�	�M���7p�D��O�؃ғ����Ž�n"�����C`'5����������ǎٽ�kP\��;�.<��˸�m�+����<D@h?�?�ǐ����	4�C"���Q��д���O���>z����C�-;��	"�G.9�����󯿊��*����?�wx�8��|���-���9>����Ǿ��\A`O��w���y��ET�<��v�vR*�B�$ú��v;��Q\^���gQ�.ӨV1�Ϫ��JK8�,r��W�#2\��p����;��H�~�<l�

s$�Dh5I�����	؎�b��ĩ)7��n����̜�BFpB�w8�I� �qO�Y��c|?2�y�I��$p�7���T�n�Hxd��rU�6�B\j�m%i�'8F��� `&���^@�mt6�-K�!ٔ��&1��(�jX/�Hdt׾�Ɋ�޵zCI�� ���*�4�Sq��VivwS����|i
�>��[���|Qt|	ZN�^+����&� �ܳ�Z1�bi�.M[jW�a�sٜ�'v�6�c#ML��Pd�N�rQ�J�9H��H���O醐*�O����q@�]wZ$&�lc�e�b	F'�8m�� �8�9Of�c�ZwI���l�@r���N�:�T!�9��f���Wp�j�0vN��i2�a�2	%bR�:�5�[�d�C��}�f��׫Xo�UK��n���P\-c�d���Z%<���q�+�P8�u.U*�凔K�������m�l.�1�$��
���,�UtM����3n����pH4���j����d��G�c���Na$�qP$�|��@B�QG��%X.�@�)�Hȳis�:Ꚍ���+1�/�1�;���2I:Y�6K�ʶ;��eȨw"����&�F�i�0�ADB�<7l�.��9\�~ o?}/�����w�>�Ѳ?�G��0���뗺Z�{)�=�>I������pP�қ}\�_]��'XV���ڹY�E���T���w3
jW�gu��5��Q�mVv��⁌\/`�R~+	��J~x�Շj��#bձ�f~�r!=�k������xt�	V�s�NK,:$�������;����.���jy>A
� �($x�`*T�Ii��~*i��x�&օό*)Aж�Q���!=t�q�?<)3.;[,�"�W~��]К� W;��l�y  �M	Nv���I1�*�_��Y�F ���x�M��V��Qx���Qiq59ENr��|�ox��;��|"�;~I�����m��ٵ��X4z}8@�\�6�{��6J	���^V����ңP�.�b�6�޾%K��}WS�c�x�������� ��+�l��|9�/fAs��_YhŴ��Z��5�4(��֋=��/���N�&�	�{�Jd?�3�o�Y=k�`���j�����&o<o�GzӃ�^l���>Ċu�uJ�~˻�9�^r���9'(�ȱ��r0Y�O�X�<�p9���������=����
��u�ܵqm�Nn`.
�w�
��@��qѫ�d���n���$��{��ot�[�?����`r��O�F�hD���O�e;*_�E�8�&��fP�#�q��.��C�v���7��X��<|�E�m{c7���+�o�PG���x�V�x�#ع�J�$b���F�Xa�wj�v
,Ֆ�7�|��u�:�c	�]��f�3���N��=��K�X`�|�Tكܵ��5042�]��#m�s��
�v笸�azz"�Ty�-�/֢r-�n��c��\@��n��-�c�cN�x����'}���,d�d�u��YH���z���W�;l�T��݄��<Zm���-���Z�����n>�����=��˸X,�}�b�ZF����(alH-wx�:�)�b-ܲ� b�ad���g.�����0�6qߎi�ۧ^óo�Ï��3��xf�J �V��U���1���k6ⵛ�9@v�����c(�~���Ȑ#i?�����X�X)ꬎ��il����a�q8|a:�W,����V ��N�zq��7����5b�LɆAV��mt�M��IOu_o�|�tWA�V�I,¡T��{�$�����R=D����Z��$�7ϔH
i���q�e�?�`���D�$�!�bյ�T�X�'kH�F�ܸ��{|b�#y��9

��^)j<N!�J�:��Z$i�&!+�*�M��$):�C�u�H�$I>�
��I$���H*̍��Y�/r��ϊ���'����4ʕ$���Vuuլ6��i��u�G|�)8�6&��xW6��$@>x�՜�I.d3X#i�'��ѓ$�2锺+�xE���Ӝߓ-��`�΄>��Ŗ>oET�˨4�Hs-�լ0<�:��`=��:��zG���#bYym��
�B(��F���U��D\J�JjB�%��X�԰Vt�G�-C}v�}��G����$+��Ʀl�_"�XN I2(ok�V�:2<�N��0ߕ��$d2�I�$$�H��G�hr����U��mXM,ap�ːa�6JS�%�¥��A�� �2���A��뱒����M��������.�o�v�����w/���	���yP~��?�����͞ߠ��:��c[��A��{!
z���,�{��D��gpD=�`��Q�?&�;$][�� �Bv�.��$V�[+?h����*�ߥ���*�<�C�$��|zzZ?��R	�xڎ�} �.x�sk�j�i����'�1+A@v��������4<�
�B<�;mݝ`��Aw��U��$�,��J�H�����ňX_�!y���Z�f�z["vĺVr�1�qTpNx��\�z�'#��d`t��a��O����)��Aↅ^0Zˉ|��Q��]7��%��:Ob�%���>(g�@���,�v�ABsBoWu�P0�f��E��kV�%V׵�zY�c�t���h��R����|g���!<h�@K
ϕ(QW_���p�����k�#P���{���G��.����v��S�b����~T����^���*P�K��W�̈́�~u1 ���wA����Ed]z}/��;{��{i����|c�<2!��=�@�9|�m���3\�\����
$˥}��m���-�>G/_��Y��a�?�fI��`�tO�ys�9�w��]�J���>I`�H���6�q6`�yx�o���F���(�	�JH+�V�w���|������TUOM��=sWB����}��tW��S�_�9&L`�Q]ߧ\�
�I�x�!X��o��H6�k���6`N�i�;F|sz���d�1�?pK	�ʉdH_����J��|;�rb2'���<q`�z�e�$
A-�l���.M0�5�9��L�@WP����ڜ �Lt?W�hѸ�X��>Lt�ĆtN�м}��:�1�7� ��W��F��bm�DwP�Fb3P�кQ(~G���l,@��Fu���B a�H1�5=��L]!4�@��1��P�� P;p�n0Od,cy�����hR�Z�*��
[��<)~1�,.�գ��	�:yZg@ug�����5�
���9�k��Ԅ��:ub�6�uZ�Z������[��~���,�}	 O�l҉vDe�'�e����'N�1R��MW|��_�ʗҫo������:NM1�r�M'����y��3����r����j3bN�
k�R�ߌR� Dd��f�_�O��%�؁^�)�m;��e䑵�XM�
� t�*�2��
��Bx�(�o�B��X�e D�#�X�p�b�A)�g��t��z��Eտ\��k8�y1Y���x��T���v�� :07A=�A܄.�2�v�sۯ�<׳�n��p_�Ct99L��p"^�ɰB͝&�?�|Wƿ���00�V��3	��Y��}�1	n�z�A�j�ۉ熠�$�Ti=l�z�	���N��S�f&s�a�&צ���4��ѣ�Ϧ������Z���MiWa0�}hz��gf��WÒX�(������?cB���
���1����H�R��'�D��cލ\����/,���� 1r��4���W� ��>�=� ����:L8�%&�b��ɡ���S�[�m+!5���
LhŴr�E��i&5zL��e��y�ļ;]�o�N�!qn�N >T���+&[��Ж��[�@�J��i��!��9i��x.�m��ɴu_`�v?
\���_wm�޳�>�8>�vھ4|�j�o\�!kM�k������O�F+���[n�wZ�Yײ�г�/W:_����=2�{�n;��eb/N9���4�����}���ᚶ�����'��p|x��R����$/Cv���:�!5��/��8���h6���&MLN�R7��睝]*A�(y2+��P}��g��(�D���.�I�x���eqi����pf���Cu9b�K+�+t����eR�MU���s1��,�vw�ڹ���[n��X4�}�iz��G�_����
$�7��wXi�yrs󴹹IE.36�ϳR1�Jr�sDH[���5�D�>P.mp�M^E�ӏAe�D	��� ٯ�*+�Ϗ�0�Zd��^�$���"=,�!pE�3���t�"0�����$�$?G�N�
2n;j��r
$!�*T�Cu�C��6��?&��8D��g�q��,�f<Hw,�,@V=�@�Eq�5���,���S����?M�+��W)��R뙦h����ʱ�`?�~g(	��ݗ�'���;90%�� V;��8����:S��H���p�9��U.uԜ�W��\��9�ƹ� �v2�z'R����X�UL��LR���g�P��X�j��q9��^���j��
/�!�c�]OJ��>�cP�͒��묀J���9��~�)LJ�c�}S0a��%��:�dH�rH��d M��_��D��l�jdt� �_7�]f����9�Ua=G�@CV>c�c,_�l��Q���N�vx
��Ip�<Y`@�V���E��w��ZY[�NcJ�K>��A��� ��o:4OG�Z���u�@aҢZ+Sܜ�-�{�Ӥc����t��i��>t���5�b��݅ɞ1��k����c�z�f-�ԁ9:x� 'b1�|yu���y�+���������e���.�������q�����pO�uQN�nwZrФX̉�)Y'�����
��j��������z>T'�@r`����|Q6F펜�q��w��VGٛ"�s�O���a�nac�D;�Ă�e��fG��R-ѥ���im�N�Z�˳��?C� "<���;;q_���+�H�G�f�� }'!*�q�e& z��qc�p�I��۴0���A�I�CLZm���K�Sߣ��-�RgRiok����.������]]�d��D�gRu�	���U{�e&v��`���Y��CEJmn��
e����-�og/]�<�tqy�&��\��`�`s��#19P�~�Ek¬���cq�F&~�kczz�6v�������h��x�_��.T��al&l'�ՉI<�6�Y�U��/����2�<�D$��FL|T�R�8���w�۴6]�.�a�F��nɳ�)�]&G���8���2�155��2GL|�d3@[�<7z+����ak�aaܴ�i �}b�w�N˾�6�=�i�����up�
?s��V?7m_����-K�f��}��5��+��W_9��fz�F������r^�b��i�/�	�E��Ҵ��=K7=6�w#�S���&?, 9j�dGl�Y����)|�a�۾;@z�2�&E¥��ؐ<H�I+s�����f�E�k�����33rb������:v���%/�s���shm}��Ʒ}����GE�9}�Fi0�\^Y���E:�����
���O���.Zg�bζ������I���MLԘ�8��Yy(҉�%٭�Y�#��8�0�ri�*}�ӟfŬM�O��	�e��UQx^��{�@:����	uJ&�C�����:Ay�$m���P�ס��3�g>��h��g*�>>�w���.��
B�N�b`9�>�f�ʼn猄�З��ۆ��~�H�]٧�bd�~�ر����u�)Q��G,�J�\�S�5h%KyQ�Cm�6�Y�:>�`�����2�کS�?�!���S���H�A'F�qW����f,׽�&C�t-��-ɻ�zo�b�'�q�}����;0^�~3-=ߢپ�/w�H�}�X ^�M}�36ﰛ龼�"W@��)M0�LA�'�þ9J�?��6��w zB��+K`�A�#�8EBfT5����c�WH=IGa��8�̬���"���/�!	��Y�d�Kc�X�L�z6v�o�ZP|T0�[,Y�hj�J��8��x�.�-Q��� k����y�j������[��c�:U4ũ�b���M�n��.�yZ.�֭�h��!����{_c�~����(.�..�+t�ׯ8�q���T��m��T=�@[�g	ơv��c���b��JM��cH���Q��������S�)NZ��Leu;B�b� N*�����H2���C�	��`B�?��lV�	�
^kc-]�|f`��ݝ�]Χ��v2��<A,�$�E�\`6�
�.(k$(����S�"��/0T(�I�8�P(�,�>�dUc����O�G�V׶����դ�F�V���8 ���]&��e�*�8�����y�+�b�
&��T�0��Yj���\���M2�qB�{{����2��Qp�=A��M[͆�@�]��4��h��0��=|�lmօPb~���C���i���	�;ӵ<����h�ђ�Xc@3�Q�I���:��.��mWhg�!�"7��Te�ec����LE��c)/fˢ<�mw��a'���
��ט�C��0?9�m�e"a����OT���3δ%��Y�ӐSFEy�|ړ~V�s=�x������&�N�0)��e1��b��_�Sa�@�M��i��c�L��	~��v��6��k\;q�)�zb郂���Æ�jNLC�MՏ:q@׳9
�^��A>|ɗ�&�����aܸ�ӷ��MX
[/��_�:9��}�J���%���ʟV���qV���kR.>�V��<ܲ�e���V��\ْV�-��m|x�/_15ʻ��dc�" ;p*�q��\���+++��!��,`�
� ;,�b�
>;��OT&�d�]ˏG����8�A�"�n.���`�{��S4Y�`�MW�,S���\.���IZf���J��+W�^���8 G�xb������=��ۤ�8�*Щ�K���-&�z�a1E����~%&gL��kk�Ɠs��aVB-.�3gϊ�̈́K����{��e��_����+��	��dP��/���m�mp�n�����:D;��r4�ZF~�D�<h�����~�+�>wp�I9�6��$|I��2��J<l9� ��B�H��x�4�[S�v	�s�� `�}\�9���!N��7E�[����ت�1��~�,��ښ��T�A?�&_��3��81�ch�h(|�i#�#1�%�S0�[����=9�+�����	�+j�~�k� �tH����:�%�]���o�zc��Ar��7��b��;?��6a�{�cm6h߸1��(�S���
�@)�;�'��8�������qӌA&�)��Gv��*Q�Zz��ۄ�O��v��jP����A��q<H�����ߋ�I�=}P߳ҏb��������iH�M��
QJۍe,9$��G���cEw߱��+#bB�A�#����:�0w��I֋W�W�*��!���5���t��A��M2nz����u�o^�ӷ���������%������ {��!Z�@��;^��a`y���*�+%��8L�DmV�gjSb:	��)&XZKn�o��>��b��'����{��)qy�2u�u9�2����M,.���	�^��~1�fn��V,��>qؐ�R�Or��n�j���i�#�p r[���N�N�#�'H@j`SLTW��
�+ł�/�ӕ�);����tp��;�kk��ߍ|P��`I�ӭ3h_�z�	&�P&���}?��y�A�������|��&$8����T���
 DT�i֙���fp����}�4�8�Սuj3n�g3�}�Q�O��ɚ�i�Zߤ��=��|qʈ�
��ԍ`�,�c'R�\`"��}&Mf�P���A�B���^H�^<O�|���4;9uޏ�]a�ҍT��`��)�)V_�q_�g�esk��y��
���nK7�2AO<Z��+-�//���7��0�I��U�U�b2�T��:N�0�p}�N�345]�r�M��@Z٤���u��|�c]Z�kqQ�W��eڪ�Q'j�A�Is\�:�
Ȫj�I.��MO�q�l29P���a"&�h>wH��N0��a��(�
�X�sL,�7,���I��&?O�c���^%m
�tB|>?��Ұ��w�GT���kf���V����>�=M����۲�`.l��W?�}ݴ��n���`_��u��c�]������ʕ��W?7�,i�k�aq����i|%��;Ya�w������-m�w;
�ڬ�qF.�}vH.�g��	��8��$��
����@x�-�0�'LZ�Y�&�p���w$��4��e�IV򖘜�����I�(7Y�k��x�y�V@�t�]w�F7�:M7��
�A<U��7�*vE�h]��L�'��c�\���Yq���n�f�A�,�d�|�٢��y��>"����z^eB
�ұ�����I��m�����=C�4ǟ!��O���p~fN�5�H9���2q3=5M5V(J�u8�����a��
��A#ͱyZ�v87�8	�m6���)A9�T|?OI#����5+�^�&
�)v����;�z����.�����tr
\�=�)�,t|{p��� ����G�B��O��nh�PI�hbwW�>R�P�vP<�ziG���yF�&CH�Fcڂ���>����2Oc���Ec���S�|�|a�JI{����/��z����ߎ��S��K"k�T^�rB%�)�/3e
�B��u��ȣ�Zʉ[>n�1_�.����?�0D\m��G�늝� �����~?��
00���w�L�͚$s�W��:���e,c��V�� �&�mt[4_��b�F]����x���k�֬�i*�������:�,m77(?��'��z�p��?HO_z�֮\��#�x�y�u�M�bn�����I"&$*��*X(2���G�#�9�z�1��((Ftuo��8t��鑳���O]��'n�n}��vv��+��n�DE^��;O�dw��BE��zy����(���ɇ]Y���<l*c���S���B��E��e��D�g�~̷5�:	�AΣ3���u�~�@�Ia]],�e�p{�x!�M��N�*�!&�y,7����>�g�����1 ��^�bB�	���v�r�an��L�Bj0Y��)�%�3Ѯ3��I���:M&h�J��}ٜyb� ����<��W�]^[��3��t����t�1�3hr?+3�������
1��
�+[k��K��l�s�z�<���ʷ��ɈFt�����%:X��N�S�1�r�I���I�Z��a��G'���.c{\�If�x��g�29��צ��2;[��<=�Gf�u}��Ц9���b���c,��b����;�ʩ;�^ۜGT㧙G�*Jv�$&Ʒ;�L�M���|���5���b�'�\��;�m�����n�f8]N�Ƀ5�yfe&�`nnGj8�e������
��j��,��%ƃf�a�u�6�%���WG��
�de����B?k78
.�3��R)�q��E��.^�^sA|�p�Cp�4" km�] �ر�`�r�O��6I�/
X���7>��kf(+���7,�Q�}��b��7+\�s��4|׿�Y�k����Y��b D��q�����.�0*=ʳͧt�ؘ�2���@`s����rs�äm2��M~��i�Vr':�i�CN|��9Awp�f��Z$%4����'PƊ��	;I�:�8p�^r��473MGX�+�
6�N�st񠤍�#X��!`��p�S7����NN)ۤ|����^�T�Y &>&��H�8@	3Q�H�8��82�(�cRW'�3<q��T�����#��9���Ⱦ�����Mb&�a���%y�!
>\���+�C��(�r�C�o7�N3V����b��	H�8(�<}j��EY��@�F��֬%���Ʊ:ED�o��� �N�d���ŋGXm�N�$�>"��k�>����g�N�D�ѥOu��^��˔���=CvH��r,ף��3U��z�mq�,��^
Wj��A����OS�}�~��ܿg�ܻͯ䈩�[���x�r{o����o�h�:L��4�&�& bی�`=u��$�=���j���:�
�ڧ@?�X���'c�.��,� M���/O;o߉���e,c�X���6h���f��$@��͘.쮋o���=8;��r�V�v��E[|�.�2���L���u���}b���6����t`�J��=IU^�n�����6�o#���-5yQ�]��t('Dʕ�
��9UPXۢ��7�V�G�9���a�v��!��d�(桮Էhf��{Ta@�Q�R��Cp�5��DEr
?P;�d�!k�Z�`���7R�9���N�+3�8�Q.s[�91U
?E���Pȋ���!3��`��Yߡ�۶�NU��Ժq�~���M�[� 1��p�KL�t���Q��N�ڑr�"&v�<U��q��j��l��J���|�+V�#�T��0a�d�D��"�l��r��H)Q�CJ{�hc�I�J�����6����z�I;�
�7���9�Z�l�.��=���2�U�UL���0A�Mӹ*g4)��V7�����Q��<��*��T�~2�2i�囙^��z�+L.l��1��*?�j�ɋ<�@L�l�hk�M�S���q:�&�v��})�k��=���Rp4��2a��t��������
.4�
����p�s�	6��oUn�v�!��'���6j�3j�g$DZ�ɞ=&��>�E'����ߑu|�� �ZU�yj1���b�3ur4�m�������p?-��M[,Mཬ�{�\��H�:�ij�Ai���y��Y_^�֝�2�kQw��+��ư5��7�t�f;M_�Ya�|}e��8ni�4�Lߚۗ���o�B�}��d��ݼ��ƺEZ_�V�Ɂ�J���8��n�Q7ܰ>9�s��}̻2q�Ð�ݐ�?������"�ZI8c��Nz����'eB�ڼ�\XZZ���i9-7~<�\�B� ��Z,�&7(!g΁8)���x�S;C�p"�';ѹ�;�v{J���Ѐu�.ǽ���S�Ͽ�h�l��1U���	��(KOw��g��mS��?
D���|�P�"��m��4�1��=���nܴ{�@�"�A�
�j0(J4���'䅝B��^CA��@�b�~���
�~��/�\{�;�㤎D��v0X� �f�6
��@��7iw�����ID'Hq�[����X�쒲��n]� �5^hL_�ڀb`gm*��@Zc�����烱|��ƌ�̈���lb��t%M�:A�T��`Y\�k���æ-����.��K#���LEl � �O�,N
3��;%�7�XI6���&�ZX��dw˂10�����M6��x���{nA���S�T���+T&NDc�X�2���e,Y�����{t��"��[���$п��
���������e���4��&E��|��
#����٢�d���l�+�o�v�K[���/��$@cg���e�72;�;Rף!?���t׫^�t��ԧi��)��DYcd�:�@�K�4às�u�^r�	�+�h��iz�s��@v���v�I5��sE�=����]2��e][d�n���^�E
!;��6C_����Tȋl.��i(g籀�0ô�D�m�PYXXP�x�������Dh��P0��*i@���eΔ��d�
5ZLLWi����;�{Oʎ����((���r�
Q��r��ܠZ%��r�n99I��m^�_.]�IN�p�O1���ѥ姨VeҤ�K��$L�����ڡ�18��[=�Q��߸m��`(�����
���ѡ\��2u�}�LH��V���M�1�]�\�(��g�*]�d��H��%�����~��[�gZ�I;3�[���縼���0��0Y�DZ��2����5�����w�\�2�'9鱾�K&7�>��3�T*U�2��5��ԙ	L�R�����_ڝH,c��Z��[9��Zo�I�r�F����0�K[V����	S��������o��q�3%~���mܡ���D�^�Mm:y�s1-�r������J�	q�s�i �W��Ҿ�ʖ�����0��pY��0<��ӗ_Z�ܱ��;+ߘcǵ�4w�qA�4<.M|㙻&N[��i��s��y+�d����|�[.��DZ�nن����֮���}6��H��)��f��a�/��g�>��~���i�������[�[����'����E����t�1ge��6mX�$�x0�!ߗ4�a��B�I+(+�
�]㩞�/�i(8
/���D9�R;G��
��|Ai�v��$1���|���Hv�`�{�8��+��Gj7
u{I��j�!�{�m�/���0
�{��C��.�\�7��ݎ/B��OB���<���Z��L�*�wiJ�(�Yڀ��`���4Db�s6�eBA��}(�P�AvD0Z��9#�v�B$�
�MF�I���[%���[me����	�&A#駦��Gl��˓�:Qq�'�Y��8-Ov%�V1�Z^���/����\�O�D}h�}Ic�01��ű��X�1�O�q�!)Q��f�;B/��h_�d<"�@��=Y��r��O[��3�uA횦(	�x�?�15���e�(���\���� ����!T��c�?��=M=Wʳ��о�W8������:$���j]�c���l��E�2���e,c�X��2;9MKǎPi}�^q�-�v��+�V�e*�aڈ��F���*a{XkOQ01OO<���X82s�:�6�t[��W8�Q�R����R��V�Ā�v�O��.��
{�8'�̀d��cG�A^�^�z���/�`<u3-��Hw�x�
E:8?%�(/�mй�
Z<t�Z�˷W�*���p���b k�r�G��!�ĵ*������A��	7�1Yc�UV.0
��5p�� 8~(U�b旱z�pZdJ�8�ۉ�&�;=�P��X[�{��S��ͮ]Xq�WǍ�z)�%z��_M��W���*�z4=;I�;�43?I��8����t�E�G�U�H�{T��h���Ze��a��u�Ш���h���R��ˌO�?�=�)��`�_&�dK�
��]k��qR��w��-�4�mt��C���LS�Hُ�X�m�'.�܁y:05A]&�v�?mֱY4Oa+SO�\�
&X����ȼT��*����B��@��T�G������)�i� ����<�!\&�jL��Y�/��7��/LE4;5�d�&����-
�c]�L��e��I�C��� %��+�i�ɐ3-&��	�q��<�Je
y�]�2�*��J�0�kӱ�'ho+�V�%�^�@�
�U��	�+?g�y�p?�2������%���]�կ��d�kx=��-�~r���$
�'AHi 辵�6O�5��T����G
���Tv���|�ش���"I���U{=h@G�/ql���%H,�d���v����}đ��/���V��[���=ݼ�Ϭ�^�����w���s�p�9�s��K~�q��l|xئ����DG�Ox�u&>�q9���e�
�%�mH��MZ%��q����Mx$��G��C��;b0:��=GULP�}�>೟�N�2���a��
4[Z p����0�-u8�b"ҧ6P�0��]q�	�!��m��S
Dj�J������t>��q����gK8eLA�4Qh��!��w����;���vi��M˽7�˞�q��Qd1+�v���q��۳�]���4�YV~-���d@�,�=@�cQ&�T!�Ɨ�찏g�	���͂�]�	�eNm$����`[�vI���@��dA$��������+�:ۚ�O^���8��ksWxg�R}j2"(�;��#tyr���a��DY	H/V4q"eR��A����?o�����z��Uo��<7d��~ߤ4�o�呦0%�ֺ�:U�zXF�o���k��%}3�;����8��í_�"g������3	���q�a��Q��O���U�j=1X��?u���5z�U����e����I��4;7Mc�X�2������K�|鲬�`���������!u�oaE6�BFF$s�n��]���	�8'K�B�rN9��k
5�E���w���
"Y���A�xq��X�lj� ���{M*�Kq ��a4J, p&�k��El�ˉ�`��
Q�:������2/�W�5�d�������Z�G�$9r��u�ݰ��c"�CA�9)COօ�v���#��7��
�-8W��k>55�
D�~�tѱ9�o��0�\��3�Fȼ����nԖeh�*��C��sğ��,�$_�:*����+�8�f=��Dh��r �ο�ڕ��jS�FZ���>�T`0>'t��b@J6�B�ݮ�A_��ϡ�
��
)V�0�05�}���'�3��b�^]]�a?,r��Y�G%)G�
��9�N���㼪_N��X+�%����$�Ԋ��͸?�w��h1ʂ�L6�*p��D�&�8��0Yı;,��B����33Yz�!���䤖X��&(l`���y�S>>�t;5�| ��&&&����euu�֘Mp2fn�����L,� �iq���JS�Hc.��"��hǺfKZ;������uӀ��O��<�ݱ��,�"�	��ڇ�Z���
�2�q��@/9y���qO�3ǵ0�3�im�}_����7����ͮ����U�|���噧��-��M˕��+K��5���T�e��~G|s��5g>m�˔g�Xv�s����M��'9B|��c��b�J�퐼��|��+�T�1i�l6��0��MvYZZ�O�f�$��&�p���(��S�GZ*B!�ݝ]�|�e�V�S�̓++D�=�������"w��q=^�җP�զJ9�8x�SS�<�mn�nyLN8.��hP�����mQ:*�25M9~����M�&e�����u���#ζ0q^�=z�v6�X�M�@J���(�����.f��0yS�{�RE?d�؊髌����ľf���ۿ�����2�ߣ����*!,�+�)�]M^+��@TmQĔ��e
ʓ&���b�1RJ�1��/�k_�:i_
�� ���r�=�~T�MF�O������iF����c�4{d����4�	7L��t,�\)���4��s���V�8H�Y�h��H�;���
�O�L���X������	�S��v:n�o��i��o�ڟ�g���v�L)��+��<�����z��6R�9�������q�:-��I�@�%t��d�N�(��=�m�����ӏ�>�����_�~���\��l]��okZ	3^��9l<��e,c�X�HĠi\�%�$N��4�p��9'ћ�*��rE̘zrV�B��T�4�jg�jg6:}�,�y8�M*u��ut��-�j
?�+r�E��N��D��e9�˒oQ� qp�)�I
��V-k�D��ex��Pu=��pdv6��}����X-u�����7j��0��zZLE;��:��\�u�P_��ϕ(_*0���po�o@�$i��P3�XrP��R}4���:5ٱ�ڷK��ud��6�ɒ0�d�%�N�j�&�&�äz'8~��h�.��<�H6
"���jD�~�ǖj&�*:�"'
꒘��
�FQ��d�$�UI��m�S�<S{�Z_LV����@H�H��
v{"��Po�!|n�J��ɑқcemđ�"��:��6d�C[=�K��V���V�V�
]ꁓV�Yꐣ�*_m�}��C��MO}�!y��)7B
��BlƓ��9R'�͚�����7��i���&�:�g��^륥箋]'о|M�}���n���{���2�~��b~���#�n��.*���ئ��&�#1������st`��{�:r�c�UR�H8�tIk�a�����stq�4���4F��|%���=J��Y�p��&�g�������{��k'�NzD�N����Ŕ�
���&A�h���dG���iUD��񑘴������;Lya�
�<�3fD���ZLZ�*�n�����d�����M���uZ]Ys�^���~���X�x�=��SB6�D���I�����keyY�y��3g�JconnR��n8Mg�<)��]w�%i�j5��;imk��\�*;"����{�®����˗��Mؠ��r�t�&B�J"�F�A�st��!�����i.H��	�xӬ�ڄ�M'MQ%O� ��lJ4��̚�⫯k�&I�H�$J~���F�f*� 	CN�A0ֻ�Z�%m�d4�'�C��x�ᯘ>�0=�B��t�vp��x5�ƹ�&7�R�NP�Z���uSI{!��9��ؔ��Љ����]j�E�ܓ�P��5y�ɬ ж���X�A��
��w�5\�GwDzO�1ˆ�wLJQ&5_�V���.Q��}r�x689'�i�R�+���~����53�e��n���_��4���]�?��D�v�?���]f{.6�����cҠ}J�o��!����q�~b���v��LD�v���p7m�7]f5�X�2���e,i"�n/�{8M��bJ��ʊ�'~�d8LO�1���Q)��``~#K��fG���%��7H�*e$�3����d���eO̪`n�겡<j�����Ƭ��ҿ�߰�~ƃ:
��=]W��%��srZbp���=���o���z$D/��z�8�D���߆F��~��Df�PZ׬���=+�^o��1i���/f��A}'���x }I��u�^�_�X�nۡ��~Ӌ���A1ֽ�]����.E_zڼ����.YE~D�Z�l�\
X���G����s#�{��S�Frj�ˢ���z�'5�!�Pc"�+�,�}4<�+�
rtueM6�C�?9�����N�QO��h
.S���ϚM�.�
q���uib��nZv��=G�#-��s�Z8H�>G���t��e�s��m�運��/ӱË�+nQ�!��/Q�<s�i�9p�&�Uup���qn�GY����_KҾ�E�����6���v��r�p�璸�f�qZ���A�;�k/_�����"o�t��ؐ ;̉��8��KD��2���ʊ8-g�#)��A|�;��o�A��MY���R����
����8��(��G����
"��[�_\���<MM���cGhms�.]�$�C`��i}mM��ݝj0r��	�ס3\�'Oʮ��̔�~�á>k��JI�$�
�)v���Ïr���lȀ���-E;u�$�*��j6��ǘ�x���e��#=,�e�'N�LTkT����"������';(4��u�k�<> �7��3yd
<��&m�R`
"[D�N�x�di�.�'\̑��3���;���C���yQC��+֓-Y`[$���̩_�@�\��y:�׍r���0���4}+G�~�~���#ޑ��P��8��(�o�v�@�@{H��n1��h�;Z;'�a��!-BMl�Cpq���G#�Դ��p��v,ן{������k�M���;植y��C��t��ĺnO�48�����x���7&WA�o~�_�~����4�`3��әq������Л2���
36�'�Nl�O~?	�1/�?���n3�è�����@��$`l��M����ֿ�2���W��O�W�W�e,�'�����I���&�@8�NKX�4�>d���֠&-���/]ߺ�-cV�v=��D��]Y �ێx�m�a駅K�yGk�Նv�Yq�����=.\^�'= Ef���YZ��F��hcm�q�<MON���u����S�ҕK���x���Mz�'�5�}%-�T{|��|�fg'h��z��DѱG�2�5&9Ξ=���z�1N��w!�-�fw߇4@ۗ��s��TM��u��3��SS43פ�Ή����Y�!�L^L�
7��sg/R!ҹs����t��h�;���ig�I�ů��b��lR%g�����Wv;
w�L�3l�񵏛O��g������e��w����o��m7F�{�|�=l������<�i��6i�Ć :@r�V /L���šqX�Ø�br#�<b���@�KLz�嶀�'1�x0�rm=,v�k�ξa��ƛn��G�1�|�n<u�i����G�R�T��o8-�;Jp
>��C��^���㇏��O8z�2K���C�B�����ަG{�ʅ-�\ 
�Z�t`a�&*5�<�yb�b��>���2��x��i��x�=����U��*lnlґC��J�N�f�f��i�.���h-��"bگ4�����=�'����-����kTI@sҫjO��,�)R;<r�09����	 |^�{3#E���v)LrD]qF�&��v-"utX5�Z��}bB����h�.$�4�mN4��Y7'>��ؠ�yCUzQ�:���Y�~`��N2p��c�f@0��5�C&�ǧ�?sjC@2G��_�I����@ߎEr��7u����#χ�q�����w��'�E7�-���M&�����W��Չ����50�������75�Sf'-�?�
�U�����3ҪG?� ��=����/��Y`�O�$m��v�qBr����i����Sf:��܍M9�]��`�$�H;^��Q��J�<���<���z���(1�3~?�2�R��$p�۟�=�g7��i��c_��N�2�d�`���K3
81i� I���gg.�g�Oy��}
����n�mV�a��ݲ�u���{Ye��X�/�ܬS�T���mm�R�q�N�K��MbH�._Z��B�j5�ru�N;D++t�@��6w���I��0�<��8W�1��=Xã��{T�TamrfR�����Z7�ҧ�q���];�(��ߟ�oʆU��E��K�r�۫ ����5�g.��䄘�?|�`�S����4Y.�/�f�I���^��)JGG��i���ި��>/;n�ؘ���{nY�����.�sE��m�4�d�X-s�]w�qÛ4�i�?q�CL[�� ;@lh��r>;�	�f�LR��p�Ø�Ɂ{�$G��Kr����]�_�z56�<�k1i�ObU�r�@KǏӉc��n����-
��.�:zT�����jы���8�ʋ�Ԙ��ڃ�s��C�-��������C∌"�\�8r����8�qQ6ܛb�GYp��6�%��=�ZK9��X��"���a� �@^q:��u�'iʡ{?k�p��)O}P
TD7u�â'�Ivr=�rzR9l�S�vbc���<�'��$Q�V"�����8���1շ��ޤxw���E
{�T���O(!烣�ym�ʘ���Xԫ$�U�R^��1�e���$AB��I}-�</������0����m�X��|�SN���{����5J�ܐ1ABn��.�Y��:E�OfhbD���V„�Q=�{B>��ӡ���C��Y|�;f-^�-��h����}��/E�/r��,Ɏ�uM����4J���;�R����1�~>4�����&iL��D��0�������<[�y�u"$���r�I��DϱO���ﷁ!NI+]�������n,c��Dl�+{�ۍ&�9��8w�.�n�Y˓�t�M72ȱ(�룠OD�e,�Oq�81��@2�0,�/�N��&=7m7?�^v�Qt7���n����_��YeH�|q�d�n���Yc��q��Vn�ay��+�X�)0�U��')Sc��8DH-�,���hw���X�Oib�L�u�W.���+T,�$���U��Xߤ����U��m�c��+��:�����R��7����6���q��ܻ�wČC6����r ��C�iv~Q��r��r�T
p�8��1��-�R��댍-,&
�	4�����6���>��`؜�w�梴���8�����a�gz��oʚ��)�9��Ӵw,m�&y�Cف���0�;�舵��$7&b�;N~����8-�f������>;�|��`iiI�w�V6���;�H�ɤ��߀�b�O�:�"��9ۜ��̓@�&���RA@�\H�` u� TC��UPΔ�żܿ�[H���.P;�#u,i����']Q���9ɄLb��
=1��P='aq*�;_�|Mh���B�r��ٷ��\��*CY���Z�>ov$3��ϫ��r'�/���$�U��

%1W�.T)?u�*�(�8B��H�#��iR��G�z�
%n�b�
�)�8�D�n�.O��Uj_x�v.��w� ޥ\O�.}	�W;�v�&6�ɳ��DzǕ��1��>��ө�8JH	�PI�zS�>}k��OՎ���|qZ��4,�B�+�}2#P$GON���]�Q]�0HH4\V��T��Ė�v��2�ɏ�"@(}��W���<���S.��71ƺ��q�H+[Z�i��I��d���iy�k����4�v�����_�a��&�Ae���S%�Nz����.o���ԍ�[V����a�<���X;r���D�ޏ8��1'دdR��s�c���},�c	�����g��?z���+��rR�Z���*}�>�u� }�7��T h<���)is����i�ؗ"Y�;�s��-��]Y�`Z~Y:���O�㏢˺߳ʖV�4P���3�Ӄ}��5M��/k�-}����:��SN-��u�9?~DN4Z-*2��'�Z������<���n��juc�����<�	��W�#�A!���w����(M��7(l�
�X��Z�J��N��{�}�=ms��4m�r����`�܎y&���Jr����	��1L��f�����>�+� ��q��n���[Ǵq�M#k|�z�n\����2����=��]�k��G�o��
�6o����L҆����5�!8�㧞z*����\�� c�
N˙���8�G��g�yF���9���<@|��tI9�6><�d	�!  3r�g#�8�S}�V�����8ݞr�&$�v&�h�Z�Q���w��q`�`�X���4�(ք��r<QH|�j�;���(�EBh�|�C1��'A�\'��G\�|~�X�(
����^w���/\6��MN+�S-p֡�M���Ni,��
_CeV�(���������+�-[L45i:�P{w���W��{�?���?N���L�'�R���9�Uҡ�^N囿�&oho��>�i��]��N�J!�$�?�,{�A�XUB�]l����qYꅉ9��3I�ɿ}�&�^~��i/�x��(<U�~�� �Ko�>�s�eN�k�أ!s�G�y�@ƅ�4G&��ŚD	u�H9���V�|�F��2��ҝܲƊ�E[ZX���f��-�[$�wU��I{�wʄ�]|��i�k��8MWcN?��0�N�G'��c|l&ˁ��11�.�M
g}(g���`�����"�CI̠O�K0#�cl���p,cy.4�O>���;?@M87�ۦs_��^��u������;O���Џ���c�S���X�2�q�
_ܴ5ٳ)�{����ܷ�⧭!��g�I��D��1�N�l����{Ya|�|�k�Z����W��ga�>�u�
G��y��G
E^�3LU����'
e��\�82U�@�X
�n�y�DН{�k�D�ղ�ȫqwA|XX	4�p�8��I���qԕa}/�]2��&���i�6N��S;�a����ִ���ͽ�U�Q�g���6�
���Y7n��O+�;��{�:�]���Y�KV�d=���M�i�۟��y;q���A��c;���Ց�7~<H# ;l���;�C�_�d���—diiIL\�i8�����x����?{0��S��39�Q�����b/b0�j��@4[u���	�
���Fi�����.P�X 2�4�mCj�[�y9>�V�s?��e)2�t;f�a.�ӑgS�Td��i��o��@;�Wo�û����>��31�s"�^��8��	�S�OdX��) ܳ�6)�:.�u5
�)�u)üXP�'W���]��;	
�<�ָ=aHI��
��C�Vb��4MT�h��&��F�����8=��9�p��ʫT�]�Ջ�4���.�.���;��(z���f��j0���ɜ�"� ��A��Hk�������@'�yDN�lO��D���hO28Gҽ�eTN�a�˘p	��+�_sY��	�A��"�rLD
	T����9-s�e��8�
��ɑ���*�/�"-m��~�I�Ҙ6���4��7���n:i>�g�[o�0�W�D�dH_������ns��%LGl�S�4Ljދ���_�ہ��u�L0�k\k�I�AsR���f��8$�cmRWa�Nq��br�i�?*\l�c��@�b�^y����{?Fm,�vh��c4Amj�Tf��ɇ>CS4�vZ�lЯ��ҏ��wQ�s�S��Xƒ%��a:��
>}�}:ϵDnY�t�4�΄��">=���$�K���(;�v������9��3pI��^�?�ʘe�����\���a�н���W�`<\��lV�q2K#�TP&�cmu� ׏�9��]�N�͐y!=��/�\$%M����:����q)��s�����ce�n�q�e��&m۴��7^_gRj��ʜ���c�	���WFӦ�ӌn���ɪo�鶕o^6Ϻm�k�Q�пj��׾�y��~w�p�f�yk__9d���?��}�NX�Z��8�p��� 0���z׻��~�|�n��[n�%��'?)�7��������B~�D���8-�'򝙙I���ω����ŋ�'b&�~�Ó����Ir����v������ͤB�ݦ�U*V+tumU��'?E.]$8
�鏝�=�0@��stuy�皘#�q� +�9w�{�	9%csgG�(�+����T�Vics�>{��hzn�B���Fm&ty�1��&hm}CN|�p[|�#��>���ms6ജ�`yeU�乾�._�-����X�^�)�7��%���]q�������q������(�jX��=�=w2�W�o��4�&;�fGق�B�QN�QP��$H'�{�z�u�V(h7(hq�{�������h�ɑ��h���t�/���,�Yަ�ί���-�߼�$����͍u��=H��S�z��6�B"�LzbM����	�p��4� ����+���P/kF3�۟I���쇇4��%��[�(,(B!V���=I�=IQ�T
��J�F8#}];7�H�͂��z}�vww��M�A���D*]�\��eQ���r�E]�?v#-����r=�_�r�����/��O1������i�a�X��N�7l�ڏo�
��P1�"�\u�e���v���~�qR�`_�G�’�ӿg�Z7Y
�I��7��kp���e_W����`��z�)�Y�<�W*e�X����ENo��;?DֶE_ؼr�:�Oҩ���
�*yz��sb�b��i����ޥ��I:}�������α�应V�E-֝}�a��,]�wϗfV8��(kB_�i�����'�ްr�y��άxY�¦�UV�|�����|��������Y�G	?��~����?�T��~�Y���V$Q�T�/.���g��t�>�B48����.[�
�w��aX�n9��'~{cٵ���p�w;�}ͤ�O;�ay��pӲ���qG�sÛ4L~hsϮӰ�ew�7,���ie~�&�˛v����?fͽ�w7���׏��]���{Y�y�o��rP��&���><�����(1����'=@tز��$���$I_ڏ� H`���ի�l�Tf�0$~��G�g�yZN_�e���ab G��W@�P�ݡ;y�Q1U�驓-���t��L<�+U:s���H�~��FF�+L�t�}����I�3O=M0�U`���=LT��hnn���� �0?/������2����lj'��l3	�GO�y*y!`6�3�R��D���h�ɒӧn��n�MX����f2!nG6�f#n�D�'����aH�`�J8�����6�{;��|?��?�I�����u�Mʇ%*�AB1�7�iV�k�70Q��RX���<���D��Zz�y;���Ѕs[�]���:Hu
J1�m�L7�z+M����E�f��]&�:E����Y��+��"eH��f�u��'�ۨ@����˗��(f�>�|~�i%h��*�y=.�r����".
4��)��8�dX���a���E@UnӸ����Ʉ#qQWn�^`�*	����c�]2�k�r}�yU������$��H��]��8��M�?��V/^�c�U��}���k3��d�(��݋��Tj̰�b��J	>�C��b�v;ٿM,S'�����ŏZtXe1)�eȻ�"6�]�@�ӌ�D��	��b8M[�l�	q��Q����t�h}o,c���Ѕk��>veCNvb�R�ަxo�N��DK'Q����Z���{���B���v�ǿ���w)�d��f,�;��@W��1ӳ~r�;�4}����0&-WOH[���.iz���>@2MK[����+-�O�:��ִ�g�k��<|�1��iu�噵Nw��4�T]},_�b��[�,��i�rY��2���}��~�?����ۿ}�xT��}7|q�q���m�0i��������aa}���u��o����1��kג�[��0nش8�q�Z$m>�}O����+%����ߍ��M���󵋝h"7�D$������
p
DH�I+�ć��y�_,�ʍ��8�a�Z��<H��ҟ��Ғ��b��˓r�&:���opMN���WZ�����}���d�;[{�C=τ^�
&�=D ;�VW���8 f�@~@N�>M�=����q�3|�)@�V��%1�����?;;+$���|�����H����3�q��s��#�<"N��Ƅ��*=e����������$2_���;�dG�Q�ߦ��	)��ۑ��=K�f�p�Z����H&2(l���rs�^|�j��kT�EMn�%&>p�	��+�%@��x<�Ew�Y�^�*�T�f�Z�
SE���z����~p�OMP-��|a��q�v�U��X~1՟�uqjg�Ae�͑L}�rr�*ֻ�@���%W8��}�@�DE�@�4�~{j�C2y�a-��&w�d+�E�p��`���J)�}��b"�ۥX(R��^E0�a0.*#")ԇZ�~2�s�@ٷ4�A��ӌ�炤��	+mA䓴�e�kUP�ʑ�x�D9��I�M���+�Iw_��[,��
��I^����3N%��ѯ�.�I�1�0�+NɰF�1�Yz�'T��M�ALqZY�����u�+`�
�tc�����\��s,cy�qzqe�Z�l�A�/��y��,ӥ�W�C�=@����E�|E�zBg���M��UK9�X�$�|��w���Q.��g�O��w��4`�
蓮V��2��v���!M���r����<v��!��Q�];�/n�s���{���k)�X�7�U}���J��cK'LK���e����������Z�f��v�iX�06������n\_�g�WZ���#m,��f囶�&i�{�n�u�W����'���J�(s��n˵�/Yi����Q���<�oZ~<Ĥ�9���  ) �����r�Ü�`�CJ��N#0D�+ ;`�j�}�&;$Nv�i9Nw�X��s��TO��"O1��{^L�L0��ȩ�Kb���Hz/r�&@^u�+�t���$���|�&Ip��/}�����%!O
�t��%������LSLd�A5�ީ��r�i*�Lf,�_�F�!��q&yz�q:�O]�p�f�'�ޗ��ʕ
-���:�0�2?3�Ă<�U�|ONNQ�T���i1}5;7��ui��q���"���P�"�r;�Fi��7��0�8�A>m���҃	��ڤ�C���DW��y�
ާV��ř	�Uo�E�1
��Fw���U�ϟ�6^m�ܯ���E
*���g�e�(5�ñC��БrN�A���N���I�Z�����Dۗ��̓-s��?N����s~}���A����~���7���!K����5i�8�;=Tqr�^��
&h�E����0�HL-&鶶�ć���z=!���.E��t�#4�u*~�M�
�����߉Ӳ�z���3���ً����o��6��\�W}�3l��M�]�)n���4�ƫ(u�	��uvy�$�L��ȁ�~p Oo�>	a�Y!Z�8֏�G�85X�*-y�s;9S;�~����u?0���YI�t�SIs�߁���O[�<�d�U��O�%;������ rb���:�2���V������t��"]>���
�����;����E������̐�X��|W�Hӝ\��:i�����l Ǥ��
n~ii��Qie�ſ���|���}m��v.���åu>�ҟ���O��k�;�[�g��]7qmV��\?�|}gX.k�'7���3��Y�@����7�����Q��q�K�nf�qiu��_��n}��x�g�ؼgK�x��Z���MF����>֗���i�ۈ�s/—�- ?@zhSVƤUr�:�o�.�N{��LY�:���r96���j�d��wZ҄�!;�9+ԑ���8,V'<�6��1@�t��d��3��Q�:ҍ8?3-��{�q�.����fn�U����H�v�0���r�D��LA:7�>��a�s�
�u��R0�/�SStp~�
�M���&��[n� �BA���T9�� �S��&7��*6(��h��Su\Y��"gr��q�$4l0�
&���k�����b�h0��z�'ζ�KGq�&fn���|��Z���Y���Rw��+L~4��
N�H�����'�H.��ӣ�0��2� T�+P!nP����sg�D0Q�i��ܙ���n� ��CT\<E���)��L�g��U&̚;T�z�X�O��e䪏��I@7��H�)|Q��&��tBy�0	5	��뷻��	�AG���s4�0/}�#
���P�׷�h�Y򝌃�P��t@���.M�Y�S����\��5����&������k��]e�eqj�Uv���OW����Kϟ��d��}�@����O���D�!
��$4����,$Eb|�4��ت���S������w�{R�r˧3�G�8Ŵ˒��c��@�Ä��`�
LV�w#_*�S{M:�/��{���I+�}ʓJ�iO[*�Y�
�
c��G�"p���_|ׇ�3�Uz���W?�Vp*+/��z��9;M�Η%ikR�wX�����(L���W�4��Z��O\�0M��k�Lv�c�~ŷN3���q�&{������|����|�/o;ʹp�d��i�{Xf�?���<����[S����q���}e��
+�+��i}ɔ�6Õ���̞K�6
���&�/E|�Ǘ��;� b��"�v�aN|h�V�O"����Nx��Dvp��Xf��)����A~�xƏ:Ny��t��%�$���"L"��V��";�f�R�Ӏ�����
�
�٢\�o�0����ZE1�Eɩe�
��z�3��w�@�(����
y�1!S.(3bJ(��'�W��Ӄ�h��H��Rl�Q�,�VP�I���ІMi��/�k�����n���M�X�,�q�&�:_/Q�ڥv�s��}��}���2U�D��� ,P;jQ�Q%��r0IA�I���Srң�ۦ�����SL3�<�i&��:w+/��
�9�9
j�(�.MX���3��T߸�q����2��tȀi�炠��F�0�����K�+������1���I

4����őV��P�ւHNbhR�8
3d��R�X�UT~@t:��w"�Jb��r�'�c��e����p�%MYKS�|eH�\��i��kn��ƲA%�ب��Ǎ;��E��u��1���I���7����X�>�J����A�u�|�/�t%ޭOr�ľ���!�X1y
�>�A�N�I�`��&r�}-l��:U2^���y&0Ou�<U
9jv��{T-降m�j4Y���F�Ck�<U����Y�(�{uta�j��Ƅ�X���N{6�bH�,�ƈ���ݕ�o�@�.��i�MJ��u;�A����ϜW����iq|�����.n��O_����{�u���'�zZ���P�_���-�/m�H�~�Y��z�ny��vO�6����Ɓqn���+*Y�O|黎3|M5�;7��ʞ�n�]��ݴ����'-m;LZ;�i��ik�[6;-7lVp˚6�������i����7�tG)���(��$m>w�e�����ݴܲ������X�Mn�	m�j��Nw|��Nf��0��6g%�q�� >L9����D�Or����ӟr�����*wJ�_�',��|�4�HGjr
�}�@ӷ�+2�O<�ޅ/�A���sF�$z�s&^��_��bCO�VJ�ѓϘ	
 2��A�RJ"��8֦��f(���Qr��D�=��M֋�в�J�tV_�5�P��1��`z�$�$��,�Q�8�I�8W�N'�$�Y��~��^���Lb�xfjw��<\��f�$)�{�U=����5���J��H�U�B��;���u[L��nQ1Z�N�U*V��c?7u�ʥ)& �T��Թ�${�Ċ�2;�Q���	�Pw��hO�5�������T)W��c7R�#r�*�d�A��)0�Y^�B�WT�2��d�2�&1{owL�t�	��.A����#��g,׻��	���H�M�i���4�1m<J�ߖ�N	�?N�86��
��o�������@�gn8�NA2_�o��k�����u�(�ie�$q��@���@W.֟&́����k"���_��j�M�&mI�8�k>�z�ٲ���$��YK��5:~`����̯��J+��Bp��g�衇���t�+��W�u��V��Oz�,�2�k�x'�ރ?��}�sr�ȑ#�9���5�
4����)pccC�C�<�z�)z��e���Ç�#��ϕ��5z��^�P�{�WN��s/|M��mz�_8����0Ͼg�>��n�4н��3����su�,��ի���q��
k7���s�����جz��q�~��9���;���/,��.�Ϝ9Cozӛį�o��oK���$&}<W��)`F�;�����$̟�ٟ�M7�D��L?�C?$ic�g�c�{�^�2�����c��w\ʒa�2�3��r�_w��o�u߻���w�W��56���u7��߾�i�YZf�i�����'�\f�]���d����|��1�M�K�Qާ�L��J��SZ:�<����3i5���A��U=����������?c����lJ|m�*Ax���l�V1�����>}��ڟ�ݎ�����N���A���KS<�{N��{��i�C����c�y~H��V8I��4"Y9Ϋ'?�3j�8��Eq��
<i���2q�����=
�#��J�Ns N��U颴N�8z @Y��&��r��x��Q
��N�MY�<�"�JZgKH�����H�3	8�:��
�,�zT)樽�$�T(DW��߽2�"���ޠb�R��{T�a��t���4?�	j�w�U��$��^�R�2�������b�ɡm���m
�K�{����
*e�����Q
/P-(R+פ�3��x�
1��������YBr��a�(HP7륏�9ړ8�]�\bb��Oi��E��Q��vf./d�^|��b�J��7f�t��c��}O?�>���|3���)��h^�k�x�������2ǖ8��0������m�o�}W���CZ��k�R�����e��#>�x<�X�9&ĥ��Ч�Ѩ�@�;ũ�H� +0��M���W(��}cv<P;g)�O��d0�J��#���O=Ya��fү��̸��S��1à�FT|S¿:�t,c�J��y�����C���w�l�ݶ�J��)�Ugioo��'t۱:�t?J��m�o�S'OЫ^x���3��<�?�b�Ħ���ߧ��z�N�{��
ox���o����^�2	������7~�7��~!:�n~���F?��?J7�|3��=�I�0����^��W�:���}@2t�o��o�<A��u�]��H�?_�|Y@����4Q�[o��>��'�s�[[[t���]��!������}ȵ��Y�e�9�nYe��+i�-Y��}?k���kӞ��9�Rǟ�ɟЯ���߷}۷ѣ�>*}�/��/��ѣ��w�S��~X�6�����+�?� ��{�'�:uJ3��_��_�_��_���ߠ����}�ӟ�'�xB��;���{��Iy�\�"ex����o|��Y�?��o�&�ԧ>%���"�g>�z��^�oc�ʋY��
��b��������֜>9+��4���e�����a��x���5�� ���cV��	Y�k��Ůs��E_���b""+M���1J�_� }l,��W%��qX���L�4"l�67�5��Cz�6�ST8�Oı|xĖ/�$M�iN{�c�#s��pMBv`���P�����%��M�ǡ���Nc�Ξ?G��r+��9!�8w�29�q��I
s
ݐ�8:1l|�I �is�-�h��=�C��sBR�Uz=5�d��tV����<�(�G�{���K���cQPlcs[LMLN�g?�Y���0���vqR%'`��
����qz9�ڝAD�S�oص�Sޞ�D0L���\ŎL'��(�BU�N�t�r�!��M��ܖ�|����db�~�cq��9|e������B��G��ڣ^����(�Tf��l��µ�yQ��?�U�ɛ(��g��+�9^���I���D��N��2�W�8
о/4Z��kAߡ��Mj�.hy��q9��1cCq^�	̂C��:�hg�敍4p�(�P�;Evp��_��BsZ�0������Y�t�{�@X���P$c�㺗���-C�`����c��xp�t	��\�TὋ|�}ָ5x?Kq�O��I!��"�^71�ؕq</��-fՉB1Ph����?��7�}�$!��p��(
zT�M����'e����N���SeO����40$R�$Z��w!��*N�Ev�b+�~��*^�5*tc�sE�0pˉ���t���Ŭ���=��{�u��p(�_��4?s���Uo��4Y-���c,cy~ɠ���X��@���Nz�{�+��ŋe�;�^įy�k$�	l"����Dž��������y�t���o�����Fܟ����5:���e���ku����#z�[�B��� @j����]�]����;��;rJ��o}+�����~�t��	����L�bّ�
K���0�k�u���~�$N%!�$�����}k/�Z=�-M;���:��g�gijj�N�<I����)}}d�O��O!�S?�S�?��B�!��o��~�g~F��~����a �@^�򕯄����(�x�5H���?�G����퓟�����?�+X����P���RV�>c�ʉ��i�#���$4�G��UZZi�����|����۟i��0���j�����y��d��g�0J_۸up�I#��]��������>g�ie���aԲ�_�u�=N�U��?��0���ܗ�o��坕�[fH^IB��
('=@L�V�9���+(G��=DQ�	���>�1�ˑ&�Z---P��3��)Nx����N���G��2D�����KW.� ��.]�C�:+���O�-�aE�i��l��Ӵ��Ï<D/��t�� �4�+��n�=(��_�p�^�����MOO��=I�/_�n���<s���<?q�.^8O˫��P.R�ב����ϝ;K�Nq�'��R�L/}�K���*W�_��6w��BZ�t�'��$���ަVxϜy�N�����&�� mnm�%��`��������M/����$۝%m�IV�拗60�M�v��҇
�3V�€�dM����4�yc��9E<��N|�o�~�Wn�k7S�u���g(ڻJN#��W9_�\�2p��cr��Y�P��N���Xr�/��X@�/�CV���;���g����ˏR��y0_уc��EʾS$���(VE���mj.�����p��
�C�0�G���BWœ� 1N)�E|ΨR��X�
�4���w���63Q��b�8i'ǁ�D��Z'C�r=�(��h�~Ɨ��ݯ��&���� �m�$Ѱqo��셯]~���b.�~s ��|P�
��޸É�� �\�v�A~���4�&`�P���Ux�۔h��$��O����`�>I2ضN;[�]��A��^�$!tԄ9RW�x �$�ݾ�E��6��X��6��M�Y����]8�0Uj�vo��3�8�Wu��x��?L��cDz3�X��|[���P 2�a��?��?)����/�/H�����%��>�1�Y���4�u8֏X���w�����ϋ��0/y�KFZ����)
���Q.�lEJo0߱v~�+^!d
��;��	�@���N����a|�]���Ҁ�a�V��U>_��:����xi��tO;���n�@"�b#*�ݿ��BNm��� �;x��0	r����`�~|D�
j���?��L?�c?&}��@�-..�w�p�}e�bo}}]���I�����r�މw��]��`�X6N��v���׹���������ײ�;��[N_�acG�����i2����K+˰qٍc�͵"C�r�ʐ�wV}k��� ��p�o��{ݘ��Rd�g����r��g�6lڼ�6�e�oWG�^�d�	��� 8�����ể���8.�$*ጣrˤUr
�>q��OyO>���=v��Q���U&(r�|�1�^�O�
�0���~�n��F9�Ye%���O�G)�$�^o�M<�B�1I�}�]���v(��^�
c�T�:
�ty�a����<p��9��}X~�����`rr�{�1*3��V��mU�?�%��J�V�6�֥�'xb?yℜ&�f�bb��7�Q��sg��8�p�Ԓ�591!����&�x�M��Q�Z�L�<��c��~��{XY>�x@v3'�mVW��Η���@��̦�L[톴;N��l��he�P��F=XO�~15U�v�Q�y��*��CT(�d��7j��}���T�&׹%y���>�K0����w8������A���Y�G�u�=!=��
�'qp��ǩȋ�Z��rN�N��)�$=1\�|��R{$ ��Yi3h��0D�t� �Fq���\|Ņ)�ż�$V$ਦG����A^��+PR�2G�.ޛ�m��D�%E�X�R�	HA��A��HP�����}���-/��\���H��Q��)�ic�@���+�9QDlTr��5��:���u�$�pj��T,�5�Oq�7M(�<��N��F�R��NI���>�! ��$��*!V���&mDz�I٫W�Ko�L���k��[���Sqr]=kS�$�u���jρ�e4����N\��"ZX��ٹi�X���ס�Z�����#��~EƸ��1�;�b�?�"
su���2������N�;�a�
�
�O�����U�N���������LWa�;֔0��-։��y�`�`�
�2H��8	���+�*cg�����V�	�ڷ�(X��>}Z�m$(�g?�Y�x�+ S��52TsA�4P#
�J�̊7
���\=5́wZ~����d��HZ[�}:(��)�E�?����g@t����F�5�_��ڀi,�!0��X�;��=��#�����;6���q��Y�N`�
}'�P�G�]�t8M��w�[��a�f2>l���+��b�DL�
�����]$�"֧��^W
G�Ar���������Էns����̸g�܂�Ì:&b�O*�2n�����|i+ﵤ5�Yi���Yy���}i�Ȓ4�Z�q��J1�_k\�wLG�t�#������_F�C����}��7@x:�d���#.�a��=0�;x��O�;��C����������ڬv��<�J91�~����p���}�'bL�P�a���Q��>w����K9J�����sQ/]��n������N���&l��	;fg��(�Ϝ��o�����m��JK'�d��Y�Į	L�3S�t����t(U��Ѓr�7�N�#��Օ�r����._����G�	V2�'&�~�Òl�BY�馛�Q$�2�I&�P�	N�X,�in����9��_�ry�0 'c>���P6��,��k����1[CR���Lx��`�J� 
�*]��*EtrBVTʻb>��_%��(_}ǽ���Q��/Ps�Tb�=j�gB"jR��Gp�R���Pn���8M���C����̃��ݢj�I�8O�\����
�+4�ܡ��D	Nwy�ɷ�(���`B	��!<b�Zr��06h�_�>ؗ����#Lc��K��NʋF"蟾PW��~���YI̦���
)��L�ˬN�?D�L���_2�\BHƒh����M/��\Ϣ��,b�SLW|��aqj��Oy�i�m��Az���̧$9�Ƚ��4�L�f7\�Ӧ��!�q2M�9j4[�T�&?����c��x�>���{����X����hE|��So�~����q��$�uj|!}`�߮��mJ��l:�8��Ů
�4��i7;-��V�0�@�u�Ƅ�X����=�X��oy��H����u��#�`�2��؄���ŵm�*�{Y�f�KЗ�L�v>>,�r����e�ח��l�^%�Q�d_��W��=,�,�jC_87��s�@�0�iT`Earʜ2&z�97�Q�>Ns���a~��'O>q�.^]�ɉ2�yR�R���S��
��
*��s�)=�N0�\���%u��hR�Z����+�b�;nؒ�;�N{����ͧ����ٜ��f��i׍%���d�3i�]�QǑ�����A�ƭQ�;�Q�l�_]�%����Dx��[Z?u.e����;�
~S7�1k_.�aH&8����_&��0��Avlmm���$�����7�����Oj�P�����'N{׳!<��x��y���B�WV������qR��E9=�Ĵo�6Z����n��U^�N��6�U��0%q2���Ez׭\�u�Squ�eP\ۡ�E�I�&<0 �q�I/�8/�9�Sv�G
�&m:%k�
Z���b��p�o;\j�g�s�L�n4F�_½�&O�<]*�V��%&<V)�B��S1�%mN2��0O��
���Je*���g����h�-���\D��.�i˳�y!<�%&5�Ϣ�v_p��	���dH�ڍ���H��=���ҍ���l��2�a£S`ƒɕ���K�R}Gu
�SvlĔU�'�\�B��1q�r7~
uª��'�^9����A���i�a�F:�rE��r�7&�i �?{IeP����]�A|������w�Kcyn�;n@��v��q!M���y�?���$����O��?���@��Iw�?Z?��uy,��������,�8|W��N�A�
eq>�O��?Cf�
,�8��{�K��K�Do}���tx�Ax����K2o�㦛n�7��Mt��m���ӈ1����X�E s�z�c��L��ۿMo��_�]y�>�4T�GR^���$�1iA����ή|��	�)�@��$)���d�I�ϳ��N���^L��:�ܔ�nd�d�O��đ�$���ˆT�DŽ�X���S�]���	��ɸ��_޵�X�r���涐.Hp��}���i��y-
<��e��3
@��
 }uN_�x�$����:-��0>�7��(���ħW�3���x&�}2ٴ�(i��=�m�2�6�����<����i��_��Z�L�ۻL^��DP���B����IX���m���X
��ۣb�*�B���Nw�������A6H�/[�{n8��H��>
1k<s݈��,Z�MV�o�g7��i�*'Ad��U��t��R�f�x`f��?�w�c�����Z���i�t��Q�zZ�i�|i9䫉�%k�wÍ:o��%ވ��7�@Ƈ�!;����Ę�B��)+����8	��'�:�{�5kş1Nu���`�…�_sV8��h�W���U^���yr ���⢚,����w�X�ݵEqrk6y�s>�C< ���{N�Kӓ4Y�$��v�R+�[�QKt�|��7��2+TdP^���
�G�=\Wi?xX
&�$==��#�F���ɤe:[��*�����L:Bx��Ǡ�
��(�%S�7�zʳ�
*�!P��59@��.��9�L���:�}k��v��Rn�۷Ju�8��r�vO��ɂ�A��\�p��Kr�c���<�v���/R�0I�FD��=��;?B����I����>�g��}���3�v�(�Z�g�(2
 ��'J�9&��㑘/{�eX�,'�ڠ����N
�"��w.���4Ѣ�G��؂��0ʧ�:r���	����NO^N��ߥұ:Hc��ŧ(
#:u��3F���6Qɻ�.1���׿^�veyY������2��@W9e��8��/�忔i��ߗ���H�&eJލP�.A��ʇ|r	!���$�vG�t���v�#��>�яj2��)�}�#G����C��ݥ?���ѯ��/�I��Ҿ�U�<)RC�sM2��%j4:���\_�d9�Q������D]17ŸU�T�zB�`~��>���}�+�L1/E�<���-5(swf�N�
(�4�\�3}&H|��9Q������$���~QG�)	�vO���9�t��$ї���e,ד���X[����Y%‚?`F���e,c��|k#�3bϫ�鐴<}�}������Ya�
yNi��/��߾�e�}��|aL�4P&K|���Ӯ���w�<M<7NZ���6���}�FL_�6E\B���	ڿ�uc��U��tpn�z��L1V�m�Q,Ĵ����<�;w�j������fAإ��
Z�E�>�%;|�)Gڻ�kv[|�a�X��%�����d'p���E:�ѡ�O�G�"�^�c����Ō{	>�7v	�u�&W���{�=�f�xa�6��R���cǎ(�-Ļ�7������w�X��j_�+n�Q�|��Yi�*Y��z�Y���<�67��	�O
����Cd,��I��vT��:��w�E �!>,�V���NzHz�	@p��9�ف�KKK :b���1qbsV��f(�s���!‘�!͙�/��d�B`p�J�A4:ds�nt�r�X�.T�������LxU_������5�J�pƭ��X�Յ���I��R�i�N(m������i��O�q��/�@�5;k�*�L�N �f$HAn�'^��LTgx`?N���׿���i��i�x�B7�L�DQ(��څ�uZ��%��;��n�0�E���lu�V�Q�P�<E�{�{�G����f�@vp�N�bңHadLA�����:�ޥ�z�qIcsqܪ{�֥~v���^�NgH
��diǜ�ɢ�V_`�م��P�����Oh�%��40)�`ѧ�a�AGx��P$��@��b�=�)�������E� �U�|ǭ�s�o���S^p�����E�T*$�c�6��9�*�rB��3a��AN�� ��J�|���C��t&'�ć��<`/xc}]|B�L��©�)!����מ���$���eMn�
�"�1���п3��_�������O|�N?F�k�r����о�@j���^��_&E@�w@[�k2�"cvR!l"��&ǟ�ߝv�DŽP�����<Ж�����F�v������+e�����P���%c�|R�@��	�����d��>�&��4il�k`�=S��:� �&ٚ~�^$���X6����}��ļS�%V.�l�zE�)1�ϥ��X�rm�mI{'��[�oX�J�ֳl;�n��0��.��r�d���*�n�.e�-Y�e��v�uN+��ؒ���Ѿ��|����Ow<f��܍�_�|�˱<{�.���֙�����Ky���d���U�ֺ����73=E�˫t��q^��)b|��K��x@N�lll����#ll�ڪLC׆vM#�|X��F������^K���ؾ��(�}�!:�8Gm�h�ӌ1hn�F+��t������y�r�2:z��lk��o~��WW)��Vc�6]Z<�H%lR\��9�׶�؞�>n�f��$mJK�憬8^����_���}������9�|��
���tG-�>x��U�Ա.L`��+|�T_��is�Ü��N�8�SVc>q�'<xP��	��KKK�b�G�	�䐓F�`ӗ*��1'2fvČ��\N�3a�5�iJ�TQʄ�bR
�l�@��@� ��z��a,% 	W��
�uz]}�$0
q�|_9FR�H�[WwB}�S~��6Y��|��߉�Ι�!�:`ڠ���}/�C)B��t4��r8�"'�6�������
j�o�yjm�Ga�Q�)/S�R�
`r�J�$��.�<�m�	��^S|y��i�T	vm�QA|��D���ş�>�����f�vw�45�dHԦ^�+�=U�^˩���)�����
R�Z_V�WAl�aξOT�s}�M�x�<S8��y�g*�3��+�
�Sgq���K��*Q��

��A�SH�P���w��_!����8x�$�ś����\璵PJ�=Li��e)(I<�-�#EcB�6677��W���%,NG��O�����_���~�X_��?��?J_�u_G����s�������%�ƥS��'���w�w��������	~��W�W��?�S?EO=�U�U��o�f����񖷼E�#O����ALF)��m�0i�<֙\�CS8���~����u7��/�"���>��<���з~�2a�.����L��(�2��G�G����y��o���!�����8��C����;��)�Q�������g�?��@��?����#��{�C�i�0�O�_�:��1f���@��K��s�b�E�����$}��9��A?q��XV=�O�oŃ&��b����2��@����k+h�Z�VT�B�Dk�N�3����C3S�T-=���/~=��薛N��:��hqv���Z4�cl}O1����X�������7��Nn�Y�8����<n����Y�G��+[V�n.0㫇��O|�l�=7�Q����?|���r��i��zN������*�-��s��0C�D�M�X�נ�-b"d�R�	��O�ۛ����@�RAp���Y���%���f���1)���Y�1m��>�c�(���Djcl��k����*R}w���35��_m&���]�������H���#���g��#�
�t�ͷ�M�,����&��6N�sֻ�#|���n/�9��t��g�KӗVZ]q��sQ���	$#�ܒv-m�rû���q&�����Bsr�6]eH8+׿�=0�9��� 6�H���=c�
҃�L��ĵV�?��0�I�H|���kȎ�#�WLs���0�҉ڲ�'���	��K�/���b�y!611�̄��)Gs���bW���0M'�W�\a�zQ.Q._���@��S܋�8 9�j��&;��^:v�c>�V,�
;��ݑ�	�-�Z�0ٵ*�}��p���~��LS.}y�k&=���d���}c"+�#�L5��1����b����L2��1i���n�2U"&��U·I��j���ۭus$G+cM"�Z._����R̼��n ��),�C�����'��i���R[�zL�L��P��I�@p��J�1˯X��'ZL��8b�ߴ
PB�X��&��x��E�c�"�bҾAb��cR���i�8J�S_(�"6ty����\�c�ԈcyUnq�L�M[awx^ٷ���9���W�i,׿���ߧ�输���&H;�-���g�ݿ�wBnl�'��������}�����	����@�/��[���'����A��ַ�k_����z�G�[��[�Mo|�(����8ɀ�E��ۣ�}�c����M��Mt���O���I&W07��/��� ?� +`~�-o��dכ�˃��((�HÜ��r��I�+ND���勵�7�&�u�鳟�������\�W��U�~����E����8H��e���;�W~�W����$���o�䋹�}�{?�����o���Aw�u���B�����9#�}5�v�������/9}��~��<(>}E%0Å�m��������Z=p]����|
/��a:�������aF]��e,�Q�J:rN�6�6iy�N�b�-��ŋϰ��^�n>u��f��"�°��ʹsOQ�q��45{�¸''K�2�烌��r�_8l0=r��/� �ޮ��vׁ>�/�\ik>7�0���+�tl�Y>@���t�0�������t�32�{=eFu�u�(m㮡�xY�<���
�؟�{�ȭ�1}m�חSҰ��	��=�y�,��3x��ߒ��-��u͘�6&��6R�:~�2QB�Wk�P�1�����h�;g�O�\ɺ�&�)w�,n~�����>�?��+'9�>,�G��+��ޡ��w[�M������^��dw�T�߻���r�F��`�ss�Tʑ��?Y��=o����J��杴�Y�aZ[f=�ay�ʖ����7ד��AZ���gi�3�_d�7�I#Q���!;`�J�!d;/��'=�)+|�}b@�ĖO���H�*�i9Nt0ɑ�N�!�ț��w�P��ǣץ��פ�<�S~�'i��J�"�'�u^:�$�������K����\����š+�8p�>����	{0�=�`v���cGy�٠��~��V����e6{��v��1Ar�-��G?�q�V*����tj�$]�zEl��y>r�666�I���[�W�R�hI<��L�8I��Ƃ���Q<�(�1ҟ�ʝ���:�;X��݁g� '�#u��ԉY�c��H�Cab�U�JP�o�E�ajv�R}o��q�J�Ij0�����I
f�1)W�%0QB8E��Dq�A�	g���?��N�P~V�:���v���OS�g��o=IǏ-�T}���sA�"8���+�C�Sd���h�9�>�@�`pO+ǁn��g�e��AKn�����y'�KX{���L�P�U"=�L���5nq�W��2�7C�@����}N��GlVn�V�q��zUv��4����]�|�*�{�+�܍1�%'�B����X�����'�o�t�巕����  M�sΞ=G�|�;�_[_���L�|�#SL����|
�2Ί��'�x�í�^p���xl���Ģ��z��Q�?�{8с���_�}�s�����et���K���]�<�!x_@��7����m!�x��Cy��#��
M W��^&a�U�"���W��_�+_�*�~�'~RH����������?���~��?��?,�ܣ�>J���'���`$D�:�X�����}�{�́ JP/4��b]�M�m��F�p>�fbly����o�׾��oJ�*B!<{�X6�3�=C���&I�}ʙ���t��E+�ql�� '�]�(��y��Z�i�e,�UQ&9#��_�D9yP�R�	*�k����z�&�e�3t�H�������@6A<|�6y��1�P,��
����D\pP���6Hn�|'��hv�#�ԉ��
�An�Hp�w��6X�+K8�k��F�O�=�8���e_wuO����`�!;�g�f}�˭���>�%w|i��&ϴ0�>n��,�tM����L?u_��*H/ynƔ�sY�9Y��>��%'�-�C}
ɜ�K)�'��l���N���Fy�c����K䓴�Y㵄�"M����I:u����0����-�s�j�1�$��M1s\*��n�q��.�}�._ݠ�^p���Y��Ch�‚P�߱v}��˄q�'���u�=_�n���ʷ�
��M��\���DY����K�뗾w*mL֗�ŷ���yH����� Ƨ�I�$�@l���)�����xggG�G�؝�t�a�Z��8��Ԡ�n�L|�fBpZ~
'<�#����q�n�b@�>V����$��t�Ē��'N�@_|�:|�(�9�4-,,�,b6��d�T��h�ɒ*ǝ�_�-uϟ?G�Z]]Y�/]����Uk8QP��<��3t�����
<=3M���a�6w���y�?�ב6v+��/2��4�[�4�0�q��㾉")�=p�}J.G�^�\� ��:�7m q�Ӵ4F(���^lG9ErP����tq�ۤ��rL�R�	�Ω1�Ц��"�=��Lb�R���X�%�?���]QB��<�B
���Uor�	9���cq�^)����=����BBO^X��Qen��T�\��JR�8�r��s(h&j�~��6�$�^B�쏓�K��0Ц{�5E�(�V�W�(z�9S�
��$HO����^ e�8_������G����I����n8q�^��{	���D&	M�`2�������?���׽��V���;��ҫtӍDŽ�P��0�iM�N�X��.���>�ŧ�a�$I�Z4�T抷��[���XN/��T�LZ����o��o����O�T��*D���W!�>�u��(�܁���V��T�;��8%�h49���'8�
�'���"��_�u1�%��TYl�Qbv�<Oz����� e���+�_mr�X���d��!�y�JU�!�a�euuU6���j���+���NG�n(҃St̗�yy71&������������W��_�_/�����P'e2�Ȝ�c�*�|g�Ѓ'7�F��OD���i�&N��2�R
�!+N�S&k�
��C"3玦̍e,ף�e�Q�N_������Ƙg��by_z�Ss�{QnLv��y$����W������M�?��l���	si@�����';��;j��\�xV�_��lưŔ!)�.�l��^�K�&����
�/����d�7�mp�c�#6C�<��`>
h�F��M!�lb1�1D�c�
6y<��r�7K�q�\s1��}�H�g�ũY�����zi/c�ߤa���R��[;�:�������s-+�~d>��>��8؄�{���>�яҋ^�")���?��ӛ�����r�0�
��/x�@�i�<p���PO;�!��'�u��L�K}�3��'N�f�~^&�{�ň�hw���uCd�;wNʂO��}.�i2�.�5�0Tz1L���X�D� �ـ)B5>%�k���Q�dI�F~��n<�5W�02_�4�vo��{q��%�\�nJ؈���pA���Ӷ���Bj�*��ٛo��N��Ś06>��zǴu�,sV9}��Φ�7s�+vZ�gk�ٿ�>r���El���0j_����a���{ھ�%��uw�M�;�J^'k��d,���9݁OMj�!L	}-���������q��;@v��Y+c�
�
Or�C��
4�!qy �/\� �y��I�g�&�������N����-��BvT+ez�/Нw�N�3�ef�%�z%=�P�d�Tc���,TQ��ZU����%z�Ge���C�h��GO<�0ͱ�����P�r!'�	`簾�CKǏ
@>Y���Q���NZ(���2O��z��:������nmp69m�*��龬� ��Q��e��8����]�6X�k�	T�NN�0��i��V��
�w��Z�n�N��q�&5q��=��o���n 0&�n�E͝�{9�1Ma��O�
����찲���?� ��'h�ɍ����/�Xyc�{u��$#1��/p�<���-�H�Ch�ٓV�B�0\y9�Iƀ����o�Lb��SW�34ٰ��-ȉ�����L�UxB,����QvZL��C*��+�V�%I��`��DMٍ���tQGTA"棢8d��	t�ۏ�r��4&^�s�`�3�~���cyn�0�!K!E��E�p�b���zj��:.�?O���t���
�ޟ={V|m�|�������������E6�
��@��x1�*�YVW�d���x�sz��|��x�F&��,"���XX��{�7q��O<)q
B�t=rrBu{��F�k�b!*��uAQa���n�|��Y^Ľ�/�O|����!}�~��d1����:�d�*���o�ζ�51Y���Ϗ����t��7�3O?C�������;������?�Cr
�G~�G$8�%����sV�?)�:jL�I��,�{L��3��~��,!��c�C��19�|�"�(!��2�烨��^�
�5����(O=�4=��Ct��l��I̟�x�+�T&z�٘�?���
�kT��)bN���կ�}�Cb�s����o1��`�≉	�D�Xs����ӷ��K�o}�[�/})�9sF���F	�9/y�KeP�ӪX�#6��z�bb���#�1��!�z�9\7 8N�"=�
���%
l�
s�Џ��Oꉺ�IQ��^���rhl�����ʉU�XCD��2�?���}�V�ɒa@��ۖ4R�ѡo�p���( 8 ��'x�fI�k♢�����u��>�g�:"<����>���� $�8m��
ox����U񇲠=�Ж��%��D�He!�r�9��+N+��=�8h_n�P����
��
�O�T�px�(�~�J�3�t��H�mo{���K�h�[����3�J�}��!~#���~����/�.|��-Ч@��^�p�4p
�ӛ�$�6�BP^<��>?x��Q^�!>ʂ��>�6�;�6D}a�u��6�;��
��׼&�]��68`��i�ND�Cr@�W*�P����m��O�A�t#�D���~"�6��{�֏�5ðw;+7�4�ߎg�h���o?��S$�6�EZ��/H�˪{��U��
�	SwϺ<$#|u���5�D�����w���0�=-~�s�+����N�2�9���{ݗ��gim���01'<�@�0i�۶I+����*���ف]Fف��q9N}�:
EO��۫�x�!> Ƥ��N�c��'�4���B��[n�)1}�����yx�"ƓV������H/e�Ә�8�JX���O-��u�&]=����2�u�NYqH^Pa.�߉#Ge7~�t���
�/�O��>D'�����S�x��S'OX�ޣ���H@sM�T<���F�0`s$ 4�i€��E_�D�&m���Ng�J0�g�q��3��1;<���%�RP
���)�2�e&H�@L9ϢL&M��qb�R+�3d�?W�g�m�f�&�g?Ɗ����h�٢\�E&�N<D��+��
[T���d�?�@{]Wd��hF /��T��4��1\+�"?��<n�����|�l-s@`�X��I�3kp�L�|X�p�j�:_š�P���t���##s5���*�r�H�@�]�1IUH"C�v�sE|�ưw}�4F��MN'�TA>�r�h�^Yt����e�X�a���	�z�;�	8T5������7�Co,�~��~���7��/?/���hn�X%_��#�r���!�A��Pۼx�g\,��ϋ��o��,���iY���9�8 Y��	s�Q���Ԋ٩�z����~��$]
���+��9�D��?�i9e���� |w|
/�N���):z�TT&�B���:����`@Y��&��r�w~G�X����,ha+�ÝwޡI�}	�AʾE4��3w��c�#��8���~���b�4��\�$;�$���(�uf�!��5��<�%�l��|��2�绀��?�#��1��I f"����
	X3cN}�$>t��U����Ln�s�=2'C�A� 
��@ޛY��� ��9��RC���@.�i�2C��p D������D�@�(7t|G�o��o�����3���a��8�G>���9�"'ny�����(��
傞�ٔqq�HeF�P��6@�ȸz��1�M���4]׾������'@�`sꁍ1(;�rl��C��/"|���;�n�p��m�vCA��;��A_Ԗ5Do��i�ːV�q���eD>(7��?��?�t>�`6y`=�ȃx��p��
��?C7G[�XCG���[�/�;�xP�
��`b}z2�0�D;����=pyc���$��}��ԩSRV�ԧ>%e1���\)#�� Qv�
�
��D~(/��'��w�D_V�1��kҕ�k4�cU�8K�m���K�;u����r)'P�����Q�6!旰����m	f1;?Cy��������i�+i�?���qݱ M�Ǎa�q��l�q+
X����w�l.��V��14�?KF! ��㦓�S�q�»�<*�~���'��ﮤ�Wi}�
�;��1�ׁeo'���!��;o۩9Nu��0�;@vا<�σ4f�C��
p��p�C
c����<i�=}QʉOL<����'�PI@�+yƣ�y��̃0,�3H�\ �H���f�t �q ��A� Lu��h�r�<� ��O�1q���\BVT�ڤOLjg<=tPH�P(ʚ`�%v
E+͠���P"}pƀC�6b� 0�%��|�Eڠ�0^
X�͉��"?pz P;s�����&"�ػ��#�0���v����$G�Z
<���S�t"9-S`bl�١^�#��b���I©�+��'��Yq�Y��I�zM*qY�?D�b�v��wLF��<q�˙�%Q�n!��Q��FV}�� 0/V�w.k�V	�/�u��a�]��܃�6D}s�7q`�:�\�{E�a�V���sx�U�u�4�[=�#�ž޵����La.&�� �f��`,�
�z�;��X��H�~�O绿��录� ��j����I9L3b!��V_�5��������Ӳ��BL��ļ�'�8�4������o�5�:^�b��SJ ��[�E�gy4���|
�-�f�b������?�g �k���{���r���cQ�" T0?(����.;�Q�c�ĉ��S?���QN�7���ˎ�ٙY������?$3,H����2����WN����}T/b~�g~��񎷋O�{1�(Ǐ�����n8%�DP',(_�WP?X Lq������OCfl�*���q[}�b�h���69�'���>�/9J�`��j���|Qz�2[FXs�e,c��`�7��`-t�ܘK�W�L�9��:�}��k��`��ނ��kp:�Ul~��~���<0�cN�����o�%Лx�7�n��9A�SHy�
�
��l�w�o�eN}P6��Q�����v��z�!���9���P��|�7 ���2u��2#oc&�6yeK�&�)/��}
pm
�
�	��P^���� x6hk�	�/�@��>cN�"����c�{�lx1�2 ���)p<3<��3��ƴ/�B�C�����vFX��r�<�MAb���o�FI����e�.�"�F�M?DX�6�~���d1���O�@
��+�C�}��:>�
�@�
���aꀾ�6A_�}��/��A�Eyu�o<�3x^ t�n8�{xg��@��]Pn��6�e6�>�dye]N�_��"&���
��$F�ۢ��&?g�V�	���Sg�yu�A��㊫���C����ub�ktq#��mT�–4�;
DwӅ��9�1�u˛UV�<v9�p��B���`�Fn��o��auJ+��vA�6�g����s흆���g�-��r����oZY��`_���N��9١�vHlf���Nw��%= �n�YفO�K
�W���u(?pZn�ä�ms�������;
r2��,q�r�5��	@���8R
`�+������}͐"��a8��؃��qT�/UA]'d�Y-v�ǔ�f&�);l��4�����`PB��6fe����we~�g7�+iOZX���}yp��!�uhg
g�A�l�w����i�5�)ߎ��ۦxj�N��T�����Ԭ_�n����E!v�䈩$�vv$-���H�s�<vN��p�'�	�|�<}�O~�
��d�ŵ}�i�G��ӑ�2�������O}��W�ыo��#��f�H�B��lcW�yA�Iq=�P�@9G}#	C�?��H{D���Q9"c���*��~�i�%i?Ĭ��Q�.�3�B(d[)�	8coqwX��Bfnv�߹E~��R�����w�-7�Do��׈c�\1�W@�Q;6`���G�����P�\ae%���?}7}������ōŔ������W�x�j�/���{�R��KK��QԿ.ĸ6�d�?i��=�����($���0�!��j,��>jL��c�bO_��O+��c�i�Ԧ\�mf�4JO�����"��ȋ�� ��!6���M*5�;G�k'e
�
n9����1E�#D��>���c�C|e�8����iGs�cAh쌛g�/����}'5H��-N%V�2�<g)GQ4���=��`�$|l.��t�,����X�2���e,i�������^�~\_�:Dt|��I���d>'J|/�~a�n0i�v��52�Z����*��oĤo�|�,��k���\�Ѯ�	o�b�=1a]?%v������J�6,N�Z�n7�~.Ʒ��Nn|��v��6w�6>��_�豑�����97����m��gmty��� _���{���m��M�������m�K.8h���?W����-��ڣ.cj�;u����V%&9p�#�T�(��SG��e��U����/>�����W��q
`"�г�Kw��%-��n��jں��Ӿ�1�~G�&����ꃵ�o�uå}��eic��F}�|k�ae�cXY��U��}�b�!�k��?�S�Q>��op�������´1;��\k�q~#�vCt�Y+�1װSb9+�!&�`ꊯkȕ�V�`�p����Lz��3���1ke��eT)�DM��&@F��p�`I��&�N[9��kg_2�ő�ђ)%+����Z�0�����Q�X@1��b���C�bU�Pv��,S7���#Nl%�vV.&�B�H��O����*Rn�a/�OY�ӱ��t1���'|J�86��U���ڣ�Ѣ�R+.S�R�עZ1�b�HA�@��6mo]���:?�U�9q"^(�yoGȯ<�3�KT,��$=O��-:��3���~�+�tb��}���l�ao@��r��&���L[++4�m�OFD=
����Th��{�)0$��c��/�Q��l�C@�@X:y�.2K�G�Sv������H�t����~�G�P�3�F�c����	Ap6f�6��#�+H1[ŀl�Y��n�%�D��$R����pN����~�^�0+��\�2��o���a�7K�T����*��$@����
,���v�������i���B�>A�}�����0@��(7`G�w�洘��T�"�+'V���@�	���"%�t�	'k<��B�,C�&�ɥn�"�$C������g�����!8�nd�a`�
�QV��v��2%eӿ�ۿ�U]
���X�2���e����f��>���Bl`�|��w[0�M�&m��IT;��qĜ�6���|�M&���{Pgt��aҵ�5{c�o�IWu�
�����|w�]�+�6����7|�����u3�M�u[�HI{��Cv�b[�}]���5����������&��ߏh@/��v=|�\p�]��ͳ��%7�D���i�ϯw���`<�N�i��ݥj�B5��%1��"�8y����Pc.!-< k��4�~'��9�}�]�œ|�i$��_��r��fiu4}+k�q��{�?�^��嫟�/w����Y��WF_zn[d�=C�=G_���F��G������o���#mn����݇�&9�7>��Î��8塿'�;�3b�#��X��DRK~�pZ����mAv� ;�)+��[�<��rZX�5KL}X�'��f�A�{{������$�0���"C�(F�`.���٥���ծ]�7�p,@t�;����ƺ2;�� �2$�f�BMҊt	�]��M�D��6ϩ����6���
a*>Cԇ_��>�Q���rY�������ehGJ��qF�}�)gMI��*l:�Yy��ܞ%�\o�3��Sئ�c���b��o�	��9�8�dH~�f&g����3ڣF}���̉�nQ��g�8CO<~���ÜO�*S��`ƽ�N�MM����Ew��j�����ݍ�c@��K����Nʏ�"=��>c�6%��MTv`nɀ��;P���mCf�R%Lu��(H��SByM��?��8�=n�v�d�'~c:��!�(lF!������zb+Ge��m�����,p�mS���H���\��d�6׮e�pæűOw����e��-�x��)M������%�y ����|�+_����o�M�	�$ ���q8���Dh#Vډ����FLp�3����66f$m��YI+�2$h@��w
��W��]�������?3�ɛ/Ϲ�u7L7nv�����̓'͟ߗ���w��C��~�L匛�^(ߡsC���ZB��N�I��#	t�lq�d/a_�2%RK�$��9ʻeJ��Y�*�w��H;}��$'
22��8~��*}/��[�0	�0	�0	!��=@�>Y`���:�0(�jU��Y��i>k5Cݴ�r��J|p�=v�`�7��ǮF�B����*�[W�ݩ����4Br�����'y��km���|m��m#~9ݺ�I��pې�f5��2��j�ڸ.i�=�د�<���՟ۖm{��ÄcQ�����!�
ߍ�F�ݔ���V�ְ눹Y+�k1�Yk��}����'�u��
��<Fˡ~j�yi��n��cC�mp�,*�8y�_��n�y������O�O�/gQ������y6T��3�4���o*[^�r�[B�l]��Ȣ�ՖCu�_T�>4<p����ִ������X���_K|�N̍��K�d�KtX�����y�r�9r�b04t�i
������������Rf��{�BT�+e:u�8���lf�1����O���/�mAN�2i���j�|(����b���������̬�~�}�'�x�>��������|ذ�箻��t��5�A	���_x������>u�^}�5~P��Çhum�:ݞ�!Ԥ_�:���9!<z6�<N?�l�$4����`Q40��k��Ф띹�֓���/3M���7�^�矽A�]���"�>�A�V8�<6����lTf��ק�kW�M�R�<ַZ
jp�D-���u���_��~�Y�vm���kt�EԨ%To4�D��n�#�����6���S��˗)�$�jT���Yy2��h�J���Ea"����!��[H��b*Nwb},>0L=�Ux��D�R"p��ȺA�ݽ#�T
�
/���6���z�bb叻m��,�tI���P
)S��<|��o����$:��Eϐ5$�$*�%>	���.�����$�/��3D�H�ƌ���!���̕2Ĵ��JeS�4�h�C�q�R�0��	�P��ɤ!��2`����:M��K�Z�
�/�y�C�-*��$;WD*K�N��)�p�u0tn󍝔���$�5��C{�6e	g��P�o�[�I��I��I��P�?��f$���|O�93��ޔ�)m�A���M���E�U�6��&m�H��<y�H�s���>�'�9��( i��[�Ek\�ZpV����Q�]�{瀏?]���2�����6�o���6*/ڛ}�
Є�Z�V��ͫYs���y;��'�Ӓ)E��&� �ݜC0��~�P�.3�Tn�E}׏�����>z6�o����;^�¨�(��K�5n}�i���+*���S�=ǭ��q?�����
a�3�j�����'���o�'�q�q�7=�����?Dv XsV�w�a9�1g%����@�f�@v���{�^��5k���Hӳ����ŋ%.LZ]�v-1�	ȏ;-7��OP
��7�aLUU�R��c�?.ѡyq����8���7��20�=�@w]Z}��'��h�	���m����T��'�67E���_�p���Yz��W��X�����r<����矗	���2m�i{w��~�9�b�e���}�A��׿�$�Iz��󴱱!Ϭ2���i�,���_8Ѫ7���B2@��/�@��{YZbP[��j��ih�	
$.x'��<���t�~#k^�`��+�Y0�G��!����MZy�C
b���m����c�4ӪR?����%�~�u�����4�q���{s�*%n�S����_~�>��.��F)�~���Y��PQ��m:�x�~��ro���X���6�UT+k�1�%Jm?^�v�PS�ա��ʬV#��jqaG�0�&*hl�|�RB��$�1��1��m�iH��v�`�	��̈@L�cH���U�UQD�C�(����Aa����ƄG�I%�5�3G�/(M����wv8H��x)By���L(�>'ʼ^%�\b��}+
��p��&�@~���_�@���L��DM�=o�V��<
�RXK.��_�|A��Mi�~��kɪP9]�X��<��?!�I��j(�����y2��\�e8\��M{&a&a&Ae8g�����l�N�����q�H�~��x
�`-�s��u 6��Y�M}p��ㅅ�Ξq
�!-�DZ���'�xBLP۝눏�y6ֻH��2`C �[@�S�����_G�(߭��*e�7��E�8�5����è5k(~Qz6�Qi�5~YBi����ԧ>%>1�M��Q��6p4�����pb�o����89���s83�7�cp�M�x�cpJ�c�i\�tI0��/��sr�Y�s�]�	8�S� ���hS(?��^���m�F�u��za��y�_�}8v�;O�[h����@�5����9n����D��u�8�Ly�/�_���|�ֻy��^�8����)���5^��_���u��7���¨q5/��6�n	����o�oT��A��q�a��݈0_�8��!�ׯ�5>�x�Vr�nMZY�Cv��H�"�$Lx��ˢ����H�'"yoF�C&��j�*}~�e&3������c��s<1B�ba�u�=1Au�m��&q�3�4+��.�x���	��5=C����ɫP�kq���mZ:r���wi�5#4:����y�����u�ߜj��8���ELƔ�d�a�7��'� 8����@�I~zf����o�}��'�(�<q�p�f�L\�]��.]�L\Ξ^��I�
��K�����7J��Th"��:��t��A���&m���������ڿ������~"�"�j:w�$�e�۾A=h�%j��6�i��.�X}��/�׾�
U��j��|��8��2�.�������ct��"]x�1z��W�x�Iؠ�v�6_���[�lӻ�]�/q��h
��H�Է���
xg�@č%�x�@$�G�1eU���Sh0�?(���*�AQh�����w�m��T��q��T�"M��*�CID�
�q���������/m����B}۽��ʰ�`��,��
�l���n��PQ��$�}|z��sn�!�Tx�Qqy��)D��ϩO?3���e[ͯ:�q�ߣ��1�ܹbh���z 3�Z�T�G�q���չ�$f�M#�YD��/������z��I��I��I�aue���z����������0V�\�B��7�}��'��ׯ;B&X�#��:������5@�?��?��At`-���}�>����T���1��������z�)���o��O?M/���X;��[d�?l���$��z@e��ky)�+��"dʂu��o-�+Zk�� ����׍����m~ZE釮���_����=�>T�Q��ϟ�k�d�-{�1��o
�mhG��~�\C[@�y���:{�,=o6m��wF��5�@�����9�-�]������=�m"��"h����賟��,��;�#�md�o��oҟ���{�D_8t����r��� =���Rf�k�'�!ʇ2����3�1!<ޮ��t}��m;�������4B���h^����>V7������IELhl�����;2�e�ߥh�o�����E�x^aE�~�~y���B�n�W^p�$��}?����ǹ^N���Rg�c�&��<�n���D�
Lj.�BN�c�����+��b�
�F�C��	/�μ@|���X����PÇ�5�؇��Mj6Z�����3�	Nb�ӧ��L�
G�gD;���|P�e|�s<�;ASΖ������3剷Zߕ8ȣ���T��h*�|_��r	��}���� )>��?#̹��,��Q��O�^�W8~x���:�=yBvEh�L�U
VC��T!��`<�F@�9�q�����~�$�ً&���s�gCdG2�4RW�����b�b��uUa��I�v�h��x�ɞ��}�{k��7����1�L-�?�j��*�w�R�F�ŋ+��٧�ٓ��ӗh�ն@K �
����4UվZ~��������<G���ݦ�ZDs5���{1(Q���:�*G��ŇG�T�C�91��"�GYO��1ua.kPU[��VV$D�2�%�)M�D�G�t�|~BRE�~��J�T+�uh��6Ȗ
P�pP����Y2�;$&��m�b�Q�٤�s<��v����H�ɽrE�K��&�I��y@��EZ6���]t�����]�;�A�_��&~��b�/�_TBQ�vmƙ%"��6]'�G~dd94�[�җ&JLD"O�q�(J��8{Vi�@H1��+�('� DnY�#4�'�
M\��B���F�阮9���6�e]��m�tI��T�ä�iG�#+4�>~��ᛓ�l&a&aF��G�2��'"���z�M7�$����f�%� 6`�`-½��+�{���t`����o}�[B����G?�Q��?=�� 1������_�E��?�s�qo�� Q����0�@��	��#�����/}Iʌ�(g�b�`�
�7�|@,`��m��9W��"�!�0$c�B��9J�{ֽ�ɯ�k�z���~�焐Y-�?��?���kzq���<š=C8�X
 �M	�ÇzH�0�H���ߖv~�=���K��K�/�ſ�M�hSH$�`hw_��ׅ<A�hC(3�G�F�
%*�ZO،���g�g����/���	�}�{��?���w�sh{�i"�Ixkac}K6fC[��_y��\G;��pn	*k6-�4�]���M�>3*��(N^(�ӡ����BkZ7��w�+G^�佇�	���8���}�y����F�ߍ_�=�|G��;-�Ϳ�9ԿWT?�ܙ7W��6����ޟ>���y0%=��r97$�L(8�~�:�%�)+86�9�$�@B�/�%>����Ґ���������l2���M�D96Ne7~��Q�}�T~˺�L*h8J�,گ����aԊ͊�*���Y��T�<xg~���@pY�,Y�����$���y�ZS�'�rș�#�Zխ&���g�q2F�Y�&Õ2
$��Dp����PC�\I�^�Ka�\�&����ia�IWW�X ���.�YS�^{�GO~�u�_��u~��fo�N��dT�I�5�Yۡ6�+,�m&�G��'�d��'k\�6A���r�T�R�����_y�~��?K۫��[_��^�߂?��;燻�|�I�
�4�6���
p��I4�h?~��K>�qR�ԇr�%�mԆI��
�(�_I;$�d��Jm
�4Z��
Be�t��0����DZη��Y҇�������+��HY�ƱIO;1W�AG�u�]�I�w~	~��[��	��I���0��T���`���O�COEҧ� x,E�y�ofԖ�J��}3I>{�_�!��aQ�3M�Ʊ&��y����V�i�i��O�8���2��'I2�%>�ohW����4��w�`�!&���^[JҚ�"��z�t��o��W��B�2aw&a&a�p����0�Ú��
`fz@L��a&
� �ahb`�=�%��Az�ƚ��d��qy�v�m���u/��8G<<�57\�Ny��(ʅ���ñf���2A�����0g�<A�`m�tp�]���� $�rׁ�(��Ʊ��@@�Z���^��T?NQ(B��s����>��������'>�	Y���4(@X�9|k�
�	`4H
�b�z����/Yҷf���Q��>��@���A�i�\�An �yh3h� 4ЖQh�h;0��
��/|A��K�<�x(/�A��#���wh�����g��<�M�[+k��l��܌�c1cM�L��bʑ��t�I�
�7ٌ�ˠ�|��+��i��c�i�ݡ��
�b�V�Ǥ�1גlQa��CcF�yh��������P9�kEq��7���㨺t�
�7����=��o���u���k3�}��1j�I
E}3�&BsV��:j�g2�:�&��5k�jw�考r���iY�czz:�.{n�ZY�><���eǬ�Kx�����_z���8y�Oce���/LB�RbTk�Z��TB,�l�2���e��!$a�[DI���3i�;�I@��"�w0�M���n��J��oW�g5f�O�u��v�F)t�L^���v�/�y�sT�����bk�\�A��^�r�J��n�o���C��;�跞�-^$�]�x�������-��J� 榺�7虧�B;�W����z���3_g!��W�'�X4IJ�u�0�5�)��,���?�}�ik}�>������i��G�ߧ�3M:=����ˈ�
�V�&�
ZB��oS�$D��N4D[4m(���*hcd$����������&�W��u�Vu1�
�V�q{���63]�j������2u��-~���-�r����4��Y�٢�=�}:u�}衻�Q-�fP���u)��ɮ��Lz������:|M)�k,@�3��G?�S�txAܗH��R�VT���/�>��4	��G	gn��g�I;p��1�P����+MW�(M�A����+�
�H;��u��!���HR!�`K���36��9����+���i9��cbc?J�c.��������ۯ�t\J˕��c(�́�^6�	޳Y��[uDn��1h�ڭ_;�w��l>v��p;p�?th��&�'a&a&!?�3@����Oΰ��@V����e��VƟ�x�=G\����eM���D'@_��Mq�}[.��A��x؝���͉6m�6��0��'6�w-сx.(�o����ۊ�hV�f���_��Py�d΢{�� yZyͶ�<Ǻn;���va�ǷF[*J�m�Ee��m�@^���Ϲ�|�3��@Z͌P]��]'�n���o=|�����m��Q�Y�ݍ]J`�Qg��F�~�	��b���-���ѓO>OK��l8��:��:�@��.-;As��Yߨ��Xn��~��x�~��<���{7}�T��q0���g���W~���Ǐ�=���Ei�s�M�g��Eh������^��mCV�� ���[�Q��1��2��蹼{��D?�8������|ف`MQ���d�������f��I+��o�YP]&;`�
���f�������'O�L�a}x@���
.zbNa�N�{�#��b�*(,�܊6�H	��I�=���1BBd���8�֠/�5_Vi9�$1d�dA0¨�1�n#����ߒ&�t�-N��/)#��(u(���=r_�D��~�>A�q�	��
��EL�3f\��6%:4ۤ>�>�6�_��ov��*z����~������x��,m���57�D۫z����ָc�7L��`���9.�
ȁ�>:M�?�e:��H�ߠ/�����/�FS������&G�A$�����X���.�	�l�����N�N�X͐Vb� %ژ�Ef��~$I����G����6�"�0��oE�V�6��᷆�����t���}T��;�[R� �lj�{TE<��j՚#J���#H[�]�x����&������F�1y�i(�Т�%ʛL��M$z�������>�涣4}T�{ٲ(Ի�eZ%�D�j�I�&��s3���
�'�?
L/�eY���E
�/��
�u��wQib���y���إOM�p��?\�}!��\�¾�!����n:H�|�}�L����.Wh���C�d<��I��I�����ߐ#�<P��G�r�H����^^�t|��]���| �:7w�<��=.{�l�y�{�{�*��[��y�1��C`h(�P9����%T�q��!�ڞ[��-{����$�%@�2�u�_7�m�ۻ������_���뾓M�/��P�Ɲ��`q&�^~�U��;���|����&u��w*�J�Kj�TJ�ib����M7k����MG�_���zƆ�~�m����cT^EaT�Ce'���nyi���w�{�ƍQ��7/����'���ඹQqB�v��#�:���EeB~և�2�14;�!&�,����k{Xg�n�A~������f��Z��+�7��C4<�Hx���@v�-N��ݷk�T��e��Ti���i�f�E��h���� �Liԫ�R)NB�v"��������͔:3wp�ۙ��-���HdH
��~Ovͷ��Cx7��6?ۘ��뫫�jMQ�A/������ NAv�� ���AS�S���CM��@��#}�}��ot��؟�Fu����1�����R�-����מ��+�����ٿ���'��,=��k�ۉ��]:{�E�MU��t�I����;O�?O.��wa|��T��j��,|Ub:zl�~��n_��*Ӌ�>G��������U�6����]*b

��׃�p�0m'Y��dL�X�.ҕ��/���]y�S�Bv�ƙ���`�ʚ��(m��w��o$��sf�3.���وQ�3*K��{pD=����ؑS�'L~Ī��\q��X��+�}05���T$}2�)?'��X�#F������`��x����M�DZ�<��Cm7�n�Ee�z�	V���•�|^6}V�<�J��o�U�xp�EKO2�މ�!���i�x>%��Ѥe�vHHL�LR�MA6[�Y�w_]
�aۆ/�7weǮ}sI��ٟVz]��S�I��H~[r�g�=�?ɾrM�$L�$L�$�`6����m�T�X�����5��O^�@�_&���{����(�/Tn���n��������Bi䁘E����B��[^7��>����}�H+������}�̳ϸ�Cm2�n^yu9	oO8y��lm��M5���N�u�X�t:Lx�"�U�T��-&t�-gg��I�K
��sSj0.V���]���=�)7�/ԟG�/����5������BrC�{����s����K(�g��v��8n�|
�9�>��3�y�ۅ�U����ng�����	�s��{?4��ϸύ
��Ø�J8e	���%<����|w�����Rlmmɯ��H�SVi�@|�8�˗��������i�l�}c��g�/&|���i�/��̌W�]g�P!:{�mlm��E3���ƹ�Ή��i����45�b`k�N�<Ess����
^:LG���K�E��*�	��=&E��N��̺�M�k�1a�f��ڊ�<y�^a��ĉ�R��~�kt˭�0)Q�K�&<��/�ѣ�Ğ�΅ץ\��w/ʹ�eWF�I�u�gfz���y����5�?��瞡{�H��+y���o�M��R��J�Q�!��!0h�5|?
�?Y�2�(4gJ0OT�u���S��:t�V�ş��vn��x�Yz��}�_}��/����5�g)٭�����W��/	��-���:Ԥ�}�a�����b�\ݦ/|�;��ho�bR�=&��	�so�ؖ00L��Jɹ��C/��\8 �<R��r�OH�F�Y4��X�`o�V��ԝ��W)���:�~6x��r{�6K" -U��.)��*�2�#�2�3��(|���P��	2Nޗ��>s�5N#���R��f��NH��A�S32�U��wz-��~�f��AT�5��kn~�[�qt�i��'C�O;B'����UByk�c��D��g| Y$o��A�ߤw�Y�!j��1���;]r����G���ǭ�m�
�CY���~t7;sm8���4��ag(^��ڗ^��Q�q4?�Q*'�0	�0	�0	��>�SB� (���	������w&�g�Q�oj��r��Iߍ_��J�(�<ٵ��;���8uR$ߏ����퟿�@Ÿ��`"c���f��y�ߨ���y���ars�Y7E"}=5ݣ�M�C�
i����y�]�~�1"ԗ�xE�q����s����YDH��e�?�.2��c�M#��Q���q��;=o��k{�0�?�����8�9�v�������Fb��o�V�Ò��2�X���a9n�N�A|�˭I+��=�����/��bf>����-G@��@���҅�_��#K�ά�L���ܼ8Y�u�4��++7huk����iii���3Yr����ڦ��]��ׯ���:�X_��V��E��W�L��"&�tksg�^�g��cgoW�O>|���x�^>�����V�sYbZ��S���-���AS;^|�e��%���c��i����2���"���76��ô��!i�y�ݚ�a0zkw[�4`���v9F�g���Fay�Lk�!�+�SX����^A�c�2���ݶW���hf�4=s����<D/��
}����G��E��ڼ�A���]�pE�V~.j�8;M�N����G���y{s�}�g����˛��!>`�0G��e�Q_pT����."�κ�r��L�T�h3��t^�Է�80�DLt��Đ%�>LY%L2`�J�k͏n��GcU�68��R�m��	l��d�T��1�7�0XX`7��6wܷb���
5��R�7�E�huu��]N��'�Y��h��8�۹�N�;;$�G�'v����$�����p93M��x��X$��^/},�#�v�hP�!!3��!#���
��@����RRՌ�=�ݲ�פG�ݡ2�>���(Gr��ogPe		�d�lH���zT��0���&���C�&q
�#?}?d�S�Z-C�dN�??U�G��'4Q�I��I���ha��;"�����1�DVR�6d����yTw�&��
k�Ndίl�P�:Ė-�S�L�H�J���iWk�'�����e�ɟ�|�w�C�<�f@�"@0t/¸���0
�̓�Cׂ2����41V�3�2���ϓ��kʴ�d� �柬a�� G�6?dq�Gvͬ���q~��~{e6l};w=�����\w"����i��r1*?�{��s��~�ye	�Q�O|�aCi��$�Qc���w?T�q1/}7N(�<2"T�q�ο�������?� ����B߻l.��"����!?�Q���!����o&8"hw�5�C4=��i�������i+���9�hv�����hy(o��@�Qe@��=w�I����W��y.G�Ѥ2�[b�`Z\n����-,�Ӌ/>/~2��Vk����2y@�ToT�/�+��L�O�M���-R�V��ZO�1f���e�"b ��_C~�g���S���O��Vر�W�3��a}}]
h� l��.���������cG�
�S��x^!EG���g��
8���b����[�bԞɑnL�Y�"!ӏ����/Sc��0[�����:�3����K�6^��k+4}d����t�F�Ww�K�y�v�vii����%����V�E���M�Ѡӧ뗯ҫϽF^y�.]�D�_�`r �J�"�!N���kJ @��8�N�#]��H��� �^f�u��N�y���Z���c�'FWN����=�.͢���]���G-�=e+�&�w�%�nR��B�egs
V�$��]��=���kRF���涠1�g�ڡ:����&���)��1A��s{���'�{{m��#�&���2�v�C4	��
#E�����gӴ��|��2ɿ�����
�ϳي�.����c�ȜD�B�Y*]�Q��+�ZdKKN�-�D��Ӽ�]D�eA����%�(6�G6���W�I�-^L
�TC�}�/��	���n�7�/<�
��Y�Kg��p��j�}wS~�I�t�v�}2�H�3	6	�0	�0	�P��d�H�eJe��Bb�K��Z�J�"�8QV�Б�I�7�)Z����#Z��fy>���P��SC���:O4��X�'�gB����X��0T�"|�/�Q������Q����_~�n�ʋ�%�V�&E[��I%��(�	�5�i��=��ad�Y����,�#�(m[:7�(Ǖ~�-'˥82�&��}�l�e�'���4��./�~�|!�hX���-�FX��Ce��!3R����!�����t���?��xE�P�h,��!t/T�q�Z��h��ǡw����>S�)��_��ᠣ���1<�t������k��ͫ�3��r�䛸Z֜�QYsV�44=�ׯ_����aӄ������ba���
k�
�8g�?E,`~	�;��[��ZcB����+;��_���u۝�n�Jv�s\�)�o���t�M7�w�&�3p��a��ֳ��a¢������mQa��7��_"�55%Z#��Y�8N��hh}0���ũ���5�
�{x�9�=~�/��_4�"��b��M&/ffg�쉓���#�Q�[�o�߄��u��=��}��u���ɧ6ǫ����4�\;.���Q�f(��>ob���;8����A&���k��8p U(���K̩uw{��q�n\ߤn�G�&|�4�_Z�#G�GN,:Q{[�_.1ѱ��M�olҕK��v�	��f��T��qb��Q�13P�T�By���W?�j����
�6�8�6��e�
��f�c��x�9�->�����`��ɟ]��9���\U�TW�	�*˪e1QU�-~�>|�0���h���&��z�N��ՙ�(39Q�h8��k*�؄�*n�����k/�O=�05�g���>����C=H3�-�ܟ}�����[���f�n��6��wG	L��{>�8���Pj��sP�ǟ@���F�.xN�q���4��K�}b�MY1��F^,l���@�I̡1�.(�A������ф�6��,0/@�gLz�k�!�{�}C{�������@[�o�oN�\DN^�<���!q�ĉ�>�f
:ٹ��[�,�K�=���&a&a&a��$�:C��u(2��csnADKH�&��׀H���)��2�f�J�fI�L6SχnY����D�sbs�y����Lc�]0q(������	�~�E�(�%�n!Y6��/G��T�c����s�w�{���eld�a�`���h�J�7��3���p���%N���D�
[T
�b�\�h���6�ʙYs��D�?�H���cI�o�R}�I���$�����k<��(Ŕ�$G�7�t�c�R����P߲!��Ȋ&�Bj�w���"�6�g����Gas�{��|�집G"��ߴX������
}עw������������7���7���u=ntC�M�?v�c�J���"i��r7���8+�׍���~<`�	~<�䈠�`�Z%�+iŸ��������w���-1�ۨ7���tILi��ƃM��C��o�צ��1̓gj����6U2�Y�i�`<��$����x�N��fs�L�IV�-sY@F@���<��ߟ�]� h��KToV�ő�E���L��1�u�ˇI=��lY�/W��������hT+��zMxC���T_T�HC��P�{��	���/��6�"�{�/�L q=Q����0��DUG����\�#�R��ޡ˯}�JZZCi'�
$ɷ�e/X���<q��0�DE�}�0�u[�r��,��,�b�F�[f�F�2�ڲk"�[�)m�£\�(�1��Ӥ�s�_G"j��
SA��27�}��hԸ]r[�����Rmk�v;{��q�L��-���4�Z�|�Z�����$�@��3hx�k
z�����~��dB��mWq�]��B��7���b�.�i�%�En���hy�5��wv(�B�T�8a{Iф�}�<!�/�l��8�/�Ư�uN3�sGlWc)��Ծ>b[��{���P�, OiZrO���Ց&�������%�U6
��E��L	���pݹy'4L~���'��ᓡ���MX
K'��9��
-����±5�֓-�;�&C���dE=	�0	�0	c�t"�*χ�ۏJT��M��^���uR����Z �
S1C47�$3)��*C?:g�R���$w��N	�(�)ʇf�z��O�S��K�l�wf�h>`;��m��tC��hW���w�c6~޵<�xF3N��<��| 	uae�n�ɷnB��Wh�{�w}�T�'��D�6�}�u��m8Y�SY�h�D�<��F6�Z��'Q�γ483G1�sk��z�&�ܵ��r�xmu�ʌ�Tz���>_�,��
��(K���$*�k������g\BB|&����F�n\���](���~|7�q��}�z^��1?��Ei�ױ�G��ڔ���-����U�|��p����(7��>~����8�{��/c9�i���[��[r�uZnI
{n}x�SV6)���hs��q�CLY�����N���t�e�#h�̤���x�hx �&����Ff����)��	�L�Ќ�]��A)
2�Z��u�ד`�v�|d%������>�����=�^�$�>+D$�v�� s��Q����zW<�	u%��p,�)�k�q,s%iR�V��\�*4Y�C_��|Q~�K��Ky3WXI�vĿ��D�nd�LZw֔
�a��
�$��(�VBL�]٧����"�;vh1�_�1i���du�����k�C2��(>�2HŔ5T�2�8�:��&�z5Ҧ�"�&�d�Z/0��i�+*OXT�n�Ę&s�E���t��qv]j'�"D"�e�6�"�n�p�^g!�ߏ��T�T����m���pBu�,�MM�>��:�%&
;ݶ��
��~`���m�>U��T�쨢
s���)��
F����Oj��B=�*
bt���0	Yz8��i~h����M��![ь?��C~�E���G��q�$[�~JH��3QF�Bi�f���Bj$�63��z_����)i�l"����_ɴ��[;D)a�1λ
_�q�.[���A��/����!5�㧥��%"WY"�^�ᾷ�uo���#c��ց��敽g:7��qz�ҩ)q��I��I��I(V�c�O+���4����ԕm��Je�(�&E���!�E���`���׉�x�u0yϩ�+�+�}��E��*U>�~Z�/?A��y]v�lEpXF��m\0���'��-�By���1T����gB���9
\�DKz�qy���O��J�mj��Rm@��S7�9�5'C�0����p��D܂��{���;d�]^�_�W��#��OR�N?���^x��
m��Ȇʗ^:/>:���m�v˹S�ҋ��������R�סË���K�]�"*t��)���u��U��sghvzj(�<0�Jm��s6��y`���+O^�n�{?ݼ2��g
=�7N�����8aT������4F�E����*:~+�h�Q�7�yu쟿��?�[��Av8����տ�W#��r������ 3�g����ݡ�:��+h�����7߬�!���Ltش��_��a��r�M��
�K���T)��\2�?�A�=2�&H�t�ex]�OL
Y�/+`���H�ـ��}��I�d�oU�U�ɟ�S��I"馦�JV�
��Q�GY�/p��
ȕXL�=
�3�o��o8T����7'O(��Pdv���e�Lۍ��LL��UT�j1�_��\�T5���%}j��ޕ��}`d.�˻b�*Pm�8Bd�:LWq��9��Qbr,�y�i"K>s$��|6�}' �ʤ�H�sN(U�Մ��*4��y58AV%�֩�kq&L�?���GF�D��qAǔ���EŔ{]^tv��K�V�o_����p�J�c��y9��𡈗f���
.�	��&YJU�V�z�)H3`�զ��$���*B�$�Dl���ݴ�>j���L�A�Uf9Ͷ�\:����Q0F���E1���[����	�E�Ɖ㖃��i_9���'J5Ҕ!�e���3�$�GQb�L��W.�d-�/�c7��ڶ��TQ��������%�ݕ����=0�h�=�e�g�����Mb�%2�k%�~Z�B)��3��f�X��u(g��
�Ac�ʮ��K��th{�.�Y�0��$L�$L�$���/��+���]��Ejż�)�e�*S<��aAf"�m�f���j�F�0�We��'����7~ʇ?�lA&�H�MR�DQbI�Q/Qn�15Wz��_�K_~����M�-�y}T�撓d�z2Oβ�\�oHA�P���M��D?NQ��K?^(�"@�h}�?���kd��%��'��%��G��:6�bm��Jʉ����DjJo�Mw�Ho�Šm0���H��̼��.�ȩ�Ot���0�����d�.�n�*Ϳ�C[���ӕ�<CG��G�vL�	��6knz[�I�VP�B�(���g��V�.>d���S�NЍk����A�f��V���M7�ϞgܰǸWL�;{���E���	���6�q�
��Ce&*��̺cGhmo����w�B��57v���㌁�2���8�Ͻ^T�P��׊ʘ����;ѐ,j'?�0
õ�6�k�|��?���{^�Ò6�1WEև_S��p�=l0Z���-��\���������ט��V6����I+�*���������־�yZ��'3�8��"���Ш��M���g�ٚjI|k�
/�R��a�
�0[%��;��4՜�>"@{#1怌� �5�A��\����kȌ��m�fv`5�F�F~���`���f�?��i�b����DLp��b‰�={<�W�����}U��Y�<�2��8�⦦f��X`$Y9b%��8\#�x-�`��d�bBiA�n�.mc�yaRCi�
~\�0�Y%ꈳ�c�&�Je8��ȗ�y�(ہ��
���m�g��^IFZ�R��	M���&���x�0=K[�u՗6���P��h�^���mn�L����r;�*�E;���
|v��xns�Z뵒7�IS��Ʀ��Z�A�FCء�^��2�Cͺ%0ל��<��_j��
MBq�7어����{���Kz1Q��5h��H
-J~��;@�[��&��8cLx��9�l���}~>$WR�
�&=��e3����������Oe+2}��%L��!
2X�_��7
{��8i:6�g(���/���l��X����Y���{ ~#��4��
���Gv|�aۖN��^{ൿd�l4����M�$L�$L�$�(�՚�[=������^�FR�9�*�7�w�&�7!�	"J���Ŀ�Ӕޔ��l%!b���X�D��+˜yՒ�`I���~"&f�2��x����בh}a�V�/�:��+n���$8,
E@Z8	��n��F�����3y XH�%����C(
?o�=���F�U�v��ҡ�^�u�v2]F���75�fՃIg�bi�� �]�̰��]�*�Z�Ȍ�G��m�ܸ*��b$f"
72+Y��R�%}B5,�Z^n
�}�~�F������ele�;	oo�d��@����R&�+���A��Y&?��Z�Q����{M���/�����K�j�ij�.�Z{w���
��l��P�.�|h�?j\񉁐�"؏c�[_�n�G���5t��Nyy�;�߿�3N��/�Q�կ��n@�1�![�1�5�S*[ʦu���YЫK�S
��b4z���i��V~��
ƿ�ҏ2��^l��	��Q�#�~(�H��Ԝ�ID���k�%@\SV�D� 2֜գ�>
�ʚ��/hx���0i��6]hw�@v@�����>��숮]�M��\lƜ�*��↴����? 5���4�aGz��3k��b���.>�n�-�D��d`�/�m&��$@&l���c���#?-i��LJawk��i1��v�nȓ��nS8/�qcuE��οLgN���v_wt�~���#�"o���	���2onmRg�+����֨5=-N�c ��þ L�46�{�6�P�u�R:q$Д�K9���|��Rd�e�6=�ͽ�q��(�d��dRd�������Q)E�l'O]�Rd�$&�֏v,NH��
��)v��;+"�KJ�>Ã=�3�]$����s[�/�*�,�ʵ2�5i�0=UYW�
�R~^:��d\��|%h!�2��6�$ K��e�8]��*n� A@�Av�8=8Mm��D�xtP"��)t�(�X�K��b!�;��!oa������rɐ��Ba��I�t��̈́׀Y��y+���nL,�-"m	�!���D/H���c�0]V�d�{�<�g�l���1s�L�Ħ�����;n<��~� ����p�Ձ��D�����QsV�)�8��|T���c��A�X׽ԯr�贘��S%���лyA��T���d9=	�0	�0	!Ѿ�_}��G��F\�>�+*�j�"8F����%;�㼤͝V0�����b�f�eN�e�tM��y����5�ѢM�8�^]@S$������ (#�W{������;�t��{`���J$�Kӿ6
���-J�M7//偓6��s���n���l5�ߋ�M�o��!6��Y�C;ջ�4��G��i hI�ە���Q���FY�j2��O�~�<?0[)Q"����}<M�H�R��%�.�8ʄ���"�@��Zw*�P��ߧ�O?F�O>(V!\�ݓ�#�Ŋ�����vM���'h����h�3�-#�k�#KKK��/�ͷ,�+�*��ree]p5���Ƃq��Ͻ��c���]|+/���?�RT���輪Wn��ޱ(��7��-o=i�������,
���kv>UiA��T,0$��:zhm��:`��)���a�����,
��m3����F|Mx���~P���Fŵ!/~�͏���5���'�-��a�G��Ć������!:�a9����Ĥ�fggck�
�/��-//���w���I+8-g�#���`0x�_@,4'���o0�S������e!�6�‹/ҽ��C��r+}�_��n���~�I�t��I��s�Ҡ�}?v��^��$BK<��L�cL�|����mlm�7��m�dv�◃WWW�ĉt��q�4�$���?�1�O?�4��S���M7�D�>�,���/^�+W�1B�>H'��?��?�{�� V�y�Y���[hesC���d��ߠs��3��]w�)���'��x���~1�4J�5��=g���U���Є3LR
��j���p�B@��,>+@S��w �IՃe���r5�%���p�>O�g�U��p
^��Q�D�#�kB�'�(K_0f
 �`*�1%u���Ͼ�-���49���C�2�|0���`�m^:]�ʼn���nE8s��E
�4:����eE=�SM�r��6�LP4��� T���uP��
k?Pqa$f�]���m�X�@�4�gH���r��DQC���O���~�iQR�%H��s����V_C�=nS{�]U�}z,pB�ٍ3���	��@�ݑ�q~y�O��ˇ��U�p����?<������ol��LR��en�d�r�W�e�bۑ�:�����y)��L�0�|ǔRHh��Σq2��mV�2cXB��ֈ�~�Ĥ���]J�X3K1?5�d+)�c�I��ܑ~ߴ�6}����9�9	�0	�0	?�Av�����hf�'��b:*���$�Üu�,�s���^W��1uZ5wb���3%���р%�΀v�-�1�=[�(���h6���n��,� ��Œ>��]��ae�$�Ņ��0���s�񩨌�2;������?'k/�0�[p
�㞏�B���(�qA���<�(=�����"PP�� p��h��':�+��g��gD����cX���:�[/Qso@;u��N��ۧ����>m�JT��Tk�3]��z�3
�����?ǿ^6N
�ٓ�p��m�S/S���.5k�7���&��@��J�E��ͼm��L��)�X���(�Ň�F�jN��\�\,��M��+y�:^��3e��~� %����,�fpF���ZlT�Q�����8H("=�ck�+�L��C�C(m7������*JǾ�8q->N�}]Wr7[���~�N���А��$�!϶S�=��7���߀�}�e�����ѵCX[_Kss�C}�G���������w����&�Ě�B���c�U���%:���H}y��а���
/^��rsV�Y9��B��͆�E���CG��굫���Aׯ��6���m��N��X����7��~�R�:�����	���+/�=w�#Ϝ9u���.�>u����hvj�z{R��x�W,�;z�^d"�n~�7�=��m7�FW.]��L^,.����dQ�ㅹ9��-�������;����`go��ഘH���q;��e!I@��XY�Sg��"*0�U/W�8��k�i�5CL�����JY�ۨ�}}?�P]{`�;��M*~�y��6=
! 2gjJ�q%*�F��8�>n6l~1L�e3nZ&��E(���Z����<�UY��h+`c0?�ء��:%�"H����N��})��-�r,��h����T����^A$�|�	��B��E�Zb:Kl�>>�v*6Ӓg�&�^�~{�T�B�f���*%�j�̊��>���V]�iCs����z�L�U�S�����8�TE�Z"
�c%hO��8A�I
y�{��0`/(�X>$u<07�:z����W�L�?<�5(�$ɾ�o�����
���O5�NH�3O�%G�2�=3jћ
G�9��U�e���&����d�F�xm�S*-O5Ir�5��p��!��]+��fy��iv��?�rA
i�$H�m�"���Tb(�(e��Yc�\ⷤ�&�oe�^��Tɘ��3d�
�i�����M�$L�$L�;5@��ף�kשj'��٠@�m�2x	�oj���8������}���v����h��gt����OQr�N�/>O���!��>E37����9���'�{�5��fx�R�c��,��vw�����4�����O���CS��-1��)1	2S���GS��D��4�e3���e�V�]�A�*�t&�_$�=\Y3����r�(�2�|�<t�'_�-
������{~�E�:Wf�Gie���k�^6t��o~��/��A)���������T��ꜿL�������O��7����un���E���������:��O�?��4�k���~��>��<�"��YLo��mRoy�*3Ӵ��o��'>H�|����Wi*��	ߕ�?K��A�穵g��L�kFX��/]��V��ņ��z~@�7o"c���{�}Gn����~�.�����:����Ey�ZO�[f7�{�}�X.П�n�T4��Ƹ��J7����˽7*���]�b��M�����x�_�r�l�Vz�ZT��Ť[��Yֆu*�{��hԨ��5lB����;t�Ej��a�x��q:zTk��~�����P]�mO�/����>o���Eϸ鏚��g�M���𰤇%;s�	�vຫ�a���_L[��Ug�����ayy9-��'�����a�ÏǛ�~�@Mb~
ey�ˁF�����v7v���#21��X�vDv����e��(��*��K��r��3Z#�ر�b
�ѬS��iss�N9*��<�~�իL�\�����K���n��{��ۣG|էԜj2�7'40N�:E�������#�>ӹ��Q�5E�F�V9�L�$1�y���Ĵ�izz���D
�
�}��L�4�:�׃��/�Ώ�t��!��y�~Э7o ��U���*48����ug��&4Ć(���_&�D�4���v�
��T��H��c���Reɔ(Ұq�L��d�o���!��Z�Z�W��<�e ,����qn���%֤r�����H̤oa7E��L���b[u,������HY��#�i��\8>��+L�h�<�! >eb�������ʻ��"�Y<k�3!R���i����� ��צJ��d|��()ט��?&�ġ"�=x`W|�WJL�E�/Z��j������þ�m7H�1I����糯N�E��B��n�ԥ��X�/�q3�eG�&���uP㾍��C�p���(�&_h:Vj����'d��cL.�Q�8Uj�.��s���y��5�R�
X�;�Ohr#��!��q�m�B�2e��D���>[G���.���C�J�5��]��Cu�`wi��Ǎ�����g�MI҆��vR-�CʴYJ	�C�FG����!���2�j�J��[`S�(%_���cz;h�t`�'M�S�k5������v�|[��~4"�$L�$L�$����'ݘz{{z%�����4�#ĕY��4��6ke��U�r�i�D۴��hЪ���%��6�]�DS})&E��

��7��.���Լ�,]�o�	����l���_�ï�B�N
�2拺G�w~�Ju��v����F�WI�I6��y-�*�KJ����`��� "�4I	��uG4$�L��ח#�@�Q����K�������޻ʽ�Ȇ����l��U�I���D�)���"�#}n��M��ʭU���ޛ�¥ש��D'��O�F�K�{�f��/���ר� N7jS�cR{��9� k��t���MΧO��i�ƦXPI�j�j9�St��ڞb`����1�7_%WfUF~��Nį��8eRO1��%s�}���1�n�6Ѥ}�;���(g�U^;w�t�����;rI���q�ۼ�R)�?�л���EcC^�y��3֌�Ϩ�����8�k�5͚B�(^ߠ��j=%�ߟ��s��&4���I����x������)!�����6���5�{�l6hk�C�._��n]�o�{����TU�����٠m^�N3涶�E'N�`fz��~0�A�߮��?���~Jk��}�*�9�b�D1��D̂�
hzXSVּ���aLZIpZ�:+��	�[^^V��aMXY��C�x�\?~�xb�Y
��B$�oLG��Yo���;z�'�����sl�Y�*W�t�m�gAD3ͦ�QǏ.q�?���p���&����V�w��Q�(=���@H��;n0&C�bQ�Ӟi��@�����[d��
���N몑�=|8�vw�z[6��5��gO��y���}pe�����s�H�	_�ȼ{yχ:C�^��4tۀT┏���>O䚝N�ńT�|oq!�u����rIl,���*��KL|��>M�
3,e�%�&��'��K$�Sv"$���E�%�^�|�RC�K�I�#��֑M����;jP�$;'40�M/e������ր�EW�Qk~���Ҝ���yAZ�E�$�98�i_�)à{���Y�pB��px^�ң"q�|ރY8���MZ��x��3 �8� �FBo-�������H��e"��`��⑜�v
p���m���>�v��t<��y�:��jʽ�*�B�_��R��o�t��f�%�HȂ�L�'�"����o���'y���MB�<$f�L��
3@�F0vd��X��
+� �}4�e�A�J
�J��T�7W�:SE��h� p,Z��#:uIƿI�J�<�e�E�g����J�ƘX�����e�T�g#1uҷ�c.�J�8��@�>���6=����6�g�#�R+v�ȝ���{��[1&a&a&�'%��ܨP�j�,�%נ}��
J���g~�#�su�J�ޗϜ�Ɵ~��{�ҕ
���453K�4X۠�c2UU^[����<u�f˳�����ר���4�h�����O���k+Lf�ҕ���M���-���3TZ]�,v��io��?D#��l�
�
"���m�9���� _(�/�@˓�F������k�e�J3��{=�{/�����xw���^ڀO�M"�B�2ac֎�34�?M�+;��Nh~�I�����6�g���_���%�~�*
��v�����i0��瞤�~������oP�+ϑ:<G�?�ǎ��ng�iKb����%j���'�[���5J[�y���A�,/�~�z���֒��\�Lˆ`�c�~ �hn�����:�o�d�\���ż�aT�����B��ڵ^x�C��8�}�,y��0��1�]�=[��p9���2�N��B��W'�}�[�q����F7�����E�|�פ1-�f�{����T�Uy
ڣ9�k�/o0�[���M�0���R�o��zլWb�1U����V��|^���-�h��}���5�����
T��(��F�E�Y.��f�7�P���T��uH��9+8/7�m�SV 8��PpJnL\���q�:/��r�|_A������G�V�wvv"����,�<@�$�����2��钀��S-�a2�%Ž�(�Z)Q/ր��5[�H �͖�D�؉X"�Fڿ8�{!7��\!/�-�3�Yf f`&dt���N�oz��7>�0�#8?+N�I����	>E�1�1͌�]L�D���$�4�w�*ҡAb��퇢A*opu͹k�:/J/I1=�h�";��䰀�3y�tК"&�H����B�#e�W����f[���V�(�>>"M� ��裧ul\rȮ�H�j0Q��b�JIӴ��^���@y�6��;&�q�E���hӒ�FOew4��
���L��f���]&�o�5àz��UKU!@��TjM
h���	
��)3Ɂ�"��x����$�M0m�Җ��
���\(
�+�;��`��+�h��q!�qS����s}
--�?JL&�xDu��Kt~u�.�o���������T�Ǔ>��)<	���ή��-�@�_P���|�Bu�M��B�|l�L��%ĸE�w��`��������5���kJ����j�&S�$-�/\Z�@�sڿ�wN����y���c�P��
��V��ڇ�u�Mߏ�X�~����E�#P�gg�o,ɣ�(-��ʟx��ꉜzs�߱����i��8!��HHy�M��6o�A��'�<}�=�ƽ�6[�8�D|���3�}=&f��s��zD�"��^�k�&D��~O�[���c�E�"�i�~_C8)[A����ɸc�$L�$L�$����X�.�r�:�]�Z���6�����=Z�G��j]^sT˲��"�$[�>#���,�cNn��حF4�c��?~����0�['�	L��vMQ�׈����cTm��i��[a
��T�)�LQѓ6w%��퐭]�f��Y�x��ӡ|$�Օ
oB�� ��ݼ�5����.�Ͽ>AZo���{�"�/�=�x�d+ئ���T���[b�Jڟ1Q/��
��m��]�?��h:)��g�Nӻ��Z��^L;_{��,��vY�^��$չ��m�tu��G}^3����WԽrD��C�qE�V���x����ޅ�D֐�,�' ^Xz��� ���ɑ��1���Ț��3��u���i�p���j�u�^Y��c�@^N%c��}���n�\�u�Dž;^���]/�>'�ƿ�`I) k���4amo�眒2��K����t��o��6.�Y����|0�ƨ����8㫟��/����n�`�+�x5l���"��th~a���}Y��D���k�Z��c��n�ӌ��3�0���K� <���G����'W�Y�q�ע{|�Z�5�V7������ݑՏ_�y���y�騹Β�e�n@�#��|�<�€�+\���!-Rd�OOO[sV����C��o�
�pX�{˚����&"�˗/�{���e���5hX�!`��Ę��	�A��4P�Ίg@���\��Z1����3�_Z�3O4B��k�M�p�]�J�����3�;�qcR���O������=䳑�*AY�Ҷ.�`I��S����[�j4�_0ܗ&Q�^L���=�y��R��#K(��,�����NlҴi(}Q'���g�D��J�UdA���r��>��#������Gb�#�{����Ҍ0��TZiݑ�;�ڥ�;���*J?���׫Lv�k`�TkNI��_�*�Q�6�����"�s���=]'�=8���A"���3��z-sy�L���*B��&\o%S���Ji4�����@�7�+�A6�G^�L�A�	�-
#�6�p
���6��7/�7ϿN+\��Y�w.L�'<K?{�"��Z�P076Đ���4cT�@ʛ�\�Ǎ��Pf�	 ��f�O�ؾ/��}�d�� ٿ��|���(-�5�&@�0/Ox�{�ݭZ���C�c�ﮐ�h �A�6���s��'�544�0?X�ol�`I�ђ:�l���t �	qE$ϧĔ�2A�����wb3~E��K�\ʨ��<ޒi���%/�M���mߒ�q��K�ɂ[��cY�Bn����@ϫ"��@�7&�Ɇ�kBJR!h~�����Ҏ8cc�/����0���w"3�'fl���{&a&a&!?`N�0�[�����姩���"�j����9�zmd#QsX�|�`ހh�CC����d����Z��,J���N��V^(�9lnO�
j}��
�ZI��bn��'7�Q��N��8��,����G({W%Y����{���
��
���е<�l����i��(P)��A6L��V�7�����=Ns�7X&܎bC@�sd,'�����둴�~d4p����Lӛ}��Q�v�vX�]�UI�W�I�Z$J$��a��9->�Mm�Xo�c%��eI��W2|�M���6��+��ôW��!XL���T���-���"@:Ir�x'�P\?�" ���y��;����Ԉ���1�±&�ʘbJf�慄��~��m�ǵ�^iY��̮����4sPä��ܦM�g1)���k�On��q�
�a~���9�Gg��'���mj�\���ܹ��lL���.?q���4���k4?�b<mN�%c�E�S����A����������;d��w�J�j�V�6i�Ք�~��*�g��;�#%�|�5l�#�Bm����
�t��}�K2���I+PHt

� ?l��ִ�hr����ZY?6��ͱr�x$���7\^�C��dGz�ڵk���7��M=a����B6���|� �z4M�ZzwlI�Nj���N�Oe���4�O��7��2mqzJe ����t�������䅴�`����H��l�P*%LRy`�j�����IdE{tJ�?�n5��ky��C���`��e���2ofǷ���֚P�('_���9M�9(�! ىA�X0��ߍ���>���naqf��5����]�U��֗�J<�N���i�
��.g����a9LK�x�.$��@�C�k0���G{�XÿF�/? @�bz�$�\�`��@�/�;w��!��v�ҸJ��S�^U-��TҰVk�'הxP�QB�����%o}D!�^��������%:H9�{�066��L�0��1|�R��W������e�Eǩ�˂>�����*=�qڎ��x���JI�]��.W��wW�r�q�K'm_晡�L�PT0&����q�Z���8���C���/m���_��1p�.�4��3�AJ2&I��r��[����_��8�[�=n��&�3���+��_�ﰳ�#���5�A��j� �1/X_NS�):����S���ŋ��O5���&�Y>C��r�-��b#����5պHbr����Rǥ��51���Ä��$ӊ�mI��IbG�$v���VW��Nj�5jQ��]!Ha~s 6*���S�'��+�Ԛ��cǏґ��2?w���YY]��_{��L;[�Ԛj��i�VW���#K1�{��к�J�c���-���wJ��ތl�H�3�7	�0	�0	?���>����A{�p��ǯ�|7��Y��U`���(6�c�]X���0 �8e�R�L�b'|*|�dL�j�Y��<(˫�b`*��5�Q�Q��%�nzd?	]^b��N:��/Z��8Qa0#�K�*
ˊ!2#$��R��PE�8��ye���@~:y b�!��мvm}�!Z��{i��OS�����ǶMY������b�����"�9/2�!
�JD�����1��y��t�G��0�R?]?d%�~:�f�"�'��WS�5n���>:��m��3��$����q��Q�h^E�cX�bM!SJ>h�]��τ��+���p���bC�%}�D�����&2]!J���'q�
�l���S�̺�LTzM�3{v_���șo����,�3-����7N卩yc�������#'�rT[H�����or�Z�Y^>�x�U�$�R��i��X9���n@��-�yfg��8~�PZ�H[���=C�T.���
ys�oT����?���W���;��S��r	ּ�b�wH\ߏ����i9���hw(�E���A~�&=\������kN�N�&���3��9Z]_���4uz]�*�H�07y�G�p8��qfgf���H���7�2=�ӏ�믿N�N��`��֖h���...ҍ�
q.��eh0h��q8�f�Yv'��J�$��j������mr:��)�ӎ<733C����P~;��TY㲢̸��4@��A�
u��V��[���i���JyP�WοDw�~ʹf4�L�@���A=B̠/��
Xny����#�a]�8�T��P�������8mJY�����5�>�:D[d��v
��UE�h��Ĭ.�Ҫ/����dx+�gmR�:k��20�E�t�1Z 䔭������|�_��l���
Q�R`/��
>oԚ<0����ޥ�Ӈ����I",3��~�#KQR֦�����G�I�:
>��� �ѕ��Yb�F�-2�����٦N�c�R�M.�2A��g��Tf+Ԇ0���A�~;$����t��IP��0��"��1�cң��/_|��u#�M��M�c��
�4*��.��o\���&}��qJ�u�_�p}i���RBBvL���2u��'
ׁ2\�V0ɞ����L^|+�dm�A��4���T�)6����҇����#1M8-,�	��� ���C���,��R�d^1%^R��$}K��I2�-����-���O����_�$5ku���=��fy�����MIt��
&k4;=#e!���N
� ?�s?O���_��}�+�Ϳ�#�������/�t��Q��m8z��֓2R󳺍L�Y[�v���i��r��pZn_��6�bGb��JLBd*դǾ�8�Ai���񨷽I3�
-2ѓp]��wzc}����?��g)b������Y�jk����џ��W��סy�/��8�4sx��y�|��閇�O��:<7C{1�w��
"��h�%"�ڶ���$k���%�]Bf�&a&a&a܀)�ɀV�(��%�Zۥ���V*�[��I�αа6��n��T^I�"e�8f���"=W�ٶ�_1�d'>�|T�������$]cوҘZJکsZ�9K����I�V]�n����V	n<RûBC!D@�֍y���g�H��#��Q�\��.y�k(��LD���sM���6��s��y�nǩOH|�ب�X��_�v�,.W2�R���2�=7פB���d3��ЛGM����dn�3���>����u�K�����jj�>r�-�$�=!�Cmwx�׿��(J�/G(^Q��m����Í����������ʌ{Ԯ��S����#2���6CI�ZHR�����:�s*][g�ҫw���0~Tn���?�K<�Tu�9��:�k��!�1H�^e�3SZ�=df\����xeS�YUj쮤���E��v� �yD�c��#��q!/F�����Fݷ$f�������p	�G}T��Z��H�u	�
���W�u��`�Cj��<cw�¤U�׋��,��}���uw�M�}�{���C��{}�_��#G��W^aba�f��/V��ǟ�����z+���d"�W���'�({�ɧ$�\?k++\a'���ő��C"31�/ҋL�,,�ӱc�imsCȍ͵
�r���׮��}�c�'�~Z:˥�W���a��ߠ#G��r��={�.\� ������������M/����K��o���.�q�����w�G���*-,-0ȶBw�q���[>{MOia٠���L��n����x��G�H̰����B��K��
ؕ���K��C"��m���p	��e%�i�8,/+!8j��:z�oZ��g�:����r�N��'[�T�L2��8Z�L҅Kb|d`�'�${Q+8�<0���,bxm@�7�J���h��Q�p���Q�R�uMvD��b�
z��u���֗��[�T��`�F�����m��<u�|�REJ���o��p>iZ*}�Ma�1��nKQi:���7������Ѝ�����A[�k.o��K��Yx��Eړ�]���u��)iso�^�g�ء/��B>LU�"z���ɄO ���6���|��p����3��|�f�k ���Ok�ih�e�bՔ#6� 1ECn B�
��S�p��'���2�-��D�#ҭ�w [�Z��|��?�"���LZ���Tb�!{�sK�ɐf�	o�/ζ���
����-飗.^��]&E*u&F�T��x<*��¢Z�O��;��h����BZ��&u��\��{����m�|#�cK�H���%�"�c!VqvQyF�����.'R��_|�:L���u73;O/]ea+��S�����ċ�Q��Rs�0�X�A\��=����t��-se:�w�Б�]�|����d��rMT����ܡ�e�eۧyϬ������g�0	�0	����l%�	�3��_����N�?�6���P���ho���+��+��iZ�RٚB��L�k�V7Cz��S�э��p��\�XiӒ1���Ss�>� ���Hɱ)1��m����q-E�YW��eau��@��.y[�,ZT����!�#�uE�q�2X��e��t�IZ��V�3���|��/�r�,빮NG7ZJ�49+
f��E�����&��n�
E����Q�M~VC�`e%w��:����#��_�2��)59�4�I��Q��{͚��-���|n:���J;���<��k9��������� �a���ޡ�&��`�7u%1����?�ܠĖ��8Ě��O��}R��)'��~�<Om�m0�����z.q�t�s�GBK�����$]&i��C��f�JN�U*���1��ȈP�	I�y�\6���;�"��a�#�f4;��}9>|X�mmmE��a�[���H�1LZɷ�!)�S�����dϡ
a���8„DZ�qC�q���7/��'�z�A�h���`9�"v�3�����ڽw�-��O�9J�[]�o\�����m������eW��ɽN���{��5LU��8�:LV������6���-�0��i��̩R�+�/3��*�Ǜ��b �%�^���9�f�J˧N�������&�%'N��&]�Lz��;(o\a�dc�.s>�O�`&2�j�NU���8g���ϝ�L���ZL��;rb��1�v�B�!B�q�!�s熖�S�9�a����x83+�}٥��&�nb��-��i*�MW�b�&��/k�#��n�¢\J�%�i�"=P��"K|��^��XfAE�!�4��2�,�ld�O�D���+Jm�`��ag����*2f�H�n��@���&��.e]Q�+#�/�x��2V�^��8�A`�\�X-
����5`h�9H�ۥ��C�n�@<�q���BG.Gfd4xp�A�~��f_��E�{1�����{��٥���7Oѥg�4���f�]���;����hHYh_���Eu��P:y�ƭ�~FV��n|7�[6��}���,c�:Q��v��C��墶��~&���&Ơug�.]��Y���T]�����٥�&,@X������tS�ĨÂ���s�=/s
H�JK߇Y+=n�L��tGK���s���qI����	n��GZ���r�ֿ��a
�TL��r��o�c��|@�ND�=�y�,���f��9�A�s��؋7��u��M�s;��z�ZY�
��{7��<>�L֨��D���U�2a�_��H���CVpV�ȩ��ŰI��I��I�d^4�`{���G���}����ټM��_�Y7�tA��R�TIܽ�Tz����I6��M�@$��$u�@lJTZhѡ�NQ|r��5^KS��g�����y�|�5��x!P&w��<�����#d�&/������?���r��:�fh��I��G���E�ol�?��\pZ�
f�O�nv�HY��m�^���Z1�q����s"���S��eꞘ�m^�72��&���C������_����A��xP�C��2���W0`OL4��a�N�C����r��1cИ*�^9h�
$����6�PHLZ*2�S"��h ��l	��ӱ�X�M�,�c�{��;ۛ+2n��R������:���@v��ㆾ��]2C�eK}Pz�!;�E騦���B���DC;�'���� ���=wC��Ȑ����e�a�3��q^�ϩ��a�c�J�����&��vG? 9@~0	�������LX��4<��.�a���� ;���I	���dP�O�d�pv�w
0���M-& ���_�����d��-gNS���������ą�;�~���cG����j����8�� �T��D���Zc��ٚ���2+t�����&�Μ8.`Lb��/P����.�~�n���Uj��g���X�����m:s������E7�>E�/]������N�������\[]��ۣ�O�lr��,:u�wiok�Z�頪[��CoR�c���ww�
=�)N"�L�3�$�\�H���}�#�V�v{�`�ʼn�du}�L��1i����gP��q*kN˹��uϑK��H�z�+t�>�4��K!CfbĴ�T=0IU�u��w��*3�%��BH�v�.p%��Z���Y����6������6���^�Ѡ�ҎI�The�'H
%!�b�H5;��%~:�t!�r���F���!�H*)��=�����~�~����	Ar#g2��Id#�|�dG��<��ר�c����u>�����6iv�B7Eg�{(���
jv��vJ���r�����F��'���<����4��Z���8���F,��0N)?eH�e��"��'0ߵ�'�J�hK�TᵫoH���6�L���:��c7�w�������7hc}��5�R�
�sj��}�/�w��N]�2[��kVlh��B �@�ۜtbi�"�x�ˎh�߹�c�����ԫ�#��x����z�~�3�3���ס����.�qQ��o�q}N��?umn\��^���Gi�ۧ�n���EJjM�B۬Lb�P;njeQ S�E�,��|�����M'a&a&��8Ȝ��xN0�L|�E�c�
��Q�T
����NbN�̎ye̗���yY�!F���cSVN^ٹ..�
��61+�.܇)�r|�Q�?�'#;�
/���й�˗SC򧟇+���e޼����m��T������c���k��Q��C����'�#��%�OUF�m��$�x�M�ڕ�ښ�?��ia�m���I���i��Չ��#��~��u���n��~~��Gn�z�-�(�+�h]l��4���=J)A�bBD)��q�xL��C1+��2�'8�~q�D�Z�$z��faMvh��o\>eT����_�[]�*$M�زPBi��^���x��1TO�6�>Js�w�W-Vg��4��~�1�ϲo
9�K���~=���p.7~V0*��ߍc�!��B[�>N�̭�r�CY�Ə�#��΍F�!;�^��5&;�a9|x��w���1�!>ҖcI�Ng��R3�N?&����K�sw��G?�t��q�4���1�<2Α&V��q^@�hsQ�h�[�k�8�����F������fb2�����y�8|HvC���w�q��5u��⾀b Sf�,.��w�I�s��JgN��ٚ��l�9&K h�*%Z��U�j�%
DQ�A��:O��?`���g\�s(-�
6	���n�|o=�Mɔ��i�:�ff�~��Ѳ��\��̐��C5�t|Ш����_���I�H����{a&,�-1	+,L�fcDx�MX;�J����.rnw�Ҧ�4P�RG��y���D\{�͠᎘�"#�j��2�2������9�D�̲��|{�l0H;�V���4D�
� .�p ��3�FI�Mz�|p���I�%�v������k�ǍW�O(��	8�d5��*Kv��<J8�Vt��q�Ɨ�9�v�M�NL�Lbm�w�P�Y����\�G��kT�`([C�Q���q}�-�Ĺ}�=�N�0l'0���~}�eq����sU�2���{&������|��.��H��}�g��_�����
�ʗ�(���gg�������]�+����D
�INw~��K]1[�L��7hiq����}�Gj�^7�z�h���.��*SrGY�B�����ɨK9�ޛ�A�@�[|�7V`c�J��u-���_�Y��r]�iw�-����.q`��QK4%���X[�~{���X�z�g�����x���u��暇i�j�N_�#gn��N�:��^���F�6��s���Z9����Cg4	�0	�0	�0nY�\Ҁ���5smb������B�~]�s�6�@dwPi�DeS�Ѽ���DMLZIl�2�|J��n����#v�NH���PJw����H��un�@姓w�/���_67n�q��'R>h��d�P��ZT��rL�D�2��x�M[��,
�<�A��Me���'e۟~ֵ���i��#���Ǿ���qN��U\�W��]\Y�h}�Qc�M�u������D���X�I�����[.a[Xn��U�n�����ߊ�lzؘ[N��ƀ�*6�2��f\�z�L5>Oz�6�ؼ�0�e�L@����2C�0����D2�~)�J\���W��K!����Qc�w(��`��G�'/�wk5'�q���q��ov�y�L)�!	�7��LjF�C42��hy�1�!;`���
k�ʦ
�~@@v؂0�[����f�._�,S�5k�������
àQTa�,)	ف�����7D�5�#@t��zM�a�;��pW*z��MlȌw��^�R���|V��N�F���A"@���|�]�a������2Eb�H�
Om!��a^KL�00d��0�Gf2JET��A�$�?�J9���Q��֙�Иۙ����6 E.�Fv�:����J��tG��k'���o��*ù1�5�m�'�fYO&P6*�_���O��sd�ݡ"��,X�&*�rі.zC�/�u���Vځ�C�n�*��q/�l���Y|�s:�X|�j��Ε����(1)�|�&�-�
Q�)1TG��s��k�:�Jl&z"��!��L߶A��q&.7���>��A�x�t�=�Pt��Qa�
�.��z��Y^h��̀���3<^��_cd��bs���uűuc{�n?�LS͊������-\�E��i���D�{�� ��}��uqE�k`�<�6rΉ��}A6�g�Mg�AyO�>-�s�#�yl��M�܀9*��TK悳g���~����Gb�P�KBB+�‘4;�6�ѧ>�D�5u!Q�{�Iپ��UTJ���Cz�ɰ*�߷�%�t=9Ӻ���'�����Ѵ��E�^*��Oз��@�n-!���fẽ�%~a���٣=&�"��5En��M���s�ԩ��ڕ�
ɻ?w��olR�7���)�7[ԍ�@��9Ib���r��1��p�|l��u��=c�$L�$L�$����ʐ���R�
Z.!g�5ו�H��R��nƐC�g-����2����i�9���`�G��1���DI�|9Ηt�a��h}8$O�1���W�"9(���{�uq���C�������Py����Kcو�M�~)��^f�*'ҖnL|��Pٳ��Kl�[����&��A����$����
�q{�?w��֟���b�Ԧ��}ҡhLr�s�x�;�i�_#����;�yR���f��w"�K:Kgi�g�'k��?�c�nn�+�ý��c~i���qZ���i��>C������T�V>��(��1YB�.�M~�Wd\�v�rR�.�S+��a:>9u�1C��^��3�]�D�>
1ü�,o>�Ǩ1�(�Pڡ�Qt�h,~��q���x��$�t-�X�V��f������>��hz��0Z��P���V�i�5i��;`�
�#Y^^��/�Xoe9~�����(ȉG���A�DZQ�R@�h���}�`�a�z��+���G�8b֠o"��I�/D�f��
���V�����!w7�;�vѶ�����| Y�$1�MO�@�.
䋝����@o���â١���}�lI�쯿<�"��}����Q鑩#�+�q���8��{�Ĕ��1E�$^_�5�:~��sr]w��&�52�Y7i�l����2 Y%�b��:,��o���Y�"cҪ��}���l�!k�%U:����/i��Ĵ;͋$�R���!���ʪȩWSO8��3:�H`��&����i��Ç���Y�|�
et���h��	��M�@�@re�?"ig��,��L���̕'���~O�sD���1��b"O��?�I�ݍ{�f�?Q�m;�ڝ���Ҩ� J���th��=|��ׯ�FW��)Y���\�<��i��I}�t�mG���Jf�T��w>�n�~�w
	�E;Z\�׍��7
/|���u�,����j���J�r�H�c���
i)Ś�;���q��yt��7V���G�NW��F�I;�;2W��_��>w���_����}����@����C�l �	�溘�j��$��̌����A"󑼯���;o<O�-r����憢Ŵ_G6�l�R2IYd�+ӡ��0?Kk��b�Zf⟺�8�c��7"��y�C�zD+<&��L�Z��4�OU��D�Zw<�՚\O\����u�a<u8�JD���g�ˠ;�k�&=v�2%��>��I��I��I@Z�X9�ɲ���C��3Ӓ�l��|aY�؝��}�Ҹ�:�2�}�_�){��eu�-�_�̛���"�*0�e�"��T�!9�'1�2m�Bk�Q�qBk�gC�s�R�GVjdM5����4��}:�N����Uڬ�����qCH�C�7����y}����~;�w��e��L��[Z��}���5/͢k��6TG�в�L�%l�U1���;��J�.Sr��?�A�ظz��.P�������3�j}�:`,a������!�9s�*�.��t���g�d���!Z�����]�TY���O�҃���y�o�v��~�)��f,����tE�Ϫlc������u.��w�ܿ��_��O��F�M�c��Qs�A�Qm¯��DP�"��] ?,ف?hrXć1i%�V�~;���k =,ف�V���	�Z1�!���$��e�><���ѧ7���G犔�n ����j\�����%�"�{�lAH|$�L{XaZ��Sy�U�@dt�Q�j3H#�~�,���V@���Rp
���V���>nw{R.��|1��b�I�L�(s� ]y���(���ǃ�^��hL=���*x'y/�\�.��u~{/<������pGK;@i�	��eq/��E�5�
	���� @J���V8}�C�&���!D	�����3�Q��/
ղv\.$	��
a�u|k��f&m�xG19#���~?Kr��$�/izD�~"dOlC2;����2�Ҧ`�=�@J�*Җ�&�<}�N�Y���i&"{����8�2���4�
��Q� �aʫj4�2ؘ͎�1��D�@�WI��>�F݉�P�ǡ8�q蹼<�/�3/���!�ndɻ�G�x�>t�Q��{�ёx�j��MR����ܠ��}��4��?s��*}&cm�S#�ȿ7���ˋ3�BDШ�C���C�(`�+���Q^�Y���4=���.	�Q�A$澲���j��\��7Dd�w��}�N�Μ���y:z��U!+���p�q���!&Dj���}U�=u�$���ٜ�fY)�quT���%9��n��v�.�Kv��iîL� ���4��L�߫��]�嘚�L~4�5gJԚ�P��x#��ve�G�
�?��Ju3��d�^�����3t������X�)3��X��QS���m$�r���u2	�0	�0	�p� s�1S��A��1�k6j9��sn�%
�<oM�	���l~���ܿ�k�9�	E ߸��{������?:m�K�_�9����P�����_�n��6�P=��AQ�!T)p_	�K��<�P�S�q*~'Z�r��(�n֐MIJf�k�yX�A�����c7��q�sE���G�G��i� �����Y�`~*���s��wQ��W�j�Pi�EW�~�*KM����귿�ˢ��,�Ϟ����hP2=C��5��A�����U���:L�3�9u���R�A��W�}����C*�ڦ�9���~O�7s����p�QD�;�䅼�%��
o�m�B����Qi�ͽ~��B�ݲBi��&� C~(Kv�~;��0ie�K���%?��qX.f��9+�+�;���>��sל4;@z�������嶟�?����������
�����SO	�bν+��B.^�ԉ����?�J���J�����[��:��N3��c����h{���+4?7GG1@��P�9�j���Z�T������(@\�b"�>�)����y�`���L���fjRkvvV�KW.ӑ�%&�^�7��wwvh�ݦ^xAL�����|�&1�!ե�;�%X��)���e�L�0JS%e�1Xcv�$z���}�w�8X�60 ��ݡ�Af�'f����_�6�k1�1U�?L�T�a�y��y��9+<Y���)O7E�^ژi���-�0P-�`S��H�$��(m�#*�
���1���Yl�c�v�[`F�����E�i�Ps��~���&�
����%�~��:qSf�f>��qk�͔���I<d�w� B��;E��8��A�h >�ć��y�%
4�N�����T��2()n��-V��o�o�<ݢ���2���*�P�E�X�G��[�@���{v9�j�=��(~��uCq���b+�tB����0Z	�C$���<q,K/,����ݙ��;w��:�������挘���yg���_��_�Wx^�|�*}�ߡ�~�����Fk��4���y�mt�����[;�����4����XT�&ӗ��
�nY]�2�SŭkSa�<M$��U�d	�l�5Q��qn��ur�-7�O=G7�6���j�I�)&=�%6D<��0U�t�EC�ۍ�N��DG������E�o��0'��<]F޼ W����.c�^(�1W.�2�WM�o�"VŸ�I��I��I���������(7-�^�]$��!�!o}���dD+��qB���wߕ#�w7��Q�ZQp���P�����CZ�y�.'d���
��7	�Ġ��Dv
�y������m��Y���p� 
�5Bc�?��_d\����_~>���<�du�7��{b��^#&{�{�;4���l]������n�`�M�~����zY��5��W��p�*�Y�6Q��F��.��G>���]�{�EZx�4��2m�y
u�m^��$��7�mS��2!�����ԇ��������P>�0�<R4g�q�m����y�G����B��*����IJCR	Ln��HL��3W|l�e��#���a�[��.�3V��/49��r���a�3�!i��H�hz��Gr 
�@��m�o1�T�yb��P�3��oh�A��o\�^�Kw�}7=����;�{���`ee��恵�0��`�2�>��� ���%���{���k��u��%�����ŠM�N�9K�_x�޸����;�SL����F�o�슶��|J���p��^��UĶ����C=$��/��\w��챣G�:4��w�=�8;nJ~/=��8y�����(�Z�	أ:t���~��'i
�P�4p�oV��U�{��v3Q6x�7�)�����9�IEi�}�|�!݌f��5��1�V�_n.��y6�I������#h|HZ���˄R�}�X<��4
c	��a��D�4�
�ت���2iX���p}����v�k���<���.�wkT�$�(`y.h�V��PY���ԯ�-���"��'1٣M����i1?�OT�8a@?N�$��_�`dl|�N)��6i@6�Fo��Fhq,�n�`����w8����J[��h�ԫMR<N͕���ׅ�TȎa㡅q^���Mѵ7#H}w���z蚛���/�w�K���{��IҊ�2����X��x컴87O�n��[
Z<t��T���*�om���z��Z][��u=�Ì:�����8�St��Q���[��/ӳ/�H�A�窻�ĉЪ��)?��`�3w��.\3b��c��4o��cm�i�,�Sx�wP�K7�9�D�m��h��M3�:O1�1-�JI���%�P�Bu���u��`L�ܦhvQ���u�x����DEl\���pT �A~�-�:��l`��Ȝg5c�O|xL�$L�$L�8��)Է�\�×%}y-I��k)7-�6���=>�:��Xy2h�L>hb�?�=U��z�����<��~�q������(Ψ�(*ChM�=J����Ik~�6�no料�4a�#��H�l�]()�|�~l�X�ʉٖ�ۜY9[��X0�f�A�u�=�e)_����Z��?d���.) 8Y�KW�]��k(F�JW_�����^������4��[gL0�Ĵ�
&8njT�ʯ=M1cW�0s�;���0�Ц�W^��?}m~��B��kO�N}��z]�<�,�}�����P	Vjl�
�6���o���:�Gј�����3������2�36��ø�(a5y�'/T�i9��d�����@n�k��@v@��<p�� >p
�<�Y+d�$��c�w0�A�!Z =����Z��O.^�(�F�C��O_�Î����J�&�1NDL�A8+_[_'���p���|~�{477'Ll���ڢ��N1���� w�q���k�A���祖w�wķ����hMM(�����@��]!,i�A�m&(���$��Im�Eӳ34��+�K�^}C���N^~ϣǎ��RL�s������2a�,4A@���8��S�W_{-�1;3+�sŁ����5�r�A��`�s7~^H�+�v��@p��we��*4��bb�4�J��׍p7p.>`���R�� �>W\Wi-�����~a�Y牔��i���7*|ߐ Lf�NcXa�D�~Q�Y��z!L[dd�/,A�1]D�\�\��y�3!WQ�vژ��kL�鞬�8I�[�����&��
b��i1D|p�{L�
�m��>��L��r������0����l�'887�>�&��|�tX�)���Y+em_*!Ⰳ[;���7�E�m'��㷳Q��<�)�Vq�HWH���6w|C���H��6��/��h�(�#���4��cG��+�8B�A��_�E�Iێ�H�n��-���7(|�΢���ԑ�O���7t�Y��	Df���kM*�Ʀ���%�&cw�~_�@-�~��½��KO=�z�{h�9E��ǟ&�6�nl�� �N���['O��˗.�Ni�ڝ����X��`����x����~�1��7�A'Ϟф}�$㢘�Kh����=,`��2b#Ӊ�F[�!��0�}{��^�]q�
�k�&����Gh��U0������n�cK��>���Q���5J@��;79N�G�(a���V����c�]V2X���CJ�5��o�)@+�$�����c�$L�$�C:)ӏ6�*ǏK9B3���?���
��PHv�s��{����^���W?�Q �{��7/��|C��$�����j^9���Mg\����}�9T_ye���{g��!��/{^=�����w��wf�y�����v�f۩���������}���_���ES���g����������	��6�e���9�z7[v�%�b�Wk1����P�rDs�X��V?����._/�1m~��L�������U��kL�����kVL���Q?nn�X�^G�6��~%)�S���ͭC~}������˖7/��	~x7�g��Cc�m��?4_�!on�Nˇ"��"q�0Ce�|@�Ðd4>R�V��/�yX����g�
���r���8鑆��HV�7EML[Jh�Q��Μ��G�ҍ�U:�|�N2p�A�5ݢ�<�r�*��z�����T�	�Нwҥ˗���n�ݻ'��Ëb;�����-.j��0S������i��V��b��ĉ�t��
_Z�z�A��c�[[]�%�����2�Z��6�W� 9��*�hu!U��ݰ��{���a&�$F-&Mn9{�<
��wl64+�b����N�0�b��F�
!��hRG(�M�U�`��2`P΀�0���SC�S�So�����׃A����i��$��T�2�#N�"�=�3�QO�oG��su
&R�LvTy�@����)�#�4�Lrn�GvG�6����m��;�X)�i�M��i���
��ڧ���g���y�
�H��}&���H<�$��_�z��[tx���%��Mq�:�kC�	L�<�V�B�qCz��t9�rT"�@C��4L�1��m���L��P�Q�h�MAӴ_8eU�Rb�J��Qy�d��ɞ<Yb ��%��A\|�2�_��|H-V(��w	]˫����;����%m��k�%�$�zH�_ߨL(��B�� � �rQ��?����
��h�M���0��
��|��B�e�c�M�����<�2�zdz�꥘^�%�e0�>{H�IUk�8���
���td�0]�Ŀ�`s��o��Y:>7%������4��5�O����R��x߷�6��eT�6�=^��3g���=$�_�ێL� %�-^��qXѝw,ӥk���fuk�*\'�
��S���J�u��\�0#��<��/
���i{o��gB�������+�Bt0)��6
�N������جC�1<�e�%�&a&�,q+�H���1Ѹ���2������18/��z�qL�{Ɵ��?7o��%1`�x��h?n�����(��T��׍�$ɾMDyi��CH�+���{�r�g�]z�uhH�u�;~:y�yy�2�_�гn�!��n��|�
��P���v�+��L�wMHR�#�kTg������� J7��m� '��Kީ±�_�XU(�p>��X]��_��:;�NzϬ���P�b~Y�YGS�@�3~�3%Y�H�_D�~I�6=�z�
�
�T���p�
�D"gc���kZ�v`��tU�I
�Q���1Y�F��C޸o�)To��ջ��8i���0��No�o���:���wl��M�2櫬���><`�
d�%9p��@0N�S�d���jy���%=�g5<�~0i��!;��ڵk�V*�vN�<Eǎ�
9z�h��4J�䄎^z�5-�N�������
+�s–�Ht��t�nL�ɞ�'N
�GI<�&*�,�A��qO,���#�r4:�p��0L�)��n�C�/b"	>p���2��K}(�~˭
�v �R�
x&o2���"y
ΟB��i�B��ʞ��s��j�*ԣ���c�0]�얨۫P���.��/�֣.�4>"
�l%�]Ե�v~^���4|x�D�A��*��C���:�(�[Pdv7P��;-�f�@�J_�V'��',����6�~$����X��k`�0�9�t�x0I�wT)����΀�A�ׅ��Mj5����IS��B�t�{L��h,	A��t��U;O�)���׿�9{,�b��k�� �7tl�g��}��=��LJ%9*Z���N��_i��`bQ����կ#�^��.t�(��w׿�G����AΕ�:��a��A��y�2A�h7��}��(\^[FM������qI˙��%i��{��ɿ�kt��i{{�n���>�<5��y������^�ң�~W�BU�ݪ�Ž*����Μ<Nݽ*5�z��/���(&	�)�����Z����ܧ$}�,�,�&E(m��֫SW��d����c��\�1�ԩ�4?�
�qc[�^�w�h�U�y�QoJ=B�$L��3�C	��d���d�n{�ɐ��zn�x�?��&��s��QIb\{��o�gK�Yom\��I��n�
BJ��qJ���%:����8�'s�O)P>��7�i�� H��/���骉,���l��T܁B��=D��@��������ݸy��r��+���*O�<�L(}���*k�<ye,z?�<!��}.���w�˙����_7����}(�Q�8N�Ix���k��
�7�矻�й9ۗ�
��Pn��vZ�l�<�<���#$Db6˪tc_�9TR����.��E�I0�o���N�,��d]A�ӈΚ��3@��Q�$�6=��ҵ�Jϑw����6�10��
���kEsfQ�n���'�P����ߝ+T�|�7�޸�I�Fr}v�_90�R�V��  =@|X�V8�d���0f��v��ස�
I�!:$�ᱼ�L��*��q��e��8r��[�)�n�q�?`ń�K��ΈW����[��UJ���9�i��r[sDe�U�����ү�c��ut�I�d&��p,۬Ve��$�U��X<Eھ^ɐ+R�|B�x�v��=��i�t�\~+e1GT�VL��B�T�y �q��ʼjԠU4I�v
�"a�q�1���y`�c ��T�T�qyP���b|��i���b��)��$uX��iVT�ՄA�X4>`�
����-U�w�
�Jے"'|D�B���d �g��^y�ȴ?L-*kC�i�z�I�~SO�w�+�5ajI96�KƑ��VfҢ����P���i&7:�4�p���{������)q���0S�`�6�}U��0��e�́�ұh{3:�"	OȽ�����FO6������=h�P��p��O̴O~�7�*J��Qw��Wn����/�n�C�mDž��o���_��_1�-r
.�51����Mء>cѠ"K"�u��jm�lg����A��.h_]�!8�+-ة�|�tNID��C�(����d�������>�Ǵ��E���8&_c�cck�A�.��l�����&���{{L@�uie����	L�Nd�Ͱ�Q$����;�E���VK�����FؖÔ��K�߻s�%��Ņy:|h�n�o�xS)7x.Lhk{����Y^�J]�e9�'�.M�F���\7uM��8����O��Ri�+Y(���E���1�[�L�$L�; pg�+��s/�?ӷ"���+��@q�ܚh�A�9��Ue��N��1���ԡe@�a��a�C�/��Na�ܝ���[Ƽ�)q�L��jw����`���y�L:v��e؄��&�8�ڨ�Ȩ��3�wS
)�e�N�5�����B�4����A�f��)��)B��|��y�
'�s������|�<E�z>t?�>B!$���*"�(�Ly��]��'t=��!�Ψu��n�+�׽�׹/+�?�<���5	���+F�y�y�h|��E�?��_���?��M(�{>�Wl Z<L;�)��H
�J7��-�aЇ8=���ma,p�zۮ�ms�_�S�VFbC��ڷ@7�/��7�}D	�h����Qc�8�T�w�絼��_/���Ԑ'3�}�q�� �R�e_��[�1a������/%;��PF�#y��G#>O�y+�欌/e����3֤|y,//G @��shx(�M@��a9H8,�!�&ކ CB��e��81��B6�s�*���y�oqn�o�;v�c4��-�
L����8�`K\v�+㤚�$&?c�ȮJV@�?��E�6��X�7%S�Q�������o�ƿ0}���I�KT�Hz0�'`��p$Mo@
$�%o�m�x�
������S����v8�]v�v�k�`)�\/�kX�w�_���#Vu���≠�	�a��|\�%�݆?�W��k.���&���9��x����\�}rl:��lf �r�.��[Wf��U&�Ĭ�n�Je;�AV���2ɱ��*��*�O�s��i�U"�3Ҧ��K�B�@I������ڱ�I��=!84����~��`2�P[q'���8�B�����s��m�Ύ	s]��{�-�ܼGM�y�P��Sy�>ίM��>�_�"m.�AZ}61jKf����"![jX���["w�\���y|/����Ҽ��fK��09�c|�t���_��l����c���?Jw�q=��3���f�cW|a����5���W��M�O�v�G��]��">�1$d5[h��i}���.b��9B1����:��M����MK
ի������N�FDǏ��^�~�	���6<��"6�QE2�5A��4#L2��Z0g�k�;��e|�.�h��X�wd+DJh�
J�"�	�β��IV?���6	�0	?��]vg�K�mت�_"�o$c��ϱ�#J���";��!���9��2�I�q����+�%��?B:�a_�Xi��D�Ԃ!Z�{=K��;�rfF@8�䒌v��#C	�z���q>I�R9�g��8v�^��
d��X��
6��U���n�τ���*�d�}�G��˅�{?����'O&u��,C�Uh��YT�PY��jH�	=�wo��y��w?-�>lZ�<���/k���I�_@�q�U�Ix煢��S~�����L����97�Q�x��q�ɳ4�e�$b�C᯿�}t���U=ƞ*��p6UZ���I�$I�8ZƱ�bp"+�}о����4Y��^5���X�t�|�(�f��?�w�W�����g�w�W��w�x6�?����5��y$���*�h@l��қ@P��&HD���\�D���H�5Ct(Ct�5������5�A�+��
�Ǐ����H`ڪT���`�,bS��	�%J��c�
ы%B9��#�(
r�*[�*Gz��"��`�}�I�ߔq��Z@�%N��)��cI+Ҏ�K�O(R@l�E�&E�E��U	�$�8�myBѵ<a�Ʊ��&2�}��Ñ65�
{����H�J��4��E��h{�~�ŀW0_%��q]���
��(m��88����E���2��'B~�St| 4�Ș8������XLOɂ�w�8Bh�7q=����"��HDk��R� ��ʚ�O��kĤ
�y
��+�@����Y_[c`p�f�kT�~��� �^oH]$=.@U^M�:�� �Fc��a�
�e'5H(Q��ŏ�@�i��q���t�}s�~�6[t� Œ?��Md�g��.W���d���~>k�,oJ߽v�?��{���ԑ-4�e�e�cSW��D�k_���IK�˾o�юn2��
QP����-��&��#���IJlv�$d3�TfP���S�"��{/��ѫ^g"���VY�8]�yO��}j6j┾�}dms��/��o���CR�����h_0z�
�<���ܒ�8D��c���}�m?��1~�0�I�Ne�)R|�Joe>-�V��Q���ғ�%Eo�Kx3�`0裏�����6"2�*Oެsn �ꜹ}ΩJo"#�Ȉ�c���i|F�=[��~n"���*�;ǚ�~:�f��6�� ��2�M	�ؠ6�%1)������%�?��i��B�)�kبTD�ܠCB��~���EQ[��H��Y5t���з���
?9�n��̾�����/���L1�(�m�Q�|��}��'<�eN5P>ۄ��asUjR��P7*�1�ve�3��$.���9�|B[jMaa��V����x� H�є��u�?u�,J~+� N�x�s0�����M~�x]_��w^sA����»��{��`��N�S_S����������Nu�
nwL�ͅ�||������W���n��o>e�q#�q�Vh�/�։��V�V]��t��/��~;�w?����]��˩;�
�t�6��B}I"��n^�@æc�2�s�:��B8�2J0f�s`6�@!���7Bu�#�7׻���3_t�>�����Eϲ��w[�o�py�N�֞���&[������hv!j���X�v�v��gF���b?������X�By��Q;$��`���MLL�&��+��AI��Zڙ��{�ϧ�~w�y����c��r3���
f��⥋��Bq��
5�l�Ŕ��D��fQ�T�oj.]��]$�16=�@���<��n�Mn���q�=T�:��Œ&�5P�-��^Y���T��FGF�C��:L�N�$q�K,\�ԍ���������1���bG��^4Yh�/�*����'�߸���eD��8�
�U�nϱ�����'`��&�(�����T��
�27�/��F�����V;|
��?B��C�;�#���Q�`��\��j!��G���ܠ��v�����l��9����{be
+�݋$�\� �9x
 >���EZ��u���Q�����~ZoϞ}����ۃ*�_��H�����I䀹���ʥ�6�J}�7�(Ϫ�wc}M��-��Ҋ�.�����1�6O�60Q�͠}'���y]�������<��翼6+g��A�0;z6���m�{�{����m��d����k�{m ����[#T��d+F��h�EM��0�y3XMs��P��E��1'�G���8���Ӷ��f7�M} ���00�m�І�|����K/��o�чp���p��1lP��h����6���E,�-`��ȑ����1\:s
O�x��D���D�Ӌޑ1Ԉ�����f�i��v�\u�+�\ 9}�s�2������ߦ�Ξ9%��g�v���2�"tc��U"س�?�"	����-`ǎ���|cQh���zi`-��۠�<O��2;hҡ^g���Hd9ԋ�?�
�)�]����Q�p#��{�HTh�zN�u���W������@�^c�T�c1��0��/N���S-�~�2��G�&'��Q�yG)K�
��7�v�/04�}�H��ܡ�U��I�r�1���;�9M�d#��$u��	��s�L���'n%O;n�$�i�n����I��?�j=�37mV����W�3C������KV�Y�ݭ.�µ��-�w���V�g�Í���	�`�Kܳ�Vֿ��������-���,���m��ʙx ���ڈ����^u&�;�~���\r��Q�V���D�3ib�X�0����A��G���y(�l�Q��m�
��̎��n4�M��7������!��_�j�]�#���o�����q��ca�/��/#~;�K�<)�hx�_`|wp �F����*NKB��tyڇG���2f�D�šSS�o�\�f��;�0 �?�]
f�k��@uXY[���2��p�����ۻ�ΞA����"pX^]��Ǐ��������ի�ymm��_��C�D�����>(�4^;}
c�~qiQ�f���s�4sU$5��P����iy.O_���)�L�Pz��23�WO���];1M��!+�e@���-���Cz�'0I�>��Sx�;߁���Ѵ��T�#!�]6q�mB�֬2\bc��7��9��
#�viju�<��F�̓���~��yl̞Gk�fO���K�'�\�@��Ҙ��)ɐr`M"�e�P���R��BE�Y��v�#��&�� �����(�M?uD���EZ��(3)�MM�5���Jl��V�T	"H�Q �*G,GJx [�S��!��!�k��%��b�)Ѯh�^�c��g�QCܛGO!V�M\�#�ED�0���.l����ش�2W�u-K�M�MM�"l��ǐ}��	�fg�Ⱌ�G^?�̦��~}!�@��}�����y`�Z�Br�A|�4���Z�A�Bb��d���Y@�{���r�9v�1F[
[a}}�{���,����i���Xi���P���i�U_�o��%^�v�Y�H�u�w��g���ڜ�So��xkq��y۝���r���0r��Kc��88:JB���]Ķ]��?4���1���u*F�1�_��gd|G�݊�o�ӗ/H?m�|j�E��P�ӂ�(@&�����3WD�^^�|
�C�Z��h�L�঄�\G��
��gS5,1��J��)(;��Q?6��U�M��'�J-�FcM�S(2k}��y����4֖a������i#U��dX{.�5U���aqo�ῡ`h�������{�ʧ^��á�fH��ߏ L��'���vZ�{�`�4ry�Mc�oMw�z�������[�����6���jA�ﰅ�A���.O�?N�뗑�kL�
ol"֞t=����nL'^�Sy��['�����3_�|�}u씇�O���T����E_<���gY��eo�}�1�խӘ����c+u���/�nm�}߷�ߍp}�M��g�v�aϋ׳���o�o]u��z�zg��U7�hk�!���-g�)���Ҵ%�HΊ0�+�4i]��Opy����l���Կ�@�����0?ȊW	��ga�h�;nײg^�|����컅�u�;�1q�O��7ƾ��W'����H1	<��Cy-��l�&�I���f!���MZMLLD$�H�i�ܘ��B��<���
��!�=�I�$�1k5==�oW�C�J����k�ɗ�dp�P.�e����Kرc�hv,��bfv�O��0�S������
gAk\%!���n!�N����
C��$��-�cGo¥+WH�rS��D��&~ج��̌��3�9Oy-��妣Gq��i�� +�\��q�\����^���Sp�����bmu
ž�
B����0��CDV?�<;l�I�D��7��y	��XS�%�X���V�}��=��w�����fM���.�����8�2*�N�2s��

�
#@��Ȉ�.��ٌ�"�\�<Z�2s��)+9�B�iA`�L4/�PY�Fu��_j���@��F���Q�}��1Kr�k�;g�<�Gk�0���A�d���ب/�/�jU��"m�$���略氱����@��A�����S<�5��H��D���T>PX�ъ����FE�Z�w֤Z��W.����o�?������s���G��[���ol6#h�{֒	4��k��.y�����o�y�{�M�p�ֈ{��)���g&�S����ٟY��`@eÐ(�$>`��Hݜ5B���B	��(�̥�E�;sWIx�s����=w�	=�^��R�`���|4�ejtb>�۰������-?�Tiy�'�[,裹���j�
Ԇ
͕	.��s'�ڣ?���ĩ3�p`�n�t��15���K��ؾc'	�h�����Ж,ۭ�,e�O3ұB�Dl0�Xђ�~C� ��H�8����DF��8�c�ɏ�ш�8��.��z�ӳ
�!���Z��EƲ�r�K�Gl2�!�S9�H8T�G$@Q��\1%��`��$���������ine�BW_�I��F�����H��CO�̔�%�8�\�~i���aGR�`�)ޔ%5K)�7M#�|M�d��'\��͂�M|��Pfwۅ�Ƥ���b�8�?_
`Ӯ��rO�x��JL�_��[1٪�A���6L�J����~��e�W�.�t��>�U��s�//����w�K�����{V]| Yo�_o�8v;:����6��v;:�c��Nj�c���3�-���V?�{�8n%��
�v�3��RY��G;�
nw�㛣Y�s��{��ɪg���Pp�9��{�>��m]�&/����#��IZ�-� U��=�=.�v���iTL�(AF?t�yYt���ɚo���������|��k������m�p��Y!��8b��X]��>��ɟ��о;ۜ�����;ֿE�a����Mf��=��y�f�1ge*j��g�S��
���&�����F����	J�<���),�	,����C�r��b�Ą���}�����֝b'|an��Oa~z�?������6�?L��|�1�'��;&��� 41�#�!�%��hP��&!�z/�_w�~���'૴s	9�P,	���t�~_�t	��q���2&F�0�}�MN�:���~=|X�'�)9V�m��i��Q���aGiZ�R7PdЌ�}6�2K�<+0���b�q�0�[��t�TQ�?�ƙg�|K�����u�
��_.���aiz+���Z#On�J�>��q�-�e�1���ڄ�/�m���
17�\�d�Qv̈Er،C-�S91g��D7�j����A�P��D'�z��
�HX ��Fuv��&&��i
�ڳ�^l�\�ިhX�iT][� k�T�kb�58�\����>=�=啕lPs�XP�ͱ|=��{3��̳~������g�k�_�y�����Օ�SJ�����'��k�����@y���/�"�o߾���b
}��t��1�>�ꓬ�&�l�f��0� P�o�F�7���-`��w>���WGc�
֯�&)vLN�'���0Be�/�@(;dѨ�b�u��L|��r&Bbg)7["
L�YBY�v����:��h"TU,/�`u�մ>ID�2���:N��8��~��Q$P��]/�G�2r��Jy�s�:�u�j[s3h��.�_vه�ؒ�����ٯ��v����IZu��z���}�vQ{_����(	�c���u�g�Yb.�%�\Q4�Xp��ݨ�-`�łB"���IH�Q�4�r"������!��F�|�w�\���S� �A~
�j��J�m��hz�=�'<�8�0������{v��GJY��b����fY��)��,�o��lE���a����u�kAl�5�ּH�l${�TĪ��F��ȭ�����c=1��SyGo R��e���uoj�wtyŬt�޹ef�U�r���+�N��W�3���['_�����x]��]�N���=��r�a���Ͼ�d=��ӄNygի[}o�7fȚ��q��g�Uߺ�`�C;�k�wz���<b��T__{;Ѣ �^v�x�_�	�s�7.-s�����I��mS��u���9܈7�M�~��V鄏^u
��ɪWּ�
���i��[���e��i]�y����y1�)�1~@�ɨ����m�*1i�B�c#찝������0B������S��e��ۖOOO�$���A:�&q�#��b�b���<���}�v+�I3�Ը��!�֡��
� ��5gF��qp�~v�{�����?,7�'G�E#��s����~o�{��n��Pfp(-L>�����F�Ԃ���$��x����Bؿw/��`$$�� �F�3��C
dԬ�>����rֆ����;�3��w��/ŬR ~4Z$� оb�ԃ9d�HX�o (�z�f���B�V8����nFp�c��&O?���b����X���A��bq���U��A����6�9�增�;1f#?Q=��3P����� R����ɍ<(0VF0��d[�����H���`��0�gfI87�ROYl��
;��QSG|nm���|QLN�*!Fw������v��D�@��Xk��:)�R�H��|��⣆Īh.T���zU�gL^�P��_[[sr<��{��k0i9���;���b(�;�ߥ���y�@0!E�L���X^^����6�ib��׌6u��*T�W
�g#�ϲ������v>��C�������/t�``�aƁ�_Aj�"H��D+,�4�P�@u�����(2�7*�(��Ah��he�鯖�'Q��z3�/������3WP"�ei��RSi,�������w�	��5��dsq�T;�2N�Ӭ���K��Ӟ��"�O�v��h���|)��W�q���zL렂V����N�
�����!��R[��8/tp��ϤX̋0sx���CD�ZD#��
I�۲ȩo���v��ؐ)E�-!y��߇�z�:�ı͸��_5�N_�b�np����#X^�'�R�~(S�B����*�988$����>w��	w{z�F�܆�~��:�[�Z���	��U[iw��F�n��7�͚uP�G	>� ͳ8����>D&?�g�k�o�o��f�vNY��������z��������c8�s�,g�H�$Ek���$��*R���3�[��Rh��7pp�kM�5�v�=�����c�H�s���-���4n>>����e�q�߾�}y�B�~�6�Y Q�s���n��<�)��?�ڕU����n�7~Ț�β>��5�}y���n��-�7O��.�˪�/�m�ѼNm�Կ�u��֯�����m����6�,�<w}{�[^'����-�M�?�Ƹ]}��N���ڟ�g���{=߂�����&�8���\LX���827>=,��IK�y+��Џ�-����5<XSajJ��|x���x������!/�
P#qN�M�<��i$�S�!�
��u��M9�d��,��Ky����A���A�)N~���I:��)�).��^bebH0P>$J	�X����LP��=�D�JmPfx����`�����Y7��i���}���І�ؔ�U�c?yipĂ�f
��KC	G�{�V$7�Y�S���r_7�W��7�!�߃��#��>�,M�v�5T��Vο�Be�@����X����
���Xiq�/�ï�S�
��� C�2cX?����Q{Eo�Ѭu����kg�r�6��d�"�e���h��A�{��
�	>�'��J]�����8������a5�3�F��p�6�03�DB�E==������?�
�������du��k�p�JE9.�H¦�Z�;3_?u.0��!��k7�b�!�|H��S����������h�y�^����7t?�ʼn},�#XmU �Eu����GJ�����4�^��Ѻ�	j���N��7���?�
1���#c�"�	�CT��;E �7�9}��U�;Z$]�g�L|�H��t$h|)s~1���		�B0�J�_X��s������I�CM�N��2����Xx��h�-�������W�7g-����'�}���/�t
=�(�U���������1l߶��,��\(�3R�v�K3YW��"#}T�uI�lb�|���A�h�hG屲�!�7��X]Yǥ�W��;J}\�x�9�X,�X_Ʊ�7��k'�����m��g�,�u�SZ����{�}rL�.���CwHg�dӦ�g�)P�Uv�j��D��씛��$��Lo��N
b����Si�@�l�7��ۇq�Ҭ��m��0��$Dʑ�/00V�5�7�{J�$L�=�A��?G,���g"��X[��"���/Rg1�b4Cdd �g,�}#�7�#�Z��Xm������C-\7�P������\���8�7�<ݛ�>^�&��X�z'�Wiԟ�H��4�sڶ�DB�5����P��&	休Kڙ���`1��� 
�PBՐ�6�����K;�~F�#mk�w�/��Ӭ����Q4�� =]�!l1!��A��x�ʰy�n�l�|���S]|yu��U^���B�:l%��ı���yn�,�͗GV�[���7��gYe���r��7�;d��N�d�{]�Z�n����~tJ�g�5�����Yu�z�Z��_vZǝΏ�h�/�k"�ΣS�ڛ|�qӹu���g����q��m��o
��Z�_߾���z.�yS�	��˿��a�:�Ř�����\kv�i��?9.���O�ayP.�Ŝ��-���\���T���ڗG`|y���o;0S)G����h;���4�@FeR(B�ޔ�̝�Sf��[�|[�O-mן�3�MSs۳�q��7�Z�&@��X
���&���� #�-�p���'}ķ��#������>��i�"P�W>i��qN�:�)p�f���#s8Du�M�|�C�`_29	�a?a��(M�@��8�x3���`�ēX}�q�O�P[EX_p�T
g�^��rr?]9*f�WyRT����N�+ա��7ִQ���zZ`Y��9�
"�B�\N.����	�$a����Jس�(6�Ln�˯^���Zr���ܘ�cn~Q����b{v�ҳYD�+����h�0�L@~��-�áÇ����};���-�ݎ�1|�����9|��>�		���^�W��5���1)��#�lA4L�mێ�}׻������«�m�G�����uD�,؁���7+��(=�����T�˯����
��M����DZZ[���]��A��V����(��/������Xb�Q��l4YG��8?���
a��]���ah���"ЪzA"K���
���
��6��7궥@�/������b�j��h%�=~Zf���ϡzWI�g�f.]ƫ����8t|.--������8r��DWk���hn�p�9��ǟ�מ���f��f?h.�I������M���߂��� n�sK_�rh~t	
Ć:�̩N4Ϸa[J1ډl��lɞ�3ME������k{�aii��CU�y��x���P���ͧA�)쫂���ndxH�%&���d<�@�47h�̄�g16�9ci��	��T�%0�VZ�-�E⸜�*��}l�*��8�md?8-є併Hs��Tً[�
	B�=7I�/��#�r�z����e�JM�I�8��.�K����C�3�6���"�n��/<093�:Vc-Hh�c��%,�
�X�p��A�@쥵Z�`�����ʁ�-zf0\��#S�M�l!n�T��.�`�Fc�*���]��k!�V6f���[�W@���Ӧ�T���H��$ءS��
�s���K�?.�e�Qn};�ӗ֍o���<��w*��;t:��7n^Yy��6lu��w�|c���6�q����Z���|�	Y����y�ʠ��Vր����)�4�7�}kĜ�|��&|gN�܍g��)�k�[��d��G�:�q���=�^Y��E�:����Nm��w��|=w}������e��[ٟ:ՙ���8p_�O�т�R��F�)�!�v�f������lΊ?٤Քvh-��>E����ǃ����ۏ�'C�jቯg�h&�e��l��ʂV�խl�䄡g�	��i�9��z!-����[��42��^�\6�rj��=�$�`k̜w��Wւ���=�J�|���Y�|�H�Ma`��DZ1#uXK!cݷ�������"�mИ4H�R(������]S�-���ꯝD��3��.��Z���XI@ΆMvj����e#��T7��7�b�ϖ6��B���J%�+;Ī��4��b���g��r��8Wi*X]�j�!�����V]ǃ����v�Dl��D�M��+U鿞��h7���p��2�	T\��`��n���X�ty��w>,��Օ�x�e��m��s�I804:���P���-`bl�Ơ�2	bzzJ"la�����ŵ{��'��/�C(@_�2�D
RxV�(H]Z�@eTؗ�jW�.����G��� �u;>��?G��������W�����K8s~�o�U	��öɝ8��Ejw��+��A
�~ܾm�3ȅ���~�'��ħ�_g��|Q|�v�9m4�p
̍�ߜ�%�6���K
�obM0�����a^�hb�<wHp˳����Jc+님]]�rT��o_x��x��߃g�:���xǎ�ͷ��rR�g�}ԇ$T�4�wO?66Vi�������5��Q/�5�����9w�%���=�}FǶQ_���%J�g�
W�e�Ah�A�O_bn��6�N̑�p� yj�.\�
$Ȩ�����kdd��z��W�v��l:��3��&֢�S��s��C��a���G�}�D��b+���Bx�t4=vϸ-�f��i1���rx�!���Q�EZ�%�O���~�ë'_��T�;m���4�r�#91)�O�6''&�t�i=JU��zV=E"��k�?goz�3�7��Z�����@1ꅏ~�%
�����a�\HNX�m�a(�π��â�����y�0T��Ĥ,&DS#6֚o��St�T(ka��4V�y?b�OI��tO��(Ӗv�Bsq�련��DCu�	ʉ��s`�A�kd��R��������\AE7���vy��:d:Yi�x�{���=|ye�I}�r�ٟ�Ngԭ�ó�ʊ�ն��[cS��;�����s��4>�p���>:��!ߺt�t7��i�����[/7�oMt:+�}�a��d>}����f�n�e��;Y}g���Z]'��N�ۉ6d���SȢ��B���n�iY�ֺ씇o���}��S1ie���B��a49�9k}�#K�jy�g����0���`�Z�C��v�Â��鶁�c�V���=X�q�N�^[~a�7�Cg6��	��`����:`{�۷M�P�A�ud3+k�����WG��L�0ӟ�
e�6�������|Uqf�hD�o��O!�0f%iR�
j��Y��G|�	꫃���W�<���/~�M˟7��Q<.���m���.C�YV1�*A_�G�G�~���?��ށ��;���6�;����B�/��r��5�&	2�T.�l&��R�:�%7�#����:�
�@i��⸭ա[5NμA,��妞h"�ĩzl�sPFX�6::�}Sx��,ʅ<��$�#9K�@Q6w������@	�
%eR���|��c��W�1�?8(7�z����)}o;w�$��Z�3#�ћ���Q�,�ѡ�>ʧ�;vc���CR���ϋ��jE9�n5�b&��ǖ���!p�P������,��|X@k�ak+x��G�կ�3���3���>���
�����@�(f�h����_����y�4�����M7���)�"ի$}Ȑ�懚�u��0:ԏ[o>����_�׿�$�������	;�c�:�sZ���C�Z�M�(���E��ѐy�(��Wy�p�0*�X����ŧ�ķ����z�hY?j�q|���Q b>�5ԫ$P+n��^Y�㧟 G�n9�TR�i_/N�p��
�_"!�=�#��֏}�)����v��CB����Mw݁O|�����2�ء�)�B��O.s���hbg�d�݃:��'EĂ�(-@z�B���^Y��
�px-�>�j��EzWLn�D�#'��{?l>Y�}�H���{@hG�Z+�~0���ܶ'!u���B�ps=�:���i�����g$��(n�~�����)�@��imm��>ڣh=�Q̵���ɚ�R�@k�@�����Egjk�@2y��;xC=��s_<�M��Ü�7��YQh_i\���2BR����a�/�.����hC'c}�E�R�B�w�7NJ
���P�Z��d�c�N-b�f��)�;�Y�8N>m:a|u�b�'�ځ$��k���%]k�8�f�C#��r����F�\��3��Q*��x#ȟ]��<s�{��t�s�q����s����~����!�ڔ�w����)/7�}&n�|us�5Fn?�Ͼ1񝃳�a�{��w;��xn���Neda
��q�t#�q�}.�4�Y�*�Ύg��;�Kߚ�����ЍV�q:�_�]V:|i�v�y��|4�W�N��Fg����}�˝�wָu:��4��4���3���Y�`��/m������5��ֿ��yS�A�Sr�HƇ�. �Jٌaɗ����<�뮻����;~��5=��hyh
3V�H�C�3�����#��m���B+V��_x�%�6pb��K+��`b���+W�l�m�J�B�IW�ݵs��[g��{��W._"pj?._��r�,��vQ��H8��� 7�x�~�-.�2�y��e��'&p��W�o�^9�
j]�`��`�wb>:1h�6�ka����V
�7��)�d����؉��
Vʉ�(��j�ۣ�,��E��[!�?(�����[0��f4o��>������+�-ѡ�� _Ӧ�hS�<M��\��1�.&��
��Nn��AN�gr��@���龦��o3�Jo�P,a`�oߎ�>%���CC�6�+`�"��(�R��zU�!�B�`o}�
	q�]"��@����"�H�Ɖ�����6�����g�m-�0M�d���Ј�A�NB�嵾���l�������m݇�Kp��ŪS�L3����M�jw*su,�6gp��I<����G�B����!F��P��A���K�]�B�zI�����с:�A�`��Ju��$zR�1���[�3�WE(�=����~'O���,~��~��U1Q�&�^�%8�c/����+�*�A���(�қ�5"H�Z�^8�$���#��7^!����ȍ߄\߀5�\�Ѹ)1	����WD�U�Rmc���\��#aRa+34���Z�1�Ǟ���CosG�����Gp��c���	����@M̺%�
�����-��#㨚�n<����7i�P즳����b�!�ah��߼�%�}$�C���G�b��o��Ջ�|Rv��~6���،����A�
���2=u��e>���@Ӫ�2�@8���V��~�0�P4��r�$P���,�R�)ҳ�O�+�D=}��'���bB�Y#aQ/z�%R|Xuu�������36K��To$�V>f�}�]\7�]4�W�e�aM�W�eA�C�&�C�v,&
6�i��N��c���3|���|*7q�o�Ʌ��Q�/N�
�{$�|!�ղ�-ܰ��A#-	��@kar���5N�������̻@�i?KW�-��~^"QEʧ�.|��N��|���ݎ�	��n|����w�˪��|_��_���{��ٲΩ[��af�ΫY}��,+M�g6���u�o+���3���>���-˭W֜�ޘ�]'��=�����!m�NYg";��S���t���Ӿ��kO�3��Y�۬�߉u�-Y}��F����;��߳�/�n�ю��ܦo��z�_[����N�ߗw֘e��n4B|�Z��㿃�����|��f�p����sK� ^`4;ؗ;J���355%>;�q9�7��;-g�:����={Lp_0Fv��LM����^�6��W	�]"A���$^&��=�܃s����G�� �|�)�ݻ��X����:�ё��Ή&��^�t�J���X^Y%09������A� |��A���8�
��"l1��(s�eҭ�Ni��Ѹa+̎�G}u�Dt��ðK��H�� �IȀW
�ɏN_=�@n�1�� �!N���,��jL�|�8���a�Gߌ�kOb�/ �p=
|��G���_#��=����ʂ(T���e�
T�D;H [m���.�<YUC�V�jR�H��U��+X�q��E�+��W���<��&&�K���Q�x�%�m;Jx򙧱�����mx��Kl�reS:L¨��@��P��}��I,�P�̙�(p���}���h��"P?n�����}�d��?t�T��7�$!���
���j0�'g��$}2xl��SEbʆ�;�֨�}yڤ��A��:�O}���	�N�o��@��4F1�\�����i?;�q%0 b��]�h0�O�H����2	q"�ˢ�Q�bx`u�g�]Įm��q���?����o���ɘ��k0QY�IAa;tb2�ⴅVK�yE4FD���
!	�������?�GjOT�7�z��g_�O��<�|y;wF��$��Z���P�	*����/�(^��~�����V��7ԏ�~��_"�zEZ;s�Y��٧�\��w݉���?���S���>���;o%�SC�u\6�E��`���� ;�C���|�;Բe�$
^��cBo��Ϧ�/��\i��\z�[�"�6o5<4*B��>�u��$�cMDU��v݃�MC]��Y�IӴ��{h"Z�a�/N�bO�EF�1yeSrM�5Ag�7L:�9֊)�:^z��>1O)
ZCy��*ѫke�I��t��JH eoO?�����pڪ�kXı�t9�����.@����מž�7�ŗ_��$��._�����v O���y,/_F�o�M��V�P����F�c��$�5�n��$/f$#Q`�����?�s��P��_�8-+)_�d?�(��U��DK.վ
�@S��h
3��f����dQ���{��#
=W�\�cTN��g�*�Z����U��ZeN+��>G���BY�:F`�cW�"[�Ԧ���x7$���H�L]�:c��i�d�s��,���Y��/��6[�|g<_�}�]���wV�
O�{��L����׿n��tY��<}�}u�ջ�X��r�Î����WV}n�7~Ȣ)&t�y�tn���o�f�s�w?���ne�uq�ꮇ�5��r���z�gYetZ�[y���oM2�.�^Y�Ί�i��x�>��k��o��}�}�od�={���3���?�I+�/�׀#h�U�y"�`a��$5�~=$�ߎ���gΊ��Ƭ���@lar�s#����r6i�Z���O�a'���t��

aϞ=�
L�{���o`���a�3��4�� ���hsp���1B@���Ĝ��;����P(�G�V���DX��J��^���'I`�����&���j���-A63�i��z�����7��]�,"�{�%Mϒ�+栣f�K���k�Vq�Ȥ�%5;�o�C&Ϫ8ǟ����B�X��@jQ�\�ސ�ɰ��;�;:�����<�%��}���(����!�c�T��!����(T���?�N�W��G᤯�,W��Ej�>�zS@����2�2RB�s�c��!�--c����ؾo?f�.���ۅ+�O�܅Y�)S�4��On���½z��={�	�|��5����׋	ʻ��*���@�I����G��%��ĤS/�K����w�١{��҂���#�
Ş/�oK��y�[O�c����J�%��:�<W
$�\�g>�(ב+�������|��+�X^��O��l�xU&�B�ĴNS�
�y�7�[4O{�Jk���nT�0}�2v�؆�����%@q����%Ћ��eo��\Y�+�A�՝�:�����X����z��o<�4��n�0}$���B�X�\�da^��O�<�G�YC�u�c;0������x���4O6
�� >\�JP'f铅�Ҝ��\̓8��wP��R���ξ���y|�[�����<�ԳX]^����k�TG�*	����-�s�P9�w� =x�qf�Yc�+7��r����VeZO�7���ɂo�qx\Y#!IK���G��
֬��`���
�OX�A��D��$`,�=&`!����o�^>���(��\�h�����N?��C__�ʯ=J@%��Ԓ[���s?�VT�氀��Ѩ���Za_�_����2�@���ng�%Bƾf~��o-���oG$�2=�x`�Ӡ��u9t�>�%��mX^�%�>����jX[o��r�bYJ�kLT�����p#HP�H�rD�v
CC�]J���Z�C��~�&����ƑFlD
�Tf��{͗*U�����$������;$��h�"��l����A���t�MH��nƹ"���_�@s�f-s��M�L	4TC���c�n�=��V���|���g}<��,e��G�n=||�]��Cu���<�~�k��ce�a���k���N�_���n�����%�WF�����`dz�G�3�/t�:��\��}~#�q���:���ֿ��y��w���Sm���T�[�V�]�h�ώ�Տv�nyYt:��iVy���q�ѡN�׉��M�F�;���nm���V��ns(�̗_���7�c��T}���r$q��ݡ�Ø���c�M\�Z7f�?y��3&��!­OM%�1g���lӜ�<H�A��6�Zie��$��{�m�]p��Q�Av�j�[��r	Ãw��kT�#_n:rHn�/..�
�����}�fK��Y���;�c	<�e[���C��9[����F�f1��fm(>��]�Y�
>Bf��{ש\7MV�ܶ�C&��L�:�sTئ��|Կk(%`�h`�v|�
ʜOK�+��x�j�N�oe��=#hzoA�}<��N>����R�Aq��9��y�@�9P�m>�F�v��.�)-9�%&S"��+�^�<��[-��s2W�Geu/?�2��r�w�Ǟ]S��M��G��ϟƝw݉[
�ЌIh38����?"miV���1|�Ͽ���.�{�0���A�+q��^y�5\�x�~���� rw�q���q��<��o�mo}����7��Tkb����|�}��'�߿��$DX���Iw}�K:�B�@>y
�:u��;�KB���s��8|�0��P>C�$k]-�?��?��זI ӏ�v��޾\����W�H��+���B "+�X�P�'k�-tv4M�6*!�P]��⹋4w��?�1�=J뿆���ƃo~3܍����";v�����	E����T���V3�o'�1<��Sy��O��>��}�	|�;߂�n;��޲��|�
�s@ ?������:	;&�cdgz�4'�y�x�	}x�������Y�@���<P�Fk	�K���B�w��0}�5�*W�w�o��.6oã�=�Ǟz
�o�0>�����o~����SGnC��k�&��*h���;�C�.?SJb�u��,&�-?�{`�L'y��M�'N�`�.7֜�:�h�>�`~���R��#�!f�H��{;�f�As�X�'Z@F�˞ ����:��_� iX\��(�m��6�٬��o�)��m�VU�F$�4��h�\Y�	�x���AP"�UA�0�U(�y�D�F��7J�:�0%XEr�48��[Vln:���$��]��u�����%���i*�����g�a۾#�t�4	!IH�+�>R.]�L}7�ra~m]x�=sC��F��
�2�g49X+���s���-e�QB� @B��t���Mhn����F�-�K�x��M�N�'�6�ގ�mO���m��J��)W�1xr�ʌŏ��M�y�nuV}(S���_�q��!_:7��}�Y7�Ȏc��	d���n�=/ڠ��W��� �/����lӨv�[i�\im8�}ϳ�GV��3t���VƯ�+c�	Ǹ��q#�1�V�LYs�]��w7�������7��<�N��ea\v��h{sC�r�6��s�A
�ի=��S�\�S�|϶B�:�iʵ���q��/__Ȣk�-��Z͊o�3a�c�m�g�o�<�$���9��vVn48�9+��!�Ƭkw؁�<X�A����7Z�f	9�i�x$3��>���9���i1g�᚝��ʭ":��v�-LaaC�P�Q�k�2lz'O�ܴ����R�o;��ts�cC�9(SYh"7��Ű3h5t��V(q�L`�H�H�a��v	g����旵���,���m�vl���|��H�栓�6�H����{q�\n�+g��uc�#0h�'�DQc�V���
�}$�DヌP�y6��:�^�֧_EO}�EZ|�|�Ğ}��+�J�'��¡���&��S�X�qK��,��
�c�0=���19���A�z�4��
L�Ł[FQ����>��gp�Ca�����W11<���	>z3^�0�s����������f+A�7�&
�2*������&����~�T�iaS�h�Ie����ķ��n��|��_�5U4:+�v�1ie����W��_�&r�*Ν	�d��?F��B���+���㑯=���Aj�Z������U\���F��1�U
�0 !�Ary���
`0���Ar+�O�U�}ߋ��w�v��!`�?�G$l݋�r�{�	�9������?O��~�-*�@�zS|�3e&D�qd���f�
D��"�ا���O���yTi�7kx��w�'ϴ������x�˿�̓Pc��>��e�8�$f����X�o�VQ�͠Aߔ��ׂ��a��Y0E�H2���1�ms0Yn����ýw�F�����s��O��{	xm�񧾊��3XX-�/	������{H���	ㆌ�iss��[�ػ1m��q_�Z�'k2��9�!8���:��$T�%��<�_*R~o�|UOO��!=4o0<2�n��D�M�X�N���;h��<���)6
J���%)H����<5]�2A��1��Z�#f�?�Tjⷈ}�p�|Q!В���54²�	c-��DX�ӐM�q����M(�ni�Mյ�F��B�o��[	U����01���G�Ƈ��1M�c��@�e��|�N��B}}@�[m�n��P`��0ҦD�5q���}a� �oF{"
5�#��bŨ�q�gm%���ChIxR�Ąa���
L�ڤ�]iElgO
� hc/�AG�V�;k1��ͦHݽ/
mWp��R�'�Z�F]|1���^��/��A�Arbk�Ui�YNH��o��w��*��ng���u��x�޹�[�N�rϡ�xY�l���T�ϴF�>������z�y���;_����nz[8��ܞU�|�������5oӐ�ul��pC����4nz��j��ϙ�.�׎�m��_�v��w_�k]���[ww�)Yt����NsȎ��DC��Y���Yổ�uZ�&�}����n��nc����ڌU�K��Kb׊"$�
ח�gA	4dHMH�82�ˡYq���><�i9�=�6���Ξ=k��i9��2��w'�;0�ފ�
�)B1����5s�uI����+;�9nȭ#���@��đ�1Z$@EL&�
�	�Ĉ���H�Ss:Z�C���r�,〰vi�3_�m
��ۺ�!Z6��)�������Kg>�����1�t��Þ�C��d*�o�-u��E�MR�!6�i[���P���a��|��fN�7	�[�J�m���s�8V��<V_����?���U )�P�I�4�T�c�sT5��Hn����鑦���ۿ�r��z���c(��λ�����ۛ�r'.�x���� ʽ����?������^�b���8�&��ը��ˋcsl��ۈ��Ks}��g�{�x߻߅��!�;Y�:-//�܎16����c�@˷���x���Ѭ6��ɷ���v�˘��|���K��Ϲ�i�ɟ�!|���"��
g�\�����~ۦ�1u`���Z,,���k�ā{�#����FM������L�	l�A9͎�~m������C�?��x�-`|d�N�����ӳW��ݍWN=�'�y��2���ř3�g��h��~�=�?�_�4��p[�;s�ڦ-,�XZ#��*�#Xl����bp(&A�E<pכ�׻���c����G1��������N���e�;9��(GE0��@�a(ʬ\C	n،[���1	u��V����7�0n�ڃ���|�+��?�$�|�;qqe3sӘ_��Į!�r���g�}�V�����Q�!AӘ��ΐ���A�e�-�w;o�dSq�:���}�N)CLZ����!�^ؾmG⌝�����ov���}�����%<�_�`�v��-�fz��_�M�;1��ΤAV���n�#�'�&�4�S��0@��	�dB���_�%�-�c2liq���k�E+�B����X`ľRhnEFC+�DH�O�K�3���(���_�TJ�.HR]�!�� �I�6u�{�e�zZr��N��F�o30]b^"g�߼&œ�2��_^�٪�@z	E�ɉ��/*�_V9���ޣM=��*�=�mlp��i�];����>�|iI���w���e�;�*�^�:>�n[��b���[��4w��3�;�M���
�uf���,�E��.ϭc�|}�;�;����˧�ǝ�����ܴ�~x=��Nc~-yg����/kn�e��u�_]o���`�8��~7��{>v���h�[�o>���n�/;���=W�y�}e��n���mk7Z�˷��󶟹ϻ��~����w����M[�C_;^o��e����֟Yq����5|i�|�B^G����>9a"�tj�a9	6bc��=�ĕX����f���.��!�#�Ђ�@kx��C���|�b�ggg�����*�kl�۵���N���j&?e�7G`gC��&�q(��2;�QՈ-q��+k���ʌ��p��S�Z��wg|�7�|y�6�$r�ێ�}����op�h�g��_ ���f�97H�:�$M�6C�cpQ��o,��?d>�l�r���G��������i^���Z��F4T�4�rE�M��� ��mXy�X8��+1ت�@��L��"��6��Y4�f�ncu;��@"uˍ�&��t�t��ڱ};n�u3�=}�ϟ0�����?�Ryc�8s�*^:yZLu���3�
��~�L�6�@B���	j��@�q�[�J��
���cu����.M�G���z3{�����㼆"4�$S����>q�~�M�����
]1���`����aM���A�޽�&��$�h��������/>�Z��˗f��V��� �D���z�DB����Qǖ�d_+���&a�[1� �B7)N�`u���A>��}B7�ÉW_��O�����D���_$�����X�NB�!�.���x��W�s�oc��Ib�M�3�k���dB�c�}4�)}_[m����h�Q�=�}�q�,E$��Q*������c��xCx��f.��E��,��G._�O�\�f�S����:	���������؞�طg��s�'{�k��6�G>���~
�+1�u~��%�+�1����4&ZX��}��x�\�C���܃Z;9lfXݾ��6@t�;��}�����ذw*&y<G�="ZS�m��YïR����������gG۽�/�s}qq��ʰ�P�+����lG�6��{{���	�n��c�j��������a@���%�A�P��&1)cZ��x���y67G�Q.)�#k����y��*��D'�
���+b�/Os���>�Z�����h��A�ޙ�Ǻ��:�=�9+�.@�~�Gl��n��
›���!ߙ��,�`�h|$�D�.���)�C���-?Hk��Y'��&�}��>ı��*�Q��A���}J�8D�]�^3�$�ҋ8f�Kxo �nH�0i{�k��g�yC�uY�n�|���ٳ����g��	Tʊ�+��]�-�pϘY@�/��|:��W�N�m����d�3��f�t��N�X��l�L���:�e�q��>Kt��[�N@�V�����c>z�m�;�17Ow
fџ���z�,���t�w�o7Z�g+�߭�V����ŗ�W���Ӟ�qi�۞N�ŭ������ٗoVy�N�������gv:�^����.��S�$ve�+��iw�p����y+W�&�b��쿃�Z�����|�|�~2�/^�(u��������V�H�ۀæ��Lq��J��.�yl�Q,��|��f�l�G;an_���k�=���pf_pӻ������q|���m�9>�GhT�*e�@i����H�Zz�b-8aK�����oKΆlC>
sT�Q5D��u<"�ٱ3��Е��n�� �&�<�y�>�	�V_A�r;��C=d��$����2��b��<"% 3�k�(�v�yn~�]}	�!��c���F�I`��� ��%��1�K�WQ��r���b	�ϝ�-7�ՙ����E���-����uʣ�+�t��i/�;K�'���Թ+(�����`���#����Ъ�J6WIP(��ѣx�gDC�,�|���Pf�6��G?�mqi��t�}d���.N�C�cx�LB�]ض}}�4n����p��ll|_�q⵭\��9�W՚�h$�F�q˱���[qӑ��N%��|S���%<��#���
\�p���V��[�wbpx���@����m�sq��g�{j7�4q�N�ֈ�dƍ��s/��8�k�.=�Z��V��D��S�c1�6�?���}8�'��h�Ek�1N�v	/-#,P;�h�]P"���BxD$�h4��(�ǽ��G�q����g��o��,sd@��T[4F����?��?�(��ֱc��8{y$L�[�G�8_����H�XFo4�ˋ��o^��{7���B��6�J��i���c
�HiJEl���+�/���~���<x������/�Н�D1O�U�^`��ϱ&�+DGzd>oT*&����hL������6��M]�ú�����w�mo���@l��LJ��hQ^����R@%�s��3M���Dp�-ɇ#3=�!e��e�6Pk�"Ok�ވ��Q�������~�"��1^�u��f�'����cc"%����n�"�(P/[Z�'B���F�n�7`ȋ߱P.���I�x��G��B��A���X�<CZ��&��_���>��l�`Q{�d�A܈+�d���Zh�|�8n����f`F]`1{�f�K^-��8E��t���2�4N�}��u�0�Z#��k?��Fέ��m��k]�� ��Txm�g맨��`�{�͵"��i��+�2�����̥�]:�i	��З��ӦezP�r�V$�p��7N��uio����֊���6��]�[W��i�k�mk���n��S�'g̶wvY�gvx�l�h�l@��G�c�>��	6lS{}ln��g{]ݺ��э�FY`�
�0�>��}g�M[�C���w'��<���h�_K��m��]Y�vӻ}��.���ǻ��!+��x��;o|��}[�5�۱�tmv�H�:ξ��`���)P�@��e�5=8�Ѓ�?���$�������?�ovv6ɜMZ��rz�'�fA�|r0�&h�i
}�I+t�9+ڼ��H�4�
�p�%�'=[�"k��G�|us���emd[mWV�$���X�o�@*W�Z���n�E7���B�_�1���&uR �b��Dك7�_$'_%iP6uU؎���{a`�̓�ͣ�X#�{�#"kQ�!����5jG��J7�Y��R�-�a�0�;�%��G���8x����
�	$�HϽ�"z�p��Mֱsn��w/N�x
O?�8��܃������
��l�跶���M����r/��#(�K�Lk�7�˯bvfl��Zk�g_�u�
��{����� �G
-*/�"(�z�|�Mص};����L0sjϾ�ع{�#1�+kKt ��00܋щa(:8H�q���0{u��HBֈ}�h4��̛5<1D�JR63��@�C���7݉�={�y��w���<��R��"«ԯ�я���"
�z�w�ӟ�s�hu��^v��~haM�+���ߋg�<�z�[��]\�C�+[u|[��b/𖇎��WE�K�6�@Lm*���܇��A�C�����畵"^yz3��8��[�d�ւ��<&0��k_O���=�
�ً��~4��(ќnVg�l�09ߏ�Y=�>��/�ɗ��a(���otN\zA%F?��H0����	X�$�#�{���Fe�.4�k\i�!�Y�&
�E��͸��V�T��4�Ç�ĉW��!�(���%yw��i�C"�GI�X.�Ť"����R���rO��1X������V���ud��g�_`C�F�%D�����ϭ�J����TY��r)�|�4*4FE�N�Z�h&	b���h>�0>:B��ǎ$:��^��d;姫m����}M�HJQ�7�7 �v�!��q�~#�oȠ��G	��#�Ra���4qd�D@k|�Y<$_�I����	�Vf��ccⶍE;��8��-���U/bDi���>~g�SY�#�N�����p��U�<����2�}�|�J��¦�P�"HR���g�p�qR'��=���~X�ت� ���獵�$;�͋��2O���f��+�ke�-�:�� ј	�5�^�5J��XǏ�D��
��6��6�3X��e�;��]A��˶s!�g��j�9�Ī�A�ivq�'�)7�^[X��h��n��j#�I�?�և�o�>6���e�iG�s��.Xe&}f&dE��v�'�^�����,8i��!FO����m��mm����ß���LRe��\��[��=eiou:���k�}��a^6��
�����}i�8�w;��Wf�	��<ӣ�o��Yq��q��)��^��V�;�������0���z0�k�Wnp�c��/�n�����bA�+��@���CⲐ�?�SV�[�A��$
���"akv�gRKv\�}xH<��&����Ȯ5��������t������yV}�z�&w�bp��"O<L�4�'7�BmS8�*�mw;�!��֞͛�cv����9�	����!�u�޽
K�~	W��3���` �@)Vw�">H��!`u�&
K�� &��`Cq�qN������]���z
�z��S�XXZ'p�����zzŁtyu
W������h��p�ћ�m`�CTϸ��^:蓐�e9l¥�4*��{F�z��$�0�m�w��¢����&yju�F�죣��Z(�?�FC�?���9~��A.���v�oC�69���a��Oށ\�k��b)��>��ݠCw��DO/��/S߳&H���Ѱ/�|>������?~}�=ҎZ�B���je]�Ni�fV����/�3�����KP�o��_|��Ru1�@Z�������G���:�y���u<��GQ]���i�I����SY�E81���7�}��Z�v��0(*R�c�TQ(�l.R��F����au�"�$m&���qXAHŽ�����8�؎#��c�ʌ5��o, _��uU�*pq�,��W��^�+gΠU,"_@�/�ٗ_�OZ�
V��Q�C��g�]����@B�	բJ
�>s��c/
�P(�`�iCf��0�>��Űڿ
p�i��B6kՠ5���7��g�V4��:6͖/���6k{�<YZZ��R'�VIIyq�٤�Ko���g�K��b�A`�e
>`�����bSS� 
16C)�lh-4h�P1&akxԉf)��������ԗ
e���!�m�����	I�:3�����v�7�����V���%��T5�ye{�z#�_L:/l�-�6�q�<��<5Hh�_�W�������Y��`�E�C��k�6Jh,Z#�RS�	s�r��5#Di��E�ol�5H�eqP(a��ʘ�	���9ϖ
eR0���D�~��_�a�Q��6\k�����FA["5��=Ka&Rrv
�t.X�ֽ��,� ݉۵LR|ڔ'y�
K8-�w���r
�����*�cS�Ji����g4S�t=nI�%�ަmL�R���	�8mc(?��L�	L{�O��9D��a�k�ֿ@Zf��د���`�)Nۜ$�|��B�����t_&�v�O��UO�L���J���A�BI����ki���"�x�e�E��ղ�������Y�yV��g��Ϳ���u�w�1�|u�T�Vlp�����uk��֗�xn�>��W�����]�Э[y�F.Α�.��/[�}��n�5�A�Eh�e�ı#���vh��-�H�OLL�c�,�0�3h#�Ҙ�b�V�?v��-iY��hz(24==���0��D�݉�N�n���]�q�[�n����G�}q}iL,���d�M�7>�

+��/���]ņ)���2L��6�2t=�v��b��!T��d��L����O�/��a�-��;�+���WY&�F�ʬ�!/�C6܆\��*>J�:G�'Nt�@�NP�j�Ͻz���uv
>�"�����Uq�8t(,��$\y��y�ng�
X��{bx�;�C@t��Eu{���n�/����-�i�@4�Ѫ#&@�R��]}�9�0OB�$�ċ�=����N3>=$��������(&H@��_@���{��=(�:N�8�3'	0oIXQB_OH0q�����[q��1�m��N�baϵ�U1���QA��Aq����[O<���	�Ve��	=
,�,�@��C�0�uH
����r���==E��{N�Y�Je���2�������.��U��zڬ��%����#����9�l��@�}�xN����g�x���X�z;�vy���Gp��GI�}{H`�m����F�1�V�,��B�c��u��o�q��4�{�4��6�L/]%aZ}\oDE��tk$<�9�"�ÕY��*J}y��0L��G0sb1	H^z���>��čgѬTX�<H���1�1��9)��N�e/#� ӔZ�&����k/O��H��3338q�n>v��~�$�ܱs��rƖ�&?0'_�ۿ���}���v��P��9}m�ˎ��I�؜�['%��%�4N�q���hF�X�����Z!aת�@"O�_���v,�Ocqn����'�P���Q���	��ZOP�Hƥ�	��M�|@��`a���F����]�K����.��i��(JigN��L�D�-|4�@GHhk���}DnS�W�	�@��Qp��B�T�w�{�}J,S�&�f�u��ϰX��K��
k�D��/���=.��J�.SA�mjR�jmV�K	[�Ss��-�-F��0��b��)�D�(��'�������i�7�dL�#h���}�}K���"�٧��<B�5#�M�l�<�A�h	���	AY���u�Kh�@�%�<J�2��df�H�vU��bT� iw����Z��L�Yr��H#X�{��x^O��I$c��G�l����Ahik�b�9%�1����P�Y�M�A�����R"]��is%i
�6��n���`���@z�P��U��ɥ����'�sk��W>'�Ņ��Ҝ�\�2"$�CzZ����0H˱Hk�6b�v�!�,�5��`L��娹�z1��3��>�J��7��Ǜ�%lxۧ�&�n�gZDXe���(mg�ŋ�6n���J�u\�`��U��O�sJ����Z�};�,aE��~���;�n�Yu5�ءS;�xײ����m[���g��nYk̄k��}y'��`�&�m�J���i��y+��&�X`���킌�>cvZ�Z�jUȨ��!�I�!�$����<X��pE����m���e��&�}a2��1��;�[��]��D���I﫷/�
�.ǟ�ݗ�b��mX�Q�@&LV�(s�]vu��e,b�}�'f��ݾ���I�a��3$b���f{����{YL���ކ��v,=�Y���M�6΢���:ߞ�q
�f,�b^��1:a��s�������p�ո�=f�ͪ�n+�Fz�M\���O<����X�X'�?��wO}}}�-�`qiQn���C�s�����v�͜���*y$�rE�5�k�uQ���W	��_Y���?��FK�l�߹EmƯ�𮷿��?�G�|e+��8td7�GHxч��ꋯb}�����A,�9~�a����-�q��$�衜h5�oGC�
	8VVV�9�
�?;{�^y�U�}�m�������3�cm}U���~j�:��8B�Cy?�s��[?􁇰m|>��P���������m��>+�@�[�1d3F%|�K�P��f��1�z���?�
h,`��ضo;��%V‰�3x��^��e�И����G����n�]#(�
ll�&���8����K������
q�}��Y�>u�#8t�]X�y���B��x���;�(�\�F¡r!��4��R�^Ol��O���+��2��^�	�v�ہ���W�`��Ц9�:��0�T�l�Q����s�5�cccb��ϡ����Ӆ�����rf�*�o�ĕ+WP�u��/���NB�U��k�9�ǐ89�l5zۉ�S�搏K�H5ے�9P��t;Hc
�St�b�T�_Q��3����C$����Ѥ���hҁ�i�Z�����-^Žw߅��:X
��˩�$<�4����l"�V1}՝A����F�n��'(�P���a���ՠo��\�{��j�b����)�04VÊ��i�O���O.�����Ͽ�L=
"'�)H%�	<��Y�C��R����,i�6�;����]J.Z���wC�ﰟ�1šǭX��W$ j�R1Do��rOE�Ss�w�2��Ф9Q��t��B�����Wz���&��Չ�$+{?�?�����������S�3��akP:)?�o.h)~���[�5������_�^��g�t�!�ҾC��Z;�IY�/V�@�i}��Ѓ�^�$���a#�PeE�Sh�cI$y����TU�����%���^�S�'�E(����fZ���D��^�z<
ofҥ��}��)�K*��rbk��	��9o�ͪ�fRN�j���&�X��l�xqM�0)3��h��ŵ�=סE7�X���7?��Yߕ�:����Z+.v;�����k��}�@�E�;5�%ŧ7"��֬�4p��g��AЮ!��Jo�9��d�v���Mө|_��|�	(|{�]/�/��gr���%�j�[�Nmq����S����|iݾ2��\ۜ�m���6��Y��C��c��Y���d�ߍ�i.���C��:�E���H,�`�jг�2ge�[%��]��J���9�i�%�z��,,a-��Zڏ�80g,���EÃ��s:M|�wp����
[��;���[)��$�F8�B����Є�P �u�.�F���aV��
;-Ԍpl�:��”�O�0�����f3^��m*����Y�:D�o-�C~�V�c*��0����Bp���D�f^�+��&h�v�J�
ɡ�f~�#��`��fҏJ�0��\]wztqz�=�n=~�ay���(��h]�	3��/��bڛ�	!'��S&f�"����6P�z�l���@�R�v4��w%*�H
�)���W��H8R�:��n��=G���������7���:�\x
;wn#0t�]��Z۷����p������p����{��M�+�0��@���Z
�Ϝ����Q'pt|?��q�q�����M|��G٪��

��؈P$�{xdP���9y�Ү��ԇ={w8����
	NQ���4�KN�-?�0�I5�W�����G�$k�%�n�#���›n����G�0?��
N����b�
>����m���>�x�Q��qh��h��K�Qd��U�OB��K���3g177��t5�8�ر��c���Q�<�ڋXk�<.��a�1,.ϡ�����1,/.`ni^|�4gwL�siKK˴�E؜y�˸���ܫ6"��`�lZ�̝Hu���ܷѻ�S���i׮]$�x�~�D�?ىy@���0��-B��$���x��h>���}��i�(���e`��ŭ�V���Z��/��j�_A�G�����m�,䶮�whv~h�HM�V#a�|~�����֛�{
�:�7���>��\��q�����h��C�}� �Gs�O��Eb3?�61lhvb0���b`�flnxj�%ַ@sj���v�#}� ���(����d
�"��cn;�����vJ�PSL��Nqq;�+��27��[�7���B*tP�6��Ss4ֶe��K2W�[|!��1�
�_��,�wr�p�df�P����:Ć�AW,�Kt4QS�F}�x�tO49���{�Ј���(�{���Q�^���;�Z4{�)'�T}�w��@�2���4XH9U��#���5x�w潮�e��o>�~�3����i'�_	�.��w-4h���G�wn	���;�Y��>�t~����sVl6J;��|B=�����ƄIn�Ie��m���`4+T���ܳ׀�ß��6��(��c��֎Ѽ0�L��.[P�}�d!I�jb�|�1
�S[���%��n�AJ��,
����^�#Z��퇄wӼ��b�cGk�(f*�g��z���T�3Ѷ��4�Ѻ��6sF��L���o�آ]ciS|���F%�w�ۚG��	V:�s�Jd�/U�hڟ�!��;��j�T�(��|��Fr���ئ ���]�܁��z>l+��;c���o��9Ya+ ��׻ql�?�s�^n̙�Mc޻�]�ϭ�/��S_}#��b'�.�-��[���
����p�o�?+���ny���}�k��?薧o�u�ӵlʴ��t�G{�:��>�w�u�lj�������98��r~n�:����6qe;)g�����A�\�O����kr���������:�۳�?1���w���&��?��w¹�J(�����)O�He��E4:��tT�P�ͮ��#���I���/���|c%Or�M�D-�̥�����Q�����r�>���G�Q �D�,ԃ�2�E��M
гZXD-׃����}�=ȍ�`�G���o�/$!U�N'�\�j�核��f��@�uar0���H{؜V�NV�\։�W������!�o�FB�|��v�D9��PV#�ɷ�I�Qd`�@W��������8O���:ѣL啸���+Xi԰V�S_�%�˫8}�"=�D�Ր5C7�&����{�	&-�f�T	To�ގc7��߁�{�`txD|�p7�JJ[�1p�Q_,�q��U<���"�����v9�I�ԃR�Dc�F�R��
ŭT��>�9r�Ơ&���ի�ru�B��ffV�9x[�H0�������]����E��F�B�vS�յ
�&B����t�>~�1��cey	�l��c��2�:�7��V�z�q��#�>N��5��u�)DÚ?쫅�'�xJY�����@��$O�~N�
W^x�^k>�VV.X%� ���i<"l��`��%4V(�`���'N��TpDB�a��	="���Ӹ����ƥAmt�`�3B���i>��V�Ig�37Bx|���B�$�/_�Ls�Le7��/~��O��̮]سg��E3aqqI|Y�@�ic�ͦlfn�1��M�,�f�o�޶��>��3�C����s���Y.����n�C'q*њ��
	�D3. T9�u����O�~Z���[�d;�,cݸP���jD�����ʜj���k����q�o�����3'p��%R�Ԡ�W �^�-�nWڐڄ���3�ۃ��E�wa��1��[o������.`��bbƗ>�?Mߘ�hH��u�Hҵ)H�5��P��t��Y��=E,k���b-Ȕy���(�Z�a@dUσĬ��q҂wz��އ��[�e�;�
z�Bdn������s�r�p�@4d�J
rE��|[������[�Aڦ8>��,��q[��|8�?����!b��Z�9�R$���7���==� �rveM��ӹ�M��_�6p��S�Mo� :�y3]�-=��t|�g�l��o�Nmu��v^!���ڰi[M��H���M%$�S�P���0�./y��T���s�C�k��!m�)�@�h��E�e�*n+�/8e���|M*<4�gh� b�0��������u+�m�+y�Oٺ���i��Li�>�h��6����Q{Š[���f'$cm�No��
鼊7=��1��U~���oh#gڞ����4��+51��z�.#A��	��3�8�W�m��~��
\07[���ϲ�kn>6e����6�'3��}62�`�3g4�,a��쳬{��EV]�,����>���ܾ7����g���w;_���������������1�0����8�ր/����c�F�;O;_y���!�>4���X�agd4:L`3V�)��9kw�V��`�,�0�;����ig���d;�|���޹sgLLrP(���\�!k���p�µL�,w���>�T���%<��|�����\�X��I6h��]�U����Ɋ�!`�r���n�ۿ�/���d9���A�K��0�o��3�7}ɵjR�:�lފ3-�P]Z�-�������Ή�����z�q�5f�-��95�\�����K�	H��j�I�K�T�T;�C��S��f�BuC0�b��ٗN�	>�l��w߉��	'#�|�6_�%}P��ܿ���Q��M�*A�]8��]��=��U������v
�c��9\X_�����}��e���@�R���2&&�1<2�����{/��ۃ�>�E��C@s�M�P��DX�ʪ�9���~�O�_����?��E��o(�R�fUjf�ե��Z
��uX@_O�K+�n#�?��gN�҅Y*�lX,/�0�;�F��nY�\��P]]�O<�w���b�6jW�
�li�o%p>y�_������]$l����p�o�ͷ܆��	��Cs�VP��fSW�ż[����C�&��,>��/��x�-������(
�"��Y�(R�+hUWQ���e�]�Dc�Ž�{�6�XH0���q�J����^�{�:�\�y�;wi�Gvl�=_\� p�_>Ye�t�0$��q�MG�裏�sr^W3�3`Ɓ�����ߎ��ؐ�Z�7��V���q��~(�|�V�K��n�;��wN>����d�����m��� ��1<P��u�.�p�k�>�u���a�O��0��J��l�}�Fs����F#D3���+*(��9�	����d��3�3����iK��ЬExӝb�����s?�t��j���������{��s����k�n�]��&`��4HĪ�j����+����Ttsj~����5p���X��}(���������h�BϏ��Q�u@o6*��_�[��}p姅E��O>�pt?0�*N-������t�el>j��\�Hr�s'Ю�P��,e�������7����O�������?��t�ރ��m3��ĭA��|�zb��I�����qj�^h��ao�U�ރ�{`5�5��m�Ts!ۊ��r4�����E�J��5�fi�)�V���Y�)26]�j{�b�~c�2�w���L!�r�"R��q�iI���澒6hS;֊0��he�@�K^f�_(�f��_w!6=�>��C
L��tS��Ko:3�4@�3�b�c����Xg*$|ҹ�|�s���u~������{��Y$��s�2/�vf�ә�h��Lc�kYX�)_^q[\è$U������V�5�L�8��~� H
MH��4��i��N�fʌ��C����#�������\��#N�Y��*����}����t���!�׃�V{~�%�O%��s��.6uw�֥=X�}��ȇ�W�����2�Q��YI��?�8!����z��Vql����=C�:c�kܜ�\�nk��N@떷U��C7_����<|g	����}�
0|�}��a�n|���f�%Ot��ƍ�U���8Y��o�e����&�9i��2�0R�gt�3��[�	�Z����ʷF���i,}��snY��~�ʼ0y����`�w�LD���D���H�;l�#�0�˥D��`i{�w6a�欸��1E��X�C;,O~���@�[��8�mV>‘E�;ݬ:��:�-l_=��I��6;7u�C��F�>�[�r(�$��OZtrے�0�����u*1��!�P��(�-�+ �����n�qzH5�s ��.f�T��]��X!��o�(ƾ�'��q,>�Y��W	T��U�((�����5P`]l̿H��)�{�>�2
3�LYK�Z�p���_Z\CA3�ՕA$֢��B�����[ػw/��zE5��v�	�.��c�PGρ	����tX��D	c�{��`���1�"�NI1m"ȷ�j�
._����;w�[�Ã%��~9�yvA��yP�2(_ m�lk�_��7�����~�'���������n��铚|�c��$P�<	x�,���	��Ҽkb���az��ԧ=�gl��5,�Ix�6�	����h�x�j�*z4x���k��L�^g�^��Y�t��6;�}�v����*z�{�+D��S=	W&��e<����ҕ��翈�;���{ބՕ%�SeZj}u�i��y�Ӽ�xʚ@)����� �:��Z��md3/`yn]4a�a�B�׽��r=�㨰�5	���<�$X�^n	����]�l��E�i\#�c�]�f�1�n>r�����6D���@��0H\.����5��Fe�wOR���	�|�r��e������1�S���,o��v��3�.�`&�HA�z�SdV:�ޑp�_��+���i��8I�608�
�*�	 ����&H��As:m4u�C��Xk�ɺմ\7\�V����Bk�:���u�]�a��#PN�ٿT���<v�ݭL�0y'�T�`|x��|���F4Ǝ��H��LV��Wk�E$�
�-m�\�B�܏���w�E��H�Z�G�2�����V?�F���Wh���%WE�*�^ފ�^��Eb�G��_h�Q[���q�}@����Q�D�r�J�(v�Z8}uo��iDʗ�&��q�|�	"�S��j)�7��Uo��b=�H�KJ��B�܋�	2i�i��V4�Q�N�ɉ�E�U�?u)Bi�4�N�h�FA�[�aT���5�>zh�3�?RaЍp�A���_�wuO$R�s��5�~�h�sp�
ʬ���">�M��(�Bko�|�A��&t{��V6��hj;��%�d�*�`u�)OCŷ
���`��V�zK��2��H���煞��)�
�����2�0ô��0V�+)LT�����F�s�0��n����^;���i`�� )=�G2�� zX�2�3�Xdl^my�c�St"��p��מ��g�L�	k��
�o�~`p_X'>�C&^��;��k��|W���t��7ޔ�� |������X<�UB�I:��l��N��Z�[?�^>���)-��'�x���$�֩�V��h�[���eV�Mﱙ���;3��Æ:��{^pӹ�n�/]B�o��|VF&�k�u
[��}���Uw;�ۦNm��>��s��閇�w��Y�t��n\7�]_�ss�w�o^��NV9�>����[I�i��R��ެ��n�^��%X�V�|�b��S���7�?[������܈ggg�/�˱��;��1kŚ:=O*���&�055�C;$�
.v�t�N�7����\��C�B��&����aۮ{V:�m~g_��v��	42�'��rnr���-�b�"L�.�ㆀ3��re$�
�����ljHi6+��^DJ%_T���|��.��(vY�G$ ��b� ��3���	�YV0.O܄��ݍ�$��|���D�Φ�–�	��N�l*�I��X��V�ޠ��4N�}�G��5۠�%��EӡQ�������%��)[�Ԛ��s{w���(���P["0������
N�r���Q��u�WԮp4:2��H�*�Ԇ}�%�2���G�k�0PG�	zI��C1�Kϊ"�٨���F��g�|_��W���_���
�f���0�f"�����|.'~M dm���s�n�rk˘��H�k	;������/l�&l�й(OcA����*�:�:	��z�
��w�����Ȁ��l$�>(����;��DE4뱘Q+QY#��3��P�ߺ/q'P�����S$������g���k�@ŠfC��a���76p�M7a�/���9TlRl/�x��}�C��P�W�B¸V"H���2��
���U��2�}("Y�]hY`3���*Y1��S����g�q�o:�޵S�<���?J�M��l!j���p�a�i$��c�+���cj�j�	�X��	"�ϔ�u3�͗ go��m�3���i��x�	��u�6B=eF�6h޽z�,����~t
$d�q�|��]++�(������f
�$�m��`�m2������E�k�<pMZt�C.-ury�v@�
b����̅���~��&�l�?t?�Su_j|�������H�xK��܆_z��r�%<�ܷРyq���x��H(z���'�ԱA����{��W?N�Z?��p��Gp��g/���4���Wp�����).�ωP������ɧ��=����Gh�#�|����xA�̇04:�5�+��~l�|e�^�ՙ<���ڋ��K�$z}��^���o~
��7�`���M;.-.��{�G���&�o~�wI�/��&�̟�j<�=��8y�Ij�/�<�ؗQ�ש/��<����'?�*�닗H��N=8��KZ���K������]46+�������g����=4N�x��߇ް�O}����1��~�3��{�����w����R/�m�n�~'�e�.��Ň�x�h��ㅒZ#�e�j'ox�I�|��o�?�M�!���xef�5!"EÔ�Z]���\�/���)��(-�'т�5m��J@Ў:�O���{���`c�*��a*�AM��ǒ2	��;8ӧ
����n�v��X�Aw�.�uR�쿱�f�f�vjRI�+�Y�8�fRo�3�'$]tl�J�#���U}L��2�I*��v�u9m�+�/[��Q`�e4Rۋ��>�C�]c�6�2N�پ���Aj",�:������G�O����� i���륃��k��sƛ�}�-�T�͙����y'����kɳ�,���E�k
������d���{�w�zu����n�Yq��m������4���T?�����N�����>n�k��k?����n�mB���z��.��u�e�ݮ�����_�v��9���j����T��nu�ŵ�=�vf���w}�n���2OxNovFF˃?YŸ�zh�V���A��6���Z�ӧ8-�;�y+���)��SJ�C�g���VIю�!�|��/b���N^�rC'�o�	a����N,;���]�KX�67��,_=��x�Ƽ�w�b�Ȫ8-:��!�Y�"`�~��K�,���jb��[��.�o�2�όl(:�y��8��r���0u�F��R��e�As��vg��Y�.�2�� w�9��{7r�e�|yC�i�+�&��v��7��("0�yb֬��!ߐ�'9�*N;�
R��̻��'�ʋ10�%�}���J`r�ZCO���T�ܪkA�ڰ��ɱa�����������vz�'/c�mC{s
8��*a+���2{
�j��d�\�x�S���_���wH@�8��;�������Ej'�j�kg��ӟ�^z�%1�u��!|�[�R��v�����f^18�e//�
� ��[�|�px�Ν������C3��0�P��E�*m�|Nҳ���	�8~������	
�no�:mL�]Gu�d�_K��f�`��B1T��;�3�'�[#�U�E��N��==X]�S�~O�phum�v�…K�pu��8�c��X��n��1�l��ml���9ƫ���<U�@���h_?6�W�k�8z�C��6P*` &�Z�"ͥ�QXFT#���U�a�~���lf:3����g]��~Ί�c����{�N|�_ a�e��\��7D0�}U(�4$�H�ƾ>��:��P6��C_��͡�w��'��L��42J��I4�u#�ׄ�v�է��|@�R8�"�#�5"Z|�>�Ԑ�˜�R��W�'^��j�hN|K�U�`ya��� ������@��D�J�7Z$t$[�J�,T7�uP����n�H;�m�Ȝ7�s�OQ|�s�!bAu	��g���?�	�>����^�-�t_��λ���'�܇�'���]Z����ce���{�)�/���$Zi��7�9��>�V#�]�>���>^�(<��~���ϴ�5�D�z��g����Nt�E��η�/���;���k���2�裿����/f�v�ӿ�a~=�ho��:ػ��IT����3�G�	�5,THX�bf9��v���y�w�f���K��ݿ�C�&��v��7
?��?�W.����s��+W���a�w��������PL�E���z'���|���M��\����Jkyw�}5����&�!�G>�+x��1�^�,��[���w���_���7��O�s�ϟ7�~���	L���v�ǯ�ֿ���/`��n,>���ۿ���g��\x���y�s.`���m��旔�S��H�K��E�ր�Z������ֺ	�E{{>R`=�#�g��B�#*�Q�m4f3
Rt+M�M]�=�����
��6iRKi2)��._k(�3�)��NVb#
̳���5���9�G�GDJ,9+�=X�U�}ŗ)_�>x�~��h"�����w<X����:[ �UL�n�����چ����Ad@w������Ҍ�dN�Q�:1u�lړǰ����a�妫��tN��gw�v�}��6�/�w��8����C������j�0�� ���ӛ/m�[��1��|K�,��Q����iE`�b���e��[��1�*+]�UVeR~�_��;|@j7�ʇ�ٿ}��;�&���w-�u*�Mc���3�}>��s�o|g4�
Y���˾a#�#d����wW��s����Է�ߊ�6wW��g���h�6��$k�g}��ݗ�V�T�=F�����������<�~c�F�ᚲ2�������Y�VX�adkxp��ˍ�r�ˡC�$�ɓ'��5=؟�bf-v�ܙ�G��hx�����{fO(_���&��N����h+�ms�vm"�*r�~�3E[��A���W@�i��V1 E��VDq�nɭ�E���f�‚䂺��
b��/'f/�lƞ�9�B;���H�	D�-��[:���������5t،�2�(O�xǻ16؇�/��/^!��b�Cis�@2;
-���i�ذ�	���-%�{��!k���f:���C��j����u4k
��h����g1P&P���F��
q
�>*�:z�{�"j�M�<�
��2��8�65Ee���v�$ʵV�~;����P��;nÅ�<��^�D��j��~P�o,���Sx��	<��cr�~ddDnNO�-�$`}r��S>��(a";%�����D��ol�������}�6L��}r���#�v=$@(K"�v�'6ś�_M��h'!��`6?�i�ZN����8::���%�&QS@�z��(�����J�yO?�^z�ԨKe��u��|
,p��� vnb����H�"4�����}_y��D�u��9(~;&&&H`4̦1N¢��~�^�3c`�*�5ڬ�*���$�*�yg�00m�۝���w����O��/����r�D��"���<��E��c�]h}�,�����x����Ǩ�s#�S��1=�$�Ƈb�e� u�Y�.	I����EM������߳�qz�4���Z�|�Y<MB�|a�?$��X���Q���P/�W�h.�E%�C�[D��V�*Nn����[���f���qF����>e}��&{��e��Kx��H��j�8�UӺ7���!��ϓP�<���8O�Z~���������N�<�3�/�y��>:��w�=���q������?��}G��!Dƪ�@J��|��0u�~<�h|C��B_�e*7��_{�[�'_�����y�̩�ӑ�m� ���%L����DT��e�w,8{m����}\Ƴop?n�(���:�zw��T�`in�;���~;w݊z�_�}2F!�ax���{�P���݄�羄�� �E���ޞa
�J�&����,ξz��U��̕���x��n��mb�hǾ�Q�������;���?t;>��>�#!9����N�1��KU�MZZ�3/�Jp�{Í�=�֧!�D�B(H��@�Z��s��
lZ&���5'�BM��А�X��H�6��e��SV��@1��!(���H96�("K�
�|���u�NT�kZ�
T��w��-J{3(!�����KCSM����Pg�Z]\W�z����Mc�Ï5�-��;1��\�;-�_��hH&A�Y/�ڜ�>$�v��J�}���i�T[u3�a�$?���6�����́;��5gP�u0sHͭ8���cj�3	�tN���Ҭ�@O�]=����F�4q{��z�1�)�d���L�T�g���o����.7�3�����4sO�`잊,~(�TBV^���.v�v6�3�͐�<t�<���G���n�������>m>��wH��V��w�����1�IX��gh�0wN��l�.���Y1�]��^{�n�z�obڃ%�� N�{�6����������/�8��N�;�k����F(�����ݼ�3�-(�֗Y�a~��}u�j[V��}�-����O7���S\wL����gn:�z���+��[�g�<0uv}���N�>q磛�]O��e��݌������^��i4>8����vyΚ��A�L<��C�1k��w$�Iȑ���Ž����R76k���J��D���N�,7�o��u��w��VoV|��]�M�?4L�z�%�ỏ�C�rr���l��(���-v`��yW�y(�|�M	)�j�/Hz��Q�eG�!F��@�e(�-i{���,r�]	<�l&�Ms�
lꨉ�ԭ�xk
ӟ�@k��C�Nt�B�Jl6��z�ˣ��Js��i�U?��7#��T�:7�5~���|�
�S���E��[��W��U�>}u�˜X6�*	EX�����b���ڍbNՇo��N_De���+3x=�plε�7���R�#��Hh��X���ا����/���X^&Ъ�O����5��8>�Y,�2�'��Υ92 �&���F%
���쬘a�����97"+�#���=ш@K�S�)��i�}�v�����Rv��+>\Z.�H@���V�D�gp��%�HB���YT6j(�JҶ��E�'+`�8y��E�	���71M��O��*$Lc�Fu}C��.��Ѓ��5���z{{�/Z�4q�F?�ec%�DN�6��Y�X�l�@Ki�^��|��n���`�ڰ�h�}����6s�|3�n|�����r2L~�:�1h��{�79,\�E�v%�iM�n��q���$�E+`����(��m$�$i��*�z����D��BS�Vg�Q]���k�p���T�h�<b��F�.�yp`�^�v�q|�g�n���T���"	<�i���|��1����P9��jꌽ��h�գ�O�F
j�bsN�;���&��5��~ƛ&�����߅}����~��1R\�����3�gP\��P��x��TP��W>$���`��J�}���~/�����_����B˹��
Y'!�&�q�{qx�������2�i��얻��/�&��|������:����hG��W���w�~�2�a�"JM��5��D/�b̏��a�����o�	��]-|��o~�C���oR;h���߇���
~��N0���C�����,�I���};�`nu�}D�?�'2�kpS�!�_{�C���	&�؇
�[�@�>���I�K���H_Y�rǍ�4��!ql(�O�&�b~4M��x�+�@9{Kx�c%��L����P	�œ>Dr]4O��,Jh�Z��},渢6`K�����z�q�j���]z?�9j�%h�^=�d�d����(�Be�K�|���~�u�NSŽ������DH��\P!gդI�_ų��a��f}��D�ii��M�؊g
�юl��ڦ�*b��f���R�8-4�\��C���c��nf��=m��w��'�Z�)?�L���/�C�v`�KI.�y�
���\8A�rI�0�^�ތt�/��#oZ��X�p1fl��ϑ;�ӧ���7�~�������F ��	��e���k�~t��_x��bxL��C�\[���A�������>�ws�al��8]#�M�0'���a>;aJ>\�S~v���é�gYؙ�Y��iY�l��>��m蔧��s��o����}�{�Y�|���i��M�3��#��Ys��ߗO�<}�ݸ��vJ�-���S�8le��u���mtZ_��N���?7����	b���~<�;��OR�)+�c�kw�;8a;-��c�`M㨜?9Ώ��f;1��gϞmk1߸�m۶���� ��-��b;�/��[n�Eo��5ٲ�{�x>“:5Sg�柭�i���-ф�S# [�Q���`�X�B�UQ`a�,>����&��F��j�Jn�E�!�
�z)�+�7�#�n_�Z� ����I��Ub_z��IJ�;�NL'�������艫ȳc�z$6�97����"����U=֪6�U
LEi��?����z�G|s��<�ˍF(�J�T,�`��ɧ�~�519Ӫ�����(����ʋ�q���w'0�)��ŬSu���cE-��!~9�U=<<�={��c���Yx`ĽT��A��144�h+�Ѓ�8�����o�4>c'�333�p��,�`͇��9`�ݳK���˼Ძ�������	k�P.�>㛖Di\
�n�P
�z����D˩�/�p���}����(�}A�I%n���Voo�zz1��k�t�Q��N�B�<�D�����Mv_����K�ϟ��W�/X�1�� ����?�A��zSm&�Gȵ�D�����O���h���쵍�
q�8e1�i'.*Ӊ�*�Dؑy����
Ck�,�g�����'��/jAQ>������*n��8��_��"�O���E:�>�^�{m�D�cC���ņ��n�O9}B��8��P��K�8D�Zu4*+��,�?W�h���|g�6�롱.}�*.��vm���s�paz5����qc���o��z�����%�o)3T��<��>�{f�&�n�{��;u���W��ݏ{M����{�ӯbx��Wh��c����*�U�&�'Ӧ��b߫s�?>�����?ö�>�Co�s��?��q�ѻp��K�{�(f����}����Q|�K_�_���'?�;�v	)�q�-�`u�˫D�h/�\���1<���G��`񞷢'���|��X@�����;��l��c��K���?����#�bnqw��k���RG�-�a��#��W��������c���~'�
��iߣ��Z�G>�1��8��qd�8��\~���t�{p�j�m���a���a�h/jksXX_@��)��+$�]k.������z'�}�X�M�S�lx�4����.�O�=��?����ǯ�ί�G�=x��p�և192��n��<�(�LN��Ӹ�J�c�Fx=A�@�'*R�K�S���T�N��N�}y��zB,<��K�ַ���P�<D �B��
Pdg�1k���HX��|{.PZ9ͷ٦=��f�~�h^��ٌ#m~m4+�.��Z3NxD(N���e�2��������E�h��Yd/j�P�#����`�PP.����Ӆ�6��֗�E�GA[ݮ� f�܍�^���H�M�8���@
Ʀt�c�60q����N�T���J�sK��V�N�m���y�BXյ��
�I�]���fmŸsB��ZIp��3�]F��������m�i��$�W}V��3���2��ʘ�K&�Û���|A����źO,�-@��w2t���ɷm��E>�n��(���>�^*�m�'��T��>�S;Ϭ���,����4�{���:��`������]T&}���f��:���=�NY |V��2]3T�|��ϭԧSY�tvz/.鉗��V>;�-�[��d�Ѭ5�ն�߳�h7�/d��E�i�ٚ�v���0�ڼ���M���w�z.ό9�R��%�O�<LMMI|~�6g�><ؗ�f
����ڽ�����C}����4
��"|.Q�
��j<;��]~V��	�Ն�2|e��ܔ�f�H���^��<�ZU��)��؃g`��Z�d3�r�
#9H��⨹!����n4�>4C���#</��al� �ة_����܂�-&*0�"`���q��<s��a����aYn�U�5�����C(]~
�Ѫ�R��*�ʿ������'	H���9fH�XP>l���BQn�*�ML���GPYZ��#x�{އ��m���qH��w���O�_�:�����з�Y[�V��A�~�N�M�n=1���N��~6VV�z��������c����?�V�Y;��|��56����]�`@���?��o��K�3�nLP�Fߨ�#b�+�|g���3��o`���	(�Y��r��9\�rVV���X[�<(��m���61I�mv�����/S&ׅo��w6gĿ���E(P��i�"p�oܵj�)�`LMq9��ƌn#���ԩSԎ�"lf����ӈ�V;���:�_���u_.�-e�H@�/'&���\���y)��._� �ٱ<�X����k�.q$���FFF1��c��QB���y�gm�<��@.O� Os����M�q;J�^��?�����0����O�G��O���W�[ș8%/�
�?�0��?�'��y>����P<������������.uMl��um#>�4?̜q���}��pS�6t���
��J
��д]{�'��0G��>��a.������4Z�K��M,�,�c���S�4VC�X^�Esc	�}o�{�~��g/��>��sU�h��`���1���[�K’���/8���	�g��n���C7�y�Ew���+�z
2�������DI�d'ഷ-W�@tkbl��8\"��;0��4
�;1�WT��uc<j��d߉�΋9>�����X^[����+$,�@o!�9Z㻷�Ԧmj���&�� FGPY��b	�G&Q]�A�Y��`د���9�H�596.��E{H�-s$TX- ʞ�}
Wf�bl�.��qi���1�;���˨S'�h.�<+�P��T�����v��'!���*vl�#~�A�3�F�	��9�ʈ�9�B��Q,���:��12�E�3V�/�^�$	ף�:.]]@�����Q
��UӠ�˓P��_�s����L�6�$T'���v������ϊ�^�x�by��7��	�]��+B�D�!�S1�(�5�v�(7P�N�1��ej04@?�������9�)0�!:'λ��-��������:;b'^�Ռ�?#
n�x���ʪp��Z���m�����
�25��>��$��)��S���D{)
�����ZK��e�}D����?�8~�O>nQh���o���gA�kln}����@�zk�%��{��㔦w���%)�
n�|FW����Ա-��~����=\'1�����𐦿�F��O����@
��m�Y����uM�~��6s�E���?Lũ�Z��vU[�s�z���|�>=U�Զn�@���g����h4���t�󵄭ֵsZ�ܪ�-e��=��Y�&������<��m��=��ڶn}�\��������ѿ�t�<|���Ɲ��{V���\fn%�2��C�]n=;�n��[��;�Y������>������7־���N/�������n|ױ�������oƐ\���^}c�3{�5�[��Z�&���8-W�
h͎v��J�G�B��vX�����$�hsZΝ�?�6i555Ś�ɁBD�������E��X���Ef޹��J�:��v�q��'+dMt�y�N��(�\�s�����$$���샀�����Y
Ž��V��^���|��}�$��PVB�0/v��VH��98*;١-�f��E�Nw�`
$��·ڄA��Az'���n�)W�M�ʠ�2���	��މQ6�X���'�W��J3C�Cr�Q���Br�I:i��>к|hl6��f�kx��x� ��Т��tp߷{�_��g�}/��8M�K2���$�xp�s�uiQ!��vl.m���)��&p�R����o�Yv,�\QxC��U���DP�B��a�sh����0�i�E�E�e����􎄳�N��&0�2����~h��x�����g�v
�yx�)�HLB��C-�Uf�({��,��[��b����d����$�[ڏ�;&E�eo�oȜ���D�2��B����8�g�#����)��)�<X���9���\�(��+W��Ѓ�8_%\�}�ڐtM��6P� !�-t@L���+���cӔ	u��+�:}��}}�����<f^?~\U�o���?,_�@�i];⎔�&]؛uS?��s���Mm�-�fOP?��s6Ӥ��cׄB�4T�P-���~�B��vk�x��^ħW���3�%P}�����^��
����8�ofV�b�`|��<f�ֱk���!pu{Z�j׼��Y�v�A�}��us{0+(���I�40l�Rȏ�PvT�#�g�^5~}�ހ�����z�I>V�d?���0<4A�d[�{0I�018<���LB�]"Da���o'	4�m�������<�w���9
��q�Q�-�jy���{�~e֊�g�^�_�(�@c��Z�&��ceڷ�?�ؤ$	Gv��˜����W@kq��7˥B��ϕlѤʑ��}��	�v���μ����{4���Ǟ=�1�T�毼�e�����Q���D�����Tko�
��*��|�ܺ���O��4o?���A�l�OE�m�z����3Zv�Γ�%��e�(�>)Xq�bK�sH_����IlX:-�UK�G�2[��DHś4�U�h��l�
cL|��.N�J�l�I���S��
r�
s��K�ԧ�H@ۤ>Qz����f\�wb�~x�rqπ�X�Cz:��j��C�3�8<^N��3H�t��e!�V~�֎��ڇ[��=���-Yo��mWЭ�g��r��.K�/p�KicT}L*�D1��N�BH��t)�`�ABYҲ�
[��i�RӠvyq{ߤ�8";N��}�\K�5>ql�=��dOKkB�3#�5mi����j&���	���m!�7��gܲ��N߳@�n�^�}V���>O��������U��-Ǎ��>f�U��.��}q}�!;���n}��)���Y�n�]�k�a+yeű�ĵq��Yc�+�[ݶ?+d�߬�vyY��y��ֿ��T��?qZ��(��gG���H^h��I`��C~V��v��٤��.ϧ���g��oK���hv��r���;ѹ�E�|�������)x���ڐ�>���p�����@�a�6��&жY۠CRy�k5�X��7q�1�ܨ���O�װ<}�|�kص�V�9�%��"��j�4���¼�`!h��ʷ���:
b�kE�M�37�3�j3������be��vag`�8�e5�j*��}F��3X�<ş~��:J���WX@�3g�;��i����ĺ�^�M\~�V'l�}�AG�c���|�il߽��c7>���an~	k�?P
 �5�* ]$��Y�����N5hR�]Z@uz�m%h�['�Q�_�� ��8aҹ}|`B����L�@zCʅJ;�3�F��Y/,���;v`��ssD�.`yi���
Vh��fBO��
^#A��<�'�E���@4@D0�3-_�Q�u�&����8K
㶲;1Rv��V}�@�(V�J�i	��tdS^��2v
�����6����P���-�,/�.���Y0�a����1���-�T�泰C9L�17� q��2f��H���
�ϡH��N�I�V�D@�c\.��%F�Z���9�n�)�5ɡV5�
��”�bm�e��4f��8-LLN`���x������k�
�;�F�iSY���8�� �kq؟n�}��L����b��{$'K�K�@8��'}�dbnJͤ�x�ѱ�X{��Ktt���-#4���FT���m���pK��<�#��My�������F��� 4�(R�\��ivV#�3Õv�}3�J3Z�%EQ��"���n������]�1�Ɍ�y�F�(�*��y3Ü�s�"�ٷmV��1\e�'%�#��q\�)eD)_}�86M^�Q��ٜ���m�&ꨧ}�u��C�{�i�K8�W�M�%��ZÎN��7au�E5k��akJ�v:D�ȕa7�Y�:s��1�f�?3#u�S)��e�&��?%�!n�p���)#A���.��x��:I)}�5F��w�4�����6~���{e���)�:鶎T֖�������wC]@�w*x�y(WA�f���X�LhPZ�yz�K�?�iTD�]�0��Ӏ䓨M>�D�rye���]���Ӿ��F8���>U8u�A;J�)�6U�z)������v)uLi�5���o�D�!{�C^��0���`*��I�-*H���CR�qB���ޏ9˃$�]�*s��u:CzEډ��yV���:��2߄Y�y��6,��i�z
—U�w>����3�C��t�ˏ;��Jn�[�Q���C�L���T����ʞ�p�u�J��~'�������϶��]��䯑Ҷ������B�2��K���U��}!�gܴ�,�
���{��EA=�?s
���w<h�p�}�/�B����*�/��_!�.����H��rpP؀4�~��E��0���2}�ǗM]`�or�xY����>����.��?V.ɕ~�rޠ|��.�*+Tg��C.��ap�AQ�~���e�+е[gW�:�T�O�o�3l��v�7&��o�m���kBh��ʓC�}�';�C���y�~����Uزe���aOx����H��(��ˍ�D]���:t��5gŁ,?�_��H�!4�!�1���&��
Ee������7��㖙2��`�Zi�@yuI�'���l�h���m��&�*J�Z;y�<��z�e\���g�n��JmԻ��|B��A<�)@�:�)���5V&?x����9zb�6�6���$\g]OSW�e��+Ҕ�ڝʦ�H�S���>L����/�:JgEU9<�*����5� Tc�[&V�j���-�@�z)��\�����c�=��r��{�ԧNce��ⴉ��ب��`��&��#�4�k�G�4��ū�.xލ�c�?i����L1�Fb_.e>��</�O+�Ԍ���
��ǧ�߼y�2�t~�\q@�f`������׿�u�O�b�^_��F]��l�S�4aN##c�g%����p��7�"<���� �`�-c�3ee�ީn�Ldʠ���f�|f�fe	���n߾���죹�;����̷��-��155�N9�c�NR���}�LNM����Y�19=����ݷ��|'ⶭ��\営`���v�c�]��
">ѳy�f�3Wॗ^V�M�U��
���w�B��N�H$��3J�>�>��g���V�0�Z�vk趞��M33f�t���2�yJe����9M�NLӜք$�t���$¾Z�c#;v�ޭʜOl�n>%�{�L�U���"eb�@�6Ν�G}e/FHa��"�hC@���޺ڪ��}�,d6Lg��.����?�ur�S�\�� O�z��\��|!T?j����Ę��FC��9�A��5�78M/	�s���]��о��B�O>�"S`\]���ٯ�:���%l��T�+�Ή�����G�r�����ǽ�);��z%��
6P%�~�M���Ў`�|��i�&.�a6>����C=����D��+�L��߶/d���:��Y�6�S��NۅE�&IO���i��'��q�;��e�R�����)�S�H�2�g����o>o������nV2?_��UFš|�h�Ӽ"@��W
��#:�B��ۄ���-�<�/��3l<�_�^"��e�/��[+s�;��_??;q�a�_��h�CvO���܄ޓ�n�HCj���}eې<S�!T^����`7Ϣ�~}m������i�f!:���N�����!���w��ɭGQ(*�/�/��F�zG6�k�<O���[Q��C���_���zPޮ����]�>�>>hL�����y��
�_��_�{��C��c�*5k�'=�)����f���rW�a����r��q��)E����z�A�Y�E����C�T��]l���l��ha*��_~?[���C�B�	�&�6	�r�����]R|�6�uր���4ɏ�`��y���a?9�#ϟî����#ږ~����F�CC�g�G�<AʒY�ڱ�"5s�\�*�$��Rv��o��z�w�Ӹ'<bÒ���M%�ŸJH.B�Rg�WT�1A
��w/c�/WP[:�����nPt�F���'�8\;w4'  ��KM\T���eƅ�h���VG�`��ln�\�������b�f�xg~��N
�I%G�6+RJԖF���F�H3���3�D��N�g����w>s��Y�F.p$�ȓ֋ƅ���Y�MڟEU���0۶m;�Me�����?�����I�fS�j_�o;�2��a��ƒ��DE�
����^�z9�z1v��V��s�e��|d�����=A�u*�#����1|���(���oRm���|د�FS;Pol4T>��&/"R�u�l�kD����Q�zN�x��rhaSd�$Q��jg'4��fb|
q{ԩnM�+ʄ�E��FFj�d�ͷ݂={v*�-�]m[G���vW���M�}�{�~?��M��;y����-����o=A�{V�v��$EN\��Ұ���<�E��u��xHV�7��m�5�g�2�t��uP��o�)�<�
HW6��X�<W�PڴI;w����h?L���PWt�ŭ;�BG�˛����A�R{����x���J^?��&�tɀ���YJӕ��5g�$��[�=ʮv|��4."-���0������Hӫv��sY�������͙��tM���mf�v�����H�8)��q��[SP2��R�	D�h3�F�K��Sm��9K8I�yF��`�:d�1k�҆K,L�㷳��,0-�8�L�
F�u�rF��\K� �=lʊyK}E��K��˼rÖaO�^/t��!j�u57�h��b+�2VeqE����:�l�^��,�^���s�1�g�n��K/z:B�p���B��$]5�KS�T7߼̙'E�z8\JZ�(8i.�6������ni�CM3hv�ܻ�a��*1d��Cj��I 
��,˱Y�K�H	�5�� ��G�U���h��p�Г�WR�Oҿ?���E�I7��2���o���߮���!�=��gfW���׵h���~�r��}���^y_�m�~y�]C��W^(ޠ46���.Mnz�?�xI���A};�N��}7���{��A�?�C}ٍ;��RQD�g�t�;��O|BX�Vք�=��+=����[�̵t���P����^����>���ŇGQG(��|�ŏ����P�
-6��P'�GCQ�2�&q+���B����`�mT	��4�hX5먒0A���?��8~
�m�xm	��.n��&L�mQv��x�z�_��<�D�!�uꟻQ����)vX����O}�?VB���c�cu��|/��F$���@�G�y��AH9P�����"��c�����g!�=�Ѩ����eb�Q�0���L:��ؔ��|ʣ��:��V�.��&��t�o��RM�g�A�1�C)W	��P��Z�/o����g��D9�#zI�`��H�
�*�
��}5��h~N3�g�6���
�LO�r�`�p�A|>�Q��R~���;pgP
Цk�!R�%~Va�Ǜ�Å�>D�r���B>�[�K+�PgO!�*�N�,��q�Δ�S��Pk�e�J�Cx·��Ν��d"�sx
��4S�{��Kc��AsV���F�9��������m��,��?O
�t�yZ�O����ϟǑ#G��K)�J	t���o��O)W�OGh���«�^Fܭo�z����w�=�L�et@���s�XVu�s�q�Z�DD@�(�9Rn��U_��	� 6�y��ճ�4i�vJ�K��m�?w��,���MT:h��͚�����ڕ�de/]t�oG�ό�ʐ�7���،���)���C�29Vς�Mz�����#�$���k�xb%=ϱ�F{�i�X��^�e���'^��o����}.:(ӄ?�l�ڻU��)���g��5|��Y�/��� ̴�A�vj��yi���:���zgu6籲՚���q2�:k�>���!�4{!R�R8�^La�Y��i�4��:��^E�Ϳ��Un�6������6X$*ke"3ΏwkҪ#=��]�L����y�$ɥ�u*�dm��a��5�K[�Hk}i��6��4b�'XB��J)'��f��:}����]���I�f`�5�^���s����ˍk�|�I�B^,�r�de��N��o�b��[��"ؼ��|���H�L`�k�oɺ`6f�):\�+囄�<"7^uQ"�"=�ex)x�2��{��p�������tϽC���\�0L��D�ڇO�}+/�g},ǃ!߶����y��n�r��9���({^S��ȭ"�<����2����oT��7�/��ZHN��@x�e�'�.�-
��Ei��~�Er����������|P���z\lY~~��.����l𱍢��}�}�ޏ��������ܠg���^�~�~��Pr�߬�ki����}oX�H�!H���6mſ�dg��pWJ��#͛�bnnN]�rC�u֜;��<�6���E;��&բ	3�ي�M���v�4���:�K�4�Ϭ���X�*��Z�H%A��oTjԯa���z�'�c��	4�@�1>6��WT�_!�y���7�>~5�!��'�_G.S���G	�qyV�Ũ�2;!t3>!�u�VB]�m
�]6��㢖�2~K-��9Y�T&ENc�.!��6�ڵ�r�h|�F6�C������)��C�T��;Gu~�<I�o�P�u��������t��
e���U�=�����<�����<���v�0Bʘ��{*\��g;̨w���♂�Rz@;��j��ovP��`������uN��F�f^�Q
M���p�(�}/�m���x��;��;��Hm�wbR뾤����
��sB��?�8���b�#�e�n�܂Ԭ����#��Ƹ5�f�m�؞�`O�(���E���J��t�xa�����S��w$=�?�تg�
��֣h^�w��Ah��Ǧ/��	 VxH����?W^y�o۪fʬ��3D���,�Om��2¡���K�\m��u�/���`�ZO'4#YŌ���'~*4��؜�<4�U�nm��nb�C��Z�����O��"mVpǖ	�47������m3�xl/#joR�B����T&��d��-�o�s�����>u�;E���o|h��ʧ����.h�،�fIqS�����߼���Wā�>�R��l���a)N��3��}�'Q�'�L�R��V��.�n���?�!~����sx� ��u���pJ����C$ }A�М,�ї�{�y�ڑn�;{*��iW��
T:y�Ytfn�A�8�bf��:����_03r6W�>��x���v]����v�T�`yӱ8w5��5;c��&E�[O���{��+<��4p�w(5y�����1
e@a7�=�a�s�1���:�!c�'
f���P��G��S�6��h�?}gy�D;��<$S�Gb�{�	s�����S٬�hA��Q#٣�m"��"�a��񉏵�yg��C��b�!T@`/����=ˢ�Y�9���{��U���Si���K�z�$K��ٽ��Az�%P���^$5�;�ɴ�2�+���^y�ƕfͳ�KeT��S�:�oMy*8햝�p��vO�۶���ֹ�gyj����E�@qۺ�sϗMr�A�v��a�|'�8a���.*'����<wH�
�./1|���B�eXz�����Y9�Unظ��`�:��kQ��~�m�vt
čӏ�7C����[���}�����a��Q���ˊ0{��s��n[�ec�1WJn��Ay.g�w�:������ͧ;H����Q~(����=�)뿃Ou�i���I+�6&��1i��1k%���������|-<�?�����OWT7Û�F,��N�邀w��Q�*�&Ǫ�669A�…�X}�tN�Ec�@�V+K]�m���3x���P{a�L��2c+�5뫻H�����F�)?֑����%���o%�l����v	Xkc�(�U'>dIXB�M�D-��T	��;�X��}td¢�f<�=z��z������(->]22��߃��y,<�9�6�a�g��Ɩҡ��i`�R�R�rT�q�No�y��T�NA�j7��:� ��P�ia��9|�����cya�Z���Cv��a3%��,��c��M����)���h��j%�YG�(k���\젶��H�g1�r�a�SaD�T����I�h�M���=��r%�	��^V�\���}�=��i����^�@|�}��ܺ$��w��ڼP�Й
C�`��P�M��w�9)�S�M�?AT�lr$6�Xٔ\�i�%˸$�}������	�C�y~�"��
����6F0-�e쟤T���ï)�f��h���7�*���벲����	���dJ2��U�
~��o]Z�s��>�-|�e�F&z^�D������7|͎����$%�Rz�)>�����3m�ZJpac
�k���<���A�|
��EC���}�El�e�V�{H�]��fcIyF��#4Ws�2�d��2j��h�
�iCK��àO���R_�6��V�DkJcj�b�FJ�vs�V�c��<���Lһjt֨o�::6��v��ڳ٤��4��H��'��&���.V��'zt?H��r��\��,>yӦ�e�OZ�̌H�Ai.X!:F�fԩ���2�i�#��[o.`bd��N;4�V�Q_^ �p����>��*N�Z�գ]���'
L�q��V�zjJ)�Z�e4�O�UǨ��rv���N��Ju�~8�K9��X!&G�����_����
��0���4~'*�j��tx,W1RU���a�U��#%ge��E\߫`�-�,�^<`|����z���o��sD �1�f7Ǥ����f�vǥ���ˇ���̲��%���u�޶H����9�ҳ�rk�:�'�FiX��΃}6	�� +�"샮e�%�C}�$=��H�A'5�e�tZ'��[���Y��K�m��`v�B�tB�rE�Q�ym�;�%Y�"��
�T��'D�`R
�XۧD��U�Az������FQ�}�@�@l �İ~��@�.[j~�0|6Xd#>�&�}�,"��� ���.��B�V�)՟k`	6��7
?!z��+Fʞ���s���o�����W�a���&-k���&�@u�0�| �g
�g��}+�	����m�h���q����]�@�)|�h���Ei�����P|\��w�����w�?��>��n>}��U���>+�{�|3�3��"�{�%/��vE��!DOQ{
���V�~c��ٸ~򟇮C�Cy���kX����L�;,�|�t+<�)8">�':�d;�5J����Utp�lƊ�΋�!Zّ��}zSV���j�.�8�&7�Yh�s���a�7E��]���Auu�i2a�0pR�Zjg'��xPS�z���#a��@�){��΀P�py���-۰�끙	��)$��c���@C6Q�wQ���M�+F��� �~A�XkD��)'Ш�Qꬃ�hE>�AJ�6C�H�Qβ��ms'%�j�e��
LI�Md��[�"r�$R
(������D�&��,f�|/V�Oc�e�_*�lv���w�1]&K���,,q�q�-V��(C�
f��]s�S��m�"g�mDE�X�Ex��P쐢�Yһ|�>�Z��){Z�ځzG;dd��=�Bhl�����~��-�/��CL�Ϡ��@�ϥ���g�ܸ��~��㚒
��Ӆ�3K�o���&=!j�>�?�3w��*�͋!iBs����+,��J`n�2��U~inz�gp�s�7�{|bH�ȒV��̓�:Pԧ|�B��L���9��`�6�y0���q+,k���$�Q�M�щ�i,�=�t�.��\���ZY��I:R�d�T�:��Aܥ�?��� 4ţy�������d���,�ZDDV�Acl�~����s�$8���}��oűמ�Ԯ;���������܈)8��^�C��4��gW����6QU'c^}�Y���@3/9�O���⩇�/�j�+��w�vx7n�j���h��iͨ��kG��3�/.M���#8s�9��\Ɲ�\�g��Sۮ#E����71F��W�8����ڗ��mw�c���֑���?������ER¬�c�!����/�ٗFЬ/bMN�c��=�<�8f�SXX\��>����?�O��?��I�9�2^;_�}wܢ��W���hF3�2Aʔ�2�b+���ᱧ��uro�����>���xϼ�
��Ù�_�̾�q��	��������+/~���9��j����4�~�u��4���<J�����w��/�T�(�������H�B~:}�(���|�	�����߿�y��<�xz��ѻ&	'^�$�= ��C���x	�mP�
�年<���8����D����C��F��V���I|}�ne��;j��=3����XT��F
dɛ��*�f##G�}ك��ߪ�C��L�J���fo�U����;��X~ɽェ�,䜰2�I��N��

�R2��s�J��!ң'Mi6M�4"5���%�q2���)�S��Qpdz�lȩ+r�(R`ɞ�9ᓵ���pR��y���n�c?�w��`�V�/r-�_�4��qQ�EΡo6$)O�?�|xh~���_V��Ҡ���a�Η/v�
�UE4��
�����$+�t��B��ӿ盵
�znߋ��Z����t�~KGQ��h�gp��`�'D���JQ}By]�k�a���q�!���5d�(�P���8L�{�5��Ox���I���s9SV���'>��Y	����`�V�|��C��rRl��ժ�6';�W�����f��1k��P�o6gu��Y�]B�`
�Vn��&J�=h�ME�O(]�?�P]�Y��`�z��<)�i	>�Pf�l��	(l��<�֑�p���QYYU@a�\��E�!F�m�V4�-�n�av�.��{1�}��'���*���"A�F�ƣ}���A��A�A��Y�o���Ƌ�#(�3X?�VN��Aw���>˔�
�$�-al��tt��]�C�P���FU�(�<[��"��M{��H�ᕤ8h�H��ށ�w~�ݷbQ̂-�U�
�lb�w�����O�ҳ'��9��~DZ�␐E�U��-|-x��T)����E�D%R�xK�e��X�C���.�q[���tQ#`�D]�E>��	tdx*V�a�x���WE�C}۟�MΡ�0̧_ڢ{!�󐏅PYn�f ��B�
s=�-|�̵��~��
ե_��ʷG��w"����K!&��{�ۆ�jE�8 �brb�g���܇�����[f�h�uHrAǯUU�R��S�+�����lo�揰½s_�%�~���L稜i�K^��N9}m�;hӄ4>��n���}j#e��ҳ�W�vM����ut$�i���|ڧÎ��.:)���k4�	��e::�kأ-�n�t��w�^��R��wއ݆{n�_{�(�r�Q��?���;�g�~?~�G~�����_%>��/�����&>� ��>�t���'����(uc��f�}�}��{?��~�?���E�8��w��E����B����\�]8�ڃ�,��/>��yH����v��JkQ
w�.�}���s���_8����x��P��y�ԋ��Oh��c�NL�o�u�ބJ9Ʈ�W=��{�}/^�+�?��G�?������'q��{p�S��w��~�a�K�=���n�F�A�O>�f7��m7�����M��q�]��=��x�sX�h�s�xy��7�p'>��>��,���Pk���t�T�V&�����_���A��u��&\߻��^�ɻf��YB��%���"J?괄�f�i�rFo�;�h}6�|D�����'ƭV>��	E��W��B�qd�b���~�:'��;���&��7�1�[Md
Nί���M󂦑O�񩎒�aNø��Mo�6��CjC�Pf3����?4��>1k�%�7Z��D'��nw�dqiY)�;��'^^�)l��,� Ep��X�4��},C���7c
���W�k�a���9%�e)��霎u��|s|�'z�"-7�°3|->�ϬG����pnmz+� R�Qƴ��j�{Y
��H��p���ߡ�!��IX��]�I�'�xpߟ�S�L���
>O�SX��-�t�3a��}=7\����{����R#��~���>�����U$+�i�	j������k�)^���࿇�p�u�J�.��m�~m㾿~�ď�9(����x���q�>�}\Z�vr��Oz�׫���g������bd�~c��q���7�~��w]x/<;$珴&���Ø�J�YŇ4iؼU�|ƒ�5me����o{��}f(l֊�U��Ɏ����q9��0���x;��� ���A�҇�Oנ�#Tf?�|�h���L���a�KC$M�;���u�>����ƹ��Owpf���I�&:
T��c]^�=?�3��q����	���� ���<V��) ����
�_=C��6�hu�	ЏQ���9o4�W�(�+˔0�	(O�`Ǧ�n#����+
�a���G�a�
��sm��A>��$A(*��2{���h���׈��i��~�2RG7���$�k}�$d���B�u�lw;
��E��eY��i󎼒�,���� �����tPk�δFK#�M����
:ls�T&!�?%����Ȥ�o����g�L����'�a�s���~��x>��ʫ=�0l{��C�Z�#E��L��X��f���8�Bȏ[����t��_�(`��ͭ��%b�s���U�Js��W�m�@�鍘�������{�\�r��R����׎�i�
5e��P����gv<���r����l�Bݰ�\�'��4ʑ�zn3'>؜R�����F'0Ns�ڙ��sؼ���jcSYl���Ds*�9�y�M�S��.���]�+�DV��ϠHK��&
�R�;��A��܆�t��G^/Y�����Isw���$E��B�<nx��_�K��]3�j
R�[����~{���Xm���u����JE�>$e\���ʹ�ر�:�����2ɖ8@���n�5��~��?�x�ه1�m{�B�=�D�de��
Ll���$^>z���Co ��7�w��(�N��ʘ��ո�5Z�W�㑇�L}��e�#1n��C���k,^�7�fḺ��W��㏾�'���.���=fHg_2��"�"�Z_�R���JYAb��$F�˫Ԯ]����z2�RB}{e}��/+>`�2J��.��]`!3V�U�9&t���f]e+G����:���ȃ<}yk�φ6�������[���A�E�ΊF����1=?X�4�h�jN+�[Eѧ�J�"
�\G�W�F�>!S���Sb�4�`O$�]5�z�^j��vqP����V�u�HA�Hs��M[��VRx�ơ6��uTyV����%H�H�13�}�uV_z�@8��]����mQc!���l��u�>�y�<�4�U$@����Jd��!:��:�pX�^�j�.��p{y�[n|?�\}��W฽��ߍ��Ϟ|��Ա�ǔ�]�J���
~����w"Hx���ԋ�C���ӗ�CqtfY��=o-�C����q���|����Cϋ�/�-|������g�37V�"D���OF
�SD��S�NP�rG(��G���P{��|:]�F��~�lz{�C�Cy(�_�6.��/��n�IQ>n)2uV�Bm��ް�����w�c#�x-ʫ�B�I(�XQ�+:�LՉc�*��0��Y+R~�{l���W><�;-�8)W��)+c�JX���ܜ2e�';�)��a�
|����ã8��a�#7�A�ͿhA�;�KK��~����Ƿ7��Č��à��LB�w�vZ��k/a�L�'fk�|���y�%�d��~7~�V��-��[I�QG�q�6r�����`a�qLO�P)m�����4�v�f�
t�m�!9�;�F�Q��;
THi2����=
 j�H�5��Q��ce�^�rP&���G�5��C��l7s��G��=cl(S(����w��g�*�����`�I�ɎېA�vbLH�SC��`���ҍ��Rd����/�#T&�!&FP#Pi�
Q�h� �`ob�At�_Gce�n�06:���Q,8�e�?�Hc
��	�ELPhq/b@��q(�P���+��/4����_T֛����-Zp���~��z^T�A��t��V���xELL�����Χ�ӳ	'Vf�)��[6���Fs�&������P������Ê�"'��_�P���L<#��|�=�W�C� �g��-O($��k�vT���V}m�'��@
�2ͫ49���>5��F<�I΀��k�c5/���M�5J�!�c
���M����‹߆E�3}�Ȭ�.��$�g��W����#��"�-��ݎ�[gp�u����c���3�ͻJ���|������q��C�X�s�[�f����G��+|�i��h46��|���{�?�����kK��/}���k���������G��>����l*J�,���Kk+��dJ�6���
n����:�~5�8yrQmWo���/���IU���Z8��ħ>�s�d��Ow�����}�g���6���
왮��\Fel+�m��jt�����c� �N�/���l#��p9|O��}�U�P�Nǁy`A�Ƿ�����O������#��R�Λ�a���q�J�,B�@<H��{���X�z��ѻ�HC�Z�[�d�Ux�r� �.���j1�ks��Ȉ�������	˕��Ii���U�c��:����l���@�4�� A�>ˊa8w�"^N�g睛D��gυY�5�"zAy��p��\!�"����p�;d��zs�'P�9���e�f"z�I۲�mѴUJ�-K P(bǬ�#�[f�B-�F����t��"{�n�+/�e;����~c<Wb@fq�$�98=0Wޛ	+�k��V�7(�!����dDϽ*�������}�{>�:�]��{>ݡ�E��{_9��ʷ��Pޡ�+���>���m���������+j���Ci�~�g�烞��3��*�cQ�~�����~�9�W���x>Q'���ݤ�Me�ʜ�pOw(��0k�� �Fb����g�qT����`6�qZ.��r177'H�!�ۭ�1g�Y��+�Q��B/�}�~��n(�8�I����d��~4�e�i��	�iN鴌�F>4sC`B���6p���Wž�v�b�������O��S0��6]Ɓ�v��� ���̬�:>�Zy?��N`�<��ѝH�eJ�2)5$�d���i
��"Z�e���W�0љB5����T�W�\!�k�f�1��ElJեA�Kԇ�IqQQęYM�/
]���Q�-(�2-%Q�&�nG-R.�T��K�)U�48*;�cC�P�A��d���~S{u��q���GeuR��M5�MH>�Ae�+�p�Obd�L�ڎ�ͳ���P'��S-@���Ǒ��� &��$�hJ�P[kѠ��ƅl�Ϣ~���w0^��XA��H�T@� {v���xp���,à��W1E��iCϊ�~'��g�������p���)rX�������ҹ߃ڱh���C�y��<�"ft���*7��~;�i��$!�cǎ�x��ixUi�i`��Yv�JZY;���<�u�ʣ��B��[���o�\�&�~`p�L�E=OR�\��~y�}t�FF�6�=+Si�G�1B���,-�M�ؼ�Jl:0���M(��R�*��7QfM$��X2�[ؿG�O{��%E�촑0�@��D��B��{w��:F�D.�Pی���x����`|"�b}����y]������$������k�+ؽ��r?�������_���X��}��FBp�Q�j����Q�ʦk�ރ/�k}�IQגUl��D�����i�ޛ���`��Ӈ��O�-�&eD{}��g�6�DzPf���+%�����������@Y��J�Dk�U�'�ů~�GI�H����)�%9:�$���������g��Cy1l}���_=�;fj�N��"���W����j��}?�&)3&�e�I����VI�����Ɵ⊃W������G051��n�	��_a�$���it[�j��8�ɟ����Ǿ����p��)R�TՉ�Xu�t�r�.i`��ݡ��"��M6�pp����ʭ��'�t��75��H�̃�"-Pϕ
t����l'�	��)ѫLK�`Idr�,��Շ��WlA�4�Æ��Xw�0�)�	�I�T<e�ި�B.���l��^�#�K|uՉ4�Lԩ��Wk�(�F05=���26MN�Qo���Pʑ���
)ccG�e[�w���3k{7�k3���.ݓg�=8��a{����c�~���vy)�+�ir(�cE�h��!٦��[)�Uҫ�4|���Sd��L��W��*U\9���c_��We��a2߬�{�p�Z/�\[�;i#es���wB�v��R����Ѵ�4������@O7�ru�
�
~~��~�B2\?����Au��=�+��m�?se��2��Cu,��/sP��������8���_���ͤ��n(^��g�8�0龛aP�ׇ�a5n�a�0��bS��M
l����`Ozp`E�QX�{���œ��)=X�a*�J'����X�?�Ԝ>�a���g�V۶mS���G����_�k��_HD�v�%���۴1p�a��d�����~���G��vR
�S��h����sq!�
�Șv�w���Q���l�
|��[8���صo3�q�]{�\	���c�ʟ<��N5��ƭ��_�v_����vԫK����H����h760^����-��z�u� %�7(�aD�
R
���� ^�F�L�J��dae��c�Uw"�L�ra��(��f4�x�:��c���)-�N��"m[	%Z�7a��U���k�#R*DJ��0�u�|����K?��ƙ!�Y�6s��"���� ��$-�N����Q6�;�6Z^%:Żf��+1�s;ƶo�dS%�$�J�5��	6!�h�
�M���JM�
�UT�}�fZ����c=�+�7a���n��¯�2��?��&�ɒ��E�3�{E��{!���WtݏQ"Ϥ�0�}ݏ�>�w�O�������va����Z�~Q;�G2�6�9q�4�L�{�_]���������Q� ��|�v��O������0c�����۶dо��h�����2z�(0?=5E�I���J���k5%ͥ�ibN#�+���m/�Ԝ�6���P&�j�#*�X�j�}k���Oi	��g�(���	�$�6�L�0�ç3h�O�&�k��L*I�CWI;�N��;-���FZI�֎�q�E��W�ڨo�1�cFwϡ�}/:�q��2�@�sw�gn�Ԏ�N��Ǯ];q����L���nл�6M�`�SRv�*5m��N�ڹD
q�z�P��ݮ��+l��֟���9�����&���*��e�CIt�;��]+���i�?�#a���Ak|�<�ֱ�� ��aź\��|��r�}ܨ��T;�mZ+YH
�R���wHkF*勁�Ŋ�r\S��?���U����Ex�dҺ�NM���i-�-�[���v�:h�YU{���6��rU��Y�j�6��0D<6+���Q*ǪooP_��]�d�vf����d��[�…,,,���|@��H�3OK']`�Pء�)�j���Ov�Hl�#���t��p!�:Y���#�v��>k2��Nq��WEH=��[m(��R��hL�|3�Z^�����2$��
����8.����?����
Z���V�A2��}{vb�>��&I�Ak\�V%�r������ب��f��I꯾����0��]��}�:.�gBd�(Hg�Ɖ=a�ʍ�w��VC8����vx��燢�6��n8cB�)��Gq�C���Ώo��\���Jb�y��$U�@�R8uB0��D�:>f��)��[ �դ�U���Z�Q��̈́A��[��0/\\�2���GN�⊂4��E���|�w�
������!b�LjOM����Br�_������l(�wae�<�o���Zhl���ѽ
����~y�0�Aa�<�h����G��ߢ��ێ����J׏?��2�*w�viq��;E�d�>��x׿[��X����/�ڜ�P�X��߬�0��S���):�5H��mn�R���Ú��@
�vnnN�Z-�)�h��Xف�a��O�EB�Bs�D;�D�o��w�Ȭ�Bm�բdW�e��<�����Ϋad�v�G��vۮ�b�U�9�:>t�^�܌���3�/�Z�Jc��Q>�eu�2=G��n�F�Y�ϣD@�:
�N��z��.�˧IH~y;�[Pm�
L����|�ZB@aE���:�M ��$bRtT-b]�n��0�W��ϥ���*�;��E�f�V�u��[C3�m^�"C�]d:{�K�� ��%m�K�K��#ө�(� p���]�
�M3(��)`�� RMR�0������q���'Q�
�����Ԯ��w_���1��&�P�Ds�<�~�!�-T��K?,[46�q��-J_����GKQ��}+��1�	�a�tj3?�`;Jw��B�|�~��Q���v�y��UJF�q�`�����~����8;?�c�	��h`fv��q�#���c�:(H514�{.���3��G�Ow}1k����	��2IR�E��<!�65&%��'m|Fԫ���A��Is[��1����ҜZ���9���7��U�jI�k�T���W�\�u�m��6
�
�ߗ>��*	v_#p]������
�����w�)@�.M[�v$�����S�ƪ�J�hۃtzW:��娪M1�rA����a�~'BoPΞ��`��@������ث��_����FIm[���%�C�~$)��Gm�Kj:*��zM�)�)]Xe.HQ���_!�����8����J�
�F�wIe�'K�/U#e�R�-Y�h�µ�-��JHY9b暲κ4eJ�5��%��AT5��y9�5�Z�>��!�9!͡7_�C�81W^�I��i����?:�H��"'\EqF|l�v�ОѦ�<iwH+Dj���>S�I��d�	��o�g���*�<����k�+�o>n^�u[ϫ|O�r6Ok�/���1���49�IRԌ�hMSJ[^X]YSMډ�?PK�ݓ9p]��:o��xv�G�I�I��"J����ρܷ.�2QF~��O�zaI�2�'x�Ď�&[���R�il�vMp O�_�h�Uj��I� ?ݑ�
=ۦQ����C�mhs7�"�3�2�O�@�SN ��-R8e;�E�Y����t"
��ly"ױ¡_}�h����dW'��-�=��[��r}�]Lٹq�;V�'��qC��{�<BrGO_�2��_��~����P���~��-]+�xn�~�Ӆ���C���k�wQ�T���k�t���^Q���+�ե����}j�P�T�ЯM�g�=�}��ߟ;�?�?���<�~;l�����p�xp`3W��`�?��<�l�"�ss�C�Gz�����o���Uv�J%�{���^�J�������~?�ݏ�o�[���O� ��_�г()�K3a,t�}St�mn��6�!�~�s�ʊ2g�����K��;���FP_=���&4�F�fRb,��W15��#4'	�|����Y?�B���f"b���qf}
/[F)^�‘uT��'���Fw�y�N��nA\�L`�6��t�ȸbޢ��N��A�`����;)� �}��O�ﲽ�ru:����B�:z7)<xgk��-�V����R��.l���0��E�V��$�-�7�(���M`�"b��Z՘�IЦtMR�$���P+=��f�T�F�<�����z#�{�k��~�4�Z�߼���	����?7]�qR�`����{������~e��Ml��1:�5,���-;4���}��z�<��j���|�24����~M��֥��ŖI�����VW�m���O�CW�bc'O��\Z���mعs'&&&�X�^�Y_ha٥/�!�;�'�J�HI�5������VxY&0��D�JR$$�����(`�@*-�3|���O�	m��(�Kt?j	t6ZX^]'������9C�>��D��@mʪ�M��T�9����K�������X�Η���4�s��#�#6%ĹTi�H�B�;2}(6y��"+K�I`||խ{q;}��8�/-#ʑ�kn"���Wk%옹Պ0�
�A*ĸY�^��u4�!lq�S^��?b�֫���7�y��2Z�!�~۳h9SR���-;�oHO��9<�#	sR��N'���s�E$)��)���J&�����I1�$�C�L�GB�y�Ė!���1��xY[X��T�/����>�:j�U�oي2)���FH���B��f�.o4��5`�.�Q\�7=d����-a�#)YB�nM��k�фɣ'��z�S��2�\�t�\�F��wJ�L�N5=z�����I�rp�zx~�	�]����:�(�qk�g.�`M�YE������Ү?�D%
��ݬ
�gM��ϥ�ErM�?��1��cߏפ�5���){v1��Ŧ�ϛ	��I���)+�y�>���_���"��/��,[���!�|Y՗��8Et�x���^Ey��
*s�qy1q�wj�"����t�}?��o���;����
�9�^���(m�<���fD���C��}�����_�> }�%e���;��'<\_��0f��Z�7+=X�aMZ�j5ɿ9?c�J�V��jnnN���#=zT��CJ@��o��vRz���Ch2
�w;��&���ǿ���A�B�Cqz&&h�����J�AA�L���b	�b��:F�kHx?��Q�Y]�G��-ػ��n�4:�6ڵ�'�0�hl\ �}���:��/c��4i��YY��kx��U�/���/��em�#U\�m7F	C����ujF����L��N�N�6W�J�5(�
∄��m�WԮ֘��;"��fN�HE��h�>�Nť6ۡ���n�	E��4�y7�TJ���0Tܡ��c��Lv)5�l&�I@%)3)OV��4�'%��hk�8b�-��U*G��3����WG�:�D�&1�����1)�8&�h�l•�B��ڤ�xs&�!ۏ�8�������L�E4�������ţh����7W�k�"�/�4�GKH�Q���
�+�ӂ�*�#�4�i����{���=B�,�,Fc��L�e�vH�c�.l߹v�j���vU^�O�S�7Zq�84�^3^n�E}.�'յ��˰�;J�T(�66�9�q~���D��+���ou)-�i"6
#�o���4/�ONby~Q)��^u5=+�¶��\2�v��tt���;�/��u9|�av��x�CP#V�7h����r��.�\ڿm����M5�%�:*�,2��7�����A ,�;�fLiӺ��+]���s����sV��=�r`�H� ����������I���_���Rq5!�t(���'Ǧ���U�H���E�l$�W�
���c㓤Y�r���lE��V��̉��"�ց��LE'Y~w�mg'S��6a�g�5�W�!D�I��S����^�%Sިw�t[�V��&�`O��7�z鵻���"k���ɷ�UT� ���M�k�T1����\YC�k�]Ax��;�SĻ��i�QNq����q��
xV�����gi0��7.�)!
��2���_�{���=�ɥöCH�qiT~M6�v��A!��G
�5Tvю��6	��n>P�.�l/Я�B�翣���~��Þ0��/B���{�����ک���6���1_��SN(^�;��r���P�;=�'<��ݷ�u��MQ��Þ��\6+>��N����ʟG��N�[>�Kg�����\��S�N��V���mۆ�SM��0(�w���~YEס���v�bڏ�0�/�Re(����U�%�$i�B|�F���F{
Qu
��1�Z��s�aӦ2n<Hʆ�kh�)��U�K]﷒B`���5�;N`}�Z���\���U<��:�{l�z���4ވ[�mٌ=��pa~��	�l��X=v�`b�kg�6�
v�ZCe���Q��]R�u�ą��5��(JeRԐң+�T���a.%�))%�[3�bn&��T�lb:�}���S%$�ԔH�D
�@�d�o寀�_�[l7D�UfFFԩ��:��h�<�|�P'j�h�5;>W6�
تl2�kVy����6�#V��ƒ�KױAJ���t��#��wS{�a�`wv'��qw�b�.�Q-���E�K���P\w�Y����h�A�v��o�Z�b������=K�7¡�4���Z����p�q��C~���g�/~>����	�/1]If~�x���?O�=f��-ö���O�]hT|���:��@	�&�S Z��oQ�O�W恤�	
��ߺv�}�\z���8�U4F��o��f:v�^jz�#�0�����p��K�-��`%�*K	�RYKt}uα��f���WIyL��f-�P���qD�Q$q�(�a�T�u!F���R��k��k��_�A�#�i?-�j�Db�1�F�w �3fZ+�~�0�u���!�U��qb�;��^��p9����2u�8���O��CݷHZ�T+�Ez��oY�¢riR��T�2{�#����t�+{�������q�"}R��N�Jy�����d��I�iE7(6���z�r�?95_ʬH����_ǥ�Sb�ki�9�r�9�ĉ+�uF&�Î]a||��&Q�֐��^M>YM<9�Z˺j~j6ۊ��
G]��YP�'Y.ʙar�٢���ƑNr��z�?��9�ݽg�j�Ŧ�Q�9J�t(�ϥKW^��|����pF�aE�0����������ai�c#��MV����K�V�Oyq��ί\5m;�����'2נ���$��}�C[��{z�☞~�W�:W���i|�;�Cpɏ��_����7_	�ad�~`� @�
._���޳rmm!�ޏc��GS��aʰ2j�����u�Pۄh�׎�BHƷ������ɯ'�aM(���)�R��Ζ��+�wP>���C�fP\���xæS&�L��F
�t���V�a�kuJ��vظ֧�Up�׾�r�[���a�	��bg�sss*c�J��r��{�nu�&=����ܗ��+��4�A�����4���͸���C@��9)OP]v"X��G)�Ai:��	�j!!�u�8zO=�*�u����o�Î�Iq���d3(U6��>J�^�h���1�F�9�ӛ�<�ž+�D43����o݆-c3��s��x
�;p��\�]رc����«�/!�s���,�Q���:Z&E�:���(�L(g�BՅ�$�tE�Ɗ���R��Hw���cc�K��P�m�fŵ�Ng�v����5�I�4@f�\AI�W���v�IJ�.�+�0��Mm���Q*�L	aH���g��U��e�	٢�‚)Q���p���wNc�{����.\LȺ���p'�����3-�~ڏ	)�~~������0�G*��B �D�B�p��`H�h!?n��Ǣ�'�0�q���ڮo҄�>�I�4�:%a�#��Sn}<As؅��
��Q�	��}�xu��$2��%�Y��s�10(n&`��'�]��Q�@�����U��L2��"KMg��1�`χ�=��`8|�v��Kێ/��f��1Tk�-���s=
4ۂҶ�u���QNq
���е���q)��?�/=�2~�㟂�~ɆEM�}�_�=`�������G`P�h�����7��5�s9��4�e^�k�V8ǖ_2�"�y��ojB@~O8���)�O[6P0�H����h�0�c=�u�7�T�J��ͯI���S�Y���3���ʾ��2��u81�GҘN����	�K74;	^;v
��#�V�A��.):Jl�����u
���Qo�cee
;���hR;���2�җ���(��kߵj�<��A��p���MԇgLs����u��,
kO�C@.��M)�r��5��0.��Y�>�Ju��cD:�{��y�nՊ����{65Yl�%��ߏ-5r��nY25g�y8�L�[�m�~Ë媗�hR:�*�T@���5���hh{iG���tE�M���l<|?��y��6��0�X�-��ml=��
.Hg�G��s�7c��&I�3<&PP��;��O�I��hvH�,?W�aT~���ye�d�"L,$���E�zC�婢�
!-l!@���ů����Za���E��{�6t�$
�R1�z�����飡rBJ�a�8��a�f�כ
����P4��~2����¢g6�&���B�k��k	��`Ň��a�V��� eFb}xp6�a%�
�d_[?V��������<挢����촜��]+�_[sVgϞ��1��{߿7(���
��Q�aC��?I�q�rC�����p~�E�]ws���õ�8	�y���R���>�ǿ�*Z��8u��	)V�*eGsy��(�,ڍ�l,�����Zc�����݌���at�J�iv���d�:��/�n���N�?��o#�*���%�ѝ8�����<c�(.��W���F<������b+�qb:F0�N�EY9.O�X��|T]D$��v�u�䘙$׆�	dg�RV̕b��$~b�����R`�$X�IU�iwڊbao)o� ��(�)_6{OB;Pd�MRfD��G��t��-ȧK���}�y����ns���QGkm����\�����bC���]�'`,�;�x�2����y�:4z�9�e&�K�:�0x��`���9����s��Bs�{��\3Y�s���}C��U/���z��}
��y��yQ��
�8���W���k�m�LJߍ�^kǛs@F)iL!��0sD`\�2a���FP�q�:���
F�9����)W��\]ӂz�J��&G�w��[�����u�#�t��X����P��ao`��_|��q&9���cW'�r�:.��}`e�)�s�=����"3'���`a~�gk���s���>�����cdV\8XA�][H���\)S����<������v�L!!�
��N�q�<]✲�sz/_�:;�����}2�)�-ԉGn�6�Z�P��C
�ɩ2�&J��hu#����MK����b��8:IW+B����N�L���z��}��zާ�#gc@>��t����S)_�۠�py�(I�K�87�<�Af(O��Q��C�HyD͓��ǵ�m6��y"�-C�1īr��%Y���c���dy�MӥL�9e��.�2콌L��,�扞�L{ɬ�ƭ&M��?d�<"����ft��P7�鞩�N�6�ͱ���Z�-ݲ�{�΂��Ki��{�g����
����0�=���ː��n����_�hk����>�EE��A?�A �۾�6
���wߕ�^�CO�f���}��(�8B}н��P�n]���~}c�;-�?�ރ�Ơ�E�����n�P���}B�1��JMZ���;,猬�rV��5�� e�������|F��=���y�kΊ��o��C):�O}Dև+:8�{M��l۶m��q���������:H?��_�E٦�@�0�u��}�,PJ�!��g�P;��[���Qt�<��Sh5Na��"�|`	Մ�	�
[+t&����Cu���XL��s謖H�A��J��6���(�	4HPۼ��,�Ο�c����$�q��yȲ@�V��S�S�L��E�QR���R��,:��̟�*��XZ�RI`�:	�;X"������ULצ0N�d��X86k����iȦ��.����L]j�_3�X��ݮr�ܶ�|�����H*�5Rʉn�U�w��DDy�W�<?�օ%�6'�
���;��(e��һ�I�QiRA��j�>�B
���j��(�L��&ph�$��ތ�
~��ʢ~�?-p��Achе[�Pi�F¹N�äF���?&�E��ť9ԮEc�(�a�
͕~��̢������C���0���Il^��
�KߙwQ�=����B�p(2����l��?��x^Q�@�i��
?m+�a?�v��ue
;��v)��Ki
Rҭ�Ɣ����S_M_��v�dc�o��u��P�Ĺ�V�R~���O�ԹEl�ي)R��q�S'^�Fc
��G%��	�ťS8w�<&f6c�����'�±���Չ�k�R�W������N�Z6�MĿ��z��v�ΜŶM��e�V�S�Tp��X\�ph�>��ܹ#��؅�j�O�A����S�����D�4F�kHZX��cbl���G��{�o�*>�u���_}���ٵ[9'?}���u�꽶t��f��"��G�T��=��4���dֱ��N��6֩���`rt|�ti�N����[vc���X:��ޖ�mo:�E�z�8FF&�w�~�Q��y��
�
�{�c�Jm�'u�����B���9>w'��Vi�h#u����]sBW�7S��-���4o�y�tf��IG��ÔZ�z�>�Ӻ�8�<���n��^e0UJ��g�u֏\y4�#�3^�����6�cב��25�j��y�WYQv�V��.��:�6����˫8~��g�C�Ի+h5��d$��<5�^cvv��p᜼�T��2~S��Q����r�D�t�##8ye!24�4�K<�J����h��i�B8q��*�B��Ϫ*����	��q�/�tI���ҿsi�4�#�f�ؤ�y���R��ٻ��L��\��Z"�۴�m;�:���,BT\Lpy�\ߓ����,P1�Y�	����yv�x�£ch����
҇���8!Pח��d��v9���H���#�����,��Bi�,�}y4�3�����P]}0y�	�~m��_DG(n��aeD�-���ů���WT�!�Gv
����g�����农,/�+9��X��P[��|��И��2��
VnpZ�v
HOy�B�VXXE��`%�5ee�tGZ[v\Χ;lp�w����Y��[���6eŁ�Y�AK�%|߇a:���#���
�v�~t�&�Єk�:�?����rB"��̀2���]�D��ZXlac�5�՟E�y��Y\8��[�ށ�;њA�|��*=o����n}����X!@����du;��T�&t����I?�w�X ���g_}W\s�ڏ��[?�}�#��[�����Y�r�9b�B��Vpvc	���cb�ո���"d��c(OoA'n��c~�
l�:�uK��x$���J��&��y$�M�$;>$�)V�N�0eDF�cf2fi>S)aJ�wȖZD�u4�/*��Mz��ic��R><8���wI���x�쐢�>�$�E�J���f�1Rt�@�g?�q�w?�����Q��ޤ��׭���[������HR�Iz/R�쇫�{n�$�3SU�Ʊy%�%�g��2�rӸ�#:�nzk�'�O��䘰�൑�AO=ݶL�ȡ�o[�$��y7&>��V��ѐ�k���G����po�i:�ܝs�ʷf��8~7A�=��n�\������^�}Ͷ1z�3�:�6�C�Ƕ_��z��D�Z��D��.G��Cu5�S��B����&��kSz<�Ї��~�	?g�.���u=b�I�	���W�k�R�0�cfLEt͟�T�l���CO��uqˀ�|������[��� ���O�gc�mx걇����W^y���F���7��4�w�~�<�*v�ë����7�X\���o�RlL�~��s���3��?��ض�+�q�i|�?Ƨ��u��}���?�2���;^j���ߢ%��bO>�)ZN���"��`|T�_���V���x�ԼZ?�U|�K_����?�7����U̟?��-��{�Y����O�7��Oq��K�7���DG����;��O������͛�s���cx�o��� O����Vh������묷������S!m|���/|���G_��\�7N>�#G_�o��ocff����˯�9����\ouH��z��ʁ.:ݮ��|��5�2$!�(��p:���MR�V���t�)ۮ)������q��lf�V��&��v�<MK�>_����c�=@D,�����'/��:�2C�Nx�ߕ��7�S��
��\�y�K���ӧ�ŕ:�/�`m���F�d�&)a����H����O�r��黬tJ[X�=d��6�e�>�t>��6����2KǏ[�0�	%��r[��?q�e���J���F�VKX:��B��:�z�rN��ҶK�HeB���w�����T�i���Y�:���=e�;Gf�ҏ�tL�i{�2Q��me&Un� �eY-��!�˩�0`WѸ�a��0}Q�Gވ������޵5�f��M_��P�����s�,��g��?���#λ�fn*ʷ�'v���c��g�OQ�h��Y�2Q<,�ơv�[DG��A��/����=��k!z�7��E������O'??N�~�w?��8r�Cu*����U0���g���Y�Gѽ��(��_g��1�ol�!�~�^\�b�
坚�2	�dGdOs����A�5ieNt(�������t뻃MZ�kVz�S컃��g�=�ann��P
&��4+;شU���E�B�6�˷y��\6}��ah�q��M	��~�4��#f�ZР}Gmf��M���|	ծ��	����,)/�:0���)b"y��bT6U01]�	�+H)P�����1:���2�q/�~eR�,�������L���Wclz��H񷈕�e�x�(��(6�0I`��݀�ޫS�����#���=��‚�Ԧ-8�p���8w�e�V�hN�C��.)אU�x��1�i�)�T���m#\*A��츼+{�<i�;]-�K
|k�δ���wG	�Pʊ
Ŭ/�b��<��u4k4;z�*��1i�V����&��n>z7,`SUB�j�M�Hp�m�!�}�5�f�R.����@�����
�C���ۄ���8�C/�mwSB�
j�k����Ixญg�h��5�Y@%�S�$�ɍ|��k�ש��R�gvX����P��?Q�s��8��p����K/M�b��*Zҝ�����tv���Uuԃ\�.2y�|t3AM�'t>"}%fL%�.�dȟ
a�F�ݼ�Dsҡ`n5e�u7�ӝC�} 퍺a��)�DnIN��˴QL�f�6�>���m�v6sa�0dj�W���Z�9?�+$���3��k�ຠǸ�Ò�떣;�>1}�u>m��}Z�IA�gSW;�#a�H۶2}
�i@�}��Qh.��Bgc_�0�����	?��!������7G��]���S�8w>�~�+��]�����)�^�M�q�ݲ�rی���6|��gpa�U<��x�wc�Z�?����W���Ѥ�+�M�_~��񞛮�-˴~¾�/�^��J�����o|�ة�������'�~��+�WѺ>�iD���i�#��]p�w�u�p�Mؼi'f�a|�_�2w߀��f��LMM�|H��E<��Ӹ����jG�i�����W���JY�kjo,������uWn��?�7�
q'�cWl�=7����,Ǔ/<�{o�ӣcP�!oIW$r_���R
v�B��8�Ҁy*�4d0�ލy�(2��HgY��n,I����u��t���d����x�Ns/A@�k}?#]`S�GN'�}��B���c��<D�{�p��7�I�\��-z�K�g�]��E�
rӛ2���ĥ?���OB��*����*��'c�
�J	eZ�7��`��T�ؗ�ȳ�^�����5�K��^�a���㓅S?��2&�Գ��r�k�����������2��[�|=~3�6�Y�I����~�����' e���
��MyB��,���z������e��"��C��?rW�����C��P(��7ދrr[`pihy�N���n�CzkR����
���C�zʗr�__^��"�ݗ���9w�i�J<����_Gh���@�~��{���3L9.�]��wߣ�+ç�_(�S��n���O��!�G��St?g��~�?l^�6�߆n:?��߃�W�/�e�Pr�R��(;�뷃O}p\>��*7�i*��<��봜�t-���F���XSV�-Y���ѣrnnN=�o����͊�S�N��r�v��aC�
�شn)/��~g�砸E��[�O
��0��Nx������F�i��Q�h�L`z��^6Fp��h�_��J͵DgKg��e�HNkP�N3ƞ�W�Z�J��$�r�GR�l�񥇟�z\�+G�ѭF�%�f��y<2{��Q??��'�a�
�n���Dž#Oc���^i�.�X�����h�o��c�������-X�?���Il+c2�ޙC�G���5u2C��<���
��|"l+Rn������{��E1�z�V��0;>Z��hQL>�!���%�7��������ގ6�b��R��6��;��`�
|�C�ބ�	}�k���p�M��DUI�[9yo=��'.�l��FZR�N���j��j������B�w����r������.� ���&��zҧy��*�(��X����Q�
zߋ+�eS^�T�ݜ0l�TC����a�,�Y��P�T��){;�̼K_��׳_�����gh׬+���Ei�=�H��Bd}LUPG�##���o������^���B��L�Y�9K��ai��]c��
椛�s���?]ڠ� ��:���"b׮lw$��;z�v�[��^��QSj	�4���*6V�1Q��<cz|�R���?x�������7:x�����:��w�l�J�NJ�w�y>��?��ۃ�މ�9&�S�Ӛ�(��`��r��Q'w��V��S!�$��!9�6��^��H�O��c54yAj�tH�9���8�/?���s�����[?��'�J�L��j������a����^y�ڈ�i����2�ކo?���g�����?��7������[~?|ߝ�OG��ʺĻ��Ac��Q�9aێq}
e�*�#E�%�ܕHd���Len�l=�M�yL)<'%8����M�V�V,���%��̡~��r
G_�:�c�3�|Ys�Y$�ۺ�l[���>-�.Υ�F $�eF���fec�w![%��S�\l���)&�-F�-
����
铛z�Y󸿔bur�u�#5f�Q���w��E�1�LRZw���e���Mk{�pxSm�R����w"-+^~��i�(����&���.ri��"=-#��t���Ih�iI����F1Q���d�%��E�w��u2V�#e�<u�.eF7�q��sY!¸�N�fC�-W:�׾o�F
/�[�͑�\r������/[�@�ݺ�Í/%�^��楟��\�Ҋ��~ӂ[�r
�d'�n{J/҇�+Dӛ
2�)��֨��f6W��ȿ"�M��]0ٍc���=>&T��S�̧m��2a�;����0_��i���|\�H���6��	�)E�K轻�����ExCQ~��\U�/���׵��Ӡ{ô�0��ɫ(^��7��w1��[���OѳR�s�I+����=��,�9	"��J�><X�a�Z���QzH뼜�LZ�2�&�퐤�P�H�&����qMF��B OQ(������Т�o��wѠȥK�mú(n-�G�ee\�1N�@??
��
��:��*�6V� �}y�:�|�֞k��['�p�������nEu��aR��T%�޿�����ϰ�N�i��N��[��s��ȣ�c[y�O��2]Ei��]쟣S�d�L[��e�nų��c�gq���x��gq�/�`���ٻ�Z�5���6A)kA��)`*ʑy�$�6,�`�ߌ�uߥ2�#b�3��9�̌�آ�N0�i;R�h���k�� �h�q��x5�'H���mhƉOt�ɎvW��P����
���؀\ZaH��}�u�����Lʢ���_���:���T������V�)CU�v�Y�"0h��WDO���l�8�w�PLC�`B-;��"��+.&�P[]L���#i�$I2��/Z��1$���2�����1��ϭ��a:;ƙ������O����BOh^�4�'��L	��ˁ���Pt��ӽ4f��
�ӑ�A�һ��I_��<��%N_@����	�Q�;�~��g�Mm�x���Z)��}�aNߵ혵��%�N�TL�݁��N�\��2�ju<��a�r�5��xKga�Y�-Pۂ�L��'q��X[815����)*n��eT�.^$%�-�豓����=[��[���>�h����	�j��g^�����ž+�D�������ej���ⷾ�ۮ�%�h%|��'�&^Y�¹ב\������.���� Q�3�N�:v:KhL]�][wb�h�UZ�Fh�����y���c�n�u���|7��
Z��������2�[����4��������������x���n��7����A�y��pվ=��_�6{��m����Y�I���!!U���@@>3׉1O���R~J��’���{{�����#]gCߵ@�bm���u�G�=���,o��hDJ�v��M�V�k �ef-^ٺ�v�9�m�."�Ck����<4�KGA�ݨ��ت&5�*?/�T�*D�8ף��P�~󉛮��0��X Yfbj����kx����z�S�u9~�Z�(�T���,�=��P���ff��2v]�yz쭬o���Q��3W\Y�B��}�R�V$��[��#I������^"%�k-uO�|�r�-n5L��k��(�ڳ�ꔙ�t�mZ-s?�|�mS_˯ZE��?L��r92ڐ/9}�
��!#}�6�)���yn��kž4��8#4$5&N�p����`�M\�� =��$ނ GR�I���8Pw{k<�߽�g���^Z��u��At�4����9����W�^HH1PT�PE���W�ŀ�E�C|��H▟�}��t�	�F��~�r���?}��~~^�>]�뫃�~3�_�j�xE���u�����D�ό"�Nv�#Vl������
����Zqr�ay�������cyy9:|���N�9�҃Ov����G)?�9+[7��`?x;��	�}�/�
�K�'?}�C�~t��94���OK0_ŎtͻD!�(�M���RI+Aky�?(q��"�y���� P}϶�x��Cؼe[����o��_&��Zk�*cz�.4i⪐��ܹs8z�8^'Ek�M�R����Y�tm�t-�]�}�܀�[N��O�Mlj�PK�8��
�VP�;���w�l'���~g��X��xM�*;�X]ơ+�����Z�8AB��n"I�������лL-�k+ˈБ8�u>����N42�0�?�CG����f)*#)�$6BT¾Qb�hm4�|�5,�l�b����y4;]�=1��٧�huY�������
�DW���͘�$�MLN�λ�CWc��D���ۋa�T�f4s�N��B��(���_fw��>*zSʰ�4L���r�]d�y��R)sB�.?c�-�c�af*Isȇ^�<��$�v���2����0����v7���BL�f��V&<R�i�$+3�_�U����Y$�0�䐓*D�?�o�;ȑ���n;amY�δ�0��YG����Y񲛶��h��o�R�Zih2{��~WI^���g�.�1�bv�Z��y�]�~���8T]u[��,�m�2��M���$j��
+���L��/i�4�`��IwǪ�1�����J���D��:0�e^ځ��/���[�?���8L]��k�v��[U{�4fwl;�vs?�ϼ�$:s��(���ERF$���T��G	�q���;q��m8|�<�З����s��Z�#O=�o���*�����ޢ��Cf��#xϽ��|��/઻�ã3x�ᯨ��w}
�I�m�q<��x�Gi�܄ݳMl$%l�٤��`�.��{pe-�#�|]�{�۟�ۨ�c��'~O=��?�q�����{�,|�OQ_O�?�w�x�Y�۴�V�DelE�֦�R;�_���9�W?���������?�L�z��q���o�D�~�K��k�S&+����4^x�~ԗ�A�^aࡷ^������4�c��d����y����ל^_B������&}��ЗO��N*��l���Gp�ȷPn���\����ؠ�064Ӽ�_�H7Z�
���W���K��
����+a��̏�|:���MQ���׃�\���E��l,�kvhH�+�"��T����1E�充t7d��~�A��4���"�>)�M�d�XǑ�ԇU|�V���
���BV��Ydkv�f2��:ٻ=� r����1~0|k�6ۧ�"�)��4��_�����/�4Mƿ�$2�Z�L���qk6�n�����6��|��!���q��K�B��_���@ʁcۭ��q����]�o�������9���Ex��G? ���GS��8'?�ɻ���Et������ez��Kc_tE�_h��~��F�~4�����w��!dn�(���y�:J;l��z����;�76B���n�ŋ��pVj�uz���d����4C6ke�Y�{l�ʚ���|���a|w�i�ժUzJ����2��r�5%l�J��`�o�V�K�w��N�*:��
l7�P�E�(�a�̏���r�hU��o�v��矨��-l�,�ŗ^�U����#JPؾm')�6c��8���x�i�pc�Iʣ���V*ڨ�������X�8��k(7���sk�65��_G{m
��l��i{�'1R-�5�^@�Z���ڢ���&P�7ph1{a��p�g���"�=�hV`��]غ}'~�?�[�^���ܯ��k��j�}��r�����5��(�R`�����Q;+4D��6��]q��H��u�vn0�]�8U��j�0|rK�c���1�w��k���0�.);�-ґ��r*b��*�ϖV�F'1E�U���ƶo�����:6MLONb�;�����=�����A��~�)����OGfJӆ�>�L�e���,�V�Ld�7�.Sb�����&��J�����D��7Id����Mu.{[��iR8�}�d�J�@L���X�҄m�Kh�,���	�5�B}����v�繴&.c���uڊO�c	���,�Θ���
�gEچ�`tH[D:f���&��"�4|7����s�
�7}g�-�ߍ�Lg��6/�~ENH�L��t�ܓ2��P]��:���~lj�vS)"e�% �Bx�@����D�WJ���#`��t�c�Y�h�mG��'K�%�TS���;ޥ�
nOj��s�Aj︆�|�u���;n|��Ɓ=�۹����U�뫮�WPK�6�!Kx�-T)"��a$m?H�?JIg�H|�mf����]ר���{2.�;���1��N���)[�"M:�xLJ��^�F���۶��^���Xެ�]�����.f��s��f�W�B�-�>�|J*�mw|��%!Ur�����S9�b���(R�R��a�w����R�����D�6HgN��{*���K�"[C��uh���e�M:�Q���ν� ��6j��$�� %�c��G�6��"1\�u�;���1�wg:4YC�Iasr�Ы�0r�v�N�|�xʤՠ1�
R�TGP��*N��]�y&1fa/����F%i����f>�m�Ȏ��k��:,gU���O��ƌ�W*l�[��'���"��~FR����=p"��J!y�d!B2e�l����V�驺[�\|)�U] ��Y�7Տ��j�P�m\�)���*�k[vd�M6����������5a�cyFs_8�R�K�4�6?���_j��H�M�Y,}�i�in�_�ބ��a0��
ohiÛ��b��A��P�������0��~y�h��"ƺq�r}���U���}f������w��-�ׯS�ޢ{n����(n?�����i��3w��`]|3y�ٸ�ޗ���5��a���~s���2J�
���1e�[)Y����ߤ䐤�η��\��>mlfĚ�:z�ZӸ�X�{�n�n�S��LC�6�
P4������Do�;I]��B�ghr-E��0G#�<���ҍNS�>{~[wLb��������-8�F/?�JS;��+g��\�r�_>���:ƫc(3PQ!������1>�O?}�uH7$�g*h�l�>�d�e��h����ؼe�Lo#EƂrm��&�lB2)����r��38_?�c��a��03�k#-��U�]Y�ҫ��=V�lU�o
�w�Le*���\X�O���d�
�Z��q�8��j�`��K�:�j�)$d�e�D
j�f�CB')6��m����V F*�'Ɓ�1��Bi:��1O
�+<j5���8���r����g_��s�1;9���YL��b�,-ZMR��PQ�w�eV+�~:�.�Kh�;(�*ʤ��b���݇`�fgg�N#/�]�q[*]���c���{�s+(O�A�?���!A�~�M���p�nnԕ\#E^�ӥ�+0�O�H�Q;�Z-U�����k�*��FH��M��Ծ1��/���ҫ�6F���!��b�W��sm%Ҧ�2��L�
5d
�;y(��M`$R�c2��y�iVk��h��J��15�N.�^oR�*�>�%�"�#��&�,�j��$���'}_�
�~[R����1H�!Y���X{��|��> �>;�Uٙ�!m]��H]��J2�֪M�\����}gg��t^�y�ժ5]o��#(����}"J����1��ۛR��;�]�L�8��uk�D ہ�� "�k�d�}���0-l��TJ&4��$��͔miå2�%��D++�[�$+VT*g��[r�l�M�}�;e��cG6N��h�:�i�O�������0)յ�����*�L	��O�#VJ�H���`.B�R����lJ��I�b_�4'� %�PR�v�q�|������~ć��+��z�sG�8��H�������z툘�ֶ���w(t\������F��ςL�C=���x�<���3E�l33I/ig�x��Pn�
5UW�6�?����w���'���'1:�Sc�0F<)�R�$e������
�H��Fw�5k�^��J���sެ�%�C45��X[YB���Rk��{S����DL�L��o�.X_(�4�K|2Nߗ��7��_,�-f9$�d2�133��6$�y�2v�6wäp�$�ULϷQƋ ��2���rqx��\7�|�sM���VFi����[D��?��M���_HZ=)ݕ]8	,?*YL �¦�"z�}:�e�>��M�V���F�L��D!/����p���ǻ��ؤ��qZ���?����ѷrJ�����̚��E��`���d��i�a���e��\S��:^,���t�����Cu����]z��n�Eu��s�!�>�!E��n�)$�]�y�e���M㷯{�(��~��ˠЯO�q���bC��g��+z�~��3��~��K�
�İ�:���S~�����g>׉9Vv��c��Fё*=�dG��T؜��CRr�찧=؟�:��v4i�.Z�4d����~GL�P/�`��/�n9��~�5��`��a�[	㇢���k�`VƮ��X���^z�a�m���Wq��atVW��Oc��+�oW�}�E,-�����Ǒ׏a|���|��_���P��a�y�	�^1��&�:�cl�i'�۵�vt�:8t��WG�_\!̿��gN���u��v
��
N/ձ@B[��+�@��+3s���ç�c�[ϟ$�x�[_�����&�s2u�6&�#wH����'G���n����k�dE+8E$вծ��\�T ;z�0J�H�E��ݘ�n���	�'t���D�|I�]F'��4	Թ�.)2J�W��"�d�D��*�FK�v�8��a\  tہ+1:���t)�*�`90E�Ёh��o|'O�R����|���~�G�/���aǎx��qۭ�S��U�>��{�����"����+Sz���C4[M�||
��X	�'O��?B��G��U4�M�P ��)�v��	GC-pY�7�������]P�H;�]'Ƨ?�iR\Tq�uW�ܹ�ؿ����/�[�y�j�9{��s��R\z�;w�ą��{�y�fpk���W_yO<�$������?�N�t:��ʔ��۵E}ett,e�"d.l�m��h���A�i��2�(.t��6RZTKeU�Jf}�[�o`Ӗ�x�ޅ�ب2�ưjL���/֥�X[_�����C?�!��L@�Sꤶ�9��SV��)�2���O>����aӦ�(��€�
��մa��ʨ���:ɦNf�����STX�9kd��(�#ԛ4�VO�OD�I�=�����~��T­�ފGy���'�q�)�KԾ��/����|�ޯ�(�B9��J��c��I�������cXY]��W_��c@�Cm��ԼS.��i���OR���2��HM6ȼY,+̫��vr�6Ḯ����e�̥���ҷ*�vR�X�&�p'7��e�� )զ�7~���-;x 抈D�y��K���`U9����in=�W�*;wَZ��!ˮ쥱�2b�S�A�� BY�mQH��6MN����0���f�ud6���	=��	G��v���_��?bjj;�ÛH�g�wp�m?�ɱY��H�{�`P϶
�|l��a�NN���&���h��n��X]��4�w������.������()h6�MsHB��ā�J}2�|�-殙�'�
�M�Om���ÒQ umn}��[�젗4�?���n p�O����J��\��w�Ǔ�0$;�Z)�2,	�ze���˵��v]���
����q���+��iӇͿ�l�q��ad��=IDO��_�������d����iR�]�4������V������mV��8�w��ً�N���6�
�"&��>9 O[:BUv�Z!X� �ۡ�z�*��<�٢���Ǣ5�ǿB`�K��_�x!L����C�
_9����������E�h(^�6��w�;��y���m?+��w�Et��;L~�i�a���v�_��v�����3�9����(9���K�H��V)Vt�b����gV�a������o�-�>gsV�8���8sss�Oy����Y���	Vz�mB�ՠ	ٍ�+;��,C��_�DG�k7~(ߢ�����x1U'��	b��
T(I�v��v�������qpn�2��]��2�6f��:�}�}8w�q�:�$�MRB��G���g^Cm�.�Z[�Ko��ݻp��*du-�3g�hvW1R���$lEu�qϵ(��H�q~��p�FW�pf�<�x�q4�M�AʇW_9�%�ˤXiu���gP% ~tj��*v�9���6F�f��Cɵ��25�R�@��Q�;Pe�F"ϑ��&��y��M*�������^�@�����sN��$AUJ�ӌЌ��� %H�w���خ����}{t��7���H;lŠih�(o6�-��.�Fc
[�܇ql���������۱c�^LM�*S��bÆ�/��"�E`4����^S;�����<�*�*��+��O��O��
�?��?��7�D��<��x�g	�ޡ0VƲR�۶AJ��^;�C���W_�����k���=��o�N`�>|��q��+���}뭷���ӷ2p�Vç^x�y��ۿ��~�38}�4�����~�Yj��i��O�ս�'�x��s
������?��NܶuR�q�������XZZ����O�}��~���a���J	��SO���o}���'�k׮�'Ā�!8� eo�w�#�����M|i�V�!�V��q�k��F]���D��E�8nY���o�ccU'0~�����M�6�o/+�NazfV��~�ʞ��%;vL�ß���P�4_z����x�,�\s
�S.,,��oT}���…�����J))SZ�'�hp����ri&%K��m�U�e*�"��s�.�����+�`�֭j�As�׿�5Ҧ��f-Yɛ#�y�i�o�J
��|�˸�����I�C���n�K�F��{��Ny�8�A���޻���@�!��5���>�,n��|�ۏ(�&�*}衇��O|���J�L}��0���[E���j�)kJƮO�`�zH����⸆];vk@B!y��r�����)P�������LV�1�k[_���頍�{WP(`x//���\}�p��	^~����y��0>�gN>�c�<��>�'A���OQ=���`�ImvS���ı:��%�ws}�x���ϡ������j���l����>��l�OPzʫ�B��@�<����������V/h�%�ŕ�n�6�$Q�x툔��-0&��Mx��l��P�O�Ev���ʃ@��#�(1�w���oq�Ҙ,̩)��%�|*E�eW($�s:�$R?Y6YyY�2�Wz7[�u�R��JO����H�v�k�b�SG ��X�Sf�
��li��,3���(�Rd�?���R-G�N��#�2����B��m/���A�О�2=�)ô�L�}M^�WUszC���z���q�D�|�^�r!��)=.T|�›�+�w��7�{��b�|7l(R��R�����0��w�|���x��:���*(B�a`j��%~9�}?��q�=��*���э��(�P^E���Щ�Ae��\���a�Ұ��{1/qx���M��p�~�(ޒ�X�a��[�>��HKa�U~��><&&&$֏���<PT���ɹ�9a>�<`c�V�oEp�R�_�EV��pP��2�>�'�~���ܸE�\������E
X��p�쬏Ųd������&���`�l�Ưǎ���3ϣ��P���R#�v`�"�
$��q�ކw�ĭ�}�&��Ǖ�\���}v^��q�;�h�'hOP\Y���+8��A'���f�Ny��X%p��^|�9�r�Oc��{7F&F�H�0�M�����o���Wcv�^LOoŅ�p䥗p�@���}��	�:j��L:J�d0<�a���/�ï��y\G0w�u�u�!L؍��(�e�je�#54Ipl{�-�Tf�RY�>J(�l+Jɑ��rZ,�G_���ٟB��D@�[�L�g���j��=y�
<������g��k����q�]�6������i�w�ȑ#���;P��O*������b���٣��)���~��%�% ��1xʠ��W\�N{0���O�ykzzF)0XI�ۿ��#�z����������i�U�g��lg�M1�oQ0c�MV��)&e������G?����?���t:�=��B%dSFj#
���gϑ2�$�~�i���Ja� �;�}�2��o~S��a�ۉ�v~�����j��_~Y1����4.ʓ�K��Z�y&��0��e +���	>a�~~4_&��~8+w�n��6�Jiv�5ת��O�M��_Ӥ�d%���4��
�__��_����%����"_���)��Ǐ�SHܞ��� ��66�֤gq\
���^;�Hi}]�_3�
�qo�i��/��!�C��B
W�>�()�^P���+VF����u��q��������Ξ9�ڢ��>�xL&�d+�x���8���U��f�VJJV8������';X�f�J�I���E&���m���v�?�����/�!.k�.�K$h6F+X���X}x����[�c#����A��m�2ʙu��"�$GB���^��x����
≶`�����^~�P.Ǹ�]�x[�ȌA3�K����2T%�р�gRN46�X[Y�꒺f
>ѱ����sX�p��y$�:��`V����K��ը��\G�ZC��N|>�]_���yl������M�^�����~������O����^��$�4�0�h�zi�H�`��^��/=�a��~�ȭ�f�D.�@�׈`N�fc�-�p]5�GV�� �A��,�Z��)k��B�TѢN����eEm<�TA��	�?��,+Y��Rp�/lw.��n�)s��t4#�v�&һv|"�e�'�}�}������6�ٶW�ɔ�ӎ�^��I��q��Rg��|њ��,�w7���1���hE��"�+�_�!���xN;}EC���2WqY!ڊ@s������u�Q���}ď��'�{��y�����E���u-Rt�0Ӣv�u����f�g�x~�7��8+�WÄP���)��;�\�����0�ʅkڊOxX�VǞ�زe�4
a��MZ��N˥q^. �s��`�;/�{�?�O~���Oy0P�v���à�pؼ���wV�{Z�^4��˿�O��3V;f	#�
-B<��1�8��{�{?]�.Tj�ؽ�L 憲��i^:z�vlGD�؆�o���kN�Y�jS;����>��+�bq+��8s�4F�m8�y	X���܃��y}�0K{v]�je;wl��Z�Jl���{�b^��Wߌ�F���a�=����ر�$쬣�]����ނ�܊v}�JL��RI��qj�ߴ��F��mm��k-�ͯc>�G�ڧBJ��MӘ:4����*���ZSFx0B�{-!A��&ӝ�/OڨP�c"F�&y�#Q�H1��?I�;��P^�=W�Q�+P��L@��Νxez_�(��>�}7\s�	�&m۾
�'��_��_R���u�Rz���w�����j����^����J�Ƭ�`��W��A��5����jr3�}��kjW=�N�u�]
te�	��a.�gp��]��;�Y��ﭳLmú��3���I��~�Hi3�n�7�|���m[���VR�|���'թ��Ɔ��۲e+�}�9ubafzV��l���W���`��Y��m�s�.��kn�/���]q?d������0h���ivb0�����8����cddD�����~��h���H�������C��{����o�v��8)ھ�Qm�M7ݤֹ)������ҋ��ݤ�ΰ9�)'�GO?�4)����|"b׮ݔ�j۱��T��ځOw��;y���2G��Bs~��>O�~3�X�Cmc����ڶm�:U�kV�\Mc����[��Om~��H��U����zH�э7ݨ��4���A�#���9��x���z��\g>Y���������4�Y�>@X1�ll4T��=
�3B������$ҝi6�N���m��r�/�o��1�yd�r��w�O
�����/�G��^�p���Q�~9 �[��e�kʉuv:O05T�.O*��o�K��n�շ�"�=��G�Hm{��(ڝ)�Ɀ�
��G�~;�)CFnp&�D&}�Np�/hS��� R`��uth�f%�#������{��1��/��P�	�JNP�]u��������A��>I�.��p›7�-R�$]Iuj�⠍K9����>����D?קu��H)Ǝ�[�0-��[j|"�*�RG4����Jg?C���(H�ڡś�
�AJ��p��[j�Ȃ:�A��箸���ʍ�gj�Kz ��������*FB�Ya�˕�S�q�K��tk��g�&��)�i7���z��\A�g^0m�F��s�)��8�L�G����[�V�yZ
����
�7��Voy���T����Tn�~�-���w=L��M�} :����f���y&����~�Õ�m�zƺW�~��"�nz��_��'T� �/D�B��%DK���ڢ�;�i*��o��4������Sh����0�h�w��?>q^&V�a�Y��N�Y��� H��|ƒ��Ã�i+{�'<��˃� [�뻃��ߑ*<��o~�/ߵk��/$�H2a6�(�Bq����B/9D��C��J���of��YE�0��m�%;�m��VG�����-%-<p�ƳO?���sرo'���Ze~��]ؽ���x���c�w\�奣�:�=[F�yG�#�_��=��a�w`U�x�9zV%��<vmى�g�q���1�i����L��o�-w܂��y~��hw��݊cg�a=nc���sgPۺ�I@�U�:���\Ǚ�'q��)�;u3�6O��n�7_}��&n&fv���4�U�&������cO>�_�o~�]e�JS!���ۍ(#��r`&��P� ���B��9T٩+;�6�AQ�V#�'��|#QJ�H���6��a�ّ+���.~�G~��
.�Q'ld\����U�ۋ��*�I!�;��O��	\F�@��Ġ4�.���d��Y�1ǻ�snv0-��)PV;�e ����y�	�.}ң����U$�ҠZ��<���[J�7Aɼ�Ay�DJ�eE�Ę8�5��6�YY���F
�Q�����TS%�.��V���*��4K�\U������.�=j4S{m(�����܆�A��V\��As���3v!��@D�6Qγ�W�ub�5z�xT}?�#�G�:�|U��`�26�E�t'.��>f�[��S���P��$�>i������������ħ��\hS�#�
��E�!�Ɩe�I�h�>���=�Y9=�:��'�EE�+?g���i)�9em^�!Z�k�DA����8>��9Ϙ�X9�o�4��ԉ>Z�	ھ��&��oL�d���R�k��vRZm߶���p9|�g�7�paA+<0T�+�����~����zW�[�ͧ'U��^r�O<�̾y��pn�LM�5y'�y��ķT�'ڊ��n����}�=(�#Xůdyu��M�ր6��!�7РMk��:�e�	��Q�Ց1�U�oX_���h�t�jI+NZ��t�]u���4�F�����>��v���7(}��@�ʩ/�џ�lݹ�j����ƿ���^먒�#6'o�I}��7:]u��J���U��5G��8�0����|�	�g��CJ�I���O�!~Xd<}�����<���vME��dj�%�o��XfyJG�`ĝL��ԭgL�����Y�5�I�ԏ2}b
�Nz[f���*��p�˴��O��*�a����.eiCyy���Oԋ/�::Y�8V���w�p����幷*|�j��o��lQ�r�Vo@�+ۓ_�w�W9}1Ϡx�g�C�܁�n�>�.}�E���^�����XB�_����/��Pt�5��/�O�_���Tf(չ_�Au/�Cy�[T���]T�A���iQ^������*�.f��,��-^��ߋ�,ԟ��>��qT��˚uz�o�i�m�X���0':ҵ����:/睽���=�JkҊ���C���6'=x70��R~=X����"p$�뷋�r7��U�#�_Z�>4���g��4n���m����/�t�L'v�T3���6ٖo,pjy
ݑ)�;{%Rz����;�n��T�&�o��۳��o�W��8��s�\���oم�w�H��J{/<�,����{ޏ�o�r���:�q�$��2֖WqՁ+!b�k�w���ua�śR':Qo�:��g�i�A�7�e;wl%%M��3�p�$���֖N�{��d}+��D�]��Fu� &A�
��dp62@�9OmڊA�6�n�X`"���m#��!yNd��K@�U�ZyՉlٵ;��
���1��Q`��Nzh�D�]#��x>j+�XF�/�Z!��+�4!!Z�)R44Y�P)+�<B`e�M���4%]ua�}��-#����]�Z���������M:��`��5Pʠ)W�C��,�/s��<�3N�V.G�B�^����Ǫ]HG}ߊ,�K~��FV��z�%�=>6��Ɋ�%5��H�Z&V�T[�r�TQ�W�����0�ߵR�O�R�ǀE����"F�b�I'V.8�
�R�R����eY��1�V�ؤ�rj��	��b58ؼ������eF-���=~�'�q5����q[��	=m����޶�=T?����Sҟ���es�w�r{q>���_)� ���O<�/V�̦���de���K�P���mJF�ġ8Z��*�q�:���k۽k�dy����6�g�:�f��i���V���y���r����z�k�j�t�D�{0�bb�X�f���5e3L
��)a�l��E��!'�t|�DD?�=
�<��?�ORL�/���;܎�v߆�'��W��ѱ]����ba�N{��U�c��e��6�΀X�a�A�*3�lr�IJ��ytV�/l���Ą0�T��	l#ꬠ�������jYU�o��fb������aeI�K�b_�yL��j�d���{������]��:��4�^R����dE����u�v꘢嶲~�ڏ�l��&bŠi,^f,��vAt���H�@��V�gt��t
��d�H�~r��p2�f�Ys��k�B�L�N5�tl���4�K�����F���
��-G����ܲ�R�<������."�r���q*9���ee;��x&KBF�������S�s�ŎhYp���u������WG�+�﷔�Y����{3;�}`<���`lM���ߡ�5��֢r��	�СP��ƃx�AmXt/�P��(/Fq����h)zO~�~uȫ›Iㆋ�o���~e�_���7��7[�*I�q�F���گY�:�a��<��V��
Vv��Vz�ǘ�J�[�V�ܞ�><8��ͩx|ƒ˱��0����|�=	�LF�P4y_L>~gr��\��~~~�A�3q���,Ns�|<�û�ˬ�X��x��KX��1�y/W�㑧��kG��΁7���_��ΐ�P��Wnǡ�;���26mށ[�a��:^8�^x�[�ا~QmgNE����u���K�<3�dew^{�oA��9��1<���$DN��7bzr'�\��G�c�	�>]��3�6����WF9<��μ��m�[7cϖ�ظ���j��Xc3�J�fʯ�L�#���J��%lB9��
YA���	�|B�-���a?vn�s�z�����W�`kTE��–�I��:������SB�aJ��>����U�`��I`%��	�$�
�l�����"�꾑�0�¨V*9��:tvwj-z��Ҽm_��8�]_.������Sv�=���[�g����$�����,H�f�@��k3KR�o�h:i��c��2?4����)�'���	!�š�P���Q�l� �ے�<vZ.�rF���C���ϴ����_�=fΑ���i9hKO蔎Ğo��t�یY������¹g�=�R�dT0�et\�Jx�u�‘�E��͗0}8#Sd���.}�]���Ȅ�-E���[��[����p9\��Ee+ޘ~JZ��������n�EWڏ���*Dm�����U�kT��n��F���7QT�b��l��n<a��U�)��]E����z�w'�DM�|"bہ�@�B��o�K�:ؾ�=��t=��?���,F&����[��B��TT���T�����Q�H�ѡ�4R`4�_G�p�ڡ�N��2ū��".U���.5�loP[\@kc��w���Q�ӛ������>Qؠvk��j�b�G�\@3�
0�WR;3�*�
ƣ6D�K:4;	V|�1A�hV�'V�'�A��ڪ�5I�9w�:�3C�G��jc��AĿųX�X�Gk�@�"�
R�B����D�?���=d8�)�F�$m���0Z
��o�h^2���Y�B�b�e�̩�0~N/BfY27��@Z��\����3I���TD��a�ʴE�=�������8P�ms{�g
�DO�A!�ǵ���]0҅cDo9>�kۧ�92|����
D��oQp�i'��i��v
y��`NF���e�l��OȝBJǡ������
#�:����y¬7ze�H-7*��}�R�2���V��WN���;�D�e���3�ç���~[����ǭSvQ�.T֠8E��ɏ;����ٯ~?,�Ei��P�~�(�o|�!����n�P�C؛�Bc�/ӹ/K�L��)��������s-�';`VRt�o��n���J{������wl֊53|�';Ξ=+I�~�=���a&�P�~�$�gQ�!f��u���tE�B��?\v�8}�iJJ8�;���\MΌ�GI�0A��x�	l/���bi�<Jէ�0��Lb�V>>����r��
��8�쾽�͇^�����g��O��m�n=�2�u�m8�fƦ�{rF���2Ѱ�N=����`|�J�?���W0�s���&&��8��M{$F�2�}�!��8��t�.b���Uo
el�MaD��9������'_�շ !��D�ɥ@5#�(>T�uSmT"�p�-A2#��"O)(�7;A���
@آ�K:x��'�ƎM����{�f�I� a�ɧ&j#HVI�!��SkՉf��w��3�A�)$jh5$H��
������R?���T���g��[���}&aE�)Ac��|��>(SV�
m���Q��/�	U&IAN�{������ښ�aTT�w����l�Ʉ!�\��4�DoUT����ZXfSM%s��kv��eIjs��'��$`��.9]�e�,
�ݤ UN�IF?�Ie�Ȟ^�
��+�蹂�n�M�"�4n9F��y��1�'eZ�i_i�a@(3����s�K�ݦ"�m�~p�o��:P��v�v��~�6o�;"4
��m���(�R���r���B�^G}e�&�6�k�{������o�h7!��i��U���5���1:�c��Ӂ�WR�M�g�r�F�e�f�(�Hgc�����Tgr+Jl��\&~k�(5�q ������#�=�^{�w���ົ�1Ξ�6���5��0���.�ὐ����5��ܗ0=u����1>��0g!D���[��(�G��/�z��f���Rj��V��QRUFiͥ���:l�s��f���OK*3�B���E
��:�[Q@�lR��\�$����B��&��r[)�.���v�D}��s,7�	����tͼt�v��q9�8����RP�����V#(G|ʒ=}d��t�`��*>|"��r[��-�O���QnUtʱ��r�,RE�p6r�B��p��!��Ґ�)����r���ϰ���֠��m��s�N�3*��s�"͆�ԩ<�>+������%b�\�^^λFƇ�y���C���C�w�q�_d޿��'7 a������ԽP��t Z�)��%�� r
��J
�Oz�7�p'j���dօ�F�;Ds�rT� &U`�ir��޹�h=��_̉� ��>�~�Brh�/�"�,TF(�{/���!z�ڧH�Џ��Ow��"�@?0ۏ_��2�z�|a����g����0������i�W?,�p]�{w�ߏ�����+98�r�3���Z�|��Ƥ��#ف9���l�ʜ��rc�*5ee���ﹹ9E')>��r>��G�eR�����"%EQ(�tC�M(Nh�;��W��Ӈ&�P�A���alٜ	�+�s��:jU�=�g��_�UW�a��)4�[��/�ʫo���s�w0�c��:�&�pՍ�0>Uö�)t+Utg7�޺����@;���[����	\�u7�:�Yd��h/n`fj㣳D�bRLT���9������ĖMx�0��e���W+Oa���z�
l�/cB԰�V�Z����1�n���͛pp�^R���X��
)f�be@�R�Bfe�(i�M���,2P���hp��'�˓|l�i��JQ��v�s�x�G1w�!\��‘G�Dg��JD#�sD���tS��c%f7��a%�;"-�(	�]޽Hh�$Ѐ��9��O�b��]V̈��0����رc�b�N�8���RO:m��T�X���-��}"}چM�����8t��P��sij�'{�fIv����x>��4��}w�E[thx�#R�<�8"eF�7��I�~���og��hV�HQ%�'D�^@
Ӷ�Tw���6��g>�^D�9��q_�{Y� 	0�Yυ�q��s��c
\���|�ǐCxD[��V��M�V���z���5��Vl{)I���_(`
�sS$���0��6��Ul��R��x&
I�A�fS<1c2�đ��9g����������Y�ᅦ6����R�}���Q����${�ؚE�R�6L8rm���
���c	�&�Ч~�����9�g��L�ϽwM��Lr�-J�uG{�Q��s�%�f�%��"D��>�0��s
`������پ{6�4ͥKX;�2�94�IG	�o�M���f�6>��͉ʅ��7n^G0wYṮ�
D�x\�d`�����yx�N�����b�#gW��ˈ�8�S6�TNّm(�� C��8M �*gm1[7p���>A��l�}8��ob}�
�`�1�����c�Ex:�7�G}k+��ա�q�$nx����؉��h�0�5�k�-]FT]C�,�=�I������S�f�ȕ�/�눜5����49�d�込Vs��B.#)MY��i
j6T�DNy�購�dQG�*�;��ȑ��ے�e_���F�C��o�Gju�>�8�mcf��b��җ�VE�GS��nwkj�qa��M���U��R�Y��k�Ār�d������4���(w�.m��a8�@�ֻ��@�fӲ���r���߃JT-���%
�����nu��v���/"�:��T��IEH�=�o��.z4��*�ͷ`�6���*��[�d݀�M����-N�}��èˁ�hۖ�E���$b�����0�7��9mD��u�k}�z�n �Nn��3�D��b}�u|�c�x��l�lƭ����Tu=o����w�"fz��~�����<��C��[���L�c�������n���^Ǥ����ݎ��jN�Ym���~g�o5���u#5bL�d��v�n�a�M�@��R˃�U�����O|�#�o���6��k�r��0�<���~:&=����P6���}��t]�a�ZŅ�y�b�&�߫[�����[�PM�ӫ�"8�>�ړ~��"v+�D�K��RG@�ܒ�P'����1;2U����v�MLmߏ������L�gPY�������N�.��F����E���7�̄h�Ѭ��‹��on?��q|�_�_>�b!�h&»v̊gZV� �A��“E����0%+L��ƵJ/���uM7.-����R	#�è.���R�ض�&
ȡ�52s;'Ѩ-�1�FT#�n`k�����C@�<se}5�J�f#�=i�N�c���#6T�3���@�@��٣�_=���E��n���k(���~d��s��`ޣH�Ⱕ��yU�F���_"£٢��RkH�?��&G����8z�_����`�� �ӧ�'}������������޸7�':�Uz~.\���
=�vy�SS��|j�<��5��fą~��z���7���t�d\u_�ѣ-rG4>UƏe\�ZA�V��W�� Ν;G�T�K�NbssD���.���tI��5d7��|�Z+�f�po���/i��J��ϽN�wp�s�X�)����Q���B�M���D�pV�єz%BpA�%fvv�B�xN��Ճȉ:
��>U|���:=�9QǺg�wƅ������0��|4!�M����ݻ����.I�+�<�}Ն6�&�٨Kڞ�$��E��=H
��/�!K:G��Z�Q#2$��@�W�W�׈� ]�@H}�2j���}��fT�ȑeI�TodP^���
}(p���D}�#���Ұ$y[�F0�p������L�܏��s8y��Pk50:�;w>Fm��x�%���������BǗH`m`�/^��_��#N�ֿ�f���x뗩?W%U$G�Tju�����
�\�#_�0�Q�r��	��^Oٹ��ߠ6H�:N�D�ߢ����
�r�Z[��>H�$el �"��p�os�Sx�{$��Yo�:� ��5"�jD�t��|B��)�<:�l��τ	�4n39����b�W��,բ�D�T�B�q~��8����^3�뜂ݻ5p##ɬ�IĦ�ٵ�˦��&D>uH������[�"o��c����'��RI߈���G��E%z���$w��M��fy%u)b��:�E���m���U��C�C��f�~
���u]u��R��S�Lw٭Op���r����Ŧ����9�-μ.s;�:w;o7��~��4��
������o�s�O���M�+��v�q��ݎw?�I��;�������[���w;6}n�����Vmq�s��V[�m��ŧ��wb�Ӽn�瞞O�3��뷊s��u;�Mj�:�@�1���ᑎ�0��W��8��Fw�B���Mk�~���m!s��d��!Q��\��{���E�v���J���͛���ӂ.�����PI�#-�ҿ��K淋y�(��䛌$l���מ��k��r��7��52�j�l#dD4Q]YGXUd4�ѹ�n.���7P'r��p����P?�&�0�}/��ʳ���$`o�}m2<��W0�w�n߅s������0XB>�c|�4��#Ԩk�@9s�,��l(�F����$��q#:���U"M �6J�(d�8��W(���E��� �1�aY!9~�+�*�a=��	�g/�(�ic$�&{'�~J��;� �f�v���t[+�kh?��=���Nb��%����J!/��TY\Z�YوMz_v�p���-g�<Ɂx�hv�I�1fuf淣TE�54:�:l��8M�G���
���Pz�X��͎o�~��٢�����B������-��f�CC��˘���U"�GG���(��8!�.�ΝFI�K+��=�f�g
kz��E���<J3����z���ߥ��\�p��L=�Ͷ�X�H�
,����G+�آcr9N�`C(c�3QR�B�a%��y����4m��۾����)��~L+m�Y�����;�c�q*1�"�Yc���d���._��;wJM���5�h����}�X�-'�|G{�b�1y`���Hs.�1�O���)ԑ;�ɓ-+���A���W��)�ݒL���w�w�w��-25�����+IZ)zm�}l�5�<@����P���Q�b`�%�.�,���@��B�`��ˬ��[M:6'�˲����yH�˒��=�+�믵ʫ�m����bpb;����砊Dz0�l�^l���DB
L�(�m\x�H͈�m�bj�!���!���O���`d�a����|q;�����$�����z��'��ex�S|����
q]�D��]�__C�~k��D��
!����5jg�E�^)��kA���)
�HG6�PH�F��u!�"������@dT��c�oj
ڇ��8�my)���No7o�ę�'�&�P���J��M˸��X-7��JcA��Zچ,�,�A�TD25ʤ�L��0���'���N����L���ks7�7Jte�Y�W�����V�iG��u��'�G�{�O�:o���UUw�D�2zPduϔ�j�:U�I��s!���5c="�n��&�(�v:)��s�Q%WݤJF�y��l�����A��oXm��Ծ�p�z��H=�ru��o��o]Ω�}R�:�}��"^�C�,�ĵ�����
��ӟ�8T/L�W{ݭ�O^�Z���
+s���}�����[�7:}|zK�ݮ�m��:��c6?��9m�s����V]��|ہ���3ުo�N�|7m��n)ں�k7<�=W���dH���:/o�RZ�f��۟�=�-jn��sz��p�Mc����O>��
�K�Gw0��r��g�c׮]��^�8��!=�z�AGy�۸��Yn�|��V�v����-[)��z	�n �V�<ݶt�݁,��	��`?הh��5�W@��&@��ݏ>�?��G�cx���X�p��K�ЇE������O����G142H�݅��IDo�=����!�T���>��z~�9��q��+(�6�p�p�*j+W1_>����LE�ޏm��Q��ǾLFo�|)�b��Av
��Gq�=�+�K�d�0��k�*�Ȏ(�Ǒ+�_��h
�8 �5ò�u��E+�w:^Bjk���d3���nzRCJN�<t!x1�9EGkP?0Y�0��֋o`��}Ȇ9\9{A������g�Q�,S�<�Θ��0o�ԀW�#lp�tړv��6є����l|�,�J%W��F�����1����ap��t���M{⥮+gM-��20k��Q0V���4������-d��8�6��̴��|�������s�i�V��=G�P�ܯYB�XhK�n�:
bOM�w)�*}l��#J992�U�SD��$��]�vʥ��DZfu�m+�&�6I�t�� I�ᴡH�G��׋a��1�"��@�ڔo�Tu|9�x��o�)��qn&��җq��mH}�R-�бNX5>g$��k�N꟒DVq$���͢|�ϹI@�cb���A��!���H�f#��YD"y�ar��(�ƺ�#5��\3�<�r�t3���ny�=�������_nc	�T,G�AK��9�f���C5j�Z��Ү��#�V=��Q��j7��(#����:Y�,�:��x��l𯔎xS��q\l�XHkE��3��0�b�UGncՐ���46M4�鐾���6��ν��������8K�/_|����t1��w=����$��q��Nz�	L��Ž�@���"���z)���0��D�2�f�F�LTE�����0+���+�V�jU@��#"gh�t�1�f�yI7��t��-�j�~0Y�T^__֥@��.��:�iy���CIAV�t$����-�#��v�-z�r-���*=��|�L��s�(��˘`o"��fG�#ȟ$)� Ȗ��2RdX�8:H]dp�'��u���j*Y�>*��ލ�i��^A��p�Pf����b��DA�n?{ɥ�{u���r�hs��^����ܖ��	���
s}����Vq_Z�+J�1Q
;~Pn��$#�2G���.ڧ��g����ξ�ͯ+��ꃪ��=�>T�5�SL`){U���^��X�\W��o��t9&���<[n�.
P�v�%��٣]����ᎅ۹+�������2akʴ�1E�8��C���<$�I��[���N�fN%ĮC2��B"{����ߋ�h�4U"��}D�S�؏�nr�E�����~�}���R^�o���Ɔ#���qBXA���{�]���Nж~l��{R�M�D�r��)	j����]'6�Lc`�܇됝��������F�z�SV�C&�ǃׁ/�Ԅ�P��|,�U�C6r�8}���x��H�\d�=>��آ��$o"g}�3F���n)�T6c��׸}�j+����^8Nzlu�nm��g����SYu9����tV��INce#<��x��uo��&��;&:\����z�z]�8R�kz0xȅ��7����޳��-�^�z���iР�Aw�O3��XUw����^����Ξ��z��aD?�1
�
�B�W�(o��q�3{�"�>|h�Q\>y��*^�̧qm���W0��s�'�?��������n�c�H�N����k���12AFf02���Q����b��e��5��MF��%�L�����Jm��._=#F؎�Y�?�|"P/�!�h�c��I��r�$��S'���#��~2��Cv`
3�d��"W㑕.���C?�C�6��E� "]SC�Ȼ�b䥃�u,.م�����2���{�QƩg_ԑ�@
��a�B];�,MB�d�Z�žd�H����l�\U �J������:�J�:/��c�Fe0�ͩ�|V��"��NI�@~�є�m�s>�FpJ���<���l�(*��s���o�ޡ��E�n��Y�5��6T�.�j�r��|co}K�0�a��gN����||�@�c~

rg
1`	���K^lZL����]�{�Q�'��eI����xl�)&''�E�9_��M
���B�I�H$)�|O���A�6::ߖ��6o�'��ߊ�v�����p�JG"t;��"��C�,i\�o����qQ_E�W��S&=r�����u�'��7�H�}�M%�3�����ެ���DE�:Ɠ�1ϭr���TU�������M ZZ͖�l���DTМn�VEP>n�W��-��L��Dxpm7"$����6*��OY�幞I��kWD\��<,�I&I�h(u�
�C>���?q�&���UT����I���v����39X��M��2�����o�����{|�
o�>�����y��YӇG����WB�q�t��YJ�z��`�ve
ե��� �Wlg'����s�$�)8��ˋ�
�R�t�+1Z����d]@�U����
,�#���(A"�r��ZU�,a��:��O:J��#R&��]�� C}��
��;y����0k�8��5�u�j��%�J*�}��+X��`�D�3�ؑ�#=�}(�
�#
��MLh�-՞4�g����HY@D%�&��Zo�
di18���UO�$��	:mn$��=N!�f="�$���_9�P�=�(GgR�c?�9�E�7�t{r_[�����#b��e�^�(1��{?I�*�����c��b0���\"0��}h�v3��Hw���x�)��}m;���̷MC�T�]*�%#��.��j��b��i���QFO��\�r#�*eo���a7`�/�=6:�lk�;/�7�9�:�����K;r6x���N�5alk�Й{��kZ���i��\64��,
�h07J6v��Fl��7�pdjg����cs�>�kWB�s�3���E/�%�`/�ST�f����J�8�dK�r!B�L�o��>,���u�!�]}%�2�u�[��j.��v�_�AJ��߯%�t��Vj,��k��uh�?�֤��q�X����T%S	G���MtK���<sӗ2��
��1D�y&��?��8E��f}�:��������01>�4�`��ӷ-�z%n!7B��1��j��v
w����`҃7�l�y����:��9�X9����I�sI~�����`�"�#.VΟw���ϜҊ?s�r&;����R��p�P���v���}{�0�A�D	���u���@��g2���(��Xo�P��2Y]�0�ׇ}Ŷ�~��¾��b��߹�0�u�����#�F�	���3��6$�fYZ|�sd����q�ȐLcw߽;w��}��d�F�{x;�5��(�%�!!Q"c��$R��ML�MHt��<���d��4�@~�����G�P#�vll";��(�$J��)�	P��V�X�ʡ���g>�d@6ظ6�mZ�uH�N;®xf��xQ��
"
Ȱ������#���=�ƍ�Ob�Ʋ���<�(�I��%C��.fH���k��BT1�2�9Dl�"7�vtXV4$ꀍ<e�
2r>+@����zA6I�dM�+W��G�M�dH��y���b|N�G_����'7��yq�Z)^�g��A��$����1����b���U�phM����3Όw�
E��>��f�I�!;B'���E����fsI�P�7��W��8řQ Y	�U��� Ɂ:��|֐�.+��v(�Y��'K������ӆ��d�$-E��bn����|r�(��������^�c�\���az�G�~�x)_B��s3 �}���@��Ad朎��:S$BסI~8�q�c��O��^�����:
'8�Y�Q��V�n�Mw���s��X��Ƴ͂
V���w��AB�#�-�4�A�h'��Os1@Ŗ��х���B��yD�ir�e�p����2r��<�>�؀S�D9��B<CY&#Yk�ޏ<3��<���k�|7�b�O�I��OZS�;�Yل�朞YK�=z�ޭ�Ų�����-�d�D��7C3�o�w�?ӭM2�֬��s�kP���"�I�|kI�
Ҍ����.�%���ּv��B#ǤH~ތ3җ��`�"���:�є�P�E��ܠc�4겞�����h
.�Q[A88�ht�t��I/I�tIY�e�2��(�0�w}���~��>��g>M�"b`\R�~<6���1:r��8��k�uҙ螚�6��ں
>
hT�Z����uz�&N,�FUq�'��&P��Mp���6�%9�)���k�[<g鏝S|&���눤K���i]>�gْ�6k��V�**k��e�(�x��6s>�.��N�X>p}v`]M�E�Í�=et%�jX\Z������eD��3����YN�XbC�MG�=o��49���@��Q�ulV\���4Y\J9��kөN�H��7Au\�^;��h�n�rm �z��|�Ӵ�hv=��)Rݯ��_c�����yO��UO��M�U�.�Zrm�w񷷥G:�%J�es��t2R����M��
�m�=����sO:m3���\1�v���o�l�ۛg/�ҵy$���|���3̸��)�1�v�2(J=[e5��Y�z^��ft76к~J�rQ�����k�z�
��[hj* ��`�9g��C!1`�B����5��k�by-&��vR�Z���p�$�2��e�	;S��F=hR���z�:���6�p�g`�"v�����V��Z@uX�\;��&����Vv�֯�uJ>��b(���NH�Ks���a��.�j�*)Ę���QƎ�v�|gǥ�:�J�fl;�R�D�����{j���Nx����%�x1>�٦9�<Rq�(���j́��8��Eޣi��^=C�A7W2����mgG"h��<�ɉ�x}�UGQwr����\�ّ�F�$��[&$�W�Q�#NaśK~ب�,����� ^�P����a#=8}��I��$!�������0���oo�zM���4���>��>��U{�5>n��i 3}lW��/����F����G�� N�:��J��
�K���ͣ8����D@ ��0�87r��b��H�~5H�SG�C�f��51>9����r/���{�v��ؾ�MnǕ��@�7����e�b
D��F����'^��X£�<
L
��î�19�����_����
<����"�I�(N��x��V/�0�#�T C�Q)k��A�x�+݇�J�'��)ym�$3��x������x���9r�;ʸr�$��d�����9	�\�����:��k-�&���_�!�y`B÷��2`�)��Ӟ_8�>@/š�7a���`�Цb�`{�\!�T���b`A�L��(K����d����{��![�+%�,���B+):Z���HDt����g�.�M=��*Q<�(|�wFh��HpHN�$u0L�q�H����s��E����^�1��[Z�EX���Ș��)'�@Y![}C�}��GC�m��=�8�{,����^r��8�:��x���:�=����3�Q�a�t!Z���4��
\���v;L�zne|
�*6�}�e�u��K� ~~0���l��kY�
�™�C�ɑ�
�ݫ�O"�޸�A($r�@ 怨�qugm��~�*F�Jؿ�njn[]���v�F�	�	SB1�������gDV�w׮����.�2zMj���l�D��B�3�<
�58R��cm����I!2Ξ~�v�E���<��x�\�%�����h=���s�d�H��א+
I������]d��Ղ�#d l���s'�{�!}����1��z9M�C-4Ů��ٗ9���P�d�H�P��P<Xoܸ����,3��Ko����4�>��%)y�L�w�?�����c"2���*��LH�y��`X@_����(���q:�F�	�Z��K
6���LȒ�~��ԝŜ�lw6�:� �����*T+
I�ų�Ro�ѐ�V��0��G�B��)�����B�Հ�Q�X�4H�K������~���*��<��=���A,,����KX\8�uE:G�t�o�ܥ��%Q
Y�3�l莠��()��^D�HR����rߺ���	I�E��BG�H�S!�0�G6�![(I�m��b��u9E�-��D�(NmE�D�7��&��Y��Tؠ	��u�h�R� �yq~�H���i�ކj��Dr�W�k���R.���JRirIs�@$����ǧ��}����|��_޸��R���1�zu�"�u��� ��8`VGC̋]C������
f��H�ͤ4I<�f�	,t�l���~��s$$�9�R���]�ĽC�'��݅�J"`I��Wr�D�sw{�ā��n�O�c��ͳLٜ�U�q}@�m�8�D�Z�-���>0�0
���<8YƜ�v~�v�L�z�=��s����b|���wb�U��ζ�}�4��L5�<m�����ѵ"=XbI�1ۜ*9��fʡ���\]<iM�'�q�+7`%�w-Z�2�enF;�I3|MJC�q�Y3��*�c�|lkۘqOY2D;�`
aع1�m:T�@�F�[�i�Y7�����G�_$Ғ&���g�SL�x�,T�0�ckN^=3Yd��r��v��
=���$ndϣ�7��-}i�g��l�T_ۀ��1L�����rm�\���0ƍ$�<H����X=�<G�(�a�~�by�5����7#��y�>��U��]�5���Zn�~{��&X�~^��"���0�%:��������I����$<g��aUk����٨wL�k��Й�J�r-g7 �'8�"=���ʻ�R]��L�'c��w�x�	�-���v���)�X9���md���/ϓ?s�r.`nI���r���S��X��c��-Z�0�A�"^����[!z��m`��I_7=(z��ز4�t�����ޯ�5���*f""Sd�'��ɲW������=�l��	��k�$c*W�܁��|�&f	u˓	��pC�y�dT5��1
/�~M���TF)��s�o�ȡ���#�ƹ�}U�O`���V���+!.]ZF����TE���4152/��0NZ���=�݋�s!��l`�(

c�R#Pd�#�zTC�]C=����M�z�|�"���]�N�=�T/^"ޭ�e�'�U�!A�%0uD�q>�j��ϡ�^���g�OK�8���u4�/`0���
����m����(�l�f5�h� f��������|��5bƯ������u9�B>/�f��"��B0B��L�9��CCCX]]�WN���}A�8p��z���Ǐc�^p��ݻw�Z��ܹs�_����G��n&��;����3�D���s�='@Ʈ��p��y�}��8{�����L*�w���'Np�@�Q_�9|���6��K_����X����/G���*J�~�ݻ'O��mǎ8A��ֻ�φ�v�ؚ-JƬ��5f�ˤ�}�^4���g�*�^��o|�$Gރ��%�zcq{��Ɖ׏c����>�c/�$��#�8{�>,5@�v��O�n��ۖ��,��&�{m�F���\	Vk������^&����ɋ/</�}���2��q�<�7~�5�;+4^���5{��ԇ{pU�㒹�䚽�U���J��%k������k �Əʎ{n�ɂ+FU5�D����<c��UNU�ߩ[�@��,-\���0.^��щT��Qiسk?��GĀ;�s���X�v	���ȩu�o��>r�~�
V�؁�I�/�-"�g��i���;�$�p}�l��.Z����7���Q�Ο�$���yv]•�N�00�vy��v���VQ&�;31��׮��a����(�ֈ�_��u��P�ߎ��Ǿ�>�]�c�
�z���(�>9�3��#O���0�����18W7���i����^����(ҽݵ� Ο9�ٹ��g�c��h����?8�7/����
ɻ#��y"V7n`zl��T�\ZF��,nΟ�5��mT�߸���4T���g���p;
5,Vvl߅q껌����|/l<e3$�9mP$5H/����p�m&�J����ssi
��+�u����vUjhO=v�(��b�|�\#�.#qm�2d`ҵ�=1D��L���z��GiK��H&
��D�rE��������hJ��;`hv�&r��o�?�7��̟�H�R~��� �#��/a��Oq��#��ö	�׃�����'�����u"�B2p�)֑����XX��SK)�%Z���>�
&ǩ����i`�w=C�s��;�`��G[�>�W=Gzh>JJ�X�,G�r}vΉ8͢��͊sG�N��!mns��k|M [O\
��B}p�9��'9:�c?GH�ȲcO^��um�C��;!l�DH�elֻ4Σ:���ʴ��w���56}�z���ȑԦ��D�6]�h��Lo�t[�}#lj~�@��ں���<F�ӭu��쨃q�t���3��ن[]&9 n����Hl�w��Z����z�_�TT�iL�f�xv�3]� 8�̜ޏ�d�2O�a��=�i�x=7t�\���l߶���~���+!�d\���VC7��#Q�~�=^�/k�y��[�:ӄf2�D�����8a�i�i\�L��c����4@PƱP;Cz����%����1 �{���ޙ���=�'rI�5�6G����7��%K�q��l[�������SV;EZK�:�������đ��ľ�!L�
#;�B�;�B��S�聑'���|*?M�ߋea�0��J��^d�a���et/���c�38b�m��^�6��5y�&�3�h�zM��BC��\�fs��0�1<2,�y�e������*\��^#$��Xg���Wg�gbv�T���=����VxK�~S�������j+�����p|���?*"@:2�\�\v�i��!�0�ț��A$G�S�C��q�r&8l����?">��r��߸qC^��^�n���֍��[zB�.�J�I���/�mE��-��^[��^��C�)AF\������E�u���9�0{�U��5�X]^����Dp0R̢\Y��7_��^Ga0�B����i4���1>�}��͕E|�[���й�r/���G�ԾC��8j~_|��XY��P��̢8��:ZX!Pebj��$ d�4�'Ɛ��I�C��'!��|	{�!��!5/�5N��Ind&����؛�DdV^q:�,�X*]�����3:��
����t��B$�w-��IFq�~l������ZAc�"��J��#Iaha��^�p����0�Pg��({@p�GI��_
o?%��+�/��@:���I�T�V�k�ׯ_PuqqQ��DJ�;��/?��?)��+_���Y��u;vL@z&|xa��׿N�^|��aῲ��#G�.����YÕ7VX.?��âq�}���0?�N��:�G|LX�ob�S��A���FGG0;�]TV��"r��>�%S8]ы/��>"�XN�_?�q<_~�e!>����}/����a��]��F�D���y�Ll�2&�°�J����8sSx���+�y���s�>�CDb�E$d���b��/��=8}�����G}���
>�BG�8p@��Q_�w�:7���"�V܂oV1�m�İv	�^�3o�}��
<����я~T��&��L�8x���"s�\�J�%����D�qtG?�Y�wxxH{�*�1�i�����'����au\��A���J�e�A�U��v�hɔ��gp��k�B/o�KZ�w�{�ƒ��7.�!Y9Ld�0*x��\^�����b��VHv���|	M"��bf�����q����r��v�Z� �`��MT9�~u�HnW.��]��a���c'O��Nd���7�2�MnG�h	.�c��Q0�y�!CCc�Ek��)���ى���8094J�¤�l����	&�F���)dk7pv�&�u��x��DҖpciEt�����)�C"��z;��ڵ%N������B�ȉ��"]�&2c�rl�����m%��X��g�O����3���^*
��#��7^D���&�(u"m�����8��g03�U������|c`��N��`MI_ũ�8m��N��#�3˞���a�bZdh��A�1V�U"#�(/�(`y�a�6G:Y}~�\IR<�ڐc`��b�T%�5򳒒m}c�2�t�L^�
����
}���֖�P���p���
E"2�
ܸ�
�-����'�E�3�v�uZ���G(�<~�H���ˍb��LjuH����.a�F��N�YȐ>�i��hE��-�M�K�7#;3I�k��-P�K���o��Sr�64x��o�Ʒ$�X�V���v�)(�J�z)u4�?�Y���
�UT�┓�bF�fr&��)�Z��eңXP:��?��5dJ���Y�Mꓪ����Ȏ�"rK�]9�!f��uZ�ؓ��b/���Y�h�ݳ5ƾ�T"�k�C9�i�Z��r����5!m̉��R����{��i��x�S��c] rv6z�}����>���&��]��3��Lj����#O"ޕ�MB�<��$��CXm���Ԍ�`�q����3����6Y7�2:�Q�*�b{�s�
F���V�쀳}�c��)Gt0@�6_���r{<s_:�����d�5Б�l{rD���KAr~�n�F�h[��r�3����B'͝2�Wa��a�\���f���G��K�a�C����
㞆���g����o�o�(�I�)[U9���:[���	�`�����Nu$I,
T�,F�}���&58�{;Ϙ���P���מ��Y�G	;Z{�k(q��1��a�0;?�L���ښ�M�'�8|�x��
K�
�Aj��¤YV��$1ή�NeSȆf��T��>����6sZ��2v���ǞS?��Ch	
�Ef�����}E�G��ۜO�g�Dz�u��	��,�_O��&tlJ@8v�rW���Բ��W��͏��Fz��&ífVb�w|��f�rq�Ў<#
x����.�/�g,dgG���@X'�,Z�y�I�R����F�F�٦Z�`�p�w���G��g��N�B�R�㇞��g{
���!������Łn�o�	��e˸;��q9�-Ln�ZIGy0��w&;8��FwLLL�Sf��I���-^n7&;��	����633�̫4�ڵk�3����@��!Iz��**��\o�
�@�nǧ'I����l�l��?�ˑ1Ğ �\
I���^��/m\C���Sn�Y|�~�<�Z��ԥ��qt�����:8����+��1u`;�'&�F��q�Nψ!W�8}�<>�G_Bvl߳c�<��K�3<�C� [���{��}�w�֩cX^]"}	�w���������,��!m$��Ɔ��n�\[�����,
DV�V�� �8�b�ܢ0��TEM�ۗ!�#��%5G��L�c���"�I�$�V+Q�{�ݞh��k(�{&H�^d�"_��k�9-����j�:L���}"j2}Q:%D�eMIhN�^���G@U�m,���<�|�M�$���sR_�xc�~�=�!�_�S���G}����W����"�e���>��|�{�|�����fSX)�юCF���6MG�p���]����G>"�������s���b�Q-�#��2-���7%
�z
���q}��-��<�ﳒ��…Kؽ{/���ؠ�8���<��9y�吉���e�{���s+��&�����v��I�=r���yܠ�u�#R��c��阐a�ȇ����� G|�t7���A+t�kS�i��]��c�M�%�T��a��W���\B<�@�D&�b��*H�x���/~?�3?#�<��zꩧ��k��~��c2�x�<���2���o\�+��О-A�������Ѝ�[����9�%��n�m�����+9H�y�`�Vȍ�څ�150��;w�7_���8ƈxx�Hʽ��Q�w���%��t�Hz"�cx`;x����K�����g�o|�hΌ�BZ��X������k�oG�A��s��1T+��sn'�D\L`��^G����J�Ԗ��9���zs����vwR���?D�QD<�
�&	������	w	{���S��jX*��?L�"Z���D�{���i)'���y/Gd�$�W�c���٩���:<Aku4�a���~�U��:��i}�ό�"}QA��=�f����14���M�t��9t�D��22�M"T_:q��0371ҮQ�.�4�w�?�
p� �g�8�!�\��%�E�U#+�H����=���bU24�̐D�)���Y�&����5Ig�%�P���6I���3>�:��t�Q��V�ꥮ�8z��a"K��jX#�k��5ۘ�Y���M�NK������Cd�ôN魯��H�DN^$Ba	��h��cy���_�yC�L�!�_�@�с9�{�I��8e�juuAz[��V�!�&�/�m�uD��~���i�MN�F�oꔐ{!l_R������Z�nE��}	�������ԧ�O�ꀰE =.v‘��˩:9
�O�Zy���0�o���8��E}�A��*��C��2h�>�E��jK������ۂW�����4_���к|����,��&��*�dH�XSH�y��G����l��BK�Lrp�c҈�k���sM���]�.�Qr
W?��I�H�[Cj�eas���1��5���c��x[�0�A�"�;��65��� ��Io&�$�i`2�T�J�·�Γ�I�M|��$���٬_��cr���|/9�M\2</�idJ��s��\��t��t�#����J���0AJ�y��
g��ˈӔ�C5��x�T���8�]`Ҽy�� jZ�����()79�PdF����׻R�.�kE����
�=H�&Î�Fөw2&"�#�=���^�.JrE�`v%�I��9E�]2+�	%�OK(L�kE�����\��f#9XAǖ�����:\����v�FV��F/��}u3����6��}UG{ٖ>��ż&	��@?���fy��v(�G�D<6tqp�G�'u�Z��;�k�!�h<�}N��L�LǹTHM�~!熎|�M}	]�!��jX!��;]%�d�p���Dgrz�ե�Bq:�Db���!?��m�~���b�K��Qv(D�82ߩ��:�T_�Ԁe1�#[%��S�4�"+t}.�
��g����U����d;��G��(&=:�
il<�.rƏ�����9;֝x��xϳi�<����Wv�Ufܱ��zZ �zu�G!_B���W�y�;{��湚1�:+B�dd��!�f�t�av`i�6��t��=��
�v�u��휛��[&�`�-7���R�<�Im1�駥p����6�%98��ʦ�2��Zإ#;�;���|dS[�?�K��m58����C�6����$�ڧ�1�@P�lL)�������,"�by����s����_��'�Ј����9�/�#�Ϯ`b�2�
�m�p1:<�ɱ�D���!'*7[x��K�9���
�'�go�_ygK��{�,�?�+#Y�M�ai���܍��;p��gh.|���E�+ce��2s3sطk#}El,�@�s;HTgc2j�E���Ku�!�U�*�
ͬ--\-.���!�o�`����j"�9�@�=�2N^�J��&��҂96�8lS<�"),ɹɽ��S�$zC@HV�[Z�ls�efHDW	��L�,�+��Ӻ}U��Ҽ���9�i��V�<x�.]sN����G�p��C7n�}��'��X���gq��i<I��(�r�	�tx��z���*JŢ��9O�ප�wV�r��!�l��}pZ��;$ʎ��~����)!��]�&r����Xs�/��_�ֆ
ͱ'N��xa�c�����p��9|��]+���}S���\p�
�5<�q��^$F7����֛5�˻�=�b�s�i��7�J� �?r��E���������?�o~�k����ϣ{X��'�xB���#��$��R$B�{ۼxk�B�.�1�X�$#7��^}��Iz��
�u#
t_�juyΜ�	�uM8�cnN��	6�}���$��{����Hs�	D&�ؓE���e[k�����u�Y�Y��t�����}�=F���y��v�;y�x���?`���=�6L��̎B�?��6	,��ݧ=>im�P�����c��8$����E2�о��Lm��l�D#z����Ǟ҉���{��#k�����팖�&2�_w)��^/��!L�"L
����G��Q	��sO(�xz�ny�;#S�DƘ~�����J���]$����_�a�gx`�<�6��w����{�DƲ��C��qb��!t���!af&f��{�1(�S�MQi�k�&u�1����{@�7;���K�`2��}6���g��Ii��@B���J�b.��)Ȱ�g�������]R�; �4�H��'ҟSQѩQ�a�-�N������$!�����u��N������z�6��z����E���%��I�نc�:��_�rE���s�:Z�W�-����C����$�M�P���'r���ֽ h�g@Bjw������$#_�d#���
����������L$i��C2��99���O���&z�&X��K~��2�PT❭�]�|b£@�4Gr4�x�ߺ���ظ�K��A�{T*]ܵ�)b��T�J��i�
���g��	�+�Κn?n��|e-s�n��FH�{1	��w��Biɋ(��x���L]�E��g�^��Ɯ�i�sL�F�Ɲ�>����
r�[=�qR���v�&5+s[@>9��E1��)�������U���m���I��$*c0�1W���v5Țՠ�\#�@��ӣ9�Q0��ۈ+|�3b'�4y&���7X9���4�HZ!C4'J�
�j@�������-�
 #�<s�^�?V�L�d���3���C���A�[�����l����,�E��y�:���d�d�/{�Q�v��
B���^��H�q����4��K?��DIns�1ã��S�Z(�Ф�1�8�Q!�h-���l9�%
��M.����0�R1c��U��3 KZ�ڦ�V�:��Tj>''�5)��/�	��2�B!d�2�>f��B��(��O�����
�yB#{��\��a�N�M�zE׶3�P�|�?�D-���z�sI�v3
��uԑ%�c��\_�IJ1�u:��7�am �_�lT��ۜ�
�^'4%rldRr^z��dG$�O(/y�:�ľ�:���VД��j��!l}��v�w���6ݧ�z�N��w�o�4.ak����פ���z�<D%�5���`$�0%���+�u_?2��q�
v茣����Z&��F��
9�����m=��4�l��[�ݽ>w����nO�݁I&;��p���O|’ rV��pRYɫ���hC|p��x�{.Vn�Z���e�{=0�21:����	r�}�
�n�Y/&,}��s]����d���ι��[�)��l�r��$��_�{w�����Z��T?����P�����|ߠ�896"^�w}���}��Ά� %����~c�r��->׳�L�����G�cߎI�Wgp��"�'0�-���c��?�ޥy�|�����G?��9���^C��k+e�|�5���tm>��h�0�Ƞ�Zy24Iy�V�β>3���T���Y6�H��l ��=Y+�2Fs�M�?l豪�Go�k,�q.a~�o��"�E$�?+���][�()���EU������%�\#�ċ�s6#����9��2Ȏ2�1!–wiܾ2��p�爁�A0f�B75%�y|��0�^�)����}�W��_�H���(-��
��=�'R�m
��s�=�X:G?D:�O�yg-��nxDb�����q�$=���W
V暍�Yh}<��cr�|O6��m��X��1��:���8�������ϥJc/��K?r?�K}EIN_�\ٵ5	�yoݘ}����q��hCK{i		C���z��'���I()G{h�'��Y��p�5)d��Xyc%�ǟ�K<���g��s�{W�
��(�w����ފ\�uԖ�D�X�UA����0~����
��ݿ'��L�%�(��������C�?_<&y�y^Rp��g"�A���'�sg�Q�H֧���A�>r���T}����)��-c���/�\�a��0
}�H�/���'&�����
9}^����q��g�G_rz�$œ�)�}��7�/��ᗨ����}r�d-LZ�܏g��|� ��ŝ��J�Nj/�qNj�c.a��SI���m�"hG������K���J�2ކ��s��zU
���Z"D�ZsT.�W�|�v(��Y�c������n�:\6$*��O�I��
�8d|�)�)��y��8�P�5T*u���,C�G�~/�w08:M�����rkWQ�.b���rm��W��1=6I�$2z����+�/���j�ε=�P�' P��j��Κ����1L�4�RD��l�L���E&B��B�hؗ�	u.O�x^#x���-���_����B�8��w,� :+PN"<�ⲼboF6�s�D
��_���䍟}��2�SY�7�OK���JY$���S@������62@�|/��&R;�U�n����O��1>��i�@�V�J΄��ϗ�3�������s.�֑LC�s���:=؈l
��W�+)w݋�y��������N�Z���ԧ�#?���'�����?����,~�3��̶	<��z>�ZBs����3_�����w��_��k����{�~I�6D
R�q�����݃��!��|��)|��_��FY���x�{%͞DT���F�엿��eh��O�U�<�}L���v��_�5,��s`���
D�J_��\��G����ᩧ�C�i���!��3q]��C���g��#�<"6o<�-�����_���e��q��Vo4�[�?5Z�Ds������]��s��"^}�5��ԏ��}�I���?�R>��|�8t�!L��߬5p��Y��g?����8�}�����#��W�LBs��W��4V˄�?����41���ɴ�$��[(�80#㊝�N���W�J2�!�#�}6��oe�x�
Et+�1��m}og�;��[�TNc:ΓhךԍϪ:����SXId����Ċ��B+$��6�X炶�	<gC��I�C<���}-��!,�l�4o��+s�ج��i�8�,{�Wk��DQ\ǁI4��{q�Z�ƗO:�Th@mI������"9`�q|�Ffl[I��3��	����_%�V�{f����� �a�,IQ���aL�&��c��d�C�Ə�<O����}MƊ�\?Rc��ډS�v{w��F��Y�a��u%�m�k�tV:�#+Nj�	G�65VÎ��	6�5�8��P0uA2+����r�wNEθ����CH%�M��8�q�#l��mK#������L�F(�s�g�Ca2�I
s��;�^L|X�|����!9,�!��g.X�|*S�\�<ث�n���)\ߣMm�.�v�Zd�Z��)1���x�ۭ�n�`/�m���~�1�^/}�n$K����g?��"mnQDKJ��Ȳ����h�!c��g��5ڻg牰��>^i�o�c��g��G���"�(�1��&0Jǜ�ًg��'��!n�`/ 0w��	�<i�l O���|
�n����:�y��zGp<�Aȵ+��ٿ������X���"�>0�k�ho�17�QMM�/sz&(��dn`|��zb��\]�N"p{��$�m-T6Vp��Md�ڸ�d!d ���DU�%/���#�,x�$�8&>4��=��a�����,)��b�\I�E�	ꌼ��r>-�5��%ӌ$��ܮ��d�_;�(�]��1i��H�}��U馸���:ď
�F�n)0�^P�"$a�J��=V��޾����,� ٗ�mk�z9"$��o���A��
���j�����ښ0�߀�}�~��D:Ԗ�Gh
�y*�F�-��c��E:�A� �au���P'�kyx+�{MD�	���.� �o���cD{�B�[Y���������
뽝��ໝc\r��u�}�>g7�ȞÂR��y��%�x�k�ڳG��-�|��G@����_�,�rV����ֳ4���F��w�ܛ�Gu �_�
��]"
��x�������;�;�;�w��띤�Bך����8���RZ�!p�����"�s:�{H2���Dd�<�ʉ�Z��4Z�4���!�6mQU�\�+�ų�א�z���Lm)N���Db�EYS��e�'2����AZS��
BZ|�W�qP��]w��_�E,�V0D�ᶉ	�U3�s(�c�@aP��)�9-B���6
�������N�
�"'hյ�&���N@^]��l1���h2)Ӑ\�y�/|I��Gf:�����&M�/����2Q�y"7��.��8�7�ɋ"�뗢�y��2�Y���'�(_"J���6�O�U�$5w�<fp�]Y��o���Y��hu"�؉(k�8�=K�z~�?^oL����%ĭ�*$Q��f��c-��@/��Z��1��\�*H��Sl�F1���Rggc�6�\=�z
��n;���C��d�y�1bt(��9+�(�lf'��&[%��Dm�w�ZjT�
���U���!���O��a$/��2.���ûva��$�_��U"I�D:>�Ѓ���>��%��٩1!M9��@�F7��o��8|� �WW�
�#�x�c�C����`aiE��m�x���W*��ݏ���_��O�	q�{��:b���I/�$„���%ԋ�
��������m%:�Ss�?�]�m�ٌ�t����
4�'H.�g�5oS�p�X�|a��2�Ѭ	Q��}{07;���)"R��(�h><�=x�K�Z8J������?�<5����;� �i	o��&FF��w݇{v�_��/b�d�p���m�8u�2Eu!���q�]�~Ntՙ�q4�^9�L�I���g\3��s"�&�G�����u�����X\��c��q�l�pPu��Ȇd¥����TLV�LIێID��U�3%W�F�#35�nj��{)0�����da#����I�בH�F4������,8oH�v��y&�C�7�,���9�vbWCE2�����PQ�	�0��!&H\y�:zJ�6�<kcӹ�|P�!���lP�7�A"��1גh��I�[�� �̚��5E�fq���#~��r+��(�_w[ս���q� ݮ^o`�d�{BfG��<�؄%Dxq0n������kUqa�|��q���~��8#s
�K/J0��Q�K�I�ũ���"�c4��vo�~+�Î3��m��O晴n[�sd��F΅�ɻi�܍ɎtJ+�!�DGw���ƆJ��8ʃ?����>Ez`-��^Ʀ�2���=�ȏ���3�����`w���[�^7"b+���[����k�~�	�eAK����qNM��\�d
}��<��1Tڤ�L�w>�Y�4��Wp���#��+����6>���򋯢V%�B6ZTl!7�D)�Q-��/��u��I"�O��,��%�ei�fZd�p�`�8���O����x����p��q42X!Rd���w��6n��з�@��
��Pw�x)�
,];���2�iQhBȴ�]PE�#
.�=oV|~�ú��C��r� ���5��[14�ƂM/~!�����#P��0׫e ���
؂V�)r$ �
�����i�">��l.;x�08:�����M��G*��X6�y1���ӑ~FO:���M�(�uˊKhM����m�p��{Γ;e�ΔI�X����셪��DEA�jiG�!V�I��~��RE@��M��)1>==��yN�A��ʓ���̛����]�ڶ"0:�Q��l�d��ӄ�fk<-x�0A�ď��zMr�s�ٛ��$���fҿ��z������}뜭[������5J|��ן����z�}RgH;eҊ�7�d�ˆ�#9��Ys8.Gq�9��U�p��ao9�o�ucJdx�\�J-_�-no��L�$':>�ތ:�ҹ{�����^$~:�$BB�����R��x~g�h��?�����X
�3Q��CH_������f(��!�e1��c�T���$��␂�*4%Q�%�tȹ��v��7
�q��,�О$'v�u���磎��>�Q��y�&��7�>z��m
I�S�:��f����g�Lgnj1>E�$[�
�%M��,	�6�p.]������XB�5	Q��b{Y�']o6��}+u�O�c=�&��h������N
M�T�E��V���S+A��>:G������J����ƕ�z����4Q�J5"����y�5$u��+���B�dh)Ԁa�Q�����@��R��R?���9�ۤ�.�n�=�ލ嵫�t�<.^!���`��a�@���k)�=,㴿4�Rac㒮�
�2�
_R��H�lq��[N��h��fKB�4H��vzy%��sֲ�+�uN:����$����H�q"4���Zm%�Y�dH�gb$O�	GJ�s:�ݮ�I���Ѹ�{
���E"��G�@m	��"X!�ճ�M�v0����6��u��J������|S��Ļ?/�L=����Ch�TD��$"*r�
�]��W�YG�ԑc��Ⱦ4�1J�,��T��T񩵼V�����L�.Ԩ�q)�Hmjzl�����`����*B��N���k.�ү������UE���x���x������8��߇�����}��{�f��Ͻ�
���+�V��Gދ�?�$���H��}Դ!�O<�8�u'N��'�iޖ�������z����0~�WS]����W��c��N�Y��~����p�x���cj}u��+�Nk�[&׻�2��r�_����߻���~���sD2|Z�t�����~��c,�f{�&)�H��eĹ���3$c_}�I%�)�/_������#W��Ȟ�s�/RVڸ����F��:��y܏�_{
���_'2#�����I��?�ÿ���&�Cr���_~Ͽv�3�ڏ���Ļq��y��IvymgA/�(mNYF2}�d����/Ͻ@:LJ�~�~?��~�?���şz�;s�eK</�/�Y���Q��l(������stʹ�u+�:E��É���1ྤ�R���\����K2�C�6��!�Wg���q
-�L:&�):����E��N�1��{�d�)�Y96L�:��q4^�c�k��o�#I�@%N��/:�\X]��j-Bs/a%���F��Pv��C�;���t�x���D��Q�������szmqƀٜ�Dq�p�g��"m����{��e�����7��0�Z]���ߗ�cYNV�9S��	��#y�HYq�6�,?v~�#b���=J0-�+�Tjg���ܺ�#�V����4n���~��n�I���f�ɠ��#��Mme�l�*��Ik�LTGLv�99����0E�՝I�����H��H&7�� ҃�x(NgŤ���]���nJ@��
�����@pϓ�n+�"�aAt�m���٪��>��+���B�y���N[��fo,_����_�}��
��Lch[�P"hQ��3�5"=f�@qP����|�xD�1X"rb���2w� $ou����ch�H�K+��/�ຆb�����bmU�I����{��֙��y`���,F�06<�V%��|���	Te\�q
��a.Qu
��C�b!�7n�߾��E��Z-c�f�8�]�g�ԁb�Rs�	ơ�l	ۯA]׷A��z:�T
�!�H�&���t~��.�F	�"?�dP�'4O,������F���o�|�Z��/��~Yl�<��W��<fԟ{�9��}��rXϻ��pi�?p��e)`��!�e��4Uok�t>xv��dn0�Ԗ�|�:���*\��F�� w�E�H�bF2�i�'Η�s��s��^j��>�y�"���L�R��I��V_��#Q���E�a�s���@<x��f��F�b���D�kx���-do_��e�q�������]�zP����Dc�eg���9ϟ?/5c{�Q!:���]��$_�˾�w�d.S?���m��tY?���)H�acuvvFR���\�s��ٽ[@5����'�|B�j��ў\��s=��7%��V!c�$�v'��k��F�D���X��>��<�񍽍-��ӝ����J݁$ՂYh�޸y�֨�&'����h`Q{��Q"c"5z�y
��#h�b�L���G��_��HP&ǹ�����)?��t\��y�*�I��Ԭ1%�w��4-3n	���'��%Ef0����Z���r�Yg�z�*fw��t����'��(��d{M<��eUڃ!�T�/2��❽b��W6_�=i�+�W/!��<H�"œ������4��?ܩ�f>x1�u޾����Ѩ#ʄ�'8��Q ŵ�\3���=�b_�I��M)˃ד�?��B���?{E+N�I�/�{B��\?]��r-���;J��]�H�*4&��d�6x.����<A��"�i�ѹ��xӅ�!�`f�]Xi\ŋ�>M�?�#E��Cr�jϵ���7n`i�"�� �#�u;FfP�ph�9]��:ՊNӒ5���<�1_,!C�c&�������җ~V����=$ s��P��(�8J���Q�|���/�{�{��8.�K#�W��q��"""����&������ںDxdY�bIM}=6>%iX���sJ[�͙,8F�!c�	��$�d
�j���_���Β���0@�2�3���b=BY@D�O6�{^�h��Q���z�Fp@�hS���0F7�r��xU�r��ߢ��|���v��6�(Iڱ�mF��Tl.�Kk�������}�7p��E"�|��}��O���z��&>�::�yAC�B\ei�k�����7�|�ayD�)�u�=��_{ġ"O�o_�Ƌx��w��!Zy���y|�0��1���r�R)���X�q?\�|�� �
�N���/O2g�昂%�fM�vB�d���j���5e���K����ڸ���_>����kE�Q��E8}�-�m�}���O�ȡ�~�W��`��!ׯ_�ҿ_�u�;�x��%-���>ڟ%��o��!��Q�ۻŁ�8܉�=�$�p�{�d↴�P�Y�邤J�m����n�N���:ϑm�I�~�ꋯ�'��=�022@$TI�w�V��n��zm�U����i��Z�U;WRT�k�$�M&Y�9�7���tI�9>9������_F
.��3�7�i\0�I$\��@d#�%�e+��jJ�4A���oڱF��p-7ű�K��`��*���&T����[���á���I�嬇�+%"������$�79U��e��]X#?)�I�ا�Q��)�����٪�|�2V���E�����¡��A�+
Yr�d�����D�GzL�������X�A�؅ֹ�d�f����-��N�L�>�;�1�a�؁24���m��,m�N��鶒�!r5ʋ3��
�������2�s�g�h�F�7^?"q�4�e���˗9��݁�E� =�����m_�ig㼷�2MJ��ӿ��4~s;xN�-��`eoĭ�a_��6����Ȏ�����Og��;dGv(��A�BT�T<��`��Dw(�d���0����v+�ۖ���k72���iv��ҿwp�o��[�n羻M��Z�6�'4�����"i
w�C�����E|߻H��j��,	
���q;���u\\������؃ե%�px�Q,߸�Kgϣ�����8���m{ׯ�"�B�I�Gm��F�#�KM�s�Al��A���z����ts;��cn�+��Q��MLN�⍷.`���Ο�W�P_Z@!,cuqmr�����<2�im��e�����DF,�l�No)�c��6��Q�͊j�
��ʿ
ێ�	���쳠�Hū��XD�� �y��~k�e
k����7���u<���/K2���!�K_�v��)�����k����0��֤�9/*�?/���o��g�>�3
��r��nܴW1�O�B�q�9�v�Jc��	2�Z������a���7*��r��>Q��h�=��8lJ�'Nu�ڜ+�Fv�e
�:��Jm�`u�ۭ݉d��<q+�{��$�}4��€��ؘ�c��c��C8v�������Ņ�ٰ�qT!E�CI�@�y��0G��7�8�>�^ֺ�nWswߞĸ����v��ӓ`P:�Nr����roLj��ߐ7�q��˯��k�HN�<��gȀ,��ǿ?~\�;4���J�Α윞�&�"�M����۟���F�MS#J~�����njC���a�{���Z�����YTn�AkLm}�����l�.Ҙ߅��g�eo18kU8���-�>{Z���i�.����^:q�u�2��Ct�Kؿ�n�u�,�I;g�H�;??Iϕ�z��F�����O=�������W����,��o���ø|u7o��Ιi\_\���8�V�Ѫ����5�ޣ�Jj���8��&pd'���?�Z�@���|�r���s�SX\�bvb�.����y��Id�U�
Q�����3��Rk`jf�����>��<��ZGmcG�{�@�/�~ˋ8t��/]�$�{��cx��b���ӟ�#<���ҕ3�Ʈ�{Q�,a���ZyԖU��#G�p��Y$��̎&ɚ�=X*W�sbo��3=�GmZ���u�S���H���%������,ˮ*=W.�H���h�P
�*e
L2)A�%�����br�%��DFy�R�գ@�7͗"�v
�?N�ȑ�jC�
F
9�R�l�d�I>�X�ml�R��(�<1��m���.;�4��>�Cځ�N|���\�/:�Hi��X}-$�4�娎���L�"=�����HG��`a;�1$��}N=U������IO�$�}$�G��A��cƒlf
4�tAa.��u�MIkS40)"��v�Ԧ$��$:�p���QKc��1�k��jdط3|��7����85Z�Z��5M��qS����oyd�\�C�Ŭ���1g�mGvMӵ�H*��L/��\���x�C�D`�C�e�$��kֹkq�(
f�Y�;nL)t��n�XZ�%�[@h�KwCu�W`��=��.J}kmf�DZ���8eN��8�C���D:m8{Y{���7WV13�]�m���cV
i����b`�O�h<�=B0�y��`
����g9��d ���zeC� �: y�)�
}E��y�w�{���x?x�=(�����7���8�9|@�!�h<fi��s�<��f�߉A�VgG��A�7�w<�-�ڋ�O��(��/~À�/���4öcC����NmG��l"�N���s��aZù� o���G}pqyv&`yB da�D�sj"j��܏=t����{�:�8C��u|P�X�VK�>m�Ly:"ﹼ�=�E�#b\��e�~woF�=��,�l7�U�@D�ylW�)�X++"�p�ѩ�w4�$`qK;���/?����;�+�~�Loqh�u9���%�b`�dH�9q�5�ia�>9��%�-�a#,Ng�F�=���٢�tį>Vן�ߑ�:�"#��N
n$�xl�kSi��IS�0)ĎM��
rV��I,��&u��v��F����S^"�]kN�?�=��3����~Y�f�u��+w��@"��0�^����Y�Q�r�I2����v�&8ZF��={Fo����N�2����:��ۉ��c��G� ��o`<�1���19��벾3�� B��(J�d��l|?�9سQ|����m��b�3Fw���?��{��&�V�s�����kx�;��
�^R�~��6��q�r����'Nie#;����*r�"o�2����:�G�֊�<�������Ҫ�~+b Ml��mk�1ٷ׀q�{�[����@�^~��9'����
��A�����_�&�����g0Ri�t��Qئf��Gb�������t�"�Q�I�8}�]����7H�i�q��%���>3����yp��S��[E1Ӈ��� �{uL���GDR5�%DS\@|
��Q��)��X_�@T;���簱�,^<A9KZ�^:���i�e2=�Obp�L�"���<��Y�C��X"�c�②>����(�*+n�F�fy��,k�)���H���H}�<�nѡ׋�C��ܘ�`<6r�£����S��J��
����\,�YV|�}������������{Տ��biy�۶	�:@�/�b̶�/�1��2�=�ͅ��wk��t��s���ï��b�ޒ�- {Tp�	?S"‚��.�1Cώ�5�u�R	�
R�iU���"�$�h,�	�he) �N����h�&5��1i�`�nDɦ�I][��ox첢R$�w���4�k��R7���,�I���ع���*}�|��g>��'OafvVR0Ĺ5�@������v;�ن�r�E%���n\G7ψ�:Q����O]��2^#<����t�oH�E2Fw�J�*���e<t�=��\@팤'`�����������i��;��{����(e<:)�t�c�t��ɍ[�&�#�R�G�(�������ںc�mdh�|��d�o�����x�%���D6�b��A�,����^����HFҺ��J`��յU\[�����!�E�`�nzr��"���a}����xu��m@�2�W7�H���m>N�;��iX`۞�x��� ��#D��i<݅ӗ���{����(#���9�>�*��Q4�Wi��`��8�J`J���Sh<���6�#����g�D����D$|��x��G�K,�?���!�/�c��Υ+k�+X�+��1O���d�C��.�Xt�S4��p�H��SC��t�C�t��~"m�2޶m;���DUZ�fP]��=�����ƈ`L�9y���X�԰��s���9t�:y�S������^�%�ظ�3�>P��{�ʼnS���0K��;۷��1�Д�d\�� `;2^�$�����A K�t���.S�T&ҵ��H���`(�k�1O�)ϵ���Nc2�1�F�S	pjN��]�z t���Fin���$�?�UhƷn�vX�)I���6i<���.]o�;�f����
Z!��G��I'��H9/�EY?��W!Б�Xʕ
ݣO�s���x�3Y�9��~���x��:5a����D^t�H���P��~WA!�xM|i�rj-���fJ4�]/#�-�:;��9!��.0A" ,�Җ�)�&c?3L�' �+w:�l6A��L1�V�D�m�N��}BP������q�
5a�a���D��A���N
:5S($�/ z‘hmS�7�4��#�T�w��^��UT�8 `��IJ)�Q�d�t�tɒ�i�v>g�1�9�����ͼ�JݮJ_¹?O0p<{�"~�?�����Z;-�s<��<p��._������M�9�Qi��{w�С��nw~i_��p��
r�A�΄��X�0�o�.�۳�H�k�	cjb�[Z�n� ��
p��C4�#��d�_�
-Ƭ{1��D���%���l������������u�����������k�n�����l�<��_�����/��z���50:5��|�M�ݻWl�v{��g���*3L��
�(#���z�����+ 4���8ɾ\��!�M8ڍ#��%�����A�6��˿����"�Yaj�څ��Á�%�	8�6����H^���NzOZ�iw�6��ǵǽ�������n��lu��;������H�z�Ř5���Wa�����|o`{��h,e���O���6��Ŵz�MZ��gGSn�������K<�ْ�	~�`X�
��cF��5%�A�B��򕍄��	������޸��~��G��a�2��i$��<%�׶Tb�Ș�;�8mO�W�^Ѧu������7I����F�1�����cd�\Y�iп-8��@�$�Wb�w��L�G��
aפdm��5��&�XID�I��D�d�0���"�83�p�
”8cK�;8�Hh9eS�i"'#�14��;�[�������zj�g̦��>���hcv�d�E���ɲs��ѐ�\UP!Yò��Ú��n���w-�{b��6עu�I7<�c�.r#�[����9�1�k_��W��{�!��'>a��"<x�V��0�y�Q���Mm���OGLz0��Gv0���gΜ�l���0�<"�̤G䦸�����;L�r�����n[-R���u��`�m0�I�[�#
0���)<Ֆm��u#�V��>h�^S}��9R2p��!\��&�����8vm�EK?��$`IV�3T����B�:O��(Vʘ��õ�+d ^��	|噯��Ǝ�Y����B~
/����=38v��*P�nk(�18K����΃�f��GH�E�PG&gQY�����ط�L�'����q��>x����Ӥ��/T165�� ��%�[*�D��u9V�kX$�Dy��(Sq���]���Fc���)�9^�}]�1�k$�^���ь�H8Y��1\�N�/,4=��۰C1�
�a�n�̼�z漡h�)L���s�v7nG�0���o|SO�kkkx��19?�|eДd��v��Ν;'�>�0�,��+�� ������Z��l�QƩ��6�^��u<��E,���{�]�g�K{�GKXl��٫_�F��S�9�0F�w͂����7ױ���1d����0t�~��B�1�}�$$�#��[��ً�p�^��V��5ʭ�N)I�E;N�XcB�
1&.X�qT+�����g��#j�c��#G�H-�W_}Ej�%���Q��m�q�5B�M}�Α�>B�g܎��I��"�C��3�@5���K�	��	��$��w���dO�^xQ�a�kllT"�N�:)J_�U��]�(���Mm�}`�
��"�1�
�~sɉ�/�n�����U
��(ҀR��q'n�_������n^>��'����a߀��|���>)h��Z�@iXH�R����4��dgw�l�ȏ"-���(��O@K�cn���V�cd�����ONc�ڢg?��1�&q��*�}���qZ�� S3�Xۨalh���a�=��p����5G� �K\ഉkW.K�P;�19Nm����P[!�֏m�#��y�@�DJ*G��/�;g���𰃎������	���Q"6	�ù�v�0<u��@��p�
��R��*�]Gdž1D$H������6q
�}E<��>]��W��+G
8s�9Z�'�,!2�<��C�F��(�w`������I��ry��QÁ�;ߛ��ݔD�q��U��Z��[-?�pe���TpAi������@�Ӑѱ�s�׻�d�cԚ\�Nc��
�r}4�h?&�֪X#��h�AΩO�ʴv2�WW6~��F3����sQ66Z��~�$���h��������&}lT8RXmT�z�<$u�C^s>���Y2�����-l [�01�Om/
ax���C�N��
%ڠ���Z��sQw�pn�=^[j�)���W�%��3�x��̎�d2�,�!c>'r�-D�MN��w�2@��A�H�v1���+
�yw�����N%G�p4Gf@��g���g�.�"�wZ��uن@�;	4�֠u��3�K)@��ĈD��E:�	t�
@"vX��ÞT\b�7"+����|B*���T�p*$e:� d�=�S:�:��R�Ȑ��F�H��G��?X/{��>����s&gL_ƽZ�'r_r�'"
���mt
_Ȼ�DpL�m��~𣸾��_��O����?��C���_݄��/|ϽxL��J���FЂ�Q
���vI?�8�y{��p��#��G>H�L�8uc#��? �|���ѨW���������������㏂Tn.��Dc��^�4�?��H��
L�Z[<>��2��|1k���C��-��J��36o?��LX����{///�Y\g�ӧO�B,���ٳge��'O���<��	��6���k��O=����gN�B���z�d��?���
���v�w��<��q���|�{��$���S�I����vI�N�9������Z�]�
8*}�����3��G�Tk&�Q��{b���n� ��쳕��vH�[9�u�n�+>���	�!Q��{\j�Թ;GXп��$���]�sb���Q�k,W�AK��Lx�v���eK9:�=…x�5��:��4O�N��RSJ� �W��?�nT���19!¤�
����8��B�9�S&cL1!$���������t�E��F�4G��e*'��Z8C�H�`d�
���tG	�%�U)'����r{o��N�)��`]��X�g�N,�J�:���u���~��v.іf��4q��.�^%��Vk�<m��m�gC�8e�,����ߕ��x�uث��m�0�VA�a��ę��].N��\�1�?��kD��馕����В-κH���`zG�(K�n�h�ɉ�؃꺯�7�N�Kк�r�DF�g������G��0���aS[	�aRX��������tVLz��w �1�)��� �C>/Dxt{H��A��]ĺ1dݮ��&=z�3}L�����
�L��m���q�*�K�⨬��\�N`E�ru�<�~RZ��<�F��$�>���Ȩ��G�#;
��x�&n�SZ��G����}x����xd�
�D�^�v�S��	d���s6	��2��M�B%ZT�XY�H���ŵe4kU<�
�y6:������".]���o������|����Fc�&F���ِ%㸶�:)���W04���iI#��EV�z
t���"��F84��t���MG���id�b%72y!=�o/���zhC�,�6'�A"�3Ϯj��
� �v�0���)j��DZ�-�"w!�x�	��3��1��/�r��cE��;�!F0+�*���}{
䝶�y��=���Jʍ�5���^������S��ˏ�D��_~��pj�k@��ڇ�E�w׏�/�oV��|'>���o^&ú��Kp�G}�-��r�.���u���Z�ݚ�:^�N�~'�1�L���{L�Q�c��$��a(�����ÑE�x��ز�������C��%�gluϽք^�������V*"�趥׎}��bf����ɩ�/
4�L�	�R�=�yR<x[&��Ç��G���;�0�aԛ		Wi�LdD!�s�>ݞ|s"�d?8�Yo��O;Ϋ`jI|��z��hm�{�R����}c�O�h��-���CرӬ��:�w�#\������&|�;9���II?
Ϥ�bC�+�XZ"����iS�T��������5vn�~�xO��5��=�x�mSs��-�qo?ϯIh_�>v��v���aǀ] -.�$j�.zH$ǡ�{��C#��IOaxL�v۶������.ɾ{�!����&��L�� �r��ez|6���]���&'�`����51�t��f
�z�<��|�s�m-�S
�88=)ށ��;R��پ�M3	*O�2e!�j��d �I��5�?ǀ>c20��Yz�N��5=B���˵?Z�&m2�9ZR�Z9Oҫ�mTQ��A�k��Dl4�{JW�!���9�
D8�����jG�-cBc��qa{f���v��\���u,�ΣL�����i�������!�e1:�
��;Q���+�F�L�R!���b�M��/���ȳ�!���vF����ҁ�&�s�H��g�—��m�Y�;���b>[�:*�	GI���}y���a��
5���(]N�u�z2�D�抃tIN�ŝ�Y��_�>�|nv����G�K?��C�M�H<ҹس�Ikh�:�J�7;ld��wa;��k��ePB�O���}��M} v��zF�hi��$1"��'�l��9ȕ<T�5t4��`�p�ۭ_:Ѯ�Mu��L��Mt�ˈR��c��J�S:�#���w������.�����3~��?��?�,��>���azj�"]�̅+B�q�d�9�KR�e���	A�=;����?��	�{�0������~?���G�^|�O��Z&����}�~�Y��s���
�
|�3�á�|7o,���(5���~�/ǵ�d׳.H������f�*�z<����xx[�q������+�k�=����>E�Ŀ�7?G�Z���`�ֻ�Q��"��ϝ�uRNk��`=����o�&>���I=
�YN��m��~�w���IT]�m��^��I��;���7|�#�s/��L��O��k6G�������k�Z>���JlZ.�~sq	�[��W��
���u�GK���Q��m���V��?�iM�;���N%B ґ�� �D�q:Kf�6�<�k�
k�|N4{$Q���1J�C�1#���j,��o��c��<����X���������w�s-�m#����f�*i-?����H@r_� ��c{�m�Fb�IM�G:
��O��;���tM��J;^Y�ے$q�g�8}U�x��t<������u�<c_�::�Wh�����DqU
�[�&��w`�bj���cߒ��S�Mɮp2�M��I;����w~B�>W��?��Ob��|��7~����dUarDg{�N�����@�z�Dš�.?�Dgb�Hi��[�2�ِC��H�}�Q,�,9'}k�1x����#�c��c���8F���t�V���\�'D�r���o���	��Yd"l�x�2Oe�mv/�����ݎ�)o�/w�V�=�0�ᡘ�����1�[��V�s|�!Lzp�G}��9������2���#��~��p�I&;���������ru;�SXE]�{�-M����vϱU�z<ݘA͌�}�W����m3 �2l�ę7P'��w�*�o
�C4~*�*In�Bm��*��~��qeR@'���޻�ps���Z��K��-��{�4J��O��:C�d��,���#��s�8�ھ�l���v�A$lj�_D��@�^�Ȍ���'�sd10>�j.�=�8y�\^Z��O���<�����K_����k��.]9�}s3�#e����Lbr�ȓl�-N�R�8`g#r ���̺'&߳�2�^'񓱚@��#�3.*N`�9xQ�����_[��!�³�z�Yd�{������L���+���YO��s�+t��M��u�E���ؼ�P�IR�֊�Q������/���|b$ߕ
)v~��E9h�s-���a����´�ft��K�"�q
�AEH��O��70B�-�D�E�v����n�H��2N�ɴ��_"W��9i9�߱'��뢏������ ���{L��&E�"]�����u_o���[��I�'BG)L�C�n�j�%�z*G�۾aґ��%����E��/x�^>�1f�fİ7�1��%U���$:���T���}K���;¸U'�q[׹36�v��g��T$��0�1���楤�1M��r����������]��_�ڜH?���w�Ǥ�a��Q?}��M�%&=��m�v!:���v�t�n��1�D0�_&O��=���B�:�ڜ�m��܍_.�V�w:���̬9G�["�loo�4/U�˵'���M
������70�W�G[�V����I�S֓�Z�xO�nDz���hRo�QC�QCD ~����J��k5NH-��c���!����y}c��։T� 򰘌�(���te�(�D�L����Y"��ܕ�
�8��_@��I�Z�5�͓��J$K�z��U�-Gw?(E�'&F�3\�$�7������A�<��$�I�? �,؉$�S'y����ԛ�Ɩ��<E
�����(��!�}�bUHe��2wۑN�!uRL�c�$�_
6�9b�(!Щ����5ubfΤ��Q<6��Zk�>j(���5,�^HQ�c�8mt����'��B},��$3��\�LF1�j����tj;@��ӑ�VPq�3_�}|/!D�ׅeyw�LE�ddu6#o;��r�ygW��J�U����KV�����ۚXA�5�ͱ���+���/��L��؄�B��s_�:�o�/_�1�����]�x]ߨ��7OId����5U�\�q��j���+�!�H�r�e�=��"[.�=������cn;Ɖh�(o��ŋ�X_��4:��^���N��(����_���FU���~�M*+/�Ũ
7�*2}ic��
��~K�1H(� ���D�0��h8���r��~7�e�=���d�בE�g5�
"��VVI�*�gk���2t��_�<��Y"sW�gPw��_��'e^�tI�q�����w��05��l�a����d�,��m����o�7�����$xCz^e�˟�yLMN��ۨ6�~ᗑ�>a���/U�^kdc-I����9��f�Zy�7$]n��$��_F�[��r
� �Ƌ[�A~9.,��^���#h�)�S$q�aC�p�a�ܰiNu�}�S$�q�(g>x��x`l9e�ա�'zrd�}W���g�:�I��T3��l��@��:�U*N��7�
k��s��4r�??N�&�v�T�|���_�~��/���S<�������7�9L��|u=�S��LP�ɶ��(LI���o��V<>Cs��@-�p���,	7"
�G�l�:C�	Srq]'S#Y��B��-��;��u�&ͤD���#J�q�6k�KV$QZ��W��p���3Q6͕�'�z:%Sd�O�p/U��2l�����O����k�����3˜��)|�G��5"K��Z��� e�Fp��e���������I_mDL<>�v�
�7uqu���'4$��}d�$�
��� ���-�+��� ,�����V���>Rd�_�VI��-
�GCθள�c�.0�ѡb�OY"�p���|�פ1�^���ί�suk�{~��o��R�K\��s7Nk�c?�c����ͦ���<666���!��W���\�Yz���:&҃��>�{���l*+�众ߋ�V�V7,�����
4�u�[m����]�A�U[�A�-n�s*���	�!�L������T��6B��(T� �K��k��u	�����Q�c_��M�/�`�ڎ�3�q���vsS�q�Z����b��^<��{q��[��������.��L�X=��.�pi��0?�:5�*��G���j�
��\ƍ�k�gH��&���obn�a�#�9�#O|k�o�����>\�_ƒw��� �'�1�Q�4r�h����M�:)ftN.\41J��2�{��x��$�u=4m�l�z"��y�EM//ʀ�*>82�QI�CL�s�%44��wR�]�وP� �gT, BJ@�]%��\���m�"�1ġ�^�^
3�A�t�S�y1Q�:H_� �s%I��b-��\1/��CR��y�y��ֿ�o��z���Kn�6/�*�o��wV�8^ݚ�О-pȉ��n�����^0�㭔�'t�"Y�D9/��[�c��hC�����h�Nc���,�L��:�\{�}~Q�g�R��z���w���ر��A�:� JMw�fA�l�/��ΎΫM��.�g���&�g�b���� �u~o���ͷ<Թ��c0��V�HN�����G�����t��'i�� Q�=D�{=�M;T�y(�S��������N�r5��Ǻ�-)��rD|�\��� �t�BV�C�"�0���XR�$͐����
2D��
!�Y9�j��
��79�N����˜*�*Y��-�U���
�_:����	���q_���E'�� Y�#�C�91��n�ީ�EZ�I7\_C���Y�	Y�S�8
k���b!O7�!�� 霥��!\8#NF���ث�)��mN��i0\�m��r���P2��IH�U&��F$� �K���d��-&5�0��Le� L~�4�e�%x���ɍ[ɑ;��.ji�I`�H��c�~&+��5�3�@�mG::C�C���O&�����h�:����.0dx<���I=N�&�"�4��2	�]�#2�'��}���`&�$:�utU�)���2�c�e��?�����ĮDBZ�ǩ]"�E�=���2slӾf.&�$�
ױ;u�b�#��o0śgST�X]Y�`ie=N�r�@rðc8J��׾�`�kH�~6,g�@t�J��So���Sg�����
9�����%ٌΓ���F��ם;Q�]�혲�v��:n./OeMư�x��X/

��Fd����L�wW��qs��$_Y�m�\�qԦ?���1^��H�;"��ߜ��5
%��Ξ9-2���H}N%T&ҡJ$���L�l�H����W����w��޼��y��y��c�OмѤa��L�x��N�����+��Qi2/8ڻՖ�Bt�l�THԍ�F�n5��7���P߬�\SJg9
$W:��6�!^2^-Qu�!��xM�t'�x{[�����Qv~�ĺ6����/T/=�рT'}�����Y��A�*��`}̳����@�a(�:�$�о������f�Y��
���b�R&��F���~��'?�/�B�8*�Y~(����)ĵ���Rr�S?��2�)�y,s�%�$�.t�H�Tex�IZ�:�����L�
)Iz�@RM"��a��m�<,!!黼�'!�"�`�L�gi�����Y<�9��G�;�YIM{��R�N��8]OEG���0�y�G;+�l�>�
\����U�S��͟�Q�֯�<��2��@������c��kyă��S�I�'N)uiuZ�G��ӑ-��%c�BѿKT]h�MJ�t��0��&�
���c#��	%�S���������P��H>�kR���֣���ݝ�K���0E��x%�Ho����V����V8�VXQ��Ә�^�R�y)�E��ȏ?��ǑL����%:x3i�d���m:+Kz0�Q(8B$"�CqZ,Ng�Z��…r��a��7S�C���ND���K�;xK�V݀���";�}���oݮw+���>��wkc���}ߵ
"��yx�z%!��v��q��7��>�1�&9�x!�g����v�*�����/~�KD,L`��al��˗�AWm��o����ޅ�B	��}; \#�X�a��vO&��$�^~�$S?��X�\'n!��x���<�n^���Į�8�仩���� �^�+�����5�7%"72��{r�5�E3�ظ>�o�����s�H�a��Pm��r����9���|�:�(i��]���1:��51>%��5�beZ�J��D��
�Xg0� Bk�!��Čz#��#Ȭî�a
��;��ؤXZ���Ns�F��w���΢FJ׎�~�O�]y��"c�� ^��eTk+�{8��1�a	/c���x����(d��#�q�^]L�x����e^��A]o��ߊpM_��o0���] P�Y�r�u�-�Iے�Ҁz����֠��H|�(J�y���DᏯ��K�n*n�v�9��-�S/���H��ޚ{H�mPD��u~�:����s%�P�$؅�3M�����ݹ�;^�E:Ӱ5�a~�g��q��}c�A!�TI���Y9!���4XV��}���nb�F6j+0���T�m��o�'m�IyM+��m
���-� p�8ߴ+�Jui���/9�^#��̈����ۭS��/b��3���@���hr:J��Jh��z����ʒEv�����l�O���u�8z!���eu}	0uz��&��_S!�^�dZ�F ��F�c9�L1o��w��y��ܴ.3`�F�4��aRÃ��P�oY��c�O��P�g��NȘ��+�cYO�8IXJ$���h�G�≯�Ĺ��^[G����by��+�r��`d#}�萕˜\�#�ɢ��@��cx��}}����X���L�%�Fh�\y)Xڦ�xR��{@}Q �:����i�Z�b�ZF����\�0	9�7d�_�MҹmZҬ�ɼ`���I�`
�r��AXp��j���v�;}� ���8��zz�j/_,��d����&$�|�J}6%5P����$����Հt!�VJGc��t�cuJ-�t�u3���֓���nV?Vx`�}h����tH�Dm�Ӭ=ݷ�5�#�:�+��*���0�����?����}h�X@9,V	.�V�t{�42�+ Z/R��i++�3���b���R��f�FF��T9<���`Sʻ(�q
��D�/�v�T�Tz�׽ �Z���)t��3���LRqX�9q�c�pJ�P�`N��d���Q��$��kҫ.{В��B.�	������T�G�Q���m��R2��$�Wj-,ךؠ6r*�0� ����+�v�M���G�%���2�|+���'qް@���s��ynFR'PI�C!;���v��FǬ�9�lm��	���Ig�-��eRk�R��8e�Or��J�P
M�訣M� �O�&�)��ۊM۷���s���@�0�i'�C�]W��"0Η�|��bF�:�鵩d7т=Sl\�FVI�_��g����o.a���x�z
�\������/�ǟ�]w�+<�໱}����:�y"8�=���D��ʭD'�]�44I�8�/?�I��J�_js�:��y���uu����oC��FQLzi�B���
��9��$"�Ǎ�
���uʌ#W/בFθ:�R�s�$K�#[|}�M�6FJte�|q
&�#R0�e]�##�K4�Ͻuãc(=�
�D�l����A�ݵ�?�1��6���W��}��U(i�l��ˮ�Q�˷�O����2�����x�l�G�ePKҦ��Mؚ!n_3��)�^a�X�g^�ԄD�V*��B��-&���jM���I�V�}+DxD�Xp1�@R�����xW.X�+�:]�h7l�)����E��[�{p�OcDn��x1�u:�;&8~��;�W[Ӄ#�6��ݸ����H7�I>�7&;��2E�e�V�v���+�'�C�Z�7K�|�Dx�00}F�G`�)[pa���4�p;��������ҍ��פֿ�q	�倍/o�H,�,�=G��I)�XA(�[��.`�0K�o�����K��L��>2�ưkl'�+�}T�
b�k8u�V��08>�A2���Wq��~�?�qZ��g� N�U�h�>��Mk����Ӹ�F�&1ҿ��"!VaW��1����7:����܅!.��Z%��:VN�7���8�z���*K2�P\_���@��[������Q	쳟�p1Y%^x�9j��:*�P� Y�Lxrdg�X����:lِ(r��DqTF���ɐa������n��xg�S�<r��C;�d��~س���2�ہ�sc��4�pd�g��Z����$��F�B��i�C07�������3��f���(�O�%N,-ɽ-�+L�f�	��I��d�=W��n��IV�hv�vtZ����ks�Ԏ�����w�o�{q_�u^#iogۑ�7��:�5�<�P���g��o ���]��*v}3r#����"Gu��L>V��u��N���[��3�n�w>�>l�9����Ju�������l��=R�M-i
7�e,.�afz;���%����,)�+h��]"���)���J���d�#9d�=�}2<�6�1:2��ְ�j#�c{��&��8�J6˞Q�@+���	��.^]���/�[eu�;tqHE`���F�*�-�c۶	Z��pc�������i2\Z&_qF<9!���U�^�ǞS�$acfc}���"ҵ��2�8B䙴#��%Ѡ;w��LD6Q���d7��eZ�7�%�{�6���D��xk�H�!p� il��O�-��w���1x�d��u&Z��\��;�Pd����:��:̓r�r\ׂ�e]���X��ǵ�̋r(��D�dq֚�=Ťob��_�a��@����7��x���:m\C#�c��f�L�1�l��³��15�W��.��zmA.�4Q`�W�J�[^��ss��6�>��m#Bv�
ENb�S� +���~!R�ݐ���t�KN���HT�A�j�r�զx���j����J��p��6�GK�ᄢ˘���϶%MV��ߘ���p��eea�伾�7���8%�Y�,�*
�D���4"���S���A�<
u݆��e'^@��	\XZ{��\�рQz)�����&�-�Z>/��\��zJ�����1Ʈ��9f�Bi�C�R�'z�f�@hV���]��T����s/�:J���� ����}+aױ��S�tv
e�h�l��Ѩ���ФF1y�#ã��ߔ�+]0��eh�S��K��:��UkW3�'V�I+'��������éԚ��5�ҳ7l���7�J�⴨]�vK�=�Q����u�Kdφ&����#&t��}!��:D�x��sY��ڹ@"�GM�H�e�5�~r�,���J�NCܟJũ�lمdk����
M�?0�G��4G�5�~�댘�˩�$RGڨӴ2�(~ԋ
��<&E߀̏�I�IT~ mm����<�<\�VC��o�
�Akל
�qì&��;~�g-/t$�m;��9�w"NT<����k�C#�_bٙu��xg�n��&u]搾xr6s��\�����|�;G��~��xj�u:#&u��HtJ��2���`=d���������������_�$�^��G������W��K��?F�n`a�-!}�(���v
�DZ�KT���Α����4�wI��&u��^g=AbL�`P�o�3�mE(r�j0�,%Vd2D�H?7qЉ�6u���{�}<Q�v�~�#]�D���8�i�$U�e�%�6X��s˒Z����H~�I�#	��o~��?��_����k_�2���^@H����3�}�Ә�ۇ�{&�/Ѽ%}-Pr�vK�!BĎ�����`{@;qAt0�	�@׻
D��2�h�=q�[Q��<(g曞�\��ԩ�����4j5�U�B�񳵺��Ɔ<C���^fr�R.��f���u8��D�gc��?��y�ݼ��n���^�t���Hg��g��#&;lT�Mk�i�l�r7ƒ��;,�u<�3Gvp�}��"�l�<�a�#�x&;L�GD$���խ�G{��i�ry?�mn&ӡfn�MJĒw��۱Y`I�a#}��(��s�*Z��w9O��7r/����`�N��nm�@v/����yfQ!�j�12�H�I���˸�(j�2.�pU��råaM�L�(�
��q���B��w���I��J
�be箜�hq����\	�~��a\z�Ex5H�����N�����G�g1@����D���z�v<@�|��d��3����ڸ���އ����)�{ң����E�躃}����:͵�˘��Cfh��~��sD��"!�5r4���MM=1��~�k+�S�����#A`
u:�а�R,�h���'�Qd�xh!.�	9�z�W��,l
QR�\�bZ��yZ	~����D�f�z@yz��<o�a�C��~hI�z3�9b9�:�o�|4�݃�C
�E�&O L^��rJ8^P��t�����y���,�-VBh1f�$r�r��m�o�zs]Hϔ|I/p��u;og�����-b�l��B<��wSz]/�'l���pИ�����
p��aDl)�
���S`�d���w����i�G�>����j3i���]ۮ���"��:�)�%d�{��画�\�H��-�Wps�����0��F���/]%𪁱�~ԥp3���2��o �01�PU#�k'�N`��4��jpr3c��|�"��;����%�FkO
}�~,/-�H��=x��ГAe�:^y�
�ف�ed��p��3��![�zy���ӳ�X�y
a�����2-,Vs�=;�7^{���!b�o\�x}t_�>�7N_DeuGi�͑As��)��]A�؏j��㧯�E@���$�W�"(Lྃ��K�@n�Ha�@|�
D�.�
OKN�1��u��x��El�����=�3�_E�+�P�6�KKWp��E��2BjK쟢5��r}d�,_����A�|��8����ݸt�2U<t�èn\DZӫ�;=�J���\����qa�w�?�A���&��m"�R�"_@�DzV��Z��������/Z%�z����k��u?y�U�X��2=oɋM�]�E@]��~�B\0��4���w������x�
`h�$�2�����%!+�Iw�m6�._��=#D__	SDn���t����֢L�4��lƈ��=�
��v�HG�(��؂�m�q]��LJ�[aS��Lx��b�s�s�I���fM���)��ߓ��4 ^�sTG3^�ޞ*��]>�i+"�m"����N�d'k�5j�uq'o�b0��5粤�W�l-�8^�E�,�g�:~OZhr�AS�U0^����Bv���VJGYh2$�#x���m]�lI���S
t�N�JM�����m;��=/!&ND��#�:�?G?�����}\'����DS$�h�h���"r��(i�f5.��X_t��
*���$��#dG$(l�����DE�8�964q%ݛ<S0��W��)�qz���-�,�!)���Ͷ6��;%R��*�*��_Cj���)��x����Jl3�̵/�+��b��Dž�������3XY�Ƀ*�1�[�d��#SȘ��l30)|��oZ�B!_�
Mv@� Q�:�l����ϝAB��d�V[>ɭ��6b�2�g�lb��7��O�!�M�f!@D'w�HBO��5h��4s�dUҞ߁.��2���.p�s�	ܖ�ͦ�2��O�p�P���\=4�(y/69�5�Q�	�|��R.���NZ�Ds�6L���D*��o�����q��`���LOk���
�<��Qٻ�;��vN�H҃�m��b����("i�Œ\�n���U�x���/�h�L������S�I3�Z*�O��?�H���sZj-y*�Y�f|�����u�	�?�ޠIR�qaőD蛱$�2$�g"�DƷLԠ8m8�hf���k����<�.R��ܕ��-.n�љ�XVn�g!.�D.s�mM
k��=I�(�9�!�����#x��Ÿi�pm��u҇7�oԙ�hɼfbt������L���AJ}�zԣ�s��_��#AZ��N�͋N�L��!"w�x��9��ޏ�����<k�>�-���m�yl
��O}�Vp������jѽq�+?Sց��C"A
�bl4"��Z����!�1��I��\��b�c]��+\R���휪��~;�i���1��[a˙ns��BppJ+���������������[\���t��v�ߛ:Lv(&=H9�1�r�f#��k�f��(��$��-�8�۴%��|���c�E�P���3�ɒ��%��t$]%G=�<vۺ���m�����|V�B��CQ�22�%$����E��ׯ�#��ʵ�Xlgq��:s�55��^Ńw߅�y��X�^e����
G��(-Z�4�M O�b�4H�5�9�	�G�Ab��Q�B8�ж�0e�}�v̤T��<���Y���X_[ �d����	)��(��u��kX�x3�����x�:|f����5C��6�R�{�]=�Յe�_|}�P����(��?:��WPkV�7�dp����5Џ�X�:_���xhe
�����^�ta�P�n�a�"�6��
Md�	S�J�Q!�a�U&�x#xz匄��A��Oo�����X�g$)�\h4E-#�C���V�k��5p`Y��H���A<�#]O��ҹ����&+Z����ċ�Q�8'�B�y~+b���?�q.�ÿ��R���m1��w�.��Yu�=��zm &+��1n��}���[�9W�6�����w|ߩ�X�ֵj:���C�GQ�m�jIǵ��?1|�&���o� ��V��s8�Fd� KduX`�C8�K	��v�p���"R���rhp�Ʋx���cb��� yP���>\<C����^8�����cR�`��b��JY��`�,]Ɓ�{0���y�֠K����)�M�:�)b���/�bv�Z��GĈ
����Bd��=w�̥�"�ؘ��9"N&�HYZ]@���U��'0=����2����_��c�3�|���n6�P!ճ�����th�3S�p��
�j�D�t7΢��]����l?��'N"K��I�~a��}�X[���6�
bh���������Z���Ka�J��u"�r���9��_=�I:~�������7 �d=[ �����&�Ml�씇S�7�ڗ���T��Hk+���.��7���}i�Ǒ�Gf�}@��h)�DH��ȴ2�/����~��4��DiI
) q_�F7��33֟�Gd��5
5Ƥ5�Q�Gddd��{���Yj����?m�l�OLx,-4�y��N��Q��8��!Ԡ��}7`.��F}�������c{��m�������%
U�,y��X]�v�)sȍՕe&@*��n���|Dn"���@����hP-D��@/HP̀.��@��_�}��W�w��<vW���,�$�|٤����:K;�;���ys���}�a��=������k�F#;'�1*��h�P�md� "�}�I�$�� 3�{v�D���h'v���0�s����h4U�8�k4k"���v���n��_kq����5�1�D* ��Q�AR
�)��i@�ݩ܇H`a\x-X�U$�|����+zYJ�T�M��쓠��&i�,֊0�(u���N ��eܢ�ug>�l�I�P�N{[�K���L�Qb˄�H���O B�SPY���ѯ��'|�ʾLm�5sf�轖��$��n�>�5�)(f��dkd�Rq�Ǐ��QE��s�9��ޤo�����$��G�$)���Xގ� �S�d9"CY��r�{'�>���I�@)H�&�"�$س�/ QF�|m��x��e->��9��p�ԯAQ������l3��$H��nH�2Q�}�A��lP3<���A��&�5�o��>A�TŁ�_W�=	W�`5b��s(�v"�f�5��`��
�Rx��5�;iV�/5���Q!E��12�uJE������:���/�-H
� �W���4t�W@�<K��t�_�J8����j`��2{��RM�G��ShV�0�>�%��3�l�`�!ëz��z�qJ���S��^�O
��C0D�$K��%$D�&`*�G����=�2C�M�y~2�w�꒥��r�F��`��F�]oZJM$�דkƲ�_>(hM	�O�vU.�L�k�#fy>��Q�y��ز�2n��v&}'�h��c�2�!l��3�U{�!ó�j�Hfv�#E���YdR�#�1�?�,A�
����BZ��Ý�V�	 ��!`x���2�_�]�b
�J
�Ƙ�H��E~�0G�h���d4(d�q�xpz�p��/�{<{#9%D�U�O��D�kl�՝�g%��v�<�\k�B�����z�"1��#�ZX!x2��eg����,+� >f�S$B�}�}��ܜ�#)�~�z��d)�1/>
{�����f&1�?���iv6dx��:�Ƥ��dH�P�ۍ7�:�P��
y���@[���+���Ȏ�w�B��[��m��䷛�e
�d�H�}�W]t��é��*:d�E��1'���sN�y�W :&Ŭ������K���s|�cO���*�I2y��BD&����PY��\�G�t��?��_=�ko����ݤ;����]j~���/ɓQ��l�
]�LH�;�����O�4��AOwK!A�;�[�7ɵ��̏��`�}:�����c:�2��$�8��..��$��yX�`����ZMGk>���;�
�)Q���k��.��+�����<�?��
��:���Pct�:Oh���m>��}ҥ�#j�1G��D��b �4���b v��%��!O�Bl`Z0�pK�U�P��3�ͽ�b,RԎ�y��@�0a*�Q0��(/�yy1����h[��a^A��'OvLY�
��	2x��`�2Mȵ�Uqx`���=�3�gdQ��h�ť��Ð�0���\�x��nX?kQ���N.�DH���i�}6qR%4����L��lRfb���l�t��/�l�q�B�w9�
���:?��6�l�)}�^=��%���cFU����3�d�K���7��s��^|�@0<��
퍝/����ض&���y�o18�p~�	��޼I/]���g�|���@O�1X���(�\Yb����[�^c�c���H��K�Ű���/]���M:�u�n޻M�\��NB�Z-OM^Ϭ-�4D��k�t�ɍ۷�BW.�.`�&�(���+�3Ȓ1�J�����3&U���熣���BK���z�������U�3�����|aK��e�Z[X�gϺty��ӆt����s&��<=~��ή\e�5�{�ӫW��tL�zׯ�}޹CΟ�yt@Gǐ̬��ų�ŭ/�ko���:�w���;�y&~h�O��ܧw�x���ޢF{����?��V7/��&4�����޷��p�~��/���{�F�h��*� ��2��7�~M�]yG�l�M����&N�WZ-~�}����i%�(��:� �̯3xw,2f9�z�sV�d�(5;��]^Zf�aE��
��%&�֘�[Y\Ф�jP��?dR6
���4��$*��Cv�"����
������>��s�=��koӥ�/��gw�m�a�g��O�F���>��Oi�w���o�bk���E&��
ر��^J��V�R� Cqԡ��B��
ӿ��6?z!B�{G�4�
�F��*L~Y!�X�@���_v�����,j�@k���� ���Y��~7$�6X�Mݑ�c(*��F�*�p�QX3ծ��'�h���A�QS�
J^kH,.��&����J!�N�όB���S��6�qN>��
R�
��B3p�y�R
��e1���3Q��N����y
E�B։�E M\�L���T�Th
w`d���o�d��#�p;������ȔºT�l�<��n}n}��s����Ĭ�JB������@^0J��1$7��"!��.d�<�Aj	B?�j��@��B�4�W@� =ń'���>�1������Y���L�f}�A �a��b@��N�u�ӘT&��	�4�Rx	���2�~!S�^F�F�.�}�e֢�p0r&�9y�]%����O>��� sZoD}[�����K-D.B_�&1��O)�e��s�%"�b:�s���DzCd�e��!׳l8��!�'���sk2P2FЙ����l\��V��w��mgձ&���D�
{o�|��t*�@���in,���8�w���n�Q��	��,����5�U�����P/'��c���IWj=J�1g��F;��

6�u]p���m��#���/�kt�ؽ�g��g �7����r�'� U�Df�zO*�$�X�Lx?�{T�eM��'k�\�k2T*Sq�H������$c��9Qj��d��؈L��YV��.��Y�
 ^�{���A4b���Y�+�������d�YA�R2���
Zb�u~l��r�drR�ְ�ԝd�i�t�	y����'�gx����Ϝ������A���lް�kH�
NZh]g8ֆ��k!���hܯ�ԁp���‹�fI��N��0��=S��ܙ$�����x_����s�ϩ4�<�"�[N�i&�I�f���M^3�c�~�&���# ]E6�r#����Ȑ3�,��S���9�	I+9'�|�fw��x����a�;�exH�rج������(�j2����������k:2Rgݨ?h_W���;:uP�F|�3����&ɈӮ5�y
�ͻ�i�<,�"u
{�xr+��?�љ��v����D_��V�\�W�_gP���3�|�����۷���
�(��ś	�>GQ��W�c���f�3�M��<1#ۢ�ѕ�/�v`ݾ�5}�����>	�%v���o~ˌ��>t�5"�c(�X�WοB�S����NP��ޣ�ߣ>3��ip���&��=:z���hӵ7�4��;:�	ҋ��;����:�ɋv���������
�=���nM�V���H�o3q0��(,�V
����GNB��Ku�DS��ӑ2�I�_i^���X�$�N��n^����Co0:��]�q�Dſ��t�	�˗/���'����֛oJ�ӽ{����?�_���RQ�~�!����;l�>��G�N"QUia�y ��g��ߝZ�o3|�^(�����gJ�y����1�.�/��>�9�D��:��Z=}���*+&f&�0v�����D��5sL'�'�J�Hl}t�VTmPgi����$i[��kױ+�;d��}�c�Z��ZTR��+j�3`���7�s�~nk��|�=.5|t{�^}iI�s�Ŏ�
>���՟��p��w���)��ko���\c���^�Orf��ūz}���5�F��0>�
�x��Q�������Z�-�6x}����2�|zf��\��p��<ݣ��Kb�~�]Z]���� :{�䚯^}C7]�J:sf]ڶ�~N������\wueS���10ny�
����.m��������:�Au�ʕjL�6*�{uu3�2�i�6��飜�V�:���H�LP��	�����K�Ԁ��i�I�
!�2�hN->�U+���F/u:Lf��ݬX=���������y^������G��8��Ψ2P���wd
�KVJo@��+}��Sz�W�VC���܎f����@�	�YzT{���}u�&�-Z⟟]z�:�M��j��������9�B����o��H=�B���zW����h5-ފ�l�ر�8N���*����Td3ԛI�q���AW���}y�W��$�����ۖM&?��
ٞr�<��E�C�$`��Ǹ�M
��hm]��Bz(x�ErC�q,;' z�|��u�d5�W�NC<���)5A���ErKM%�rk�/d�
H)`ƒRk��4�J��Ԓh�$�<�0InM�?��X�
W��P��y^ӘNY֝RR��$r�����>J��t�Ԧ�ݽ�l+3�,�6�� $�����s�e�%¸F=�@CH>�m�v�by�'�wUhݎ>~�g���g��.U����:.2t���ha�*��p�v��?���jl�&�H�(�2�gR��D�;<E��4��J�D[K�U%.s{^�qO�O�3��Yhz���Z&e�[r|�<ֹ[�?�*u���Y�N�������̈F+YKy�@l��#�)}�����{MQr&��ˬ��|b�*��r�dݨ
��,!�#t���� Q��X���$s9t�ƼtK^-7�S��2��`e�;E�
+�8��1�?9��Y=	7��wmxŹ3�i�}SB��L�D���5�����X[�{�d����U�0�eX<e�(�y�1�$�Uuw�d���S𺋹2����XҬ�l�uN�<��/'�Rg�Ie�y�d�#ύ�pΊ�gF��c�+�Q߁��IJ�DI�R�P%�,C]EW�T�K)CF�#RS^��F��x@��ϡ�f���v���l��
��!��4�v�dtHV�zb��Ԟ�y�y��|H���D�+��B�M�F��y��z��h}�@��Ju���آ�#[�_ˢOY�I����'�&yf�UP�j����uz\��۬���#M��gai�Ǟ����5p\-mD����>w�Y�fG ;���9�o�"r�7nd��.�,��u;��:  =��9�����m�p�dv��2<<�$;�{�c[L��;�&�d~v.L�>,+�@����v:Hs�٦����w�|4�e<d�	Wj3n���N�p��OR�=���)mn_e�AG�G<�.���c���7t��7��{���Й�
j���BR�1/ni}�F�\�T�8I�RHd���ڂ�COy��}�������ߣW,�7s��O�J�x���򮔺������ᥭ�P��h����D%{�H��X4$�Iu&vi�N�;<��/*�)�Y.�G��O�G�
�L�^`d�fBF䍮�ߠ�k���_���A�@� 6(k��RgH���Pqf�g�
�JʣM�eH��
	R��y

�KQk,�v�߷��n��V�N?m?܆1�hK�]&�>��#z�7�)z�����Ȳ�r��I�v�-�;o�-���6�>������#x�Nл�K��d�ɜ>�-6罝��Ӵ�.n�Y��f�ϜJ�b�L����qiD��kM}���p�3q���sN􉧹��T����N�]k��>��w��3&�1�c���h�EĘm��;�g�UGM�S>�4���3��5Zy�7�6����B�+%=@�oC�Y��j��*r.<��A�1���3��ƌ�x�K�p������U�K�U5$K�0!;}7n�����_����&-/���5=h���k'�q%�^{�=c�
���D#'��&�O�;���7<�a9��~O#�K�F(^���>YBe`�}!��N
XBª4��2F-�N�� ����ΐ��=���nj�%2�I�/����Drf>������|�UZ���]��>�G��%�թQ�]��R����/��ͅm��8#u�Y�I�:L��ݙ��Vk8��t"�$s!��>�t�H��$�|&UQ��Ll�Q�D4���Z"�b�t����*���ﱽ����3��\2qD�K����}/x��u:�l_m�\�sJA�?])�Phf��\����^���Z��?J<,Y�T�<HİՅP�H"�� SSH���y �w��x�@�F�+2YV�)������������#��*��
Iz�X��2Ŀ#���D�{�’+k
�����@r�I�eZ�ij_X�".�X�hxp��ם��KvMQS���f�I����o����41�k}Ն7��?2>2[R�<�N��@&B���w�@��5J��"�T+2��dX����(ʖy+���P<īI@���q�AbP���6mpf_����@TռP[UQ�`;s:^�&b�)�����2b8�7�T-/g�1�A��Y�.����gj)�1ӷ�X�,�_�v���`@<���`�Q�F����g��Yb�A�%Ĥ5V�7Mv��}*�<3I�I�?H�#�Jඐ:@C�a�{j�-k��v������L4J10�~:��x��o积Ids�^;�x2�C甡D��:��BA}d73�?:�,E�y�k2���.��ɜ�W�M��:I�py���W��ɳ�+�ᶤ�U�o4��{�s:j�XQ�>��}�k�D�
��P�H�\�!C����N<s�	P��%�w�bݏ�Vg�aam�_e��X*�(�d&�Q�ފ�W`*�^
a�j���q�u�5 �i���4����VT���
����98��u��l�ܞ�J�i��d���H�%��|J+&_�\����
�n��'���J��L.b��7<;P�J���a\WUj��7�H��W��.yG�c�19WN�
���;
��s��j�7~������Yd�
@.#9$�V���ʐ�,�"A�
�E�r�L�4HW�L�@r��+^3;�9�������$�����i�N�}��f�S�c#+�8"eX��hS��������ᳱ{MR�_�l�q��M��ET����؇A:v^��{�¬��ܑ΋���t|�K[�g�P;�,
��h.ӗ����wn��s�#q�����t<�S�]��3z���-��w��'��[LH�0>��b��fG�L�5L�uy��k��_�����--o����]Z�9K_}��hc��1�;g��]eCA�H�L�_>��.��΅�tSm�I�Q.2��:��:���>;;M�>��7��ۺ�c�9=ytL���~��n����wE��P(�ףQ�ɘ��b�y,��υVN��^��^�n�ѓ�>�hMM��K�j�@�6��F��@@�T�DJG�Z1˜�Xke�䱼ċQ�ݡ�k���c^�G�ȟ- ��)��e�'ß��}9_�cw���W;;;"1��hH�.]����G�h���s�2����g��k
���G]�+Lj1�$c̍�
��l�����N�L����1�g�mӟ��s��֋�k�Dp�C8>W�hT�5�kQ5�EȢ���|p�g��w����z��?�W��#g�۟^w�	���kV�Vڹi[��1�w��1 :8�?�M ���w��G&�A@��E���E��l}�)*e�t�%�F�ʐ�u�%�j#d��Z=�_uT���j
�Pe_I�)�g��O���c��Ud�:�/㵪������H4�W�ɋ���j�K��~����ɉz�����&����s!BF^�y�f]􁛈6��k'�����vE�Q��~�N�=��`�ʢړ�etd��������9D�AZ��-�l�^�1�@�
��;t�ƀzg����z�	�i��A��7��C�����u���]<{Ejze�#dC�kr�5)�`��J���=���U�".�O0�GI��v�7�=�O*e�,��i�G��
YC����F�#~�U��	�D��҃v?ƭV��ݾ�(�"_���?ƭV+i�L�ٷ8<:�����4o$���bk�����B���S�`��>�+U�0���޹�����X��LA��s]���5�¸�F��6�i�Hj�����p�˄|1jގE���)�����E�%~ �ɚ�I�I�hļ�}՝�/�{s�y�X�(�Ocs���ٰ��^aߊ}��2���Lc�!k�e��
(
�:���{�p��VI%�`2tQ�
lKۃw��!;H|8� �J�l�
�D�:
^C}��'x�B
��
�Թ.w�k#:�Y��f"]*w�B��~�rV�V఼I��Yؚ��EY��r+Ʈ}O�e���z4}����m���f���̤���g'���$�,��m�Ǖ>�U�p�8��a�}�}2��xr_.vβ���)û�v�\���j�fC��~���nm�3ЬO��h��g;�˹�����w�r�f��~��m_#�_�gG�73� ߌυ`m�D����K&s.�CgaA�,��©��M#]۝#>J����T"���:�2�fZ�I޴<�]$�e�7��
;C�ji��j�꺄q�v2r؎
sOn2��|=*�0����٣�60�>)�Ǝ�l(�?�+|2Wܖ�v�	5Ə�!52���)7F9�~�FJ�,��4�8��3�W�/I�J }+�1�%fV�������5��'K-��1���`w.�g ����`]��)z���5Ve��4	�[\h<��G�D��1�#���?�H	��m��4�#M�4F�"�?'�>�4�'��1j�E�2���L� ke��@h`df`?djX�r��D�䬐�aYR�ܲ;�<��9+�~H�D�
��$��=b0[^���&/9�)�h2F�Fd�t��'�8�=֖�i�S0K]���u%�|�<�_�l��ȃ/ʬ��c�&��^���9�Yם�U�K�\c��,BD�6�]ߤ��[ta���	-�-:����r�D|ye����곃���t�������7��>��s�q���B�P�#(?=�{�VV��z]5���}&�F�Nz�x
��r�:o�.zO��Gt���7zt|�護��������'t�۴�6���~�56HW�h�����}6�ϳ��@�������/�����Z:�657�R�\��c/Ŵ2�#r�IwPHA3��V�����dGx�E�6����<|FO�w����^�L5[3h���F�!XwY������#�x��r����2�����C������Y&ni���ѕ?��!����sl0��t�f6ds �cooOGD�.����}�|b��---���f�
��7@�iX��tBr�9�M�Y<�̹M�3ka{�m���u��C�'0���֕u|ފfƌ��NR��N����_|����P��댭?�H�v�
���[�XƮM�W�d�'վ����ss����M�?�ҿlj��*L�2"�-O���b:�A�\|���%J�1!�^*K�{,�~��KV$Q���$(I1Oo�>0��F����eu
R��2�O�d��(j/�\�D�3���A,��C�5��Q9bܟh�z��W�§�s�E*�=b�9i#��L�D3�1(��P�Л��E�E~������3��������vi�`O����iѨ�JH�D�fD��F@4���M�z�^���G}:dBc�Ż��%���Y���Ʉ����-#�O2(P�22;��|��3���P=�x�Kʠ��s�H��q@{�'tw��<���A/��L��[��<�<���7w��ە,bzޣ��>����I/3�qni����f�.2]�0�#�:Lt�U��e�(3ܹ� �m��G�cys%��D���{�Jv=y��v?���E�Cp�u�H.E�gd�M!}���A c;a'��d�:n�z���mdZ$�Ǽ��Z��յUr��t�����]�7{��F^ld��^J�{���yi�S�E=0=��Pr5�L��eE�C�:T۾p���.o:�G��@ ;����7.���E�G����<ߤ���te���YŊ9�e$q"F�Ȕ��"��6I�JC�OԞa��bĈ��L�2$�$��P���º��~vvGt�O���ȤƄ.9����M`�ٽZ	�/�F|轕}���dk��K�J�Zc^�[[��oPX�G�� 2�d������(y��;ڎ�nI����>Ѻ�'�UR�8�?��#�� kl�=�AF�i]�5`���	���+'�>���)���\�"�{�I�h��go�+��>Y���o�6��7l�����J����fN���|�KF`n}�Q ��=�f��ci����D 3ڮ"fB}�`/yJ�L��L�%��zYFې̖m2��ʥ��?4>��l�Y�CqR󩦯�\.~���Lc�N
sT�B�U�)�>�L����H�?y�4T" ;2;�-��1Ͼ�/�([&ăd0�J
\p&�d�8�KˬS���*3X�v"e��1�B�4L�����<�lέ��[��|d.�<�׬
YP������d�m>� E�� ג@�L�v
�PU$Ŝ���zH��ъ�#��r���vaB��Em<3�L�P�@@y���!�B���2Ҝ�o�9o.�q�j 45;DkyH��$GM2���6�H��x5���V�g��a����:?���T���SXmx����c�>�#��0v��^��=�x���m���Ӱ�Yל�n���q$���hIEND�B`�PK���\�s�D��%assets/images/settings/stemplates.pngnu�[����PNG


IHDR��
	pHYs��sRGB���gAMA���a/IDATx�T�jQ��d�Ij��	:>�q+��BѺ�)Th��
]�k!�֍u-��E*XhE�����	L_@Ӆ��3s��Mb���^�s��s�w��s��cfF���Tp��WR��5Q�:�+�teV�p*Z��9W~֤)�Q4�8����Q�*�K��a����� ����^JQI��`��M�p�1>���Y��*��o���vK��)�%���1I�HR��^D����i��l�+<�P"PfU2/�@ƒ����o�W?���
O{,N�2����$%�I��u�`�0 �ϳ�;_ޟ�f�Δ;�B]�t#1j�?���ƨ���GY�ʧg�F�a/�!5%���%��:�({	
yE�r�F�lkS<���/�<S����P�`�.��c��+�-ן���\Ұ��j�ש���%C�q�̤{��\��,��gSjj�ds��
�B7.+�h��B�O��ep����a2��R.E�$j��ky0�&��ui�ܑ��\7��M��G��P��Iк��e�~�j�������Wy��R{uO���BA�Kd2�,q�6U��� $�y�Ս�S�h�I0I�6�깓3�ڤ��a�ǐꬩ2�y�c���g4o^�����ӷ�mǰd8I�c�țx�2��s^�Y5� �:4�lz�~``LD6fWwoh!�"�E߼�<���6V�(=�#�7մ��~'~\�}����#&�uX�3���2�Ȣ��"MmC�tk�>UP���v��](�~3ɠhcg@3'(�$��}Q:+:e�vo�۠ڑ2q�TZ�e(�Z���!IEND�B`�PK���\��=�*�*assets/images/settings/logo.svgnu�[���<ns0:svg xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.w3.org/1999/xlink" width="30" height="30" viewBox="16 16 30 30" fill="none">
<ns0:mask id="mask0_93_3832" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="16" y="16" width="30" height="30">
<ns0:rect x="16" y="16" width="30" height="30" fill="url(#pattern0_93_3832)" />
</ns0:mask>
<ns0:g mask="url(#mask0_93_3832)">
<ns0:path d="M16 16H46V46H16V16Z" fill="#6005FF" />
</ns0:g>
<ns0:defs>
<ns0:pattern id="pattern0_93_3832" patternContentUnits="objectBoundingBox" width="1" height="1">
<ns0:use ns1:href="#image0_93_3832" transform="scale(0.002)" />
</ns0:pattern>
<ns0:image id="image0_93_3832" width="500" height="500" ns1:href="data:image/png;base64,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" />
</ns0:defs>
</ns0:svg>PK���\��@�U�U!assets/images/settings/aiosrs.svgnu�[���<svg width="49" height="49" viewBox="0 0 49 49" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="49" height="49" rx="5" fill="url(#pattern0_1499_6271)"/>
<defs>
<pattern id="pattern0_1499_6271" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_1499_6271" transform="scale(0.00390625)"/>
</pattern>
<image id="image0_1499_6271" width="256" height="256" xlink:href="data:image/png;base64,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"/>
</defs>
</svg>
PK���\���ct
t
#assets/images/settings/template.pngnu�[����PNG


IHDR�e��	pHYs��sRGB���gAMA���a
	IDATx�[�n�y߉U�o���nv�I6�<�6i�%��=���!�0q�1��Nb��\9���k���8���3aH�`�q,"���-�h�2u��nv����ݻ��{+�����W���My<�\����֪U�V�Z����S�!���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt���D':щNt��QP.��~�9,�-�[���B���Gi�}�2������.�/���Y��qBy�_��^^w��ֵ�h����������mtpy�7��2�z��
�\;��;��g��_��T�F�����(�(�_�eX~ݯ]7����������򕯔(���.v���z}�q��R��~��_��_j������Ο��'�������SϷ�������-���g?���_�km_��+�䚞��>i{��A�"���O�DK����Gy��ڶn��g��/�2���{�~��͛7�����;��;��?^����ҿ�����L3ݺu���?M}����܇>���?L��G�C=�#�ݻw�K��>�o|�ou
�l��(��>���O�7�|s�������?���j�����?��v�}��W�c��;��;��̻��˕+W�׿���,Ky�ޗ_z�v_��}�v��7�����u�n���n�����+���%/縶֧��}��ߝ_}�ՃN��z��IY�[�1�����q}w�:�Q��մ�6�P'=m¹9�ޣ�Ԟ�W���W~�Wڻ����x�]�wЎyw~OmI#O���'�ğ��'��L��{��ߟ�/�;�����8��k_k���>���W��_I���{�쓇~B�ϐ�
ķ�-i�=�G��o�%�~���Gt�<�ԛ����Mi:�}/��^�|O�I<z�e=��h/�3��8��Yy��
���yy;/�q>4_g�x��r����,��ƨcl��6V���`,���h�i�����	���;�*ߟa빎��|~͑:xc���+s�2�`�B����)��M3�P���t]b&9��:��"��i�p�C������;�W;5�GyT���{y����W{DYj�����e���ܺ��{Ķ�*�Z�:
��=^V>�t@*F�UЏ�|�
��r����g2۾	����\*�d��0m��A�1��
`R�1��=z7]� �����:0/Tl�J� �:W๐�������,K^\
��4��?���{��X�z��x��@�m��d�{뭷�;���}�s
�:���<����(�
X�YT�X@jX�m�G���i�x��"��#iq>���4��9��"�no��N��U��k��O<��H��Ν;-����\�����Ȝ{����ԧ�T�b)�}���1�P���P�9���=�u��byV���v!�	[ړ�T>�w��A ��Tp���bu�I�������&*5�"�Z�o�r��_m���A�,�*�o��w�
���YK����~C����!��o�,J�	}�4������䓭�:}~�u[���;���be5�Ȗ<���9(T����y΋����r�av>+��@���H�3
�b��DH��G�f^�v�̀[���SM������fc�<���dcm�1�=�c
��m��̴�����e��b�=�A]�9�����P��i�>cG/Ku����M���=c<� ���[��ͬre~��{S�gͬ��7����ڦ��'���=�3�	D�C���*ӽ��B�h����%��(Uۨ3�Cr���9t]�� c&�;���43I�]�I	k�A�Ι����Q���^'U/K�i`�<!qe@Xļ��i�:��9W�������@�5�񜒠
��.�J���Zfad��'��,ʋd��!um�&g��:�C�Mj���J�X
��>�,��H�t���%p�1@W��#��ҵ$��H�������4�ؤ�t�I�\��G�}@,��j*�o
��o}�C �9@�P׸�P	 �{��F���$�\�����HR�V�=��S���˅ߗ���V6�Vܣ��q����[���(�K_��N@��	����P���O�(˟+��Տk�����>U�Smĵ����=��x�&�� n�D�������{���-0Q�;�y�Ǿ$��_���=�,��wI_�����G�7���g��-O_I�zW�k$��H���~L�H�ҷ�N�����O���ߙ\�ϖ��uO��{���1�O�
�&�~�G0�����!~Əv��#�V����q-�br�3���/&��V�Rڏ����E�i��۹�Kyu��_ɛ�,:.�c�A@�E9�������X��;���zy�P��N�
��&hrP������1�Q �1���y����ɀ����g�O*k�;��ܨOv�ʽE�<_ʽ��x��O)m=ԁ�@�^й��m֫l| �/$�G�:�2�0+�K��0��t����n������:_F�6����Nv���%|���.})k9Me�u�ճ��)I�B�����7L��_�B%�/���X��X��T>�����^Bj�;-B�N���$yE2�%{_���F�Ь�ҥ
N��_~y���W@j��
l۾����.�PD7n�h`T�V�C��Z���$�{�X��Ur[���,@�Թ�._���Tp�	�
��LpG[�"yH�>�8[�~�\�o�K���ڤ�U���>�r�볶�j�v�<���9��tʇ�_%�z^՗|����-��IB�6�rh��
�J�L�tQ��}q�
�К��������;�II�t��z�����o�F}��sHڋT$�g�oJ�%�) ō�,5-��䛝���e��Z��/�P�I���)�DS�U��י|�z���$��_���x��R5�
�T����W%�
>	�o�)x.�;��w��K�7����U�8v���mR7p �c���jJs����z��y�t��0fOy\-��t� ���ܦ���D��q�XQf6 ��n��O��&�vTZ:���l�-m��-��u���o>V�
���`6m<� �>���{}xΒ�4}[u٪k<�p�����^�g�s'�c��s��4��:�~�.����NӶ��L�IY�b����k�y�,�0`���2�������ݿ���10�>[�z�:����s0�VRT_~t:�H�$�aI u#/?IU9�@Pu+��
��D?��\�����Zλ�*ڵ��K��0�HSQ��8h���N!`�2f\j�q�S�
�˳.���tE'۾#�&�(]Q���5��H4�	Fy��ҋ/��t���q^ം���ܟ˿�[�՟��~�g�Mv*�zV0�<RT�_mO��Lr+��:7[H �sP��z�:���:�A2ϒ��-`��8(������5��e��F�C*���\�He��{f�s��߻�;��'B3�$�����廕ꋤ���Xn9&�G��CR�y�up+,I��b�M���@�
0yOZ�W�)#&���"�m��\/��;�9��j��Ax���|r��\�Y�b�U���R����~�P7O�.H1�6�gN;2�{���[�������ӷ��Y��l�T��^�p�\�\W�ص9�[�wƚ�0�p�™Y��h`�?��E�
i�l]�Y�yC,<��2��J��K����ft?����Vb٪nΗ�Z{�S�������ϳզG�-�uJ���4��}�����վ�:И
�֟!�����<ŔӞ)
j	�'�g�����\)K���(;��j¼&�4$���d�+��m0�5Ha�̃��o
�R>��3,!� �G�@,ĀY��z���* �7�b���c�*���x��.�c�f�@�Z�wi�{�`�
w�HŤϪe~�X"R`�+ ��h�$���*(�~����JO)���Q���@��r.�P�� ����z��\+�(���.��䵩(��_\J��o40I��������i�T�h��}�}�Q���j�u��<�V V�*�ڮ�SN��N䐬6��k�5UI�L�$���0mU�j)n�x�:@(*�CoXF||/>��>���Vz�F��X3<cB%�rN�/V"��k�&5���_�]c,p�j*6�ӷ�oH��P�mp��ηM�F-�t���@�ҵ���m~�dX���P��r=�N ���0�uZ�
��
ƶh^�
���γ�j|��L�tI-̄�/ޫ�\w�Թ���1��cl�[t0�1�w�@�Q�Ҡj��3�ic����?�����x�b�q~�-,S��3�rܠwQ�^�=�]�b�p�������˝1�ʚ������5�x~۔G	j���<�"�"�P�)u�S)�����T������w��(gx�ކyX-H��fk��X��W>�em=G���1����f�$�a�Ғ/SMK@���>�����<1O��5괨-���տ돹z�1��$���'Nn���$,��<�~l{.�I����AH_���=�H�HP�2J�t
��ZVܾ|
N���� ���Tk&@`��P MRX-�r0�����@n+K�o,_�.�Ũ
�4=g�n#m�Ҹ$}H�2���w+i������A"`S@��!�-�Fm��L��`��X�$�{׻ޕ%��=������<����X]W��:���;����~?`/O�^=�U%���]����:�-m�9�3`<�V��}�w�ֿ
�rN�z�W[�V�v^����;�<��>-��XX�R��5�2��V{Ip���5adV��!	-D��TV��w�2����Wk�s/��ǐ�8�7)��)o����K�IRz@�V ����C�R	�9��eU4�z�;�[�Zݶƪ�0잫�RU��?���Wp;�����S-0�`�^u?6�۹s��Ȟ}� ���(�P8���:u�8�;o4R�������������*�ҁE`\r�r�t�#�P	�^H_켟ʤ��ש���=D��޺&�Q���=��e�f�<s�|�����>S�Q��V�t[2�8Ű��_�֯Q��{�U -�`��̋�٥44��
T�폼
�4��+��;��ު�����0i&��T�J1w� K�Ս����nX������
���]��tY�t���:������]%}�r4�FZ���ʀ���a�ր,JK��"��MxU�XD9��|����Gϧ���?๕[���$�w[Ϸki� �*0H~΅C�DF�@�{s��v
Tp-zNIrɃ��k�To��.�0�$�zKwW��TRZ=3e#Eg�
jk��������toI��4��uwf����MA�嬪i���Tn�4�r����!��8n߄�:�/3ȕ�A:BR������c�.K����`Ԟ8�Ѥ�?����� d����{���t��	(�a�TL�ˁmW'��l'�n�,]B�⺰.(����t�m	q�	�N�mܝ�s��}�,��Qc����eJwaU�:7��#R�/|:&����`�=�P�4���%��mH`�]p;Wf#�&�O�& ��he}�[�:�\��8����/?v�gF�w�+��(���{�R:0S���=�����p �{ï.��9��i���WRY`)
5���d�<!�he��ln1j1�`̍�1��ˠ p��=-!�˲#�HjXr�!���J�O*,�c|zu��T 7ܚ����]I��V!g1�4K����� I���_��Ŗ�1�Wk��9 AR~J�,�
��el�e(�VK�T��.(���p�%P*�����e����#�
Ԅp�6�9Ȅ$1�6��J�@@Ъ���I��B�W��U��v?��Z�f�k�}��%�l�C�t0)h�r	�K|f1XS����K�V`_���e����Wn+�G~�G��i�9�hn5q�e�k5�!-��T�di��(�7��Öc�R@���%}���-}�-�Z�ji2�</��.�����/����z��v�!��|@�E��J��
�$au�}�i�^W��1�ʗ��j�ʁ�Cҥ�|��`���z�d�5��-��5V�rL�j�}��WU�\v>���#�3Pܤ���23�hy���<G�cs�tD�w/��Q��y<�n���ktݑ2�	�!��h�������&�wPX&1��1�[L�Lє7T}v�ҦoԒ�q]�vm�G:�U�f��׬e���|O#��z����V�д���l�quruf�P����Y�\b
3c�v	789�\3���!q.@p��,��`���V���t�����,w���Z�g5�İ�"�s麞�]�Am�tʽ����4<�@,��1�i�p�W�4�i��F����s�OTb�:]�*�ҩ$�����Zd�OH��9���/�$d3�0��3R��~��e8!?RW�s�A?��G�q��谽v�ڙ�OQ����7	' ���t�調.��QO�%�$���~
�-�O}�y���uzV$z�#5�B�ʵ�L�tʦ�
�b�<�%��||o��)����o�`�X�XU�C>�nI�N�|�ԓ��O���u�2��a�@,y�vx��e_��w�>�i���/�1�Il�һ7	IhQE ��ŷ�~��IS}��o%��kz��G��7�B�����։\�OdI`Q��*�Xth���W�[�M�I��i)�.����_�T���|�{��i�a�r�G>�%�%؂����G����{	�2!o������ʯ-��t���f%���m���3W*f1��c�Ʈ���'��4����zq^=��>�=�	�e�>�x�hlM�v����'\2�J���10ju�8J�4�͕��9;^K�����SY��lH��k�gb���%����;N�_����&�<��"k�<?P����<��a=���ô4y��l"O燏kno�@��(>�$�g�[�<-A�M�RbIdZzi�ו�Ja~��tB:/*���T�������
W�\�Cb�uHl��Hw�6!�n�Y�&�|�.�P�pd�7�����iN�DDn���_��s����2���v��I�#C�Z�E)TW7D�+"T�:�7��rJ�O���N@^���V�tI��,��4��AT-/J�J��WN��D��-�k�_K������\�곡"@�H.��"l����m�s�Μ�+�>�K�α��R��
l�M��6f��V���R2����r��Ӥ�T�ĶI-��:.^��}�c��Ӟ���D+_��qӻ��V�UupP(���-�$����PEhm<eqO�7M^I���O��8��T_@����/�;�|#�l1àL�,�
��N�y+u�I���\�防�0�|WIm�|��6xX�oK:�:�]�����z0�S�뷇�g��ʕ��,y�X�a��/��J��'����%�%�~�{0����Dz}
ի�������ˏ�
M�f:P�կ�k9��|�}Wu�JZ��5�]H���cϘOZ���qO�{��[���;�۹�G�J�����b�P�)��C9[y+]�k�{p�c�r�
pP7O�k��mIh��Z�IˑJd��.H{1����5�|m:�8�P�c�V���#��-�����=J�7���9�q�>������T���s�ё��A�:R��u�>p�zp@[l�m��;�VG�~����$�ձK_Վ�+�g�C�F1k�hZ,�S6u� �t���l�KK�b���K4�9R�WE��$\�tЍ�c��BU�tp��v��4_��DG�)�
�$��%Q_
�|��
`�'��e	.��l�wep$�Pg$_��2�,z�%I�t^�p"i+iE����QG���+��I".�$1��_��E:�X�H%���vKx���g�m�>O�9f_RE� �s�r=�騀e=n���I�-�p-��G�<'���U�F9�^���G�%i�h]C9R��,��U�گIw�S��[PHc�gԷ&/�T*�Ӧ���=��d�6g׏E�6�K�q
!a�]z�
E(S]%�UP	����ܩ���E��Q;��cE�c��
3a�;F�[^�@���/W=Ж�L��i���}����W��������F���n<��~ =ZҤ_['��}���;����D8�A�_�O��2a����ᗕ����V�$eu!Ĭ��tyO����6�Rݝ�P��"��Kl-�MW5�
�J�z������8ؕظ0����E�O�.���|�φ��$�0T���%�l8�@���:�̣౔rh�5� dLi�T`ܽ�
g����p��+@��C���|�	h�[�	���_f�\�����?�?�{@�S���Q��덤��b��u��Z��yf�jSog�L�IB�y���K3W��&Kw���N�ׄ�S�aà�Y�v˧�'y3�%�|C�`��� b�0ۨCc�_X]�u�3b�H[��u
��8f��r�H[<�&���t�|Y�� "<!�Xd�!�f��l�P�%4$�<)=>�
bC.�9��M��aq0�
��fAޤt�3�4�s�樃@�$f:�ү�	B(��ܟ���JK�+$w�'�c�E�*� `L���:��
���l�8`2���~
��K�	@
�����.�$�<j+ ��D~�.*kyM-��h�D��L��Zʫ�]�iS&�s�v�ڎc�t)%礻�3J�@ǟ��gz�8���^������2i�I/���)K|ե��'��
7RM5C��Hȥ�˖oBu���h_���ȥ�6�����*����ʒ�e"'p��@.��dZɐʁ��P���/�mE���*�������9WE��9�iŻB7���q�,�-�1T�����'`���m����A@�2I�Q���0�����	嗊��J���8య.�	9��PH�i�rކ g���y��<2{�;�!�|}1��c�EO�wu�R&I���2;t0�'uT�	/�j��n����0_��W�l迖#�Y
�yn�yL��Ryih�G-
���t?Զ�ن��>�qpkyg�8yg�ͺo̤��}߭ g�{>YK�nnM�G��Y{�>{=F�5>[v�?�2���� ����Ֆʐs�`nr���/�k+�C�/���KY9��B�pu��y�������;$��i�> 	�k����R˝�_U�;~�����T�<,�2��U�<
@�� �R
��խ��\0)@y��`�#��WO:�E�&n����S��T�R7�MQ�1���k�I��׹
v�Z:��
l�v���o��U:�zn@@-�ۀ2+Hi|HZ�R��T]S�Gh�Ӳ?��{#�Kjo�[���1�Ebئ���<&]GWϢ󴣧��$�sJW۫m�=���'�[�o@%��V(d��R\�ےηŤǢ��������L~V��KFV�#�C�����h[$�*�gSY��ڷvxAJK�J�V}���|�X��
̼�<D�X���)�-�KaX�*�~'�.��iJsO	
�H����wZ��:��Xd�e^N�Gh�DF�>>�eЦqb�D�cN6��n��c�޿�lH��Z9mHSE�g����р=RJ�ၑ�|��ܣ.���^c��˰���W�󆁖���`����$�.m����lq�Q\^�}G���[�e�k�3J/SY{��~.��,��90��"�<5�0�/䳮bR]�H|V�|9w��ý��t?�i�4�q���?瓣��5�w��)�[����U|����[ݯ���а	&)�Cc���{P��4�Q~�V�s��m��Z�&vɈ�s�E�m�������2�̚!G��]��/�O���	H��
��U9��gH�Yu�^�R�V�|�2�C,բ!�@���a�]�G �	�#BIb���,K"G�B���n��
�* VR�٠�<|/��~��\���!IQu� V����U��gC� ��_�`p�lpY�^[��}8n�5�>\ϖk���d0K:�&��wF���p^�T`�_�޶�u暷�f�Ru�~:�L&>���T�,@���)�`Æ\������ٻR^�y���M_��`��X�I��e�\���ھQ$��Wߤ&c��cߧ&jr��/Z�P:RY���X�k�y$�l�t�b�'u��}���/^B�t�7ˤ��s��m�@K����d[����M�i_�
M�������Ԭďų%�|�#˴�V�u_�vqU1�sl.��m���q��P���P9�V�c�\FJ�!�<��<��1]d��_l��q�c���߇�z�2�
*3��s��xN@}*s�y�y,�?k�K\�!]�7e�ɼ��&k��l9fV6$��@���*���y/u��ʹ�}����n�7����T�yƱ9���>�u��>�����z���1�t����:�>�0�p��U�l��A�L:�[,];�im�O�}���ҹ���_')�/�k����Z@��:�0p*<�KjC��B��M@�` VenIe}0�TF�2]m��4mI`�䷕��P�g��H�ɉ���2�J�}��A,R�ai��Y�괕.�+���(���
��O})��Icg���(�#�#?y9�U��1�K�S�����Y%��ARlʭ�n�8ײ5@ �����u}-��@Fm��C5@m����ϸӵ�s-�q�%�I�z�*:�m��.im���1��Y����R`�B�M>5u"]�c�HRtoS&Y2~#�ս���y��|g��1��R�^]�ߙ\|�
�����j�r�塋�1���� �u��vn j�;�9_���ZH�W�i%E�(����v^A:@Y����}r�|�*��XP�[Mֹ^F���0آ���)���:�pB|^�R���ugɿ����0N�V���<>}�HԲ�i�2��X8Kj�c�����6���^���zM����`�L��,�u<�e[�w�����^:����-�:����O熴(�on�k��n��M1nJ�t��\�W��^Ǒ<� zj$�n�[��-�	���lͰܣ@+dcB�v>!�;������X��b
[̃t��:�5�Z.��c���1�yv�ky$E���"W��ER�y�
����"��p}2b�K�
cX�iy��	�O<<�y��ϗ�6K����1 2�̓DKg��U� h!���b�sNn�XNŪ�4�4�#Y�W��O��H��\$AH���9�dx�V'��"M��Z���t.�g�l
`�A�4��R. ��@-�i���2�s^�a�u)�h�hem�4���j����T��ʽ(?������q)6�L|ު.�Qޫڂc�]�ϖF��uԁ��Nv<W� �{�,��?��G�������V�ͳ
�.������V��w��+��9�a,7�/�0�FC"�-�*� 
a,�\��o7"�-e����^H2K�@"놊��'������<��@\�s�,�$�a��8e^�_F�\�dx"���,�J�V<��X��H���C�`ױ�$�}���k'�r,8��5x���2f߸:80v��Q[+.h��88e<]B��
���������3���yBt �;87U�`�-�t�o:����:N���X=���4�&��|��0�K���T�2�ୂ7%m��|lӁ�>�n��Uߪ˜{�2x\8�Z�|X��n}�q�x��_Rh�όN�:ϱ�6�Q�KYg���5b�i���ϲE30U����b��$v+Z�.�
?�
��U�@��ˌ�w��:�@��+���_��3�Ȃ��<-�I�:G��9,P,�Z^<��Pe�R�-�_�@?��ϕl�\�I�|hj�霃U
�H���^��`]o�cK�e`���K�ԭ��E����ؗ���#���DT��Y'U@
�#��R�4X��{��Ik@�Ҟ�,
@r��@A�X�LU�o��u����_*	��9�k節��9J�V����;]���P�+זiI��OARx� �Ņ&��K����Nz���G���J��A���$�zϊbƄFMf�JE����hc�a���)��$�B����oK+�y�ǤFF�S��ת��*�a�U�q&T�(�}��\b뺷l݋|=\E��e���O<I.�sr+��i��к9l��*�DzCе��"���@<���K�g)��a������չEn�Uƙ�WO	�~;?��
�����`�ӽ���n\_��:m�+�J'<S&��c��dZsxaǾ���򨞚
4�SVy⺞7ϙ��iP�T���ʡ�zh$�Vio�bedC�#Bݿ����4m4��z![u��U}�쟛�����������.Y=?��s�yv���#YA�z��[*��K��3d"�p<x�{�t�T0)�+��hO�D\׹Z��%�p)&/#,7Ԃd��K���붊�]K��cE��[o�4/����x�M
��S�M���e10��^��E��W��rw�����4�L�JYV~t 1���P��+���y2�)>2h��B I:����@���s@����������Lf8��IZY�m�ZMG�w'P
�D@�%$�*�X��<\/@�kuO�c����b�zվ�U{F@bK�9�W�c�?�HYz�-�N���^��ě6wUݏw�ʇ�������I2�;��fk������$ݗj�N%����ZtL9�Z�ģ�~���j�Dv&M(�xL����?�U��U�}Z���<@��69�����>�i!h�{�
�>�2p��jV<'����x��/�ż��V���8���H��y�ظY\(פ��S\+��QՄ����]c�N��L��_�!����EyL捕�{�ͫ�����U�	�v`�i�[��i~�rd|��@3���M��l�q$'{�{�c�ސF���[�̹Q�_�?7O^��憝���
�;�[���BGf��*��u�\gu�����c�?�u��3U��ޣ�eV%8j%]�2��{P��z�c����Z`�%�1k+ԫs�u��YR8E�J[�1�K[YN�%��jm]WT�
N ��0�t���*ɫ��;(�������$)��Q���.��\I��$cl�t%%q�ushT�v�
H��<Z��zIG!�+ ��j
�
��~J���a�`���"�o�w�^n30�<[���)�l��v�W[��l�ŀe��s��������	�(�,�$�.eF���{;~��Hn�G�9�<��oQ���Tw�ki{��b��d�߅֠O|�E�Y����#K��6&G|�;Y���|��i�>� c�Z/���Y_��HcZ��w�� `o	�A���Y�)��[�t�!�ºWzȵ�q~!�_" 鳷���J������Q�����o^�b;
t�Whn�o��5��~�c:����gEW�ͱk�k�\X��4|��8
!(��H$P:b�ҥ������]:��>���e[c���N�q#��6����Ô����2��K`9���^���\+�o���\���T��J<��>�5b��ҋ�d�V�7h;��6�_k�F�����E�A
f@�p��a�}�'O�e�>R�;�Lg�]����B
����Ym���v���J���L�b<b8��]�<�h�ݮ����w5�X,��rɃ@Q�`�<�):N���VY���'�������h=��ڲ_��F��}Mj�W����b�\�@!�l5�$���T�N�� �L呠�e`�dI���ܼ�c�CzHF[Vz�኉I@�t��:�ct%�M���nd%�PB"++�Hѯ$�kj�.Zr7o8J*	U~RI��C���X~���_�P��i
8����(/�o5��2�@��X)i%����0>���oԚ��Uѭn�ѤJ����x�g܏��3I�˽�Il���!���i���{����>Hf����;��-�b��[�$�x�຺��7��P�+h�IӘ/�|L��@.�c��G0���R�&V�tƷ+]Z�"
ۦA#�eEI��"XGv�Hx��}2�	(��9g�{�g_\�*Iኮ���bѩ�~Ʊ���L���:��|
1�\�&���^N�$h^���
�
 �����Az��d�g�4V��6�p��s�4V��Z)�g�c���K\R\��\�n
��A�j�<�q�+����1�c�
�Ae�=D�4�F����k��g���z9��u�~N�-�J�0���+䆽�+[e�
~?a>Ǜ�]J܅��q�nx�Z��R�D�
$S9�q:��F0�����P�zyF�V�������yn���;?��?�m�;��E���Z����ӌ�m�[�$��K���܍՜�tN7��R�<�f+��5ǖ�En�!A�E�-uy`�i�.0��Z)�*I���O��b,	,�57��9I<�xC������l"rc׉���I�q
`U�#/K�~�)�Y2�R�Y�*�׻��X�G��ӾwĬ�W�%d-7���g�(����t��R��1�#�W�cY|	c�"�V�q-�s= H~'@M�eK}\��j�9@fb�]���k���q�b*���?�<*M�U��Dճ��%ôK+O��Ƀ��g�y�U9Γ)ǟA�H��3)/��d�~/u��;�"�˷,��$5
�I�6� <Ls3����9���r��|[��&�y�Ĺ�N^/4��K���*ң�2�t�p҈L���^�7髨����ʈ�*�yQ����K�=�i�����T���5�+�[M�Pk��U)��$��x���M3_�J���!_e����|�
d������ڬ?;��t�c���{u�pgC�I%oSe�^t�����kp\�!mu��)m�;�m	i?�(�l�[Iߠ�����!-N�#׹`��϶�UT�=�l�Q��V���G��^@{��8�C�N��X�Yw���<X6��Yz�ss����=���9����٠+���S���<L:�m�q��&�Y����j���YI���;C�a$�Xy(����R�������P*�3����Q���DnD��?��(C��f�;p 7q/䯃?��b����\c3Ta�d�>��+����t�D
�B�B��Q�Xvx�I `^���@���D�cy�~+��&o�B%�q�f�5�iU�0P�nuoI4Q@:*`
���ً/��S��^f$@U��|-��;lRPJ�~RA0�:ui0 ����r:�%/i��=�چz.���ӽuO�c[�4��$��Q;�T����$��0�!�_��D=x.V�
��*C�혬IO7���rwa%����]�<����I�\�I�YR���}�Fd���"�Z� ��v1�+/M�^gb���'FRO��%D}Z|�X����������T�\�1T~�~�,��]2Qפ\4{Y��o6ⷳ�֖
��c+��*[�C��n� ���=a˅���V��d��Z݆Ci[���'�[W�ui}ܝ=�OFb��?7��2�y/��~��_���tu�&��\@�>��c�Y����l��6�6�o��?��;��7�!x!ǐx��t��:g��@ux9y[�rs��:ж��^���b�fo�C��m$�݊�5�Vn�����{{H˾g���k�@�GҚf���$�'S�&�+1)7�r&%5c)��"�%�/���0n!_MZmV�(�����fI�����J��y �]`XqK]��8KR�3�q�^òc�X��4��k��)��#
�T}�K_�&s8���r�O���|�+<��޽h�D:��}���m���*-�����;�ĵ^��ߥ����+e9˹I+������s�ާ�bt�s�"�"Ү�z��v�w���峥ܹ� �K=@'���V�Z�+Wʝ
�/��,�N�5w��Y}�g�羷�5��^�.������xf�$o��.�s�,d�
�
ۋ���vZ����ٕ�FA��V���gW��;wK�>�]����y��{�]��UHs˕+�6�T�+(�`���kY���|�6��Z����
)���y� ϐs{���v���Z��C�β\�`�u�H��S�	L�.���;���Z�^�
;|7��B�yj�߭�0L�v����s��R^
�v�����`�j��мq�ϵ���]�m����Ym����6\��^���_�:I,w~.Yƍ�������7�	��nUG�o��B���M���� �
W1�yV"��#�N�q�b�z�{;�0��$P,]W�@)*�1�W�::�xH�1�ː�����Aq��4>~H��㓼)�5c�x;�xh�c���\�Ү�t�����O v�����)e@y�~�K���$A
��a�g0;`�YИ�v�Ԕ�=C�����>j�h5Uui15�x�, ;:��ႡM��}:.5���N4�䠱LIiP2>���v�PK��9��ͩq���*õ������G��3�*�0+T����}��ҋW9��UD���������=8����&[T<>9K��T��Ҷ��T�l�5lI*P�g`mL&�i~unv�#��ٿ+[�P��
K�%�ԑ��,)��T	4p��*�=�]d���-wC����u��/}Й]�v�]t���r
�ܵ8:�wH:�f�3��8�|��yVk*���2zJ�Ȳ�7Bϋ�ѮR�4F
<V�cu\��畽�<_�}�_���XF˿�]A����f���/�j��"���Q�qOk��ޠ�B��K�Ѳ� Gag����ݴ�S��(����5���<�﫵F4�A�%�ޖ"�ڏ	5}�u���v����<L$&�i�\��={*�^x������%�o��e����$��ieC��T��wm�W��:�h�׆�g[A�x��Icr��)t���	�H�V|eI��"��W<�r?����	<ܮ�t�3Kt�X-�I�c�T$�И�ƻ�p��
�k��-U�,�+���ъ�lڃ�����꽂0�O��[�n��T$����'uU�# �lHxgܔ�!�\�`������%�s��kJ��٬��(�W����se����kk�y�r4Fgt���0���?�h��!hЈ�m��G&#��᜛��B��3��f��)�C>��0��up�,��L��%��g������_��!ϬJ��B~	9�y`V�#s�!��(���3?�|"��
��tI^,��I�A,L�	7R0r��h+�K&ؗ�-?�1xf}0��A�x�i�$+�V��:���à�dF �O^+l�LJ�U([7���gY�X��Q��˗��y��SWwk-�<�_Jb����!׾�>��uֿ��嬁���
��3�Qg6�V/�ظ>W��VD<ji�_�K;nה55۳4	`	Ht�PvQ��Y�����+O��ĵ�?
|�cOcV\v�T�0:�|�A��h����/|��|�nH�*-k;^/׶�rV��k�3����r�^ئ���,�ݔe}�y����p?�`�����ZuK�#��=��+��*�Gp�����
|��&�֒�2�s��_�$���[�ł4����嵜�N�cO������a��_N�c�*9�#���##K�O�G�榚� V��I,Q��;"�t;_��+X�GRY�������0�l��y�l1R�-�Uc�z�*���6)�x�@)����t��ʨa�w��e\7_]��q�]�6Ʀ�Rެ�O��:I�HSyGA�����,���E 5�$�k�>v
��<���CLio�.�"|C�R0M��		���K��F���e�p�xg����C�*m�x^n���3�UC�2Jc�����b���^��7�@�s�+��}�Y�孼*c��f�6>��/8>�m֬�?��sd���#}�Ӹ��4:��1���L&�m��晵Ӝ>G�I@�RҤC%R��b���E�$���3�$]e�7~�7
��#C
�O��Zm�����3�̪V��s!y�R`��X7�r�A�ph�����w]@�Fl�������r�|xz��~�}�-$�ˊMZ����ic��i�"	�����;�.y\K�p^0�!��<�Y�����U���ii��C�h8I��1��9����}�3����ץ���4�cL<�Gt�{�%u�jY��v����U�]�|�+%K��@k�,K����߉�����1���x7����u.2����|B���I��*;^' �	G�q�w�~�E��mt��͟�����ҧu�[���JG��m�<R塿z��g���@�c,��hEeI�=�_�Y���=\Wwr�[��0N��wHgᇒ֊���Z������Y5+�b�Op��c�,ŝi�V�#��7�r�3K��sâ��f�*aιTp@<Kk!��8?bD�N��'>�T�V��#�rˌYH�݁B�z[dX�c�?�l��
��ˡ�x��
����y�R�B�䜏��l�@�у�f�d�\�����6���b7k+s�\�������uغWu�v����}�B�nv�Χ��j����\胕-/�s?�"�m�J_Z"]�U�����?�-u�ϠS�/b��(��Y��nt%5��g#����.@P��>�Q�!A��?RX.K
��b�}В�Imݟ���ڲ&�.cY��YXc+�g����.�AV�g�W�͗���-=x�Jz졇ҋo\]AG٥��諯��w./Y�IiwA����uOcQ�f�9���u�Cܫ��Id^��W���k_�U]"�S���R�V�*5P}�9�,��������	<�oDu�]`�J2�%�����UAj^��Svl�E7\�3�����W.e&0g��i^@�&9&�x���nu�]����x���7��|�o{s���.�S�9%�}�F�{�N�������
d�g��P���[9`�����h�c��e7�DJ�S���>햁<���U~���&��$�uu'E$]��������Gs��ٟ6��ȶ���B!��j^��ǎ�WH�h�v�^��D���g�8��&@z�M�ڏ!��.�<�)h+�upg_�:v<�tnBӆ흂0LFd=��C�])����@%��`�f��<���OX��w‰V��p9PK+���f@�&>j34�����a��`4_�����p��nY�9X�1�����lI8����?N���Y�f��&�W��٥��AbЁ��!�Y8��pe}�����Y�;�v7/X�*t�����T&[�w��0]�I�;w]VW`�t�8��!$�����]+����냄��������8�|�p���ӵ��r�b�+��K����<�՟�9t.>41��~�c���;?���ʫ鍷����w?�X�@��|鏾�w
�$Wpf�bp\�����]γn�r�h�$�[���L˜��w�œ�����c�y&�'�-˲ֱ����M
 �icS
���u�ב|��ĵg{��z�����ۻ۟N�RX���э"���#鍫o���&�OɦH�b��.ў&,I��ͩ'?p��歛�u���zݾ}�g���ӟg��R��pQ�4���)��z9�t�>����D��)��tj]�Vy����W*[Z��1G77te��W���AB�s��@ V|\y]��.�tNb�L|]i�͕�f$��N[:���k\9�u0<���K05�2Bo�"l	��i���'��IJ;c�A��1�2�n@gA�1�d�d\�׍Gac9����܀�"N߆`Ů�\�ud�^�N�;xЍ�leչDi����7@t���Xs����O�]f��H	l�;_w�ד�|`��4�r�W��]�캮r�Nr���k?k��\�u����:C�ѵ��pp�}I�r²�.�(�0$�S_���ax�~�_W���v���^�<��P��.+̔|R�����5��b%,�#S��8xE�*+���5IkS�
8~��G�h*\��-��dL>�10����X�(8������Uq�5�b�*K���YH�8f ��~�,5g�g?�n�%п��ۏպ�y�Nz����=�>քuO<�p~����v}������*L.99/�+%��O WFKZ)ׅ��گM�զ~+�T,����|V�V�ݻ��<�[�t��A.�
�����?��o ��0���;]j��?sv	�ꓼ��nWa$��
�6+�&*-���W%�w�NY�^���E��R�6T����!Y/���Pc��)�{��ttt/-��'sV���rVAߒ/��{v�y7@�����fil����w��e����wi��7�w�:eӫ[���,?�LՏ�C?��,�"!�you	��v�ꈌ/	��-�_*@cĩ29��m�
�%*��-�Ѩ|du'�t���bO���/~�V��r�}�+d.��Dt�
/�mă�
���7�^�	�Q�Rҕ�q��tm�3Α7tn�E$˱M^��8`U�򈾸�	��36j�dci�G|#���+�[���VX���@H�܋�I@��
 v&���/�W�d���V�Ė�z�2If��y~𺲁�;?��U?��q#��1����ҁ^��|��6�:�eH&����}�5�0~]���o���:�/!yk�C��ۗ�O=)��uS�o�c�U-U��"�x[��q�Ax�/N� �'r����\�A�ݦ�j�R�P�I��dp��^<ԫ�V��*���<�~hG����k���c�%�-��{���;=�2 uB���Eʪ��K�&��^�p���ɺF4j�S\xIz<'�7��z>Il����w
�����?�7��+��P�3�C�:)~��t�������>����ϥ�=�D��?����㏥�/_I_镄�u�X
����&�n�UJޔ	�Ԁ���iyc�F�&�X�U
�K{����ybKϿ�xj8�m�K	go)�y�B�	��(�k��c�򥜮߽��\�t���۷��ˍ;}y�=�}>��u���-魷���u�Ɲr�C��o��?)���-�^9��/v�M��t��훷��+����Z���������Ï�R�Z���]�|��J�Y�����J~����t�Q�x�]��o�r��ލ����\WA�f��U�y���J��ެ������zzף���y8ݽy+]�|_�u�Fy�׳>���D�����!��V��5g��ն�y�g��_����#��g�n
"5�<�a�.��*"`+� ����r�0Є/Dt�3�*�ؒέ�"��q��\Ww��K��}T��_˾B_�M��DI�_���]xA����j�Qa�W+^�cIr�*&a��q��a��n1M��j���r�	{����\
O�h�8L�^�y=����G�th��A�����A���"�O���O�'���ҧ�N{}��_�n��{��)V�ʔ)�=��::�f�r7���T���g�#R1�	�;/��*M���c@V��ֶs�~ݚMm���T�J��b5��s�R��\�U��Ϋ�!Q�����I`�%�*�T����Σ>Y�l��9#D�
��b�0A����J��\����&L��&I��\$�0l�/�Ձj�:w��O�w�����������@l���Q��-%|R2<9/Ki_��˗
���.R!t`	<�2�ˀ7���Nr�Y9�_-��x��[�w�շ�,��^:k���
"�b>ׁY]n�Q�.����U�<��E��{��J��&��s
���xҦ��
V�gH,�=�I�^�!�H}��3�%���Ձ8����ڃII��vͅ��>��|�������}���=zߕ��3@�O�>��C��y����WgU6�K�t>��������j������}yn�/{��w	_��?R��u��cu�]�>��u��8�zqY�+�|��5?\襳����;��ŭt��K�N���\��\�,�뽖*��]�ܽs�n�����6���q!K�6=�۔R�IB�W>sF��%�|�J>�i��G+K��ke`	�
=�,?��K5U&M@��b�-A���[MJ�-��r=[ҙh+�<#lݣ
��(�b��A�*�5�+^�t��#lQ41�"H�D�J㒤����#3� �e� �j%�u��Ke�
?��j+��8]mIn5��8�j|R3�x� V�ן؇����IqC0��OX�\�ss�%3�[yU2̕'q������q�|���	8��7�T�ꗦ�Yx�o�Lb;��#���,-eT���9��7��>�OI1�]�si�`�е*�Lɫ�ym��i����q��^�\�0�ѵ�E��J�y��վ�}F��_�G�XYS�;-kh9�X��tdf����k���y �i�̄%��SUF�LF}�ʢ�Y7��:p�z��Z@.�T�^���ruű����8/I��@"1G�IJ|'C
-���}�Zր������,����z\cE��6�!!`z'��3�ql״�	�ɣ~x��&������ky��s��W�Ӗ�u|�֭�x%�K=�ʫ�w�}.���M��X��ݾ��o�������~Z�|�۫63�4�y�F����e�i6��������,�m�ah�4�ʊ�г΢Xb��v�z�W�\��X�����������_J/�y�|�N����[)2Ey��R�������G/�T����~��W^�/��z�ʟ�YI��|�<�ʋ�+_������ן!������˯���k�x�\�y{�n��	ҫo\Mo�u-��s�hRޗ����Ͻ�ry�J3_}�ZA�B�|�_�����jQ�*~����jY�޼V�^}3ݹ{'�ZӾ���^���V��w��_�}��Wk{��'�����p@HMI���K0#�.}G��S���'�����.����h�-�~α0�S����/��X��J�c���A畏-�;�;L����-`��6;�j�Oau�q��^)5�����O�~@^x4?�[�(���s�
B�Tx?��26 ���ru_��(�e<a�`����ݿ����u�*pۡ��v6ff6ו�ґ���V���2~�2
Ӿ~�(��k�&�:�M�?�$��W�(KY�'��a�|��:�gj���-�o
UE����)�8"�YU̺{0�4��d���=�3*�%��7�ٲ��^88?b8+Z��E��s�n���,�^���}&g
��uc!�0 ���p���Y�Y���$"`�@�9��=Kd��<[a]��K\V�ۘ���|�����g4��b����&WX��N��� w}ű;:�˅]�Ujr���[{ͱ�)�E7�$�e��d�Q{�m`9�0��u%�'[�(1T��5	��g��W�����R�6�L�s�v���O}�C���W�s�z%�S�лߝ?R���_�@h7�v����&5ۉQ�d�Lcj�B�[�%YY����y5m1y:@�{�>S���$�ܪ��0�R��a�0V������A�b���Opږd�ϲ�\k=q��7[�k7�s���u\o����K�uU�Yi������
�s6�dM_:\����j��6�����?ݼ}+.no=�+�I�[��S�o����o~�~VDB��~�+�޷x�$��U�L8�_����}�z������&���BP�g�G�P����@�Z�M�+l��7�Z�U��}	b��{������B�
*�#��ܳ
�
�\��
��Mc^\ێu͖g^��k�PԊh�@C���;���\��Ӗ*�a�!PS{�<�b&F:�뇨�3�>�>�幚���:�u��P�����:��qC��)磾��0y�I�!��:�
tnw3���I���؞��!��g+��Ϙ�wv��s�G}wZyK�"��fd�3�*q �<��d�,=$uz�{U�B�nQ�uB#�w���ݕ\e�X�V0B7�����Z�ń���>,�9��*���`,��;r�%�WY�X:���Z6d`b�	��=��Ε�m���
HZ3��1 R6�U�X�T[��^�@�}~ķW�g���[U������R���O��%�7޾���}�<���?���[Uj�K
0`f�1wLiT�O�@��g�i#�V]���C��y����ئ�*[4���q�OS�Pذ����tkK��i����%X��v0�u���Z�<wͱ4IjN����J��`B^n��w�ky読��5�����<�w<L�b������'�qY�޹z�4�.��=���]5�=O�I?���ɟ�9�P�:����?���g�"��'������P�i�@��]��=�(d.`U��0�̳g�ų���tW�P`W�s28�G�[��[<��c����օr�z�M�K|
a
�
�ʋ���a���g<��|\Q^�C��V��!�ѹt�fW`�]x	�J?y�H:�{3�]zy��\6E?6�;���p���^����aSt�s3&���#`�c����*?w�+~�<@�҄��$��p�AG��B�e:n\���عl�Qv�97�\]��;7�.����~/���g'�q~���2f�+D�J�\�j�gn���~��;��Q�
���t�Y:;/�@��K4IQ�|��@l/�~�����TaV�,%��3vS
X�����Ъ�,�H���������<̚��+���Ô9�4�E"�@�}_��r��`�8,��?$-�������3?@?�9Dz%@�i�)�fQ��>�����]�>��cuo�?g.AY"�nܮK��J׮_o0���7��^~���.CL{tUJ*��g���[E~�I=m8'�Z�,cb����Y����ު��?o���3�e��e8��ˁO��m[r�Lk����{��}�]�����T�Ջ��k�宜Q��
��9��<?�0��٥te9�e�`!dl�}�ƍ����o�U������퍺�~�Vz�έr���T���l���7�������ko޾�p1�<:\�6% ��`���V�
I����>����x�]��&����'���1|��i��=�����E����?��>@>L��f��BـYΑ.�Z��S��#�@�V�*����������>�|��O�sc����'M^
���Q@��d~�&�(���b�2~��c�j\�:z�\/�5�κ0F*�q`��d���:��[۵����*|:������<����Կ���Q��X\W�k��w>y5��~	�W+�c��^m��VR^,���T7���ud�Ⅳ
�p�(*�,�%W�_T��W�n��
e���5��I�x*7)OJ���F���LZ���E���7B�%���o�n��Uz-�ߢ�}-
H�XW7wYY��l���kW8��v�f�>�P�CJH�lg��4#ѬW��LF�S�`˾�-�4���3c�C�i��)�+-�!9���p��nj�1L0+PZ%gG]��$�w�W�-4�:���%E@=�Uzou\�8����*#6�%�w˾tb5��{���i}�6��}��@\�)��-��j��W�A�I
h�c'�}��\�;�ŘG\��,9n=�g&��-@��/%�5ḙ�ݲ����.m�+��[���ߌ���p#���4�WY)��`R,��5V�L�?y##�
����_[���Y�[�՝7k���[��a�e�/�G��7[gZ�~-���$%3o�f��B�Z��t��.P>�ů�_����@�.����^�:7�n4I�A��ޛ���TyU��_h�4=Ƈ��%����իW��V�Z@+�F��Z6VB�������ҥU�']@W����(�n�u�z����8�	�n�A!���|�-�[�b�
H��� 6��<����	_e~,>X����m ���V{��

�#�+�2�B�V�J��(䉰�Y`Vi�L�"����#>��W V�o�)��Ҳ�Z8db�>�y�w��p���~�[���&���a(�*�'�Z߷IuWQИ�����ƽ� ���Ɔ���ơ���9�e��
f�4�V(��E�=�_?�W�}�5�pє�˰{z��\�A��Ɉ�w{A�/Y8�)���>˹)o+�V����s��~^z:>�3�Zf5/�ÿ�q�"`�c:�f�Z��I�l����ۤ8߮.��>��Q�E�OV�h��N U�d	B����`K��CF��´YZShH�`(��@�6�`�)�k,W%�Ct$�r��e�Oyʴ���r�O�@�{���eM��8f �j[%/�$�l%u��u	��Q�Im�����j�>�JVG�P}��j�і܃���H����,َ�gg�z��nݼ�E@����/ҕ+��h�R֒�_��,]6����(+��]y���?;z�Z��Ϧ��3��
�r�_�z6������.��Q�����gZ�����
�����V@�:�d���z~7���i��w=|�
EVb�5	=&	�A�{e�4�*�x���?���|�GHT�GP�|��˪�v�j"��%����7v���-���K�6&����+/�-�LQ��ERK��2i�ߴT�<x
���\eJ|}�ZFQ HjV⟮��ŗ��|��o�R?�9�;�J��ʙ���D���v�1R�]���r�R4�X]Ln��\js[�#����!���כu����j��r��|� 6	�z�0Ҏ	�|�Dm����B99��ry��*Mc�kӖe��on���kA���ِw��gS({Ճb�lR�d�S�s&���.����v�,�,uN�/�߄��F\��
L��x�墧ˊ�Y�������8v��bmiC`8Ϟ�d�����
تs˫�[��,-�
r�VJ0�'S��]��Ls���88�#�f��Ń���xY����VU)�L�L�8���`�0{����w���A�*k^He�M���ې��C�B{� V���(�3�:���_m��s���z�eN�X�E��`[�ޖ(�9�$.�
^B�`�ӎ����Du��%�K�DHS�����_�G>L�RڒbW���R%�i�h���N��T9w8ݷ���k���&(�R���28
����_J��&�Cw�P��,q
<Ķ��]hW_>[�9�.�U��`r�*��Ʉ4�ISs[�`�~+ĺ��n^�+RI�R�\�\{�h�_ ��"�`M�K	ok��r��jY�����)��lj�g��KL,���Q/Z*$���Ŋ��}�2�w���&Β�潺*_����c��K����VPy�$�~�D�|�6��B�	>�w�Ư(���§�e�)Ii9߃�'�>)]��o��&p^��غ
��1���Bx��U�����c�EyH�
^x�Is8q"32.LcU��oI�Z|uQ͌�v���,�۟�LOօK]b��}����Z�'H
h�� 9�Z�ӎ�lx=heF>��Ϩ�݃�<��&�*	���̎7�h�5�~���2
�KyR�-�[�q2{e"��>M�!mn�Y=gm�e�S�N9����ר�� �v�ǂ�
%��q�t4G�����m�bC�U����r�,r�,����f��eZnd��~�w�Y�f������3c��Yfr��B��#F|��N��ib����w��R
�̴u��`�}j�I��q��ڄ�����Ua"۷�\�M�	��(��*}m[-ϑW�O\Ӥ'�p`�\�s�m�$�b|�R&��R��T��9��<6�
(-X��[�p.�p�X[Zٯ�.a}��F�Z�c7p�"��a����%f��B>�L#��z����ޅ�Sz� $r��Dw:�#�[K���u%9����U�RΉ��$�e+sك��(4��ٚv����E�\t�kt���_�Ҁbؤ�G�g?[��G۷�玻:ˮl������ N���[D��Uyj�{Y�����5��.yծ.��Ϳ��#�d��45�p��^�`�t��aZ�<B�?֢�4ƀ�7�2T�WH_K]�n}��h�Ӓ��;܅j�&���$>F_-e����m2�h{�&��;��'��/Ie����v��Ź�qہ6+7�tk�S��ОY�Qa4�xZ]��!�%/�1�v�����0,�|7�8��B�Q$��#�
��HF�a>f@�l �^ќ�+��@r��ژ?1N_I$]7$�}uR�X�\�r��Tcf؝d7���N�lS���_�-�Q�ך�&m��s��syp�y5�<l�t��⪘�
���s�0c��Z�	�9��9+h��y(L�몙M�]�WBڶزd�X&�n|pü!I�J(�;��<„7��w���\���|C�d~�n���ʀ��,琱��X���H�1�{-u@n��j��e��y:�l�i��$J�mV:�Qߦ��|����cFΖ��,eaL�4[�e+-mE��$E���Xlʒw�w.W6�"_,!���R-�+?dzW��RΣ�� p�rU;��z�ť@R	PyH���"=R�%�%�kj�q�r��~����f"�W	d�
�V4^�]��.�V��'��{��0�$Y���k����!i���N��m��:牳*?�#�Ӕ�������J�3εz��o_l�J׶\���A�
�w�ݶs\z�� []���٤���|}��G�vo��yH���U�y���<^Z�oP_��D	���i�6�k��U�ۊ��h����Ǭ��L{D}Wwd97���s�����u�qv&�BN��w7]��z�͟��?��#7Ջ�&�M�@��-`W@7�j<-]�z�x�Hj@*�:�����������=�����&��$<Ϋ����*R��V�� &�l%��k�<�X�wC(beL���}�}�xP@� I���о��K˘8X�ǔ�:��4�x5���M:�5NB��4��f���K�ܝ�5�Ϟ�&u��q�%���B�Ʊc�-c01��C�V>��䷔i�_4	0zڔ��N�Q<�[�rd����}��#��M���)Ay�Y{*����3��Α�&f����u'�/	'�%T
z$}P����A�{�͚���L�]|�
n�6�� :x$��u���&-����SJ"�7k9&f�����xQ�Na̦I'
f�Z��Ԗ��ER]Id����Yg��!����D�A���t\I��V�K��$I�T
����ܐ]�x/�2�x�%��� ՜�3h������f7YZf���ew�`Tj%�� y&������϶A�pŠ*�J�O ���,�&H�J��*�<��N vk�T���ؖt�=��9��-��5o,�7ɩI���-py9K�������t��)
B���t�����=�-�ץ��v�Dz���P�R�};����A�䡍Bx*�3�msn`��W5�d�j�+�Տ��m`7��c����G�T��-�ʥ��d��2冺��%�j
8�
���4g
���`�z�,腶�]�Q�H�]����H�TF�/)�Aҿ*,؃��=�Y[��X�L6A��}���}F�@��������,�����cm���gHq�J
����l���C�T�����j	�����'e�2 �Iz�|QFc��G��,b��_r�c|�re4���`e�FM���xs�%U1�Q2�1v�/K��0�h_$����6�	�;�h|�":�w���%��15��
F�tA�<��L��{-�'�Ћ��s2&���g�Ȑ�v5�Yp�f��.�+eT�T�f�� �i�ًJ��0�k�>s��N�����l`R�J��Ƞ�${H��d��"���@8ti(��gG�Gf �K��i���;$�IB`5����f�����l?l��_e�҄fs����`
D�g�q^Y{}|&�F[!u��H
��n,
�|�R%��2�f�_�i�f���`A�XŲW�^S��%�,f'/Z*�q�5m�c��K_�y��Id�@s�4��\m����s@s�!1����YCF��B������,�c�J��H
ˀ�q^9�q�@�@1�x��im�X8�nm#	�:h�����b�`Lp��>��Y:]��K����>�ڂ!��/�w��[�:>�������ۚ|���B9���=�X�s�ֵ��w�!`�Br�'����>V�W���%q��<
o#�$��9t
e߽�!�z�h
m
��bn�9T�7<OD�Vм?'��
���u_.����W��L�q88���Ӧ}�_ך�fo�����6l�s_׼�{t��}��XZ�Xj��
���N�u����R�U��l�Ս�6���}oP'���O�O�P��·��;���;}��}����P��ԝ �I�J���M=ʆ!Ysͥ4ԟx�:�a7��:@�Wq�&?�yD�k�t�o���e�Кp!Bf��/In����a���
T�&V�ژA����_�'!�ĵ�jI�@��S�Ӥ��w��-<=�x��OG(ܮ�^�,�Xh��B��*��X	���˽"��Ν�;v�kM�܅r��.~_;7߳!<l�	���K��i�{�ueԓU�ڽ権eT=�$�k�äF���(��!f�c?��H�'D>�6����w༩T,�;խ[ֹ·�X���l[������ud}��¹�v̞�������Y����h$���}@��`�5Ċ�k�,��i_!_�9�`}�,�WZ��-�g7��Z�*K����l�VzWPHQ�>L�|�T$��4���r�����
&���F�G�HC�*�,�L�J��֑�tD)�?�6�ۀH"P`�=d���c�#�@,�uP9��HM��#�kǤ3���Ɉ�==r����3h������]È[���?YI9t\��J�}{I)HpsHe{�t�\_��/��)j�d��WʼnF*/�H�_�M�u�iuF��Jt*�*`�k-��ҁ*�Ĉ�4��z�&�\�a�~�!K�{��T��-Ijk��V��ځa�U��+]���Ki
pPF�4m��k�YV)q��.�aU�Y�b;�n��xY��{��������9�j���x}8��
����x��r���%Q�=�Np-�����}E���x_��h\lua����^}���\�X�y����S=W5�|���1��ѽ
=�$'yCX�k7�x!:�*i�ĈT����cE+	���B��§��A��"�]|��H�\�V�\1(�Tΐ�BnlF�GB�����c`e,D�#1�e���A������PCH��rvo�q���}a�|BB۟���Щ�-2{x�%��ʱ|�*m�N���#X
�b���e�Pp�låi��[��xx)�[���{7[b=m3Cޖ��4I?r��\���z��)��`�x����^�D���x`�5,�uL�H:�Kq��ئ9 ��Q�\q|Ku`V8h���:��Tb�Zޘ�ʠ�[�*:X7,�e��'�d�@<c��.��K՗��}�/)���zXw�Uj��5ׇ|�?$�b�����H�M��"k�bYY��F\+��}�Y���]�T$m���1�q�b��+&�}��[_E���e@m<�8����_�U�>8N SY����6h�?��:�o!(��]ι��4r���5���_�bC+v�3��+��o>��S�ޫS-���̥?�J�Z�rV��&��S�v��R��
V�˩%\̶d5�
�KYW����V�m��69���dJhsJ��dV������=�.[`w��Z4�2{���ֶXb�0|*��mI��V����޼����O����G�}���g�o���H���K颳%��C��z=4i�7�:���)0�`��9x�< ө�<`G!t9����
��$7^�?;K�V$ޫ@Z��%A�[�v��J���i�@��#�W`��j�X�w^�J�J���@�Uz��?���X`)Lcc�L�Fb����$����&S�?va�y��A��o�U
$���F�P鵞O��86�R9�c��0�׳'Á�e�Cܘ�<i;,}�#�<����<1��bJ�
z�����1=@š��ii/m���n�t��!����W蕸o�<:g�2Ia㚜l0�( ����O�}��iybV!pP�.�":��:tb[[�Ӭ�Չ��		���@dQ
�Nl#����u,�by�g�a�[H%����}���p�(Zzֶ� O�W��{�F�r�?d?x�@�O:�*.e�R [�,R��m�f��%髢T�/fX�MhkI@l|#D=�R@�N����롇�/▷/y���|j@'���is�Cz5��k�=���%(k<2WC�2��RX5��M�81����c����K_q���|׼J�TOuu�b��5�S������6��g]Bi!'��z�]��i����u�Ts�_��&I0Z�k/*wv�?�ui~�s��E���D��'����0��3͔��4��X�'��C��-K����+�%͹�A{�H�[�U-!��m-g��1r�.4���g�/�ϙ���i������%}�I�ڐ~�O}_�_��d����OF*��=ʇ�p�2PYR�?��tb��;�沫�z�]��4��¢�-Hgi>ʱ\��jXD5�n0�w#0�]���C�P����>D��|��E��vN��nwi��Uٜ��T:1�	�Պ�b?%�^ ��x)��ʜ/Hg6��z~�j�H*�rݩt��IIn�b���N�IW6��[ v�$,�߸:�|}�:[�KQ�	5[����K���W�^v��a��c�V�K�t�
$=�h����ᄗ3��+�� �{��Ŭr,D[�ue�d��1�e�}x����ys������Cz8.]u�
�K��H�/R��U�Y?'�r�BZX���}�p��z^g�,u�.U��m���]��D��F�W��B�	�ǥ�������Iu���{�׶�D��H���4��!�<�������WS&�M��-����������!��Gv�\�h
�زwm��;K`���H�#�=4����$��_�����xIf���e`�Zl�����?�:	o~����������6��Q�@�Ts����NC���g��b�n/1V�L� �[D,���ȼzh~�!�y��tAA�P�2��fj�ͮR�5ؔ���ކ�g�?��孈U|�l[4|7&q����C���/!.%m�]�=ҵ���_����o*��RW>zIgI�?�z�jG
�ޕ�$'j��1
 <����U:@V���|�d�JP��v��|Qf��JU���
В�()��⑾/I��ML#�y9����;�G��D�h�Am���θ���ڒ�j?�h��X���Yr+����I`�

���K;��Žq,U�-,�@�κ N����LnC����ӖTVݰV92����SJ3|'�8F���f~4��ݺ�o!��:G�Ã�x+;�����W+��v�C�I�vҍu5���
��2=x�@+$el��8�`v��2�bK����C�ڀ�<Ё&��
�m��2�ޫ��|+/��0������2=�+�`��'ij�`$���P�<:���
W3�}B�* ݜ�S�K��!�X$���|�*>���Q8XK��DdVUз,�Hb�H�P1���|
\3��c�鴴z���L�v"?�R�%�G�:uS1p���*��Eh�C&&�}�@�I%6��`�]?��^�K1�n�?!W+e��w*��b�������e�i��~諬�����������|�fZcr�5l�oqJ�g��5�+����Ѳ�yF�����!�l�(�\���z�9�
��gj��Ûer&���?�Ҥ�w�իڏP�������s�U;������p����t��Z�������:�Vݾ�JF�=��IW���Z��y�XQ�}�^j��}��kj�^M�5�J�?:Il�F��uf�-���\�m	5��;�A���R����{
���}V���ZBtl�Z)r�p�:h-��R�L��EFe���*�f2`CJ�t�z	�:����l�aF�"Lw�X�!��X�/�^1*���\�F����Pu�X�qN��$r�v#�t�ϊBZ+@�^�]g����1�8A�����n;g
�����$�ٞ�63�uڏc�Ϟ������Ķ�0L�O�ǎK��Q��h�/��G��b߀+��W�ٹ]<���o��`���I��B%YUC��\g�y����,�5S�KDԮ7�@��2KH�}��Ս�f+Ř��Ei�5>������4f�r�����2K���)��NK0�C�}����c�4��2��ZMˬ^�����Xߚ�C�0UYں�F��5���H9��r���{`!�D�ڦ*��5��f9OL��@������4�08I����`yYR��BǮ
�2��XV~O?��t`[_��U������~I[�/�Ne\%�[�d����rP����$2�ʵ�|����^^^�OΣ�gf�_J�m���!6�e�6ggk�+�&uD����ת� yk)�e�`�[:��>
�
��U�E��{ѝ��}��������2�F9k����r޻�
�=���@��~]���������~���72�����3]J���׫?��y��#yMyJ�EоI[��2��E�x�d�]�-�8�j&�������ᩧ��	��.([
u�0[�����
1!��gq� ��^I*��fO�����B��?���ORG(����}xd�5
zM�B���Y�+�Z�pYի�ʁ|�B��eK@*׳/0� 7݈��/���	��~k%LA"+�Z�@��̆p��Ķ՘��0jN1�2��@��,�$Il#R����ud]R�������HL@Xi�>{�[a7>��-��G�j�YJ�1�Y����ᯙ��ڙ�������� �A�u?��8��Q����$�K�4�L3�|V�B�ٖ���K`B�j`�_;KY�4��K0Y�
���� ~�ُ�a��j���F�^�ta�Yd.<��W�Q'����q�RHWg�9��[g�����#�%��f��
���i�$�y��g�8/=W�#�L_R
Z$�;1?���4E��
3��B�v�X�ʲ0�n��}��밅ġ����H?a%���00��ɮ�1�HP���Az�b0l�����s�]*R�<�T��$J�Kʤs��͗��Y_��of��kҚ�!��O�H~��2��5�����h��7PQ�r�l�u������K�f\�S���K��2����ss׺�D]V9hf�\��ћϿ����ʛ�x)�|��Tn_L�r���V��S������%B��ym�]��L*��-�Nw+�.�֖}ґ����9ty�*5=˗ϖt��O�-�Vh���T��[cd���u���Į*�=�m�C�Y�Უ�2��_�o�� -.������h3�]�RX"�]Ԅ���*e^�
<��
R�ۻ��N�.�>#iN�]�c������J|���5���$#0�49��\Ij��7��W���ƥc�}f�{��<<H�ZIRqAYZ.��t��q�
]%��j�k��H�ï%�e|Ҋ�B�N�9�i��|\r�*�"���v��@����qi���V�Z�vN�ݥ�ڈ��E,Ҋ]p{��h�Hf��a��5���0�fS����2�M�p#u�—
���O�� o2�1���$��b�k��.�����c��bF�n
I˰
�����&r�����M���꼎�^�u���{`V�C6��,!R�$�[`V��*�[�
��Oz%:/�,��BO�YE�J#�̴5cÏ�|�>���!W�->*�;m���5�D��>��P�X |�j�<�X�h���|�c�~�L�����4	F�`�9�����Jj����=2ʛ�fI���'�bz��u%]�T�}�<�����Wzs�����,�X��j`�8��J�/gJ"��~����Q�5�Ƀ>���g�C��~���O��g>x���,|��f����:&Z/�v\΃^�:��R�ufy��!k�<����x���x	7N=�T��/j�ey�"ϳN���g_�Z�w�u��t��]��.���Ia�.�'?�i�|Y%�YnG��U�5����ܫ-ӏB�}�V�v�G���n�;xi�������Sӫ$V�.�}����7\�\p�\'�A幄�Ll�x��E�mmp�>$eӛ]ǐU-��kW���~�oG�y�
i�>W�z1�l�P�V�BH�^|��楅	( ���^!ݏ�
�E�eRERt1��Vy�ƖPIP�1�_��%��U%���5=�h��#��������ֆ~m�������RTD��?�O�����X���u爌�g�-�"��ǃ"����wz�M�"���f!+�B�K�Պ�_��&u���9Ђ��>���"�ݟ��f{X��Q”oKH��r;��w�\���5ť�eTO�s�t�]��#v�o�l�I��ƨ�ӈ�S��꼧{e��N���22�@���(�Kѹ:��ˠK�sXY��"W�f��o�~a!}��NKaf!\zx�Y����]�
��~�~Xzf��3����JS�w�j���37/˜o-;yX��|��+�*�R��VU���
�H���`J�p~��PK�s�K�UX(��Tg���9�tM#��Z��2�Ȑ�A�-�hhg��"=$���C� �n�j�
��/>���ڟ��܇���ܾ�v~��O���ܡ�IW���/����u!x�0�U<zp�a"����"��E���H.���E��'�z�� '���i�A�e5Q��輩���-v���r�ƭ����Q�Y�A>rSөR�
�j�|�����O��ʕ�쬂m$��߂͚�Q�Z��mQ��=\7	uU3�+���]y[�V5�VPSH{�ڮn��V��K7��5.���{�;�a�o�Ȕ��b��Uv����)pe�[��p2Q�|c�PlA4^"���e��%��R��o������CUG��П|RXW۳ʘR��]�l{
��_BV�lx�ȓ.�^x*�,7���cJw�1�W~�K�f0�U7�j����r���A���Buf�'��!�wIk՞��}����U��'��sW���F[j_.�l;�H��Y0�������\]J���{��2rP+
?�Yb2����s��s±/5J�����ur,eF�@׶���5�,E��3R���ɥ��[y/(��uƪJMH;o��i�3�	����O�a�u?i�;�oK�$���O.��fC�N�)�Z�liү)�aϞ��EV��:����N(������c��6��*��=LC@6�S��j=���o�^7�x:̊ٺ���X�Dh��"�e��pB��oW�uX��e0��uY�隱�TB� "k�>l��pH�:����UwMWZ��������l%�	p�_�
N�������p�?�������G?��K�-�ӟ�_���GKiZ?F�,�0{�Ah�B�=�:�#�G)m2��G bN�p�
�x�j���+��K�TO?��sz�c��@/�44@at��B��*�TM��0�q�lҲ�F@��^*�o�
�ߒo^ܩ ���j%'�_/_��x���[˪t���u���7o�+���tM�L����#��b�����%�S[��o7��6B�=��W�
�9T>�Y�[&���h.k�d�H�00e\|5+8�W7��q���r���G~�<R��+�_���.�~`�]��Y/���e#�t�D�Ϳ���/��d�;�R�S9V8�k�Jk��Kc���>��n������
䢎��}>�Y2P�غ�'�1�2$�R���/[m�5��+[������u���7�_�p���J�V�.�C�k<-Vg�l���U��T�4FX�O\��T��PTȍĤ~0���W�>�����V'��. �|�v��Y@�A2+4c�YB˪���ivwn�i���q�i:�).���f����1k��`�����M	k<ܦ4��o<H�d��`HЍ���7��yF2�P���|�\n
`�o鷘��M�c���4;h��omu�9�����tZ�]-���Y�����`:�C(�}gh2
�oH���3Ϻ"�c;���4��7��u�ʴT��7�-$��2���\�X5��|U?ŷ�:@.XH��6Ḷ�R�<��<3e]BZ��k�^c돧����߯�t}�ࣗK��.���_��Ώ���@�ǁl�h���5�S�{ۼ�A��W-0�*���u�v��Yo��R.��Ͽ��V�r��%?��C�J�^��4 �
S����s:�D�J� v��_N�B��o�ݝ�.-gK�Ǽ}��re9K�X@����䇟NWz0/y�	���_{������C�?��@�&7*7�����\�ҟx����p$�+:��[� +�0N㙊0{)���B�7�]F�����`�JwT�J#�T�%�Ĥ���HeYToM�����׿��]�}@�����=��'޵�ٵ��yIJ��d8��|O����/��O���)V5Z�{��7Z��k�i�
�N�3�V+&q]_A����Ha�JM��γ8/�tIp��$�4�:�ݭ��v�S�q��m�4o!0���"�v+O�Z�X�š�ڥ��[p+�Y���tV�WRZ�#w�	c8�.����"��:n|L
�1U wݵ%���MxU�~8��J!���"��
\R��}T�^/�n�����>���/�"�m�$$�$4�1�ȅ�}��y�N��(��|�{E�>a[6'����=��@7���$a�v�b���8�dP���Ԡ[�\q��2�b�"��Zeĥ���-���֣s�ѱ�Qb���rɠK���
�}�(���.KWu�0�j���-Ey���B0��C~���p���cb�w#F�✢�Ĵ��p�ly'�:;_�t���rc��-��XKqG�;,�t0�$�,~c@hin��1���
)F���{�n[����u ��A,T���g�:��m��U�!�؈o.	l�qO�y=�1(_� �ܽ���f�t�Fy�w~%��o~�@Y�Fy:*�tH�����޸��%0��	
 j���b�ө���}��TeYZ���	�ͷn��o^[K[��!��j�r��K�&�}۽K(p�Ю��X�ͽ.�C���\�
�����._.w/^�s7n��?���_�5��{}W~��󋻷ӛ�z5?��'ӭ����[��J��ڧ^��7_x)]ܼ�����f QZ�|�a�u����U����p���5�Ã��v�p+�s��k�d��Jݠ��I�{X�/Vc��b����Fz��W�~���5��z�7�{!ݹ�(����zͮJH���־�n�lR<<��~�^�.u�}�>��i�����I	p���Ϣ5��	�V;菵/-�Z9���1��H}{���������{���&�Wz�7ԭ\� �`�r���!s;�t˪[y<���j%Խd/���D�>��2S�8��W����J$]�	�dV�hRkC*�{�`[ǰ\ǃ�l��U���w�
�K�����@����9���yP
�.�m���������"��dX޶r���%��2A`���QM!@�L����I��+�U�<�>�(�KY�z��VǞ6�+ÜJ�*w�;e�ݣ"]����f�E�Y�n~�lV+����-��t�f%hȥ����X?v�Z[��Y;�Ʋ��taI����/;I ]��ae]��f�CJ�U�C3Q���e���`M���Iv�6%���f�k6ף�$i���U�����^��%b�9���#
ΓƾϦ�;U�a
���@�t������2��Qz�$=����P��68]�� ���R����eH��O��C���zcI��wV������P��S��u����
r������j֋L��j�k))M��+����&��/<ߋL2X��>��4=�:�@��yv�~��}�zl/�l��|��V}��#}�>^�r㍫��ݭz�M�\/-���7�C�.�v�ID/	�ԁ6�Gj]~����=�Uެ���]^�����I�����{�����ܹu;���7*@]�>P������n�0�p'���Z����s���j\�:��JY�֢�����C���˼�NF�5�^A��u�|���v���p:�t)��.����[W��ຏ+_ß����x�t���V�
T{�]M�чي�p^sC��؟���^�;Hd��+�Q��F����$3�ʉ��a������u'^�`�A�J#/Ń��s�~i��Ր$��w+�V�H��]{�Kk�v�.DT��������$t	.�3�"��n�+G0�,{����Oc���5��l�1��A���� ؑ�V'�R�jx��Hk�u��9�uC0� ��-������9��+d y�^�c�߽����Х�i������vk��{�c:���\_6�ϡm���w7���9�ե��[�2��Gi�Pp�f��$�y���A��!u�bS�C�4�D.�?5�D#��+�j"���~�=DY�2�TV��&���{�YraRخ_S!��4Vb��K-�|����JG��8��F�r�v0"�4ઐ��#!���o�
p�݇<r�³��+LP����@e"y�4@�]Ƀ���I���$���^�R�K�M���T�8�
V�[�������V�&X���GF\i�tK�ey ��/�(�I�b+�;c EJTV��&y�<�$Uep����~�&�~�v.7/ry�%ݺs�n�M��ko����'=���~�֯���/�8b쿛}r�	���a/� ׬I v�u�Oj�]V�������^)��/T�[��U���ܼu3]�͛���x�W[��}���j�U��wp딯�q�\�jK=k�݋�|0��=O�?�������P��*��?����~���Xn�l��?��O��{�lwo�N����g�?�@�����W����|����]�����ҧ>����xm������t���B:ъT��8䨫<5i�.t����oym��Ů���
�>s��Wm��b^?��gQ�ӫ�'T[.�p�n����\�rVc����Bk�Uj{�N�iU�Ʒ^+/��bzu�=|���w�:@��7��:�5��E��҅��|RC�X&�\����H�Y�G}Z��]�)��.��Lt�]���b��8����/��.�
k��zX�$f��Ze�
�u�~�K�+�@,�=2��X�c�Xx��1v���+1Ɗׇ���C�ʸ"aI���g<���e�k�L��j$?�!p���A�$�bћE�WC(i�
��$/Ҋ����B��clN�`���9�-�$�=�g�6.���[v��f�m�j��d6����\g|F_tP[6tc˨F�o��tM��e\����2'��y�[�q��>��PG"�*N:�>�ހ�����a��\�)+ҋ%T
f2���|�}K�!��vr�Ŭ����p��_��J�V�Ea�%��[�B,�p�V�;��y%�\f�[��@0�΄|���}�,	mV�p>P���f�/ɪ�f���Y��<�U�!������˷#�0--�
�H��+*�-j`	'��R4?�H[]]@�Yb�r,^B�.ꠁKֻm@��உ�$D��ri�A�r����W�z�[����e�c�]��˻w�[�<�_��_M��7:��� ��K`�{j��t��Z4�������҂�ꮉ��j��g�R��[�zr��ry�~��V��E<miK��&m��
>�&E�Hw_#����K}A��S��·�1�.(��q�o�W����Z�^{���*�l�T��o��}�Gӟ���*�@�p�O��20�/}���O}�'�C3�x�ܾ}'}���|�SO���$��koֲ�?��z��N����2���/}�;�_������'/��ݟL_��W��ko���ؾ�*), ���.l]�5,���n
�S����ƛ����^O߬��W^�fz�J�_~��yNr�J�߭@K�SAlYUZ���g��f}�o�g�{.ߺ}�q.��]�V�ݻ�Gܨ���zt���=@�r:|Wj_'��K/gܞݾy����E���
�W���0����Ћ_�댶�"�$�U��PFL2[�/Z����t?��/�\��|�}V�M��:q�ˋ"��,?��ӝ?X��O;������"���k{���"��S;ËcիIh�#_�*��6��B���_����zp=��1E��)�^_$X������k�4���H�]�@�m��� �Z�4{7�Bj�}5U`��>��E�^9��`��̥�l�\'�}p��i�x&������`�Y��ܐ^�j������K6M9��R��.>��N!ߴ�Z=m~G*;9�,epo0�~�!�����e��5yY3)�^.�����!O��uI�n��zC�o�T|�u����c�閊zL�a��4�u��4W)��(b�����QF[��:Z���@��Lx����Z�`X����!�*�r��&H���$��͹~�-�u�G\������>b�Z�)����}�]�YHZ��"0��Z[��E���z�$05ߎ����b�4���
��^�J�뵁ՌP�ږ�����~���zϧ�߮��C�t��Ez����t��;�����#O���+-��k��G�AzxM�v��
w��x�R��:iէ���֝t��}�D��_���z��έk}w�J�}�r��!���WŅ��涬IJ�Ez�+ͿWc���zJ�˥�m���g_}��t����w�i�+�6wL_�|VWɷ+P��}��7S�ko�U����o���;[ҫo\K�<�p����Nz��OT��w���o���M/��j�V��/������O~�������߿pI?������7S%���{���/�ﻯ��H��.��K�t���n5nH]/�.��~�?�]��۷荒{��[��o|3<�����Yz��?�Rm�K�W���7k�ݼq�xn�����M®^�V�0����]�� +�GJO�C����6�yU��s�����U����3xX+����<��'VE����$�Ղ��$^��
4OR)�ټ�m����a9����C�d_��џK���(�w}+3��K�+>����7C�W�$� �0���-�\�ɵ�ަP��At��z��(��lȧ6y�_-��k��P��a���:$���C�:���ס� !��5�YRK�mx�i��W�kg����S��O��-��Xoi-��ܴ����8l6�Ҫ��(�>��I��]n�{7��=�B[�
���3В�|��+WI����?�$V�e�e�]D�(<��\�)�%\�Q�-��[wNq.���I�m]�`����pe-(����ˁ�tc�+�>�{�_	��~`����/_����hYHƒs��d�:u��u�bV��(�W�xQd�����d�&*}.}����*��bK�d+���<@�#��<��‹��5zp�7�`x?�oq��*�֩�1�΀���+��g������s��:�G?��~���\ʻ�|��7�ҍ;����>��K���h��<��G��}�r-CuL�b�����@M�]���3_����;x �� R4"�FEJZ��Y͞Y���jV�Gv���9�Μ�3+��Ki(r�i@A�0��|�>��x{��ލ|��7G�WfFF�y���~���K^~�xC)�p���RI��o�����<�u�M�57Zܼt�l�b��̦sJ��.L�l.@V�Kg8�Zca;9(��y:�"咆.�7�v��H�o���Ȋ
�T8���!��l0T�O�sA ׂaJ�B1�g}�G>L��їV��~�Wݟ��G���!��|�6��~�o�+�m}�۽�z���W�@��?�]̡������`<�y��������]�u*2��~���?��)amU��\o��㱭���B���A,�|T��#Hd��U�,�ι3��ܣa�п+�ݽ} ��"̡V�ʘ7�yN.����4�d��]~�����U��8�p��<g�?D�75�u���e�C� �������?�?F��L� ��3�Fl0���ԭ}홴}��0VE��8�f�&V��Lj/����qq�A���Du�����)��c���W#�;K4�q�*�a�^�/Ь5ڣ�>����w�Wg#00�a.��Š2����q���sR�o�Ư�X����:\̑(�n�v?-v�VDE�t1�)�]1 �}�<��qcc�s�7o�����]z�A��L�k�b�_�3=��UŃp��D�V[�u�w���s+�gNcYL�+��q��*��ބq=О���L��T�Z��6��g�ġ��ZvcVm�l�;�@lDͫ��u��S-%o��5)6���I�F̚�
,��X[ǁ�����XN*��{ȱĕ��ΘWX��~�U�%��W�bV�����o��.X�ٲlC��%��u֐}�$��6�}�ix_d�V+����<�U�*L��,D�)v�Hw��pB���3X��}�,�;�1��������kXG��Er�+���b�����s�?4���[	�듻;Wg�ݩf�;뉻u$�i�D��jn�'��{>FI�"�l��;k,�qx��7IuP�Žj�U*9�C��Y>w��oq>�j��Z����-J�7�.��2��p�MY�C�z@5�en4�s!;U��)��sj��x���:X�q���Z*ebT�R�<��X\���;c��gl�V�e����s%-�W��(��z��z����R.i<*v9EGxB��*y5wea��/;�e���/��+}M�!2���T�I�z֤Ϭ��6�\\����0�'��tY^Ě�ڇG�>j+�,��ʈJ��K��y0�>sF�fv�)��;��r5d#H��bnr�:�ي�s��ҭ[���hs�2�W�9:է�'�O�s���H(��/&H�
�u��ã��/��O�#<+>Ẇw)��%�ž�����b2����s�!]�f[B(ƛ��F���6���"���>�������c��'Z0�B��c���pcb����|�.N3�n# �
[�pCe���UO��s�U�s1�5P�B��hë�&�C���Z(�IR�{ZYL����H"ӭ����Ia�z���l����J�c��[�3Xb�{�D[��Xcֈ@,���bɭ�t,�fl�X>��T�u�'M�Ȁ�s�ԥ�u^��&��=����0�h[�,��"B�փ?"z�[̅}60K Nފ��(��8��`ֶ�W���Vnl� � ���Ć�B֘V�q1����^���ɍ�E��5����b�X#��lͲ,����XB,��"z�%ۢbW�
�b�1���~<A�T1�a�}a��g��X����=@�Ri�G^�����	��W���A6f#���`oIZ���w�K V-��;�bvWU����#��
��͵�W���υ��h[�8;ڶ�Ёp�l2Abñt���5���!���bq\��xNs	�gD�����,d'uF���'����)��C����܍�2�����K�R6�P����ڃUD�����QM}n_��Y������irxLY�O�t@�e�=��f����b��N�=�$��;Ni�7qG�1τ�e/0�ʔjp��z�`�M&��6���nߥ*��
w�/����ə5�*��%,�OJ(�$i(�ɫ�AF9/�W������/�%�r��P��|��*4����[cl+	���';�>G��<��6Qw��e2>� �T&+�I(\�L������b�N�LK�b��� C+7�;%�U���������(h����6��"�U�y?�g*�5�+׭Rc��@�*�ļe�ZL���o�6���3�N�ܱ
��,��B\b�}���8����dz��cb2񽬷y���`�D*!I�{,�gӞհ���slc#��=�U�kE�.6��-�L���[�(�l�w�
�9+w��W8G'@�t�Ѝ��c`�Rg��x��	1�} ��<gX���B�b��f�*���}���� �^�%��^�n���Xܟ��CKa�G��W��$*��Xυ?Iw-��XLkր��+���{���s��u]Q7��N9����F��DK�z��B����1�A,�V��Bb�	��x�����=)@�W^��ͭ�5�$1q'�-}G˖nr�B�I'��x4�A��.�]��-�`5��l��CߛEbzkxo��&&�B(Ǻnx�5&�Vj.N��-[����V����LJ�B&���qe��!����c"��@`_UF+X�?�Ƹ�{�&���,
���曮 ���{�k5�,X�q��5����haA��w�a��K�
X��B���	�'@�_�7�����u>&ͅAZ�-&�搴�
�fn@ĵ����	ɌA$hE�=�X|�žL���r������o�ahZ^��h���>�{]Bh�>�M�N�4���\C
&����r��=[�z*�r�r�F��cGGÌ�����N7~��K�>����_��t�_�>�c��ᘞԠH�|Lc�޺Gn:��w��+�ht�q��?���q�3��Uq!W���������jb�N���^�	�\��*�T��K6��5�h�-W*�\?�M)�Oh�>������0��W�SRvR;�ƃc�%i��Q���$������|"[��"�K��X���_ �W�T�A�[�(f���=��h���i(r����_
�
�eۙ�1ȆL#�2fD�<��n�[\\<$�����x��T��R
�^E�º]�Mp����5塝pP
L����b,ݿ��D�'��q��e�k�{����P�� 7�� �nݸ	�o+�5x�`�!�W�(�b���1��"F�W���A:���?<�wEAf��l��sd\)yq\��C�,�|�R������%,�>|����1�q�V��lL�D�@X�'��,h����M����a��\�9ƒ�B���Y�Q1��l|k�3���+cr���`-���yA��MI��m��Ff���Dz��Z[@���Q���W�J�D\Cˁ�S�d�>[��'ô�xy~E���m�*�X2���A��+��%l� Q����S���,�h�b�v��"�D-��x1$�mⰂpC���X��V�"m�"�6�)��>�ju�/��8.6�K�x�@󫔆i����r������O\N6O�3yB.�%;�0'Nd���I����[�Mh��41��M�2���bD�2$�Y%�D����2Y��0�����*s��mt�����$)4?��S(��%�[�&��̃:y�L��(���EG
���x�e�2������֙'�빳�J$��SʋF��0�O�=$��x�ns{"����9b�e8k��6�v�V^����ݬ���g�Km0�2W>s�LB"��U\-%N�X�r��z�Gk�|�0!-a�;3:-�֥�Ե�	�%�m�hm�Q���x��E�S��g�S�<e�?:�����\X��Tʥ������k%W/1ׄ9�m�(6t�����+I�0�L���]�ՄY�s��9�����v�\�Єw6�p��X[:-�4��M�{���b�]�S
9Л%�Lzw{I��X���U�l�7�k���?�?���nݹK��D+�U�� ׸�j�a��l,v4��z�r���`K^�V�a5i��x�Z_oі��2}����Fq��	�A�=ۿ��}a�0���Z`��W����e�0�,�z �H���&�=\���	�I�4�^K+m�XC=�$���/�KZ�S><C�jbm����m-�p,���a[��6w��R�P����y�ɧY�BcT�!�N�-�6��o��e���T��]H2�� ç���O�}'Z���M+��|0�m|
��Z���<��t���(�NjQ'�LFa�D�E��'�{�c�,���k�d����V��>B�]n�j�aޣ�8�9�K&��,ʥ��?��:d��!��I��jx(�!ϫ��x"_%M�H�v�c�q�/�j3���q�
h4M:LxJ��F)��t���yYtK��X��JvN+��Ro�ӌ<+�N����������	
/�b|�ZT��/�Uu'%�E�`z���,��PM[]��V]5|�?Ae�&�p_�涬b��okcC��weZW^�a�Al�/m�π�c����)Xظ�I��Xb)�]����~T� ����l\�����ptsu��5�Əca�`�$�����A�>�����;���"��!�ӌu��,2�f�w%�W�p��o�ԝ|_r��s�@T�����B=�4��>�^��5
J���
�M�@��(CC~d�+�e��超=,K��sц���H����Ҿt ��K'��'\�
ֲ�I�Îh���\k�i���ڬ��&=m�4���bL_��P!���Z�y��˓����=���",0�=���ؽ�����A�[+Bd�Y�
0��f�F�D�txt�zw��yN�
m���+�|���N�W��Ȏ7eg%�KU���{h��%�n��MMa3�\�>��Y8G�i*�&{AWL�Y�`�i$�1ZՊ�W�����eu��whr�q^kJ����p:S0�jP��%@��6	�imK����W��ժ%7���i{�r*���cS/��!�*�H�4jX����\[�NRc�>_����(O�>吼����A�<��j�����~�����H���*V��*Akua$�������z��z��#~�^���W_Xϲ���ј/�;����u�T*�/�q��B��2Y(���������/(и��͢���*i�`?�(�WbB%���&�$<�f��n�E�@Du,tD���V)K�|���G(�AI8w�o����+W*���C��#��B\()���U}���ϫ/�ί��z�W�t�1�����`3��?�ވ	R���#l!H�%~�b��՜�{��ƾb���HY]4���ny� ����f����?�>�:o���G�;Q�?DwC���'�L��!�X���=�GxfN�\=ӊ�]9��g�|��y����xh�~�nN��F����b�>�S�7�zO�<󎚕u�cE�s
��(u2S^Z
!2��=j਱�5x?�@��[b�n��n��LL\�2����8��w:ne�_����o�|���bg�`�P`
�Zȁ���3���1�c'�fel�1�rAk���Mj5w	K��a�p>�LD�G�N�_W�3���ߕ������"p�x�V� D@��E=����G7X
10�ՖX��
`�(�k	��t�jVJ�z�W2m;��T	�qr�];>�e1*��0��IrE�\^X���MJʧ��4�f�2ՅD�d�'5��>��B���
�N�c�C�G�%���,bII�B�aʼn�Ja�wRwTв����j��=LpK�Co���}�eZX��DE��u���i���b��KSj��Qn]>X��]ʨ).��Af΋�{#��@�+.�[w��P���&��B�������ڮ̋���I�<�s
���v�c����zI��w�KM�D/��=C�~.��s�V��V�bHh8F�	�2���W?K��&[��w���<��B�Lhޞ�{SE%U[�Ä�����I6W9����k��Q�h�1��9H`ۦ¨��9�	<�7��L&&m�,0���D�VC�؉p�T���JHMgy��������{�0��'5v��/�¿��)0 Q������oS0�����+��[�����'�/��懾������|������<ݿ�G%�H�:��A?��?D���~����:���tq�2�����r������Ιm��}�mom�ʇ�~��˯�DXamgi/��ku�5l�aȴu�m��n�һj+'�Y9?�V&w�j��
���yW�C��S��@�i�rp�e�qz�2�ep��L�#�C/�g{��G�X���?w��V�,cܾ�2��ʚ���P1�,F��sg9R������`?�Ci׷ظH~LlX(�l����P��4��E�?hh�(0-�y�������)<�!޹��Ĥ��Q���Fǂ�U�k6���a��;�Q4��d�
�x��Pn��Vi����4�C��j�p�ș�A�ZƔJRVe
՟.�`��<�?��L�Q+U��K3��h6(-!F�gz:�M�� ��	Ħ��ah�yR�@4&����.7�I��7��ͦ�E��wZn��3kh�hF\%��k��Q�Ĝp���l�T��2K���ox5�Y�Β��(�	��55�k׮)a��Lf�H�2��|z�i ��R0�J*⽝W̾Qbc]��ӫ��J;�׀k1��l�|K���H',�p�e��T~���`a;�5'H>,7Π[Ͷ������o�P��V���
��fm{�Y�X���X$9�ta�&WJ�1x��l��|��O��՘̸2��8�6�@&qӊKe� �Bąk&���6���fՑ!=�'���h��
_�0[Qp3���-1�RG�׹E
��3@լ`\�Q�<(�s1�a�v�	�v�p.5 i �ۃ����Å���b��JÃߨ�{�U	
�'�`s�٢p��0
��d�L���"�@��t:H�p#�k����A��CB��4K���+�|<�Qw�Й���*�eR��3�r�Oť��L��r�:�pӃ`�wo_��~m2�ɰ���h&��W�F�N_t�SguO+�+*�~�9OLr�
��Q��&τU���O:*V/����N8}^(z���]	*rwQ*Vؠ�.ЌP:v��	|�
�����'@z���?��2QN��v��������|����w�������Uua�s�F������pH��ӿŏ\�H�����O�B���x<S��ƅ�.L��}���1U0���k�������F��>�Ǿ�/��/�2��4.������'�?��(3��>��M
'.U.���%„:�($�i��D��u4����*
��޿�K�X\�@'`߼�V�������Q���3�UXIe�Ȼ�U�v�i�]�yM����p
����T�D��ph0�z=8l=S��h����Ƶ��9���Huh�J�S�a*�<�o�YM��'�df1�nK���)��j�/�U�eGGO~�+��q"��Ǘ�(l���O���Ό�̷p�(�����R�b::�vo�WYYp���L:�x[9
1}�-�	�;"��dg%?R�YA��P+	�Z��if㉏Ɇ1S)W�\�*���.u�Sד��h��g��٬O5�-*�M�s����_9�������t�/������4`���Tߦ����/��o�����w�ҬR�`���� �l�7�.lg1� ���}��m=�%��1b�.,^��+�l��3uT�v�"B�j0�F`1��g{��0/!gJjE(0"�g�X{�"���M���7��8�B�`�GTV��K'Ps��)�%�����'.qc��.��hE�٘��@fS/k���9���-
�u�q�CG��q���	�D.�"��,.I�`p���2W��t�+g3�س������3��G?D�=y���F��ُ�>��tS��6���������~��s��o����Ǿ�T����� 6N#v����ZD�1T7���ANy+Wl�����{���K��)��ǥ"5�x�=�I�1^z��O\�����-�@���Mj'�[L
�,s_2)CL��]q>��0-߅���6�!��G�V۳8Um�,�m�Og����FV�"��]���VT�2!ۛ�Me:#q�UK�M�|����R�(��[u�]AŘ섑�#w7����;�w��/|�^���^���s����$WyZU]�0�|��X@l�A���D{�.ܺK��041�+3��+���h*:i1+Ū1}�ۮ#�u�3r��w�
tK�F1*�u>l�w���0�_���q���!���_�*w�=~��+H�Vy�>�G_}�eV�����0E|��y{�'����|�i �����2�\
R��?s�Kr��v�7�����׮s�;p�<���3�M�G�4�6�?8��|�whg{�Nmm T�Pt,�d0dT����|�f�-߽���B
Dl�n*0�׮oo��s�x�hYK�"�a̡>�%�%�
.ŀ�%����ϓ�ex��W�!.����Z�z,�ݦǚ)���F���������;p�&��BA��x�yV��+�"saІ��s
�^4�J���ix���/6���ƒNf#[w�����7~��n.�a�H�re����4�γ��l�$1�p�9(�*;j���sy>s�>;��9d���{%!d\
�cU�i�U�Z�#n����{|�WR'��~:����1��Z�Igwv�����֢r��$'bM���\~���/��d������ҝ��8x-����=�#P�w.m9$y���pxʻ�h����|iBn1��;�\�$I�2���� &���-9�p���F���
���	�qR�1��u���;V
Ll�K�F����%0����o��/�~ހ�<�#�M���0�*�j�����S�e�c:G?�Ѳ!�߄���l5�XY|^���
g��
�je�N��5d��@���pӗ�am���,����Z,�[�+r�b��~�V�z��Q��0q�}O�'��up@�[�oz����?�������.��_���w�O����'>�M�W_v�c?@��1�Ͽ�i)���<{@N�F���(n�9�(�L�,0j�n�\}y�:�}��Iq�����Z?T'����+5�Z��D�y:�ɵ,�KC3g����Ps�1R����1�LC'��ّ/D:���xi�٪ʅiʃ����ogI
�J+O[~1�y��q�aF)&u�	���
��.��L�D���c����Dr��xή0r%�1�{�(rld��i����X&|r��v*�O��Kn>��l�B�Wn!P�6��;�6g�Ȗ�HAE����xN5iꍺ��e|m��\s4�)��cϏ�Qv�����,����y?~$%w��gԽ? I&���	�X�P�W�y�`��`��5���\S�F��t�w�|]J��p	^%9o�*�Cl��H�J-� ��Fu_���#���	����:v�ZM屾����O<A����&�#/�Z�W)���-)$��N�g#s��Ǩ5��?�����ܣ��n��ԕ�	�J	����
x���p��kg����鍛JT	���\��^m��\w︣�_A���}�i�s�Ne�4�-��a�@�+ۮ���.��`h-�
}��s>��sB����;s���}v�|�`i�1

	�x�M~����G�\=>�Xv��$1|�Nhs_�—d?u��.ȟ�#�&`�eè�Td�3?-�B(/�3�e��鴘@B5C�\�9��-æ�����ȿ|�`�ڇ;`��s��j���C��Ca="�rkŨ'?xV�W_}�ľ�G�D�р��5�&G$':޽��64�`S<��f���o�/|�!����S�||����ml��P��q���؅���w�]�d[WB,x��x2����qKf����΄>xH�5�q)/@����giv�<3#m�z�6�E�|�q_�C͍
v���!c��29���[�yѺo�g3���.�:u����u�?�n&maI^���5�y4qa$,b㊡�G��q���U���v��7��j�#ñ\86�x�����`�h��5�g�Hk�~����M��A�kX3zoϋ>g::��x��2�W,�N�I�D�.���V����V�,��cf�Y
\c���C�A\ܠx��f�F�P�M�:OQ�6��"v��i�o�&�+z�i�ⳕ��u���S��J\�>�8�����ƿ�E���w�ӏ>���gԪ~�����^j��Ӭ��j���g��_���g~��
qWK:r[�R3L�kUq#�Z���=:��-�ՙ&����qn��;GT+�UƩRiRY&�݃�����}JN��!��
��R�h��1uC����T��49W�׷YMyMX�js���h�
(��9������^��|:v�F��M�%N;0@:���\a�Ω�N�����Nd�	q���j�ӃX`�I�1�!�O|���-�Q��7Ȳw�9��0[h����pNƤ�8e��R`��[�L⟠Ħ����9\\���#�D&-��j6��S/2�SA�2X�5	Cw�ٯ]�SM���,��*r��c�G�i�,b�`sک�4�{�	(	+7��46x�^��ᔶ�2�W�l�hޟ���v�a�t�-�<}Nh��Fk�d��Y{�?S�ix����+PB�\���+�=@�ω�`H�^.��ZUcW�4�h�v/�`�&>�y�v��	�U5��{)����GϽ��n�^����smI���o��wo�<��0�����@�(��1���w��W������ N
�/@#�P�J�R��0����XwE�©��k\b���{{����$�eE�(�+�8Q3�9�K��z�)��Ba�G
JG���54�B��$��nH�G6���rWx�4QL�T�K%�<�|\��c2�H�®0���Q��hv��@�a1�t�1h���>���%��Kn�>��O�b����y��̃�[L���QZP�H�����`ӳu�2\��[����%`�Ɍ�ɳ;=Sq�JRM(GRm�;�-��I�bT���^	#�9ƭ���t}r�����|�o�oЫW_�S����w{L"�v�8ּR�ǚ�u��6?��w�>�dL�IJ̄=��ڢ{��k�d�%�ڽ���8��VF�#?�q�N�:G��ïёxlN5Z*gq.�)u�9��*�9�s�&U��.k6�V*S�,��Ys�w<���~����O<L�Ҍ���u~��SaQ7�GJ�,�.�?��.~��o9�X!�q���8	�<Ck����x��blvv5� �7k��8XK��pXq��-|�5��8���b���x�~�l�@-���-p���v({�E|�[$	P�~��=&N��E�mQn6�+.0�;a��p$Qk����,`٤����}nE,�nrd��ZATY;�acE�mΧ��
.��\V���º��
�J�'ϯ��n�Ɨ67��W�_��g�}�x�Ƌߠ�<�}ӹ3tKء�-O�J7͘��2�����w)Ϲ,]F�^Z�jJ򹏻#q�VŌ�3>w�<}��RS,��#;t�6��q[�������IťY�٘�?A��*���k2Y���~U�U���Mz�;�N_�v�ܧ?�c�Z��e�Џ�'\y����7ϝ�o\�K���/q.�;膰?���>�qwWX�!}Ƿ����?p���6y"���0߻{�l|������Q5�!.�CPW�ej�W5�g�W�I!�c[�������]O3B1̅sr>S�<y)����d��u�^ό���n�`�������Ps7���fk]&��;����d��<e_�t��<�'�A��:u�7��N��\���wĽ)�;��.w��Ur7��7J3wa���ч�)Ҡ80|�5%x�2u��I��c������hs�4�¢TϝF�3�p�����S�sueC�J.6�q>�XR�5#e�1�QmNM��́���>P$@Q[P:r&�ԫ�/Ar!
��t��r!3<�o���z۳t퍛���3�Pv�ĕ�~���CR������0 u���?PԄ��
6�>��	����x�1�C���9*�Q*�*��ޤ~��L�d&�v�Pvl8Ѻ���}0aJ>ϕ�'�/�r!�S�<�>̶�E�{�ֱ����g!��y�X����4~��f���*��|�y�f9�ˍ'0���}5�^��C�'�
���hy�ރ�<�
f���H�rKiܗ��$�umr�Γp�Űk%��8�ͣ�1�`�5�;���XǍPؙ�I���$��>����j-�+�r���Y���W_�W_�l���p%
����Ix�Q���rs���~��m5^��EA��!w	Yi����^|�5�	`~�W�H�˞�ׄ97���a.5f����5�J��bU��L.��)�S�7������9��ڔ���t�Oo�֯�~�JW�#/_ă���8��'�>�_�5�r7�J����=����C�sL�P�&�u���v���!\
��lx��#fh�c0�a���B��O�i��X�@�I���1�+��-�
���a۸��)F��')����=i�5Ɣ&
@��DX4^W<S�3XJ�Cg;/�ޅyM�l%X�L��oƖ�F�n�|�/{��Z��`	v:&ccM����E�Y�T	�qk�Kl��Z�����>t8GV��g��q`�2�B�B�3a�% ���S'�O�����}28�e����ҟ��6���Kt{wB?�������#�[��_z�J[%��w\�w�^���J�*{��R�n��u�V����c�2+2��5{�;Y�	0:�{ �+\I˄8ÜB�����V��Bu��t���;�N�lq.,�^����N�(��U����ӟ����kn�htc��S�*�$ 4�R��>�ůQ]>
�j/��˯ޥ�`�#�/\ݧ�0�;�N�<��D�,)�?�QQ;>�I#�ηH�2O�2��x��f���LZ��NZ�x�ha?a���r��y�#���4:��
��f��s_�)Gh6���G\����2ֲ�e�{|B&��~F
����R�
��e��q"�E&ƍ��e����¶�\���)Md���u�7ҿ�iFW6�\a��׉��ԓ���)����Q�mgYI���߸y��{�hms�2��uNK��r϶��P\�h��l�LaI�׬�����C2�Ҳ:E3�SK�*��7\�TX�9k�'�8[�i	h�j��yy`�4Eu
,;0�v�TW�U؋As������s�J��&�Y��JU(l�3�<C/_���mU���?�~2�*�<9�O�y���~��y�)z׻��>��/��H�U��>'.�2N�|`�t����D�p���wi<���{��>���� �
���O�i��=i�
�� ����t;���ϙ����s'���a�yx*n�$Y>��{O(R@��G¤��<Lyh�`0Zф�_���M�
�
���)�h��B���TD@��hq�@�0P�{�/N9,&����n��2�d:���q�=-����y�8�94]uh,p�G�>�a'JT���,�Q�T����嘠Ha��e��}���v�������3�C�9E73�����фL��J F(�H��Oc{�ܡ�Ρ���Ͻ5�|�O/GȾ�����c���.Ƞɳ�Aԗ�'�  P`�'^������bG�=<\�-6�x��Yl{�����jY����Ć��C��f�]Q�x�jq�Ei[K����.AѠ�b`,-EQ��NZ-�Œ�WT
l��')�.扏���w^M�5���a��N".U�Z:�ե�6D���"@(:IN��d�zRll\��I��b+ṨRE�^�#�Z=ⰭVz��v���k��f���<P�d3���d�uN�+U�xѧ8���Q2��Ͽ'�{�n�>���ǿ�=|o0u�{���x����xʓ�{�q����tov�����nS�B�pd��؀T�-���cy4a>O�kr**,jMG�/�j���.g�(�su�0ה�Wd%��ݞ�9^ZU�&��!��h=��\��@2L�
��#����u�,���!Ƶ=�諝�?G�˓�:���I�����
�+�L��8�<yZ���W�$�MG6!z���H+BV�mX�/�G27����(n���K&��Ҳҏ� ��T�2)C�H@SCݫsJ���x�ɐBZ��-Lf3~��m�hLf����Ig.�I��l�
^��U>K]�2��k�j)��¼�kU2���V��b�\�(S�L���f�)��@@1���ө��%dkgt4��P�5�iMY{菥<�дG�O^�"�~�	���@�<{%~~|I��D���0��I$��������I���w��%�1��xP�!�A%�@Y�9(#�~|3�9���4�/��T�T6���}���O�觨��sg��˯��k!�$�l�w}�#����կ��
���>}�����O�Q�M�.�w/��2oolxWy�*iI�L�7�_�}���}?��S���ϟ9��B���M��hX�L��q�0�cJ٪�R�N#b<ȅ|��{��I�Qp�#�P�%z-�;'� ��†�E+�c�! x��\��T+��eH��}��qz3��'jL�����F��<�z����<;�d��<�o�l�YX��.�~�N�1�BxE���*�$��]��Q�~>�	��%.�k�(��b��JS��n�(��x����S�./�EC���я�~LKr_M��[�Z��4C(=we�뿋�L�u-/W*����HH|�I��Ր�QK6���K���JRj@�j	�v�6��2�	�R�
�ͧ��ӆ@}�r��.-��@;m�����~�[�ܳ����]����|�L�	C�`���j����ZF�3	�bf8M��V��-��LS1��0F��4�	
��
�jc�
����[����@�)�j`K�N�3˱�lP4(��f��
(.��F)h�V95V�z>����<�'-NZt���w1f��̆u�-r��1��t1����%Z8v��	F�p�G����zk8khӃ�����Z�"�d��^s��n5�d5%V*�5�Ve����[b�iM;e�����E���pa����y&@Mp�,�q5���������9��5��MT&�;�8����k7znJ5<3��։��r�"o�f����i�!�)�e���V��LH�
C|RU�F�9�i3Dh�F��3
Y��-S�"P�`8w%O3M�%FP�rhu�N�:M$j!��\<H)"�s�'A�����N0��P"B�"qCc��O��£�ƀ�-ޕ�Y^�.\�=α��JA�M����"��Or.Nʑ�a�h����l�մ��h�3aҶu��'��pCAw�w�2�2���a��3���P�\ȍi����L���Fn2}�eR��
�+�Z�9=��
��]C���o
�G�ڝ��Ԫ�	
_W��"w�(�P�dBg׈_=*	�-Q[&��r�~��?���fB�P!����tL������|ml47���33Fv��{_�wM؎
-P�I>��28���ٟ{9LJ�8(�4@<��&kJ�TQ�@$u���|�aa�G|��=�Gk������$t�^�������tQ��꒽w��/�,͓�\����ו����+�e�/�<�{{�:q_:�}��ޠ{�v��;w�'�[ww�X\��]����έ;ʘ� �ԬW��z衇�6�n�^{�*��W����7�W�k}�i���ʱ��>���,);���a�����S�L��yz�zM]����tK�Y���}5T�S�j��Iz#X$�-��CU6����k���]�T(���~��6�����e���ȃm?�!>���|����<�����6��.+R���F��#К�b����˽��b��<�
c�"�:>vt2��́�
!�ʰ'@��pgu��&�X�`�#Ou�-��4�ݔ�bԂ	�Ð�6LF��[�v�&S.��p��}�\umQ΅"�#ްT�8�
c�4���ӱx-���j4�a*}|��t#���/���<�0zǨ�A�A��癆a�	 N+�
��QA�����:�����'�'.^
f�� %��j[�).Q�"���`����O����4	�wְA��D/`#�L���]
@6NH/����=	����O�S�I�*>��8v���'?����b	���I�*q���I��)}?�K�x�Ž��U�G��U��.�ή���brXb�z�U������q-d��]R��[����ƢV�f{ ��_����K������d�a�V]�(����(N��������X�x[�(^�� �#��H���-Z2�������qܛ��i	#�z��n�^��/��8?3�'����Y�hCcj^-�:��l��M�*��:���L\��'��K�!�u0��5�8jr��d�24\n��H�14Ye�7�Z�~�Ȩ��/��>��	��g�1��V9����5+��c9�(�>���\&-0 $3Q�4�A��@�rr#���ם��d��9����\p��S
��\c{�겿��?�VR�uj{�mV���林��=̜�.����ƺ+��r��t�c9W+ѸN'd?W�(�v�h�ٝ�����H����+��R��!����Rs��mH�M!���1i�\�.��\(~�y�b-!��r*C���<�a�N�JR*`L5,�j�ĎR��Q'@!.��!���D�}�-`Rg肐�B̲�H{�5c��v��:�= �v�i��#�J�j��œrn����9ə���--u��E�x^�;�EZ5�z5$��&A�D��4��M|I\�����`APV��rR�I�{�!.�T;B���qtq���x�Ê�]��>S�tw��C��MsaD%oV,~��m�I�#���
���s�%V�����+v�A'%QB`�+�O]1�B!T������T1�/���<����jVn8��3N�VN�Z�ѡn�zO��ƹ*(�o��i��,��^k�t �~��,*��9
�+U�T�E�3�5ju�
�䵇I+�����Ɠ㪥��T�6��
�1��EEa�ꑅ�u��u�|�Iș�hN���Y1���ϲ���g�����K��U�%�殆`Y-m�e���K��	���b�XVbb��@m�k:	>ɥ����'�AEU����`j��Zm'Z;'������(��턣m�n�
^�*��W�,N<������č޶����
l�qBW,l�jk75��6����7%��kչl�{���X��
p�c��Se=l��\-X�y
,����(����0�թ~��嶽���O��9��L9*�rY��#��:�����P����p�ع�5��5Q.�����C�Q�<����NA���;��7x�jK�vu!8	 �%���y>��)�u(g?��䫔bF�PX�pl?��f��|�)�N�� �F��
�l}�p%��hB���Ϗ�i��݃��,C�� �g6���%���݆T���{l �Mww)=:���
��\kL"���d�Ih��r	2u43�9q�sw��%� �����n��G2y .V&�2B���E
@Ӕ���b��Ҕ6�z<ie��*.�=�cMY�OR>$9j&�����'�.]�������Ra�T�D���`>�85|@�jP�s��I�����H3�{���`�pkA���t�wט(��C^)�^�4W6����gl|_��$ļ�[=��A��݊'^<��8L�.D|�u*iƿ^�V9�N�O�s�e���_�O��Q�O�1*�����6<Z��֧!�O�w��su竚3s��z�yA��N7QY,�>��n�_tĎ!�K�L���"�'Lf*5g�y�`�
#��z^}}�C!���5<C�w}x�u�q�M=T1�-3�E>�+���.�3o��+�%[Ҩ��п
}\?�q�* ��E�6_z�����U��{��Hg8���A���9��o�ѵk������}x�Lؑ�L�IF�������{T	ij��3����G,�h<R�h$ 6>��y�02�6�W�.�6�6�P��U2?�$�v��O悧a$�Mo8Te�<θO�����y�'LJq�2Ή���.��
h0��gC���`o+�:��˾��3�q��T@+}ZCz������lUū�M�oj���‚0<�+�m�bL��R�,�#�%�Al�J+�
0����"mY{B�ڵk	^����Ukx�r�,��v��<q��'��½`*+�4
aR z�.��9�G��D�����B�V��M�6|��5DMQF�r��+�iː3ບA���͉�|6�
��Y.Xo�Z�V䶊��{t.�����`�Ni�/f}�����̽����b�S���j���
f�
,������	�!�����cۯ������� ��b�„u�!g�Ǫ�xO��$�ɲ���G�Q]ݯ�/����u?��!z���@���b@�؃�W��(S1a:�x�"��`O���_x
������W�i���?�'%�/#&-
��fe��P��,LGm:��d�&G]��=D�!����iӨ��t��ٌkp�
����n4��M|����nzpD]qES�+�wFed|��NAS0Aʀ�f�Li���pH�@{g�\o�Af61���0Z�BMl���nz���;��˺���q�H~8�&b6u#�(@�jL�z5
�MjA�!#T��ƕ���;wx�>M�=M��S�^�X�0����n�Ӳ�`/]�0�u�@���[j_/c�K,
*��
�I(�,�U�a�C#�n��B��xy�0�\�-,�gϡ_�ó��s�$!K���f����ݱ������:�P((��v'/��O�?<�yU�^5eP�X�5"0@���h�y\�|G^sV���|�i@�9����Od�����KN}1h���?�(�T&
,q��/
p!�+z�d�G\{�8�J/y�����"y.�z���M����Φ7���'��{/
l�ev!����L��Of��ʶr��Ë]B�_=��*P��(��
�!S2ϰ{�z����AҪ/��.����~��d���r�{iB(
��M���?ƚ7:�~:����6��3����+��v��鹬�3��� �o0�v�K�~�DZ'ޝ�9�&.���	��_�4�z[d�]��j]�4\�'<��Bg���jA�f���X*뱡�,`��RE��0��r�u�އ:�+�gד��{RoF��\�����k�{��2M�p8b���?�l��]]�b	'00�%ff�DZ��{[�70�,�8x���/=��:�[��Z,F�7<.FUc]�x�'�Ϛ@Lz�b�6^�M����~)&�^X ߂H(��
��N�@�QvZ����MqF�b��&KN`L�I1�&��%��]b��ھ�i,Vnv���i��+��]X�얲�I���X��~N�����d�}��X��+JH�k�n�p��Qů�vW$aש��|��[�+\$-����8�r7���a�
�|�n'?Z�Z䩞�R�j8U���a�c�� GZ�����&Q�,6��%�и���.����V��(�\�9pc.,�pDeq	΄IA�T���X�l&,L�H��¥V��
��4�"�@
٬�9T:@f�_uI6R��s��B���@���ի�z��#}g�Y�,p����rƗ�JHҢ��gt�Y�3-$�1]�$�7��?����r��S����];�h�^�a�&v�f#�k�r�<�d��jB}a56*%�ٟ���*o�H%�.�j�+O��G�ڪ���\Sv�w�<�!?�I�ͽQ��R�vX�3ڎT���,�9�Jz��i�{�#5"Y%�X��zӱ���'/'��)WJe�3�2�r�V��<�K��l��X�S�K��P1���^WIVav�x�$�͍�K�RC& ��M_UQH,�?�v0�k�@�2�s�e,�*�A����b5�|�-�>�Ϊ�]G>6��$%.�������h�cڳN�ra|�;�} ���i�e�B�)�Og�$�;�^6rX��[dba5ߙ/[�\���v̴�p�y�CG��~������|�<��͎]�_~Ӂ�nZ�v�q<B<uK�W��,�o��8�x��o�K��A����q�3��~�;�B���a��/A�w ���y+���6BU�O���Vta��Z�� '��4�t8��A�G�F�I%Z�'軈K�PE�E@��!.�90���!���c5��3����7�fܬ�~?��T�&ly�Z+�g�7���_�^W ��$1exe�m�JhB��k����C苆�$!R�I���L�1M��V�gʗ��[����G�&�a8+��������w�`-�� v6J�P��6aX�bܗ,�~%�=���~�8Y��:)�hu1�0�A���Pa�XX=�X��p�m����-�1��r��㐃��J؁.%��L�;�U�i1�S�v�<b4.����V�Ȯ���Z�d�r[�2�b��(V����X��p|��UH^��f����wkZ�!����@�i#w��Y��+��R�\[K�`��c�"�o
�r��^�:>	�.m�
�䴸ɹ��!sdž_/L�et�����8��cY�Ng_�gp��<���ke]���Vh��\IP��;OL"��%�$I��1��{����j-�Z�т�Yj���.�㠤P�c�ÿ��U0/l��+�M�(gTk�$ #�0)wwP}�G3p��{��%����!���s����r�Sh9,u�N��̞cҢ
��˙j������Ha�H�H"��;�i�^��eDkU��	���x����ZB����g	o��8�][��Z-������L[���+���\B/�f�V�=K*m/ؚO�Y��
SGܛ�j��x6����68o	����+n�{�1jV&@��S���I
�¹��MN� ���-S���&̖T�l��;ǘ��?*
�b���tB�ṱj͉��l3��`|�lnѝ��ܚlwv{S�3�B����k���C��4�м�f�����Jq'�3mH��\��h{�E��#?�:a�˴��b�׈0���u
����e��U�~BU4r�෬�[@��n+V�%f��E�.����)(�q��������g���{ݙt[7�!L%*��!b.[��A�m�x���c�|�lSh��TAOB>������G�K�<b	���M�U�l�k�}|(s�Iu��U�^�@�Ο�,����06�	��#�.k�8rC�'�+�u�0����'�o����u.�S�G� ���3��:��;�ٞτ��}��7�U���w�i���T�I���v���-C?R<�G„r�c�L�ӂ}Źh֙�����U/8�"h2��I#�̇Z`��F�����;�����^G\�����8?s�"��Sn)������*I���I�Y���d�}'�J��U-�J�H~U;�r����/6������բ�X��U��6�j�����J`��/kUFA��^��+��V�(���J���)M�D+�j�T�"	.�s�l�bb3l����{Y(�PZ]��^����<K����)��y��b?�G%jWT�Z�x��ڸ��%�.�o,��ċ��^_W*t髅D�Ug�A�u�0aZ����8��l�k|>\�NlK��� x���'E��JK{���í룡3�Tx����01��s��PG�$��^�.Y:!��؜��;p>r ���8O��-N%�^ǁ�`Ya��ą,u�?�o4�b!n2?���X•+�g1?�*��~���`P'��"5EyB'��u�L�|�x���:��5��_8Gj)�� ��xD�^W�`8sw����x�i�֕�m�*��يd�J�֫-�F�0�X$��֩F�lW�e�*�/
�ߖ�g�`��J��3��;�|r��߹Y�LS�=$B$>d��l�A[�F̋�%v�̈́���<aY&"!WɅ�I�%��N
M4u��Kܒ�i�<@@�d�$�����c0�ea�?MgN����o����!
F�!R�蒲6Y躙���2^�ħ�C�g�ϵ�>��q��ĉk�;�>��Q�h4ݣg�8/���4�/��u޼�}����[��)7��{����n�i~$,xE��~��<�U�#�8u����k�{�����k�����V��hsc���#��;��ֶ��������ؓO��Tic�����qW����,�����[��j�T2�)�W+@���}&�t�ZE]��$�^-�a�%An��)�D
,R�&>�+�ԑ�Fz�N�E����
b.��j���ĹxՈ�z5�V[�ms{�
�=P�!�s�,V�\�y4;�h���J�n�zgwO�Ò0�Sj����a�+l�ϛ����`���m�H0���i����y�q��&?���rR(�̌�<��E�^��R��`�v�*��#�XXT���}9(�Ja� F�� -�R����c�RI*��~��CYP���u&�@&c�Jx�|�
;�=Ɣe�?�	�]�A�*��^$O����z�Z� ��#��AP8�~|WP�c���"�Fz�A���35O0ne^NN~�C#�}}�5�q��@$a[��Эת�1�j��g�h
%��\�MTw���86�cV�G���=S*h��l�7@k�
H/��bE�n�����i�Z�f}'N�+���4f-���[̡��V1��٠�o!�/,��ko��Q\mx���^�qk)<�EcE�(�����8@����'�-�JkY��uz�U�B�,��Ƽ�t�3/�`��r��\tl,&e���F,�X'V:[�Z��l�؍`���JgQwKh��6�#�e��\���>�
����4�Ƞ5��#��}�	�W�p��{vc<Pĺ��ŕ,\��b���Ԫ ���׀�[6ts��y�xC�����p+ap��*.k�}�n�^��;�>�����£M1��$@���4s�f��Ʉ�T�W����x<��WcȻ�Z-��x��p2$��_��H�Q�#��;��2*��t#��9�2�5l(�q�RSI��F��j��^O�}���sa]K��Nh�!��*�@��-j�����J^�~�x������׎r�i��.����Lw�3Z��d-,^�p<w'��`r(#JU��7��)[U�f<�ΨG�n�_?/�̇��K�zT�5��D���鵃굪���fua[T��U�ZK�w<�C��3MRA��[�ِn�S���o�	{#��1}v4�ɠC�5*Mz��u�S�]fJ&������t(n�-����r�{��N����Q.���w�X���oɹN��0�a�
M���}9n�i��U�'%W��sG@/J�r�H:C�%&X���2�����['��e.��*9$Ne����gƦ0{U�/�Ú�-�CW ���xd!�1��j �
V�����y�KC<m���9���)�!�yq�@�	������
�8��l�c��ya��Y�h3�e�ѽv�&��-�{��J\����5nUc��5�͖��9��ڢ�tC性�.�?�b�}<<�ؖ��Z[d�z/�A��.@���uFV�E���S�1����Ty�AD�,��D�Be�Ѯj��#���b4�H@��y�b�!vU��=j֛���3�i��${���u��r���&���e�7�����p��H�!b�[�)���楪�Qh�:SU�j��ʦ���
Z�H���ZuR�H�cO��.h���֖T�D˪����6>q��tr��i��	�܇�Z�N���/T���t:R��{xbMaCp���-��$�P�b�y�
�>��g��8!lE�@�Z`$;�)=	����]�ԡT����B	ᘦ(�Bll�]j��ƊV��cH����h�d_<�3E,��x%��l��Vbc��q}���;�~�e���a&��\�k��,A�l!�x	����N)�[�[�Yk+��fU�bm�N���'�_ߐ�
Gځ�3X�+-�����e	�����'�A��+|������G��A�?☋��]`B0�!�Kݿ�`�C;��W�y_
��#/��EG�
SH�^E�nq�`c=@v���t9s�⌰�eХ��S��a��d�r��v�A`�𰧱���ڠ�QOy{c���'ԟ��oᆂ+Q��bK�$X"s8)N��v]+��� R�!�v=��ǹ2P�ީ:a�rB2�X$I�f��C�2��wĕ-S�K��m��5��)ѥ����w���w_��n���%>��*k,c��.a����1�J���QN��sU:�ػi�nP68���ʄU���b]`U�A��a��Ճ��.ŎL�7�����
r�Ch�\_�U��/��h	P($$�p�Yr��ë����I���u�4�qP�֚\CU�m��y��0\{D4>�y¨����0�[�-1Ag�Q��W趪<�-�8�7�+5�[n�|�y����Wc�;s��BAfx�D���L2(b̕�g�wSJ�#m�?-���f�|�$�3C����x��o0��y�VFW}�}��.��"y��C+X+&*��5n��%��X���Mw�m:�3컲dǽ��C�]���gE�Գ�� 9���g7���{ԕ�wZ@�|ҡ�+�T�h����K.��ն45	���Z�{e륐A��:8��`4u�錡k\�T�>L}HL��v�>�ܕ��x*�h$�-@9��p�u�A�h��P�R`Fk��i{��4-�G����*�&X5Πb��T
��5��Z2@[;�O�& �,��~8�se�+{��l<�u���M��լ�Ȑ����(AS�\Y �AVÅ�{���<7yHδA\�I�ԛ�3V.W�\�|HL��Y��B�,F�]�\����cұ��y:���/�ߪ����.��r���	�l���\��ssl��)���.�_���b���-�c����R]��r�Jq�W,�
���1Y�����H��cr�D�*��)���<k#�b)@�*%�
l�r���s!��h$�=.�E��"�*nk���:A��gq����%w�xp\��d,,��#���G�	4��-"�N�������n���5�o��1����n��*�\�/�A#��VC��xG+o�4�Ig�?9�K�rq�����HX[��sE�Y+��t��i�t��X�V�
8n�\�Ղ�)���Q��$2m� �BA"h������?wI�|�Q:��|�0�%�gD"��2��Ci-uݧ�9� �K��������;�S��P��*b��0��0�͵���<uy�drΦ���s�qK�$���jT/�o��8��!�2�
������Ue"TXC��=qs�YG�/R�����G��&��ۨg���^=D\ZIݩ����n
c+^[j�	��0�O2D�wjLg3�4��Q�O�0��oY.��{�;s���{Cf��LGq'^�2�*�V��FK\��mN�-�ɻ���s&a)�pWb�����NG'�(5���:1������us��n�ܛ&�ȥ�t��M�Od�*]9�M{�ma���+L���9��ˤw�G���o"I%I2׷��O_��O�d,@~&����wĽ�����]7��x�h�u�qNPF@�2*�A�*U��3���[z���g�4�W��n���Y��I�5���5�q��f듇��������PӘI��F��f���
t(hʑ��HpE{�<<#��uA��TSc1SF� ��ĸr�H�P��.�M}���c@8��ᢐ��Q���"`��B˜���'T�덧��9�3e�)+�1�Z�`��f����<r�Y�`j0�|塇��O�b��6m:W�(T�sds��L��1݈��P����i �j�|-��4� Is
)��[��a�jR�����ˁ���4Oa�q�_��\�@� ���V�3�.p���xZ��Dji%U��$Ae>i$eA���K�$���7�u��,`�D�D��0F�j�iYcm/�i�2�#漆
}�v(��aE��ChU)ѶϦH�*됌qF�x�B\u �x�A���^�4�ոu䓻|?�3?����3�`�"
�:;�����Ի�e�-O�,�>1�ja�B�d��Plca����Je0�0V}c�qb��W"s#-��x+��U�
�\�@�I�F�\����'b_�|�
���1�=�z��-<�)�ObF�}��Eɭp1�Z�!�2[q��!�Xb���t4� ��Ć���P��Țn�j8A\�
7.J�N�ST��b�L��a�\\&.ֆ
��W�W{���X0�pV����d���h���=��+G�]�˳�������:�C7-u:z��H�?�����:tYշԬg��ʢ����'���y��	�NwV�����z��]����da�dI���I�qap�vь�oi�DyZ���Mq	�<À+�me&M�"���1����6�~��� >�VC�ߏ������L����̈́M�d�!��%Dh��L+�եqN���k��E���>8wM�w,`1u-��ˆΕ���NZn6��`�gĻ1����!������'w<��k��(f�)��V3��t�Q�
9�4K݅�ܕ�L@�s5���SSwF��	9BCo�1�̠c�j�\&'�z��
B�}�������S��O��ut}V�v�L�
p� ֒ɭ&wv����{����v%�X��1\�A��ӭ��ܭ��|�OWsz�[���ɜ�}�Yz��k�ĺ����.>t�}�=|q�Z����ηҕ�O�8��~�T��K���=��^{ �:�.]~H�����s�uZ_[w}a�Z�[[;t4�ѽ^����h4r{�Oӱ�sOڼ�zRgZ�"��K
U�&��	WlI���flk�N�_E]⮘<�VPm(W5�R̼W т�(�~u�|x�X7�\5�����C�o������Қ0c5��ğk���{��p����0�u�[�=��Xڶ-�0�����uިD���-���;k=v�uqˣ�E���2�ii�G��!��B$��՛�!<�
0������w���{G#�{4��X��8l�"a>U�X@�?��*iu-o��g�%2�ސɠ�-����aiC��j�VE��0�N�)�羅k�� 5���a�j�pat;�^���T��r�]╩4d��Q�����"��U}D�NS�2�Pf�Qh��j%J<���
|�
Љ�3�{p+/��
��;:�9T0L�,xR��	�h��gW�C�m�l�YP��x_���?_\�8}����s���:%��o�`� җ�W���8L�����B
��r+��W��A-�vɖ�e��i�������2��h�� �e���:�G%ih5�����ωɷ��&�r��uY���P����F��R<�����s,�/�X��JS�����A�&p��W�`@kQ�͒�L�"���N��'�9.?kY�Xb7@h�r�)`	`��d������/���d
��@�Rd�+IDfk�[��ޢ7a�ե܀'�"߻��#G�����3��2�[Q�WH���㘢���zv�pɁi��1*�܋�U��o������[�!	�J�[~g���6h//���Zt���]+��=jlnә3g���@"�LZSTJr�tB���e���s20�$+L�7�<d�CWȪ���h�#_Ʒtŝ��2�kՊ�P����������:q�Ms>]/�K�2*{����ӊ�4��F;�}�m
X�k��N�'��D#�j˱�kU&$tRw�+�U&��V��:��|�eG��2�;,��ӧ��ф<���TZ0A"��L�B�72խ��;/��u~�(f6����ά����)������u9~��?��ַ5v���c?��s���u�@z�Ud�5��,Sf��%k��4Y���vk�z����Zd��#hҙ*&�S@�\m��0Ȉ���� �x{}]&�1U�i�4��j�IWΟu���i�Y��c���[>�����G�"x-Z
R_���k�h�Z�d�����x�����f���^ݦ��
X�!�1�]�>�g�k1�ȫ>�yu��yN���
�B���Be9|�U�f��>;���q��'�Y󚺎C�Q����T&UCp�
�P,-�N��1��
��KW�7>�yo�"T.t;#�$��\�5�Ϛ�u�e�b���۴�����V]˶>��#�+xYtCcn9����ç0��ќ{��G_N>!�K:PP���h��!`�����p�,6_
A17�jDE�@Q�+eR������-uȉUPv��=nTj��ܬ׼;�O�<�ު�<��Q�9�Hn�G�`��|��l����E��`L-�0��	�T�1�Gw0�)�MP�5k�A�Bw5Ϛ�5�E�l*YZQ��`��*�鐶ju�7���cy=^	v>;4��4�k�b;�h,�ʉMu��tV�ԏا�vZ�Z�!œ� -aC����]�W4��e,�v�&�i`6/�.0��\qR�-Q	�"�<�lW�>���J��.�^����e��<�ϯ��]]b
0Kp�z����zZ��x���-�F'T֘�]��]���Y�����bA\�%y�*`1�/������n���b8����qG�~�!ې�+�8v�F,�+:':1�Й�]�.���D����?�yI�t�e���P�RO.�_��+(UOAr��\��2�X�@��!����� $C�� �W�����Z�B�ҚR9/N�N 0���p.E�Y�L?���9#�Q�S��M��C%���z~���Z�ר�����dPϧԒ�|��y:wj[@j߽��+���!�$�Ē�j�����1
�3p0��5)�$�i�k����r�FS+�`�"e{|uH,�B.Hc*Y+���/.[�\�¬�ݜ���m6��C�+����6��I��IG2��>���2�D�7��->r��I����Z&�g&��5u�f��>��O�0��j�ܭX�u��^��S�yI�3u�-�e0���g�+��Vu�����ȵ�U�._���֋�KW����}
�kׯ�׮]��p��@М�I����tDX@C�u�� ��jG�s�i�$����\���I�&�M5�]b6ϕqB;�%
(w��	�7�R��|�rϦ�>ݸyS�z%4�$�Bm:0�?W�/v������+{��Xe�T&InZ2���Ɣ2X�\+͹��;T'��I]�i��k� *±�o@���0V�4��|F��V�����V��G>DF@�E��DQ@��O9(��A��r�&�'��y<��,^礡��,�@O.a2�ڹ���:�+�� ѩ��a"G��a��P��m�7i���ѭ/~����V�UԄ�~PK���J�&>��Z���L��3��Jb���|k�C��9�;�]��+k4�OML|��k�ۡ�R��D��zUB�rS�c?6f�1M�ȝ�<��y��a���s��:ç��B
�@׸)�t�*s_�����ܒ�eq���+s��xu���P���F^��x��Sm<#y8D۽ueL�
S-�Uz�W��W�I$�6j5n�@�~�P�����1F1�b��a6	�)�F�8�8w[Q�ư?��
Gx�Ϡ^�Ic���zә�8�����ߟ�(93�㭯)m0Xj�k�4k5.����$�7D�b	�qf��1�Q����U�m�v�9q��y��{�C,�`�g��p
��@�/K�766*_[,��e�Q�*GcMW�c��ƊNj�H�����Uzw��X���2�J]Xb66N�
m,nq��xK�

�a�hhPH�$/S$�o���7qu1��>�Z5�l���"
��s���+@��`�9�4-Z��:��E�&4���y����
�4�F��R��]@�G%�����=E@/���!9�^�z[G�Pk���\��Z�����"o���R(��yN���.�i���6�.*����)�
p[l�a��[��ޛc#b������{-�
)��1�̈́Ȇ��(��fE�M�+�~��EF���Wݭ�75ΐ�*b�xc{�/^<+,k�(*�,M������A�FW(TJ���%[�	�&`Y\�E#�ĕq�'>��&ۏf�?�u�L�2�Ŷ�	�������@�S&��T��IF�������K�]:���9M��A\N<��K��n>�
ӕ��b��xo����pಒ<��;���%G5Z޾�ax`B���5G�=����Z=��$��C1�m�}�z�+�A�{�P�=�	~$� ����Xe@y� XO�������O�Bb�N�\��k�f��E>�KhUJ\-�"H�Bʪ?���{���̅��f:�zI_��\������<3�)�ԶȔgn(��Aw�G
�s9��*�wel�Z�PR`��=����$���>�N5F��
f6:�d��d�`v+�F�T��s�����g�[��_�Z-)l3$�k��[��T3�P�J��i�Ɯ����P\>�\?�h�Ct��o��g�T~�v�>��ř,[k�|zk�9�ZEMXۑ���{�^
@�;���k��y�Չ�W�R���PM��A���=r�WI+���z��e�{�E��m�H�*k�$>k��!2eN5�V�\ڥ&?�8U�v`�5�@d$0�u��Q��	�e�۵&2��ʟ^/��� y	��Fg$3�b���R�q4B�ʲ�8W�F��@�^q�٘Q\���b���DX�>X|�(^��7&-��F���{h��Z�l0��uI%�pN5��-�՚�h�%�9��vVx�~���Ӫ�� m�+��8[�C��3����l�w�a߆3}��B����x�`R(k������؀-ȳ8�K\�	7k%�K�d
�`1�t��j����e
�FX�81[�W�lXL}�BO�_Q.��'?�ğftt�U62�i��l�.IN�Q�z�l#8��+ڰKK�f@6�^�Yd��b��ר�+�=���g����X�8�pL}�
����1#,�z�fY�v\^�,+,�#�X���%f��J۞:u�`�L�[kd�~��:3�]�������v�+�݂���Lo𻈫�&-�_����K�񟋰�"����B��5{�(g۩�����Ł��/N�%�c#����U�B;�Nh��C)LW2yS|��mҩSk�4O��
37�Ȝ�٤G�,�ݻw��_�@�J�>���t��@�0yhF:k1�
��/�ǃ㞻��2:І��`�dz"p'd��Ff�2�gNWH���N�����f,�;��"V�r&@ӧăx!������ʞb������&~A!����+�H@��Ϫ�FG���!�*�
nCwV��C;;�!�Q
)�a��y0�u�eax�V&
kp�=�Օ���Kou�sa���ɔ
�Ug4���u����o��ɞ�&>��H �����Io�Jh)Q�t.���jX Y�w��𠂑O�w`�*Z�U&g�G���3�k��(;�(ʭ�c1|&�(�	*Z^I���/���@!������j����O���8<R&�d�\x8�Rwh8`�jqms9�z��|*����C8k|+b����Z�����>~�5fo�k���I��jyl���h�rҰ���yM��a������P�XK�M�^�����|E&/F
�g�;R��s-��&�ڮ�xIX�3�mT�tzg[�.��
��~���j��-���������=Q�҃v[��[�lp��þ�@�7$
]]T͓�	�k�΀�RE�1�e��3�6�� ��\iM��fCh"}v��3�Os��B�<	$�Մ�-��G#o��Ѱ_%F��M�?	��d��T�,u�Vq�Z"li��z.���m(���,H�A�V���xr5�`C�����ֶVԃ��h���~����f��,=�P�P�O�V�¸���Z�a�?�QN[5�Qa��NonЎ��x`<�
�Z_�Z��*:� ����Ć&���h��=�gwu-����$���*��_�^�阯��Su#c����X��#xp��ie����>�I.�cg�H8K�m\���ϙ�~���-kp�a3S��CA#FV��s��įH�@��@����WbV������Qf0Y�S�h�� q��-�a8�8�k5�"F��Ě�hh��)@	'���g-�d���a���[�:�j�I�(E�.�kVR��e�����e�3�ޕ�ec�`����D��w�ӊ�<�`�u�6+��r.�������Htv�����;`qL��}���
:�:X`=Y3)��x��s��
�Y�p��{�[�>��&��ڰ=B� �=.<�6����.�n0$ن\��M7_z�v�ޢd8sU4G&�M�e������Ѕs|�>�W��.�lȭ�u�|q�No6�Q�j�l�:@w4��P�#��iٳEΩ�܉>����Q�y/����"��Ke�O(2U���ª�������F���2ō,�q�C��
^�dEW�Q3��w0�˛ӺL�5a���[7����o�\���UwemFg�]zfg��y��gZM��7�w^�K� L!�a�����
�WauS�h�l��T�@�ݠ��e*��DҐ9q�D_���N�xkp�Z��`�L"n�l��=s_�R�,84E5�� �We�L������hW-Q+jU&�:��s0�s9ל5�Y�\���`�>7�����3��و��T�4\�q9����c���4�,�SfkĦ�3�3��R�r��^���~.YiG֋�:A���@�S��s�8�
���h6ɬ<�,�?�������^X�d֓s�Q����x��4<�ʙ

ĸ^�
��Y��hn�Qu�'c?:���#�j��׃��7@��ʝ��ؚ�xe�@�L[J���F��&�j�vZ�U�C
W������!�e�ը��٢n��2tr_�P�/f�M���\'j5d�`9��RY1a���Zu��O䙓�e(7���at�-+Çc����/ �L�SboH?�X��х�`'�*@��XC��&ȉ� @�$
���F����(zQM�]�vK�†@�#��V�����DВ�y� E"u1lU���l"5��z���C��Ap0�6�ȡ
��^����s�V*:~"��8m���eu�1�X���>��dr��(�zV�AVy9�x�JT�9�A�(ro!u�{9i�f9����x�x�z�&lx�!�\����3�3�$B)"!�+%T����t�`�Z��x��΁��&6��93��b�m��,��f�+���]�X+��,����q�;l!����g������e�PQ%��[�Z[�߅j�ԧ�͖@t�Y~��[JvA�dk1��y��4��]]�=)��(f��>��|~Eolu��L�74t�`��qS�*^�7�4Ԃ`������c�m���/��,���t;�y���.ȯ��2�"����?S�V��;��,<���ۭ�Lz��[�[ݸ�!/~�HO���
�HQ�u�[��l/t�4������tV� >9�VY�et�q,w��=��q!�6&Vm��~��|4W\SA�R��_�X��˦�[�)�Z�U���#��{H�צ���s�=DiK+�8�>��\UV<t���Ν���Gtg�7��"���Q�2YU/HF��)#����(ԳISa00B~K��̵��Y�#�3Q �12���b;Q��A��gW��'�UL��,+0
���JpQKγ=;6w�%^�3}�ތ�>'LRM��T�t/�d&�K�;7�&�����#�NZj���-�vs����Y�IT�^��k�0e)�H�d�R�U��P��y�s"�
�h$��S�9�Au��čO��2�ls6Ki��	�*���)���h�����j�{��Ob�0ւ#��&j1�fA�#$\��g;��+�F��l^��O�=��w	1�!�ƻ|A��p8���
�V6ùi�Ƽ -��m��v���[͖2�eU��Q]�K��5��h�A��F�����P�VN��y�O^Bh�;��<���
i�}nl��cnQ�yJڿ��RW��%Mq�Ȇ�%�[ܯg0���O�yg�?�]��h�2`�A�Q,PR�^!����`�]�a%��I1.��&H4��`2��7��`�~��[Y)��҄ �<E��
F*���1��Ї�Ѯ-�n�3Ըv� ��I<#�
��Yo)[��iTу�gz�WUQ���ja%��-#��iY�H]�)b{��"�H|�oH�TQ��7&�f�,Q�y�j�j
�����j�t�S��Oe���,�k�rm4h*�~�a6V�YzH�B�1��,ɼε\�P�������4/��xq�{���*����iŵb���>?����`Vi�5��54��އP
Br�z\�)��E�-�+��ْs3P�b���P>����9��y�J2`�0�L�������8g�J?ĕ�lZ�����#��_V��gܓP�J�=)��`d
�;��	z�A�N��Q,�7IUK{>��E��54=��=��
��v*@n)�G+��,N�@�JhA\��'%}������D��4dcF�.��������1�n�hW)v�'�X��!�V
L�ͬ&u:�����
ւv\���GGGtNG�|�n.�Y�P���y�]����~G�w�:��EbVv��6�^���i����ָ�[�BLAܿ" l#�N^�pi|���Q�Q�KW[�k,�[T>.T��
���\�XV��|�I��k:�5��
�4{�t�������?�;׮Su���a���d�$�A��cL�Ύ;jw5t.ؖl;�Yj4��j� �m��)@O|Vv���m"�YM��x�"���s-סa�b�%qŕh���=�䞙cĪ���[q��\u_�b���&R�� ���3�^/�~oʛ
v׏�|�	�E�5�.
�Ȥ��~���F� �SJj
T��d�7�w~�̛�@5�*;xo�g���i l]M���/�iP�x�ǎw�!'$�}�9l�X�VC��mȆej@��L\��3W V�rh	Q�ǣ�W�H��c2�̦Z2�H�̕	o=�3SZ��3goRpd��$��Y��G�
�ZK��"�x0���R�ЌĹ�L���.��P�[-�X�&0�;��U����ڌ���A
�`a�C"}�ﺒ;�s(A��U��y�����5�[G�իI���
j�n����
����KwvG|�e��_�2BX�ҭK�������;�f��0�'��
jm�	�m��`�TR�+�
�Մ4�M�B{�*h�W0a�:I�i�����5��ٍS���I�#��m��8_�J8���hp��ܺj��!���u�m�<�+g��U�?�NO����_�����jyNk
t1X����TM��Xo�p+=W"9%?*��U�L�V�sW��w��5[L+r�(�=C�U{��~1tʌ�$_�O"�KYЪz�u$F�r�y�JipR����U�Ua��nVI���i^@W��H�hJ�(M��b��dÜ�k��qH@����BHoE�_�R'W
cб�����U����%���]1�2%�P��t��F@�<��"�I{*k�|LM���&��}�$�s!٥1���}x����+ ��hh�!���Γ
�^OA*@l�E�l�3D^]����R1���x���Z^��l 䖰DHsqB<���c���YK�Z
�W[�
_��n�[e^z`�Pw '��}g�j��X��2�=��-�V�����ˁ.��"=��v3�����d��$->�Vk�8ϊ#��q�G5$�xE(��臗�̺P�K;N�v+��a��U��#�� �ٲ�V��=K�4��Ӣ��аM��	�O�]zW���bǎ��eOؘ�@�~��P�h
�&@L,@^�@ۗ�W���`��A+
wY,K��n�/�M:ᷴ؆�
��˙� A�ú�·3���R$���T�6�Ꝟ�4�j�s;���j��:7�k�^�E��|�n�N�'�en4Vl8W��<��`�y
U�e���k��N��ō
��dev��P:Ә��3&�Յ9�$&`�/�(����N�-���V�*�^T�㩃[��z �j�^��|؛h+���"�w40�u|���1M�=�	����Je�nV#@λ!n�N{�kML��:i��4���	�&#x�L]�rl����)
ƙ&���L~��!��
��P�W�����EIy���(u�'�n))@�4�O�p����ĵJI�ވ}�&Y@���E�	�h��j�yw?�U���W���iHQ(�!�!io�+m-2M��	}�1�y�XXf���r���I�H��X��M��(��P�a#n	Q�k�%L��ꎘ��.m�;n4�J[�T���>�n������Y>z�Q�i<�H<�[kN&�]C_�*�k�*����s��č[}�!t�/��U�k�9�xf	�)�dShږU�XP�@����t�p��7�ȇt�7e-�M�c�|��nnV7j��51(��.�����\��3g�w)+Kϐ����j����m��|��~�}S�%����ߖ{�k��f�.@2Ns��U�6Ww���%7O�r��&P�`/��W��e-����q$�F��5��/�4�z>�V 
è*���h%��e�X�xԹ�j-�I��6U�o�ȤE�y���#�y0j{�0�Q�N�j��#���0���@�~��O皩VӐi�`�a�C��]�>q��e�����͇,�B�ۊ�/O�ňC2��Z���Y&�/��y6|����X�1+6��VJD�1���$`	��0�:) �Z�sxX;�l������y�����ļ�v�&��%��Z,!V���Jr���� #��/,V(�>G�j��}nQ���:�R��e~����Y�X٥�-� ���ťjWC̻ᗢ�Wqs�����P���!NV���Z
RT���\u�����ㆳ�,/0@k18�0[<H��X����ž�	b��tނ:�l&^
�FK�T&VXX��,�<��,l���9ڞW����V�7��q��!�pF��Gංu����kX�1�6�k48-a��6.D�
�[��x���j	���c�n�(�g�����x�W��52�+�,F�)��f��޸z��^��e������֙
j�Y���]Ѕt���2�x")&����M29���~�y˸	WT���F#�=���sMH�~��n�d�.#���ժL�j/�[��*>�=Mr����Z�:�s��^Q�'u�GQ$\X.�t�Eę-���B�qAђ��u��H\�(�	�/�4�\W+�n$P��N��@�������6�=6E&��9��wdT���d��Ć�P]�H��<0�)J�Jӥ����|f]X�*����Z�'���g2��Y�S��\��p5a�!6¥G�yq����rRve����.C챊�;�$�����a�!�~��ʆL�:’�!�%c�S��tZ�JkL�V��D]и#?>�'7mT3uw)����M���|D&�F�M�\��هhVj�(��,��|2E�x��=U���TX�y	2i����Ȥ砐�F���誜dznss�˃!����i<<�5q�v�m�n��Wm4������k�ݙ0Tpc�R�9�B
�"��K�x+�Q��3(�:e�9>����oe�}�,�N�t��*M[��<:����U�N˼2d�,]*���c}��E�:�/qV���4�J��F�)~�<mft��
7�X@�V�CahG
�J��
d@�ָ�%!!��Vw*�i��BFg�d[��4Tٚ�C��Jh�9�L96%Z����i�_ķ&�!�/�
BS����
�6�B��S�WŒ�j�lE��e�Ƣݦ��J
�wCh2��Y�_�߻�!Me�hn��t{�C��x��y'
ɭ�5�uxx�7͖G�j�P]L�^������쩳r���'(ۦ�)�\��m�~��^o����m
jv
�epQ�7�������
���
"��뵆�cj�$4b-���x�a6P��zY3��5�,-�k^�,�}�"������X�}xab������˟[H�z��j`x�����X&���b�c�Q��e���C��qkA��cW��W#%�}r��Zx�R��������beuC^�����)�"�e�lG!����ۏ��FGXM��L1�E�����j��V�Ӛ�U$	�
k�����E̾bY-�6�,,��en�X�*v��]���5���DnmmQܦ�0	m�C���_Ot"3y2x�������9i;�wAd�|��CA 7+����%A7,�$�<T�w*͓x�om
����-S�&g�5q;�x��W���W��v���-���ܢ�bxbRE�ǥf�Uf=����B�Fo�!>u~�;M�y�������h��z/I?���A�.�������7ܥSU~���m�ܬ�G�;wy��-wv�Bgt�dΫ�
u�	#��'H�0�*b:`g�UO��G�����7�0�V���)�8�-�k��E�"�¦"n4W��fU��vH�H4�qe5$#��-=v��E��r��!��6MӶ�����3z�ή�n����p8�$��� �%'<�?a`	,/�IU���Oz��u� 
�ݏe�����s�z�h}mFG#�rq<�L�¢���ۥ
��C3!�'�AC��sM�kR
��ړ��N5GZ����ѩ�v6gtn�,��ԝ�H�Y!P�xH���ZB��O�l���:����ȸ��=<�Rާ��-����]�~���#jL�d�Ah��ǻ<���\�S��]InRe�'����Z��#��LJԙ��������*��c�\����ݿCoܺ�7���xRae����>�K=��6�K
�3)�����~��¬A��H��H�O�����Lgn_�}az�Ш�N��mOb�X�by�!���|�N�r-���=�&�C|�L���ۉj��>�@a�wT����.�!IņOom�Sg�6�ԭ2��*
�]$Z��q[�DN��
xχ��k����	},��k�zZ���zRY�Bw��М�+IG�¾�ڌ���^�<H�s$F��Ǫ����P�@hFZ����)k���W�gf"�½�6�uĸ+�Y*�-̆�V+��` �I������n�4��m5��� cR�
d�UM���F�+W�#"pɣ���F$X�=#����P��[�R�U��P���
�'`f���g9�(La�i�HB8��2C�,���,����谨�+r똻��ǣ~�!�@�k<�0�V�K�j��|l���gcF%���
з� Vg�@|.�=�;�{�j��Ί.�0�qLę�r��ox��e�b	�i�QB��p��.�:^#k^t,j�%#5rs�YE����)+L��=�]ª����.��U$��k��ں��},Ӏ4��	].�l
�V�Y�`�p,vSP�6�QV���(�3�U_�CDa�VQ,b�s2+���B����®.j@���ژ!��Q�b�gc*C��J�T��A�#X����(��\@�2���L��\�䩜���C���d��"�Ӫ:�JJƁ5�)cZ�]��ƙU�^�V*��b��E�Q%�+^�.g+�4�IY�I9�gS��v�o�Y�l����֫}��r*@#��83qA��R�Lgfs��h�"��7ij���YE8Ģ�}��}aLxH��S�0����:�����Qљ�u�o��T�;�V���e�U3i�z�$�)t�:C�D��D>�Bфu��K�W)�p7䷻��h�U�5a�ĭ)����������2�(=f�J_�S�$�D-=A�
�X\�̡�6F�@�!uY+�V�Rn�#lh|X�h�bAX�J�ʘ�չ��)T
��9�'{�ɹ?��2�b��y@}��)?zaF�/8�gw�*�`:��d�ޕQ}	q|šVJsգ�$��
���g%:���'tv�$��T�3���O����B�����
2�Z�5�x[�ן���d�pvm�nO�CXR&�E��4�z�y�>�+����<=
}Q5�PA�i���k��]/Gv8���M]��=����;��Ze��yؼ	!��{���7�95d�m�_׊G�;�Sw^���>�֪��qy�f��>�ю������C�	�;���.�e��r���/E	14�oS����Z�kB��a$�nFbT�H��ٙS��͖L泎ܫ�<�s��\c�5^:Ӫ�!,�|�.�|`�,�T}7λl�Z��W��*�چ�*�����ǗV��K�e�D���!Sq���쨮h�Uכ��$Ma�2e��s��ۧ��qә2���UL���8I���D��
�Q�����:9@��t�Y���ںSՏ��cWJ��j�H_Ve��7�]�V��[<�\+@�g1�i`Bja����H۞���(����%x,l:�z3iw1��ȹj.���^n���1���_6�&k�[�
��
�.,�F�N{�c���9<���������ݨ��@�S �>�̻�U�-��Q�"{ٸU�k �I��,���4k�X
/��5\Rz����uGpok��ʳ	8e�-���sP5������}�A}��|�L?N�"h+��F���=��'���*�X�Z�����`��h��5���Ail;Ο?_`(���0ʘ�
�V?��޾��(�`����6Kf�����WdV��!<���(���Q���}���8��-��B��-ɓ�8��-�vn,k|r��Z����;�L/�����K����b
h��e_�4L��}��G�fp�z�̙Xj��a�l��TqS�t������k�+���X+~��c2[�
�:$�멧�*d�̍��&�a��֙��IP�
�WD}�}	����?�~������G���o�'NÍ&֨I2�[�nUأ�������Nu�0�Szp�P-���?������/~?�����-{�Y;���/�w��b�V�6&��8/�қ��G���A���<�������+�,�9x�J����O���~�k�������9:{�%�7���	i9���	P (��r�,bԁ���8�Ҟ߬��_�)�W��?�~���Q�����>�·䜐�0Չ*����e�ʂl�������_�AS�Qӱ}�S��.8�T�"��O�ŵ�{l�Ə7�4m�Yc4e�k0i6��(0����4E�d�D�x$��@���f��p��`��!���L��R���'����*5�|���>��qcx���7+�q�1����W���2U�I��I�rHέAFJc	s�Es@2_#�:�@���/Q�FC����䜫`�g�eU[�-׸U/RB}�M�V:��d�{��*w'b<3�|sN7�sz㮀�ʘ�D�=�h&,&�g�1���L,�r"4�q<1n.�H{����NB�qN�ы7�f���鋯dts��x0G;��=�ӷ<�9y$�mW�����t�9�Q!�VzijQ���a��>�$Ԧ�L�K�D`�Գ͖zi���
�;T���`N�@M9)S>i�;\�
7u��@bh[8�����p�[�\
��8w�m�w;��*��frL��!uw�s���Fw��ا��7�]5|ѻ�lJkաk�a]_�~��L�SaIS����Â�6�"@B�+o�ׅ�L�J���!�?-W����؇t��P�c�� �x��T�C�������b��>0!���<�O���>]�X\��W,V���o�G�P�w�l��D�T���U����-���OiMT���j��W�Roأ��q��LU�����0�3un��
�z\�RC0m�������Ht0�2>� I�A�R�SFp lm��0b��T��(dz�d�$u�rȍ�TC��5�0O*R���AT7���~#�J�a�‚��*���*�7#�7UV���.�	��{2nݐ�t,����=�v�G���(h��cHw{m1:�����M���#2j	���rV���
�*`�A�&����W��E��n��|*eJw��K���K2?_�|$L(�e�B6W����ԃ`�~�f����W��q��5��
�*5e��I[�A�Ls�⃲~� @����R���q���r�ϐ�{��R	.cg��ד��M�_��v��0�׊Ƭ.��������f�=^��{�'����a&cc������_���?���Pyu��@�O��Oc�뭒��>�D��ëa�8TK���ϱ�}������R���@Uv�ĦR`eqB!��j�}
��`n�o�>�����B��Z���W_5䯪���\�v��x��Ͷu�����K�m�P ��3�[ps��+�NV:&5��׾���������=&������!:,:i[�/x=>>���Ap���c;�=��ڊ\�D��[/n��_y�~�+��?�N�7����q��©Ъc��
��p���>������ˀ;�[���twoO�s�V\-wA:�����U?F���=�0ˀ0cY'Ǻp`����[�S�Y��k�ܳ��W?��*d��}���?�]t��>����m�]���	���ϩ�'@-��SAŗR�
�5W��	W��G��[9���k��n�������/�?�������	���!�Y�
��X*�v"n�2����I9�+�*���1����p\���Kh����j,/��5e�XP���M~��i9֔�v��V��fK����p͝m����g�3��j������\Ek�η�*7���yMKh"Y�[[k�/�`dž�G3an�v)�ݐƓ�2j���O9m��ʱ�������i2�T�	���\��ʥą�A�O�pr��a�X��y�r�0�d�pe���;�g�.LF����X����ԭF��T�^�9a)�~����2�;�K���)�\��5���Ʉsn�*.��ۨ���e��L&s',XE&S����^����C��zHfC��L��j�9�]��xLO>T�9�'F�0�����{�%L�-g������^��	L�UBZcz�����h��Æ�p%�d�E�*J�Dn�nC&����s�8I���ZfԘ�����o���L����S5U%7��R�Ff�=���=}��rc2���	z��.7�s��Fb`��9��0z{��"T��@ʊ�$?P�0�ӛ�V�K�2�㻴Q����Z�n"�$�^qg�^�ϙ�Q�2í\BBި�Uq� �ӻ�/�س��9�1�}*S��.���$.4Kb�ͥע`޼!�J�̹�IDZ�β��G# �����x#�!!h20�?�N1z�*�^�񰀨�͆��Oo��.�5	��p�C�
ή�qҚt�ѩ�
�ؐ6Q����s-��4^�ɒ>�J�K��7�4�e�U�嚛�Y��T�*P�[Z.���`\�W�����NW�=��^"�����`��Z�~UE�-(����`�
��r?o���L�J�kbl��tȥ���uw v,��]m�S��36��L5�ގ�.�ב܋�3+���l�;�	[����i�^v�J����=�'̦���6�M:+lrM�Ӥ��;��z?�Ki%�����f�$U
�Ї�W�:�{����΅Y����w�}!j����e=�:�WX�҅������X�[�NPգW^yE�o��o�b?q�
�9h	���Fx�b˽UF�֭[�kX��{饗t�O|���k�\�\��~��7o�To��xn4vֈL���o��/�.�'X\.����x��ތY��0=�X!�X�H���D�
xTw�g>��s$�/�e0������d�X+[+��Ʊp�Å�?	�~��؋������/��.�s�ʂJGC�گ�Z��>��
baQ8�MK<h���&a�+��B���î��Ν;WXx��h4�3��I��EP6a����gXY���;A�h���E/���$�6�/���+�Sܱ���{�=���}�ʓ׷��~�7�ďom��=���;xMf��ܥ��5u�ow����S[���=,��~������6���Wn����KO���|�~�"�᫯
Zq�G��>����;�o�y��~��M�dc�{�������_��Gc�ҍB9�ԟxN\���oy��W]�ڠ���Y:wj�6������{���~�}�;�{�n2��ݧ��S����}�^~�%������~]>��|{O'�S�Z��s�D��7��7n��}��^s�G���[�t�I���9��z��
��?�>���N߸��	r�.��
A�Ɩn��ߗ�y����g���͊�l3���Z�ɦ&�\���d�Bs�X�.
dn��y���,@,�\����zA=.d�L1�"S�����4љs;Z��k��=b��tNa�kʌ0�>]�����x�GS�U�n�!0%��U��O�c�|c(i�աP��Y ��pNP-,�jΗ�G�ɉ�|&
š�o?��G%h�9���INgZ	�Al�;
���Tp���Hf�=D�R�`�[*�0b�/mkB����j�'���r<,�r�`�ۣ�C�k�	c+8a�i)�V+���3�?����z��*�"*;;����*��9�_���Մ�J,�x4N�>���ɽ#s�tǓ*w�LRa����	q<؀�.�%|O{O���Ȇn|�OPC����}F� b�z�(�
8@[���
���K��C�(���/eMV���u����,�6�5�e,������}����ֽ�}�x�d�=�����V	[<8�4E[��p�˘Y�҆�9��%tj}*^i�tK<B#Z��w
��
�s��R@�ު�o�0@���� �Bҥ'�1=%��y6t�HT�;�ma�G.�2�y��<�S.��=��/Mkͦ��[�U�\�U5)
�f�5Q%F\�a��~����(���������B��_��A��uYc��%�jݰ8!J
P<@b�ڂ��^x.�Z˽ф���j)U3AlG��E�*��e�C�J:
�7����&��~��ci��h��A���h�=aoQ���Y>�XC��������X��5�Sz��Y�I��&���ۭ�٩&��W>w���C�Z�82�ܡ�Z�z?���Qun��-l�e����J�ٮ	��F�����-Ĉҹ��ۡ�|����s��K
�Q��%L4��R(*�|b�q�&H�iI]�Nd>�v�1�K�C�C��'a�Kr��g�x�����
�1 �0�c�g�}���
^��H�G~zZ�Gk����:�|��b;�د�x�b��~���݋}��yEH?`�
��������T�4|~�ާ�?z����i�=�q�O�%�p��Z������MA�@ch���9�P?򑏨��}L�Z�N���N�e�'Ǻ�ǿ���Yl��8	9����X3�,���$��w�>d&�!�q}�o��o��E�{��;�tX��Վ�F�E#~��_��_�r��=n��I��/h05B�`zj��?n 9ĕ�c�
����z���*�o�����#���2��<��j�x��*j�f[��;/��:����+��@Uh�
�(�zR�?�w!K؝���?���W��u�����y�Q>��W^����}7}�s_㏽�!z��G�_}��Ə~�n�?��~�+�~�;��/�NO\�B�}����~��Ɵ��J��_�=�?�1���u���v��������#�E�����#�hT�_���>�������5,��F2��]�/���۟|Ľt�
���|Q WB�����/����������O��w�����5�_�=�0}�7?A����4-��,C����#~������<L�x�����ȿ�k_p���5z���n
��K�~�;��_}I���q0ਣ���e;�ϒ$�6�)�W��k5�L3eb���5d��K(��`.HI�,�����2 ���$�Ru�"EI��ٷ�����P	�6N�<�L&�|��a`]�Xwwo�q{�}��㐍�|��$���F�J2IT��0)���Qeq�̺̆�ŏ֝�3d�h���Г�JP`��"Y�^�F�-9����N�푟�f��N�a� |��.�+����:���[ ��7j^�+W0��Wq�!�UؘA���E���C¬�e�S����N;��X>@u���j"l��S=�<�lv9���AB�ŽJ�`z��D�u����%��|w���k�F/)7����9�gδ�-�ݥV�[U�+��zځx/�Kkt<�z���܃�щ��ĵ.���pLPd �]fH��59����8誤�r��^C�u���j���h����,l3b���3
�u���$�QO2G�ΜB���bٔ{Z��i��Z���EIHL}��M\[�W[�wYKs�m��h�d$^�
a6�}'����5yrh�)����snzxM�>]n$�v-�w�+tZ��'#k�>8��?3&�5�Ik��t�%Y8X���MS}fī$�l4)���{\��p5d���*wQ���"8�[xB�T)��d!�lVX����e�OC�nZ����`0T��ްC�Dcy �w�{�Z��n8�=䦨.���\�ue5� �V����Ap�p�tL��)Ш��Љ�O��,.�Ha4��qJ>A���ER����č���FT�Rg*%&F���n��'�?�m���`|�}z���&=uɲd�r�;.�Ħ�PL @pB� _�?0��b�!�C/����lK�d����o/�׽�c̵���^����|�;e׵�s�1��Y���Ԣ�SKu�Ӕ���k���ǫ��*Tٌ��o���i�i:�1�1����j�ƀ����ǻ�f�Z\P6iQW�[��h���"��"�(�����=�Q�l�I&�Y����V.�dI��2Ɣنy/�Q싿�LϮy�N�CTƘ*����s�!p0����7�/���Om����\<���y%����|�xI��
��cl��j�ol�S�7YRf��Y�d�m�m�c�;"),��r��'��;b���9pu�(C���H����1�EB�Q[�X�4Z���%����_�җ��O`e-h �L��%�)�K24ܤ�k*��y?юʰĜ��[�-�K���Z��1YUR����i���M�,u��U�A�X^�-�|=���oR���ğ��gtxDJ�Q3���,%�Ē�O��'ы�I��$����$zX����o��Q>�DA����k��:Znp[����Y'��<=.	���=��Y����c�%y�+nƃ;ԟ��{��3��C�K<h��_�	s$S��L}K�)\3zO�_�w��C�x0��"d���4'�O?�~��u]�:5/�
���A�����&�G/bAe7F���g�`2�X���欦K�Sk=�cRyi�/��s������.�KO\!C,�_�o�W�b��`�-�,߽�?���{�~�*U��_�/\��ֵT��җ�u���А3�^t.,�UW^!�F[����G[��|H_|�1��£Ϻ_������/�&��6;�4�ll����_Di�_r���3�<VRM�͞����rHc2Q?�[��#�)ɔ`"�H���5�p��\�T$҉F��+ �%���ǟ�S?.�.�Eb�MZț7J�}�8þU�g�}�V�․�u��ȗh\亸o�EX����m%�j9��0bvM���=$���h�=0o�T�i,�m�.��Z!m����'��#���9��J��Vdq�` �B��n)'�.��JF����b����a���2��@�7���"�˰Q}F�\�����
��5�`l ܀q	�辬�^���S���C�h����P��"��),�]��+���w�.���bN�6z`1ٿ~�s���0�,��zI�=ғ�`�x=�D�I#�,i��t버�l�[��Y�x^SH�js�--/b�]�V���F�+[��Zm��f����R닕����ڀI�1�H���^��r�2η
z�M{3<��BOK��l6�D"
�1+S�9��PS��Crr�
���njp�W�F���F���D^�N�jm���3�˳ui��#��q��:(��SC�)�����.�������b��𶰏���%(���d��͵UY]Zt�&�v������=ˀ8��S��ݦp��u�@@CoP��
PV77|�Q�cB�����.�o*5����m�cl7%ư_l��Z�!=<�M�;���._ٱ |�<���	o������0FZ<���il���g�m%d�����H���v}Q^fg�k\��H�
�eP�밌���j���f��
@�Vw��5Zm�\�m�اL���w��&gז�@!��t	ǖaSm�[���Rjj(EWA���޿�3��,�����H�LĂ�1�=��y��i��[inb>�`�7�i��-���n����yc"��2h	i`��:T�]ԗR����d�g3��W������ �Y;?k|Ocq�'y��	f�ˋy�^pfg�\��Df��	���\!�|�A��|o�u�K���g��G�;�lk�86%�\�R�����	6'M� 4�����o�%:Y��4M����ͯ,�`��v�\'UZr�i�}e��N���\����L�������$i=ˏ%�����3��;��'���FTNL�+��;�N7)#�����۴�6��@lD�J���8/2�w뭷����'����I��$mb'�l͓���
J�+<��kp����4��RÈ���ђ	�K2��x^5�8խ��%��9������{�p����ݥ�ovO�;���{��w�Hr���̲�������?�
@Z�\_�BH�RV���h�1,ﰗ�ǟZ�W�Z����~KO_@�7�H���|�^��;n���T��������	0���7Z�6!E���R��Bi����۟�-iD%�Kw�6���B�mc� ���������/�V��w�[��>����~���>�t@}�5�%_,H�����O꧟�Y�\�x308������-�-��6ɽ�\��0�2�GWRܧ>%��Vݕ��D��cj��8���N�Y��S�X5��!��ɴFɅ�k~�:��r��8:�.�t��{�u��Ψ������z��6YM�3�����X`�=G
�z��'�5�%�z���c�
��ؔ��u��y�|�J��*`-�H��-��k�/�z��{a���j��5��Gz���韘M��WҚA���\��e���R��_�)&D�Y:(� �7�T�Nb����l'�<�s7@v�>I0������2���\�ez�.��Ó�������2fY�-�W�@�@(A�"�J���c1Ґ9.b��f�R�\�Lal���j��c��Cˮэ��)=�Qq��{��M��=�d���mj�ב��>u`�7�p����E�Zs|�I{�:@�m}#��c8������-�r�$	�Vh����3v�щ�n����T��)��Ƹ��Y$�{���j��d��M�ee�( ��[�tAnz�5��p,�P�+sY]YG`�`�P�)ٔ��'��s��J+*KG�c&�P����;�=̰�Y�.^w�q3�@Gsl��5[cr��H�C':�3�E��!K��ȓ��J*W����"i��}�e��VS��sǹ1��\;6���tuc]�3��,��te�U��@�:�Tp v����=����p�gJ��	U��C��ؤ!
���3k�������&��פPȚ$�(	�C�}�Y�ѭτy �����wl��YjFx�q���׶��d�WA�"(�$ :�X�z��C�9���$�����M�������#�u2R�T��02�"�4[R�G)e
���0��#I���pɮS�b�S��q�Y�b���z��m�Y��+nq}�i���}����B�3�N�dv�0sJ�@�鄹?2���$�6�M��YnV��w`d�n�/�sO�j��~�98���Op|c���&C�����g]B���㉫%�d+���u
�L֒�'��Lj}�w�c8q1�H�6�� �F~���2�1�ؘ&�g$���zիL��`�D��K�;��g�gɲ�	�O��rn	�{��1y�� ,�	h�t1H�6��	d�Q
<�eM~q��l(�Á�B!��
��τ�'�4i5�8�X&��;�c[ޘ~��˿?���ٶ�H"�X1�ƭ�؄�%[@�>}Z�?��'�]���`�CF60��8Q3;�f־�P��@ߕyq�&L��nܛ����{[��=h�铓mgK��Ŧ�����o�>���.w���d�m�p-&Mٛ�&ےq���8�Ĵ�ǃ��f���
���8���+p���,�َ;��'��7�J��u��?���ȃ�i+]����gef���}���� �gg�S��~��`>c�&V�f�Z�h^;�n��>��'�m�z����ײ�|f:�w��{+L��(mʶ7����ۮ�.�빥5��o�����\���YMҡ0��}��'�]p����uD瘘���7����ir~|e��5�W|�{����j'DZ�E�_X���]���!2{2������~0�hD�}��Z	V!QЖ��Ū�-l����0���q)�}5��ovZ|�7=�^o����Vա�l�C���j�iloݮ���X8�!���?-��e`�d��m.��'6�����T/�x�L�:Q,��m0�C�Yl���f�F=c��bdf[�<0��al]��r���O���6��DzԊt
���&���-��t��]���]�@�
M��9^���k� ����ht�,�����i	e�ي����)��>��H�P7b�1�#YX�`	�]���=��j	�~JPp����6���;��d�
�
�XzJ���^��\}��ey��>�6%7"Y\_1p����қ8Y���8@`���"i�);�sO��y,�hͦbJ	jM��0������C��݉�4ӞX�)�ɡ9Eɩe��0�g��xԭ�/u�+�{��#y\id�ɳ`SC��o���-��y���-�T׵�/�}3%m�SR�l�@�!��]t��q�,��̰#3�u�l���֤�s��2o����xѶ�/�܇֞�
8
\�XCX�:X���$&]���Z7��H]�~}5%��dΐb��V�U��[9G�Ⱦ�x�::
����ut@�����8�Fm�v����La�/�l�j ����<(���5-����m�8���KY0��2�0���m�J%cUi՛H�������b���ti���ɣ$��̧NA ��xJ#�j)�j�m
d�a��M�H��el)�V�m��u�VO��	���e1���Z�,X�es��7XLg�@��M��5������`}@�U��*2U�U[��x�f�P�y�2���2�͙�Lhnz���Z�l:2-�������MVYl�7�\�uEѸ�������pE,ƶz��_����w*GX����|�f��	6�Dp,2����T�=�|u�ߵE����,�f�3�٤I30�1X��db��:ֈ��'.dby.�!HR��Y�$�Nq��4�C�w���Y���l����Ddb�J�-q�+k��ߒb/��I6�1��TÐ	3���	�M�NZ�E�vR�Ɇ�;tb�F_��T�K-��L��Q��2����'�'E�9��'�w��a�U����=z4���@����^�ll@}l����߸�1"��~���I�Y�`�e 6i��AA	�O<'BeFCT��I�R��](�ޖ�%�y]K_�_�ȦO�2׿�츀A|�,!����,>��7n��c�d)��.w=.�\X�J.��`c>�f�6~�bWn;R�/.o�zo�w�w7u^kl#(�\\��NL�S-������D����]�~�C���姾�B>�G��]=S���qS�쟑��:�/�^��̴����|�&�X|O�wd������3
��\IV��� -�%_|攴�5�WE���BВ
�UW���S�>-g��ü�l���ӋXlZV�,m���暫4]����ո&'�Hy���uv6�R������;~c��=pyL�1jb��g�ؤh��NJ)�M�-ugS�h�u���w�o_9�n�����/NȘ���Ō��i0�!�>�,�,�l�*�&B�8�8a��`���ь\���3�����k�'qsHu�rX����.d�S�6�d5햺`q;Cw�\V
`X�Xҳx�����w��C3���ʑ�<�8�KĔ׾j�\�}����R��ӏ>]�۠C��U,X�O�G�g��R�ZL�B�!U�`k��Ǝ�Y'ܐ>�3Y�+��2�W�s��f�)m�|qҠ�G���^l ����>�����r���ZV�uGҺ�����a<�Syy� ������"���|N�|nh��\.%�gS2]I�����r�@���%?409UɁa��/v��N	u�Ud&�Ȝ�� *�G��)R]lЯ,��m��”ˤ�n�E^l?��32�R*� �h��"�>�ׁ"-����QkE�
x�6p<��1@��
"(�+���e+�\����E��E�\���=O�p)
P�=|K�~�8P4���;��X�0�,c�!�
��̴��U;K�����1Th۟G'/�6�&j�-C��M��x�fa��R�th�7�wYɶ��PC����0�^YkL`E�uS[K�b�ZuJ��"�Iv�����Uj��a!���k���A���nu��B�����`�1����V�m�ԋ:�9u���"�⹹��`vԴ� Bx�'@P���u��Ȝ�X4���3�V��1�5���}o��G�6�FYǖ���@٤������z^�TV�mSUM���+��x�����F�*��>G��MR�)+4+dح�AJd��.�.d�G�+�UǺ�9\ߐ�שr�������fVN�d�\3��J�t�\Z�k�|+[���^�1���8���OY���T6�( c��b�W�	6IT.y�
v��lE���u�V���� ?���
�Py�g����uJ�o�;�v�4ۃ�����%��/C��
��͙���D��'+P�GO���'�h�C�#%�!�%�	�%��3�db''$?I�:�0�
v��Nc֔`�8���?dg���{t\��f@��>���Wr���&&g*��d��`�-T
$�e�~����q�}9�Rh:1X���Y4�3��lIq�K\0}��g��~��߼��>�,XՈba�����s�����k�u�?�x��
p�u*dH?���FI�7
�y(5 ���Q#����n��D��Z���獶V{d���E�Z�n
A+[�%���9��55,��w�$�r����0
�9�(8O:���>�����ÀY���Ʋ���^¤�	��zQ�1Y[k�9���%�aGr��\��:&��zO����t-�$�`-mt�1L��R�uV.�7\}dmtc����zh&������/ը\v����. �L���F�����l[�D��Ѭ�Fwd
֋�=p�T���F,��H%�4����duiMb�=��k^΃yfuM{��	�1KH�uVh=c
�D�9]Yh�3KMi��UU������g��`d����&��m7�WF�E�q��dn������!rb�eM��9���X�Jh`�|�zB�R�~s�L���	�3�F�]|򜞾�����`az�7����uQ�V5�󾐃aOOT�h�/S�"��0SpϬ�9���e� s@y�bm�����&�٢��7H�����*�+gG`eĘ1���}-GM&�]F2]�Z:�g��N/lF�Ek��u�g2<Gb
����RˌS���Z�6`kMV2s"O� �[�[HR"�b�=d�76%���� ��=���OԖҀ��c�3]�Z}+CS3�ͭ��`h"��f}��d������`i]��֧/�
n�5���D�
�waAXN<���B���Po���{������>Թ2�C�	�X�t�3NWR�jVE!�ͦ<�����-!G:�l2kv��
i��G����W�B��maY��z_������0pWz����@+�YA>'�����2��4�~��9�&����M�AF��Dža)[���R�Se��7�C��LU�q[꽜��Q��vu�����)9�$�p���zz� S�"��|�̐a|u��
�����€��vI���5_PI�R}�
������lY	O�
Ȇ"�MV�,����"���g�T��=��e�T�9dD8V)�`KW����w����u�BS�D�5!]�g7)��4&����{X+Vq=sr�2��)�z}�gAI��)�ZcH������a�6�d��ǵ:�����ق��Jm���:�Z+\'Z���(T7pK�(�V�12=���*y�bl��9U��t��cK#@�u�&)���D���q���Z7�F�,\�.�^��fjS��8~vĉ�Ǹ�O�KG�i��o��7���|�+�6��d`���bJ�*�80�i�z��>`��)�Պ����}s	�RC��`�Π�?�GP��O7�Y�c&v��A�Fƺ��X4��
��Ț�����ų�v���=O��2��g�
'#b��g>)�:�<���A�8G�\c�9@4����%�JC���Z`]����1>��C�MX���7eY���ϲ���‚e�)�$����H]�����ǎ�K�F'��df��##������~��,CNKP���7b!j�&E�!~�ޖ81�d�}��M�րS�A��6ͩ�+Wbw��߀����MvD`�f�u�w�n��ߧ#A��`a@����&'�ר����ͼ8���wHS���w�}�%+aLyѩ�
�M�C/�x�y�ly��Ղޒcm�+�&(9��`�n@��e�.��@�cǖ���u/<��Dө�����J���Od.���A@O�\�ۯ���D86�KE��5�)�)�E�/��M��xX��r%a�\�ЀN&��Hc�(��#�Q=Ms�ԏX6�I������g�(���_|�s���W�6:�#�.�M�|ы�LԷ���(Ä�������F�}�ĥ�z�q���G69��.������t���� ]B��au�iJ�~�4�L�Y�"%�l*���5�g�]0���_N��mǶ>�H*N��P_L�=V������s�~)�5�,.���e6�� ��;I� 95O�$ƅ�l,�9���\ku�@$�/�ɩ���*;�|�M�z���aBUj��L���\���!
y���C:��1p��X(p���*�
uo��`]�!�����Je)b|�@;>în��_�^�ٷ�t(pt��W�-r��O�l4P\"�fz�BF��)�n3��� ��08\�
l0�`�yi^fG#&Co�o�1�x��3���G+�S���}s)�2�o��g��7,��|�B��8�h�Ŏ`��I�
��8�-�qs��bl`�Y�f�);w����u���ówFwdyxv���F
���2�ΝZ��U����d+RE��}=�R0lb	L�ҙ��O�ɻ�'���O�g��Rܳ��������J�l�xyMf�)�jEc9��P���"��1�,��D��tZV7F��<Vu# u�-�Rf�6W+�n�],��TYL�J�:��g�hؖhO��qzV-� -�k���6�H��� ����zq�Ft�a�f#��]�ɻ��t�+jr6f��t;]K}��Z��0��&6����piL��¤\�h��k��u�6�򅂜_^$q�
��5x(�Md-��L:k�R�Ӳ�̡���M?��X�"�&�
��	Ђ.ު�;`g{�(����E�l�<X	<���7W����U�o��e�Nu4Z=b&��=ڙY��j��1\�3��)���ܢ��ʅ"�\!�z@���e�k�=��J�f�eXS�p���k����u�
��el�W+X�	���W�l��<K���u�/�i�{��n�X+���9�5Y��d�i���M[KvK��U'Úf�d���{�b@��D�,�L[�Mq�쯁�DJ &�j`M5w�&;2�5��wә��;D�c�X��u)�K]j5d��F�ŻV�=�i��
�;�W���	X%���������@��H�m�1��Mr�E`�.1A�*�
]q���xL���4qS�@R��,��]o���Ot qG�����q��N�$�X�nL�J�ą�|�FBk.�x��%�%�
�U��}�=����6IlZ�'��#bʛn�ɜ�k�_��_�Ծ���O��d�WY{s���$��"=�����qe�L��	^3k�+o�[����+��O>i����.k~p�w�
o[��Gz�D����=�Î�%�/8��t�"�ʛD/5^8�hIAX����1�h7�*�����o�oq��ocm��	b�_kG�Z���ڿaaFAb`�,t��WȩP
o�K��wz�6�X��5���9��~z`�CdQ3�Þ-t9��#��*�#�ft `Moe%�x�1�,���h�l�f�>~��L��ޱC��4r�5Iʚ��~��u�2��$b'��mdP����A
�k1}���Qƥ2~�`�>�D�Bu�A|LMl��3�l̫�}��JJPi@6A�cvU&��dM���K��}ߴ�j�Y#=�H�ŬhEz����Z,��@�{Xj�#��r�:��
6K��U��`.b�G�u��>�f�f���ϜwK�`1��a!�Xᆥ^��:�@��Ic��W����}җr�5����,�6nZ��W;C�I�,M���]��3kN����i�c-8.��'�������H�S5Xq3�ճ�'�j�Pn���9x�q6M�ב41T�,��"��8��'xU;^zڡϗ�h�Y)���bR��x�K�������i�"�ֹn����Fp��c�Z_��� %0�`�%�u��=�V����fl o�t��ק�B�6%��U�>=�F�����[D�9�t��ѳK�f%r�L�)��ꋩ@Zmvq�:Ί�	�Y�c�bx�-�:
�u��.<�}G��7��1�>����0�7��.�jh��e@��d��l�l�t3f�8mP�!�������޼�j�����>7[,�ʀEd�����.�6판:΁ݛ+��t��0*i��l��T�ε�
�[4򧓅����:nz	c�ks]z��v���'d*�<����+���F&H���$QLS;0�P�k�?`z�ʞbz�Ԋ�:
�F��	���Lk���|��Z�&�!�\�+[�dfG�W��5!X-!x��S4M����/��Ʌ��(������JY�>�6e��p�C�hMf�*6��7_�_�寓�sX7���s�V*a]+c.����G�%�x��f�.0����BV�-�Q����`d��/�׽�eJ7�5ܓ���|�<����/{�;�ߤ(��v���,1�v<�~�K���|3>���ϙ����.�8����l��.]ޅ��yh
�1�/�
��8�R��o�5�mpw�@F�)�Nlr@}.I�[|�k`=�&�v�kɬ���)��5�$ xԦ�hۊ@`�|aX�0�|4���*�P+�$F��}P�6��*۲#����޸x�.�cg���o�@�� �"��7�/�&AFH���c�b�j�<8R��3��e&�l��}�?c�qlyK�J�J���5�eA~�a[h�E�ϐ$�

����
�/��O��e=��cw0��<�J�G"�h����d�	Pn����~"i�߉\�֮�����g�WI�����pM�Yn�"#�����,wN`;�	F�ȓ��"B'�M�-��7�S�삐����?/��N��3�_��6+��o4�*%,_�v��A+�*o6oߣ|��P=��Y���,�b���5���<v�G��L��O,�'F�,$K�aq���f�V
�V<p	���y�fo��%H&��܎��x�_t���,� ��X��sE�nl`�H{a:=B#��2f���y6�0�+X�4��#Sy����ŃQo���Ҭ���>�_��H{�l5��a���%�E;�M}�Ɓ�K��=��:R�n�}�i�������E&���7Z���MUy�R�Q������E	��k(��-*4 �	�f�6|9����*�r6�VAG��;�B�禥D�j�G��V�����4�l[\�gE��hu���:��"���X`�0Y�2�sҹ��L�7_,_���nTpd]�,eΣp�Þѩ�*�[��=�����n�ؽ��\��l-����|��:?3%O/�-σ��:����k�^������m(N�}�ԘD�j'�<<���>��VJ�~��)1h�a`w+<��H�έ��7���t%9l6_H�
���ٲ��m�,�����e���nʀ���`�XYm�H*Y���lK�ٺuf��YC�|� ��
�^h ������c]Z�b�n�4F[�4��H6ZC��2���`=�}��50m-�,[�7���=+NZz��o8Yl�"�	�|�_H	�c׋h��Φ�b`v�8��יrJr)��E����5�g��"v��!@��s[��e��F������j��f���,
��l+/t�#^Xi\������*���� �o���b\Ξ�|�i@�5 ��9��nw)i-I-��C{�5ELe�l��	V��I��d,%L7��E��\��'���ÿ9��w�1�?X71�#�_Ξ���,>GEvn*�&X��X%���	T��QI���И�jL!����Xg(��e��7|ݻ�{~���U/�C_{��4�c���+ȋo�J��7��#��^�*]\ZӇyBn�DѣOȝ�z�;~�Q}�[^+�|�-���ޣo~���?����l���]o��n�Y���{�����xRn���pqA��W���|�<�ه��{��/{
�m�=��)}���(��Uw�oP:�p���o�/{�ˌ!��k�ʣ�]m�����}:])[�a{�lκ���M���97�°��E��6�;��U��A<�e�2R�.���ןAn.�7��&��n����i����95F4J���o}��m�V�
-�����[������d�`�e��4�AY��D�̹xiC�]&��4<g�)K;�l���uvm^J6ʈ,{�u���lx����gz���@��?���-��<'���:_�B�@�=�G}¢�o��	��m3c�T=�<%؅�'O3��"jpM7��,#���d��r�o���70�c&��)(���ב�$֢�,@+�,D����&�@]�e�$���%����IVbNY+�OTz�D�$��-1k*�7ٰ�_��s�������� r�V�ӓ.|/�� 
�M���}�"� .&��ZFQ���d殻��[,2 h䅼��5ih���R�%:V�u��*@@Jj�Q~�Qw��&�����Pb��m�?)|�:x>��#��F�cX�D&7���r��>v���O��W7�ݚ쨌���$���Rlw�o�߻���O<#Ѱ(o��Z���~���g���)��k�+�ڧ�@�;_��M��t:Aj�/_{�u�k���܍G��7��Ղ4�>}��U��iQ�L�mo��ZKV�.��ܩ�{��e6"���Q/K�lqLP���-(��C�RX�cp��,���1��Pn=v�ҿ�z��O�+��/���`I' %	t�P���.���ԭ&�꼩�D� �`6�yٿc��==k���vgS,�嚣�.�bl�`bn�`u4�k�t�7`e7/K[W/�q��)S�D��c�)��#kc�mgg��֛m�<�#;W�g��Ƹ�ʪ�1I��}����)5�'�,���4���"�u��tr%;]UJ�GYˉ�Zg�s`m�I��ɕ���t�ջ��A����J#;;^�؊�x׊14�j��:��*؅Alާ#k�꼧+.�f���/g�L&;(�
+�Xؖ�F�dG؞�VDd�Ȓ��^̈́�cY[J(��称z�-!SL�x,h�~�Lg�`�f��T|��][f4I��j�JH�T`��Oϯ�
��#�}�e��M�&��V�j����J��uA�/7FXDͅH竑��B#ȨR���_�	���MM{�T�zy�iB4�f�ɐ��� 
���͉�9�̫�ْA��l����>����J�4��1P�/YX�2Y�e_�\w{�s��D
9��
)�pJ�`l�rlא�~�a6k�E��c%yz@[S�[�izϒ�fs���`�>&)f�}Z��
�	�{5;4c����UU���&�wA�ns�h����}l�[7&�A�쾙}:;=
�������<X@�M�9���@!���Eڀ{������&���i�6��G`�8vT�>y)�?��33Sv�O?�P_y��9��y���&gϜ��������Gʙ�Xg��w�Yo����d��w���`�͕���Oc]�i�ݲ�_�<qVo��*9}�"ȡ��������u�~��;{A��n?���l����:==+w}�^w�s�diy����r���E��"�]L��9���!�Ϣ'�g�jM3��7�_����h��!�E)L�S�����&d�Ŋ_E�670u���|5���@��a���gW�?C&�ғ,���vLW���([�|����bF�� +��Vuqm�	Z�}�w�n�=m5�5m��U`�M��f�-l���ƺK�yc��������n����ꋋwM{%kY�`X�x�?	!Ƭn����m�ט��ד��R�FG��$HL:�t#P$�g�2d���PX�Ic(n��`r}��\��ΒH��A,ߣ���f��/�Ҙ`v	���[��i��%.$.#�L&�Z�,��Ď,T��|&��R�*�<��)%���,X���6��Dv���F�"�4�Qb`��^� �Z�Pq�T��mK*��h�K��Z	�M4��=@���٤�6��g>�Lv�'����nX�
���,x��M�{|�
��w����N�	��o��	�	>�ÛN=
oH[��%��=62����X2����R�ϛG]�M0�A�$a:A�n�fn�5a�H5��`���𯔯�ģ��AK���\��ֆ;��ʱbE�yǍ2�X���;�����|��?.��ß�+vg7ִ\-J�b}$��Q�#Zo�ي[�5?��곋�:3�f29}bi�L��*#ߔiLț˛R蘭���4�$�j?R�Ū;���J�)i�,�C�k���4�x����f_U���Dt���3?q`U��¿5i�<���-�Jݓ�Uv^���H�-���
aZ	����FA��en�M���xt�-VJ��Xq¼�����;>0
��P���C�f�)CN2�uēY,g��
Ol7�*1MIM�.g7jƸ�g
h8M4uM�b�IhJ�ȅ~�3@Hm��jF��r!-��9�>[�J{��i0��:��f'��t�Bs(0�������m��1?��F�%L����S�L�m�Gr'f�\w�h�Y��Y�[��0V�r���D6�ʬ�XWa���†������\���*��gS�8?V�sQ��d�0��qU)��%;�h}b����*���i͘$��(F����;؛ն"�\�}Ģ��w�I%�>�^g�޷��x]|?ڹd�&���hw�r���-�I{5
�.��.��5V\a���ad���̦�,��9(�лL�x.{�B��]��@�U�U�E�-5�Ig*`�׻�~k9�[���+�zH礃k���en���J���ge�nG�eZ+�LK E��g]��ľT֑B��0.�춞m�fK>Hr6g�A�
8�9�e��j/
�9ˆT��ng`�FN�$�Y�kT�V��k��ܔ��Y)0g#}ͺ�Ѩo�.�O��a���
��jx�J��ynys��J������!5��_�X�R��o���9�ڴR[{�m��e������>w����ld��|�=��&�����?|R`��;,��W:m�A���/>��̥��O}�τe���لchAȍǎK�G��|���6�R*E����
%!���CȾd������J>c`1?��{��ck,�mv��M���d�P�LN��F��L�@����}ܛ��b�
�g��-j�]���Y��b��p�JQ��J<�`X�+rzi��f�:N��I-_����F��!����NK�8d���vL��g���g���0�.����q��V�mm�)91{2>g�
VW�������dϤ�(u1v��P�k����Mg��q�u5�3�v�ڞ���,�6~���	Kìsb�E<B�+?K�6i�KFY�1K��ٙ8����/k%r���_o ���pRL�F�.b<��,d�}�nĂ�@�����ϒд��?��'NWė��-��>�!Ú,��"���v�w�3��/��rc�ZXMLny�l��;�3b�A*�^��M*�xB<�B;{��] �G��ހ,_KR���EPH��7� �E]�;��G�M�ڗ��%�0���`nn΅Vl&�;A��-"�{�TV���!bc:
2�A>`EY<N6<� W���Xc�M
��s�'�
�c~qd�99q�o�2�X��Xv�&�����P��W�ՕUi�.����،�x�U�'�_�r����z}�u'�+��jYz���Mwܠ'�!���GN)=9_����%7]�$^OΝ:�d�ͻ� �▫�o|����"�Uo�O�{���O���r�!��;o�W^�_����k_s��t��{���ۿ�W_w�}�kn��^sB��
��g^.��������o|�m���rˍW�W��z��O~F~�ν����Ji�F�Z^�w��E��ӽ�Z!���"om6ٗ�]�����o_�e��b���oE��E�����Y'��
�W*6���"��Yd�'|;Z���K���GX���=��s=��=��:->�}�O��8��*����Pd�I�躍z��i�� ��LbZ�[�ZovS[Z�)����]J#]�鲲��F�x4�2��Jiݟ[4�KY7z~ls��v���������*l1�\lY!S�Lɏ��@`�g'�M
�Yq�T2`��kٔ���5��V2>�3�c�7��k]��.���:_uO�����Q.@{)벃�ɤv�C���0;"��QxϙkA=�j|�l�cJ;���͎����cNn�/��B�۩|$�˱{�!B˜[ӻލ�+�H�v�ض�c0�a��k�p��"��7T��_n�}"P�V����w�b���b�mb�;��#�֎�S�GN�(8a�
��?�sX�V6�H�4��T(0Z_{j���6ziA�Ӣ��ɧ�u�`h��3y0�=�b?�DY��ľ�(e�w��b��2]��DG�Dz��m�F���T5;d�}{��0'����~םYB�FV/��R#'k�"r+�iw���p��l�Pb远�̑([��m��3)�I0���_"_*�u�4�P�-V{���̀�,<��cKRY:NxC�R�|���^��y2an��<�&�M�G+����/������L@��4��c��/.�j�o�,�"��(��j1o�>K�֬u���h���I��o�aM(8��0N�XT�����o�ƥ^/�7Tz��XYEV3�t���]sa�u��eBG�J�b�p2�]�o6&ŷ���2v�O�W��o.�75��b�R���Š���3io�cp?�e]���l��ijס�Isד�-�x)af��u;��v˂?���vt}�4<#�v�-��i���?
�4����j}C	����诃�]^���b�`=�^�y$֩bǵ	\���{`AW�ѐ�&Rw-�=s�,�t&NKd\)-`�P�o�*!���&�,���A�hמl'�'��:���m��af��Obv(e���'ynH�9�woYi�1��&��9�r	(&[���݀r�ć��L�l̼��$V4���X0��0d�S_�_�B�U���X��4�Aq]�ƹ��N�;:fԦ����ۿ��2��{����Y�+?�3V�|����۾�݈��ў�f���F<�_����?f�%����
e�O��b��`���,ɰ�b2fE���!§o� \$�%
��oc�����z�n?�5���A�
K���ƈ3ܐ���5V�#��q�lG�4S��ZC[�
���9���vd"��gO��I��b�`�'��.2�|طt���LY���h,(�mb#��/���v]�K�Ә+�b�r9\�W�x�\y��Z�R�
�,�|�k�����~P~��R���o��ߖw�y���#��'d��26�g>�{���x�|�_'���oq?���2<`=�p}Yߞ���E����n}mS��O�{���99<7'��|��jH�T>�����Ǟ���$��W~_z����{�\3S��Ʒ�/��?�G�.���w�
/��W
Oƽ�GN�!�z��`ee�
��EU7'0�kĉH2��z�sco=�����V'.����XV 	B�RI�b&	ޱ�'b�Љ�J�Sl]�R�Yq��F��a!͘qkK+����A�@�����da�K�ynb+o�,S�_�`V���c�L�ʤ����k�a�5}�\�ƫ���x�o��l�
��O/u�Ơ�~���׀.�W��9W(�q����()��f[�Χ��c�c(-���zo(�wz
�U����|�j��Ė�x4���*�)�3Y����eIJ<�8m��м$3�0@�/�L )*�=�xF3E���h>�
�Yv�a69
ʔN`�H�7{���	������|Ol�kM���ũY92+zl.�J�D����@���
������J _�M���:�뾡/ץ�G�`U��X���J$�,1Te�y�J9�{�NV817>���4r��WW��Y�b���>$5�g��vYu5��=	)/��I���N�u(���)��ns@�+R.5j[#5�2p]���)0hL��2
��t��5��E9��v��@@�IA�[���VƎ���^��6
0�k	Vvz>�#3�/��j����8Tޘ��u�I��6��Ж{i�fCJRV	�B��Mr`����z�eH[��Xa̽`13���c��w�*1�d���+k9_�u�2�;y��)A@S,�m�"8!�k��wԜ
���R�M|�5jcs��E�*U��QZs���Y12��n�MG��+t�d�j͞Z}�:_:ֈ9ј��P�	-�*@_���Zÿsw�)8��*�ό�ìF���1�,hl2���ނPO릥��5V��]iv�hez��:@�����+�Hd��<�c&2�\���j�\!/q�v3��ӏ�a��j����*��[�۵�tqN\]��}s�rEϯ.#�4�sv#���'L��v�jq �Y�/_����6PRF:]*�^cO�Pن��Q�\��>��r�`s9;�2�j�goʽ��p�7��pNS7[���$�����ڪ�v��Z�:
5��Vz�lRX�Ϙ^�+��Q��)�u���:1��i5v¹U���b�n��mK��b,�|e�/��� �`v��8;��ʷq��"L�7�v�ط��8ךë���=��-�����Qr�{�>�OP�8�������=�n�k�'����p{�R�˲�w��A\�}N�L��O���㏥ݯ}�ǿ��������ǧ���k���3�7A΀jI�PD�f	B�;n:*lN�V$2-���m�z�L���u
�@
�ߵ=ҤM���|n�{%��r������ޏ���%�9��qq�oK��uv;��x�:U�xR�fF�9�i(�wR�.��]�_�z���'ΏxHMÅcKsu2�k������\��Żn��s'���,l��g��G>�7��p��+^v���{�B0��X��.���J�Sg.�ˮ>�2���_��f�����G���|\�z�|�ޤo��:����H���S;t,�)
��Z�<g��&آ&�);
�M�����)�la�/a�c&�Ec=�T�pT�������E�c��H�FTwa��?��	��(0��;H��.c�-�oi��^��O�	nu-hǁBr�ܖ�#��
�<De乔��yd��X�������Y���UtC�֐���>�����*&jVó�$eY%��ز?�8I��촆�@o~ߌ0ion6ݳO=������/>�� �%8���u�`�bc��u�B
6�-��"��Z�h�l,�fr�<@�"=Еz[ڸz�`k��R��jO�#�J��Z�9�{i�`��;�;���߿
&w���ĩ6#:0�
�;�rB@�J��.�,�b6[d[�<
�Wڣ�{o�3�[�kϹ���Lk�P�
��Ҽ���.�J���n��#1��s�@����7��˼Z�WY1�-d-���r�
\�k�4bF�U#�z���OS�u��{q��ÒQ�I���I���-�`�6�S�Y�X(���d\Yw��CE'o91�|���D�Oc뀁��8���ݜ<����$D�}�xa�]^Ǿ�4��b�P�љ@���L�IR<]H�M)A*�}�|�>���Ek�LY��}*�P�;���饡(�la�xkќ��zW�s��^b^肹��9?�6�h*]DFb�~q�퟊t��q&�،hs��#c�5�/��2��7�:/��?�e@��g�[*���
���X�'2����m��U�3�3WȘ�3�6Y�„���ʲ� eqN��2�����NЙ��0I������Ӿ]}����i�f
8�R��LݳH��R�ɖ�akoL�Z=�Hˁ(Zk�u��q�f�$NJ|�F�3V�d�7r�.��a (��8�mf�������6����E\�	��+��"�eГv|�l���LGƔұ��&
�(�-~]u#�\aW�ufz
���OX�k3rnmUZ`J��v�}������4��Q�L�׌��I��d��2�\كL�ic�K����
:c�YHv@}iA��i�Łk�ݡ˃�&��9���f�evv����ٴ1�B�]\���|�Y��C�A��Zw�g��&��鑞�m���8m�K�XT��Q��徰C��b�M��܎�ߘ���IJ&�‚fU+)�k��3^amtۗ���X���I(hH�Nj���4��Tp]�c�̢/�N���b�(�OvL�cȾ/�^�:�9O����U%�@<�շu�#[m�0q8°��RoUb&��H���M�(e�i�Zq$L%���aH�X��O%� 0U�� ��M��]���XE3{V�O*aH�QhA��B�cm��d��K�o�F�nD
����d�06=Lhh�d�E�>&�Cų�죝J� n1����(�Sĩ��qz�K��!Q`��A��n�:2�32�'kEUCڊ�	ha���>-�x�
2��5y�-�Ƀg/X��
^���,��!@F���S=.O!͵��	����AD�vW<�/� P����B]���rg��rd�	�0�x-����D�f��z����!"�7�?}�sr�����&<7=V�]��`�f�7����Z������?M��pI��v�vU&��0��d��x�&߸+��5�j�C��t�ńؘ�u
��>.`��[UX�ʡ�%Mљ��P]__���*�<�|<�LD�Q�?�q��&(U����By
�FGN�I�����%C\�5��9�����¢��z�����d��z '{Y[Ә�Zt>�]�eF���龂7��.ḑ-��{����KC)@���"�2��M��Y����๾��$t�Y����򋬀�z�u:�+�����e�m䄞�x2^�40")�b0bT��9�)���y���=tİa�A�T��*���Z��V�υ��6T#��Ƶ�}!S�'F�v#�T@^��q�"�����m��%��S�`�>+9k�,,��1Ma�����P�Z�ԡ7J����A+�N���Z�]1��*u;/�:TYl:y�Q'��k�'2���K�rr:v��9fB�c�S��<t�ۘ�����l=�sM+��͉���ca�o2��py��?87��]lG����K�m�a*�l��[Ь��rq�E�3&��[n;�����d�洋�6;�]X8v����0��Z�t��,63�fʷ�����j��T
E�T#��=0f�c�7�3��#���F�*�頢��C���O��t��-�i�b�a��T���X��2��S�;�zz	�^�wh
���@�1!����'eglL�Z�Z�)P#�q�^��Y�%���6�EȮ�nnf�F��x����m�����'�*���{5~��N�?�9$v˵�wș~JW�]� !�:Ց��1�1诚�s��~M!e�lPwض��U����B;�zs3�t�oI-��Vrj4S1K
k0EoY�G��pH�+[�Zϱ�m:+�8/<�dq�,��oH�2b���7� �Vd�����w��pS�)^!��m�@����vV��P'�経kW0W�b�aY����l-��; ˫�Ʋ��&�~������k
�~�c�B��ll�,7��q�k�:��|:K�K�_�-x�����/�Ա����m	߷��q���'Y�v��1�B;fe4�N�6����[H64�h��H����x�9����xq䐄N�IF59�X�m�6i���d|4��"��K
�aA����`O�e&�[!�Y��V�j��A2�d~�|˵Q�f#�F��z���m��!��:����,}��P��[�d��x�aŸٱ���;�@�s��t�t�7.�
��d��c�Ѝ^��|���E��p�67����#��j�s�ګO�sϝ2W��'���L���j���/�+N��}���(���UG@�v���H���Y�����N�l��7��z�ޥנ#qL���<������}D��+_�~���O|�����L;�+�O��׾��B��?��-��/�-_s�K�m�|�3�ʟ|�����\uD~�C��~�|:��Ϝ�&'T\ܻ��>�u`���^Ԏ���`XW�/����Բn�Qk�}��SK��#�_��~�����x�i���G�,�Ӎ:-�1���+��B{��b%�]2J��_}�,71!\�'!Y5y�&حm]o7n��?���6Gc�B��~bfZj�Ձ1��!���{�I��,����Y,��+Z-��M[w���̤2#� �@7R�Ŝ�V+������R���
��,m�a��~q��AS��s쑭�Xs?:6��a!f��e'��ю��!Y,g}ƥ�>�qO�cLtW6]���F>��¹��Xޕ��?�T��h���@R�Uɪ���\RRb�-���� E�V�Q<�8�E��-��%J@3!�e�Kt3R���Fǹ�����m1Xn�딭c�6�<�MZ�x��ئ�V�e}
���:=�1�ؙg��N�X�34�<20[+�)d=M8D��8�/���E��筭VWG&��0}��\ą�����Z4�c��Z�R�{���H�r��6;}�y*2�9\��pl��a�e��_\��)"A��?=da���c-=yp��-����e�gm�eV>K��8�ب[Ff!�B��Z v�U�ì�c�̌P����W&�t`�b��_���g�Qŀz\�C`��p�]�:_�J:��%�-��V��uӵ���ٔ rS���]갈L��32yW��u���;��u��t����kr:7�KQ�fvjJ/�M	�!���z�N2���5ı>}�/��=c�%j >ȋ�{����yJ�?��+3���uj�J���"xgQ��Ԕ�I����G���Qj��Q�n�H��:25��V@��̬f�Z�����Qv[�4��͙��G
���U*��׾��=�8�8k$����~gd�є"I��g�#��l�*����s�t��\��X�X֐�0��4g�U�.�l�eS}�QF���؎���433�1�4��JӊR��/�ͫ�@��_��Ak�������2
��x.`�����`�F�B��k9̥x���{�Sh�Ɛ"�V��õ�O������d�
�U��U��8dn��e��EL�6�†*L�ЩL��Գ���#�R ��7��A��	�t���V�gZ�!g��2	���3���xm�U=�5P(x�h�{T��ޛǥ�=�q睭�u�{_D���&��:�+��0��戌����#��3��~���H��'9���\;]v�=�$>��r�N}W��H[�&�Gރ�=�M�F�J'=�5鉜T�$+,�G}Zr��E��1����(�<���3aw��5b�s�gV��&�^D��Y�jiJ�H:����2�E2T
�������=��[�5{���mo~�|�g���o��������1=��ow���|�����1
�w|�׃��Q��|M���F��K�����~u�ry���*���=�z3kCu�2R�K7*��g�u��?p�|N�LI�R2͢#N{�r��`��΃ig����{�a����g��ő'�q�l�]7v�ل�Nca�$�%Z�+���T�| %(��S}aA�.+�p�Bʥ���&�����sU`�����R��x��(X�Q��^�?��B��I8v���V���n]���m:x&���v�����i�*�<`¬���� L��R��C*��véUGsp�(‚!��h��<�� ���4�FCP�c�{t��LMʕ�>���Z��4X�s��unC��ؿ��†S�o�`'#Ӱ�d�QcƄVX�N?�M��щ�@�����M}@�Z��E�d��]K���4��W�zu������η5f.���B^v�6+�ʼg��BgS*Y1\���`��E�X�k��mߴX� A+�X��Kɢ/2Yi����ﭗ�ɋinS��cʃ���@��=�b����Gki<,�-�'�#?*�,π��%]��2��Y?4S0-�e˫4��f#��f�|ݱ��L�q#ض���3�H�s)kDppz(ϭ�k��-N#���t���t��s��T���|G3���!��\ :��՜|ྫྷ�a����!-
���l�-4
���f�P���׏2_�LS-M���q��iGV�:���������e����`d��Ȃs�M�!��Q�"�'���x��f��7[�Jq����s��A,�gE���b���m���ť�;X�#�J��X�Ҵ��H|���ʺ��a1�LG袐�'#���jy\�
�ʑA:g!���y4���߰g�����$"��k�P���p��V�.H����~׀�,��ط��L�ťm2��D+���ZG1�',\f�Y�"/^���X6��i����	�� �]�\�Pҗ�B.l�˓�kr�V��s��X��H�p^Ϭ7��4FR��P�%��g����5F5B�1��s�F�>�,�ʙF���3��d8xV;�>�[F�g�[��|��;��hKܧ��
��*�S������Z�ˮpԷn��%�eV	���fj���ځ5vLa�F@�l�.�,s�@�0m��E���I�xp�Iv���T.c�bذs�4@s
A9qE���"�3�<�|@�D�,�U�
co�d�q��^KV�Ϲ.�~�s�7���(�2�r��]�A�2�fk1�ݩ�d#wԯJ6:=�MdpGEn�"�b���PrDe��p�.'�e��DƉ�Q�'�H�[��v@��)�C͞K�~�(y���F�Z���rL:f�6�h����G�/�ξk5Б��Af�ԇ/����������n�Y�h��(� �tW��3I�keȀ<`���>�7�^o'k���/Fa|i^
ϑ���총���O[ʪ����P��h6,��7��W+���ѣ��	m�<W�4���&��$��ϔ��&�P	j�5�h��y�����ad��N}�}ܡ��n�7te}=��)+1¹{:� ������	Mmb2���y�>m��L�,���Zb2b��'q���-
^&��e'�����P�_���2�E-Q����Jz���1ي�j���_��dc�}5�s[3to�VAu
�Tda�yH�E��M\��Ȉژ�(��9Ҝ�9eڰ;��0ʛ�
�S:�R�C�c�ckK�
��Ma���%�X�!�����J���O�L{�"GN�a�D>r'�w�O��&6Y�h��1b@�u݃�ј���nj��CLj�9R��
�Y�i�ٔ����c�g����MM�4�3���S��9c`}�l��V
[E����ɑ���-i�r�6�0
`���uA���y�&_8f��c�ņ� W}��I��AL��2������s�gc8d8h8�
��(r���4R�M}��5��\UW,���w� Ea���'ec��g_h��"Z��1^R遖��Nq��#C��|�R,4g�y��|dݡ($�J��z�[&H�Y9�Eץ�0M�V��l�@ڏ��X�v��Ѝ�O��m{���dY^��XJo��-e�
_���#�o6�łz�	�*a�㰭���W�[e%�m|��E��s�=�-F�nF��>��¦d���?(��K�31潃y��TU0D�U��z$7�B�)���]��6;ry���H7c��)sMh �,g�Db.ޟ��Z�· ��1�L��'l"�Ni�����t��f;y�R�A˽D��!E�r�&}��4��Ƽ��9��CUY�ŸC
�`��uj��J&=c
�]�h���JZ2���e���*�)��CCs;�-\�ij��c�%�0�g�=���6�^�[�4?��в��eV�DH*]���ȶ� z>K�2%�7��m^�ֺ598;o�R}s�i����1��O��s%�Ş�!M�s�W�*UcI��c�Ȯ�@��&�����S���*�yC�dE~�A8�T==����+�m#m�I�b���fy��~%��0�(�fS���f�\�0�D�u���6�)�#��B2�$�x�tQ��e!8o�_�!8�g��`��Ҫ3�l6�0�ي��r�5�ѳ��3�ʯ��"C�/ۓK�,:$������g��	�4c�<[�?��s��ö@�}p����{���V�śK�9>n�:���қ�=q��`��^Ñ6�.�Ip��	o�
������+�Z�5,$ۖ��^�u&�~͍2lwe�3p������\�O=xZ�-��H���Ed߷.� Trx�V7�&1)b
�:��}|��az@U�D{�Gdy�eX��h��G6��k���u}�8�l��@���n���Z4ryfր���k�p�Kkx6�@�t���u��Yo�I���ڬ���Wc�V�ɀ�)���>r�B�)��AC �x{��c��/�s�^�c����]�7��S.�G?�iW-��ıc�8�0rs����P^��+ީ)�����Sf���s����r��Ewˋ_��!#��q���㮄�uhd��S�@��\4)��l�D�A$���ֽ(e�c,��z07��Ի��CV	�
|��l(���!wՉú��������*ԏޯ�f�;pH�咣W|�m�Y8wNn��f��R��\C�I
�S$yF�2)�;��b0�ٙt�3�!�4	`e؊�8�3%�+�7��P�Z޵#��A�x�0� 9b)�h��5��K2�nPU#�K18�:gm��:Lc��Ax��Ж��"j0�MPyٶŐL�Qug�?/^�ME�/�r��4d'�	 2�}f��O�'�v�dT'���ik�g�3R�>y�H׌_��H�ge���Ge������
��K�ռ���=BB5��Փs&�R��Z+Kw�'g�/#�g�*�`��zh����%�pnQN�8n�+Kk��c��l E�n�[@v��E�K�6[@/5��`�r���i�1��N)�<����:�lsL�B�|I)}�����ٱ(O˜��67dvhH,�g����&�{�$�=�"٢?�?2�Y��F�]3'g��Ȼ�ؔ[��<��ulJYS%SHYT�;W�����X�5r� �[c��y �Ȓ�5 �uX`X�>���`��jJGlYRߘ�|x��m��#�P(��C����:���=iL�c֋@�Sx�Z�����X��F�qB �B�ƼyL�LG>���^��G*�Е����s�ف��ø�QɌ��E���&��x͵����	��P��gV#}ѡ4��
��JF���l�^�f(�~�M�_5^ձ�Z���ӑ,�2�_�[��7o"�`��W�ӊɢ�����L)%�eS���E���a��\�3��-�/-m�.6��4�p>U����& Xb[^��i���G���q�-��8G�#����š�<�\�O��ԀC˚&�Y�zf=�g�e��Y$������B�K��҈�d��f;W��a��4��"l�	k`	�1w���sK���~�α5|�	G�T�F��nzx�o���{+8��l�g!U�/c��VବS՚�EAj�%�N��1�P_�k���bw?���fk]�0ȸ�kS>
��;�pA|.�{L��l���Z��ۙw�fG���&�2�L�W)\L	�ph�/��%�My��~�%n9���K�N���t38'ʣ..\4��R���BG����Uu�6���
榔=8z=Wɕ
�����N�KV��>Y�X^YF&��W���
{��1=_iUDK*N�lGO@V*r�X�H������ wtj�.���V�e���zá�#��vA��
��������$�Q��J�u�])eK달���CL/j���<M2�����,di;b���1�q&�Z� �<#���ٙ�\�΁�t9��J�L�()(�Ha�����aE�d���ۂ��t�i���U
�U|a���zNٽAW�{�@PV���V�V���y<c���(����;�6�Q�-2O|�ٴB�Ra$��Xᄍ�L�p_�!��3�k���������2�;�9��l�/�����!z���k�[o�JV57;d�z�����AgSڕ�>�k��O�\�+��,���c�O��h7}v�f2b����ƛ��NBC�׌��6̤Q�'<΍<�m�1��x��Խ�u^SK�%e,�P��uߨ���߯�����F
L�k_~+7�؛^K�<����_}�������3�ꧦ�e�?�el �2����1$3ےxP%��M����Ōhh��;��эC��h/��$R���%���%-�5�L��t'����c�C��-��q;
�7�侽]k`X�%E{�X{9q�|r9��Os8CM����H��cj6�,�ٟ��bGCv1�ϭ �T�j%��ֈMw,�����u��`���u#'UN��`�hG����P�,nVW��7�����=��)`2���Q���܅R!���s��T���?[Lif��#���}�l��6%G�ï�ʒ!��m�Ӛ̖gP,��Y� Zߐ<V�|+�*y7���n�f)㥅SC�e\�j��s=�-���:Ίa٨؅PȸT�SiQ��QP#��ȴ��V�,����`��f5ȖF���s��5ݼu¢m��P��LƳ���c�:;|a�ػ��|MR��	$Gi����<�u���A� Ӊ�7X����i�P���6�f2�`�{�mbS`0�;��R�6�>����zO�$�>H��"��^��i�؀ݠ@��@�cw
6�
�
)��5��4p3)Of��`!��|c�������Q����?��X�l�Χi�6���s<ؔ��.�j3]#��C�|u]�{@��Ͱc�i�B>���-��MGh�ni}���R�"�q=0v�N��g�XT3�������u�[C�l{?�U$�6Z)y��.,�%�6��Z#��2A�jF�"�=�!����h�=��Cҗ�rٜ�U�A�u"}56ۥ��(�to[7��z��u���X �*W|%�i\3n�ܜ�M��n�ZS�X��'�gCG#KG��Q�K K���f������[jm (�(���u����ڻJRc�q\i5����f1'�l,�j��CYdA��X�ƺ��g�3�L
���ʲ�y�s��*��m�~Ž�2�R�����r�J�)����:��x;!1�-����5Xo���҂��`nu�Χ�։
��\8�`�h�VXo�Z�f;�Ψ�@�]lV`� ��lh�b�Z`���z��FK��1�Uqk`�9<���W:l"X�! ���6Y�,?+�^S����:x����s�.�����/y�S�u�'�F^�'�Sf�ʘ�-���\�@�g=�K�Ly����2 I�^��𳋞�
�O�c��\�B�s��C���������B}9{�$;Y��g��R"L����Cu����s��Aiī?
Z�P��cG}���V���x*��M5�aB4��~����o#J�(g������d�R7=7����s�rt~�+�RϾ�H���5{!g:�.�����u�Zr0f%_t�Uv�Y����ѿ7��J`�BG�TВn���(��L�9�^R�M_GA��i�Ț�s�������wf��E��nƬ}�&`��ß��b�ͦ�:�1���QY]��S~�y�OYJ��ώ���n��t�/���xEw|'��y�3a�a@x�u����mle�-�䕭�4��c��T��H��B�m�R�M~���{$q��vd[t<�Ƨ�����Mn�m���m3!��8դ�ƒsk�+@q>��Ph�)��|��za��'"(dEA\\5�`���[C��.�HV\�,���]q⨂I���E�v�d���u�����LBAk�>�8o�԰�׍c��c�'�����b�l�u��rr��T�=8�E�A0�H-#��L(KmՐ�$��:V��|u���V��m��R�ؤ��'�h���f��B�<H`I�Ԝ`�8�1D#f}{SB�6��*�Y�%A��������v
�Ħ��}�b�]_roEy�9��$c�X$Fk'N#c�G��b�(Tsm�F��y���V2е��n���EˮQd�Gd�cH��$� p�CX��-���6mM4j h^T`	0�0V +�4
��LI���O��n"퟊|�.�����a�����̲��+m��YӬ9�����Oe��v-�V\��e]f�?H�����/������5��i�!��E�Y	Y���!�k�2~��7��l�$��"���j+*���*�㣇.��k�[$�C�g�7	cOt[�\��:���޽� �D�R��H�1Ĝ�zq�VYLςN��W(V��j�+-����m�d,��676Is��Tխ�!%�i���5�^+�K���QN�VV�������&@m�Q�j�G�Mx��;��N��4Ʌ�e�|r�����`8���\#�FK|�Y��;���֬��"uo��jg�./�&�+0���V���U-�Բ�[e��L�AE�ڲ��%��r<aN#������f0n
��lh�u��h�Q��ټ�#��;\/eKn�ʘk���6H�t��׍�xx�7��l��O�f�9V��)0���[ �����U�[�1����Nmj1�r�g���u��M����]ǹ�(�ހ}��m���{�q�����o�I�;:��ɏ���uDr+�;_
�'|��I�ĹIԳ���IB"V�P�ak'g�XǕnK>��N?�-jK���|h+EX�]򲭱�eT&�&����hp.۴�1'�j��z~N6��}���qL���<�����V3 ZJR�y�g����ϑ?B���3��F;�(�ϻ����HLK�����??Ix�h�[���l!�$[���"ک8_���,��N��u��Y~D)��@�ʯH	^i�u��Lo� 78�P��Å�F����r�&S�o61�Thf�����=������:���_�On��Vi��I�ګ�PD4���f6YC�K_�4hN`�I�����S��������]��f�:m��&>�_���v��rwՉ�*�E�<��i�{b���%g�m�nBh�������n�?�fo5J�[cp�l�ۢ����pcym�@��yy�ѷ�2WL�u:�t}l���'��	��L����5�=�c:vc�	�0�¬Y䑑��g�9e6Pǎ���L�51�SF0�{(�u��0yX�=6���IWx�#g����ouG�x>���.��ݶq�mO�{�!���i�����6�zm��;_�ܱ�����]�����Knk��s��/�>_���^���v�vf>}N��?�te��w%yD�;���nz��_�����fX�3jr��/������|����f
��X��7~]���/?��_��BE~�G�_�=sF�W?(��/�J��7��&Y�s�C���C�;/��_�^��W��?/���陭�o����/����<���[�hs)�)�y��g��H)���|�|廿��ۑ�������n���[�F,Lo6��?�W���1���~���_}�X�k��X��\Nߧ/���[��q)�r�W�O�����?��zN~�W~R��ߧO<~J��"��sys��W��o��ޘ���ʪ��/����'>+�p�w����#��?��Z
S��%�M���O�k_~��P�2��V[_�ڷ��D����gu��y+Kjb7�W��°'VW�8���`��'W6[��[S�Q�l��8�'�.b���	��� [��g`]��ؔ�9���;�z�����ӥ��u�L��n��.��.�W�G���`����ímkS�`��M�Հ�܎���A���1���� ��OmՆ�7��&^�[G�`����^gœ��dUҤ��}��I��d��X=������ͮ�tY~V1<oH��@��m_�f�4=����g^p)+H�:Jꭰb��M� ���T@�tZ�
m�IY�(�0+�_)�C��[|yA���5��(x�ف�$���(�F�ݴ�������H^z���5���,;�(�*i6v���}���PhVD��������L#���w_  �B��S���Sj�����v���Q�U/5I�I�h��x�c�d�m=�%O�Oc��	{�HP&�:~@�7�a��e��d�m�t<�lu��	��YMT;R��?|n<0c
E	^f!�.�)y�'��m'�vnc$����󷨒0���%���%�9���ڸ��t���0�4�1��]W�
�A`��{ �1��Q.����FJz$��U�e��R֥���m�e�U�He�,�e�Բ��@��_]\�0��8��j�p7����%X��dw���=>���R�D���n����KG���s�ѽ�g���v<��'���~/�O��;{<��;�ݶ�<����;�{��Cd�c�����{�s���uO����~]�9m�bŽ��U�{�뭍�f�!_�w�/��o3�b
i�����`���;^"����|�w|��o��f�ي\s�U�+���׿F��ۿE~������}j��}�{�~�G����Z��~��k�?��̋�GLoYZPq��Ї�F���?&�J��������?���ŧ��a;?�o
�dEݞ;q�Q�O�3�C��u��~�w|����Y�Ys�7~�j)[ �+�z�]���kA��j��zPjع��c�G���J`t�J*A\����ʹ����?����y}�Kn�s�+l�J�X�7����YV�O��o���Lb4@f	shA~���^����g�W����X�ׇ�!��|�^�@d,���H�>x��2���sͺt���cz.�\9̌��g��3�MG\wC��#;F\��|Q��*κ�/"�v��	��/��w�
f�3�
�wnPj���:���Z♟�qFuP�)y~&�\���x�/�1g�􄾓 ���v��5�J:d�M�<�5qLK���r&�RD����-�[�A<���gbEdˈ�m��v��VOk��W/�;��y�|-�O�y��e�`���#���a�}��1
1�F~tP�� �G�F�)[kR)%���K$q+K�y�12����}�`����C+쎬/NHx)�8=i"��)?335�If>�5�i��_&��Ϻ���V��V��ﱲ��3Ӳ�ߌ�ㄗ�(ȧ4G~�˖�5T-Q苐�z�&_X���n��ě�3v��e���^%��'/;��U��:2S�������מ�Z4t���Շ�:��o����\{��)Ha�f�`&��M�jQr�9���J)}�M���t^�н�Z��x�LW,�1� �~�?��ɥ�N��~�����$�;����!�X��z�{�Q�'����K���ﭿԅ��%���_�qk��s���7Cbf�,+���}X�|a�+[���򅵮;Չ��Z��@ɢ���ѓ3�-��Ϛ���}3v���l"�?�ѕGϭɓϭ��;/�N���BӺ�
���h�B����� oR�.9#s���e+�,�Z"��{;��߻}��m�]��|N/��n��=��k;��۱�������^?;�e7���{6�����}������"{���>;�
'�?�ˁbٱ�ݎy���c�fh��5��e$y�;ޡ��{����{�[�*�fg�*�^��^szF�ƒ�׾Z:ݖ{�Kn����'�6엛��A^�W���u����7��U����o�����59}aI�����t��2=]v��[E��/d�{��۬n����v	��V7�����==%?���������4;-�8��;_�^����M/���R�$fSٕn�%�<���2s�R���J�*E�P�i�(����X�69��϶�����VR�K��a�gz�׽��R���?�[y��g�?.��*�<���W�l*���|EX_3����@-o4�s�*�/.k��ՙꔈ�2�9I^R�ٽ籒����ٕE�����h���:���3��s�!mh�w��<���c�lc��h����2I݊:���
�N�.M�0g3i�d�N�ICV̊�pl�o#c�c7l��$12���p�Տ�D]��r:����^�	B�s5E����7+���$y��'
*[	l�W��������lfءKv���l��H–�@�$�0[`�ؓU��&<��ǚ\�@چ�8;�D.�7�y�I���ҦG�4>�t�u
�&���͊JM�ۃ��#���RS֭�<]}H��v���^5Ѽ���s�{�7��X�l���g��J@������s>���>�A�&��1�n�	���,\>�Kit�?��3�y���h'�\W�g�)u0�J�I�8Ls�ۍ�nk^�%�������
��>���_&K
����L��W^T�V��_|�t����`(��g����U��o{���3�����{�7��Vy��/������[N�iL�z,y�����M��Sg�+���~H^y�m���=
�zJ���BS�c��>*+��{la-<x[=F�-��n�C��O�����g���L���te��F�����.;���[����v�����:�R����L�2?FV��g�||�L�v�BZmS�?wAV�.[=;�wNYi`�jWכrp~�!e�W�i��v�����K��z�a�����Q-�L^#jϠ���Zv_��N�P�X�KlO�����gvS��[w�ޥ�ӥ���w�_�6wێȥ����:�.���
��}���ٗ:�K]��]_�{c�����Jw�M7��>Y^^�2-o��7���_c�l7�R��O}�s�5w�\��/WZJ���I=y�Iy��ns��|�>���|=�j����2n�������\*�:������W?(��?�v�V�F�*�,�<�[
[�77�6���yk��*�믿�V��-q[���z�i��N^yBWV�%��],l��_�1�T{v�M�	@ֵ��'�F��m7���?Ԍ樗�-�L���V
�Ms�ޔ3�e��������0�}��J�t��R��|痽F��W��������r��D�>0{ȡ��t#e��l<���8�a���
��:��j�=�|Q���J��E�b-y�ԇk>5�B4�a�Z����V˙�h�
68�L���՟���u��j5o����'y���zR,��T��虙��� L�>}��:Y��Om�v㴿W���9�*:�1����e�1&1��űD y}�\u�Y�@rr��.����lkثL0�2�R>�곉A8ɖ�Q�V��j�>�L������M�;�κ~��\`�(�1���G)��g�k��O��M��5�	�kNd�����p�ֲ�w�
Ԓ��k�!�x�88��]u[�Lߗ](M�pMC:���GDP;�����Br��`9�Sd�L3��ޢ	�A"����%h;A�A;3��5=�M�'�.5� _\^շ���}Rf��䥷ݢ�����%���^~���3x�7����Q�U�I�jŝY_֨�w���R�bһRh(�Ow�ܝ�ܨ���⛮�g���b�զ�S��Wo��f��i�,���ou��:j��<<#/��Y\ޔG�~
�EA�80V���]\���D����ƍ�
AP2�\2te	����(�÷��`�?��ĝ��sn���t#q�\A]�%%�.P�x�l1���W�g�ö:��ܠ-�,�F��FYp��U��)*��l��ʆD��3�cd�����_h�x^��'�l�녎�i�\;�k�Va
��lz�83��v:]�Ts�o)����ϽP�%���r���]n{�:�K�����@�Np����p)���;/d�/�x/w-.w��
&w�Υ����w^��_#w��]�=o߉'(�YH���~��~�9�|���{{�����]��o>l���a���'��~���o�g�9�g.\����?�{��k�<g��'L�y�C˿��op�^s�<���<_��7��FC���ʧ�s���~�W~C~��k�	�(����w����Vdv�*����v�%��]��Pzs��O�wdszšCxޫ~ b*�vYg��lM~��� P��_��؏�<��}�k&m*s:���կ|�t�C}���촷���?�}p����u���W|�;�o�S����Bf�Eߪ��}��V﫞�B������/�����5cpw�O���>�婒���zvQ�8F�X)�I�����4}~mE�:|T���rfeU���5���rM��U�ӿ�72�{b6E���x����۬Ҏ�k�vlYlrJJ���c��6o�J���\��7�lh�M��g
5�-��3Y�<�D��0M�K��؀�Y�x��ӭ��,��A?����X��>�Dі|@0�Z�n0�d���[J�}i�P	"/��8ڒ��ʎ�Z'��G���
�K�i���>�G¾�u��dH_4�@M�����h��@�R�t�a08�|�g%�_�%��{X>k�H�Kڠ��ЫN��q�n{�!I1�ޅcNі:R��/�/�Ju8� ���4�H��[3*�$]�^�BZ�K�?=�~��q�9_Wnd��]�FC��A�sn�E���N={O^u�L�N�����J�?���L��g��ܔ\q����x���V���E���K_��7��ݧ���H9���_�ny�'�E��ݝyvQ��4�>w���ҏ�Y���p�5�W�O��W�'|ZN���}�O����V��u�1f��0��븘LwYa��f��k,	����cp9te{$�vY�K�P�t[��Ϲ�J^t�!Ld���y�D�c��2�/+��N���Q:�����vOJ�3�-����O?sV�G���
`�Y�oH����\upV[.�X�֗eiq$��c;��������`���Τ򲾱)C2+��[����-�\�\
,�.~wj�2��]�s�����^߿�e���۾D�t��7�M��w��]���u��]��\��{�����k�n����+���?�y�z��:D��I��W��e�_x����}�x��#���~���;n��~�S�"�F}]���C�<�n������=c�>p�|�w|���z�
�������[���噧���G�p��_��֪߰�Tʺ��s���|\n~�M�7�ެ��y��#�����U_�V�7��$��ߗ��e:�8�h��?������
�������⢖KS�ַ�^��"޳tw ����iJ
)�{>{���U/����_��rõW���_����݁ٲ������<J����������gv��S�Ϲ?��_�7~Ϳ��n��e�9qL��O�N�î'y�P����\��vd����Ϲi��T�6q��zÎ�[�tvb����`D��:G�N�
�FCT��&�ǜ\��t
�m���r��_#lf@�R�i��
�λ%q[`q�^������;fs씘��Z�%���?�'�0�+��\�����fȠO3��Y�1d�6�Cv0�,�Ǵ&��'"[���`���SB�&����3�=	`{r	M:��20��O��Jނ�<ۯ1�<^cC�>�[��O�#��J1[���;>o9���l"�ԅ����w'!K��LTγ$(�EI�x�D�Ik��-c/s�I���� B淘��f3V�5��Ʀ)��(�cޯa�&KP3��ȁ,�7�ג�M��1�A�;�.	��cXBL�Dy������>(ă���&(6=oH�!�(cV���'���)���֢v<�v]G%��qڴ�t���4�"�n�w����f|iTD����tF��L��x�%
0�����,� �;���~��s;���1�eދ���G�)�M�~$M�e�c����x��^&��[�
�N|���m�3���[��.;��D0��v�	�����<~uA��	
��D�a[Y� _��+h��{��L7M��qO֟x3{U���e�א�,D��t������E9�K��T��S��j4-U�+t�첽�,ds���1��"��Ӷ�O1�����|�w��ˁ�K�\
���|��|�R`�R�}�?�7�e7���~o�����/���m�R�R��B��3�ο��sɟ��ʯ�_|���E 2'�fK�>*���v�ħ?�	d[�񵯒v��>�}�Ӯ�ER'�u/{���YX[3��
w�JZ����]�G�ٷ�́m|����c�M.p�}w��z��se�������.����Uݗ��
��Ï���%��;��;I"x�S��O>��W�1���GY��!�ŋKf�u�
�ʓ�=#-��傔�k���)�G��=w? 9d�X��b�)�M3S�溓v<򏟺�"$���5�~�1�fi�R9{v�����OUf��檜���~�&A8{���;��s��׿•9�����J�wc����e���[�r�MW��}�������F�j[�ݞ��7��z�c�	?��.~��cG��NI��R�'�AO���M�NX��)k����dҮP��Oڌ�X�_	jռQY�f��=$��g��3E%�f��l�A���7�ViO�$k�k �-�A���X�:��A ��>��	&��4�4��E��-�	����DT�
o�sɋ�ꄆ6y7Y6��<��`Ud���7N��˶n-��w%��ێ���䒬.^���>=�[p��`��`�XTB������y�jVB��Ζ?���j��������m8��S�0�����
b�I�uIЋ�T�7)N��<��Vs3I��Y�)�n��{8NIn��1@�@�o�����B�Zdc^�[����_��#7��T�챈�g�C*t6��,��'��ȂKP�v'��7)c
Vp���H{���ivR���j|�y��؅�~^�{{���0�l�'R�Ȱu2�	{��p`�{ ��T����G��$����v;�lr۞��6Cpn��@�c
�8qU�ێ�D���;
�0F
ْ��ڪg+�2R����(SղTy� `��61���+�v��Ԝf+EKq�0yOa���m�2"�R�bf��`z�!�ٮ�d�3t�|YW1������5;��~nv���'�}r��m(��_h���_*`���=^{���K=������.���������s���B�}�s�m{}w����s��_z���_�eeqWRgQ*֤�4���۱
�q���fLf�:���L.m@\�����raeI�`��X�Ր�[�G�Ƀ��d��6��*3e��*9����-�b���zR��c��Y��t���t�ƆZ�#�e\�׃p�s�nKڽ���b>�
6U.6Zrqm���<6�_)�7p�V�l��O2��#��ӹ��8E��ְ&���Ʀ�:�1- �i�f�7�e�̎�|>���)7�/���/���m��B�(�^}H:�W-�Ny�9vwr%|��W#�X�6H���K.�)`�Z��k6��%��0��U�WKrxvFΞF:�MBlE[�~��$��}lgf��f�T�Y������l2�gz���`�YX��r9�<�f�Jd3�|��F&�ldstM�%e�d�7*��f�&�cnF���{�\��h|��[�K�x�a�kcx}Ǔ�}_����g¾������G�%a��6	vebqI\4�k�'���n�O�H�����x�8�h�Y��5���r&��zҠ��(��c�xꋰ�,��Z�SJ<b�%o��Lz�����`��2�S�AS�q����3��x�ӮZ�KX�q�ߓ��!z ��u���O�i���)�p�VaV���^>��$��V�(<����L�xM$v_��H�e�l�<�)���^K��F��Vئ����H1�ǧc/�|��&	{5�O�>,��M{��ڸ�Md���8�V�X�8���\Hch-:�vԍ�q����Ά-N,l�!
;�|2e�Kc��?�
t[��w+c���vϔ��_ܐE03����k����p��؋YY�t�9`�tMϔ��
���E2��=��p3żK+O0��M��tD��Kr�����[n��l�c�Y0魮�m�hi���&}rL�;�����^?n��;�����^�H.�^f��6_Ⱦ.��䵝Ǡ{|���^��r—���m��������ョ����ue�m��YX���+*l�#�v�L��m"D�L�C�1��.�^&�$-V�W�c�Y���Ҭ��Z�.�v�T&ȢԴ���k�Jm,��\ܱ,eU�R-U���.[R�JS�v�ӣ+�[Y[���1��Y�y�J%LZ#6RJ�`�c��H�jl\Y�[�Nf�fRe�1lkk��Z�ZӔ�4zs��.@�ƚdґT�E��Lɾڴ;Y�c[����o�A���� s�U7��N�)�F]m �t��W��c�u���I��ͱ
ׇ���t�UG���y[s	�W@+�ۖR�&��|��=��)�[��@�������^;�c	M��=���ҩ"��\6��VCג�cN�բ�!�Sk������lz��<`Ճ���.f�.����ЯO��Rl^�$v� [_�d$�$���֊�[��yM�X'2�}�L��A�෦��&��
�&�^'Ml�t�c�ɡ��������6��]�ڞ?���/Ir�ј)V��K�C������v��y�("���׵�z����j}�%\�d��r�B�X�ÁQ�\}�+���=�i�	�d��d�	+k���;�|.|�"��Ϸ����3�������Wl��&��z܄�K��M[�w��%�c�KB�GaL��5��d�y�]Q�:��\�&ƒ�\��M0�I�1��	&r�B㶊��1$t�Y�6c��hZ��J��螇����$���!��M59	G1.��:�d�o���A�D��}�?>2��c%C���J��b̅����I��2۴j�@U��M[j�|��4�u�4���v��HŃU�"�T�9�g�!�f�h~�4XC�9������c�)v9ZkJ9��	�z��P�B�`�ϋ�?�����L^Sy�_<���q��$�9�.,v:���Rv�[_���|w7�|�R�����>��gw���|�r������{�\D���ߗԗ�"{�������/��}��
;��
�E��RE�_<e�����IK9����;jd;�������}-9x�
��{`C��M��U����e�S&�ZͶ�$5��]�����0e����/��.�V�UW.�V����v��E=q�e���{i��L�f���̌�a���&�l�^þ���-��ټǽ{���5fG�U/W��QJ7;-��uO_8#�RY�Y��Jح�v��p��|�p@@�sc����=��R���J��5��*�n6��M��ɸ��i�#4��G�pF�Imzf�5
m�@ � ��V��m�EEd�؍�;*9�e���,ZOc�m<���cp]Dh��ףP�Za])�W�ieq<`W�4c��>@k�{�T�5��N�|a�5E5�,Rv��|���ǎ_Wm]	@Ϗ€FU�$�F�u
nLY��a�:�;�!M~��c@���N8'l=9N��2��k;��˩LJ^
�J������/�ۤ����:��-Oy�A��p�^��_<5�8	�')+�]	C9N���*�͎�f4���YR���#_��0��L5�mۈc+�S�S�P� �t�F�ƒ�i|;�aׁ0�V_��f-%q�U��֦,�WP�:_���8 ʦ���npKK�TC�B3��-�Ҋ�y��낓�ݲc1�vv" �m:9�}���e��i�<�s���0N�qd5	`�ľ��~	�O�Е���S
�4��z97y���`b'N����st�@��2y��k"�
�h½a��j:���`AzZ�+�#�]
V�~o�-k�9��&����&y�*9�4�*R]���d���F~l�/z��)�bIsS�H���Y���I������B6�F�X2��΁
����A׾����������٥�\�����X.uL���s���/�X�2DZs{r�m]��r�d�����R��Klk�5�c���n���]j�r��.w/�c�h���q��T��l�:����υX���Qk��*�%Q��ouں���8~��>s�ګ`_�n"����X'��F��,-,cv������
dz;p��.B�w7������`�l̲�Ց}*KR("`m��f�_��5���~rh�k�n�Z5Y}p�Á�C�"vZm�V�`����m��Z�6Y�A�+W}�vZ���z��7����
E���VW�,�Ն��d�S��j݁�e�nH���H�3㟫�\�y�`��tZ(i�p��xt����өJ
�pY6�u��zW��h��4��K����5l�.�s:�Q�u�Ye�
R��o1s����5��cQ�-�������Ō�q�v-W��n���~!Y�����+?�S�80\��z��~�;��_A&�y���eL�x��- ��Ť��z���d��JmϺX'&�-��>Ԥ)��}m?��`�Vt���dJu�%�۔T(K ����̸�k\�����.�����:�%L�(���*��߲������™/kHً��7�
�s��Te8�m`���i�b��E�c�5�dU٢�'n�Q��}�C�A��}-���<�T�#k	��S^'kz�����mC��F�w�����>d�V��A;vq��n�{��M�f�!��b�7\&GN��6e�g��z
L�n���o��p��'����\rf�<�u�h���x����8J*^�9gl[?�6�NA���	M��:���s�}(�H�^D�q:/�_|�61)�ܛ��T�:���X�ȹZ�2�==�I9�>���jD`ӏ���{YV�i���.�����ܑCX�֥��t�n��W��!Y��r�	_\�y=(+'M,���
��@g�8��ο�����c[r���|�R�Km{m[.q�2DZ�s��ϥ@��|�e�{��^~IϿ\>��d�����"��N��6�+n�m\��nm �
XA����
R�M���V��#f\ԊZAV⯁��r���
V]Z9-�-j
ٗ��Y�h�H�g�
�l�e]��%׹�E�d�����\�'��q[�k-0g�h�חV{�t�@K�i��>��j@���g䚣'\��
]�V��j4[�ش�H?�����z��]klE�s<D1G�s�MF���)���F%��Љ�׺-�x�	g���X�X�d�?��{�-�>��ͮ\��l�f��ey��yi�Z	��`�ݐE܇t:���ln�
gX1^�i77�͐9�����9��f��H�m�
�v�;��P��P�G4�aZ�G/�,�����c��%��(�vGt~AГ
RA�7/!�d���F�����_��@�n���j	�X
IǑ�t��8���h��ɖ/�I/�x��5��J�8�A�B�-�t ���e�s�Q"m܂���"��p����w�8-�#
���
�Gnl�|xX�y�R\����
�yIɆ�-��I�.OH���1͞�jg��g�4����S�R&�����K�|���xWӪ��߸(�dN����6m�X���߶�F�#;��^�f'f�v$.ÁO+�:)�9l<��P�p��̮�b��l�(���T�֋ʅ�1�<�}��/��uge��"&�������c��dl
T��1��4��M$����O��
�����L��VR��s��S�kC5��N?0�l��%5�
%^�N�-똀ⱋ���vR.�A��s�^=�&�t�
TcO�6�v'��N���[�G��"CT���xsɡ&K؀������K����`vD�|��l�F���G�HmVg����9_�h��Ǧg�����u��gv��3m�9�l�2;7-��x �gS*u�,&��vR��WLK5���p-��lJɶ:�nA�!�2_��_�B����{���^���煾��N`'ri�B���Fr׽�r���t͍�4b�Zl���5w�#_ԛn��M��qgx���jn��#���<k	#�����n�E.
Tw�'�|v��\z�����1_j\�<޽^�=^��dyS�91PIuW
^�b�(�ͺ%�l��Y#����W�����H{,�dyeA���ZeٔuG-'��O��W1��	�2HmS[�ϧ�SPd�V�E���`�D�a3*�.����&�����i#�������#W.�m�큈�������PJ��WXZf`�1�lt����N\�2���ͦ=���rC­>�L�\�Zͳ�P��p�$A$��t*���X���fܓ����O���º�e4��J���?����e	,i�E}ro4�v	X���q|ð�h�I�j(���M�h��ӑ/`'��hJ}+Y/H�v��r`��N���T�3#$�C�1d
&ELd�f�F�j�S&<��FX��U=��vj4Y���$�L�+!��sF[Ea�9��ǯt� a���rAr�@[��O$����{k����"[pr��D�S���|��s^m�ݪ��O�����?�����4Q��F���z�9�PB@v��1�C��6Y�(Ƥ�004li����ny�ZO�pX������y�����S�)D�gܸH��ػ83�O��3`�����qLx�b�;��G��yl^�8|X���9�CcJج$\2P�,솩�o6�t��d1�1���M��ox݋nx��@�E�G@�0�H�7=�n���S�=���uFkղ[8Z1)���#>�,��l�/�핡���XMݡCu}}M��g���%��MG�Q��x4e�sI׎���]&z�x�CmM��p���$�M�?�v���v��چ:\�'�[L뱸��͗#/�IW1�6�7�r��i�cĎ�d�R�Q���X<���YLsX�X�Z
��~WZ`���kQ���q�P+�y9����zWcc<c42oj,|��.��"ٓG���&xf�S�����/u�{����B����^`M��׀a��;���o����|J���;n|���L�F}��c�Z��?��ʛ^�N��ַ���rq������擂T+��u�c7�uty}]�z=Y�\����z����R�����x�.Z���׵��v��ޥ>���5v�{˶�)�Y�W��ՍM<VsR)������)��R�d�I����l�j�;��:�~e�2��2����M���2]��(�tyy�g'{1]�<S�l'��)��ѩ��͘^6y�+lrl�ꢬ����Թ��<X�`�t�"��gw.�r���ݎ�����f-�Y>�L�`��Y���`�=�t^W�ͅ�g���.��9��IjM\�h�U�Γ��mk��X��Xc�utc�uGH�����RP����b�vWz����g���J!S	��/(�&i�wz-�dR�����������R��ck3��"���j�|U�:u�:f�#�I0��<����+�_2��V�r����lY���(���5i�kp��iG��G�^p�H��%`XO�$ U'F�Ǖ�z<_�	�K@�$tn��Ld@�&�y�N<[�
C�<�'���f���j�HƘǣIϰ�x��ǟ0źuN:�*L,���k�h���1�(�>�}Ҽ��~*�Ȑ>���AM,�8hy�i~��qߧA���(E�`t놩�}5{��gsC�Ҁ�)l���R����Rm��S�:8��a�E���FA��1�=�~����G�������(�}�[��hC��7��q�]LokE�%�^†�w���$��u��L��ݓ�ᾳv��Q_3���+F=�sKcL�EOyJ�gx��?H������aM08�5G}/ž���͘<â�0⑤r�
&	��j3�6�0��$���dž��	�)�$L1niN,Qcl�mMK�Մ�ޚ-t�d�D���>+�-q¸-���N��"Μ��]i�Ɔ��?�j`���In�*
V"�6���>�٬��"��y3��ϧ"_HV(h�Q{R�3l��E��N��`V*9)�^㺫�r��΀I�0kaw��L��¦��u�}���y��v�����^�w/p�_�>&������������뺱����:?����/��o�G>y^����>���յs�W��T+z�U7�'>�q��Ɨ˟�����Q9���Z����vy���e/�Ey�q�܍������̙���g��kO\�x�n}䉇�W�$o~�;5Er�s��:%���
0n{Hv���}��v���n��K|f�m�e~�Ae�VP�m�bE��f���s$Wb̧ٷo���:���4ZLF)cM��)	-����������p����dyu�Z�ʸ0�;��P���H�)s�t��\��*
������+]LM��r�
�y���R��3��5��CR��Z�Q��C>[��{�^O3�IL
_8Q��O�t��_)��=Ƶ�]���������&!��+�ހb��i�5q ���3��hv'\op=
d%�1?�I�u�<*�L��>�⻌����03T�����l����_Ŝh��t@�Ԯ��)7�0�l�]=^sl��ke�b�
2�#/4�{~�!���8`�f=�"�t�J��D�v�׽��%���d�3�=$8L��1�#�n��������4��c�1"�+��1#�<�am
 6��c&� �K=�$��o�����c�cY�@-�՟S�]bd��)�o��	f����1���HP��-`a�8�Re0�@'vT���g�N��$4{�s��E2�2i��I�/�U�(]�ݎ6k�2F�Ij��_gM�$l6ѵ򡊒�C�96�'n���-�(tJ�[�c���^���,���;q/<K�5�%�׍� r�|Ј�>uJ�\8k6(kkkR�V����v���'��6��x_ۭ�̃qx�;ޱ5T�Y��`֢hY���/�l\� �J9u]D�՚���Ǐ���s�AK����Zߐ{yT.lr���u�D|,�V7&x��׍�a���%B��4�|��	���c6ޟ��L>.Q'�kұ$|���p�	..�'�F��O��}�/F�9�l������1t}��]
��Jٴ���K�sv",�iV�"�c8c���b��۝���z����ղv��NW�;�ka���N[�+�R��f\�66��3�P��^_��A��S�˃��ž�o'x�]���ϥ޻й��v���^�9��+�fus��Y/��'�8m Ɓ���7wL���ZN6�s��w~��������;tR�g椋5���n�sg��Ǟ}��t�m����Y�]�{�<��g��-��K%S��_t��^8�
lW-v;ֽ���Kݷݮ��8�m_�;����u���?�=,�i�o�r^�y#\��]���L�R�p�V���7��E���������~9��2)W@
���3��!�����#�H�����Ui��9��	�Dv�"�2-j��}dSʵ�bf��v/�d����t/e3�h��
")&&����^q�3���372菡��|Kn|�"���)���[�r�R�F�a��C�<�p�޷�D�zhÆF�`����+���?y#���0�j{h���$�y�
�I�A�6v��%e��I1�w�tV7��
�2{v4��]8��+�d���Ƞ);��*X�;x����+��&e���ж5+Dǘs�O�7�*�V���
�-P��(����V1?E���
m[l�)�
PA��T.n���{�=�����k�o|c����Z{�sNٽ���{�5���H�v&�N!��p���B�h��RML����c8!�
>�G���=�{�D��X��FA\�B�����2���媐�����9:�X<�������Z��nTc����X�Ӛ.�,+N$��աy�$V ���]��>�c�z����x�$7#+�>7Z�ɯ��,�����s����:;����e#a��%�h�
�C�'a�!t@�����ߡ�9s됄c,
�x�l��[�A]�@�e���xV7IP��n8a��!�Awk��6H�##1'�k�%�ܢ�X]e>�S-��r��Vـ=.J�-5a�v��ƥ�o��`=v�[ആ�������:}�m�;�GQ��k7��x>�>q�>k�>�:��`�R���\�D��e9�a��z$�p��# iB+�+A�-�1�=hH���R�Z���8���
�@�#h�l�sd�bdD<K6vs�C&Bz�y@k�qS7nε�E�eGʃ��n׊�|�Y�"��m��[[�*��C'O���٬��!�;��鋛����DuC����
�a�%ZH;�MiףLP)�p*.�q5
▱.�
Z[i���>��-i&��}�N(�
C\�L\}UK܇�vT7_�<I�L��@�����=��l��|',Kw���gX�=>�>����������?,�����O�W�'�'�jo�O��wxL����y�����
��3�C�qq?�u~�[�A���O���:=�wɾ�~�g~���s�,�Q��n^�����G>�k�k�(x���u?�7o|�c���ǝ��Ғk�/���s��e,��수jk���6
�f?I���3% ��`R�hc}�=V��i؄�C馰��J����Ra���$�i�Bt֮Yk�N�<#�0��ꋼ���J���w)�)���":���ှ��):?���G��N!(?K�64��Ĵ�h<�Ɔj�(�<jD@*wؖ�xe@�~m���5
���t������ �^1��
��t/eC4�H�t�TX�t������qC��T��Z#�{-�L|VZ��7ċ�XY��ԑ1X��� @�'�8��&�!�e�ZͶ�HEK3D�Ȧ,2����.=��gh8�!

0���0�0U@9/�4�-�d/YZ�W�l.��o�C���*k
���<�����S�Ф.Qť��B����r,o0h�v_��B� }	���9�#�Y����pN}-�l�sk��X�5�P~ӉI3s�#��0b�p�PW! Ja�gEYHBv�E����@1LB�t�*5�5@��T���=�ތ�4�]��ih�(Ħ��i����+��
���0A�&�g�z�RS1^�3��X�f���5q~
j+��
چϞ�cd�;��9���(�Y&1�,��F��>�!�aN�S��W$Z��5�Y���@qj�"F5G��z�Z�zne0�&�<�WZ 3�Jh�5����<�5i�;֙��{��…�Sfy�!v��1�f7x|
٪��*�⇟2�CS�R�ڱ�^x���~���KL���e��5�`5�F�-��U�Eʖl�Ta��VY�O
l=��x�ߴ���5���nD�o�9ll�g֖ϸ+�g_���/��j�'d|Ο?I'Dk��0qb�:6�E"`7���w�ѱ��i��	RfaDh�:�;��ʛ@psyX���z��t,��)�}g��h��(�
z��-�N�h�
�����:
UB�2��.{-����t�w����v�{��E�t ;�<�"���>����?��|d�]���uƄ�ӣ8�������**��_��d[N{@����מ}D�ӛO\ ~�*Sd�g�&��ዏ��)��V�njO8����D�ǎ�|wn��q�e�/R��?��斎�$l��+�#�n�Vw�Z��ڑ��=i��f�-L�z�`l�y����Tk|��m�mthX���"��v�X��a�{x�������!@dz	��A�'���wF�?4�}�aG��Z��u��`S��'���������q�'>���@���kb�n�����3���d�e�.�y�~�

ڌ���4=���ư"��j��9%:A5�О<l�i�p��p���,Ev�5��|���UA{r�mA��♘M�aok�=�e����^��wLJB����Wut�)�ǰ�[�|cS�Tq�GOn�DY��ЕA{�
c�ԾL
�m���(�P6K��u�5D���QW��JqA�	^=a�21h���`A�st�0.�d��Fْs�O�G6z֮^qG�0o�&�2�qk��k1�Ƹ2k�đ�1�)���k�e��HQ��d�~`�A�2x��3Cu|%(�����ݧ�U�()?]$�8nKv7>����p�*R�S{2��0*���uh�]���߆���R��!e�,.ڨT�
1y&d9�VU@�7,�W�f��$g�PbkZ���ժE),��t��C�+�,&��}G�h��q��U���lxg/�A�)�e��$�`?4yʒ{�ZEb3�a�߮���N�b�e^�2����pg8oK��5;#�]�xaV+��wD��zJ��C��U��l�y��Qd�C��������ޙ�.�TC_x
]:��fM�@Rw�zW|��4�,.��f�
��6lxB��H\��]�z�֡9��p�ߴ��d̍w���v�*������
�(�.��w����U8���d���a�j�S�Dq���aB�ى0�����J(�AI[-݂��:���YG�wt�	��B�@��
(�Sm��W��+�΅׮]���s��BTByb�K�C��H�_��~6/����E�
P��ݮu��}���uLoE�c�9�"���t��2�
�c�r<(p�<H�s�k���g�c�?�7�w��^�
��5�lm��D�B5��u�Sj���m����hkwOYT����#SZ��y�cZ�SL�pk��������c�VuI��C6����\�>�&�+h���"��C���]:!�	|B	0�3�
lp]xO0��#z��p�u��is�y���ȧC*��M[/_�Ջg��0"��*jg��t�
t��/�p��߼���&�S��l 2����ڂa��W�H��lU�3�s����}�]�r8'�y6�k�'�}��4����@s�GΜ(�U"F�f��
¡0�{��T
xm�dX@'��PL�HDح�.��.2w�p�Ul�Usjy�r��.�ٻ�ۚ����

yNa�E�6ʶ�h���\�^e���/z~L�
����/�,�����I����i䓂O��K	Q�:��:�$p/q�%L;*�e�JW������W�
��3�Vu%5�9�<�U}
S��x2���a�6���om�{"�k�`��^�%Ve��KzX���8E$Rfh���	�A��*VBI)0@z{�
�!�j�W�Y[
�P?O����3��*B*�UǹX�A�ߨ�y�k�J�uhgR	z?3o��,3pmcqp�ͅY
3��ok«'����*4�x;
ߴIA�!x����R찒�)�{����7?A׮���*�f�Ml7��1�?�|&Ӿd�0�\C_�ux���-R�PU��vȲ��>�4�L����a�څ�{�mಖ�Ah[7w�OoU�-�:�6],���}?�ꑛ�K�>��94��+w�z��E��bZ�a{�I����G"tE�����W�}��ꯑ�/F��D�Á��&�̪�	[fa:F���g��Ӝ�
P7��a,��q��{�<]�z8��㵆�5�drO�����"�ߗ�
^�޽���|��T���^�����[��w;��oZr�����k��>�����r����@)��=��[Ww[#a�w���u�;H͐$4����p��:}���hb����ݏM;���ڠ	���#��4�p|u�5j�1������f����þ���Ny�r�"·�7���S�V�)zٯ7���P�����'{�ᛇ�l2��	m����~��C0��$�RVA�c����!�`sՅsk�F;��!�|{_e���w���,��!�Z#�Ř�������g�f���nu<�f��θ�-��

D�>�������lTjp���a�*��#@��$šQC1Sj��# t,�}{�g�y������"���d�d��c���Ž�ZM�oFB.������rt,!���=@��XUsEp5��^�ܧ�e�O�Jc�5��H���&�Y�j2��G�"� �aH��yKr�Ao��܊U�XD�;
����4��Nw_��(S���1�z�JX��'�4�`�7�C��� f���.*�Đ��5��h��'1PEL�`��g����5�F�ㆂ������HXC��M�{�)��~K+���-jd]i�l/��a����[�Wd�,
���Z��|�R<�U��[<byuD�}ʨ�.jČs��Q�K����~���8Z��a�bL�Y�pg�a�3M@��7�W��،��i[��A���O�@��3a����T����f�/�s����9C[(��y�C2��1�!B��>��wR?���H���ϓ�(-�*��C��8�q�qن�G��;�$�>W>�"�b#[7�$j?1��o�n��f�P�7DP
K!��u�4�px�W�5%�����7+Ɇ@�a��)5�v��A��F
C3�R$���tv���4�5�|,n�v�{|kWܤk� �U����e �$.����i�g�]�n�+s�㎻�k��w������3��yr�1�ɽ�VOҷ�]_������uN>�<��캋�9��]�~���;?�ݟ;]S�
�Ǥٝ���-��	�[�
7���~
�U��B�Բ����DC�
@���5>u�����
�}Fk�iC��p�N[�@��6S���5�`���/�_���"޷��-܃�ݲ*4�S۾��ʨ�����T�5'�kK.rt{���uĿ�Ӡ?E�.�V�v�VAq�x^��Ї� ��m�B(����S���t�vk�y�jvG3m�0�6�hdl��-�ةU����!�M�aF�q�Q�<��8�5|
	^�%�M�*�)*��;�R�`����X�Ķ&��'h�:����p�1Wv�c5�X�ɽ�'�l��P��k�G�����,r��+,���NWXu0����c0��e`PJ4f:�|���s��t��5�'���ŵ�2:!cJ��a�D�)�p4u("N�nڄf�d��\���o������:�!�T<��Ǜ�[J..i?i�@0
+�n� йi����Z#ؼ�5#G�Łڲ�Pf����,<cG���6Z�A+
F��٥�٬��v7�
QM��p�H�y����S{t�����ht1%+6��k�Պth�����b�~�!��5��%<�RH�r��E�l���EL������b��=��b"U�`_�#��'|��s���畆��L)�����m�x�Kp�C���Ȓ频P�*���
+۾kuD�&�#����M�=Q=h1ޚ"&x�t�s����zWY�Mam�������7�GMȶ��ƫ�����[@�2��`�F[�
��Q);�)2h�44S5����~�2�������PX#4=��i$Fʹ�	�q
{p�ۤ�P
���5u�䏿�:nm��ˏ�w�g�߽�=.~��,���[~ݻ]s���Ӄ_�b���-89M�]\��c�+�NX���|̽7��}�c��^��u�X/�e�-�^�˹�9FvF�z��&�U#�ٽ�%�v�¶��V�"���8e-'6�pf��I�i��!5;��r/\�t$�E�1��kx�t���L�'➙�E��K{i�Y	�G�N1�Qp"��w>:���@��
V0�H:}��eF��J<�-�C���bɣ�2��,�E~���p�`�_Z/�����'aAQꪡ�3�k@bNaL��J�AC��BrS��\߂�h"�P$Mɳ�w�`4���W���;어q�"���v6+I�+�If�Q_oz�n�+��z��c�c���dh͉�=��tl% �5�m�-4n�x���S-"ka� 
*�L,c���u�����	���ftS�
������n74.k�&����N�@tgRdh��L�Ʈe�^�\�z�f+�9��էȢo�(�:��v^���+�;�w���js;��4�퍟;o�us*@d���k�Z��
N@�X��	z{:�8�~�G챟�+ba�[�2S����ZKU��21��zVk�b
�+�ӑ�gq���Yx��2�T��
��sS"���SB]/��Vfep�N0�y�,[��-E��(�L#a��j�j�M��P�oboqh,��uVsVȟ��Vv���Q�BY0w���m^Y�Ѹ:a5>�Vߔ��[&
�DA��p[���R%�����b�u��aHE�ѵe�r2$
�L�<���{iP�w��c�BzP^r��V����j38���~�{�`��) ��Q'���i����r(M���*�o;��)��i�(�q%�y2֚���B�Z��wi�r�F\%��W`o�>�����د	VS�n��d2[��{{�!
�T���ȋ�H@xـ-9>�x�1GF}�+��q���-����ߥc�{7�l,���%��9�x�m���|��D�x�}7��u��{�w�5p��>���$h���;�w�-���{�Aj8�	�1\�y��'t�:�y�N�<E/^{Q����1E�$��S�����5��q~$1v���D�z������
9�.
��X�G/\�WW7����Z~
��i�3I�O�xp��B;;{�=8�i��[�М�xt��'۪��~?��X�4�7�5��(��N�F�=x�<w���c�G�]�G?��G������#���I��2����(�Uʳ�Z]��:�����$3��g�f�W;=����S��T�+;��6��H�:an cTd$�&*}�<qZc+�Z�j45P;|"���P�'�:x&C�5/��P2R��g�����hFF�m"α*�%ׂ��@yX\b�4���1�!������xU�o�Hį�h&������5=@��a�	��ruj�h�K�tNX(�Z�]=hS��E��qM����q4��N�a�NE�5	�d��Y�<q
���Z6���҆�����U�-+���,�P��
!X�Yc+��V���Z����le�*\M��b��#���7h箪v��Y rp��磰��H�U�)V#ց|Y�
n���&�iV�5��*k���{��%���a^=�G�GH��պęː�����w�k��4D�^�ly&z���߲^J.x�gO��5s�MG��Po'e�(U�@�z�1�'�W���^�?��`��z��K�f�-�O����gV4�jS��J�У�gXk�l�Cae��4�k'#�E��%�;�e}�X��D|�3���=4A�+%M��Ui8P�������4�y�ʍf�p��[[|���3iP��+���-*�e�Q6���_��q�e�#��~�����^�=�-��v�x��p��/>˽^�s7��K����c���_������\�^�w?���N��)��;w��J'V���Ύ���&��bd�F3-uU�JU�W����GV�beu�|�!z��k���k��r:5�_�2����@XHa	�������6[��nn��[�n�ٍ����]�ӛ'���r\�7:����ф �E�MF�0�k��Զ�x�b�n��
#:��z�C��m���2����u��h1��3��EHA�h���`g�"v6�yX
ܦ�v�v���Q��RV"�X'�z��Wè��maa�K���
9���"Zg����m^[[
��	^]Ye��v�Za�y{w�����<A}��{{}k�%�K4�i�_�L��A�
��@=��K�J@�G�d,Tihwa�
�-� �f�F��;
�V�����imݶb�hhQC�U�C��	�k!N�O�
��д4S�@H 2s�s�7]EUp���t�mI�L��+y��=��j���˼
���9MO1�u^ק#��;����{�j�)Qj��״_
�;T�*B�7��zg��3�3eD-&,h#�+��e�X6V�7YY\M�t��ִ���ж�-oHR�
Y��j���.�n_z,6T���
(��1���n>O�yp��O�� �zRuh�y��`x*���:ɱ$�Z��;�@[��-D�
5N���K�1d�+�\q$PV�2�s������#�q
�	>1l�
}�
i���H���I1| ,\<�r�9�JB�q
DC��D+���QG���Ų+ν��#j����14l�~C�kUj� �fӰ!�o"n�ʃ��J��b��"�Q�P�����uS�����1M�HXݖq\a�Y[Hm�a�pi��eG��f�V��ҥ։5��S��}fC�_��*��T��/��{����şˎ�{��q��=.���h��� ������e�/����h�3�{�#���y���9���&�u�9���{������y�c��{εv\*��bxjg����xX�-dzV(h:B��J�*ⰺ�[tr��6;x��+�j��ex�s,��LK���-m�F���n�L�u{�YH��Ll�u^_��.V����[�ao<`̏=�02�����]��jɱ|���˩F5�n�[�v�^��'�a7�rH���J�Z�B��
��?*6B8��ͫ�v8{�$_:u6�4N�c1�t}����a���`��l�RT0;>�1��<k'N��-tR+���֧�֖�Ӄ�<��\M�<��(ܒsk������S���F�ro�?`M5(�D��+4���J�R�e�k�.�� ���l�V�*�����*�4��,�{=
k��h��V���.G �+Un*�M�p��*4~��67�X��J�,-6>����.)��-�C��d1�--�vMH�j}m���c0cn�N�1�^�#�u��s��$v�7�B �8;-�$�ٽ��v�Y�󄐸dC��kg�xv��89&�.�N���+�_i�d-,1�(�$;�<�m�

����c)&��#���9*�B��^��[:t��9b\+{�SLL�,lU�)t�ƔU��*{�v}�2u����h+�9�g����A+����B�U^�[���@���(܏9���ȸC��<�Lٗ�R0;����{��{�%�ݰ����ϣ�}mn�;|��&+���MR����
�_U
�m,V�f+ą�nXG��j��=����f��ǬY�h�)�.����ZO
�KM��6����V�@����k4�KMT��j�B!��mW.���J�^z�����^��m�����[��߻ۺ]��{��y�{��q����wۧ�9��?����u����`{���}v�u���p̵�;��ܗQY������n���|I-a���Į�eL��(�
fB�Ud3���.�jo�^�y-��3��`Rj)�B�(�۠Et��A�Z�jM�iI�@jc�͵
}V�t8�h�oTWxu�?|�B<����ں�E���Ɔk<�\�v�PN�K������{�g�6�{[�|������u����Ba���^�:�;���ty���1���C7n�����w^E9AE-��[��T�%F@��Y>��U���,��j.�<H%4�p<��z�9�t�=v�bغ�/����֖�;(��l�hI��l�)n����n=��'�u�Y9�`0��'l��W踆{�̙Sj��9�e��X*��:B�Y���/H���v�CK���`�9��:�ʳt�����L�s��-&/E��G���Z�L���S�0&�tLԳ	��8U�Iwa�AF��ɐ8�S�/���IZ��f���B��yn$���1�<x0��I�v>�V�����͍�Q�H�zֺv5u+"Q
n-���p��լ�4�q����ą��&��xM�����-����j�,�B?SV6x���W��
��u9�����!���q�i����a�haf�[D��+�~�8��=�D�%"�{V#61�q��,�:V1�u��k)d��B�n���}+�#��x~�r�����M+��8���1�E�DC��d��:.�)�h�.���q�~oY�A�H~�����㠿y`y���7�N:�{���A#ade	5=OP��cra%B��ƕ�p}���@�~���a
���pusY��u$���9H�E�c�<��$�m�ך���Ʌ{qU���ɓae�l����{���[x���>-�����k/���Ft�����}�[<��k���9��G�q?��~d�ӽ�+��^��t�w�:�˞!�Ϟi]QFjF{��Z�;;[ʒz��eV����V��o����)z��˴%���X�\d~�B��H}G,;�Q��V"h�ݣ�'��v���ᙸj�"Kάo�HX����30F����:O;=�=�{�sLw5�&RX�.�66B|�;r�C�Uk�bN��mtz��*Z�/��j/�jDZN����(��:<�r(�굛������ac}�G�>�U��<�W�ܤ��XS��`�QO��@�ۉ�g�7�*��a؏4�M��x�-��OO_}Qd�7���z�+�~�fM��ݝ���	۬��1�D3��TZɭ�?�8�}�z�Ee�'r
�H�C[ݮ6�����r:�l���M�B1\�i�;��Ÿ��`�폶�E�f��=��d5BQ˽�k4��>+p�i����zV����(�0�
�h�������t2���F�b��)]"�\�5ER�Q��S{�a�-��&����3��>+��D��E�L귡/#Xe�[�-�%Z�ZF�ƳU����vyʹ�����E屲��<�f�f�8��2J1�q@�����"s�ô+XV� OvK��"��x_��:���[�0��M�5v�2����*v�)�2��]Q-6���qQ�IJ��E׆�w>s��ѬY]ӔTF���L�3�;36����^��K�@�����=����+��
�Q�7�����"���tt̜Ƕ�A�Viᷦ�Jl]�#�*Ws���KVb|�Sȶ�m�د	�*せjT^��􆋗����P9�@ uϬ#�LMr(�f[E�G�@�
1Xqӭv�U	��Ps Js��^͂'caofP����E���|huMk�Q<�j�ߴ��0�����ݖ�h����Lf|�Qz� e��8,�:�w{-��{]cй��,���9��~�n���D4_���算�ka����O��_~Zr�e���9����CK>��X�G~�@��z��р��Ff-Z����ldM�–�I��H�|��U�y���ƴ�%��d��ZA)�~�Ai=t�Ȏ����y��KS��N�:����kfL�3����F�'��ٍaM@'B��M+�d]��=�J��g��G_*�;-����9!�uO�����[����pk�ol��r��k/iBp��ZE选����IJнox��p��u�>�#��� ��+�uQ+�Y9�kؕ�O��"i�d��"�P��Do�g�q�F�٫/b&�Z�P_�iG�=�2��o�]�VC�;�Ю�qx@����G�488Cb�Lg2���X�8�4��}�Y�~�ˠ֛`�K��[��ֱt���E"_P�BQ�K��J:q�qs�I��X:/k��8b��O_�Q.�K��<�|[p
<�N�����Z�ɴet^j���oe�<?�A,ޟ%xl5�a����\�H/���Yo�@��wN9	�"�<�]h�*"�+OC��1)VLX{��#3�%�?#1��lmޱ({X-�n�n��M�2�FZ�#�<)1~d�Z�J���&[�5V0�L���
��)��I� T�d�-�2�<��o�&�`�ZrX�B�q�*�BL�B��%zQu�f	_�w+Ox�Rt�Y������FءH����G���;N�9jN�|KD���c�ٚ�0�`p�f��;\k*���xl�V���M��[8�s�%2��M�D��'|���`�P���,�*d�NDK���!0�3ԉE�k�N7De���%>���?8�?�	_���i��@�h"���5(�%J��l���D��.��<�u���r�1J��j�ְ����l�%"�m+-�@�0a��#V6B�e7�n��0�6�.$�N���#�0��.�|���?[���]Αs���/�\<v���vλ�Ѳ{Zv��5����8�����?���=�u��t����uy?�8��0��T;�G�\L
�b��Z2K��b�W.�>K�h�z@��޲vrԽkD�Z6�Ee�:嵐,��Y�j��ܢ�A_���>u�- �ۢ(:�\��n
 ���E�v��K�zl��Y�%av�p�Q
���û̗�¬
�rGt�ªH&T³��x��Kt�`�vF�tnmS��Y��F<F�}��Sk���[�&.��	
���uyC��'^z�����7��	��'?�b!T-a�O����mA��i#��V:�=a���D�l
K��Ϝ�ϼ�����`a�-n��W3�0��]<u�^���A���=��Db[��"��%��Ȳg�(��AHx|Q׻�4,ad���x ��,j]H�f�,HLYh����jD��r���^q�<YO�
A2+�y�l���*��@�E�9E�j��}1Eu�:z�)Ũ깢g�,�$y4
[�(�>/1��"Ӭ�g���K��ݺ?�U>N]��Ic�?JtR���R��&Ԓ���/�-���QQ�j-�o3�&�@M���/z:��x��1�:m�kv�l�O�2�+C<�265�ׅ�c`��*��
Huh41K�K�D!>��Ҫ	~��B����R�ۮzh�-eK3�X�k��ͫu*+L�9@�`x�փ�-3Qb�I��T�o�����^�ϐ��Y<.�Qg��8�����F��ccoN笾��[�o�\��o��B
щ�i��"=�E>J�%�k��[�	�2KUa5D��塋�&S�����&֑��
�F�Y��V�F�P.p[܁(Ӳ!n�vK�2�e}A������ZZ���B�{���xp[C�A[�J���>�i =����5�����s��8p���`Ng�	����ſ�A��31n&�LH�e�e'��\:�ߋ�5��������_!�'��]XA1ׂ��xdO�3d���j��b�R�j�M�Yb�'���K6lu~e�J<���n$	��i�~����‹���<��S"�(ߚ�׌�q��:G<w�8��}�}��vy�3-|��
��Á�-A�8j���$F��ʦ^`T��~�e����`P���s=�h�gk
�s�g4q<��7��a>�����`1�"�rt��1k��(�f��bDo��ZNzvE����
����x�7���v�:{�W:m���M�_B�`R`�+�)�ig�ǣ�Ѕ˴�Y�d�G�?v0ik�^�q���
g6O���B6Ъ+`<EntWl�ʓ�_ߤÛ�4i��e�x�<���
:�q�.\�H{�-��SS�hKsӴٺ�C/b� �����u�)��� �5�'P1�i�n��2wDk�*8P�fJ�|��;��P���)���
q�F\{r~��R8
��D����T���nam��`���u�'t;ʡ �Vh��l�����.ޚ�f>]*$����r��R�ɰ(+ty���l�^��+0���NDF�����&&CaI��h�Y�<�vv�z3�$1�\fO��Q��V�v�u���
Qp9�I��Y�Oن`G��Ԃ�~?���������3m�2�%oM��4�X��t�V{�VlE��u��p
�\-<X�/��f�9sZ�)+�L�S��1	U�Q�,��@���R�H��z�"�I���
��Q�^�
c`ɾk��We��}z.��J�5鍍�5�lP�Moz�8�K>[�2h��ʎ����9F5�6ڮ�)��w��|u&�΁��c�s�]�;`��t���-Ӓ����!3-�>^�%�ia5��Dh���9:%����]�5��P����u�"�[��z��0��t~C��H:�)��(��������d�O��x(k���ZVk�wfk�$��G�s(�3���4�j
�F���-F�v��,.�0��e0QiPե]8��#������=�y�B��
���z��x'�67�kd,B<��U��C<?��mPٖ�L�9�bNJ�N��ty}%oD�޹�.��D�uG4:)��ms�4��~�Y��QW����@�Mk�ѡ����\�Pߣ��ʝ>�������nn�!k��G%�%�t���R��_�
�h�
�Cb���fJ�
��5AE�M��W��^��-��mm��k��.����?ujq#�K��9;S��iB���ҲX�l1 �q�2L���8�@���o���^�9J5�ٮn�^���\��U�mL{��hG���g�՛E��ӡ۷o#�J����*>�&���V蠶�H��f�Ǹ+���:�i�j�n�V��?�{�:��8J!��{tV�u��ք}F���*�O��h(��B��	�"l�zw�Q�=�[� Ƴ�u�g>�[	����r�Uz��Gi���a�Ζ>3�F�3�4�
��1E�&�{�cU��E�$�Ԯ	`	8n�W
 ��X���/�;O��}�7{���p�-��I� ��|�Y.7� y�s���Z������[�єz���i�rG�P�ԊgW������D�[�!%�E)��[�!V|��%�7g�2��<z��b��`N:ٵqҩ��ggD3��taf�ʶ&�5�	�NH��'��gεw 	꘲��2�o��Mf.���ش����D�&/!���FTjrS�)��u��	*��?�q7z�lh����!�l�M�i%gF��n�Bk��t��#���Y,
`eg��[g���.v�6r�	�,
��Yҙ%���h5�n�iW��[�ަWUʷ`2<n�7O����B�O��:.�:fQ��{J�/����OG��r���{��B�~�o��q�+r�=�1Pi���U}�l���G�S#���W�c����<	��=_�"#Cko�L��gh�%�z[�ț/��s�&��ޥϼv��¼b�4Nm��SrG��ړSaXx��5�����&_�U��:��%s�2>��+�rrK�!Z�{��f-le��PȾ��1-QpȘF�JA9(5���BMH୆�P4�����7'�����LJ�̊
v�H����.(}/��@�1���$p��f�5�=��o?V�����k,Z�H�sk�������<&���]�7<f��`J����S
]��}�����M!3�y�W���ҕ3�"��2NAC{"�%ӰJd�s��¬%�HD�aIqLz�Up��I�ڂ7L�༃u<�R�yf���7�"L��%�;3���p���5���G�]��M:������뛉���J��$Z��� {](!��[�+�#{�-�m�pON|�n�z�����5Z�{�Fr��ꚞ�+J�?����>mlk�a:�>�i$b���Pzo��^�V��˛�赝-a;�X���tx�ݕ&� �k!i�H����n� �C�&Q�D;h��@��3'�TU���,�0��f
����F@��BC�x5�W�f���빱��l����Y���C��Gt��Mz�[��|��?<�lM���El�3�qD�!]>{�ZZ�sF}9�]��Z�u��X�h�e5���),0̐�	gO��lqC�U�����Z��5Zh@!�z���oVzN5L��rTsr���S����:0���R�tO��Y�[�*P�����w�y§n�t�˷��$�=�����d��؆ʕr����%���er��q���`���Z�}Z��3��.���Ԉ��(��Y�ː�&Ӽ��
ӹ��52��$3������F��A6�١�$Q�r:U1��ⱴ�3�
ղ�U
JQ_�Ҷ�A�Z�����3�Wo�5k�U�V���0�s�����+~�W ^FDcM��	��q��>}�`y0FO

Z�MShZ���?������b�I��Y����I7�q5�;��䆊���7��	�B�Z��5��
�8K�[S�{	�y-*�#�G�/Fgb�]��M�!��]�}N���\h��&�����9���h���!��E�,�$#���#z��*=�ޥ�;[t]؄��<��.l�#����ZS�Ce�]K�S-�U��7�
!a���x`���
�X[�VV��;mq,�m% �D�!�8�o�6�!�+��JC�(���3ӵo��H��8��8�����w�xi�窄���t�b"�@%YWe3�G1�a�(���QxI��m�t��l=�!8������>���o[�E���q��~`��C��1�������N\�9T�Uj��G���!^��}��j�E>#�1���xa5��%㔳�@ԍ�B���
��v�*u<��k�X�F�:&��2a��� @�+��$S2"�dx8�c,0��
�B�Ɵ�F�5��a����s�p��=��z��Cm裒�����`�����i�-x#��&���ۡ) ����~@�tN��[�.��B�JH��f���t�5z�6�uֹ�Z�2��N�p���lQ2���	�aCx�0,2/�8C[�{a
U	�����Sk�������c�!��_C������M�	By4C}�M'��Ad��@�B����SW�^U4ه�~%�y�]��XJ��d����%��{����� z���p������_��ݸ��W
���*�by�`�~�Q���/�?��9�qf��xYֆ���Ѝו���q�6W���`�+mSo2��0�,�!�N~���N��VV�E��Tq��=��mh*o�j��kU�PM�V���T���-��K=[�Va!~�.�n�����i9,(�q�I(^�:��@Gm������>g���[D
8ѻI�E��Vي��`��?2S��z�)�n
2fmɂz]�͂��c6��&f]Z�Ż��K��ա�v��&Vm������|���A-[����
X��h���/����56��&bvh�5w�y�8*4'3�q�����õ�Ĉx�R��*xv��Ls�[�D5Ke�T�UU�3@����A�~�V���d0�����UY��>�!�g��5cX�j�~��@iO�8�q��j�c-��C�l�a���L�?�D-�c��#02�)uٰ��7L}�h�R�`5#�~�UDE��a��%+�Vk���c���na�!f������*=qz���mK��ֶF7�A�,�kmZ���
�F�m@��I�#3�y#����1�\폦a8��
O�m*�V�G�G�n�}2��/��  +�K�i!+"�':,bZ�DƲ��6k�%ʅ������$m"g,*�e�u~�	�� ^��*�t�"�e�`ۆr����?��u�����K�$X��
ٲe��]�%9�S_�:.h�ٔ��\Y���1G�o�j͢�H�q��&D^L3^Գ��m��.O`1���Dp��va�v����X�ԙ�1`3ҧ�����8>2��X�ث�1�{f��pü
a,x��U=>��,w�vh��Ų�+7l|ХLtI(��Q�D��맚_����k�ڝ?��Cs%�YY�(ma��]=F2���/�<�[��awg[�م�պ�X�(��ߦju��áv�:srSY�3뛲g��\���I� 8����ՄE�k�W9f
ύ��,l+#V���)0���G&=��hi�֕��D���OP{��i+Q�*+�!0�1�����:^���s~T��^H��q�u�����o4�p��L>H�B<�ʹ�k���|��G����6��s>G��%#�4���l�d41C�P�N��<0�f��>ka<P&l��e�
FZ�`wo���ʄ38�@��JaZW�B�W��\_Xr�>(��1�k7�r@Ar^Z	h��3V^"J.�"
�ɔ�mb5���W���'����e�Lq�p�!��xnk�IPvb��∦���cw3���j=�u(}|��-�'	��P�s�+p�^r�/j9m^Ԗ�+`$�|53�٠E�q���`��N].	U�l����gфt�l@0������n6���W�(�#�-��f�IѥE��a���iU��V�E�y�3��òq��ymc��fm�i�%2���6h��3k�0��`@��M�S�����	%"����Z���س.�T
�ˋ�|:�I�:q��fj~Ƃ/����@Ш��*��͔t�U���T'8.BN� �6bXP61�E�oD�ITCX;�⛝�-��W��p��-.�=2P�%���V���L�EC-���HU-��u��"K��z��z�45tCX��nm�>���
M��>�V�ܓ�����cm[��tr���8c��;�Q8��j��L�^�d^}Ғ��@��|�#B���f�i�c]��o5�
-0^�8Ƣ���H|"��Zܪ��1�A�R�~�/���]�.��a��&1)1�,`EQ�`��8���H���{�3�
U-L}9�~⣏��k,.��L!?B�[�R!D�Ũ��L��-�^\����`�����[����-�d�G"�".�n�C���J��'���1���@f[��R]��ڕ�#�]�#7^��N�,����F(����J�ʳ|J�Z�>�0iCTX�P�݊i���u�f
sB�o]�͋�ſ߯�^|�B+�j� �ʱ�uU�w�
�q@& �^�^!|:$'�!�E����p�k�I��]q�w[ܿ5��P�p�B�FU<*ht{�5BB�̒��X��!�b�f�{��):��N��ޡʳ
����JJ��r�5M�fT�����5��D
���}��L�p$�ome]e����oE1![�A��^Lj�l�RUUS�*�5ۡ��-�z��N	�W��/;��]	��?��m�a���	O��Inτ8&W���)������į :�7V6u�������RXٶz�r�m���F�"�+++”�4�R�q�&�[�6��}���D.�-{�cb#�ĸZ����%W�\��gl�6�z�F$;'E�X�>_��$R��1^�DQ��-�G�|���u���6��()(*�q�Ox������B�9z_����~����!���b��� <�c�%�B�VS��5@CFm��3�
�GK�x�	��U?Ӊ5p�Kν#��K�\	�����[��p�@��F���ifٰD5�Zh3�x�衉dfeQ���l����fB��o�&i�5��y�l�J��N#�pΔSP�J���o�mhmN�bFb��YL4������>S�Z}�%�8�`����Z,��s@$ı�; SVѾ���\��*�n�{�ϣN���q��FP(�}�5��r��c��r��=��1@1���p���G���5s��w@�Mj��
��A#��z��P����D��ֺ4�����w�2�V�m��5Q\�0������il�`���8;���a�*}ve�&�XY�YW��2��H��f�S�Ma��E�q_B_\o�"��?�,�C�J�OB8���r�'�=g,]�&Ы�uL��BAui�:\'�x4J�'�E��Y���Мt�Bȯ��i��۝_�^F�f�8�Ђ�gf�DŽOSFe�j�ٔ�����~f��h������BR-%��v#gk6�0�i�ȁ��U��&v��x��l.J�:5.3�lI�ً�͙$Z��LK\O��Z��r��Ugh_�X��h��t$�A���0U_u|�1��}�gKQ	s�����⋗�?h<�~�Q����@A+�F�d�*1o�<y���p�;����Z�3'N�H����"�]����55q��zgvYYX
�P+�r L�^�*��Ƶ7V���۷�OS�L:�$��][�L)!	�m��PdOmhEX���ںUW��>3cH�Cžޞ�l��gdPL��m���j�te�t��3�<�NW�i��K%����2��x��I��!��7��Q)�;H k�hG�Q;o!�J�a�]1�ɓ��a�ZE[k�"@q��@74��>�Z-�vP-��?���V�8��al���@��c�U�%�c�c4m�A�	-��1*��kR�(�R�a1��2�k�x�|P\��Ҏ^�`��(��u�r]�m���D�j�T�/��E��_�xW;�c_�5��8�Q�,��P�ŋ�Ç��7�u����̳�b�[�m���.�F�,Bd6��~[C������"��}�T����ޒ�mnnr��,;Cc�b�l����O�ڗH������8����ײ�S�ٚ�$��\]���5:V���l�m߾V%tV7xp���6��*�Z;�L��
���aS�T4k;��$���d4��"أa

�@|%ܐ���E�$?�0�Rc*�8�$*SY�%[;I��3�<��[���WqvN�wG�.kћ��I�G��� ��v��f��:���%P'/�����շ䏑�]�x�y(n$�ˢ਱l���&֨X�B}҉N����^��h�[ۨN�ۤ�0���X\Ǭ�Q�Pa ���O�v�-�b����?'AÛ���96��>`�#v(
��B�n���s�3��*�>ӸW((ab��?��'�Y��dw�C,eb<F�t�J�-[tt�䲅�S9�^�1N2�ϰ��x�`̜���ytl��d0�W�ːZlFF�WL�8â�-fDZ�qU��I_��aU�T�_B̫��5(�9F�"s����+�23�U���SmkA��lQ��Qx�Ŗka�C�?^^�^d�
y�1\R�1���«]v�dy��m”hQ�x��8�U!�W���m7y]���ܻ
V�jg�ݎ�#>����j9J�R˨�o-?�=Z�_
���1���׹�Bߚh�GS��IH���*���g��*,)��'�Q5A�h-	}&�L;�m��/T2��*��J�p6�4Sc���7:
2�jض4�l��:cr��cl��h����!���Wz=^m�к��XY��E6��m}��x��r���.Ie���s���ħ�ވ���T�<�l���PI*���P\��ҥK+]^Y|eޣ ��*��t4�R�T;{�B8�Z-eMu]��
�c��Y#��a��^�J�&lZ�:�����h�^g�{��:
�U
��H���d����#bP��M$ײ���Rq��� ��L�&�gRVAt)ʊ���������c亊�9Y��\DN��#8��Ţb��F����w���s���n��Y9��>=���LƳo�
�8��ca�&��Яn��0/u{bQ���l@����M�%���d���A�'O�d[�Y9n	XՀڅ�z({�e	8F�e���z�m��
��L)��ˑ(G�}�&]|��s��_�r����ӝ�[���J��!���z�s>��w�iok����<���P“#,o|����y�q�u{�z�!uW<����� {��
����\�а�
LXͬ��D�`'��1�K���BɅ{�E�R���8Jl��r���T����-E}�Mj|���e����Yvk��QB�~�\���$d<\β-��0qhMXmR��»��V�@�Q,#y��=��Q8y��Q�
����S���MQ-`e%����ݙ�?�h�B��iݶT h��*�H��ie~�XFGe�P!��5GP�j�
J6^!Pci����\yRy�Yw0����"H8��,8�����D�:�Y�x�8�ROQ
��t���Sԡ�^/ѕ��mr����r"onMrzdz�d�TA�a��*rL߫j�U��k�]7��.�ܮ���)�9��]قnh�R"oY��9xb��Đ���&.K��7��2B��M�h�^��"�l�N�"�L��蚕S�v;a0�Q���a�&:-YKK�a��ʌ�L2w�#ϒ�[�����,.R%0J�\i�ɼ�n`h�Arh�L���{'WOЙ�Ӫ��
k�]z�M5"'���R�h���&{UA����fɀ�G�D&��Z)0s�#��#a}uE��N�z�5��t�H�|�+`��Ž�Ve��)��J�#�hc�B9"��?��x��Z��P�:Sχ�UX����R�0O
m��p�4��
1\͛ׯ+�Z��[ܻ�VV��/Oh�V�+6��H
zQ�A�"<E$�ZoS�C}���	�^#�bM�kLX�iN�09��l{��E��^%�Oƚ�qD1>Vl��DYCN~��C#�AU���3b�^���Lk�j�X3�!�r,�Ń꜒�S*<T�L�2�R��*Ep�_�BV�^O�0�"��8AA5w�p��wqR䳐u��F$ۜ(S;�US�"���n�Ƿ�3�<kx��a�����PkV
���X=U�/
��|�@	ze[��r!��b�ׄ*o)�dG�u�rZ[�L[.먅�r��Kت̴�][����kW�֜�J:��Ӷs7v�h ���?A���*��t9\y�3#��
?8��K�k�O���^y���&��~��O���jx��穿�C�.]$e�d��.�\�Z#��/<���˥B~n��Wf��5?g�,�]#��{~����N�ݙ9]��IX|ֹ3/�x�X>�73v�N�!sg�7S�o��k(�2����tū�@\x!����Ρ�7�:��e����x�s��#+h�V����f0�c�c'UD�nQ	��s3alJk����Mh�6Ԅs���<ʮM1��½a{��R�6�`<Cu8$����d��^[�ߥ �~_8}�e��8!��2�Y*(5R�}�������pζ���yI�ǔ�(�=f��mQ����U
Xi~d��TE��D`�i�Os�h�M@�>6�Hr
T��{���|lb�7ȁ�<l�ʡ�M�k��+��O"�en^�;��A��K͂�0WNj�=Z�����,��n�v�E����Ke�}�Xf&�tr��r2F3�eyLliIʓ��
Zz�Uu=hIH���Vfr$�<x謊��=��V�Hpqt�Ѥd2U����Z<w��uA7�,#B�K�D"
��I����D*���bLD��W�%���V��a�wԭ>A5�0�F8���EäLuW��+'��+��N��>��5�K�?���a�voo����[ct�Z�2F��)�>��mCg�rȕ�'�u���1��k���;�8�CSp� �ln-��q����9�����Ik1uN�Yc^�\�Sڑ���x �"5c�Q!N����ٹ%��E=��������D i��o0���L��O__A���\:_��m��!���X�lW��lT��q"ݜ�ǒ�s�1+G+8~���&P�@�Tk-�P�h#gB�A�H��lj��j��y=�JA�N��[KKk��b`Iav�L��96t5��7�lL�
9�\h��YRP<�bW]�A�w������3|��eE�߲��-.�&��x�z"`<�7Oj��#.#<!2>��*,����Y�<).�U
����!σz��j:s���]Mw�R�4'����U�&L#�w��BX
�hQ8G�s�g�/��J�����9�ϙbdD�o��s���X!��d)s�+�z͹,�[$D#
�\Z�yvD��������fl��g2�Esʏ=zN�$aC��������ݐ�ږ9���G��kV�4�>p��/qg!�Y�r��g����daQY�8q�ҨDQ��!:� �*u�&��G��ʼ撯��m6�&|i��J���{�\ �l���3�b���y�n�����ݔ�q�+,2��ͻ���Y
����#���$���w������}�d��v5���f�.�nyܗ��JI��P?��{�ݐ�ߵ�	%��ϓ��l�z��(�c�D6b�
�e=�D|�R�c�*@6��[>��OE�����v�a�����3�#�xߊK���SW�o����*�}Y�Z���ߑ�JK�\i��8�,��ks�N�{���r{��Ei+Dk���æ����:"�ͮ��PY�>����́�7g�rk�Aa;Br�=���dU7�&O�I�R{�aY7XR��a	�l�EvZ]Z��=t��4V��ꝑ�2ef#A�h��Ye{Ԫ[��@<O�Ħj���-$hq+��3�]]�g�fC
D��v�e�$WK`m���p⋘i�n߾E=��:uF�
p?u�D�����5$�N�|�x>W�5��~��ѽ"����'�&V�}�
��c�7[�d;�J\�f*�c�+v��	l���g�8���b
/
�W�������!Q/�ُ�Ր�P��i�'�W��,�v�?p��7���͈q�w�#�C�����Y=Y}��@a�~��t<��\s�`
��:ɛ=Zan�r��1({��wC����h[�`(_5�&��M���FC�1��p�z�)
+h �r6�n=��Y�Uhv�V�Y�Bd��>~-S�j�N[�h�Lw�sjIc�"��.?��g�8����{nM� ����(ƃ�ll���q�djh�<�.��{�H:s����"
�Yr˂t�b�2\w_�\����jʿ��#�'���U���F�n�B��Gn%N����ݣ�jm(g�;}h��߅Lĵj\MƼ���ٓk��F<@�H�g�N���$�*ݍ�,T�)Ȯ�VE��ꙥ�â�"Kk��I���
����XE�&P�����R��#0	�>��լ��q�2�Xkb�i�V�I�3Q
,�3&"��A�hv��!@t��m����
�T�X��2�D����Ȩsm��LqbȹҠd�����z�����<9[�@4E,Y]ڂ�>�3�L���-cC�f��1��N���)k��ԉ�5�rm�3E��RQ�����a�؉Nj�f	�`6��r�$�4��Ċ��[��$`��f.�21	��lHZ��!ޗ~�*#�H��ie��H�@����գcKq��'#�AdD�d�����岵N��5�W��z
f'��$'J�芃'mҕm(��
9�,�����P�!�t��'��V�*B�־|o:��ѻ�V��*r�¤j���–�V@(�u�nI�6�S-�ƕV��H��+��ڊUȪa�J�Q3&T3:^��k[x���jx��ո��_��W�
kE���uE��"�o�,X8��ɻ{{aMH�׮������ӧB��F�->y�4�G}�H����b_�3�3���	���A����%~��\��WݵA��%Kڊx�p0\A.����+����v�{��&{�z�&�NLG7�1�nO��l���iئu[1��Y�'����~ԭ5��B��ܚ�Cҹ�>�Q���I��k�I��,�����1�
�xe3��\"j�buFW΀��9k�u�-��b[�AgQDZ)�0F)��@���C�M��<`�c�W�뷖^h��"x3k��,ĆX�����ZvKGz�u`#[�0��aH�hH|�*�M��"N�<�!
�M,n���K����ҏ	=�)�|q��e���tWrR_tTX��e�?�ݎw�!Y���(�_�
/�<���TǙ�j2�ъ30�7[X`w�IJ��J�O�=vA~;.��މStko����y���(�l7�H���*��)���M��"�Q���^�҃��rY�m�U	�H�Bx\��B�������a}�:�в�Ė��;M<2��F
b1X:�.0c4�ا+�Ω���7��zȁ��
a���K.4v����@�ۗ5M̜g��,+�S���T�O��!��'�:"흀�~�i�t鲧n��f�1�送��5�i��U`g^���q]��27\�N5=@�M��v���Z�4���W+���5��+hI����:b	�@�:����:�Dq.r٢ױ��8O�Ŧ�U�d
�jZ���I䞸%b/X8�p4�CL"����.�V?��*��rp�g��s�2�C���AS�4Ԥ0}#�`!�K���=�ph7�Z���m�Q3������oZ�6�wg�$�����J><8������Hiu4��)�3@�hҗ|�+�#���)|
�U���3�H�8k�^`>�-�Q\�:���5"����Bm�|�����-Ҫ,,�S)|Y�0�Ti4գ���]{y��(��;�'ȷ���=إv���A�\���!�X����Ђh��]<s����霞�C��ġJ�9����|��W�m��t�h,�#_�BΤD��23�t�	]r���`��,�Z߹��Ayb7ǹwK3}��QȌ؈�ҳQ����]���37�4֊��u�:�U4��+�ZS��Jӡ�Ej�S�J�؆V%hiO�c���ހ,@���F��q� Lg�;�,�MUf�N7�#Re���U=�X.
H�Sw#k|pE]y-<\S�(�\i��J726|�ŀ��}Y��(5���\XQF�H6���,�c������7]���IU�l�A������:`�V
Ɠ�8N�.
���[|}��w�9�dȄ�נk۬
�m��d!��&��FD��ξb�e0�ϑo��b��=�hV�2�9d��0�,.�g�����0[��R[p�Uڲ��ܝ�~k5L�@⎧d���va����S�s�'�*�m][Px�!�z`nte�\
���sb�*�'�LB1���V`F����WOm�S+iW���es�9����ZgG�d���;ъ�v�����O�ւ4��D&����]�!Nf0+����9�\��I�dX��TN�:��u���(E���AMl�5v��fp��?'�
f�ުtf�E���8����"w�S���V��g��\����u�J�d�8b�; '�,Uѻs�J�)��dٱq+�l0�NA�,�Jzc��HN�24o����T�h�P�\��|��l�{�o��7g^��/�2\�cwjr���eǺNa��Li +~^�B"��N@P^)�%��c5t�{�����i]m+;��X����P���:ki����P=b
�յ5
ih�-��ݥ��u]h+�,���8{2ϣ�".�p(x��Z뮢�z�jh5�'�@��T�էf�Q�*%+���܈E�-�Ӧ�~k���a���x>ؑ����^y�B�\��Ξ�Q5�=���z����㊰�P�h�U�~V�8�WF7wV͛P�ID�ׁydh4�'2�Y�W,���7���퀿��2_��n�G��
�k��Ԃ�T�mE��Z�i���#R��s��~������g��b��#�ZK1ͼ�M�Jsd�u"=����0y<��(�C�4ǹ�%InWG��a�e�u�4�['�A��/�Ű�б��4�V+L�)�+	��u�Ԧ���iq���'j鱾c�n���r^����
�7[p	��\
�
`��$-�i���Z�%��+��F�ilP�1��J�Xf�fz�
B�0��TW)�O��`�	D�;�x8�+1-��	����rJ�r���0��x9�XB�*����I��n�|�sجʘ([d��������J<̅�ϟ'_�T{/,j'"�:nlڍ�{S�K�N�ۮ-�
��ts�^��O���!l�U��*��Pk�j[��Ib U��֘�ip��U@n�����Β��+b�e�^]�hCf���E�����=	�)0����M+T�D+aҔ/hI��l��7-�Åu��^��=������$��#>�,��\����`�t2lr���t��?K�I~_Ih����U�E1~�����1擣x,��,B������:؍��,&5(�1�o!��@\d��oAwH��1����-(�]ǯ�Y�T�t/L�����5��jL���^���~K[=�,���8%��iA�̆؜�>
iж̕F�0�=O�muL�\V�2�u�l\6.�7j����9��Cy����xHUi���0k�9��
aOJ����UwűP}V �"��`����.!�Q���� ��;�)
@�4:�k�3�S�nY�,$z!���F%�1�eh�p\Y3��r�`A���3
#�
���1auU�j�n
"9��%��P�;���O]D�.�{�)�u�!%'6OhN��`Nl��fZiYn���8��U����%o>@V�D1�h��т�H5]�:�!K���v�'��r���3uf%��R�sl���97�T��.�̦���bD�KU/R��X9�#���u������e�v/^���hAƮ7C�a�Q�*�9BT��-r���^u�2�>�E�?�|����(��<�m��7�*ޕ������C�2��ծ,����f
����إ�m��p����h|�rX-�؏�����Ctp�O_>O��뾒?�Φ(Z�2��31G-�PN����	�O��_Ȝ43uQL�U�ҟ��o�3�]V�
�O6)�H_�j@��?�}�+�a��|��ч}uZ�Jd�lV³7n����6~��}�Z���M���������pV��{U�5�~���|���k���o�e�Νڤ���/��gNZ�(��2��yz��/|)�H���θ'@%:*��7�+e��܁E�,&x���"�u�d;E�]fwR�@��L�+U���_�����kp#6d�z�^+�>��%@`h��X��9��F�	�`{��ԟ��ý}j�+MJhtZ(�ϨPPN*Ң���&{,)��u�+��u��Z�
���_����R`P+�b�ɐ�9�D�#���!�pЖ�ct5>U�]�F�X't̺�?������yE���.����Qy��tk����t��%-�c��CvA�)��U���D'�̫�!Hv����#?�,�ըb���Uz3ʥ*NjaI�1��QޤTA
��h2�i����`rm\
�A�8&>��G7~l"��7U̎1b��8�˒y�s]Q�y�J���:.;vQ�ԀA�E��\���%u�e]F�!30���2�rV���	�q+l>xAI��Oʟy�e�<x���G�7e�д�����h������[�9��
p�0�x Mֻ^+V�Z�ݎV��4e�\x6�D���� ��$��O����7����|4e�YPb	GH0WZ纩�����qKY6�t�]�
ޱ��?+O�NWZ��
	�d�˫�\�P���W+�i��x��y�߿�cf�X�.����'N*�5��S�;�T�I�gѠn�k
�[L�՜ӵ\`-Yp��]lRPf�_K�B2���Q�������SI_E6����1$���h�mN!db�b&/�'�u�W��St0�+����0ŠĊ�Ձ�h�OL�"J��W����Kh�?��"����ׄ�kLW��0���L*�W@��Ҹ@M�R��M��Ԥ�q2�Ȓ.��7�N��<����?D�ݷ�-Œ��"�>�Me��b��y�Ϛp��
҇|�_���N,�����m6����/|���5D���M��'?E?�SX+g�tft�z2�{��S?�3<���c8ftH��>��X�!�\m�9q�D4�{�O��+�:�ozݣdW�)�����d���@��w~��O�8E替Q�~����7��]兩�L��k�8���~���W|���Ô�������U]*�F���̷D���ތQ�)���%q��̔����O��O���eP֫�@GA�Ϧz����>
u���i���f��|�a�����
3N���\��8᠊��#i��ݴ�������[�����`
�
f���]A�*h'#h�P ��פV����fcaj��P���(��k��р职��:s1���`K�(L�	-�>T)��V=P=	����>��Ae��k��'暜���0;�c:8Լ2��:נ�(N�v�
�n!�AȒ���9�1Ӎ;[���M�;�.��᪰Ó�	����H{�i�����Цյ�:‚��Y٬����p�P�q5Kj���R��"'P�yɭ{�Fg4o8�Q�W���wI�%F'��L���
�?op3P}8QE��/Gi�q?p�J���x�l�Sª��>P
b�<����1����/��9
|��t&�깟����1H�+����@rJc}t�-,�x9��5�
5
@�=9|�~�
������צ	�1K��V��zKCQ�'et�"+����ڧS���.V�?�9'�OQX�r��L�*���{�p$bMFàmmѹʫ�"���Ѡ�緡ms����ƍ'��n�>��8;i��ݢ"-#7�ΞH���Y��i2��y�����ASsc���쮈�) Ņ������z�b�w�7��7֬
=���^&Z��c�X��9����ھ�{��Y����–��q͆�R]G�G�s��YU�u�{dc3�6H5�kx���:��ղ@<��~�#t��A�ؕm�����z�����n�hs���o]��W��F�Db�}�2�[���$h��"�~�mXӒ4t���_�M��v�	
f�Gc��|u�I�9ʷ|WFq�1�~�5{���1�:��ܨ��������ٿ������Y�/b‡��~͈���`��6���tb�Z׭u��mZ�Ҟ��T�]�84�����5���C_��_����=��u������JxL��$XØ�/��/�/]��_�N?�O�mn����'��֛
>����1GH�Q�Ui
m������	jc�|�RӰ:�
$H�9�<��ҵ�f�a�Li�.��p�45�M�ElT2,�66���2�K���}trs��Exig��7?B��_*�
�'��*]~�Qq2�l�x��O�›\�H\)�`�蹎��S�8IeP7E�h�G�
'Ӂ
N�~�Mk�|�x:rU�-jG�=p�f�E�I��ʶ�oF����Z����0Šo�Ǜ��&�	?}�
�;�T��9:�!�m(�qAm�Sm?*�ۡ5���#�H�_h=;�{�
k�բ\��ƌ�Τ6T(T��S���ܞ".����Y�Ui�4�h$�4�y0��`�X�H�G�/J>����Og��AY�]T�9 �%kiX��86��tn�,�j�G5s���
m�FၵU���G0.o�ܢ�x�=��#��S��E)e�=�u�6���m�:�-��d���q5�:ƛ��)l�qTx�q����PԠ��R3/�m�+�Ci7�h/�ܘe����kZ�}����u�ڧ��E	��K]ewQ"-�Dub*(,$�P�(8Ŝ�=����9C�0�C�\�gKʽ+��b
yT[9u£��#Y�NV^ޭ��U-��0�ً~?nϽ<t�c��,�s"
��S��s�yk� ϒF*�+�[U���;떥|���h������C{8!� P�C�˸ݚ�C��e�P�8���ĈՅ����Uh��Z���Bڦ�״����D�\�;ʂ���ZX�����B~Δ%�y�U3,�(Ƥ���јD�HQ�Ua��`�������P[��o��Y�vy�&[�:��[߳0�!�M���Yדn��b�ce /c�^��<��!<A�>��><��O���b#��MW��s�]z�����Y���w=z���i%!~����w���0�JH�����;�B�?| ��_}�<��?�޷�廂9>�ug鱋��ܫ��gn�v���x$�ts���Y~�6��t��?�*n��z��ʝ��W�0J�aݟ^k�{�|��{m���w����<_��Yz��i���O?�k�k�nd�l'�b���t�l�Z�b�0DI�sh&���������,����k���ko��Vl�-�-iь���F��1Y�L�/�[eP��p�*���@j[����%���ep��uMT��/{/���%�~;���q���*��mj��� �	`>w&<xj�֟�G��;��7��O��9���f3J��+l�����������\G�jnh1ք-Xɥ��Q�
Px�VP�F-����k�
H��/{w/d9�s���'�?�A���ݺ���X��%�[)Jq��
��O��ϷV
��g��2S#q�U(��>-8���\p*���e5?����O#��'**�5��٦"�q���i	Z�&�TsHZ��
��΢�4h}G��]qR�P]�'���0G��[�)]P:Y[SW'M5!�1)���]j�m�H�#���PX�����$L�����B���	?�!D�ͦ�b�He�J��v�1qU(�Fb�"���!�Bc���:�5�$��F����rH���=Z��j�
���q�Z��ˠ� ����Ǽ�^������MzۥKt��m�t�\8%�s�?�W�ꗱ

Q���lk����П:��VE��8��1aq��E�Ğ�$#?��v�J9>s�Js�X^!^���sφ_�n�	�����.��-Tr,kdP�� n��"��+]��{��2�#]�ʼ��|H8D����1�6�Ϳ�a�Ɔ��U����_T�kAJ��-8E�sZw2/��6d�̓eF�V�f!���~��w*1镳ϕu�Zf`-��ޣ���`/��i.x�ݡ�f����]�A�P����坞4�3h�,j��!N3�j��-��i�8a|�l�E!$�LY} �<�DE^,���bQ�+x��r�B&Y=g�ߣ���j�����1���D3Y��ʊؿ
ţ��x������{� _ƙr=�T�DEn��k#����:�HZ��n�l�/cا�*B*J��6Y�\���HC$"L�����t�7�
U�p�iITm���)�'[��U�<��T��<��:[%�&��pB�IR�*;$��W|�g�z����{`>�6��o�R����o�C����j�nl�;�)�+�d�pD�w����%�������O�g���;�^
?��g�/���?���cx!|�7~�|k�_�}��o��/�O	@�K�������'��~�t}����c���㫷�•ۻ���+�����7_>I�o��_��?�;�J������S�_��5H��gM"�5��o��9��N�b_�d�;Dž��^�H.!Ѩ"	)�US�삕�3QK���Y�@�	�
��R5ZA�P���4,z������|mw7|�S��oy�}��j��/�:��!8<fE�4����`9iW�b*���n1�Xc����GE�[��\톶�{��_�_��W��F;���s�����E���	���0�)�2	\�@����Z%����`"��������M�-hG�8��g9�J�ޭ�V���[�i�'�܏�Ú��PO}�nП}VBs*5�m�����@v�d�+���Z�.2_��f��W�Z*�ӗm[hε�s����݅le;�V���]�MR�+eÑ�-�~\7ߪ���F02��_Yy��@��O��9m�
7<9���*�i������� 0k�6�e҂�<�w�85���Z<�F�P���  ��-�M1�mjr���p̢)�p��IT�,f�@�	[�0�CEV]�C�nf��.��e?�qˀ=��B���鱳�C�Y��o���u�C"�€d,G�0���÷}���0p��h_��a�/�~Z�O��"�pQ^.
����vI@�e^���1j˹\�T�9�c RK"�p�*S��f)����Zo�66�5�$0%[����0��(�$w���%�@��-��4i�+�I1v����'�fmU�Xe΁kR�Qq�%�$�C)����HV+K9s��`#�������S�c���{�z��B�?���yaU��9��Vjy��
PقB�WC6T�Q������$ �	I��!�#�
8�V2
�?s>�U]�
k�������"�+Ճ
e���d��v+�B�&{��i��޾˽B#�����̆���i����cZ.m*n��F�f�+q��Z���߲�oe�s�Ճt�p���p8��hU<�{���H�Z\f\�Z��ջ��oH2�
����_:΂:VV���.�/u�'
��,�>�,��
�ˎ�����2+C]8X�<���±���W����w�>\����5.�^��K���

��X��O~����@�|�"��7^�?�e���?�W��Q���O\8��_��ÿ�:�?��A?����L��M�z�,�?�F/���u;킷>r�=�A��O~�����������o�|e���I�>�Eoz�Z
ց�ޢQk숮`�2>��ζ%k��5
!I�O�dѓj�:x��\�s��Bce}�^��o>��
���b��y�	�+�iKj�
ş�jQ��h�Ig��U|�tA���x�{�SO��?�O�=����x)\:����J(�
h,C�&�;������hМA|RS-Ed<Z�X��#F�~օ�����H��7��
��O~��ܼ%.�۴q��`�G�����m��|�Y��p�b��9Xjd�b�[�vPV%T���"#�"o�D�܅sh�k����ʟ���2�f��͜O��'�L	��SZ��|ᵨ�U��Ȑq�e+��SJr�O�dY��a�p��҅C��)1$e���5̻E#
���2p袩�ٓ
sѷ��~���&���ǀrQ�
d���kK���0�,�
�_qm>�!�k
�jEn3�6��>3���%|�v���GG����q��•}1��+T9�֢6u�^/W������]����iv��y7��O�'��Fa�6V�ù�|bm�o��񳧵��x§�vD[6��}F��h�7o��d�K�τ���L1��j��J�����uӪ��ԌNu-�Vs���Z�q~p�T~m���4��	+U�0��
���a��s�[;{ἀ�Ue�*g
ܭ
��y���@r'�g��UpS�l)[���"�:���T��I��"ϋz����X�?�2�Ls��P]�\g�R�v�./0��\�Vږ]�
���VVR����/�<h���FUE��7���u&yI.�c"�)%�g3��j���/܀5(,��lak7;��Bj��q�I�T�čŃ�,�NH5�	�,�S��T@,�Y^���
�9<�`0Tf�al�
4�_�i�X�^��@������Ё�D���dle%�ȆGX{��zV#���;\j{\��x�w���u�f�zX�vu��Zd=�3�� 	8�
��3^��PT�m�TA#ZIh4t�+�7o�Mi�9Q�%�8�����(#�@�����=�y�0^ <����D�e���R�c
ƃ�	�:�n��ӫ���U��]?���7��H�ן?I��>,~�������_�Nn��x��.}�ᷮ��W�����vM������}��œ����ގ+WѺ��Sp}�':mj���n���
��˷x��O[����]ŰQS����C0�%NH��1��^�'�F���Ӎr�y[�OT���ӹ�g��[�c?�nks	w	�T��}`�T��0|ݷ�1Ԑ�&��?��p���*�e���dp��S`���W%��/�
�֋W���_����"��M�Ȁ6Q?k�/X��u��3��L�����n3o�M6�:|���������lu�����?p�]�p�����k�1�A��|t<�n�\L6[���L�X
��
S[��d���Z�kfl&�_����?�?E}�������vj"�K~��	�ح|.����E`�t���,�w{�{�|���`�����Da��D�k|?*�dd�ڀ�9���Ι1P�\� ˿���sS�P����������y�%d⵲{����9��mK���|,�E����ҭb�Ca)�W��@6����/��D[�{���t�'��y-��m�_/��&	��V�-��O|ZC.�vx��y�pbC�_�-�b�#��$`A���-�"��y�
�Tx�&U^!˼?j�t6�pJ.���	{������*]<{�:D'kxM�U�������~/����@ƪ-�_�L�f�b��b	2�a��LO�����X�v�nЅˏ�sw�w�쌑UY����a���Z�{3
�i�;��wC����]
��r�y�哄�%�jU���;��*�5����{��=r<k�Ȟ;d��!e�>��s/(�E1�v�Ν�:�Ej�L(��R
�S�I��6�X�L�LcBDqN��nnt�t6V];O��4:��E�i��p<Nث��v�({\��i��6M���0�*��NY��p���LL������lF�,N�4.�^�+�@@�\x,���U20�>3�tf	�
�m�>��h�m�1�P^�����C�ЖM����ծu�7#6M�LhK��]��gȍ�|�"��ߏdIZG<���kƒ������4(��`�q=!��9��~c�:�֒9j�����]��3(�Y)<����׿���?��x�&����k;�`��/O���������x�~�מ&����������׀p����K�n���k��������	`_��G����п������7w�m���ϼ�M�/?gJ���(G#,�)&m�_��=�'yQ�1V��m��P�ER����}QIvX�U*��x�e��E4Y[7s	�!a�6l���P�X�CRG-	a�W�tF�(wlN`>’N������?��&}��W�/|����W���o��AT�X�
!@]�-�\�{�GK>��E��� Ah@��1��|��Wx�]�3����)|������%�!�ya�ɣ53qM��T-Vm�'2q_i�$i�����E¯D�PGND��Dž�E�O�ox����3�|ioR�(�@���{��ˮ�ټ�9._�Q).��,Kz�������۲������w���wz��s.���s`��:���k$�ز��2д��3O�8,����]^G����VD�:-��yu�>~����۟����&]:u�Z�E��Mo|8��|�7E!�˺?�h+򼺽G�oΏ�u��>C��7��c�귿5���q]'rq<9_k!175�C�%��Ι�0Ǵ�����)E9��=&A�v"�mft:�&3ں=f�ɜtjs��j����{���F��
5>��5�(o�;��P��p�Z�I-n=�M*�MVP�7s^Y/�h�voӵg~�7O_ �'�e�Ǔ�l[�?��.�~B�
��!_�UmL�ۭ���j#O��n����|�+.�cI>n��njԣ!�$:�>�=��ߟ;���DL�i;e�#��Ғ(�DI*|G��B�X���Ҁ8T��t�T��v��H����e��<�묮�(���yb[�V��F41��C� �#�k��v��1�5�gі
=K0��`6�L�u�j�9�gu���g�g�il,~O�AQ�VC0�VZ@�6a��{-����<ږ�_C
�~�Ϋ��Ƣ���c��J��z=�yٌ�ʹZ���� 5�[�C��ܤL_Ę��٫��ϙ%�-��z��܀(�f�-�k�֍�=o��إ������;�}z��
�̵-��>�2����o��[�s�zU[�o��~�OЛ/oЅ����ݤ�?�z������O�e!	N�O}���o��J�������=�I�$W�Ÿ���@H�z�N_M����}<��N�������sI@s�~�'~����7��ş�r���i��O�Bx�U}]G�Y�F]��*��
ɸ5ր(G��NM���>�����+��M)vi�X�6���t�
cG4���A�����S�1�Z4܀)\$q�=0�'Vŏ|�ߦ��+ԑ�����}��0
�!WG!�|9Ey�*<|�4������M}�9��������^�

��B�S���Sa~g)�
c6�+1�w+��VXCj04���-B�S�N���.!�&\E�laTQUIIj����U�����֎^>9��m��%�Q�t+
3���
C���w��Z7������E��w�����7�TL����ſ��Xw
��u���+�Ee��|��-��G�r� ؖ�x��Qj���3�����.����}�/�ο7�l�a�'��{�c��^Ͻ�R��������çz���v�]�W�m��w~����Br���r���g�r�Jg�xp��뫴�m��
�3�K�'���W^	�?���ᘾ�����=�s(UG1�s�6��g,3|�j�(Ԣ8��#�`Q�D�ʁ(T$�)�h��A{P���Hƿ=;���i�~{��
�=�^1JD���k8���S-����f�Ĥ�4��n+�8��MF}+?��r�l-�UH,�u����g?�ʷ3J�e��2�	�/%���M�q�%`R�ˤ��Ŕ��M*����K��JY�v‚��B�ߥ�6�-k`'+�����~�`[��ܠQ-��y\2H�����Ϥq��P����Ƹ)Ͱh����v��RWƛ��<�7���T�UOB������X���s�-#:,s?!�jf�n�#+`�a0x� k�n�$dct8�k������ɤL1^a
U�Bgމ	�UMyl�Z��B�ۥ����yJ�ЀiA!��͔��B{͆P�TE�DIQoFn*	q]�)�c�g,��T��.�`�g3/qY��u?�|�XHy|r�m�5�O��T(��;��t
�c�\�~�z���9z�܆��/R".�?A/��'�D���N���&z�Np�n��S׶���v
��s*�����l����=�lY��K�v��/̠_��Wӆ�ީ������4��=@��j�iVn|�.�Q�cٹ�X.�7h9�P���C�8q�n�Dy���K +X�98�r�+�D�x��H�
ʑٯ��������V��ڊl^d��h&�6�^d����#WM��Eǡ����xz����������g��_�ȇ��|�X�`!�j�����"`XK��y��e��&.Ե�R��"��t{o��O?F����ꍛ���^ҵ������cH#���0�¬�H��ւ��90)���5���C�	��7��>��O���^�_��o�S�>K��a���F�2PJ�_:in������0���΁鐹�x�4��� ��n�;��b��s�4?W<fc���,��a�AB.����#����Z�&6��(w��9�3t�A��c���1
D�_��j��s��8DS�)=��5�m�y�8wF���=�t��a��O=�o\?����^��]���ۚ�y��ѥ�=�}@z���/�xǛ�I�8�'�D��3�#�h�-{��N-���n��l��U�m�*3���z�J@�L�iܢU1�7��=�,��[[���K��dsЏaf��5�_�����j�����[&�������}��P�Wg�2�H�Q��n���p�W��0�=Qjg�g�P�d��z�uA�k-_J*�o�f)l����
Hy����`�,Z�-^)W<���#����%�� NKvq��ɬ�dhz��ϕ�E�n�N*���}�ܐ�>;�8��e�T���ec8z�2�U9���lv��h�R�o�Z����3Wi�
�Gþ���z���3Nu�K�8�2j�Y��)�4W{�0�KXi?�����50ӆ������2a�vK�(�!���Td#�bC�Q�hbc�I����ɤ�ƇF(S:��{���`?��Vo5��Yh�zl=p�b�9�$U�\)T���O
�
Z��C*��0��1l�3=���ܸu(�1�����a�7[���㠥���i��*�Y�_�?���x��pB����?��z���N�"�li�Y�"�X�ȇ̵	���-(	H5�N�~B;_R�""��s^�/=V�:]=Ja�#<$���`�:��4�6�ָ��{5�U�ȭ�l�%s�R���5+��k�l�^����p���s�,n�b����QZ�F��Z�����?C������й�.��MO��}����/�W~�Ш�!����b♐˅�ϕe�c���,�&j�
�a���_P%��K/��U��[S`2]��
D	�
8�\��5њ��Ծ.��B*��“"���M�^r�S��:g�E	s{�+�)
AWT�Q!�~a��j���8������<�ݮ��u�y��pc�q��k�ǰp9�L���[P�|������=p�G��8p���{�K�*���q�"������s�τ1��`����Z����!}੧��}񻙄�S���n�y���m�����mz�����t(ln8<�
�{8@w8'��)��#ϾH�����чBQg:���wp��$�~�)֔x0�0A�v��3����g�L�,�n�H��r�����&ϰ���y�ܢ�Ν��^�{<�hlR���r��`�(�}������qj�
�=q��w�qТV�K��u��w#z�S���w��.��[�F���s��5
g���D΂uB��Zs_:��f鴭0�̉���0�n�"yg���WOH8�_Ct�o�K�p�̸��2�m��r��!�C՟�%�)k7i�R�9q`��E!e��l� �	6�iB�,䀘[�T�F4���Ѓ�i۱�*Ήz�V�U3G�!��"�s�'�T#$�MuV���	ne�=;!Řjx�3�JX�V��v��P~B�VK���3k]��<�V�2&T�M0�<�����T��K��<��Š9cH�e���h��L�'Cy����v�q:íc�IY�5k
��"�TJk:�^['�c�e�G���5٠h�����矺n���\�pLcQ����ܺ��4PbL
̚���d�ç䶊�$gP0=nX�5>�SCT7ٲ�.I�y9c�Z����@�y�Q�y�Ɣ��j^'<�Y��%A�
q#u�).���(!\W�9��nn[�A�E��eH��|*��(�j7��h�Wno�;�s8��^G9�fh
��Л���R��>�y7ՠܱu�3�D�_~�
�=s�:�U����8Q��³/��_�����Kz?���-a;nlmS��Y���Gd�Ȗ�:L�H�[��(6/�Ҕ��� jhW/�(�<Ee)Lc�U����C�N��$���%�����ǝ�^���A����Sa�Z�Kߏ��x9C�2RY��en���0��Kާ%�xD��B�B��a	�'w-{>�=��7�w��N�/[���]��j���2Q��V���.��Q����/�Rz��
��_E���'2au�~������6=yr#�;u����SO���
��L<7M~�œtg��<��?A�V�?���v�?a�����'�+{�ʵ���'??CWO�R�n��B��emb�J((�ƴ�
Z���6uH4���5���ޡ3�>�����
����c�P�'��9<��+���J�5�-a��h �9�<�4
�l7��?�l�֬x�ࢸC�+�d��ټ�e������A�(|fƂ�6
��
I!q�,�����*b����U�F5p�{-�ǽ���d$-���$���.S�Mgh=����5P���Tk3��l�{yZX\XD��\kw-���2���P3�q�f��,�h�i�|�H���`·{��i+�s(�DyթZ�K�ኙ3��)K/[Na�e�[R����5��c�Ηh@_6X�v���l����d-1H��"���0-�e`O��LM���o`%�Ī���w�m�b�@E�6|Bn�j�$<�&t�H(,wG�M	7]	#`�ҊY8�׬��&�!��++��}�C��t��F�NЉQo����E��|o�'�H��>΂�Z�*nI��RV�{�L�iD���z}ݞ��eD��,S�U�s���
�9�������P���c��b�{�	}��̧�.�{%&����U&�)L� �P��A�p#�ڬ2�'V������^ɲA�㻾W6\[˷<������7�P�R��>���{�[�~�W��1���G��[2YO��x0dj�"��c�l]�#5�4̠��[Ut��x�f�,���lΊ0�E?�M��s/�:��_�{�W��w�H0�K/�BO_�F��z�=A��ѩ�0i�Q�>x1��\�kwv����
�V��ww�Iq}>��%F�^���x�[ҮP�����5AvG���+�� >�ލE[2�{7 �t�
P��|a�}����R^`6���.,g}m�.�(Ŏ��=B��?����H]��ˁ�R�{���>{/]�辍�{�������$���׮)�7G#-��)�.����鑳�t��
O����o��hM��/y���믐8�m�շF���y��3�o?���u�g�y"�f ��?��lj�Sл/^p�a.�յ����
n;~����]Z�_��c��$�Z[	�<p���^�K�Wg�ۂI�x{0	�z�`���m@:��vC�Ǫ�q-1�����6_>�*�~������"�A�hT�A�Q��`(���n�&�k�<n�/�=����kag�F�;ZMA�˞���-:_\::�<�� 2TqO��1�,�Xf*�V��w>"ʀ.e`va�QTD�+��9�Fn0����訌"����٪(]Ιdcf]�T 8P�G�U�祖��E�ŝN[��ޗgb���a��fO=��U�ku�]�5�����c=`h�'�^2���YÚ�XA0p�����^z�(���9��C�O<�M��.�f��p�*�̖Wnh4f�98���!��M���ly=Yt���59!�-j�0���7��r��BP�;X] W�G����&
xTn����YJ�.mb�u�:��MM�&42@�*�YQ8�34�c�Ipz-=�c΂-%�M�ˆ��c\Y_��
jK�4Q!��_>����⬴�GS�&2��ɣ�����%���(uR���h���O�C��4S6��kN�y8C�P��v�:���-��l^��o��2t:�,D��s��N�%�����K
�u���4�^WoT�ǡ[�����~X;yRsԚ�
��>�O	c��a6�C1w6��n�mQ�.�����7�?�a�����O��
���گ��	sӒ3�E��^z�`Y4�|M�؇�ڲ��E
F�ά���j�t;j`�D�L�^�ڑ{�|ᬸ�Q뵤sg6��/�L7o����-#�f�@-�bj��������>�q�)5e�ǟ�VQl���(m͐�#�8��W)е����l�N�p��B�:���\h2�	�ſ���|��q/���(�y ��#']8.���d.���ބc���d���^w�?cTڋ׈�ɟ%���2��x�}o������3���95ef
A4���
!5{7orX��֔�����_~��@�PX4�(��{;t���x�"�q��s"B��ةU���W��Sm����Uox���o<�����,�?>�	z%���]/�i(@�V��wȯmm��K�:E�W��6 ������}���+�k�Kڛ��/^�����ؐ�+
�jp9ڣ�dF;�g����D�	+��,�E(N�:j���@���6?�����*Z���/��c����#��?P���~��h2,a(���ʪx���k/�)<p<k��f{E�]q��jw�h,3��UAUG�N�[��0D�(�Ȳ���*�L�>ͭo"�`����>�S��1��o��FrDi�����cv���|/���'����8�����3��7���[���+��	���j
�<��F�Դ܋d@��L�2���t�2��ؾ�],nHz]Ӑ{i�gi,���,m���HDd�,�<o��ذ���V�:��p��h�,����za���+�{�]��VW[�7q�;n�)���U�����e\$��C9I��Y��`Rn�F�5'WM�����n0#32�!�iB�!Y
��R���њ���^E�1�~Z��Ճ��<�w���w���/��/O\>������(��s7���'����h舋旞�J�c���h����
�Ol��=?���w�R�(/�ô��ֈ����G3��ѳz����)�S�д´Қ��T۵���k�?''2 �ؙ�0;,�3�r|daNZ����׬aG���C,�2-����p����B9u�l��0L�{��PM���d/�t7�������=@?��E��_�u���K�xӛ��ox�Ps
.�r2q�fm�b�.�T����X����ׅ��Q�[j�)J� {ekZś�n��m7�g���S0��?�>�h6�o��?�����ϝBv�l����S�MFY������}��}����I�trCا���g]��V	.�a������;;���(l$�~��~��m�'�V.�X����e�s�x�"`
t�k8^|�8�}?�N��%�}�DZ��e�6dn�\�-GX ���}7������!�����Z�-߃��>;������J��uq�{
a%i(Ŵ��5O�Qv���4n��7��\!�p^����ų������6�[�@��s��nݡ7�ޠk�w�m��m���[;<����|�~�Պ^aޖ��g��/����g�^��?��3��>ݸ��-zo'P�
6��#�o}"=d�o�ʿ�=�к�}|]<������}ݘ���J�n�"�v���?�Nݵ6�����i�5W��'E�����V+���蠯�����
ȁkX��F�I{�!�5��[۠�рf���:=��da{
FCz��s�*h�@���nn�:#��6��/�p  �_M�|�O_0��9%��f��3������%�B�n��r
"�|����K|�U(�	piw;��n(4�Zw�Z��9{q}'�x��d"_����<w�j�����!���~�< ̏s�N�p�Upۀ#�).��P��O`��B���t�!��d_�?G�<1�s�.6(HW�9	��{�(�=��c�[&o��<�?Y��-DG�0-��k��|�~�A�<�ek��u����K��׶�;��7����/�׼�1���}'}��4_��w��_��g��_�o���ͯ=C��o�����ϋ�D�-m�e�y��|�
����X��o���7�
��e9��N�6{��\�d"p�6�z����\�fh\c���LK��+a����&���QD�_i|�;�ݱ�����zV�,P�k�ۤ/~ۛ���L|����iv�F��M3 �zk�b��J4�]m�k���Z�+	k9��L[z��#���.��y��\�s�J��X�<A�mhTh�8S�)�<Q&��m�� T��E�
o�|��xn��fSU4p� D	�pZh�p�ф`3>��ʗ������$Tr�Z���)�C���gz?oz�!�(XT
�҉
:�k��Y*�2�Z��m>�{DtOP{����]�FX
�����g�<ft��G�[���Gם;ײW��4&p�-9�y����SMD�k��o�Y�ԋ`��p�?V9_Kw3n(;F����{���ڗ�i��&b�5��:=��O?G_��[�C����=*�DC�س�����NР�	�٠�}h�~�����?��u����|��>�����-z����ӵ���Џ��ދ��k/��sb��{�Q�;̧�_�;�;F�W蓇c���y�ʠ��>���y$�fV��g��^;�Ъ%�D
m�>���-a��޳Ɠ	O��ԅ�mRK����+'��'���1�K�He���M�d2�[�Sm%ږ�nѾwM����@�����#���e|���2�P<E׮>�-h7��p<�N��+U��Z��YǚX�)���?�ރ��פ���[���i�}��g�hW��Y�gH���GlE�q4��ve�\}�)Z�<��
���7���\��Wnm���]\t�#��������M	��r��y�^�w�
�����p~�Z$��[�����2�!�[���Ġ��U�ݸs� �xZ�(�86J#��q����@�1XޡI��BBJ(r� ��~��/��DG��_�d��{�ҍ�:���ſ�ӗs�zg?���U��g�j{*|����E���*�C�~�����ӛkj.����z��p~=|߷|��9�?}���p�ښr�8�}
���� ��z�[b`�aO�0�����σT��\���ĵ�td<؏uҾh&>�Oj���P��w�zDd�	%T�B���$��f#j���h�yeY���<��lkw�ޗ�
m�
�awb`v6�4k�pT��-�n�|�Q�7��P�ۂLQ+B����0�N��m��A/gQ>�`XIܯ6;[2Q��&��AQr��=*�" �
ao+��e���?{�Y�`M�AT	��C��3�&��
��,��4�C��
#�-N�
Ʒ�)QM�)h\+�q<n�})`
,�/�œGP�G߯�l܅�󯴹C�~�h�ޠ%����E9~0�c���J���V����#��y8�pjo�1�ޔQE�I��k��ZŲ�z
M��p�YdP9�C�	(wi�č�{�pb_3�A��#'ė	�9c� $!���Ll�������p�Pn����p����-R�@@��n'����?��
��NS=�E|����k����@�e+<��Ϳ�����>�<�U�3<D�%�.�3k+r��
ږ쿵F�z�T�x�A��[��?���-���^�w?p��~�y��Ӯ\�Wv�weφ1�l���Jd"����BV��^��C�o���\�=�Òζ��|ew+��苧h-�T��}�l	�!m
�$�v��"�B��.k�a康v�������C��Pj���Wd`��i���{�P��I���{�_�q+����ꚳz�4��l�fM5���`�0�v:<�j76t!�Q��%jvW�������^�}��o微�ox�5-�ߞ��:�r�:�Yo�K�>E�'���V^͔9��9�
Y�ܲ�{7���滣g{��-�G��j���:
)$!�]��z����##�񑩞5��x���;a�!�@��)�#��a�%�2�a�al�Ƌ�%#
Y��cҘQC��м,:^c�=A��1��Sm��]oX8�2k��V��E���{m'�Zڟ�g�Bo|�8z���g����;��/P[�Ż;��3�"ދ����#�\��_@𷿉~�ٛlɕ�+�2�)7`�`�g���TQwE����%�:��,���~UP$}���0��|��CD��������z�|�=jҟ� �^��Q� [�f���B��x�����\"��/� *
���Sc�������X�gI5/Y�H��uX=�@;� >���L߱ɱ'��/o��tW�~ߓf"����di�jj���`�Sq��wIJ�ZͶ^l�ѡ��tj¥(�O��XX2-�u"���֊E����-h�"(Jk�AǾ7�q/^�yf�8[�r��ކ
]|�:F����1�f��$��P_t�Z�o�%f�wΟ#�}���ΒWBf�jүU�/9	%T\͝S���b��-�!�:���ȹ��x0i�N�OEU�*��%���q��^��H��y��xApD���Y�K��^���+a�ԍu��W<���yĽ�+w��=^����;cn��	:'�u���.5?�����/P���z���?gm�["s:���a#[�X����_<G_��#tJ��S/^���ר]m�+7nxg����`�F����>#��-Ϲ}�O�y�U��ӯ�9��_���t��
~�Oӕ�/��r�P#�����χ��O�(Mv���q�`_
��Ϧa8��E��
���2���"��2�/mߖ�(�%���:��1]<uJd#D8���P	��7hw8�{G�.�K����3|T6N����3у���i55��v]���#:�����?�$K��@��֑:��tUWuu�����`�� A�$(@���r�Fr�vi����������G�
\B�03 G��պ�K�ԙ��x~����Y5X;�������~�矫�T�} �l.ZU���I	�˧��d�{�P;�!6A��$S	:u���U��q����ۺ�H�	���H�??P��ʼn�)sz��9t���Y&vi�40`C��w�4��>
��M S��8�2%$
m�{���G#�<brG�4��-���8y�IR�~B������_" �[�f�%�f�~�5g͓�{|D{��2T�m�F��:V;=������s�x�Zg׶J�����w���;�ُ=���/�"���i8�\�_���.��0u#��e6f?�J��������Zn���ÁcH�s��n�'7�_��rh�N����A|o.Gm4]�.?&����
��(Ǿ��f&)rL�����L)L����*�� ,�	�3�R�d�T*F�QRz��z��C���X+Ȉ�h�F�ѷ�LiR��s@I#�\�i����[��4G&�8�K�-4���l�-숬^��\��5������cr���<M>R���t����^�q�gV"7H(�0�|�~
j�F��Q@-8���1a�̘�_{��߼��z�y<����M�?;7��e�Ɇvjb8)��
#,@ i������Arc����k�Qg iZd���e�s�����a�t��0maf`go�޹���ŋ�d��ڵ밲���z������'���pgwΜ9-y%]�L�G��q,�ʴ_��[7�ʕ�����FÐ,~���[�&�43�����
q�+M�Ά�'��Qs0�;2ZK�$e!���D����Ox�`�����B��ء��+x6��wb�S�S�<��{mg?pl��Pf@syf��mo�N�	w��%��$��`x5|>����
���z����tO0�Zb�^�O,���
3�	���»�=��:���
���l
pƞY���ց������6��k�a*�(?t7�`��N�6+e�K�)E
�X).��=dƹ5�h��$+��A�b����7Y����ީ�i�0��TZݺ�Y��3 m5j�K�V�A�-��j����Ua��𶔀L<I�(�o(Q�G��� ��\x����Yj��/�E��5��w����Ud���V�|�Dѓ�w1��ݪ[�]�f���D�b��1���)�����c�xf.�H��UL1��1�+f�B����P���[o\�͝x��� �JX9'�dv	����mb�N�i��ˁ�t�.t�3����猌v��Ekef�:�γ.A�#'���m`�Y�8Z��F݃��=�f��>�#`���L�Y�6 �Ǎ_׺0�t����3���ȸ����_��1|���m�ui�\�~�������V�����?�
���e]��CD�����c��c��)�&�d���=`e��g�΋+Y��`BPi�$�l��z�� 5�h�	�YB��ImG���e��	
s[��C�Rȡ�\b��&ܓn���<S������C$ vݒ�[��;�����."���~��3����4�ڶv�u)p�T�)��C��_�y�hO�L@�k@�I���Eik\�RJ�I��@�x�i]&�����4
��$��_]a��
�^��,��d�����F�"���;o�C�|ڥబ�a9^�
i"{��75�$E����~�h(�E��z�+��P�(
�:�z�7��j���o�;|�y,�y6��ʽyl����&D%���Z��Vs�c���6mڦ��$���Ϳ�5�;￀��o���|��^����KhR�h�b5c޺}���2^����}��_�c�ִ���a�=�0�������ކ�|�ak{[�$��o��ju��g?Ksss���߂/|�+p��
�u뎚b~���K��ԧ�ŏ~T�y��, ;�1������o܄�b����t�Jb�25U|d.�*��.��T1ʕ�|����6.�>�I��dL�6z�.����-X`�gJ�Ry;�H�MF��hɧxsc޽��kI���(3q-&s�u���^R��پ�L^
S�nT�a�b҃7w��Z��T��QD�R�5;���J�.��B&��{VP0�l�B2�oU��>�8��oj�Y�&�O_|
O�}w�	^y�3Z�o�A�C�����"eI`晩��}�~�fvq����	R	��j�]>�3�J`�fp�L�Zh�,�
2�~b0����L�4���Ą�>��]-����6+�m��R8�ɳU���d�:3��)7�26����>����=�"_��
Yw:'����
�x��]��/p�ZU��2&Q{P]I�Rͧ�y����fE��Qe�����VJ[p�ت�����'J'bi#/�?w�ނr� ��\6�4�ÁF�S*��l:3
��RŽ3����֘��$�Z�wf�R��)}�<�̹�} #�̓c��Έn��7���u�tם�k�jX�1zƀa
���[롆�$h�B�Y�߉�l�GAp4��3dO�s?�#_���4�Q�Qםj��M����W��W���fT2cm�,�-��d���\�c��U�1SÀ�I�:���xZXۍ�"%D7g�F?:��3�S0gm��ǁ3���&�a[�ff��_�Ma8�
n�Y�g��'~�ڂ�	�b��M
.��-��m�6���s
�\ye�5���$d|? (x��ӂA/b�;3SJ�I�b�u
G>v�7΃�ܜaY�	"b���C�:��%�+�=W�*�Ú��2���&;Pv ���j���ch�]S[9�i�;�S}�p�Vj1��MY�Ѩ�6C��5�D�Zڰ&e&�iސ�F�qRnR-9�~�bCQDQ�.�\�����ً+�t��}fjJ�G�5����67���u)Ɉo��6�����_�$﫫+�7��_�)����{k������������;P�V�<�����<�j���#�H�������T)�w��*0?��?€.��F�*/���1vK0B��w��;w�޽(@1?��o�<lmm�o�濃����C�������x	�wv����+s�K��K�ß���Y׆��*���c��$b�|M��<����=��f��667t;̼�f���L�����x⼚^K�/�_�ٟ94~nÔ�	��_��m\���J��d��[�7V�#�:J�*���)>�h$k�/|�k����(EA
<�]>!�l
��ʝ�T���v�XT 'siZͤYA�Q�ϽJ����L�������˷�A!�c�9f=#F
,v�������CH�~�*�-D	��%xn9)lN�A�V-r�G��gϭ�V�N��jxra\?ܩ�i}��߸q
�>�*-��'�S��m�H�6��HM�	ɪ��h��|{؃�T%�Knٞߢ;��
m�^����&�?6w�{��r�.;
�܃�tk�z�
��6՚U\��q[w����c��&.N����0`iM�ƈr?~���W�Y_�.�f�݆?���Q��I�C��ԭ��J�K��r"_�P����c@�$u��+�o+��1��4#L�YG)G����״HϜ?��f�v��X��R	J�QԽɹ+��Ϛ�cǐ���h�`��T����6������CA*�G�����ի������/׸��9��B��dN���3F�ܘ��:��~��}B����pB��Ѡ�X�òk�w���'��apK��
�z�XN��B6[�9�M��\�����壽�=y`�wp{���0`Ц�S��Ţ�z�s��G�f��U0q�������Xܡ�����E�K�l����.�j5��\"a#�
�(�]aŽ@Ε�V�
�h4��h��TտT�%G��r�"	�6(�,)����,��k��L��D��*3��Ŵ�mO�=�ſ:
p6)P,�T�Vy/B�D|zXkN>���"x��N����w�8z��@7q_�r�Zk�ڞ4BDM-ze�Z:A���=[T�b�P��1ʟwh�L��f#�lp�3�/�|��p��YXZZ��g��S'�T*��w��]���ލ�V�wށ'.<O�=
�\V�^d�;"�����40�S�j��|>�,��e��?@����
���|��W`qy
�������dP����L�j����>�)ʖ@�I�ӄ�d���4���@�7n�����ye�2׮�����3��I/<�<.���g>�9<��y_������g/�6�%6��(�#���{ifL[��K��P(�/�ZZ]]��e��4=��S��nݺ.����em�ql�!�Ό�����Fb��h��8rc���P�?w[����x"
�j=�8��W�0������!���lB���/�s>t��f�xC��)Lu�����@�pr~���G�{��3�'
E�2{�J����n�ǖ2Pi����a���
���43�->�Rڀ{��*tؒ�فZ����하�ܫ����&��Q�5�UiK�Y\��1s�cS~�� /1��[�az���
X�[�z��@������	�~~�|��瑢ހ��n��k�S�򱐒��n�}f��u~�w4�]�;�`�%3����bd���f�e�L�@� �Kq�$[DCK'7U�WCc%B�%il�o����c�����4d��5-���P�@��|�iI��x:�q���5�N�>�}8���,t�/��i6bs�^<��a�t^3�������J{�&���$Y���%S5j��|�9�@��;2�6���u�`'�F�X#��LQ���sC��q肅7.����њ�À6��#p�|z!hk�
������R��F�͸|y8���L|����Aߌ�tC���1�%��㦍���q�`����jg�:PG#��l�a�""�#c
������}\���u!��&�+H���a�	��9|bqt6�MN7iF�W���Ph+��p���! �+�죙c�����:�Z{�T?bbU�N����\\"6�cj+�cQ�����=�����μ)Ψ�!@�Q1-�S�w%�[�vC@6>���VK��= f2)�A`��;�m���m+_SL�J��o.f��v"_��ƤC�8���q� ܭ��6ꖯ�g�X����x��� �/0�@&�~�)�z�'�������.�:}
N�:�?y��a��{�B�x�|��4Q�r�bw�i��a*<q���گ�?��J�n�� ������P�W�&�<��SʺZ��`W�8x�	V!��;@i��ʐ^��$��kX:ؗg�K/ҳO?
��y����8^�p��ҷ��]U.~�'~$б��ƒ{�����\8h��6��g�ޒ�).?��?��ݣL:
�ϟ׾�������@�>u��������b6�B��,!?mӟ&΂��J
;|�56�?�������F�PI�T]�,'�̸	J����Qi��Wn��E���Ym�r��Dߗ;]����ol�C!��l,
Rk�P���֎in�F���O������h��M(�*l��܀�7^����R�&k���$�iƏUf��]�<h�O����h�5�
K,}�B���݇�-�3���3O�a���>����I|�|@�<��jO����P"\cZ��q;�O'�g1�L� ��@���{u��
�J��~��P>�M��?���<�Ku*�R���'
�`gw�M_�V��$٪�n��\p{8�K*����	B֗,����٤k7o����O�?������2�^<��S�n�v
*�yQ/�E�q�k�M/!=�jXf�߬Y���@�9B��V�J���z2��r&2���
���ʰ�Qg���~��2��t�Qs6<G'�͡�ts�.�:�L8C������ƭ�����p��ƛ
pB�l��$J�s���F߇�`�=�|J{aH���ki����_�[(��]L�,b6'}��j�\��a8�N{�y��ɬ{<�����y6e.:�2���{�so�a��_�a�P@��5>�
Gi����ΝF`�<�W��s�btW��H�w�hhT��i���>Ӹ�-�bך��E�\� �+*����8���0D���O���sF6�I���49 �
8�
�����QfD#i��Il�V�����ٌ��I�i��!Gr�z�M[����p
{*ǂIwa���q�b��D�f6��$f<8Lme����dU���A��K�hèz�l�D��NdvH+���Yz�-�t%0��Z�
MYG�aD"IuU�s�*����y,1�Өṳ�߳�<m&�o2F�����(���DE"L���[����g)-�?����3h��˃*�����m�SI�d�KM������$`
���06��.>q�����u�'��'~�E���G>�o��.?�$^f@�iL���8���[(���ӧ���uš����Y���w�7��c3����x$��S�E�e��~
�mI�c�6`���MCKym�I���^�M�P�8�Y���6��W��F��>�
ky^����=��g�+=�=��f�Li��v���\��
3�7�e�|L#��,�=�3��6���.J!��j8���j�J��(�WV�)�ͥ�E��ߩ�\>	�dL�1�N�I�MX_H��Yn���%] #�K���Ƴ)(G˴�Jk!��Z[+J��O{)�PcV���S�U�6�X>��p	;��z�5��$��~�g���V���*pv!�z�A�@R����KyP��v��-��#3|�g�\'S��Pr�
i+Y��R���j
��fK����9��|�}RfS����)�����3��D���w��p[��./�b1C�^[Xə
Rڻ��@:����=,�b��aLx�\�
��>��l6��W�~"��f%J�:<�؁n�-���,����1�s�kV�uX&й��n}��74��:����O,���&�7O�b*~�mn��'�:u�-Nr1�kO��P
�(ʒ�Q2舒�b�nwXy*����ɓz���8yB� },d��ܼ*��1$B�I��dwoW�<����l4%��*2g {s��c���`&��V�Sl�{�ͷ��֢<�ፍM�B-b��%���C�L$���[la<�uVD���}#����V�§�_>K|��X�3�B���d�D��iw�Y���(��s�����G�f\kֹ��s0��EC���,H
��uQ��h8F�}
�O�Jg��*�&ܲ
q�PA-��4�j"�O�_B�0��Π�̏x�}
@jp]c!G����ѕ�cr���zϴ�<���o��r�R�9�[��0₽m`��4Y����O�j`r����K�)YzA�f�р�����¢X�t�ٌ��r/p�ׄ,�~_̯��`ͭn
�o��l7{��i�t5�����%�� ���pk�>�2�Ц��$��7���Uɦ�_�v��s��t)BI�d�=�A��k3���Vv�39�&Ŭ�dGj��k,�l?�je��0E{ƉN��MX � �TnH����}6��(��C���&�pAc��;�6yr���~G�����i�z�P��Q7c7�b~�ځS|e'ڦ߻�;���m��q׀1F�F�!0��(t��1�Y�}��u��Zm�nj�r!-Qؒ�	��b�뉦��z��5����[�So��q.+‹g�Q�YŃVSl��3P}��G�ϟ�<�740�A"[�T��St�V���@M��vZuʕ^�3�r�<#3��E@x�uڄ��N,�񺏂���P��^��ɮ�њ+��m2�aS�1Q|�m�ihsb��Ȥ�#e����2vD�DP$F"1�c�: 7�L1+�d`�Y�i�r�(#kf����r{�0�r�@#Nl�g��:<����g�g#p���3yVz�`V������|u���%UE��UζwvP|�kH����!(-i�t�����ቓ')�ˡ��&��
$��X�$��R!��w�^���,���\�b~�&�#R��R��� ΁١ߦ^�������,1��Ng��b��2 ��9M��~�Wx�����Cn��cHw�n��_��,\}�
��euU�3@�c�w�๽�Kw��5�8~�2'�������H�ۛ��~�}�}�2)#��sssz/�{���r��.oW�\�_�M�x�A��J�3���-���J_
�w�ao^x�9:贕�� ��r�V�-�8^��ݹ}��ş�j������wx'p�A��\�K>e^�_���H�RI�Q��������H@.�ws!�Z�)~��y���_�{�{��Qױ'/^��T�.c��&L��8�:�k�����㽦�N��}����Y���}��e��JpT��L�c��-��\��ڇ�$B��U/F���(>q�9i�RK,7lnQ�����Q�b��<���8�Ը�Yl�8Z�
6f� F�N#��1P�Y���J-;�Qػ���Q�[�˦�!Z5���`�Y��SB��[ߢ�n�
�}{m���&j<
L�ǘ�M�?�o�\ @��`ey��3	�%͒ؕ�o�T�R�Fa>#�N`� i�����
M��A����)��%8M���#�G�T��ֹ�)i��#2��%�L�$}1a��7�j�&�2�����`�rz*�_���G9�p���)��X��N	��G�#܊G	
8��0��&@�~�������L��wj��Cf���j��v9SY�8Sr9��NO��q�
1�8~�
�'��~�y��N���7�3�ӄ�~�M�[)목�|f.����
K�:l�c9���-.�x���64h���l���A�Y������%�g��p�=��������3�}�W����+��<��{�vI����Rl���.���&�#f�YH`����$����f�>}Z�n���CQ6�r����L�3��J1�B��r�ܗ�N����0��.@L	��A	�_���
q,������)�`�K�b�Ȗ�$���c�Z���ܹ��������ެ՛,b�`�w�F���v��γ�剿m�����V_:�yBl����Ե@���>�Z��d�mkk���ho��4
S�DzǀV�����ǣ��T�J�n����k7!�֭�98���'W�_ف�=�-,�<ϕ��D�4�u�^݇>�0�Nc�em�7�|6���A�ŒuEa�2P_��a;�`�!9m�N��Yri�\7���۶�k�S���d�@M�l���4{"q��)�f�z������/<��!xe?���퇚Y�8v��]�Ġ���]9_)���S��[�X�������,��֠UXpeeM�>J�LF��<��Ї�?���3�֟5ӎf�@x�qf������T���g�h6�'2�We\�#$��~ݓ#�B`J@�z�#�c������c�߭�B�����HF�a��,y���BJ�Ȋ=�͍}8�R��_��c���~����;%:���u�DS��ɓ�1��Z�:��M�y=1��o|�W\�A�m�)Q���탁w�=
C*y!R�Ҁl�?S�y0L!��D���y6<a���vQ�"��5���ˉU�O��o����n�G]}�xM�Du3���c`��G���{]<�5����U&Y�����Ⲝ�&�h��-S�Hַ���#?*���hR&ꉻ���X�{xf�Њ�
��^1�*yp�z(Չ1ȥh�|��^�Kw_7
�IX9㡤G�D�o"�Ya��d
G���N:ꯋ�e�Mu4;���I+/<�T\̮��q
7���{��B�6��@sh�G�@�1�YF�a���J)3
��	Fefa�q!���oli��g�"Lap���+�i�~�q��f�6p� c'�l��4��v�a�5���__v�u4��H�����n�$�M� nsg+��B,|�w�n�ͭ=��yv9���ɎX���ؠ���mU1˗�TMs�8��C�m��9O۰����|��^r|�J����R1�a�����.����(�8Ų�M�sS�Jj5�I�p9[`����=U;mmW��ff��p7�P��au!MQf.��>d��)�f�p{�M�갿�6ˉ.\�y�ܕYl�j�q���:3lih3��t"OU�~4�J}�,��i�Ev�Ik�,vEO�ln��/0�_e�X)Ƞ��o��6�K���ټ,s�/�ei�YR�^���F��A�̾��W�W7L'"$]L>�Ç��D�����+kV頼��l�b
#�&X~�SR�S�P��xpP�Lz�ق!%\՘�ۯ>��\�����ִ�zԜ
{$�5�^
��<��ײA��N^��CY�m噭�e�ީ��S0k]�L�r���ƈf���ėx&�J7~�`����xФ�EE�������3�+�Zi��1�,�}Di<���T�F��Q[a��̴�.�,#�}g�Aͅ��bo������i������6<Rn��}�[��;��P�l*��@
%�q���Z��Umh0P�3�h���5v}�L-����-�d�L�u���ku�TS��3H;^�C4>��Ր��!�tΩ�J���SŁ�����A��	fnY�,(p�v^�|ll���V[���^6���W�YF�^����0Ͻ����-x���]���=�}2�XMǤ��=-��'N�d����ieQ�=��m���E�,�|
CY��7D"Ԅ����/�E�w�'�����d5T�K4~��,�ɊpaO%pL�fT�X��}���TF�7�#��cJ?��!s,32��u��,l���B�]�o倲��l�(E�/��S���GR�F���|\�s��4�S_#�iP����+Lgc��ر�&�wg��.�B��i=ty���#jT�	�f�gg�DïP"q����ҀG���ѯ�g��� ��ݍ0��%�a�<�#�"&'�g�d2�陵�x�
�f�qf/���(��Ǥ��߀���^j—�|�z�I1�c�A�Y]���˝_�"�bZ* 6:�@vf�3��Q[���W��^�ɠ��HR�d�)�Z?���d�Q9Qj���Z,	�q2~��>�v�f�~���AG�|XM����Xȥ��v(M�Z��4�3�lԘ�&x�ʷ`>���]����4{>u�>�|�����^�1�=�J�
�D�(.��!a�N}h��p��>��I���R�C"j•�/4V*nj�&J�ݡ
��|ow�67���na�D>	;�~�[ⷩ�KT�2`��|�y�"%��ff�9A�`'�,LJ�p���=~���}�׽4W�3닰��
@��.�L�	����c V�7iss���Eu;S����RJ�
<�� ¬蓼t���El&�-L#�L@Wā�@�a�d/�K�ۈ�H���hop �!�|�ϐ�<۶8���L���+�Y9{��v@�?O�>sN�]
p�k)hS���ؽBיF�L���Y�udŒkM����i�*8�F�~�ޡ�5�}�'���־�:�P�h_@�z�o��E<
��ё`���,0�8��U��s���\J�e�x��F֗�T=R�i��+������Q,Ok`g��=�Z�6[�����⣸�(kn�[�l�N�ʭ_
�Q��|Ͳ�=���.�<��$��9X]I�^Nv0a����
L�*�u�4�J��H4���6վ�'(O��O�	Y/�@9�+K�*x�]���c��䫕4^�J�X���Q/d�7��n"� V~��b�`�*���>���Y$����*`&
��c0�e&��F�lnܨ۔E���u3�5�����ħ��ծUK�(^�P��4��"����~ڢ�;�����-g���!@��Bfr7/��M���:0�ކ	��Y.��0͔?�;Vׁ���d]_��,��I&ٵ���3��/|��s�^�;�c`�9�:SfW� $��.j�kRM4�Κ�J\i��V�l>� %����ԇպ�8e)�3[�g�5٨�+������~���/�܏û�<��c�����+�в�oL��mV�j��{��->�S�*����6��n2���je;��������`�]^��Wr�ou��`�\�ႀU惡�l�c���7[��%`.���8S+�x��.\8>��y�-/76*��$��R�v�eK
��$[}�ͷ�Y�bV����lV��y��!$�Ql��T/�OũZ�q���n�K	8��6�c��������� 
�x��TH��O����n3��+J�_1˿X")��5�FZ�#��㰹�
�syQ%0�L�m�A�X����X����j��ۇ3�t���I��z
N�,1���[Wބ
���Μ���pF�������`>��b:�'�~�#�}�8l�ٰ���Y�a��/�:�\`N8��H�K��P�
��oA^u���"ۃ�`al�(c��=GPoǛ,5;�#<�o����
>Ͱ�M��5!���Bro➏ۣ��Y��X��uH>��sG�%��C�M�����c�X.�efe�i��_��س3�Y�m��(��~v�!�1�O�x�`_:WhA�c,�f��n<�{R�+����+���b��p�g��X� 1�_���|��@o�`cVX^d"	X�������o�G�Ϥ
�X� ���/2�}�V�0���Q6SuHqh�@��F�ª���Z{�L�l1��\r@J��8�C��C�CM�b�FXj�f��MU���V�M"km�XIS�Yز�L�2i./
��ԓ9W��ג��D��ߢ�ip�
�7gа�&[��&(��0e��S��8��f��+iz2Ɇ JVĀ]M'&^�"��9��6�#������x?
8���G8�'�q��~P3KH��$#�'�`�߅��;��,���32�L7���i g����p���b2�(@���0.5ٌ{��;ml�����@�z�./����5+��DS����
����^%�k ό��l��Ӑbf�ayQ�#1�Sx�Q��ςFd��IR�JdM6��Vb���,_����1Fmh�Xtz��K5�.4��u��Jl�<yXn�=�_���1(���h���@u͋A.����sZNv���L�6H�t,M*%xXi���1O{|o�ۛJ�b��=bm.�f�>�ۮ@!�����j��,2���dA��@:�™�t�=ܬp��J�z�M��	�"�[�� 8	�{�0�}��Ǘ�`{�������Ce�m�?!+�z64�I\�)�2ٴ�V��}��R���[(�Y�HA�Aj�T�9�<�N�S�Nwqw��lr
��U
�����^v�~Xf�����ː�-�7_{���Ux��'p.�RՄ�_��;q�HI>ف���O���>�:csC�6V6X�F�Q��/h
�6�:��?��:f�|v�<��������e�5:F�C0&C�w4m3
�����`��&�"(�0�$��7��
G}�8s�Q���*>�q��|&	�W�0W��nl���3U�e�I'S	h4;Pa��ˆ+�&���ʉ�L�Y��I\_��͝�c�s�vA���+��I�ٔL���a�'-�5?[�� �C�P(Z$�|X�Y��o�Ss�&�k����Wې� �|Vo|K,���f]�P/�K���| ����R,t��r~��]z��&H����+ٜGZڐԿ����Lg�7��[P��gd�Ez�/ZFD5�h�5�Aפ���5`�E4À�ԵYs�S]�m�3k����ruq�'�h=kaic��TaH��V��r�bRAH�GZ=L���r��D��Jz-9�a�c4�T������o��V��jh:N��|7j!���~5�
S�	LY��c�L����wӎ;ja?�"�LJ۪�q”>MC��3A^Hx´�!N�
1��
����X8ßvR���֝�G�w����਀�i�m����r;�$��!�n�7�i��|o��ו�¦#1��ڬ�Kr��
W#�EZX�ߜ�3>+�(YG\�E�N��x���%0�^⚱�>��+L\���9]�q-I�c�a�لj������$u��0J.��I��‚�ǭ�&�$��K�>.����0c��ZS�q�gWW�X�
�l�����r�(�V�B�6�d�����*��
��g���<�1��u�Z_(0���^�	Ŷ�KB���z���P{��KhQ��z����z
�1aN���boa�N�p,	Rp1Wdy�a�^��ZH�zL��ع \�uqC� S��XL���f���%��\CbDA���l)����"�h�|L<i�3�����
��d�� w���ͽ
-p'-- �N�Z1FI&#��-ؿ�G���p�"D.��[w�����}�" Ņ9�7�%�1ǹF�q�r�ES>bz1�+��t�GC|�?��U�L�����@�8�#0 �@����a�k��9Ɨ�?�?��~.�Fw��֞0�;��l�>��RW-��}�L�G<��ٯi�j�^7�59W���s�V�f�h}��Gh��!�eW�-D�l}b��r�eEw�K�0��i���MB��k4��t1��d��
��Z�^�cy��l�-1J.u���e��r+h�s;7��3�A\�
5��n5��gڅA�槂e����y#�m� �w��&�=���5%!����נ�Η��;�c�,|6ڀS��s�R�?<�k������ϴ"��b�3�e/���/c�"���1�[b:t�"I6e^���4\|�y���V���\ag�	į5�`��lFl+B_^�q' Rr�%b1S݋���E@�W��j-�d)���.q�ᗰf|�ЍJ���L����h�dɓ�y^cQ����j�>�qY��T�
��<�0�������p������5/��u�f�#5E�ٸ	4��p�#�iJ}��u��ÿ�X��t��i�~�?��qd.6&!Gm1�5�LJ��T'��e"1�$�;r*�5���=���&��D������K�=N�5��`J��%|3hpL�'�1��I]g�xI�Ieg�{��S���lg6���n����5������q��θ��R����>0��k�..�1�VY�uY3|���2D����(*YQ<���x�2����̤V��FtU�Ź�f'P(�lX}�dr:�H��������X�2�V�����R`B�R��qi�
H\�P-.��P�;�F�#�$|P-1�G��DUAm�|�vY�
j�N�ie1�76����b1��J&��:e=fO�ϳ%��,��q��]f��`�X���tؼ߶��er�Spsϔ�M���sx�d�O��.O0m��
֡�����ߚ�*Պ�1Ԣ*2_�bY�?`q��$͡�D���Y#����ea�7`f���nc�M�������5����p�Lg�h�e:�n���W �א@�h̃sK9��W���;l
��`)���@i؁o~�
8{�$\8��|	$�m�ן&��KG7v�p�0h>������T�R�C���V�G`�]1�#��ӟa4�W�����m2*jR��Tj����?��[OX��Ä��<�4�v�=�I�/���g{��}�����Ν6އdL߃'ϙ�qF{���R�x�?�1������M�0jR?:�[֍��f�"uM�mU�2�<PyiQ����=:`�b0}�Te�^\C3�
!��q�5����z]��B`|\���V�q���"��`��:���߀�o|~���b,S�G1xXk�G0EM�M��wY�ߊ���6>=����s��Z[������V�C�6����|�rE�R�+jsk��\�~���`�Jait:+X��ʠVP&@ł�A@x[���_�!H弔	ʒ����Š:7QV|�ea��e���y����~��}�z�n`"�WI�@}h��N����\�V�K�"Ac�e��$K�h������B�I�+p�w{]Ͳ@�=
�����	~�ec-@{����1��Ǒ)ɝB��3�4�a�L�B�'�L���l$M\8�Xψ��X>݂@�n���<����u�!�7�J+�7$�٦C��8��yk�`�Z�gJ������3�`��
���mnl<�}��Uf� �:=����8�j���{� ���`�5u�\�¿E�>��
{�+�������co'�E/�$v;BEb6����E:QȪ�4�G�w���M��3�p��i���u�H%��3O�9��1�a���rL}Jih�:�5U
l_`�[N~�����muM�i�34ؒ��f��a8�)�b�8˂�c>�F����k>��R����T`���,0%�3&9_q�P����-�e����B{lR/�K�j�%o �:^��
�,������:<�-����0�\⾸w.�]�\2I�>��{(���
`Ir�1��%�p�E6Q�:�Bc��T�~�3�7oބ/}�<l-��rJ"#+)������mf�5e#oS<A�����r��OY�jMek���
fO[f�Ý��$�u���T"R4��3�k�L4���!�#�t��,�/��`5��@�ك��
l=�;�����y��1Z[��#��$xy�z�Pc���J�"��մ�c#^��}�B̩ce�
��jm{Sw���{c#^k�
�}�m-� .qk�k���	KK�P��$PO׿�Źl667%����\���3c���G��U���v��0�~��z?`��3�
g�w���c&ϟ�g��Q�'��cC爕��8��T���R,�b�0^�@���P�H��{=�<hd�%�|w����p��dri��h��[�k�`r��)��U��\γh! �<�P�]{O�p�#��Ѫ<�d�銯���g����v>:L��4l3��?W��?�(P*���f~��X��r�-|
�2v���!��|���^����?؇;����g ś�6Y'u�m�(�c+
�	�WZ�M�U2IߍY=���
��ϫyHTS��$�vb"�0>�d������PC�@�WJJ��S5�5R�
Ec	�K��~]a`��ьY_���>�f2��#�
��WV�����;ð�dZ�+#=��F���&w��LG��q���1�l�o,T��@�����
���E`����Kۗ#�!y�mD�҄��C���K��令��禩�08zm#�O�c��Y)�1�:�.|��M�p�8C�S�Ee�D+) M�<8C}b��AU�US��:�/��=�������o*�1�Ƈ
MZE܎����U
��8�'tV�u�Q8d%��%��8,�gm��C�t�`�x��7R1-k��?&��h�RL��!���<�SQu��cDô�z��96%G@ݺ}l�M�k�q�d��½��T&)*�e��V�����e�r��W%b��l���Ϭ�^j��_٤agGJ��f���8��"p��{6�+a:�.7K��ڝ.H�I&��)��Ȍa_J��I:���kR��&r���
��+@�:�U]�t��>
�Rz�X%���rN-g��s�U(��QA�����F��q�v.�>sܟw�$���C����$?�2�޸K9/��\!<T:��g:`�����ۿ�Q�ѥ�ji6�ɒ/�gY��dEV�Tb� [Q��*��ϝ\G�r�fy�a�_|��^p�����4�9}���>+�\�g�:�c�^)�瑍�����W�p�)�ҭ2��؜Xh��Ef92PzЦ��M��r��ō_�<Μ;&̌�.A�i�,��!#�2�~a N�e���s�;�au�W�h�����F����+��T�4�g�ܸ~�c��v}�l<|�<�˗������߭��-�
cˬ���	^#�|�q%{�i�Hs�0C���
������k���
��$��6'&��~^�0�}�x-chrs¤S�0��W�U7T0�I���0AD��d7��i�؃�2�z��cn~Ks|�Wp�܌�n4�h�&�-���a��Rf��8���
X������� 	Of
������p���I�*s���G'�q���;�ᖙ����0�ÄOߤ.�ch�b�!Ũb0��Z����✮:��eͿ6�@DMR�F�RC
���h�i�o4xS3^�e@�쫼��j@2�	�j�ښ_P����9gM.K��ƻ��}_\��k�M`bN��$UW"�tA�!,.2Ι<d�6܁��ɹ:�:U5i�[I�E�@�X	k�~�4��� ya�eՌ�B��a*��Y)��h�B�"�I��|�p��!�'�j�G'?Bf2��B���od�2�����`ߤ0�q��U��W"I/}�ɜ�Ï�¬@��R�H�:����KcE^��%�؏|R�kw�o��/3`�ZOKp[	�Qjײ�d쨟�4#`W�%WB4y��:mT5N��@�u�1�b%����6�	\�q�j
4d磑P<O�mD�,d��g>�qL0�U*��W����bR��ya�L�]C������O}f:�CMQ�iG�l:n6nR_������0�0?v�)/<⻱	\�Xy$ɻ�e53ӧX:�RyF��J.R�vO�t���~�º�:�ufh<W�^�z�)|���ܲi�]�P�V�������-�8(�)��ɅE(�>�V[��3���
6�gHKG�m�K�g�J�������&4_�������aL�H�"x���&��f%c�����\ڼ $�l�cQP�����ي�e��tX�=X.,"��;]ݠ��Y,�e`�Ċ�Y
�d/�幯��R���
�mԺpn�:���]�[�w��z���Lnbo�dp{��	Xf�լ2C�@��\�>�@ʤ��[W�7�7��f��\Q�<q!��.���XІ�[B�d+�'��>o뫋���uP�$�O�WW���Ц�\)�j1��k	����Z-����>�["iw��yh�{��NJ3i!
C��Akdw�_�Y��L�AmO����G����y�츹��hX�0�Rh��0P�O���]���SU��r��/�\\�	y��U-�ķT�:{�>û��(d1�b]\Z��{N��s��["*��,�u�4���g�����:1�(M����ɬ
A�q�4�(0X>������ѐ�遛NcJL`�] P�F��~��ʥ|�)�]K�M�����`~9N�2�vSEz��o����gs��-�\��z�@p���'vX�|������p���u�z�~ysNw��	L�[�!��p����'rx}؄wQ6��:��o�c��7��0���l�|��X�4��A�<�5�z�	T��j�g�.-�͏�&�=���KC��9K"`=6��Z�����*E�J�ވ��`�8��}��]�0����aF-�6��<�+pf!�Ҳ�\%�ML��Ro���x�Mm�<�=�r[����&C���T�7]�$���յ5Z]^�'�c�8Gs,�}�+���������/�2��&��q�l>	.�i���w��+��)'������!�`�+8� �`(W�R�o�l�ׯ�A���*��F,��+>lpms����q!;�^6CM2b���d�V��x�"��ß�!�k[{�˟�
"L���=x��{dE�\׳fw���n�\S�9
!��X��o#�-di�dK��6���>uI�S�d��������ۈ�&���������#/~���(�y�����X�U��`P�:�rynA��{�nݽ�]yF�I�|��)���U�iU����;b �3����"�A_y����z}f��8r�x6H/b"��I��d����'���t���(�E�YU�H%)�~��b}��{��)K:�2�
%��:���FK�S��;XO� ���]�M��VJ�u\�-U�]'���*�[=V~��ҽW 7��M�m�y��+�d)�K�ޅ�I���>�7��
q����A\�u1���i�g%7�l*?�
��{����SsP/3���c1g&��Y��y�P￾�N��~�&�.d�܆Z��
|�V
)��g��i���}�/�`w{��?��d=!nX������돭�:�����W��lR"�P��L����D\��D,�z��Y�H�\��.�Y�T*(���;͊H�^E�/�1��fJ<���+T��(����`k-/�B1�}�9Ç}u
�|�[���e�A@?h�3��~���V��o>�B��3�cp�uԜ
��RҀ�1���������#��d�(�^�N��Xh�^���X�L�DFV�x5�\P��^��@p��C4#I0�	�p]{r�1,���`
��C�eJp���,Q����	��)����v��(;�x�>>O�澣#��jA��#xW�G�- `�a�n��	�sQ
P�̒�K4�&���<��B@z�H3��%�������u�`x���p�R�h�x�s�jP�/��_���ߠ?����)<WHSf%��ٮ�˷+p�-J�,��G}�l�M�>n2���3�ݸg����b��f���~Z1�O���:��r�#��E<fD%�R�M	�A��ʷ&v�����]T�D����;� HBu�]�@6����VaR=_����*�҃�U�-f�5��C*�9����n���:���U��7�o�}vvv�\��K�?�Mz1�a���%j^� 	3�dV"�M�qfE���e7�>}�V�0�͙��b��/��~7�'Mz�G-�`=��n�$A�Z	�igZ�!�	�B㜬�v\��fR��
x��7a�^���xT�O�&�J�)���l�^��;o����	=�����ft�Z#72��X���|F�����>��؈u҄�vg@C���y�
Ƶ'�"ru��4���k�G��0��2"���W#�uεh�1��۔|2~l�]�.�@0�v�@`�H%H�x�ړ�)Q"xK
"�~bԌ�0S̰"@pli��Akԏ6��?
�´�t"�Y��DF��J3Cu/F0��|��t�x������s�u��lk^��N��Rj��G^\j%b>��W�+�O^Rge�,wbI�Tc��#jW�?_�8I~��Ze|�l�	�Xf\�׺���w�n3[�ha��}�cF2!OCo��P����iIeU�kM����MU}I�QV�����,�PgEk1�m�1h��3�\^�H�Zq'�vk�>̥S�…���ѽ+�p�eP���������-H�,��V�^�I1ǧc(��o�p����<m����N@���)��0W��*���S�\��_�E^�m�[�|N�X�-�8��fS3�y,�'��dRkH�S:�U˙0�B�K�&"+1�`���©���ރmb��&@b����\�Y�z1x�-(���EZ���N�Wnާ�+�ާ/H	^Xc���y�2+#ete���%#[�>V����YsvLL�neN�ωck���8�j`�����ނ��5�+߹���_A`�~�$���(��0ᠵ�M�Àu�j�ܜ`�����
�?�E���6���$(��g��I�f3�w�{�rm<���wH���Li����T�cq;�x�s9��[�٢Sn�V��Fs����1��V��Ek�v�Vox�x�lT6ˌoI�&9M���A}�o~>v�M��A/������Z��_|�	�����s�&<;_�7J�x��4y�{�ۆg2Y���T[���+�:���:�T����~%ځ}�`����Ɇ�SP��7�r�$%_�=Ư�T��Y�j{@[+[�����UՌ��"��4�2,<�D��n�b_�\T�8ٵ�$퀥���M�0�j�7U��!�q���+×#�������%���[x��=f�t4=7,�P�G#l�Y��2�L엑	>i��f�+&=�����^�|�3s�+p��Ex��{��~Nh��l�2�w�E=����2�g�51[
B�q��v�(0`�K����6Kr�"g��f���@y�e�TJBqJ=�BQP�
:��՛
���ݫ���x9�e�nz�zL⢽��+�}�a9�I6^��Qmm�夨�)�u�e��-�wA�g:�6�0e�<i��W�Bz�f�P!l�K
ʌJ�8�-1�mUO0N�B�K���-5�m�z�V�D��R�BcA��2�Yv#�pc4b�3��XԻ�x1�|z�(�x]��IY9ث��m�4e�L7�Y�7���O&�Ob_R1�Je���Y �Q��e
:����ڬձ˽��V��2q�s�%����LjYX���qW�|4���^"���$�~�g�W�4�a��=��/�d�!�x��
˹,���W`-�����c�����w芜��K�V���t"� �/tn��
\=��Z�O�x(�eǓ|�x~�M�c�>,q��:�6z�R��d&��kV�Ұ��3�ǡĠz��Z�en
W�<ħ��7$/�eyB�/�{wK(���,�R�����`p�R�Wױ���}��Fo|\���R�$[��!d*�*CE	��k@��%��-�G�1M2S��u���XH�FX)�tZ0W���)f�U�k^/G���k65u.�"�x@��f�w��Onm�-c}����K�c~7�:~��m�(�z�3���x���P�5%�@סo�Qstr>�Q�97*�q����6E��6�"��q4d��rnT�
~�_j���}#,���8���ߌܚ |y�r�bȎ=��7�Uf�&�FW��p��uך�:
,:S��k�\�D�x���c�~ɔ�8���7c�C�"8��aV��vv���_k{4�s�"�)Of����|	u����yj=���L�q!P_�+�f�n�c����o�/v}x�pq%�V�$|�\�kwZ�~����_�?�.����� � �4s�����w��l�f����8�a[�N�u��qƐsLx��;��z0 ��e$)��o�4m��L�Z�j[�pe*lyJ�05"�F]6�
@U&&� U��tI�5���=#�Q�H�GM0{˛�V�Bf����q1�fW˕*�ֿ����|�X���h�K��U4��U4g��*fN��b5����
m��_���߇���k_��[���~䓟�g/?�f�)��:ٜG��+8���C�f���:�34�m𽓩�L��Q��Ҩ��k�˱y{gP!e<%���fSj�����0�C�7���-ϭ�fc״[��2.�0�nũbI�Y��z���HD����,�
`B\�

���Y���%��`���8��!�Ő�2v#RhlGՁ��Lf�+����q�a��!�L��$Dd���à� ��@V�KK�>��|+�EJ�k�P�R��sbRx�?9LN��c�Q�v�c�i����噍/cN�Z�;���ܪ6��8$sx�P��QSr�?P��l��ν3����Io�
.�Ң�Q	��Yl���w_��~��VN/�I�'���.��߿�t��,D�G?�>w�I�ٯ�;W��!�����Z�)5n�|"
�~K��L`�e\OJ2��q�m����j#�\~b�%1�Whs��k'��n�%���bm��]���[p��I(�p�>��ꐥ��~��b��2�HeEj�:�*.������Ƙ	f65���]�l.�x��Cc&�\J*h?�\֒�[�}�Riu����bX.�3��<M%8Ǚ	.C!����Ke1�NC�E��+Kx�Spju��<	�Lw��Tou��6�^]bv��V�[YƯ�M�A|�/�(�
��QV
v�a>��|���.�w߼�W�އmVL �?�|���M~��u8&N
C�2
��4��ݞq16��tAL��0+z8��al�!W����AЈ1�e��k�W1~cf~w��߀m���t	m�H'�B�fd����X����O�����Vg]w��Ν��Qm�N��A'+1�F�71�B���:�25:�R n��p��~�qS[T�q�����]��"�A��#}�N7R�FV
�\)e;~ƿ�ZL�z-�I<�h�{�"���?O�r�XH�\�tw��(>���N������
�8e��V��1	�*4�AZ�l��˪$��y?�oy]�f�A��}n���O��,�@�"��S6ʗ(I�����s(�Vc�`���m�Iɪ(�80mL������{�	����,PӻT��k�X�S��e|VNaq�6mf3z�em‹���ʯ�[��?�Cf��
�Q�3���pF��7ƫD��E5q�)��ʥ

���2��Hk��U4�q�P�%�����n�W��
x����~���]�?��d�9�qV�� G���5�3���z�:
��kp���ʪ��R1|�9��+�`����Q<�lO66�b��N������s��Mfp�
ƺ3x�9O��
q�q���G
��X(5��9u��BJ�Q��I�!̓���l�k?��h�#�m�mRր�Q�@�_�цa[#��S�ۘ�3ۍ%�'���2�%�A%;�X%U�̌r�rI�*���^,�\&3A2[x?J����	r����u�x��F���K��3il��`�[�e���_<w���2j6�8d�XnԸ�)��6I�����Kt�rQd=��Ա��Bi^�
�Yf^�����5܇Rgi�gW���
�/��tq�RǜDc�h�eﴫZFr���t�䜕�u$��d�K�#��Y	�T��!�v+-Xګ�ٕ%V*����^��R1��c�����K9V���h�(��F�Ν*�[���"pi{�6�sy���2h�Rv��)���`�2&c�.�͕zC
�
=������^\�1���jg2�ĝ@R25
3��O�[���n5I��E����1(f�
�%h��q��50)�Au���J��j)�b�v�uL�#���۰��K/\:��t��D
n�����eH�s��6J���:�“�`yi^y�<}��l;j�>R�M��R@`:l+ed�������-v�tZ�`
�ނ3h��Fz��b�g5�֎�1׷@qU�`H��}ؠ[���Nl�נQ�90��uy���;ceqhc����qd��t���Y`��G�ͥ��T����C�ӹq�FB��]�m$6�ٰ�fW3?y>ű��	d!����̞i�d{s���C\��N�*���0�C����o/^�"�x�]=�^Ja|9_��5:�ǰ�E�K�|8��>�y�A����dY�`��Y�=fY�ץ�zM����g�ږ ~��w�=�[�\g�w̋—�R��D�k'�"Q���I��}eJƚTB����6ɵ���M,+�Z%u��F\�\�~
Sk��e&@��ڒ@�A���U��>>�C��@́�9��{�;���H��_�����O�q�B�fJ]/�9JH��o�J�ň���yV�
P�

��q��}(�S�ڰ8�����ב��jI��wV��s��tP&�o_y_x�Y���/¥�
ʈL`ӣ@��AS����4�Y�<�0�}	�aj���c4_�b�M�%!�3Rm#i��j�K	f�$����~����8�~�{7�lcק�RS�o��P�M��W,L�H=�˔���%��[�@�(��.�5.;
a�lv��;x�t�4v���K�f�`D�eQ������>�~�}	D��n}l�^Hr?{�J3�~2* �b[�)�m���ᔿ�����H$q`�
a������¬�+�O�X��l
�<hЇN�d��Űڬc�Mحv:}Vjy�R�4�t8V_<U(Fuד���ܑ�l���!�I�c���'`u^��6Tv%�`Vp����~򂦞��Z��\���n�߈���O��X�فJg�B]2?$4ˌa�ʼn|� 'I��|��R��g��y����{��C\���C���������g�w��>�s���rq޾�+�S�����vٌO���JUV
����Qnk��B�l�ۡn�-V0���c�)r�e^�L�\�]��`(e�Ua`�a�)��/>��^
�
�!�aӉ�Z��L�$h���?ܯ⇞R�1��f�� )yS�k����ím\[,����n2�*��wJ 9!$��ͫ��O?	x�(����X�?�ax��,��8�y��� ��-� �:�9~��)�3'ZS/�eo-&����Lѝ�����<~[�LΙɁ�Q3����O+g}2��V8Y�{���&ztւ��h�5�G�������ڦ��G���� Ʊ��Nd	�Z�=g`������A"�t=�s��We��UǮ�16]$��m�\���ѠHV�y�%�y	_ܸ?э�sl��[K�3_����M~������/c�e�3iP��K�5�Cˋ��*��9h���,��W��ˮ�����^��Ѝ$
�#�׬R�!�*˨e&K�=l�.o����|e���)ս�da�0��W*��l*4��}m��I�YTu���Mm�J��&̨�t�[}��|M�4P�0�Ms�.J�F�������W�7`gkOA�0�RsX"¥�f$���:��n�9zq�x��__J��Fq��i5�C
>���όrW#o��e�J�	�3��ZfW�j�w~��{{��/�z�*��ÿ�W�]��aI8�wraL��&�'��5���n�*��l����!�N�+��wh�-L�M��#R�M��>����7�ܢ��9f��6��!J�Y邛����R�-c$�%�F������gF��r��XX�AT|�|þ[_�`2
a�x,g#c\#�‡6K�b�d�/��9�fL�q��/���"#�-p��QH�%�y�1�Ԅ�|Q�י��8
P2	��4����q�6�YJ��y!
R7I�� Y���q\�7�p�����"O2��oQ�`���`����3ub�J�\�
z��1����5a�������hd�Xs��/�b��5��׾���������}<�2��K����NQ�����d�X\��C�Y	��t�\�����>ʖ�=�8D��Z(R����6�Qr��O���m��X†R����K�ѡw=7�K���»�^��}��b�4�Hal���8�$�@�����XV6�'i�USY_�FIɚf���aRRb���_eZD��-�6t(�΢I�̎*3�f~�-u1`A��6���F����?r���
h��dO�G��+�U��
y��鼺���L�έ���]��+���ֆ�;���%@�ή-c�^e&��|-)�[���%�Fc�ɩ8M�=
�rG��}�d�CB�{P� d��0Xt���@�MZ�p�ApV _�]i�?��c��#�:�>|,MeO�:�B.�3^8�n+N	��n�23�?��MS΃�<��gֵ&�5s.�"�:��|qi�L����]���	�և�쐞�������i\�N�*]v~k�cy�r
Y�4�s�֦��"a�M�z�Ȩ�P�������7��}�~���X����Qf=���ڧ�ANxq<�O�7����a�����N����?�f��1�x��O�l����{)��x�2�8?�sy�N�WY�~��ƿ9?W�
|�M&%�
�[Bm�Uߐ�E��/�m`84a*�#�NW��	p���t/nR��7U�#e��:`
,x&�
��anMBX鮡	=�$`���lɭ����ſ������I	X��B�(o�bU�ƘBA�P�LS��i���g��qc�|�2�ք�j
�R�`�B˰B�P����6Cs��w�ѿ1�1.{
��+	D�Hᆭ�m���}x�+���|�LZ��^8���VٌטJ�!GO���k��l��J*�|�4�Me_X($s�`^���8.3����7��v�z�1A�zޜ޹u_x�Y�4d��C�%�t3�&�0�Hԑ(��xy���`�<f��L�tUae�+[��'/�`u
ڼ!'�{lB!6i���c� [�A�G�5
���K��֡&|�]�1�$V�X��[}ʈ�uc��hG��͌��	�'�B"ͦ��Xy�����Z�J�Cg��	�i,��1�~�+J�zZ��c�eDGB�i�3��XR����?=V"���۴�(GLьE�E��Q�(�b����J$-���j�i߄W�9C�_�D6�=��v[�;�n޿C�r��F��->���.[׉Փ�P�P�E|��~���g%8V�Û�>e�x1KL���rf$#�
	�g�O��1�}@�w?�Td��P��,��y�m��.��lT��*����A�γ�Z�b�vlDN�	&�RA}J��"�2n
�S��DDA)���dHA��e��t��3S��ց6���^�N�T���a�0�v�7V�x��a� Ea�KA�%���W�6
q�͚�k+��(#'��
��Ɋ����W-ټ�ol�{��Q-���V���!W�I�iɆ�Ei��ɛ�A��'Ng���ţ3�����"�)�C��v5���3_h�QG�Y|7����,�+���
�.��X�	sp��n�hull�/#����0���ةB.�=�R@�|i�t��1�$r&�{?
���}~���	�y��ae�(h��`X�wj�����s�I�e+s����=%�����2.t
f�ve�@a,�6��;ڒl� n\�ě_��7�g{���ee��U�@t�|���g1�oe�����^
���U���A���Ex���$˙!
`���qƢ�b�g�Zb��V��?����f��'���=��=n[�eպǤ����
f����m��'&)eل�J��,����5�U�z�pHg�7���&��25�[&	hM�,����� �+���l�þ&����-���J�Ya�4jz �����cf!]�B��,-�/�V���e�I
)qm );�U`p�F�"y>6�C��"�lxZB��Fy~)�(�j7��Iw5�M���-� ,&��0��V�|�
�_��(Q����7��/����C�ȅ<��k��Sn����y�RiB5�$ȧQ��iӗ��^b����A�H�JU��7�u����;x�����E���|��ڡ���Ach��X�����q���	�%4�.
�������1S����Ì��gqi��fφ�E�ϖ�WFm���
��e�8�Gs����'pX!��%�d��&�A G�#Sߘ�4_
���Z9wZl�m�k�����Xq홐Q‘���ϟDh���n������`�g���g$�l��Pס<���-/��nޡK�[���Jt����Y�	��vJ����6��n�A\�*��V�J2C'Jh/���*�8s�Jn���q�-Zz�i\<}	���4e��iS_|Ks&����,�:3�I^�1���0ROKIJ��x_�+�Zz<8���l:O�lH�=>��m�@項���o��t�
(����AN>�[Hb�M�	y�|:ԁa"*n:4��.�M'�3�0(L�dc�&�`�8�.<q2�$���rX���j%X��K1(��p��2ܾ]EI�ѷ1��jc�є�����H�x;�<zb�Р]bFU�,��{�	s��u��m��J]�F�]����~��Je����u[�� �N��S�Q*�}��_�v�
�s�G�Yw�!}�k/�����s%�f�C2�5�R`��+��Wa�q	�SV��[�3�#��Ci��@�]i�	q�����E��Ɇ�D�i훼��ͳms�&
�ޏ�4r9��:=�R����}�q��4P^�c�?�ܣ����G)�3?���_��1��.K����$� ��GyXt����d��&�����8��Y:Vߌ\i��(�)�Z�,@:����_��o~~���{�k�(��*�W��pe�L?�Y̲���O�mw�z{��$b��-r�Z)�t#0Qƀ���4|Nܨ������<��\�.����L���$�I�T��oS�����k,G�d��1���s
[*���'�Si��jk�+SB������Z�sɱb� �J�
pik�~R�b����/4w���c��Π�c�ن_��߂�w���_���*y����Fc
4SɌ+���H%��L��,���nc�G�g`�=���`��DR����&aL�0���o\��o��Ҽ�5��65u����JH`���Sʦ�^(����H;v�Q�|�~S�ᤔ�-2�0>�Q6n2#��r��.?C�T
��,.Ρw�.37]�c4�Ƥ�卛��%pw󞺧�\?�ir	�e��
�!��h~e@ӭ6��z`�$�g #�o#2����}�r��a:7���s�5M5KZ��f�kX!9s��`}UñLQ&�ڷ
XK��٣Ƭsf#
�]E�!�g�41<����8�<��,$H
:�]�#̆a([y�ϋYsd�k�P6��&.4F����@S����{��u,��A��}e�t؜$�_��/��SW+�I.c
@_Y]�,*"Sz���_�l�zj�"(�A��d�4�-3H������(��e�<o�pk��sx���s���؏J�kO3q�ˤ�����Ui9'�᢯��J���uj��Jk�Դp�~���h���8�c���̠W���zps�+��l��l)����0S
1fC����`��r�!�>_3�HA���Ef���92�*��:Ԁ4�!�Li���q�Q�Za%���kԔ�Z��6�>��B���zP�s�N1�,N*(Ͱ"�b����}��I�cT�U�Zk�n����
<y�
�?��պ� ��8��(����tg�����7^y��p�-�����K���<|�?|Q�޸v>�љ�r�'�LX��!���3�a�<LY��A0*ik8I�>��Lڤ��VK&0�x���zg����$��@�����y�4�!�=�.��v�~��x�i
Ip*�~M�o�@%�`���g]g�p�:J���u�\2Rj)3��h�t�#����)dvb���
`S��6�s�A���ng�8@x�s{ ���{w��ϰ�x.�,�T����|C�sP`�&[�_�J~Lp}�[��[X��g��E�QC,>|��6jp,��$À':o�^��o1qq��6��9lQ����8�mJp:���4�U��g�U�{L��`%9�+
�(~�a�3%� ���4�KhM6/j��4���	5���Y[G77_��j_M�-L$��td�o�*��2h�-17nl�?��A���WPLxR/ܔm@̈́O$I�d:b�J�%�'�7�p���/��qDҨ�
a��%	�a��H9�R�WY[���G����jUna,$�`��j5j�.�_��L��&�F�Zp�^�0δ�6m�N�wV��Ֆ�@�G����Q��އ��X(fh�)�m���_[�ͼ��X�<�"Yf�۽u:Mf�޹���_9���$H�a�����-A|�����ܺ���-�y}��:���5(�Ar�������{�x��
�$j��?u��4�h�Q]���K�KB�qj���*�!V��*jE1 ��:��!�y'������tf��������,o�6i�$��]�}�RI�w�(��ۜf�Y�2G&_cB|�,�x@_��ڜ�ү��*���oS�`N�SNr�
�r���QQrz��7�^J�J�^��.0&T�X��I�>��S��jISO�T�2�qEK�sX}���3KOi����Rs�Cd�Z���xe/Y����7���7�ރˬz���Mi��B�Y�fc�h��xxi�H{�$���[dw��VVb�IİtД��tj}�-80Ϡ��`�KAN&M�M��"���h1�P�r���2+��F[}����j��Z�ϫ&�^w��Uܫ�c��gy�jIH�\^��p��^���O��^����+�S<���y��������q����o��Jh�ق��0�|�{C
���e`��P�z���0��k�S�	^�[{%�엤�un
�R-JL�d���p��8s�������i�����n���&��Q��<O��F�R5
�a��K;����1��
�ydWh}�y��FB;�#�٬ߚJ��&�Ҍl�J��!�w��0���L���YK�.���9PkvOw�^���htm�N9G ��o���]?K�H#��L��G셈����3�-��s�[�?k?~�v������.�i�?���<
4��A�5{�箧�n�64B&�+�v�SNDǛ��X�G{=�چ�g���6�;K�/W�+���߀�o~�E�A/��b��������z?B)�e�ׄo�|�d���vJE�;��2��n�	����w�.C�o��W
�x�R��bLg�e���@X�c~�b����J5��y����o��(�X7��DD���1�	)�5ݤИ�5������*�!p�"F4��\�gr�q^�k	Ԝ��A
�F���	����j��؃������y�Љ������@��Di���h�����,n��
a�����s���Bb��W�w,���m���km\�@���I+��`��KK�=�Jk>�} ��7�7l�Q��K\�(�<Z@t�iZ,�a;�N�-��E�?E"�Ŵ7�Ny|m�5�.�~2�fV�f�N����p�l�<3����$qH�1P�Ɲk(cxl����0"�:�}_�
[̀e��[�yp������	!��>}	V�2���zF��0��B�R��@l���܋3�E��#��*�e\\I�F�X�q�f���H�	�K����BL��x5�z��B��b�����Y��L-3MF/��75��Dͤ�3��3���%�g�Ǝ��<q� Cq%�l"����rP;؁v��g��t:�)��H�-�P���5��/������A��>���L�ٜ�S?L�u⚣�t
�6J	0�u��9�ݗ�D��~=fi5��G���\D�
}܋�<��
���ׯ߁�F⋟7�|R�pRQ���0x=6�V��b2�
��M�YV��/-�o�@�����Va�t���S����[/3�g��ߦv?-Pc�.��V+��H�4�W1�P��&/E��X�M�U���W�
o�o�3����/���T�ʿ�5�R�2����ZBV�{H����1�K�}[����m&��5�V����U�2{z�-�V�Uno����V�u��f�p��)x��
s�3�:s�8޸y_H��2��ʘ�e��ƻv(��K�\���%
���¤D�ۛ57'e٬�=�}Tb'bY&�[c�}跱�h?�Rg�]�C:.�J��W�y��3Ѧ�v���I62��Yי�g�k�L��h3�i��,t�~�.���T��q��im��0��Y�,�1r]	7&�i��c�G}�X[/8
�\ �����_�b��=pM�&ϔ��WQLWڂ�w?��܃��&�=��rb���]L�~$Y�.��_���:�?��ư�ܨwYѹ�k�TV�EU�c�d��X�ު"=��������7��S�,+�>x�g��
&:���2ܮwa�	�s�6n2�{�Ѧ5^�Q,d����q���`(I�=@��!É6�t���;��i�4���W\'
c���C���20�
�M�g�� 1yaC޺v��/�Kz����@�-h0`VO���42��&�4��'Y
\�L�bƗv��'IIK��@6���ٜ���+�)�gBe��e�L�T3鵍9T�W��0�ۈZ���B&�U��hLU�x��.�c�`X�
�+M[�p�wӄ��đ�m�c�fM7wb�?�,k�Z�3�_y�x�"�9���>���s�7-	nliS_�>3�)Ut��6�~x�*-/�b*�f4��!6�2k�f�7o1p�A�5�,$`%��]¶|Qf�X�?i	<bv��q��_��L�y�������}�����`�D���,(t�>¦#��h����YW��ד�x�g?��C�C�e*�����w�K�X5���[���=N��Y�e����}M%�?z�2�$��w�|g�D��*NI)=��=ݠ�:�崟����k��<CR�X����$���[|B)%�P�L�~�(����g�ڬ�<��ѹ�p~�Z�LI�ϩ�`^?��
h�m԰�H�DᣗN�k�H�96�d���+찏�f��$TY�/����`8����5h��8U*ߥ��tX�F�Aۍ
lk��!�f�yMu����i�9�[�ݥx�?�*ƒ�=^oq���+�W�M��5�ĉ9�����6nnnkV�X�$����`*� �p��y��[�!���NOX�$�l�B4�������uX_[�r�I�L��;p�:��y ֨�䒥fʷ�J�� 5��?
v
�ȓz����7[P�5a�Rg���߷��E|��S�⡿�?��	�y�@�\�Sׇ�AA��u&��6��:p�B�G.�,r��	o��3���Λ���3V�p�q¥`ڹS�;
>��v,�x3�7m�<���N��`?�gn�Y�ϐC�Z�>�n�y~Х��ĩ�:0��SiIdwa��`m�E���f�-�ih��}�^����*� f`9��S�ǒ�?�ڡ��g�L�A����a����wbj�?��z�Fw������������.p׼��b����rw��S�|��k�Vd������W�ex
���A���;�.&Y�Lg0΀���w�u�/�ה8�N��) ���lP�^�Q69u�'T �K�MUS��oE^� ��Zb��@(oa<
�kvc�6|�#��*1�߽�����0�Ւ�6�q%�_
�"�տ�W�_���	��R'�T@�-� �%@[n���@�	�������ȳJЛ]q)+1Ce�͜�k���=��`��L���cӨ�]�Hp߶��\�4���arQ;҈՛u�QךuΡs}���ƽ2�a��fa	��V,-��:�~�,e3����l#��5�k�ЅF��=�x��]W�0f@!�j�,�A�0��u�WIۖ��q4�>p�X��VXy�1��,#�\�XI�.)�����c�K)>"�������IP��c�5���|b�%��}Q��a�8i泩�.m�V��qcd�dO��3��7�nVp9"����;_d�ഀV5�j�-����3",���S��6�/%�+��_|d��.�>�r0��n߆B>��ڢVؒU�k
����	:��E�C��l:����[�T,hPU4#�+�����4[�O�����KE^����d:��(-�Ob��*���K�L{8P�/��1�W@~6y�{58s,'�,pk��ND ��.����b%j������ܻtl�^�$�@J�x3���>n��Q��d�.�5� 4�q�L�:�*�?�4�U��+73�]���IӇ�-��-�\i��a�ݗү�`vy��O�d��7�/��k"�}ź&˻&�Y����I5L��n��@�'ʨZ=Xq�t2�+��Pc�ҫo�����h?�Y1�M\����-
��h4�p��}�+W$ǯ��L���.���3�$����o��"��f{���7
J����%��pۑH������2<Ɯ����`����&����h�� �Z�k�/�SN�ᗯn1^���G�+lC�<�bq"�˺��|])����5f��ɽh{z�k�3�3����m��h��W���V7�?����5��K��yUP<� !�IL���pԬ�3�ȗ֡5�`s�F����W�/t"�/kK	�.�����n��$^�e�5���6YN��p2�+�ګ�.�0����(�_���u�oV�chi������jn}
���W0Ը���e,�$[�`9�:o<�����'��A��8}�e�k,�q� ����0b&�`q�V I�L�,�CFE���;�����l���(4�AQL�M�&~�S���(R�������)����{����E#qf_�R_�",,,Ч����8	�D,?V�P�\�i;%/��`,PO��_\%rb�2��u��l.����;���_00W`���Pk_1AqlZ�MU|v�}aNԝ@�}1�ޒ
n4�ir����w>���u�"����8:��'����0���-�,0ݷٵ<Vpd,2<������2[ǻ����Y�{$�s��6[~��s���W5Ʀ�4�/m�6*������4�� :�S���QJ��T��w[M��� o�O?ǟ�{��b����ѹ'Z��pG4���y�u��)�Ϛi0,T<6͡t�X���&�ʳ�	v��i��o81n�K��Z�<S���f\+���{8a��折�����X�q��(�Ċ-+�-x�}z��:���W*A�-=L�"��)-���Q�ݶf(f��!C�����H�h�-���v�Bl�<��[�����[�>����V"�aœ��/|��T���ڛc�U��`~$S���_7����+0�%�0h�\�R���Q�c���h7R����3!�[��SZnp��Lf��!&�Y>�j����L����x�����&�T卣ۭ���V�I�D�|m��e)�&@�B��K�u��)|+dcl��3�[�����1
fG����_:��ԢS�̾�iA
���47O��v�K��7_-[JP������~f��f.��z����u#A�p�A����8�.����{[ m
za|�Z�91U�$�m4�À*�^_0J��0���4t��v���h���u�;0�x��a�+P��t�rDŽ�hX>���d�m_���p�'�1�!�9
h���~�~�#�#�
l��i��}m�� �.�����do�Di�-
)��f�1�h�lN�
���6��_
!U��eO�ms�X�Vo���}�^����i8��±�9|����l��V�NG���~��k"�L��24x�9�����;le)���Ô�.�`�٤w3��l��S�r�a�[���M��,�_��_k5�Tv�m�˺�7�R�K��!����Y<݌�7�_�=`�����ꫪ��*�sJ𒩼3Tp��Mݍɘ7〬>��+���]���-[�i<�-@�`
X�	`�H۞�2���B�\���
���w°�K�͋T�m���<.��k.Z�J��J��oU��|W��y�QF�ە�FM��,d��"�l��7�4@kh�pZ���u�h+�����ժU��Շg�y.0ڶ�H���	n?d:���������ln�c���8�EG�˾7cjL��]S+�Y�.�3����I��k��]�`<Zg-��=*�!�(�����+ej��ZH�JCqn�œ0,�g�s��L�FbI�fӒK�w�ڦI�łM��L>��e�Q���v;�,�
^T3sryܻ�6�[�0:��T�@�gh0�H圅��:������t��!X��f@�T�r�
&yy�!	8Z$#�I׫�&�N�)K�v7K��ҥ�
>���n��d=��q:�d��,!<	h������sǙA�|����6j�`T/%��V�N���Bgŭ���e&P�<��G"�#F��T�{̺v�
$���e_�2�ۀ�μ8�š�+�1,1�a�R-�gДd��� ̃�ck���&��OÙ��91��@�u}@6`�
I���&zE��&�<U�3IV�2l�%X�mc�ߠ
�a���t.��]�{�~�1�B���R��'��ݓ4u}̥S��T��<�4A�-}�|"72�א�
�$.�I�e;P����M�Pp_����+߯;d��O������/�O��	r��1[�fR��3�}��;(�Z�iD|�y2�˕�~!���d�-��a�TQ�B�#N��
��oU�Y9��<�H#��&6"@1֒G��FJ��@$=�ץ����q��40n�'�����j�:i:`�>ν�q�t?�)��|��X��o4�q�c�l8��Ncqi$�`Ba�)��ڧf�N�Y���c���)����Q�Ϻߴ��(�B������
]6
�cV��^���(��k0����\LŸ"b�	�)#�@��h�|��u[�}�sp���,?J8�����4~����5�y(‰L_N�蟴+x�����Bt�e�T:};	����n�wLx4�%���x�o�M�K�*���'�7��qN�Vn����a�g3E���c��M���	|�a	.�E�M|�
�+�s|�F��z	��^�mJ�J�@�$���
@YZϸ��,�ȑ|8~3�q��pY��csXJ�tv"�$`�
F�M�0�d��W�~�3��/~Ŕ�A&f'nW���1�X�q��Դ9"E�&X�˵��0����4���c�,��F�Hl��.�RK�~)�0T����ys�)Wa�EQ*�hʮH�y�pVW^�xv�kF��Pm�&3��`!@0���y�Llj�C��q��4�B�H�"L���Ȑ$����o��8���P-W�ի���
���(���O��,�t<���ʛ����8�^$��dѤr�K}u�ޘuJ�b�!Mq�J�cI�a<�o�Yf��q�\R�2�m@���/�=Al�F�z�Y4?Ǡ�++�7�fij+h6q�+�@��}S�ʃ@6P��Z�k '�@e�ѣ~�Q4,�c��J0�7�ڏCH�FB-|��h�D[Hij��QPryr�À�т9�ݙ�,1�٩{���_�Ϋ�E�8dA��E�b5�����	b%���'96=�4_���5�cG))�l�&ڗbz"*P:��H^�Dqo��P�/�������ɹ��6x�t:�;����/P�C���ۻ��4�V�O�?�����
�]�J1'���)����=-�<�I��4+�)-�P�6I�c��A�eH�Ϭ.%�Ė��I|��������@����3��F�|�=�Wm�٬�N:&A���v��@Q�H��q1M���o�V!�滨����h��>_3K��;�3��//`1����4g�dRᶡ�N,f�To6ė�$nfmI�����E����9%b{�ea<��
�ш��o����`�?2�E�jPo4�y�#��μpҽ�ۥ�
�����y{��qhNO����_h�)|t�PSĆ�X��3��_���$3���c��ϟtQ���>;;�-aP��aЦ�����p���Q�vr,�Q�
?����Ǡ]��
�F����&3��[4|:GU��k[�-���n��o��C-2e�l- �F11��I
�f�蛟��o܂��%���ե8���/�<�3�|�H4�����">�d�[l��r�ݼ��d��i�Z���,�F�S	�7qx��;,C_c�,����TLe�v7�~�Z����uzX��Gq|'��-&
�@��a��R�l	���_`�<q��� �r�Ɉ�
�nT\tT���Ym��&[�=���c-(@�7V@��H�F�}�&%
�e@�-�n@�\�I�Z�R��h��/}�w_+�Du�H#���b��S!_`SvA�R�[F�M_$�|�̡D�zR
7C�̌��|��~"%j}&h����p�v"I�xƇ��FK�0��R�M�M;U���[�
�K`x}Oӌ)p�sE	h��6x�
ɉ뉷��M.���7�>px	��B0�p�М!�q⻰�8&C�>���t0�`)�H�dBǦ�mQ��B��
���ꔈE���h�|FqcL��$�)LIS$��n�BI������B�o�^������<��xg{>x�4�~�2�<X_,���Nb�Y�<��ݭ����칓�`3�ʬ�����꓆��6��@+H��|6c�!L�h����rD���h)�1���1��Մ}�RU�[�|3����7�
r
k
f>��L�w�|�(���?(f4��W2�%����޸Kw�1��.9W�4�����z��e���M6��4H�T�!��I0�#)M�
�t@	V8�*cf�ϊ���� q�i�<�xѐ2����������g�	B�#P�{c'΂�z
l��=��9I�,"�M�'��Xj�C�KP2%!���6r�d�K �����@���X�.�9���SPL��6��aS�bn�'ؒ Y?�a%ނ�8vx�٪MD�g��j@���T,�Fr���ʱ��I�g�r�\9�P���&a.�C��>��������H&q.���8%�l�UisgW�O\��i����T���7w�$���ck$d�r�J*Dž��q��L�aIY�b!��Zk򞠬��r���Na���.�E�� Y~tV,cOps�,:	M1�#�z�R�5���3��`�@����D���C�7��(C�Q�vj�4�P�
!H�5�f��'���t��D�ag��C���ٌ�4P<y�Ǚ/����'����_
�xjmFW
�@KZ5 AB�_&1WD�EIZ�{�L?�E֐i�P�/àE����q�V��=��%Ƚ�%��Z~t���lm*,��wYQ�&~|��<��߉��8_���dC˱����o%���^�X��!�Ч�Z]�[��Z����S�8m�D�����
�Q�k&����{q�!�C���[���6�-��_ګ����\�X�+,��D4�-V�/'�p���W�,�J@I�,	�Nn��X��j�Dӗ��	�Wƹ!H�	��#%%hŏV�-�F���*�O:N<��$�j�[�=آ_���ă��R�L�׈%�J%1���/�}����M&���i�j�O�(36q'!�If�lm�MfE�)d�h�S@&�m�R�I��P��}4)�� �0C/	e�g*�@�a��%3�(��n�"RY�Mn��L�@W�@��0;�Me��"w��8��F䂩���Gi�N�C"3T4�n(����
{$ITIy$�,U[=�Tm4�R*�`�c3�;��LV���Jn�j��L++�c��j<~o[��IT�,�l��8k�vESɤM@�h�݄���oށ�\:ma�:]L���,@��s�_�8w
�)<Cb�>��0H
�����A�S�s_[!�n�:�&���$'�$Ҧp����Վ@���<�H}pN��Cf�	����xT߸�D#$���Ȯu���[�6��ټ�p��/����:kA.���R
_���$�H��N�5m)l]g�D��/:�t%o�t�@e���⛩-I����}�fmͨl�9�|e-�U�2�C�aD�+7(`���/��7v��DLE�����S������1��/&�s5nd���B�=h3��
C�G���
�����܅t"�W����^���n���z��@M!<ɀ�T����K&�ߣ��S��'f5���+Yif��,��ދ�U1Os��~B�jS��e<{�鱱���/��.YH���ra�y���ξVM�L&�Rv���m�U�t�Ւː�0����aS�H6�\!MR��Vok�q���K�ݐ-7c0�UyT�i"Ba_K=Գ���EL\�����]�5O�o Va��P�*~�4��.�����p��5Csmi��`r[~�0�
��v�0�}�(�b�@�,���wN��Νٔ���I3��)���e�6�K̈^��3&�]��جN�
�*��B�*M�X�a`�d"
c}�]
.�x|�
f�[��h��:��#Q�I!z�K��7�
/��tpz.�����.%�>�L�ּ������l����J�
��
v��dP��@�V����������1��V���|�V������9d��1�
Zx��҃z��~6�M�����߆w�@��|bK�s�\"���w+x�-D8{��k��QM�%��,+OȈ	�b���J]�T�O�k]ô:��t^D2rmE���nec_S�s���Uͭ�i3���r���[��׮^�k%��Ve*��\6�-�I�����/+����I���e��XZ��g��'��e�-fRb���КL�D"��RZ�ֵ����p�g��w�M��9C�ڄ��7y���km~h_J�b�x�L`��Ae�,�8%e""�y��M7fOk��,te{C�k���~
�vvRZ6����k�kX�N����?�NKp��CLr=��G��D	�B�X��-���J��\��OO�3���S\�l�P��
N��z��$XK�Fӳ
��BϰdN=����Aw~�����~T��Ro���8?ϠD��5f����P�(O=6�^�/���]Ǝ����JytG8��HW����p���m�k���7�ؔ<���h\r툌�[�����gQ/��P2;*Y$���%�>z�c���tV�\�~��D
�f�m��0�"<l
�#7��1i��H�?�h��	0�~��1���'���rl����O��,�������A�[�.H#�W�Y�:�(L�<�n�8eG�Δf�����k?�u���+��ο�:���q
�(����Do=
����9؍]y�kl��ё�l���
��ฉ\���a��އM�ap9	0�9�
�a�~�GJo��i��i�rԇ?O��՗S�K����a6�D��D���=qf�q̄l�4QH�-T�}��[�Ҳ�JF@y�
H�Ɛ�t�hJ�8(��M��2&�xS�P(��,��!�آ)їO�w�j����((�Հ\_�H0#%
���L�ٷ�?�?�e���b��i�7� �������D`��,d`�X��7#C��{�>&�����[dg~fuo�[����{���k��]���O0�p�{�����1���L2�l�5?_-�_9�J{�d�I�˃6}���
q?� 3��e|�+�2,������D��
���PՌ�Q����fH5.a?�B0sU�iP�9&��|�4�����%@����2/}F�-f*^z���S�Zep�[@�Y�$���l��~L}P�S2UR��O��,t�䧬P¤�a������z�י,A�-��6��� �)�Iv��OgO���3k��.����8_(�~%�����F/0�jy\�_�S�Jë�)�
�+����v0$���2��^(�u�Ws�5Eȏ]Gll ��n͡��T�!�=�9�n�
�NӬDxl*��o��E�d�A�<,��kk��?ؠz��Y�$��D�x�R �t���q�RQ-���Ƈ��(�����$�0:"Rtיuͽ�>h�|��{
�������a���G��\����΃�ءÒ
"F'���![����v��u�9p�%����R����h��H�Yx���Ƽ>�P��?@��_�,��1�&T��i��^�'"�n�7s�\��xL�ɑ��ø(������qڦ5�m��o!��Lٌ�څ������0*!�@�;z��םI�1`�8���H��'�w�NS�?%F4��:2~�0P�q0z$�<��l�0��4}.��(¡s&��u�IPc�;� �:�l�$�9a���3�O��������w	RC��c�M��p{�ך�2�=S�Za~�<ٗ�95��x����Q�?�ܙ%���o^�
��>��-�UTrwVJ��l��06��Qs���ۈٙPk���3�V�!p���
A�C���َN^�ȬFZ���/L��@X�(S9�&��;��-�>|�=؃Ot=�I:�a;c�խ�F�/��x=��4c�[�/b��18}��p�q^�]��f�3|�7�?���~bn	��t�5ޓ�ʖ��,-ƒJ#Q,{��rg�j�նO�nΖ�|zЂ�>hw�K���?a&7���͸D�9�!5��2v���D2�5�#j'�
:RqL�Kfa�?4�L:j��7b�4C��t����P��0���5�}�Z	h�������B�MdZQ”0T��D"	i��5��W}-�*�
S �Ӡ�Act)��Z��֢o��2����\f��
A�C��äa�J���3jz1I�ŏ�n7Ȋ�?��TzP��^�:\���O�}��?�jR�\�4�\)�&��v�YK�!����Me4��L�V�zo8<ދ�{����M\���4|@���F��lrG͉r񏭷�:�����uH,�1�gfvi�ߥ^9�U�I���|�G�vVh�/���Ft9VR��EAr�-�4)rCf����&/=˦���b���EM)�Z�SvZRV3�]���#��D�=�H1��T�Ƈ76z��ӳ�A򥇇vYyy�+�>6W�`Ϣr�b� �`�F9�B�[���aU�)T�
tKUX�`ޏ���n�ÿ�#�{��4F���}�/s����d_=�أ����k�Z���������Y���g�=n��]_���Zz`ȇ5j'r�b���>�a�	3���p­�0y�iL�$���aJD3�e��47����_=�7�����ۿ͠��db�e`�q�l�0Ȍ͖$T�����Y�������a�.Nrk6�����/&��MNH�]ȆS~h�*�;PO�a/
]!b��E�y?�I���\dBj����R�~���k�����Fl����ُC~�������5����5�p��f��ڬ�>o�u���a���T݂
C��z���
U)q����)���o�1 ����Ƹ���
:�:��I$=�<���:c�.t���烖X�=��,*�dc
����j�������V�����:l�6�̐[i�Nb����]��L�_M�b���N_z�e�y�FK�F��䙔�U��E��\K��;������D�v�_����@+�ŒK�^��g��'N|��q��BgP�gib�'A<5��i�t�:��u\]=��` {g�M���cHDW�c��
��&�-�M�'�D��FC+���a|��3��8����5���	����?�t4c�_S��B$~�N�ŀ��,+
iQHp�<���Lk��0�#n(�<$�mH��_��&�0����T��GF��dF�6��wdHe��v��>&_��z4�}�'j
�h���6�LJZ���Ƣri؁%���#9zyl1�s���`�B~�Ў�6���(�f�S]���^�}!W�@���j/��A(`�ȥø���ѸVI��a��Pk�"3�)��/0��y�3�Ǵ�G�ߣ6��6���������\�Q��֬Mmֵշ�zՇ�Dž�~���?�k��v�Y���޳�5�
1��@)L��0��0�v��{B�3�N�x�(�����8;�A�
a�'28p:
��� �;�>��=�����O�@N��^�Y �������P�?�#ۑ8�E�T������UQ}M���)��ͺ���߬6Ab�u�7����n��p�ק�?�K��h��^��|���j����4��C��鷣=d�8�`|t���/�K��<3\{ ��/��$|���5[h��׻Uĥl�'�3�a���P��l��9��Le�$�������bQ�>t�Z)}Z�Q�R��.���
ҽjLpw�	y�2MHQTz��$xJ��^�	�I|J�3�Lh�/Pv)�i���J��?���&'��N$���WM��@��{��_~	�H�1	��D��L��1M�hT���� �S�݄��O��ޮ��K_�hQDJ�2��n���w>C����`�r ժ�
J�����8I�u9�f���+�������7p�J��Q�{1�m��y6JZ)�D#e�U�5TL���~�e҇Z�����<}	p�#�ى����G�3�&r�W%��ha3�ۖ0|E8��5�|���7�(OVV@("Y|I��PL�v1h3�@��o23:>�W2���TO"5��شa�\@Ld �c>�Du�A󹲡d��I���t�%S�>x�����Ys<1lQ�%me�d��J���C�<~s�.�}�3)����+�J��z���wE�)z�dƈ�Ǩ,;����t5Պ�'}��~����0n
�"��ӗ`�p|C?�F/���mV��`hX�{
��<[�AEk���#Z!��1J�7�T;���	oݺ����'�Z�|.��mXY;M;�`wg/=��3�x��*�/�B�Qb$
���f��>��Y��&�kl�w���B��L�y��l
�.6�����*���#J�o��eL�w��)Ȧ�Tk5��r)g�*h�B�8��8�M��g�o�넿��Z��<xx���@&��S&*pgo�W���a�Y��s󫰳s�wK��U�dz���.J>�f�gN���[ p�̼S�x�m�^�xܹpx�u�q�:an�>i�ǐK��d
pu�Y��! �*j�A]��`V[�w��c='ۏ85ݖ};V�P{&�)|>N�����q(��=��E�f�f�i2r�}_+�tO��dl�i1W@hJE1N`�'a�H���)D�.A�=$fxZ�̳�%N4H�^���MO=*�A��Q����I��0
g�x�<��{<<����z�Q��z&
���S�p��܎��=�1C�db�Ų .�����0Plx��{L2^�†8g��:�֖������EA�*ƹ_2ܰ�q/FWU�:[���v���b"PvV�QKlI�+�?eeΫw����G=�_��8u�G�/d]�/	�5�V\M��QxfQK`�l��a�M�I��K/&��d�
Z�n)��i���7���o�����(u֥e�~QebŇUv�3�‘�w�)-+�j$G����t-��I��Q���?��E~�>��9��<A��di����Ye������9(斡�چ?���|�p��@�q�Ue�@
q�>or5Ë��j��f�T�JX�U��5���cA�MK�c�d�|0�\�]�1������&��i#�BF2��$р�1���בc*(�-����� �dP>_VT�dщeV��.&�fx��?,O���8�Ǒ�*
�r�8���d����5�7j�Yz��%��B.��C���|p�sy�
��>dx�rZ�-�����$>y�,���j��������;F�w�K7iE��� &U�v�����+�	0r�h�h�iD���&E���\B����i�c
�]�%khn �"�slAY*bo�.*mht��@xN�~�߭,��{7�`g��%�R�׌��T��D�%���_�X,p��f��bis��7zI\Z��Փ�'xMcBŸ�=N�0�<ܸ'������O���`k�&DiX�_�t��׷�n��%��yZX<���>\�~b�,��3�m5Z�^8Q����M��^G��g�u��1��.���]��62��]AJ�q>��o�r2�>+�y6���}K'4�������+_�~$I^<�Ln�߅S�NC��=�`1�ѭ���y|��'�Qm��G�i���L^c�9�&��:�:#�*����9��P��u��^���R
��]谏l�o |/
�1�3��Ϯ�a>
�lF��v!���'��u�ß�-���J{����m!)�t��PTW;�[�f״��o�ض��	�<���F0d&�	��w����7��dV��`�(��G����W2�r��_��
��
~��D
lD�d�|�I�w�!��+0H��D�;۰�IO�U��dFG��f��"�MnG]�**�"��P���:��CW&]��M&�L��������H*X5�Yj	D� UZ�,H=����b�����M��j�Ycs�����Q
�Ӹ�&yQ��5�B�kw4�toT�kK�C)b��ɝJ6u�L�V�TNmI���\o�+���i�bʲ����{������*�1����`[|y#6��PpR\�ƢCt:M�i��\�i�������ҏ�4��.BBj����T>�PР6��{uhn�×���p�_�.���_���R"��X�
�V���}�00�b+lZO@k�e��A?�t��<�%���r����ׄ8^a~n���f�,;g�YHh�p;$���g}����<)$PR�VL��j��cە��̞��f�I��4���C�ϯ1���F�gH+,<�E�b:��x��4]�3�皺���Si�`L$m3�#y�N���
�e����r�RbJ��E���fs�<����mfXa9�$`*�Q_� td�ᣗ��v���w�p�Vc�/!�JE�����6U�-^tL����w�I�-[:��@��rv�e1�>����!�#�%X
���d%��%�L��v�Ž݆-�\�(���#_���K���칳����U���u]c�)�M��?�Ih4��`Mgi�ý������s�Y{�0�u��l��F�q��3�;n��`����
�om����i���0z�m��Ԅ(�'N_�Ze[�0�`Vc���'�<A1?�(������O�RB|��͝m<}�,I��D,%!#R��s�7�s�R'��-�a���K�?�̖,;׊��mzw���]WUw��ju����%5��CHB�f>�>�������ǀ���Z4r-�w���oݺu�M�y���g��wĉyN�-!��V�'bǎm��/����h���j����G$�-N�l�bGA:Nz�����w����1g.Ud�a46+��ˏe8u���XU�{HB�((1[������j�Ӂ8��>;^�ȳ��!���}N̪��\#n�}&�˄��?��#�X�|P�D}���̬bڤ8'�1@[L��~Ϊt���AK�W�}�6�$��>whGI�@b/&u�f�HI���f�"���N÷�>|v.��嬪�,����ho������$��~
~�ׂվ�>���߽L���J�R�:��'f��T�+��0�t�JY��v�[�$ӌlF@�)��l�i�E��6֗��l�L��
a�"��@sL6��[-28� �C����9!�:μ�'fE�s!�aD���5����6ˉ�e�t�LVYzv�!�²\I����g�j������
�x��w����
,��miYeì0��~��+t��|����,~���͂��Բ-8���3'�8��_���ck�&p�q/UV��Y���{
����:��z���vki��v�e�f$^i*�ж=,ʰqw������S��^�����tM��Ry�,.í�=b/f��Ջ4�l�
�0�0��K�Z:\`�/+��ľ+��|a^�����K�8�l�����C�q���X%��QBe��‰i&�-�l��	�P�r��v�"��ZO���,���s��[9�	���Z��w��V�-h�U���Lj��v�����-e����2{��E苤K�����똃>��J�iR��nϫ�/߂}w�=^�=�/@�pT	6!m�l��A�[�x������z]��;ah�*ަ!�n���
v��S�]�8�EÑMTĖ]�覣M��.���41��y4T$���먍"����őߦ�e�V�\�	�YYX��'?�^@�Q��T��o�J����������=�<	��rN��'_ʅ�����~S˚T�Î���5��?�	'��VN�������{f� ���/F��וg`�qX�GG*���/�?�m�/��5�_?#�ȹqB���:0��`��B��c���ga�K�L��ϊ���7�����}p�<��������&�p�8�aG'��36c#W|wD%N��1�I�>���='
Ǔ��[�3����g�0%,/��
T��!��;i�#b	�A
>�K��3I���RK)���ݦ=<�-q3��[$�^�T�8ޗ�}_:	��u��2��u�������}�p\��Q�ޢw[�S��5�{'U��Q��}ʤ��Ŷ�.a:ҩ���.�[ �g����#rIǠ�Sym:��>�u�p��A������	���^4:Zթ���Fq�-ו��D��8K��Y�'[��܁0y��<�TP.�����@ǂ��n���FC�x����I0`��as<V�;�a�X��
���%E�V���m?8��V��O��{r�&<�V���1\9q*_�W��
��V`�I�pU��Z��๥�5�	��a�6'ן���"V�C]�)W�1I�L���?~~n����J6v��GO=�Μ�Gm��!5�j4{B���0wbZ=��S�H90f2�[�㿏=�Ή<~~�"�Wg��W�T%�E�T٩G����T�R�2I��[�N/QYI�IJ��<p-��i�d�-�,���=l��t�+�du=X�rz���~�XVR���	����b}�b��[$ߑZ���ԝ[���*�,�s�xbi��$y���J����4B��"|��m��X�cU�M���?h��A�D뷌��AKjxB~�����nkb6��I
��&��"uHv$a�?g�"��M"��Ŋ�|D�u��L*K#v
�G����qǽ��x�c��A�4�hT���>C�+�m����u���@�f�I�2I��1ϻ����
`�=�@���1�r����؀]
>�1�F���\Ī	���iP^���D�w�)~�5�8,�7�B�d�78���`�Ox.���t)~O�$�Q;�sK��3���Z�q ��'$�eeI�ı�&���T�
Ŷ�	�MՙDx��`�ȗ���Q҉�>Fxg>�鞯\�U��>����>m��<���ه�y\pRX$u���O��m�w,ѕR)(�Hjտ8O�Kp�Ǝ��L��D�ʐ�k�&e+C�Ǖ!��X�NA�`m�m{��|���\�=��/�}�&�u�S��oy�ɠ��=R���4��<��b���;&p�mQ�3��;f@�K��E���*�8�Y���:��{N;8��ۊ��v��/6ۻp���I�יUM�%AA2�!�4��55A�tى�T`��\.���$s`��"��6����3Y��N�Ln�T���0�i�<���r�'1w�D�{����i�
�T��9غ{��
�%��S���8E�6�N����[�b_���
[�{�޸J�p��I�ڕ��;5']��rS���0��6
�Bj��ϝ��Q<��M*z�LD
�t�-��T�Y�ŭ�����pK�O�N �X��,#��=I�&��R�d�9�߱��Ź�,_������$dx��qx2N\@��ɈG'�,��H�@j�H ��h4Wn_T5����I��h`�0�NAvjق8t�wK&�%���\N���rZ-��g��&�it�ey*M�7��4�-���� ��ijm����(�7mj�e[�c�Yє������7R:Xʲ��2�Zb����x���{`���M`܂}��%6��*U�4�/q�u�m4��g�歯�e\Q��]�ٻ��*�iM�q���-%P�Y'�`���&O�ߣ��Y�,��vޕ�{�	%I�p@q<0&��	Nݮ�
��t�I}.i�aq��ȥzْ�P�#pp��1��Dz(�_P�M�ط��Ѱ�-��0ph�%��i[�J��ԚZ'���0*c������
T1��Q��T�ZB��Lq; Ao$�:��*���ANݹ��&~�O���`n�F���TI)m���i�����GeڷZ�B���4���w��&��|h�u*�8�xx��5� �{�
T�o���kP<D���w֒b�dA�ld�:�����x�t���������
�wu�i�aN�^��=���8��ÎQ����Ze�N��9��j�Nu�ITڕWvZ�?�%�W4�ؠx�u������*M7?�%�Yb0�-e��cS`M'��f�vi?�.�T9�~��ş�U�:�pη��:\Hr�T�l~�U�]3�yg-Ul��2A�\�Gb64���%^�l��:tA��Y0��I8/O�`�S��r^iTfT�	�<_%e��ӠG����đ|��M8èh��{��6�s���Ñ�3���t0�EO�J� ����SI�J�(�9g�*��rv&�y��=aiy1�����ju��_�j�����X,@��F+�a�r��K�xi�6g ,	�����D��,@beBKi����{5����<�D�&������i����l���mc�WQn�h��]����_a�����E8u|r3p��:t�l���ͩ*V�v�L��7a��P&����귺x��Ë���ޝI������:~b
�֪�N[���a�_�'�hy� �j¤1+�(�c�l��a�����_9��!_�[��z=�6�Q��kvv�a�
6�M&�C�IFJV��@�j�Q���I�d�"�.�n�lӎyv!��X�Y6�րX�X�
7å�ͶŜM�2�c�[��	ȑX-�)���1l1;l/?�Fb�&������ׯO��u��:Yj�@��%iY��q��`'6hœ�*��e�_��m��1��A��[*�b��)#���ii��͕��>j{rV�'%p�3Nb��&c�o��
H˰E�&I%��b�U'0���KrH4���Sg�ko]����ԝ�}Z�|<s�!�u���Y챚ͳ+��Q�=�]8s�ܸu��v,� G gfzN�߾��.�4��R)��:�#-�$H���;��j*��� ����䤹q�76n�ڬR/+�bӀm�!K�
4h�H���q�|�ٶ��Z��'�NCuoSu�>S��@����M���Ν8
o]�E��.�3Y�.�-��7/c�<��&uc
H8W��>$���%�N!i��G�;�(��F,����=6�r�ڨI��9�pk��	z�w��4��uy���@�I��N������ƆX����&��W�n���)86���zO�z�R^�0
��'��7_�Փg`��5ڑ
�PH�FDښv��f
51�N/<��#��&�N����ct�(�aqT>.c�V��x��iA�S�|�F6����o:�2x�ۢ��oP1����ǁ�(�5u���s�y4��Y���!t63�:���#��P|��ׯ��x�o�<��8�m�Kց��VCL��H��Y���(�r��Z���K�}v�!Qj�BD�q�Żķ�/��:�n��J��r�k9��Z�;��h��Re(ϥ�7��n���]�L�t��á�Xrt"��zF��c&"
��o�Ӵ�4�|%�ǯ":�n;���������E4;(n�T��W1N�wKQ-œl��0_Ln�j�[��e�HL �1FM}����@�;6QL��ݫ-�f�#
�A��J�d2�n�J�#�#ۮ�:��"먄n��ɓ��z�!������Qw��sR�b-Nc+�����k���a��r�X�Nd�U�_��z<s�.�|��CT��ڻ���<�F�s�T���	��y�%Z���ң;�:�J�/���z��U<�T�\nZ���ML������ܒئܾxsK���/�7����,�Q�C�Y��\�8z��U�zw�=h�$���l�Ca���NN��I���и��0It=d�M�`C�f57̂�W�'�p�4�6�l��y,6�5�T6�<W�.������I�]tS�T�g ��oU���u!]pD �k�S�C�f%|灷����Ԛ��o��,<�D�q�g;%����&<�B�W�DQ��U�9�<��'i�<l�s���ZU�lP�6Ҕ���#�3��c�PE�!��]
7��*SV4\����H���`f�
!�$�1٠�|\������knh�V �fvT&?I����I���Y�(�x��i�)�c�1J'96tN�����5I��Y�X��l~IB�-/����tn��O-iHJ3D�!�T�&�2Gc��Xx��{�<^����^�X��c�]��%���v��VԤY� �2_.B��P�B���_Z��� MD	
�4hm�u,EJ*R�֧ׅba�4Dm�^�*:���"	��5��^٠u/��3���a�TR�f��,�u.LAA9�:�E*��B.��8�9;��g�ĒԈ���Y���ci�ʒh�l��j�t
W	,�M,�8Q		&�+6ؤK6 �ΰF�3�ǘ�MQ�g�Xv��nN��
lSp���5He�jq�x;�2� %��I�(����!G�E_� ���a�4F&�t��(��q㬥�r��ݻ�?���c?�c�k��k[$�����|�~/<��3���տ�W_}��2�������g?�Y(
���bm#~�_P�5)�����?�C??�S?��y��������G�G������_�����4��x��	u��-����*���~�O�V�z׻�雤,�l������r�~�ȏ������_��
����	�>��O�>������׾�5�6𩧞R�o���G��#X�~q�6�?��֨HYp��Ɵ=�h�yR�*��`��'�J��h��.$�"��Z�JZf�^�Ob0��d���^��F��9����^*��rq./�a�m�E��T�����FM��;D�癐�9�aks[�,�T�"iW}Z_�!Bu'"�M0{�J"GHQ�;�$�+۴��8I����c�
��}_\���8�3;�3'�r9�_�V}@o���1с��qr#�&�@�L�##(���P�8���D
n��Ё�X_
U�<HY�&hY�b�*��e��B[uz���ٛ�IPc�:@���v���ollwK��t���P8�ܸyCp-��Ѵ���&H��j+fg4����~��*�;7�m����Y��l�}zZ�a{�w��ƕ7 ?uL
I��^��?�0�y�������%�7�/��
���AWf�Я^���i���V��6rj�eZx>�gpP�U)�-�����S���ٲ�r6��B)��LR{M�0�
#�(d�E�x�l5�ml���gJ�J�Cx�L'�.	��gYq����h�K��%�!KL<�P�,Bαp}�ŲJI=K����3��ju��� }�CR����ب���&5��mn,9L�hD�Y���iD]����fQevA��,�X� @�e�6�����.���ƗdxF��X�X��|F�������
A譈)�V��#&f=�h�D��C��B�#
@F�5���Q ���m>_��K����dҹ�{�m�̓�O�7%y�ti.l�L&���vH2K�9�9�-�̟bXǑgޓ���jg'�a
c�Q6�? ?Ц��+�9sCA��#�K��iynv�xXV�������g�c�垎tR�G6����s>;,<�65�K�'��Ri
G�A��H�e��ե5�[�;c��C��9����;����(u�r���͹���q�����)����gW�U٣*�
|���'�x��_�+���#�ʯ�իW��_�2^�p~��Y����<��_����?���s��[��[���L9�%����?�ǰ���~�W�]�����w���\Ү�Fdz�������/��}/P��K��K������]`���/���o�>(x�A6���_�KC���tϝ;�3��u�]m������a��=�1��	���3%2���g��D{��lU�t kS�l&�x	�#�I�#��%�nV�o?Fh��$|��Je��\^�����PX�X�;�5��9��Y����G��|��%+-!��lȡ���a�"�{|��j~N���1$d���እ�M�b�4��|���ϑ@��7Yګ��� �L�eM�_S��r�:��<�HD�+n#!�8�$����>4Ȇ��	��	�K�j�(?�A��jdn�h�_�\��#�R���r�0[�J����
��g����q[l�,�]�*�J��vW��d5"3���՗�Z��k&������Ts�1c�‚u��5��\�n~p���ܽ�:e��Ǡ�]�� �g���j����/��)�ԯ�ܽ}M�����v�?�����C����W��k��r�'f��l�oK]���4���
�z�.1Ps0�M��L6kۤ�����Iv�ց��mBh�c'��9�EX�^`�ř/����6�.�i�8����v���C�|:�l^�B�w
�D%�nԙ�e#wQ�r�X+�+��W,�pp�LXT�~8L������$�{"Y2��S3U&�~16O�X~^��ci�MV,�<�hlJ`O۸� ���V�.٦%B�jvh�P�DP��1�0�_�lETp�yI!z��6�?8f"Ѽ��@+-��\��ۈ�hߏ�=z�8c��S�x��E��m�i/f�k�B5�mi�.N��ިP_�\.ѥ�I���<Y��N�i�e=��</��^G�'�Is !�F��_P)<&A |?_�ڈ8���ߛߓ��h5���h���Q>Tk5��$���ڝ6�HI��RI�����p+�~����N����*,\�*Om=PMF�=��#G"�g�t�@��:��O�pjj<S������|-g~l�1�|�+�|o�x[�m�K��pbiM_'Ǒ��M-x�#�5<�ܑ�G��@��q��忓�Y�Cը�?�`O��>�e`��>�,0�%(��9s��Mu�}��)���s��~�̴�_��_fP���?��?8��{{{r/�����—��%�?םYUfw_y�fc9���r�#�SƟ���Ջ/�(uz�駅]e�1��g�<y���;�?������3�o|]4�W��M��Xt���@�{�e�z��ppm�9~O�#�x5����ZɈ:�?_�B�ي�<�b�Cp��f@�!A��ޝW8��	׆�՟���'����,� m�|�*��x��������6�j�
w�m�
q�?���5@�$Ф���h�6�y=m��u��דP�]�nϮ��U�u�]�;<�}+���'�V��4��Ō�<��N��E�7�#��(��/��M�=�uͳs�	$�$�����n�&��-�϶��v�Q4�����')G
�	Ķ�\��2642`X��"U<ǭ���:\����~��T������O�E��˞m�`@�i���\�ŽcR��	�a#lv�(i�|�z����\�踒��4�@����A���x����M�\~�'�B��U7�v�V����S�.��ڃ/^zW	tڛ
�4�ybF���J��1���'���/���z�;���_��$"�w���`mq
^z�.��R��$~�K0?[�E�o�ڄcs�j�)�U�}�a��*�*V{�udӍ1��M5��Hm�Ȥ�O05���/j���O�l&G#��K%R��xDz�'BL&�q�͎�y�4	+.)P���BYU�wې.:��� ����.�N�Աl�����hW(`M��3it�,q�6�i�gM�q=q��<�-��6Qd�5v���L��
?�����Y���7٦@���|V$L�jR1��xh� ҘAhմǺӨR�W�%yB�Z�S�"�!�,���J��$F;q�⍌�1j �V��!6�Ǝ��6cwg��ڝ>��4�������ՠ�$��r9��:�����7���?~�a�r�5̓
�Aڐr��^o���Ds���7�����K��]S	�ޠ�}�n����Օ3����Xk�
����]Ҩ|^~��J�S3��i�_���}��ͻT��Ҹ̒N�Zi��Փ���no_�ܸ�k��zeҩ��E��?hÙӏ��k��n�j�X�א��@�U���W�]�TiJ��M�A
9���=s?�^����;�lݾ-/	ij�jς�y�\yK|6�����&#�R݃[w�b.�Vi'��{]u����S~w�L�6>��Ê�DE���.���9�z���U)B����\�T�=	�ZN�J��>��yد�@�X�m{l������h�r�ԙG����.���#�p��pw�����X츻K3�A��!c4��0Vm�9U�G���^EӹFmJ��VWW%z�?�'�H�~��~?��O�w}�w��}�cr���ˬ�W7o�D�����{��f������|���hn���I���*c�J,��}����?�����H�v*C��?�g1xO^�9T?���|��?�G��˔v��	��[o�%�䲹��}�7������p��ix��B� �W��B��>�/\��}�����I3��P[:�!��W�7�3��fXg�
Bh)a �bWuz@�#a�.��|�֡���h��.��ӗ��;;��S˴���=P��֡@�!�+-"l�稬p]T�ڞ3oy�ԍޭ�in�^A�TK��u�S9q݄DR:�&_�g� o���w5v̲MrK�Z�z��Zx�R�Y0��T���IlY3��;�qX��x܀�qkN��4`�ԂM��5�Z��L�T��4[ԫ�l"�ږ��SIB�:f
�2"�M����_Q�Τqq.�o^��g��P���Q.��;�w��3��N����|�:�@�v�4�#L����A�=����p\I��v{PX~�۷	����p��+�)����s𩯿
��=U �ʅ�
���IZ�K����/�r	���T�D_�z>�����w��T�)�4ٻ���]x��:_�W����ҍm����Gh��/]�*����A_�yV��4���ߢɿ��&2)5�����dkw�JhT�@Z<����ȳxq�"3��W�5�I)Y���{$��2+e�^�)X5�� �Ho�*MC��O�iS���IV�]�D��$�'�G'?C@��7It��r���Ij����iW}RE(�O��'�a(��R`࣊����W�SY���`�t��it��hboo*w���f��8"*�#8L�rũK��@Bޢ�Ƴ0D��D}}�3�l����l��Y��AA�<GI6��݆+kЕ*8
k)���h:��>b3�����<�D�G���N���T�X�Fn��{8Gs��VHd�bC�4;
]Z��'U�ևL&�N�����4W<b��M����V����:֣9��9���H,S�=��"LwgP��L�m�N����e�DY\>Ek�<��c��1��RA��Z�)^ƹ�,=�,�\f'e�6(EcpavY�;]\�_ @�'���Ǐ����4�8ͤ�ڇ��e�E(�`��
y�gfi
M@�Q'�
='���h�,��R�ʿ_Ld��-�'�w~��lG\
M'�Y0���ϩ�#����!;ҞȑQʫf��{�EH&��ΰ�E�v/��m���1��Z;�|�9����N��f�g��ө�����*���J
�N��Q"����'��ĩ8��E�r�kj1%^�l�&c��`�x��h��0�*� (/j�?�6�?�s?�`~�PT�SSS�|2���Ξ=�v���>���'?�Ix��|`eek����%��G����������������b����7�xC��?�'�ԩSR7�?�?1b�K��SO=�����;��ۄ��e�M�O��O���牅U34W�=؎v}}]��?��F�y\Z���IB�=	�G]7i͋�A&���@}xOL�����5E���ڕ��wH�Fvff�1��jw�fA�~gq����zv���,XSIܤm�'�t���X�-�
�S���|��B�w8�oS�d�c8t8�9j=f�>�؁��������t	���z�Ch��R���:�?O�It��Jf�)à��-��b�,H�[�7��y�	-�&ViS`Z�84�X�r��-���W��˛._Ң�lju4b�t�6'k���=�l��pJX��D�di��3v�@C@�
�:����w��-W.����6���ЯW�����ڇ��l���.�
��mIJ���m�
)�yS��%h�M���SfR��ck�#�5����ϋ*�mu�ޖ@ա	�:���
�ڻ�-�����ޫ��}�Nq�\Z[���9Ϩ~�~�I~��q��?�I�3iخTT�K`}s��Ͼ�`a��2K��z���>�ΓD�g��k
l�sp��*̦S�����@�4����}:n�H@��O�f��u�M��;��:ƕgh#Q4��ʄĉM��H��1��^�l
.+C$�+󤶀5�����$��Z�ۯ��ʊSe(2��)2
=b�Z�}ڜ�>1�4@9v+��b�†�6�� �i&�S]^ ���
 b��z�5 [�z���M �x����0hT��ͪ>,�=��ob�����ʰ}R[���@Q�>�y�q ��-�_!�OXi9|͗zƼU��=I#�BG/Á��y���0�yM<ع��5��(FЁ�}�E�^ُ�A�|���!�Qdi��*�y�8-�߉��Q��SS��&�����}lyh����ovz~���؛Bfn1�/Z�	���U:[B6-��K�މ��Ӝ a&�k6�4R�tYl{��
v��챑��I�2�f�_*���\��ܟ�O�ϥ���rlܦ.�������R�;yX���眱}���1º�����{ggGۇ���̽��sLb��\�|.�Cp�øFMB��68��
?��`֘�=�9��#_���g�y:�Y����...JY��3�A=|�o>�,`�
b���>���;�����3�deR���疗�C{Xv;y�$NjC���\��qa{�~����c>ㄺa�ڱ���P�ي�<h��dqf�q�d�WG�2
{1 
��3tf���w�Y�	��E�J�I�-f��+p��6��~^���:�	Y~�V��k�[Iv�rg���k�O�Č����	W��BB:�i&iz�φ �l��WO�l5��/�)�X6)�9���bS��M����Ծfj	c�+0��J�W�Bx`@آ�d���Ӿ*�Ay/|\|�
�Ns3\�;�'�!�Q�j�Ej$ĩڤj��f��S.5N2�l�ʶM>���V�'�o�@��"��"��]��x�'���C�^��vv��zٲ5��]��&u�7�C��/|�ln!�i����1�
��U��#�S��,N��z��]tw���,Mg��#�:;
��
��kW����R!G�g	>���tƁ���˛�W��
�Xm@�A��T�I��N`��Tm��~��lԛ`u\��#S���N�W.���Puy�Bu|n����'�v�o�r��w('I�t�Ųx��5y����� $��#����v{�9N�XILJ�a[����D�wp,6�(���A�1J리��Pcxn���✎<G��N����I�{��B��s�ͅ��ˑ~�0��Q-b�
�΁�!��RCX]�(���ݟ�A�<	Z+.����N�˒��&n�m�I�%�P�$�ڕ
�^����`2�	�*qdk+��]�vFmS�k�m�#3��ayz��i��]N4n:PI�!*�H�Ih�#?��FDŽ>o��6�h�r���Q�Q��	�v����Xw�i�KI�_�t��
�=H�rPg,�E>G��5;�RD���9RKs�Zx #Q�Iu��6��T��v�!�ה�1���MfL!2��
��e�ecr&J���=i�K�vRzގ��g�g8�}�m�f��{�m�i��:	�="��ʧMh�v��le^�l�Z�3%��!�vꑶ&�ͫ�G�=n��{�w�;���1<�੢�0�f����1��eeC�
�������e�
@���sA�+9g�y/
�<�Q"�p�?8�|a�$"œ����;F�1HE�g`Oe�ǘ��5�?�;7���΍��R�;.CGi��e�.�щ]�$ܹ��_r���'}�)��Y�,�?��K�>���W�O}��*�P݄K���io��O��%]�[��A˦��AhK阰&]¡��ˮ�!��X�
�k�d�b�TVmYш�s����X�кajV�ެ�
�;0�S��g�d�:�,h��Z���=K2�)��RlF��t�q�f@�ƍ�\��Z�=LI$�V�6���H`��|O��3l'�Kr
�@G�n����,}�z
�[[`���,����ZUVK��Q	�L%S�My�g�H=~8���6�
ɕ�7`o�"�+x̳����VkUf�e��Vl�ê��	$����xr�D�7:P�~泎:>;��>���M�j	W��(N��4;o\���q	���*�*�.^S-�
����^�s+�6����\�܂��~X���_?��Z=�8���>�7׷��>�hm�!�k	�q�8YR�s$aR3�vJq[f���\A��O����I5s�3‚`�vhD%iী0'� 		Z�V�e�
������6p�m�MK9qB2i��G:ax�a&�C��m��Ne�둮c�a��x�ΓJg��D���ٓ��Ьmշ�3�t.⾶�UƛH;�1�@��(%��~��#="+$�NV��"#�\<�h%si/`,�H�(��E�lr�d�,$s�A���XE<:�Q������L�C2ҏ��Y�f�����~��ҍ�7g/ǎ�Z;lL��a�no݂�w�!��,|ipH�K$�*A�J�ل��'�qZݹ}�Nއwn^A�S0�M�v�
n���fe�ڤ��u�%��>L�f������GM�N�mܽ����v?��Ԭt$����=��O����Y��+��Kp��@*�J�M������l�B�u�8��/����{P岹���kһ�;�y�om݁��뤄�І��Յ)U�� f<��O�e�=�iݷs*�ܢu����h���1��f���6�*A:ه�kA�4�~{�!�
��>l���zǏ��Scʇ��@^8F@]4��Xu�8s�(@��~K�-P���r:
t�e��E�V1�.��E�
��<U4�0��L���1�¢�;�-DZ�84ٸ��<R\���?��IG|���φ?l�J���IB�C�8*���!PH�5��L`J��}�ۺ	x&��|��س9�C���۰s�O�<>y����ބ\�����uz�%k�%v��t&-&ؙ�� SC�w�����lE뮰�]Ԟ�+4PڞD&���v�Pdٞ�1�?�+ò�X�:���2��v���LKB�����X֦��fı����%�Z#s�t����ګF������)6)=i�.ƢE*a�0ݨ�E�]���4�LP�9.1�m�	�Z
S9R��=21��mC݁�R��� �vnK�Z�.|���ep��d����V9{�#��e 
��=��%�7z��J��Z�U73Gl�4IU�lj}g^x�uZ�Kpq�	?��~VK)Z�����$4x�
7I��B)���	x��2d=W���e��=K�g~��ñճx}�.�=�;}��Q�}}�
���ӽ>�)X<yJK�8�2���a�D�/���ѻ�P-�Tz%���r:ȅᾔfh��$�c��E�G��1%M:Os��<�=�^�"C���~V1�:#�!ym&:ϑ�i��[=�f��ݎҙ�\�^�ZnQ�̖N'i���A�Ij5j��΃/1)픰C�
ļ�^ԍg6�&GC �V��S�׷�+���˘y���p)�́�)@���d>�i~I�(���Xv�����  �M�-�D%����d���Lژ��d	�h��5�i��	�
�34:�_�/L��x#�����@ ��O<���L�UH*A�e��r���K��[�ֶH�,���p��B��r$ti~����	�)Y<�5J��K���X��{�߸
e�w��R�犳�^4�R� Z�Gkg�s�f9Y��*�l)?�ݣ�rB�2m�b����qj��Ssb�Go�G�6���y�*�B6W�E�3h�,e���N5�J�xс���9{˨�r�Ba+Dž4�hm�{)(�R�q��u�@�@�Nx<��0p�}0����f��
�����:36�VF����6,;���V�y
�y.�����|�J�@�p�Ze@���
�d�D� 4�XO<bu��W�7h���r��!�g6>'^�',
E#e����:����9[6>Ls�;T�-�!�Bg���J�
�����-u�I��K$S����j;���6t�@�&Ǭu�i[�M�3C�a_�=���"���xX"Hٵ��a>FB]q��ZIUS�U��B�X�L�*�ۜt����2�[&��8�)K�����I�u�M�*�.�ؒJ˒�Z*���l< �b�����Z���8t�2��ov�� !Sh�
�����d��	y�G�-��O���f�n�-��pj��.��2�67 �x��1-��v��jLP
D86�'�����l3Kڸ�I����/�����3���v�o2���İ�N��޼|3�"ti|cc�X����H\e5������_��gC�Z�1��wI	@H�Pى�ixhmg�=x��I6=��k�3�~�Ϝ�;5f��a[��έ[����O���s�^�6��Å�YH�eq��s�ʧ1�!�4(@���z���#�(�Sۅ؁�n�����a�isɍ�&Lֻ�Vyi�I0džlX���!�Ix�Ɲ�E����p*8�s�0�R��|�
z�-K��#
U�ib��O"�r��MV:�������T�F�"i��K�F�,�UA��e�Ƙ��bu��^�D�	�44�A������-�L�� ��*�B��/�2[���z�<�d�(RȞ�#����h��K��*��D<`��mt��W��t�8mO-��{���`�|�C����ɢ21F���H@mC�g����g�
��NR�YR�"�رvԂ<x�R���4o�ײ#��u���95�<�\yٲK�/6��?膇��˸�U�4����5��p���%�*�͉\N���p��yF!,'UJE7��v@X���{&n��tV���5�[._�1����Ȏ�
�e#���b#׌<w�qx=���X8
p
´�*�$�Ĝ�����8��tG�=.�A�Z��Q�U��Ϣ��/����1��O�D�F��u5�ܣ�9�0<F�@8c�;�c�#&��H;�����s�y	c~}���ܭ�"�F8a@GM01���s���H/	ORxf��$ix�NE]���Δ�5������^�宧Ϋ.l��-�1,�0����AxP��=H��U%ft���8�-�ؑKq��\2��a�t��|��Q����E��r�x��KN��P�_y=��F�*3�INaC$$\�.�Oet��A�%��tM^������;%Z6Ǭ�j/Hl$ߕ�:�O�gO�F�NB����1�IQe}�=ۦj�ɤ8U�-�5HB�xmx���רù���"��B޽~8>{�߂�͋����F����v��g��4u�1��՚9��Dx���|R���jF�'&�4g�I�,���*m>��]1Ẽ�TO<����8>���y�m�$=X�:��{��j����\���n�5� cks%��j���4�ɧ��W߁*uQ��R�V��I�YX�
1JNʂN����^Qx�qs�6���y�~m�hW~�`�r�ټj.�aj��!͔M(�Ks�L��D�4)&N�{N|��9<q�\�~]6��X�
7�^�^�#�~�QHf3��K/���cPΗ�+_��zǻީr���عs����M�~�G���_��W�m�b�s�.�8�^{�O�»���B����r��/�l��v'mʲdŶ^�Z}��2V�m,R�x4��l*B�똉�dB���]�wZ���rg%.-/�����&�\�Lo���@�"�G��$�T*���|۷ܼyK]<��I8bs���e�Y�(t0�b�P%�9�H���!O��Ko���]1�I�`��*��'�ѼH�o�N,bSR*S�I�00ĸ1�Uv�
��ah"��C�Ԁ&�;�z
���r�u�W��;��7/�G����������DB��=�O�{����Оy�8
(�CG��t��HԘ�i��wm�<QF�{y潖�}DF~��m��y-���*��6�{yN��q�+�(��c0y�(S58��Dđt����jrDmd��T~h>���Q!��=��Yp�����c
�Y��'�\����},eZpD{Aܬ"*(ľ�����U����\��ζ��y;���M�ǭ�Z[+@�X�n�ƛ��^��M�������'�n߆[4v�T��T瓄)��bc���{�f>9\�>�\�z��eđL"%���E�Ɓ=����@Clv�1K��{j��#���ol��ߋ
a4v֒�Rfj��+����ي)��V�j�;\�9�=��C��?�n��1��." ���
0T6k%����D��8�Z�,�cO[Ixv���I&ƒ�HWf�8�"��yr�z��\�/��|�������Q�=�^l���q&��t��Y!�ԅje�t����M�)r(/�N1a�}̀��V:��hBD�Dc#Ȏ+�Fֆn��<��hk����3Zp��~�w�qx��8/�xY�P�$ `���f�7��&V�6�ݏ-�_�j�����~�Ux����w����*����&>��cP$��՛7�ͦ�>"��	c`6����/�KׯQ�\XY^�<�Pg�[SI��;nS�%��LP��?8���OHp��d�<�����j����w��Sp�s��/ó�����C�?
_���������z��ȇ���0�815�	?����O|�wcB������7a�ۄo�S��~l4h��j��I�t���Kp�.�������m�<e��m\_��oA����Y���`�ޗ�Ym� I�9�1_I[ތdn��IB���ݔI�ϤE�-��$�=��ؚ�	S�`�61��6���/å7/�>�!�߼M�YGa��u��K��T�Q�ɞTO��k.���0wr
~�s�QgW�q��mx�#A�aN���ww����}
H�����44�[4�>��ρ��C��~G&p�kC՛
�҄����,�ˊ�>����^UX$�_���}�ko]�t:C#��s�b1�!̚�ͱr� �JK�:5"̓�Q�Dl�`��{/��JG������Sc����D/ �!��ƯUG����G\X_��r��r���a��{��ŋ���.z�\��"e��7Ƅ"��h]"ϟ��eL{��-a5pV-A�&�����Ĩi@�]�����HS���B�M���֕�Q�ae\e��L"�Kب���h�V��pb��8M��W/�¥�[�F�sv1���=�׷h�fov�FhsL^��U��3�='%zI��\A��Y%���Ж�#�����P_�l�n�ֹK���2GM�H=�'l���
hc�O%i���~I	k�
�;�JוXh;V���Y����X�:s��}�Ah��\�&6�c�$v
�ᵴ��ZG��g���9H�w�2�\ҁ�r��'����^$�J+�����ҙ�\��y
����ߡ�u!U&%Z��v�o\"N���Uy'��+m(%�P(/r��'��i
D_�G��<f4v���`�+K�%)�C7�[s<��q�^�Tz9U,�p���N�������!zYT뷮��� �/�������D������kn\��z��ܺ���Y��m�����[x��qXX�R�|
ꪍ[�]�WHi���o\;��o@������>��YX����ڭm���_��f������\����&�`�����I~y��qivAݺ}�au��Xb�qii������;��\!W.^R[�0G�i�X�r1�����
��P+�p[���t��O͟\�A�ŋ��<<�T�������!�a��+5������y���bC[�5�T�i1�b��([f9���"��̺�j�T���<1�}�f����b�����b�(ﴻ��D�(K���
^^A�<E�%EE����H�����x���ұe��ʳ,Nͨ�7�w>Mov�
�v�&k��~���g���4��oC"����
=o�z�1�a�l�Ί���q���@�E�ֿ�;��"���W��Z��pinJ���r�".���~Ey��X;w�����P�͕
��˰�ԓ�k`'l���$L��2��c�q?�ڄ&m0��6��ʍ��0�5���qG�Մkƃ�{���{pBG�(�?-�^�aܹ� `�a̵p�}�Z��c%ЌE��$����ع�<c��h,W���p����aTĬa�C#V�p1'3�Y#3��s\�q ��INm��0�<D���gZ2�.$��"��`/���J��9��,�RJ��'��.�?ϩ����w�7�F�P��ǂ6~ζ�&-�ck%%:A1j�=�5t��3h�ڐ، #�eR�
�Y�J+Xl1�B@1�����D��؎�W�$���9oa����u�.�l苕+�U�>��Qg�|(f���v"��Jl]c��x��X#a��!:l���]�7Q��)�����b��r�}��fg/b:i�Vn��>��bU�q�U5�R���I��lm��x���8�>f<�
����Q����#6�`i�ZO"
���׌m�'���+H=*g��g��.��7!_��/��Wb�V��r���M���Un����V����#����qe��k�o!��,����d;��*�(90����E��ؖ���qO=xZ}�S����V_m�v��H�ND�פ�.�Do�ƆZ[=�%�R?�����_��gU���t�������0P�תآ���+1����;wpo��]��P�'��DB�K.og}Sq�D��i7+�{�G����<V�w�}~,d�u�
��z��%F�Մ����zj��r.���Դ������e��^|M[Z��x$��KTm@�2]&��lF����ߩzĐ6�]��3�|�#�3{Y� C#��]�o�U�������"&�X*��o�{�rU�T薔C���}�3�i���|���=��^�:L'zP��C�Xb�����
l������iطR�����W�o�>Nes�j�Z���L��
a>7��{��TF=ũN��*#s`t'6h��@��P_/t	��e+�v�l@��R��
�4/��:t��l��j6H����#��n�t�_�=Ɇ"���deic>�NO���q�u��ʸ2��x�1	4�&����c>vį;l�	u�TV�w���7<��I����9�Y��qϋ�9̏�W�ls߽�����+���#,�y��1�l���\1S������qe�s��1&�ωG0�����XW��h�8+m��4�����|Q�{BpHj_�Ǐ�Y���N-d��+$�֕}��+��7��ة���8��Y�dEZ����I�aC��$�T_�l�h��+c��b�N�Y�-�[�؊��*i%��uY�� ��r�%+�U�����&n���VB0e��7%<��$�?�r9N,T>O�1��Ơ�t�-�ڈ��:��	Qb�k|ݴ�2��xs&X�~0p��+��9�'��=�MB��Cv��l�����w�r��xc��b%!�5\��Q�\��b�9I5U\���>Th'u0�^��jA�_߇��.K��?�1H��V=��$�*����S:2C�7��*p�V*��'4r �2�+N^}W.z׻���_���K����p|aMҌns�8[�4�y:�}#ǼmR�9Nچہ�V���*��D�W��ZM�(�`��l�((�/��H�emVU���p�bRݸP��ާ>��硜ʩ��e��فҩy�)�i`QC����*:��������7�*�0�U�]�:���<#���0\hј\�XNW`��>�Se_n�;t����JP�V ����	ߑ��˪]�8=l�M�=ٮ��@�:}t��z���u���I�꿛�K�_�}hwZ*�@دV8X���H�,Ίg��)��#��'`J�*�N�HRJ������~a`�٤ !�{;}3BD��}���K92��Kvh�� �j����r�շn�^Q.�R�U���l��Z ?%�q���ڬT�h%@u=�ۭ����^l������2h�8|��!�Ԍr�2����e�@�S���Vrvw�����N��kH��.1�ڑ�$�nW�5�wٳ��H�$�	�QL��ָ�w����5��a�8�9��I@h�qe�u��q��r�`oR�'��G|�1��M�fR}&�q�=��G�;�F��
�:�^㾏</
��$�a� ���������l$\�H<���1��c�FC�ѿ񗍕�ƘD��O�S�Q�цa��8پ���ס�8*������n
����R9�++E�i����u������=u�pT-�)������46�M��uB��i���v�+�����iK���?���K
�m I�#]����P�s�\6�#��
�
5�`�pSB�=�o���*�8Џe��ilu����2~�� S4���H,K�,
o�̓�-֨ ����G�Og�3������J�B�2je:[��}��U�~�:ڠ��rY���r�jbc�Y��_{��O��j9ĸ&��{�%��:�.���<<p�4$�	���
�76�G��/RB�r6]F�J�<Ej� �V��}X�"Mh�	-"��]d�5�Q9���
��Q���By��~�eSjoo8�/3d�dZq|�����_�S	�ܻv	��կu�kv��V�d�]�a��9h��6.-A�XR�Z��˾�;8����2�����[h�Og�pu�6��X�'N��~6�+'V�1ۮ�եi8y�>���}���_�2�U����hI/�X愴��*�Ӑ*X�������c��@�!�s}���$4ǻce�X8���.@���~ &AD8���$t]Rq�ۤ(�ٞ9%v���&I�՞�Ryf��֕�����+	�a�T~a13�:[�gy�L@�XqR ��$Ш�L���8�G�-mX�@Ni��g���ٮ��~�Xw�a*�iֵl�n�$�$`8Gg
?����zN�����Ö<M��4�A2�$����6�	u_Ǻ�M�Z�zZ�����k-��
���j=nd�0�HK8e�6h�l)�C�q����2
oԎ�p��qߣ�厫�������a�r\�0�^���uX{L��c�8�?'�
cʅCʸ�����k&�7�����o��E������7ʲ��M��D;��gOU,�Tp����L
BVcQp�5h�sjԤ!~��:^�y�h;D�Pc��b�FX��6�#8��=9��I���.�w,�!��Ak*�DR}��z�[�0p���_���+	��nIZ�yK���r9ـ�^�LX�о-���$r
؄�I8�3�
�tޥ=>��h��[�z�a|��ÜޕwY�֊�6󶣺%hL
`�Np�19�qZy�a�6��#Q�x�����0e�HC�cIL��d6H�{*Dq�}K�[#��'p��	o=�ғ>�I�Φ��M�����z�nU�]��'�V��!I	L�Y�n�;Ŷ�]b�z�>t,��1�߫^Χ�L�W�|	�3yX�Y6*���~<[�$�
����$
m5 Uq�X�)�t�R�+j����D-�9(#��:��A,K2�GJBvlaSj����x����n�;����Tz�t�ט����α[��Sk���'�V7�UR�J����=8�����	8u�)Ȗlx�k_��q������P^Z�w�jw��
���J�1bb�,�ƻ��ӏ@�����*�PO�N��ꭊU.,�o����7�[�ś\��Oܠ���"s���X"�^oj�>K3|�iW���L�!dXR��ͦsЦ6��s�ޯ�h�a�r�%� 6��w��pɉd���^"��f�!����	ļ�����V�S3t��^�ڝ���h����@��0���b�Ãn���*���=�`|��I%��r����Э��D�TJPr�݆��i��..WT@�ĭ����H�Bl4&h,�D29�d�e�%!��5�lX��O%Sl���BS�`��E�	�
&t���f�߅��f�2,9�u����%)��d6V�6_���hLw�d(�^�ؤ���8�������{�|�����:�zƷ�۟�G���[�Q��A�=���>��'=�kG�Nc����a]���������8<�����8��|	��8��怙��ӑ��;-3z]��IǸ����<�����z)�C��*�H���5����_|���jXx��_��jx�4�Z���������ڜ���*�4����	<zL.��W�n�3c�
Oc�S�2�����?��GuECs4����]� ������C�,q��h� ƾ�'�y�&���X�r ��1�&�h[U.�!����!g@b���>��"��N8$�"��,�:�ŹitI��Q�z��o�߅��'`;O&��)?�N��p:[����8e����҈\T���M�2&����";�]��P
b7�>n�m-�A����N-@��
33S,\�����N�K����l6�ƭm�ٟ�U�H9��R����;W��w���S��,��~��x��Kp��\^�@�]���<}bn��P�m�����sspz~Y=r�>�H�G9^�r�$
$��kzI5���C'�+��&&F`�${NCMF�cʉ�'Eu�����+�x�t���߃�)����2s�8
	ՇKo�����WM�,Q�l�J*\�q�[�ͤK���ʱ㐲b��b������:����X,���؉Ҥj���`��JS���'񋯼�V�N�+Ͽ(/��q��|�)k �^fub����p܌�e�'h<���������Ik޽y[M��053MlxS�r2��]X\>��jiz?��;`���+/��축��y�c���V��JJ3E�'�������=�����o�z��cy��ͺQ)��<1����;���~�k�7\[yd�JH���k�eS��[��I�z,-.���4�RY�}���	3���r8�/t�=�ئ��l��dS�l6�V�vw��$�!��N�����O@�v��q�����\Ϸ0��N�I����IG���]{X{��{�<'����5q`eW͆q��F��S�G��⛺�֨���&�eM�>�=�7��Ƙ��7~-3��
�X�D��<>U�r+i�SĜx�v�/�C���^G��t��n�]bVM�U�QȦ��`�NA��^�6����.]��鬚��� �Kdd���bm���c*m�̗�Be�4.C��GMf�oYk.�x��1�6�X���<*>�P��w<4�IC��bF�~�1���K�����_�BiFL��|�������
�l�[�S�x��a=�/gQ�o�@�$�jsgG�h����ƕ��
,�tzKe�>1�E���fc�j/Q�*t�r��WZ�f��M�v��M��Dvpn�HL_JR����aks��U>��l"#?��o����[��'@�b�	�|���Ϝ�Ae_%�Oa�ڂveW��*lV�q�:U����M�l��{;�����[�W�B�@�K�]Q�+�Y\R�n�����28�Yh�*�N��8w�,~��oѻ% 0���I9��F��Y/
�R�J/��WU�Ձ�^��Vbm@L�nG��WJ���^*;w�--I��n��pk�J�<`�JS�"�X��Pi;!v��n�\�M|�ڞ0�]b:��S*W�A�cec��K7��]�R^�t���3x�l!�B
pUzz�F�>�k>3�4Ik�L�Nb�u	�6%j�����fRi�}�-Y+�};$Ȱ�E��������QS4�k�R��8���j��k]��[��N�[X��R�!��J���׮��`�B2;?��Ԧ�tF�{,�jooJ$�ݾ{��s���^���y7�]�2�����_w��b�kNF"&?�D�4�I�[�g�	�����C�������u������W�ӹ/�^����?G֦C�Ư�t��<w�o�r��ů9�.�r&�7�.��ߏz���{a̵0�Im��^��0p1�x;���I����Q��{��5Q���qLh,�CN��#̥$�1��!~�R�d
a=Ɣ���l�ј���g�gI�s�$'���},��̽� �}���\9��9�rF�\x��-|�с:i�7�>ܱ��G�=őoj�w�c�N6
d��&�N�;i�=T�qq��.�tV�'�
8�i���M���!� ��0�#�DH�/#c{�"c�,ϱ���z���9��:2G%�,���id�b9I��P��j�T6���NCw���qA�v�*����&��7���
��:�Yv�v��W^��|8qZ�X=���
Kl,�ͪ��Q;���7��Is�ۂ��I�
�+�^l��*!6��%4X�C=�40X��&p�X�&��v����=����˯��76�=��,%R�B~�$1�$�4v8�����p|��*^W�/�O}�U���dV����j�S��֥�^���44����c�Շ��4�@�
'���v�I퐅\~
���8D�2v�1n�	zR>c��$,��;7nJ�E��8��n��A��U��S=Q��/���41�iثV$p�>�R���l�H��l:�2�$�I���@���?8%)�����C��֕��o�N�H��d�8���\mS���i��A�dN�<`��A�����U��42X�N��iw��R���B�Q��.#xK��T�5л�
�;�*��5-�	�_��v;����,��g���rl�{�6M�ZM��*=�M,�>���b�
��������ɵM\ٰ-mV&�;L�(޹yKLqx��;��c2W��Ah:�fr�_��~
�H��zR�������^�L*�^�z��{;����&o�o���S�{�o��?������l��l�����4[{���J���n���MI;�|a���eT��V�ٛ�e��R�I	&1����U����07�t�1o��O9����b.]���K��Һ}1=PR%��0��Qs}1��8�	��n"D� &8�)
�e;��csjY��m3��L-�(1Y]��c��,�N��`]�D=�C���5#P1ӕ�83�l:?�	�\tL�+g�q�c��-,,
�`��ԓ@��g�'��@�b�
�)���~��]Fj��z�Kp��x�n{<��cD䁸o�=_6l���Ὸ8I���f	�c�q�ءGc�A$�5��Kf1��u�]�@�y�S���0ՀB"������0�H廰�z�վ�����ݺ�Y�0�rT�����)�ȹ4��_ fk�n����t?��+Wn�kW���%hr��R���3��"\�[�֙�Y�'|J�"f�yי�)��m˻�"1�.���U���s&Q4�Fu�x�a��v(b
��	�
Z�-�1v����
��fi@��J��&�"S�s.�l߆$�u��b���Sy�֡k�P(�p��5�ѹA� �J�Ƕ�ɔ�~ߣ�LJv+ӋP�V�U�WK+ːJz"��΄���U�/}G�O<y@��㏳
x6	���z�������;Ch���JZ^f�u%�|�7S_�B��ˬp]1����2�I�8��l6!Y�HyO���<1MA� ^{��1�m�gC�?:\,2�`�C1+�]�3-0��l���٣��ϙ�R�����晄MQ���(��l���'^6�F$�<Ǝ�·4>>���K��0���?��;���>c��4��A˾�̄K���y%��`�S�Z�d�Կ�0�+�����b; �
7�]�15"���}����<�F��!��34G�0dLFA@ [b�4�emixͿ��\�Y/l�Z�r�}E����C��A�q7:�UC5�-K|�u���M;�T�h��/*���=�W�d��a#rځ�)�}�7��+�a�!�J��+�>�U}����;JH$�wc���O[���2�<�~�iڏ;�:#��)��I
8DVmЗYLg��8z
;�;�z��0���Ռc�Ǿ\�q}=MFDC0��Þ?�>�1�Ƙ+��9����S[2���� �N8�g�
�k�ԧ?��٫ƒg�WQ����w�{T�J9H���_xtF&���vJYh�<��yn�\'uo��	J~�b!�%<	�mSϺ��\]m}�+�iot�M��W��2�o��r��Ԁ2��d�Y�"}�ӟ�����|pF�u&�V�V�����&Ն�DU���rN�[�P�zxw���ite��XF���!v5Kls�<�Ζ�A�����x��.�r�bPN�Mbl�p�.�߽
kŬrS����?MT&LT�'I��J��j��
PR���ښdW[;��oߔ��49츕&�M��퍻jang������}�>񄲉m%0���$&�	����Y���>8�">|����W�n��f`�T�k'O���
ܫ�2)����U�å٢*���iN��$�h�!9�;`C����K$jB�}@"�ɨ�S�deI2��(>�K�0�
�\�t��*�����{������8;3�6�6qna��UH�X~������Z*a���]ou �t���Pӫ���;�{����!6����j���g��?�۟"՗XJ#e�Y
`T�A5d}�+|�x��B���N�E�Z;q���P�lc�P�q̦`�1��F�4~�ɮX,*�����f����B��$��QY ���q��q]3"��׌��vb|��1���s�;��8�9�ԻLj7���;��C�?L���{Ԅ���'�;��cAMx'����:�������y{���p�H�XRU�G[�H�oY�V]<>5����X��^��}��Ҵ&�$/�$8z�Cڒ,��s�˞�޷>6{=�dM.�&u�M�Ⱦ!�,��	Ms�m�y+n�t��oan|��B�Mʩ�y��8�2���B�!M7R��
lm��i�ė߸L�fqE�։�yG��@�'�������iZ'9Z�2)�� 2��Of
�%�&�VV[�kX���qH�F������^$ą��:��0���R���8��ٚ����ȴk21I��-%a��
D�m���򢴟xn��ũ��5,�28[,(6�B��&0Q�9B[���77k����v�B��""�� ��D9��D'��A�&�+�,vX�O���U�^�8XG�8���R��G�4J�"N%��#�XQ#[G&�RW������?tDǘ��1�N�{���=��������@�~
�
�k�}J��^R����Kg�b5̀h�S����*!�a��}SœO���3��Fk_$�+��Ǟ~/��̟��'�.;��t:,�%��'�<�Hr��g[v_��B���)������g�+�%(q �qѼK`)1�cg�#)�XL�����"�<&gj���7V�{�fE����i�X>+�Ħ\���C2�}������|��S=j��D�PzH��GnE�V,�#�X�Vh�!�7�U��G�����<��^�-�z����6,ϯ���-p��vh���X��Y:W�\[�:L��)�hVkp|�n��f�E�{�$�)(J��8����w���Y�Z��p 6[K��IẸ��"��}0^�h%hB���V
�N.Jx0�d��
�MU��	A)l6����;)r�إ�%����T�f��f�$(�jؼuY�Z�BL:j�����v�da�/OO����q��I@���}wO�k�Dh�w�^��v�r)㹩�����)�Tw�	a�N[3=��NDt	_�s*��@��J䂥弪T��O%q@��f�%���՛��l7.���F��ūW�A����]`��˸10��s�@L�>��:�� �yL���C�#��x9pϊ�����kRyo�?a�sV�����θ�{z4��kMp{=k��MK���nO��T�6)R ��Q���)����UT]�<��5�e+Z "
T�?��ܒB��p���`ő/�T҆�zUN��0򀈑i�)"�J%U����-�i@��!�|	��h@+��l�����
�9���W�5�Cd��Lu��Ȕ/y�D�Fhm�i[IYX��)�I
y�u������"��C �#Z��;c[F��5�E���<j�6���=��ѣhi����DK�ѐ�3���ٽt2W��]X+���V�	�*�4�	�TN��7�h@ڞ�;�e��T�i6����!��\�జ	_��d-�` �8;d�5�?����x-Md	���;'%y/����1���T��#Q39Bz<�*-���7ōh��a��L�?m�t=�����$Z�gZţ�+TNQ��^&�Ɔ�LkB�U���0]8f7x�1&.!??,Ki?�a�F�?b�{�4��!0�Q����&:���C-�1�\��&RfPG\$�z���?���V����FÎX��1���F �~}�M�iv1 ���EޫO�P�A��x�r�
�r����3V"J2E��c9��R>��
�Yބ���d���vJ�(�w`���SlJ�G��2�h�S��=)KBSI8b�OG��a���{8���p�u��3\x�59'Y2t^b��
�`�X�~�U�[{�Dr�������LŌH����͍��eK��k7���+���j��P���/LCf��ң�~�d:C�F�D�$����B���q��<�ߡ����
j3`ka��µG�U"���^��7�߄�w�B�'Y��8�����k�E@�gƀ��[ݸ��]�R�Kl.lt��>)�RE�߸�Ndp��G4�#){ST���[$�P=آ���̍}��@�P�D@c\1�	�q�2�f#!Lz ��l�Y+r���;���ܓ�g��5;��{��qW�n��f���fK�Z��[�ۆt/3<�1�0��r�`^J�����)���U
���K�H�g���cpSt�c��#��;9&œ�3F��B�|��X�h*y�G����7<h��6��&^�A����#���v����m�1|w�{0��"}0|mo",��`j�;b�s����rX��l�$g|��&�!��r{���CZ���m���78(�x�?�����[�&�]2�ڛ�r}���8��6q����8T#�^��	�*��DU� �����-C�:}��`�{�]\ !�L��l�1���#��0���*T��@[��G��c�@2_�{z�b&3AH �}Ⱦ�z��"��C&�␄�W��dF����q�K����Ӓ|�L������..�HJ�$	��븀�>=�߅#��3��c��D��N��I^2��0a��H`S+�$H���.EM��j
t�;�A+?�M�DȎ��W�IG�ʼ�P&
(���t�E�	��Q�����)#.�D�� ��H�)0ڞ,[vW�1�V��9b����|f�ߘu�q5`p����a�ҡ�6A��2�
�+„B/����&��&?Ƃ�YA�2����{��f�
�|�'�����Dhg_ネBv+�6�<	\d��>o��Gd)�4�L����86g�a]��c��Hpح�u���?����������5bx%j�O��.Kg:�`A>y���K�	���7��f��>b5P���yĴ����$>�s�F�I�!@�VE�'�Ew�o ���j ��bAo�D���2E��+|�q�)���	��ވr|q��,f�8�h|ⵧ�˒�/"��\
:m�g���A��"^��i��l��	$��ō�+�L(�s%Q��Sj��`b;}	
���OބJfr$U'i
��=�S�9�g#��+���[�nW�Uc�g@�����tn�Y���wn��7^;�Z���Iz�~��Dq8����F�Q���
��nݺ�{�ٶ��L����݂�-��c�5N�W&���T�m6��4�_b+�J ��: �C�60�@@��ʠw�WH�F��J����p�\
�
���Y��:u�;��L<�9�n�*��m��t��R���Vw��%6����؏h�ŒJO�!���m����V���'0Dˉ��(�2�Fh���
��:�s�g���o*>'@�g���̛`U��Y���+e8l�H#���
bm�~2RJ���6;�m9�&R�s�w��d��f]�DE>#�
<�M[�h{龏�`<0N�{#�ھRS*2�p�/D�k,�C�\0��L�i�q؟a��`��g���u����Ws����d�ٵ9��oA�4�6�-b ��t	;~h�[*���N��UI;�™�iaO���͊�81~���By�,.�l�D��"K�2��u�̧I�o��ƥ�%5?5��Z
�wvy�S�\N�mUH۔Ws�ӰKB�~��Wi=��߁�[
��D7��`*�
z^K��Q��p�xfQYC�m�H;��$=��q�K�A��-/-Z?.��`��j��'�M}�٬������b�m��&��W}ד�ե���,�G{���g�ң��1&"�~�?"�'P@*iK����T&�++��=v��o��R�7-	���6v\m�̚b��Tb���
�G
=�GT�p@�F��b^�{p`ƲU�v[N��!�}�A㊳��}1���8�a�>c��/�4=&{-:)jڑ���إHH�.I"ګ:,�0:b_
������a3��,M�h�0d]� u�T��H���_�Jl��w��d#��F�()z�6e����Q��Ab�X܌�x"`~0�'Ri\��$ĥ2�-h�l<0=��jn�tE���U��;�|�}HO G��;�,YdD{�`�@R�T���W�A�	��2�c��2,V0ýO��Ҿbr;�ns�5�����"�|���:�_���
%�S��E/���YJ�6#��WD�Q;�Ғ�~��	�G�#�� T�8�x�RY���;	
� K1��qG��Lk<�ʫ��p�i�e��������ŭO�80�^~@l�&1�g�֥��g�k�C�G[A~�����W9�L
��&�������f_���h~K�A� ��Sv}SE�� '��e�l�E�3���	�z,bp��N�鄺z�2���;y�$$R����3'a�[�Z��v�
��uW四��P$V�����u辔%yP��! ��
���tŹM8��t�;���:]���Y�Y(f(<�#��]��q��5���w%���ht%-��+e��'�ٓ�,Ԣ��$ױ
0�f��^��`�F��9on�.~�#����2���u��k!�$�a�1C�[	~�t�{l<��#k��d�0Za�{B9�;��;��J���5��Wm)'������7[q�:4�'�5�ms�_�z}��>��m\X�z��3ڗ8����>'�Ks	�]���̳����Iɸ�։�&�ƽz��u��S���5��	y��yfF"�$�d�҉6lu[p��c��^)�bF���^le�Y�ͦ�I��ϱ*���
Zm��Tkԅ=e%�����L&M �É�!�,,�
���H8� ���]w�<
�B��w�X�{u%hר��Hhmm�3��+���AO�c%J� M�v���Ǖp�/%HJlgYY(�P٧���W=�M��dP�iXN�M R�F13�{.1�}��g_���F�n}�<�5e��Sz�{���}6����&�����dC��ѐ�I��Alvi�M&D��d��Mq�e&X�5���q݅6S
GC���q���5K��@�b=/y��#�r�5,(�{8x%�βūGmL��7~�I&O$Ɂ��b���dh�z~_ƛ���<��	�7
V��+�����Ɂ��k����0�X�O|�ǡEUvr�ީHR��TI�iI���+'N��DB�9�O��7����y��_����O�hV��'~�?��<�,�,.���2nm��S���K�����;W��_����}�s��8#
�O��o�O?�2��R)H�\+N��J�d��b�V�BH訡ZQclIm�=<$�3M+(g����g��QmiSK3�b�n�}��4��Y
?a�A���i�PcK���l�4��1������YNۉ�R�f��G���x:�6+M�s=,����Pˊ�i]�;x;G0k�#�ǛN"=xB��G��=Po��f#�>��/���̲F_tz?9�9*�%f���Nz�u�6tm��ys�e�R�v}�eQD��"q��ȱ�6Bz�_o#܃|2k�-n�����2�g�a�T������d2a�ӣ�>�JM�f��i�E���������揃��q@@�iB��V*��&�����>�s�9��7��X��2u<�NJƲ�pWJ����C��d,h��`{�W5���L��jcu���D0�#'!�t��Y\�G�5�Gw�.�|>������2��g]��{�~�20<T�D~y��
�eĎ��iψ�ߤH���RV��W���[>��yR9�mC"��儫D �*����?g\]ql��?R��w5�w8�F���?�:�=g���98�Z>zb<�u557�����6�u�o��>���K�<=C�lJNN�8��\Jl}z�1`���uL�]�6!�J��cH�g7
bk[t_NQٹ��>SɔD%`�*�G�Ql5}����@k]uw�TΎj���k�5ٜ�67��O��K�;�U�f�L��=��6?�[UO���ܥ�p9�
ۙSJ�h��o����&d3�� G�%��D��2Q�y
G��;0C�����N��1���^�
�{r�NW�pzm��s��d��陒�I���T�J11��g�Z'+7����l�?������S�N�s�|p����j5��=�OL�1�dK�6`a��vA�
�k8PdO�Ӗ��E�����D���#�IT�kg�u�it��8�e��W�^�`HG�̎�+�[��g��ϬdZU�s�A��f��h�0Q�sd��N���U�Jdl���_�@����<;�	|�p�����?�e�}�<��#p��mx��@e�F�������O����#kPݯ����58�\�/�pN����m��w|^)H���t��O�Gx�'a�������v;$4$Z��ԕ%&"��#�P�����G��c`/zm�=l(�Dj�IhGЋ���%6_�L� 8�X,�V!ͮm�#�|!c�.;�����-*
	E:�o�;����tµS���*��R�+P�~>K]�������9�y1cR��1�Gm�����(͔S�1�x����~�o@�&�2���M�I�s�A7��\��d�^f.��8�������iŸi,��6�XO��碪5�L1��$���}kk�W�5w�mGyT��u��KӷOí=�~�)b(�h�����Ԕ*��mi_�����O|�;�@U��'/�R<�351dAj~wN�����Bt�Og�ޅg������A�I5������s̶2�sŹQ_�{A1:g�@��V��4�18F5���W�j\V��\���lB�x#��ǣz���X��I6u�M�`�T0r�pm����	?Cl!��?f�F�	xAϊ]��s�뀣p~���u�a¸��Q���A10n��Ct�G���~#��݀�(oz�F_
#3F��#GTX�߭�g��Ǹ�AS���i�߆�cB�����/R�C�!`���R����کUayv
�l�;�#�mݳխK�p�Ԧ�>����{�'l�[Ӆ4&0AB}N]ٯ���ڣ,�/6+hb
�Yɬl�CE���θ�^}W��P#����TZ��>f�Y���E�{RR�p�$�j5�N���c���z�m�d�Gk���X֗ ��/��̲*f`���3���f���\�F��zf-m����R��#�6�	���Ne �L@`p�~
���O�K��/ ՗DK�:�H�3y/lv��X��uH'\"��P$�J�u����_�f�j5�Q;��_x��'6��Ȟ6��N	�-��<��O�TgO�'N���KK�+�a#I�v�/�����f�
���v=�8�CR�dNG�P�33�e�K�/CDLu $�;[��>����P;���.	����+���&'9x��@����)�h��)���e'8�C���E�)D(11٣x.j�"{1���}���hT����Ϭ���O�{?�Q�~�M��o�OW����plaN�>����Z!
E~����W��"i"��?�=����;�k��ʗ�?����Q�����w���k7���~����%a.k46
��D���ޅ͝Mp<�he��t�a\���2�k��rz����G�p�~�6���V����.,Zv|��<0p���VQƞ�؀��g�Á�:���K�)1��g1�g�Қ\�e����A�����P|����pV" P�lخ�Јx��;�0���%�b/.el��}�m�=@��=L-q8�	Ήh�����l�)F�@u���.�Y�#�	�-i9���ɕ
PN!��^J���=��I�
�=�$�@�1TF��:
X]E�(vĢ��j������z��y4]Z��0??����%�����E�E�(t9w��p���T��H�<�%������B=��J]m�-�m�e�!�#�}��1�%k3#�$M��cR�$��5���}�&]K�b�HMɬI�ѱj9a�Q�n0�<qtP�֖X����.ȁ��97>����	����Z*�I�.�k�2=��U��*���Q�:�[����,,?0-�?/���s"�	�gD*��{��JrU�.���\k�
��e�����~׆��X�������5�������#m>R��% �60���x�0by=��1�v|e���k�����^{���'��L�^ۣ51���6���"��h
��¢Z���oM�A65�^Gm�Z�-`�P�]bfSiNz��l��ov�2Y0�1cI��g<�[͆��������l�E-�%���j)Y�
t�8@�}"��T� �X���mg�Gd_V��f
.���
G~�v{��g^����rX+�X�>I~ûoR҈�Dx$<�$]es87!�]��` r
��-qR%-]�v�R�Z�M�e����>��&P����4	y����qR��n���]��7^�+��Vw�^���6q�&<�3` 7�p��Ub�j�-���K��uq����Ix�O��3жaKH.Nje�F�A�:��!��g~�:�.�
�4C�>3��L���T4��Š�ذU�ʼn�<�&)��`U��*AO�^�B%'i��/�c��$,s�DPPr�/�[2���ԜBk3f01Y
ߏ����O��c���wN��+M�{���v�zD��GyT���{H���8'�=��3�Ξ~����{��<�O�������?�}bG�NIA�4y苉�����9?�����nU$‡����?����y��8�4F�%���2�^p���
�Z��G�Ny�]��H�8M������G�^̓r�5rք�*[Њ�	�bbHLl!���YlEl�.ȉt��t�-h@
K@}��U�YjU��N��G̎*��S!�B�U:�~�o�%��c���u|��߭����A�I���R�,�(O��ɓkb_�Vh�U��?����\��t�IH�0�.A����rI5�&�:�͉MW���6T�8_�sЄ�5��b���$
���G��P��uR�ui��%	<��g������˂�u��
9H�ڂ%���w`qy��-�Ñg��?��&L�qt�8��<�d,i)W���Ie�2I��_Ŷ��F�����ʔ��e�ٔ��0۠ǮY0[j1ť���^�i�N�qckS�,�3�nk'��͛�0���\�"���Q_'[Ȩ�tt��a0m��U�����`i3�y�b�c�%h��=���V��
PE�\�y�[�pt���#ckF�Gx%FX�*�q�U`���U��a9�);nc���EL��i��f�GZ�'�B��A����`_E�a�|�P'���8X
�n�o����}sG��
��z�v���p���7wH]��s���\vM����^��o�:���L"
+���fp
�.�yűe�Z�Կ��+m�SY�lߙ����j��O%�Sn�$��h����`��zb�E�K��Z��jڭ�vaB�s@��b�����c��Q�N��b�z��tE6���M�ۊ�L���<���-7#{��SIz�t��D�AG�if=�;��]kv��jI���J�~_UZ]�k5�z��:��'�w6�=R��S-��n��"��V�my��J���T��ڏ!C`�ǃ`���Sqh�㬈��R�~�Tᕛp��:|�k����w<��:y�z�)X(��j��&��îWi'xK-�<��gE�oe��:L:����~�,�ҷ���d�d*3˚Ԟ�^O�#�ڲ�)��!����_.����S�?�L����W8h~�5��{g����A��x`0g

�N��c�İ\��
��uh���J�"�9{�ɯ��:>=���
�X�21��(��������!�bnr��*�:�,���WXZ+w���&8��5<��v��vـX�����o�X��F�+<8����~�� �tϓta�,h@�n�/� ]�Xm'�BWVq�=dJ2�2�5���'�nS}V!iK�� �U9!������{�қ�A��IK�Hl�"�����f�=�~_}�uU����>�1�@�x�;�!�H�T�bڙQ���<QO���g�Z�HC�9Zd9�K�@bϣ��،�zE�KE	�m��ؾbУ�����z]�T�
fa�P���w9fn���<,(��
�����L6������'���ןW[��"���,#�S}����؇�����9U�M�՗ނ�'����.�!!��@r��;���U^��&�:�@	�=���+�l|okn���f�l�4(؅]��e �%ad�������֝�"���s�Z���N/|�EX9��{{p�T/�|�;~�8d�y�ӲA��02]|~�3��
�0xϑ{pdd��f/P�s�0��ɔ�P��:�B����#�'�C�5��3
؎s�:�z��1���cg�6�,mz���V�p(X��O�F���5|��ܐ�>���>ҧ��&�s�c���bxMPvP�1��ce�=�GP�}��X��z'���9�hw�N����Y�%`i��A��Z�3$�_������;@�P�3SU"p�˶ψL�Ӛ��U��A��7n�Byy�l��v��FI5�ء�Gbk��ˍ�;���U���uf`q�B��U�YV��{]�qgQn&�{���j�p���ͽ=���M��*��`��e)R|ZLz�-t�����X�~ 6�D���I��,NL�U�����'n�V��M�
q.����h������m��=�WEȥg	��`���k�5$�V1�K������g���	$�?;��n�q���Z����#5b�Ϡ��|6
�ߞ$�<�Y+	d����p���x��%x��7�+V|�8^�bz�z��-�AI�,��Mc*c�����?9]��]�B���k�l�u��}Sԫ�̛��P�M��KNG�!o	�Ǧ�v�ݗ�yqp���w
���qdL
P	%��q^p�0�TN��@9�=F�+�3C�=xL`7`j����}�/~�Kp��5|�ž

2�G
�̆Tt�/���C3�����J���@�b9i$�a&Y�|�E�WzeԖ[���h�P�$�rQ���?�^?�dꀃ6"�%�*���+g��Ϥ�b�>�XfU�O#�%	Q<3�!]�v�c�E�����^�C5w�mL�A�t�R��[����m���x�������͞�-�,2�9�:0|��!�^
����$G�U�"�FB����,Ћ���4��e`n���%��<N'<��m�<��R�Pf�s�K���€���s�i(��IU�87�'N�t�a�X����'`m�8���eРH���v��=���l��o��i찃��AS�,M;m��KxY� `�Ym !�	סF��R��т�CaPY�(W��Ѡ��R����K����Ge|s	=RK���7�yX��ܳǎ'A���k�6z\X#�L;1j�"y��;/�^N��D�@YFW!����lJ��ğ��x�9��g[��gY��yƶ�1�UX�����'�J�$}N?�d�1wK���4,ctG�#h����%`�u��H��﭂g�Y��A8~]~�9#u5�5�-�<�2���#x��0�a}�u��H����q��|��]��r)/�cN/͋���*ع���;��k6�pv�\��:��/�8�V����ߡ���p�-��E�8�����6�8�]���g%:1�6���LY8�����&a�XP��{853
�;�u �˪n����,	#�8*�Jq���د��(�L/�1)a�*Ra{g�xC�&���(�j�g֤������N�+9�i�d���Oq��~)�RE�&U�7p�s��gR�Ӓ+Nb�'"�z�M�wp7�GC�骩�6�^�VO��³+��=����˰�l����D
ݖ%���%�LHs�-5�t҆BւiL^�lס�f�ő��I�l*��D_<����e�9�=��`�� (-��}yt��k��w�偀m��MB8��.G7�Q��Ql~�8F��8.<���i�Ԡi=�=�EoH��}�1XtmD��l?Μ>�י!
Ѥ(L?��5Q�G��2��Mk5WP�>VjD�o���C�7
j[ި]/@�4�~h'&�;1,<x���W�� ���
C(1�Ѐ
aN�&l:���aQb��F,"_.Q:���0�tV��8T�����X
��v�)�p�K
m�hA�� u�oV^q:�yG<�=��O�P��Kr���2F��J`i�,��j|��!���s|��ҠÅަW����-=�}$��c��|��N
rD	�BK�3tqH�I��sTPBl99���4��z�3��{4�\�G��޾ncV�MM�/��7L��{�
�e¿x���&�(�[���~�؀{iK�
/$�p�V�(X(v���&~���۶�
7t�[滵�a���Hwr?c�\j(#��2D7��R�Np8~� '��Jʵ	-��M\�Ğd�F��F݁��A��fGU0F����c9�f���1�+C_gx��~���xT]'�c�9���s����w��k����,r��Z�@Y8�=Ɲ��O����
��e�m<x�1�!Zbb��h��xMj�x��cF�k�:F�;./޸	oݸ��#��,�9_z�<T�M�W��{053�N.ݾ��ԯ�l�W�Aϕ�R��G`qqQ��y�o�:0�N�E;�7LݪH(�����4GkĶzl�J��z5Ȥ�b�Ь� O5-њ���D$`cg��:���Ӟ�b3�Fq��������֡����
4mR��$���\�l�������A!3��#�i&n,�?|��z/;�-IT��N��:�-"�X�_^�Ҝ܀�\b{��`koGL������fÂ�~��v$ {�\��n�9���;mx���ʝ�ڥ�ps_�A���{�ri`���ՙv �o��}�ܣ��v����7�lN�X��_��l�i�]��y<��ð��?I�#͍q�
�I�Spu{8�Q����#��fȸJ�5�u�� ZA�Ư����� ���x1�q�}V�<��|v�4����x��`�	9�Ъ(p�?t������a����"=@��mt���
!�,��.�ꖔƳ�T�h�2�29#��ZE1RNhӐ���o&�ad�t��3(��a����$Z;���,w�p�JS	#mh�|ㅗ �I�YE�� e�&���n-R��(�7/��f��0K�8��Bξ������}{�����n9#'�L8��2����<��jwa��ΗW����r�4�?�[�����򬒻x���/�2�P��4�l:�UK�
�M|���z�YR���i��/Hu�T�}�����m�M{���c_�Q�7�-��ݬ��˴
0�QZj2.q(+`�$�w��PhL�L�W��R���9֬�V�r��S~����ieq�Toy��WQS�����!2��RQݬٸ��W��'~��u�!��#��`[C;�S�#a�0�B��u"�B;�kp]�k�Yg�Q�^��|��q䋰Y�T�T�f�J�ZM(K&��s� �"�\c���~NJ�a��<'ҏR�1�3��������1��5�|���nA��i��A?�2�m�G,#0�#�>2f�mʩ;	�~������<���0K����"l�W��`��GkX��nܾ��ͮ�`��B���]��W!W��o��o���KL�{�̰S���\���#��]�K�ѓ�z
���J%�]�'�6ro{����4�4i���fI+��7Ķ��i��[w��HA����1�@7�A`P�X�:b��BHpx(�|�g_1��u��Y��{.k+k��ƇA"1��K?�B�b��c34с��
�u�.��!�;)Qd�O�C��ԣv]�w�G���<�޼�����ܪ@1��/��F���IN�8�}h��()n����3՛�J�!ި�i��H��f6�-�F�꠯3�u�u�6X`~�'aċ��G�ntm+����g��4�iD���,
LC�|`4�A	z�B|�~�d`H:F�� Iz��g8͊��P�N|N����,Q��X%�<-8�}r����Zq����:G�}Xۇ[�Jj@Kp^�.K#�ae#`6|0�ȃ�k��W�<��	��Bm�&�v��vP�	L�t��v<5�ΫkN�sPC8}��]�����_fAV��VcV������
ѹΤC��X�1�A�˕��!���td���X]̒A�H��_4�7FZl�	H��w��'�����4&���>@���–?q�Z*��%+�=�������U��A�-�Y�E��h�S�]�,a��Ð��m�T^�E�k�d^%r4�#���h��Ʈ*�43���ӥ���I!uN&����_�.�**;u�1=;-*�؉㘠E��_U�~��}�
B��)�?�4�+���2D]�
��Q$
�R9	_��@��|������P������4t�c ��]�`-�#�������Mt�f	n]o��Oɚ"Fvf�j�K�Vz�ԧ�cP&���R>�+��?�r���P�4s�(����9
���M0��{(k
�3&~�5\��2=,ߜ��������A�n#�Z��=����\���O�Y���$6�調�Erno܄���`S���,K�#������u
ϡ^#��2�#�m��b�BІ���h=F����@���wR��`|?�w��R��et�w\�YZ�2�^�؆��Z[���989����-����m�Ah��hO/à8G�9Bʱ�Mk�V��MR���m�'v���3�B�fX�/�g$p�bRm7��I�an�T�1�:�t�3(&Y��`)̤��<�SĢ"�'��Iå�г-�47����-�v�W���}4�
��jut�\�i�c�0%�u��y�f_fx{��ޯL� �Ԭc#���]����X�s-(�:�Xw�#���^K%�)��s[�t��M�+���%x�������O��o=׶i�!�E���E�|� �d/����>�x^|m@�H]�2v��4�p ��t�UqI��[j�����2�};Y[YLz8tmw��M�zm�
�F3��1:Fǟ�۠���>j����m��b�(u`C�v���� �ML$��p<�	Ö8hk�*�yH�q#�	B��A,�p�j��"(�(8��!V���Fp�{�n�@���ރ�z�x�m���H��7D:/�� 0)�3��2�6 �8aB��v�F��P��*��qZu#1�W�1iE���q���hnK\p$�^�r�?�3�#����*�De�;4t���dL��Xf��3���
a�A�>�<�0n��#���:�KAej��P:�F ?T32���ݠ�S��8"Arn���I�vUjiF�g�C��]b9{maR�;5�RC=-CWo��{�uЯskC*]	������g� �͊��lK�l�����i��d�!�t���uڜ4��-�l.��76�X�"�eI�ٌH&����v��is��$�n%3��؎+|4�@�j޵���.�Ɩ�CD��q��7��Ɩ�F�o�_G�`��Y�*��֌S0c���a����x���&M�z�IaV�;�ޏp,�C��IH����(�~�Β��<������į	~�t~�Iϋ�����N崚
b}Z�9�I�OiS52���R8�*f�{�Y�k���}�����1PzH��6��o�������wS�/'��X[\�'���uh������<35
��I�'Fuqn�T�
�|�\���n�M���%�o�<~��x�'39����$na[��d��)���}̑�|{{GZɥ���l{���+��y��ە,�bQ�
T�
Y+���7L�A*����o�լ0�Q0f�C��T�޼IB���w��-ˌӲ�=�z�]HL+�5U���q8P��CV����p*S�|�G�Ml��m*��m�d
aj>?�-��{4�o��oZ=���ΦM�i��)�HcE������i������(�<��<|�JY3�^ۇ��}i#6�����@m��X��
�\��f�
����m�r6��e6��k��8���;�`��5ᚨ�e`����4�c�7Z���`h�:Ʀt$U`�"�SAYq���v6�a`s�Ӽ����Y��z��4����&1�z�s# 4o��s0G+bF����i!SU@����^�O���i�DC�� A��+��T(|h�~p��G�%�a5��WV;`YB�3hb�թ�}�ᴍ��;��7��<Y	o4(JC�M���J���8��kM���H�>�'���A�/C�mˎT\����rϗ��Ǒ�fM�N�����ӎ�6���•��
���;�/��� FT
�
��A��I`�\TYzb�VQťyV�c�%��=Y�0]���^!
/y%t�^I��K���u�S��n���Ilhj�6B&M�P�6�B���jN�ʶ��G�	�b����^�H���8%���2☰U��//���fO�S����ds���%�ٮ⯲�W��q�Q>'�S�8K65�t�K�&���]x(�pHfL(-�����ٺ3��x�x20A~�q[!�*�/⠨Ĭ;�c�a2{�8y��,����agk��:j����_�@/����y2 �j?҆�����#ό�?�]�EM,Ww��&~���5Z�[�QW��[��k�]�h��s��ԡѺN�s�ޓ�h������9����(R����&?����X��^�^3�0R�I�a�icsS��'V`�VǫݞjҜ����_�<}�,ܷv
N[��ffN?H�3��%f�^M�g�]��꒬��/x�T���U.�h��XِY��7n݆��6�,`Ȏ�>�iL�%�I8�4��g�����u|��Iu���~��U|�y%��lb���T.�Mp4�a�p����%؞#�\��a�&l�2�Cp��x���,�a�G�x��Ú�SS�*�26q��}"�4{t��=�Nit��ï���c'a*3U5�_�6��>d�(v2D�Tj}1_Hd����Ј�~
:D��K}x�cY�}+��{&�C멥vi�xDĴ}�pI�Xn�t�VS����n��u��(Wll��Q����q@v���#{��X�>� �_�چy@�uD�0��Q����fX�q����tV]�r�Q�TjC�Z�F�ML������>�}|�G R��91G.�p�Q"�R8kF��=Ib5:�ͻ��O?�@�ڌ��2a��ACGM�fz8�訷Y@�ClD�#ȾؑhcN[��$Iŕx�[�[o��Q��D�\�6�����2v�h�X`�M�^��;:�y.��F�wp����~K����j+����H���@�GN۲����@Ca@�҈��p��s��a~Gmށ�VS
c�(���
����ǿLO�fx�P&��8=WRQ�=���~N���Qd�K�~6u`}����'�=�+�*�s�IH�U�f�C�xZHɲ-����.�����>�:X[>u�H���T�:��e1!p��9l��&@{w}]ԍ���.$9�$G��ĸ�]DNg����%]�b/�i�����2��tT.�)$�6g��!��b<le6w��q(���5A���\��X�h)P�*
=�%Z�"��b쇧]=�EbI$��rz`lj�1:���P��]���=�y^`2���џ%��&+j�	���9
Դn�
��gR���T���e
�a�����5��\ȑ:u�$Zvb����8���lxM�݃���^o�0��u�Y�
��0��pL�p�>��,�PFk�1��`ⳃ2M{0񰹱����K��^�$!�2�K����vu9�W�_P�>�}rYdU���<h����p��"�=��Œj�slIߪv�5��l�C�)8�8'��إ5�٭�c�JR]j�&�t��]��R҂�O<���Z6?]��~zs�T�	���Q1��=�8�2YI��h�<��*���?��,�� k��tz�DP֓G%@�T�1s�̸}l3Pw=H���l&	df�X��-�b؁ʖ@)>�κ�M#�T
�l�Qsil7v�ᇟ!�^_�yz]fg��+z�V;*�`�����&���p�k�Ck��q+0=��奚�Y�;S�Ѹ�oa6�P�Dvkh7��J5�\9+3�حB���jWa�t:d/��7�-����G��/20 ""1[\�W�a�+����8�a�1jc��Y [X^e�tU~�i�~fΆ�2'4��T�l��TR�7��P�������U暰=ƴ�h��])��:�T� �R52+�
���(����E~ຠ�`�k�z*����Y����>Y�l������)j�@uk����پIS+�z�>��`0a��$��#ys�^T$C/@
Z-�cU<�b�k,��6�㲇�|�Gu[0�up�;d�i�8�(1ΐ�=�LVS^����d]�<@'J�2��+'V���
���qh,�`�f��%v�'�mL�}I���rN!t�0����NR$���.�������)~y�󚥳kS3`ϰC�Ӷ!ALxe�ݾ'q�2�D�f�&����af�;�;��69.��ԉq�Z@�0����I���PG�،r�P�y��E8�iv��V�R�
-���/ܣ�ķ%J1�/M�21˥�-O|�4�olrMU�J��
z�c�dz23���B��X�*�M)�q7a��G��Gc�Frm��o�:�>}��ǁ���er���M�F��q7)�ǩ�aly� ��u�m�ϔ�ß����
E���@�F@�d�=$�1�Z����>?ڞ��:�O ���;���m�����q�*�,<�V�hX��c����}L�0�^[��/^���>'E ����W��7�^iI��K�~����ڐ�&�k_�*�.|ܷ�Ή����PHg��B�I�O[���)jΩD�9uBԳ�\EMu�^��VX����$i����\:���[�ڄ��e���E�'D�@Lԇe��6S� T�''E��o_"8�ƛ�pN�Cm0h��f�w��@�yb���6�o�%�fZ�����>��)k�E��d��ג�����HNA�]����Ss��˷^�-��L�@ĄG��6��\�>g�{��z�����]v�S岅|4Ͽ��R�����ő��8�Z��\NҐ����4�$����fT�ͭj���9F�!��8މM��llp.�=�* ���D�a�mg������2���^8�=�Vv�F�<1c�9_o���w��[4U�$b�ц�9�d5}����6gvLS
�8��gW�;0|p���eh�v
�N�f�&jԪi0���Z4VC�q��2&���ϱ�����{P�	��\4������\t�#�EU˖p_�POQ�V�mM��f�:�Ψ�Ah��ˣh�agb������}�S�ϊ�2��_������)�q�ax��I��� ��Iy�@�"x��+�T2=Hj&.�@)Ѽ	�� �l.�j��ŠaX|8v�|�w7-j��\���n�ǭ�%6�:��JE��@s��L�s/�u�'��r6�.�"��s���,S��֎�$��Nf�=+�4�>km��N�$�]o�o�2FVp
�^�e@S���IG�a�T���?&6�Ѥ�H�"�`-t�T���}�����ͷe�yc�"��� �B�F���_���a?�e�H�|��sGY�(�O�r��ʀ��������T�O*�^�C���
�9H�0�9r~�ۇ�4�n�º
����{�Oo�M�Š��DZ�"b�F�V�u٫2�4��]l����…KW�봰�j��`�S�u�k��q����+$�;.|�r�JWh�y���ܹ3�V���J�ԥu�8�νZ8���H�SP����>�i
[&����n�(�<\��_���tZ9�H�t��p�kx�T	����:ꈝ�(��0�-hyI^����J����6��3t�T�����R/�ඔ���#�4U��[mh�
�$�=�P�>����N��J�����:'�\�aI�*����9�{�Z�[P�߃���.�«�o�� مRɡwt�|Zڅ}3xiK&8��K�l��ܹ��1�z8	W�����\��_2I�Sz�*ѹj�k��v�E�ށ�6&�%?���:t�}��87	�	�ege�����qϊ�A���PUoln圤>7�^�~�<��LD��	A<�k��㮋Qp:�M#�?b�r��6��af$�AP�tz�b��������SFS�<IE�+�ZT:����k���g&�
�x��� I��<~yg�]�U���=����E$��%l�L+a�_Z������IK��Fٚ-%q����J�L-!� 	Q �8��{0WOwOO�u_ygD����=�#22��1�o�+#<�>?�sufO�T:Ӻ@J��(a�:[BI™�*\��ɢ��<�\��(����c.�����)��[G�Ɉ��e�#(8�~����©��{
{	�u��Q<\?R'��!�5$���m��=/n���,���O�Dߵ��1&�P͘��<�x�Ƹ������,���ڬ��[��؂:)�m��5�;��?�T���F�+�z.]�A��ܑԚ���x��ϙ�J
5��4�;�zI�3 �6�q�m6\��gD��X*�ă�?§KX,E�T�"B���-��6kʂ֛�U��Dhw��^!/e|�	���SB���"��V���G�qk07KY3��i'IX���K�vO��D�|$ӏo �T���L mN��s6�����������'���:pRY�v[�eH�;-/iu4��_ie��?Y�iu��Ժ�7�r�:�^O(�qJy��EA&���q���k��o	���{k%87��o���!�'&Q슓�"nM����b��mN9$�=}RV�(�E�ه�63+Ʀ&�7o����uev��8.ݼ.N�?s�d��9)._�r����O_xM^�r�/[���D�Rr>ّ
E�/�νк��K�:��:�IB�����m�'Kn s86]�d�e		oƐ��8���Һ\Y��d�K���J�����t0�e�����E��\�j�����x�
~W�Y3���}����ʍ� =�����I�}3���Ak��u\Os�����X���B
����r��G��(#T-=��km��Xe���"#�(��&PJ'��5�qL�B���h��H�v����fS��ຑ^�HLn��X@�� ԨlZ洌��2�;�8C�O��Y*��sXQ}�z��
ðz��E[!�� m�[2o�����Xzn,�d�4^�]ڍ��X,P��LR������	�N�5*D�Lm�L�`�_��FR5	��T�Zy�U��U��4h�w�ű�>f�$��F"�t�ZtF=���҉5���*v�AP0�X��f�q�tL��Yd2'���t�5��c����9�?�(�*!2��A|��v,L�$gN��*�Wҵ�u���M �Ht�9''}�'}de��b���nF�����NU
s�1)!h}p�n6*^���1�O�QV��aO��җ�~�P�*�>Ǩv�S��ޱ�B�8�]D�@��H�k1�V0���0��'�B߄S8$��>%�1w�*M�ၼ����&�pq+W���(%����=��ai��%��u�����v�}/�ֿFſ���1��,,����kO>	�Հ#S�BT�$������il(�qyE�G*2l6D
�R�/�+|�ԛ�X�"k��rSg���D?t�P.auy�fC�g�"!�o�"�-[ݶܼqQ�>v*�
dZ��<V�O���^�w���ș���-ql�4X ժ�/ZH2��o���pl�n7�r�}K&�%�Q���|䴒kf�ɮn9�n�:\����5��E�pJ�Հ�[�Ł�c����/�1��g������kE8��~�~��O@�\��?�|��3�蹰֮�r�(݂�kͮ|\/��+ȁ�:¤t��K4]B��e�Hs^򅼠&�a9�+;=V'#�6��uB6�t������v]V��82=
͐3�6']�;
��lѺ�B D�̔�;�`N�]X��?�te9��Nj�>�1��AR]a��Cl<��@0ĺ@TO��i��6���4'�$����J�?jT;`B7bd����B.�z�B�RK�c:@@t��u#���hj�tC��Z뵚�͚U��1Cp :���]�FYbEx�ԥ��ҙ�b��|�d���GiD��%�[�27V��+��Sd�9Ei~��!���0�{��P�vM��MMRa�u�h�h(;�����y�E6�N�NۤcO:|��ӻ�0��N�P1����i�	��A�#e�P&�B�Ǖ��>BSw�[��$��ۀ\��Y�
��5l.WHKW��gumǼ�ĥ�^�]ʡ���Q�m����Rg	�/�tm�RZ\C�`�̶[���zP�c��!u��2��Z��:���p�S��ꯔ�D���̏!�k�&�k(�P��<���
R�������"8��Ї�秡���7��u�e�T�Q���2���D��E�"�>r�l�\zt�����F���p�K�EN/m�ɼ��UD^bQ�E�s�ф2��vD��.�|F�y�:3=��5D�WX�46��m�4�
X���J&�;���@��]W\[���-}E.ݦH��}��F��ƒ��<�o���U-�/���OV��s?OT����~�%�mv����ئ~Q��y�E�w۸A(�f�MLgɱ�����P(ì�kiO4ێ,W;���E�\���c�9���`C�ڼ�R)2��As�͜���6tr%(�L��E1���J������KX`N�%!�f1�u�Y����a֑(������wò��EQ߷��IPi�����
[k�m��4��bĦ��g��eK�m2@6�K`2aW������j�Al��50u@�"�W
��E��u�I/��5�7/u�ANZ��N����ԥ
�p�������H*�,���AȦT���n�q�Vp��"R�6��A�czt�Hs�IZ�.]:�����OY��EZ{�p�NP�����Ő���Sy���;�a��;V����)֦(���i��iM��˔��?�OH�o1��ƍ�aI���:?�/�<�]��0ʫH(���-�֎:�V�<���b�_H�A�6S�D���ȟ�kw����Y�SS�׸����/�OQ�n"7�/VQ$���ӄ\�*g�a}cENL��a��"�<T��(ڀ�z�58u��^���q"d�7�݂���֗��a@7
�Q(��
�v�^�	"�L�Q�%߮���xհ�%X[�V}3Q�[��)��آ�2����p��V}H��[�X���9��,�	���������^��s��ZZ'٨�Pz/���<x��m���</��9�SH�7�������h�M!1���>��7�#����8R&�d�{%k_�w_�[E��9�u`}u]n ���#���=�t�9?.��\�荋�U.�\���>k�bH���rl���k�`�g�A@�inJ�)���F�%�Gk`8���'B�j�Pȳ�I���f�G��U���!;P��\g�D_� '�bzD��?Xs���/�<A�ʕU�X-t�.� '����	���4�u�EpX�y������QW۹�������N���k�(�٬�p����������^��3��˳�I�����������2銅� o^i���1�hu��rA��a�E_NN`9��m��)C�|��[B�"'���Tށ�D(����ıF�#���f��+���V_Zm��em{��L��d��������9VO�F�u��:V�S�*Y�����ɿal˶Z�MUYq��h��,�Na�� ��T�.V��n`T��k���3������W
`�ULb�&���iq�ꁀ�E�6���:��$%��0pz�։P�)(�`�IniU*�R�}��^Ԛ��Ȇ��(%L���4E�e9��Y��7�]yV&��a+�T��>�|�BIa�}�Y�>�O��{Sf��@�Ge�J\��dmSʼ<���E��<�-V�%wiI=��&D2�9S���@K�asS��c\�j�6�_i��4nV�H��n@�=�1`������H����2�ǟ�c��Yʸ�k�k ��Vv�X���7��n�Q���F��谷ۿ��Jp��x��?�w����W��
:<�n�ȠӢ�D�,�DYݼX�؆zk�taec�����
r91>-�
��j�Ғ@Qd���6�c����L!&>��'��A�-�I��甭�����V�߂�U�hEm6�P,ʱ�r��E�~��#��jЕ������W�����˰ofJU�/~Y�l��ʕW%Ji�-�:�*��:4��-Fm�Z��
!j%\����ڋ���9�in�����I�X�祓�Õk����:|^����C�P�.����D�_ą�-�x�y��=$��&�u']��v3m�˜����?���J�	<�oR��00��
6;@֦כh�-)E����5dE�t5w�
�	/�cU��çNʛ+�Bt�r�Xn���]�ީ�Kkb��e�Tz�	����ɎD��J�%�"-�aׇ<�0+NIP4d�xC��9�ni�۽�_1��(�T(��gP���B&�AVy�8�ρ�xs�r��*Y���Y�̮�t:��ù�/@X�K��k2c��Z�ѭJ8�P�_�\p��_#jq#Dw�dQ��
A�^�����+�b���ө���ښ�v�"�͞8�߃j�
�f��%�o�͆D�k�OV%�!ݼh�<f��(��e���y��05�Ʊ�ȼ�"��t���Њ�f��u�1K�J�f3�
)��FC��1�,3G�7�>��� �����-�W��?�n;�⩱�&�so_LbGd�[#pX�΅��J����D#��*y��蹟���`�׽wW*��i$���X��k��&��$k1�bߙ#���l�8�?��X#�r�'U	��ҞT�g�PGݮdf@s����V�JkV���1��l�]����h��ᡱ�k�:�-U1�Mғ�)�r�-a�����������
X��[@J��BI���	�E��n{����f�J�q�3IJ	7PN+��7��2���?��4I��U3�$���S�!�L��$����|��
ib�|o��Ƞ@�t�h%��g���D��G���ʒ^�]�kܷ[w|\�/�񃓰�5lm���|�å+���q�mm�as�M\�(�Bx}�
|����k0=1_�ηp܄��{ܸ�S�E\��� �|�,�Ŷ�|�9���>Ͻ��|��q���*�tB�
�=_y�%8�
�/m�t�U(�!c���]Y���^��<t�����*|������o�	'��˵�<2_���b�Cѷ��:\��2�z����� w���X^�	��Ex��)�׿�[p꾇���ڭ���q����VP�1��nQ���bj�X���\�8Pc�/(�n5�����N�u�~�Te��O�� M_v��I��S��Q�����U��du�c�����p������tA�"�������I�`�
�mi����0��A@���!`�W�=p�خ��8nR�k�j�`�� ��N��\1O��� �ZP�9p��>C�{7-t0*
�9�8���v�!�X{΍$V��wQZ����^��8<�c��Ep���
�3�G��zׁ��u��E0�����A���n���JA���`ԥ�$�$���A>�c�ԃ��Q�;����sǠP��-�L:�!��:�n`��5��}���
���HϵEf*�x\��k�k��C_p�F���
��8~;\�sa{
�Y� <��xnc��l����A:��V�c%h4:
�6���%mְ���_~��g~~��۸y\�0O��|�!Aō�cn E���ߒ��E��|��Z���&�A1�e�I.����(�֊)���s/ff&���\��$�5�y��/���7�9ס/s�!]R�0��s��
���c��[0�3��;�����I�6�5"v)��o8Tڿͭ�"��+.V�������O��P���T�%�J|R�5Q%�;�^�+�;f�
���V�0V�t#���e�9��c�u���g�8d�D����(����4!:|��:4&�.�y
[���4��Z��O�X4T�qJ��8!~eT�{�srf�%��jC�9�s,^w"lR�.-1����3�
#,�(ڟ��䏷9�s*m}V�8i���8������Y�D:�4�X\�~C�8�uC��|�J�]W\'�){G�d�`7'n�
�X��j�X����Bl���g���s��.^~U�!������^E@B%��[r~vQ�4�e5W�Ju��W��~Y�N@���&.��t*(6������\��BA�;�p�,'�'amf?4�-U�xJy�%ȇ��U:q�\_Z��b��纮U'I�*s���%<���T���C�b��I"�V9�(�=:;'���/,0�:w�#b��\u��81���q�2�q��=)w�v�=^+��܂t�[8>�<��X�'��]���-���Sb|rn��*�q8���\?v���,�C��c�`9̵�i�2�D��/v��g�������A�k��N���0%%����Ͷ2�"Լ��f�
h��XБŜX,9���c��F[6ֻP��~��ݒ�F�E���E�|k�+��G�����i�9!zI��*�ᛒn,D�>�������&�A�wsc�PN����$\{�}���p�%�@m�w�z�L�J&���.�9b��D�%=Y�4�����~ѓK[�~���VN�%�<�2�Ͱ�H5���V�m�S�.Up vP@�R�&�K1>�7C�i���"H��؁EX��G��#�]�/?�?��?�<�>���uG��y�sKd�#���Y�v-�te��"ﶀ�Ci�;�m(x�Z�kklV�N�l��D���	8�񢔛�@�P�E�\,K��i����%�:��LI��`o�ֿ�;/�
��S��_�G���\�������eX]ـ_��_�x�t*a����߄��W����g�<���ex��*l�t��ٯ���'��3x�#Z�쵄��a�(���e����i��DcgC.�o�}�������ԩcr�[�u�#cSs�����1��u�^W%ę[�[�EB����*,+܎�9r� �آUg�	�$��g�������u\s󧀾�0�UHԵ������- 3atJQ]��x�ؕ솚	��r�"�L@j�J:+l��A�:�B��P�͔"�J��d�$0�rY���D\��m�O��t��:��)+^0J���-�n�aq�FIii-��b��t<'i>�҅��YWi��=��q��S�K*�'w�R�@]���C}s)Q�Z�"�����U�/L�7�͟-b
-]&�h.5x�`D��*	Ha
5�� 	j��L]���+VW�t����W��O���n�5�Y��G�"���#Ξ����S�"�p�e���Y�63��V��W��w�}D]>�lY��2K�E�#�2��9��.��~�8}�^�d�E5X��Or}�<�@Ğvu���;%ݛ���7.�	)�?�{����lw�y�2�	�$'�c�)	�8�DQ4��[�����V2a���եM\�|�;p�ݼ�^�;̆	��?.�c\��Spx�q0��x���-jw�O����~�:�&�M�@�*��bL
��d?�~k�q2�1��Ӊ_�Ib�l���f���.�H�����o�RB�%Y;���DA�%�!�������/�$��Wn���(�&�M"��ب7�f}[LW�������Cs�4,5v�v�+{A[<�;`åװ�;Po�@���B�e�/*edo�ZO���>���!E�-��TY������V�(^�т[�
j��Rǐ��
�,!��fE�X]"�PX"3���n�Fr�B��ư#>z�.hl��K�7��8	�AwcY����;���y܆�\B�_�퉚[���#���j��lvD��9���01�u��
��wX��I���J�����f�����P�r��<�䍭�h�|�|�h;lc/��a�.�e�e������s3��/�"���w��7��߅��W>%.\�?�?���#������a`]��/���/�ſ)������/�g~��O~�'��Ղ�}y���[3��+f�2���]���6uſ����R�X�娉�C��y���2�q�J�:H&�X��ےX�b7�:�3#�nͺ:������ڇ���b��d�Q)��u���b�D�q6qh���$ʇ�B�����ٞ��@�fA<��|A(�*GGs8�,:s[W�k��>]@*n3�u?Vd��bd��2���m_N����l�[�^]���}A�1Z��`�;�a���	�$��&[���6��B�sRl���ػ�a�C[�]j,,M�e
�k8�6��H�Ȼ9�i�-�1�<�q�qru~"�&;�ijI73�iDx����!��[��C�o>��Ck�&N����,l����߱tŴ��d���>��0U��p��9"�
5r�@�l@���w��s=$�	@�E���F��Qݨ�WG��L�h��a�.O��z����$������ap�������Crz�#ᾶ�0���<��HW`h����an�F�-V�:����}T�8I���Qn�Ź��N��t��uUB�SC�������ǐ�b>�����r��C�tè.{�^�p	���>������=xn��M^���v��8�3���5�۷O䶶�5�cE�~s�W�p��B��B�X 0�Ƙ43|�f�k6w�V%�J�����?0I�!�^:X���9�x%��u ��i�{��m!!��X��r�8T��9��H��Xg��+B�d����;��V�T)���A�\���Mh�B�~黲�����\Y�e�Pj���a�+s�&P,��*x�7��(�hn@�2݆`���`���-�
����uE����f�u��.�&�KvX*�k�#qV�����@����2�z�5䴖(L�ꓗ��`�����sS011d�\��'��e�_��	f�+`UR��ٛ��DL��-�3kҀ��6��E��>��^GiיeR&��X�7�h��h☛�ٮo{m�_O�G#��U�as��{�I��
;���9i��Rq>x���z<�����u�&ೢ���E���2B�0����l���������=���9�4�i������{�uP��ii�}��d{��ta�V�V:![a@6	�#m��' �K	�o{�q��G���<�X�owޘ�A
G5J3L��a
��9^30l��/	~�jbX�NB5�Va����X����8����ҚrX��|`�=^�`�1Z��u�F�����T�`�_)�R�L~���{�ϫm��K�
�b1��Sw�щeU�N,�~�~��4QtZ�{�G{W�^�(���M�3��Ov���ꄪ��=t(|��>E�	t�OH��D�g���|搃�9�L*�/�a�U�Y�j�!h$�^������KL��邊b�(V��~�l�d�A�?�n_Ӷ�:N��<��%+nH�1��%�2��5�@��
�C�e�բ��b|?��,t��ӝI�F���U��M�Oe),��X��j��I6cEP��2lǺ:�(�l���d
&�e�y��;0^D`���FC������O?�DWn5(��*9y��euK(ߞ��'鳒~��`R2���H�����m��@��z��f.^�>�u�U_��<�Ts|@�~�� ]_��E�u����^W���"@�6����|�&��'O�9�����?����be�X�!V6[�]���DM�-Je�m[ 3U�M��'zu_./�(�<(�$���T-�/���.o2�����A�p�Ց�B^tZȶ
��u�`�x�撮
�re@W۪>Gg4�[���>r�|�w�Fr\����ȿ�?���R�ȿ���p���0��	��LVPƔG)�x����Y6v��-��n����⼸�̱��Ҝp����h�[4���-�N\-A�|�4@���a��E�f�UX~�X+Oɵ���X=+C"��K˴��#�+a���w�VV
�Rb��u��E�o���$h�q����:��<[�P�`s80�hx�F#�
㇠�Z!�\��J-A�RsOB�,�2@�a
L�!م,Y��ѝ�' (u���a�2��&�Dju%��
?I�k��a��༝pI���ُs�B[�k@�eh<��Q��=4�6	G��$wc�d�m��o��-U��Z���w����t\�{��#qm
 �^Bۓ�xA�i�'��oA�@���<�
�72�RZ��,���[n���E��ą(�tDk�.�ݮ��g��x��yjB�Rk�>Q��-L�i��!���x�:z���q���bnV9_����o�ܼ��X�T� ���7���06>�ar⏾�E��
�?
ӳ��:��-���+����WtɌp����ܤ.��H�����M�K��B�-^�څ��^��W���6m S.d�xmZ6[b{{ʭ��x⁇e�/��NS����������Q\M�9�t��c9��+k�01=%�uQ-硎�O�O��CJݏ�ѣ��c^��K�q���i���3;��y�`w,Je{�<'�l�^��U���[]�W�A����EyKƺom �w9��N�-߃�/�}����mb!��a�x�%x��C�[_��/_��M^���@v���nwe�C����[�p��ms~�w^ս�-��_Dz��!%���D�F<��uj�^(��P����x�f�MO�:��y�a�'�l�X�92�ט���p��
_ݥ����c�rG�^v�(U(C>�]'�b{?�W߂K,LT���3��ʋ/���C�o���R���:\�2�k]��.@�E��
�#��n�R��A����q*c=hl��"$X�\�=�aX��zO�\O�~Dqz͹9�������
o��)Ƽ\$�J�>�W�i�\rݍ�޻O�:ndy�]��}To������6��s���oI�Gs�g>�w�W�����G>_��Wp>Y�s'�c���\Ja۩U��F�@e\K��G���ZG�a��1d�r�?�0���>���4�)!�p'�hS�H�{!?Sbr�:��E-�b�'�4`&ĸ	����Y�zQ'��B�Ml���iA,\_,��Zc�����$R >-�C�!sd���pV�̲���������J��&�B��USd,���A�0(���UJ�]��oP�N�����v��FI�Z\nz{��S)����O���,��!���s��b}ZZ&�l1IZ�	n�g(X�A��+������h���
#�'m���X���(?�hX����K~���-h{gE^��b1/\�
5LJ����s��<{�%8>5	����}�;I����t]��/�-����/��}H�q�{���C�!Gd]�P��=�w}@��?���G�[�m/˧_�Cg�i�.M�f��X�����o�#'�o^���Q�ɯ=�M�h	'N���!n/T�ȡ#�kmydv�Z�KW.���C�m@j�2��7�]h��[���3g��_���z�.&�E�ș3������=�t�;� {��.�ݐr�ڳ��!#���w67�p�"l�^����W�?O?��p�/����\ț:���/t���G��Or�$q_��ml@�Xc����B�F¶�Ux}��
ȩ�n��_ق�r�6�����F;���7�5����z*�U�Uo�B���Et��Zp�w�羅�.��:(�F����,��[p`�d״�����3���A��V9�>�Q�n���a��Ķ��b6����8����6����zH�*�l9�0^�~RF�Oؖ�v^�H��V7mv���7�����!W��@�B��������A��haJX��[��/}]<x�\�u��p���q��ɦ+Lx�"�+ Wv�7��d�9�N	Q�
rm
7��Um�א�[��-�j͇�F(�7|I���
�A�PD :7�H�@�o&�r��x���Z%Mj6l��\w]w�MH}�\i��@�$Ku����"�
��~���߼)�������M[E�Oa�������6d=���Ϧpp�����*�����,Ǹ�IL�����X�]H��ݼ'遷�h�-l}�T��D�T�SS�j>$Y�2%�d��X�Z�7�)L%��q��d>p�;?�`&�9U��@I�٢�
th�}��J�I��TU
~���d%6���l�X�RW��ԥ	���0�J�SBM*�1�<W���_�E�"��g�O�Y�P�e���kV��H�;�]k�߇ŻI��{�nl��n��0�]��oF!҃.-�����:P��0��`��~���>D���}�~3iE�:�bD�x_�):Tz�h�I������}uk���. �-
��ʊ+���}S]4�|�ǥ '�V�@unE�;��{���W lu���v�s�3P��f���@�29>
��ay����8w�\x�
���\�+(�E��OV�3p���0V.�sw�'�t�#��g������'>���^��;-(�R�Y�`aj�~���l����ƛ��(�+D�T���Ds�.���;ٝ�����vG��i�[��7�mQɗ��?#���k��y\���V�nc&���_~^���Uo#ח����^�F�''�T�ڢT. WzR^����k���퉉	�>+�gB�d�d�3j�p�����LxJ�-���a0.ۯ����53���@�+�Q9H�=Q)�՝r�}�s�4���o�D �{�)��3ω�V�sȅ��;��qtzL����♥�<S��JB z��	/� ��}rl�d���D �oJ�}�c��O��f�7�@v��
ēȝE^�����ul�t�I��D����ci
#Qtņ�j��6m��޼;}�~�B���ۯ6D�E�XӀ�	�(�qC���|�
�k ���e+$�Z"���UJ]{%\C�G�[�Ě툀�+���#������Ƙ���"z�)8;?%gۯ���bc�!�v���^�ں��{�� �\��_�t���r�qEF���ZA�����A��P�D���nX��eS9���z	=vHϼሙ�c���l��D���f7ƙ�tJ�kDZ@a�R�~c��-�����?�n������Ӂ�Ěb��0���osn�j��Z�#�u���0Tz������w".;l�3Sd��z�}��h��v�A[��|�C@�1{�Lp��m�2���a�
���*]: թL��X�I�qp`㼚��\5�I��Ь��(��Y
yW��".٢�搒��:6*������5���*BNh����u�F`}Y�c�!���c�B��;�H�Q���vh7������O㤚��IL~��$9)z��=���@�v��L��.4��&�o��A����.�u5��
B��0�ۆĮ�ݞ	p�M�)�����j'
�)�ȽS|�iq��>���R��zC��P���@m88|�$�w�q8x�(�ҽ��G�A$��������I��.~����$�z�?� ��|�������	l<uXk��S��?�tR�a�E�?s��c���C?ʗH�/�?���N�\�c�gr�E��}��A��ƒ�	�T�~p�>��D��8�����ɻu}<��4�Ԡ�;�R�����ç�u��l��M���|�v�r�'�y�扃��`kqN^��!Z�0�\���|��,<�3{חc�'`��:���>:%gu��n�)DM�R�$t���Ǡ�m��1��W��X.����� ��Q��q!��7?�;������[l�����2S<�7�;�nW��l�Nj�mF����N5��b��sC
uY��3쀜�tE����#zA
^������\�4��ȉ%��P���D�ڑy\�f�.�fs��q��)-A}�2}�B^�\�����b})�m�BA|��߄��	�@�[A�i��~[�\���6�Y��r�1�h���+��J����CWTk�6���u`R���VW}�=�c$����9��ިN����^ַ=��Z����V/sP���@M�_��7bx,v����X~����[5k�LX�@&��!����i���K�e
�[,~{�0D� )��a~�ܽ��;�AdxY��$A��ee�4�ºNˈV %�PG�A�h���R����������q*��z?J�5޽k�w�����)�$���x��*u��׍�����J�ɱЁ1�"�M���ZB�^�p]�pu#�5�A�'u������{J��+�8yy�'�e���6ý����!m��E(�D`�%�I=Y&ZX�p$�o�.;��1���Ȧ�}׀6U�3��n7þ�-~��}I뛹lEQ����������9ئ��c*�*�LXz�1I]LZ|Bp��D�H�iN�S��y}�f�rN"_Z�*��]f�Q�54�H~���;�x�c<[�&�weeML�ޒS��e�vۇ�BnltH\��'�-� @Q�ڎ]�[�"�Ǿ<	'�6�����"x^�7��0��c06;�a:��wn��ɲ����<A������f��eX'���bQ��9:�E��x="}J��F!�+YYH�~>r��˄��м�JI��c���ܼ�&���r�9�o�D���<_�(�w�J��b$��M�C���T���x񜨢�����5���/¿�8
�����#�;�}�Q����7�cg$�ԗ`�P	�<@�BWM��qK4���4І���M��!��U��&��N����Cw8 ���0�C)����m���`�
C'��c:KӁɉ��[ے.Y�ak+�09���1@��m�Ҟ��ÿ�6��X:�*m�p�ͤ��F��i]�`T,i9�
�͛��PPmSѻڴ �H�����إK�Wev�Ɓzl��w,�@C^�.Dp��!���*��q�ʷ�p11����e�i��"�nO��]K��W���zJ*��T��ϖ�3 �Z�cV��Λ�o�.�"�*c��/�*��&�˶)��ݥ��a�\^�t�q������K=ݘ��dO�<�b���
�4�0N��V����&�BJX�=�}7J�&�����пv?���*f�������&ti��eJ��X�0[�a��&/�K��?H�c�˞�lΫ���Iʚp����A�.��"����*���(J���[KK�v�����Y��<�p��`H���м�s�L �-�)y=����!e	�h,��h�B@H#7,�h�"�!.9"ܰ>=����ӓc���m�y��6'o��s���>p�Xj.�G��^���mA溄���xlVI��=y0�ҭS���[�Ծqh һ�|K��;�	sd�3�1�9�!�]��l�����F��� �z\�:�v�'�(G�y�����Gr�]�וy�P��|Gubϙtģ���]�5��x���;[8!��/B����ryۤ�`��h�+��t[L �,���+NjJE\Xߨ���*�w�+����3��jiL,�B}/��`ugG�JN����1�v�2r�s3�z}9�]��x�ǥvc���2��||��s��us���8GNl(ݜR���ʓi�������+�z=�CB���nw`|� �g�AE+�(��ci�ph߲�i�hX��_+D�*����f��}�66ifǀ��E�Qv|��#Ż�tM^���}�
�b��o�H����\�~A.~�
��v1[�و�j�סV�.N�}�,���(:�(��u<�>�����q�����^�����A<33�v�vk�\,C��[[[�v�ERTA�\.'r�6wag��KdLZ���C2����C�Iѥ�v���eP�J@Ok/$ �%��RǹX6J�&�=��s�$�G���,YC<s�8�ݶ>-N�1谍�A��V���(��p$�|dd��� 7�$F
k̭
��ޓ�FKxD�?�_U��ˁ~��ߍ<Z��@�R,�E^��e2�D<Q�;@RT�����x��0w�Qm(�/8��#
�s�t?�򢝡jh������jcUI��D����I,�b��H8�u�l�ĭ�?��887����q/2�]��tL�2T@B� 4�S�0��-"4U�㌕'*���T�Ig���t�'�ᅮ�s8��+V7z1}iG�F�40ПX�oV�z��n���M���C�ݩ��29:&l��)_��%�?sTj��Tc)���:)c����M�X��#tHC�ny�M��K_����t��kp���� �T�H'�X����skN�'��^~=��bt��N��t}uI4wց�����9�s�}�x��ž���zU�v;�v����,������G�{���,[��v�U=Y�UY@�I��O��rk+����/�{p`�n��K2�^�	\�
p��p��>�TPG����W�ֲ SYgf&�[o����ڛ���ka�ݕ�%�I��6E�f�� w�.D�"#הy�<�����8'��֑�̢�b�.��R,��޽�lSs��Z�U��:>ғ�& 78y����2�َ��|kAl���'d�І=_��F"p,"��H��HUEȥ%�6]R��N�nN�����_�.����/~�O%n`e9��P�MU�G���������2_�!&E�[h�䬀��
�"�O!PZTo�:����:�"�i�y.��*�[��u�!3�z���ԡ��8v‰%���͗��k���۪z�H��\6#C����s�te�3I���Q�bq�D0��'�8�Ʀav�a��ل��UA��|	b{x0�;�>�8����E�S$�,tq��!�=q�4%`�e�^��1�J�))AL2�b*�1�	�}��������`euU
����/���,����P,�V�aG��Z��w�ګ�s\��p�)��[����)��%�R�9�ah�1�ieYSҞY��z�⺪�f�J��n�y�P�-��A���K��9�cjz��b!�]�T
�٧EH3�q9�Uj��+�T�`�\f�ݮ�{}�]O�����x�nߟ)��C�Q����^<�(�U��O-R�JN�F���	��3�W�fd���kn��:�jpH���Ui��;/��oO�
^���=Mﱴ{��>L��1�*�@} ���;�(_�
P�#�HtЯ��jb�,��9�`��E3̏Ք)W?�B���{�8���������4&�(�u�BΐgƱ�
�F�
mV�vI�E���������_���y�ı�� ���%��y����N<�s�"�Z�
Wo\�G�<��W`jjvDn�$���ܼ�����K�ľw����w~�}�Kpke�<��Ξ}�߼ J�����ܒ&�}�,<�ڳ$��	���W�`�\���JLG,�-C��¥[+XG=��E��ؔ���qEx�o�����=�q�(5��u���.��D�5�����0P=�F���t���XE`tlv��F����Sr%�9��#�$�k(���etnjR\]Z�;� �� ���V���3�1�[06>&d����[���Ӱ��b��\a���Qi�۬��Eq��Z8�Zd��fs(�-��Zك��9�I�w�~;�����7�VнKtX%GF������\�U����=J��B�ﵷ :p�X�x��zs���X�\'n��ٙ��lU�ת�s������q�B��w��*|�}�}�y(a�� f��ImCe|�W6�Tts,�j"��
���8��8U-�Al��U��tq3�Nѕ�8~sX'���:U�;�V��ȑ��	��!�M��q�zW�|���I�J�h�Un3[5��J�V�ucvMXW�Q�2DIƖӏ���>�M���Ԥ։%�S���_�jGUڮZ�2��`��pT����Mp�U�=�͵�����1_}�]�O#(A0@Ɲ�9I9<|� �{m��>�.�
{����f�Br%N�[
m7��9��N+1�A��܌�w�
V���ݥ�tr��w:���F4@��"� t�HN�/�f���*�G�UƬ._� ��L�7z.�rraa�M<��K�!z���̙}O3�L;HΗˆ���*A">Ư=�sN��	|%v�}E��&!�*�_�V��d��\���3�����;u��AO��Z��70�P=�4�*���҄e���
�� ݔF4s�%@\������i@��LG��z�"Y{��+�t�-N[��q@=�J�Dž�n�n(������¸q�B�CŊcK�2��+;��C{օ�$B=��lh�^Z;%��W��m'�4�#�X���i��|�0q�yU��_M��*|�$��xK�<u����r2��sg����|��g��ӏ��o�$Ey�p����.;|������-~�1h�2Om�BAlݺ,�\�u{g&����k���/W�ʵ��]g��=�e:����r_�*�bNn5;��+��۟�|�G����p׉{a�6%6�}J+9(͟�����'d�p�����*:tH볍����]#�Hֻ�n��L	��K�Y�K;�D�oQ������qn_C�E6N���~G��"������Iyh��Aɻy�P>?7?)OL΋�]]����M��kk s�@����#���~�V
J����vpf�u'_��a�0���'r���~�/�)��B�M�R�U�!�P�1{���T2�����Yȹ��%��Ge�e�����@i`Xb)d�c+�9�>.U!��1iJ=\�V@�!\|�D� J(	m�
����6���؟����n�#��2�d�xg*p��������o��[�?[풸������yh�7E �h{�����
\Yn715��md�`���bn��Y�Yo���
��@vZ���'\61��|ȍ�X7 ��#���</:Z��0ISR%H{YoS�-<���*9�4���L�h���.X���G9c���%��8��Qԟ�_�Ek��x�R�imFy���g�9�A��iu��&_�oS�|>o���{��<y�������%�ϸ��]H���H�~G�i��~0#��D�˕�i�$��8��s�L�̝�GFz0�+��I�����2}��Q�޲�K��l	�UeBޙj����<�wĪ�t�/߳��p�t��k�G���2��SNq	'ǚ��^舁����4�@���/mA�S���{�{:�'g�f �Nl�X������6��n`�q�b{P<�X���-���1m=8~���<�0S�
3Xs`͑M���)�7_��e<I��8�"(du��CFQ"�6�Fw�Ц��+�i�V�����6"�~
�]����A��`�̊�c���u;x���B`��
{O��=���8FŗV�M��#*�ǡ,���w�8m�?����ކ��A�߼U��:y/��Ƥ܇�����5�	�"P����="۫�:K"QN�'{�'���\_���>"?���a6�RC��1�yD	�7���:�~�%2�`�,m������}��n���wHoAǎT̔tJb�[�K)�66�@��6�~�i��mw��_��]��@z������E�4�Q�c"�}V6Zp`a�\^ې�r^@���|s�%>�����F1~{�&,TJ����`�t�r%\:7�74M ��<V���m,��Ӄ:��sN���VryW
]��U��cTۍ.[�!m87��+�R���=���E��#�!����Z�o;�

���jm�F�E�"��<�]�\�Lm�
-16���E��`�7V�6\X�hp��sE��� �A@��B8P�(L����^Q��Bx�����O�縸��4�q�X�W�;���f��l(��B�)a�}���^�8���B�Bk��ݖ�Z�P�Ϋ���E�(r����6�ɮN jU�[� ���O�5h�mYo�D�~c	%�.��u:��)�4b�}����2Qq$�U�f��j�ʁ�7k��F%A���w�l�D���
IMT��ߍ��M�����\0�p)��3 ��&��6
�[y�[���V���%�7�J�W-hu���;I�WbЀw��K��~&e�~�E�v#��9^��@�b�|�U���1+�``.���x��u�B�S�
���׹���S����Jx�e�L��=��
��ǍX�ꜜ�?����ӱ�@�B��x8���
b#�C�
�A���;!{����|�E&�"�t�4Y��8��;u�|Џ��K
����z]���W�E~-�-)K��e���~�D�r�r��?8!Gߴ{�&�Ģ��m��L`�6\�"K@h+��R㈷m�r��h3�J1��Y��0�-���J��?�xw����~w�W�.充K��E�3R�R����Q���?�8�F:$4�Qr��I�W`~j&Ǧ�w`a�
��u�(~�U�Y�rl��cQӱI�a����ǁ"�Y���J���*ʱ1=�`����(���M>�'���ߏ�M����SXj�X�n�7wH�(>�Σ~v�>}�	+~+N3>i�����C]�����U����-у����!W�=��
-Zo]�`}�1��m�/V��w���76��+���X��_���,��͎#�N�q1����4J�n*�-��u��@� �O7w!P��0ҹ�:f�T��
y(a{c82&�����IbM��B��M��x�x��5��V��{bz"Dz�_���z�*��WeEV�ܔud�R�.U�P/�m\�D��Mra���w�Kn̫���XSpm}���5��R(ʵ�$�(��I�����6��+��9�HH�eƔz�+(���z�%n1�R��Kd�#ǻ���0[���V��զ���x�d&�k/���-��4Dn�"�� �gG�ɒ�_��=hT���pu����8샂	�Դ�x�$��{�ن����{Γ���D�[;4?i�}���q+ժ\]Y3��r�^��9#O>���*#�
�����n�a��>n.. !��&��Ǻ��P��'(�P�:�t]dt��:���u
9Cѝ�:�n��N�8��'ۗ%�LI�]��;�|I��@(��އeKuR�V
<2�\:G�ꠘ����U�ȉee	���5�lN�^^�;�v�0�X�X��!�D�Pq`�X����V,�����|�,Ԡ�-EԐ��5�V�+Q��T�r��j{�j�^`P"��$�
���D$�J����غ���l�.^$iF�EP�)���r��
��5d�֠~���	�g!aRT3����&�}w�o���n4�R��66v�Cޣ)���F15{(���8���g�i5��&���qw��Ą9h�&�9d�M��Ȉ:�y��o���3�?�����w��^HvG�"�0��ȇ/J7؁כ]���}5�"�Y���m�gBVvv������)l������s�:��0�}��Y��}i[�����AmS6e��*~��D] ���Q�C���/a�������Tf!q��BA��;��J���M��Փ��O�I���I����_�+0J����N|�h�Z9U-�^/ A�(��<>��̗���zK��yQ��ł��k�&t�0�#��j�kח��X��/߄y�L�U���f�^��2��m׍(�\��@�?�;�157_�b9����rN}�a~&<����E�Ρ 0��6��\b@���3� w��KJ0,�z�����A���<�!�������G,����3Z2�W
e2�kqU�br���:�H����Ul+>IkA���Z�
��IXJS���O�����{�
"���]$�&��|�o��/�ݝӚ�Pc����3��W�ơ��S�l�%
V��,���[RR����C}f�D���zdRG��:�X�Ԑ��B�>��-���Ȭ(�D���A$_3�鸺���������0.������ s�#�y2�@��y&�Sf��5&�̹�no��
�i��w�B�F{� g���k�G���{ԠV>��o�i壿��` ��T��c�/⊺�����������I�ma���b�Y�(
��
�a)c]@�\���¢���_�$���E1I�w}Q�������c�IG]��=��+�#Bc�r�ٝ�V��t��T��h�����'RT}�ܼ�=�)���n��5�d��oI����d�i��kط�xv�[�7*�dwk�a����>�����N�8��6��ɩ���ϣ8���MQ�L�X�����d	玭������숞�:�\U�� lD'*cc���)*�4��Ç���ypdz�Zu��[Bze�������R1"�*2>|uR�����-_tb7����\15^\��l�D:>����-�C0f]Ž� 1m$3[��i�p�ˁW�n������Gk���iqsm
�e٣��*eXtfa�hpm���MV��؇�sAc��2���@iBɛ������������ݩ�#��'��
�F��]\E���i�: A���"G�K�Q���_�K�5��\[:��e)
M��-p���1�=�c%W4�V��(��n�K�LS=��Q�pKg��d�{��o�x�Kj��oz'sX�k�4.��GiySg�"��X�n�9I-���I��葙2���=[��~��p��O���Yw!�.M�t:)�*$t�!���.�ۧʍ�5�{�� ��JU3Hc������uC"����]}X����	 T<>�!��g-���PEs4XcU��W��N�M�
6�-|�V��Hb��'���$k���/�4rF/�P0�ʁ�O����!�y��I��2��tf�?�;�Xqί:t��f7��G�	]}�&��g���6Ƅ��	ϊ;&�	�'hn*�:w�s�[��D��i��0�����^�(���4>]%�e�Ֆ����Qz}��/�QY���<^6��v��7��?�ƜJ����*�c4T|$"�Ǟҥ�(C��7Į��#`j�Ni�T�֓��$�Iu�?*��y���w�x�Nq���_ldԐ{OK��݀S14��{b�|ծ��Ŕm�a�p02\Z[�����`}R<Z1G�/�W����}buc�L9�/��Ҹ��fP�%J�-9�H��уlG���P�yE�x��hl�v������A�цə9��(��X
&kcp�z�I�x5�yV+!�V�^VKU��4� ��T�S�kL���r����%%˭���|o�n��K��Lr�l���-+P(U�,P���S�+c��u`�2�Hߕ���Uڰ���JVn� ���`�������ͦ@?Đ��j�4T�+;u��$�!W���a����.����g�K��Pď���*�6��1�Jonv7��V*�f��<�32yK���X�8�ht(������
@���.���.r�=�h�N�*-��]�_�������)�ǿ�kI`JdTl���n[z2#�\נo7�ͳ���Q_0z�	��d���/`
lTFV�Ce%4ii齰�d$MpD�y۝NP�İ>�gU�I�`6��7'��DbvCF�6��ē��'�I��q�Z�P��BA��A��8Yl)���#�(���ݤv����P=�9:��N��9�Z[+\�K��F�S�m:q<9�:&}
�ysG��I��:�|���[`�r�+n��G��Q��O�9u��Nk�^̻a��O��ߓ~Gu�4��j��?&%O��8�:��$����ܵ�e%z�E�]���#pu��‚����l���J���KqSU:J��S�U�M�<;tS"�� WD�S���ڢ�0,�W�|���&)��w��Ą��g�0;����*�1��3g��M
�<�y!�q���hG�E�Dsp@�mk3������1j�a}+%L���pI�]X}-ߐ���5��w���?��+���1��S4^���/a����$S�i܇��X����N��}�W�|A�8o�쐼�s���X-p{i��O�	�𢀓81T��E�{�|�GY"�ޠx(z�x~`憛��W��(�g
�"��Ɗ�#\��+�Ҭ�4�(�Kf�6u39�O��?z
A_�$L`Z���y�bZ��7�XN��@5�'$�k-��Y���"qx�%֩�h]>����c\�xw�Re����:t]_rh>D�ꀤc��E�k��{� ��I���-YB��ӥ4&_\-�{4K7$���](TRE��އ���2����,eCpQ�u#�b��1�$��P0��#E�����(^ӏ��>��.�Ò_�O�-`�/`nn7�"_��=O���X��|Li�ԋ�v`���[=����_�i��;�Ï<"�qe]�f
CMˌI ʈy��8�Xr�vh�V�k�l,�O��b7
�6[�W�<��	���8?t�{m����u_�f��"��R���h�@��
x����]��x&�A�/O*]HR�%���%<4(]=S��}|�%/gU-r
�էdNa|��nQ��D{����I�n<\,��_�牴t�!O��A�\�X�i _)d
t͡��<�9�A\��@�oOH.�ы��H��kN�b�s$=�I��SqJ_�&�����A������ X�\�oz��c=��x�����B�Ղc�8<��O#�mجW@q���N�-8JY\�DN����i䔸�=<�n��~�LF�d�������|�>����
+}�QR�Վ ֟E"���l�}y�q{��$��C��/�1�Rw�Y��H��)-|
�V\��o�N�%��e�2���%��a:彸8�>�m�ЏW*I
p��5�^��y^Z����_ۿ�b�k�?[b�X��d=_#��1O� �TC`�l&W�m���f��/g�Ӯ��'��y��Rq��I���)�y���<,7H�_��S�-ACǿ�ݺ�P�\Y�j�*:A����"�[���Uy��~�� ��/<�.ln�����E��q��E�MY��]�4uC�W�3�3�)f���;����M�o���&l��`||L6*ݙ�	�V��tu�E��̫�4I���ؘs-�C���bI����}��ѣ�&f~f~�vE/.��|�O�`�)۔D�vFr��d\6e�W0���-�B?űI��L(��
~}#��[H'�	A,�P_�D��<Vz�������ꂾ�#��͉��F��w�1����������%��!X��5��3&#�r�inj_X|�~�d��gU����R����>G��8_��r�K����$(���SM\T�Q��
F�|�$�w�*���k�s�����d�6A�(�F�������*=릩w�A5q{�$J9v|�^�����zpP��~�Ѫ4�ʧR-�!�K��!��B�����L�m:�/�зR��2��ҏ�~��F�<������=Qj]P_�v��Z��1�9��?��?$��w+[Զ{Xkv˷��̕J�4`9�-��D���aS�@x�6���W?�:;[\R[�Tl�υ8�*-C�
�׼~�o��T������-m����P���ږ(NT�ȁy�uk��Ug&�p��5����>�=x��
B�]�D�I
4
p��#�]zΗk01��	�j������8?_��<O�ਉ	�8�8c�l���z��k��_�^o~f��jg�'[1i����:gB�WKЄM$�^�a]�X��%؞:n�~i^��H|S�mٔ��a���5�<~�'%�r�^��SM}�4+����py�MԮ^g?�Z�L�+EĚ'��"2�y� �+��s2=��K/�ԕ��/�\i��J<Wyd6���EF
vo�o��M��_P��=Yxɸ��1�x�_^���̸���^�c�z��s<`�|�/�`(��9��S��Tx4��3yv��I�R���	�L�`�+���FE%��WVM ��`������Ax%V�tQ�X��m<}�ڞΛ���u�Mu*�Ŵ�<�����N�B�����A��f��MZ�
�jO�jWo����&G��a�d/���%�nZ�R�vqO�6����dYS���Ɔ�;��}8����0{�4��G�-~�}���b�����햖ֈ��dZi�J���9|C!�2g�٧��)$C�'�Z��m.����d��5М�O&Ɵ9�n�7��m`�f���՛��r��{�o�)����.�|o@�v�{��^Ϟ=��x�b�rZA֦�؉D�cc�z%{�d���&�R��"HL�F��e0��Z@dږ��>�������}��TGFk�Vߴ�"J�O�d��8[>��[�tK��	��B�R/~~:�vȎ-"3)o2�B�~��hb��y��3��CK�皃1(R����*���!V/}^΍탣?"μ�R����>'��b�^�)�,���;�.`�Z�]�Ȳ��*��5-�UV8���✑�kꉞ�:A�U��x�kF50��ih��y,t��*O��v�}��2�,���P�՘n1�.��s<\L�i����0�6���������D��N����#&܇D����ui{�7U<=��!$6'�D�3_�i_���w}�S�
�_{���3����F��b]��$k0�j���<s�]]o>]m@�YgU#Ԩ(F�aO���Ƈ�;Z���ٮ:�����k��Js��`czJ���	��ϵ/%P�P
+��wy~�ho�y܍AL�|bD�>
��[>G���w�O�?�y�e!�z&�+^|aE�N��S�=g�aZ���m/�`׍� ��'�1-7����e��am�{�7��}5�_�<'�6]�mu�S��
��fȶ�i�>u4���6аU�y�0Y�IN���L�m�B�2\#�|I�=�4��D>��L��~����g�:�o��_䎠���aX{�~���==G;��Q<������}�8����&.O������,�����-�����0O���p�a�}ӌ�y�.ߠ��664��v7}ѨF$����K_�������?Oz>t���N{G�?�N��B��Q�!ѩ�R��+-
�,��u��-˕�/��y�7���q��H�;dO�y7��_�������/�:����y�y�n%��"�E�ok!��VdX���=�a<'�`9y�k�E��.�K�ܷ�	=�i7��P�u:�!���9R��L�q5�=@��xt�]�n]���U5���R�X�M	��.�đn���H2z�$�wCj��?J-���%͏B�i�r�J��v0��
�ڎ�|�-��b/���!���+1LZ..f�\�B�a/�W��F��ա-�q�@"G�Q������4az�̌�ڇ��y���Y.'�7���R4G &�-=i���`����'��F/*�җ�m����7�f<����ŒȏP��pP'd�_�z����ۄ��n��/��kO��}�4M5�S�;�~>���ǝ0�u;b�������˄�N)�6"N��Gb�Q�pc�(�n��)_�cf�^6�9aI�h�,��َk(�4 ��)��8aFll�m��$H��
����a�O���a�o�?�!�;��}���x�����{�o���~?*Xtwc�e_�0*m����Wz�
���\�W����/IO��z�l<_o���Z�W6���c���A]�{ϣ���f&&&D��{�3[��܄)(��ٕ��v���D�:�b=����Ў[�9�S�E���"X��D/]�U��A������Sp��I�,���*��d��л��zz�+P��S&�F��&*?`�V5�#?�_]���S��r|�9ay�5��`��	��0Q� ����.[���	<Qtu���mb�jX}
�*�����	k�H\�J�M#!�Ӷ�L[+�7��pH�={��N��"s_^�+�
�&��`�'�>�Yu@�>��Z����(r)��;tM���k�]C�^x�`p�(9��SW�6A.ʷ����
ЪnQ��-k��w�\E�V���=��'�?t_�uc�"�}پ7H��� V��%�a軉��?�I.8�>��5|�b�\��v�C&���`{+Е�m�D�����y�Ax��ЉC�mem�/n�Oy��F�N���!�
b��17�M��l3g���e�Nf-3�������zE�	ZM!r3�i��F�j�U�p�H��p�5����j@��&?#�(��S�����:F��x���q�!�`��$e��k�I�>�
Rҝt[�*.v����l�LR<���4��CO�$�Q��o��͔L�[��o��X߲q
�s��7^.�er|v\WD?qS18����K`g1ٱb�!�Ϙu�ʮz=�
�� ��Q��u��A��2r�{��(��%��"�q�+Rl~cKz�3"?qt�' w츄cK�y�S�!m��6Ɲ'2��ts5� 0�,(	6�D�]�'��T��Xѐ�#�A��AN�@U�ɔ)���K7����E�!�:��1��8��z2m�R��Q=m �ti�F�-������,�Z���i�N.���2
,���Ee��G�zF��c?17��p�yL�+���Rj�E 2��v9:{_W�mr�
���Ȗ`�푮+P�b�R����	����<����
�Fu�b��Q���;*B�4�y2��ttg��;��>ZU��	~H~��15A<#��|�\BWo�X��ܦ�1-R��h�C�bC�[_����#��-��4�ϰ5	�,����buy�D�
^9x��BԘ6������$o3��wH�mX^l?ɲ��)ᆥaа�έ�-:��:�(f��kys���@��K~�E����
�|�g i���2�O�u�c�mR8��ڏ���߈�G��vXH�)��k��F����n��)'->��f���Ǘ������rii	������m���ab�����
���0�M��u ^{Sb���E�hN'(3^�V����s\~K�L�f�Dm���Ǩ�L���w<���M&�c*?���E�eͧ�z�X��u�����#�fwb*h=�/�)�9�P���l���\��ty]ELk
���M����ݪ���0W �]'�+t�}Z��
{����qd�W0���
7����ȹ�l�Fk�T
�����
}�8���\�e $�������.��
:���׊�a�Yt��`r���aSׄ��1(����|J=v�)F�&,Ŀ���)��7qq���ɜίN#12�e���
��(c�4�V�E߇z�V�l�"����Xb|�+]�4J
��s��?I�wt<&^�tH�Mm��oH0�ԓ�R?R�j!���D��-M�[t-�ᾚͱ��&�Ȋ>����o��T����p�
l}��R�!���<��,�f���'��0�����&~!�yT?��{Z�S�Ay3"�X�Ք
��0ا7i��~��wv��"��o�|�l��	���jI���8��wġ�0������O�7�f�/����:���D{K}���'���_~Ν;���|��a���րn�$pJ����<]��͛l`jj��n~�����#P��w||\~���&�:�
d�yU3���ת�%A�(J��hO�pH�����cꈈ�O��:�r���j%���_�l�}�[�b�n݂w������HT�h���@�^h��l����j�����#���GR�S�T0�Q��H'��b��,0	v>�h#��T�Ԯ`)�-�y������e�R�z�6!ɰ�q�P���-Lڦ_R����o�f���Ί�WVd�̱|��b��ז��������p��Q�w��`��1	�Ij��� P&v4^Wƭ
�J(<�r��d��E���s��aa�H��
��a��`f�M�t���WśS��(��}(o��t`��+dG�g��OI�1|&<���А�#g�)r���5�WV���Biui��T�o�_��~�Y-��b�S�����R��Ɓ��R���$J�Ci�u� �5yB'
,v�I>/Cd�:
�u�D����f��a���v�t�+i��]�BϚ�:9j}��vC)Bb���I�	�!F꺪w���&����:�r�/�!PK��uTG.
t�D�r���l�5� Nq��I�RsQyT�'�Zm�2ӄL�D��ΜN9��n�U��~���|��v�`�]�c6/��������
��t-�Y�����_Gݨ�sV�d��������Ҏغ�u9�	N�p߻��&5�I��W�1Kԯ].�&�z��A�)�K΂���?��ͣ��۹�}���Q�i�m.ʃ)KW�q�N�*�`��Cb[X�a׍�E�B���<��qd��2�U�8f�K�»@.qʜ3g�0�<{��$Pe�ü��kl���������&��'�'�ay=-k����l����*�ns^I�:�åjX-�1)�	�5��ۨu��~��_���~)��8�`��vzz��]�z.^����d<���r�Shn����p��%X\\�:6	�pؿO4L���-�
%��y1�Р��sVmSf6ه��4֊�����_5nƏQ_I��`8��c/��a�1ሒ*26ѷĆ�l�Ro	��Gy"`n�,ɢ6.��}�����[o�uL� pb��fkr�8!��#�X�C�E���d�ԕ&�X&OG��A��p�P�^[���=�������0��:�m����{(d��ymᢍ;''����'�Y 
(:3b�W���KL�x�����@�ޅ���n���b���s>@V[�z������<v�}3q0	0�>�O���E���y(��ٻ���au�vX �^�_�׎�v��˷���ߴ��N����
^z�;,��9p@�:t��k*u�O~oS{����U�}�G�tT����]��0�؄g�}��<x��J՗��E.\�7\�V���5�<��5��r��տ��hkݥ m��DME��
e�qD݌_���-����#"���{i��3�h��7�no���G��QyN�a�3�n�n��d]R�#2�;d�� ���������6�iu�Vw�4��	���uM[/ ��E�r�9n�dz!rO�=Y?z�2�Hi�VC����<����-�I>�o��3ϰ�����rF�z����]M��ߓq'�6�{�-��6�_�.�+pm����A}�V�vv��V��i�"'tvfF��f�aV�64�.�_������%���׹D�L����d�<P������:�L'fg���YP�k[(���]g�DV�iH!Ο��nK\���D��bn�f�
%�~X��Bq�M����j
��'�E� ��$|���p��g�GJm�"rv��I�T��t��f�k�խ�x�O��J�¿�"=� �T�hKT7EU/�����/m�π9�J�t��+,u%p;X��J�A�a7��ݿL5��g >c�!Ғq�;=a�o��T
V�����o��?�i���>&766�I���Q������
���m���	��%�@Fm��2�m����Z�+��+���EY�������#��_�%}r���J�f+���O~������O�[֭�"���,���'?��7080/��6�d	�̝x��6F�ȅ�ᳺ͵�X�/�.l���r��8I�P�D}�a���3��D���Wv}6�ax��:���?bT��or��5oV߅�|@Z�O�E��f���3�Yp��υ���ŏ����ŕZ��އ������N�fq5�}��{�5��ѵ�	��YɁ��l��%�LWD�����ci`�O�թ�-9�̚�|�C��~衇�~K�K�ivO��A�����	�\!�f��ob~P�'l_����7���9�8�[W�2��d[k�)$��F�pe�Ȭ>G�R?�y�M��w�d��/��q��-(N��Z��:���}46��0�وgɮ3]�1��cl�a*۠}�!�
-� (��>���P��z'{�F)��*,OC�;���}EE�@�P���N���BU�p��v+����sUd��4ԋ���CK��RO��_�a���R\_k��>�]�d�&������+��"����o:�E�ħ�ppn�R�l߾���I���qjJ�P�Gy�S��~[�nɏ~�@�+?�����PtW��}�s��?_�����o�Ϳ��f֮]��~��/|���ܟ�|�+_���H����6������������ܹs��b2hO�O|���/�s~�G~��_�����S?�S�?����߃S�`ަ�+O}�Tt0�_��'�_�k��8��NB�T�ztA(��fTo��ZW�ś�ִ��{żWp�?���s��[�ؽO��}y��N�{ۄ��&.�b۱E��ZְM��W��J�Z������{H�����=:n�D���Q��׷��o�F�z���Ứ�>��(�&�fM��,���Dj���	��Q�T��q�0�|����/fÓ�k�l���\��m��{�ۆW_����@��z
*��·M�NL�i�67�����[N�O�����x��ߖ��]|�Miy�=vL���!�|�h��ЕI�*,��9�g}���p�o�X�����j�X�;��(A�0/UZk-A��l6�Dw���6P�z򥗖�_��o�sGfa�VE�+���!7��b��$�WR��O�������<�P�a��vW��	&���O�g�N��M�! Z�cg��{�/��68��K/��W�v䑹
���剉��qG�w�i�����A��+�0�����|AJ���5U��5`Ńu�}�.HߌN�>��S������?��������G�X��������9���]}��?�SƤ�V���ٟ�Y�reM�z�࣏“/�׮]��?�'���~��W^6��K��Y��?���_�+E����/�����g���O�7nȝ�
�;d�����C0�S���|~��s��]wa�����LT�5 �;���+i���|��#�c���ql��6��iJE-Դ Qwi�d�O�?�`x��n�M��I�8*���F�9��I�ؑkW�A�!+�'!�s��}'OHj�0$�~�������#@�L?-�iy��%�ܵAyb��4�b]�J@���V�Vܼy��C1���F��J��K ��N�z���Y��軝r��4����VVV�q']Sr�~E�l�v���_�����&cF̎��h�6~txa�tc��|7~�����ܜ0��w������3biZ�G�T��0�Z�v�O{$���;ͽ��C<Էa��y����S�K�1��>D}�l�hn7�,�Gt]q]#Ƀ�k&n�����b��F�߄ �5#��h���8r�B!�!ҺR(����<�-��	<	^g}=����E)�Y���jI����(�a�G+��,vDZbd�����M�uZP	|9Y��&��v�+{�ݡ���.�V��d�'n\ځ?��?�+k
���#�oɞ6��Tr���]��.�f`�!�Xqpw��$I5����X����c��M|�~X��bQ��7��߁��u~?|x��,���T�4v�ʐ�Z�ր�;RV��I*I��m6����{���1L��� �Ʌ�A�N�_��_w�}7��"w�g%rH��<nq�p��ښ�pa	��?��8)���s��	�)�ٳg���򥧾+>����p�w�tB���?����!�m�}f����������w—��%>��w�K�~ �aL���/���ʕWũS���_�>� ���O����#y/�}Et�PS�N�!�Wpal4=FBI��lA��eJ����HR|��yƎ\˫����޵�io���G���{M��]@�F;C��`���a�^�� ��9ʏ������K�m��F#ǃ�lQ�;���_4Fy�����,���vķHԞ�Ӊ��!�4$�4�i��?�LJ9�L��#�ӿZ�?��;���w�+��~��>qc���+�[@�
��Kz��LgJ.^�(L��mrr��2&��C�tH���0�x
KD�?�裂�S�u�M�G��W��U.�I�'~�'�3��͇|P��(=�K@�̓Q>M�%PI�*Ys0e'��]/��rT~�\	�P�	(�*#�!w:(F~� ������G���=��О�N�<)�?���cꉞ���!="���m��'∶��ܠ~�����k�-�9IPm;�t�Nƿ�7iT	�L47�W��%IÉg?��H�@��Lj7zof�����=��/�M{���[�a�v*)9��6mmm	9���D�5��t�+����L]��#O���at}nŽW�*�B(���9��w���7��>p��M��_�Q��
�!����+���=��&�Q�	�~)Y�$�~���˗������u�.���_��}�	x���}����?�����Qn����ccTC�݄�,�0?#�2�L�o=Gy�/��@��➿���\��y��~~Ɖ�'z�I�~/��W�Gw���C���^A���;���NDa8��b:O�g���M`�r��ų�>+�?Jb���򤺩+��A�	�L}��!7z&S<��ɿ}E�C�8���Bij�v@����nnV.m�����a+nk����LC��P�wB�8F�9��ۑ���48�G���n~�W2i���iy��4�{���g�Gp�Ә��zl.��܉kE�86~̉���韙�L<��4�-��;�]^%�8��ȏ	gFm�����RD�n1a?��Ss�D���&�Oi��7��M�`r 
J���y�g:�Es���!��d�o&mS�I�8 M{��MMM�i�7�0�&S�Ɵ�.�@"\p��XHU=��#G&��.9��:Aamn�)��7m�Hwrh����7I�Q�@wR��U����3J�C���
��a�q<R#O��aaVa'Lge���/�=�����8u⿕�o�յף@�c;rc�&&�ɧ���׾傐���q��9�������WታJ4$�R�(�VtGwz6��[����[���h����o+���8}z^_[%�^�Z.�z���OY���Y����|��Lcz�AY�7�ۏ��_)uj���MֹL�O�ڷQ\���Hƕ����s��VY/HR���~�g~G��G��n�8R��uF}R�I�R�!v��v�d����OZ���r淋G�I�Ճ�)9�ߩxܧV���ԣ����pC��<ۿ�;��iON*�w�>�yY��pF��fd�׸�4c���M	�x�d�G�3;�ی��֩y���/�O�FT��ۧXތ���p&�o��.k���ΛH�;?�S����mM��u`�ɦ�����?�4$�_������������ai�����D5q��W�:�^�c͘#B��I�;E�r�w����S�`�3�5~`k�	ǵ�k�d&��Z���RŒ\�tXH�%m=��7�~���M�J��ܼ��������_�s�i���+N,e�J[��ߒ�ְo�{2.;�a��x�7���{J?ح���+pWUzE𭳰 O�X��qkdw����m!܉�H������<yM������߅�p
=\%_�-(V�bf�(?�����<��|��� y9?����SOb���c�?wDz[�`>ѿ��tZ�1_�3���=IL��������mI�O�|�Kģ��x9n
�������c���7$F��;)�
�_��OKkW8���&���:!�1��l��[r�H�w����~��R��_t;�Ò��zM9>���]��]?q�6���1nn?��I�&��/�S�8����o�|�L�)���X�������LԐ�z[ǿ'@z?��.�^�Űo��v�i�zH�Os�k<{	˯�f�г?��!�n��gC�3�i��t��7�J��ƿ����^���{���OɃLΝ�w�������Oq�G=�M���;���vO�d�ϒ��4��i�l/񤥗\?�;���駟�#s��Bz?D��?�jF�|Fr��+�]�HL_PJ?��J�S��>�)�#��~��g��E`�R9>tı�~z�
g'�QD���'$,찾�*?��ފ�.?��.$d
�i&��|�?E����||�?�حN�Di�[P�}�{��k�Z���IE�fZzi�Z���ޜ��/��C#�Ƌ�/A�QdƘ=�v#���n�(�^�wB߷���ۥ���;Is��e�����1�q��?��k_��C�Œ�a�k���g>K'm<��m�F��n�Н���u���,�ҥK'���o�h�K�H��cם]���S��{����X�7�(��C�d�8�/��g�Q�_J�X��|�On�+؁��L %����d�I1w���?��� ��?/-!\���ϧ�-������?�ȯJE��y���kW����ed0|�`�O2Y@�7��%cɘׁr���7bZ#�%lZ��q&��4���K�򓖗�w���T��r��7��F�H�u���?��OsHi�F�:\Z:�߇����D�ayM�sT[�
��x�t����^6���3N҈Ǝ{i�ck 
����c]t5.���{Z9Ӿ��pw<��r�LeL�;\��	c�k��$R�&�V"H�/�d�?%�������8�%�e�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFe�QFE�B�}�78�IEND�B`�PK���\�� ��#assets/images/settings/surecart.svgnu�[���<svg width="108" height="20" viewBox="0 0 108 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_15320_15413)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.96923 19.9491C15.4751 19.9491 19.9384 15.4833 19.9384 9.97455C19.9384 4.46576 15.4751 0 9.96923 0C4.46338 0 0 4.46576 0 9.97455C0 15.4833 4.46338 19.9491 9.96923 19.9491ZM10.0122 4.98727C9.21168 4.98727 8.1039 5.44529 7.53787 6.0103L6.00054 7.54485H13.6632L16.2255 4.98727H10.0122ZM12.3877 13.9388C11.8216 14.5037 10.7139 14.9619 9.91338 14.9619H3.70014L6.26235 12.4042H13.925L12.3877 13.9388ZM14.8781 8.82364H4.72222L4.2425 9.30318C3.10657 10.3262 3.44347 11.1255 5.03428 11.1255H15.2176L15.6975 10.6459C16.8224 9.62891 16.4689 8.82364 14.8781 8.82364Z" fill="#01824C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.2944 13.0273C75.5039 14.4271 74.0743 15.7933 71.6186 15.7933C68.238 15.7933 65.631 13.4321 65.631 9.97474C65.631 6.50051 68.238 4.15625 71.6186 4.15625C74.0743 4.15625 75.5039 5.48861 76.2944 6.90529L74.2424 7.91719C73.7714 7.00647 72.7623 6.28127 71.6186 6.28127C69.5667 6.28127 68.0865 7.84973 68.0865 9.97474C68.0865 12.0997 69.5667 13.6682 71.6186 13.6682C72.7623 13.6682 73.7714 12.943 74.2424 12.0323L76.2944 13.0273ZM83.7401 4.34178L88.0626 15.5908H85.3547L84.6482 13.6851H79.838L79.1316 15.5908H76.4237L80.7463 4.34178H83.7401ZM80.4939 11.5769H83.9923L82.2432 6.73662L80.4939 11.5769ZM98.1977 15.5908L95.658 11.3071C96.869 11.0204 98.1305 9.94101 98.1305 7.96779C98.1305 5.87651 96.684 4.34178 94.3462 4.34178H89.0985V15.5908H91.4869V11.5938H93.236L95.4394 15.5908H98.1977ZM94.0097 9.48565H91.4869V6.44992H94.0097C94.9516 6.44992 95.6749 7.02333 95.6749 7.95093C95.6749 8.91224 94.9516 9.48565 94.0097 9.48565ZM104.737 6.44992V15.5908H102.332V6.44992H99.0523V4.34178H108V6.44992H104.737ZM25.7825 12.8028L24.9233 14.046C26.0391 15.2108 27.5232 15.7933 29.3755 15.7933C30.7443 15.7933 31.8043 15.4796 32.5557 14.8524C33.3144 14.2177 33.6938 13.4151 33.6938 12.4444C33.6938 11.862 33.5674 11.358 33.3144 10.9324C33.0616 10.5068 32.7341 10.1819 32.3325 9.95795C31.9383 9.72648 31.4957 9.53234 31.0047 9.37553C30.5211 9.21874 30.0339 9.08806 29.5429 8.98353C29.0594 8.87153 28.6168 8.75579 28.215 8.63632C27.8208 8.50939 27.4972 8.33766 27.2443 8.12111C26.9913 7.89711 26.8649 7.62458 26.8649 7.3035C26.8649 6.80323 27.0881 6.38883 27.5343 6.06029C27.9807 5.72428 28.572 5.55628 29.3086 5.55628C30.0078 5.55628 30.6439 5.68695 31.2167 5.94829C31.7969 6.20216 32.2581 6.53816 32.6003 6.95631L33.3925 5.76908C32.351 4.69386 30.9897 4.15626 29.3086 4.15626C28.0365 4.15626 27.0359 4.46239 26.3069 5.07467C25.578 5.67949 25.2134 6.43736 25.2134 7.34831C25.2134 7.90085 25.3398 8.37872 25.5928 8.78193C25.8457 9.17766 26.173 9.4838 26.5747 9.70034C26.9765 9.91688 27.4191 10.0998 27.9026 10.2491C28.3936 10.3985 28.8808 10.5292 29.3644 10.6412C29.8479 10.7532 30.2906 10.8764 30.6922 11.0108C31.0939 11.1452 31.4212 11.3356 31.6741 11.582C31.9271 11.8284 32.0535 12.1308 32.0535 12.4892C32.0535 13.0567 31.8192 13.5159 31.3506 13.8668C30.8894 14.2177 30.2458 14.3931 29.4201 14.3931C28.6986 14.3931 28.0105 14.2401 27.3559 13.934C26.7012 13.6279 26.1768 13.2508 25.7825 12.8028ZM35.5693 4.43626V12.254C35.5693 14.6134 36.7409 15.7933 39.0843 15.7933C39.858 15.7933 40.5907 15.6177 41.2825 15.2668C41.9743 14.9159 42.5508 14.479 43.0121 13.9564V15.5133H44.7305V4.43626H43.0121V12.5788C42.6773 13.0492 42.2124 13.4449 41.6172 13.766C41.0221 14.0871 40.4047 14.2476 39.7649 14.2476C38.9541 14.2476 38.3366 14.0609 37.9127 13.6876C37.4886 13.3068 37.2766 12.6534 37.2766 11.7276V4.43626H35.5693ZM47.242 15.5133V4.43626H48.9492V6.20589C49.4254 5.59362 49.9795 5.10454 50.6118 4.73867C51.2441 4.36533 51.9174 4.17867 52.6316 4.17867V5.94829C52.3637 5.91842 52.1442 5.90349 51.9732 5.90349C51.445 5.90349 50.8722 6.08642 50.2547 6.45229C49.6374 6.8107 49.2022 7.21763 48.9492 7.67311V15.5133H47.242ZM53.9157 7.0459C53.4545 7.92698 53.2238 8.89766 53.2238 9.95795C53.2238 11.6828 53.752 13.0865 54.8083 14.1692C55.8647 15.2518 57.2185 15.7933 58.87 15.7933C60.6256 15.7933 62.0874 15.2183 63.2553 14.0684L62.4408 12.9484C61.9944 13.4039 61.4699 13.7548 60.8674 14.0012C60.2723 14.2476 59.6512 14.3708 59.0039 14.3708C57.8583 14.3708 56.9284 14.0049 56.2143 13.2732C55.5076 12.5414 55.1208 11.6305 55.0538 10.5404H63.9694V10.1035C63.9694 8.98353 63.7612 7.97924 63.3446 7.0907C62.9355 6.1947 62.3254 5.48162 61.5146 4.95147C60.7037 4.42133 59.7553 4.15626 58.6691 4.15626C57.6351 4.15626 56.7015 4.4176 55.8684 4.94028C55.0352 5.45547 54.3843 6.15736 53.9157 7.0459ZM62.2734 9.25234H55.0315C55.0538 8.81926 55.1468 8.39366 55.3105 7.97552C55.4741 7.54991 55.6973 7.1579 55.98 6.7995C56.2701 6.43363 56.6457 6.1387 57.1071 5.91468C57.5682 5.69068 58.0815 5.57868 58.6468 5.57868C59.2494 5.57868 59.7888 5.69442 60.2648 5.92589C60.7409 6.14989 61.1203 6.44483 61.403 6.8107C61.6856 7.17657 61.8977 7.56858 62.039 7.98671C62.1878 8.40485 62.2659 8.82673 62.2734 9.25234Z" fill="#26282C"/>
</g>
<defs>
<clipPath id="clip0_15320_15413">
<rect width="108" height="20" fill="white"/>
</clipPath>
</defs>
</svg>
PK���\��S��u�u5assets/images/settings/augemented_reality_widgets.pngnu�[����PNG


IHDR@~MD��	pHYs%%IR$�sRGB���gAMA���aumIDATx�O�lݖ���RB�$�c�*�ТE��]E5B	���%
z|*U�C�&���@�踇�:��ʴ3c�Ğc�9֎x�ެ�u�y=v�<O�X{���7Vd�gG���o��U���머��z=s��6��]��Ƿ���y���q_�k���|��_��|�~��e|Z�6oa��9��u�����Kl�v���,�a��`������#���s��x���6o|��-/o9��~>7��b����cv�M�{�0��}H�׿Հ�Cm��|ı����xܽ>^��6�k�~Q��s��6���"ƛ���cc�Ϳ�7�a�Ϳ�7�}��7�����/v��7��s��h������'�ߘ�G_T3�L�s��ɯ�kb�<���?͙\Vly9ԏi�+(W`�R���	�7ak���6,��%���b���6�2�?�ۺ��\��}�s���j�1n��=tc��`�b��
�s�l����=.Y\[c-E�1!�g�R,_?_b�孶�:�I���?\��ԫ�e���)v3�1���\�Otݐ��-���̚`�d�8�f9���k��O��Oy����7������~������;�?�3�2���-f��v��/���P�W]˼=�����0
C0����Ng��̗�̝ViwQ��dv���
���!�Y(dVz���0Ha����vlϴb!]��?�|��Y��-��~\�]:j�qE����#a*r�H����|�׋��'�Sq;VPd�g��~�6/�V,t��'�5>���b�咵�S���z��"c����'��k�_��e,e)Bm����v��/�/��o����0��a�1��7������י�?�s���:��ɚ��=ϭȺ�7)W
P�3F������[�&��{���-���Ԩ]�Ձ��j�=���b���Q
*@�
�o��wl�X>�����l�O�cE��|
�ʜ���Ժ%��&H��g�߯�X��(�bea�b~¿bR\���4q�
��Y2?c%n�)
z]��<ٿ_�@�墭��_�Yv}M7����,o
m�ֻ�lP^Ŝs��lQ"F����7�����o����0�3��?�2���O$̿�7��_���ݟ���t�Sg����a������=/�`iLN�`o�9Ӏ50 %Km�>��y�����~�Ŭ}Ӻ��2�a2���9���u `�(䑓d�3�[A�:�N��r���u&U\s��N�Y�rˍ��,])6i�Hi��O��q��"�G���R��������=Iwvw��9ޤdy�A������Qq�(#Dܧ��>��	;��q����9�4��f��ue���9�?�3������������7��1f*��V�a���D�K��7[S���V��Tuw%F��1��4d;U���RR"j5�&l�NN���`�:���N�������ު��#�5�a*iv�8ۿ<�`?��s�r&X"��;Sa�/ۭ<�~���B��Μ��)��5.?��	
��H@�6���p�^΄jS����܊�6�9���9����Q����Xg�`'��B��3$d�k�����ړ#ؓ�}��=��[�F)�UA�("Vɭ��~f�Ϳ�b�u��e�Ϳ�7��13����5�?̿�7�����7����dnBB����v�)oj����ub!�IJG��B��⼵�\߀\��g;�3�rg�����K>���`r|�s��E��V'��)栺�va�<�>�	- ؈Ϲ���,�\�`�
r��+
](�gij6>�U!��"W2;����s]ںS!Q F�S�T���y�1�۰!�{m�9ER�p�?!>��cjc��+j�!U���HPi�v�۷�ݸ��<.���K�]Q0�����o�Ϳ�7�d���5��ϙ�o�%��.���W�����:=�b�OVJx8���>t�F�Z�z����� ��tUH�n_���<'.<'ɿ����r�[���p"%0a�,�kUKU���˿����/��x���ۆ��{�0@�y�b�<ŖB�\�?[��s_JOᖧ�+�!��i졏����j���M��3B&�nl�ݭ��.�����h�T��K��X�^k<�4ʘ��ڛ�F(�8���e������G%cS%�+D����a����0�k�Ϳ�c�Ϳ�7�����o���5���c������N"T�&-�� ��)��Ҋ��-j@=�N<ߗ���r̚b���Xm��;($��t�̚�,��B]��w����b���Q�Q���)���f�^��RQ���E�a�QtI�ɘ"��PD�x^��0��`0���5���-+��b�XGT��mD��$ƫHD�b�
=��v���/�
!j6�م(���*��+�%�]�j�%5�������6laN6��T\ks�
���o����o�Ϳ�7������o�Ϳ�7���C��c
g���*�.K8��v	iXa\O�!��M����`����	a9�%Q{%�[oۤ����B��d%����l�Rn�V�ug�"��Eͨ�$
#P$�J���ސ�t,TP�_�^!	��ף���la�B���!k��1�b]@�!<ױ+f��/�
b��Ԗ�eGÅ�,;�-t�;a�%�ca�F�\ER�~&��\�FK.�ap���8���y��4C���e.�	�Pۅ��`�Ϳ�7�����o����o�Ϳ�7�����9�4�3?%�T-���c�D|:AZM��$��&���9v���$(S=�žU������)Ia����(d�_�F�c�8q���T �H-Dp@-G����dQ�ێ�Z���Y��LY,Q�w��ℴ^�E�sI`�N�)^�?��y�!��o�R&A6�c沴.Vx�üer�w�؎�Q
��sP+b�E"�XQO�غ��8[c��F�G8�k�ឺ�
��d1�(�H��O[̿�W�Ϳ�����o�Ϳ�7�����o���k�Ϳ�����70d������1��sY�I�b�C�$��jvWkHG����i����5��S%
PR<qe��*5�{��i$���s���u�%H�jUlh^� '�c#��I:E��h�j��hJ�Q/M"�L%J鰣;h1�)�Q��]gK@Iv�W�X��t�0Gb����dthW��3j%�'�2��9<v�e7a���G@��H��2�%0���+6�����%]�+z1F^:Ou��I�����ͽ�c�Yߛ��'�6�����o�Ϳ�7��?̿�7��������0�����q�À�E��^��Z9�G�Š���O�9��'J9�]£a���'�g
��.��@S���L��❭�{�,&_��B�Rt���4�DX�d:W͠u��Ak?��b]v�A�i�çiE���b~v��k�v���k48�2�b�>*���f����H�	;�\E���q9�Clkq.D�&l�b]2�t��S��ș�hM�<6��Ty�I�''؈e��M�w�oSR��������7�����?އ�7�3��7�����o���l�&����L=��8�f=n���o��e
m!�1鯁��Р5���.y�?�%!���-&��h�m��sFNP�im;�«<
;6O��r�b��.�0�5���H�cE���s�H���T��:�"�?kb�P	���g�g��u�s���'�#�ck_�y��Y��

�foY7fS��/�#7��U����Iק4��=�'�n���b�\��6��?���]`7��n���?̿�7�����o�Ϳ�7��G�o"�]�
��#х�6#���Y뵮˺�4�Sl_��tqQ�خ��`
���j*s�,��E�y�]ېO��xY���EsF������W��H2ۦE_$9�k ��=R��7d�p���L�W�7�.l��yyK���r�H���Cl2�v��>�"��y�ڷ��h֖R��� Nr�|2i_�\�wS����q���1A�۹�a̝>D�h/yH�K�|ؤ��9�H�͓]�N�ε�7�����o�Ϳ�7�����o�Ϳ�g<Ϳ�7��[�W
2g�Mt�7N\U�����BϘ�ҕt�V�oLbqh�����"ԅ$����o+�C��̈́+yu'�(ܢ�p����W�`N��(*�lΩS�K��O|1�Gi���&֛R��!@�c]JN�XW�<���xoFHݰ�W�V��k��b?և�`s��7 -��k^�ҵ�$6�Fu6"WH~�>��|Vl�*��[ŧ5jnqcآd�EpF-��o�f����"9(n�1���X�F�0�����0�a�Ϳ�7��4�������o�Ϳ����l�K��Z1E��\$?��E,�A�j��^�=I��o3^�YB�tSj����{�q���9�"�T�LBY���]KzLr�b��\5q�
���ΗS(u0+2��.6t��E0#e���шYpL�+���ZS�����7��ݑ�Z�5�bS�nuͤ�[)�%�S�Dwg�8���LB�ٖ/(���1ŀߏ�"B���flvK]đ��	j8B���ir�8kll[��'�5����>�0iN1��7���3�����'Ϳ�7�c�o�Ϳ�7����r������GLqƜG���%5�˱����ˏBP^A{nA���C��k�8���,�(�$	0��
���SmqM�v:\kg�V\��h)��11��/����Z�0C"�֌\��o1"
E^�B<YH�:ԙ�).��Ýi�W��œ�#��fr�+s��`,�636����~���qA�����֕�ZG��bx�3sl�d"8���ږ���W�J/(�ȝ��:j�U�a�-B)UX(=�\̿�7�a��J�o�Ϳ�7�����0�a����o���������u⏊�ѓT��|��~N���&��I
!�A_\.W�,]Ge]���K�dcBgF�Pе#q�L��Lq!q0zC�L�A�������P<F�X|�;~�Vv]E8b�$K���Ұżb�)� n�b�0Ϛ�%�a2�e�C�B�����I�!�JŮ�h��f��S1�9!�b8UhD.���N�O[N-�
��R���;8���z�i��,o�<��>�n�j����B����o��1�����7�D�o�Ϳ���Ϳ�?�1�a�Ϳ�g<~|�;��3��EȠ�Z�u4��
�$Ё���|N���uڄ���\��{��XRw��L�/{wJ;z�$I�p
�a���1f�nO������J�+����h���:�QkG|zB]bo���R;wJ"D�eQ�C��na��x
Q��4�1]�Zm�`#�����tG[�-�;w>�L���E�E�m��Y�F������n��O��.��vh����Y�k��@���l��յK̿��k���0��?̿�7��?��`��$���0�k������4�?֠�J�*���4V��OQ��ˬ�d���NA���e6�>Yҕ{��'�cw/jS1�Q#	�5��o��%%�P����p+�\t0'.}J
Sgޢ�أ��|fl%���8�o�#t��a9&��؟A�z�5/⍐��`�7��2�E�����I����3�U,�S�Z��ڎ $I�9I��-�)�{���ڌ4�h���.���r��U%DM=�r�x�
�o��?rb�o��7�����cF�?A2�̰�����o�������7����>ͺU��.��2	(f��	�k���3��	H?�1�(�GB�DH��X��S�<��1��@��g�`�ABK���B�0Y�U\���%L���|fZt%�X1U��b	v<s�J�-�(a��,Ux@*%�5��y^q8��RLO\�Ǖl�4�Ĉ��Ѵ��y����D2�ԥ��Kds"�ɉ��l����#ʹ����{oEgjDh`nN5���?Bw�yU��K̿�7�����o����o�Ϳ�7�2��7�o�c2�?��@���ɢ��5f6;%�D�3];{���/��
M�����oӒ �!ܥ��F��Z�dvA7���?k�ʔ ��UD�0�sJ8�ĄL������C1z/�R�O����Mt,ﱁ�Q���+	עRRb�qq�¯u.�y��kc�u�tU�㥵ҟ�����s��''y�[�o墘�n�X�F����ze|:��i�������S�KI�F���{��3����\�9z��BnJ�6�����o��D��a�Ϳ�7�����7���������@�W}�
P�.�I)�_��U�Ij�S�@�Q|R�@yd�bN���\
R8��[�F�~�_�)��&��Ey%>�U�/�(��T5�~;�~������ݹ��P�k�^�DZ�ޤg�f�B}R�J�'9��LL��0�smA&��#���W)����в��C\j�t�*�=��<��P���>��ZUjor3�Z�/US��k�s?���y�Z�@kN�_K��l�®�O�D���8���Pp����o�Ϳ�?,1������O3Ϳ�7������t��o��������$O��~dug�-�8-.��d��-v=w�M���grel؈��$��#�٩�d+��,���Bx�']E����-N�;s_�U���k!v��?g2lK�s�Df�w_`�r_Vb��{κ���i��s���@��8������(��s�V�#�w�t�[�7[[��|(�N�-5�5,�9r�?�悶f����_k�j6�–�u4�_���O6�Ǟ��7����y���o�Ϳ�7��7�G�̿�7�������k��	�\S43�z
���d�/�6�k���a'��z<�9���8��)ؑC-h��e���jՀ�q�uN񻪢��E�r֊��pNuftC
�ϫc�"~Ǥ��~Ҹ�Nh,�5�VԪ=[{��e���
�;eL�ha��J�П#7���%`�	#��NN6xk�i\1��c�v���d<�j�� D/
�8j��M��bQw/�~����]�}7��&0�Up��"�~?�moD�?����m�̿�7������TH����C���o��?/3��?̿�7�2��7�?���Dj�"0ư�����k��47�$�G`�VG�qIGYA�e�N�IcpԨ�,6�/G:x	����3��Qfz(�H@gn�;����i���zBlbk֬ԅg�ܢ�"$�y+J.t�g�^:1/����y��8��������-6އZp-�ñ��Q�](�)��6s����m��҃�V����*�=cO��y�����ixק��⠂���u� �� w^X���7��������0�����o���o�Ϳ�7���2�?���A��L��F�(��܅��@3٪;�/f�ԅ�lw��"�k�����W(�`���t�{HN �#����]0�}&�7�&h�j�@�xmm�,?L��κŞ�V�={]�#k��2�4�b�@��pSr��ÇCrw�kj�9e(�����@$
���:4T��/�a���9�e�7ժ b�@A��2]��-qM���`��Ƌ��'�&ZP��Skm6�86�2��k�Ϳ��ؙ�0���s��7�����0������0��G�!NEqpDcP�]~𤺆vңx_ay\�a��h	��Z`tr�j�"(��hY]C5�	m�Bfr��w�|�v��~ AC�	;�`�^*}� �#��vՊ�.�n�	þ~1Xco7��d���(N��������ome�0�s}Y�}���'�_h�t�<`��0��Z:g�G7�n���m#�ց�_��$$�k7�P4�u�8�[\S�1�)���U
 �J��J)������K$s�4��ǚ��h���=\���o�Ϳ�7�����81������������|pp��kW�B�����U�&
��T��Y���;R���cQR��u<#s��Q�l:�1���}[�+J'��y'g)JI/5�M$��1{0�"��G�:�#+ V9���
n��ń�ޕ'v|(�Ib3�:�`��R[� ��c�u`��f�b�M%����պ,ڜ����{YM��D]�':����s�?w6��k����ds��b���o�Ϳ�7��?����]����o�Ϳ�?�o��H�o����?��h��ЂY������ϳ�v�8�{�����ٵo���3��e�C}�&��v_�o���Y>�Q��t�J�
_PC�߬^�0�s�#���L��
nC���ER$p˒ZjJE`�p�ym@g]��MroP�� �`���|-����j��x]�x�V���/	�rѴ��FNc6j��L�2�y�!�}&gä
�[��S¤^.rEx�u�͍v��H�9��3&̿�7�i�q��}�O��Ϳ������-����se�o�Ϳ�7�ׯ�
�?>uo�B�Dr@A����(�k����X"���hТ�<�5�h�_��G�s��,��QyW��`b3�u�$�<f���o�9��e�%�'��1�Ȋ�=�������Ub�Ł9��Kֽ��x�ũ�y�+x����q�Y{�U�<��ͣv5.�G���sڟ�g�"~�zn?��϶L�!���I�:��x0����ng��Q�5�N6�+X�/�ٹ*�C:`�,�o�Ϳ�����0�;��7�����0���0��}0�柃Ϳ������?�%��&���r����c�_�<e�W���qu�*�%�+�-lq+��r�ғ#l��&�n�����7#p�Z߷w}�c�{~Ke�����7���]�r^뼠i�yy����O��Q���>2��U]������k̳$fT�(��j8��L����P�+tHk�i��n�s&�m�dL����H�n91�8#�־ϵ�0�]��k�5�k�b��7�a�Ϳ��)�o�Ϳ�7���2�����g�oΘ���a�Ϳ�7��g?��6�`�p��̃U2t~BϪ�~|5�%F^���o`�|ڵ��ɭ|[��Dx���g-�
���O8~o\7�U��!�M���̶��$��8��y�3���&� d�:���VL|�aBn�����]q�����~�u5�sȨ�lD���R�ms�3su	��KY���U�b�'�&��󧣧�]�E�@�;\��iyM�����fb�zNGV|� �����o�Ϳ�'�5Ϳ�?�1�����0�������S����9s��͉�,Ɋ�K�/;ͬ5f����C�
�*��w�B��Z�UOF��)�R�d�1ծ����"�^���^7���h%��i,�z-��r��q�8��o�q�}�D{¶�z��sU!F,��KL�š�AE�<�s��Ol_�A����B��Àm��@y�X�h�
ѬümB�d�k����PHʙ�z�A���bӛ��7ge���dƛ�?������/����7�k��7�������_�7�a���0��{��Ϟqd���
���bi�e\w�>�i.�̯lj�$�j�%�y`�#7I�D;��u��w���|���
~t�V��o�շ
�k�g�N���!�y����T���>*���ˣ�B�k�ͥS�5���[^�G\��pj���pR��t@��7�����x��v������o��s������0���̿��x��j�?����7��?�6�ϙ����S�h�Q\<��|<WdqxϜ�S�],�Oёt�R9M��E�k�lA�������Jz��[�{|J�I�p5c!8%�C�r��Ǻ@3k�*)��1��Mn:|]�6�Q;l3�q�&�G~�����6?�=n���:��ۚs2������؟�V�(j�|��v;�,B�]^�|ܒ��$K�C�鿸�9�����8�����nڳ�b�k��`�Ϳ�7�����o�Ϳ�7�����o�Ϳ�7��o����ܦ��]'X0��������7t�ӝI�n13���X�q��(��I�]q$�/��cz���.(��J��fW�?A�)N��ׂ���x��Y(�H2�����El��J�I�G�T`6����R�~1sD�ڛo�͹z�W����fj
�!���
�Ea`L9W���I�E7����ÎSQ%]��U6�_6:ĭk��U��7&3�}эe����?���h�Ϳ�7�a�Ϳ�7�����e�Ϳ�_?��b��4�R�HY|��E
	ŹX��1Gb�h�X]ȁn]��!3'���4{a���[H+�����v����]XS=��!����h�\��څ��n��-����w9����j���Y�ﳻ�~��
s��8o���N�p���f���.3���"Z��bƸ�\+@0m�}��'y� �"G7v
��ן�_Yw?ws4�b���O��o�Ϳ��0��?������o�Ϳ�7��u�����WO�L�y�h��.N,  F�yd1��mc��-Ș<��Z<;�B䅡����3�
�v�gN�P��\B��O)���=[_:�Z���䜗-�b��i^����n�m�����0Q8��;w�F�N����ڧ�x\b�؞�=GC�#����qp�a�w3�H��n��
��Kc��jcD�7XS/cנ��\L뜾w�jL��1ʛ���CZ��7�a�Ϳ�7���������o�Ϳ�7�3��7���,f�U�S���L��W5��`0@'�W�{��j͊��eG�3o��N1J
���Թk�!�! �U���"d��DG��)���B�TtﰲcH�I�")Rs�@^9т๚��E���E�~��
�O^T>��גy&/��Fi�$׌�zvm>nb-X��^?�j�j�B|����zsmȎ�_�|�H�e�X��G����~����:�>eWq
u���,�o�Ϳ�7�����o�Ϳ�7��O�
��v��18|0�����_յ0^���:��8
���P���IƮU)ɀ혳]�(;��� ����k�\�io�ߦ�Ho�b��pY��d11�5��k����մ�p��ub`����Ʊ�+6�s �(�)����=*��	D�
Q��qe�385��A)�����P"H7���eA�����8�1����:-a�����i�
˕��T.u)��|e'���ᳮ�܀&#ԶdV�9߮f۳���K��%jg�Ϳ�7���o>��o�'�����m�#�?V3�����0����,�?�^�p$c��,����8\[!�M���yf��>����.�	^!�T��TD�Y�,�dPZ�2)N����?3F�ڶ�-�Okc—0v�	���&R����os~�a,���zωŠ#F!�5�$�]H��o_�����3�_͵l�9WGN��MaI@'���:E=��BlfN�VLα]�D��A,�A�8a��`��q�FNz�%t�޵:)~�+֧����"��/���jń̳���o�Ϳ�7�c��7���3o����o���'�o������?�g���%	v"v�`v�'��nA�~Oa���,�8�-�R�R�Lf�8�q@ʁ���Dmb�&h���D�M��3cQ�*��$ "�?b#家M���Ǹ����%���!]��S��g�"H�R���-��?*��K���x�1�5���ϱ���ټ�µ�Y�v��Xk����Iz��y�Y�lݬ���:<��q-"��L�iϬ�+��l�j�Ϳ�7���O�Ϳ�������o�Ϳ�2���������uE�.�!����Cz_�<�h:\mj͂9�q&ղ)��[��ˡ�h��s$�%<	dN��
�
H�ǎ#
�6OY>���f��DI��M[��$����˘���;/����v�Yfl1vXRbIU�Z����`G���$��Uqx����[�:��@��gJl�\�(���]��yQ{;ǒz^~㮩i��]����_���s���xH�k��yLd>@
���A
��e��[�\�$c�aU�{E�S���lĒv06����o���^a�Ϳ�7���oͿ�7�������b���:�J����5�1�	R'��1*�ҝ�`$�m���'+�E
�#"�{�3��@0r�+'�n�Sc2�%~p��
���}N���:�օ�g�;���Xt�9B�rm8|�1v$:�	��lͯE_���{��7�)�e7c
�m\ɤc��#z���l?�lA�4���{�@P9/#(��� ��d�;nW�b$5��f�(9{E��Sp)����HܞV�Ƨ��gmpBn4�Ѭ�)���ݤ��c�yz��m��?�3�����o�Ϳ�G�̿�7������7������?pR:�,�)��m�a�)�`
&��3lj9ǜ\F9��Ȓ�j�pZ��E��۸H)D�2�/�T_�$�`�55�[q����T����m����̫��� ��_�/+�ܪB��oZIK͑����O̓S����=�sK�H�V�i����m	�!*@�ޜ��L{����$E�sđ��|���;$�C]v���P��2���d,�v6G-za��3+N&�:5N򷮃d	��N��g�o�Ϳ�7��_�o�Ϳ�7�染���?̿�7�k��7�?#��6���k��3��s�0vUl?�*i&�Hd50�Ȩ�f�Y[��������\�H�Q�S��8�6�z�s��"�5�$LyuM�}M7�&�<*BJ���C���yV�+��wŠE]kW~lS��D��ؽ&(�'W�D����Cnr&��e*'�<u�� ��۷dm����+f�AWװ$`�?�����k���=pZ��2J�
��Ԗ9�u�����w@4ܘC<F���ߎ>�U9E����7������o�Ϳ�7���s��7���G��o���V��6KI���p�s�Ӵ�P�>� �0\LT��U��.8]L�T�y��3�{���T7ŷ�͂)���˜j��v�;�
lMN��Y��*jOm?Qki�S[�oz��?���S�܄c�����ZدŞ����?�&��iO��Dž��ۢ&dr$c�5QS�&b��^�#�
��C�P�,�1iݺ\ь���H�&d&���˘����
��f��*��yT�[kV���+TC:Έ;����o����o���>6�����o�Ϳ���7�?7����H����Y��`�Q[����`g�c$�\nd�:Rn��E\36����ID��B5�u�ߤL\�u�$�s�MM�D�-���Х�Ɛ	+]<kʈ��`eA?��2Aw�?��
F��v�<oa����3����o-�fc�i1�8p|ͺ��7�C�d�k�c����ў�O���%)dmu�P�/s�
�ZED[���(��U;gmmJ:�ѝ��8�9"��2�#�B3�`�Ϳ��#������o�C�s�o�Ϳ�7�����7��������GJ��u��7c:)���b,R&;�+��"�ʼn��d(��3�X�$�#*�nM��ډ`De�
f(pu�N��
q�D�%�A	T`.#��[f*m,���Iڂ�������\�g��^��5I۠@;�:�s����dN�`��k
ќy��V,n��"�u�Xt�s�*<:���ݱ"!��2�� q�BMs�a�PJ�"fo���_3C�'u!U�e|�^��;�-��2���#n����o�Ϳ�7�����o����1���������o�?d�/v�0a�X��]�)z�?����vL"
����n��
��&ŭ6��@�c����E<h�Zag2�B�9&Ikc���90:��ۄRt�K� ����]lG���[�)�
;�<�aT��Q�w��敃<���F>W�M��yEM�K@p!��2�W}����YUbd�:k�T7L��=oĊ����±�.��c���Ϩ���I��\3�����0��������/��o�'7����d�Ϳ��3�������G��ϊOg4P��QH.�H�
�S�\w;��g�n�]���m8=�z�Y�E����:�j@����!�&�~��1��)�9�o��Oʼn;�F �j
,ϫ��椄��m�:<#���͆�sW�9C��9:o��\��/mU掂�1~�s�M^M�!z[�"��6]ٱ�3��7���s��a��.4�H�Q��t
�{۔�Y�Ϙ�o����?�0����5��S;��7�����7�����7��K�h�?�UMt]��kL2:4��R��W�-���kL�,yͅ��{�`
m�@��,����l�8�H-L5��ݲk�&���d���ĂiIta�ǜpX��N0�TFNt+AY�mm0j�g���~LѦɑ��WL��y���d�7�eg��.����{�s|?�;w휸BƼ���#��3c��q`Q�,h��V�9b�A+ȱ"��\*�k�{-�p�f��^�ә���]z���H��?�<a�Ϳ�7��_�1�a����o�Ϳ�7�����������eW�3*�
�0a��+I%
�k�" -&k�<��u�XM���,�o�E���|�
"'��@[�\+�\�*�0\_�E���9ƧR�h1�M�g�j�eڽl?q��
����,�Јh(� &��O�R#\=��O�hW�h��7j�01Ez/�ݍe#Os"^�z�S��)�؍�4kc����^u}�cT�J��$9��(&��EOU�+��q[;�q�Ý���o�Ϳ�7�����7�a��,�o�Ϳ����0�k��o�~:���ɟ�U�CA8$�>`�����?�}��;�^�ÖyΨW]]���2�yؒGA����S��SmW��8T0�|�ɦFyN�Y"��m�s��ST�|:�,0�|1hǏ��-��/�[7}���x�e��s���Y4
�	_�D���Ǹ`ݬX�
F���q�{
�]�)Q�R7g�}�@�ʗXQ�D0�׊�娣ʝ�]|upה:�;�,	��s�ͧ�?�o�Ϳ��v��o�{N�o�Ϳ��v��̿�7�:K���u��������'w��s����ц�Uq^;��`v����y�����Lwq�Ͷ��.H��؍�
,�‰�3�hHmLum%aTv��<�0w�Jf�9{m�\{I?��rˑ�u���,6]��e�W��~l����;�������];oYD��	[䬵�_����Ϯ��;(Wq�HB8�����M��̭�8�E���VnG{mC�T��⟱�ZS�R��}��M��.��)�YŊs)>��:̿�7�xl�a���s���7�a�ccg�O{Ϳ�7��_�������k��a�����[$%�b���0��ʩ��y� ��C=��:��̉y.	�Ttl�@�>��v$�>_B���_ʲI�b�Ÿہr��u��1����SQ�D0R~^�ۓ��jHl� "T`|��Z�ױ�O���S�%t'�N���+�=�MЊω�S3�.%1�HR������6:G������H2�ɘb��3vR_ٞ"'�q
��
�>&c	"�nVG��nk�Z�́��e�>J!C��a����o�Ϳ��o����0�����o�Ϳ��0�\z����?w��E!.�\hr���L�`�"$�5��Q��Q���K��J+�$0E�*&Q�>��+�.�b�ϒ ���˂0V�V���d	ݛHT쮡��5�
��1#8x<1	�X� �\�&`;��q��ۑ��w]BA�
�"�?�pl2i�־>���e�PŜ����p0��d��L|F����I���Y�*�������Ve�,�Q��rv�,�6����Ү���j�ط���u�Ib0��	̿��Ϙ��o�Ϳ�ǹ	��7�z��o�Ϳ����#�o�����8�?$k$��,�u��y��nA��U�N�ty�6�K�%ME��`��B��	�v�`6ɻ����^\�$��M��JEp|3З>�f�bW3�[[�k�@��6���)ȫpyMWV��JA�e�L���P�'(����qt��%R3��	8��c+֭�Ldc�.�<�j�*��+T[g�Z��;�o�@�{>�qp1�@���9w�n����p{!�xF��V��^���<���<tN���?���o�Ϳ���o����o�Ϳ�7���7��?����?8j7I�b�<�Uï,ɤD_�^�T)^vw�di�)�8�Y����k���L��s��-���o�'�ZlɤׇP�~>��Sy�ø���5E��}*���[���!Ry(��D�R|s��N �B�)1��@�*�[#>�l=��u�9�x�@q5N
]�;�Jb� ��D�.�I[a}��J'1�'�+L)�˩�t@��1���@7'���a�R���Qz��,^25���Nf�Ϳ��d�?���o�#���o�Ϳ�7�����o�V�,���T�6P�OMpR���Q�
����:�ɀЈT0E�s)2&��.W��O�7���G��v>a�u��	�"mO0�YJ�g�Ac�,�]9�ۃ6aB�J-�-�D�T,2'�2�E�[H7Q�t������ڳ6���kc�*�0��'78��}�F�"���"�~W�@Q�&T�Ef�T@�\K��<$
6�Ǝr�o�\��L��*:]��\��$��VG��K��sC�I�����°����T̿�7�����o�Ϳ��	��7�����o�����ڽ��c��;P�F'��bN��t�gp��+�������]��,���vv-2q�Aے"w�zO_}P��D!�<�j��*Q�H–
��	��-�Bl����8������؎cn���8l�K
�Nx�
�d���x$ ��kKM
�\1�Hm�&���K�Xw�h�8���tj��P)�#����i�����W!�#?q���Q��?r� ��Z�:f��k��9��S�o�삒1�Sc��g ̿�7������	��7��7���5��������o�|�,�b��R��pf��]�	�vN:T��K��jQ��B���ܜ��>+@¢I���	����F��&�
��Z'��)ZDo��
��ˉ��a��L����l��s���Ӧqb%�݈{Ͽb$��:��Y<�b�M�%��Kcl!Z�;�N�^zS#D��L�K��M�vogU� y���\£�H�u9��
D�#}[N�^N
X�0����&6�ݍeEʩW�B%LP-"b�Ϳ�7�k��7������o�Ϳ�7��]2�3���o�R���v��`Ft:j�o�h1���dr�[IQ	��b!L�$�SR�0��g�S���XQ"FW��`&*(KuTA���xŤ7��W%�<�ON��?Z;Y8S0[��#�SR1�ST��y�Q����m[,���~��68u
,���cCP!J��R��ܜ��`���+Xc
>�A
%c�R7�IRi��&�Ѩ�?��s��J\��m(,!�_"��ЊBE��gv��vF2!��LX
�)7����vb���7�����o�Ϳ�7�����o�����Ԅ�7��������$fq�U��P��Z9�-� 7mE-�Tҩz�L���Y����1��
�糖��ƌI*�ۺV;)*�-��ǣ�Ti�яcbȗ�����E��r�|� r�l򲶷8(���m�Ԗ�8'A��L1�,���2�R�>����Sʎ���M����DPg.�р�m��x���;�8���DR���PZ1��ͩ�9|ĕ�]�M[��=[����:W �&e#��Z(�}ٔ����a�Ϳ�7�a�Ϳ�7�����7��?v�0������Kg�o������'V��/�Vw���Av��͗�*r.t�F$zxvA����(����\��U�y�;�5jl�k&��D���D��9��TWw�c����^�<��#^-�3WLUoiK>S���Yx	*wmo�hv�6 5�Ȳ^B
�h����Z�0�;�ϻG�f����8$e�v��Y�y�u��U�17,��-���1���:D�7`$o~�P�z����5���/>��o�Ϳ�������o�Ϳ��4��7�;���0������x��Q��	b/ru�=)�t��Sfnh��sģ��b)�k8+��T$/EJ�x*Bb	�C]]#��z���#PS�W�{;�5	-��a�:����?[83�y�V�vgƪ�e����d��С�@�s쪸�_1bY`P��f�Z=��0�:��`�ڐW���$N�K|��SQ����5��<��:jp��N���xM�L͵���B��W��L3v���G�9b�V�� ���g��'�����?ޙ�0�������7������o�Ϳ�7������ �OG��y�Ȩ%؊	VTop��G��E����8�~�N����j#Q�Tlw�"�x.3���K�ǜn{59�r�:�B�P��ԑ@�w38V$a�n���$�\��!�C{��A�2(v<��B�Tg!̂��)@v�^gR�E0��!�b�f'9_�-�!F��ٌ(�y��u����\�Z�O5"Sy&'��L{��)э�8=d����R/u<!��+���י�B��?"g����?a6�����7������o����o�Ϳ�7�?���h� ����.�5�����n7D:�x:O�d�o#<�p��{���J�_��nS�3��O���x=�"�n�E”�-态��lƈ*��A_��/���M��)�kʎ��L��s���ڇ�9�.����@F*IoHsq�A�����"!1jVL�>�Kŧj�ޝT����'�tmM`&.]*ڏkf�-�VƯb�U<�$��<��'6�r���:7��pl
���O�o�Ϳ�7�����7���_�����o�Ϳ�7���G�ѫ��H~��MIt��DJq�i@l택l�.Rp�[n�J�YV�O�a^����d�un�p�&@�9�
SB�����}*��d����5Q�gѝ5���Q�#�}�▇)5��V��M��U*�q�c7��R25��x�F�+O]v<N�Ak�(�ݬ0��UV(	Y'�ɘ%Ĝ+��P\Yt�A~���Z9�"D���O�'釮`���'�;�c�X��f�� n'j���a�Ϳ�7�a�Ϳ�7�a�Ϳ�g|4��ce���i�w��7�?:����Q�d��"��<�ܒ��[#���z#�qE����q���3�8w��4h�}<"�v	��񮝸n}oO��.���.T��B�%�A�1Qcr~�g�b���SkwM�(�1�3�����#YD7�M��<!�T�w�Z�hȎ����[�Rޜ"�B�0\k<9��u�z�������˜�2K�j�;�v�ֶJQ9��!�c����4��S\��g%@�l�&��3��bc�����o�Ϳ�7�����o��>�/���o��?l2�?8�����Ϫ;j�X:?�e
�:Q���I$mb���u�K%�ɫe,׹��#��綪d��rmYp��ޟ���\���l�9�5c^瞥�� �:��s���9'���?��zs&6Oc���!�;}�����'�>Y��CRƎm����Y�]3��g���^?��xؚߩ��S�O�+d��hݿ�o�?�0��?̿��u>���Y����7��)Ϳ��o�Ϳ�7��?��V������n�Y2gbv�⃑u]'���y.WJfM�/d��|��)��o}��]
VX/{~��M`�c��B/�U��BL+���9�4�u�/ߪ��\���I�!}}��6�g�t��R��v��3�s�f�3y��(>9ckk6�qi<���d����N�
v �[<Uo6�d[_×��Ȟ��jhw��|��|6c��t׹	�~#8�#�q�|�^�IdŠ���6�����˘�o���a�Ϳ�7���0�����7�?0���dn'+���%10}!b�<���ox�I�^{ʩ>��xⰳj@�[_2���Q;�'&�E�S��a�<�V{�Ƙ��I�Ni�>Pǣm�8��U,�w��6�ȋ���A����"�n��[$^
p�����dޅ�n��K�񰁷��'��k�.E��~�v��5��9����u�S�����s�x|Yn�ΣL�w��k��]h����x���9�/F��o��knA0�n�#���o��w�o�Ϳ�7������k�u����u���UA��7BJ�,�H1�4���|��h���6܀/)�'G�T�T���>\�
v5�~n����%phr��6�W(�)��G�C,��y_�d��}r�1��&"�����&��Ң�kI6���]��6�v�S6�C��+��(2X�}YgM�`HNԱ4��5�<j�BY`�ZmXUϛ�ONv̧�#�=郱�aI!����a��^l���5�<���o����r��s����/�Ϳ�7����d�k�v�:�ֹ��z��k�Ij��ަ��-�;,{;�<�@޹�\PL�0�k[��c�`�W�m}M���	����0l8�R���v/ě��YMy�:t�T��Y���"���ڝ|l����ypvg��Oe�����Y�@�!�4��~�7Ʀ���NI�0>]�3e͔�����I[�����&_�����8�!�/��
a}5����7�a�Ϳ��0���_L2���c��7�����7����]3���A� ��P
�$�9E|
�q�n���@�8S&�$s�5��I��Jۮ��!�H='��ձ~�Y�}x�E�6M�9��,�AT�:>�
cY���ÜO�ŚR���3�ⰗZ�����Md^����Ԟ�E�����M��m�ez�=���IJ����7"����>s���\�b��'����[��37�xg�Q����o��g�o�Ϳ�7�����1��������O��?~���{����pB������Z���|[OL�H�'+�>s�;-�a��É�������)8ݑZqZ���D�N�S����_uw�L��@H�3�B�R���|t���q�5�;gN�ʓ�;��k�s�$ʵ;��"�s�)���ai�m���������~H��j�����:.)��z��w�n���k����>8����o����7�����7�}=��7��������a����4�?��X�����k��$�n�<=�5���w\Wb�V?o�:��B���uD\�4w�������F�(%|Ѯ�\�
���J�T`�"<+3���(�nc�^_�q����5�Ja��]X�筃lYk.{_��)�Ԃ���;g�E��\a@]���#DĂ���v��Fڙg���9qE7�Z�����&�#�E
n���9�����m3.�.מ�g��ɽݚ���)Z���d�����z^������#s�rN���4�o��������i�����F�Aɩ��V[,����hH��X��yMx9�������`E'q��0�|^�p0Ћ�2��Y
On�{h�����ob�ؼ�md�.��u�9?me�g�u|z�VAr�m���T%����R��2�wnc�?�o�?�0��E�#���Ͽ�g>:P���&��b�DL�S��ݐS��������T&�ݙ'h��L���'��b^֯��ד��LV�m�z��r�!�G��o�Ϳ��#J���آכ�o�Ϳ�7�����o�����nA!\�ZPK���6�4Y��Ib"�K8�[d$��_CSϫK㐚��Q�ج�9E܋ԟ�+sݫu:R3�ݰ��:̪)��䖼���8wl�O�@�)�;��˪�)񘕕��6�G!y��qq�>��̱u>�4D=lE�u"w��9����!�3T��]g����&R��<E�V,&TP��/�t�c�}��'��t�*�<q�����ca�o��0����:��30����/�̿�7�����o��O��;@��sAn���
yh��Gʙ�`q� �NDU��잆��ƈ�	�ݽ�v��J|���k��T���~ꂧ���G�}����zI�3�,=�QB�x��'�
'V�Ϙ�d�g����c�)��8�9����$�:N�m~���d��Cf�1�t�85a��a�l:��9:G��8���=�jy�xIg�#Fl�ꨉ�4�u�]��o��'O�C����w��?
���?�G�����?��8o��Dp����������#�C�o��?ϙ�o��>f�0�i��7������m��S��iC1~�a�R�j��&_N��
�t���ɶ�覕�R]��}=
4����}ͬ5�EwT{�Mzh��}����_w�
��R��qf�Qˆۙ�t-u9(<�N��,��-Or1�s��$�9]�ؚ���c�ͺ�=�j?_>?�=|�t"������EN��DM��مq_�PF�����w��7�z����D�c��:���$�x�0����͸�f�j�Y��乡�D3���f�zޕ�
Ž`b�<Kq�*��/�/��a��?"���:�i��`����K��{����O	��&���r�o�Ϳ�dz��������o�Ϳ��k�݃3&�b#=�e��)���l�� @A��Z��V@��t�
���T��<��hd���`P�h:QWSI�T5	(ܞ�1�6NQ���K`�3�@�3�s�j�01��o�_���X�ND��-�e��HI�|&%/�͠F!$([����7��sk�]��R`sĦ�#�G��G���o�@�K�"���/5ӳ�
n\��a�q�ӟ��Ҍ�ͬu���2���3�i]�����t��
�o�Ϳ�7�����o�Ϳ��o�Ϳ�7������$�B�R줓�.��Ct�w�6���Kb���0���O��%�ž�)��Z�
_�j���I��ؗ�.�SQӁ��tP�X,�1��v"b�q�
l�%|����t��s�SI�h������a\ն�X0����٭�ߎϷ|봿�B�P�2o�zmB�rl+�E��F��\�4�N��t�!��(տhA����yw7���ӓs����9O&�<v��W�#-6�ZP�)�}�??�d�?�3����:y�����0���o�#̿�7�����������0�����WS;����Jy�	��huu��)��IG�Pldv�	$A��*C�=ąe��΅('Qk�1���ܱ��tխΡs��=�n�
זHqfL�m�0H�1>��4'���q��^�n��1	���Y����~]�@8���s�'���t���ٲΉ!�I@仯���	����j��t�k#�[�I�n6!L*b"�7է�����D��b٨̿�7���a�Ϳ�̿�7�����7�����o�Ϳ��I�t�^%<ar� Zw���"@!r|���5ٕ�)�#h,;�@��UI^�09���Vl�5�&��&E����\�&o�V���f`��p��Zt{A(j
4��e���SM��䕫B<)Q�C\�V2�B�xjԘ�bP0SD��V���1Wy/����Gz֟�ϊ�hJ΍�Kq\��*����?���+��k��ܲ��Rۏ:e�Wj�@J�%��E���)8��-	5*��~`����u	L��:�o��7���G��o�{j�o����o�7�����0�?!�]z���W�<Ox�M'��^�1�H@Z�=�����q���{�Ww!3hR�$�5����ж3]	�� �����rt0y��\W��i����"���w̝{��cN�k|��`�&�p������M6�	����T���#�B���o�=>��l���o�l�%j!��k\���5X+p����b;(I�r��2>]g�u壪Ρ�YJ'�q�1���!|��m1b�޷���VP�j�Ϳ�7�a�Ϳ�7�k��7��_�o�Ϳ��o����s��u+����$'LX�2��H?/�3��J���n��k�Y;��H?;��e<:��]�d��RL�js�E�A��������&BR
<���Q��<\]��P1�X!O�>�@O��d�-��h��59^���g���P�rD+��lp'�����DT9vķ�WH���W"`9u��ԈIw�{�"�s��'k������/��z�{W*n&��y�.��~D9�&�b�a���N��Šg�)G�Ϳ��x��o�Ϳ��2��7���6���K�Ϳ��PI��7��v���H�S��N�P
0� �SҔ1L`h�dE��2�9�V�u
̣C�
J�sz�\��&����-�#H%��:��֩Gտ-ؚ��إ���
�p�"j.Ŵm���Ui���;��	�
E��Qv(�!I�
lY"�!E�6��Q�����41q,�Y/�ʙZ�G��yP��a���/֠N�r}+8�kL����
T]���ǚ��w�AK���f"!70��V�[�]�l3`;)�����o�Ϳ������o����o�Ϳ�7����u��ڭ)F��ʢ-�.(��c4��4�2aZ�u�p���u�L�|d�� 1"�� ��x#>5��y>����X��w��r-�Q��ۙC�v%����щ��T?�sl�(��]�ϥ�U0��Ք\����*IR&(y��{�qq�9�52�_�Q0��6���ͨ�T��x��mL]����8I��
��;&�����3��7�26�,�c��!X�՚!5C�)��o�Ϳ�7�����7�a�Ϳ�7�����o�Ϳ���"�8�����X�R0��	�׎��Ӌ�����
U(��(��c��΂Y?��"�߶�(�P{/C�X�SS�WAՀE1d�j���
>~� �3�m�V�rs,�����,�*ז��*�4d�
����q�	��h�~�,����,F	�H��h�q�5D/D��L	���"���(f�@�"xE��+�����m�D�ƥRQ�(�z���,��j��5Sc^�Ф�ӽ?�1�
���3=����?����o�9��9�o��7��90�a���#���9��eD��{>WB_-�RLX�r���v���D�������͵��)�"�!B�ݩ���Hhs�1�=EP�+����֊!������_G�k���kZÊB���]箎��3��ύЁ�"��w�E�b
��QA�&��&1oQL9c��#GI�:�g������~8\���°������U+��mVQ�9t\X2�E{��f�i�,�ИЯd'�T+p[�a�J��b���5ؚ�,���o�Ϳ�����\����7�����=e����o�����?�,t+��.�m6�!%[��]�c�/�RRA;O�0da�<Iј�2Q���R؟"ݵ�	��i�I��~�_J�#��M��L_'���T�x�=�Ș��Lp��9�@l�n����|����J5
�?�S�9ƢP�k�.*e|�6���I�u�Q�UE|��<�D���&�Uۉ鬕��uo�u`��a��2�	ٵN�lE�Ȩj��h�%xHI����N���3~�ˢeͿ�7�����o�Ϳ��y̿0��?̿�?,0��������9�����,�����j�.))�c�D�jg�&�)y���g"�e'Dv��a�0��Z'��|��1��)���)�ę�8��"���]'��H"�
t�H.z�@O�I-�y��E��0O�سE�,�b݌֑�*�l�'Wj�
�]���kL-�8?�\��aoJ��}dBD;3� `����ͬm��	���
�[��
\��%\�51��=�0)d�q�5y���`��<�o��?
4�����o��s^�?0�a�Ϳ�7�����S�u|܀�SC���H�s�m�0#/�s���� ݔ��u�2;q�C�����OG�&ɜ3�a�@ܾ��4Y���T
F�`�O�R[)��3	�.Y*��"D�����s��-�N�uS�P��F	\(f4�Q4�Ec���X�lR�|���<�-n��ǀM޳�VW�7�@kO���r,��)�=7[�����ڇ�j��Ir�;'�yR�������i\��ƀ�+�
,v���!��V��.�=0
�O�u�0�����o�Ϳ�7��?̿�7�����o��O�̿�����G�8�vJ@�j1Fǰ�h�Y�_=8ȔLL�mL����aa"��v�e�}%�!������-^ӊL�&�6�bf�y��x�h���^��_K��> P_s�3B1�K�k�fɭI*׼��������Ro�_՟sb�D!�|\�q
nOHj7j��X��I�- �*��~䬳��%���{R�جҍU�4#ֺ!%�k�Rѽ��	�x�?Ey׶.�TE��o���%柱4�}��	���H������o����o�Ϳ�7�r��#7�R<��ca�cn��li'Z$��`�QфfR������v���o!j�X��`�p3��ո��:�q���rV�B��ȹ�(Dhb�B��Em�W�$ñc��8(�=K���
FS�����4-�.&��q�A�hvix��PQ��XBT5�%^�I�����#9v0�}�oIB����sC�5�O�a��U_\'��n�Gɷ@���^�%Ղ/Ҳe4y&Ȥ���;��
!r��$e�ɉb�h�Ϳ��0���������_�e��q��Ϲ̿�7�������r�G�n��u�Hl�b�����0���M�a �jlK'u��>�E���(H��q�QO,��&�Q$� J:�ko^���
|%m��@��[�P��k1Þ(�$G])#�}.����	ү[����x��<��P�����,ƻF+IW�(IK�� �7�E���):�$�Z��$�P3S!�SO�]�(�����M�)B���J�X
Kl^��:�930D��<#X�Mj�v�1�4�����o������ÿ0�<̿�7�a�Ϳ�7������?��pP1�Ӹ�,�#s�^�N�eP[���K��D1��j�����ȕԌ�&���E+ON�)sP��d�>(�>_�2�1�����r\��v�8e��N�cX����^��lA`���_s��m|A��9^9TŊ��m��>'}f�3�R��:l8҇.yzNU�)sϒ]��Bj�����W\��p�j�Sb=�6f�κb�N!�V�]XCb�����<E�[���޽���6h�o�Ϳ�7�b��7����?��ך����o�Ϳ�7����jʵ<C�Z[��e	FN���ì��b�8y��T�}Nx����8Î�FpV\.�hy?���ơ+R#�%�9
"ɟs�/Ň%"�ۨ{�<����n^o5ծ�w���6�QzmL��W�Ќ�$4n���p�:\;k��S�#��To�qIڅ
bb��Kɤ�#7�!0���[�~O�Kӡp�@�3F��è�R����Hbʥ�|��t�~����*T��V5a���6�����0������A6�����0������[�A��0Y>Ջ�
B�z��u�:-�s�B�Wݡ�Y'6<��3R{'�BɰX�ʍ�(HN�?ؔ�.	��B���SY"��[_2��^�Y)�k�k6?o�H�H��g�޸�R�v��̀��a�Wِ��=���Z�:��P����j���f@~J} �-W
W/�奕�{6�GF�=!�G1����ꏮԌ�	���vP�)�$�v$V;oB�8f��F,us��o!##�_����Ng����Ε�7�c��7�a����7�����o�Ϳ��#�O��w�gƉ����Ց~]$t�bs{�,�ȹM`[T���-�7$ѓ�F�hQD�,\�?SIZ�4�jrm�]��!�`?�j��B��x;'~�3�2y�֝?��8aRLqݬsڒ]F� �ۉ� K;h�9t�u��"���Ew�d(�d$�˰���.�a�6��qojZ��k5{��Ӿs�W�D|Q�ȏsG���&#R�[
���/j���O�Ϳ��?������߹̿�7���Ϳ�7���	�b��7��_�a���? ��ڲ����̻Sw�ܬV p^{��*ڍ��htq��"��̄�@����v:i��7���Uj(�l���a����`%��
U2�X�3&ߦ�E-=�{$�v7�]�� k�Wf�Z��h9��~�k͚߂q�Ĥ��m�>����.�#��|�x\H'��}��S8��qܣ&�Xq��D�ڴ�8��;�h~�N]�c���e����X!�@�l>�sΚ�M�f(�z���x_�(����ſy��U��R�POЪ�u���D�DB�j.Mڲ8K��� ���Z���R����d���[޴l������*��?���<��%s�JC1��Y�A%=��%��+�>�ϹB�:e^o�Vp����?�T��Q�����8�K��9@Df���m0g8��'��`֙�3��s��Aԭ&G2=E�c��h�u�����+��7�����5R��������0��_�1��?�9�o�Ϳ�7�a����7���������6�H�	����(�KA�va:�"6x�)��2���X `���#2�gh�Kfr%:%x�N?U��.b���</�e5�x|����s�̅�E��U�2Ϻ+#b(6����p<՟	�_k�͏~�������vy�������C�0����H���K)IJ.�!�}"���\�;t��Rs*.�lI�S�?H��v�]��,�����Uı �QO%�Ϟ�z�ì�}�
��llԹ欕�<Ek������>���{��K����u����\�0�{ϙ�*)�TRm��LN��ɸ�uu�f��h!�X=���w���c˝�G��?OۋS���f�\�m�B���/�W�*^��c����ߏ{�;6ٮ�~1x}{�0��#�-�q9=����I��y�0�"4��stb�J���Q3'�I���aع��no^a�[ 9��x}�&3]�����7����*�7)P�q���Ϳ�7��?����1��N��o�u
�o��t�a��w�o����}
�JGe#YL�
�������>ùz��%�}��=�Ʊ{���_��<���[+��eq5)��=@���h�Z�ؓ�:nj�7h�h�����̸.q��dp
�_1/X?ˍ�<��.�����g�+��aF�2~v^ު����5�s_�<���'c���֙�+6ׯ��j���&,N�C�y
�7�iC���=u��%cs��k�W�.jc56&�"g.��{#^�[��c�/Ʒ����K������7�w�b=�H]��z�њ~�c|߾_6��z����ˈg��x�6����j��k�ោ�q�8�K?_?X�q"���}M�L����,�i�����ؚ*�=�X�>���{?�kp�|��(

!��՘����l>|��)�����B��Dm`޷�_�󯎙�08ql�Z8�?_�w��"I�q���bp�’�/����W�ӕ����
���E뷿���Q���s����:,ț�o�Ϳ�7������F�~���o�?��k��K��>j����n�I��"���ur
���}����~,�Ӳ�1=�
���H�a�.��-�N1k_#sO�E&�����I���r3�_o�Rp_c�VC�1ܷ���hOD�z3S�k��Bz���l��ui�Hgq;"}�(�u���ol_��oXG�:��Yd��&���6G5]���zl3�A[H5F���R��\i����?�^�����N�*��@V��f�@֘��\�`�/�/���]�����	!Ƨ��kީ��'��.b�l
��m��/[�7�}n���z\��/gW�����aWvfj�
2�;��&��6+WSr�r��*=�|lH�����!��D��Ք�y���v��Sv���Ռ�**�BD�s��ϥ/��'�!�y7������f�6�N˽��L_�vnr���<�2�v���Vy�|S�O��?�@-Qگ��B]3��e���R��ڏ/~~�����kW׉�hN����μ��(�������v�o�����9����[m4�����o�Ϳ�b������u��4��<��&��3�G�s
y�\�Ml��B����� 
�lM(p+�Y���<�t%t����k�J�f���.'�hP�7׺�f�}t����4�1%����|��j�<z��`Sd��q��h�QOT�\��tZP�"[��s��L�>��L�Z��oD�3�c�^]���x��B3�6gI��7j�˯[# -����^M����EWǑ��p=��r�z��2����	y(��[X��l��]���1Ͽ���yI…<�n���$�'>���D(0����t.�P��9�M���6�5���=�AL�kI:�f�xr@�����h�L����;S��S4����u�/;BVy�-�u�\|ѐ|Dj�\q��Į��|:&��[�SMͨ����/��j����m��
l�O\�����|)���"ο68Q�m��\���`(�H}�����r��E9�{r�݌��^��G�G^(�.��Q���/v
s�:j��t^h���s�����;���̼��yL�V>�%O[_ﯤ���o�{��7���������s���̿�7�q��W���k�~�-X!]��B��U1�k�:F�tkX72���)�~����*��X,o?�C�����s�)�6eɉyc����K����C-���#�4���ʮG�;o�<���t~�j�h������/�Q���c���N
Y�!*mL��QZ��b��9����P/=�A�s�F�p��d����U#wE�8�[9g���q,��p59��6E�i�8��1;��t�;�U?;���zm[w1����E�1�uS�</����-���!�S�/��{l���+�R;�q�Y����u��V����x�5:��i��1�'tebo+��3�}�cN&e��E��8�s�t3
�*-�s&���䋽c�$>=��n��Mk�}���S��̪��v|�,'[3�T͋�d�ML6���nߧ�꾙�r��������#��5�����
S��׿r{�GBJ��u�ھv��-!M�>��o��i��7����=���Y��7�;�}2�o��w�8�N�r"�=��p�E���t�?S*j%	O�B�O��o���I�Qυ�����Y����X��M�j�F�r�ޅ���1M��Ge<>}`���2�����,����A�p���W��\�lx�zc0�d��ˮ�w6ǖ��{C��c�腻��p?f��$w��ˣJ��1]��c�j
#h�����z}��W��›���XM
��sA��1iӨdm�S��+j�*��сh�`�3Y�UFAR���2)5�;��(��f�.��:�5�C���/$�룮�9���+W�<�>Q�5>���'�fJ�Vc�2zb����5L�9�����i'��VV����:� ��"��_����6��Km���
�B�I��א�ݠ�gmC�P�c�|3��?̡m���c�/Y�,�L\������%�)a��D>/6z���;�R�s�ؘY��e��E
�Ϸk~�?Χo>�<O��P��K��*�З�E�{h���K��P��ȯ�������?�5��6�:�s��o���?�?�1�����s��O��'�?�w��]E<G�of�;.��{`ߏ7����z�h��s�7A�͒|�5g	:�kf.)xW�������U�u�⼯Ø5�z�]�ָl���s�F�A3Y��Xp>~y��3_��s��<�rl+s�
�Nx�Y��8���v�͛��Q~��B��I?��0�s�����_ϫ��br�l(w�m|�.����
գ��QJ��$�Si��Z�����1�Ō���_R2�<'ɣ�_o�׫9R������ɽ�>�E�:�����H,�R��_�=,ש�x����'��e{��?rm���?�w���a�����/��B��OZ;_.��Ǎ�ƽ�>�����	��������54���g:��y�t���_�|��-~|q�>�{�^W���w��+�c��y��e�<c#�1s\�_Z|�_?���i��k=����E(���=����o^lG��������m����O_�}��_���6���k�+�?g1�����k����G���֔)w|{�:�U�+p
��/���5����?�3k�\Kε�Q?r�)��=�
T���ﹶ��K�
�3�
���?��e��%��i}�z���_�_X��|����+�^�>�u�u�ʎ��V���b<>e�_��Z��%�/~��L����:h5��3��(����C{��g�a,n�������Z�bJc��w�T�>�wL$'b|��u�"��~ߏ,k�����k`�&>��(.
aWIL���N�X#��E�ŏ�^�o��m`���%���B�����r'�;�KD^(��RL�o
�w�
Tv��_N0��E��ؒAl橜��G���O�_�wS���ˡz�:���)�X��_V���E`�Q�ڙ�O���,��k�V�ϙ?��������c��kNCr��ym[�B7�N_������ߤ6Z�EF�>��6J�"ߛ��z166��_7|J���W#��2!60�?��>~ �̸�`��V&܅h�'�f��/�:O���Qw���%g�i�ξR����F����7��l4��������-����v�o�Ϳ��-�x7TxC�d�Y�X�噥��'$�f ���j�>�zN����ic!�(���n��������ag)���Bh{��s���E{g�	�
1-��a}*�dܟ��9�^B}5]��|����_��_X.*	�y�H]M�++���v`��b�6�3ָ�FP_�z�A^b�$�
�|�0�8�֫x�B�����P� ��JH��x\�5H����cv�Z���
�QgE����yx�8ͱ�����\a]��&ڨm����I�dj����S�dΌ�����u<��C
���J�/�����'c+�_�_S��o��k��}���r���q����5 "��k��B��;W�ٿ����F}y�3���c}����Dd�ˋ��g��~�/`?���xїݐz>Y�q�쾐ܜ�^L}X���,%�L~��A֨��/���q�@���;g���i~�����<|3o���_7[K���XQ�J�4�!�R�9�#���3����o���o�Ϳ�7�����o�Ϳ�7�����3�G��y�8;��⛄��.Ff`m$������gLu��3�?Q|��{�">�ys2���uU+�8���/�Ks[h=gO��i<�x�W�Mf�/��x����&�D#��2�wml�+q5]����EUI�����i��~���J�c6�}�<�|�>^]���*P�Eě�/;�
�$��Ly�~|�_��ܿ����-W����V��&�grLY��odυ�yia��ˆ�4+Z,��φ��;�H��˿�%{�"����Py]�ܦ�lk���w�u#!X��<!˻9�rք^�����c_L���g,O1V��w���]�®�c�_���ߏ�z��$9�"���Hm(m�0kד�z�w��q��
�`3�k�v�}���<7�s��9v�ǃ��_<�,�z�9/��6�� ,�_��G�>7�޹��k�v��k��y[q�"�ݰ�תּ���r.�5��r�"�D���d�G{�h�y��.��B�[�z�ķ�,O�K����_z����|�n??�H�YF�w��EF�v�p�d�SyV@Ƿ8�����<̿�7��_7�����7�a�Ϳ�7��y���d��l�����wsԷ��S�!�	6x��G;�4fmd&x��Fsl�����wJ\k��f�`�q�^�ӚSc$1�[XGɪ�X�ߣ06����k�'Bӷ������#�o����;�x�#�L缧��w w�UX�6���#�磐��W�oz��%ޭf���:>:i`�]_*���̉����'[�w��5כ�b��P({�����z�}I���IƳ���e��݇����6Ony�;�~������뎖VڭM�07��RS��:b�B��T�)�GG�fڍ�W�s�yM���ME�z���>�����A����@6a.@q���{���<�Ҷ����m\t
Y��$<�yn���N0ė����<���q���E����ck�K��;�4�|�x��?�u�ue���k�5�K�m�;b�/�:�-~o�݀�X�ɯèM���<G����|�sl���\����{�S�_�}f'bB�5ސ�?�o�{�!T��Pļ�]��:5��&�O~F��
�o��V����7��;�?2�����?��ۋ˛�g�*K��7�S\�Q�rl��#eX<�f������7�kb"��Z���,�Q���
��
��s�r�u����_�?�*z�'Ԍ�S19�_K֨�ڹ�	�b�:�'��\͏ؿ�D��4�o��ߑ��;�]�+_�?���x���{�zR�Cm������r�:���
�7�k&c��]r�~"�}�	�q��0�4�4����m[�u]�@��M���):�x���r
4W:��mF�h��l~p��~�=a#B@\֍�+^���W���v	���t�'Q�(�̱҄��~o��+g��mF�jb���C�5�ۍ�n_��t��n��Iɉ��O�q� #�f�Y�?�H-��.�	�*��bµ|�ǹ7�����mN�)��yd�c���a���H,�ڿ`@����SFj�dsI#_���W��S߸>:�7�s4���%_@i8���W�Z��hԊ�V���5��{W�2�D�C�j
kT�E��/o�'��Dת��}�'cO`_�51W���9�!����/�q����qtk�]�
�Is����Fi12_[�k����Y��K�c����t�5��dk,���i]�:]"f��~���-���7�a�Ϳ�7��h��o�'&��������;f����w��s��$��!�[D��(D�����U�6�uw����7z��$;�����k����Օ|��;)Њ�@d�Ah,�/#W����փ�Z�&Y�/y���7*c)!�D��%�e�q?0e�h�h�5�9E�~E�59���I�Y�6�
��F��z�[�ͽS`��@}k�^��qϝ��|o�Đ��}��S�^Ɂ���G]Ӿ�mL`�]���nr�Z�oH㚭��n�(���P�}m����W���#`3���c=5ü��x��9����J�)��ǵȬ��I
�G�iŵ�~m-�Np�׬	�	k땮,��Ĝ�o�GW�h��l��v����<�=�7�������O�1[NNS���kO.�K7͙Z6/���,�uA͆H�\l�U�@�Lg&敵]�/����
U�)�lj���^[��L��9+�W�im��c��"C���*3Q�S�+sI��	��[j2B^���y����2��!�d>�=/b�Q6܂@�g�l��	Q싈?��—�
�?��R��7�9���6�Z�����,�k�ڿ��:���h����-$�5��I�ÔX�9��Sܳ�|��'���<U��Ŭ�������o�Ϳ�7�����o��o��>�h�/�nj��W`2�O�9�����?b�LEPD��^Rh|3?YEb;�{wB������/�k�0R��ȯ
&��m����\�������wN���GN^rr�q)E7�e���w7ě`⯿G��n�0�}�B/�(6J^ţ��E��������ol_������69�bb�=4k� �/�(����*�xhH&���}�E�u���DhA}琽,掙�_�M�M嗩�ِZL;/���eN��<͡'7�/�\Չ����"*����;��6�x�M_���m$D�+��
���K��#��D�͇���ä�{]���u��T������Y��q}��S^|�����e�?^� 箌&ͳ�����~�}l��h�4�J�}�4^��y]7O�޲;��O�����7�^R�T�ӭ@�Z���%/�C[���w=ν�_Mdq�?%�b��gj:f�)��q�B�u_0\EQ��Ƃ�s�&D����c^
�
��H�$ct�$����l��X�������2��������u��56.�4$����*��G�B�`yH
�6��n�)���)�S���j_�M*՗��]��~�{����Vwc��
e���m�Ϳ����?��j�o�Ϳ��Ϳ�7����o�|�T�y�L�3��t^��:�	�dF�{�WK����%��hr�,8���O8�����Q��o��r���E�fҦ�I�8'@q�.y}�H����m��sv��25]�1z5(b��v?���������3���s���9\����J�ŕ��/r1~?�_B���\�z��
���`m��P�~�S|�Q�_M�9����y}B\o�>9)��OUܔ�[��uM�A�iS]o��<+�գ�+�+���g1Nǻ��۠G2��f��KT�\�_�S��MVz�s�~��M���a���s���iӀ��T���f�
GP�KDv��48u3����u��У}���~��+��EQ;-����?�i��,�_�|�?���_��.�����1�w�po���`���5���{�����T�q�^ul[Ԥ��n,;��D��K�K$�P��fc���y�uA���X�K��]D�Jamׂ;?j��Wk�(X0����u�H�|&t�W��"R������������Q#�"t�e����0/2���������m��a����3^u���{�J�/k�c�/��$��e��5��$��焛�5o��*�����_��>��v1���˫���Ќ�XI�qf�4�,)ȅ��f;�ɭt�n����y6�����o�Ϳ�7����󏌘��(��O��'��X�ey����	�AD�+��[^�JY���s�����?�o��>�8r��gP/���U�/mk�~�8����r�eկ���=��c��=��gQ(����?��������?��|�':4V���W�͡s�m渏���c>]��W��~���~�^m��k�����߿����_��O��֯�=��O��5k��<~5�������V�7�W>|�O�}o�����߇>����?���<��*|����;'����W�|��}�����^��_�e��_�E�����Yk��?���'��o~�[��������������?�������������ω7�+�x߸�-
�W𵽐���{�y��7���O=�m��ߍ��^_��l\�?|��z�CPccܮ���;{1g���r�zk ����A�����H���l��tִ��͏~̆�F��ކ�&�<.�<�9���e>�A_҈��G���rv����򘏊
v�^_���-�,�I�AaGl��M6s�P�V�_׿���_���/�/�`��_u��ޜ�1z��7i�����w���f�W�զ_:~��O1�O��7�mS䫜߯�5s��j��j�>������62���W���p��{��s}���{l?�U��{k�!���Ç>|���Ç>|���w���~��?�w�[���?�����O��_��7������?�������6�qo��>v�������G��|_<�jߚ�7곯�xK��Ӥ�HdΜ�ud���Tߘ�y�?G�����*̓dD�����r�Ƶ�룁s��+�O�| �����?���v���N�M�{���D��8�������Y�E�z\�����#���ϫڶ���r;E��A����u�}Ǿ���_=�"��?��_��}�0��&rH1�O��o�F�Ρob��K
��5����M�O�4��5����՛ҟ�*߳�{k~�8���_ʥ�����z�˥^�=��zc��~��_�է�Z�o:���ɷ��KkS���/���?4�>|���Ç>|���Ç>�0������������w�Ԙ���X�����?�E:�C"ѹ�����QM��M�7x��8E�tHd�|B�q��_�pͥ��`�b���O����o1߯2��Z}�^f�Z|��u�6��fN�9WLGB��M��8|x������a��棡�n�W���+ܼ���hP���?�@���@�:ƃ��c��c�poG=��������냶^>��?C��s�r�8�˖��^k?�?���c�˿���~��z��ʟ��j������_����~�گ�ʖOv�<���
|}��~|�ɷ_S���_����
�Oo���辿A�U>>���z:���/5�M�O�|��O��[�������5��׫
:ק��rs�E����+������Ç>|���Ç>|�����A�����L�'o���_�w���ǣx_n���@lS��o �;J߸�=����َI��P|���P�q$>6�
7$}gh��
���߭���J�y2��������7:�Y�W���KW�s�|�z�i���!�zb=v+^=s�̗�9�^DM���P��
{ݠ�Lޮ����O�zu������?}+���䵿w����5�����L����-G�[����/x~vL�k���?���A~z��ӛ����������/�{@I��\�T��
���Z�U��+"�1F�`��0`�&�dcl�3��
����M�l��A$!�s�Z�U�p�L�_'UU�t���a�Hwg���b����C��N��:��ch6��c�N�����+��K.�~��y�K�sժU�z�jGe0�����:�N�.�.�m��X��Ƀ8Mն��r��r{���>�5NU���g�s�l����8M/�n,��(�e�XU�]&�zա�w�>�u�T�SEH���߫�uu��.�1Y�dɒ%K�,Y�dɒ%K�,���s�:~z�mpō�2|m#�C=:y."�f$��B�j-�� pJ��C�7(�ƶ'r��1<o|t��8Rw_f���%t,D�E�8�2�%���ȉ�:���KxY���hd���A`_LD�oh�8�9'WUF�hrXn�W~��<P�I�!��l�"��ZS<eL{�GQ:�Dӱ��4RV����Q�gƊ�(���;�=����*�ػƿa���^�z/�
j=�	O�s_�"8���`���P�-��`���$�����>��?���ԧ��[n�-���f��k�����E��~��]���lb]�</�[�W�]U�ت��:�?>���^�z?��?�է\�*��.]ݸ��ZU�:��.�2���������^e�i�lPB��Q7�����㪶՝3��!Y�dɒ%K�,Y�dɒ%K�,���/{  JK�w du��>�|�x�b�^1s����3$�*�wy��Bs�Q���NFD�Zhō���=<��#<��,-��.�z�_���E�+_bB�C���Jh4�(	`m��,x��v]�2#�
OH�犙�6���Qa&”*���s�3#�S4e+��V[/��dU5�ڠ���%
LK_�bG��”@tʀOoŅ��G��JjEQ魉]_�,{��#�<^�����_��ڼІ��add֯_o{�[���~6|�������Î;*��:�
I�F��U^?�����]#��$ȣ�>
���=��A���>����U����ƪ�.u�*�n[?��\N]���W}Vյ�9SG��ʧ����+����8M��U�֝3���	y3��?nc/b��ً��w�&K�,Y�dɒ%K�,Y��mC�!8z�c�}���1���ជ�dɒ-
;����0��+�
Nj��
�t�}���j�8�
C����!P��h���,�L�p�܀b�V��΂��x���q1�B�R%���ȣS�a��
M�E+��A�0�B"9+�!�
�	!��NL��rZ�@ȓ܄N�%���ǔy���a���>��f�HY�)si�l/�F��C�����\����j�I���Ѿ�h�f����3��Lx�[�G}TW>�gLN��=>����!��O��-[����!G��#
�����4�M�.�ʧ��~����@�^z���}u�t]���mU�um.[��j��U��tɧ�}Uy�*�_ك�7�VN_�9�1�Uwl�k�\ߪ�4m�Oz�Nu�$K�,Y�dɒ%K�,Y��m��g?�lx��
��{8 W�~%��㯆���%K�����5�Řx��������H���l�0�a¡}�OPX����X!#8C����
œ$d�<�W�]�㏉��}!-��`�kƆ`*�I+<O��- ����xFc^P��i��2Ff���X=���6$I<ۤ(��ȥ�F�1�B�O�?at�_IP��w�Q���)�<(L���T�Z�O�R�1�qdf%~ɼ2����V��g�DCb��e��_�9�p���ꪜ����'��x���{���M��ʮ��l��x/��|� �ڇZ�r_���W��}u ��"���WUFy[\���^��W�rݫ�՝�U}��Ԉ�*&�Ư���vUչ*}��uu.o+�3�1��_wNV�Uu]���>�7^ɒ%K�,ٮl8o��٪�dɒ%K�l�lÚ��g���h5Z�nt�r�ip�_ɒ%[B&������+�$���h<v� X���PHH�A��+�Q��8&�&��u���u�R� ®@�}#��6͚��~�
�}�
��)"M��^��|	��R�{_
�=n˹�A����jQFd��3��L��1伬�v$��0aFy0Z!�,�-��l4Ϊߐ�g�Un��� s[l�Ój�K���S�LU���U��O���'�����2H���Mؾm;����Q�tu�~@-׹���o]?@x[.�W��U��ˣ���Ž��ʣW�um)SG4�(l:ַ���lr;;��S������YWn/�:�i_�\�y~@=�PG�ʯ�<�5N�?Σ܎�cgz�z��kk���?Y�dɒ%K�����7֦�g��馛`�֭���D
��+[��; Y�dɒ�<��:�k�Y�<����dɒ-�@����WpZ	��U\N�Z��u{|:�3$wS�A2���P1	@���I�DJ�A\w��K]6i�mQ�h��zj�
�>%�l�fjZ�-��K��&D�f�m�:���d�q
�0(��F �*at��Í�8���V9�	!?�Ȍ�1%#�€I

%�u�c,�����G�)n�<�#b&�03P"6pCr���j9FO
Hʙ��B���	��~�y��t�㕯xr��i�V�ץ��/x���??�y���^K�]ˤJ��*`�
�/e^�O����Uձ�OX]w\�1ucYG��A�^dB�_���@�C�q����m�U�i��w�'n���\���б��:U������m�j_���yW>�WN̯:�z����EVL�/[W�~y���Wܦ�}ɒ%K�,�\ء��Fs����~;ʼn[h�}���מ�l�[o���=�q����7�
7���z+m;������~�k066�eO~�Yp�Gvmo��p��~�\s
$K�,Y��e�N��z7l�}sa�m�ɒ%[Bfu��'.�dЈ�
%[��.���}]���|���xZR<�Hb��o�e�O#�x��;��`{L�hzUTXU�h]m��4
n��"��:)��
���jMU��UY!X�w��
����>�2�57����J|(	 $�$@�U.��3|�K�r�̚�a�8���w*��ƚ�Ŗ�~ȭ�H�(A4X��,� }
�-���H�QbL��0N5d�~�c��_���1|�}����;��j��'O/�W_}
t:U��|0����DCwX�y���U��-x�+A�~ �ֽ�`���U�V��P[E��"b�vwܱ����p�-�tթ�`)�#U�pX\ގ�M��w���F����VnSU;�� NS�j���F��Z�k�pr�&���\Z�[s����X�X�g�!��&;�]���ue���׻�O�v��:�:g��*Mݹ����-c3���Ӿ�󥪎��U��O�G�dɒ-=ù�q>������x��W��о� 
�kO����_�-�����%/{\~����� H~��}�?��O`�}��{�~�چ��|�sa��6�
7��a�z(�p‰�o};�08�����������p�s���p�M7C�dɒ%[��w�N=�x�?W^~%��w�	~�W��W�'B�m�m�sm8�x�_O}�Sa�ts�	���?��p����B.>������v�m78���op���?�!-�]��!.611A8�J4T����E��).8(��nE1�<�a���.�<�`ԅ��JDޅ�(�֋� ��1~����
hۈ�ȌĞ�&��0�����X�&��Qmm,=	���:Ob��X^&�����Hbc�B��C+���-Y+�����`O��@�fS;ni@���=��e(�}I��T���#~�waD�.Yi����Jx
�!w;ܥkr��p����L0c�W���R8y���A���y`�W�����]�ڏ�Sx�;�	|��׾w�}7�Λ�
<���5��j���{[T?�c�8�O�/�wb�@��ָ��)��?���`۶m�v����)��9�����Cє���c�}��^L����V��}�=p�������붕�_>�8�4
^?���;��|�p�/~w��um�����O��7�ַ�s=��#� �`þ-�בd��;s3G����l|��w
���g`�A�*p|PB���*%�O��Ǫ�l(�o٪���R>�*MR�s�U��k�j�n�l:i�%K�l�_p�%j�����Q�N����*���9�<������g����mo���}���/|a����ڞ{�I@ɟ~��J��7�Ɂ�v���C{��G�6�k���H��9�l.^<�M�v'\�_q���?���[�:��dɒ%K��
A��O>	�r���|Z��ώ�a�
���[�o��_�u����`.m�#^��W9��T��g?GϚC�r�I'�_�c����	����b8�3hރ�AдNt��?�^�0`�l��}��N�#�8���r(?�/����rXʆ�Mԍ&b8�޾};͵�	�<�\�R�7o&���
6�Ν;ܼd[m~�q�n�{��+�<�am�0�c=����&Ɍ���
1O�q�?D9��3pmDʋS�#�J��0S1�$0f.ͲA��DTI��B�*�:�V[Oz�~*�$ۚ���hޢ�1����-$F&���m4`H8��/�Š��>e��l���`+���5���+q2!N�ԃ�-���UDL��B�	�����D�?S�m�_���б�eB>O�6�6��0X�Ao�u����'�u���7�	��ۇ7۵kWk�'�MP>i�������t����T���f�644g�y�z�mD�_��A�~�ny���Oy�y���O�T2/�ˉ�@7
H��~�{\~/`_�_�����ڳ�K/�?����c��ᱎ��������K/�U�Iy[]]���=f�`Uk�ϡ����=���\2NW-nod-8m�s��������PW��c�ƺ�/׿׹��{ۏ�*�e���{]�uu�u� �]����t�A��~��%K�l1��Oz��ܗ��~�]�||��߁�aW1<�����_�z@��ַ��{����?�q���!�W���/U��7h��ݱ=ů���_�(*Y�dɒ-C��/�/|��N7B5(��>�я��.�̗��
o���ax����1�9���Gy�G�7��Mp�m�z��O{<�O����wɫ�3�p�#~x���>�q">^��b�|x���П�]w��>�N?��O�'���z�Tp���g���{�A��@��OT��'��;wV�$�nW�BJp��f��?��`�λ��I�lX�qe�X��Ce��(���P��̈́s[Q`�Z��^�	�M�����!"bR%�Q܈;+_/��.mP�"T+���|��d5W����F�B^h�F��{L��2>��r'!^J���r�4Bu+;���$�*LC.��SlDݐY(�2<1!
�t8Z��0F�#&�A:�$�!@?�-�R�	$��m��+=�	�
!?&C4�H|�1?¤eHP h�s'�pp���z�#4��y�*�?18�~�3�ܩ̫�h�"��H/��
4���(���:֔���P��
B���1�̨Dy�[�B���7�/.��Pת1���G8T�F��?p�7��M�j��ɇ>�̿�{�k���/x��_A��SE*��Y�TX�:��
<�s�������0��^��9������[s/x���{��߫�S��
��wl��r=�뮥~�~�я��W�ka��U{�Ga�똺�)�+Y�d��0����:��#��+�`�.�@Bwlq/�����?�`×��1�ͽ�|�_Lu%?Σֺct�1�R5uu��7����O�U���{�{��Y���7/i�#Y�dɒ%K6}�g���:�́F��Ljt��?�.pN�+�x-��/{����u�1�H8��#���B g�y&���w��ꃊ�3�8��p�I�]��v}��o{�K��y�a}������n>M�p��o�A�5TC`�P)�[�}
m_��j�p^}�!���d��Glq6���Wu�sn������X9���n��f��T��q�U��Bk���{。��92�-&&q�w��U�`ݪ�j�\{�5���}{�!S�W��G�,\�Y�oEȠو(k��!���dF7���+!#$�a�����qL
�:�n�,2��I�D�􄉈� �0�m,J�}�٨��	%���A�ĥ(�BVp]ll�D�?�K(.]������+
�Lh�1�U�DjB���x��{�_3"�����r����o��a�~�Q^�Baə�z:&�%z"ʹ }#g�o���>�b�D����X��O���K<*AL�����������}�ݷ�d�H�l-�
 
��n=�^�Y!�<~�+_Iq7>����~�3x�����
�.��ե��h_����K�=�x�᳟�,���?&p�s΁�O?�|R~��	������* n��0z�H�� ��݂#�\�]<w^5�66a�6��#�<hձ=�-�C�~�L]�r��i�������VΧ�mu�Y��8��c{ե���;�]C�����u��%K�l��!��|��_Osz���p/`��O?�!�1"2>>F/ç��/��K��G���x��F�"�n2���+���o�g��,7�x�\
ņ��?��9!�t�ƙg�A�Å+O���u�}-M�����	���9�|��4�I�,Y�dɒ-_�E�g:p1��;�퓟��h��\r	̷�瞤8����	G�<���6$�����H��=��O"��h��y�^�=�y�+�'tC��s�W�ꕴ`]sa�v�;�X��Mo�E+K}���xs1��Xg��=� ��j$/���jJ�jt���B�$��#�.d���/$P�:�(X�j��B�1����qA�#G����Euw{��_�������ë������.����c�C�������A�X��_hz�`�|�C��!���>h�`��"2B�a�
��I|m]��y����
��J.0�y��Z�)9<��d�/4����
���VDc�X�q�d�� ��QZ��_�D��=ጸ?s��p̌WGpo�R[�eXmW1�9��m#��?P���kC�T��י����I)R\�}V�# J$�Ч&�_a�L����$��J`�?�j��m�}�@��s�V��{����#A�T�[K+~�u�))j��"��AϚr��X��=���`��p+�
�s1�p���P��/���t��,�@w?D���'Ó��drw��o}����o��fQ�\y�U��~N	yCѴ<"A��nm����w�y��o���)�G�y7��	
�PW���{؂,����ϩ���z)ӏ��mn��
宆�iqۿ���݄c�Z
?���L!������g�=q��m�<�:7z�uL0նz�q9�2��n�ȗ~u�U����\�U�kO��W�s9ߪc�uH�,Y�Ŷ=6m��>�K�}Ľ=�c��a�
�x��᳟�O��ܜ�u��=�}/���7�	�A�Pt���&<͑�yί�����vT�|�3�As�7��
�7��o}:�W���V@�������0�v�/v��fx�{�C�|��6��%2���1��G>J�����E��,Y�dɒ%���B|�#�������G 2ƾ@��iO}��[��i7�|s����?-�!��EWI�cL4�Į��چDф�ի�|.�A��?��?�q�1ò��/X�|7/��h��~�Կ��;�$|l)ڑG�ȍ֮YKd����3��6�;��P
R;�G����-�����p�!�������cڷ���9��w�G�x�>P�?�7|�m�3���s�@���m�_��w*A����ກX%!d�,�g�|Tr��6�gwÄ���IQ|��m�-����]9�L��U���o
%�gC�m!i��f�g����3l
�����=`l�:��zh�,�o�g��
Q���Q2$���� 㣩�$\�,+E2?:V�h)%[Ӆ���s���a�A��*W�ac�&�z�׋��[�39BHqs�"H���@I�.�-G=L��dx���p%��F}e�@�"wQ��U����q;�;�}ܸq�c�w�t�ZAW��r3lٲ��D��N���yA���xMN$��yv�}�Gd��]�:|�K�u��՚�����ē
���C҂1�m���<����?�	��׿?�я�9����.#6���N=���׾F|
خ>�	��d)�O����9����߷O�x�)��[��y���{���1���1*�]e����M��}�Ԃ�U֏��RD�:�
Я"!�G��^C����/[qR���z;��dɒ%�ok4��o}���ឧ��E۰a#DG��2���Ue����>��%���/})�����)������+rȡ�Ҝ��#e�X4_�e_������������{��`Tyε��tC�.t#�(lw:p��ǐK�dɒ%K�,��0�)��7�~��ϥ�s�|�I�+���"�<�l����xc!�����xl���/{)����a��Z�c;2<��"Ra(���'��{�E�����\�����k�87���ꃪ��n�
����m��ǻ��1tI[G�E�8HV`�U��2\ă���|>�dZ4��F{�y8�{E�l�N8�D���}��?�?�����~�Ͱ�n{�?~������^x�����h
.����5��	X�J"�_��La�>��ğK�&�Q��`�>�Cb�Vh���;"P����D9kMi�W�xF<!��.�ct�Q96Rjx7\>�W���Ɇ�X�'�]Au��,�����`~ ��M�ƢD�/N�I�B`WW�L���d���������s�m�L����[9^O<+'��.�29,7Q<0J�P�f"��(�P��
U��1�X�"q�7�W�G�}�5���ݞ�0������e�^����-��~��}��B�O���pÍ7ւ�Uu�؛ʺ�@�g�d�U��`d�Ͼ������_�z�3��{Q�x�JNSU�^�VoXP A�������׾��p�7�5�^�{�k��c��:����w�U��!yAL��?�xlC�{g�.J�g$�凞8
�j�W��X�G�>�Ѐ#��
�n�1���{Bj����e��+
�T)u�+��D���u�TY����y[��*?�S�*�e6�?R����{��Tm+����dɒ%[,�r�����[�����5>qE$�t��⎪��w�e�űsi������7�B����|�"�_��H$>�D|��<���gG���χ7��M��w�>���+^�2��n������ﻴ�2p��dɒ%K�,��3Tr�����1��>���N?�\z)-�
���wx�+_EO��ڡ�Ⱘ����R�b�;���6��J�G���g�ϗ��ST��{��c�+R�,�t�E�a�a�
�o2N��⓸�Hݰ�)^��x�S�?*@0��m�(-�˄#Kn��VX�v���?���g_�S��ߦ����~���'�����	o�k�1�bB�_7�X����Xp�F�'�����\K���&";�G���!JdC8�3-3<�F1Mh�/��wť���ѣU�#c��
c�+��1M%
 �s!��	�k�∠�e[u�%���wUc����>��@�"
�B�3LF	��	��4%dL�k�f}^�c�da !R|x�E/�@�Y��)�o��
��W(�����:��~��#k�7mM�!܆�3~��Pg]��ޜ�'��sLW���[-Ø��u�_l	07��(�n�@\��;���o
����9�9��׼��x�{�G�MEݺ��
�I)�_?�ظ�F�_��G�e���?���'�!Z�������ַ�^�җu�?�B�@��sȶ�]�;����4
c�:p�%�`�r�ѧ�V�a��¦#���&��;&��T�I�YVP�x�"��yP��DI�Jm�>'���U�@_RJ�.SW�����^֋ԩ�V&���[���?Y�dɖ��\㠽�կ�ϭ]�<�9p�/.���.��@T~�w��g<�V��w�t<�*���᪫�!ɏx��\��ۿ}>��K�y�W_}5�~7r;��p"�D7Kݷ4�VX�A��^q���%K�,Y��6|��+_����~��}.��wߝ��'?�'�y&�!���h��c�=���ݷQ�uT�}��pꩧ�}�B�F�m>��+.w��o�����8;��S]���ρ�}������
����?�9 � 8g�KG��\�!����`-e+�h�������R!�Q&@�\@b��w���*C|�[��G����N��>�w᯾����᾿
^��W�Hkx�������Y=!8�'H������"ÄE�̎�������.��X������]Q���S��:�c��"�-� ߷�x@�z%�_{�P~$Z�VEA�Y#�	�)A��[[�Y���N�CI�H�0��LS1��3�<x]��X.�Y�^qR.C�<���d`C���.&4ܝJ��m�@�HY�WY�o��21��_��X뉚"��Q4�`Mq�UWҍF	��,ߔn��6���D164S#�о�7�o���2�^7�x#l�e<¶��u�m�{t@�
��y��)C�b�q$:���O����}$�|��_��r��(�͟��n���?4/��<��O�W���F|�s��>Ƈ��l�F_���^ȧ��*���
�W��;������3��?t/���C.m�4сo�����Cn۶�#���W]�߮RۻH�b'�#H
�ɔ@���9�]�.
}#eY�>�~��=�C��2iQ���o{+I�mUDJ�6�^u�J���;Y�d���u�O~��_���=�l���w�����6���7\|�=c�Uԥ�^F	>�ﻟ ���]D�'��>����?�zI}���1<}s/D�Cɂ.�^������*�c�9��`p�n���>�y8�&��|���V,Y�dɒ%[ʆA�?ផ�8p�{�>���=�Ou@?���;�����%��;bU)/}��h>�[�~5���q!�<�8���)�ꕯr8�I����׾�uڏ�������z���~=���.��b��^����o�ޕy�럝4v/��h��[��y
�>S��qGH�+�*C�Tw�y'Ż�E�H��\���+�q�m��C=D��vc���1�m�>JsT�w���oڴ	6�_�l�B.��
�����D�H���bٰ#:~��_���v��k7�Q����Z����"#JgC�r�;J�h�%������B$RL�rO�B[���P���&@0������*@_>���5,������Rb��	"�&��9����TslUe��'�|�j+$��]~�x�ّeF�D Ke��n��Wȉ�G䊏s�I��������􋎐��rr�����D���Qf㺆|Q�n�Pa�\N8Kc ؟I��
}>��#�<$��fœ��i�J@\�]��y��B�#`oV����b��܃��xsć��@��+��P�o`�BD������Ey��u��<�����k�
嘒�">.j���ۖ��z��~���_����g1s�QGR>(E��g?�%���_�&D*}ڨOnz�_�1��Zͽ(^A?e|9�~�N����6B�B%(^E�NԿ1��䕯���.����!����V&B�:��u�~�Tw|aQ�O/�#�,[E���YU�8��벎LI�H�d����(��co��?���~�CX�^�u/Xz�z�k^��|���q΀h�"��}�Z�9�*H��]x����g�N/���‹w������3Ϡ@�K��:6\5�����	|AF�U6>>A@���L�,Y�d�v�����sh�.�X����т�}�ݼh�.��چ����c`�o~�[����w�_Ѕ).z���~~��7������[TŠ"������?��?9��չDD��*C⦛n"b	�ɹ�6h�]�m�$��Σq,tZL����\܄.�b���K/���~�[jv�Q��,L�{��A�AU������k�\;E s��)j�t����T/�#�Gp�\XV����/N�HNcU��HR_��S���*�@h��)d���D�/;1MO>��iJ�W�d'"@�.��
x�E<�,}$��܂H�eB�gx?H��sR�(3x�5x{P�0�@���p�FA�C�9؋?꿬ס�B	�U��0:��gT�^����$��@;����=�~�gS�^r�arj
�N�L�lx^��w�C<e���z��*�|�{�����}�Pѭ����h}�'2�x#��5��q�P[o���P&X����ȓ��}x&=���~���ց1(��*?h%���D�
c������Ɵ���o�ܗ)x�����C��trM��0ц.��|'\������d�H�����8m|Δ��
��s_�����mp�eJ�6q�z�U����
7n}�[QDz�c��\V�c��ԫ�^e���"f�^dI�dɒ-��h�/���.�\��+-�ڽ��(�������_�
����/��r����!o~ӛ���Ls�=��?�Nj�+{�ͫѕ�u��_�u���@z���oÕ��7o�'=�I^ݭ�n�ZL4��[�dɒ%K�m����q�<Dž�v)��…H@�7���<ەu�G�_�|��v�7��[$�h�	"�������%�O8�Y.s�^��l��Y�yR]~+�_�c�S\�4q失:�2�|P�Q�k���Lyn��D��B9je���ʫ���1��($�QrCHk���I�c�<���� &�XAc@���˄�<��P jH�(R",�h�`���(BTP�L����V <x ��U&��R�X���ꃗ�x#��F�˜����(+[�h)UYD���5��/��8�/���A�C=��)Ƈ�����/�����TJ}��>�+�hU�u{����m�cUr��qp�@8h[� ��#�I��`o9��J��]̣�Ј��m�h�m��;P�}Uw�8�խ���/�=G��
�}`U�0���ቛ�m߄�ߝ�Sa<}1%@�\�r=��rl���Uq.�˷Q��}\>���Tܗeb�D�V�W]��������7H���W�Q��.}�t���dɒM�p�?�����r��c���1p;�Į����EU~�*�7��<Zո��o�#�<‘5[�k_�Z�t�mO}ʓ�#��ڎ��?�\s�50߆c� �|�>I�,Y��n�u/�|���C��v���C���>{�
���y,�=���5���z��ZH|�c^��-��) #]��'!"�c}�և�b�l�d&�%V�h킰��)A���b�T��Bi :�Z�,�Q
"��蘂w'��&g�Q�ĝ ���D�NKz+�eخ�U@��L~��|K���d��5��!:)�4F�UF��ʃ���z�2&(U
}��$_w��~%Ȉl�ԣ<H��ݠ��AE���(���Pb+�V��eS�}f��_�5�5b"@���z�A��-�cRG����tLZ�h�:�`�w�2r��;�#y�e@��c҆�Em�K�}]� st�og��
�>���p��݆�u�}a(u��$�u��&o����
Ǚ�.�,ʷ|��}1Y���qy�������|c���k�i�:y�:���GN�۪�ǿ���CE��B��"^��E�W��%K�,Y����Z�.�p���c�Kڲ��כn�yQ���z���_tmG����%K�,��6\���|ɒ-_�`{)��{��
r�ځĈ���W�W�#y�+*/h���`��2�K��DAM�LX}���(�x@��ā��L���$���w6n+�M������V���X'�܀E#!�}�텀���ܻ�b�"^��g�er8���?O�8�eV�l��(��p��[��9>�ݗy�ܗ���w������0��t�b�_��_����3�8���'/�,e���c�n��x��%?���.���^y����o����D����HS�"�����K	P��[��ݕ���;����6l����喏��@w��9�u�a��t�$*�N�8[M��)�燿cUWԇZN���v� A�RGDT�3P�W�룪��;g���4ueԥ�kC�dɒ%K�RI
�/�J�:��b!
�'Y�dɒ%K�,��3��Aߌ`�E�����U���`� ��Ok,
Ž=�.��H�PTtD$H k�0�W�Ċ�����=J�
��ࣅ�JnĆ�ː���q%T�:$߁h97�(�Lj��QK呁�vn;�����|G+�j�x�6��D��

�����FO�>��	�b+�lab\���W`�)bM�REX�P��,��u��8�T%�;���\���@�R�m�^�^G~�W�����J���7���Ϋd�Vu�y��{���
H�6ԑ'u+���	��
�+�ZUfU~q���u}֯^Ui�󺺄s9"�jƲ
�/�����ャ��I��B��H`Tէ�
q�˄�^�qZ��յ�\^|l/��������s��Ϊ��U�^Q��^�q�A��dɒ%K�l%�uɒ%K�,Y�dɒ�6�dg����+f�ؓr��B!:�1Q����g�����f*"��Ј�Nc��j+�[	�s
Ć�‚�y�Xm�B��?�^��к� �O�1���19�)16r�
��}mi�X�!�����y8�ٙ�?�^��KT%V�Ǔ)��G�B��*�&�G�V�a�\J��1
j?~�:�2�����i�g�L��T�:r�[�Z��p뭷›��V��W���S�L2�Aq%L�l��ˏ��}�m۶BZ��U�/wU�D�ZίL��t{���~}S.�������:�̯ݫ~������ǰo�Gڔ��Ƿ����A���{�/����5m(�(��RB�ק|��rM�>Ѭ�D�T�Q?�-&(��f9�~r�W�_u�iy�����>U���*�dɒ%K�,Y�dɒ%K�,Y�d�ȋ"�Ϙ�')�@��F�C4��Nj��Pa1�!�Qa�~LX��b�����N�B@�î1�5R���"��"qm)�D&`�=r�	3"A��&�/��F YTSc����Y�[�ܔ�.\NAI����2���qGg���J	�i!f$���|�0O����Q�0dTiޮ�ѸZ�w�eQ��+/c.��*�b�+�~(��2&E�
��� �e�_oy�����y7<�0>1QH_l"��}�v��7�	/�+�3��^_�ց��g��S�V�V��XG$d&''k�}�V��	�r�eP��U��H�r=ˤC���y�r���u$UU9U����۪�]�r_U�S5v�2����y1�ۘPM��T ]j��1��g���"�s�W�� �D�sf��_����,Y�dɒ%K�,Y�dɒ%K����S��g�� ��D�����3Y�,p��rP�����K)��Dl^�
�&?����0(���s�,��e��G`!�H��������H=O<_3n2����T�XOq@�ƄH�����\i���
wʼn����T���R���B�⮖�}�qu�
Q��ή�brF؆��a�5�+W���
��t��$�EϨ�J>1���u@�nC���?�i��~��g�i���|0lڴ	֬Y��	�Hx衇�-[�믇o����o}��W�Ui�DA�b�����
خʣ�&ޏ�ڹs',ep�L@��U���:��"�q��vW���������Z�_e�ʌ�۫�U�T�c]��Tng�:�˨:6�?��
���k
�.5�g��ѧK<�q���B^���ښ�93��Yη��\�u��-Y�dɒ%K�,Y�dɒ%K�,��B*$PlE<!E^��6dJ4��h>ze9�*I�<ؐ' �3<�e<�R�*	�B�Z,\��0�(�
!x{7te5O̵_L8�p=�o���Ra��Eh�
n4�	՚z=��UZp�>��WͰ�([R�d�8S>A*�ȏ<gH$�9��,��ʤsC]��`j��r�.��R]~�,C��眕��D$���a}.
'o=�^��}]�^��~���"C��gX�ȏ��awv���"�⡇�|��v%[�����c�"*�۽ȋ�탂ƒU`}�RE|�JWο.m܎�1aQ�8]�����:U�g��wU��\nUW��ON�=�q�E���P.����.���8����:��g�9P�[\��^���M�,Y�dɒ%K�,Y�dɒ%KVi
���B�����c@�-EpVȢH~(�̈́	CX4<*["�ۈHPE�����Wb#�7"b=6�"W^Q§)�'��ͮH�A��>���b�Z��Q����z�d/]�C����VL��w���b�$��i& �#˃E-�COSMPj��ōS^ē�����8k>12�Mu�Ƭ(��PrŻ��=�Õ�����jCAб
@�H�!�qÍ7��e����W��||�-���S��2@[���jW�h�"f3��mUy�����lum�KWE6��#Ez-�v��4�ү�񱃴��#w�*�#�J�M!P�]���~��|]��=g����,Y�dɒ%K�,Y�dɒ%K��`�C0��
-Gl�<��,ku�,�/(Fg�!9Ill7FD6����.�
9%�ɐ�C�CCX�� ���|A�l��"BF�$�!"k(cA��!6�9�q2�pвs�y��r��CJ78Ɲ��
w:7'3<���������*��D*�u�"!1F�%x%w�1"#׃rU}��Ҟ�������y�#>Ʉ6S%
��:x��� v/���B�"��W��
�/��}��*���ރ�gPZ��냲Mw,!�տW~U�XUV��Җ������^U�3H��*��n[��M��Z��U�
wl[8^��1�l��+\�ɒ%K�lײ��~�q��
Uӟ��g Y�dɒ%K�,Y�E4%4fE��l���N
DG���	�c3��)ύ����ɢdC>��z��t�YD|�Xm�����@�0Q���ʸ�ҫ��<��bLF<6D���|sO��ʁ�G��������	�)Lk���
`�1�!b�@	�o�Fbx��C���X"�l8JJ�J�Q��
}�z�0�z��@���r�t3ec���3ˊʅ�N&�ʠ}�(VY?@��_N����:�T����eP�
$�ʧ������W�G�z��WU��e����Un���J[ί9T�Gqڲ�C�]u�L�]U��Ο^dH�o�o%?�-[��2}���v?j�ޯ~PS^��K�O�,Y�d�����g�K�=�����,Y�dɒ%K�l	c�F�m5��ma�}L���Xp�J�����&�n0L�z�<�n��*K�BC��tC]��3*�`Ʉke��˷�P�wu����*��ɕ�� 5�C$h�gJ�W|�Z����	1<r+����&h��U�`�`�!L�r!"�)�L�vU�x��B!�IT���>�|V�<F�6���M��-����mz���>~�%K�rl��6W�]�/�-������}�|+<
�Dߩ%'�|�`&<k��Qن�l6�~��e���G%x��`N,84�=�'e������K�Z4�ӫ�L�z����o�;�򕑶9��"-�Y.�#5F��|�������	�L��CJ���(�>�;��}�$#�J�kG��TN�3����WV�dɒ
n�5�	87�!�<[����Z-h
�p֨��ٖm���+���l��qo����VCkd�U�l�[���–Ɔo-w/�S�`��>.�I�R�ʣgf��N&[�֬��l��hq+D��?���J=:Z���y�W�D��0	�e�Y�
c
7l�ڝ.5�a�u���Л��TF" 
a���0_�L����3��!��$f����dy
>xU���0!���&&D*O�sU_؀�v���I~p1�n����A���u	8��3ѿ���W�n��@]�Ec�r�?J-�Jϛ�FK%��-/�0�,'�|�����ߙ�O����P>E��Q�x!Fɕ
�-H)bm'�?
ĂF��M�<2G�$K�,�\ڎ�]p��7�;��Y�`̈4�Ay��		���i��K���h8����l:
�t��vk,grr����>|���獎��P��1�s�ȉF�	�֬v�2�Ƕ��D���M�+睜�n�>91�_�5i"�m��h��C�xi�:L@F�O8��

G��aW���Νc�l���mX,+�u�|��~�FW���8����q�u�tr��-w��PSK�r`v�˷�h”�Ӷm;ܱ���z7��K<a�6�>l7�BȨ��Z���J,�~�j@n�,��6�
��_t��w�0�YrV�˶f_�=�q��ŋݠfz��n�/�A�C���l4��I��<Ve1z�ܨ�:T6�t芲���{��.g3n���]�㢍��-�q�̽�x���U��
�&D�")S�pyX�ck�H����a�ʫ�btk�~vl�y�BL=�ٽ����0�0���ب�E|^������9L�wo����\�7#1�v��N��`���;�f�܎����h�{}����&�[:�)�9���-���_b���[ha��79��ťS�L8�Bq�v��Dg�I�S.�+�}�/���x�@�79�����e��J����/90!�m�a�<΋a�nr�ʿ��T`�)W�+n�4�P���n�T�!�(G�ʁ)*N/�V(��j2�V�)�1|��T0�e)���_)	vL�d&"T��L2�����J�&7�;��Æ��㌕Fv��F�%,=ݬ�q<m=�,����6ɒ%K6#��r�w)���~ܺN��aX=����D.��'� ��X���hz�b��C�RkdL��~����;F�|�N8⁎o�,'㝶WWЧK;95I����?�Hz��R~d���"��O !�u���)V|�rib�2lI�`Ǻa��n����ؤ0fO$̪UD@�a�5�ؠ���[�'B��+K��y[��r�[&���	#,b�MJl����c�!"hx`�?��'*8I��X�v�'V�4��:����x�A9�Wd5�k�1^�/�׊93�vS�aǯwi�E��~_Ҷ$���yo`?Jq�l��/~5�ݪ�ah�2���`w�;^�d��4�L��v��G:s�g�'�����?՞$��S[y���TN��I�"��xA�-�V����;1�
|�%L�׊���p���bO�K:D�i����8�WR�� ~B:Z��X���@�@�v`��x��r�D��g�-E�(<���[�HA<#b�=�#���qz
n�z|�ݝ
��(�䄍H�2�a!���'c
�����%��,T<��"����J�D�V]�Ii����X�J����(c��ċ	�`�	��$���W1�ኋ�,0��,����B�����0u����R��
�ov�~�Z���o�%��ɒ%K6S�m/�N��7���n7_��'�p��[�c�dS|G��V4�K+�̔![%$�F�����:�m�H>4�����l��###�R�(\A<�$P� 7F��6���XΉ�i��;�A*�6ݰq?>�QɁ
�Nd���1m��X9��]\a�#�4����&t���d��kQ�0]z�J
T�`���Kq���z#�~�v��7`��F�&Y<j
�oa3��8�Q�%L�+01��;,՜���R�z�E��k��<��̬+g+s40yCW�j:[�6�o�f��L�̅>���P�u�Z��E\���
�3���f�ΦQ���a��*V��*MW��Vo�Vz�-��׃{z��U-z�l"���j~.o�+̢��p�,�>��/�y<S��ܳ>�p�<�}�)� Y̼�23��b���{�<���_�S�y[�������颍�$LL����/&�CA|�ś��Nqi}��u3��&%G&����;0>1�orr�� �������_���l8@��DѠ���{+�:�qj�8���������#'��GƘRp0
���PY��s0q �͋��AG�K:�J���~U6D�Œ˖�A\�h�8����|f�S�d�
%���i����/�x���;P�2#j
%%�����P|��M�٧��JTx�g�X��-��ld|Dtb|=�	�x�f��#a㣧���d�G�dɒ͵!�z�/\�_�>�����h&���<��wx":��*����@v��A���a��Yz R�pl �O��k�f$�7�������R�v�B���	G>��Ó0�
\�m@2D��Z�H	G"��W>0���LD,��!�7rJ��.�c�L���eUX>�n�rj��p��Y�~R���?I��S��(�����2'Y��]��+0z�d�3��r��6�I��d�n��|?`0�dt�z����fsvoq��g
����[��*Λ%j]���3��ܶ�몙i���Ve��}�E�t�2��Α����7S�=l\�=�1�E���A�<�m�1��$�1S��{���Sh�e���r1�j���d9�,q<{m9n����gj*�Z�jS�
|�
|���>�*�ң�Cb�
��1
��ƭ�� 7YM��qva
 �I������5�-n�&C�pA&b��u$*�.�������7.�D�]lk�V�e�w���(��R�j��>�v�G�[�+D�O�]nbv l��E�B��5�BD��X Q�1�Q{�Y����_JUh���K����3@P�_4@��
;��D�cTMAAX
�F|�]JY(b"Z�6�m�e�U����p��̐�+�$A��XSh�jQJP��W�3LʏD~$K�l>m��݃r��o��}�硓M��`�����r[c@3��WOr�eR��~�������wǶHM1Ĝ5�/�LVE�dB04��D�ނq?�H~�J&%8nF����q�a�ñC�r�~���crb�&
L�����$'��/��ߧ�8D0�O6��d�:�1��Q�`���iB�F�qL�`]p�����c�'I���)oY@HCҰ\��%��di�X&V����y�I�����Ufk�G3f6EҨA��N'U�5S����0�n��gK�wfw�ϟ-
޲(��<��M@�z45���}���R��|ӽ���g��1(x<�+�Әך��
˹���ˋ�~]����<��d9�,q<g=͚����с^%(f��c�~�f��8�"��q?X}A����93�/�kU\g��C�$��-���]�A*^�٦4Sw��1�Ä#T+�E�{݉c�Q�y|��C����!n���$aB��E��e�m�
s��P&$�BP 1�;�rz�	y�ֲ�*�|4{�Uu���	��8�f��B*m|Z�����;n*V/f�,Ī�Y�MA�;>�-�����!��>)�
r}E������0��א|G�S���(F���|��;%?��)�	wVfu/qJ����1꧋��;�4kƎ�8��$K�,ټ*A���C����C���+i��@R,�U貊e������T"�S�R�
��w�3"3�K�$f��H�D� ,�� ��+�oe2��5�F�"�4�`�Ȑ���Ǚ�J�W.O_,�	��#`�h��Ҧ��dҜ��	
�7�j��U��d��ˤGbFq?�g�<�d���I,���6P=C+=:g�&.��J�����MR{q+��g%�Qf:����o�4f�m�\^6�4םm�[��TZ9�z�o2ü�/c]G�������S�=lL�:�������i�k�T~���g�]�]����K=��,�f�s�Ӭ���)|�.���v{Rbh�*"�d깡����]`HJ�v[�!�0t��:�����H<P"�ӄ���y�X\[raM�E���/LE�cu;�@�ވ9��$�k0�b������z�r�%�?�~�6�F��U�	(0>!�';�
�k�QF6*��x���v&
T�!��^.���a?L���Yiފ�XUV�+kJ��b��{�D|�1좼��P׻��H'3��-��F8k����U�PvTZ�ݘb(��>%�dr`.��L�2ڧU�g�-huD2"�M�{nV�L���G�,Y�df'��l㶓��Ò��b���L��p@�H+ � �����S�/��������墠��>$62&XH^jyu�F�v��4��0o��*�
���D`XY]^"�
$%^E�%>xbӤ��+�5�?����N
0F�7'�lLO�#�4Y1�uʼn��$�D���k1`e����A�����X �z�Ph�2�!�[+uϨ���>��Jq	2M�����Mtr�T��r�O��ՓD�o��73����W�Y���1K����m�R��d���
睉>�u�lF�n�ɖ���u�:-Y��^1m�]�mv�b�\T�~
��Յ�.�d���¯�n�rX�0��#ր�"�0�޿�H<���C	ap�n�hŋ7e�f	$#:���K,+5G���`�#r��ot�U8�ӡ��xak���6�B��'~xE���	�TDA߽7u���wz�j��)7!�8D�
�����z��gՎ.�ՠ���CH��'2")��ş'%��Fa��ȸ= �WQ���b��� $�4L�s�4����cy��ڨ�Y��1ǎ�J��\��LZ�aq�wɇ�,�+�}?��D����	�q�p�A�GW/�fg-m:�D�s�ڶ};\|�e�z�*x��N��x��y�=p��w�����?ܳ�^���`�����:�.�G�����⸼�
��������3���}���0�g��ᐃ�M�m���-Ԟ}��=��i�Oñ�����;��
�]�Y���3l�}�e�j#�R5t�����ؑ�F�x‘r�}CU�\Ul�?h ���W*0m�C�q��.���+Ib%?\��i��1��0>�Q́n�&ƭwi���F*�,��.M��}'	d,g*CpU���rx���iuieE�j)�:��Z
«<&&9�C0&�(T���1�@f��E��_�X>Nnp�CV�/)>$���	��Z����3��2Q�u֠�`p_ëZ�sR⡐,�&/�d��,y��sQͰ"h��ڄ� ��c
os}˙M~3=6���I2hVsgf�I���{R�*�os[�6�fк�9I��1��l�=;��ſU��-�]�~�e{�&�n[z]������Cn�w���N�	U~�/��^�W���G�O�e�ffV�ݖJ�VvPu�ݛ��r&���y.-E33�3��f�O큳�����l�/Ӆ�Y��E��YP�
t%e����B��AC��'�Aʏ�ی��m�d���r�
�NO_��"g��|\���
�M���Ĕ�7�ko�qݱF��c
�ŔV���	�.�а~�]B�@�Y���F\�Xq���T	����kD��=0IzM�����X��7��x�����s��EDt���+�r�bD1{�a��
w>X�']B9������hg��	���W��}%�+��	B:��v�Nbm"d���X�C�U1�_�\%6@�
��*7Px��8���ۧ��l�q��Fz9��jl|����D[8���D����_?��k�=<���W\	_��“�t�y_�����_<��'�fG�\r��p�Ksγφ�v[W�?���뮻�‹.��w�O9�0]C���;����PL��?^�[���t7�����xޗ�)O:����>
oV?����7��!0��1GO{ʓ�C�>�V�m��x��f�3�."Y�3@OrP�Fh��m[�Z��K����+ ���G%=��(����\t�u�Fߗ����`6�
�hA�&B��C��Drk�#(&E�ڄ1G�N:���Q�hȵ�L:�+���g���V�OD�Aball����߬f����0��j)�����p?�*���5qt
�4q���[<q"����	�V����g�m���1�̔��KuT���$N��@�2�D~�X$~�D��H��Ӗ��U;����>m1�
�77�L/��f��2�;������{>Mg��]q�[��#T���A���SxZ��r���lM=����O�}�I��:���-��`6;���z�ýM��}4�9
�W������`�wIJ��,��,���e�!{�po��~�6��@����;7)A:@�CV9\�ә`��""�����$q8y�'��&�mn�A5QiB��A�K���%�D�h=�̐8
i�`����î�ZM�=F��W�
�f�c��-� ���Dx���P����%�
&�$B 4+�(A�����D��X���愌(�#e��N��˖e����突�����X��'�92���UX�e���Q!	7��;D���P�gF #��������	"u��@ݨH���_ɥA�*`�p��¤��0#o��#�w��m�y�{�}�
A��߯��nSPQ�Ā2��<�(�v�������}�v���;�G�m�w��9r�5�S�|�~lڴs�Q��^{Q��}��{\��jw3�ȓ��A��0�Νc�}ժQ^U��uŕW×�"?�x�itC�2l�@�#̫��;w�UW]C���}�k�a%�o���ET��~���C
�ߧq�EW7x���͌�'���� k[4����b@�&��\�8f�{���il���ZGX}�Ȩ���1�\��C@������P��I�,6vw�~x�Q���Ĵ�|��z�ë
@<���&��!���
�5�lSVh�F�E =��Jn��#��9����Q���_k8I�@�H�`�u
J�u�a@A�D��`��� Pɂ�&M4�X �*h1&u���n0�\�
�/�2?�81��.+j,�C�[�ƙ�1LJ��
qPr��a�7Zܾ|�'H,W�:$c�`�w�[��a"���Рg�q�L,����R�0k&��߼e�v�,Y�i���~~E�]��$�����b>�L�S��$K�,Y�d�5��@���c�$��x��A��]\�l�v��{�(.�������E�{�XTu�<�&,!�H�N�,{�X�z�<��>ކLFF���cV�jLUZ���@�j��4��P�����"�\�G�rv�%J
���j5�}W�=K�1 "�`����P7G
!
�1�g��	�"���nٵ�^�<i�d��r��`&EȔB9*��
Z�Q�zB�Q�	��&�b����I7A���&��A�%\�v�V�D4�4޺U�v��kL]`q�eB�p�s?i��<�z�r�i�a�>�"qb<�#4���T*ܡy`���ɹ�$��t;��g?�K/��k��uk፯
�ksa��Ÿ���W��Mx�S�
	\��Uշ��=x���ᆛhס���.��r���=�8����Ey�M7�%�\;�
U&���K�#��ty]~�U�/�.��v��‹�!GР��#�8{�	t#(ۃ[�����f�jR�l}p+��� X�G ��?vu~��pV��+5���v�p��/�܏�c�N�����JG�l߱��:��#����楗_w�u�]���~"z��o3<��'��{�
��m�\z�y���{o��7��{��#�N<�88�E�w�m����y�$�2�}�=�׭����z]�����ǝ|���V������:����w�՞�\�l%>����6��e���{��W�|�)��XƤ0��U	�\����\65��>E`?#C�N��02���x��IX%4p�B.���L>H�/R�X��p[�*���BVG4�xi��.�rrI��Dw��Mz�θ�6��u
�n���
q��`<$Hh�s�)�sK\zi���I��2�������#S�d���� �)���5C��)�a��	��6h0�.���mB�����k� ��t�N����@n�53w���+��m�db��˼��G�B� ��^S��TO�~s���;=�%�Kϛ]��%��I�md
އ�4�e�oN�bg|nI��L�������XHN��OM�b��p�&��ha���H�z!�+p1��1<����0��1^`�["g�}^q��#�Ŕ�u�m	C �r���v��+�M�;�B�`}s�b
^0��>���@C:[CK�zBA}
�R$d�<���@y��&�Q�N#V[���F���7�+3 pVE�7���ʩK+��@���+���[,]�:E�D8�vV3W5����ƨ8�;��򄉸��,"�!�N�
���!��"��*�D�b�w&����A�nɨZߨ�j{7�r�߆ ��~�9s
l㉾�{	�G��`<���D2|���o~�{����Mܵ��@�������o�}7�C��g>�yG��t �?��O	���l�B��w�p˭��=����~�H���ڋ.�K.��.�SOyB�����x׻�>�@x♧��|�ӎ�~���ׯ'�+��寑�d�ۆ�5$,��1U����/�>�_�W�u���?��R��s�
Gv(\t������ۼ�<��?����<�W�^�*U1xC��#w�Hٰal�P���m�arl۶���@SG��ܕ��o}�T7-�C�r�ލ��/�X	�b?oݺ���O�=6�ɒ�2}���Zs�~�tB�C>���6Yp7��EAiBS�T ��j
T_��qaI��`�d�����6������l�K�ri�
!P�16�A�4IP�h,��c�����	���H�d�Y��S⦪	q�2�� ��A�2�8��F�ꏓ����(ʛ��P�������C�G%��A�)`���r�V� 24<�~B��`ۨ�Ju���2�,Y�d�fg�Z�1٢��Z߰�,���vu["�@���R���ꋜ�𝙽U�;s�.���cP�6��SLV\ y���'db|�N&\4��	.��)�I~�o��ր�3�m��q��P�1|��wu|�G<�� 怆*�|SL�8�a�כ4,��h�/��Gu
���%�hb�a&�p�j)�����W[�����"`�V�E@�r�.�W�V�c����r���Z�/*[(PS�h�w&z���V\��"��+~���	il�h��%PM�q�y
P.�M�Wphm C��Ȥ̉�ݦX)_����g%P�q&D#�Y5��?��`)B���i�7��K^| �V��y��rRg�e���7c��Ba��*x�<�6}G~��σ���Z��/|�˺���6Gh�|��:��p֙��*��k����{oW�I����C�o��&��#�ش	~��g�R����!����*�U��I''�p<��~p�=[�Jq���[�{߿v[���$$�W^hw�y'��������ᮻ��O;^�����F.��O9������c:���my��Gছnqu���c�>Ns�y@�ehH�`\�C�I���:֭[C�Q����K�}����FW��@��K_�8���"��~�#�ΑUɒ�>�ra���0��n����6p�@���<=��Q� e��ӼrW<�j���Ø���jq��fk֮�Qw�6D��$�@p%��$NX�`�'wV��`��p�ݿF�5��-i��kV;�s��������sY���d7N|P
���Ff�y�-A�����Ȱ�A�y���.�0�q7Yj6�U�m������J�	qq�e�_N��r�T�ǻ�8�-���t��nu�F��6
�>�j���1C��v��3!^(h{�3�&„?�TOu�eV:ba�ށL�oi��o6�U����A�:�6-���(� 33���=w�
8n�TV��h/�� ,���g!�����AO��3g�N�%���zrT�д`sס���dK���̽U�� O���D�^y�gu��0XKp~�+#gj��$>?	� ��%wU��oddT"�d�#���s�J`r���M7c�3�[�)^�H���y��$�.���I}A�>x�"���E���E~G�f@A�9(;.^�ب�(�E�51Hnh�}C���"MZ�)�ɐ����y�{�P�G.^(���-�݉�q�u�ҁ��j+����A���cK���F��K�&�C&_D�u��wS�\=��yh9�eQ��?b���m����v�h
c�4����?J�!Q��&$�V�}	D�P��)e�(٤�z����*����%��������ZLQ���7��ڳU������@r��*�H~ ����2�e�3K����A�׮YC���8�pظqCe�Νv��IՁx��'�1G	W^u��o�1"��a�}�%W�Z
�L!�;Ѕ�&00��{�	��/�p›���q��.��*��9�Y�V�a�r��"7V��ߘ�.��X��#5Ny��t=u�Ot}�@쭷���x#��#�l�{Ys�/=�{���?w�y�^�0y�I'Ҫ�/�̑#��m7�$7p?��7(�ݓa� �q��W�Î��?Gq�5���ww���}��Ǟ�㊌:���c��_q��6��"U'<�IO��JqLP�J�d�zYC�Vr)'P��ˤob���9Ǿ �$kx`��F^�eU���D���]#-"?0�8*/��t,l߶��� ������1A&)���
��
����&b�j.2O ��t]�ۃ���$����q��u2�P~-�]& -^%B�	?!
��2A��!�Ӱ�Ċ�mۑ�k
��j�'���#X'�Fe4[�B13��¶�℈&�`�Mγ'�7C�i&,�BC�JN�&�W���e�2W��l�J�[�V
Z����dK�fw��g��d[�~Гo%F�]��tF'��l���j\�f�~Ϭ�`��$xG�:+��$R�A��䙡����H|oG
�:��7Z4�ޣ�{��LJP�ȍ��SB�L�w��Z�<c����ӱ��NQ��)Qt4�6a.��YтN��-U=K0u��{�s�0�
���0�#��DM��&��z�(q��W{(.��*�a}FB )�;���@`���}(L�|���@�=1�'���/u���ik>����6�9�*MSk��[𮥬	��9������*�����?0�v����B��T|�7���q���c��B�����|��(���d|�0-S]a|�~�2�h� b���ړ�{��K��*�¨�4�.t�D��"�q�	�\�$Ȇ�{��}�K�z�4G2���*:��CE���9��Xg�c�p��*��
O{�Yp���<h��o&r˻⪫��k����xc�}Hѓe���//4��~`�C���r0$�Hr�!��j1���9ڑB�x�SH����B"h�
p�	�U��	��ڳ�p8?��>��ô��հv�^./W�z呍W�'K��rY�Ag��7(u0�ܰV?sPf��]K2Kލ_4~ՁN�$����C����(�h��M"Y:ڦώ����V�Wa ���``~U
���`d�V�s�C�8>G�2a&#��~�!Ic����u�M�pR���̷'B�ǫ<�lQ��.�r�͡�G�,$7�ۘ�`i,c�����L�E�>Q���d����,�O������0L��Ȓ2D�t��`�
���.��m�#Ӭ,�.�M�¦9n��B�s�J1�������\�i�z|%]\�i������,vş+��sv�]h�P��9��B�-�������L�Ll�9s�"�T���ȍ5c��?�9��?�۪6/��֢w���E���������/r���=�;~��rLP,K��v�E��{*�6$�8�	�<p&����
�/�'\�͈��ܓ2z���E<a��������O[�l��n�L�F�`>x�Y�zL��c���
6�&�����7���"���r�.a�()�&)(޿|U�+�D�jY��I�m�'�<v�d��pq'�yG���<�d� �f��t�}I	��Ł<h{.~����	הK7p�4�	� ��+.'�5���G|�x�D�>:)�i�0�=�!�~��R�S����@ٗ_q5�|PE!�1�y�#z�*Q�=�.�x�B���n'�
��?��%�'/l��y�$��zl޼/�H�q�a���p�5���7�[�����共G�8�T8��Ch;�!p��.����"
Ď��n�������˯�ҷ�p��r�������Gn����������`�և��JW��ꎦlX�o���x��q�Pt߅�����^g��F�Ic�����/��H2�����'ÿd��L	#l�>\)@���	CP��C���hg��`WL������"�W�L��<�����'��-�&6�}�A+/�8\�@A�-+0����#���3��ף�ڤ����q�,���a���~w�>���9�8>���cd�%d��@��*3��HnĐ�%��I��L�4h�b�\,#�D�MY��j�_Q��1žE� ��Θ��`7\:�5����8��U)���&��Ó�L&x(n4X-25�&Q�>b�WjxLCy^�¬�iUsu?O����r��k3}��v�l^���-�6sg����F����
B.��y��EX@K���Xz��m�ɏt�����;�f��ઋ���
�r�
�(�ޯ�q����	G$�"��W`���:�7՞$�1�gdxĻ�B��Ir5%qIY�8��(
�Dr+C(#A£��zk3�
���)y�-���iAf\�H�I,�A䰈�Ul(���O
��#u�d5���LQ͡�A���ETS����JO��w���C�@fOC����f.Ϫ+i���\?U�(u�osZ�֝�E���&��W�BH$Nv�5!t����8q\>r*Lcq�F���,2BZP�E���g��&Uf�YS�R��K�m��̻���y��l���������
�g�F�ʆ��A�\{�#��G=`znE���߾p�#7��W�@�Id-1�^�W8a�#3~��8B��{���<]��F
c��oTw�}\q�հǞ���Xg4�c����?�r���Ӟ�$
���/}��g/�c���?���׾Q����O�%���~A��fuԑ��YO<�����bЊqqÃq8n��&Rm`��O:���0З7!sM��w҉��w�E�S��B@o�O}�����d��-�$�`��F�j'>���i��>�4���¢��@���
&���ۣ�F_��f�*j�<T�o\�ღӃ',�'*�cLr���1!����A�&!��b��w�;l����*Z-�>2ݾ�qzF�6w
M���p���)3<Qj�}��$KT����U�����:��

�k/T��Bɒ���אq��ILL�.�)�ʁװ�Š�!W�\>;D�;������1�dbdҕ5���#ãԏ8Z��YԠ���:m�����ښc�<��f��X^E:3ӱ�k�b���w� m�a.�q1�/��e�d�w�����}>oa]�������	g8���ż�M�����i�ق�,�@���.�tǘ/��~�
��A��+���n����[�ӫkk�Br�d�5�u�.ט"������ڄH�Gu�ń0��p�	!D䕢Ns�-�
t��Qz�@(�G��>�O�Ugb{P�(y#��!�Fqr��Ë5�,����u���/��VyC��$�x1��#
���LBX���R%?��)�+&�:�7��q�B�����P�'���$�Q�Ð�m����c��P��*�C��f�؂�(�Zi,#�Qq(���܌��#�@@ 8L\_�W��`�Ć�Y��+2��ǜ���-�������s���̧!���'�I�n������&G:`pqTO�ł`��/�M8�#)�ƕX�.��ž����x������6Gd��m7R��b�{��7�M� ��@e��@��w�=� �����Gq8���χGy��?�c���q)%~�
�~�a��z$^Ѱ��"j�=��ͮ�j�?޵�%/z>lt�D��,G� x�j�M�m-�b�l$`���'����+����DG.�v�\u�հ}����19�r�?�'����>�@�_ϧ�C��N�����;IY��#m�{�c\��[/g��t�s���0^�~.��=�o�2�9g�jہL2n;����
�!Y�:����Y����!�~f�f
w¾Nn��b��OJ~�Q͗�th,
u�H��D=��2���hP\���~;��b�}��*��b�[���Vi�W��+-�\H��?b3�����(i�w,�\��/i*�
W�v
JIǧ&��h��(V�f6���u؅�Hf8YƱ�:��Dǁ��rYh�'+<�"U���>E�\C�U�i
�AC�n�9!d
�}jQ��v��E�V��?�����{�E
��g���0��a8��mf<���b��e�7Y3�t��s�e�n���'O�=�a�v�2�B��V�M�-+�[2]��Yo��ԗ�;�=U��{�>�IM�_Mŷ�c:��LO��M}
��Y��3�`��B���v����_��߹��xQ�TgQ΀:���gK�� ̜-}/>uty{F*���;����� )�9�#�ư)V&z�'�٘/�$)�$���6I��P��0Qi��p;�4Eb6�;.� ��M^D��c}�@�vl|����?t�e(}�=ܮ���^c� y�.���2�"8����x�D���	�>���~��L U
=?R�3�C��K$�����&���P�QJ!v�%$��\=�祧\��>�)���ە�zrXP}�o��"����\�$V��D$Į�x�r�$1��.�Q�O�t���i�i�u�wWQ�%XB���y�vs�U?�i����FJ�/�0�+��5l

I�z��˴�ڊ���b6���̎7$�_>'�|i��ٳ5�!umT�
AJ\u�r��I��|=x�9�٭>�l׶Wʥ��#���<V�W���ص�jz}�s
�Qz@�
�nrJ�p@o~�*�Ґ�2������е�n��V�j��aP�:E��O�
t����`����&�(9E7Y�~�|�,��즊'&�-r� ���j�i��-���:�ٹs��"�����1J�n��1J�m�4#���߆Ӵه'���U)9]#�.���	R���lM����[o��Q�5�m8�9/�ȅ�j@��da���7��v�n�r3��3��A�=�l�W�]��?�����.c6��<�L]UU��3�N3}|\� ���i����a�l��jsas۔]�����Zl�vǀ�-���o��Y��8E�T���f67�ff:�����!��������
-m�ꎂ��ٓ��2�V.޽�l^��Ln��%�)xo~Ǹ�
����Bd ��*/�4�ª�Z�-A�&l�I��=UP�N\�)'Ɖ��t�#��8��0�I"B0ư�o�0�� ��mS.uB�_bک��
�n!<�����̋	����m�5����^/amt;�0%�DP��3$Uq�3�a�("H0m
i�X�>���*��V5�3b��������Sg��΂�
��>�@�)��7��
�D$�)�m��k!�C&!	��O�5��CyF�#�j��[J�(��~��+yt���5؇_��#��l�1@fcx�
�S���܁�:���h����D��\�4�z����ȑYBU�k��J�G���nZ�	T@|���=I
ѡ$�YM��I	B@�!�]�o�,˼d�
m�f6���nR����p��14L*��	&M��|r��چ��0��pLRv��f�8�A�5���A�$�Ʌ�d�(s���
�MDw�8a�	+X�db�+A�~O�Z��B�c�)�xF�������L��%�s��Q����ّ�h����K��[&�WR�d>����j,��}��X���,�w�o3{U�Em�;*��ʵ���<��ǹv���f}��j�J�0Y�dɒ%KV���F�p���UL􍏉��?o;��L	���;=�9%"b�/�FY��I|�oa|T��mt�?19A�!1����j�(Lr��+�d%��YH���#=x�9/G��	D���Q�d�����'����xO��#v�Mn��PҠ�6F�\��<�z\�\i�
�b`�'$uDR�@ �0+�^4�I+B٭�Ԓ���J���Ж�B����	h��)�@D~�JDBn�4�ѳKÛP���HM(^��1}�HP�F�Pm$ع�)ďP���c&0�(�m��1�y��A8�!_��_'�/.�����y��M�,Y�E5+���j����E�Y���)$
��#ږ��N.�
�+%�q2���V�	S9����0���r!��;���m	Ȟ�Lt��Bjx��ê\��i�GB�#�.�����8,{�X�KP����7j�M4�	�א`�8�Hr4잊]y�>�:���%c����p��P��_TY�!�F~7(Xz��j���3B2 �$3�K���5��U:��H�4�`tuS�W��G����vi�K�J`VB��Q�p��9̽��RG�&�~�lqq�����K˖�I8�u�/�����]�y�%K�,�.a��WX�g[�f��L"N��/G@WL|`�rC*2�C.P�d�'yrp�M�O�GZ\)
�\>C�8n���0�Ar�%�!��L�t(�3�;�
!@�|m_p(/z��o���͸���Jo4���u���x�==W��l�r04����h��X�A1!r
q��g���'Mtp��n%�	�tDHo"eB���
��'R]�t�iY�?�L����j��3Qy���ӹ��3Q�
��p6q��_���:_n?�%g��K�F�H�ix�G�W�$1���o��n��X�8�,P`����!�dɒ-�i(/�4�]UYyB�L�dQDmUaȃ4c؜�2���৘��]0墦���/����P�X�|XJ`�v�O(�Lj��7���#A��\�86L��g��_�j�(;8���B�S�+�;:�@����P����{;卮���Xvk��"8rv{��$EH����'7_8�A"�
�Fc��9�%Q�+��Y)Ң�pB�.�D�h���@�E1��16�"���)�<�黡DZ�th��K��M漮f���:.n[a��͟q�<�=�0�e.![�.Xj�k<��v��J�F��y�f��\Vn��M�&d*�ͯ-����� �h��wde+r��{���k��l	N�m�yk}���HZ�(@�#6p�{��s���]W#�1@;����n|�W„\h#NҰO���9�+L�^�GFxQ�/�$Y�բMu���l�b��BN$-ȭ�;�)�`HIbB|��A8ŋG�	}��y�	�'�����7�q�s�r1G^��{�(>">DDE�X�%qT��q�� ;D/A9�I�I,\{�H�)��<E(�n�8"�,����1��䆋()�&�`�D��n��܉X�8`I�?��u��.�0��vˍ��
��Tf���je��=�Q��jI��3Ƈ�7�b��x�6�,Y�E7
��`��"�$�„���
���]Q�<�A��c��&'�!
t���P喢�0���A�����L���d��I�6+B�����A�u���H:�/��(�n��hAm���ȍ���LV2"B��iÓ��#�d ��օn���L��H(@MP�ԏ�
IJ-���^����V�j�ꁊ��)�5E�3"?P�����YV0_���t+X�Ű��s�}U���W,$�cg���ي���¬���f9��޺�¿�/A��㲒m-l]U,�c3}0TO~,
��8����Y��t�Oϖ��-[��0zD�P�r�[J"�f���O!y������
���4��5�`�Ot�Edyo�I)b%>0����j��6#�*�9���Ә#�Ȕ�k�K�Ê��a��.�s�O��c#Y�/�B,�LT.�y�g1�*��;�ʣ�U�ݾy�%dF�'�! A�3b��WF����
� �"!q8?����A��Y E�@����b,��r��F+���j�d��3Z`�Hŭ����e�@�)��e�D��u�}@#LO�/�&0F��
�a��e���(4�욋;DZ/☥�ғ,Y�]۲,�䆕˽P	R����O�6?D;yHe�;p��
�;�_f�d�r_'�E$���9�+C�H���IRz��8���I�i;<1 �#ԝU[�K!9�ՕT��il���qv�5:ʫ1���١d�Wa�Ǯ��І��`P��E��q�GF�D	��MZ���LM����d�+Դ���A�cR&E###��V�h�"���t�,ARh��w��T�!�<<�҃-Y�ek���B:���n�X�x��n�閾�mi��6�W�.tՙ>�W��}��=;Y��L�
�)��ww|�����m ��^L�x/��i{�00�l�����Ţ���H2�1Fyxhs�$>2�S�]v��Q�@�v��l�H5�� �p{ǠE�PR{@X4�<5w���n� ���D���ce��b�R��e��!�߫FDa�"<�Fć�m8�`��Oɘ��℉�Ϧ��B#�T�&��,Qb��N�J�MN ��n��F�J!��]Zq�B�1/�o�U���I?0�^֯�F�ˁn��������Y]�u�UpJ'��V�d��!�7�p��[;���(�4�
����@n�X=�R�\H�m�}/YРb
V\�>��a�H�:���fy
���hqpp�_rv�D�t�6��y�~TcXn��'S����b�G��&��9�?'��G�iw�x���W2�ۈ�q;�4��U���6R�H��	
��j4���8�ēL�N��BA�-���C�M�ri�}*\��q�Ԍ�@���`�6�W�ـ����'�"6�g��wu.�a]N�ܢ�f�;�`۽iNm~�{�wC�]�L����p��`W�4�K����6� ���2�O�+oV��eA(�5TB���)�$��d��Շ��att5��"Q��L�wwZ�y
5�P�
D��w�
��Q\4��N:��c�W/�↜�c#���1��d�6�����sE�Xb�(�$ػv��!@����B�[�u!Cˆ�Ç
�E�a�JN�!+��ލc�"\�)��ޥ����-=�B��?AD�B_ra<L,	�p�Z�B%�G

�α�\!*����ȕ�!vH�	��U��i� Q���ʨ<&���цA
"�$(N���#�/���V�d���غ
�wLN���ɿ�K�{.�D�^⟂��"J䜘)=X�!����-�R�/��[��Qа<
fN+#�7����i��\|[6���a�ۧv��qc�JL�++r�{r|��p�&�-��ʋ��1��Ij��WZ��i�#�Z	��30Ƈi'���Qi63
B� <;���k.��!"�T%�jK'�$��y�Z�HT/�Dt��q��M����X{�	�3E��K��7H�tK�msN�Ķ+O��m_�g�����YN�ɖ�]9Y0y�7�cpK�K�Y���:�y��ϼi>��5b�V��{�20�6�����5{y�$�'�(�bq���)v�Mn�wh�2��022J�����l$Eȝ�;�����\[q�u&JX�8��vuC���[^��)v��r�xa�!h?�9���Jqm�0MS���&Q?�[X"��^U�׫��@2xV�k3+Z�$�*��@螄(��}pn��D� Rr@a��c��sra XH��B%��,q��]g���RG9�ԟ�x�Wۦ2:
6)��������ݍ���t�O���@a��~���R��,����Q^��L�O\m�Δ���vɒ%[&d����-��\�},�(���6lF�O
�-�$hx� 	d�_E��ey�{X�OL~P(����'�%�?M4ЭSǑ�<i�}�b���2�%uo58>H�IPs�W��Ρ�1�8TT�$���`ؕ����� e�냥��e��#�X�>�iy�Gc�I��ô*Y�!<1��Cn“#��h�Ƭb�VH�Lң�����c�qWJ6<��/�qn_)�^�fis�ץQ(�t��ś��_�K�%RVժ�b��f��m��ն&
�B����w�V�9/��Yw��J��c�Ku��6�ub�?���x�,sq��5��4�'b��S�^��3.Nd�
�y��_�6a��4W�T��1�-���k~oW7ؘ�n�����aP��D� >��@.�lÓ)������{R�x�l�ä��<4���������-���杻�Э��`�������!��Ø n��LU9�O9N�+&	4��?������G�-�'K/��6 �w�c���{������H�Y��+.D�!�P "�N|QB|�vD�Z%S�DN���(�a���DZ�Y�2oXrP���E„w+d��i��,Y��5��HPm����qm�+
�}�+�il��$���=@1[���6L\Cp��ӌ<�(6NZ
^��i��h6�m�]s
��B��m�}����nO���E-B��3qw�RSv��+3н��D���ߢIi��U�Dh2t&�d��ʝj�2::D�C�m&V�O��� %��},0y�
F��&��;,}�~��%'�O�p����׀I(y���G��QT]���Jf�-=�c=��hf)����r<�Y�,�oj���a�-��ϴm�M��>l�O��艮:���Y٠ff�s6X>G���5o�:0��9��]�yƒ�o���e�o����x:�s�fu��4XX�˛Y���G+gjKꔛIe��Lg�j�A7N��ݛ��qRVt:>�����<9�x7�8��)=3 �����Ţ�]^�{l�����偫f�k$��K�4�.?>>	����/0�=gR�Jf�n��+މ���{�@��Z���J�	Y�*�ы���>�]�H
��t05嘀�ۈ�� �ױK�Q*/�o ���.�Y;C��<��1�bm��z5J(#�=����U��-VH�&&>� &Gt)�v��W�-LI&C ���L�X=A�G+9��c�	Sn�M���J���YP�dɖ��S��tL��6F		���!K���+���w@TO�L�"�Ij^Y��H �oK�\�Z!#���TWXL2������{,��B"��I<\	��E_�c(3���K�\i�$KS�g�mk�u
̔�*��'d(�	��H�ёj��}b�aq��5%h��TV���)�̲a�G#mg�eJ�`_ɑc��)��R��d<A���T�1_�/��V�-i�c�Z�E$��-�Sfy���<�T�^(j0Y�dɒ��
���{b�����bxx�c����wO8b�#.�G�}�		�,2�N>�Ȑ�7W�EF�>�q"s�8/����߳�lF�9�$-�����"����H�����ۻ��e亼!�L<O	 D�n�7
ų9/ų�PVa#��me��)�E
T<C����S�[R}I���_,E�ٸ<��sW��|PD�p���>����t�����&�"KWV�E�R�gb��9d��)�=�5ނ�0��RB��T�+�b2�f��5��J����!&gi���&�ɒ%[�q7x�jx�bkt&���-d;�t'��<��Ƚ[(ZE���8�
��TSH
&T���ś3�x�凲$H��=��[y@��˸r��&��B�HN�\Y��:���D��$ȝ�pK(  �cll�''�r���C2}ҵ�Z���$L�अ�x2�i'&Y݂�n˲̯�B�CdR�u��@9�9O��[��"W�����V���n�s�o�$[� ����:�<�R�҄m�mVKϒ��Az̦~]T��ޟ}~q����P�fm9��f���a�V�+��=��'K�m+{�f8��d��ݜck�K���	����G��� �y7�D���V�v8�0��U��[��ĸ��ƒ��c"���h��a��**��i�hQ%.���Ƚ۬LEN���}W�B��w�+� �wKER�ؠc�](v�)����T��$�
�-��H�Kaȫ.�8�����][R}@P{ �#��}��(���Ԉ�:�6�Er `�Q�ʁB@ucb%ngݭ��لBey����	��P�.�ԭ�F���r��E�GPgD�DŽN1�Ֆ�� �rZ�ACDJ i�T˸��$7�I��dɒ-S��=�ێ!?��!lE�A�
YA�n��aj�]V��f��PpW"d�֠4
�y�]N9�������4JF�]6S��V\pu8���jӱTj&̸�>���'+>9h���!)�K62:ʁ�3V���gN��q�;�� g�0<2�RV,��<��Ɠ���A*
W.�(î=<�Vw���ܴ��n�qo��u�–#Q��GK$��	�DcL�U,�� �̈T7�Uc��N�H?���r�x�V��j��t6��"������%l�se���~�B�T����d��V��1�̥-���qF�	5`8��F%��bO�
��~� /�j��lժ5g�^)���Hf��2<o��6/��X�;#��s�#ܻ���*v��0ݱ�#��@��U)�qT�Lx�L�4)��cc�ފ��Uu
��/�D2�c� �*X֬Yp?�¸6�Y�@V��@��{F�
X��\`��V�br�#$�1Pp�T;p|��8r�]U��(!�8�E�l�Z�*���x��h��/#�'�<�r����P$�����ʢ��	F���w*3TZ�.�Tq'��<�yZm��=�IX����\�H"�Ap��S��Q�d��Ľ+�Aݙj�;'��[�c���K�~	�-�>��t��`aL����4�+M�O%��kt�A��qG$L�D�SV��7�6���1 �.����	��+�M)���4�o�ccD|��K���ٍNP��ljV�I.����D`�b$s$�0dwxP�3��6M��_�,A2'8~�E&��A��w�L\�O�&�(*R��&gH�>��PUK屳��P^f2W��'s�Si�����^��AF{V%�k��g�ٝl�lFbY�TW�`��j�q�~�Kق�4�A����屳���bs�FafS���&����ܬ:�.�d�to@����[b��;=��X����0�#�cx��"8��(����[@����r�E�7eA꘤E�[�ޛ�M�1]ݓ�I�1N1V(-�t�:����T	b2�h�ܠ#&!.�@‡/��{�<Vw�)b�J4ؚ���p��L	9��yv����f[X�_�O�xPaD�LL��fZ^8f�{.��M	‰B>E�D1�Q��h��
fD���Y��
\��I�LJ:;��*��˹x&��c�㎔E�+�r;�E�dɒͥQ.X����!&�����$�_.�%9�<0�������TG��B.p<#�!A1��5kVӄa�5I�LG�@#b�U *�$|�
C�ޞq�Aj����
"#:����tè�`trY-��9�i�IJ��OF
2n�'3�~teդ f,-�$�D7�F�� ��M�ؽWN~@YAˆ\ޑ+9�����h��$����O�CI.օ�r�k��'d�	�rm.�æc嗆�7�(��Ri�J��MͶ���`���9����p	�J�Β�\K7
��=5]��f���rK����y�vv�so�t�1�8$H���N��)��h6��=6�s�DJ��+
|�ᅚ�`�6 �A��R��A{�NJO�G�=V4��	nƇ[C�#'��!n[[�[Q�Vtg.A�����
ej�T�[m�ZHe2�>�(F�PP 
�����J���x��4|��Q&��Q�Ԓ��B�t�����@��WԖ���q^ub��C��Pk@&����yCE_��󜺢g��Ha�+fǃk�vE(�B�:&�h�$�y�tPnFcp{� ]�Wv��	�h��,3���:2͞�%K��`?}�[�DFd�@5�z@n�J~��X}zA!O&
"�D�΅h҄��Cw�\P�SA}�t�[���;��
��(���}Zu�h�h�T����Jp-�te��q�'���7�B@��1�L
0wt���| �1�#��$��W��@�I�b.HL����q�l�z�V�P��(��kj�C���Ve �C
�9��&�;��!m?zT!�~J�D������x���RY+nX㞛f�j_,U�gF/�*� @���;��>l宄�̃-T�.��)�q�Ս���Y<�vi[�}U7![Bfz�J��-=?fn5oh�>�ܸ(Q��x�UmGz ��@<�^���!qs55�/��G"���c4s�o�����ٽb�8L=`P�����f���|ҕ��G�!34D�BW�*�"�8������H����;�L/������J�Gޟ��0k#�Yq�N/eI��J�Ա����/)>�Ѣ�-�]hm��<l�:��.�]����9\�-+8��ˉ�`$�|�
�!�
2_��Ie�?.#��yŇ6+d��S4��'��Nz�\ZMdLn
ʑdɒ%[d#��Y'ޝ�=�Q�\!4���}L$� Z����𖧇�2�"�	�HJ-�_��D�����2������L�9��D�C�c� 	�$
O�M���V�4��Z&f�M^�@+1H%�ɡ���H��y�YY�1�H���e���.Ar���[.�"���@V�k,��I��\�w�n�|vll���aj�FJ�cS����y�.�p����Ng��s��6� ɖ���T^*�y�����I��dK�뾒���L�}K��l����J�,��ɒu�̟,�Ñ��ma'z� �����h�E��)�]��p\������k�ۿ���/�E��c����ott��C�\s{�hq���M
a�x~"92	S�#�rc��	���Ƃ����^�Q&��T�����>��BP�+J�@j(N%H1�w\NH/93���d�IʷI$%����v��}\RV�4!8�,�wWS���n�SY:��[���d��̍�t�"�(g	�U����`�6/>](MFD
��⎉�$K�,�bF9|�!X�'>�Fzr=3�5V�n����C�vA��$PxN�Q`��+Mc���斔-q��䃪0�\P�B�eѽ�ݲ��41Ц@��R��\VK��őv����i�R���JY����;9h|"{:9)-�srb��!I�LB�����V�dT'5���Ċ
�Y�>A�=@\oeD�[/�P�6�����Mg:S4B��/`"��+Yc�_ƫJ_���\�uy7k��t�/,)%�?���Ku��"f~��o��wƛ����5;7���|X�,�B��=��+֖�Ц󯧥�I[�|�1$��M��K�I�|��
܃�!����nKL�N�A$�B.JB�q��+F@bE㔲�l�U����v�ZCT/��.�q��EK���O�kc�L��ۭ�|D���	�eTD6q�@~X�#��ǭ���8���"5����3��SEF�qC���u�zب��{�����O��&�6@
�›�/ԓU�Ԋ$����A��AP�*>���/���
	Z..�8K&]��`��a�,7�E��0)�
���鸪ض}']@�ml2Á�V�����A
��cct�K��.d�|��kV�L,�,��� ��@V	��%Qv�Y���@>?4Y�ѐ ܴ������舜����`���A�̉6n��MwI4�ޙ���`"��&�a�椛l؜��4��RV�O��(h���ɂN�-��ۅA��0���~JTp'�2�r0t�r�<"E
"��НU��lS��
���1xz������H�!���$n2��O�l�E��}�c�l�K.�*i���b�@�0Ӻ����o�U��s�b��lr^����5A� cd>�
��/��1�2亴F`��iόX~�,�R;s����1)1H�f�����eٙԠ�إcf�-s;��k����l���zZ�fW\+�7�̷�Vm��7H�߫�4�O��6��f���T�
���Y��2�b������q�ޕ�ʭ�6�t�'�cx�V��WM�r
&�(|_G�HN�'��ȥ�a��l۾���5z�@Ңmx�$*D���0�����)����ډD��
iy/h��2S�����@��kLWu���d�-t�D����<"	�X{!"5�����Q�6rK���X��E�*�F:3
���U�����uc5�J�н���M��5�a��r:��DWBqXa�2q�e<����7BE	C�uӚXv�+*(��9+�@\B�p>F\ɨ��`���63$?�m���!�b��g�#$��	���qU��5�"A���s]�x�8٢أ۶��5k����6��أM��E��m�o��g��0Q`i5�r��賬�!'���
#��ڞ� �W9�Ţ�$�,�icFA�ۜ7J7��l�j�IR�XV�cWV��>>�A\�;��$���79ס���i1MN�(,]?�_3k��H
w�%WZ��H	&#�l���u6D��	����2!Y`��4�,VD@ۅ
܀.��7�)P���g��"w���9Fo�ŵ��"���㰟�D��7M�w��E������L�m�
�,�[&�"���#���kxdd�VEeH(�\�_'�&v�Z�_�߃�jy��a�ɒ��p�,��|;�uFK��tdf0��q:�rK�&�G��yW{4L�Ԛ�0�a+����3����B�1�sߌd3�9�9�|h�`�Q���`��@�K:�s��/ø����>0��1<:�q�#�F��eX�Ѥ�~�Ve`tt�{����C���Ą!|���\_2>MJ$4\^� 4�^Ե���n�87{�`�*�����6�#�IP"B�#Qb=�mK����
�Ko��w�Ɋ�+*9Vs�GE	M��
C�.�'��խ�"�V`��8���\U1�[��7Խ�m�$T���@�S����9�f��C�Sɠ�Zb~��F��(�2á�	���p�<Pi<q�X&cE�cDV$Yx���Vشq=��fo2ɦg�K�>�7m�eH�<�ȣ����t�n�m��I�x691�o�ͳ��mxoB��V����Bo3~M�{NML�+�y�W���i[�B5�*�/�<D5p9�%9º~�"�`E���0pW���ߤ��	�Z`��H2��9�M����`7Z��H�!�>����t{\C�W@X�fP��n�E;R�)��&I��4Y����
��	��w�T�	��U�`����Kl+��Y6�#�9�.-��4H��u��QÐ��c��#�R����O�TEB�FJ�l4eH��l�Y�zf�W��D̫�����۷��*_�3;���!w=����൒�=���F1��ХT.Ԩ�3]"d����9�^�Hb�;Ԩ�z\�ֳ���Y���t�^&��*�fɊ�f
��Ꙇ��ӿ���t�S>a0Χ#*:腢^���	��*C����z$7�����s\Άwy�:-�� V��y�p�5]˦E����ƥ,�N�;p$>HA��3!?4.��z�\�u����Q�,��"�<i0��WUj�=��c��/!ؕ�	DF��0���gȓ��蘰ςJ;���2���<�F���=h�
�o���B
qN����#9�ξ�����ъ�Kʎ��o^`P�|f�b6���pD��u'�AY�a�2t��F)>G<x-I�y��1��D"?��1�k����1�nk:9�PӘ�8#������Y[���X����XS�)�¹A�
r���L�\���*��w�}/L��)��B��d��a��l�
����Po�j�+g&��v�un{Ճ(.��)(�>�i�	��v8p���������>\�����ӱMYe��/K_?��
i��A��֑��p�ur�E�J0@Q�ƻ��9CTݴ]�
��Ce��`��OTu���ر�}Gek���Aj�4�g�'*X猔%
xF~@ݟw{e�����g�LZ2�sK�O�pb�5�1�?�Maԡb�E�}�L�g��L�3�ia�f�Zs$��m��Nw����8?qϳQ���559�^�i�����H���5�Z�)�cT��,(]i��Öo甁�:�+]���^i�w�ęW���;S4�e����l��(������,Y��Y��mzsyM�hf��v�.�l��h63"�G�6+=ȝ6-���{��])с����1��T"Vb���@��1�H�d�^Oyd�6���hiJ�+�B�Q<�Y�;D.�F��勀�'c�������u��#B�
Y�/��m�!�U!8��$ib%��PB^��C��zv����C�*�ȭ&ԟ_7#��Cb�|T��Hx_��U��=B��>�;פ?�εL��JR����h��V���չRyQ`0A���>C/���ArV�(���!o�V��r�tt�%.��W��
F��"� x&��
�iM
����m;`�l��c���Y\����5������	��{?�[���s:����ևq��0�u φ��`��Hw��+�}Y��w����F�X㵽��[�n-=�n��R�v��ɵ7�J��$��Ң�$���'��O]�@i�Ց�}4����ȭ���Yu ��$�dneEA��\��J.j���H
Lu��d�&,eɦ}�#-
����qR2I��|X	���?���p�oӇ=��]e���+,%�PaҰo�'2yE��''�l�ry�d�NQ;p<���	S���6�;A�����W��L�c?a<$C�'��秸�j���ՙH�\�s�U����'�c�n��zg��L�7%?Pv���GQ���!����-���q�i��8�/����Id��02�
1T�H�&3�PSQs;�v�[|x{���c��-�Ҳ����Ϛx�Ky���/K3K�\I��͖~u�e�K�l�f�����;��)ï��ጏ���3��	YЈ�����~����SYCbpd�aB��#Q26>F؈.p����d���^�Z0���`�E����r�s4ą��@��c;w҂��D�!Ɂd
�EL�#���6��MZ�Iu�� ֠��ܡ6�X�V��[�8�������"�8����:��cv ,eS�^�x���g�O�dY�3A윈̬�޷�xX	���!H����l��md�t�L�Hm2�l$3�d2�~�~J&�i��g�[ꖺ[�i6I$��<�;޾ܥ�̌���,���UYu�7p_UeFx�{D��s�s�CE�~
�(�¹p��N���*�PN���i�TNS Z�>ɇ'��w��,c�%�.o@H���0p�0
���(�ڂ�
Y��Lq C}��� ����a�ۮ��V�-킧� �3�wX^o��E�G��^��=V�}z�ŗ%mlks��^���ߣ�y�}�Y�^|�
�?�+@WIJݬz��Z��SO���%E�q˟��νw��˲}��g���Տ=bE����ݧ�����T�i�xq��-ά@�d�Ŵ	!���a�l,��O4�hW���^,�Z�f�$h���Q��ff4��h�k4J)�8m>����i��T�����hܚ�eO�z��k�&�Z��Fj�x��(Lh��Q��%�b���
Ak������f�(���Z�z�ZTr��i�*��c�>��X��K:2�G�D@�%
�>8-�4ͭ�H<5TjQ��7ݲ��w��K(�����Un��y�o':�����xе+/���4#
Jy|�'xYGe~2F=��<�SA��pQ
��^P��O65�r4�u��l��~X7zwd�^��ӚM�CdѺ<K��ǚ�W���Y=ߚ�iF$��.�-8�"�9�3|\�j������3t�K���?�Np+��o�9�e���_�����������,�3�����흮��9?�}=�u��N�D(���6Z8�?=P�#��%ݶj㳐n���h�w���	�Lkc83�
:����s���L�Eԏ��i�T��b�$��@(�~�/Be��.}ha�4r>|���B�4.���3������k,+ijP4�E��ڊ��F�8�M�拀��¡�Xˣp������S����.�T���&1�35��?��q"4�>�O�w*�����S�hY�DPZ+/_�(�<y$���µPt%�Ϛ����uB��+���gu��H:�3 �L���q��*͸:e�c��Ai�2�2��S��2DI����u��~{���*�r���^�$e��f��f�� K��3�}��{h���w$��=w]�W>�<�UA�5ȝ+�G`5<��‹Wh���������m��Rq.%k��2���m�8-�Y��N�lܖeP�,k���Y��j/[��F9HVB����%��,�H���Pp��x���(�	{{���������~��L�0�ܒ�ؑ��`@�f���}%IUM�-�,��)��!�"�(hƕ�K�DW����T%��,�YHgE�m��ȢI�o2�w(5��G���3�Z���f�j�(�(��4;Q)�B�<W䀈��'�T4������>�|���Iγ�j��>���~�j4:v5Ҋ�`�H�[�0Ǧ5V���OP���!��}1"f�j$u]k���h,�
���}������� �r��A92�(g!]��쮱�A�T��A9+1���F�>e�R�O�J�
!e5��$�Y��F2@��Cc��N�0�D�-�foĤ�s��=�T�Aį�:�VAA)�Ȩ�6�m;��j�
��+��K���c�T��fRCD6mlo(`c}���VF��R��;�%l4�x-��@*�
�L2[L}�L����N��9��O�iZ��enum���J�x��Jw�}GT\�q�P�"�pa�NH5A�>�: �'�-;fh��~�T�;>�a!W��x��2Z2�W�|!Q`��V��[���$Օ?˅���!�.��`5@B11\�r�	�x�,��"-֙N}��se]+����� ��\�ٍ��)��U��+׮ӳ/�$�g�������7� w�|�{�У? ��O|�����Y	�W��ڜ(�ӛ_��S+��5>���׮iې6Q������F6�Œ�N�a���k��l�U'�Я��[q|J�/p^nL�fH#uG4��h�b��`X%�TM���F<��  �)�#K
��T`K#$����"�C�[Qk�����#���c��H��P�F�8(2HfR̕fK�?52u�<�%���[q�Z2D�R�#��{z,�מCY�Q��1
��<+��
f��m[k�a:(���k��HvS��%��O�Ы�I7f��X�s�arڦ�yF��@=9�v�*�%�;����X/�>'�6�Ǖ.&K;��BPCdl�"R�0�w�}�RI�c-68��5�
�k���s9s�'7�!8��;�h8�=�l�f��m�66����$�iʩ��<��������A�t����쫭�JI�
�;[0�G��eS&�9���8�CuK͡�v|к�l,3�Ϭ��0��;J�~`�[_
��� ��J'��q�������%�Szhu=�vd$��tv �Jk�E��[��
dzlo+���}�\o'��z�5�uTYp��������N_��R����Q���Lr�<����,
�HE���v,+PA�|��8Y�IF	s00��Kr�Mg�vJ�.�V��2���?��B�d%`��R��^Ɓ,�H�0�G�h�a%C��M��A�?�t�
Ꝛ�����p��I�*�;�)�ȁ������l]`r�Q��O�� ���&/��;��#�}�_�w8(Q���_��JE/]�.��׼b*��-���{����ں�4�A.�p����Һ�?���{��^&�lȮ�g����{�V��H
4t3�TH�E�A�����pj�,[�%����̕A#��G)�r��{�o/��΅QU�������yS�����?�Be�&�j�
�4ê���2w#��͹��J6��X�M�󱶂g��!�VQI E�8�F,��A�h���"�����s�I>k�^I.��̢7�Fɔvvw�]�K�#��O��8��ϖ�l��~��Q��"tp��h��[@���ow�:�D܌>��؉�+\�[�R��3�ヹ��Y�	e��SAE��A�i*.�>�/C��n$���j%� ���;��@{S����<�]��1�"�c-B�*�"M��;{9�k�~����(9�M	7��j9���y�S~iֳ�n4�c�AV�Y�ȃ\\)��AK8���L��|>�5*�F�R�mH�%V���[N�v�0B�����)h�f�j�~`����Bl�*�
��fHǤm���+��x6|
	���m�{����Z�(<���}
�lR`�fn�667R1uGR}V7�BHE�00g��=���B�
:,Pd�4K�b��—}驎6�3+q�~J֚
��+T�}�fg�LLl�3$$,!.N��(K�:sѱ<d&�]˱�Ċ�ؽL~|�k�p9{*	�,��,E�F�����ݔ�9��(8�Q�qR�d��yEV�^���;K���)0��Ć�ټ���?{�w^6�
.:�hCvj��CVd��%w`f��DƵF}�L���Vۨ�x/.x��s�PaQ���C/^�*���K�Bk4w�\�j|���S�w��G��Njt�]��r|.�|�{�^���]��{��r�N[��Q�%Ἤ�\��{i������h|�u��s��c)L��e�k;�F���+�����=�����u)�49�E�5�6g:�b�#���;�BhoĴ��W	#ԁfI����8�Ht�Be�^�-�C�"�z���;��2s����*'6����G�g��q��ށ8j5m�p���߉y�%eP3A�2��I�@�D� ��j��^	���fs����N��	/�~F@_�/��Rz�?�Z{������Ә����#��N.о���ٽ~]��)���,�hl�S�z�ӎ��b]��U�yX�Q�Zն�d]�%����D��5��!���!F���D�
o=��Rn��{'��=��\l�c���+�ܯN�L������0Ջ�?�9�r��[��.\�d�R���y+Cu.�0I�9tq��it٨��h6����%���{B�ڟV�|f�����B�׌�iUQe�@@��O(@6	i
�j<�Z���ۍ�71[�������6fs�W�Tܗ.]�|n�甑�V�]�+\Y��ZV�x�-xT}��A�A���Fgg��0�ŋ���M:@ԙ�OEV}0Z+�5RH���V�$��Ei�&�A3���Gp`C�O[�����aXݎ`�c`��"r/|N�:���u����>}�f����g#�?f����~y����I��b?1��_�<y8F�<����!)�Tp�
HrĨ��:X���9'O/��@Ǫ��p�Yasȋ��V��X-}5��*z���A.��}��|�}�[ߕ���8`�A$�_�J�%Ƿ��4���Y؟{�%����~�ȃ��]��i��[^�����O=MW���8`�+�6�>>+����|�+�rK~�o��&h�X�A{�!:
A6���y�A�D�Uق��0P@@ױ�
(U0���T�����(i��K�pH�Rj-�@�V��d$}S�NM]E�ctcskEwh�~�Z`,�lCkCAu�P�0^dZ����h�]���Fb�D$(J�}2��̈́7t$�Xdcj���PTYRo=P��E�Lf�l�I�ס�̡d��,mW(X��M���s�1v,U��V�-��]��=U#"���`�,eK��1��@��׵R��'�x��^	�y�
|[J7G�i'�4"�m��?�ߥkׯEY2f)t>'��B[�*mِ���.�=#��?��n4&YX��=������!S�Nh7�����)QPb��
BV�`!]��wi�!�|��w�<��N�|��z��to�:�u�ק�5���sz����+�-������֟�~�ܢ���}�-�J8�'�|��p�d�~��Y����t������U���'�q���u��x�)�h�	>�+��]g�x��7��r���q��Z�SkTXȦP���@�[���)������m��5b�u����-�C��8	���W��$��:�[ۛb�7��(�Y��X������b�;��;܆q`į�ec������× �*�H-Ys�(5�~��1o�)�DA'�I�Ȝ�h�bQ���RV��];��a�z�lIT�w)1�f�낤��P��$E�{սo�9���7���x9�Q��	��H0t��;h��8Ó],x>����9s�!T0S9����6^.dS�_����p������y�(��ϑ�
XҌ�deXH����+Z�p�ʳK�Mx����&��'��[�2�X;������Ƈ�0�1��p�� _67'�W<L/_�noA�my�P��s�������}�]�5��ݱF�r��PZ�{>ER|F��7h+>'o|��~lDG;��~��l������d���e����h�d�YZ��5��H�8-�B��`��#��F�X��F�
Z(I�$��m�E��@
߬m PW��x�c8M777
P	-"i�$j��c��l��(�^��U�xP7`��7Vdݕ#���Օ�� k�!d��Vu�066�I�ʝi#4U
��5�l��f| "u=�%�d\R�,*Bٳ�eP��b�@׃���"8D�#��G���:
��22�/�3���
E��an����JV+LJr��OY5�QX8;�!�⾻s��^y�fS]*̈́�ÀWmG�R_Iz;��qyх>�`4z��!�\��M\g��4���d�BT��}5.z
UV��u�d\QU\�td⬰/���~_��Z���w�Oe�(��k� *ɭ`�p�A9Y���19�X�A]XI^�[,�	<�N�DV�xAԯǢ_�Y}P�`�R�j�j@�36h]O:����
�����la���PYM@��3���O�/�ڡ�Z<�Z��w4ڔ����a��m���i�����ۓ������9q�eJ��F�`��r���vw���Svwwx��`_!p3H�'V���H��|7OA���1��̻�@��Lw�gÜ�!7�;��9��NU��PT�D�)��H�RzU�є�A�?��}n�(�a9p�B�g�d��]���^�`� s��,�֭?Ϋ��~P꟞.��{
�T^ΆɊ��(U�qd�M�4	��N$h%p.�R�]��P�9�
Ĉh�r��A/�A�9zE
ʅ����;)�2�m#x(����
� ��?�(�A�<�&��/=+�x���q��?{u��J����.�ym
��Q
��R�I����բ'|M��v�us�$�<H&�mJ���^S�d��5J�I�����\�Aƥ��.MM)�ʣ1��n&i����帲=J�I)m5�D����Z��q-)�\[@���F�Kz�a��j�;	 ����s��C9��)�l�H���œh�t(lP������V1�Z��	��a�=>�##��A�@��՟�u�=�qD �^���s�z�
Z�?��u�

���/]��A�C����%e
�����(��ا�B�{������^��O{�#�Ȋ ��2D`xT���Ҿ��z����a������K�1�y�����0#���|�!w�,N�:97���a
��Yɲ�1� T�2�:��'�$�(Y[��:�[)&>I��Wl�=?or�lg�H�O�vVzn�H$0v9|��l��$��?C#YȠ��f�C?�0M"�qI�[����NcsP��\Ǖ`�Kh�gr�<��v*��SI�J�~��rWЦ������QY�Q�ݤ��,$v�e)��ǟ�r��R_�qv7��TT�?O��Κ���Px12�� ��j��)f6i��
��G�wx�I(�Ts���a}� :�bp6S��;�)���C*I����xPQ�y����QLN9��2�-��w�òD:/��He/
[��|��<Q�,3�J@��Ө���8x��nW�y����g�|��AV��@V*���sZ�%BB���fi�=4*�I�%�#���etSr�-�؈�`�.�ʷ����J�Z6o(��Ay0�py]Y-�J��愦���̑��(Pv�h9��=꣪�a	8i�h)��J'դ��R�|�TX��!arI�-�V��؟V1��bu�V��ء���0�pe-(r��e��N�`|#X���EKi�*(F��1i�:�6tڏk8��<��{#{fϹ��"/��{�1hy]=2(�����/EcO����cD"�-����=����}&\�,?�x"�ls-Z�y㿱�sJ��)��K&�T� Pe��Ni�X2AF�Hf�d�ifHfq�_m?yK8dxGɹ�$ڴ�q���1��Y{������A�>�t�k�7ד�6?�o���F��UZ��z'
�� B�*��ȅ:o��I�uf||�P��‡��>V�)`�F����k�QZV���5�[?�YM��S�+nA��d�4T`l@�h�R��s@E�}�dx���<J>�zj뼎>t������V�	��rx�T�'�d
��m͌BܳN`��Nah���h��`$Y&��V�Dy�>��rBE����'�jq�x
�r�2+|RH�����~vn<'*�diNCQkB?�9B�s�w��S���6a�G�(�R�SA����66�P����)����@Hj��AX�)硽f_ϻ����%��2�0��e.o��$T����yH�k��
\�w���<���.����Aed�AΏ����
mT�m�����V��f��V�\�qM� w�Z�P�u-
�*Ph�}��2Ǿ�f�����Ldc��ڤ��M�VS��\�?A�jU~�44�Aj��Y#�	�B���T\�ؗ�[��(3+�.\�PD�Fz���J��B7���T"X2)�Yp�C���*�A�ש�\i��R��9�y��e%S�t\�کj8d7H�&m�7d�MT�*W"k�����>g�e�k��s��q�#��՟k.�a��C����P+|�׮^��׮�\����+`��a/��i٩e=�����g˿�zm�<��c},�~�X�g��!l"� ��C͞8���)�N^D}
�׀j�k`ŝ�$�T�Ǻ�+NX���|Ǝ#y�kK�U�,Yg���l�=ྻ僚����eU�E�o!����O!�� X�v������iW�������k}t���Oi�|�o.������	7�R­��ӹ�iu�����_��q�ǭ���]s��P��MMNK���T+�3$�\��;�#���?�:�f��E��X�x+�S�48=�O����Ur�`~��6K2�QS�k��7�&`�˸J��Mg��P����H�[M�ex e��}�X!�Dc�A^�g��7����xT�d�T�?�l�#��p�p'��s�g�����r6
NN�B��<~+���K�+�@[��:I!Pv�'��x��t��)g�!u��سu��Pܔ�`N���@��y��`�c�5�³��B�M�(��/,���|�-mDsP*9�b<�\&�k
�ſ}�9꾫)d����cV@�*��e
T�G&)5B��M�t��M��>���t3ew�N��� 7O^z�%�A�6)�.Ѿ��q9���ш%�C\�U���T̖����V|V��^�(�cT6�F��PZ� ��;sqt-�.�X��Հ�P�����
ϸDv�E�k��,	85�)\��0����Z��Pe��L�c�4W��ah&SR�J��xT��ky���@qєY`C��r�Z[ܩjM��\��X�6>OD����Ώ]/�V",��MZ�@~��&���X�E�k�0�N?�d�����{v�kMXn?eÚ��N�����E��e�V�z>c���FCZq
�i�q��<�0|�P`E[=s�1ŷP�+~�8#�'�}[�8�3M�q��w|u������n"Fj�H}�Z[�j���ݺ��O+�wT'�|����h����ӽ�/_�zq����YU�8��-���s7]�٥^�BW"�ީ{���l[����Uʐ��O���)�洎����7S���:�-�_K��)˪�d�����C5BA�{{�
^H��9�q-��I&��6�-�Ի�a>�k�U0	�����jK��hP�k�V�&T�M+6��14H?���u��zS��]kuT!��62>���~��Wؐ��*elT`�TV2gmH	`1�ork�6'�2NxPM#��\d�p
�ԎZ�چnj��|�3[*����wΨ��_>If
�g��Þ��=$�/SQ�((��H�e�ڔ�������Em���e
�t|*hR�/�!<�
8'�ܸxh2��^�f`�<�VYZ�nȌ��UG�öx�d�v稸>W-���8�5G��4��5�s�N�;Y鼘"��o�L�4�œ��/�=�\�B�l䬻�9�r�q�����j��Xj��V�
�Q��˒�0ژ�("�<����ˀ�����Lm�Y���(7�H�����dCnMc�޺$�|>��lD.�h�eQk���Z��E��O穎��� �6��z��9q�ҨOO͑U��@�I�&J�%����Q�\ �\2C�V
�W)eWt[m)`�11��e��d�ߡ�P� ~.�J WcBr�f0P���:l?�_x��o�}t�)%��;x�z\�v��w��
Ya�����WB�Qy�C�����$�o9��(��(�?�'��X�������*+���8~�۫�f���X(�Ruf�B��nuȶ?c!��[>���^V� �Q�|���ݗ.� �-�/<֞{"��,"N�x�� �2șʠ�\`�y����8^��cћ[�����RJ�,��Cb��3G�[Р�!
�f�#�q� �ƺ/�f]��,xK�c�v���7�P]�'��Cg���y_��J|0�@a	r-�BWe�'s$�w|���e��@5z4h��l�6e��Z�r�L|-�1�U�,�uCf�HQ��B�Ň�k<y�Y�J�c���4�%_�z��A	������9ҬO>
�#q��Ky;�n��k�{�h�
��z�#y`���a�<�Fݹ�VA \0t�T��FHs��@�>	WY��ӧ��s\tLCF,iXB���jJ�Yj��
�w��/X`.G��f����x���M�F���
�K͔(�d]��p�)}��m��Z�a��N;;{���EM�FqE}��@дiO@�B�j݋<��GZ���=����M�"ţ���Z\���F�T�V�A�N����$��GFTy��)6��!���ː�ƒ(
Dy#Sc0Dj�8�8A}�6Lj@i�}�ߋc(�`4:e�(�X۰�w$uF2&(& 
W%�AJlK{��Z��N�(����s5�x�����Az$��S���N�2(���y\��4�������Y3ҿ<߸гC���21iO�n֦��;:v��~u�cWQ=�Q,1�����B����
�9�ۥ������!�!�`�8�9R`��_2}S�\���[��r��|,/oo�k}T�փr���:@G{�#�s��իK����Fr�Ԡ�
2ȝ-�0>�E'�ˊ��lhˆ7���>�Z��- ��SeQ�l���`M'B�$�E��I-?�
�'���ezH�E��Kw`"��[A�X愸�_9
�쐠���цB�	���ROU�������ZƆ���P:m(�<�œ�2��,��'�n_�nO�T�Z��m�@��(���
ӫ�D$@��);׋�
9@;��_{QY�x2gY
9�%p�_)c��BΕ5����R�Ȝ[~�}"�j��9�8ȣ�8�i�/�<���ظ
�	i�r�S"�2�W��?N�B-\-T#	����oLpZ-"OF��T��
mϚ�B.�Z��ԗN3� �r���i�29P0�2Z*���bۭ�#�c��	���QNi��>��y���Hd����@)���r��'ɖ�1�����(
�J*l�s��G����
�8�o�����}��.�$��>�Z�z+�NT�[di��X�2ڹ̏+$P
<ۣ� Ȍ��eebN�<�,|�MO��T["U��T >Xt�d�Dŧ��y*tcM.4�=/����PXo��c�\JL�f]ˮ�޽�ׯi��ޞ��c���#����X�����\�B���.�&=�5�H��nu�Wђ Q[�S������w�ˆ�B��N��W튑�w_�C���S�긢��~g���ji:�7�W>��~����>�s�>���uj7�S����� �2� '�`ų��:8�.��ĖA�F\i�k����7X!�W�v�5
eV��gJ��T�����fih�g\DU�������������fp�������
�P�0bX]	����}W-�3K���U��S�yk~nZ&�;���ܘ"�R��^�?�Q����n*cĸ�U[�˒Bjak��`�������`J����2Hb��sS�A2!�̎��T<�1x�exI�tq��t�}�L�:�]~Ō(H�F�l��``�DH�2�����X�yuҋc���c�-�g��c���=q��H(J�����8�a�d�W��#�dw��;� ��rq�D6�ֲ=��u�g��(:�J�cd�#�q��)�D6�ʸ$
,	�|�򹦲j-
@�q��Q[�.U4�Y8ـ�$	��H�Re�Sɲ@�25��KǃM_�ԵEO�
��*p�z�!J��5>�`!C�ig�ۨa�Hsd��o����-Y ���VZ+D�C�q��F������B�;�i�uY��]�v�v����(�����f�
���;�����1Rq�}�Z�(��,����7$���#�q�*�s��ך�4Ѳ�97R^&����dTд%͑
��5�^͉��m�R�,��<J��/��gUm}ֆ�+@7�Ym�5�d,tv(2()�\�V|f;�}9���'���\�Ռ5�w��"��	�ԛ9R��aOD�~C‹�Ϳ{�]�a�&������oʹ�f>|�}R�OP�u.��		���
s>p�=�c_�zU�y~9���ǣ͗�]�g��V|�_�v]�[�G���������=���S8�����^��ln��n��i$Y�S�r}�7[L��!�����Ɓ�{{sâ�<3��.x//��`���/�u3���9E���}w�E�����-6�xy{[t>.�oY�m�q���G��9q�u�>��������5���h�۫�浝��eߠ�Iߴ���z>��۳u��z����w:�r���F�˳SC�Ԅ;?�v���=����!#=�ϻ��1!a�O.��ZW>CY��v��rX�q^��*e�T级���w�uN��-S�R�s���}��L,N������'�oo�u���P�#D�Z���=P�~���~^K�*��$��C
��&r�qA?M	����u\���8�d����o8� �R�Ck��U^�k���=�����6���sD}j�h���
i,���c')@�J�cL��a�>rZ�eh�L�!A��`�g'?����im��u�)S4<�#[sJM��5ϰp���@R�C(�o�A��ǑKG��N�%M�����1D�'�Ȝa�	�I3I��ۖ�w|�����*xn��-�dZ�J�E�J~�"d�
~�XP�2S��P�r	]���Fr͑�o��E9��r7��75x	q6�h�A95�k+xe��>q���F:�ؔM�F8�$i�̨��FE]����d�Y[�[�,��"��G:D��PG�S@I�G�V�D#���Qӈ�v� �D�J��FA
q�����۴m�uq���^$�D�Xȋ��U�h>�`Y'
�P*����g�`����s��b�G�K���X�Ⱥ���w.�^���> �Q0D�^�v�}���9So�����Ŕ]�/��Y��FU�iDz>�P�A�Y�ZҬ����‚a��j��t�p��
5O?JD�������ee0Ɨ=!�,�iYG�1��0DԱ�TY��H������vⱣ\@]h�&��Օz[�.���j�;,�KϹg%a��O"|�un�������̛_�Z����)���)O�_~�s��OZ����� �{�L)T�������S�6���O8��ѻ�v���a�����/=�
���H��� �����}k�/>�)��g�V~���@���_�k���cO�����+�&�F�=�sO|���#�w�?{��{~�?��f��?���Ї>�)�y�����z��`�����E��W�,�/��oP�r�w�y���?��t>��ۿE��+��_�Ϟ{�%�ӏ~���/�2};��߿����C��;�C�����z�#������{�[�pο�c���=F�}�Yic������������s���o���'����/���[�J�{�yJ���?�����z;�_�}���O
P����,��>�	z��7c��nɺ{6��?��؟��=�x��/�}��ߖk`����!��w�C}r��mڈk8@���"�i�t�r�g��_^�刦���(�?oYRlo�t':c	Z��U-l8M��<�����챜eP�!{�I�c�
A��	�#-N�y5�S;��AХ���RN,iC	�X����o�4萴�y��So��b�����{�K������f��PO��������[��a��\�듊��Q��+0R[F9�V��Ω��
'�.�<	��OetB3OǚK(��z��B�<��j�ct��5*��;�:b{e)�e_��G!��1l&tؗ�#G�L�W�jC(	�:֫�̨��q��!�S���=O�v9V�c�
#֙���(�X�z��
z)W\؀��1g��&�u���H������	�.kyhZ�?2�o2��<C'܎�ۍ��/�H��O�����/�+}����_������w��O� �r:R9��^3
�R�&:�E$E���=!���RJFm�
�l�h�
������"8*��%g>���
�\6{/P���D64�|J�V�e�SՆXH4DeōA�Sy�����m��G�ۙ(�
�Ҁ����0��Fӹd�h��Fq�hlwc����Ӛ�G�f*��jS�3
�x4��s����U�y�[�f]^�>t{�1
-SR�����gxv�/u>����a�@����Ȍ���������[<��?�M��t�����S�K�v?��Y'�) V���#?�o*"@�L3C�:��{=��qo2��!���)�g�w��2(�_��o��P;�f��ʵ(}v�E>ף����~׏��x�
����O��6z���>���"��ٟ�3/�����������?�Ԋ&؇?��/D��'��' ��;}��=������Ї�Is�_��K�3'�Xxë^E��Ⱦe;`���/��
��?M�����]zw�b?��o��"��K?���'���^~9���׼�~�-o� ��8��{��	0��F�~(����^�?0g@������g��>
���W���oGP��#��Hx�>��5��~�g�����@�w�����#}��/������>�c��]���u������/}�[���d�Ȝ�9��7�����o��]��N>K��>�����?}?͢>�����C�*�2Ͻ�r[~?�
��0�+I� g 7�/�2�� I�(�#;��??��i�݌���^�:��u)���,�;�C��(��NNU˥�OE���m=]Y(���ɷNj##Xp3��n��%��h{�hc��a�hJ eP�	g{н��XsvfK�"�G4,�w��λ��Od�_�{/����g<w���Pm56|w]�i��Bw�1#���1�����jevjm��⋰z!r_���h���S[���k`'�I|ߚm�4W�a�{�8N��]�<r?��b�̈�����Q�N9e5p��t�f*o��).Y�Aj(	�H�H��r_(e�(�a��&��VGt|lچdX��Cq��S��D��
"�>)����wiq�,��rK�PA�tK
��ʃ��Z����ǿ$)�%��w@����կz���l׮�Х���9ȱċ�c囌���jL���%+�g3��h
8���M^�t�\D]i����q�>�|͸���S(��j5�Y(���²�慠ȣpM8�,H
.h+���:�+���53w+�$�@	+%�-����9�ڶ#�p�Թ0��Ja�����)�0�!@M-�RD�l��X
Iۭ�ފGwT��uiQ6)
/�C��k!G�Y�I��޳��]_)>�Mk��H�a\���;��ݝ�_-(��|	���j},��.h����#eu���y�˟����ퟻ2��k�Z�5�nOB��t�8x�2�ŝ�8[k���,�����F]	� EԱv +�`oW���;"�wV3�-�}���>�����뼺�m�4����ŕ
ˬ�8�ß��"0	bgo�M�����C��+���gxo_��#���
N��@�_|����?�CB�t��6�՟}V~����Tk���^��C��<y8^�dN�������r���zP��E��_�j��
�"�O=M���WDO����h+^�y^�m��1{�,\��w	���u�>A��=�$��_���w���,�����q<-����S��{��PCc���'0@_����Ԩ������#q^�G47�����^�}�_��8~������n��7�G���𜷟/�9&�b��y_E.���uڮ��!�S����U��_u�+ޜ~����/�&6r��w���,�QP��*eL{Ļ�L��ʆPăK?��-��?���� ���c��Ug�ɓN�ר�+%��2��a`���I�'�$�[Fխ�m��0�0{��������do��X,`�k��Ԁ2�el�cz}��1�>��T۫͏�m�<���t�۟q�t�lmg���6Rg���6{���+��:!Nj)ݟ�7�J}���&B=:[�&N��I��P¾'��_(	v}�*!�������kw�0�z���__�
Ozбh���S�8�B���1���,^��%!g��N�-�a�Ps:�O堻�G	�(	���2��Z�J
�&]��Ij���wv�em9T�����e���j�l�)꒷��%�h"���p�5VPy�AJ��ߠ��˿���_��}�9�`�E�ލ0�5��sqP�1�]�᜞��5l���8�[�6J
%�ūy�:��Y��0
��R������n�U�5ZPx3�[�H�t��EG�^s/��J�+=�P�DECRXk�I��%^�DS,+ۯ*Qj�%�P�k�J
�A�!���!e���q���3��\��?׾��)ZQ1H�ET�Fs�8>ke���&H�n�S,s�g�7W�E��H�E�F��cK��z��=Ԁv�A:R؇��9G��茼z�
�E�n%��4#?����=lڥC�$W6m?tZ�~撡���x�ǧ`44Y029��PX1���Wɪ`Z)5�dhss"�+�<d�L�):�ߍ�ʞ�!q�K��-����2���<��3�]��j	�A����̋/��p��5h�P��<(q��6��ϼ����Ao|ի�'~�͒�z��7F��ǿ@��;m��ӏ��-�~�=���o|�{��z���¾�/����8��~@�1Pb!S����&�v- ���o{k��=�ݓ�<+`�����}�~���E���h��OZ23JA���^MuÄB"'��u9 �������
�����#�tO���w���
�?�I�䗾$��?�����������# ��
X�9���w�������}�|��ߠ���_�I�G�\��j��|�[�@A0�/�[���ͧ�JDj^�ފ�p/9/���3�߳��W=�0�����D�����>@��?n�,,��2� ��
,����,�0���7&�3VY�D	�T�� ��aa���@m��Z"��k+E����tPQK$�'����6�,���љ@9݊B���fZ�ssK�x��9u=�?Ԙ ����:k���V�ڠ^GE�A}:@��B���#E��dh��P�
�Ĭ�O'����Q�)TR�P|0��Tʲ�Sٽ��'.A�.�3�k�?\M��<���P��I�(:ץ�aH�E�@`U���P��O� �E���`Sx@�?:��G�4��=yS0�#���d�e�*��Q�J��PNINQp�G��3l�7���Jh��	��Jq�=W>/�b�?6�tm���0��Q�H	�e��`�����u"��h��/��~���?��G^3�l����"� ����S��v�hM��!��$/SGA����̟��H��J+�Jd�#U�MU44m%#Q"����;�E��z-��Z��ڏ�Dl�@_�R�C��t'��*JUd�HM]�5]4Xq4U�<�ʉ��RB��M��d�4V��Z9�!�c�[q��:$(�gM��i�(BR|�eG��,*f<���{L�i���z<�#T�I���C�~"9���8�e��_h+���
މ���v�*����G��DR�k;�S�)��(��8���CX>.dżWB�8yzG Z�9�j�}M��ҙ�ɺF
���fR�)�w��\�Ejp{1N�y��*k����k��!q}�F��hGh�� ��8�ԊyŻ�hU�.V�!������3��{/��{~���7������K/ӿ��?������_�z>���K�'<��o�s`����
�~}������vv�O?�1z:�\R�/>�pƿ�u���?�������D��d�Ht��������LϽ��}��'�_��$��O��I&(�^��)������I�L�e��O|�K�|E~/�J���~���o5��ūW��o}��h7�Sw]�L�|�!�����*g���$�O^���&��R~�9��:YG�A�?����,���$I�ʉ>��/ӛ^�jz׏��d�@��=�y��S���/��}���w)�~�~�+=�V�r�NS���7���b<�g%�3{3�{���Ϋ�#l��̎
�ں�r�bvFr#M��I�ώ�k{��ǎu�va����
-3��d �2;39�ъM��|&5CX3���z-���A�Ğ��K�e݆Y�|B��AF,r�N��%ˡR�kѺ9�>I�����d*� 	�nL@�Cdt�Ҏ�|$Ju%����A��<�`IwhDB
��jtS�7�k�Z��,�v�.�v�Dg�H[��d<e��t��^;��Y��Z�V��*`�P�J�N;Ѐ��.�е�wJI�� �TV�c���G
��㐉?…�2H
��/j�+���rp�ͷ�_	��k�i���c�h��[w�>���	D_�k�Fִ��g�ࢷZ��
V{��+�wY��PNe'=��s$�"4ơ��t|�Ѵ&%dC7�A�Ns3��@;hh+E�/}�	����.}���_��F�l�;S^z�l (UU����%��u��ףS�����AT�Ex�$6xl���%V-I�4�2�ǓE4�9״K)\A�$��;
`@ـ�����
E��t ����!8��Η��,���P��(����,�����3�٤�{��(���J�(Q��Ɖ��R����j�E0�C�K��עT�� �d�˭�
��\@ᨓ�xƴ礱�̩Su".fZ�CN�m2�
4���ʔ8�)z(�X*Ϫi�BZ�E�����K�/@��!�����[s�G!�$�r=�ݝ�t-:F�{�̃�I(��Z���.���'�,R*��s�d����
Iy�O�ԐsS6>3��R�giX��)�Ý9�f��TRM��YlX'�AZ�P�M�# r�]����#&���!�M�e�s�N��;Lt�V����,^k�3�H��_�Uz)��7������~�~��?F��Ѐs�����7���dh��ۿ]ʴ���v^�vM��(��x>,�{V	��?��y�a��s��c>D��|��{���z�ԗ�,������|�s����|�넾�����W~%�5�0����sz������AԷx�_�+E]�o=�4��W����ؿ�=���Zeq���WJ����ͯ}-����Y�W�}���8�W=��d�@�8:�~�S�Ƶ�x{N��~�ifczi��~_*}��uW��~=~�Z,��7~��tI�$���u�=&Y,X���Zj�����A��}��GX�=?+@�AY-�B�C�%���J�q?3J�����u��l�L�)!\	�W5F
|t
,��p&��	��¿�L��ad�hp �����/
�f�ψ@Ɔ�i������zl}l�ޅP�Z��d�P��}��T��흍]��{��B����@���Y@�m*�OJ����������g�`��c��7��X�i�0OJeܶ^�D�_�=�.Z?����QQ�У��W�+�BC�.w'��}��)eڋ��Þ���-��^H��d��$x�hE]O\�c�\p�Q�:LO�u�ׁS�!����⸆�c�=�j�N�!zi����m�x��ݓ�����*}�P� ��t��8}�>�v��R�'c;ss�N�58�V�GC��‹�ݽ=�N?!��d�����}�s�������9���3��<}���_�׽�U�N���̶�����8��=S�r�
Q�i��ͥm�8wk�D|�������&��A�&��\����hJ����#�Vh��,�먲A��$�4��<8Ք']Bd���lL�6���0 0��$�A�i���;���(�f��Q����i+JJ�H�	`�`q�.�V�ΡV����8�?�)���X�J��Z5�D�<��
�a(�sUv<�F�ζJ�m��r�˪���4:�ҵ�Wh7����[1��R#H������{>�B�;�T��#9t�L�qqv���s8��)d�/f�'���c�:t�,�4_]?e�E0d"k��R!�)�#�
`H%�m#��ZH}�!�����:�,���GG��I�]�\9���qO�"�?)�����~���?���������o�;�g��������R)��g��k����w'��/|��R�TT����RV������7��>��������Їc�����^O_�ַ$+�w��K����m��/��q�C>�������ߐ�di|𓟦'#���u�W�4��A��o�ܻ�[�gЗ����B��������Rk���m��s_�Zj�o{[�#b��X}��?���\~��A��*?��C��鵯 �`����v���w�#�+���wڍ�x}���/���Y��Ȑy�����o�9�K�tg������_v}S"�d�et�A.���ǵԍ�~�2 !�B���eU�;�;���ԥ����Ɇ�'��XE��¬?+���dth�,��>�:�)Ã���߅����5,��A6J!������x.k�;X,&#	>%���;�S��Bڛ��[c�`R&��\2�����:��dq���jz(%X%ח,|�,�X�!�|����8�Q%��M��ߗ	(�/e�����#�:W
�]��[���'Ņ�n��mQp���	�L����C�6�_}���m���6�!����S���Y}�@�gĹ9��'קs�ʹ��;��2����A��vV7_�d�[�1~�P`C�݀��I��'��,�K�bm�s����gl ��M71q}��DE��:���.Hvd�e�%A��_������>���lP��P�F4�?��iow��ַ�@�#ܰ��SK�����h<?�Ѓt��6
�"�v�x��*�=�l*?&�	���L�O$�!(���F2%42�*5��Ң\R��Y�RI.6�H�2�ϦsO@K5����6q]��/���0��i3�%�}�Q��($�Қ��`<;�ْ�$��/R$���
�'�B��+`�kW-_�Re
J��F�ڔ�1�j�IIQ��P�2PH#@<:
HA*�J�&Q�
�HkT)�C��{-����B��-򜲦T����՗���ގR���Ռ�Uq�7��^��v%���K�о�ε�@(������w/�s�%I�@�����F���X�A���wٔf#�V�j�6e}2�,>���q>���߭�&k�`�X����y8i�	)o���6��׻s ����>{�'��%qޗg8�������}�'�j@����珼6�]����������1���|�嗣���fzE���>(�Q����'����"��Jt(`|�)��^�K
���7
�/���ߣ7��tic�>�/JVƾ�����p��ʱ��}����Hmb���>��O�s/�$m!�����;����>(��7#��?��o��p��O�׾���9����X�ǣ�:��|��o~��_�����
�B���-=A��^|A�A����{�X
�C����w-+��^�PЀ����9]��E6� �܎��n�C�6�������q?������eLN�%�X�[�y˚O8���yV��nh�ju�k��L|
��d�Rr�Uv�m	u�!�Z��x&�_Si�C�P ��WjC+t�:��%��?5�в)���| �*��g�	�,������:*�o(�03Pm��>��Ah5;F�	��"��:V�	h	���]��=�3_ۼ���P�7B�[����|
���S�;��)xAdE)D *��2<��k��k���ހJ�O.��7�;�{5$��SN�
/��峮�{*��S()
R�������SQ���� ��t\1�>�U�(�(O�ͳ9��+A��wN�� ��U
`(��f����`�]dY��O��&\��H;�ޫ#��V�ۤ�G�+����˻��Eoz�ҧ0��<�؝)����ʕk��U��7�I�z�+��#+v�y����ntp�����)�dg����(��ߋNQ��B:%����/��f���"QY�A����W��҂�b���m
͕���w�t�U�`�$�5�,�$ c�U�3�A��+�T!:K.����4Z(�Ή"�5����dA�::k�L������Q��5:�2���F�EF�PY6"��!��?���6�G�	ʗ�.A�.��ZFK�X	�O^D�ɊM��G&��q��PpU�=B�15��D�@�lk��E��i�N�\w�gd�uw��p����CuZ\�+�V�ѩ��s�f�iExc\Y𧺕Aw	X2�8�&iD-�;ƅ�ttAW�BH���6䄐�g�?���8q��(	�oF�qB���V�C/�.w�)ݛz������s��#B����]��yא�Ʀ��:I�g��t	$-u������W��:�*%��W>����˗w_��^xQ�Q�{�u�����B�3��grk}�	
����g?������|5}wugWj�%">�e�F�[�8��
EBW��K/��T|��_Ic�G}�[Pv������:c?�x�w�\���'��%��>�N�Z:��d�6����W��l�n�&K׺��h��em]�nLx�՗�%=�n�[{��v��k���_K�����r��P<<��].��S�N�]��sj��i& �	6&�o�v�:�gR�S��m
�k}de�ōB�zl�����r
��'��a��X)��(�*��_�����-Lg��G����H)�����^��7V�݊�[��7ў!���T�\4H�Z�,ら���y�Zk|jv8��M�k�Q�_�).�rL��F)���ĕd�����'�}Я2�ĝ��ُ�v�j6Q12�Q�o�\�N���\���E�g��"ʔU�W��8y	�I�Wd�:$)�%�4�>&|E2%�!Ӆ��u�/Q9P�dd�\�vI���@�.p���(�å�n8H.�Hz*LK���`�=��Z#�cv]�붅a;Ȣ0qJ%�~�CB��cdgw����פ�9��=�e��y��*&��/|Y"����~����3��#B>�Ȕ��d��A�[�Y&��F*H�Ȯn�E,X��h
�
�V����2>Z9K:���R�,�8���1��@����H�.i]")���I,��Xt�b �Y����\���W(]����C�T�B�#�Fe)�R����
6x�8�gr��36���"�	3 ho�5��j6��!���9�q.�.w�z=s�/�
v�*ݧ�����?�=d�^�L=��*�(�'�7�|���B����z���l�ջ~��]����c%*+>��Q!�v�娘����R(����uz7��K�O:�'Y�t5���]�=�6p����Ü����ⓐ�X��c�>l�x_���8��a�գ���/�CA��~:H��rcc,�l�Nhks.�RG�"�#��"�XOAf����Zۨ����啋���p�h��7�<�������ZY^/�)p-�wI���=ɕ�%7˛��ra���_s��zq����p��>��݃��ߝc9L!:�!���z~eQs��I�g�ٲ}��j��B�l�����XN�t9��"�`Q���t��_����B�
|H�BW�_u���HG�]�M�Y�����5;�C>^��=Τ}��6��Q�n����Z�i��E�S���[-�Rӣ*|	�0J�GA��j-
d�kr2�f��Q��N-� �w�D%��2F���.6:{-�d�T�\��j�f���ܔ�HB����Ek�1�[�^;�ȴ�!�~b�e>����(�X�z���	~Lp[�ն$$��g�j�.���'�0brf��fe�\�{�0 Z�N�@�I�7�D��9S��!?>��{�G0�ӏ˙*6���\�ҸsM���b��3@H3F�`��s��a/�����k#�6��«��z�U��B��
�:Qd��>���a<�Sg��`;��A�ekk����-�[�|��^C=�
rg�W��
z��g����{�k_�&���K����@�@Kk!�ǿ�e��3?���?�s�—�Bo~��{i��DР��LQ*j�v@ʧp�O̹�!�1���eEQr���^n2J���B�RR�;��B!��8�(C���1b-L�uA4�l8馳]��Q���$0���� �>Ƶfk����F?�Z�
@���(HAm.^F�8�A����M$C�Pf#:�F���pTM�#Q�4"J]%�K���Rр�K2c,����
��3�
�e���Z6'̽n���+pt:_�*w���	Z�7���s��ٍؕ_�)�����O=�ȏU�k���իّO��i>Չn醆�{��o�rW!b�c,2J��|ݐ�������9���^|���˶�Sɰ�W(4��%ܨ�Qww����,R'*ˍ ~�\��6���V�ҽ܆�&��f�ڗ:X�v�_Ӵ�1"�6em�5�H�ڀH)Ƙ�~�J����5��vg��X��|�Yz�+��Ō׋ g~�Nk�</�����@{:���tZ2�'>�w�x�;������/���$�&.�܊h�k���N��J�MZ���ԝu�Ŕ��.�X81�������d:x���hLMb�쉙PG��U�h����3dZ�i�iߊn�љ��쒠S�Wv��ڶ>�}�j�f=��!��7J��\%�d$>
6@CA#�!�I]>w��T��S߄�-`���, džSc�й	��Hc~k��݆p�)��Q�w�
x� @|Q�'�_�趶"��E_e^�Yu0�S�x6J2�`X���f��y*��g_U����
�>d
**
�g_�M�g�JYF��˙��;���lZ��W�P��̝B�;�}
�l�iwT~�]����	��"�E��Nw�P�����A�����b��9���{���"0h ��'Q(�V���.uw��{�]��Y[4���}�_|�D�rg	�^�r�>��ϊs��+W��O|�^��W	U�K���o����3��K/K���}���_�_��w�I#E�G�\��Q1WE�ԥ˗di����P�����oma3G{k���@���@��I)̫Y-if�l�\j�����ΝYq�J�3�HFR<��,
\�V�An()cu��8�F��V��(8��N��K��zPn@�1�~bZ��Y3�jhw�@Rg�V�*k���Q�eks�RzK]�̎ds�6�Ng�
�22�� ���W��Oi���ИZ�#Ӎ�*�7��p���ӟ���q�s�l����W�V���)��ؽ~Հ6P�i���"���b"C=�Io�\��!ߚ��`��#��mm�PbF�Yy%��D+��#�ȼ�l��@YQ���[��{�1}�����u��A��9U
,\����k.�!~�E�АɆB�^75D4�h�hT�\k�>��Q25yPw��&�7�z�^��é�� �܈���3Ϧ�&�r;��d9M�����ӎ�b��$��Cՙ�@�~�2���(�ɏ)��~���z������^f�l,���P*�M�,�T�s��L�ڱB��I���Ma.6�ךh,K��[9O�x����H����'c-8.v�(^;Dm�6M"�!��<�1��S�_8�um��Z��C67�Fxzt���Xڎ?�TU�0z��c$��a�̙*19mV]iV	|<j���H=�'��9�u	ެ�A�s���>�����완�Q(A���)�	�#�8�T��胋ltP��T=��~J H��O0u���x��	,(�JC���N-�T��ɽ�~��`x��
R�(2�X7���+�r���_�	Xa���d[�����Ty��f#��0��[k���)!e���+++��*ʷ[A���2L�t/�c�xd�s8*_�Å<��-/���7�E�.m�X�T��ǿD��ww��%���D;;�t�}��p�]��g���}�iz��G��;S�z憤��r17'��j$�X�_���'E��@�����7<80^��@�\j�([�,��P��r4A�O���:�R1ސ\����Y1��W�K�p\����E	��*�S��%�A�	d��� �K��i�T�'���$��O#Qc+$������A	���FK����HK�)���Eٔ{�AɆ�7�";��*��
…
��l:7��n!�FcS�@�}�t^Tg}k󾵮.~R�k��6�u[:zT���c����H[��h㳾:�kW�`wW�J)t�#��⎯�8�?�G'8�t�ӡ�K�w�����r�~ǢQ�E�'����
��Nrah��v���5�T�U�ЅfM�y`��c��W5��!+`3Pd���֮��Hu��G���	���3k�w��9�/C��G�_�y��e�ֿ��w腗�Е�� K2�̓���}.V�\�n��+������=e��x(�q��l-}]~P��i��˦g���kߏ�뻸��t�N,��@G�K�jj`�x\��vm��*�}�����g7�	��
��k�"9+�E�1�F�nBF:��s]�[y��x��x�}�(q0m��AAa����{
����C�
���� u�H�4v�������%��.�݇�㻀T���2YD���O�?�
+h-R	F����J���Yi���D���c0Rs��70@]/_ǘ	���tlPF����/�c��w�z�c"����3^u�>&���/l}�,��r�LH�������v16`Ċ�[�Z�	!�PeV粞���E��M�㸬�Qi�CA��sA�x�s1�����v[
�����JSӑ�bj�")��X�T�Q�i�-_���%{������oz�D���C�������#?�������Q�l��z}��_ڴ_��wş�ӕ���_��/�����O��s7����?���fBR�sR7�MDoH
�t����܈
�L37�`��j�B���8�"f�4Xa�E��jZ�߃c�&���P�
�#2�P�"S� ��(�f?�J�	xc�_�t�8�Fqӿ>�IPH�JQmUc��U����̰v�
�<ѐt���s�O�*9Z�FJk�_���`�dl�'�j�xDF�*�z��H�EZ�xn�F�ԕ򃪲�!��k��
i�dY�jY���7��,��T�j�J�`���y�o|\�rE
bC!�v� �f^*�����Lu�sL�6�46W����&@ȴdӖs��!s�c����\��?��͕��p�ܝU��I���/��L�ʜ�TD!R��w��+y:��fȬ����֦ѳ�Re���M��!���cq2Q��Z��R/������AT�p/���s���t��K�9�XݧA�-�:���K������]~�a�d
Y[=��K�-d~��c�P��s괱�{	,�9�<.݂
(�_����ІDŽ3��se��ʓ��6t�/���f�չ.�U����-���|��`ͩf�D;�������)����B�->��>����Z�Ɩ5��X�z��&����ڌ:������-s&����Y��n��;@����1�YU����|!'�t*���R�?��J�r���D}J����+�y�
$��d.:���s#�C3]�n�߅w� T(����FHװ�9;�K�τ0K�C;���G&��H2�@�!���X~r3x�map�cN�9pS��頺oC2�P��1�Xٍ$��*:�ɴ$�sj�;w��Z�]��m[PV��d�f\S;v@���]Bj�����+G\�I�;V�3���D���0�}��?ǔlrâţ�Я��蕏=J����׼����o{+}�����|ꙸ9L�	�)'��}�)��g>KO|��'�G�𮟡������{�_��8ב�0�u#&�(���RJ��������w�3�MNR�}I��U�ܔb����"H��/�e�$#�+�B��=^�@��p��M�v`۰�� �Cjr�ʊr����ݽ]�Xd���������Ft�A�X�����L~��$<W��X�ע`1)m�+B�J�斂4���!Ë��r���qNZQ�5S&Ĺ�۟Y�˾=(7s�НW�?���	Z+e�݋L��D(q�)}�ZOȲ��on���g������ɍ�����؊�2~خ�g{�:j}\���]y&k��3��6G�:��f�4��c��9�b3襚*-D�9�#�mmH�6a�u�ϝ)?O�1%q�|Bю��&#s��CZ;��d��3��S��� ~mW��(eP��n�z�$a�b�<��s)sZ<}&����?�k���)��H��c� .s�8��{��w}=��teՊt1�r���w��=��D�NAN��qN����,]��/.|�����)Y\���N�����d�a���p�ow���p;��э�3�����8��72�î�F��(�\7��8��"���%�����/a�CK&���\�����_�]���e?ճT1˟e'����O��iq �Dc
=<eh����8����@^\39�d]��c5��&��Q��[c{��N	n:�~&����� J
|��B@)t^[-Q6Pc&�2!uK*գǜk���ۍᶉv+��z����d��&�ޞ�~�I�Y1���-���hW�=VD��q�5�I6��e
��W&GPv�B�ΥK�Zo%�dannn,e�O�'���w@�B��XD��#Z~�ʇ��紼N�#�������<��_F�P�K'��A�l��@�);�]�4��%H�U��Q���B^z��%{wR�~1}�Z.F��mu?�=�_��9jC�5�E�̸f�Df�U�0w_~;~a�3����^��G�e-m��
3?�\������G72�}�?�&z�+��~0{z�k_M��?��иۊ���3�?��������7��~$�'�Qǂ�*�W��My��%D �ҁ���ETB�2�.P��z�qP�}_�r ���Үt؂	�
Q>�"*�)���L_B��B��F�ڀD��᠅.��R?��G�S�xxhSJ���5�+�
�[��4��!��[����A�54V#T4�$GrlF�NF\k.��!�E�h��Z�C����)
�����;[���J�h *C�Pu��\���^^xO�}���v�9
Y���l�d����ta�����tz@�;�%����v�ʴ)陉Ӛ+21x�*k���Nj�—�TT�
kW��7Ӿh�3����V��K�N
J:hRhԁ3W�!Mn���;-Y�댯�]�����|�d�8B�]U��F��.mk͐���3�l�z���G@s#��#�6�,��/�k��ڻ��#��;G���,��Ad���a�:]9��5f�s~v���ͬ�DB�^��q�U��
�;�U*�V���K^N�,-[6#~�v������� c	�	)���`_�ȯHm���tW���IvI��R�۱RY+mW%�׮�?��P	K
Q
Vt�|M�k@�Qc��ݵ�%	ji]�%�������J}��{��<��k{=���5_��,L�С���*u�H�.��#X�\�7tr8�"IVF'���{`^8�
��|v��vb�O�ۖ�؀��6�Ϙ7�
|�Y��KFW��-,6~x���y�څ��`�`�(����#C�2�C	p�W�'���LiԜ�����b�r ���.�Ў�gi3=[�s��{�C��1M6��w��`
�9y��u�������EE-���_���Z����+q�a�����Ծ���� �����7Wi�y��_G��w�^x�%�/�b�x�[��B�d������`���9��р�Z��8/s0w�n]��%SaBۗ���'�9!@q�p$����:Aa.?%k�
�@m��'oh$�T����qC	REK�}��3U:�>���@R�L��P��Z�*�`.@�ϝ*I�16 I��,�QbI�Pg��Q����1�(�1��^e J�52��x(/��),�D�uƽ�H�J���
����6�̛,7�)-C'g�<;�F������_iyt��
n۝�;t��U��ݕ�p/���t�1�}�oq	Y�����a�y��:��ߛ]%�����w��"�<
�cU z6=A���Z�~�*�9�Lc�=�?��-u<��t��a�{��HqmZ�JL��ŧ�.�tN=RZ<C�a���V�٬Qz����O�iO���86�C-�.�<;uY��2������&�,ȅ��p��D�G���ξ�Z���8��r>�t
���ò�S��t��=&p�ҥ�hE�E'�����������	��SX�s����Rã�9� ��)�ՙ�4!Oj&;j|��۴j���B�"Kh]g�.Gv��%��3��%LDF�U���F�5�Xϰ�u��H�$X%Z�I�uZ��6W��T�6��F�[F2/�ک�f�{�n[�7G�Y�u�	���g`뼴j��\ɼ��B�M��L�@Z��|v�����2y|����?_W�o�R,��
�S�1n���iL��uʀ���ݨJ����u�͏�q�����k.�EX�i��>.�+�ir��r_AO\�K�S��4��T�\�Yһ�|]ԃ2�ar�fg`�޵�h��)�ւqhI'�;�[-~�����)��8-��Fdr�Q��pA�S����d����y�+i{k[#�s���y��d=ˆ7Y8�G`M��J�3}c3d�h�4mi��j��z��%m��&.E\�|�#2d��@����$R#�")p���^��0%�(I�B�Y�n����{�*�2��T�(-$�D�����cLЁR3��S�	p�Xaq��-��Jj�(S(,�!ÔL�F�9$�uS��ɼ͊��m����ZV���k�i;��_�f���Z�	�b��ɲ^��|z���lQ���+.���:G��'�ތ_�ܮ�y��5�����]8-l�j}ԉ*���ṯtU�����}	�Ө,��r�@#`B�:�
�X�۫h�$2+.��3������*���$彴+�)ؑ�\�Da�s�X�z�	�3A{����c�<*�m�%��^��xi��>>,]Y����X����i�5q�`_ֻ�����쨱��)��s\�&��JhT�FU��I��;I�^����̛-�O� �2��������$������?�>q]��|Zᡶɺ{�����`8���?<e�f?p��{���u�I��>��j<�an�R�mÂ(���[�!5J�},�Am6?���pz��1V��q�l*m3�\�a��&�F|O3Ɏ�W{��,xQ(���=c� �$f	�Y��[�a:��BD��cp��g���̟��}IƉ1��KA#����1���s�t��*m�[�O�id>���Z�2sa�υ~���SvGa
-�
�	�Ǽ�%b���%��9�kl���X\��H׳k{�=��.��}�~0�JZ�
�3��0���]�Ce]�̂5�c�^$�CQl�/h�������!�$�+9/2;��b V�$��˵���;sj紊�$��'4M0mBW�]�ǿ�ez��tQlG頳�����G�~�_%ű�s嵯~5���;���:<��tE#*S4Jy:�` ��R:7V���Ü���n)�J�o ���	$՟$�!9�R.n�AY���RT���*VE���%ZE�jNV�5�.x2)R�Z�L(��9P�8�:�5*�����*��֝Y�e@����Ow�T�2�d޴Z$�v4Ŷ�h]ޔ�}�6�A�h����+��FA�")RmJ�!d���:P�RXr��X����
�ᾎ�z���Ֆ��c��q��Ý�� ~��Op��b�Z8��z��}�.i89�������y�؂.�Ȃ�����g��_�Y�����u/�J,���?L!�<�IL#݁�,�L��C@�CdøsSg�Q_5�(��EX��zk���X��O�
Xo��bOj�T�t������'x�2ܙ��o�8Mi:�G���t���+��-�x(�bM�g��=1�6&5mn��`" .��+�>;؍s�#�2��F���C*d�`}��^�gW�U�{�\�M��cN�]>�R�)��n�6�G�(�[����J�݁5��yT�{./��G�p,Y�C�F%��~*��5/x��O�;���39x�N�s�kv�c7u��F;y��\�Fu\<%��q֘�a�,^�NX����[�g���Ư-�,"�}�s{4(�y�s����ɝ���D��C�m_�WrjZN�������F�4�s	zd�(F����l�B�z�)�hO�����4t
:+����-��9�;��W#��+�luI����l�_�g�F�d�� �	�E�G��&#��ZkO��o��0�l������7��:���-��5�_l-M7�a{I0�Ql��w�
,i,�hmR����xup�ٸx\d~�p31EO�͙�N%G9^�8=��p��K�cV��Aay����u(gZ��9Q"P���8�E�I��N
��]��惻�Mj�|Q�3��eF��_tJb��M!�P�A<M~StT��qi4�Z����z~Sy
m��š(i���^;�[=T�3�h��G��/~����'����͋@����������r\����AN&yA�d����Z�t�Rd<n���@�������U=���C�Jy�G�ɡ�J�]��L����96�v.������j$�+
!k�f���1k4s����<'�WVfF�%�U��dsPEc���6	r<xGQh��F�%ڹ����d ƓM��z*�|nMV0	y��$���G�`���Z
nX��C��.��mL�د��6���셱/�{�RJ/ܻQ��c�hS6[����B= :B�]�5|��ҷ�:?h���on��Zqmg�6,G��`|x��ٽ~]
�����s&u{FJ���Jâ�HN�r���e]:��lQ7M�5m�$�
"��h�K����A�O?d�g�Dp|&E��5�f�T�~�P���Iv������,�G�*v9��0�2�#�_p�(Z�`s�tl�w��
D�1�P�uX�PM��j��S� �)�B�#Ȅ�0Q�4��H�$��H\�u�a��e�aS���iyX�i���u3����|�p����� \�Mn�s+'[Qϋ���)\�b�r��„$͈ݚ�#V��'����
u���t�g�.s�x��1��Z��fG����%ް�:�6���Y�Ip��V�;�Rd6K�5Az��bwO��w7k����@?��~s�WZt��YM��G��4�"��Ǿ��-�]V�0�T��r��F��f!��)ŝ~w,����;�Z�W1	Җ�f�i�ԍ��gd� K�_x]Q	h�o��E����s;3:�\�C��F�D��f����iiE�[g���g���i���)*�?x�3RX���ܦ����t�^���`���\�v89[o���3ew5'S/�u�X~�����k焓P�,��S���r��>("b����?� ��$a�lUF�ٲ4�)��R|�'����|eV@=�s�u� �p�	��Jy����u��{�w���C?�f:�`1��{i�A9��,ʁl����\�����ot�"Ȫ�ݡp
��c2|���T�������aӗ�-���FR?c��}ٰ�p.t��Қ�n��C�#)�;�H�㠦�>8�j�TQҺ
\�tY�igw�@VU��!q>/_��X!�4�:�b�*� �������؜��8q
�(E3�@��9�x�y<Y$Ik��z۶c������

�GW��~ʘq/$�E�B%��2U��o��S���Na'������e2�T����OW�\�ݝy��q!_j͘1��7 ٺYo	��H@���I�gqڡ]�lhvkp�:xOwB�[��q% #/Y��ITV\�x_�9�=3�;F�J�y[o����w;���7����-�����C�9)�r�tn�Bk�J
@D���[��"�Av�P�Ec��hoȞ3���=V�Iק�m���)������� �r�R(P7o�9��N�����8�n��vb�{Z^OŠ�OK�<�'����Y��<��u�Ԩ�P�u
ա{�n"l
s�nڌ:��t��S�e���Z�`�kAo�������khԍ.�p(,��V�E���--��)�C�:!(�,@҃�p�dwL���'�/$P�U�.=_� �3K�x5�R�⻁���!S��nh;��,���]b�FL���	�1�h48�,��1�yίJz�z��\��`)�9�"O�5K��g/>^�¬�d2uI{�%�[]����<��:�Y�R�}��
��_n'�`�!�q�X�n�5��cz=�Q�
vi���Vh�ߑ�ϕ��ɜ9�km�p{`�aE�0ɳ�v^yAC�P���0zh�\	�]��g�$Κ7��4� ���MW4�B�sڥ�٧��,���X����EG�}͵9���>[e�{3�Y�0����xl�B-QP��I�i��kAr��v�eX��8dgS��j4�v4�38,�5*>��!i���Z�b����9
�+L�dc���[��R`
|��>�h�Dm�NH�3P�i4�d{kK"���-�ݕ�J�UL����S,�,��e����G�Mk�8�R��aU(�Z�����=��I��w�9ڃ�1��r��
"y^�"膬�=�i#�)*���֑��
����
v2a�._��t:E�3ޫ�;�΂C��樻��j+
S���~F3g�Eh�	&Axu���4�l<J�u��StW�u�U��cR.�����0�~�m��e�;��_,�	A'!�Uf�����_R�q��0�j��x�fs1:���⺺�s]��"���U�_��1��:rW��r��z2�c|7�L���R>ާ��_�U�V��d���ۓ.������B�8��Z��I��ѫ��,�|�_v�1�~�dr#��)�th����N�W�R-Y�����ܕ��mC�J324CC��V�F������A��,@�S�Ȳ1І�* �r:3��=zA�6�
*R�<(1���\Ί��������`Laj���!uIP�tV�MX���`0���]�o��*Xm����
ū7
�H;8���^��̩������|Կ��j��|������
�21�<XD�p/�~�tQơd�q��	vnF=:��)W:�\߂�Ф�����`���0ˉ���4e�Da���'!w����s��nK�m.#�̪q��wС����B��\[#gb( �9Y�Jn����B�\rz�b ��q���P�t]GwBgŰn{�2� �X$�b�jZ&
�N���%�%:B�D�TI
�(�Z���RE��8�*��a���O"����ĩ��3Z�[�"�-�0��$���(�F�oE9h���#>��Z��뵤�֚-��p�B��Gi�4essK@�6��R�c���P�F�F��$Q,4�~}G�(+����fә(= ��ܰ���+0��kE�S�Z�L�������9�kM�E�6NPݦ����}��7.=�_8��u�\E����K�?YP�佘�|�\�&J/4��:W𣲌�U	����
I8�3v�'�?�ր����Z�.k��׋�Zƕ��l����zʲ8B�8�V �͊ke�"�~.�Y���uC�*pܕ�̩߮��`�X�ulx��e�c��޶�]G�C2V>B�~�9�N�Z[��<�y�K���FW���2�$���l^5+d,��f�����ß�������#�:7��z�?�ra::� ���,mn�w#߯:�5�`�R�5�\�"��,����ܱ8v�;�~ҧ��)����<)L�cC�	^�/��ag��Nݷ�/n�$��5_imC���K@#���a'͹2ꪑ��G��bĚe,��Q�o����dJ��¬55= �
���i������n	�LSP��1�Z&���DH�y�u�F�%u@ڙ�Z���?�kƿ�0R}�j�"�Q;kns33�-�q�U�{�n���>{�	F)��oP�{�A��V�;`N~|�R�(�x�P��`;Ȭ�Ⰴ�x����I�"��8���أ�P�����Ǐ�{�)*=�j+��czwƐ�-����M+.�.G3p�(u�mBs�
�^,R�+9���SRA4	h�y(���,`rN研�a�atY���m����� �2����Zۨ4K����
mTG�{�d�vݐǢ�@hL�V�D�(�͸�)�;��ƺ�"Z������`�=#�bP�(hn;�!4����"����JJ�7ZP܊��«ʊm̤�BcS+e���f�@��7��x7�"�j�$僭`:���Iv�Bߌ?��?�ӴUVZ+8�7�F4�udY9̚EJ�VP�M��C��gB1��XI�	���=����oBɓ*�10���ԏ���Z����~�Z)u������^���+/�n?�dl�����TN�Y�D�}�r�l�B�Y|,��do��7Ml��Igˊ)
k�B��2o������t�'�@Ƒ�>�}$[�!l��H�#�GS�!�{X��V/dC�}�쫍��E�r�����g[O	!qO���ul�e�9��3�a�ŃQ�&���mZ�Y!b��4[���e��e��A�!�Ȇd��s�Z��9���^��U�g"��s%�l,�}?��ݍY��5\ﰓ�g�3�ǷJ��ü19����&���[7��1���٣L����W|� !��lܤ�0ˈ��5�Պ]����q��T��e���Q�ȇ���|~ v�gw���� ��Aw�I���k�
���4�LS�#�ʨW���1���� ȑ�s�>/���74����Z���C\���%V�:����E{{{4jGr�����s�Hk6���s��j�:�<_
j��)#vr"�Q]v
��H6���(x$���������b.�ś��в�g^qq�;�+k{�C��w��n���.X��ҋ�9�|�l`oK���f�p1��l�Z�%�����B�b�LU�Y�5r�*�a��l�@���P\:-U2��C��TǞ�a`q
��@VF0�sOu1!��
W���Ko�~2� �E��o��‰)��94�ÝI����zVB�4O@I3����KPX*I=m�}�MJ�i)	=��P6��5(tVY�L�Y��k�@!�������5��Z J�e�<���
��!��D@��� ��5P.d��s�V�|��g��؊%���V�8�y*E�@	x�������;@F�4^�Y���lnlH�.R_KE�CIە:�(�By%��Bf)3�h��GD�hƎ�e�7�<Ԣ�)�W�`>�.{��P�����nç;
=Ԟrw�k���׮��봿�+�C��s����.-k�e���
�px7;�NX8Ai�D&	ݕq޲ED	Xg��1>��]�tr��oT��.g%�PAy�� �q�nWr�����/u��}'a8`}����>�qR�,1B�J�|�O��ȍ��zkY�/O�i�=�!�>�b���A��1�pN
�y�<�/��0T+]�t=� �l�@h�⳵���]�`�7��P0d�5���L��Y�\��{����FZ)^�;Hg�W|~��7��1��CpԬޚg��޿ަo�ܖ/q�=�w�>�<����|�%�L�o��?V=*��?]��,f�.�X�.|�q�c|ڽ`q�H�M���y�l�t��^���=�QO�����~�C�4PM
4TZ*�@?����\m�z��KQ�c{k[���iu@�Xq�O-[B��ͬ]��tX��Gc����Zk��/����ei�C5X�譄N��1�2F��v����b�������Fg���b6ϙZ(�́��������Z�D�Ge�X����{k[ͬ鿕f��e�A
k-1��%V�%M�Wlfe(�B2p�BSg��MeC:�.�:~:/���8����Z4��,b
��n�a�w�c��?{��Mu?��'���VAG��	}��k:`�`I����NZ�ˋT��9�"���:����NAA���`(K(8�t~Z�gaq� �2�͕������
M��M�׉pS��C�g�8�G�,�Dʵ�t3�H|�o/~���"���P��6k�#(��=�D��y1Ս��F�DIB�020�^�C�&�ۖ�"
���{|>Ȋ�8��	�\m��-�bk"xL�!�E���y�vN ⢊N���m��*��f�1
v���do�x�]�U�<U�?8�I�L����35%Q#ܥʻ(�
@�!�.�H&�H3�i���M��ڤ>Y�����w�Qj}��j#᲍�٦:�Gue"-��KU����]�#Oq��+Z�����ˉ�#�	���N��b���Ӣ;�돁��`I��q�3߯栩1z�~V��E��j����F�;<�`[��d0����h�QOK�&�X�x��f��μs�3;���¯�m-߿�{ۥ�����9�cq��u���T
Fd�!cn���^�5Vk�x!u��c���:QQT��OΑ�붲$Nr/Ώ���f�;,>�˛"��ѹ���m�����6U����jY��5�~��I|�����z�:YPKҧ�ߓG4;�5v.t���۹����-!E��_�
��D���X�+�x�ݫ���'���z�a�ǃG�昌�U]+E�Pn��T�R]E]�4J<{D��`��t���6�kHЦ`fo7ٸS�T�=�H�a�A�h���x]Rdx�CsM�~VJ?c��AkvVk�'�_�3Z?���
�c�>�0d�H���V��ڔ��.��	��)��v��9����]>��.�<�c�T;dђ��M�c������[:E*
��z��Y[���ߒ�j��k�{�FS�Ng��q�&���ڃ���uF��-Q&�����MI�EO
�+n�6��)��GB�c3*�#�����/��N~�Pꬠ��!�#���r���2� �X�1�M�o�X�*s���@���)?�Hz��镕��ЌV��)�X;��j�M�v��g�*!�l*�ٌ��ۍ�a(*U���e[z�Ѡ�J���P��⑹�5㤒6H#�k�������{jq��hDqPL���?s"�z�;1m7�4røޒ"�BK�J����:E��`TGRxY�9�SU���ڮ܂+�&�asuF���
�+�?�*�XQyQ�"�"
�hbtX��r.T�HH��%R(�G�RjUA��W���Y�>�Q� �u!���V�
�s�_Y��=ʢ�4�ʎ3
�%�"�ѓ����Nj�}g�_\�,�+��[�
T���}�W~V��%�_�kc��' �\�"k�XS���!�Qɽ���=>lC�����\z"#�9+\`
���|R�vC��t��{�`�hQʨ�6�nHEj���2j�����z��A.���.Ϗ\�	\I�XlG�Gr{�����
^q�y�0,֧.�����8�~j�J8��s�L�kç�v����pą���yg�᫤���!�T�XW#�xL�J��d��.�Zq�d|�"zfA���(��(��6�A����+Tc�Z��J�Im��~��`e�� �D��T��E��e<ұE}A�`�@?_j�V�X
�F�ՄV������|��V��\�m�iԙQ�$�U���q���S��-<X0s/es�LxЖc[r��E�=�y�v���D,>�\�)��
pGKg��]ˊ���efE�T��FU�����̐�[X�)�#�2�d�C�8ً�>2����ꭸ�,Z���J*G�\�R���
�\����U��$I�1��21� �
>ˊ���JVW�<��N�����d��VP�bn�=e�~#�ˣ)`C�)��R� PH�Q�,)�MơO�kYU^`[�Y
E	p6+D^s��NS2l�l� �	ՎE[k�uB�C�m�&M�@�����r�ċ#�X7��8G۠}98�k�0oe�I�cW��s#q���}`M�&�66X?Y(I5��<k�Z7���ͱ5�2��D�K���M���AM&5m]��(���TR��轶6�e�(R2�cwğ�q�n�'��ܿ7[���U>N��?(�w}��\�j�%�XUz]R�#��?�]�I�ы��*��DOY���="sZ;0�w'g/z�ѡy$�c����sC�ҡ��m��
�k����s��P[M!Kb}�
qaP���
!"�GF����H���X�4댻�T�|>��u���ᅟ�e^����G<A���p���Ա&ʋ��!r�+��+Ys�C����s)�(�T0D8�A���uY@�(��<���(Whi�\_4�[]9��z�o���&��m����8��_��{ˑR�"�7�6K�<�Ǜ��O<��Ω�j�~�3[f��Q�{�:!0�McIG��RX��j��������5ڠ�,�X�>�6Sc�jsN�/1�8`(��q-q@f[�Pˀh����+Xݐ�J~�2J����L�WۻU�E�:��f�{=��L)�F#��Ɗ�7i6dR�D��C�Ǫ5A�F����U��Hi�њo%5xmY2�”��~�‰M]@���,��Lp�9R������9^zf�.,ہC�$�j��/��$�&5i�|�kP�.=E}�`0Y�ui�u�\&22�ls�A�T�"IBP��~�5�z���T�L����悃���*��qj�|D�B�VT�<���_��P�]���
>'�î8� ��rA4�p�?�gA('fe+�+ �����a�ȅb"QM�C��TN?��
�$�v
vE��Ɩ��%�n�}]iq��d���;��
���@�>�`�(<�WM��@1`�䨭ȸ�zj���h�����O�I����cYDj�h��\�lUm�P-�����)�0n�vN<D�4�7�7m���}q|�ș*8�dՠ�j�#O)����<�3ӹ�� �_(�N���H�f3���r4K�]T�p��^�Y�������^��t�C^	5�N�Y��+��w����W_~�v�_�� �e�Z�DK���J�оr�ⲫ�i�[蜓��B�q�&��^��O��Y��ݨ�M�F�j;4=�.(�/�O3-F�q9��&����m��B�V)�|P2���I�ܹB��A$cЯ���\_$���� �Q�N�����!Y�A5j�����D0��u��K��s .�k$�Խ�:�s��@kz�����#ߚ2q<t�X��\�yžuiK�!d�Xf�|�O;��[�;��^D]��8�Ŗ���?�*��ǖ=큑n�ÿ�4�kw9��w�����,�<MY�YT�����,��恼�B'8�B�i>*i+�bI(ڝ���Y݇Ә�5ͨ�ׁ͍O�ZC��4�,�f�E}�f�SV��Q{Zٙs���ѳ�dh��e][/VtcQ���K�[轟=:��e�-Yݮ긫����O�7>r_g�5wN�)�)��;��0�;�2.�d������$��UfZ)�����uEQ]uEhJZs��ʔ0s�e5���b�T�l~�σ%�؀���$�m�E��I�+w@��>
�3H=ǚ�6��MC���I` �}F�p��5���n�F�&���NL�ņ��̭�w.�xV	Ʋ�����įa�ts�w(�(�9~�RVY���;�cX�x\�h��xv�K\\G?�V��]\'@�^��V'Ma*���+�S��o�Ru��Y�VKg+d2)�+e����Jj�
��y䏾?����m�}�1��ddF�`����Rʗ�_��ۘ�y<���7�S�,\6p�Y.A�1��ҶC�7ed�A9B\�p@�vc��[s����H�+�"�$h^��[s*��`��sDR��%+D� f*����,�����۝���VwX7:(��Dt�Bu(h�ueJ��G��ֲ.��"QZJ8A���/�q��E�t�D�x�.�?݋�C��dGg��F�/f>���p�EU螌�mD�FAЉ)hm� �q id�u�7�1j/�����ak+@��0U�%�(T�>�P�U#���F[�̥-�!3"6�>���5��й��z�e�X���Q^UUnoNl�l9���ASK��y�$*�`.,��-��0�2�ִ�y՟]}���6{��-9�/��G?��tW^(�2#�Am�#-�!T�����/��K^�P�Y�3)�טy5�g���|m�/�+�CgV'���r��Gʢ�ce��}�}r� y�@_�3[��,���xf��_�����R3D�$0�V��T1��.�q��*��W|�N�g��{�A�/a���
d���lo����7*��8�ɞ^�I���eLq’x���B������k�n�/^�N�am�����\��X<��pP�ԥ3�oV�W�aN���[���1�K�߸K�������ö��ݕϴ�a��
�PbC77:*���>�@Bd���$�zdk�J���\� �@�Xm	��W�i2���28T�iz]A��*>�y*����	�%���+����/��ˀw�5��h��
���6��P�
i��`8��t�Ԟ	ɇ��WZ���UfKO�')QH��Xˠ�<L�����X���܂e/��^��k�z��D.�͐�58�c\�P��[ �{S�Oz�r�~��#�b�h|�i�Cz��*G��s��F�]��~�Ky�N�L�{At�Q0�V��
�`7)!>�1Q�9��r�Ad]�)?�,́�uM(w$�4:���e�Z�FU+��f^��de`��P3)�D�sS���_���J�GDmL5B��n��J���5G{�e_�s�W�U��"`��_)¤�~#�]#@t7����$��۩`ƪ���E~(YJ*�!��Y�6_�� �V��̱���dt��G��52g�E����t>Q"�9�Q��1Ș�W���'�@��*	V ~����4�QB���W)q�t�Cn��~��j`�x���|��%� ���k��]R�Vx�O%��t�"/��Z�"�C���u��ߢ	��j�h���%�6M�_D�5�@#x�����O��P�AW����i��܀КC�"��~`K�Ք���N\����|�.�u{�̹���gb�j��	M�V>��^^��#�>t��ץ����)V5nu
����U��0hD��ֆv��P3df�/a,���(�ئ��H�_�-���XY?��T��;�X�?˼r��@�����5�d�ܮjϰ�,��>y��X��3=��"y.�7����]hO�<O/s�'^�(��݃����S�]�'�p�K�γ�u���~UkN��`C��JUӜ���1V��iT���ٱo�X�}�JG�� ��@�����ʲ�q
�2�7D�T�|n�v���]�=@m�6��B�tM�Ÿ_C�`��;ؘƐ����2�f��M�����6�,�-�E�0�G#�S�
�Y�+P?���~W���!�҉ﯰ�T�U���ͶX9
5ъ��ٹ�V*
��'.��{�E-���@�h��t��[XdJH�j,�2�bӠz"��)�ordO��G�W�aaI��"e�r�Yv��k+��˜�l�Nd��p�`͟Q�L��#���!$Z-il�0�Ad�3lʈRhŕұ���y ����~�*	�ȹ��ەtRC4�bd��e�U��=!sg���x�T��24���И�Q�`C	ؘ��T
}7���-�6]�$��Ӄ�9>[IY��yw�+\�2��J��K.�№�H�D�	�B_�i
�Lkh#��2E)H
m��
Eʥ�8�@Ȇ̛0�%'il.�p��,V�׺F0Ii��F����{��iZI�Ȇ���VΊ����Dt ^vFv:S)7\�hz�cϧt���ݽ:�@���W�f��Xj}�����q����j����}\�Sr%�t=��_.�T޳N@
�t$Ђ�?�S�@E�.:0/OSbP�c";7�`��ߜ�u�d)9����伶p�k�y���'h��j)#$��A�2,�q��o��4�l��!E⚔�:�
�e?�uc.sz����dوX%����(�KF�[!t��}F=3�j�c�ܠ˗[C�E�i\�w�_�+ཫǖ�B�Cd����,>�����ο���X���S����~rgI�zx��{~��cYWN����#�c9ΔXe�p�-,�����ˇ���QV6�\�uh��tk��K��d�9-O�_fa�+oe8ќv�l�.���3a�"�bT��NN����Z��J��Aux��ak d#A����} �e�ѩY!Z�PέYl6�����?�A�����[�s�C�K��a.���.]��C0����������g���$��m�j�u���n�C��a�P��k��/�>2�@4j���zL��RS��Խ�)"eB�e�;��OACE�\���%u��!ٓ�ϔUL\F��%<S�Ri����c�����&�P*J��n���2cBGV�!�!H\,u:'T<�Z�t6���+/]���(��Uu�}w�=}s�u+X�wȐ�.J�}z
6_���-�������袼� �2�-���E�Hm	�d�G����r��b�,�J�	�Z��( �w�N>Q8B+N%�yU�Tb���Q�o�{a-F�+�ò�6J?%�q3F́�22�a1��c�XS:�!�GHp��g%����
�u���Ƈø�k�Y'#��r�f*�ƕ����2JE{�`!s "J�v�Ź���M�YFH�S�Y�����b���Lm��;1��(W�����_��ِ�)�Tx$�d��睶�6Ln�P8Ju��R���}	�y�@��-�����kWhog'>GJ��C�5f+\s��ज���4�:�uAҪY�Ys�k/��!���a[Mk��`9��8�fǪ�9�i`(�S<��Tw�!g�5U��d�qR
���Έ]�-
�K�Ue��n��
͹�õl��]��N�9P4DF
�lH��I��"�C����9�()�n�i{��K{,ᵿ����K�e�+?V��Xw��--�.`�\��i4"�J,-T�)�:BqM������U�o{�ʳ�8y��+��� �P��s��N\����R*���#�:����s,�gt~�q�3�C�R�A�q�u&(�}"e��C��LeEݍ��}��n����*���)|�J���佽]�}Ҭn��Z\��a�k��\t�Q��H��`��+�Yj����/��yV��2lhF��nQʺ����O�x&�S!KAw��5�t�6���V�Ċ��/2�L
֋��–���2	?�鿜y�MLj�J�a�m�	�n0�N��-e�6����-�RG^u����xθ~�V����J���[ڥֹ�9�Oj(ߧ�%/g�s~3|�s��:V]g��B'��.�U
t�^z�
�ˡY8.JG�8��p�R�ïǔ�}���E}
��DY�����t6�5��J�
2� ����W.��6�y��r:丶u;(Ւ�D�#�PP
K�7k[��q^�j�G1G6F�E�� FtC^˙���WA#��HT�o�~�*-���F��L��W2���z��6�ći�ĵg�,e��ku��N�{�F���V^�2_���q=��A��m���-K=^z��Х6��N����#�S�!��ifr^-i��8����ƶG�حʜ}P�X�#d�`~=�D����EL[u����|3�'K�;���9fxѭ�d]
�i�o��;t����"��F�*ա�4(�J�
�^m:2#Ğ��'�7޿��h�J�V֞�g��0_����a���y~�<�P굝Jj��_�<+���X�|�f��0�}.��eh�8�\ ���P|�ɡ�KY3D�3_Xs6	wt�R*�V�]����(�@�w`2�x&i�ur�O4�}T�ˆ�oN���I{_��r�<:�(-�@��N��w=���|�{c�-��,Z7��Yh���Jcz�)��C�2�w���N�F�e�+��Uw���3�Qa˳�+~_!a��.��1G���{v����d��8�.o�>����՛|sϻ��f$��k��bE[�f��uZ_���ʢ���%�"=y�ϱ��c�C�\����/3u�E{�_]�#��_С@�&
�86t~�t	�FU�sPzj]��	�eL%v��RO���S�q�AM�kI�c���NV}8��Dl-�I���������0jk��b���w�T��6 Қ��fhx?%�d���G#���h�}8��J贔�J�#�p�DK���@OF�I %�S�F�"�4z���qA��!�Df��f?�C�m����`%ņ@�d���"��oF���� p��=�)���aQa�_BΪ(oz�*�c�J�n8��%��^>��ʒ%��3X유Ϙ��R�q���?u���`�&���z�g�4�!5P9Eąr�삶�2'��IU�	,G�
�=�������
�����qB�w�E\C
�:�#g�A�,�饤�8h��4����7��E̢cſ�{�&ȡQ^���L
����F�9%K&��_���y?C�j�X[[�[`|�������f�S�@BZ��H�ݝ�:��E�fwwOƒ(���S�4�1\���ȚFL��<�(Bޚ� �����H�(�}�X$Ȍ677����j�=h[�ReX(����m����	���
��
�D�j7̮����ޠ�ڨ2�.��^�[�G�k_Q���n�Q��r�
���U;�a�̼S��E+1\j�ğ���2[-�*�w}=TG�7�*Љ�J�q��b6�������=�Ua��7 u��^ˁoP@[�t�PDU�OT�+��lHe��c�KR���T���S143�8�K"��ACF�5�R��t^0�5�U����[=��:tO�����ytخW�I�}�B1
���H�E��d-��z�`�d�Lw�`o��f"z��o���W����S��W��ԅO�[&�ٹs��f�/�S���p�_�;@����r~F��
I�?g�u�̣悏��Z�>���{��ua^ɣ'�0���fo�̓��Ϝ����j��hkkK��q_�00(1����_��'�@��ye��H��U��[���)���k1s�F!��9�Lp���s�d-j� M�g�)�ƾnH�l~`5I+ZZ�}�"N�-��v����s֨Z-+�O%�c����lQ�ͧ2�렀;|��Y�Jg����*�L��z'%U�CFL���ԅ��W����H��OHO�?��gAl�A���� wh���H�o�;�ݟ�.�CN��i7�C��t����![L�Q��
��nP�^���!%f�9rYA��SUIi�26İ�[@hX�@4��T`=_,M�W�W F��o� �2ȭ���9�c��1��4kf�]��7HM
�ќ��:U��,���!ʳ�hFjRD DA`����VvJ-ƅHfq�7s�i��mزI�'E��`���Pn�T��5'�s��@_���('p8+
V䊽~������,(��H�o>J��(�Q���L&#���:d�8�f#8�Y�+JSTl6*�wIg��Rmɵd?QeЇT��ܢ�n�Qj�.�u�7�:72Ǻ�h��s$W#N�~��n�,g��r���G�O��e�u����t���f�� g�I`�� ��x%Y�$ے�u�w�����޳�+_�
�-J�E��HQ$��$r��3�SO���տBU�}�	��3�����O�J�v�Z�_��#c�1�Hl�{�.ڱ}+[����-{$yVdw��l��GÖ���L��u5ÞJ�"���뵏���q-��ĹJ��pĔB8U��XY�Vv��
T-�k��Ӿ'I�U,�,�Q7<H�E
S����^��[�
�4��5�'T��u�}o���2���P��\`�%y7^����2�	T��ZAcAi��#j͖r�E3'�_��t?$m�Q��ڋ��HM�P�-�������V��>D��:JBt�y�.��
����8�SxG8��4�
�j���2����$�S�{��X+ROS�zL��A��WL������P4����u8c�{j<��ߙ�H�BnΚ�y����� ����
Vd�d���ګ��7�v�����N���1���-�cX���Q�id��ڛ���-��ͯ�����^/��
��)α�Y.7#�={����D������n�#O��@g%$�Ą�AŽ��:X�0"y4�p�K2q1.�$�7~p�
�ܿ��	�7���{#wʎ�̕����޽�h\�a�4�Ba݄��G�݅W`�u/^�>���62>���=��t�D�Ar�8M���z3 �ss���Sq1T��,�T�t)A�|��d�ˢ+i�k����� b I�|a�CM~��!�ɩ�.��k�Jk/��U��6j��E���}�D�<c�혿#����i�U9��EQ�H^.�c$n|�AD]�&!i���M��s�
��T$�-�����w�OΫ{$-�"-�"��FJ}�?�9�G�e?g�X�#��Z��!ɹ/:��(Y!�zff:@ 7�lQ�����=1Њ����r��P���1;Œ(���-�Lc7U�.�!/&��o�(.<����j��$m�!�^\�Z˵B�Ɨe�x�q{$~�w`�D�yj�yji4����(��`X�ј��J���ad�-X��H*dT��1�~̩��(e��}4)_X)�@S�0��Y�ҫ~���G�;�Ӯ�;8�,f9lX�l!�������-I
����y���>�!�کPK#���%�~� ��B<)�K��]�!�x��f�1��F����KmEo`!\ŋW�_J��.�0w1����pw>�%f�e=��tXD����\�i���
/�dO�@����������k�!DA �o��n�J}�3���͟K4Q��)EƛT@�V�P�/k0��pW�.P�[}W��gcOL���7��&���kȀݓ���gW�ٳKb.#yz�OΝa�0��ԋ�Yqtl\u��sX(.[-Ψǘ��u|!���蠛�EZ�
5���MY�}�ŧ֏�y;��L�l���J/����~®�c��{.;���Ud�9vk.թ>;A?1 D
��FY1�a�K6l�Rc&˙'97fc^�H�>Öp?�e����%�y��F����s�v��s~�1
�-�6]ԘJe)Xċ�
�(�(^ubk�Cl�ĠR�P��٤��b�	Oe�^A��N�6�0'��c�f���,�y�D>�P2!zG��3oW}�&J��o�<(�y�"�xO���u�G�uDy�wkC�P� 
9����A$��*�T"R9� A��J�B[EpĤR;�M,�6Q��8e���sL2Ve���:S�x���^"�˔yU��*|rc��&��g�L��
��0�#s������r�\�EZ�W���'H!���H�0���@R���h1P�pe��}Msm�'u��/����eK����"�fs�D9(�F8��43���K���R�R�UQl�ڙT�cv0A<��i=d=��RD�cK�!^�T�X'z�8&���r��>�x�o����'q���f��C⋖�9B���
���s,<K򞔝NA�\<�y�+
L!q}!�JK���y�0z�F��B���.�w�Xw{��	��v��`]x����5�I��h��P��B`�fB�;����4e-%�K�.��\��2��E�������s����q���;��)��X�[A�׳1�k��W�X�=���Eb+%�s�ޮV}�y��2�y�m<��@�x�h��q��_�T���ĉw���5CFc���+����ns<���j��)VW��}��_��[���ꗲ���Z�4��N;��<�d:r�zڱs=��3�;n���{�-'w��|�g��B�G���c����{�K�{�[�W�<{�|�K�c&�!7D���ɋ�<�N=��0�h�֭��s���<H[w�l��ߕ~��{<���Ժ��^GSp��>����A����]~�h�}��7�;���χ��ep��ćT?7��j<����k�e�ܾI

���x���B��p�o����9��6�߫iS��|	*|�����9��zU����S�㒻���^E�(a�����,]���
�A`@"?��cD��R�����A�k��$�C�u�Ơ<@|_��\Btˤr�թ����{��9F;�C���;�o�SdzZBY��Gp)��)D4�!52����b:t������Q��E�˙��%=��RТp�~a��M\�s�gy4������B=L��L.�ҥc1�2�$�<Ϊ��BUEO[�ҧ&���a<"�~om�\#�p��D���%�H[�,�>Nv
@*(��J���%quqJcr9�ˎ��;��$�O�Tv�f�Iv9��"ԙ�d%�Ő2�����u��/�"-�k��co8�iK�v�t�W+	��!���h	���1&��%�c�N�<#J �
R*�e��6YnqOP�#��/��.%�8'���1�'Q̌%/��A��|FL��gd�r�����v�R�Ę��1f�<3X���16AH�iUt�Np�#2k��7b��Y̑�WX�"iI�N��`WV�ʚVkn0B`�$i�W&K��<�G�X�٪��т0�]\E��}�f����[�\c���3;=�~6�#b��2�'�>W�JjM%��uݲe&Q�1�T�T᧮��4�73��t̻I�hw�nb�EP�@��w�igߩ�Q�oW鉧&�81����)1[��# �]Q��!-w{!�h��;���,�=T��.Z�)��!��E�3��)�-���3D�����
�q�EQ��S+�,��;B�vJ	uP0I�>�W��K�n�0�Vn�?O�sЅ3���QY�u[Ů���kGK�@�>�!>u�W�\.�ʺ��2�]x!>������xwđq�'�x�=w����x�1�{�v�c{wxV�g�D}4DOK�������cKí�`��:��tK�{�S�~}����m�v�w�I��'��e-��|�ќ���N���[\�w��3���iu:���P=�î�}�a�=�F}�_���� ���g��o���Ź��U~UyUeB+�]���Ϙ�GW퓣�8�x3+�,�C�=֟�3��o��ƚ=$c��O��\������N�&*-0W	Cǧ�|mak��%�a�K6���;|#�t�%`<+���׈zpH�͟���dK���-�)3O�%�W��s�ٽS{�f�K)F��i@�z`��d��@��$)�
��ܵX���0ߤ���bg��!�"��0:>��^z�����K�,�/��r/����kn���G�O�����"�}���P.�"�ve@Gn���n[�N_oGP+_;���C��Gl&ب���ӋJcdۘ�����7i�=A�	���i�S�W�%"�g�=&|�+e������v����^{_�.�<���]ѕ��ó���ԇ�}qYK���L���5����]����EZ�EZ��#�I����b��{�W����#�e�vz�=H�(%��yu�)�d^���f��6G�A���Y��@nCA���Ij�ޙi�w��=-U�B���cafZNM0=��KnW�p���(���A�+.�b9�s�g",>`%6Ɓ�(�ݎyE�	q%�C�a "�lly��8�����l>�K�7�	Bz!YZ�c?�ܪ?E��IX%7ĕ�52�=��8�c���sup��3|�r�\�i�%r6��s�R��|����PXٍ<;a}�ݻ���/{�2�Q%�/
�.�C�r���H>�F�X�\�˹�Yzyr��|�ղ�́*ҹ�.~ϵx�#�Zd��8���������3ʞee��Ș��3v�q��_a��̊�����;_�J�3�7��'l�t�C�q�2� �+D�#�J��D��v�`���w<@��{vi�4�9�1�w��R�R���o��e�W^t	�⇯�5���|?ޡ+.��=#����=��*�k��}�q'��$ta��s�����BO��EP(>x��(
Iv�
)�MM��իi�1����?O/m�g4ι�\r	�ܻ�M�=�rϪe��}�_F{�9�����юݻ�;i0
~'��nu�a�8��Ms��lw?��޵�]?��i���}ˁozq�f^�eY�k��M$��Z$7���(��uq�q>\}v�P�>�8��sM�h��fԨ�
C�=��/�p[`����lX�]��!ȿ#���7�f��:-Ϭd��vG#�a:+97bHk
�:1�����Z��qG8�h
ke�B�9<�����X#�T6���+腡C8A�†C��a��3�¡�J1D�$���N�����P�D|�� ��
�a���ՂP^�G��vc�t�P<1��ʼ8	���������sTFUi�'8x�}�#W$J}Tm]+29@\6,�V�JN�J�E$�݊a���g⡫�~��n� �x���,�K���!���L�R�i���#~�d�O�]��ےX��:S.�2�A.���4����2��ٛ�Ȏ�!͛��&R+_�a�L1�ʸ�&K�,��_��v�i�i�ԃ����55%��f�@�����P�{KP�
A����3
��~��#4>:�y3$���a�ݣ�1��s�dj;S�|a&$��ԙ���\!bm��x���y����S{c��]'�V�Z�K,0
�踐�����u/�שRp�Q돂c����Ұ��5�W2 �k���l�?�
2b��T
+�8�7�a����|�g ��,RF�(7Y��f&&hǶm�1Ϊ'O⽚i���Z믵�8�n�a�A)+`[�P��jm�g`G�p���QW�kuԺ֗�a_
f�^Լ@�(㻐͉
2�i*���a�by�U[�b���\�S�w�+��A�/���~�ƕ[)�2����
����CAXg�`ۺc;=��3t�w�#O?EO=�,mں�:MkA�r�1��뺎~�5�?��*�e�w�9]p��tچ���,���xƙ����=���,���?��52����͒��9�ݬh���
GM������ �_^���CW���\��.��g���C���B��Fr���F��W�֯Yӷ,x������@V7�m2������
��a}�mܲ���g?KO��"���U~��Z�����kv��C���A��'��w�R]M%<U@��@�B?�A��\�r
%_%�մ�W����2����H�89���4��o,�"{M��1޽m�3�:�z\��Ve-uA�0�޺� ��p��F�X�Oo�޽CKs�FqD�``BC{��Hl�gr��q�K�k����Œ�
M�%5�"F$���c ԉP�#c�Ћ}�5z&Ɨ��U����n�T�/Ӯ%��
� �&g�-��b6��S�ɑ�O�z�|)T�9�Œ϶�(P!��€��5��O�w#�p�0�g��}�D��#v���5����	rRD�d�MKN�;T��!�0�%�d�*�[��ֽj]沣}6ȇ��&=�vM ��
�x���t0��7��P�-[�����6�(�H����g��ni@�[����4��7B&p���]�v��I�Vڵ{7��̓��Fد��txn��Je0��\���YM�R�{i�U�I�	+��F���Z
�p��I�N
�"����3�b�AZ�Ç7�)��`���%7W$G�e�D���$�&$3C�8YkG�d1�]t�,3%#�3����2Ah0��`W[xf���E�i��y]~���x[��Z1�L48�'͊N`�&&�yѠ0!f$OC�L�郛�rp�2�
<	�%��3�>�k	귪�	ez��w�\�3�.���]�K�S?Hy�LX�q5��*lM&�&��>+�Qo9ҧ~�v�.�֕�y_�ަ���$ro3�,��W��sB�+�'��AI��9l}5x(�#J^*ʶ�S�m���>N+�}�.v5��*���H}%){���{*�)��^��P�=rْ%�s���7\@�l�L�?�}�{ߦ���C9;�h��K�E'�?U����Ջ.[��֮^�X�{�����=������0����9X�y��i�=��^ʢ)U���J��'k=_�d)�fm߲kW���9�*rtS}��_�·���z}����f�h,�"x����E��/����k�!�����w�CqT�j���z�����54��m�cꠣ!�٭�w��•�"�b<�ܹ:�׫́�����S����S���}~����g�]�Rz�lA5��@��YN^>-�l)^!>�`=������!*]a�F�pX��o��Df�и�#!���[-�@ub<I�á���}�k
k��۶�!wa:�yFE�%yC�ϑ3T����2�
X�v)�`�z���Ϊ������	����C1�7Ja@*Q)��x�pd��S��7x@e?�<d|�'��!O��k�.&��7���C���%�B����4�+\�6��X��0� �\L[=:�v)�w�����ҿ6�x�\U��8_
4ȸ3/�!��o,�m�d"��s�r٤�)�7c��P�c�
���X~8��CR%��y�� g"lD����Ne�9�|BL�t1ۈj�wڱc'���}����1G�X��߽����M�˿�	:X֪��y=�У��ϥ��y��'i�+�Еo�<^e�f���{�3O��ׯ�}��y�n��Nz�;���[��s/�@W\�&Fc_/��3�ѵ߻���֮�#_G��r2�9t�����KO=�,]|�yt���U��u�?y����\N9�D:㔓hŊ}���J�s]r�t��+a��ц���C=���i���t��'��}���wߤCV�����M���C{�K'o8!�����?�Ù-p�"��(ǃo�BC�H��ತZ�7{v�Ğ��C����<-M6�������áL=E�:�����ܱp��
���ݻb�2qu�*�b�"_F42p`
$��8bj�tb,QR���
���iR���a�L��w	��O��x�љ��K�	~Έj�OQ:V��>f*n�DB�"0X�l�/0��i{��5�t��ص�2x���`Ш�z�ݔx���&�w����EfA�vc��1�p�F��r'�!ۢ�^�ka�x]NF�J`��8�u	;eE�n�Y�̓��r��k4Z�\���+�)zO�*����گ�Suj�'���ž��.�np�A@���NyH��c� '���;)��O�7��"띧��'1|T�\�ljPQT��>����"�,⌽��;����[��x��@ǺC���E�KW�N��/��y�A93�M�Ӈ���V,nD.�"y�G�Y�o�y�]�{�o���vn7�����Aa=�]�\�
g�u�� �Bh��������w���&�Γ�݆!��=��`o(�K�_5�Kyxڇñ_���G_�2]x��tʱ�R?z���=A~�������
A��mW�o?ڴm���EX�{�!�c��Ws0,ʜ\�_��-D��A��v�KÌ��?�>��dLOa�S��*R?��xיݫ��}r��*�iS�O���7������ג�WN�	��"��4� -��g�2�E3b����k�|!3An�39̀xz�̘��V�r�Kh�H�Ьƕ�^6�lK�sD`���'xJ
�$6t;С\W$`�$Eg��lG��VԵ����\�dI�/8,��B�
�R}B�τ>�DgF�djJ�K"p��������z�.=a>$T_�M/�(�1φ�ۉ�aY;��DL��7G�:�(I^%�>pQd�_����#!����K�M����5X�э��t�>�������t���#�b��"���}��a�`��H}lx�8��L ��X�MR*_�-W�
*��@*<e�w����y��w�{����˯l
?��D@o�n���/T�����w�S����7�Nc��}��[���/�����1�eV�����'�o�~|3���b��ҦM[�ŗ7������~����o�����~D������[�s/��Ƕ��j���mw�M�?�[�=��t���]#�Pڤ�@��N����	b�``y�t�2�<��0�o���8D���C8TK���K] 0P܀�d�M����bHh��,�{o��=�rrr7�J%�!��	��V�r��y3\�������ľH|�E�XD@,	�'�i�0U#�ӊ����8��g�uX��U2AP��xKM&,�ڧ�a��/��6,}��h���]���@X\�Zec�v��C�º�1pԘ���l���"͗<)��KuQ�>lI���JI��"�)���d0g4���'TS�(|�v�e�Uu�o&tP��q]�8�_����Q�es�>{?�ς�w�ʫ̀����@�eqw}��Q<Do���"����{�xm�T )y���V������C����GEJ��r/����Y	�:p�(�Ջ�}��/�N;aC���7ms��`_j^q���,W�]a�~��'R.�z���ƐC�	gɡ��5�g���t"��8�9�k�Vں�ں��{r���O1h�¼,r�gX[�J[v�O��ߋ�yz楗�uM~��y�0�:����=���G��YC�yӥ�d|��K���ӏ�N��7�e�Mf<�hA$�WQ������Z�����,�5~���%<���\&���=����{U�ɔ��N4��9�oZ��n�,r�H{��d�pdbBr�Ns4��,����
�7r�M����u�J7��9A���b�\�Ձ�եD���J�:�dB�S��/E?��gB�R�#D�]:RO�Y�X��=��r�	"����r�/�2�Pf�e��6}�$6�Y6��H^�Y��X��U���W��:��(�GN{��zy�*��g���h^����2L�NNz��+|��/h$���#qT$[�
zX�,�@��y2�������C���+h&�Ln�����!]���(L;�GiZ���j�?y�]&��̂,C��L,{�,�7����Z��Ǘ�磘T�He����E�*���ɠ���ͷ�����Aɍ�rK†��	/ȳA����LE%헂��'��7]|>/$������
������Fo8�l�3�>O;w����_��N8�N=y�u�]t����;�#���ؐ�L|��g�駞�5kV�駝��K�E}y�+t���p2�-[�v���{j�fx�w#L��}C����mD��,�ѧ��P�o޼�=EN=�D�(1�M<�?܃e�b��xR�D	V��%7��	e��N8�6׽}�N�ٶmz�!�l�R��v͡t0��C���#{A��o}�z��i͡��q�a��#֯��˖�O=����,�W>����V�X�� �v���C��ux/�w�Y��7]�m�{ׇ��mk��+�_
��!^#g�vj���PRh���c��U+Wp�˗1���#���>��9g��J!/
A�k/��I>�@ �@X{(w��'Ѻ��
k�'�:��N�p<w��ы��'��y@0_V��0_P��x��'X��tX�����Ƕq�&��y�:��4�S�Z5a�=�Ф�� ��d����$㖼%3����0�Û�0�{�u�傸y�ffui�����W,6|`c��#3�}+�K�@��3���UƁ�N�$a�Ճ_�SL�>�ļ�J
��	��#�����iI��w/�l�5����THB3,�R\Ygg8$@�N�.��`�dnF�>���&�)����k��@�yn;\�h���W����GI/��
,�H�h�w>���~nղ�ZE�;�4#cS@`�%�]'Y�f�S�x�쓣�7H֥$�6��(�yQ��ne}��X��s7~/(�J�~�Aue��N�ܼ9�Tf|�\wGU��w��@�R�g��9^�/D�D�y[��S���<���oWE��x̱�����
mܲ���� ����ߛ:��R���+u�e�x����o҅g�K��pb���,�����/�|1��d��}�B��=2=��i��,�)����(���	z��(bFv�(v�!xv|�?���8�N>�����W�~��|�5��`�9�~7�u������3��[�-o|���
t�}��\	I��w�eø���c��o�����Z��JZ�s�(rR�\�ߌ�.����G3oXo)��彯_�3���y����-4T֯�s]7�g-�����������,��t_�T��E��p˵2���'�J�d�&	M+Fa�,����I5�4�27t�x&� �CUo��@O�<g��s,���ۆ�c���(>{�\�C���K$a��^��z~� dUK�Ù�!�^=?Ӊ`
G9
��?,�#���<tby'�OZN�1G��u^��)�3͸%�v�ڢ%��ߥ�����P�dK
�b`�2K�q��Z��2����0PZ�6)������R��y���+�$��-R�W�,2�꒲XȲE�ڴ��@7�*���Rѓ�;��Ue�`�F@��ZQi������g�S򀈘]xW��3��
"+ n��B�	�"�T!�{"�y%(s�	 ���#��:�y�}t�%�~2(���O���p���?(u��+�M:���Y�|��wҏn���?����9V,�pܱlM��3���v�펻��[�`Pd���|���c��}�[���ak����Mg�y��ʷ�M��I��pcP0���C}��ao���y�Z����R6��Uq�~~��ߣG{���2%�7��Ѵ~�7���/���mٲ-|w=���pe+����}����]��<@�5<��>�w�!�V�w��{�J�;w��z�ۯ8h,}�)Z��X��^�!�6����[��'����ob䎻���P���}?y�,>��+�rY϶�|�iZ�8��S�|�岋ٳ��0o׆g�db����t}���vL�:�/}��y��`q����x7o��~�mǎ��S�V�.����~*��/~��|0�0�����^��>�WC˖-c����~������G�o��5ZuȪp�9z!�f'��t�w�A����׾��w�oX{XO?�eŸ~�������������/���cn)
���V���7=ɞH���([A@aGڸ��T�)�0��;�m�C;Y��93f���ixILO�>�Û=Gf�ٺ�8E�&�aFT�	�9������T�V��|h<KK�6������U�0xN��+��f�C�
c�8�^�V[�B���X������hPv��s�v�����5�1���-=JV�JLR�˪���9�7=�a���]�|�������W�	:�h�z>�:D�m��$��_�=`+���.��픙�jLbb͘�s�%�)�㟮kl��{�g�J��w�
)�jc}�H�.kֹtMs�La�ǃu.
�q&�3���
8`������b�f�G�4v5�Q�s�Js���:)fU��0�v��D�c뻨�L�EقX�g`��sPL�l
Vb,<�{�i�+�I��@�"r����]�\�5	�Q�`�i�i�Z/��矧���~随�9����-t����[n�VZk} 9�$Xb�pf��s&��r~u��g�����bAg�H�p&���V[=N3P�R��{�`�{��'�ſ��O��'�@KC�S3���+�?����G�ҫ�n��1�g_�H���7�#���}�s,k�3��I��w��M����\�a��ӏ��o^K�l��_�b�i��t��dz�E>$y��:r��͡+u>�7]w�u�Gn�� �jXH���݀�>|����1��rI=��;�!-)4B����ԠNk����	��Q6ڜ=�zC��1�Z����0�G	�^�Ca6���$@�{�.ګaf�#���c�A�"���}�7�{M�^��$�!ˡ���c7h��NN2O�~ϲ~��g��Κ��̬�M
��(g
��:t4�	��Rϑ6G�P���_��ST�~�԰�������N�j�M�.�2_^.^�S�QHT<�*S�eq�m�pr����d�ڟ2�2��]�DŃ߻�<e���/t>Ŀ��࣯��B���qdò�&zs�󟵯HY��$%�y^�X���lbuZ0��s���^7�����c�ӕCC��Jx1,@�Ʃ'�Ï>N��f@�$��u?��?�AV6_��9���Ż+�%o��[n���?��[��s`@ѿd��r��w���l�F[�m���_�/�7�^Gu$=����(� �Í��N��~]~���Ï�w~pC��Az��"��~�㡟3�sǮ�PJ6�O<�,������K�n�7���x�zﻮ���J��qgPV?L�s$�g�~
+Б��A��S<|��X�z=�,Z���0Q��[�~?=�ētss���˅o<��p����0��<x��gk����ϰ7
<Z�d�A�m�Λ7���Mt���)`O�9�J��c�G�y3/$�QG�`6\�5��0�a�g�y���{`1�/���t1����_�D󕯱<,����9���ܻ�~��c7"�.@?��Ǽ'�-�=;���?��C���Ú�@��Y�����O�s��@��~��Ń?.^�I�1�w��>�׽��C��v�]�?�1Z���m߾�o�����B�:�9!7������e���f0�]�C��|DOF�N=$$��z	�բ�/�A�vY�s���Q�y{�%���#`20/��`O�3A�V���!��}��X8`]1X�>R[�a
�$c��y]�4]YţLz	�x��J8�a�sH�ԢK[��N�e��i���0eӜ� k���9(Z#4>�D���D�N?L�a4zDѤ৒�DG^�6��(�ru��7��6��*2����o�G�չZ�+��o��\�M��3=��]`GN��;z9d`���r���JǮ}/#8�5!���@�"qh�@���b��*?hu�9r&O��@s����7ΆK�m�v�P�0Ş	�_"��$c�\�|9�_{-_��*�� ������W�DϾ�"�ž���w�DKc�V�kx7��=5�2�)��ͯ��oLG�.�ՇҞ �q#mڶ���뵳�Re=�"1PpA�F�x��̛��s:�3�S|6�	�FFƘ?�Np��&�n9i��PG����<�a�����}��i���ᧀn��~��;�g����N;�8���+�_OÆ�;=��D�?� ���{��P���ՠ}_�Z��E���P�-'e�hx���}�Br����[�w�]W3{2<�1w��x��>��Z�C�Mi��ZL›[
��A�2�D��x=D@�k��g������s@9D�a}�C��%�~Oi�]��!a�
˓���2�]� QdQ4D?]p_Zj����x��ނ�d�(�b�$:��P�N�����ꔒ���~SI1D<H0�
K�RfG�x EJq�|�ھYᤷ!y��4��'M��B��L���]*�d
'Xց!�a�-���q�	P�n��l.�PO�YL�d�2Oel�$;�9Yh2w���&��oۀ*� �_�B�����~[��#E5t��N�r�ϓ^�8�2tI���?m�#��W7��{zH�-/��H��w��k����1GI�P���uoP ?�U�lPV��P��?lM�fYA}�9g00p�Yg����?�!�����w������K��wPCa��ۃ�6�/��=���աݳ�8��>�(���v`a׮�ܷ�A��~�Z:yÉ(�r����Ƈم�C�W��nbD�@�y��Ʒ�ǂ5���@�<��޽{��y���ƴ�
B�yg�ɊK���SG��;�ӂ9�;��1G�cC��m�[ld!T�ծ��@<h�Í:�$��M�PJ�?,5��NV���k�{4���+�gw���h?)iGq�ɯ]�z�ŗbr��?.�2G7*b�	�ə�ibG$Fg�"��Pn������/�G�̀��_��<�p@<�����w_E�w�qr�4�O�c�>�~x㭼7a�@:��hY�?<D�s����E��ץ���m(�a?��8��	�
��}8�X������PW�`����94�pg�$8G8+W�����~F���z�K��"�&f��qg� v'BY�+�%ܙ��l�ۍ�q�E�6�8�g'��e�VK~^f;ja"Jәْ�I�X����
�qN\PKQV��,�p�f��9)������:aP\�%I�+z_rU�YFuf2���L6J�sù��p7ЂѰmzڷ1����ziW��4�a<G~91fr��Gb�j�V�������	��Χ�mWS�'�Y�c\��-��#����T�*��%˜g��Fʹ=yux��~0��(���;1��-z�`�&%���-bT޼���2��<M� 3��n��yv�k�L���v).��x��@�:��w�M��K_�^/u�X�d�y�)�~��t�q'��̓O��N>��L��)~6l�DZ�Gy,Zy��i�DQ����}ҹ���k�8s��:��b�(���z�����瞑s�Q���Ku����Έ��l_0��<X�`�+xL@�y;5�9l�ƫ�Þ!����%���{�=��,�
i�4�>�!1o�����=i.�oS�_���R���)<���.��n�Az���9�]DG�]۷����hg�Z��}>�ε���J�&���L2����@#�:L��B�/����WL�q��E� ��Ny#���%~6��U-]����f�W�]�蓾]i�I]��{_���?tU;�A%��|�ڬ�9��/�x�^u�5Z��^����u��
=R[��;�~�s���ۣ��N��z��m��	k/7�άx���#�ӳ\�'�gu���^�b�r�PFA�Qh/{�jԉ���2���U��X��j:Æ���h��X5��۲.A�cփ�^K"�{��!9O:��4�ӰY��=����j�D�5��L�4�<�>v[w�Y^�s��K��)*��Q��I�)c�M�5Bj�����ݴڧ|9�[���m:� ]��v�c�8nÄ\�Z�{۶a�;�yr$�!)�%K�"�@TI)�#�e#~��R�N
ߠ����=;i�M���`�2�L/�awLXȏ=�'�`���NP���?}"PjZ8֛���u&}�{��w��!�:d%+�a���o\Ko��B:��
��Ƿܦ���0U�DP�e�[���V�X����p��7��JH�����;�^�W�H:�vV�X�`��x�n��-�a���+.g�B�x�잜�D�G��]o?�x�aN��
�P׊ F(�|����(�����U�[#V��I�넵��Kyӄ5���o��
J��[��;�f�<6����#��e^V,_�<J����B�T���罨(�r�1�!��L�"��@6ѱGE�q:{:���yop/�',{z|��Һ�k�0.�h������q�*�o��FZ��x�EC��h�e.�J8��~���AX�z`P�5��j��	'w�$t���H�c&��n����I}8PG흀" J9ÊX�XK	È���1�Ή+[G��%��&
�$ϟ;�!R�>��g����-�u��0���Db���^Kry�LIB�R��t���7<Uxla��d�T�x?͞+��LV,0Pda,-���eC�#�s���ډX��SzH�n�A=i�ʢ��b�
)���*�G�3 a�L��{�b�(���$�~�M��U��1�ĥ�*`�s�/R�������O\�בm�%��ƵM�u�^ƠվDq|y�2��/�Q��s�����[�
&�y~lou�AX�}Kcҹ��d^��Z�*_�KR`z�u���a�r��֒y�x*�3S�a�<s�-�W�lNI�k@��?��/�ϯ}����w�SW�y�^���>����o����yj�w�C�}�
R^��t��`��!�|:]Jn
��:�n�����l����qy�T{�|.,q{��0 ��(�w��=a���?��'w�:m+� dfz8od��S>s����F?
=��@O��"���H���g>����]t��Χ��;����}���/��=����:���I��Ŷ0}?`3�j��D�������)�����1mXҚ9Wk�'{���{�� �,t?����������x��s���G���/ԡ�(�;�5�2P���U�n%H_����^��@�03��uӢG(�a/�:;�S/
�'�*��N��6����>Y���5!�A�&���<���ѯ@w�,bĬ}"l�E��pT�$y����]��d4ݳ{W���9�l(m�*�#|��H������N3?�(�7����[q��	9���&Fb��%�	p�*�3�x_�,���Rf��&4��u��D�,5H���&s)��0`ŶPI,��#��J�[H���x"�A��rr{e�f˔A���Z��:x�Ko�E��*�j�1�7!�jҸ�x�8y2R�WA��z)/��|
��1_�iwLp����;9��?���>��ҧ>��*(p
�9�أ��dKv$F��e�K�z�!���q��cfxǎ]�m�N��_wؚ���K�H��c5A���q���>���e�eMPxC�s��0�p���+�qx*(��
��o���8�jRsH���D���������K_���i'}�� {Ӗ������CV���B�p�0P]m�J	�����`�@Y�s�.N�����øfB�$wǼ �W�[y�zN��=������=�c^�ɻ��;�(50��}�SO9������U]��9�‘����\�G<p�<�p��0�WB?<�������m�#'������uctD/<��\8�}���`�Zĸ�jٲ�����?��G���ᴠ��gL��f���饗�
���f�O�w���:e'#���.�K�d����xр�J�G�%K���2�6%E+�!M"f��p@	<q����y8q	�0RP�a�2O�iR�2�cv��‹�!�$)�89�HG�H�h�	��=h�97H�v���}��4W�'���{:j��ָ3�d�;e�>z� 399)s@�
C��3E���u�/,˾_�9��N~ȟ�$�K^s֒��Xw:d^�s�g�m\�5�3�sk�]�54��0K�� .͢��ͱ��INBq�#C,_��W��"����\]@r�W�u5��<�(�w@]C��=�//��	Je�`�{\��{������2�Ny��W��"����Jz2�,���J`x�6}F�����<�~_�h�D��|Jc��Ta(�^6�����Fw��~��#��j�{$�3m�p��
��^�}��)Rvw��ԁ��d���?]P�5�[w�(�q��X���:|=�[��CV���o	B}��
|��-a��F�Tբ�������FN��a����F�.�<d�r�*=��[7�Bw?�H�2�mWК�.�G��2�[շ��/��!�CA�Wx��}�^�*8^d�CW�<��h�����=_]������.#;�k�e�԰��2-�����!_?�N:غX{D��~�����\�H1�d�l�F>���\b6�$�^�,��vj%$,��c�F�=G\̋�2z��9:����r�/�vm�ɠ�`��e6�8�z��Y�nq�
��W�}��ϒ74��Wp9�29L�s�;n���A�SiEpfjﴄ��D��
��A��/*O̹�'�댷���RȀ�$~(���OQ��zڎb��m�����uĥX��L����#��*V@���U�\>v��a�WoG15G�oK�R:�$Y����K�	yѢN�
��J	Z�<5,[�KIR�ܕ�r�Ɯ�5$���īE��gW�k������C�A}�O�O\�η��-��@txr�����?`E��h�=Dd�h�'���7�C_�b9�y�ɜ�#�G	�\�Ph���=��:܃B��o���>\��������a���t�t�)��>B��_�;�@��Z2>�{Q^��C}�^x>'BG�+ �o��RMu�1���_�]��~�?�cN<�8���_�*{�lG2�u�	�{yw̑t�i�Ѝ7�Ɖ�7m���L`�a��7_�:'��r��6�s���Z<�����1��^x�.^}�[�6��(����m|�Q���^@h��.8�n����?�.��︂N@�e�^H��&���� @(4�OC�t�#֯g�$"�1tȯ�sΦ�N<!"��P~��y�[�_�{��/|I�d��cW�=BB���g��ںmmۺ����课�����ba�Fk``���5�\5���/�x᥍<n$�>$�3lf%YR��0WR��Yh�
Gc|��2�}�Ug��NC\	G������W���#aK���+���k�_���uF!3jVl1�m��[��s��S�\�$0�7SO�+0�$�B�0p�*'	Ŧ�f%V��d�-L:�{�����C<{y`q"2*b.�[#�����1�T�Yf�f��J��/Ӻ�ϝ�h�.ttݜ�wd�5V~|0mMO����	�>�e�t����ɼdu-a-̄w��	��]3�腘�%W��$J)�a
���Uo��<����6O^2^�kv!�4Tp��U��j�T�N����	J-SC��_.S��ژK��_V?Źͽgb�9��)�c�ϙ[�F��,ZRU�O8�?�/W���@W�uh�<>�K��Lm|�1����W6ҷn���>��Jί:�nս]�O�����t��89K!q��x�)�ҷ��n�IΠ��յ����=oy�X��c�)����o�;��kM_q�%t�i�wׯ/
��~�;���[ue~�I�'��f�j:�����
���k�e�J��tG�n����޻鑧� �o�F{p���(��}�Й'�m�J��y����-��g�x"{ �x�iJ�߸��q�M�-��F�5�`�O=��8�0�5�X��w^e|�)���wsRpxv�^��g�� g$�����c�
��pY.a._���tۃН=DO��"�#��J�h�S(��[n���~�ֹ}��6m�/|�t��G1�ЋN@�5W^E���o�����c�GP���D�=��P����K�
8�Ț��?�U�:�JP a^�pns8_2Ľ�=F�>��)��	�6�K��w_��z�giX�|�d�^c�/~�{�¦M��X;x�iE�E����J��y�7\�ߥg�EW��F>��O�y�7����9=��4Wr����Y+�~��܇��`����'��uU����z�֫�׳�����C��Y�����,�oL�。��>����e��UZ1M��PT����_����bJ�C>��,iةҫaR��kj
����4�GƊ�Ƙ�=�5�5t>���hW
}M|44��hnb��Z�,|g��<A:
�,��G�RN�� 
�nao�c��L��o�=L$7	"�@��D����0��8�;'k��c�5��-��!��Tu�uO���<>��Q�������'���ى��*W'e��;��,������W�.�Fw��'�E@
���]���5z��c���#�� 1�N
�%�-gJ7���xZ.�`g���$�:"CYR.�,7�>'���G���,{q��M���6<.&a��>���I�����~��x
/ȑx�����7^����8���\����S�ge>��?��r[X.���]W�5��X��|�},����|�{���A_��0���=6(�w�dE3]/�"B��5�$�_�w\�q�t�Rz�[�D_XM�����
nb�DP����9[,��]�밮��z+�CbW�?��=��w������
Ilۄd��/���}��^	Gy8'CG�����N�c�>��z�'����Jxƿ�+�(	��;�x‡�����㎦�~�}�y�m���Ȭ\�������a�ȳ�
��^9a�\��s9<d0G�ay/��N;��P�
~68��!����'��>�j]~Ʌt���qR��P���ׅu���Ʋ~}7h�M�W~�^s���o{3����}�f�
�C˖-���~�=N�94����O
}���}��Ռ���9ĸ����{Ѡ���_�w	t�)�旹"�
N��k�-V�p$�J1�V�¹�x��mO��^�N#�ۢdcD��;E��J�Ԕy�:���ޔ�\�I�/��
����0w��g�$($��X��b�+�l6��R�i<�f��@�L;����(ū+(��Q���9����<MZʨH(-0<�vK��uH��jZ�"�c�����Hh.�%3�xa9Y:�(i�W�og�h�Uj����1�lv��N{v�ൽtb\�uI�C<E}7�aM�7�x{H���Bo�S�G�S%�2U�2y��F��=a���ի``�\��'�{���uƟ5��Й���a����k�ً$8j�`��<�U:�)%���2>�>W�*���s�ͻ�C���&*���[f�J{ku�2� �uhU�G�G�]_���;�� {5ܕ�HZ�v�7>�i�G_�η�}��L�cL-�؃2;ˌN<�X���_�����P_w��[��WWh���t�m7+@�wJu�9�ȣ�}W\E�y�[����‹(����M�G��=��s|}����8���*�-�t�АaN/?���o�y+��7�so�'���^�x߭?y����.5�֑�y�ΣO��=t�=�{���Я^�a�)����kA)��*�c���5s�g�.S�y�zeo~���]�̟}���kx�����~�]�d�&���C��Ⱦ�߽�6:�
�a�zއ�\y]w�t��w}�r�R�_>���!�@���/�ymc����Ο~�qtՅ�g�:f����٨��P���s?y���<��>����-��]s@� �Ͽ���n	r�uw����
�G�|��&`�xx'��`��q�E��Ω�S�J7䕳H?��N�����R*Wy��=�V���b�Z%ո%�kЛ�/*0S�͡�!��IɄŨ�ӹ�7���5����~T�}�!���� ��U���7ƒ^�'�����g���N{�=�E]�p��`���]%���*���ȑ
)�r�����;bX)�l`,9L�P27݈r��Q?ºI{'9�:�����80n��w�$�g#��6^�C\��>��h���hб"u/"W�,�2�#��s����Q�L��S�'�l�\�DߕU࠲,UO��]dHq'�r�r�V���D0稇���/�֪��2P%>�Ekc���c.זK�@�:�@Hi��(G\t�M��~TF+`I�ʐ:j$F�P�9x�b�E�o�|6P�Y�N��<N�:�	az6,;��z�<��|�P%��1���@�����\��d�pZPrs����CO�pb��>lXh���Ǎ�N؄[���:Bxm8��vh ���FP��Tg6��u]�M�O ��L�aEx�!��mw�M�?��=�8���:�V���^�4<c��	�g��u<�^���OS}X;��96<��w�*ul讣Ւ�6�%盩Ѻ��u��
(��ԓ7�R��xY5}��YFg����V{�
�X3��
ҏ��SO?G��{���BRn��	��8'�(�9�
�{����VΏ��I�N�4$��-�/�j]�K�(����s�V\U��93\O��6|[v�o�p��f��~[�=SQn�z
�0V����mN�>�gU�W���k��R��s�p�D��R��Kt�ucM�>$b���`�$b��nd��m���D��c�m��=?$����f�q0
{\�����j!���+g��1��w�ݮ|�{L����ݢb��j�t���/b��֧�I�K�j����%�%E���b�j'R�[�+�y��X%:��՗V�n^u>֦G����y��X�;}�.�\;�z��nvJOyE�gKW�t�l�e	��z�9ʞ�+�7��~Ga1-rkV�
O�32��3�ٳ�v�u_�/k���!_I�̫�/�Qm�5�rϤ�&�G/m~E�W]g�2(����*��p��Y1fI��p��d�

G�DU罡nw
}�>���u.}�㟤�N9m(��K�W\I��>���g��|�Q�ZC8�m[6��i��g�3Ӈs��@��mL�M���߼�����tiPt\q��tԺu�_��e����sF'o��B�� m8���A������i�O���?KϽ�

7b��ah�D(������_��9�>��7ӣ�>K����xW/;��b�G8����۝��F�^��;���'uͅ��S8�?�}�ߣ���oS�PzÀ*��ߏ+/����'>N�W���S:��}k��˻
��nM�w������eI5Q�G�ڇ�@4�W�ǪO��q��{�f�0�AĠЗ�J������ݴPԭ��*�����_3��Z��>?�����ϚV��oQ����uU�k�^.��Y��_�+�SǙwp�MT��Ё�\��h��,Ϫ]�(l,�a���ܞ�+����a��E8�����d��#�I�D�ז�Ht�-�{���ݪ��L@��g7 �C�3+F2W��D9a=
rR�es�!n5<��k�<Q��}v��A�h�c�xM��\ס��Eu�$"�Ѭ��C�SΤLml�i��N\��e�%��6����AmY�d�<����7�uh�u�)vݧ�sy�q�S:H����4�(��	�w�����P�������q����ƌ��q���(j�vz��+��|�nc�q�g� �9��3X�Dh��\v1^�l)�֩�s��\-�Ϸ���/1d������bzᥗ8)�'>�A��7HH�@�R�K'ETv�&0�o��n���z�I��٨�K"Qʆ�p@P��9��`-JU(F�j��Z��|����Y��1]�{�$	+Ճ�,e�.���@}7���潁�A#Q1$^gP�HN����`̌$sd �c��`D	�g�"����FG��R�6<�x`
y-�s�ba�¡i?
�I�����W�XX�����{�Nڹc;?�sD��Zԃ�v������1f6ߗ�皫(�M 1��6�xw���W�V��}�<T�e��`΂���A�zP�g]�'�g6��x�;\h��]+
'��	�P��k�J���/�E�.E�K�|�+���X��(�]i��פ�:�����^(�J)���r�Q�g� \�H�ݧJO��}W�G8�O���x�8:{9����mqv�\g�G(zC8W.����~��9���s.��/�����߷�?��d�zF��rzི6+Kv IH3GkV��_��jz�E�)���S�=���g~�߷ko��
���~���O�=C�"�iV-[F��5�������g_�{�G�hϹC��|��0??���x^
��RZ��w��_�эtg�|#x��z(��/�<]v�9�I��:'s��O���毿�]�: �Aʦ��N9�~���#�����}�"͕�'Tg�N|�.�;>\���?�.�|^�Z�iH��^w��C��5�9�)F{����i��.�C����&�i����Y呇��yJRD&I�G�Z�֩(��4L��e#��E�)܄�P��%��	�`!�M7����mƼ"���+Ib�v$�Ep��t��}LL~g:�ù>�r�C��b9lw!a�9Z��,a�]D���Ј$o����/��?��ȑ��p _@�2�1���V��?FrP$U,�������g�ƾ�&'�=6���=;*=$� �첊�.��'�����F�ciS�)Q�
>�i�ԣ��Y#z�ב�^��>#�fe�	Np���O�ˊϐ��*��<��#������
.�f��*����x:��u,0LL��+�[|ԋ�LKš���r8/N�X6���\)���Pv���6�kq��82�8�8�ȋQ��(�a����9=�ÖX��
��C��4�%T��bū��Pt�����/fYQ��
��O	I@��I��z��^(f��؞��%�<�FE�\J�c�i1���丢�=��@MXv��]k%��l��\V9��23�K�S��B���`��e��žL�������.�ٳ��3O���k	����*47L����t
5�k)��,��Ƶ���Jo�Mi�}��KY���F�[I�:�����<���Է��F�6��(*dI��*p�A����,��RboY5�q��+E��I����7_c�K��y'Wܬ�����tIV�M��*j�l}�@�D�4f4k'�6I�(����Mo�:���e��λ�t-s�-U��5�!�Ow�%餃G�������yM~������k���g�M��k�[n�_�I�"�i�5r�LO�e�!�u^�X�P��w
^;W_�V���/���;r(��5����<KO<�|�C��UW�o��'h��}���O�PG{����^]p����H�~͡���}�qڹ{7_;��钳��+� �ʗ��HN���
'���φ>�FEc�����C�����m޾�^/+���-t�aki!iQ�)'=���X.�߮�)�W�uW�d2Q��@v�?Pd�{-�`�w˦�w�ך��=�W���|�J����Uԫ@c��Nu�볲.Y@EV����q*�<33Sl�ȡ�!�3�7箚�R@A*���D\�ռ�+h#O�.a�̠H#e�g�AFZQ1���C�jDZ�p�fggc$����$Nݐ;��Of0�{3����p�L"�d��&[��Ȥ��FU �!���ʙA��&�u-��	7��HQ��7 ��h�RT�*be�H Q9��e��Kr�H��:4G��~����K�*:�T�Sq�[�Q�~iΐ��Ef-%!u�I/e%޺�B�\/�x�*<
$9�^�%�˄%;����*
��U��X����Z��A	:�j%-�"
K��R��0��I��d$zn����F�?K1dN$���a��Ω7F�	���*`B:�N�s��8�.١Ú������]�il\�\���/���˸/€Lk����Ǟ$�bwr2��6, ��N3C��E�T۸%x'�g�m�O���M�@��=p4[�&��g	�Q�c80_��3C�5#�ԪTTo=\�(X!�4�L�k�"/@GћBC���%!�f86+�����J̭0�Tŕ<�y#�#(�)�f��s�G�ſ�IR6\.���|�kVW('�z�'�Y�X}�{+���Q/��'{Z�X�^�j�yeO�ښU�2������W ��ǖ�-	9�tOS��������|�;ʧ:�V�,\e^��Vxo5�ީ���` ���+�j���\�A���2��3��+2����es����=��q�[zzSb��u�u��s�v	�z8�4�x�2Q�!/�C0��iU����{}ߏ=��ə�EGv}�=�k�о���^�޻��#�q���`.[Baz�=�y�5��s6� }���0��6�
�W:z�:��;�N��_��,�"$̾�m����^�㡇�
K�?	�W����rU�\/o��A���y]|�+5dH3�<��M7�O<ѳ��k��/��S{'�/���=o���~�e��/}�^/t�������`���m�Q^�K�r�w݌���]S5sY5u�©!s�(q0�x��l��7~�]�z����f3�M.�'���S���|��T���46U�<bxX6:��0�0�`EK�B��8E���W�l����+�Ԁ
�	���_��X�x$��[���u��Z-�%��Wob}M5��ML��G��.c�+�����!��(�53����O��$�/��C���M�
yK�CE��J,=u��s�S�L����m�;��	�T;����c��=e6�9���H�9�ıQ��.��p��iP�dQ�*se�5%I��}�����	�)�a����|$��a&I���	�s���.��>��c��%.�&3�/N��pw�I�ep�P(�(m���"��H��H�0=���W�.x�d(��p^�Q�V�4Y$ O��p2b�{q�d�j݃�̋�8
R�,�A�����\-�Mݩ�	b��������RV�iٳk�k&'B�ėWE�e�����y@�L �
�y����a�	FBr��4�N@���=+PgٝtV-(�z}�^=Efia�ԪT�b��s���:v{-"�y
�oR}n���cx��
er�խ�v}؎�F^��7�o��;���Y(�'�����U���(�j�wi�
ϭ"(�"��f�ZY��"s�V���S����0.����RY����M�O��Z�g޴Fz��P��+����la<��Œ�4��7�B�9���y��N���M�HoM��Y#������2��
ż���nս�EV���L��>�o\��j]*G���
���bH�Li�k�ԃ���o8���?��I���?������]��Њ��0�Dj�:ܞ�~�[���D�C�P^������{�Ut������tR%�c��-YǏg�~``=���s����ib|���~�yr�n���C���f�Ƣ8!K���X]�_1�!% ����7����Ϣ���Gt�c�SS�G�]K?��w�q���ah2��ȳ1�3!$0
����CW��0���71Ü��;�{�;�:��	�F/Z�l����᧟���<�.:��>��3�k��s�D�x����s�@�'�yb�|��-���k��+�F�<��|�O2����S:0��0�\~9+���a�����~
��Yh���\ߏ��@���
L9��O�����;��N�V1+�c-�W/�վR�|�4���ZBf񪐫��^]��v��nUh�-��Y�ˉ��|$@t	b�Yjμ���pRV�Gd�Y�����Ye9�Q���
��a!�	�[0߉�9_Ȭ�#�vb�SL�~����W	�F!ЧLsR�+��5
?3�x�N�ŀi��|"���:�n�,z�1�	p���*%>7O_��@ȼF�3�a#����/���+߆JT>�����{�'�]��GQ�}t�ޮ$�ޚJ[n?�Z����v�~�o\5�Fu��;�,9)�#g@�e�D��&��X,ڙ(�U]鹈�����w��@
V�i2t~�
�p��}_�EZ�Ez����=�9+|a��A!o��|�A�G'o�I�嘖�D��!=�y7�es������C9S������� �Y������e�~��x��b`�Hh�52��Ñ��lA�r��|�`�$�`^�b�==#��#��|D�|��[mm�`@!�[s�:��y�:�R-��l��Z��ȣGL���lL`���߃�s%�8�3a��/!�Z�<x�

k�凾X#���	�$5�!��K�(<���w��I���Lc���1�-�W�W�������5��)!f��-c�I����e�EųٖdJsKT�=�5���*}$����V�†��3!����J̅o�+3+��A=U�7��KѠ�L�m��Nk��ooa����L)��QѣBN�IC���2�}�uz�;�l��!�CM�2~۫iMV��=�|G�#��Z������Oo��2�xQ6��ז�QGNo���9�p�M������_��ߣG�z��PuLy���z~6 ����=���3I[6o���^���?٪��f]+~��Gҧ��f`>0��'�{����V���/%}��Zw8�ጳ����s���L,���͎ �n�r�m[i릍42:�p�Fú(;b�؋�U �
0B��m�H<�=��Ӵ=(�׬ZIG�=��:i�4��Y����p"=��S���6B4!��y(}��sΌ��z�^�b��	:b�z���y�����ˎ
�Ȟ5�g������KW]xA߄�o;����/�~�>��oҦm�z���3�W>���y[�lܺ�~�o�x3=���3�k���ó���-��|V/Z��P��}��y���7������z_�{��
��S/�@7o��A�Ê�Q~���k÷�x���GK�Ф\��@��yko��~4X��Mu�k,1�u�p�=��zu�U-���L�8��u=j�=�Y���}�L�{?��_�*�L]�ޠ���\�W�W���V�Fs۵L�4�?)�@+����g��ҟg�u�>gn+�4_'�~$&����9�'�G�2C��ѱV�+����R�����������a��5f��yEJ5�,�X��pb ���	�����q�Ip�qA�m�A@�{���o^��;�V�2��8�Q?\)�A�85����*��יf]|��K�i''�r�˟�O����$�q���Yb@:�
b�.O��>g��%|W2>��g�\���AB�E�>�{��Ť�d�EBF�S�4Y��is�G�$U��
�#"���"�1��*�>}p���$��N|.H�����*�J/m:�-ǖ�����xqj��H��H�4OJ�H��
�������NP�wJك�p/yϗ��)⡌�^j������؊u����|����fЮS���.8�˨�0!
��%K�]��Z��d�Q/�g��*Ŵ�|!I0�Ⱓ�Kf9N欸��@�/�"��0���B	&	B:�Qpn�q�4o�x��\�j�UH�`H`�{�n.7���U�2G�cC��Y8*�%�AL}��g��Cu�Ex�B�Y턵�g�ڱ}+�I���$�Uo�<9t�gl�*�
�a�lZ�t³k�E��>�
/�ù�_��Z�9�L�]����V��_
*N�M�z�ز�/�q��� <7�_m�T��*����R(J#���G�w.IH��"Zೠ��O��9��)S�����.��T��l���Hc"���a����$wH>�9��up%�(�l ��*&H
��]��wӻ�rE�w���l��:��/�Z��_�<���ִ/�G6��9�<l�	�.�|�`f?10@{ah���!��;���Co��m���+.��s����M���}��W^ka��=��������|���7��ԥ���ؓ$�<,�	��&'j��=��@2�9���}7��׿I�<�+�M��s��G����钳�Ұu��{�)�����C	�Uk��/�͂y�Əo�?��W9�H���O�x�n��>z�%��o}��t�����?r�6�7o��>�������z�zܱ}�������"�B�x�;� $0�w�Y����i���x�ٗ_��s�������=�$����Ϧ/~��tP3F	��.����-[h/��,$Y�l)m߹���z�I�mm�6��~�Q�ϫ�V��n��#7�JT�K�s���ީ'g墊���\��^����~�Gn������������F��αռ�I���,�xԪ�
��;9��Ƴ�	�*�,�w8$�P���߈�R�H��쌄҆,���Hp�Վ����^s|p�]:�����%�
�$]��Y�@F���Q#K���Xb	@Q0�1���e�D_L��}���Ɍ���Q2#��u�Z��f��@�ɷwgs!̭-�X�������
� �4<u�G>S% q�F�5ޕ���V-?GLp�HǗn��V�43�����JG�~�Lt<)�tDT\D4��vE{��B�e
������ǦM;o^@
a�k(jB��T�x^����42A܃2-m� �m&g'�Q���,�"-�"�ʄÕH,�[p�T�\���B���v~�����a���b��n8p/��W�"�
��Ϣ�Y��@|�g�ܞk	�����'����E�cb�Y])��j��IK���9�y���cp���$���(z�6�2>`�>{�5�C=�7�a�rF�+��)N�>6>*GYFWZ�FH�.��H�<���Zi>#���Q���G��<�=�vҎ�;4�c�f_���)��"���n!�����h캌8����*��SC
�
�����4�ؚ�`�	�Z�'���5l}Tcb�n��Ό9l�k))�{(��tHZ�Y�� �*ㅕÕ��L���73�E��b�c�7���mՄL2 F��~v(	V�[�A3�1��gB�V
P0�#� B(%�̇x���?�ko����a���M��y{�B�^���L��R��:Sl�7DwR
�vi�������}�!����配Œ�m{�u������oӉ�Ks�!	α�+V�!�V�ކ�}o8�:3SC)֮��N�g�_i�&�q��B⡧�������O}��q�E}s'�p�4���dkd���t�9������p���
{-�d5�^����?��o�4}�?�S�q��'7��w]zI�G/�?���і;{�A��S�=����d��?�3��m�I���2�w��a%��`f���~_y����[o��AqN����/�q-�����B)
9���J���Ȼ��a{O��n��ࡾ#vy)��\�7��r�qS�s�_3�X�����<'j��X���]�_���ܰ��Ux�|�ףb��܃��{�kჍw��u�B�6�����޾e=��摁� 	�$�Cr���k:eC {A �1;�je=f�K.SΛ��"Bl��`�C�7�M�D�0����R�H{v�@͌�B�X������ǵ%K
��tl�	^ G�P#P<�d��CHo�)���6ê"�[���1e�6ſ|�7�(���%a�K.n5(�!D�8XH����՚�?�����7���L��Z|J�y�(�t�2��h�k�w��I�-(����Be(Οb���`^�	����<(��.]����\^&KnR�LD��+�Y�y���!�P�/�x�"-�"-ҫGbq�`%�YX@�By�B��͖`fy��������	��6<$���4�c\/+~g%&,)��5����NU�h�7T�L�!"��N��"8(#'�.
��]�Z��̅a J�b�%7i�*܄1�l[���.�f��P`t�M��XUH,P0!�B��$��X��8�����3(�9Ԫ\�~d��<Œ�Rr�W%�v�]^�-|�u�;�_�H۶n!��pA)˟��ʻfO�Zp�e�X��JX��"�e`FRl��X������ʩ�Ȫ��W����(�#�p�Q��s{r��>�($�7����2Y.�'}VX�����
��K��٪�h�9$�aՎ{�|u^���^Si?^�S���bo��I6���K^#e�Q����'���^y�V.[���&,#x$�w����U���W��K�A�a(>}m�˓�x���@�ޓ��7xk�n]�; ����~��{����"E�}�C��5�gw�"��k|I�W,[J�V.�CW��ph���@��״e�6��*{M���M���A�_&���VC�W�����Vx)��ٯ}}`8�t�=�[o���>��~-tR�d�����~�C���4���O;��zh�2xw�u����{�5�g]�ʗ/����/P?z�i��6W��'BH�?��W̩��w�@���/��v47^$�������Լp���>��W�5V%�?�7�m��Z���a4���񅤹�}����.gLd�3�7�{�_ԟfP�c{��~ϥ��������nuz���V4��\���rp�1��F��P��/6����)���CT
$
7^������r����
��4��딛�����7�&�K�
��j�Ș3�[�J:��hh���'�� A����:6T��1i{LC����e����___����z��L�W|J�!
�H�7b���0�����KM�\}�f��"���9f �F��\�P)b�����U_	�%��*��*V�μB�mM��#x�E!���5#��j�_�UG���t��C==d�5\���z�(�/o�@l_�DF��H��H  ��%��Ay(�I�Uv��@bSʁ:��@�_��O�w�$_`
��������$ϒ��4�9�(����'=�l?�5������|�w:��o�g��]Y�eUO�S3�p����>��� `xܞ8��KE���i��/�k
�q�{���6�g�a��#`:
/}�yD;�EI�&�^e���a�#/c+#a�1��góܹs�ؾ���562ʹ\~C�^��Q	�[2�Pi�懈9�v����􇒐�U�^a;]A�������x����SR�s��BsZ~�֬�}��p�T�k(�rix2&3S���4eJ�L�u�7��(��y�(���:��{��C�k��/=E�3w[O#�;�"��K�N�B��BR��8%<�'�z�;�oy+m
�G�|���ͯ�W��m�����o�;z��:��H�������<�ma�ضm���ik�ˡ)+z�q'КCV�-����;r_������~�c���!4�#>J�s���8?�S#*p@��{�@��pn,�b�b���G��7o�x_�lY�\5B=��}
��+�y��r����ΣU˗�B����z���K��o8��J{�o�=zѡ+V�9'��D�����~;���3/��N:��z��g��aL<�$4�}a��@���c��^����ۍ��U��;(44և
�&c�x�ˤՑ�ô�����UU��z_^MZ�7gȺ|ޡ'c�d��< ԏ��G>�v���v*��g�e�A�R���zjH�(1b=�cލC^�@� !���u�Wj���Dnw�N�	�Hx�B� gc�,�������.�;u�u ��|�8BG;�5���r��=����� ��{�0�����@�Ox�����S�\���W����G���^�sS&Ci��-:Pĥ��lOyx^�5��R6_^��,/����MRH�^�p��X�I��-�w��Ƿ�]�]��m��!҈�o�;߈�D:��[Rw�52���D3�8�`��CJn�&h��>@)�f��xQFݝ�D�k�t��&љ�>��C<KH�]��dj�8*�L^�"-�"��ɫժĝ�]h�v���H��χ�$?��rɮ��<�|Nq0���ij�1�%�3�ɏ�'��U��
��)[a�\E�-T������ݻv��}�fU3( �!12�a`F��	�`�1��Y͉�	��
��3E���{ef��%�$�V�#m��9Q���kp���f��6�s�9,���E��t]����L�S�M��S�{h[P�N��5�db�߇V��A�D�\��
N(~�ٵL�1�RV���_(�'UBݺ�g��rV����RA�I�wA��&0+\t��_�g�K�
س�>);���Y�r�:	�i,Rc�X�Ֆ�?�z2B9�\D�~_r��n�-���|�ϛ�Þ��C�a���)cLaIo�>:�Z	x_.%_�`(��r��9��"9�����ϕ�^Fo��b����K7V��8&?��X8��8$���ɼ*�v#ἛE���p���pNn���ƙ�v��I�o��6���JE�%_}л��ﺃ��Uԟbqب�uׇn��N���K��/NN�>6�s9M
�MlW�\@�ދp^��R,
kВ����=n�w�;�Z�H���钳Τ���T����7t����a��M������!�lV�IGշ�<����a�e�w�;��J�v��}�]|ƙ�G_�2-,%5��h~�˃a^�æ�iEw�h����������m��j̷��^��k(��}�i�?��G��0����k��5��z��1��?>���?t���i�h!�!�w
|dd[�1�� �N����J�ެ�(��ߩa���S&n�oW�w_��}�l�O��4v�T^#NHXl#	HR��W�vӪ�x"	o<��٥*����8�9�������;4���,׏p����M�7�%��	`���'���촂*N���z�2�%EH+x\(����m�R��ALjϳ�aW�x5��� m8w�F��ܘ��h��(8�3�?Q�M��4�ew*[zJ᫒Ddr����U^�t���wq.�p�����h�]B�7?]�{��*�0Q�zS�������$�).@Qǟ���
6�2t��n(��s��N���"M���ΐ����ݒ�[�*K�AY|�N�7L:���w�ӧ�q����q��|�������Ci���_�i�i�^e�$�b}.ᗊh��ɯ8��g��>5X{��vXq/.�b
b��a&�T��'Xs�����\M�Wʬ�3�(ra]J	g�{z�Zd��$�v�
l�J�da����Ao�'���,-��s��2*���	�B�7OXmv��;1�4�
�-Y�,��dY�����#��_D-.l��HCPb��&�"�X��'>�����kb�����@`.-ѹ�~�G�lZYj;��A8;Z/�I�2U껚p��ۨ`����ܠ.��lE�Wpbo�����g}h�H����Iԗx63�-y_��j�'9�XyةL��4�� \�����}0����l�3!`mk�-��KȨ�LM��ؑ<$�	���^s�4+O�II��OГ�=K]�V��kՊ��n�:|�Z=Wz�5�}��_����˯�B�圝
�G8L�T�>K�0=�;�a�N�͒57���k(�
H(�'(��r�҅x��
Ht��@<5�OCL��.�{�����-]:���t�1��c�=|F����yk�.���Y3��,]210�����陗_���֝;�ɠ�?��c�=�ɵ?����G��oh�Sg��y���
mڶ]>�ʏ>�dGx�+��~֬Z�Y��6i[X7�"����fHv��̚#5��\�ou�]\GE�X����}�P_/��O�}�:05e
=������ץK� �u����2�+
<���M‰��(;�)2Y:|�r�{�᣼�`������=-�Bp��
*y4��Ku�G����g�
�ߗ�N�y�H�b(*�)�����p>�,�q�
4U>`�b�j{D<�-L�\���N�>-��y� �j��4��D�a��:�\�8k�=�p#�J�$�;�_>ˇ!�S~�p899�E=��$��8h)F|��7vי:ߩ�Xr�� Irf�ۼ�i���&5�C.�b1T'3��A
��Aq�	<��Ky@�ͶLr��&>B�Q���>y|a��F��PSA�����5຺L�o���l�&�b藵���5��|,%i�i�����l{"t$E��͖�`B����C��@'�
���v;�sŌX3���/��wĢ��Ȩ�%p
m�J\��E&Ô���K���k
�G���v�O�Q)�A!����ffy�H\^r���ߓA�Ō�=F$y|ƻ����G�kq����6{� ��G�!�q{tDË��h!�'�k�'���X�j|a3�SKz�zU�K�o;w�`@cٲe
>�>�cr�$m۶�n`A�F$,Y�\f���tI@��
�k��%�
'�S�,m�Ȩ�g��̮��1�������bԤ%��\��U>��s.��J��&2��&_TXp��2D����b)VB�1'�2�J�����W�Y�n)q;֚�O�۽&.��w�	:��1��x��~�P�I�G./9Cl=�ܨ�@���������:	�3��aK&&茓N����ӹ��ֳ>e|�;�_�����Onh9���*��Gn`����,��UH��E����a<Y��ڽ� d/]�ٱkWP�n��jM�!V����K/R�gC>�|�����e�9��ޗez9��Y�B����];�
/�8�c�s���*����m�@��cjz��B{C?7�$�A�0�3�O�0�<�1}���� B.�A��7n�R
�5Ģ���7Ҋ㎣�m��Ұ��z
{º�b�[���y�s�
fp� 8W���<���lH
��=s�|(�q��}�Z�n�z.;5���d�Y�J�>�e�G��v���3p���|�fw=�|�����|�P�`���1�p��
žɹ�&g�����e��<&�ʗ�NG?;�:��D7�}�#�T|�{P���<��b�Ȍ�� R/�4�)��D�R$~��=�n��|��s�y}7���ik�.�~�w޷T|��kq�_I���80��s�yNfIl�<��pa�h�O֔4N�!��7s9�%�6_�*s��pO.��DjQ���'��@Z�G������`�9��,�����9�g�ױ�)le�h��z<e��\���l4�+�[���g�H��-���1�M����C��'������a@�yh�'�uZx+{&Y2tM��� �Iʅ�y���b�"Ee����DI��G�^\/?}������Xu�lk(>Yi/��rfF�a��!|�"�K�,��2&bH��l�������=)��2��j�������x��8���1��ZW@Q�g��v)�(�='{3Q(afs�PX�
`N�O��'�B{��E ��$7�X�R<apm��\w�P!>~�Ɨ2$z+��b˘��:	t���e>2���L�fl߶�<�m*��(z"a���c��\���Om
��\2a��7�piT��'IE�Ċ�V1 a�Kf���o�d^T�%k���)r��ԕZO3�4�H��3y��Ek�_V(��E�t��U���U>��r�5�2���=�z����Q�\�CƮF/27��,��qg����h~�잎O>y~p�u�לX#{�����E���/'
|o7���yo��pg�𞼰��؎�!��
���������o�/~�ô�Gn�� ������[n�︍@��Xv�W��I��2��AU�{ha����a�����ʹ'(q�n��m�!'V؇�ж�={'9OC��UΎ���B8��׵3g�N�~� {���o�q�K����$�����|�ٽ���7���3Db���	з����U3��Į�=���@���'������V
XW?��n���~4TBn$�/��r�h(����w����� �8����^���2C?�\�}�x2�
��ĊW
WU�仛�+%t��n�mؕ�TyÎ���B�ǁ{�#u����a=�J�wy�xݥ
zPEȡ�u|�i��I�-�z�Cx�����J�E�.������
O�e>yfVr\�)�Y�����5,/�/��D<*�N�� �KD��^�3���$"FD�uQD	L�rb��4�W��(i�3�O�i�m�E��h�,��*��	$ơ�<i�G����-��\�6���s}^[�0 �:���<-�xa�b����9���*u��-�E���F��q�D��ܠ)EP����v�j�2��7^���X�E��W$¬���DV0�02�����Ruư<!>�Ȋ�ld�B�3
C\����-��.��(�KG��s垣(���Ȅ&$G:��|��՗֢SaQ"����ϥ�Z1��ӥI�A
�U�=�}�M���Z���2p���q�f:l͡�J�"šڽg�7*��C�q~p��z��!��+瑄�q�R+ZEZ�%#6+�O	�m�����ȟa�$Al=�(�:�a��a��*�lrU���tQF��ד6?�>;踾п�˖K($��ˈ�V�2_;��$(.Y9�I�.I����bё�2��%(l���[��`�d��X��@A��֐)��2[F
&�b�������L/�䴐��A��4��&�2d�ci�9\�t�0t9�@��^P�A�>6ҎL_ZOIT�G�R�O���$�y��uO�E��R�a̮~�+8��Ս��}���gHC���+�U��j]�ḼO�&]W[M
�|8�#t�F\��(�o�
�
O��=�+�Ͱ!�!��X;\�̦2qU+�m�*h�X(R���	�1ۦ��q�#�[���֯YC{�{z֋w�g?�A��޻%޲�n�يo^嵕U�6�]�=��ov��@r�?�S3A`ݳ{�{Z�A����x*Lk��؜���a1�mP���T)Q���g�a���FSP+��c|l��gF-@[��Mђ�81��#Dxo��H=D��}��o�j �߼6�t�r�-@�]�IX���i�d`ʥ��o5S��)~w�i.���\�������5�}�o���7��]~ںJ/���j-���r�az5��p�n��l�V{�����z=��������fv58��=羊N�ϗy���E�J)�p}���&�ِ�#����>�P�IN&��\�#:���V>7��1"��;��b�#H��Y�Y�/]&J~_�Q"1�v��Z�[X-6��{H=%���|��4G�p���p�	�Tq��$lȄ����!�ku���ȋ&!�y�.��}7��3�}�sP������0'햄��}��qv8J=�-wk+�L�##yG�m��0o�{O��폞qً�F+�����2�
'�F[��e��%Ő
/�Ի$��վ1�潄��[�g>�Qg�@Dn�^��帞+{��(y�mI���cE�ձ��m�9=��ވG�����*ƻ��y�[�A��s�J˫��sxd{N��U�έ���Ѹ�	�F)]M��I�[�[�'��E��" ��W��eK�U^�yڴe���`��Ez}�?������j�۪�	$�B�&�{z�^I���E�ә�X�¨�L����L���~C�k�mQX�IQq�8QrM���`��O-0"H���\�g١��by�Dg�e#�{�Π��
}��)���^+�߁9)�)�0�/-*()]AU�6[e��
<<PGR��=�����]:r�	���G�(^��/���^ܤw�+B^�1iq�+���)�c��R<�ʒ���:奔����d�Z��tw����I_����Quf�:���+D������"�WJ�^7~.����lWuo�S���eٗ�1V�s.c�K��ﯫ>�z���6���ׅ��o�{��س��|��`[YCh"�b�O�7����I��ouY����{���Y��\"ыFş\��5�{%�&����.���|��sϥ�6�L�<���k�N�~�8�Žs�3�U�ԗ��0��"#�h1�%��}����]�iO8w���g_��^fǡ~��`ddp.��^dc�|�ݍ�T�΋��%� ��l�-�V�wr7�LMJ�������?H��$��&9��_�{r�6o�6��3/�ܿ@6-33�C���w�N#@Д�k���x���;�I�}�k�-t���^�=+�����^�*�O����L����ڵڦDUe>O�G�R���DI�P���}9����ڻ����{����R�s�i�.uM�s�o�RK�|�s\HU���fjgW�"��k��8�Q�+�lL�U�b���g�������i�^�؉�Z�c�@�co
��Qq/��5�9�����(��T�'ٳ���s׉���<�hNP�+Cb�RAxXLOO+X2�C[�Z1~�Kx�1�NJDZث
ח�Ϣt�x������&��w�_D����W
@�m:EK
hf��������s2�^�.���ɑ&E���6E�է�U�����0X�SV3�u��f/zw�|��1"c��� �"��6>��]��Mk�y{�X�=�~zÜ:y2��=g
)������Șl�($V;���(��D,zR�w�	�I�e��}J��Z8Yo%�A�"Oxh�b2ty��>0޼J\�MVvq=�������a7!���YMkV��E��"V\�{�0�r˖.�%A0��^k�^$������,�����l=@$t��+ �P@>�RCF�J�����J�(	�+�,���R��M��O��bZ��g��3�5���!��Ʃ�I�GFE9�F�{��pr�kLM�^.#��Q�)
�c�� ���H������GQ�'=w���v칯LL�ȢM��k��� ��W�	S8����19��C���c|\P0x?`]
ƴ�	�f����C�������vY(��cr���Fdβ����>�G�8��[Q�{_�u}���	d����ck���
��I�S.�V^���`�%�bŸ��rΐ:]+�r982��"�J�ѓ�����0;e�S�^-��'�$ֲ�G|���7�D׼��=�^��P:}����R��L����F�JdO��x[c��������C����}g�!��В"�d�֢)��0;16<H��\���:�=J��cS�ʲ���zr�vl�B[^��֘m�i�&����+��;'�q9��S��h���]�Knއ��i�CV�fF��]Y�9Ёf�%�W2r=�u+Uo�D�VW�f�?�-.\�����.Vem��|N����2v�zG�ѧ3�Y�!�ǭC͍g�	'4��'���,��g��bVr~t4�<0�(��9N�1N��[��!"L�/@�
;�p�m/��T�uS{��7����ل�0,��$O���:���Ȥ�_b`���ώ�̲�7v�XK<\,���@0����~�
���Q2%s	]��I�QAJ�`�
�z�"�\��6�
�3(����?Rr��?㳌�Kx�m���%���h�3T@*`�����rD�+u�Y�3V�|cJN��kW3Y[��m[S��+(�CCEP�mH�Te�������Ueh���-Yܭ�R�G4ќk2p�*��K�_iL	si�=^f]Au�����*-�A͊8��p�tJd�������J!����_�~ A�9��"���Eq�a�tP���Q���p�[�����؇8�U).�|�A�Qm�Q�(:�l��/ڜ�<k�2/Ō9s�����(o�}��L�d�.I�x��2b��aӎ���
�	hlT�Ts���H�)�.���]YK	���
��N��#��<���4;�X�:0C�gfov`��
-`�BI��`�>�9�ʟ��F��������cP�ڵ��x�Z�qJ���E,��]�#�.r)l	�σ�p�L]�"�Y����9��*�v{%T�G�Zwի�*| %ue^����v�?��@��]�{k�Yt	K'�$-'5W�z��4�6����)i�k��u5z>$/c������vbVh� -���-��N$Xb9]eG�qXi??��V���\ɝ�h���X̷ࢰ�ַ��
��=B���	��1��w9�n���e;��j����ж����k%�,�md#[�z͜<�2pȗo��Q�zTʎ?��!��e��4흙����x��Ѡ���{��k�5�sꢥ��v�!����{v���h�wj��bU:��`x��zh�2P��ؽ��Jc��=Kr��Q?Z��_��n��}�(�o�������u-��f1�\�{;�_kT�E��S�cƉ����%Rt�ί����;��ަ�lGr����WO�����Z;�;(�rɼ%�#�B �H3�:#^NJ�\���كD=8�*ml��0p�����i2� <9���A@��Gɡ133%kZu!�#$D�C��6��;Ib�Y��I���F1r|o�H�P/��*��%W�h��ߧ������CXA��kI��V�R����LQ�ڣ2_��+��`���I.T���PR�K�͋�t�
J���٢`���$�"�-j���p����m^ڣ�:P��U�6��&y�hI�z��Ʋ����C�H�(Q��c0<@Gl�|�7|#U�߶y��E��kD;p���B��W�(��Ȃb�`��M?%a9�L�6&Qt�0q�,v�b'���,;
@�)u�>�˃l�\�EZ��V�K��Y�JN�ˇ�YQ�k1'y��
��f*.�(���q������]��/}�����8B���4����l���XDv�
�	J$)�b`F�
�3�ˉd�ciʔ\�I�QKVm��E�|��8��1I!a�.���d~ႊ>"\+ى(�ړI�'a�5+�
O�����(�:�c��&����l���I����
X�Qj�7eeKU���*�ջ7KM��b�L���fϺҴk��u�k�����kh�U��ay�[��*�-��3��
�'�.I?��5�L\u3k�t��/w�}�Y��j��W���(FI�o@8j\3ֶyf0�k?�
Nr=��s��T�p��ĭ,�QRr�B�p|�
�U+V��˾��Mt��'�:�k�^6���+WUr[5�Q��߽&�G��s_��7�U;v��Y�t��p�wE��P��(���k�Hg�8��3h�4��`�>:�V��
}�B�z�qMtHP��=�V ��m[YAяV�ux�����͛)�<��4k9�N>��i#�����>��Y����oܺ���cׯ��œ�����9p���ёk��\h�~�j�X^�W�y����g3��3��Î���|d���
�o��=�E5ѧ�~�_�i�b��3f��E��+�����M��텭o.O�^^m�5���Z���8�;�%={�zRC���4WٔzR+�Y���0��^����H��yEs{9�yP�n�U[��;�?€���!�"�g;�_��w��ϹJ�!�C�~��(��8
�]�n&�1��<�1�c�0���_G�1H�]G�0
`#/!���O���O*���<�@��ƀ:.N2�H�/;�p�J�vt�p"c+�A���ʭ>�t�8 z��Q~�Y�lq���J�)[���V�*KP�-O����@�AU�����gy�4qX^=((ώN��\TT&7�_��zm����Q�Gi}*3�P
'#��RL���urPz�Pq
��d'	���[OA1Q
��p��P9�c񮌏�<UH<K�W�t�mD�.k�i���&e8�J	+�N�,6�"I�U�$Yf��X8G��Ձ�(,�3�IMۙ��گ1NY>!-�"G���ߊw�,ǫ��G�x:�rɮG�F4!X`�`Q�X�˜�� H�>�M�%�$}�^����H(%��h��A�j7�\�xңa��[���R�H�����4�NOT?�"�+��h�rL��`�޵�=?�&��[�dB—���O��fo���㢒��c�X�$�fƟ��^���X�U���E�|X%ͳ�����X:=�l�7ң��;j���j�J�����5y^��z+W3f=�\w�]�.G�c�4���Ѵ�}�=\s�X\�A$ޥ���nI(9R/+��# �Ӝ/���36l�[7é�]�i����Kz�@;t�jZ�l9m۱�la�R-�8��G���_�T2 ��P�gc*�3eӖ�1�s�e�_H�/�V(��?$�I�S�<���w[���A����7�~%��\n�Q*
�\ڜ<}�=a$��Ӈ���.8�n��1���ֿ���
@�IGMs�^u���8�{tvמ=�R��~�Q�FG�;lN�%g�5Л�g��6(q:�#��ai"�?�0��e}/(�:|��!ߣ.7�m��B�OΉ���܍�u��6-�R����xp߿�9S}o�^��'s�A�ϼА�#�Bn g5�W�m_��]�ɀ�����;tn���s�`݃zV LUQ�kI�Q�a~ы8�D��XV,��8��� d��%#	B�L8r��h�qݡ<<DJ���j�ち�F�Xx$�
jIv�N�N���>s��nu���k\'	x�����4�o�QGr����zm� ���^<e�-��C�S&���G��qeԹ\�����W�IֳD���)���!���׻��7m=�>��Au�!��=.nۙ��F��y{�;F��W��t��a.���<�(�4x}dE5O
���]j$C�0��^UN>�b-^bo�(��x`�E�<
���D�k=]z��*���Qv�kLa�o���:�T�3-�"-�"�CR$rִۅ\���$n��}���D^bb�48��X�?;���p�k]�b����q%����L0���db3����^Bf��Q���k�xPʍ���^��	��	�:��H6�j~��E\P�bBF�1k�x楾ʙ%cFƉ6���p��8S�f[����)\���|���}.+g^<<��H���l�D;8�g��e˖��������G�֊�z�JvH���y���w����p��D��.��1��_?��E��A��w�:=���Nߧ���>į��Ӕ?#�_ϥ�u(�}w.�y��?W8��tހĒ��g귪{
�oyW}�}6��}�h���>T�%�cM^2��
"�cD�B��Z���DĐ< �}�t����eشm+u|�S�6���M��x4س�9*��ъmժ�0����C�}MI)�?ey�]�d���ϧ���SOҖ9.8�\:㤓$���{�+�K��رc'mۺ��m���8�u4����{@4_r��߸�xn��zS�/�3����xۛ�=�NX��&w�٠�)^����W�X�W]E�uurs�>�m{�Q�ՙ��W�q��]G�]K�v:+X��U˖�[�?�o��o�zk�M�w� :���x�
A�P\B�SH]g����y���Y�/T�T/e�ݠn�!��}����t)V�~j+M�f�u�d��g���W�U�u��[h�e������.�0�8�}� �n����9�
%lr`��UJ �Q�5�h��AG�Fx|XHU$�F�={��!�vm���+��,���Y�$d�d���R(�xC��B�c�b$��x� l6��v-��Q���p}�so�n9�Ѝ�5��.�=�
E���$r'[�RXX�2�e�%{��j���l'��-sN��l�ٱ�+R{;�FH���&���I�m8���I�a�E���m�׶Ts6���^?��RY^�S�2tY�(�k��/R��A5[(���S/�J�.o�Rb��p9�*u\2��8lN�`��l��4f�l�E*��q�<����"@ÉLJ�)���,]����CN|lb�Ro/�T+����5�T:���nA6�EZ�EZ�}$�f���CEI��ԷӁ��-�G)V(_�������k&����±�m�x���m��1�zE��}�F��ۙf�
�c�=ٔV���o�����[#-9Z
ٻq/X?HxN��	�$���fe��|���qG+�f�3@��$@���ϜcE�}9$3P�c�+�\�Ň*�?��]0��hv9n#�c��n���7mb�j||�V,_����l{)��ٓ�y��#�w	��Vp�A�c�J�������w]�l�s}õ��^�$�
͞���9W�n���J���Y>J���^��fB���zt=�b��j]�mz��P6~��$}�.��w-��s��]s���ʀ�?�%y'����{~T�s�c�t�q�|�3�;v�7�� {���/����}����0ԿRV�ϔV6p���c�~��t�4�|M���~<�V��t��l=
C8?l�B�w����}�A��_��'��&�r�A�3�Z��w��ܰʝ|��X���߶�g^��!=�����-7s^�~�n�j�����Y�4��i��-���i���Jh<(4>��w�e�Ms��=���><B~	���x�A��EP�\}�[���Ap�m��u�����O?�u}cxN��#��O��4�u�£�����a��yT��y�R:��	�4���>�X]�o��~ ?���[`�-q�9i�y.S9̒=�^��Ł�a��mIg,
�p��Zb
A�3A5��O�_���3@a�=I4 <d���d�xl�!�
�Cy"m�o*��M�p�$�M��%#��-?�~�n�K�K�t
%���IA���%^�zKs�1H�j�j�uo��E �|���4D$\����FZm�1�. ��v4rEK�&5J`��м#D�ᷦȪxH�P���yEg��M�yg�4��i&K�Z��{[8+구-������E�SFT�o�T���U��\�=��(�0�^8c;}�.S���j.ޗ|����u�V�(���k��e�X\�p%N������MIE-}L�T�
��t!�!>��9@$��OIq�|#&S������.��Mz�i���|�A��&@��_v�U[�����a+�E@
�K����)\?�Y�0a�$ge���ʖ*�"�[��	Y�C���
��~�J�en�#Fv��9'V^Â�K9V�a,-���bO�i��Y��NJ��h���Ǥ��̴���Q&�še,�z݊�<?$�(2�IY}g������܀�������S�iE����.�3\�� ]bA��훂t���v���H:g���h�B�?$��:}�b]�Vx�����~P�^�S\��uI��n�e�gWi����w������R=�9�Q��y���(t�i�9�S��ƨ%��g}��T.��t
����\jk���7��ӳ�b�ͫ�/c�������g�9���;~ߣ����dA{5��Ǟ~f���
���7iݚ5��\ x���O~��P��M4�c�{r
�L�����q#�x�`o�w\����&�^����'y6���	�K��o�]x��45�LCO]�vLN��AR��Y�c�y��,2����xם��}���K�����E��N>��6�B[�ώm[�3��#�_����>r�P9t^�4���������֭��������\����7���uw�A[wv��ٴm;�	
�~4�Շ��f��+��˻�dz?�
�~�g�SO��h��E�SU+�4�^��R�2F��:pԧ���Q���7��2{ߋ˭\�2��?z��Ɓ�7��.��O� ޼�&�ҽ�H�E1��8�8�$��)p��b�
ԃpǓ{&Eadkxj���ڒ��SS��#�:Qy(.	2㒥K�?p22*F�ho{���U�Y�H�-��M\���B�.a3��C�/�˃�{zD����[�>�Si	xc��-��G��d�N�_I��H���K��7��>�2b}����e4*���7���|��7նo*�X�Q� 3��(N��(�U��}W;�9U�;��Qi٢b)l��yVIN��0���X�Y��0
��T��;1�����i���$��(���0��S2�
)]�UB\M骳��-8����b�@�g���G'7�,������7i��u@%�� ���^���d!f�M�w-9P�;´Ml�13����4�2r��֜a��p�P!�������2Z{w�Y�����+��������8��0'���U*��r������)��I�e\��2�8�7�i�1l�����O
/	��"5��s� yY!�[n8�79;7V��vܮ�)�\W�텦.�r�����ɒ��	�c��|��&�ے	�Cʹ>�K&�I��h�u���Gc�q�Y��Z��14}��\T�{�{�]��̨u��<���k�!�H��[S_��HA�6�u�ٴV��dY��.���D@�S�p4��%��r{�Zf�_��s��ꨔ��)OT����.y��c��n,	ٚCVӊ��r%�{�����p�m�3�2�Q*��G�n�O~�߹!��?�Q:����[n
��S�BV-[N�n�@W�~_v��C�E�;�I��y��+gRϐm���Я�����O}�j:|�a�g_�<�rϝj�G,$��‹��?s
�����
Cı��D�P�9e����������*���{��:�W��7�o��t�9�����rɥ���c���Ǟz��}�%Z�bsđt�����a}M�a]�&��X��9��n���<�D�G���}��k4�C�`���/��X:�o=/m�L��w�X��ʵ;|�.?�?ЇD���p8�[�����]���א���c�x��F�V��]���a��˵��[H5B�2=�ᆳ�ꌻ�s���hj��'��ڹ=������Ц�&�W\IҀ��o��]ˋ47�5�]r�	��X�%��B!Ɣ��DaOe4�D+���M>#J�Y�[��G�	9� b��s��*�F��=:���y9 $w�'/�e�A�A�V�$�V���@$�JY�/�_����P]
�-�M@����%/
�te��|V�!��d@�c1=:��c�T�_�y^;����֝�b���爨�riHJc
c'��axM�al�����|�m]��Q�/}�o�A�ٽ�>8@1Å���b������ν/VP%�QB�H$� bc��
�8��v�=�Ξ�{��o���c���3c�ۀm0�$!@��PB�$�*�|�ٳW��^�W*IoI����W^�	ylmWԳu�$�S�P����r�B�sA�$���zM����<!�/}�9z*D��1j�E�k�7�1,`�]1i�:�j�#���(D
�&����1�����3kW�%��
؀
؀�J���j��f����Ȯ��A���Q6����%
�8�L9��&$@����@:�i0��I���Y��m
�Z��m:��]_�
����m��P\;������%���g��`�8 �C05-%�;	C��\	\@]^e�AE��4q�24k��
t,�hU�wq2y�1�2B�����_����8�k#�9J���nx=��S+b���X���,�ꠕc�@��C��uy6�4��Č潚�k����f�ڄ�g�F
��T�r���^�t5��
�b��i�8Vb?x�� F�1
6��!�y;]R�=Ėv(V����I�mi��(���Y�zJ��e�ce�b� ��Қ�����%�5�8q��a��3���W�^��W��g"S��q��R���xRB�f^���^�q����$P~�k_�{�%�%�Ar�3���MIl���yB^2�<Ұ�L0;l+��_)��M��;����/�{�|����=W����W�ϐ��㏳���v
[�l��j28`�{���>�ɝ�͚�sG��# �b�Б2ڍ`�@�AK�٣Bث���IE��߁�y��~��B"8�;N>�xք\�@��j"&����:v��y��>fkL|�+���qf_)�2:S���K/�^}�!�mh�)���}�����v��};�u��p�Jlk��Ha�3m>���{�-�g��.}�l�1�n���_v\��4�X���>r�e�n�~m������̑���hV�IZ�馑�0���8ҏ��Y*
hCD�N6�����u�Lː��R%S��j���B#�`�U�Y�]�=���QtWq����E�o����UAeD¤5�]���#��~
�'��-���a����Zo���g���Z힖�Ct2)8�
 � ܡ@�N�k�THG\ISJfnAB�.�
�����1�M�B�ȝ�4yqPD^��G�7���rŵ�B�a���B8�On�K��h�Ý+�o�A-�izǑB����c�s���K��h���l7ꇹЦ"�'�"1b�v6̡n��2�����"����pL]�jI�$�E!&[�`tg�$t�gYv���x$Á"&p��CJ�
�$�֑��2D<��N���*����֯�%��RM V7���a�0"	���@C7?A�:��d�dB�AkG0�p�*�l�+j�	aQ�$g�r�ԩ3�n��.��Ԉ���<�b�U��M
j�Q�0�d��4�)ɮ�F�F)6`6`��u�S�R�?�/I:��T���V�\�N�O��1�%G��c��}���/r
����z��4E72��ANb�,s@�>]ˠq���\-AL��ho`A��&����r��9�Q%���	[^Z�LN���� BF�D�D,d�FQ$M�D%�b֙�4�%�����n����ヘ5����ND�Ω3V0|�
I2q^/h�;b!z]F䇑?�s��a���%������X%��V������vp����� h@TnI}�csI��	B��j׈�q�r��i�������n���	��
D9VT���,4���-����^�m�*N(l*�5m�{ڇ������}���0<���t��O�kn��3HO��	7��cs����S������G��'jp�5BZ;
�wa��}�[�c؜w��ˠ�i��w��g4�ɗ��k���_u)��nm;߳�%�� tR�-/��(��>Y�h�]���1��/|��΂W_�9X���x
��ՓO?
��g~���7Wk�]���w�kl�Z�y}�ܞ��'>��/��y�I�鈹EA�����\�U�k7����*��
��#߻�^���`ccv�>�{�|�����/����s[-�
Or��a@�QN�Q��˾�A
�_��p`ÃLG
F;���=kC�\�ڤ��c2y[����e���U�0�j9|��F�h:�e�O���n��V�]r��"Chad�[2�;�X\���J��@^��!Ů �:vwUN�bњ���%�X��Y	��6p[-HyTv��[D]���iq���`-"�V@cz���_]p�%<sq���O�W���� �
��c�J����}��;'%/ډ���Q�b�z@��Q;��q2�G�O��s(易���	�ڢ�ʤnmFf+��I4	��X@�DӚ�%~�W
�O+E��P��)�Z�����A�x�PX���XV0�Y�Џc�K�",N��
{h-S	Q4��QWs�9Y�2���4=��q�J|B�U�i0u2�)1�T02*�~z�;p�H;7`�azjvl?
6͎�y47�{��LJ�����*Gm������D��i�Y,��"t�MNN�fWH�]���A
�~�A�"��OI����u]�#B�ʞ\�X�qZ�3
v��8ςB��5
[Ih��cpx$kR.jv1��b:�����eD��v�8����3�>2�|k��,QL�m;.��i�((S"ߩ-�����wQb�S�>��5�'5����&�U�o��"�-��L�>h���"���L���	?�$
Lsw��m���(^����J{j��=H��O)i�	�j�����,c˓ �Q��T���
m@�ܮ��Ռ�L�`��Znm�t�L��1ĸO�A^N�ܓ�M��:�V7�rFD����H�Z���ѵ��?������lg�R}-/,.����K/cWD���p|�k8f�0�j���'Ɲ�p��iƁ55���~p|���_�g�5�j���
��Gᒗ^4X�(���P�$yW�����}�)��X��O>��g����G��	��ǟz
��>	o|�e���)��}�(��߶�����}��;x>��/ÿ��O�u�Zã�wÇ?�)8H��3�_y!�'�;�n�����᩽{��u��>���*�[�CUk�Ѵ��=O���o��W�*o�����f)�1�ƀgMk�ͫ�V�kz�FO��0N�
��a�m�c$j$X����}a
2��� �d��jB��ژ�:���Ÿ�<�+��Ai7r�I�#�'��F�b,�2��h���N���Qz=��$K�rũ"!r:s�Ze(Û4x�R�U��,P���C��W�P;�l� �Q�`���՚#��Z���㸩0z6��Gw\�	mT� ��2*�6ˏ}?�V��q���h��eV(E�|��T)9l�{�0��"Bp6y��3��S+"#��Jw�1j���$�P[*�%�mq��3$�F�Qι�0�e�q�a�+W�,&|��%�E0�K4�*�g�63Z}h���,,�B�@��ܨ>-������BRE�<�X8ǂ��8uY�2�`��:�S�G��i�v00��D�Z���x ��
P�$
�c�����y/�8pp��"���[6�±��<�/�.<��];w��t�?�g/��
Az,�3��t	9�J	rN��*�(؂�.C���wl�чiҢ����h��,Q��Рg-?8����)I��@b�ЅL��M�Pm��QxFYG*�r��	��5�OU*�}�=A�|:09�:Sz��u����R5�.��U��+Gř+V�L.�R�|]�Iʌe�WBqO$I_�6�Δ��l�� '����h���TD5&�L��ę�f7+�ܠi^e$Dš��Lk�]���S�e)6�F����lڹ�2b$��m��mq	r������АWQ҈�6ͦ$�dž��K�(�L��0�^5T-�W�]��-Wy�\��0t� @[�9�G�$�
�{&��GD��zf�^���|���=XXZ�Fq�?�+7	�k��߽�.���O�~���]Gø@�57�����1L��#A�oM��֬�ܨ3��^�v�?�1�s�~	�n����C�����tDi���>4�Ĕ��:cf2���2��Q�g{�r*!���������C�������R ��'����~�`�I�ƌp������gv���4+���1T��i�]hg|�e@��I@19>��/�#O>	���?�q6�U��*К�ꦛ�?���������_�M8����=�V;�`ѯa~������3��:����zCc��j�!��:��$����G�W݀�#]�ph��ZCv>��I۾cچ1��}�A�nK�2�t�΍v�$z�q��1�t��>�A<�M�6{a���芒*�M`�����`�I���%�aff��m��n�@��+}�^0���s�dL{*��(���q8�����/
4:�sbyB�/�� .�H	��u�0��OLLk�í��JN�y�}����J���Z�PZr�%�$Ncpߣۑ���'8�͂�k����=�\�>�a-�}���Eʬ]�}D�!ƚ��v�8X4�N�o2���'h$r̅+�|{���é-��Jg��Q�$�XrE%�:?.P}��I��(n�x�'����T�a8:&XA�D8������)3%��F79b��u�?��d,ͧ=��vIK��I�\��lA���
0�P���Pa�jLjU2���g�v���m�s"�-����,-?�Z��@(m$
B:�_��?��Bk�p	@�ٵ�{�� Nn�zD�-#&t���B��22��a+�:�_z���+
D��8�-p1����DDŽ�j.�2	Wz}1�e�d�#0K�;��\r˞q0�3�0?������I0Rш�i��̈́]�p{�v����V��1)(P<��v��%�vN}rvĊ��.�XkXM��!Z)vA�-
T�"�L$�Ti����-�$���;��a�y=RX#�D���w������f3���e�e3N�F�JEf�=�Χ�;���KuUKX�����9�X��z����`$G��[����$����XtՉ}FX%]��h�'L�kO�0HQ���C!c,���& ��ן�/]{5�ʾܑ�ͦ��ڭ����9���?��O=u,��~�7�]��{c&�Jng����g#��13@���\�R#�‡?�g|?����p�1��8��O������s7���#�p�v#l9��{�����}05=�ts4!B3+�v�˟��h��KJ��{��?�]��w���+��c��?S�}����5\ۭ�?7����Vs���v:M���)�CF��YR�x�~n�.N��[���~��C�������΋��t3�Ǐ~����
��?�w�����+`��х�4����u����pG���am��i5G�He�0���7xf�lZ]�CX))�
Ϗ��Fpt��;����k}p-vD�ErP�N���W@J�]u����?�}He�p��.�k*��):��;���3ryJU�p�,4�A-�2��&�K��M�!m��1oCy�
�nV�$t���K���nY0��Q�r���L��`�N�N~���@����⌰`C�\?� e�]}���1����F"h��R+�A� �N�E���.ˁǮ�m��2����I�HV���� 2�&��`�i�iI&�0�PI%��Z��YJ�������q�����ܠ�0;
��F��#��L�n��K�<B`��g!m����8%����i�1�P"����B���EB����/g7U,[�WָP�V��`�e8���s	&*�p��=#��"�u���8�Sc����m��τ�J �;�U��ٍ�|��i��
�Ǒ��t�a�z*p0��R� У�|�x[gT��M�Ÿ@�7�`k:P�>�%��:F2���g?�t�s@0p)ʴ'�_�� �=���! TN�\a���)T�'V~-/���
A"` K�"�F$��D�6�t�M�ޥl�����5���):������n� l��	�.��ܒK��!m�N��M38��,-�֋h�8�Au�!g��i,Bd?�^3.�r2hfm�����[f��¥�طo/,�ϳfɬgMO�I��2���2c���<��3e���^,��m�#�Y��&�)c	�1�Z[�W.kS�\&؝�Z��!*�ԛ� n���2�
�m8<<Ia�
��DZREs'�D��L�S��P{���,�J�T-�R-��uI�I�Y#0#
bXm�M�ll�t��҂B�~hz�rZ6��یQt��ٻ�q�w���|�3�w?�~��Eu�ω?'U3�������?����W��ҡB��W�=���0����`��ۀW�Kh�!˴�2M��!��H��}�G������_~���U#Į x�G�������r�-@��ng���S]t���nbt�Q.�tmc~�G��v�V`>�P�M�S��?��ߺ^v�y����g�z�Ɠ�@�߿�.����U߹�3�p>WZ�y�,l�<K+䢣���_�2d��!b"��q8��׽�Vp�w��y��W�ϼ�p���]�Q,�����^r�~�Y�<�������}[r��}�Ɋ�o���~v/?3_��X-8(�ǭ�Tf��Қ�^Zso\5��uZ�7�}
�ᐧcCc�1�VPk����y�NܪKL!�_ó�vŠ�a(�exՐ��o7B����Ti�n�&I��?"��֡�����r�D`�w���R���ݴI�śO��;��љ�f��&
�$��*X�5��]J��6�?g�S�Rb���1LWJ~N�n�T�P��c��))%��1Ҳ����ǣ_��₻d<9u�E�X�R�.��(#����8P�"�a��>�'�eLP�t��$�U�A� j|
��4�9DKܠ
�#�.�.Ʉ+Q�`�""?��.q?+� TH��[
Z�B<��,�Gl,�7)�L�dh���c���xBc��4�U�+$X���"q꭪TjWKj���62ɔ0`��ʜ��+3��\���J�hY9,�Сd�1%�1��H܊���ـ�=�~�Y�;��SY;}������o�
O�ww��c;\x����G�'v��\&�<Qt�qG�Q�7������q:lcK��x��up±G�����s��/���V�43�*�?v�|�xZ�m@gb��:х�&��<��H,%�l��S\Z	}�1�$��/BA�,�Ӌ�SR ���#
�	�@�.�r�RĆ��K�����R��o�j�1KT��>�h�<�b�aױA��L�U��,g��S0v��IH�"�}��k�j��܈Q��=Hew��lBL���q�HЂjY���णDF�/�8�V�g>���DwB��Ԡ(�
��T�Ч�o}��/�#��U�&�ب��T�k~�tv+��Pg�5��^e\���8^c�!��$�m&+	C��
!����YAWԈ��HJ*27�3���x���)�A=��Rͭ@����mH��;ц#���/���f9#6}��8�.�����߼�����M�-����
|pn��,9v?���웙	N�Κ0�Z�qt��O�W}��p�M7«_�2��w�.<�lv	%��}�^�J߿�^��_n��6��Lێ�x��!�-��tS���K�(j{~�1�����1M��={`~aQ������v���?
m���)��
�rI��]�7�ͯy|Џ��ǟ���Y�&�dk���x臏�������?�m�2h|���Vv�ԓy_�ÏǶZOH�^��ko����2���q�9�3�L����Ï>߾�&go�p��F�n'�9��7�� ���<��� �GwM(i�
yз����������n0�ڲN8�Xf��>��S�X�5�(s��4�8c�&�*x��m|��eii��e/ٿ��{���Z''�8�k�;��I��7M��v:&���O��w�����á���O>	���8��_�2��7��Bv��_��N	��}H�0�6�-��c{�_c{�5p�]w���է��5�/x���/����8z�v���J��h}RL�~O�z�=��_��?��q^[gs~Oӻ�ێj�c�_��=�_\�`�=�Tc>Z�<�0)��ܙaX�w)�⪏%o(�U~����85��R�����'0�`�Uw�cd��?��¡��Z��=�Dw�0�E	�,rɽ<Y~t�����r�_;�q/�Wz��,<�g"ʟUVeR��G�Dz+|�ҳɉI��j�^��{_��M��m�"!�Շ+u�X��%�:��b�
y��Iq
���7���I���Q��Ĕ`Y`��-{��N ��QWF}H� ��'|k�q��ď�	f^rY��c��8R��nC
��e��XH���f�^;���7��4Sn	$��J�{[[&l.�0a߀	&�K
�!i\3ɰv`l�&�h�";��D��*cQ��`�5��u"�	|����!ȅF@�L����w��'�F,f��X��UF�V�w+=���A8ZV�+�a	)���t���f�j��ӹ(u��R��S�7��Oī�����/96ๅ��%~׮]�w�<��F{���ߧ�<뉳gX��㨭��|n��~OH킗�����7�$4"��)j�OyA
��#�5'��/<��p��6����[7���;�y�]��q��l��O��57��/�%x�%/c��Ewյp�+^\�u�\�n6�y����_~Ƕ�8 �|O}K�o���2_ʦeA��hO�Z�R�K�x;l�$.CTɡ~�K9E&�6Sm��K9�ŧ�\��gҒ���P�
c����&��0�
\����B���*��n�[�ťy�ǜB5)���A�����D�$,ܢ3��3�M�hN�N�F��,�~�=�I��h��{��~�( �ar�F.��� sf�+�6e ��T��� vm�$�=��_�h߾}��6y�3��0w{+K��ӡuȈ $5���.Z�8�9
qg�UV�g]I�/�y������a_*��i3��h�xp�_Zs�Fg��N�ES�4��c�� ��	�;��a�m�SD���a��b�M��va��}��VN���f�&���o�ܑ���=:�����K?�A�jз��̨�s��nҬ.�yG�uJ�k���sw$k��&���0/c���Y�7@(��-���*a�$`ɢ�u��y5����i��\��̘������O�tv����ӊ���0`�O�`��`�U��Phb
�FQ�#q-h�yM��$��cv���L�����SOÜ'��@Y�`��;�O�n�SYS	u6�~��#߶�D���Ƥ�X6���O��;wy�o�ھ6�s��{��;��w’�s��].������ ���D�/��>�;r���&����p�(�*2�!��[6~�����sڦ�4N^�����u�9�\M���B&��>���O�������M�����9W:i;	[IB:r��BAG�n%��C&���l/������Σ�Հ�ŵd_��z�>l�{�p�祳�b>���4	��x�07u�:7H�\bmٴ����8���	�N�5�u+�Ы\�.�ߵ�؜��M�X����m���Z��K~��r�W�k*��W�䨃[q�=�(�!1]{��n���og�R���:��Tx^�8���dz{|����y��
@=+�޿'k���w̰'��p�#��xqDo.//�Ђ����w#t����\Ba�>�����h��	tJ�Aˉ>���uI�ʓf��j�s�N1�XN���H�?e�:�Q�����J�h����v4Ƣ�Z0m�?J��H��Q�+���t�9�]��J��N����-��U5.hZK��j�	�t$̸$�6f�i��?
#�F�j���Vf������Rk�A7i��h*nR�����:T���l�����6�����,?�ي��r�%�pX��:���@BF
��
xa1=���)H����cwm���9�p]�O<���fx��1�&T�Ok�\E�_�*��c_�+&;��s�B�t�@q;���/��r��<���L
��vu)��	$����4v16I��,!8p���)���O�ˬ�(�7�F�f�u 2W]d��
�
"S
��N̈�1������,H�x��\�ɨ��+#"\�/w����1�Y5�5�f�0<����n�dJ�ӧ���r���y�	!h͐����ë�b� c˹H��B���zݑ����w�h�&���`W0��Dh[�k<��5��	�I�2^=�}S�+C�R4
Z���&5{�΄EE���ofpv�= [�M
��+Uˌ���u�KƐ`����Ƶ��G�l~���*]ë6��1��@0T9JI~3����4��%Խ>�$@�+m�R��.9���׻+>v��o끝b|��̵��Nq��l=��v`e��B	egi� b�c�a�W}'S��x�|�e#�\���SQZ<��5V�i�\8W1�u*�����;�)�B�:�&%vHG�]L-�޴ޫ�
`�ŞO�C�1m�ܦ<��;�|;0���!���@V@!<��\`�3mxl�oq�3yx|�141%n�(^Y�L�1��g�a��&�������\Y�<��^�#�\m����8�ʼ:X��]禶י/�1s�&L��:]~�`S�4���5=���`5B��yoO�s2�k5�rD�i5�3?�0�6:�p�8:x���&
@tO<e�OOϰ�y�n�HP0=5���7P�B=�`�E��6� �_!��=��,j���4�&:�<3p�^ز���ŠRq寎xn�;����x�T�bn�����E�;��W*����\�S�ed�D)ȄDW��ʨ�`d��u�My�����W7_��D+\}Y���j<oP>
$�	��we�%��c��k� q:�QOH���v�i�Y_�6`z�,>�:Y��c�i���]��j��ϭ���K)khn�*��1Q���mV�
�%���`Ѣ�0
@�KM�P�jd�qX� �̄(2�6���f����y/Y�3N9�ٻ�ڳ� $�~�'=A4LJ	HN9��
!ȋ~�q8ӯ�о{�~]�b¸�+���j���3��C������N�d���DpwI�b�'�D���K��2E�m���?�������e	N�<1��r%A�h.1L�ݨ� �iuP��jH`�xS"ǎV��m�꬜��y�� ��� g�'�w��`ya�͠Wz��ӱ�nG�H�Nmw�/��������+]�(��B%c� ��!M̭��st����x�1̸�?x��>H�d��-l�+
cָ:iPkn���Ҫ��<�����R�����D`M�C��iuYE��.e�����3�o�=�g
KP���](0��E1=N�#B#)W�H�X�1�����p|�r>����L��)��1s{��0����m�T�H��OlKW���~��+�j��y��%۳�k����p k����P	���5�4Nh%��3�z"(Eۏ��n�Y0R`$���9֔���	^�a��\roؾ	{&[v1M��0�=�k�W>'F�굑�=�3�o�}�5� ��H���t��]�iq��	K�������0C�p�0�S�H���5���B��N,�fgf��N��N<��P\w�q�\���ʇ|9z�.8��3`�pn.� �n�>V��H,�	r���"	CH�L
UT��#��;��dš)���oWq��mk�]F9�FK5ZI�$<2�+9<�h����jg�=�H����mJ�%�j���m�1r�z	�55f�m�g|�h͗~Iq��9��
r!Hs�\�{���AךzxyU�����J��@)9���b`�s��B�>�����-!��@��4�33�AɀҒ�+���F�jt��ﱋe��B�_R�x!�\v���y���6mb�du���f�a11JU2�:�7���LD�CB׬C�"^R�Q8��J���(��=q��۲�	Dܰ���SX�<����1 f�
�*2K����׷�Ӏ�	��p)eP[��r��[���
L\]�����x
a.��x�Ƹp����Xɧ�L"\�ۓ��9mH�!D�W�/�u���3ΰ�X���� ��M%+J���#��!�,2w6�&ĀS�Fx&��\�d�A�e�.�8���$e�)3�
�^�l�t������62��x ��~��"����x�<��/9�0�~č%�b��R�$fT(3u~~v?�Wݡu���B�p�1�4���N���aM-@�� 
���M���)�
qS��&��Vi��"��-��!��`70T2K�3�@u:��B\N��i��>���*��]���4fI;�� �$�$�������1�Gqd�2�H
	>�+K��E���*[�x�)�!i���!��e�i�;G� $��Σ�g2a�#��Ku���j�1)K�S��~��J�K�fff��8���1�[d�b����t[;�~�'m4n�!�̮!Ѩ��o��աq�[�}����Zz�#n IU]1Y���E��M�tn]�0 �Xi�<
�k�-��mky�x��q�u����'=E�Gb��0���!���Y|��*.�2A��FS:k�1�+�0�ұq��iG�U��,q
뛐F�$�S��mbzt$��E�e���
9B G�1���@|;�4����/�����sj���in��9F�٘b�z�~B�p�A��o�m[�N_���O]2O�~����@�.�/F��ec=��!iI�^ɟ��Ƚ���K\6�B\g	���4�I�[[i�j�_��yΩ�s0���v�r�	,!_�[�'\w��
+8i���7_����m@��SOqL���8�pu��4d	��O����Yb��œ�,���&ؼe;LLu��|ua��/��ﯫ�Y���l}�~c�C�!���㴫���h��88^R�0,����1al�ol��Q�:��=� ��	�5ۥ��ej�k�c1�Mm�t��3����%��6�Qʖ����=�xYu�{�	��;E�9�5�z5�x�G_-H��f�@ ����%Lx
zY�����0�������?q�9[6o��Ah���`qi�+��,��S:Tx"g�	~�g�Y���!Xy�;�%�c���T�4&��1��(T�0~@_�w;f�!CN�vϭ��";�w@ʗī$%�e�m�p���.�L��O����O���M��&X�8Ʉ
�#9���^��YZ��j�o��p%��c�!��|�?^����,?�X��i�L�W�u�P�]�����!r}}��d�0�����ɠ#��g��Bc�X,(q�I#£–��V�hq��A,[���u��6��Ê|ْ�+�o�[�Ð�)��8v��ڳw<�g/�I��O�6���~��9�EL��~/;���'�b��SO<��]fO�y�ޱ���O����W)�#����tt�Z�`�	3E5mv��;X���]���@r�N~�K񧉸��fc����Js���)%��G\(md�`��U���{V�	��1
��0�¤<�-JE��T�D�E�/1��^_~�2q�c�cF^�Ƃ���E�$!!&#Y��V�5 ���H�l��8O�>���
�
"�6MV�W+'�/\�*�[A���7��� ����������r���	Or�U��ҚVv�w	D�9�L�!�.I��_HK�9�5C#ûmWG�a�dHp��i��UG�����g�@��^�I�ƻj��)>^�!���2��o&%���bj��'B���*	����e�Ee$J�Q�bt&��=Z–ʱ�A-��Z���e��tE`�r��o&`u��Q�:��.���9��K�f�ډj�<"�&9�M(ŸF
�o�M�1��|u.�bL��UN�J��jB/W���ؿ�+�;��	�m�S2I��{���&�ڑ0� D�s�prE��N'n!L�{u�A����O�_۷n�M^8?��d�����o��q/����j}"&ʌ�����~�'ي�
(��W���c|��qB�A�`�¤�o�0d�4U����#�	
u�g�;k������F#�4�s9׃n��-{�k����97J�
�%�3tMTh7H�T��1�2��]���sҠU��jBK~ܔ�i97Phc�kl�
���e!3�����Ahy� J
�N/F����0��|���=Z�c|C�[!�Qc_tX�! �xa���WI�`q�c��
�(��
��b'�Z��Ux��Im3�
ã(M�����C�9���~�UWϨ.:�J�T�K��`���?;�2]	;n�'�1W�{5�	+�p����wF�j<��Y}h‒e�L:���a|�!dVj+�r$֣7�:��5�&���=����.m�N-*��Z~`�e�w"@��V�a�L
~Y�u���[ى8+�sa� �Z�_^�%��.�">�u�<G�=����0ʠe:i�X����1����0`��-0�����@��e�����'����ͳ�}���z�����{ymn�4�����mG������N���}�4_�G��Ck�w��{�_[�΍��I��M����\�����������k"V7�
�a|��r�jW��E�L(�C)�A�š���r���}��&��<P�e`���]aN�������Hȉ -}m��?�5u%T�c�^	b�x�2�ΐՈ('羽j@�DX��ZBN�
*�,���!��w;�Sԩ��n�Bc��t�"jښ��=�I�B��x�Q�͛7��Gn��ki*%C�f�x{Cm�0�����o��uCӮ�\�^&���%���K��;-���H�g���:��M��X�q�E�\�YlZE���e
䳋�>�I�}U�`�$�Y�,�$B���YtX�X7��H���~�醲�jv
难�Ig�
�7X�)1���SL��H�b"�g"T�#�aB��5HY-f� �1�R�ika�vؕa�ڗԍU��NI��$����Ȅ��l���OPr�%��S����RS���Ն�1��g`U�����lYE�h|�x�H B�!�H��`)��@筄�N9
ڀ�O����7^_��jx�'XQ��Ì�g��p�q�[.{-���~�����߽%�NBI��BQ����~;O���)��Cڮ@���`g����X�����ʰT.|T}s�
s�G�,7i�}�a�m9R���2D�5$¡嶦�q��@��HB�Ƥ�ie&(��,Ԡ|�JC��⚪���S�=&�f���O�wY�@y��l�0��B��UR&A�����W��>��̫ �����8�*�0Ρ�6��wvV\h�;+�1 :������%�A��-�7B��U��	)Xlz�㘩2��֢O��ei
��2��[�T���J/��
j��H|�t��{j`Ш�mB�60J��<X�"�[��U��r�F[C1�����Ѷ���R#�٬ƌ�$�-+��s�5*��.�J��#(x$L��3˥B��K)ˮ�퍤���y�J��`�a
�Xq�2�eF�J��8G.q�&��F�l�d������v������At��;�{+bf�|�1p2�K��SO
�����ڹ5ڀ#�l��8����H�}�W\��}�&�:�_�~/��Wg�a�k�V�!EA8uτWFuM]���`��Ё�;1a�Y.E�G�w��"EF���[Qa��o�Rڔ� � >,		�>�e��[J�TΏ�'f��["�3�T9�j5��G����f8����RӠ(��y%�3s�>�{���D�h�[��(+��+�)��9�A��"DYe,��:�ӇQ!��|gi^��c��}�����3��?j����(�Ή�o�T�RƜs��#7�WC�0x�*�8|�h���=Q[�ͨ@h�I�Q�Yac2�\6�WWM�s��rF�8�tL:�ڨ���sqm!Ff�Ȥ�h��WH		1�@�,�g��#�"A�Cz��"P��&��%Ŗ6}k۸�����?�+�qV0�A��������P���luI��Q����|NR(D*�>cJ��	�ID4��W	�R���X#���eN�Lq�!n��X�ӄA��<^#�Ƹ�ͤ�fj�iCI
;��l�M��懫3C���%�m�R��yY�ݗ�lH
i����k�>�CH]�Ĉ`Mω����������o��p��'@�L�;^��eÓ�<�=G�6�����Yعm;lݼ�����>��lV��dm8Uڰ�|������R�!��7�s
k{�7À�܀C�*�T}�^ՎS��ɰk/�u���/���r\�w��5=Nr�f�VT��_��H��+^;��ɑ,�Ⱥ�ӗ��\R�ՅS��T����d湡�xQl�1DP!���7q`q�a|�C�pQJϱ>8X� H��E/���+S㻐�-�?X�=�k ���Lx���"�*1�⽂��qYfq!�*4�X)��:��xhN5M���,K,h9�E��E_]�[�K��t-�L�E��ׄ�r`zV"��$��
� x	�tNRa@�*���P�ƒ`��`�\O"ܰg��J#��A=���eU��Z�ߪRF�|0�h�����!o$=�%L��,s����.C$
@�dƗK4&��i�	C�	9)х����HIc)\d�t�4R�y0�_V&<�M��.T(c"H��g+���X�\��)44O�LN�M�
x~���r����t-�=�4;��JI/��
zA��}���lj&��A�ҁ����@�>sg%�9*YI	SLcf<��Q���\^�@�4E��d1FL[4���xʽ���u�2?!
�Q��Jra�����$W[�Ax��؅�2�D�w��
X&&�
�J�)t���?�q`Bm+`��?KuCލw��T���Z2`d��g�gMOO�K���p�!��-#@.�����hm"��Kh�L���5&��V�!�)�R5�������T�YU���(�0V�Nۄmy�-Ey���*�*�HXz�:N��I�yAi��<g�_4ڎz����(.�D��3l��9�X�����E!�\f;����r�K�4�E��(�Zg��lD��0���BƤ=�@i��d� ���A��E�>�&t�I�V!�	=5"�4W��&K���Q("���uNsP�> ĘzC��Nz�ɿq]U,8�������ٸ�F���vI��a�YH��z�L
si?<�ޘ�~�m���ܴ$Ξ��WY�� ���?��_¿���ÖM��Gm����}�~����8|�{߭�,�N��d�&�<�������(5�x��K��T�K�H����b��������.g�
��KtT�\���UTj��-�V�]K1�)ࡵ�mpPh�Լ���e3���ߨ��]s��
���ԛ��B;�w�Y�;(�ؠ��\jS�R�u%J���C�ۈ��&A�E���ȓ��{fF���\~w}{��3X��I�3P[$f�(\i�(�,��uxPz�b
.���8	�b�ŝW�rťC������2�xa�Q��wH����J��^��'�p��M��Q�q��&��5�R�#V��;Y��DqM8SsB����V�t�BԊ�["�I�n|�>��>U�I.�l�Iހo��m
.��=���+��X��d��	�}l!������fA��BE�g���w1XT���p��G�T����(�	�����$TdeRX'�8�7�J��(��O�.�K?`�ۀ
؀%��>@��Q�����}2U]��]�E������+��t��yf�� `��eh��N���/��ϵw�&��� }�,�F�/�"v/S�⢝�qkX���0_�5ȴ-�~é�L�.1�
-�OH�h�P{-F���~�UHCT�"3v���H�m�
)p+y��г~)B�Juq������<y)�=6�;je��܍���h^Iۖb}��M�e�8k\�<hXK&6���\�v�!L����Ql(�<�?h,Z�$���m��BݕQ��0�;0��0HT�k.0_���%m-`��j,3P(f�'l������Ö<��.a���<"�&��7�{j��;s�UR0d!
ɢ.���s0�<���*qզ'�LH��1y��р�W��k�8Z	�_��O+cQ�)K��εP��Te���� �N�cځ� ���A��Q!x���0vT�~=s]��։��UV'�u_Y��|?kW�K�������~�ϴ@�&u����%�Ӎ%�E�Ew6������!�����_����&�_�����M��@#���|A�,�%�h��C/����;B6g���V_˰3�y
)�ހѠiݎG%;cD�G��R��z�{z��w簟����������Z/x\�"k��Z�t�1\��e��emU�^H��ϘK
>da��B�.`��`I��435�J7��E��繬��iV&5a+R�r:�&Ye�b�@�9ވzd!�L�x���%�d��
�W88'��O�Is���K���>|-
b�}��+
�"'=��U���DX$�Q�%�-k�X�0.�V ,��)���8�K^0c�S���$�Er	&
Y]Xq+*dZ�v�$q- �."�̽`6�5�)o��zc�`X�I�=J�$u��4�D�G��B3m���A��:	��)�V,X�f�UQ��Q�ҬZ4�F��Z�R^��q⨯ қ�S�
j'17B|
-�Hn�Rݎ.Ι�SWZĀc��ֱMTTi>n.3m�,�&�q6�:E�+6\`m�l��A�67Y|�D�<P��KK�r1SL� إIE��,�~�Ȅ���/Z
B�:"<@Ҟ�/3�Ⅎ{+A2��%sS=H�.�Qf�#��]����,G�����#��Ɏ e%�q�!������o}
tL.��
ׄRM8k�z4�Z�c�˘����\m
�6髋���&J*T�M��G���H@CY����i�瑬>����H줟��M3��Lp]�}�K��l~.�"ςgQ�6P��4u}3B�[�o{�����]�s�%1�o�0}p�*�.�
mƴs���H���J��K��0�V+ެ���5�n�3�+Y�����H�96��Q.���1o�Z�`�,�;H�d'$C�T��ecE��H�3�j)/͖-��z�7aڜ�M����:S��WA�B̨R�Y_ɕ��tAx�Z2T�u�.Y��y.�}��2{������t�m/?#�Y���{qT���>n��tz'���������������Zrv��9@�\��
at���G�q�L������O:	�
y�q�ӿ�|��W���<4-D�d��XO�wKe#
cr�_�ɿc_��n���T�����V�k��b���V_�=_a�Z�<�� M�ft4��C��Q�j���L�4dGcC�b�ᇤH
,��ے�P`k�B,;z��>����;���-��Ս�(1��+�/��.�
	�N�����dǗ-��(-�{��/�\b�1�
&�uU<��b��K	��R��Q��M�[(��
5�	J8�H�zP�:j�L}�U��d�J�&
;B�g��+@i�� �%�'h|�l�:��n� 	�
���p04E,�H��vP�

r�U�ˣ���@fQ�T���gѥ��"W>���4�^Y�3> )3_��[�0_(V�0*"�����!?�]{�#`�6�6���˖�$pa�شEH&�֐6�0ĥCI�G�P�42�|���L��Kʋ���D�_�z|4�ϵ���ņ���L�}�Q8���܃��4�߀��|�Ix>@���鋶A_\N�
�߶��;�rƾ���"�$2��b�j��D�◻�s�IB�� 楤e�c�=/��!}At��C��(��M�H��)�O0�l�䢏���]Erp,��;j�K��Z$n�&|]4>�˴���_~	��*!\�v�<�v%�<�DU7a��&��mNꩲ՜�0J��Z%XI]e�W#Z�n[���p�3�h~����3�l�3�:��i��nv�TВ�@�lV���j��:󷮷Ug�����|�h�R�,�0d A4*�2!�02_��
i
�KZ����l@�*�����jU�,%f��7x$e��5�5pT�s��������VxB8�{��Ba'dHh��ssy��koTP����j� Tt��b�y�N;d�q��tl�ou���T���P�i��V)��
��R��&�L��?W�Ck�K�ՎQ��F$*01!��T�5&��s��a0���S�H6&Z�Q%MgV�t6Z�C�U�2��{0��Ԇm�*��M�چ��Uo��gҰn�W��h�~�cW]�-��y���)'�[6m]h�e����ݻ��~�r�5��O0�A֒ˎ��Wk{m|��0s6hέ��y�A���9�z=���#y>p������0�U��n���qT��GX�zu��{!�Wю�ᙠ5�H5�q�f
u��C�p�憌�$�	������4F�1�	?$%:�X�	?�>^Z\���t��;��K��O��x�������A�g��6�UxZy��-,��-�`�f�넣�`�bU���vs�>/]ݽ�牲��vJif�+`"Q0z��}�8��R���2<�Ƥ�⤍iQ��o��S�7!��R�l��r�
q;��J��lc�X׍������_ssQrd4su�P�ª �Ne-6P�m��5����B"U�E][A�#���>�����τU���Cz)e<�X':d�^q�ذbW��|����x�nϢr���peQ�aL2P	�J��"Z}ԍ)}�X"f��B�R[m����XCCpU�G���14�G�P,V"�q�/�y�f�;����{`�p�'�s����Pዺ�g��Y\8	̥���t��=����:��ݗ|1�Q��XT~_51<��|^���)�"���<N�b�	�HJg�x)ȡ�Y���%��-�O�xåP)3�l�\&���0�SB��0iiaӘ1W5�^ivX��W�]��㻣#yB�"^��?���|N�`�9c��s�� o�B��T�>;0L��_ss��〸A�H�M�a��QD\>����Jɂz��c �Rn%��Xd�!� �@�K�]rJ�Gӥ0�&laCT���
1[�5�!�k��\��4�3va� �C�>3kȪ%Z���
�O�2m��]������P��M�}_�4�V����Ti	m�ou;�p��NyjV�{Z���kǺR\j��c�.�o|�u���w�X�H�Ds�j�P7iP�J��e�WO�Vi�읒��cb_0��Hp��^r��,]�#(���˷r)�8��@5��;!6�I֥w�{7���M���>
^ɫ�/y	�{�Yp�ɧ���ۃ��ȅ��9xt��p��w��=��{����9k+�F�R�3�U~^Xó�Q�?�b�#�Ӧ��e}<<#�v��6�Ӽ;]��1ڗ
����a�\�8��Xx�+��H8s5�z���P�0J2lH�޹�; w�K��7R]�lf��h/Uǂ�˫#�'zl��
1D,�Ḧ4Gi)N%�$��j���/����$�a��(�Q`���o�#�n�\‚�9��4[*����}
��1��c7޾
�Rܬ|1=�WZ��Pz�H,��.U��\yY�tJ���5��]�Y���[1����$�H�qҺ����u��`��(�;L��zD�Y�X���7'��aы���(��4NG�\��A��*�k���#x�Bm8Sϥ
0!���U0�Z�@Զ��&�5��:d�a��:���
� �L\��A,>�6T�% ۥ6T�I��Y�tX�C���D)[�蜣�¢���f�0�Ѓ���Z�N�gk6`6�0�iG0O	����؊#�]"#���G:�gߚ��z1��D�
.��#�l(:"�$<!(,�(A5$��.U( ���������t&���B���c�IA�%h�~�E����{�LZ'&�(��8�NaKBq	��S�,T�$}��@��`j̈d��!0�3�
��Bc-1FP�V�}��W��^
$	`h��!�vq�	�Sa��MD�Lヴc����渌Y��wg	K[��!�b���v�W�>oQ�W����P'Kҫ5�QC��eM��I��sY�m�d��J��s-�\ld��ypI?��L�9��B�RdU��<m��M��%��a����	=��6[�2���T'l��ڦJ��u��ƶ���mJ�࿙�^��Dbo�>�Ց�/ ��i�q@��=;��C��=<G���*��U>�u��Y�(5!A<3�J�.Tb$]7��B)3�8V�C>ڐ���r��)�����M����/��*�F�)}��psh.�J
��N[hGzg�֫a����l�c�]��xO��O�j�r�yɭatn�!.����.lz�� ��M���6��o+;�o��B�!!d[��ݵw�?��ں�o;
v�
6��¶�G��ۼ0�(�[X�s�����A��Ӱ�Vl����%笺���������ښu�
��
�9X�r��-���ҋ����V��Ñ�4R#ׇ��CӍ:b���5}���_��VCZHr&ք�nH;�}.��T���=��PFֶ��4�j��ސԟ�h����n-�S<���b^�L��e|�邏n�7�/'s�$Z87�!�zs#M
���>�$����K���扁~[����:���2�����kl��+L_/M�ڃ��4`�hV�$�)8�{A�;N,��Pă
ջ�����iC�P��ꑢ(Lѳ�����Fq�e1��p�^?����L)�4�ڤ��kOW�&1+lv۽�x�ppPj�_�T|/���l����E������	�Ntq�h�0�p�G�a�
�M�M����C� v�i�`�X1EC���M�X�RV�u1�H��*�K���f�ӵQTr�&%��rj�$� J%9���H��x�ͤ�uNL�JV��u A;L�#�e�2�a� [�
U�7�(��߀
؀
Blr&<�t����f�\R���L5�%��O�`���@�]�fm`_��̴\���/�B2�1-� ��qF�2�� ń2sD0ˆ��舢e!��[A��)#����T3�TaP4�倷�o�l��2p�̐�ȘG4آD��{��c���o��`^]+
�C���ā�y�-� $��u�.l�|��Ka����Ex����gBc�H>�9xp?�߿��̓g<u�ޛ�N���*�96~)���0ߪ�jmH�؈��y�"R�8ͧϒ"R_�k��VI�C�ElN1\���꣗��e��7˵�!�WO_M�r�u`�,�U���1zq�RCi����\Sԉ�}G�v`�{��pW��D,�0D�"B�	&��0X3�C�l��fmc���*#��uV-�&�B��7�*�kk��#q��q�뫳�+{WIQ-���`*��6��tB��UPD�4/]%H��v.܇����S�O&�A����@ƞ�6y�?,�ǣ"�p�36;��y�6��zٕ`�qV���8�Jݕ�;;Z�'�^!��w�^���0)C�I0�I��ML�.+0��0�VJ>ԻU�M�I6���B�B�5���]j��8�7�*�l���I������!�,��� c<�aG�A�H��Y}�mp�)�Z��P��B��8����	�3w�l9*�<��&��#>�Lg�����Æ��.[i`�7A�E	o%���EA�c�:��/Lp!1;$�ʲcAYV�
 ������F�1�D���d!"1<��/�;Fn�r<�dE��[��
f�DWXf�*\�����p�m��TG�셾s�U���w6.�n'�@�%0O�]i��!Q�T�.|�9�E�8�K8�"���+�]PI�a��9�O���m�Q�\/M�, �B8�
N��qQcE��	PRE�8X����0P�k������䊫+�`���T5�`S����:�Ղ:D	�7���$IcY��1lJ{���l����9��*em6�W)�sr�o�l���Ԕ���r`�RD.e=i�0�E{łA/�R�?�F���=���Y�БMH�hN ���	�Ke8
6Q��+Y��C�'8�j��f0W7f=\M!&L�h�,����<b�B��i�i�=���dD`"���"�#�\��B,'��:�0�N���D��]�1��w
[������-c$.���'�n-7�� ܳN����R���/��aaq��m޴�5d��s�RnX#
S)MZ%$ɪ���_��\��N�e8X%�Z^��g�&�T筝�MtË�7�u�z�Uc:��C�1\p������$��� �t�ȓxES���`��ߟ7�>�G5�kB_J�Tp��9��eo#�*��Q{MɃXN�'��2@{Kq�涎�%q�\�Ii
�y��O*�0ŮK�i�
B!�!}�ݑ���*����z��<$䕒rZ���.�]� �)��-���'N�x�0�� io]��cy��|���6�)BZ��F����a�X�we�����r@��0Ă���._yq��D>��Og7'�{1�!�<���Fb��@�jh=P����Ҏ�,Ljk�M������Gs��T���֜�N˚���|;�3�nFL>�<��[;Dѭ�Jd�s�|]�� �E ��f�I�s�;H]&�W��w�����V�˪��`rjJ�Ta����pja�X��x��U��I��!���/a�W���U� �Qz��֘(�j,>�R�nBV�0��Z�B!��~�R��/1\;�Wp��8	�D���3aO�'���3K��.šϤ�ݥ��aj\��I).�8���m���1l��U=H#�ދ�C��
�q�#u�*��$�ښ�Ɗ�%B�PL���4%(�G�	6gq&��17M�&�O1v���C���C�+uae�R�Z�W]��m3ˀ���J��|2��&E���^��g�^��W�7��]]�h+��SO9~�;v�l�:���z"byy�7��Q�$�@%�;�ג2d�A��K�.uBH`@~&�5(�*��Er�2E�aGo��%��T�vX��H���4,R�������r���	��ף\zijy�hdڵ�e�/E"�)��i9�S�ܾ�8x9#����?�1A|�')[I������sU�s���j�� ��j�Hl��q(�IqA/� 
}v�EEu����`R��0�W3كs��~�N���bd0�8�����Km�j,)��Q�얧���ҺkhAܚ��:�H֗��y[�����5�����e��)=�I�̰�ٍu�|�`���	F�����/%��ܩ4�tX	G7�U��P]���\�7�*�t�0�ѓi��(�$3ug��K�Hsj�/��8k�te�,�OI�|��wy�v
�6��A��%e�t'�K˶j�j~�u9��r�Jy��2"�TaHIz���b��{��|�O.:\�q�]̜����>tI?#!��{I��4T�+
"51&���C��U�i9
�c�:0�G
��()7�Iat���'1B�1h�R�Qb���H�쑮%JA��gI=�d���윫ޱ�}�~<�^WԆFU����r	��
\��Z�5��8�0�XO�(lJ<~W3&�ɳ&s��_?|����=0�Z�>_�p�F�c;ӭ�.�\M��aa�ݵ�Y|��m��Wz|G�[��'�� ^j���C�Y��ςʻ���X����ܻN�p��%Nߓ=yq�O.u����5=4�*&8t��8�ZnHy\Ju���N�c� �]����"�0���YU�P�`a�@,B���C5�lǠ1�m.ս���qָ�*�� 8	��p��*b������K���%�v��P�B`9$hT�7E�M��bY8R�"�7~��&��])R�'5Zu[��QZ��
�*J*,�=a����k*� �ҤB�'"�	QF��E�L���Y�P��AW�L$�]p�;$Ha؝�:� B{zf�ڲYޠ%,.��O�g��3N;��7�����G���)رc�h���<�<���M7 1��^�	��?�&'��)M�7H{�3ז惟rg\��^IH�����_�KA�?v��I�+�m!A�4�YrL����4/&5kUt��&i*�(��!)��I�oL]6%ȶ"�A�IP@���"JN�=�^'>1�J5���I�Ppa/"��B�(g��#�ȅWG���$�q��eI_RƂ�R\bu; �s���J��+�ē��8�u�pk�OV:jMb�K��D(0癝��j~a��~�֭�G:�d��
�)2z�1Ҹ왬k��h?O�̀a����omS[�pocr�g��X�jR5�B���U
��95U^a{�ܚ�%����m�<�as3�  �M�S�I�LL��ʼ���٨0h=�X�=��C�l�Ӿ�;%����u�[��
�D|�TPm�d�ojj��ܧg�0#���L"���� �u�^a� ��J^��u
�@i$dF��y��j	�
0ʜD�i�+C\��rGu�^+� c&/����K��1�V�ELDH�Z�`�Ϩ�����1D Ϲ M?1
�M��\�cLvB��l��l<:�
$;/*��0Z����3�DUXdɫnm�m'=�������gH��/�>��x�u���ھ@��
[�&��:`�[m��y�>?ghT�a��hy��;�3l�ZW�i�K��mP��j�������dƃp�uY�H�U	3܈��M?���	��J�B��l9hCF<0O�u����$^
DQ��-�������Q%E�OQ\ :��Ssi%�VTQ��B�����@�,8z"8aA��]�Od
B@4o��UTQ��g8�\q�BF%_�D����v�c�G+��_*N	��=�@�f��+"[�h�vV�PX���	]�Ž�	t�Q���.�rf�-���n�j*0-&H���@=0��+�<j�!�+ŠcUs՘���n�P���L�ad+�L\�1RQ�6D˵��uc2~Z
/K�N������i۬�]JP��r�FI�|�$�q�
,
��_W��`�{qy��dd�q@a۶��G���>���?�G{���;��oyc�~^��Ï���?�SN:	~����xaƨ��/~����}\��Ka�3Z7@��tѥ�}9�J�C�.�:�}]�%Ov^��E$���>��PYD�B��k�-�Q��/p�Q�%��(�F�Ķ� ��(�|ҳ�

��x����PH\�BO`500�OJ`(��1�Ċ��E��u��iA�-:33�L�3�ly���ĈWEA�qE4*H��C���%��%=:��z�E�T�f�>a�	)csZ,� "~�dq6�3�O
d�o �ԙ���J�/��X�A�B�G���<'�)���y+15�B�̑ߠ���s�ԟ����;Y���؂�iY��%F��_ax�C�kU���c9R��q��+ؓk���!YAI]2O�2���B�ԇn���GL3JY�����* ���oC%�Q\ȗ�*9�"��$��,�>0K����9}�$��y�ͺ�%�B����dk��{qw�}�C�~�7l;cji�Z�a�VŊ���ѕN�z�ʼn��gzɠ�*�=e|��0�u����	s���Zۭ����<�R9Y9�+�j�k|c�>t�P��쫦K��V_&)¼ᚮt���f��e���_���!��A�S��w�aas���9+*��Oڼ�kr4�ʳh��,�[}֑��P8hs9w��E�����x��(����
I�׃m�p�f��DË!틭L/�Q�&���k���á^4p��|�"7�F��ـ5[g�-�F(9�r����Η�@��6����g��X�(&X�����^Z\�L83;�<Q,`zj:d���Iw�=J��4x��(�MM�˭[|��,q��&E�r).
z�¤���&d���S[K��L�6���I��gw]�˩W
�`�2�z��ЍBRZRk�C�ZUb�Q{
����RE��O��L�T7���J��0iW�&$���ά5�����!K����Sr	�*�-� E�C����Z{�j�c7��#J,:N&dY�Q �,��Zќ&v3P�t�hj��ω�bI#Ņ1rV���10�S)�I��M��ڲ����:��3�#t�[�D�
%�J�������?��'����]�<��)������O�
xq��������׿v��ڕoz�q�=��~N=�D8���2;3�D�O�E�A�i��/]��^_�.3�	��� �}6��JriZ�1a�NjM*�/Q��uY`ju��%̮��M��M<YAE��zj�I�Ip]'�c4XU)8�F�̿��%YK0�C�V$��r��������F.�P���1�kOD�C�Iӄ�frr�J��(�"E�Xð�ɑQ�,����\c�HiѮ��+��ա*���;87��cqi����^�A�wG%���9��`�QC�IH���[}��xN�UJ��c�"����d�r�JXWZx����~E�Z+]�+��p��,M�i�[�ﮖ����հr�Ml��1���*䕸�v1Ye.��GæBC'�f����5���;�a}�5d����}�@0V�Pg���rk��m|K5���*��
-P�&
�U0��/��'�(l�lLG	�ַ�n���\ӈ�|�mgD�����aJ;@�^��#ۄ2���=�'J���S�����J��z�<��s�ʳ5`��05&$ˋ�o\�ϊ�L���i�A�z�H;s�q�q�QkژBx撍�$d�X��oe��uL���"�_�L�Hİ�+���w1�c�q6r�8X��}���?R�!���5h��R��*ӌ�F�{��4��%6⌅�X]�9�
�RH]�ޞ�l���#�X�-�ʡ�.��#�:
���q���a���0�W��d�}z��$���'�S��ƠP�؂���E'(��&�a���`��5E�$wn����6>���P%�2�D��'�\����������p2ak�Zh��SDŲΕ����N@��L3������ԗ@�jM,��U���Ym
nB�%-F쇗�����Z�K����(��
��
R�0��R�n��+3��U�?5!봆���o�
�0w�W��0�.�g��!8*�t.P��\Qm}E)�->D������ݰ9�mx$�mp	
,=0���&��Hx]�Z�������إ:���N�o�8�C:C�n*~����'võߺ�<�4x��G���ڵk����ö�[�w�'�g~__��U��߱!y�����>x��o��O;�/6
�L���T�5��<oyz�u���{���\s�w��w®�82z�T�'�;����c�N������^�ppN�0�r֋Ә�D�]cq~�f�؂�����oq��&���h���شI���63x�1���U��bq"ˆBT�F�3���_?�3�43�����m�:	�JŘutt:�&̳9���}���x~y�M��QHI�Q�0���g�T=�S���`�jBHy����K�t•�Yz��;\���_���cӦM03;��nמ�Ҁ��ޠ|�{rw�%�u�d*��%(��3&@�}ThJ��YڊL'S`��W�>�\�-F�=�t-���o�����Hc�rRն��k��5M����	k���-:gc�8n�5�8BaF�p��k�:C�c#�]�$��Nd�X(ғ���V�B�J�(۾qJr��u��!�2������Ի�g+P[��II.�e�V�fV�e�+򶩞Wz
�ĘYƫ��DY���J��f�J+�y(L~$�d�jNtf4��B��]5}���<.=4�1[����ž5�'[�y��\ZZ
⎰����/ʳU���"�,!-�IV(��Vk�=NλDp;T�aМ�,�^v���s΁��m���}�y�a��;`��N�#�
�����b�#���Hď�g�sӸ4�
�r��r͏5dwoZ�
X�����ȥ6+V���]c���cw�D�A�Ft:������u˖���D��3BH<R�N�O�\�祿H�4)
...�w�踎����3�R$��>�U�e���P)�E�P�e�� ��tE����c��,��#���.Ƨ�"��%��B�7�V�7+=0�y��r�A@����PkFG����]qF
�a��Z#Z� ��,ֆL|Zr�ʌ�~pwF��(E֎]È�
h��
>��
q��x3��¤d��,ɧ/���e�2�wN]i�!.v�1�9�]**b�s˟&���IM[�2���JIV(e���
5� �!� m<�{�4T1Wz��ɸ�8C�={8��cO<	�<�?�C���繹����'��|�Ep�-���w�
�y�ۙ9�/l��;7��{\z�Űu�fv��;��'|Q|�>'�xB-�G?�)�����>��p�Yg�Yg�������7�k^�Jرmۆ5�Q��fzĀ�,�¤�@�$p ���NWv�#}'�)�ꯜLI��/UBB�^O\t���E�~0��,x�1R
4s�b�0���� 1đ��"0A�v K,b /v�$�+Z�-E�
�R��+���}�X#�'V�_ߡ�~0Q�D`a�bY
b�.���`���8d��f��5��$�eVز$c��'���DW�x
;�,�n��B������`���yz��kɈ��#$��v�|��K���#�eG�pi���Y}�~�"�Brԩ���V���5��
*
J�tm�6w*��fX{�C����a~CK��n����j�6q�0k֫�0N�;еi&׹��cP�ܘ��Ub��K8�t�%Ö�Me6�ٴt��LD�>��8?trP����ꇸJ�3�{=�驄�P&��p�Ƶ5}�V�?R�Y�)���--A���1է	i�VE-�ʈ�א�c �򱩖�������tq���Bc�������ε\a���&����X�O��F�gV}�,�����:�o�q�1�6	��уbq	���'7��fg�>����9gMn�ځk�>���<��G�&����N<��|Ͼ}����?�� ��#Vq��o���
lH:��r&U�߃`��G~w;hA����u���F��lG
�L'=O��2���
=L���y�Yb�ѷ�Z٩��)r�~Z�?�M��Ԧ8����0�LM0�������E�f��r��H���L�cG |�]�/���Q�{S��2�i�jeqQ�wԫ��'�	Ꮘ�.��묔�OP�r�(�J���xP�uR�暚�oV�4�OS���	�!`�7C#]�bD���Q�QSt'A�-����r8:ŇU+m�8�9�I�Ҷ$�,�.��DŽ5��Tx���6I?�ZqMC�"���[����bDVy�ؚ�2(�fY#]����Zy��(,��a�b�zw(F
/+?_�$������p�)'�/����\��I:�u���Y��.<�ں.8�%��Mp�}?���=6�
�?��?8o{��������?��;�ok�w�%�`A����ڵ�->.��o�<����O���Yx�[Ft�z��j���}f�ӑU��h-v$h�i��D}� �$�� ��˺��~��BC0�.�؟%	N����J��FY���[i�党�1�z��H��m+}��@�`��Da��j&�BC�R(�"5���}T��
g�O-O?5_�+�)�[� �K���)4��L����}\�y
����!����i��������>�gcr2�1���~�O���}�./��c�:�HA̮�A7�EUl��N��S4c��:�}|[�k�Z+������?bjWa&6B��,f�\^��e��`�xU����l��������O�:��l;�������n�w�N�X,bH=�g���sޯ��/�����I�Lyz�>�l���ZW7�|�-��*i�5K��߫T"���sgڟ��S3�I]g���"Œ�b���K�!��	������׈P�
'�k�$���X�V�Q�ΣP]$'����\��t[*5�XG���n%Ⲷ�̾��@��ښ�ڜ$īҢ
k�UΟtnF9[]���|]��d�X������3�
h@��p��]Lcsa���1�Ǿ7uY^�M3�p��'��Y�-��U��X���"%�������e��%�s����\��Z�FYV�n�{�`�Q[��O�Ap����d����կ����Q�7W�<
�����O=
���O�	�����#L�m+�9O�+=?W��v
7 4�w�VV*VƘ��-Kμ���O�*�������lx6,����`�l��F��\�=hD��ݐ�Z�z,�J��D�@V�0��4���V���R�EIO�*����iO�R����o
ؙ��,�FR�W��/K�M~	?[��^e�X<U�[z���B��f�8�����Fk�wu1޷����A'�MX���a
j����.N�g�ɕA)�<u��IL�S*�%�)���%yg��L�!�	3��si�\�f8SRn���*���3��?D��"�A��r��%��]�>E{�,>�3;���Spj�,	+�y��~T!�`�ݸ��T�,7$�XҔ���D!F4IiDjN��&M$�W�݄�͗�\c��|0������4lף߭]kz=�{����Jv���=ڨ�3Ӟy��:j+���Ö͛��s΄���5�kC�‡�������a�=Ʒ|�6/8;^~��-G{�!/�X\Z�SN>����_zˮ��Vx�k/e��m[�pZr��!�{qi�Ǐ�8p����s�]>���^��:��(����}����+�
A
��i���j%��rrrBn��?���]���41��aw|��	��������/���A^*�}��AB9�)�W�g�/Ԙ�(X@B�qʠ�~uy(X#���/s�%��SDE���U��J��%�������jbH 2����"-��
�����]�����+yG�Z+^�rpn�c}��g�3g��`k����7_I�j�j����8d��W���h->>�d����ǵ4v$uaғ��Gy�0�Ur�
m<ds�!D>F4�q���}u�D@'�~w� �nU4��ڍIF$@��\��3 �\��%��yLs����_��`�v(@��z�qx����>��u���<�{w�͛�q�W}�H9�-�L�[;�j�])b��VH۰��G��ִ�!^�;������|��Ⱦb��Ԛ,[���i0l
��ZXP�}�$Eu]7�l��5��x�#��M�{<[��-�ʶ�2*+�F��4'T�w����Iv̻�L�.]�Υ���j�/��#[��L���r��j��"]����,Ir��7v�ɚ��=��=��c�W��3΂C��B�}ƒ�?��~���p/����o�<]�#�6ŏPT(�����+�20ݿ��߁���۷l��x��j��a�����o�	�{Ͻ0���:1#T�*T�%��4����C�w����F�g9��6�G�} ��0b��u�_�uR{�:��w��fH���Z��@��Y���u<XFh��6�NG�2͹�?�;(8�Ƥ��W8x�c:z��Ļ`wW�)�QsŽD�J�!�5�n���)r��
�V�5�S\��0~u*\0����fu�������:V,>$X��č��J}�I	��;���,a�UG�O��Tފ�J�41�����v9��>X���
Of���)���ԇ�HQt�ҵ�$�E97fCL���$!�F�~
!Nx7��Қ/=|TN����>j<1W��5[]�eiG���kTw
�.��A���`�W�r��@�]�7��K9B0#��҅�Gy.���z1��w�.�|z9��0z�X'/:ؿ�|�+_�O~�oZ��X_����y�p�K����Uֱ��;��o��lm�z�����͛6�!���}�3v�x�Ep�f|�_�O�����g��;�|������r/4���w�3�9�"��֭[�ɧ����E�f��\�oM��"!�X����r�ϣ���ԝT��:���˕|XvJ1�,�
@,9aA��l�Y��d����oGG}X����$�ݒ/�v�"�0����d�	(��8+E0A�6s]�Fz��x!HG�\^a	��~����2�~�t�
ēFf�"�"��q���"x��hL���~��оb&*����_/sspp~��%�����e፫\��!�7��%D�"))`G�G2ӥ?ҚA���a�"#Sd�A�g�C�^7�u�G3���L��f���`���j"N	Xg�r�0U��z�0��A)�.k��w������:ZG�@��v:��^����?��t��ɯ|������SR��H7jB+�0�Z=و5U2�
�ϜK	y���4$�i��x<J�R^���O��+���9ִ�\�Wb��"���{7�t�K���q�6��i�vO�,9+�şR����Rrb��f�AWb��Br�
zN�	Ą0����~C�dK����=����}HsVO<���S�:�پuq���y��I���`��ҭ�En$䥿�N>���bؽg|���|��[�e���g��	��6d��L�S�?n`�ͳ�p®]� G��I	��i�[/������kK?��g�����ˡlh�;��Q?e�V���tȱ��0��	c�ϓ1�B��e�+�F�׹�y3K~���њ��X��n�U/
E��HK^@B�7o�4P8�Y��4�i�Bv'�ʠv�/-.E�K���7{��C��\�I�u�I���7��K	!Hb�]�I��8��1��
��)h�����v#N™~Y9�=�u3��Fe��׹F!0���Mˣ�D*!lu;�2ފ��3AJD����FX��z�cʘ��E�%��9;˥�B��咴3�؊�37�R�!���V(Ӽ��i�|	*f�:�fh!?�*�u���N����%����Mp�j��!꺓����D���y(l�
�W�g-���"�k�a���d�E
�7o�+�x=�|��;b7t(P��G�72��2���s�>n��{p��߰y����ܱ�����/r���۶1S�����:䘣w��^0�o�~��"ٳ����F����3���?ߡ�Ak�E��-�X'�V%��$�	��'f�^��(�D0B�3�Kqc5�V%�	�,;P��gr�)����s��!��ӳ��G��6(����~9;j�!��N�]�OGL��`����В�I�%K?�Q�cD�C,:!33բ0a,���8.h�D���G���rS���lTSC}�㈐��^@$<)I+ŷ��~��-�33���>X@Th��T#�R
F�&��s&��/32JE��\�5ГjZ	_L,��4.T��A�P�(��V�x��n���[���l^��[�]�k4���P�a��G��xɹ�#�_��_�?��a��"��=�����@2�R��1K��k~���8%�rR>e��uD��YN������|�[q�T΁dc�5�tCަz�D(��Yr��8h�1.�� �_`��i�n��Vc�R��u6��\����=�u��K�A,<dMʜ��cw��L�j-���'�~:0b�O�8vM�Ǵ~s(��*���@v�*��'���#�2����	H B�'��]_����?�������z�`0���@�K�Ǜ�/}3��2�pobX�zܱ�p�}�S{��s.�hLΦ�R�"��3���Y�=�=�yMUa�!��8�Kl-��}�g�(Ë�v���Z;�|�/ ����T�J���PI.�$^����R�)��1/�T�[��#��,0��t�⊒�Ev����_�J۪@�ܻ����\���'4?d�0��H�
�����-��Mh���:Au0ߢT�S�j�D?�)``�T��i�q�,м�Q����&H�X��4���\DU\@�o�!Ea�x�)�
��)�o,ܐZ��
q�B#`@�6@F���A�!��|9��@zX5x8] �z���R�fPݼ�d�B$u�Qn�Y$R�X��8��"��fL��E�d�V)����KwDMCT��A�}A�e�ڰ�v��A�����]�c��3����F��L>��?x��
����b_��IB��<�KD���$��s�0�/�x����Ö-bJN�ch����%��Έ��4.l>J����f]�h�C���Hdk�X���x�3�?5����5(�
Ƚ	�=��]�Ks\��@�9J��څxS��%η���$�
r�A �TT�%[IP�
�gJ�rnI�v;��3�d!�
YV��T�I_(�2�H"�9c����v�䊊�E:��6Rƌ�+�'�t��U]��I�V4�E
�q�7������=�g���ԬgM��Դ�Im�s��#A"���y÷�3݅�yދ!�GZ�@h ��H�L�t98d����"|� ������$̑A�xNq��+wɷ����b�L���:3q����@�1����0���?��}Ը�P�\��m��׃�e��1�\[��t29����pzrj���K|^�֞�}>��U^S��9~�I�Q:���u8B)#B�p+g�K%-O����0�r�hM
3�!�S�
�C����q�ŇΆѕ���Gm�������׽��+߼~��
�xjw��M�)]��O�g�
����(���t�X��.�A!Z�4-���@&WL��J8z�v��O~�}�!�(��sw�>_�2�x�]���.m��=�������~��|mk��sW_�����\�(ؒ�s�Ll�.��G�:k9���'���?�{���8r���L�!�H�Ƌچ���Xit�k�S�D�X cR���"��V����><�87?�
�Wd2!z���\TQ�f�A�S=�&�>uQ�@|�}N@��-�y�`L§[Ye�ҥ.�JV�1O���?�MFQO�Ů��}�K���F!x�(�"X�P�������^�0|&�qԊ�--��y��[=#�W��
a�	h�zͣ��kZo��z��1��_�R�@�l�������_�X�����HT��Q��|�
�D'���2��T�E��MT�d�t6�E]����1�
.]8-VB�%���&%+4.��K��/��4|���=sr�7"�'z��.��N=�c��v�ݬ��X-/���u�}��7��/\رc��C,!'8�S`�'�������ʃ�^�{�Y�ޓ��w�×$Y��%�޽����p��`���FD�D��4�K���$i}B,J�t����/�\��P��4���4Ր��&<�A'+	=���N��G��ᠾ�e ��������� eO���_j��2�P3TC ��*рR⟰؁�8d��'�#'�r��@���!�gV4}��
z_�	,�ۜ��sT\YQ{$�Z!ܜob�=	�.1<���9�_��n��ٴi��l��v�-���	��*JZB�H�A�Q��Tݲ8h����"�k++�ֶ�Y4ݓd��i�xAhK�Se��&՞��K�}�湵 ��0	��_�Fj}^l�=�j lZ�:���jb�J~Y�Z2�5>B��
�{���o���{�W�۾WKS_}y���%�G7ң�5���f�6a&�~��"�Bg��,w�L��~O!�W2��W�
@��jk!cpg�oP?��Wi
I��ڡ��U���6�QY;�YB�B\�Y�䷕cn�B3�O�kF�)�.�
 B��"����e�0�T��6�xt���f���'�����;��5��O6��`\!�Q�s{�qեyb���t�ů���~�c��0��>��V��ֿ�d��]/9�T8���+,�C?��#O>	G��X�Q���j��p��w���;�%�����4߶�wM�ǁz=��^˴��:?�P�#K���Ix���%f�&&P]7M�Kp�nW�����A��4,�ޯDc���I�uX�A��!A-;�GRr;,��Xj��B�&�^�!�L�b�B�lP�
�	`(+�.,j��=E/Xjt���7��K�J|
�ݏ�WD㷲ǏN�a�[����	���*ٶ�
u��Iq�����TX����zU>��v�\�A%I�$��
�7t�k.:��WXE�,���?n�"��7J)`F*���fw!ڤ��'q5���%R~Aq�܁� �O�@2c�k���7l��Du��6�ŤQ�ТS��Y�&%��aJS����z1md���ׯf�^'r[�}�Q�ʈ�_���?���9g��yLcj�gb����'����L6�	�u:|��'��SO9	fgg�e]_��Up�]wqL�~�'R��?n��6x�K/��T�8��
K^�Ȉ�
+�$튅�Š� ��
$�n`&�Y�fѠ�?T���r�LMMq=�܉���#�?	fgf��+��b�MB'����M��>����R��ժ�]cu��ĩjO����Ҭ_���@H�P]���&L�LZ't$H0aBX���?4;#J=~(����_h�F�hj�e���|���yה2nss������$9��Q��`��V��W��Θ;җ%��>Rː/�B9��9���*�
/p)���XD���w���g�l-�:�tm��k�a�����
�zن�Q68�Ҏ4�:֪�{^�A����a�nn�\�]s%.���e^�z*�����?'T�:
	���i�q�"�P�&�L��i�2>m�5-�Jj��F�0\6?�g����v�He�j��@�]�	�K���?�7��s%�Dz�4[Z���=ɻ�p�5���������8�a�d_�t�"@t���b��ԄNG�>u�tHc?�2���Ć�������ٓ�WN~C���L����j�P%�{�-��@��Sf[)�m�Ќ�{Pl����������a�C���j`�9:^}�w¯��?��g�r
�zy��*{��_x�Ƿ��*Ƭ/�u�\�=5b^�$2lq�,.9�-ӈ�S=���n�C���{n�Tz�ŘQ�N��(y�(e�U��V��b9R�^+(�KsL�#XY�i�S�������h�2D��u�`Bbq�����@�$��#N�)$����@%�#�X<���iu��@X�
�b�!B
��v�E��0>Rܤ>[,�,k,���'�>Y�0NAY���Q:���Kj��,.�u��7?�$��W�x��F��E�U6����$�if��.I�A\A��#�krF��VL�
��ԗ����BQ�?�[��� ��ɚ꬯��d�勭C	ב(JI*D���E�f�A�ݥ�*ף1@T�菂����9
�×�I�P��ܙ�2�Q�D	�
V��#.��€��t�@�Z8���B*���D%i��4A(rğ;�
��(��G>����=���;�򂐝p���3�{���Lڏ|�p��m@^�p�Yg–͛�n�s�>�;�x���w�{����s�|�	�|�^w=_oy��`�����7�<G�͛7�H�.�Ԡ�/JpA�@\=��GG\_�y��	�x�@���N���	%��srj�	?�$�`ER��� ������b�H\
���4�n���8� 1�ȅ�;N37\%����]�CTsT	��4�3}~�}#���|P
n��F���Kq�u�p�*��P�JQ�eMG�g�"���>�2��nj�ϳ��s������)شy���w4�Zv�Ў�o*�Qa�+�
k~~^�|�e�rN�Q�&ԛ2�S�^��LP����V��	b3�ӌRW��
!���巫<L�*A�AM:1v�0�wP$U��1��=�QG�?���]��_���2��29�B�VE�﫩�֊ͥ�=GT�5J��%B��%�&�Yݏ���]Q�Yd9B�t�4�:!�H��Mmµ
�m;%�K�G"$��'��sEY�%?���(%璼f��j%�qջ!���+4)�_�ٌ&�cB�֚h�4`��X?9-z��d�l�k~�i�
���P��%�<�#V�0�v�[X�'�<�n<�@J$�f�a��,�x��0������ជ����߯���b:�(����߅�O8vl�
{��Gw?<�����!��?qx�ևƦ���/(��&$����>n�Ul�H/x�K]�Vt��Ot�)(��I��	�N�(LU����i�Fȝ5ݗ1�g�t�Ѯ�F{���=�c��� �Y{87�J��y��,,,p����� E��7ĊVwZ�(����_baFW]_OZ�@��1��b��
-ԋ)��|���K��?�v�r�� �� Z���^Cc$��@!�o��T@Qp��K�U�,1@y���b,��Q1T�X��F&PQ��ȣ����H�3I
F��5{� �3�A�o�v�~bU�䢰�.��4�����2TX#A��c.�<�]F�T0k�$�:�X�Pz�j�R1�T�	�"$�5�K��B�^�2E=�n@3а����~^{�%5�m��?�9f�uϽ�߀&l;j+\����:�s��c�6��	���~��	~����̏Y����ͷ�7�68�%g�	���/v��Fn�P� $�Fɟl
�W�M}1�p��>_�`��{�q�N����a�A �%+�R
$��!��[캊~�t)�� 
t0///�~qI�u%*��BQ�=�2%�X�@~B�%���>[�$G<�)�� �Ea��~P�$����I�˄X��o
F1K��"����-���B7f�j�� -.�֢�	����,\�&�5>}���s�[$��_�[`zz�}⋰�҉��*=g�`d5��+'&�o��!c-���PV3ق��Nע�1�\&ip��z�n
�q�$�ij����8'L���$.A��2�'"�xe�=�1���uT�L�/C`����غ��u͞�O�$j[����7?�g��D,mݴ�޾�۹N>�Xx���� �)�ڶ
�ɏ�8��������X��w]�7lf�'�KPe<�ڗ�{!����({rrJ�DBw%	�-��.����}�	��W(45��	6/]��� ��t��t��|!Pb���(�ξ�~�@m�-�{��Y̓A<A�A
!-��1�-�h;ֶ}�}�֒z,��\�oVo�i#)�2~�)#��F(�g鿘|L��^�q?�Ѓ�;��tC��nG�N{����>�����SOmQ��@�_�q��xSc��)�u�yC��arX�ivC~�X)����逢������h9�<K�Cҷ=�����Uk�v���L{��7"T��\f�x/¨1��)�5�64���Q���Q���X"_�=_0���t:)ʈۭ		\^�dэ����i�M��t��H�
&���J*�%�9�;�%>��BE�S�WBB��NC�u��P�q<׃��i�,��S
U�1���-J�U�7�ۚ�+
�H6L�4N6bE���<��"|0K	A��sI~m�\�A�Z~�T��a�	&��B�u�x�T��K�]+;SI�hQbV.��;Z�D�N�0� ?plb��\`r$hQ�R�z�cHp�(@��2�|m��&�`�dE����\�tP$M$� �We�����FQ�y����s�����ךn�g��o���w�Ѱ/LxǕo���q'�ŧ?���Ăc�<���g�_�kk�|��a�Ν���R�D�
��E ��w`�R䌙��z�)D ����d��U* 1X|2��0�Y�}p�%�7i"��e�S��e���fv�ۗ ��d��ٓ�f��9�	�&�Di�/İ��h9��O�2�lM�WZ6䂞�ɭ��G
FӸ�{���wd�����_7?��Δ��*�o��8��[��E1Hf��c���g�I���1����%F�mZ\X`�A��b�.*l<�G�`� "P}���$�X�r�K])��k))�1��*3� x���iQdP׊vY��f2�&���uc�(s
��]�;�Nw�}ݦ
�V��c�w�U7�0R����׼��W�+�;���ڀ;^y�e�O���?�������Y����
�ἔqVvvZ��_�CZO��[!�E3��"t&�_�.Y���5�”I�Ć�Ֆ��i���`�r� %BKW�� �M&�p��J�Ii� ����gEh�X�K}E�7X%
D�.�����=Q���Yn5g�
�\J�jE�~c�=@*�o/[	�t:/���y�
�Ƹ6�=C�'�'��Ӛ�j���;�Ͼ�x�e�¿��@��"/0y�Yg�7n�鰸bZ[x���mK{��_X5K|�lV�p��q��{�=/ ��s�Y���A������֋��U�������huf�w:A8�\���L�ɪ�w��c�t�0�n�����d��'�'����Gw��A�I�@����(�aܬ@uE%B�i��ʍ=X�iI����L��a���ыr&)\z��	+��Լ[P�J�t��*�v4	蘉Bi�X���+(>��y�s����X�;��ܥc� 0��2��*̾�'39���pYC��V�WB�f��Cb�d1�CĄ��],]�^�?
J�JD���	N�K-UL(dc� �]j�A��� &�t�� �H�`xa*�@�-�4�0�h�`6#�^G\��D�G�&��t��".�8�B�{���5���9��6o����9n��V��{7 /`غe3����?��'�kW_�1=v��1r��~���c����Nx��g�K�
 0�
�W���zbR�1=(w		�^.R�h98��h���}�\,�n$�%�2����i�Jc �t��r�3���5��*Ya��"��$������(�
��JџhH��(iX�=#;$��H��,� �
^FCD�T&1���n�3h����8�ף0�O:��pCmٴ����2��4'i���<��9���`a~|�1��Ѽgʑ��Ǟ��W*�s�2Pq�f"#e����	?X�E�`*X�$�)b�0Lby0kG��浙0�
��6�P�>�K~��DV�3c���:Q����ʧ~��a��֎��Jȶ�o���wIm��%F�6�m�c��>d8!���a��SO�G����7�:�w����+`ۖ-��i��������׿�^���U4yV�������`�?���if���9O��EU2�i�W�j�XKk�>"�>��NBu�����}�ʄZ���h�/&���9l�h�{�����}ޏEMp ~[7o���<���={�����5��:9A��&a�QG����	�z<YY[����LMZ�F�A��)��ǔ�q]$��~n��7E6��Y��'�z/�$=���l�`���Ҫ�� pm�]���������u�k���6?�+��s�s�5�+!@�w��˒
��4�v��}��k��)���?���v�
�5�+<=v�w�K++0T3�q�Mo"W�t^�m{��իo�[���#ɷaZ�LtV,�6oٰt�kM�+I�]�[vm��˴�1���UG�kаC���t����Ґ�3�i��=�t�tt�5�rQ���X��W+���)*�r%='EinQ��`-g#����2K��)B�Bb\�;�]W)/�)S����2��e�c����:0NJ�C_�[Y�D�FxT�;�~nE�	�]"�;��%lmB���|����H��8ILj��Ԕ<d�Mij,UX��h�0����"*0�m�]�q�"q�>��")C��JeD\SWF�:�`sUƁ�pY�*�0��tzf��CX;Q�նH�P.)����$�yL�_��@�eQ��-�"�A�Pb���$c�̈��NFW�#�@!�����hⰌT�Q&�0�c�+h'��͜`�M��/%�oe�X1�ہs�g����-W����m@�w�g:�r�p��7��ҡ���_�R/��	�)ضm�Xy/{�+�sρ�N8���o@
���}�3IVv��)��n�Y����|#A�ʲgA��P'�r-
s����Ç]��3�O����e	1�z����#�O�����u���17PLG	I�K+I�Q
:���vj��e�_��pR1�H`q�Yg��[��㎇�)���x�,ؠ�[7m�#�����#O>>�������'�e֝��/�]�
/p�¥�YX��EϰdK���0�Lj�qTMHӥ$P^@��g֣�4e6eZ��R\ֹD��g� �H9,�K/n���(�����"�פ�B`9&O�:���P�@i3S���w��Z��]�|5	�0/ c��@�n�C֍>α�b\���?�?�(��?��ڀ�;�S/,��7�ڕ�=��WC����y���[X\��o�	���!�{�o��^t���O��d�4O�|�3p�}�B��6Z���u/9����<�ݹ�)k����y������<c\��Қ QqJ� 9QHPL���W�Y'���[E��	Β-�yA��?��~�}p�wx���H����G�r%�t�1��xCķi����o�wﺓ�D�͹]Oy�e����|+��f�/��W`��g�w������>��Y?�{�ŗ�[_�:��s��!™�?R_���_}��?ή�T�Z�gB�@��iݐV���;�|�k��N�cw��ߕ4�4�s�^����7�W�t#�g�!]���.P#2��\س�R+�3N>����ܛ����a\p�Y�~���u�ҝ�<~��_�'�y:������v��w����7�Y��'<�t���B��A������k�6����1���b���(�,�_8��c|��7���?��7���6�q�,`l�4_;��㏃K/�N�b��b��%k�>�χ�����Vx�ϗs����h'{,\|�K�︝�8�8�} ��h���[�o�6x�駓�}g���n�:О~˫.�3O:�5������}�g��_ޝx�.�1@�Np�?�������!|�[����~:��K�CV�{�5�B�&��=�N�������
��;�����̀�m�!�OS��u�"�p��Q�p˪��c����0�2�d��0zDzV�����?�Go���.�uX�#ׄ���/�
qՌ
��<ށ����Z���*&?�����W$xa����1����w�2WGQ�s��\J��m!��b�CQ�^���3nd+
V$�f����.�%�)�?�J8��qJ(.	`�x"��.�����|���H'*�*a!�V��f�Dc�$C�A�k��0�d�;�8}	N��� ^TjM��kb+��!&����[m;�(���,1�.�eqP2��0f�`���@ہ���R��kW}x�z��ư�{C$=�*�٥��E�**�J0L��MB�r�n��j�rTHez�b��0!�7���g��_~��]ÿO;�d��
ͷ��`��ݗ�
O=��ހ.�v�I� �
�f�[	�,�� BFzPjL�n�.��TdfT�`F����%�N,GP,G�/&�5`y�̪B5.z�8`�A�$��
[�t�͔+���e�-:����,�<tQ�P�ːI8�ē�SNcmڋ�9�5;/8�l�<�l�
[U #L�v �	B���y�x�n/(��(��&���>H�U���Y��WX�S�PV��#/%���!���v:H<�&L-�`��Ơ�I�k�,T)�6|����#B��J@x��0o-�0-)��0;���y��צ�!N˪����/��?����\�`k���8~�o�/�۵w'z��?y�����dM�C��IBL�׾�e�����٧�RK{�g2��m@�lgy���|?�w�i'���
�x9�܏�����/����3�0�\�i�6�K]�d�p����˯`F�0 �cT�W��8��"�&�hj��ؿ���N�&������|y$@������S?
'yfo���������?���7��E!��H����W]
��g?��6���~��?��|3���>
��x#FR�!|GH��P�;\�s�����yAˎ���x=�w>���"|��k��>��p�0�`�����Bc��F!�G�ҚvƟ{�����8�
���
��x�7n�v����&%�w��.�k��o}���C���ٻ��/����w�O�j�)�1��o;�]�\�\�s��W�r��5Y��c��Օ�BO��������������-G��#x����9@|�_�kn����c1� �Ή'��s�Ǯ|��쳇����s��$\��k�	W�=�{�af1�K�C��I@�.���<@�p��׾�9	@.8�t�g�Qvm;
~�!�g��&@h��]�dk�6x��இZU��K�YFm$��=��Ǿ�E؀#��lq�����vW�2��^��Hcm@$:}������.�"�3�7�9,S�E@��rʇp���SleQf�)`���[,�w�G��rR�!k��ޓ��kƟ�d�BSl(�;7w0s�MߩlS"�O{G:���A҈G��c�R�>1����X�R��#�*�0�$��~J^t�P�X�c���繫*%�5V��W�x�E�23�E����If@)��j�m�8�<��ן��2�,K[�Ն&p	���u\P�d��D�t�����B�
��)[��hJt&<qvN�ņLSBB�#!����H3�`ȡi�y�;Dӊ'`����q�%�s�v�����z��y�{�.8�������K^��v2�ـ
؀�M]D�̝��YN�t�lӘ�����%5@6[^tŵ_�].V(�GQ�����&E@B��Ww[.��b+�~���K�``�G��Ũ�'s,\x�9p2}�����sY���[��$$��/��o���	D�8��u'|���]�m��
��2̛��0���K�>�������lS�c]�C&�7=?T�ƸP�9}hez9���"���$�sd+�s�b�ڬ����P\���=�5
1$����Z��s�y�3�-�~5�۟�8��1?�!����>�ַ�)��������Ͻ�}�.��$k���s����x"�w�oM�	N9������ӧ�07�������W^z)|����_�"�?��KByҬ��E�ʿ�¥_���$���忆3O9����;���zM��~���[x���1������i������G���L,��Z�p�i��Ȝ��u13=
���+�M�~r�[�(��K�i%���P�A�
�Lk�&���$k���8�͇>�y˕c+A����š������������
�GT
I��M�|ѐ��/�$ٵ}[m�gg�«�?~��d���1�2��=�4����������*/�����8@��{���w�g���&c��b�\�ʋ�3_�:�>YXZ�9.�^ k�n��./�~Ek�޹�3�n/gER̿��u&l���r�7��y�`Q�|��Є ��Y�P�p��s�4{d�Y�.'�'B�h��&��bi���,f٭�F�H�MП2�Y�A
�t��fwB���n��K�Ă�n��`Qr{����rWگff�I�"#r6`L0�	N8�s��}��|�پ;�1gc��L��9�$�rBB(�]��L�_/UU���̬V"�>�L�J]]��^ @,y��t[����]���(o,����5�CN�F��!!�����	�פbGݐ�g?��/a#�U�X�a9 +�!:u_�����A��V�8��F�`!
iŗ*�a�����kD�Q(DZ��>�D�
~Ԩ����7ͨZ��
ƀO��h�	�#�k�q����W�������	Q4Pmb|G���*I�ٚ-/����'��[�)K��u$&�(��Ǿy��~ |)��f��uP��x�n�5X�7K���˄V�x�$瘨��``7b�E��7$��Yr��k8�7���P���a��A�&	K(v�1��8���%��a�c:�)��=����`�!T�;H!
�<� �w�����	Z�R�
Eh���)�w�Q��݉Mqc��s-}0���=x�20n̖��O�6FN㌊��M��}��O�����# �>/�ߩt<�e<�!����+�*�b��[X�I3>y囜�@�c�Vkb�k���w{�@��(�=����20���p5��y);��R.�Qw�k@h��a�.��睢0��y�]�ێ,�g�<?:�z�wkʿ^p��bh�69����;��X�+�q��Y@�ց���d�[�
/�w���G���n�?��}��G��������O�'ݺf��B��J	4;�����<�)��4d�`8���)֯���ڀ._����}��IJ�v��/~�X��	p ���V��S�[��p�7��o���܈�y���v��~��ᡧ�����uq�Xf�wZA�
C�-Zán����wS/��R�:佧�A��/r@�t��`�1��W�YKa��h�#ȒT)�`��g��G>[����k����m�-l��Ko���Ü<���'O�j[�����v<�o��N���x�����ϕ�1o
z����P�6k�65�Bw��F�����R.��(��;����-��dNٖd��䊦dڸ��w�yKޜ+Ȇ��d��M�/�hr�Z�%@�4_��P2s5���
`�^�O��y?��轁�?�xo1@�C�)���	9�a�T{����ÙV)��k#����s���(
,OQ:>�����c��ǜ"%U�z%�`Ǐ�~��y�F�
Kr�S���^��S���<H���y(�����)�?e�"kq���������O�DN�\1!��N�>�iס�T��H@O����Ԕ�
��$j�S�#�X\�1��BP
i�D�i,���D��!q�/RR	0���xb�]�"F�sD��z��ho���[R������e�֭h����s�IZ��l�eLt��^�q��I����/+��È�A� `Q�2��!�2���%��Uש�P�j�i���t�Ѱ��`�}%�;��x1����/���vR�qγ�	k֮q����N��-X]p�2Nz^�p]�)�S7T ��]�Z��솮u=��2��Đ]��ڄ@
o��G�~���P)H����&H%�A0������x�$��ܕh��D����"���O��2����~���[Kln3��1l�ME��V��[�
G<Ֆ8�LaqEeA,ϊR�j3�G</Xa�i �<�L�K�S�]�L�ύ��jM kL�N�O8%<��iD�;��p��
>�Z����[�~d�e�	�g_�7ʉ�4�	�h]���_��O�N������y��/���C�!��1�wv���=x��R�U�he���{�f���GD;���M��O���s���:>�
~(�w{�W>�1
������A��$����λ���C����E�s�A��w��}�_��dT!�b�=~4���H��Ǐ�}6���€��6�x�p0�����
��6g�1��?�xM��!8�!n*m8�ZcZG֧��s�����<�8��ޭrlK��}���8���_�Pᮣ����.� �~��6��L��s�q�w(��_��E������!�E�6w.�㎹��bH�qn?��)��n�oG�I#�����}��2��P?S���g[8o
�4�KLӒۣH>I�mt�!���9夎�k�'�J���n4�D�Foo�"�(�l��!�P�`�����c4߇����	,��C	�p�ѓs�V,{n`�����t���!XnI�p`{�n48U �e4�)K8�@��O��ɐG�
.����������-	�)�*E��_s�2����Xx`Rn�s#�M�m�y?�z��V��L�̷-ʊR_=MLeU�o�
8K�@*\��D�O�-��i��v�PU��"\�7s1_1^��1�ZEe�`������xPBz!	[�`�s�b@�(i�g$q��BO�b���8�֔FCs���a�\H���~8ƚ�Er�h�^���DI���
x�#��p��S�k�HURㆎ�|��V@w�\���	�&̀���Ea҂�,ĕ�����H�s��V������/}�%5^]/͙C &ڜO�˯.i��;,��:��h���a<ώ2
$3&=X�Z^T5�|�B�2k�:���	�	�R2t8)"��Z�����;��Y����!����)MG��{�wG��#�H��"�=�<�@���u���XQ�.�o�VB���ةq�\��J;F�NC���ͻt��Ve�?�'���L3�ۛ�4m�"ȀrPI�9D�&M�3��q5R�ɷ�q� A�rm�7�0Ř�Ǯ4�~�έ���eX�w:,[��B�aR�F�@�C��*�[(���n�����%�:��J���O��������(�|#�j���>��l��]c����;>�@��ܭ��Ow�M7��8��]�Ci�v��q�8a��g�Eց�C;n�
�{�;T��+�2|�08���`g�mB���?�	8KWp>
M��q�8Q��1�+�
aȋ;�r����-��7?�9��	�
H)�S�7�"j�^��$��:�x,��ZE��<zˁ���㏇�#�Jg�p�[����n_V�k�YǽN9�
�a�y�9xx�si?Ӗ72�Y���1&����~��={�C[�a{�MU#Bp��)S��)!S���l��,�o
�`҇S�r��O�+�7~�6�[��hA��	�G��uC��f�"��Qǀh�
�y2j��A	��w��Q�P�*k XBI�8��H�Z��<�D���T0���������.^װ����=/�-�`.�A�/��b�nj����DT�x��>$�F��d���"9R�n�Us�!�k�k�u���n1J

����Za#������I@��Vy@#r��a���8�<#�g�f�H��"*�b㓜�$�K#� 5|��1�K��5�O��3��H�ڔ%�7��^v�vV�(���2�����R��@~JO����C_�JR�$|�zZ�����YeV��&b�p�
`�@Կ�z�ZhHU~��-�_�,n�,|�� o�	ǯ��C'��d}�֪~S�!�b�C�F�At'����Kl�!�P

��������
SO�֮���y�/z^�9�~�Exe�2�Bf�7�� ���pP�`?D���Ԃ$��i�(I�R9XL�E�q�Ȳ�br���/��`���@��(� ŗ)qY�*��C��F�����Ϙ�s����)�v�f���1��m�) �sϧ���(`#AC�H��-_�+�e��gþD�!j�5�?ɴ����\!5ӓG,G�o�ޥ��+P�%_ltO�U-��dA��BL|�xF��=��veqM�4x=
^�M�N�G��d�l?~Y�uJ|�V�~�@1I��6��x�g�9+�����,^�,Y��E�A�-)ar�B���O����2J��"���GGxPa�\���6,Y�f��;��`\�ƻ�4S%x�v����oΜim�s�$��VBa�Wb4���P2E
Y�<�-o�]�x��,��PY$���Z
��N�o��GN�����=n�]v����°W8'qO�|��ԋ/�B7�#�
�ܘ衰�{�7�wʩpџ�:���G�cM�܂�~xe�R���L�wT���
�6���9+��>Rg�	�\ВWz�qc�Kʑy�n2rTӰala.���â%�����
��x]�@J}$TL�ۮ����3��-O��4i7/>�֙f�z�.w��N��X#��{wƻ���k�Ϟ�n�:g<�<����tE�wd�[k0q��E��Gn̻m��k�⑊��&n-9�#�Yj�ZW�g��'�cmg�yJ���nA�w:K��Ą��=O<I��y�z�y�0�z+���	\x�B��ܝ�Q�:����!i���
U����Y�R�?��&�F+ž���
O������K��(	yQ���Cwc�L�]c�?^�Ƈ�Ob���A��Cc�$l�i������?��U8t���F�PZ��~�:�e��1Q4��BPb��A~x]���|�G�F�P��/����Ul�P;���u;�Ô�D�9�CfQ�,��Q2�H� Dh`��8D�h��
!�R�W	�"�\�
u%���Z�1Vx�C�!��?"ѳ{0&��'J0��C$+�o���4P���yC�}�aP+���D�
�Xi���D���
t�$����""����Vz	<� ������y���Ns:���	bb�ܨ�#�S����LQR���k����@�$,)��5���
�(`��%�(����Ǹ��yl��);��
�1�G
Jnc�@K�!C)�&{Ep����J�56w;�bȐ��x��ðr�jJ8��}��'�g��y�,$�c-Z{�1oH�\O��U���x���`5��e{�忖�R��<�ʎ��Da�ő�X����nh&Xv�y� 0c��uݽ��%va��|�x��]��e�<)�Z�4� ��\}�X���	ڀ�:�*G��}�����{OXP$���`��㍓����.�}���C�J�o�=�w*g���f!��9�����Jz�N�h�t2Es2�V>�-6}����Z�<Y3]�\g�1�Ө�D����rE�zL^���:�H�kJ��PS��%�c��0GVgn��H�t�ܷ��0y0*o~�A����Y�R�ᛎ�<�J�<�)8)oQ�v�+�'�
�R�3�Y�����xq<=uZj�@%ƪ��g>�n�]�6���~p�]w`�.m?n��5
��?�>3��#��!���͊@��w��6�6�R�iS��)�Ì��h�G��c�s��ͼM0����.�H�t�͎��F����x���K(���$`�=�'���{�i�O��ֹe`_�vm���nt����0�(2/@�U1����z���7n��>�O\4"ۿ���6X��\[@Iɹl���ch�"B
#����
�y�xy�"R����8e��z'�m�y��O8�H8��w�/����DޙE�F�#���=9��&G/��ސ'[���k�z��`�M7mx�Q�����[�g��|#J�<0�o9�=�e`����z�pɯ�P��<���a����_u�L�=�t�-����*ƭY#��o?��q�~���j���QR�񍹃���S���9�7zd|���u�=3m|��K�c��,=2e
%D/
�z�ĉZ���f�׎m��A�<��S�F�Z��e����Z�E��Z?�`=�6j�K�5�5�BN�C@0p�X��M�F"��C���������(
"~��(�xR00�{6�X��r�4� 4!�u"�S�m(��s��I��r�u����ua��D�+��9�xY�O���x�0�,�8���AE�8�{Ȩ�B�}q�A�-w����ކ�ipD��� ��r������O|a����C1�2_NK?����Wv<P���<���U.+�)�H����M*�K>�ђ������nj-$u	PHqf/F�w��"��9�M�`<�6��'BxH��/�j	Β�L�u(d	2���
�kO�2�E%�!�^��5�K�	�ZM�J|�EF�_��b}"-0^e��'��B��CA�l�	���Xq��…�J�Uc�����Na�����;H)����O���'JKM,�X.*z�O�m�L26�%r����ؔ�ﭲ?�L��PF'WXlK��Ʒk]�S��@2t�S�
����n��-���Ր��Ѝ����4U�.�X���\��?���A+BAPIvԁ����}O&�����AJ�N�;�������;h�P� ������El]�\M����
Ϫ��a
�D`���y8@��vڐ�\t��lxx&s�f���~hoS]��VnPB+�&�_75���&s���(*to�����G�'\a"k����O?�8�v\ce"�+���+a�=�8@zM�y,�뮇y�7?�1آ�r��9�D�<Ywn�S��mcE=�5n��/W����g�M�o����g?CR#��)�7w
�N����k��ҭ=���0�WXh�����p�@���O6��ށ1���ZX�l��q��@�9P��g����}�]w���sw潰��;އ�˅��y���G�[���dZC��_����畫W��ĪH�
"J�n?���߇���z`��lia��c(���Q�d���w���"B%��;����0m�l�e�~��e�4*��g>���Xi?���纽�����K�5��fV�x��
�"��@���y��@�"B������דj�{�	�S8�w;@�G��z����Ao��y��.�c`hL�߾��y77b�D��T�)��ԩp��/̚��L"C��|�*���C�|>����kz��4{���c���6�Ρ�#���&�WV�&SB`p��bj%|ַ=�0�^&A�'�w>V쵁�{�^����M)��l|�2&oH*h���
ٖ]Ρ~���#c������}�l�5��p�o.�u��CDY�l��(�Q'H�������Ɠ~[�R�3ac�^	�U#��ʬ&�'F"�A�A`��Ի�n�<;��D:K2;5I40gI-�CB�'�spZ�3p]\5��H/�U��5b�����t/4v�B��@�83΍A�󭋁�XOd��F��Ӌ'IL`{H�8�ClPXA�#�r��᷂7�I��^�/�c�۞����H]�$�<V��#�͢Uİۋ�P7���X�R1�H(O�#L�+�€�U�	Q�x^�6�Ȅ�Y�h��|���<h���D�A����])
Z���
��5ZD�E{5�2.)�(d@�x[�ݸ�W:�}t�c�j�EJ�Ub�Q�,�8��~H��S�PX%XD)$e<��Ӯ|
;��M!�p�F �l<h��9[J$b�P̖V4T���i�E�RNXN��"�q ���"�LT9����v���q���c�s}5h�0Jr�cd���6`*�8)��
�S�^#,�{V����嘩.f�,u�)"��F�A��ׯ��J;j�$B0L�"���gЇ��;�F�d�|��&ۮ"Q�Dgԣ���U�V�2��^�" �Gy�Ul���KL����Ų�2��K{��$����7�פ�[\o|]���cN���:=����ď��� �'�����5��;M!�7�?��ϭo�7���T:�V[y4ܭd
��O���U��
���xE��(���J��E��	�ڰ,|���ҕ�S�f��푇a��-��\��,w���Sȣ�c�9e���;9d�;„�yB6���/��FX�je�󄀼Q����� �+i8� �#_>u�l��O~s�1�q1�L��^
����Nc����7w�O��5�(W-_�\{-��:�Ix�q[���x�Syp�m�/���G�y&m��s��A]y�Mp��o��[l3�΁g�M�)p�0E���v�~o�d$#�W�5����̒*4��I_�h
m?�f+�sO9�B��q��ǽ+K!��zwϣ���~t!���;o�xLw�~8|�Ip��fַ�ɖF<�� ��i#��5��Օ�o`E��[n�)��q8���f���'_z)�}�kM���Sf̄����?��!H2Ƶ����@N9�x��o)'�8���.�%%+�m�ma�q��9vu@�024�?�����ɀ O����Rl��%p�-� H��x`ҭ�%�����@+d�R���&���߭r��t�����Jkm#:ޭ�w?�Ċ�'̳�FE4�����G}�׋6FE��ߘͻ��m��6�ŸRe�C,^�b������v~�U.�B��(ӚJ|O)��V'B��EK�\�z�b1��]u��*���XcܼN��?�l�r"�E�ĝ<���4�*��7��B��[w��v`Rt�ƣǭ�<�ơ��~�W�&ZWA�hq1��
�u)x��83a9���b�nC=4�b��kq�A]
~j>,y��ǂ�$�H�º��*J�"�y�xp#�	����1ۦ���L�HB� p��ap�2%_Ď\���`互��6��?�+��`�)�qT�
p���/���2�p\&
Ǖ�<��I�Z�A���S�0cL�Q��8�%��{p�y�+6bvd�B�Lׇr钢�r�I�Az�*�kӴ���O�3@4@�ړ�*���4�1�$��.Po�
%8GKN�ep���U�
Nb^!N���P[Z/ʼFR�-��Hj��3xP�
�,����Z)�%,y�$����q8.�LK-0.���*�
[+�ppB,��
��2�*'��^<2����V@nC�b��.����u���C	��8�u�ש��(_��14�n�����Q�Q��|+�Ǧ*��
�y\�'�A@�c����Y��N�9&�.W�r<��9�i�Z�Λ^����Be�����
�d���ǂ@�~Y��i���8Y4�b`���w��{#9%
3���U�tg#siF��	�BX6)m�3聧����wh�jz-�x)
����p�u��J��7�I�Ny#����ݗ�9bB!׆��,"e�>��G�����=�y�\����A`��.7a��ɰ�z�m��&
�<��v8ƍ�V��9s���u�`B��+]p��nl
�l��8JxI�dO�|���0G�7sDM�;��ЎA!�^�ׯ����gE���2��{kH0�`!��2�d�R^�
�6{)Mt����cwԁ�
K�0h?��
X���Lk��뿏����\�կ5,�ę(�|�m�m���n��vQ����.����R� ��QÆ���6[��k+����=�.L��f0i��&�F���(6��>���|�e���N[oM!����/�A�*�g��
Kܺ�yE^DpDy�-��/=�J�x��j/�5�ɪV��Ǟ{��V�5<�%�,�&FDE�ؚj_iܓj��|j��@@�ާ�.���ig�~��0k�†���:ʑ���p~�)-���7�'{�JѶ�q�,�^Te�g��ޖ�h��l�*%�/��	E��jEHjV�)(��W2A}��U��
-L�`Q�=����^��l��ip�������'�!�EY�H���'0*j�N@y>:x�#.�1��Ջ{�O�������ฏ��JG���[u����.E���x�����`$���e'�(9�(�M^*�֦�͟NAx�u�I0��m��D�PV���IB����@�Y&
���-�,Ү8W��OH�����س#�nw�5��o�@<����t��� a@��U�3���!(�M����-�WЅ�i�u}I,x�Z߼�1<����
�;�
��H���&W��W֪Z� �"��	�N���ı�R"0�L6%v;�ؚI"����M�DL�Ue�Y��Yyl�PrmP�sv`Bu'i�rJ��Q�T�Q`;La0�"�$�"˼���I�:����YG caPpe�Ul�&ý��n����B�vq9e��
f�r�Ű�=�t��c0Y� ��X����˜� Xݶ��${�<݃�C��]u����k���)eݍ8���8/"��#�(;r�Ap�1�RȬ�x�`ۿ��^���^q9<��yNi��Js��,k�s0*�4/�_�"_@s�a�e<��4/���l��k8�M�r�3�?W��D-��<D2e��k�xf�M��A�
��B�&�¨5	aB�>4
c��꿶~��w�!�^�ؔ)��)�7[�=�DC�=��k�3�Y�w�cΑANP�u�Tt�� w�Rc�$�/��("�˭���ڂy濺���̋W4ۨ��(��Z��0�)����؊��Ts0m�|8`�^
���Թ��.����z�$tpѻE-
�x��o�jO������/��M��VV-�	ŗ�x��{�'RD�<�,<��Sue��^���S��S�7�I{�E��]X����Zg�B��0$����I��|�u
�q�.�����<ٍ��<�33��2nl�@i�͖[¶c���n
��=K�N�;U��z5L�9S�Cj�M�����(�Ҩ�� �vQ�ЄE@�R�[׬^E��p�c�������"	!���0yy�����@�F�7q�
u\�x��B/��Ѐ���$�S�D����e8�yS���C1_�F����#�-5��k1��KJ/E��<���i�#�l��9��%�o�<��F�j��吱%��<�-�Q<{^�D�7>�&Xy5� J��{*��κ�n���x��9W�bt��h�q��-̃�8(�D�S�{1��0[t'�����������(�.�Z�C�	�9@Nx������:&h�
�����@�3E�z�O��oA(��Ug���&��w�¤IOX��ܲ	������)1Ha��I�E�PI"C��ɤ�R\�����D$,�gS����*Q���Y⥕6�a$����?@4@�~de��ا��*Ü���Я2�`Xў��:Cg�wo�)���'^a_�f���I�鰶��b.ɷā	
	Oj���؊�zUJ�̡��or�K�~c۱l2����5��&�8{�b�� N4�.ǡ\��\TP�L�b�+�-��:e#2^�6�������L
�&y~���"ce3J	&^�@��f)|#%S8�d��sA��7��
�Q�Nq@�io9����#��6c����W�;z�\y�-y��{u�v�g�S�Ӝ�[)��e��C�z}�\����U�U� - ��:��
�X#�@3��He�lV�Z�\y
83���L��,�ȁۈ�Ō���~�Z;�/V��J��7#��L�N�%��m��(��+m����u�õ�í���q�ĉp쁓zP;c�6	CF��A�R�[��B�yY�ۉ��%K
�X�߅B?���c��2Á'E4���9�d8`��p���"�եK𴎬�J2h�K�R��̜���"
�h�2&�ďx�����bEDt>��v�
��l��%�q�}�Q/��7��Z��|�Jx��'�T��5��#F�I ��7	`[� |2�iq�~O�[���q��u�-[�aPM�
���/��U� x|��[��Ӧ��}��q99�#���K�flza5%��)Q(��{����(�8Bo[��m�+yƵn~�5�`�"^�/@��?��;�PB���;3��	��+��C4�YBo�#�ݯ��`=��ٶ���%��m|�d��AT
�����Ƣ����:�D�e�C��1�>d@�dBn�;��^���>�i��~+5o� �۵rU�N��<!� �K"�גį��GDA+j��1l�P6oD��@CO$և�q�x�T|�D�$U�k�3�65��>h��X���!�!W.�1�,EO��UT�U�Ī^�iH'���:�D�E�
��P"�����{�S%�"�.�E�����jA^m\H��s�=��cS�J<��yI�d>O��x�T���*�a�8`Qr�J

������z!�ha�^�n4I�4ɔi��D,r�;ec��牄6��9�/XQh��5']��J�$ԑ�-���F7�C[Tt�
^�D�
#A�v�^�I#�e�{g	�J���
2C$�K"��UI\�t$�Pݰ�D���谬���r˨��+yW�&tg�$�P����P�3!7ڒ�Gq��eHz�M%���Y��K.�ؖ!C��T�%�
M����d®jSOI-FȽ֍1z|`�+��w�%����s%X�T)���ko�
���vj�1y�� �I<C�}�I�AO��W�3^!Y!��	6Y4~9|R��Y_ʫ#�.�Ӏ����\���5��r�r�SX$R���_w���.����`���Y^t�Ol�o���[��l�h�PD�tl�Ċ^��N��z̖^X�#�Z�tԨ�gIb��o�[Ro��a����h���ر2�l��A�`�l.���ò����[��/���8Zy�A�_���_�N1=~̘��!P�τ	�}����ݺ;m�Z�3m���@��N)�C�O��)�}�_/6r�M#��D/o������E����M��!A������{
�\�ށ��*�x�7�A�c�moNF���������S��b��G9���?�!\��x���M\��n^bBv�#Q�<�2�d�"F%8����t3r�%eJm��\+6�t�n�x�Ӄ����Ɂճ���εM�9|l���9���:a�k_��O� ��AK[�z�,�~cޗ������0��_ِkH�[f_��H�\W���x�QJ[
�Z���?��D��j\�ޕ��_�?��>kJ��ֿ5����F��5��%�0и�j(n
�J��Ǒ$U����]1X��bw��Ӑ��a�1�y�K>D����������q��~c��Iג�[��r�VXO���I���u=�h��z5RX^�jL��s�H�sU�'D"�"n��eG )E��&���=�H�!����T�X�Ʉ��Fؠ�0R��#%�Ea���B�S}F�T�,�����G
�T�$�j���!��������
RB��=T{qxw7�b�{#�p�F�+�SVFK�Drv4�r�ģ�IЍZ@zŃ��kD����z���vK�m\�PI�n�dE*�3���f�˗�ȐD���ީ�H�K�
��V!c�n�X/2(�/�3X, 
��2�y�A�*�p��Z���Z�B�~N&�?e��U"��M�~Hp �2Nx��K���YB�����V�m�:wUqL�^�p3;���4N&(ru��W��J��#���z}�Mn���d��/}<�#�ޭ[r�s
:*�al���s���rM"��둇�G�(M�;�B�q\c%Q#�v���G_�
�Z�nz�>�\!@��꺛�-��^
�����]��kMA��MM!l��G+)O����}����Hx�ט�rc\�7C�8c"El�
$�i�R�Zulv
�ʈhad�m��"
�jZ�f�$�-"a��Y��9-_�����H�Fo
���~��O�x�ó�!���9��O>��eW��*#�a�c��a�$��:[ZL�>|�FSt�M��qY�*�vH+&�L���z+|���.�Ћf��*	Pٹb�*xyѫ���Oí<ϼ�"$x�xyx,�7�P����@깥w��1�_�(�Q�lE��<K�K�Zo�d���e�YdL"+�,�Bc�M7�FF�կ�9��.�-nt�O�͘��%�=�(<�E��{ݻ�߄ְk׮&�I��+%巘г�&��{���l:z4��$�����$)W���p¤����Y3�)��b,;��Gp,7��^�(��M��m�=�h!� �8(� �O��`�AϹ��z�E���L�M16�Q�>VO���Z|]0��N\��ƹy�%��2Zz-���뛵P���?�̐��H]PXJ����<#��קϣ~CO�:>��K����!��A����jXϣ�<`BF�£�A���%�ƂH�<"F�oF��S
15����'t��(q9�����SCG
��5ǚ+H
|�B�*
OF0�E�"߭���ITנ����aIBjq�8�
_2ݵ1Uf�R\�.�c|�ՐQ��׾��e$���Pn���񂢉��%R7�%�2���&�����qf�J;H��-]���@mdxxШP<��/�S��m�K����Σ���L�	i���aDd#I�j@���҈8h�c���c2�8�� <P#���_h�h�^#�8�l���ve��P�I���3n�����H�,���I�ՕS�g���Ö�?y����8�� �}Qk	e�-l-���~"��V���C�4���lC�[k��V+�@IʬY�E�)KN�]?���X�
'M3n�2ȵ{P��p���\��^�.�c�J\�[{�e�2(i��x;W+�����	��\���と��d WQD��~��ء6�9��$ʡ���_v����k�q
˭ᘃ����{;������n���}"��'o��'��j������d�̅�����_�id�B���qyAzb
��������<s��\9�d|�x�I}�%ិh��{����<�BO�!-&F�OBe����ބ�7�뤓��G�,��ۣ/R�@���H}�jc�=%~0��E���>p�^{A��Z��g�w��=�����?���jʡ�h�R��Z��A�d�2 ��w׈B´���j�/i��!�y�gҚ�N��w�?9m5@��tv��G�}��f��|�PGٕ(
&�sņ�eN�}�u�5w�k��
–l�d<7�H�㡪�?#��9��6pԤ���|g��S_	��5Hc�{�W��D��V2h)3/�k��E��_���u���r�y�
G�?�(��lY�0X8��z�!�̙��2����|R��}O����׆��xT���A"
�����e
�,f>hx�h��fQ�o4J�2N��tC���y��nԐP�iP[Jz���7QNF�@\[I֯rH(
��^�5��a�1t��#L0�ü!�e�
D�n-�X�����T��Џj�Y�(�1����=\�IaRsT�T�q[�'F/5^"Gr�r}���#5�Q���˲O�$��O����Ѩh,2r�(j?��J��E��CL�3����?2��3R�U�ۘ��@��Ϊ0Sm���#�x�$S���ȳ�˪��D�T"��
���_�_2�vU|�*�a�|�
�pE2Z��Nr�A���]�كu�gP��"(�0��1yE0'�����F��"��e�
����ZV3��
���$�:o��4{��\��<d���(
�<$x/,8�KZ�"��Fl<��U�D�N�Bl5���¨���䍾D�H�:q�4��q.�*t�A��B�Ǵd/��@K�^Z�\�<���FR�9���,���6cۆB��K�"�(�AJY��q�����oاή���$VhBW���P��-xۂ�OZ]�[�C�s��ˇ�-��mŐ)����ka�	����~x�gB��@���)�n���и"�:������|1M��� �����w��XD�˻$���u=��6f�B����9l�y�#_x���(Ut=�A	�cӴi�0q�_y�,r=��xm��.b��
.4!����Zy��{ç�;���`~}R�	�dah��4��K]�KXRh~�?�o: ��nj}ތ��GN�������+.�g�N��M$$[��*���Z��#�|�;x� 
?TDh�Г
A�
h �/*	0�M#��aNɍJ
yQ܉F����J�,Y
7?�PS�4���<\Ԇ ʒIU�>|ƭ�s%go%)y_��ˢD-��i�nQR��m�4*�:׮��˗耖�ҥ��k+��6�2�և��O>��5��7��5W���M�}w]��a�{�zh�S��a_��҆��b��[KC�#�2�\�i����~��}g�N����*�p�r
ieţ��"V	D@4��Ρ�奄���C{< ���H���N�܎��$�)��~���qe��=3��2�V��Q�P�U/���P��eʷ��
Jr�e������<4�����"i�֣p��Z05?+y9q���1�u
����\V&�Ċ��D��t��kC�(�<QҤ@B��E�����5x<r��*{�̰�[o�0^�j�\hR�W��Obl�0�T��^����սb#v�ω�T[�B�B��'i=-L��)8��[���
��E��grο�F��R����q1y��
�
�kAdQf&`n�̇`8��(�R"C�7zGTL�o�(���p����ּ�G.��i��,�^K�u"�Ǝ	��-.�Ե�L�1Ё�A��ĨXf��{��R��9��5���p��IJWI��LB.p/�e��\�@`�3d���B�����b13
�@P��y�]I�!��g��Vww7tuu2�f�>_�y��k�]�{��[�p�f��i���x���C�_�}1AЗ>��g�����������?۵�8��}���ĺ��•7ߔ�^K+�Sڭ6�iݒk�H��m6�؞��@�iP���X�b��������{���ŗ��
��X*�0�pQ�)b濺H,��Y�:e������I^��Q�H(��\��+_��w��J�J�>xp�
Qc�2��ZU������q>�$|����:���{�i�¹|�qǑ�����a��W�co\������[}�=��4��ܳ�5��1��
����s���a4�?Sk�3���W_�����Z]wn��7���yF��n5��?�֕�$���)q���@�c��
���{N:�i�"Z�ze��
V�A�6��j��_9rw Zw9�֒Q�&���Y���pƱ�4̏���v�n[xn����3 #
�`��9��ͤ���o�m|��[P\���X.��B�yZ�V�s�
�yB�h��{Ói��dCW��
�:�:S[�V!0(@�{٫�</$���=���J�\~�rT
��g��~&�A�{;y�r*ި��N�	���!�2��wu&
�$F�TR�0����Oz�r�'%��dƇ.��'�ߓ'�G�@}��C^�٠h-�0��Q}L�����m�ڀ�<N2s����22��Z�~�k�s�''����!�~�J1)#R��5�<�l>��X�����;`M�x����c�Rk�gvI_�wl ���b|��,K�E�/����2�[
ၔX�y���sn"!SC�hF{�XL7"��ֈ=-��*qX�^I�����z���lUK�j��'�迍�^���m�L�0Xe�Ik/�6�a#�.�UI�J	��bm K��"0���У�	
���^a��:�T$�P�2��K'�p�Ѝ�,4+׈�-K��R�5�!���+Zp����oo�:��KO�:��2��Æ�&9�q�y>L���^�+!mʂC���o�����E̓�0]r���V�G�w`��ՠ�{N�(xB���%��"�$6�@W�-��p�e�~��^YW�p=�����O����l8|�r`���������n���dX-�ـ��^يڴhOO�E�)hC�
l	�!�/�B0�hXDQ����W��)5.8��P7����y(S8Lyi��Q]`����7X�3�!Zpʢ"��9�K�gG�$D�OZ�z5�s�*��oD�=�j�����q$�ؘHI��+Ƃ_�6�@�q��k��2��������iug',]�^tcv�S���.�s��2	d��{Ds�ݲL�s�4R���)b��*<?c:���UW�y���r��rK���#F�P�.ឋᵾ�\�s�S�oT�/,�`lN���!3�^��ŤJ�=�k]��+
�<4�4M���O�pY���~�x�R�'���z�q��A�;�l�T�殻`��eu�0���:���*�G:~�]�O�4f��2�
���v۱c��Z2�-,Cs]�VzQL�_^@��W�'�9�9��<ذ����\�=��Ҭ�O���>�\}=��hL����ν�{MfV�0&�[
u��hT&	�A^w]7ǻo�����)j4�g�}�y8v�$�#F�@Pi�D�vkn�9����nyi�򆰿7�׊����%E�L4[aCQ��5���Q+�4�ފb9�R��7Xڗ�bp'�Т�Dz�L�V����sT���d[:�9c2���'�O��f�����ٹ�dh��`�h�@o4��0d6�
�íK�,
I�=�I89?�oRP��*����ѴV���ڄ�0�
6�\�ܝ��(K^�Z͋���Ç��&��I�*S�ӡ��a>��:��dF��"yV�:��Q��KA \���#EP�S���E1�Ku�#�X=uִ���2��7����k={d[���U��?�܆�M:���qt�y����bo���1��'�Vs��`���Qj�W��$�:
��,����/���t@����A
��z�8q��Z<vT`6�$�G���Q�h�*��ʺ��F�lJ��nO�����!��hU���e!�f�l�d�5�yh@ɸ��y�A�P��`��b\�*[_��(,�)Uw���#�QMz��D�f�������`B�5�a�q��H�P�d@:�R��K,�:艂u�����$|w;|�,�9I{�˯Ҙ�����]�]%�
�Q*s��AC�SD}Ip�&E��$b�T!���7c��N��'��d�F|��G�S�V�Ȑ����
��\c�3WrH�1i�S�T���y6W����n��~4�����v�C
�`x�: �G��Pu0�[ɗ/��v�cRFI&�!�fl�oNM��F"A��+R�$��[�>�>=SjT��H�����K^1�ǞO��n�$H��-�i9)�]�f{��mD�Ac����m
��H6n^dMo��V�t�{��rJ��(�I�p����W��>�s6#4�ϚS,�r�g�Ђٚ�Pۀ��j���|��o�}�R���>T�N�9�̘	s���)�,Y+V���{��F6��u2��l�b���� ���b�B9�0�rH�;B�`x�/�.��Z���t�	v�z��}�PB�׎����������+���7�nFJ��v�T7�*�W�xEĄ� #<�a��!c��|�MIY҈��Y�b%4m�J���[��%,��7�gr��{�V[l���=v��?� �9��pΚ���xΜ?����� E���j �pd:�+� '*,�]������X�@ѧ��L�3��&���J��Wj��r���ů�PI�xr4
�d�(⛋(kh�ó�:��F �o���_�y��]�y�v�v[䙷w|���W�{���k�A�&A�8������u[b?7�
�أU��$��V��P�$C8����U���d)��~��t�7j8���7���i�]Ħ��V�֠��@H�F�u�A��\7�YWE'L�zܚ6ā ���ju���+*�@<B$|U�yA���h��aMI@3��V���P/��S
E��<!8?kI0 5Q�m�ҐW�D�P"s:p+���XNU8�^�9��!��wи$��0ae1h�s�T� �)����BDYхG����5���m
�
�,�nRuiV}F���y���y^x㈓�T0?B�=Eވ*���v��+��#m}��KTZh+x�m��)�Fk�6l��<��������X)r��b�W"ɈC�%&�	�{�fD
��/F褄��?h�h�^+Bƀ<�=��sx�[Bh�,��k�^��jM@וB8�Zo
b�9���~R�W�FN���P�1+��I��^J}c��&!dž&9���U����I����"+H�~��"���11h���ZK�d�ck�љRF�)CB��^d��`�[|���cd��q��'��#�n-��'�
k�������%;�z�xf��{���9N*h�lt����+1���]������~��c�����Oa��W ([���c�٬��|޾�W�$�p��X���M�{R�L8ȗi C��P��6n,-7e�RRr	��T�Te��n:_o�-k�����rK���g�0҈p�z�`���k�������Fr{/@�6'�^ �n�GkT���V._��ЉeӚ"�7��C5|�ẕЌ|�Y��o�,YL$ֶ�,���\a%�;�oroo[A�{C��
�(u���i��|z�K�@/�`h�	;��9����m���m��p�ĉ0� y��̖�I��+��)�4�����z�zU�c6݌<4oXN�Bۢ�����'����DBw�~����n#o�����{o���B���Nz���[au����Cm8^��.�n.�@�Ӎ���d׆h,�H8��:p�0v�-��f͛������`��̿�U��e�aZ_B��n���9�*ċ�c��\��õ�wyޒ� ?�&�"/��[\����n�Ǻ�C�m?n+�yc�m��90m�<X/zm���k�����xPȘ�ʲ�R�:��u
g$2ˡ���G�@J$w�5Y@��33�U�\���IX��F2M���o�MjwT��U<��B ����F^�%�u]��e^��	�9�yO���'~�8����0��$�RxoA�ۀ�.^����<=E�pe��
+��.�"��)sx��Hu���~[�2?օ�^��J�w��A��k�uvvQ0�xG�hd��cC�4"� ���9��!+�s9�?'O�(��A
Hv�Ky��{���U�t
���͊�ԧ�h��MM��P�4q�����H�a��S����0��t�m���`���,�6ɢ|Q�#
��3�kKu��~�cA���=���񼖂�
�
�y{�K&.]�!�a0y{$l5f9�E���)7H�6c�89'�R���yq���u�l4���J"�U��BJɼ�7ce�ԧ��1I8�92�3���Մ��eE�1)�T&ލ���bшRTb���+X��A�5�HC&
ȕ�p{��$�]����Z�IY�84Q�̈�ت�ջ�{1<
|�db�Y�T�؂.�!���B`h������-e������g��q�x��V��ɞ��'�/r��O���o�.��$�G�I�Hy
����W�����8Tۤ��0���P�E4%ማ_��D�e�hf6�H�~��ϊ�k��*�7��c��7]x-���.U�n�S$���.Z��.ULX��������I��i�?����w�ؾ P�['/�������^hFÆ%�p�S���O���o��]F�W�J�
 2����:�)~p_z|���?�N���G
�;�|8�r%���^��y��w�dc�g~C+���9��}����Q(4<~�A���FI�rt?Oׅ<���E��-Sgς�I���na��5k���o�����8�a���v*\�׿��>ՠ\�1u�L��۰�]���)�7�EK����ӝ�oG�)#&�K&b	Kf�hF#8X���_8?f:��ٟ��e����o��"��̓$�B���_�6��dE���ț�u���ݢ�*�R�C>�]�A	���ij3f���o䭸��[�v[��p�G�_Cp
G
�5�n�6ܖ<@o"�X6��D<�
�9���	Oɱ
�x���\e^0oBYn=�h�mp�Ya�A��6�H�\���O��g8�S���=�~�2��gvq(3�"Mϰ�����j�O��.?�H�^������9��k��
 ����|2�$��oP9ĵ�Ot:^"!�2����P��^<�L���G;a��at|��K)I��2�~@�3{pp�S��Zz��Q�}
�U�q�C�[�/@��F�)i���9�;,pt)GJJ=~�e@�.�%F}��?L�ZP]?Gy��[�G�J>�Qy��D�r,wS����6�}qE6x)ed/��Uv�D�G$���E'�(03�k�$沁[/�� ����ECbņ�Lzݱ���8ת:ɖ$K�
�� w�D�7�A��z�)������������M����,Aga�(�� Aʁ�A	�Ѳ�}<h0�F�Rf��^����Z�+Y�}��Z�"9d��B��映D��Mm��&usER����,�`|W�M!���_�TQ���AOO��Ezz��e��G֭��K
l��s8J��� �l�~3OY��Z� ��v��YK�������I�k��
���:�%Ҏ�z���m��\�o՘�5¤�D�N�~�;��|OՓ�L"��@�!�[��z�;�7����ߕ*�B���z�z��8��l�6�Ƨ�n�J�5�n��Mʱ^q8��}6�'bL�?��Zp���8�)���я¤=�hz�w����I�̫ޔZ�#*��x��k�k/ʕ��'a�	ȁ�))�p�b���'�J4���3c7�*m��>ūg�5}��z�ٜ�X"�Y�������}6�Ͼu�Fw(@������/�-�	E����N�"ɇ �c���hL[�U����x�{8/.,����ƌ����p��`B�<5/�g_z1u,gG��	�*���L�]��g�*���}O=ݴ��L�ۍ�V�\	�x�z�J��YC��ј������6 ��{�xŕ�m���A^�z{�A��;�����z��Q8=4������߅���c�=�n��X�j�( ������m��4����{�����`λ�D�6��盌�F�E�;:ʔo�)z�X�֬Y
=8��%�y��7>��x�a�����qNQ7�ڹ�0w�xf�Th��7D�:����5�Vdª�� ~���EiF���,�B��к^���F�攰����N�UB�����9|S�="۸���;;�z��M�y(z�;�T4��
4�$@\���aT�P&0c� S���'���2��D�1aB�0��B}	�M��DF=&==j�d�M��yA�Zԕ����!a�@.����'	�/��F���q�$x���@0GCVYM8JC-
�F�l�H�J�Eސ\6�B��$������n�_�j�z��~�3
��H���hl,�q��d= �%cc)N��6�!bL�f��1�˨��F�ѽ\�M�!@��[�:����2����Nc�k�\�J���@*͇�,1�	Y��p�LZn�.���xy��K��e�`ِ,z�RI�*$cMh,>}[��
�:�8y�|!FQ1�D"V_��[��l��L�k�c���D���C�<=��\��e�)�Fn˖<+psUfA�Z�5��c>�6OS�Mw�ak��6^W֠�F���i3��*dy����>�MYҼ�Q�dR����!�+C�a�OX�[G�����@����#e�1��:I4ɹ��XQ!;C����������3y�ZJ�$ޘmJū1=u���$h�R��'��68<_,xb��X���&�ޕb��<�1��^�OGu擖�w��G���g?׻�}_�
<���i&������mh�Z�l�������o��X2
(�;�eAÂ�<oQ��*M�~k�qV�$���(S�MW����u�D)�\¦ۅ׌p�!T��^��χ�6߼�z��)M/��j���fC�-n��n
�UjP�G�<�x��5״���O9>�ǹ�‹�f�3g���w�5=	kQY�Pzp�fm'��슛ݐ0��;�T8���^�6���%���h�?a��a[�w�]v�	n\0����!���G���9e�*��O�U���[?1	6��F�)ǃ`��(�Sm��.@����h�^O��_O����;m�M�r�����ɏ��)�/x�V�>q�y�!�&�~'�^��c��KB�"���u-���.8j�}�hD;n=Nv���n̪	�� �;�	Ο~�E
9و��h�h�K��&(�B<�u�����i�{~�4xq�t�L��Uh��޲d������à�^~EB`����`�N?���
�X�=S��bu�kBC�%�x0f��d�0��QaF!^�ε��G��;�;D�ڻ�y��`Ѳ�0v���V����N��d�=�宱��}t��c�ڢX��q+���hs~o��o��rL�,�\+�^A2-�5��'I��|��|����?�~-��&�PF�7[;l��V+6�<���r#��Tɏ�`H+\�(q��C|g$S���C��DvP��^$�l �jU��s��ECL��y8l���#�P^�0ج��P\���#F���a=�R�|4h0���<��$a�k�+��]�CM�X�qrȠu+�gϐ�f���2<��ݍ�k�Fr։������ۭ،�h�sx#��Մ*�M�^*��&='R�F/Gտ� K�U�rZ����2a�dHG��؞V���~Y_��`p�.@Rf��
��Q���#��^(�SС��JI;U&ѡz^� Jʹ!�u���7��<<Qa��0Y����O�n�C���w2&�捴!�A(� �8�#���96ḣE4#&$R�^\��J����
�Z�V�Z��ђ�Fq�(�m4�
-89&#o^��́���XD�n0���^����CC�ϝG��7R"S5��P�T�)\�xX��8�kjb�Xޒ�[(.����7j=��
4?�:��ik9�H�x�B/�
1 ��t<�@�c�s@�!��ļ�*Z��E�e�	d`�c����Ɋ�����f�Y��TХ���xV%�l=���pz�{�$���31X���+)m�[�p����o���0$�̙��k���>�S�7��9��o|yS3�{'!�CV�_���B�s
ܻ{9�����_��X�#ڥ�![^��e�5YhB�[=фr�
�/7����
V&]�Ii�
�i���֪�$� ؜;�rJv�*}���p��͋u�wb8�a�נ����{�[:��Э(�.^�s�%�H؈�S�m���	��͝3�̓]��.���>t���/������)ž�(t�ĝw��?�����޿�o��~�qO*9�{/�F;as�OV]LG�?%u��Z��ÖKi|�z=�O<>w�
��ap�I0���R����c�ƌ�aM<�f/�$�)!�7��U=�j�5[l�)���h��M�D�j`kѫn��r�Ј���ݤ�����Q�����s�?s�!PD(W����u������h�ٳ��co��H$<�3S_���>~�;}Ȏ,�B�ܷ�7�}7y{d	CJ=��3p�>�4��:ܽ�w��/���г@C��ؚgĘ�6����=p�~��\p�S�+�����3y���ʿO��˗Q�+T�-B�u��*��l���&��b����]�m�5�B�����;m�
=�^�
{_c~�DŒ�8�w��E0*�Гu���p��w�3���q�5��W�/�G��26}��`���ج�906��>w�l�x��Tر�ޫ#����%f&��#��?c�^"*G^G٠N�rK|��֞��64�'��FYy���4c���СCH���NÎ�9�;�l����xQ������
�M�E'w�h.`d
�e�^>�Iow���
(��ŇNƚ�'9z׍�E�Z����qbx���TO�
#��ٹ4��5A)�Y�jʰ�'�$�}�[ACK7������b��U��H�ڪ��(�j"{.�쁤����c
��Q�vIz	���j�h����ƫ��&h��F�x ��M�����M�D3KSc$`��F�^��k��U(t���7~em��]�����`��:��
��Rq-�:�R0��h�c�q���W�`6J���NY�����k�Z���r��j�)��(z($����
F~\w�M0��>{M�c��l���p�;O��E�ě9g�s߃��N��6���˖��{��m�%y����Ҵp�w�	��P������qG��7O�8@�GS^�J�b�{��;�@��vv�
n��0a�]�aoD��,��G��a��h�t@٘-�xӃ d%V�[�œ��F9`�;^�ȕS�Br��PX�Q���+#a�Eֺ8�8.�L@W.����Xβ�bN��Y�〄V5�Y��K���հ� �5q��^V]H8B�\�O���ŵ��uݽ���X�dRp���"W�����D��/A��{og��)����E������[�$7Ղ'Ȣ��7��s��Ib!�0L �	��t�%k�X�ac���F	��l?�)@�B�G��h ��\�W��?�M���y��G0	�{ɯ�ʛ��ઘ	jԓv�?��z
�j"Ue���.��s|i��H���0E,t�0�2��ݘԕj�g�Q���6��EO����~��,w�P'`
s� �8�-�K-��
�?��op���{�.�m�AK�����G!+�F@�(>|�#�_\y%��C�l1]T�[��{o�Իޕ7����N��S疯\E�%adn���ۗO<�pxf�K�y��||��w5���hþ���� ;�k���Zw?�h�+'��[������{[��~���"��ˤ�C���ͼ���X#����n�<�m0�xk$?
*F����G�}�h���O|�@�K��gX�b9�Rڻ�S&���w�t2y+�ݮ��.*^R�A�m:�Al�׈D��
�Ûb|�.�r�O�B����V8娣\��=r|���O�[2�ߢ�̇ q���N�d��{�^;�����`�2N��$�+��>���F�ЍC���H���@al�+�_���۾aN>�X��?���]��8���}�ͣ�天��vK1in��]����I��qp�a��5�a�Q�7��G	yaT�ZI�EI�@�酵2��ǽ��Y�O9b��p�T�q��^z	8�m�l`o"j0>-�F�Ym�DŽ���~k���V6�zV%���C@�_\��[�ҝs4�,Yf�v–�E��/F4�)��ͬ`P��PNl�X†�"o���CBÍ�8]C��⽇�,��hH���L�@c
mF�"�P��N��mD>��ɪ���WM/��Sh+�sJ��� }�)���r� I���4�=	x��2��� ��{C����e�K��U��m�P�q����Fm@ͳ�ْe�6]Q2�>��|!����G�,�y�Ф���I�a�pa�ׅ��:��K��06�"b�f��P�x 6�SAb
Mꗴ�F^*� ��{���Q}�	�������o��s�M���\��+]^�'��
+�T�DOl�
C!��$��Ń�J��c�0�_��e�X?+0I��1��,��O���W{ݬz��ϛ����z�t'�&��_&L��Ta��JV{��D�%Z� !��V�F�Lp)���U�t@Y~#��m�S:O�9��v�7����f�B����1��a����Dͽ�~ri��q��q5>�jdI�
��mC���5I�W�7,CQa\�8o�q��}z�1�S�τ]v���g0w�|��g�{#P�Co�!bq�vm'\r�`���駼
�n9�3���5Ič(9>�0�Eϯù�H��A�q�>��Sļ�3�Y_��3U��›(&:��N���ʌ��`YGI��R���[P���<q!�d�Vn
U�(]CQQ����@��&q�+%�"CB�*S�ɹ����P������"��!�Nz�)�ӣʂ��Mm�����2\*x[�75+�QtS-�e޻v]Y��X�m������[���_���IJ��pUt��)pD��p`�o��8�	0���q;�¡���H	�/��
������6��L���wy��GH�@�v���E�8���s�O��ʂ�l�p_x�}"S �;�)�@δ�?�Y�#�x^h���mݗ&T$��K[�c˛��o97B+��G�/�'�x�c�9P�j�����I��k�ژ���F�w�]��}�5e�;�?�yx��V�Lw���+V�f#G��:hωp�*Đ�ϛ�9�|h�%k��&��s��Y��B6Ue�B���y�qp�!��z�)~���\�9�N6S����� �����
/_Ƽ�������k.8�L�o�=`P���Ep[�:.l�ffr�{a1zg�t��W���\�<�xۑG�|�G�Q)�ؔ��K�.� ar�o��gpᗿB�m�@�/�p�	o�'�����&�s�vp}�ۍ�4Y��������Yjg��qJڭ�(��ӹf
�Ӥ�!%���yq�L������)"��8νK�<i&FLʣ�>���j��G>ְ���q��w�17�w7<���4?��|�w���Î�]��>�2�!�n��^X�zU��s�I5�oK7~�߆]z	L�6֡2�R�bhƒ��.x�a�]wk+WQQ+S#\�
�P��6�@($\3���O���I��[n�9�ꚫ��+~Q^*Q���9�J,�*���f�r�Y8�gY�w�Q�&�/��sS`���#�Ԑ�gy|ݒi𽿇q�S{K[�T��$���A�g��R�‚��uMd��
�0䳆P��R�<İ._/�|"�6x�74Y�(x�{(�K"ƈ�)A�)CM��^�F%?�; �XB!��l���H/WbC�r��E�je��u:�X�F�j�
$5�A�l`͚N1(X���=98\� ��z��d�)��p߬��>�qk�'�1`��g���E	�I":F�"O�뤭�)T$�ha���mM�1!��?kiI��L)���� �Q�@签3�\�80!���LE0�<W"r������3P�$N�!��;�M�d�m��i�$�<#��S�V{(3,$E�� �x���XB�t��r��_J�U�W/��!?�l�f�W;D��� X���y'$)3�a4>��Q"s�����LRzI��9#@�*�RyD^�L���
�ux�82=Ͽ8�x�Yz	��n8��饿�i!X��b��������8�M�9�|z
�z�}®��.;³S^�Æ���O�v�a*1X���
��r����‹�Hy����<� �r��؟5k<5�yR4��t��_^�����B��*����2s�\xεq�&�`��yĴ~�A���1�h��(�d�(����g�$��7�7hѫK�7��,$�����|�1�3�ex�i0�	�2	f͙Sg�r��:�o�/mx�?�1�K�-'��0�Lw�y'�pfϝ���K�x�2���p���_��;���{��z�V4ެ �2���MVI���
{���P��Z�e��	�ڒ̼י\H-[,�k��m�kS�Q�k�ZQ���Ҋ^5� q*)D�2Uue�V�*V<U�1B�;����;����w�(������#��pI��V�s��IB7e�[����
��FV4��T�j��Ӯ�VVRˏ�r�bi<f���ܼ6�Ij���Ħt�6���L�,dG�a���>�γ	i��8`����~�+��)T����meje�[�rP�.7:Ӭ�fa�<���Ŧ�n�L�M���S�-u;�x�C�-��1	��w:�󅿻��:5d��3&���V��NQ���.��o�T�6!t�S��/�ʰK���.�6��zlʔ�\
�|>�)�>�
{4G�ޛ�
{�KS���T���uX���8�w��Ca�,���PG(���v�0�(7���(M�eA"��lb����3� �*^�*�@#�*RZ��[n����>���>�°��;�^�:��K+W�&��g���g�|�Hs�M{+�7k\�k$�0�L�6���'���v���\ 8W0֓�\�b�_��+�4��{�!phA.��vs�)~�}�'z�'���)q���̭9�w�<ڈ���;��;�%pl�|�Bo��'�����z�lp��]b 6R���;`�by�ws ~���i�|�]���C2�­���űy��-R0�YB��Q$Z�|����ް��^�_cZ8�~���A�u5&=�m�
l�<��õ�D�I6#�L��l����f}�G�^���D����-�
XP�s�B�y�@M��X��[�_�I�>�8&�w#a��@������P�T#�4�-1���o��e�D�Jj5��Pu���`H�<�!CK��T�i�ۊF���ۃ$�P\s��S������lE����[��u��F�]�+Po�F!O�f%�X��OZ/�Y��T��!��?=x�f�Ú�,��n�h�� ��w��A:�%���Tߡ�CA�vN��\��!�B�(d�B�S�M@i��vpK���j���JX�M�aS
ڀ��\��c�@`��W}"�F��q�R��	�����GIl��]������Jl�[�h*�v�C�65QJ�86*�u���O�Sޡ��\k*�/�U��H!�:�8���%����.��_`�+�`�p� �����z����p��o&k��K��M����-�kG�[ܖ,]
�:�?���&^+V��;�}���Đ=���pѯ~Km�5g\��+�sm�[�j���}�.]��fx��'H0��/_A��t�C��R׎���v2����&~��'޷��y�=���F�L݄}E@d�֏p�[�5}�8/��	�^���{��A��_�[��@�aC��"�!�s`���ǫ��e�Y���?�o|�w��r�=��9�^�6����a�K,\�u���瞧
���r-�d��<Æ��Y�Ӹ���&�������R�x�8V�(�� �Uf"�$E7�#�Gw��0$^*�K*�P��[�$��OJ@Zb��1F�T)a#{�i2vt7%�-�>��ڮ��Y�{z���
?�U}�V���-�7њƩ&k�ukR@�Y�pW��A\����nMZ�v
�,M��C�%S�r,gkX(*����D��pI�N�p��&�ALT�B�����X��X��g_�rຫL�Z�xnŰp��3K�6(Pc
�2fA�g��X�@��`�ԓ�Z�෗�G�sӦA�4z�H����]t1���� ��B�Vdڔ��q-'�t��N��4��9a�Ds'�a��PW�f>���)E@�pDE��6�P7d��k�ڧ���K
�90���Ҵ,��5ϴ�t��P����_z,\�ĽC�`0��r
�aÆ�o�MC��J?|��Y�Fw<� \q���������w�wE�?�pݾ���Z*������=&�gB���q���G=J�r�g�d��D
ʾ��x\D#��Ҷ��|o{�!��[J`�� z� ��"�4c�<����Q��x=�~.���@���衧���@�4ց�Hڀ!�.��:x���&�q;\ۭ9�.��+
լ�և����e��u�����#��^�M��t��7ؑ��uʣu�ka�S��1Y/y�����/`�y��hƜ����.qϮ���&Jq挦e��U�=�p8�-�Ñ����l�ZK_^�
<����讓w�5jq��r���B���?w?�=�viŽ;�7>����y
�%���L{���ڡ)3f�׏�|�xI��?���)��G9�]�z�����\�L���e�Qp�I]>�g[J��SE��J��X�rP���������<�{���Rc�}	)̆d%z��t��66���;|l�w�*^�+�ˢ��8�uՇp�y�ӽ P��Q���F�H4�E�@`��SU9�#�(�#؀2wU�����LI�/9*�X�:ʃ��#˸:1Gɲ�
	yotp�r�
X�|��+.�en
Dc�n��D�֬r��.ʟ��>V�c��`��z�7
��<���̸v#�zJ6P�YR�H7�ػE��<Sn�A~_�1T�]�K1#c4-��R.�$D�I��Ϫ��cI��O�����g&�0���y���B�vkS@�7Z��#��_&R��/t[��S%�V�Z���^�]��D
�P\!���m�Z�n�}5|�� u�4Fy�c�a6Dh�pr�Q���ٚ
������z �-n8թR|�/O�΄FCK>)�	�o3X�|Гð+�12!��T@n��ct"E��P�	�K�^��O��#�翋�g�~
��Drt¢W_��_��,Z�Ə�
>���Iq�����0m�LX�r�&��g?Aܣ�?3gρ��ݛ���-&5:���{ֵs~���K	UE�E_�]wى��z�9�P8�C`���O��<��bs8����K���Eiڌ���f��}�<�T8����{�k'��'�i����SO"ώ�n�õ{̘9�̛�q��ʸ����Yׇ��V��Ἱ�?�`	m���N'4����ᅩ���W�{�s6�����/��3fñG
w�l��6����/�&0q�	���a��v�MF��V��}&����\?�����3>�'���A�������	Jo9N<���|������73Q�s�ݦX�ԄY�ba��!�i�zPy�OV}��L��N�"��p�f�Iwzep(+�#@�K�+QFT���Ge��M��5�8y��Cb��ˉ�-Ys�%����E��sR�����M� (&�n�L2z�Q�+o�a�
��)�!��
�\~w
���ן�~h��S�H9I�Qd���3��y5�z��E7k5I�A�H�f2j�z��5�@%��._G�㙑�1��1|�:�x��ayZ����@��%o�?���L�mP�;��.�]���[_\sO�HL�yZ�L�ѫ�X����@�ou�5'�{��|-I�4��r�לC0�'L��W�
��C_1`�יr����=*Ih�B���uJ���y@(_�4d0���S���j����g�k����y�Sx�����t��v�G��'^|����=H�,i����=A	CA��Ka�f��q�Z�g�]����?�g�N����+o5�c��i�s�^�����}��6o��f/&.��_�
��ַ��}��<1+������˝BzMw�Ǥ~�l�kUH�Z_��<'�wqs���o�c9߯�'��#(���?�8��yce�x⹧�?�|�c���'Lh�m���6
��/"�#o�^�j%��k`��?�d�Q�WZ�|9���?�}����t`�-�uX��z���[Q��j�
X�l+1$ƻ����ǵt;礓��~Cpp'��:��6�#�C��[W��j\+U�g�K�r�CT("߭y��?�&���<X�^�~��(Vszj���r��K�>�Q��WtO4���V���$D2ʂ
��>)%4?��E)�y6���ZkZZ@��ͳ'��w�)/�e�R���(�(-82��sR�=]#!�P���;(L����C��AN�!jy�� �6P����2<ɿ� �0X��v`HuW��yV�BWW�����<t�ƈ���z<�ڢF�ժ�X�ڵ��k�$��P��+r3���<����>��~�|8n�WS&�$���	O�t�,�q�Pq�Q p��%J�.�T�gf�f���px�S�00i�r���/@o����O�us�=�CV��ׇ]�@����-�pO����k�FFEB�.�x�Y�yP��3j������\��`D�E�T�l��ђ�
� ^������D(�::k!�Ox�zV��htT�#�bQ������^�/%�]�ć�O��7vYͣ"z�M���==0�Z��=q}�����P�W��-�lN��P8�)���W��-��{��[8�d�����n	���|R��^�+��L�q�rn��6���H!:|�P'ԭu��2��[�kM��~ȁ�+�[���@�pT�#S��ѣ`��DZE<&�ü$k;I�:V\ć�~c�h�	����}������ms��8Ͳe�i�G�N�&�7��Ç����Ŵ�^6��n2�z�ݰ�>{ұ�G����ر�^������<0H[o3���i+^��p��PMu�A� �_��\0g� � �ef I��, &4�w"�[xXa �Z>@M��2�_.in�JH�k���W��[�$���M9D$�Y=
�B.���8����H4_�XL ��.����yG���c�h�佇��]]���@Wdl�31�g��-��:�0�b2b0�[	�qNz>R���I2����?V,blT&�I�Y��}7��Ϧ�9
=��RY<H(V�	ef��n�W�%OM����1�G���:�g���,����C+� ?��7)4��|!�r��I,�	r�[�֢<M\��N�Eu���r�@f�6����\�-�����bs��+(�+��<������������0�>�xXk��Ⱥ��f��
��-�MA�Mj�,wJ1��6>����w����,�?�|3��o�ɪ�צ���G��ww\�@�/���%�`�@�߿����9���l����r�k]}�mp���͝�:�9-�*f�y�G�D�e�m�C�<Fgx�F4��w��$�z@eZ�5��կPB�Ϝw^a�Vh�{��u�Ep��wQ�]�qڡ�k������i���=x�…p�{nv�6otb9�/��g��~�[:F�5�H�}�������>���:��]�����0{�<��>���8���o~�0�)�ۥU���o~�>p?��Ė�?�?�1	Z;^ֱ����L�k�S���?�`��̷��*�� ����v���Sꛕ�D�����ط@+���i��sϒ��^њ?y}D$ɯ��I��_�?��
z�x�7��V��� ��T/�xLe6�`=�ʒq��Du	]�M)Þb���@-���e��	3D~G%>z#x�T���Q���Iz� ��[���n�]7��7�AJ,�l����<oG�ඬ�a���.K�O�4h�At��Q��HÇ�P0T�p�g�~C���j��.s���%<����*@�Y��S%�zy�� z�T4�
”DO�C0z��/�rdLɄ2�A���;Mؿ9<�=�L#�S�9+߽z<Z�5d�Q>��e��E�\rE=c�Z�k�p"���4Y����/_��K�V��Z�
kZ�6��t>U�ı��#a$���~m������%�,��&kL��h��Z?
@CY1��(H�-7������_i�T�>�����H�u�|YQ@�,sdӛ�끐��V�k��CU=��3d]���%r;�����B,L��cR���
�9s�{�2D�M6�]���{춫O��%d�Q=T��0V�&Dž���u��a���$/\|�=��a�x��������W^K�
��뀌�lx(L�Y|Q�ӌ�d�$Y_�7M��@�!�#�.�g�nH7��H(��8��k��sĐ %Qj��e)�i'�g�v
y����Ƶ��ѽ�̐T�{p~a���BΓ�K�Q�����e��N��j�Cs��F/���$T*��kB)���k�x�6`z<���st^")�b�cRR�[s`ݕrY<xq%`�wS�=ȥ��6�����,��-���q5I�/�MY��F���*����e���J$|�����+"5�YU�1��*R��Ժ:��vć���T6]%~tL4��ew� \���	�񜎫��bx�=����@�8Q}YVMD��©H>�3q����%�����}���C�|�;߆�~
���v-&I?�S���3?�I��D�����m?�/ʰ6[JÂ�3�,����K1���oyPܷ&چ��g�g`�2�ɺd8ʭ���E��l�j�?Z��Iy>��)
2�ͫZ��3i��c�	������6�Ut�k�q]����`Ɋp�G�)Gێ�ڵx�=㶇�K��^�3�{9$A-Y���ˋ��Y3��})�[!wu�=��_n��@���W^_�y�IQ���,Y�.��2���g�g�pB�@�^�)��z�J0��Aj��k���,��_�LE��O����^�2`�y�A���㒿^S�����;����B���;�K��
�t�䐃k}H��MHy�p���4bO]��U���{/'�w���>�d��=w ��R��._
߻�bx䙧��G���w���y\~�Up��ŋ
�䲑��۝�ӻ��sχ}&쑲�mD8�^�5��cؿ�$絶�(m�m�H�m�S
FJ�$����nX�2�����\B�֧�{����e��ޚ�L}Y2��)3���W��r��0o&%Rw�	Fu�!/�N��G�d2�%{�����h2�1�`~�Y��&��K�F�>i�d�$�4�S��9�b%Ts"F_~�a/v
�D�j�K�`t���-j�9m�)l�7y����b�a����*�����Z0�'YCJ!8@@BM��t
�~И�"�UB����XX#�3�FC CW�,�I�{9��b�D8�襼|%�tQ��� ��eV�$������9�9Jj`�r4��8a9!j�	�k@YL
u��ĉ�%�H���Ĉ���ި4�e�a�'�z�D�rȬ����z��!DB^�pU��	�3d�	a(K,�*ůX�8�{LfKyD+H��"P�@rnX�*��I�I�������Iq.:z3�����6n��c���KH�5���� �W�NLZ�O�����b���Jh�֓z��\�OXG���1\�K���O�DŽ����f�_�3��O�TYEM5��s�T)�a��͘
O?;��P7"��uʫ�OF�7�~7s���?�>�e�8�M��ԅ�j>$~l3~+x��`�.;:$u
Lyq*z����->Bs�`��I���G�����$e����۶���i��o�%|���`�m��0J]n�A@h�֓
^�]vށ��~�6��Ӧ��͸q����K���~���s��x<��0n�X�jP��¨Q#��
i��6�M7�@�k�'�&���"��Q�C1����Wa��ϥ>(�(�}�q��6aexo��ؤ$Oz�*C�S����!eIHV��R�-	'ʴ��{�c`�e7P��� �%!��D��� 	�Mɻ��ϻ+[��6���C.��	22����R.!+֙n��jMC[b:(/I#��Y�௚�qk�n����J�Q���͔��j!��t�Q׍�[a�w�X+�X�{���Ba/e�݆~�8�(�[��i���Ļ���^Q�h(�����(��a��`���ҜK��NR���ԁ��v�_ո�?��p�O��rn�� ۍ�_s=���o~
}�FmˊC��l���?<s>{DY<�.C�XX,�Z��W�z���&��� y��x&�f��T�ɔ���x��烰ۦ����kc�/Y��Ν���s�×�OiFu�C��AوI�1	Z�7��//���*C��K�9�ۉg��</̚
?��J8���c���cƐ�����zJ*)y��:e�<�������aX�j�m:��y|��N�z�y�[�����nE�bJTࡀ��+�Z�c��?�^�9t����{N�G`*�^p�.�9�,h�_x�C���kx��KZԨb0�^M����$ᡨ�b�WW��gLn~����<��7qOx���a��K��#��� ���gJϵ�^Y��)���}�;�i�I�����T)�
d�0a����_7�.,���/n-逸���\{G��"?�
��]�$~S���eH�F�;y��ч��g��n����J�C��X�����M}]��k�=ou��m��_s��
���݄c��_S�s�<����$�|�N1��
�K"X+J>
���1�7+�>�#?��0b�0("��\���twJ��U���n�ɷ�{�;��ַ��5�=���ˣ�5t�P����nT0-Z�^p�ǃO<���W�t��ɬזr?�r�=4y�9�P8��'RΏ�F��Sh(���:��k᫯�o����&6p㒙s���O�Eyr$F��)3�z��x�bH���~
�<��+=&,a��/�ȡωq= >˽c���|q�q22q�z���}@]����w������GQ�;o@>��=G��3�=��mĩ���R.�O��("|���5�D��ez��{Wk"`�\Sָ��ϯ��������{��o>?dR���H�i�.�1W�O;>����?&��g@�a V���N#h���D�l�mη
Gii�Y�Rt�Dﳨ��B0��w�`^�1+	�|����+�Gz�r��.��{�[��<({��*/~֔ ��ݫ�vz�ez
��m�x�:�J�C䦄<:����nd!
�WC��M|��XWYG{86�K�.�{V�B���H&�3��Z#F�z������ȁ�^M���G�]���8U(�����N.��X���
��� �uz�E��)�.�������ܟS�C˷R��\6�NJ.��Ð&��U"��3U��"p��A�V�K���=�_
�F���^���P	o�`�x,�F��J�ؑ'8�K�o2&�����d�>{�d�|��z�(J��_�ZfYҨ����Q^G4z��:KdR�s ţ�=	?��%�$o��x�ԁH�92*����l3�Ǩ���S�׺]w��|+��6�}�SΎ�����#G8!.��������w���~�s�8����r
�CJ��/L����״P`(+�Ø1��qG���wpP@�j�-�UT��ƒ}A�uYCA�qc��#;�z��n~M���/n�7�MF�tf��9� >��7��r������brI<��`�]v����>{��n�&��V8鄷����R{t
D�}����b�\4���r�q��v�ҳ]|�1p���?n�6sѻ�<
��vk������k&��1
&�כ��RH�� k�ZP�;/�P�zД�ʟc�+��Vi��Q�-���04Ĕ2B
b+�)fI��&]�
��c�a��;�{�≡@��+�`U㢊�D<)�Tq/�r�MB8'�%R��z'�C��K,,P�
�F�Q��ċp~`��?I̞*C���Ĥ1�Px��u��1$��o�&�����3��Ho�'�֫I�x,5��l���(v���
��c��s���A�y�E��G>J��Z�/�c���O~�p!�Nvߌp1ϲ���Ցu7�}ɜL%M˿5����!S_F�)e���)Ƭ��b=h.��Zx5�6��*�����Mt�,^���^0��7�+��I}{a�L��|��3K)���5	��b��K &���AK4\g+~=m@����{���l�AG4z�H�x&��5_Y�f͟K��J���Q�R�5�Oh��ߗ�
65��sO�r�-�X�BT�b�|��-ZL\NJ�k��o�e��;��M���)���M(������ɓ�_�H=!���OJ�p�C�!*�8E=���$���u➏����G�4��ʧ0b���1�kP�x�2��+�{����/o-a���Z�]L�C�i;���ԁ�8�bK' (�sV�:��T��"���*�1w��O��hʏ���Cуh�ѣi�0��T[�l),veS�i���5��ܗ�ݤt�u�S���O@2
m���u�)��&��a�ڳmT˝�YJ�k)(�L{����ձWi�R-hC�K��Ёg_z����q�g�ћR��MGoB�.ޏ�
=h�3m�,
M�]s �W�PJ{��@�k��-��ۍce.#��k*���Z	/L��z�|(y�����u��Hʟ ��1��d���^��������o9_8ĽKCEf�ۏs���=T��|�b����1��~��]�n�̇���"��uc�)�.�M5�[�b9��:vrk=��;�}mAC��Y3(�a��r���$���b���!h�M�8�
᤽l��I�!�ׁ�5Ej�t����6�V؀
QoA5�ϙ��)~��g�Z/����i�:K�I�L2 k�������~���(ӕK֯}U��3�ٜo-�O��a�]TP��H|�oGl\h�7� ��<6�$��ѡ[�OJ_��y�߳��0�(�#��8_2@p����uw�|�<�:�p�PR׭���{��J��%=&���<�i`O0I�`6z�k�!�L�/�004v8
����]����ݽ4��m�Q��k��EגĿ*��Qb�
�}�1��8FQ�*�!e�>(B,�z#���6��k��;+Y�S9F�rB�_"�y䔔\�h�E� �t�	�e��"�����!�(:%6���^(���M����]/'Ge�B�&���U��!���I��2D#��!񒠅�Z�N��E�%�nD�D�Gܓ$��E���P��tK�6/��|Y���/̀�v�ג��h��/|;J`B@3�L'�Z�aB�k'��u}ġ�WҐ3�u��c�(lgۊ+�0�
�V�W_]�^k�yi�Lx�Gᐃ��u8lHZ�d��E���\�F"�(ܳ{t:�%
OeA�)qZO�"��9{�������w.��>�lL<�z�ݱ�:����ojg�����jϽR��4%���^���L91�	AҰVH4�e� 0�D��]�Ph-��RA�Ih�u�,��t&�L{zv�DOr��q���`���xu�5YԣC7}�ʤԏ�cQn�U�k#=��L3yFM�>��h}C�^f��H<K8�D�{ih}��P'���F��`�><W��"��K�)�[�Q #(3��˔���()F�0�j����&�	Y��R�&�e����JƤ�m��q�gr!ͧ�_�W�����r�\
�Q��mƎ���R��Jh�~��?A���L�s���l���F}<WH|V�^3a�p'�7��f���	_C}T�1��s<�.�![
Q�@ο�n��VCIʡ!�)|Y41���隌W��K�)�eTI��a��C=��QB��%�e,#��k��nN�v@yYb܆��%o-�F&5���T
��%�_3��p.@RD�5��wx�B;7,� VeE&�n7�&�Yc9LU��"�x��v�R�\F��ྦྷ^6R`�"��Vݘ�^���d@��a�ۢ��넿Nɏ`�O)�3n΍p���� �݋)�W} �-T$��
�3n^�v�rZg �6��º*C�'�͵c5|=2T�(�g���t�S�cX������ǵ��W����8pq����wGs_uD	�9���a0I��
��w�9h����=�,ސ�e�떆)Q>Bqy��y�;���.��d���r����5�P�gIY��>��+�J���8�#G�q��a?ֵ����Z��)�9�'VQ�=��`�l����1X��HR��\��M�@�Z�T��m����\�xIo�dx���d�r�V�[��F
Aس�
`8�!�����N�PfD0�&�\��S\�qm�y�f�w�r��i�:��9/�� ��;���~6�,[���M��L�^͊�h�h���� ���c�/��@�A�	 /whx�h1!�i�<��\�a8��ƞ��e���x��Sy䢉���4����e0��e���2H�ĠG����'�/����zQ�[�zW�_�-8i6R_u?v�|a�<�F�2�������
Ѐ��
9A���Z�c�����K�F�}���󐼓������g[SL"B#�
K6�k�d�/6�D�E@�)6�Dt������H����x��N|O�~�&�e�)��7�}J�wR����Q����W�0,3ff%��0��0�D�:�k����H��7���uf��G�I�?�6����:�ہ��:��²��'������{�,���`&�<�,��^�|P�t��c�}!���5
O�D���*�FV���S�����}u�^C�D�!���"`���-�ԉ��B˺{�����h��5Z�:q� 3�m�SL���mbR�.̕<L6���Em���#P�qD�R��2"�i�!�f�UB%�%�q��a�Q����Coٍ�?���~�'d�����_x	�~�t|�~{����ݑw</�1{}Pdcx�G�x
��!;vX�r5��jK�k��0@�p�5
7��q;�#��nT�"5��<���=�ެ��,��pT2>_�n�5QF�[z�����O�1<���c*(K��uꞅ�)p����*�'5g�!eu�{PR
�.�۵�ưVWg�I���I�#TU����5�t㹚(����s�-%�=��tNr\����F��A<����ê�1��N4�g"��@�xK�z\7Z)P���U�W}�(�����Kƈr�c�ڰ���1k�<��0j���FԈ[�*������@�}N?���O��|�c-݅	�����o�'�㞻۩��$�9ȩ-V2���d�+jc3f$F�:!�ِ����Q��xfX~��I7S?��S dٲ�]>jr(hC3q�	���zީ�͢be��*yv\�w��yC�k[J�Ԩ�Ƅ�us
��i�zu��V�;������´���)�MaM�L��ʔ!]�������ט�KM�b3���&�Fc2���|5�a�����`) �Ea@�޲SoW�1y�2*"��\8D��r�vٺ8Ei݈��j���M�Ybo�-S-H\�$Tؠҩ&@u�)��I�(R�YD{�(��ѺE�M��τ)���a��2�Y�$sof�lTHf]��(WN�u�Bڮsry7zu!�.0�Y��ɕ$�J���Z�0�8Y<����#d�zo��	�>6?�zuSx\�u�]�tE	�%TV٫��R�X�&�W��o��~(��h��X����P�g+V����^'X�+�s�v�����f�K���aUf*8�׻v��W�9or�We��/��@�uP��
�x=Wc/6��� `��p!���PQ�(��s�a���`����$`$�i��3,��JM��������h�yE�ȬL9�q���Q�ێsN�89z�$4�8T���z����k�.��Y������&�!j8��J��f��w
/V�<$����#�cOɞG̚��a6TN���P& wx.4R���@�3�|�&Qe�
��pZ!;��mL�a �Ѓ�Sm�h|L*��(B����	Д�s���D���I�l��Q.y#��2@�`�7��ص$��>>�(B��ר�L���"�jCm�� �NB�L��-�
CFx�~p�?��R��@f�m'��3̛�2��|
�5jdk	9赣�7�N9�x�j��|�0)"4�K%�Z��`²o� 2��_ܼ-zb���c��
2|2-��ߖ���1�YQa�tߔ�#ȠV-�}�]�R�C!!�D_���5�%�]N��L�N��_���߉e?�c\O�J$I`���K�B�=�J"VTRMIƆ9i*�<��P"�����&3�$"��w��� �s�ׇr�4�+M)N&�X�XY+z��)BM@P(�0a^S�,�0Q��M�B�=�^�=Q4H��-e�9jY��8�	�#�B/ߪ�Z iA����6
���/P��f��~����{���{�/aC��2�Њ����ٞ@A�R\[� B��J6�mU����uUG
��bM(<%�7]��Ljx�c�~~1�?9��Ʒą@l�猎*�Ņ��[uŚ�nؼ�ip�uA�Q��k�?2�7��E��Y��ׯ?-���b�52nLJ9]tqê@eݶ�n=�C12/�),���7(�xl����Վ���`��r�/d��&�c����>!Ƅm��Fmd9ڟ9�Z���(�
�$ބj�DaC4��ѥ�y�24�ѨM1�A�ƽ(����W8��D�ai����a����C&�"%�O+�;�d/�!������/��0v�z(�G�{^]��~bŃ��(^�8̱��SL�{z�2��g
�N�.G�(YElj�i�BR��u��P���9�� 3�>����=h�O`��Hx�,T�0�|��9·�-jcG
}������"�⹆�K-t&(s!�:Oc�;z�г�pY	�
�@�@D�?���>#Fp�R���׺{S!��s��=z��QJ9��:�^���ej�b�蕄ʑ�Ç��.�;x��~d|$��Qa]��AE=Đ!:Nk 8e	��:�^��G�H��Y[=�|8A��+���_X��Z�����$�8���
����(�uBJ�9��<�F��r+"�l�	�S��> ��T9���/F-1�@\��5�w�M&�!��\ER�WZ��#RZB�7+��4�{��,�n/
����Bb�Ϗ�#���Y�	�����ǂ�h���go��bry�7-!c�ۮ;��H�i0q�]�3@oB�C<�1����$+�=x�9ɉ���)�XO��\CN�k:������
���Z5	�
T���"�`h�3$�_b��� ,���[�W���-�
zPyx]Uo�MSn�)n-�!�7�J�+�M��$6��w]���3 �DI8�n���+�GMB\0+x���+H|�@�Q���:�:1ƃ�e0;bYi#��x[6
0��C���J��	�__Z��e
�(���㞻��i/�u�oK җ?�Qȿ���t}���x�&�:,V��lc}U]5b��O�zM��ْ�����@q�&��5�Άڍ�U��a���i�7�h���pX_�r�:�^I�`h��:��I�/����>�J�J�a����-�س<Ӥ�="[�3|��Я�V�#��5�����nt� b���]2��M}��{�(��Q�?֕����n��Й��o���,��{~��u�>؀4ԡ1����Q���߳�<�:������55:�5%�ʧ�$��X����CVU%^:� [BN�&�K|js�	3N�)�nn�(�w�����`L
.�z�8D��_ޭ0�Fu�2��ӠZ�n���Ґtxt��#`Ѳ%4֨Ɯ���?|��/���ᯮ��t{l�(D�f�+c����;؇��01�����TH	�A�:"ŵg�78ŏl�6<�Ӈ��TC�f����_"s]�m�\���0�����:�U���U<��y�~�-p���= ^�s)˿y�{h�eA�|�F�r	�pH�����BCub^!�M�>%��2����[�����,�|��x/�J�#��|���Ơ���Ç��hMB2"��x����ѦC�tO�b����T%�)��I�M�P��V�T�Q
��ea3�N��IM<+��i32�(�u��=R� �+\�ωƧ�P��B=gcü���<�r3�=��ߌ�<;cO3�<X���4	{W�o]�K~u{���]DQC��w�o�jL��Z��VI�~Q�T�١��v%�C$�H��{��I7R�Q
��SE�w@�+2}va$�G������^nI�m����g*9���G�3pA;��KF⽓�R����e4� L��BwN�𫢸�8��>, �nV�{h�E ���@��.̴��2��Y��P��6PX�8��D�c�k�dRKQȃD�Ȅ 3�ZTP^M(&I֕�QᲷ�cu�&'������VG�c֗d '�Rq��R9$�'n���>��V��!#n�ԗ����Ԗ]Z�o͈���"�'	Ȟ�Hj���ɝ�d<���2M�~�2`����T����X�rΑ�����{L:�t���{�9�
}�s��I��}_�g���¨��� �J��[��L��#�׮���[o
�qr��LZЯ.��m2Q�36L��z�*)��i��q�I������'���Sf���œ	�/i��̹�w:�?����t{�~�i�a����>z���%�*�:��!ߊ�9��#}��-SL}:Nu%
�b�7?���ϔ=���-v]׃l}Y��<�1��zYE�٨�|/�{�����_`�.=�:ds��W Z�1�D���G�HƋ@��3�軜���5�57t'�hJ:(:�z̆M4����ϱ���l<�{��7�a��j���z��&�d��P~z���\ʮ�`"�^�Kj���yk��2��8��֢81Z�V�1�*��/�P����a�!<g�1�<A^��6(�;k|�L)�}���u�h�PH�+��h'��;�Bȹ�����ή���O������s�뀴iP���=�˨SU���?���7Y�cRu��9v�-`�q�((>7?^�3�ϓԾ�s>^0��Ե:��д�0��sh�7����%�#*׺��t��@e�"I� ���	���2Z�ۦV���c�Nnh��$�
M��w�	�Ϸ���Q~���!*�c����5�ry!hj���Q��n�sT�<WѪ����)�I�N2�±fe��%��h��&�EU��2�tsm���L˕���S��
�8�+�hԈ^nXf�8݄��qM�ub��唛�����J�롼#�O̰L��Hh�
��gݲ�X�rN6�1`H,Ϗe�H��n��@��K�;�mt��ܚ��8���A
��17-�qw
��9<$�EFpe0�S��b!�}�F7be����R�92�,�E��]D��m$ܔ�'3��*$�N1!1����[�x��6G��{a��~.^	A4�f��{�g�!�,���Q�����^�̝AO���0�`4&ު�_��ĎT��BL�'V,V� 
���'�H�V�A�J1j>��C}��4��!O�r�����?V�� #��B�r�	�K�4@4@�!���@�BB� ����R�[�Q�T��N���-�Z���”���r�Ģ�����,A�d+{����@bX&��A���e2���nc$ɩ�N�g���[���(�L�p���D;r$����(^���p����$�-n��	�Aw'V���})yP���&U�4��Hߍ��o���3��n������M�%�1	�Pf5�o�I=F��6�������Q�}����77����B��p|��_l�z$�����}!�Lށ��/�����իSHY�<1D�X!��FZ�v)�-Ȅ�/����5��h^D�z��_cS錄ߘhh�K�>��d��%��hĢ6+��j�C?$��[�[#���F%�C&�
k�z���A��G0Ք&���q��Z��~���R�6������>������4�5�&��p����oc�߻�z�m�.��iE@BJ�kB_
Y�N�=:�=�<����d��6�Fk!~/�xdJ��p�F]M�&l�Q��5��!��t
�#��|]�_��}"*���K�B�Sb�3�:�WjV
�%cժ���M/[�m���T����_R�1y�����G�h}ԏ̢�|功M��;�lf:�4�1G�yX_(�%wޕ�}��{�=�U����{�P�nW��o\�>�c���2�SZ���z������S9�B����cк_�U�ym�6��m.~�THY>˘��e�>�Ա�D��P��S!��sÃ��M4t�r�����՚�����i��k\��R]e��м�f���\`=��rxn^�
��Y������q��0W.R��(�eF�k�H�R�Ȥ�ۂ$`XGЃBU�A(�)���֣.��1|��Caq^���YG�y2ћ�����z��hxkM��1����BEr%L>d��Q�+	!�Q���1�^�:��%��\TW� ����� ���$ RUDy�kČ���ѫ̗pg5�U��`E�����6bO�.�,D>�GB
��Kّ�zR�w��r]iFT �]6J
i�w��o�b<,D�_%���B?ާ��qCM�`O��Àg�ɛ��5+���L����}]�h�h����=R�v��ժ$��m�ౖ�\���&'%� �^�,ypP��Z���y-.�����@�W�K�w�LYl�:lU�bXh�x����5�i-ej�U� �$dd y=�%���ؚ6
=��Ar0���Vr�R��
���?�-eS��Ѓ���W��I˵��h���p�%�$����Dm�70R�y�Eu�����_4�
���%7?��՝������p����RH,��~	��0��
���_�r�j�{�ȑ��n�٩/����@�`!7UC��׋L�S�4�/(����*�+�3�O��P1�ۈ6�fSU�*s
O��KĚ$Mk��@�O��6��,�гi�"�Lq}C�<'�
q�
����8H�,�q�9��B�V���=mZ��L��R�c�-���3�b\M��3�[ �����Yc�T�s��v7�Խ�@�xͷ�%q,�4(�l��ԿL;=�$u"Ug��'�0�RM8�p������Gb���`�^k�j�˭TX�f�I�;��A�s�ø�9'S�X� ْ�?��_�ںKM1�b���izEP|(�b�����z�FᰙZ�����-Gxp��G�Y�~��p�����Xº�R�+�<�H�����xuM=��1Ϡ�{�С~�8��A��l���)3|ÿ�4�][�2G]{�5؍�ܔ���!�<�¹'�	5l������zŗ*�C"��I���,��<�
և�5�6�#aUm�L�%�&����G_K��{��l�r;��%ɅQ�w��A�;U&�󢛼�Q]�q���D��gNz�TEo��G�rY��ϯ���
q5$&��N��W%=�H�yD3�_��5�x�^�/����ӵ�?D�mGp�CeUE��:����x�+�v>F^'U6
�0�V@!�|Lp`�9�ӹ�r�g��{��w��?*�E���)���u�äx�x����
�P��'�K)��]x��Z��#�N�����j!Vwr�*�������(����
����Pi.+0M
P�Lџ���d"J:8
�e}'tS�ˆ-�M���2�-�uh�h�6>�$����y]��K�d��%%�B�\Ng�?,c� C}�#>qR��IØ�d֎�1��pjتD\]�u�ntm��()��	�.ɵ��-:�W�l�xf�!jЀ)������ъ�hS��36"Fr��;�I�X)㭓�E��̉��*�n��cF�3�F������W�v�s�ʓ���q!@\�H��,@��/�
-�
�
�
$H�����3�|:ߜs���^ �;ɾ{��\�”+?d�y�yݥ�me�#Ԃ�M%1s}���QAK��U���D�)�RfV���J�/��J81)4�����l��V��~.)A΄����u���R�r�A�ė�̠����.FTº-�j�k@����U�*�Rh�7�]2���w��<
#��V���I���5����Ì��]7\5A���F(�A�D�3<��ak��k]T(k�A��)��Bem�A��6�?�ڶ��'p|��nO�4�=�tӶ
���0a�R>�Ι�m��B�a�	��G0}��F!�����>g�8}�^�!@j�[�X�h�C_��b���^fAlԡx�
)_s�E�|n�0����o3/�����>w���vT[�M7��w�IY�r%|��߄O|����?FQl{�M�
��hw24�s+����������ْy�ΙK|
=Q:A�!+)���ގZ�� |H[�0�~*S�T���D~�p�̣���*`9B��	!X>E�Q���}D9��/Eދ��,]�In��a���u���bH�3Qn��vRZ���U���UŒ׺O	�i�Ļ
8'��[=$(?�$�WE��1)Oeͩ��U(�k
'�b�
2�>"��\V�ys�7��ظ�	��X_b+V�ܹs�;�s����&8����"fLr���x���ec�=2!�&�{��!Tvv&�[��ʒ��'���KK �.�9�GT����`�zV�+�%E�6��rz��خ�_4�H>��m^_u�+J��j��l�&�Cs����s4�y�
|X�"��x��04���P��BPYN�l���
�qQ9���n0:y9��(}u���	BI��3�Fm�L�<�-�k9I�E��e�̖@�f�l����
�"b�t�\��-r�)��5��C\������g��������jxF1����^A� �(J��Y�:ZU��c����������s�W��!�p@	]-�F�B�DJ�N}�y�+Q$5���dH��4���Y��B�K���
��F0#�L�c]8�(�.��	�X���jQ�j��(�炈�o5��:E��z��?A��pd�8�n��&���ߥb�BX]�����N���-�ģ���
��8�3_������K����T�h����g��[]�5�|c*�hʋq��;�k��S��,��!�=I������US�M�:ڳ��W���8hL��x��_5n
99�Rl�럞������i�j4S(��Y��(#�,�_UP�=��r��d�'D�?�3��t����;"xO�Ja����w��-{��&���2�lv��(�k�P�І%����0�!F��d+�A�4��&��7l�bǩ�3�z �uh|w\0u4�Z1�`1DV���ZE�}���^���ֺ��P|8��5��=����@����ZX�g�
(gv0=l�����	���>�o�zF��rh�"<�`�z�e��%�o}��S�03=i?	�&I�������bD<-H�0:&�C��*�rc��{!v��$hB�L��C8T�$	9Q��UI�C��艘�7"��Ȩ}�Ì�ٲ���}�^�-�f�u
$��}"y�H"�1�o��xd��4xĺÖ��^
�Ck^e��_���RIn^C��!�P�Tq�&>Ge*h}��GO��
<G[!�ҊNzω�Y�<����	����+��w����H�`���-
��yH���1�i�7A}`���hO���ȓ�CP�ѯ�{�jO
�%��Q�0�`�{�,�)�u���`I�c�@b0\#�</A�QP�M�LC�^A����]��c�$|#@S�����-�;D1��$82#��%S�H�A�X-���(:m4F0&!�T� ���YW]
!}�a�	c�C]*%p�C��[y�CXQ?[�4�N�
�d6�.t�J�?�;a�o�̖�2[�B1qG*bN���A�b�0
=qcW�{O�$����	
����֒�<+.��~"QX�'��"�����y%��QbL��F-�FR�%�	Ը��["s�{?�QP�|�zlD��1�
8_�`��|žN���V���D��=Od��VJ��
̞s}�œ2�c p��;'A��(�B�H�F�rث )�x,�9yn!�`,J��O��ҋi��k��6���W�k��x��Ô&��փ�}�S�Q�\S��}��WX�8����y�y���Cn=�9���p��4�ܠ�گ�L5��@�S�X�9v,��CEqN��)�.�z��\y�c�[x�Y(��{�{��}��|8��б�S-؀��^>�x�6d>��>�FW����9�tm��]wJl��=7��'���0�As<��m�ښvg�I~��^j
rs�:�3m'oD����\������Մ]�B���ʊK]�(t\��{?� .6���l�(��/픏O�3�;��'V]l���^��[QjI�JT�%	c���\{��4$ip0�k4�T�[V�_��\������p�+��\��z�u6~�徶�Bl}k#�R7�U�K�w��x�щ�
����q�U��?�_�?��.[.��6ѐ�f"��Xc�)�C�Ÿ�3#��$�[�J�����<MYK��3g"{�̑��hQ���g����e�*l�����e����<L��LA�Yʍ�h/Ӥ�~G�q4��)�c��̿�
�.2�S��&!��М2���Ecpa��O_
�@Z�� �n�#pX	�8��n��Va>�^�5���� ����O�w<���S��cJ%
����C6bA��>#!�Ԉ���T���E�`��Lۣ�R�E
-�G^i	F��҅�7��S"�EI��xa�ظ��Uh���h
?�<>�A��7��W�W���c��jۉ �IE�	X�9ܔ=��]>���L��e�����p	�$q
��=�
�rsw����C���`4?��v�o��=�!x���'��݅wr��cB��_Kw+QSE�G�Lu���n}Ǩ�ڦ��}y^�rҝ���߯�p�̖�2[fT��ɱ&�~|�83bAD3�D�Hű�'jv
U�Kf^�e���e
��ZBd)����<�B-H��U�Y���Q�5�K"RGF
�ڼE���;�Ͱ[q	�%������	�*'L������,�	
;+�`,�o�����0!f^:U����L!��)I�-�FFcƣĜ
D!Ҧ�A�C#4��j�[ǔxa�yUY��V'e�A2�k�;#���|f����:�����ǿ%y��{f�.�W�`X.��p�b}a�
ל)�P~����M��g�˹R"�I�v_�'¤��@M��
��"Pi�TbG��t��ay�Uh<�k�:�;٦xz�2���"}�Q��v���S�:�m�����L���� z�µ*
�C���z�r�^ʹ�nW׌`ah�`-&n�Ǵu���t����������ׯ.t�P(rZ�=�����W^[(Pе�2�9m�ք��냏��'����8t
=;�/
#�o1����ʦ�|v�X�b��@���$�$D[���V��ko�~���9,Y�,7�@l�c/�>y���D��B�Ì�By�.����
ZW,@n���9�<c(LIu̡D�9�>	]�ߒ�+A��G��z����=hn��6�l�_�) ��Y��#��Eh'���-~��֒8w��ߤ\g��$�����5_'x�[�	Ź#d^�H`F��Γ���ZN

V~�P)<��)�$rX-�al��`Bs���k-)D*�@:k����
�W�Ǟs�Ra�uϏŏ0r^K�1$q���sD�2�,��PY�o�格�&P�;w.��Bx�0��*���D��N-B�M²�8cK����A5���!��!�{���+Z

^`;���
���%2�]�Ѷ�)G�;���APSV���Z�vZ^խf���^*5T�B;�D���c�����>D�ȵ�
+�D<���@"�'�r|�l�D�6P�v�d�8|˱fC_͖�2[8�="G�s*.r�)�ע{�kJ��q(9��xD��*�~��3"�g�3{�h,hBw�e��C���Ʃ=1*!�T��Z�Sh�����[���L��GDhED�*G(�VO��L��p?<]���~Eg����xi��L��a1m�N�@�d�t�j��}
�H��F�h�̸�d�d�"k�D�2Ȫ��%�J$˚�p��|� ��؅��(;^f� %Ns�%4~
f����@O�w��+`��^#�ތJ��B���o��`"�w��{+�C�W�w\.�ST[�R0$��%�t>���42-4��Qw֦w���GP7�"#+[�s�`iشj�ܣ����.q�����`�z��+�9�2�?���'߂��с%�;y��y6���U{�ٺ�X뾴�k�1G��ײ9i�V>��é9B��!��Z�Cڣf�;�;P��g�T]�YQZ���L������zf�#:�b�m%Ly=�s�ȋ��+$`~N.t�#�#e�����.�}wJC�=&�
��Mhr�Ȭ�S��%��ů����2�Xg5���`����ҫ8|%�=4�ݬ����G	_��{߁o��\�x��a���K
�9�o���Q���>n���
^����/��葉ᨒ�r9&(��Q��YD����58ew�x+ƒb���t:������}N�t6���D�+�<���8��?��Jk{)������{��yQ
�˼��>�R���	�C����QY˳ �x�P�"f4�!��@[��J9�y�9:CO��W�`���0�����	��\�k2��ix��B=�@#�>��G����r��$��Ĕ�#
����$�Uơ'�ߑ�7{"����K��Cw���U�ϣ�hQ�Crke1�;�i�?AJ��)�����F�.8G���PC!���.O��w��9dgY9;��I��4�sb4�kN�p}cK�W[���ղoP(?lΕ��վ��r�&��)�g�	�C�
�f_l�Io�>�]1�B�=4dRr��*�ΞʌD�0Y�,y�����ב�Fq���RmT��uuF�b���F��feK���l�-�e��AAkU��*�@�0qcN�����,�ؙB�ℙ6���G�dB���	r��י`���JT����.��*F^�^	H�Fz�<X�-">�y�8�<�BJ�J��c;�����φ)X�54�)
�ڊ�;�32dU4x%VW���x���iǼ3d�
��5?V�ԉ�1��Fq1�k���Х0!�L_P�#X���&����@Q�G�x6,Z���S�X	��/����)��s�w�^���~-k߆�aX���ͳh��<f���^-���gbM�!vf1Ƙ뱯V���"0Hk�H&�P�W|ͼġ�1c�1�9G�ܬ���w������;M�c�7��u�3-�H�c��Ö8��i���2ݼt��}��!��b�g$��8M�S��.M�>�;t�f��G�:�
'='��h�*8|9ŒE%E��
QZ7'��P�^��^�:�����%_���b�,=4[��lG�Sl�bƓ~��+}�n�C.�@��Q��M<��"D�����d���a��7�k��P����;���V���F�6^q}əh��E�

�P�@��%%����鍌-ැþÕ���w��s��f%
UI)�Ɉ��f,)����̖u_�$��I<g÷�st�����v]sqeQ�h1���rU��=?7L(��x��X���`�j1�d%�D����M����Hy@�+V�իY��V�Vi:�:չ��:{tdL򅤵E�
��{��وb�����A�4��~��‚�����C��∊R`Ob����̳56�}��(� ��	n�a�Տu�$秆��l�.
�ڼ'�@E��_�S�k��L��ʂ�C�l�����LA�q�w���b�
R��V��]�d�����ܐ�
ώ�[k3+|,���7+[����`�]#�:�ʋ*��#u����!L4�'����	���ͤ��_E��"s.��a�7��q��J�A�>[fˀ2�^iڳe�S4A$8�$ז�VA�o-"*��h�!��(��F�x$�Cz�?��e+�H��@�W�p\'�n��*K�h(�Y2�o$T8��fo��h�_���4Y�,����5��*�Jcl9��=+�?�Bp��J?���,�i�!��.W��Y�ϥ�����ھ�[�� .Gϡ$�v(��m��X&z:k��kVBG՝uV6�\�P��i���|.��J�����BRMUT	�h���wH���1�G�|w}�k�2HO6��:b�黙ϡ
��
�w�j�dr]-JG��*�b���`sR�ۘ\�>y?k���32]�	�Mi��E�S��OȠɆ6<�n��=�$�����&N��eFם8T��Vl�p�o�#
�9�� t�}�-��Bp�5`a�~�[���p��)�����bP�	���za�߃;	�+l�p@_��.Nqoʦ�W �^��L5�R�8� <6�+�ѥ@���F�;�?l3*�7]	��	����ɟ�X����D{ �>A	����7F�t$Uj�_�Kh�,�@���GvI4��/>W�I �q�:�ys4�EQ]W�;�e��_��4`� 4�5��7��%�NB��(�X舴:���PTh
�!q�|��k�1�LB�`�^����$?@]K�Z��^�2-���h�;}O��X֠Lu���Z�3?W��_?�~g�=���yΉ�B`�DPG�}�J��AtUE�1��XB�����/Z�Z�:L�=FI��B�JΑ�xR��c�2TL�u(M�5�A����\"AY��B��j	�5::.Ƈ,������M�gXh�c�9v-��)�kNjC�r5)EV$��*	��a��GO�o��X������o���z}�RHe�P��$$��d�;�B�ꁂJ�e˖����Q��5bTx�ͰQ��)W��Jp
y3z��a|b���X^�b�|W��/2��^-��%��-��-�9��|�/1��C�V�zE��񬐑I�#3V���T���F�Ñ���

VrD�r�z��Qz)O��D��~��0� 
�%}��lPAק	��#=�-����l������C��VA8���3zobR��@��̛-���'󞚈j�-�yk���B��$�]�C�]Q	�J2:��SX�`�
��`�T`���j��̚��=
�Ug%R��$Ȅ�4ї(^J5d� ae�Ղ��0Blj>�)�W�2��"D�ߘ'e:�b���(@r�Z���{A,�l�VI�SE# �uvE��� ��O��DQj���tTbfP=]���_�B�4��(�"���F�^��|<[�*@Nx��th%���>Ô�� �5 7^螕�-�i>?�szV�{���澅P
��t�����Wp�1��܂��Ml�m�A��6�=�4�QS���ڵ�_2���5�� ~��8w`�����*M��!��!i%	V���Yk�0�Z�vck�``oʲF���R	�_wSDžB7�����|]��d Ԛ&ʹ�)+���%���{��&�i���B{�~�.����@k@�C�oP	[h���>S��@t=�\
^�������:�+�ݪ�g��K��Vǯ��o�&\T��уb��a�
�
��Ա+�и��>{{�~�g��ϭ_��'�������٪�-Б.K�k�-L|�l0��a�z*�` �U�`(�*�e�~�zJ�\������:

?����"�PP9��5d&����⥮4m�1G���-��u��r-|���T2F�=؞���a�+��u���x}]>�d5[�J6�v1~��QX�k6��]��,���8�psX�{��s(�3�z�ŷ
=�!K�n��.t,�0�Z��ĩ�ءr�Lpz�t���CK�)�ǪU}Qb�9zI�0�V���"���	N�]*�tSa�,�"�@�*�PFB���cD���u���$)j&�ϫ)RȘ�/}K�^�b9)�	f��)��7���gY*HP�V)0(��$�9Be��#����*b��F]M���rl��XR��g��B����鯂�ǣ���
GU���#��c�S'E�N��ƪ]J��9Z@,�a�h>��)u�lC�.o���9�H��
Z�<."�����Q�!��:�gĹ��-MJ�.!b�B��%�&��)�*&/���r��\e J��b����nZ*��+	�6�x���{`���cg���(�=V�F;�7?i��)�ܒ���E�)���n��S�'`��/fZ�(@m`��rf*�0R���⾬�U��l"z�`.
e�L�@��g�L�E�<���[c�9��z6��))9����&�ʡ�*qc�ul%6"k$�dl|V�\E�@�A�B}�$d����f�x�6᭘�b�� ��PC�vY�:�p�*� �>!�=�*oڳ s�5���������.�1�D!�1v�֎<B�<V?Q��z�Mcb���I���5+�����DP/ST����7?򱡔 ���WR��/|�[0|�{���m���p���@�L����**C����k9g�+jMeb!F�Q��s^l!ѷ�#����Q�^�
�ؘ���k\F�a��+���	Dy!ô�$k�y�Q{��Jl6?톍�{����*C̜�8!X�q,�18����6lY�R�Nten:���8����g����ā���S��ݜ�<��
ӵU<�{���i����*�~�C��_�OD��Z��j	�w��s��w�c�
�k��:����͛O�*���}9��{(�
�X�84v^�J��h��m��KkQY���,~*S��������D��F%8��剣�D��n�<
&��1��^�H���h���ơ^�x����+��?�ᲀ恼C$�YJ��ՓX����`�SЗa���k�Ң�Be��qYS`���8x��1�ع�3�71eU��$j���*�8�	��ĺ)Itq`�s-��6%���P2��k��/�L�O!���C;iz�Qb\9�9B�O��|B���Ѹ^(�(�"���eE��W�gI%!�j����	�"L�>&i�P����I�/�1R�f��)��X�b%yw�����Gz`�8��o��a��	zC�s>�mxoDBd�8�(Bz��ۢ� ���iX��e�`���59z�̓������B�yŊ0T�n.6e��S�(��(3���m'���v.+T�R�a1�!���xt�^��i�K0����t|�^�}feȈ�n��rc��=X�2����OD~�a��:dEV�d�q�u�	��
�md�lc�7� �Y&�Ճ�k`�����=�.���]X$��-�%`�Q�p�0w^��.^B��5�[f���pނ�"��i	��B��2��.Q,]�:Y-ɗA�WD(�A�8
vj�x);{|0�f%��:j
9�Ae�jȂrǕU�l١�=�iqw%�X\@�DZ,W�3?�D@�D�k����E�1{��*���`��!�{�ۃ��O�"��Eh� M&��C%9T��SKG�%�j���^x��;5�cў�،�p �Bp�J0|$�Z�3j�3�r��:��{�ͬ���Coy��8��`���������4��ɚ�z��r���J��wA�	8�j5�IG�[���і����g�.�g�{-�G�LJ�*����dx�c��EʯA[���c�c�& ���ըS�U�N��.+�{	��QX�Df�1�!H�܏�{��7d{3)n9�j'�Jk=5k0p�ڷK��w���Nv�`���5B�F_g�r-���
��e�g%�������M?w��]�y����ϗ�W4�1_����ul��Fbk<a�3��S�f;D]0"(A�c܇���3�كut֖�e���`|��jw ��y���p��IZH�r�~�P�"�c4�/X���	��#U�x�������o��ؼP��Uڄ;�xA�b�h+�l��������\�����CdT�"#�17�aP��QG�����ͮZ�Z:h�8��X��߰��U�8-OP����4/߮%��P(4c1+A�eY��1Di!�۞̄�
&*8����5BS}Jl/�Q>Q��	ayD��`��Q-j���_�a��@��+_K��1D�(M�2�G�T	���"s���9�*�y�AK�J�fQ%�F�@E�p��I�)I;��쑢!�0\�r^��7���)j�NAe�C�_}�4�����^�������ཷ�W�
TlHfV���
�L��h��*_��Q�t��?��B��tW6<@J&>v*V�ȝlI��#K�2��t�R!�\h�JK�E�G��(C�
�*��V9�g���7�.nG"�F���UK�蠙���u'����j��� ^����PsM���^A%Ȱ
��2[����t&��n�K�盨��T�}����:��٪L�H�D��������=",�ْ��Ph�E�RC�~��9n����j�+���>ZW��"�".�8e�K��D��%<�����<�H�9�Ln^�󨼟"\!������B�	�DeE�j�У�aD���)�ê�C-��8����-e�
T�S�r��*8|�%@/�����(��^<.��i��N���iZ�����o�ny>\x��0}�c�ZͲ�{r(q��]ߠ�b��߮gc�T���l���'|czǩCy��<L1 c�a^��(JN��Y�
៧&�dyy0%��n�"4�1���k�f%������x�A(�fI���Ȋj�Qͫ���C0�!XZ���b�f
W�[�ب56��7m����S����^mt#���^��'����ѝ�/tn��u�6�����<����XLQ��|���q�0���ߠ<����O��7Olul�)�82���ݵ���`p����A(ގ�� �4��@�l�}�Z�R,_]���
+d�zS�	��d�
]h��j:�ήD�v8l���s�՛��g�!��{+B�̆&�ڃ�M���9M<�Fa|�/`�1�3:�@B�ɴ&8����1�7ddt�r䎵au(���
<��ϥՂ�&3Ui��[�r
�Yt��{OB��AF��\K��>�GP��t��cDZ�d��){��_
���ҵja�G��KH��w;�ČK`��x���r0�ғv�ߟ E����Kh2��A͋a��J�1*��0B��PTT�;��V�����sbq��Q���p��(��Q��2᳓��=<H����<c����A��Ju�QN�d1g�I^~���I�F|�CV忆�Z�J�H���TGO��`�.�<I����J�˵���e)rh��E�����Y~n�)))�*=H��(�^3d��+�MiV�p�dU�2�A�t��###�֘��p�g�����A��1�c
*f"{�#�L��~�I�d�^ �1�W`��Z(�KY�WԅF�]�;P"AT`��(+[j�WH���Ƃ«Z0͖�2[f�QP1	�O�g4���S�+=����b����X�	��zID���4��	�b<N!05�35覎��Yb�*d�a���UB��fWN%l�q�M�]�K=�&/I�kQ�D�d>���H}j�<��a0�¨����S����K
����̷��t0j���P_֗r�@0k)#�
��2FE*X���q1��|'�[-��=G����'��zcVmQ!/@�s�8˸�g\�)�9������	G<��p�m��� k����k����
��LE���a�kѭ�Mhxp�f�k%6ޱ몌����!��
A*9yF��B�Jht$�~���3�{�p���*yŽu�^^\�)�!XΣ�y�rO
�eߧ.��A��M��T��-v�0�>�6VV\k�?i�X�tw4#���X<�*���>ĂC�I)ۉ-X�G�0�����=;X��Q(���c��,Z�TT4��P��)��1?��Vh<��VsZ�rNC�piw����z�ܪ��1��['w�k�䟐!�._pm�Y�%!�'|����|��	�:�x��A�FU�u7��Ю[hàA�u#�r㿏SX�I�]��;o̟?_�ӆvN��z�E�{-oљy��h�c�顬_�7�Ӕ�`d�jQc���c[�B��H&���.k�M@�ck��_pko��:�b�:����p���M��h��/
�WOP�a^�#�h�$D�3�̘�=P���)f��0f��8naJ�Ttm��Hx��1�TT|M-�L6�:.q��j	!d!�"�g^�P�b�G�*�L��W�M�{d�7�=�G�9�
���|&�
��|��ic��ă�c��B�դ�1{`P��KŰ�o��f4A�j��'(�i�CH��t�<E���z��@�nT��E΀�Y��y�9s��6�����0}+-�7����#�GŁ.X�>{��1�GI����Ƃ2�11�D.�KB	��y	�EQ�v�:)^���=��v5BL(ޮ'�lA���r@�:,��_�qg%|D�P�pN�ͅ*w�z#�
��X�f�_�� <�q�ARs�*�����p9-�2�<5����=~9r��%�}�n�`
o�Ǻ�Y��Fb��H���MiH�����Ah?�K�Ǜr�W���̘�E�`�+���6y�hCB+T�Q¡����g�l�-�5��ʉ1��ϣ|�h�����Q𙆠"�JM�����v$X�A��X��M�Q3��-=�Q!�Nx�T!k�x���*fKC8����'���Y���F.�c#V��*,'ưE�Q0R[���챠3�2΁�2L	�VM��'U��;���D4Q�d��R�L�"u����M�8��l��̘h�]�߁�s��r��)׉�ٲ�5Ѩ��\�K�a�v˗�x��s>�q8���o��V�mכ^ �o�5յh�b��8O4"q�[�5�'�P�h,^A4N���{��w9L��8�]�6�]�/�_���0p���U�kv�ٛuE��x6���hb�[����H�ט'l
9��� �7)X��i�q`��n���r�xK�኎����*!�J��|gJ��?�;y�P�����p�A�0�^���!@S�^�ZP��g�q𿥴l53��W��w^�ۜ����*���0t�W���F~ �~(t�;�u}��)W���;�}6�pC�O���	�Z"܀��sI ��n)<����m�&������
�зJ��r����v2j�2�>�a@�[�w(cJ��ǫ�Gw�:�
��J�hp��,�Cp���Ѭ"c�JBی�z���r�#��Ǒ�1�`���}��6U�&� 
<��,�-�s^9���jS����Ar�8�Qf�5*�tD�3�AίC^!�#��=����K�6g�@�f��h����>'$"��3L���h=����	N^���=��<w.�=У*�Xo�z�X���&�L}5��Y��(l@:>6'��>
��C8�^��|�^�\����8�0�C~s"r�xo��ay��>�3�c�����Z%�)�q"}'YO�T.�5����7*R�Yāxq"��g�L�.1vM�Xp�KZ2�h�?�ɿ�m�>�	/Ĭ҃ڲ���5�X���]G��uP�S�P�3ݙ�����a��Q��Y�QU�Ph�PE`�71�֋&��"��e���P�F�v������G�GD�����iuh�<y���D4B��ш��]���2[f��r!"}b�JND\��H��Ԩ��F�b!�+�xE�b%��A]R:�t�����SSrw������9Y��А�UU����#&�����
@=����T�f���*�ΉVw��:JtD� � +*<s���px/b�Bvϯ,�g�0K�>a��COȹM���gm��2S@�F���]y��Q�&�g��-����hZ��M���K���� o���
�,zr|�_�ש,�܅W�a��]T�t�7��
���tS0�i*J��F�+�����9���l�<�Ꮐ#>�<�P8�a��v��x����8��&��xtʵ����Ŀ�.ڵh���
��Sy��'�#9��\kV)�/��
�CW���D�PI<�<���%�c"c������a�
�'[�^I�b٦���_�-^����þ��ʉ4�:��6�dxˋ_�<�A�\]!�U<��q���<nŰ���{SR��R.�i?���Q>���~{��c����l��� 	>��`�v(��ھ�
o��Ӝ̴���4x�q���Upl��p"���Ϡ߻�#���ʠu�����?ڐ�l'��;R���v�3ςm��
6�`C�{�0�uk7�`EW{�t<�(��Tl��9�",�X��@Ͽz҉I`�ۍ6��ΛK^��9�(]+����{f�e��6��a�M6-�����[Kt���w��`���d�Qh_
�X�_�T�B������&&���>~�}�����7ś�l���^��ጩ &��;��NP�_���41��O��*¢����˗��ុ�{���˖.e��ퟁCY#*h�e�V�����W�P�W/^��
��Y�χ�L[�&�S���&~��u���	�dm��q6ӴN�;.��Q��
�����%���`:��s�Bb�s�����zvh����_�#,`CM�eO , ����9����~=IJT�`�q��LϢ��s��߁uc�+lkd�=P��	M^�Q���0�_���ױ�N\�&)3���H�Sgo�9�!���`!���7>�������ö� �<��BtԼ9oM	���j�T*��Uy.dv��g��J��3�s�5x,�mظ\����t�ļH�O����G�8�Aɱj����E�@i#ѦK�URB�}vMс��+5�
���H�rf�B&�8�9�G�:O�\�AW����s�]�	v �R�L*:�h+��<��/�g�l�-�e��H����0���H����KƊ��h!��9��gD܉���$b(7cWV�u	t���\R�7�+�%M#fY9,9XOl�U��ID1~J�=�*B�L�B!�^1$WaZ�8�cBƅ�M�o�yFOfԄt���ĩeᢈk��|�!E��]�d����>��g�C1�<>UR�҈�oAes�[�u3�A3d�(~
��`��m��q�,�h��BW����|���7��+��|�-o��^�*�t�9���"Q��.
Eht�c=�:�8L]�]q���i�ӿ�	a�c��-ȹ���gs<~�!�/����p��pɵ�A�V �q?��1h��K��kqby��Ң��a���ɏ~4|��/㣤wh��YY녈YXʶ���p��w����'+�����Myl�ht�=rkV�CxM�$����t�����}`��v�/~��<�PΕ�+HN�جS�%
�P�bOՅ€uo|O�ڿ�s3,�2$������������!���\?)IP����YY��Y��A����"o���!	M`����	[a���n�!|��o��n��[�6I�
Y����$�^έAr�я����]w-)?掏
��Ə~3*�F�s�]�;�&�}��6�PH%<�� ��ko�ʹ�)���h(_(66��F]��,jD����΅=w��Ιo�!<�ȣ�����?�h8��߄{��ڵ�	��4qn�������q�=�]��N=�D��7��1�]�!�.�j��E�����f����=Xo�8�����S��-^ġ�輂��QJH�K����>���ޛ<Vr�Yi�G�JJ���˰޼yp�c?�����"�f�g^��c��<|d���g�Ҕf(d_(qt�ތ��E���>`m��y���@�[��L���x����8���_o�I�&��aj�Ό���ˌ�YC�GI��(��Y��>o
�żHaNx��>�U�+�k����7�C���l�6[�2��:T�N�I�?2g��oP&0��iT�]T�sW���&�Ǐ�(����=p�.]B�G�c�7�G��(�)J%�8��B:�_�:Q�ևJLb�$��B�˜(&�;���i������
RDL�C%*M�*BV�\E���/��?��H'�EGL
�H�����WO���q���	�+������ѷ����bвb!�m!�Y>�%�;��V?�uJ=�<)���2�}�rSMJXEuV���a��D��uԋ1l�3桂��ʧ"+W���y�X_$��Lq2�hq��NbN���AX\��]F�ԙZ���i��'�j��dEN+b��c���Q�Y`9[f�l��d�W�\��h�P�V{����KXB�0,:o
�%�$1Y�\ռ`����Լ�Q+]J�.12����wU�"��h���L�0:>F�B�$Z0��	R򰒆��BN�&L^m�
�+�0��-�<�Y>
�<9��
�Y�[��m>~5'}e_���BF����ñ��J��0��āP���!��CF=ih�U ���Pb�h�T����Ǎ4�&&�`d�D�c0�ïL͸��*�����apg��/&%zf���χ��1I���/%��}oQSW+]�P��I���4ŏ�&�)�Pt��$�h�+��@%e)�k'F�B!y�ѥ�M/���ÿ����؜�$�t�M`�ͷ�ʐ9��a��9�ǎ;%��|��k�{�l�-ܞ��Y_���K�����\��O�U�1�w��;�D{��뮃�K��F�/�m6����R:���o_u�����ۤ~�|��p��א����|${đ��/�?\~yb�V�f�}w��o!\s�M�<1M���H��u��$�\�������tS�c�I���ױ��K�����&&�ϗ_
w/�O�W��im��q�M7�-w�I���ۘ5�N�e�_w�s���in7���ݙ�L�ҿ{%��oץ�{��7�ʥz�k/�x��p��Õ7\�}�y?�ci�W^}R\]F�Z�Z�{W��\��c���Eg���xp�/Ls�,�n���&�o�)�߹*��ǀ�k~la?/O��|�p�>���T��.�����o�]ᶴv�~;�a���a��7O�ܖ���$�G6�8x�=aeZ3�7�c��&a3 �2���I�y����^~=�e������Ò��iF6Ju���:pޛ���0O�0��zi,�w_�7�v�v�-ս��;�mw���P�j�6"xd�/N��w�.��{���b���[�o4x��vۑ�����E��I1P�'	hw�zkR��c#���0���1�cz��{^�Jx�ӹ�=)9�H�O:oW�=���Σ����s���v/P������[�O(@���2XO뀰zϝv���(��{;��q@��k�^���k���qL���	7����n��f�Y�/�z���I�ߋ��nJ������箤��.Ku�M�����p�z�6:o�`�s��N��Fi]z�	�l��"ڧ�}O��/�s�QR,m��peڏhՉ}y�n{�=�K���`F���O��y��NH�g����.��2�0)�.��
2��`�ni��J�\�by���?l��ȭ	~]v�Un~�"<����/Y6Igi�-[��x��=��	�� (�g;�L�z���t��Jg��O~�c����m��^�n�%\��x�4�թ�W'��ڡ��W����f!yT%�
���Z�=��S�9���פ���tο���
i��B#��w��K�a�Mi\H+��n�`⊕+��߅�ӟӸTʡ�����9����)�u��{�sZ��p�̕/[��ۦ�� �	�~����G�.����a�t��k�����[?���J�xw�q��nM�v%�'�=L�[������y�We�LDe��i,xa&V�–m�܂��Ҵf����xq��`�y�%W]��w�~< ��-i�v�f[��E�u�ni�wMJ������� )5�IZK�?(�����{�yX��|�!���%L*h��hY������oLx
��=TQ����I�%�b�44
;^*�=]�Ú����=׼�nz������Q�lMRd�`׈[���/�~�
IT��9^���Q���96�ϡ�3˥��:�#-�b�4�Q	:A"VPbf�0����Gz�P�Ԍ;��Hn�*��FX�A
K~�!R"�B�g���н�yg�&�Ҝ�#�=$�z"��L}��S�kX���JEE�������dԫ�����PT!h����� ��|N���E���)_�ׂ-�<��U�H^ 	'��	�&!ea��0�}�0��h4&�X؞�t�^�K�	���Ӟ�
O�1��~��b�"��
�4"S0��[(7���x��C�<hpz�`�۾�`{�.7�a��?����Io�gE�.I�eÖZQ|�f�U�SI<.� �J��UQ]%J!���1/�-+����NM��;����@�Ň����e�̖��-���h��j���E�a(�@"KR\\
�%a��D�̺���'�AF`9��@��"(���	f�m%�)���S)3��������G+��($���\%
��<"�ݖb�R������>z	��n[�Q��3��#^鿾\K�J�9�b�v�K�d�֠`�%�^���,T�b9��!��?v$3�֒��.a8=� �h�C���)>���Fd�f�[��Df&j%q{d�1=Z��o6O���Af�ݢ��~y�T��ӕC��r��%�/�M�`I�u�(:��G�n�����-��v]c�	kg��|n��-����*”�ŐZ���YI��,�u/�|�<��j�*d�d���*R�v.���_>#ȼ<��\��&��DblP0���0	�����W�����?�
%�mR@<�Q��[���?_z�3��#'A���pR~l��p��l��ȗ� G��J�מ~F��B�q�$��!	Ҟs����$�~�A���8���
'=��pڱǑ��I�x$l���(X;��O$�.
�P�����x���0��D��?%��vIX���^��;l��OI�=t���a�o�$=�G�}K'�͞���$�!{��ᨴW��s�ͅJ���+O����?�1���V�5Iys�c/}�3H���6�iO<&��	����T��`��iI��ć�\�	G
K���g>�)i^�LB�ypJ���7LcXDTJ=d��^?:	�ǒ��>R����'�bḇIsuY��HE��(}�g�IȆ�C%���^�QP��؇>�樜zV��ӏ?���$�>����8��oP	��TǏ�;R����_K�6\oA��!��^I����cC��7�@��ם~:)GM�
��W�3<�����%��+�0x���Sa�4�'����������?3���.�$ձY�O��|�"�ѩT���CB�TN9+���y�Y4����Ɔ�G��_�:�'	����?�	$��8)q��s��IH�k��4�_���9?5	�O;�$l_��ƈ�<
��=�(x�3�I�˓�`��_G�}����,-OLg	��(�EA�W��y�}���@uUbз�d�t^Jg�2R����υ3��d�.��k����>n��RJ��WIh�J�7��EI@}\�H����|88��ǧ=���M��=�y
��K��aE�g��կ�9>x�}�)�<��ߧy������_�2Z맧9@���i/qȃ��q:��?���k��H���/�p	��:�4�i�m��SO�c�(:�/J���I���?8"��I@~�	O�#Sݛo�1<�qOH
�;�Eq�zi��������ɏ}<�ħ����m���_
_��7h_<x���>-��wIq�7��%OB��yT���_����?~���I1���
'X��';o�CR��A
��N;��O��=�c?!�����W$$RA�ӸN=�DR<;�����}�C���r�g���z�aI�z�>�Ի�C�C>=#�	��O�K��U�{�9{����=q�w�O9���\E�Ω�/=�YI��-)��Ig��/����{^�Z�5	���>x����Ci�>9��)�I���?!��8)���>�L��jV��S��M�:���NT�>>��k����hؙKOI�q�M7&����Oz�c`~�㧤u���D<�w�̣b�a��;��.�3�'������Á{�
g>��?�?��zlR��r��pO�Ӟ�D��3pS�7/?�9�,��+�|�~�s�Ku�����	��7���'%»^���{���ۥ�:!��{h]������q��y�#������f�p�����W��`�#����������_	Ic�f�-�ǝ��E����7�5]?6�t󴯮���z�q���|υg?������.i��'�����N���S���`���6�B�̙�<�s�O`���-�A)f���FC���;�b����G��`G�z��v�gz�&��4az,��ڳ
r�A��c�E�G��X�t�ۼ�xf��0�OUϔ�*ݯ�T��z��Qނ>�w���L�$�a��@f�t6��t-�v}G3�
F^,f�K�A�"d~���%6�wu�l�k����ː�&k۪`Э��PY3���>X4���*���C~����.�[��իV��OÛ�wb�p����*�:��
�t��E8��*4�m^���lp/��bx=��!�=)�jR#|A~E�1F}���Qxz��&��}��II|>.I�U^�$+]��9L�cT��F�
��rQ�}9#c�/cX0�s�Sy��tѯV�B|�dJ/��7�Ҩʔ���`r�`��q��T�sn��B���@�c
�WC~E��kdž�]���
M�&Kp�1!��g˙��ʈ�����^���҄�Q��KGcv��.�F�r
��V
:)"
��
���ѣ9�D�%~3�B��"jw4����_�5�!�e�̖ٲ.K_,eTM�E>{"Ь	���>�H�G*�e%f*9E��?;4h�l o
��
TU(��U� ��
�)Ԗ@^X��u��Ȍbi:��*]����&��7gPY�;�X�!��0PQ�$�y�h�)ȡ\�2��D�ׂ�':�L��U��+!� ]L��;�O���?�#d#�4�Y�׽���S���ŮE�ra�_0���t-��?��$��
NN���;_�*�y�]��
Z]6�A��2�����*���VJ�{�Kp��.�5�}�����V�G�1�(P�0q	|��ϓ�*Ny���3�iI�a_��%A��
>9	�>��_"������ 
��{ի�0���o|��p��/��7ژ��Z�Ɯ��o��G	Μ�������%i��>�/�����AsS��e8��׿FV��KB&��/��	�?�����uI ��?�>��o�P�/y	�Xh-�¿���H)�c83	������7ó�P��$`�i�N����q�E��|�`筷�|���I��^{&e�����4y�Ï�Ӓ��
�IL��K��Y��ߒ�#��_<��x�K{�d�$�~�>��?��p}Rz�p�#���$\>")8>������oR�σ�3��I�� )�?��4�ON���}6�:�������'���?�R�gV�?6)��{�|��wI���2�*�^�����$|�IOOs��$�!�ᇿ�%�yo|��h����'��F�7�	��i'�%�#2���W��sυS���w��oy3\���9�xTj��ԧ'=�I�s3��_�|���G�#��_����;�񏧽��O|��擟{'!�D�|bnY���&��ϒ�bSx�^D�&��}�Փ�uo|#,OJ�g�6vNBDT� �}�'?���VxdF������C6χ��p��Aʜ����Iؼ#)���L�i�ON
!��$�<9	b?���y��=<d���^��r�b.��/L{�ӟ"���%e֏�F�:��|����~!=�Ӥ��mZc|�T�����?�9Zd�Q)F�9�]T,=!	}���·~��/��'��-)O��+��?%�h(0F��?|�0o����J��t|�[_�/���t��p��s���•$R 8z����X�O�&E�G�bz�$�=������g����I��wI���{/�K
�?%e����ϰ�ۧ�������Ï��̡?��X7* >��II��������#$�֑�{(h��'%�'�;?K���~��Yρ��B�\�@B�#�q�gh�?��_$+�G�pR\�rC
�WZ�j�pL�&�ų_�jȣR㘴�Q��g�_����S	~m���{_�zxdR,�0�oTf��C��P����O~�+����[���w�+	�������絯�'8�����(�{Z��i��G�E��9$�!%&*�_���kl<��á	�/����d��?η��
��IG/
T�`N�˯���%����G0�[>�~:�o=�ep@�������<>&)~���
��/��>���6Ix礤d�fګ��gI��)�9������	�aUP)���p��@u�b�_�")֛�}�=��^��m~?���|K0�s��ҳ���nx��ސ��𝟞Gk�����}��{VR�o���轥���&��'����NJ��7L
���B���X�t	<;�������.���ԧ�Wi��<?)������K/�C^x��.���n	7�M{��>�N�+�H�s[$��]�I�?�M	~/��>��IY�#ܞ�_x~:4)9���4�
�k��
3z�
Y����8��a��2��a�{iD�pH�!!���E��$�N��jT<��"hH�Z���#�?�$p��8Ӱ�"�EO0bC�[l�~K���꾆��c��wg$�}O�m�s�y?��s�3���c�#���([���M���
�*
ث��~ nP�;���I|
�&$�6+X�b�xW���$�PS��1D�;�GT���1���C%����D�����O�2G�0�IUi+n�q�����<C@^87(�@��X���C�׈�pߏs�&�SO��F����Q��N�{Y9|Ǔ�⤈t?�_t+�ۜH\ډ��;R�'�KҀ��[�+�k�Iڲ�C�MZ�@�aiتh��ZlXO�~�΂��|�];������̸Y�y��+��<(��F˜Y�U�L�eB���Q�!�j��`���M���:C)4uy�Jɒ��`�e�̖��.^''���PKx��=��
)bM}r	�(<�O������Э���̮�H$�#����?&Uw0Ae_�V�!'��x��Ȼ6wUJ��Bya@�S��b��:{urUe	v
��N�/��I�hDeP���7��Ś`X}M���'
X����̋*%�>+������E�{iRm��{K��SBEm2���F�>��R���x��`�ɿ��4i��X����jV25=���Xޟ�C]�j]�c��w��
&E?���Í���z��-\���#���{?��5�}(Wt��R��4��Ĩ��i���r3y-�O�,�&�yB+`ܣ�7\t�Up�"+t���c�ph\��bH�mxC��
郡y��}|(8]�m(�+�����y�(�*"�g\'$!�֛n����`�!���s���-)G����7�^;����kHh�d�rz��#k0��ћd�$4E�<�-�pN�._F�.��°�	^c���n��B?!8?)
^��	�kt��1	$���;�H�'�)Z�W���Q/��
$�L@�{�$Aک��'�����_�z�}�:8�F�A]uӍ4'fC[����W^Io�MB>��Q�q�'��Q��?nHJ�l�x{�N�&�'\[�on$.\��B��4.�a�$�"Z�_r���֋�Is��p�ZvN?Y�^8�
�`q{Y�6G�)�]w�+�����W�9���c�l�����H1���`(�T�ق�'e�i��җR�����u�
�;�@�v�=,���WX0t��]Nӷ�y&ye쑔�cd�;�;��.Ls}�}�Һ���Oz<5	t�_���er^R`�9)�6�hC
k�o��,	ֻ�w��zwR�?��H�bT"~?)���U0�((����N��K_����wp~P�spR���:*����♝���u�O�\E�-ϱ`�������#{(%	�f�-`����I�gn�+���~�C�2�r�_u䡇���^�b:�(����w,��Oo.O�ᦞq�qpЃ�I���)L[*3=�qQus�',W]Y�C���o�'~���')2��-���*(8���z�S�[?��������ɰt�m���|]�o���V��:	���c�%؄
����BA<��T���N0��I����>���'�~�3B���z���on:s6�I�{��t���O�b��˯���]e��[��)�o܃�M�關�,2h��}����H�
��@���g���8'�b����1ݖ�ų�T���>��*z�-H��j	�yu/<4)KЋ�>�+��86�(E��{I������~�����W?ba�bH{�J8!)����S���]��^~�u�6~�{�%������M���g�=���.&��4��^^�x)y!a�.���W�~��?���\�p0�q���o};�!�$�q��W��F�sQ�It�vȦ��s��D '�+߬�w�P��I�P����Li����)�^
"+��}�>�u��Q=�**�Q ���Q`D��C*T�Ī����#��o�NFHA�4���	�L�Dh:�3��<h�kE۶�
.q�_0`�+,�|��l��#��"sd�H����}6l�Ѡ
�E+~.ᒉ	V\�BD�W=<�$�+",Ot$���M��ӣ��������<�3(�i�=1!�IHBJ���"4Ѹ��>N���:>w��[-��������+nz���0���P�ԇQ_m���p��!�0�-%x�z�(d�󃒡�-�wԭ,���b�hM!�`YV�
QC_8e�����qh�Xn�(m�+"��%l(��A�}�����V�qi(`x6B�w����D%�IHHVx��(�bqŠ2�y~�:�\�,� ^ �0 ��Y8Y��@s��g�/$<y�!:����4!
)Eh`U`�~��g���$��DTH�yM9\A����YTۛ-٦/=��-�w
#�QX�R�gb�TN�����X���V
ؖ�L$��-ؾ��QRO�&�Ɛ3#�b�tLMHV l4
ф�><�"�	dE��d��j���$Cs�Mv�(�r̍�D�z��gw�uz����X�Y��j�4���>�+��4w:c����)�q�*���@��lL2�<�f<��[�%(�6��f�Y�P(RL��yLty��R܃���j�W�>��0���
����W��?�k~������ȓ��a���e�$D�Z�q(#���g���;�q`{ֆ~-J,E�:!GkK��N��o��\�=�I03)�Y�Y��Pe%����2d��*�,ύ� s�*�r�m��S����0�Q�V�{l�#��9����~�Y�r�Zv�'Z\��<���X=���[]�;��Xy�����H�B��ss�OJ��|��J5
ǧ�Ib���_��r��F#��4^��n��3�x�ٟw+
�~��0�Y������
ۚ��<�P��H�71{������^u���yϙ���P�0�2�@�Ϫpsx\"ᖾ���(ƣ�@|�<�e��i-�V7�#8�<J>��/3N9D��=-��S���~{�~��^�Jx����O'c���Ȏ=�(xߧ?M�?�dN�P�Ԋ���d��;-����ߠPe��̷��Bm=�#�#�}�����x��~�Ac�8^�
�<�`�
���I����G���$|�dž���B��O�$��e%��`�g�z��?>��I�|5��G�H��UpO�������)��[���o����K�X;��U���.cϽ�+W����?䙆91^r����}ޏ��/}�p{w�:�OXH�!������6	�?����y�3N�A6���}��O�k8�I'�S�py�p�*�q�C�U�i�G��Xi��p�i�kn�))Ɩ��㻸�~{�E�׿�J��G=&)����-Y�"�Ce-�wU�����1�yw	�ߛ�J/�����hB(�W���=��.J�yد}CA�ǿ�߰Ŧ����K�q2|��?"o#
ń�C��(�[�>d؄5�GJO��D+�{M�%}�OV�bٌ�aI��RiC���+�����k���ч?�<q�7*�yh5�v‰����>K�7�&ZF�L�Djoي�4ߘ(oMR��'�:Q�]iCp�y	�u�~�ߟ���Q����7����_ᒫ��7��_a���zx��x��>x3��K݈�����Ѩ��
%����f�xZ�Ӵ�_!���z��Z��C�4KE#T��\	%��d�٪�����R>ȹ!�x������OF��2ߓ���@Y����C�{$P(�q�
u� �~�b�W�C���*�
W��e@��A�:
OUK���;U���c���h�IVJT�^Ag��Fde*pM�#}�{�Ch�pY[C��WsH,Rv�B�rj�s�<5��V�x
SN:ާk���g�F�m�!��y=j����k���7T��@� #���C�bX�9�浜�\I�=>�
��g����T�Q�|;�:���a�83x���B$i�Y,P�=�YC�?dF�[RyR�k䇳�E�
��y&h����NT�C������a�jf����A���
��L��V<)t^��@����M؟}R^`�,k�bRV�7&�Y�d�P�"�{�-�Z7�2��%��*�����0NB���.��q�4[�h�<$�"%��
�X���� �1N/�7�g��_��y�x������M7�`�J�I$<@���$�Sk%��I���H�!��ժ-
4a%��U�#>)�6�&84�#Hr3bbk&B]^�ˋ�;�
�-��N
+��!­*�!d���F&�Y��q!<|���dJBIسr��w4l� ���=�b܊Я����¡F%N���g�c�r2��־c���h��!���]S��1�~^�o0�x�À2��U'�;(�;�b�tۭp‹΄�>�
W5UAo�zի��f��
� (�*��cj�H���k���b��MQ�0�l�Il�得}P����Q��%˗��sn,�����vr�(��8��@a�ӓ��g���d��
�C�@j��6�Չ�@��<����m-NB�ל~%�]�j��I�tz\}5~�d�����{����":_f0Yo���E��|��=XN�Sȓc�{�#�_��y+&V��F��	 \c��u'	z1��EW]I!�0��փ�����?���8�я!/��K��D������	X��{�
���� ��E~��L(���&�`�S�x���u4)\�wޙ�c+n]�hBQ-�/����h}��:_���}v݅m�r���&e����<���T~��|sX��w�s/��d5]��X��߁I��E���ɛ���"�8���>l���09���(��9t�Q^
\ۻ�[H��F������C��|�[��x��?0�7��x�IOM��z��oK��o{l��:z�,LJA���U8&���z���Q"�Fi�x��x�'>As��3� /zg�e��/~y�[(���Bŷ��4�z������yxRP]�M$��|H_�!)��t
������?\�?�.�]�(��|��^3��|��~���0�LX���NNJ�s�?�>ችw�����m"�CE
�%�(X����)��(�-Y��[E�$�H
��'�����I��a�0:��~�m0��i�1ByF�N�^���_O?���|�����+���L�'X���i/ah�����;���(�3�+���0�8*9Fyi�5/	���`!zk����H��羀�a�< ,�<#8V_0��]���O��[lA�6X�?�c`�w�K�X
�~ ��.��~��C����rQZ��?�8J��^�'��s����oӀWb�������s�|�?#�_l�	v�z��pȃ�&����v�n[8�g�U�9�`��ӹٜ���t&>�<�#Q�*,�%��*����-��;l��p����ކ�eQd�:�T�����[��{_�zR� ���.� ��;nO��C(T��믅g'<��$�)��}����f�^���tÜ0�Hg�4�r�����>;`�ė������~i�b{Nz���]��1�G{�;<4�U���,�R� ���6��k�X��
���Є���v
�^�����@��V,w�u��
���G��=9b��
�t#@��*��l���v
�K�}uRh�'I�a�}��"ǂ�m�9�%͖}����!O������ݯ2#�#��r�w��o�lhÿE"�����!��R�P`��$�0>�J�P�lT��Y�_MtfOp�Q�����
=<&8�V���G��k�F�8��!�ԅ室^l�G���k��ѾO0�"U�
"�H1v1��O�z���~��]�hx/�Lj1
�m��}b���ͩ�� �Q��۟�[7��*�W�����B�<�U׬o*����>��G]��</T��%�7��(����;�ܮ�jP)���3�C�,$s0��n#Q�,=z9��m2�ZV\`�55����`-+ �2�R��A���$M���x��U�O��2�<s,�j�D�F5�Qw��`mg�r�]������[AX{�9[ְ 3���M7��Re����XF@�ҠE&�7o.̖�^�%1�[$�kĴ�oAtOP ��~�-g�.Ɖ�Qq�H�_�6B��GDhVn*�B"'5�Ud'7��hc!AV��
��_[A٢6[���M�/µ��7�]�E��	t�,n��DV�H0�4�!z�h���W�0>8zm���57JA]Aɮ�l�c�Q�15�J�B�l
��ܑ��z�Kp-���wE��h�r>�lA�]���-*�؞O?c��~d�a����+1ۜ�a���*t���@�^q���3eW���� u@�z�_K7�v��mo�0Wӕ�|
���9��[H�n���9��C]Ox�ԩ{�?��ѐ�0��������1����X�����撹�[�>�t/cȞ�+��9ϥ
��X	���7)4Uш֮cR~��ߒ�����|
���0L
�P���g=nK�cT`�L�zI�b�N��&E
��'	��MB����/?�Yd�����"��iπ{����랅�Q�Fa�d�|��DvK��&j�3	�^��²��Ak�|�s$�'Ɛ<!V�"L�P��S����;I���$ C�w/u�~�DWS�*Lo���_��曽y�a���<���?>��/Q�'q8<!�!����}���X��?���`Ǥ�zkD�C�`Rr\������g�L�ϯ%!!&k�5T���ig�}����'���җ~{R^\|͵�grA�{��B����E��^�������?xNj_D�L0�z���%�q�M7�?��%/aA@�ӟ���pL���yU>��s(���?��Va�wl�HPQ��f������'<����X��_�:ܐ�Ч��
8����أs�yP~�?��.�^��Pbt���$��;�e��B��?�����E\|���&��J�֯�{n��O.�z� ��0G�KS�o���pQ�i�ʻ.�o����W�")I�F{�����W�
�y�S�ФP�y�%��I�w�����G�u,^~9|��߁7��,�ӑt��xη�[n)����(g��,��`�ٯ�{)u����9��?�0ʱ��{,�%a�����c�".�U'��׿�=x�ig��~U��X
��\�����Z��-�^s�Y���~�?+��kn���L8׿�S�W���,8W(�Ɛu��«�&�g���k�����l@�8^�M�a��Jk��Ï��7����麟�4	�oM{d1��Yφ�����T���k�x0��寤��$)J�z�����<�:�?���	�#�yV:/J
�O~�+֏+������ӟ��m!l�MJ�o���㡗���sVܒ�/=�4��i=����u^����)	����D��2�?���9���>���<,�7{�I�ʙ���lxuR} )ql�pϦ��I���I����.Nϣ��ߤ������:���a�����􇤀b����	��$��?��NR�2��4)9��}Ox�+^I�(
��a���dRn������O~2���sΡ�����G?��uo`A%�J�ZTB.HJ����ʹ��p�x�G�=�Ol���9:��}@ȟ\}��	J?s}]aj�'N��U�z-�Yi�phf1�jF�*"X��
��T����
��:ں��m��K=��l��m�XI��%�fT�"�����7:�	�W,O��#H�`8y���2�h�hd�T��38�ҚG͠��6C���)Qx��A�b��ƈ�ۛJ�d���8�ꡁ���R�a��4�<U�!��+w��I�IY&�P��r��&�	�G�O���Ыd�Dj�dD4!�^8�xa8���)�:�&����j�zֹ�<���g�V��}�Z��I2�P8���쨘j�e�P�Nv���X��E
��DF�`	ع��)*���ַ ���%�R���X��2�w
��.��I���Q�
�p�҂v3�>��U�B°(�B��4�Q�R����-�d�˞��*��V�����ɭ�z���Q�����/�>��`C"���k`��v�U~���T
X"����߸	�j�	�ty�u���w6�dc��ܕkll�M�v�ܿe*H�Ơ�XX9ŵ\����eW]{�S�g���?!>���?�8�'%�0H�M��K</�`	}�u�΃�)!R�R*�$��59ID	'5��84�S��d�I��d�T��3
��a�J�#�G�⹴\"�a_0~��0
p\(�ck�Q����h�Ƚ��|Jb4�'�Ϭ��a8"�XG~�.�g��Z;q����Z��̄��D1#zb]ۼ�'�#�
��aU*�<l�`K�L���X쭒��exN�F��ITẆ{�i��UL9����5��z1}G�\o�7���I�$�c��\�L�Ų_J���YZn������9|��L/��
Z�u�3)�x�?�"�w|�O8nNJ�f��XˁԸ\$�X��*��I��xnd �''%�>;*��2Y�&D(�=Ǭq�Z�*3�l��f�l�S;���!X�w��	��PHq��d�"��oV�6Z�>	M�r��.�D����M��'����I��	�T��k��Ph�s�9P���8�h5��dfw@¬M�߀�wg�8�!z3`^�K%&�ł�(�%8��$�F�a*��=c[�[b�
6��$XG���#;�c��Z�ƱGE�CA3���LЍ}_��|+��q����4/8�b��{(��pCI0�s�
���hÍi]Q�R?0���@\��7K���{��,�9G�K�_h�	|���zWRD�a�F����aN<��c�q\�8�o�RRѳ#=�D|���uA����K(�	�}�b�&_���&�iL6�p��y}����<z`�E:�CEz>L���$l����.�WP؏��w���^��{����5���i���X�J��|��Q`�Vy(��4)=p
���8�qa}(4&x/g��\kznj{�<�H��/{<�Mo����H��̕�J%�`�<�L�~�3�/@�(�`�V�k�<_���`�T�R󫠢�C����s���/Y�$�0��Z�zޛ�*�po� l����A�hT�a��up�����QΚMR��FxnQ��\��Hʷl������
v�n<?�,"%�/&_.J!��
\��v���D���po㜫�fLB��7���ߞ�6���=���,X��b�tm=:���gq��"h�nܟ�no��U���^r&	�Q���8_�-���F����b���F��{��4)��-_F�Z�&�9�
聂�W'�*J0���?���w�����d�N�2	P6�x����r띷���E�mBs�\6���h����q�q�g��`0ֵ��[&��1b�1n�m� �4FT.���si�a�9iζH�cX/�	���?ƒ�q�-��
q�v�N�vk�- �J��]w���}~QRV�9[���EB\���،�!�|�}q'�^�7�%\�EK�x,Fp�[l�YRnM\@X���#�u�3}Í7�~�\A��C��pw�4^
�����X���ې�9z=!\�NK��g�}�,�:cX���g�
\_�g�g�U��s�8e��*�%)+q?�C6"lG����N �Bez�PH�p/"�AO��Ǹ��l��7$�pG�g��1q=�e�Űv��y
C�w���̙R�Ză��"6��Ͽ��5�a7������fUZX�'p�����)nn�����pk�\�{~ݐvAx�9f� Z
��M�R����a�r΋F|�%�V�z�^�9�\� z	�w�`<8+�T�Q�q��<#b�y�?��$Y�$y$���GE)�p�FF�_�����CN�_��f; �O�|�,8OΌ���</���9	�؞�e
�
��+�^|�͸$"�&&X�ѯQ����AB�k8+�&2�~�������x
C�1����HBt�90A;&'��O!���Ւ�C��K��ļ\�?q\88'������ۺ@�8d=�\#8��O�������FB�}��5�e2̳ĵ�ݘۂܞ�/��`�@��],�x%�^wW0e���B�1s����y��C�΄��R%C,�wVn� ��c
��Q�b����-~�Ѧ"� �`��=}����) W\{�1�@s��e*�˖�L�z�0�)zo`�
$�P��01�H6ڀÞ`�L8* GFi���� �B
N�1�gg�[�R��}�Bb���F	�#s��f�_0A 2�o�>11Xn��n!����?w��,3���Ҟ{�B澸�k�J^����]�T�[�@��~���U* 䔁V,*���'�Ί����8[�h�!V��|�	"o�0"0}��v��K&xE��)��A�P�F�-@zH����R*@�F��p!������d$�O��D��XA��dJ��E��9V����#^R��)�\�p��G�@uv�&PC֢X!�H�ž���K�1h?4٠*s�om ���*��h�ӟN5�_�a ��)@���1G?�+�r�_@�^U����Q��f���_�d�0����@&�� ��	����
�S�T�x
8:&)�
�6�`}����fX�JL3@ e]e�OǦkJ���l�,�H��{�ICr'�A-'$�;Ra�/�fI��}TP�umuPB�>+6q�ѫ����0�E���E��7܀���"��^$PLB���=ST
9��3���)�C�}-JQY�*C؏urBy�g�l`�w�!%�'Jna�V���(�K�()Ã1+�~�}|6�5x���{!�RV�=��o�l)�0��<����%l�
?`���N$:�d�r �<L�l�֕�Q�>����?ML�\6&� �*��
�c�z1	Lq���",N��q��
����`_&%���V z!�����;*2�Ї����z�9)�׾�:pە������&�e�͂0����DX�^!/8�i���%�Rf;��>�����Jp��p:v[�Tرn
c���l�����g Ȃ�휛�L�1�0��a�Ͷ�����?����S�,�TO�>��	�/��2y���'=�	�����RV}����"'��&؏F$
�Pԣp������9�t.�yTjQ���>��הd��H��FIQ���}i�l����	_l��
�>*}�$a�
�$eѦ�
N%��X�w��-�b
s�$a��D�S(�?C��.���&/��Q��G�a��9��>��L{����;�g�����aͨ�Rj��lh�`2]֤���{Q[���Q�|T�w������B��8�[�,aj(�bƺa�C
z.��<����gA@㉶D����10
|/;}���Wk�l�Y֨}��,X�3�5������������Q�F
4��4AΏ�3��2�
v�76���B��i<��J�UQ�pj��{�9��*�HySI�,D3n��04�p��e�bǡ��pMXTAA�S��i\T��� ��|3�#ڪ��O�G�ʕ+$��Qk��l�wD���`�r��E��qu-�'�2�S
%=O�c(�Q�uqB3��8�h�Q,�������y���g.��JEy=gw���@(Z��!�W������JШ7��
�F���,��#r"s��̜.��im�Q֌�
T��Ҡ!�{������	�]����q�w��E	A9E�����`#ť��
.?��j!��{���XG����,֙-�k�랅p�ͷ��������;�Z������[o3�[n�ˮ����w/ܳxqg\���W.��j�"T�͍��"w���+���]|	T���R��;i����~-�
�z$�RI"`r�l�9I�N%7F�	�����Yr2���tW��ς .�$��'�����	!r,zAm����g���ǣ%�B"@d�, �dUe���N��`���&��]����P�m��غ�R[/2�:��K�G2�U�z��x��7�)�dp���F�]~GG�K$S�ߎQ��M��U�C�D�a8b^Ǫ}��g@���l�u��5+�Z1֠��`���<��� ���l��Z�2�`�uq�vgܷP0�x���U�Y��ym_�cbl�}�^�L�kA�{��}j�4bdm�
π�__�X8af'��*&&Y���~C,��/���Y�^���E`L
��4�	����uчJ�h�ONXLf���g8��(T-�����Vt�l��u_�Ln���3������ה��\���!�[x��s�.�g�m�J_K�=�lWh���z9a(�`g�����O�� 3'���D�V��(Μ~�ô�W��|������?^��X�҅\��1t��5�ƣw�{7|賟&�54�
8�S5�����BY�ׯUBW��J�s
[���R����
�!C���|/����.��ljDY�G�r
�|l�u�V�9�����[�)�P�5����7:�&?t՜a���!��;ͥRx�����Or?�ï��i'�Wr����Kl��ћ�mJ\�_GĐN�;Th�����G�l���<�E��Đ�h\�r%[�#�CA%�J��i4�Ht�X����A~�`�1B:G?QNj&4�<c�L?C>��ym��9��=���FH�^i�-ZHBs�����ǔ��Aq��M���
�	���
�ҭ��#�ZrzLО�hllԣgFѨH��4�ȸ(G*�|ѓ���"͋uV�K��K�t3)�#+Vȸ��|#j��i���4��7�q*q<�Q8I}ey��U�/T挐�B�]�6&}Bi�#I�yi�E��nD��u)�5N�K��C}�>�E����#�P�/}�`�'���5�� �:�W	��tR�6��MpV��Nɸ�G+�Vm�#�}d�!s0�J��(8B�� t���� Q'Z�ɰ~��� <�`�g9�l	C�浒Ӊ�
*]
����7]��[�٘�n���JZ^v��r�Ma�]w�MY��-1[��S��gE"���'"cE{�κ�/h�15���+<4$z~�'�%�u��Vr#��q�+Qf�0I�/)-��,�=c��wmUe�&����)-L�X��j���!Z�VMh�����z�$l �YP��`�{��j)M��m��h��U�Si�?_0u<��y`!"?��tF08*���q��HY��֜����>35��!0!Рe���7VI2�wkR8�,a��c��<J��'��m��O5+�v�c��W���ǧM���@�����g������r�A�l/_����W��=��-����%�tsIp$:�H��=Y���j��z���E�0Ejl��c�@(ϟ�5�RqR�6y�"�)<�E-���\3�~εQ�����]p�tr�?s*�+P��$N�2��-*2�DJRG��� �\����!)XQ�1��(S�b��#xY=OVK�U�#�֯���E���F��RC�a_ٻ0Z�ce-��aڽ]*�u�;f�qyZ,����WAQT�K���O~��~h$���{�Hde��s�Q����~]�UQ|���zJU���q� ZĵW�})�z�󋯺
.��
xT�X<(�S��oc�5(N�&�4[k?۱Y���0�W����	P�m�ڃ�
�Z����&��yM5&!����48�h�n�;`��qg�<o��۵2�(^�!vv�ٴ��؉c�,6K誻A
5�ѷ��A�>
Ѭ�\��?�ܷ��}���ts����R��Z�!��gO�Aƍ�J���-���o_��{�v��{��n�;�M��F%�_��m�V=��}[���h5-QB##�ї|5�L�|eB��{��R��k���=����������t��hRj�W��vԺ`��R�Y�W�w,����E0IJT� C��(%����ze��h����k��t��XW`ZJ�Rf��uH�&�Ѡ�M��C�/��
34�A%��e�!PT��%'9��+H&1ɑ�N���)h�����Ca��z7]�#!�5d7���wP)�Kuc.{7\tfc�4�4�	����7yG�H��#d�կI�cB$R�dx��	�cÚ�k�`�/��a�"�*�ȾA�Hu��~X�*B�G���M��������8���v^"!k�g������W,���^�s$�<~�!;`��5!3�[�^p�B�9S�!Wj�Q[QF8%X�i0j�<d����4���\bXCF�/:%���-��@V�X�o�%1�3y�m��}�a��Y����-�7o��"��}���;a�M7��3��y��U�X��i����ߙ3fM�Z$#�#���@F�����w%�2�H���d$�ku-ַQBXIȂ���Y�<
����za :а9�K�Q�t%z�ҡ���=Ȟy��s8���T�juqq���36xB�p҇Np.T[�qߧ���l�70$.�B��b��76��W�BE����*�sD�#L����[?�u�h���zk1X�l���⬌����BcN��p�,x�u1���~G�U9OW_a��s7W��A�`x���G�^�*��|�=�#��t���[轮��V[�2�b]��w��}g�ﺦ��Ӟ���ә*{��"L͵�SجJ߬{��(�ĭoӽ?`�}i��<�"3��H�'D��x���R	$�zԕ
G���&���j�E��&��EA̧���,��79*�XE��^���]��\�,L֓ƌ2��8 j"��p��%�J����)?z/��){�P�ɺo�D��J%�V|Ð\1#D�)�ЁY?C��dx��
E\�n$����,�0@B/��,�lT
����q��Y8c=�5c�
O����2ߍ��$��*T��-S�hx���gPLџ|�E(���f���}U��;-%N' �����E?�ޔ��*��OJs��]l����1P��Y�S:��;ݓЮ'�[^�Ɯ�K��G�B�f1x�	�
a��X���.t���ȏ���5*�~����n�wh�� ?ޢ͒���S�����U��5q��;�C�:e	P��W�W�C���RB��5���!X'r�ȇ�
p�'4���ck�K��8
&��<ܵd�՝{��F|Vyo���
�	��|Jh\�|�5.��t����c\]�~7�j�L=��%P2�RB�j�J_�|�K�Ƈ�$��-�{����#�p�P�C��۞�<�X��	���7�>���@&�҉IV���"T_%F�}���R'-՘)@��@�Y"'A�P�H��Q������b���Z��5ZGe8)�|IΗ�Ps��=PAx��kD�����~kW���T��R��p=:�BkEA�1�Ey��|���wt,
K4y>:<'��"�yfb�����Ae6Lz7O��u�FyF�D�6�7(�5�X	N3���ᑉ��-4L�z�\�sdv+POmHeα;!�������>�l�[)F�7�q�/���� �o�!�y�BJ�͖����#��Al���	P�9˪��Z(̹9��v�!!�Q��`��8+�o��,�h��uQ��B�Y�Ū$��(�k��a!�4��HDPԵ0�B��g��C92����/yF����	�0�J���XN��($����Ĉ\�V�(�`+� ��'(4K�]i�ڔdq*	٣*{�։H��(c�	o2l�jQ���|��}�2ߘ�8Jj:��G�K/\>�2S\��1*rT�G���	v����#HlxKJ
��Ac�"���0%���i���4x��d���u�Ȏ������$ߊ�<�*���[�Ǽ�=@��ܚ �mNק̟�� �)�!j}ZZ���^�v�E���U�,��!�r�E����ov,���Dߤ��T	A�.)�aM�+>��X��B�[��`J�Mi`T.�EȌ��	Z�
�R���}S�yܱ�^M瘅ɪ�İV���,v6�*��YNVIyx$��@f�d�p=?������{5{�iJ�f�P\$�p*D�������w@�aR�oiN"�G��<Øb#4�:���]QX�ݲk��w
9K�\G����q�u�'��@��J���~ݣ��P':%��9�EU�J���^����&4O4��R���������=frۮl/8r���G��R��tZp�\�=_Q'���:�B�.�<dD�L��t9�/����1���پ�ݭ�s�c��	��C�7l��������F��L�ekhXR:�uC�
<d_��C��3��[��*5�'OH,D2r��,x�/`>+
EZ(���c�}h��zrrS~�:N����<A�b�rm����0��U�ů�pO���5Da�#�wB(_R��b�C;�0l���$��k?�.\e�˔(��D�����
��s�g:4^�s�+�p����Ga�$��)���DB��Ic�2ɕV����:���He�mώ�<�?!vvUq��k��*���=��%�jƹ�<�Hi��PQQ�'(G�F�@ڑ�Ώ	�J&,�7����V���I��ᮂ�0���M���7*	��)$�FVk�P
����W�-�����=������O!�V��,�ڝ�\#nM�vIzA�MB��Y{����6�")b�
z(�[�1V"�w�.��ةj������V;F��u������U���YDH�z�:�>n?�u2��Y��2(��%σ�#ѨX1S`y��T�g�.�{sB�&�ͤ�Q����'D��F)��m$F�P�A�Z���3�y���4[xa'KBmn���'���EK`iBN��},Y���
�hn��f��n;A� �-3smLX�@�0Π�l��Up�=��PJ޻p̟3N����]����@�K}�	�p����JC�UŞj�/!؋`�7
�3�2�(J�ĥ���ד��%"�U�"���,~�DJ���hc���`Bf�ޣ�P�$��0d+Բ=����㡩�;!CLr�q��a�!� sa�:�1�A0I�����N���o7&u�`U�Zs��#~(�D0���y����V�iUV)_��f�	��%�?
U8������u���䘣�![O�ܑ/~�)�/|�pIW謇t\x��0t	��(�R��;jo.��U������OC�IJ8B>�M��S�&X
Њ�����l�PΜ����}��ff	�
}��[E;F�1��!�9�]2s��W.�>�*��9_��˹���_��aѼJ�0r:(O��W�a?ŵ�� �͞�h
���`�f8f��N�1%!\�j����X�!�{�@�qs�����Ofnα +b"�zL�	Cd�cC���,���żu��xW���/���k��μ��*�Y,N}�[��e}R\�{�6�����2B�3ڄ0m��"���'J�G݀9s�����%�L�p�O�����`!E4*���%@)�:��.l�#� 85}�-xۨ}�[-1���о
08uѶUHY77��Š��skB70�t�������bc�q���Eln��KƋ���<t�E��ջ���1vMCiBk�#�g-�KQj�s�jh���2���'���i��!#e{:���ZJ��Q�KE�Qx�LÆP6PJ�`��]��>]�
(g�6��x/�s�{���5����d��8$Pm���a8!0����<��L)\	F@�# 㱨9�
Fg8d\ѣ��ߗ��E���6Κ��P���
�A+��O�VO����I��%A��[GZsyfя���G,ϰBf�S���6�ݰ��9���ң�+!b'؈��kym�2w�ՠO
*W�ZM��h<P�0ι<���(*j�&(��<8�wM!�'{�T�h#�����9ԍI
�-�M%�:�#TcQ�Q��<a� 
3=<�6!n�x��5�(�sؓ��荢�I�|^�����E�5*
�{eD&����g4�ޓ�R���'Q�s}Rot1
������GY���[�@b 2�9�Ll���[ԋ��&�b9���w���LܫFH����j��@(�0+$�s�U�/�Ț�#ȬyMNP�WG���ir��mrv������3���]��&��{&&|"	�èXկNq��v�
7X�-_����=�.�m�b�J�oZ�<�t���]6�hô�K�&P�l�J�0	1���f�y��a�m�$�`�|���{a�M7!�x�$�a+D��dK�+pU�0;�a���D
���)����b�b�G���B��BMR�&+����'g�d�l�Y<)�+�U�\FV��Px�Vu�%�d�䪈΂�L�����Iԏ�ċb6�
���b2I�j���<�k�%����@	HaX����W��go�������R+�(BP�E\=�~�O��x�d���厒�
7�6W���IU|�kM
*3N{�+᧟?{�g_���9�G��]�G�>%B�IqC
S>�.�0�R�̹r�j:c�.��}�`���_I΢���A�&��&�=��Z-ŵ�/�������V��o tt'S�e�xF�
Z3�Zê7W-��
T��D��aCUMl%<A��J��y��Œ���b�I�^M��
02������d��oA΁�y@*�S�+����|�p�OԐ��_b�+�n��SQ���i]�%�a
�ºQܕ��ٛ2��ڲC�2������]���g�<�^t]7K�P��|��y^�B|#��_�+�pV9����A,-d�ɂ�<�jg�ٺ��M�\Z�)��(�@���{�����)��T�)psLww��Wմ����u�ú�m�נ�U�4�����?�4�@�d��	�.N�t�N
۰��;�%��N�ص��}ۚ�c{{��ȗ�f�ݿ���;N��o7t/FpO��m��.�|��T���h,sGÍa
w݀�]_Gײ��1?��L�0T'>�7��u��M�V`|�Fwf�3,����?!:�����S�g,fC	]�qE6h>��P�ڿ���n�c��ʞ7T���F(�Y�dQHM���e�`�
�AEy��z9���Pe�=>�:��(vXa�y�7'H덎���T�h�"9�
ݸz�h=̷�%UA[LJR�J<2���O�
���Ν)B-$����D���A:�<N\޺�A2:*yX����S���r�U!ڙr��q�"�3���A�Z���!��@Aϒ���
%E�d�J˲>lg�'<!rк�,4Y$x�6��s=z^����"d|��Y=`hXᏡp��b��)�F���k�"�pa�F�E?���\��ֈ*`�@��\����	ԕ.�p2�[��x�GS��ׇ&U��������)�/X�r3�z���
CYm��ftm��a��6&`371�(�^�rUBT=R�\}�-TZ�o��f0��z0[���N�o
�]}=\�mD@�������vݑavL�T�!�^o�<���I��e�M6J���uQP(D�
qk�kȉP{_�[��%O�}Eʠ��ʸy/� ��
�0�CCO�<�:0�VE����'Q�5f~�ᱢ�iA�V$N�����`�ON���'L�kx����/MV���5��Ƚ��(�|)��eK� ��إq�]��0+��N-P@��#X���{�T�.T��&��s&4d��.!�@�������vJ�l��,1��C�{��B���p���c墫��7��_��:z}|�o�o��S�q��ێ�}����_nk��|�Y���c�IѶ���A&��-�eΈ*�-�㨴b93lg�yO�t�K�ndv�֐�n�‚I�pUچ�Ë�ᗶ���tj%�b��x�lټtu���\��ڛ�ů$��GX��tz"YS!�U�6�ˠ9��)J,�d�lj���!��&�Cy�S
�X�ez� C�##�#�])�zQ �
��օ�<)�R_k���L%��݋0U����ScN@Xc�lj�a��{7v~�_}�T�(޳�5!U�t�9W���PVΝ���T��=;x�nj��=kۿ�`:��J����}E#2����̗�L��i�G8�[-��0��.�O�º�k��Ң)g��� ��y�d��(m)\l�3�]-��g�x2S0��?굫;���\WK�}��]gS�
���n���6�0�y/�h���k�m��t��OD��ߧ^���M�lP��#J(=>��U�+��7cyׁ� Cn�|��!Ó��L�puX�*wO���e��L�8QW����"(Z�u�1�/��n~�"�[ğ˖.!^1@���}^�<��J����x��ǘv�\���Pq��yt�n=����#��<�o6&�{��&��,�)41k�$�aj������)�W3]Kt��F/J����I�h�J�2@?&�����߁�U���oE(��~�z��8C���;���7�Ȉ�G6F�?Y91)	�E��#HE�cLC�g窸�r~�Pql�3I{<��&�#ľt#�����'
�IIʮ�'�-*>��XA�)��w�}�:"�V⺤���98{~�G�.i��f�S̩��$G���iB��4�5�7��aŏ�?��{vp�#Ux�������y/0�o�Z�)���a� ��cܘ��w�k�nG��0x��s9������%:آY�m��%�$��.4���;6	��{$�`�!vi�̜�iIN�q���	��D�-d�@C��
�+C��M�U��({�L��4[����T��bS�j�MhU\�m�bDˮ;l��^Aa�{��B������=�v�a��UX��^�^Vo�:)z�@*@��'�$���J>|	���0we9,�蹤���H0�Fa�Y �qc�b�h!J���*��-
~ B�!}Cn4!���
���!�0��j	�}$̸̐�`�0��,�1�[L(�8X���A�U(�e�y�����9���qΩ6K�>iD�@2C�xQ-�h}�<�b�ӻ�)j�$0<Ɯ)n�M���'�%O��/���#g�x��p��L���d����D��R��3��6z�%��
�2l!4�4VA�V"t5��,�V!� @�E@�o\��P)���&��a��{p���ςZM�%�.2i�њY�넰��A��b�!��
vW�o�'�9�yl����	��Io+܉�@�/�`�i�6%E�(��S��	X�G�	�$\�je]�0��h���X�yz�M��c���S�? �O�q�?>�p�d�H�1�I-q�#J�l�3Y�)�+�-�Ы��<@�,S���p~��u�_pBz����58��d� �Y�3�O8eE����;|�{8�b�6&��:{�4�Z�Wd�5��0\�T���/���bx��ڧ-���%e����H>I���a^4t�V����* 
�w�<�n�l_��/�C(ТWbW}�C��_"�#�mOQ�P7�j��f@e7cW5��`[ܖ*���Ƀ{�_�S�f6-���e[6tWܺV�y�)0L�W
�K�@c;z�V��t�YɠG��k�|����gB���D��PBUd�a�;��:C�َ��M�+v��u���D���@,7�^$���$����D���^eޙ:Ö�)�l�a���F�ʋ`5�R���䳭Q�_@���vS��\�@l(��?n��^��0�`/'t��
:H<H[��c��Q
�1�Ӫ��`岥�
���8����KBkqn�x����9�|20���רD�.��2�Zj\BU-P���
�W0Y�~T�^�4	o�@���=���"-�'s\-ƄU%�)Lxp~?�H���X}����C� ����B���t4h�b��܇��M[�'�d����������d�e���16�T�	�D��s��Q�Ɇ9#d,�\yh"�q Q+��Ih�/�x�x�@���
�sf�Dt`D�"'����U�g)�P+����R�݅�R����i\h2p�Į�񰖧�iQ�J��7%�
�g�m����N�+Ef]@��Ja!0[f�4e]%1_�2Aq�+�sjQZh�L� �$�d�x-�,Ir�*������j=���
&�*�p"�[!����+Pɲ�0/����FԝS�b9J$�C=e����	�8����k�$TIQH̄G����$�Q���8�)L[uE�/�g�!��0�P4�fd���*�XǢ��1�uTY��6[ϢW�T�c��l�Mk"�̙��b׸cs1�u�a���ƾ�V��Ե>�����~�/v��e���t0�s�O`�rO��i1�b�7�E�D{H��(��A�J���]���/��q�ܿo�ih����d�)��5�m��\-�8�U_�yL�J�u�%��^�Rѹs7�C�/����eS۾`p�	��q�:�Q��h���a�Od��4Ƨ� ySD0���zs ��(q��<��Rb(G|y�C��]|,[����+W$����Q��Zֻ�r9��\ �L��aL�>y���pѕW���5�yϓW`�ׇ����z��rX�b%�u�}���7�@!O�5e�kү���o��#=Ƈ��`��9�l�-n,�W����%6�e�;�xZn��z���å�\#�B�b���3�`�K��h���m��J��BK�Y<��~�R��ߗ;�.�`�U���Gz�!���n�=|�ߐby�*V&�?Z��bP�GY�I	���:,O��@P8!ҤE��9<�я�EI���emm��V�?����w�S��A���ێ;��$@����yO?�����
7�<���� -�U
4^q�s��.������7G'�ܷo�F�:�fl_��x��Sƴ:=3D�`坲�3�֭k������g����ӬK��w�M��?:�᧳a��	�w����Rs�5M�ގ�qK?�gF�S��bs�kn�
��Vy�Eߣ(7�z��0ȵ����'F����9��Po��rn�}6x�������|Dp��K�&�_��1%\0���Tz���ў+�ǰK�x�;�S�Y�r�0�� �i4�~X-F9(��PO�#�0	��X��$_F����(xy�q��0B��Zr@�ު�����T��}ѳX�&�r�d��)/�z�GH���9>J��ө��Ю�<�
�I���In1���c鹡<�w�B��¼y�蚅G�JoXWȴ�X�514�+��p�'4��0�3��X��E��p�?ɞ�i�ߣ,�3D��9"9wl�n�/(_�',�*�A=I�Y���r{oФ�
݂ن�*8��Y��v:��FG�7�n��)��P��w���p�=�)�*��\;���A��V�:�n*�6P&wh�.h�)�)P>M�ı�<�c���G��&�`°�q�̖�2[�EMɼ(V%�l��¶�HE� |��]�R��@�Y/0��Ix+�&�ͅZ-"4�&�n^Ѭ&@����B\kDQ0"�<9a�
�BP!�G�fB����0�G�g��,-|�w��(_����-�vf322�Sb�[�טs�0>�v��4�p���-d�m����7���3J
���y=�2������{�s㍷�BI�צ���U3hMBcwƮ��a��	��X�$��0ѓ5�����?b�[�F;KɜƢ��[�ͽ�"���W~vMV3{�0�y?4���,_���F�d5:���sNX8��qM���Ί˪b�LT����Hd�0oG_����ы�'
�9Y���*��Ҝ)��6R�$���v�W�~<��k�P�7
�Hq���=�
�<�/�=<4�!��{l����v�f[x�q'P�I��8O�0��{>��uz���O��t��)��+N=�s���㏇m7�`�e��~�k/��2/��Aaz'��9E!~�g�yU���V)���#x���ys��Ozl�	{A��pʱ�%�~���{.e<��V�f%� �<�P�4�j��{a���z�~�ɨՠ��Q�ۤ6��I<�;m�
~�E7�>�A�E�lB�SR�͙?�=��h���^{�	�z4�S��b�w�6�Qw|C���ް�;J|}�77	��<�&�ɼ
���cሃL���t�6�`C���o��\7��������fI��Y2[
���q$l��6ݯ��L�ȁ�d�
�Y�܍�S1��te���"x��HlV>͕WY����Oc�w����|�	���ܙ�*�=m<���;�5[aW_��=r�l8�e�s���.8)�}�f˺7ԉ��O�s).�i�326,#T�\�V�\˓�rYR�.]��.Z�.L����`ɢ��l�"X�t	�N���$�IXZ~	EL��=O��W��B�7�3�S�섎��kP>�m��'6f�1�a!��N�wy^R*��˚!��[G���??;M Ղ ��h�^��֛�/���͡�W,_
��w/,I{`U�3u�a[�bB�E;[�,�RKo���%���uy�x�י�Tޞ*+�cJ2�Q̣:�hA���\��W�����`X?�1�y�d��b��c�Q�����_}�!ZXn>�ꙗ�>ҨH��wE�ʏ��0�	���
��U�WQN����sE�ƚ���F!�b���8ѼҤ\�C�គ�GŦ��Ffs�FX,6��U�|�%'��Q�}�+Gn��� Q�|\9�1��w�-��?��:�f��K1�3U��J<�~_ANp^% ,}V�cj��J�N�qQ;š	]y�n�A��X�L�F��~��[X��E!�Y�!�rwy�f�?��g����T+��P�D���n���*O���piR��t�!�t����- b�0ciƘ-��%3�xF���ң���3y�q9!��BC[aQE��7I�E��BO���Ee
�pF���:��8����
�]��!�.�w�����ޢ�Zu�zL��|���y.��jՕ�P~�
=Ф�4Ǒ]�p�>��ڞS*�,B�M��P
�t\:�PZ���S���]���ʅ����=��zk
;�8�-Z�n��6B�pۭp���5^�#g�9z�PX��>��~�}���	��gY
?Ϸ�>�d�DIH�gAP@@��8`�U�pk�޿������_������ު8+��(*��C�B�L2��a�=����}�Z{�@��&������g�B3�`�4�Z�v�ݗ9/�5�<O
-�/�d�g[�S�]�V��*���"�\׆�)�̝N*��%���/3W@h���ٵP��y鋂cf14�i.P\ڱ�cK�$N3x�Pr�[����m�6�%�B��S)�Xέ`
��<�t.�"���ɤ^#��1���/|泄�{��o����6['g�|
�z��p/'��� D���]��瘁��G�eލ��2��{��A0���}-��}�߹�V�8����B{�:0�G���7(Fw�y���f��=F~��
N�㻿���F����*���SO�MC�u�d��du�2�f�ᝃ�����A��!,n��6��sw�zg�9�s�q�݃��a\�W��΄���Q�0��	�������;�w�o��h�=ú�z�Ip� ;��3�������->�x�<��ᇾ������y7\r��p�׋�˙�X��B���4���A�v�y�
�
���{��<�N;��37~��eXGٚ���N<�x8��3��\{�
��q�i��,�g��}�|_����A��g����ޱpӰ��rn�z��d}>?�_��t"�:���7(2x.��{66
7�~�0W��-��.�M����>�r�	� �vnM�m<��π=���aN��K`��"7K�<�4�3�}:x� �:f�~��#��Ұ7��!=1N8�xx���C��j']����B��o�I����O<n�������M�|~������ư�uι�������>}ݵp��[��|��^��aO�
��Gd�Y��ȳϖ����k����Vb����{�ry������<|� \���?���/������a����z�`'�a~]��y��W+�ۢ�w�)�%�7�J�I�h�L]DS�	���ʳ�L���uwCTj��=�b3?պ������G5������U1�����y���8������}a���[���(���u���Є��*���lM�Ge�������55�iI9ܸ}����g��ts���y�	�f���N�-�4̿]0ޮQ"��D�g&�O{��ә&Y����E��'��bO���}�M�s�[��W$š>��w=��G:l�BO�LI�f�=?
I��e�F��3���Ǽw�*Hz���ɋ�袓|�\-+x?��b���Q�,�Z�r}��by�w��I�.�we�?y�3�&v��e����sR�_W�"bT�E�2�U�B�V����S�y?t�J��:�8[���Ւc�ֹ�>x�=J60g�'�'F<(��-z,ȏ\�dUk��J��򠯡��1��el�ԃ�t�ǀ<)��D��|�+��әˏ=Ϝ+��@�0�T�#�����GʗH��w
��d9pp���#e��.���ā��[��ݳ��8��S3�f8��Ĵj�/��������B*!@
��B�j���	����fu��h��L�)�ы�(����^��m	w���V@�Yt���*����!�N���x�aE=nL��0Y`t��IcNr�]1�X�b�u�p�g�Zoi2ņ�G�{��[a��s��_Z�9�+�vCQ܌YDJ���1"�a.����r?�e���o�y��綽���Y�ן���M^���U�S�~°r�s�$�>�xt���}�,>3|���<8�
�_�;�ww�5W"9:�p
��9|r�l�H�2��Uh��t���*� o�+�t�Ʃ��]F;vN���J�sg����c�z�z��EP a���t��J��3+4��+f��#��)m��O��|	���eA�/�y�g�6����R��EZS(��ve/by90�b�Vbl|j��XpI����zz8�N���JQ��c��
���;'�4t������O��B���M�֯�,_{�Mҏ�z����x��C����_�y��K/����E�ְ.�8���1��+��z�c��O^}�K��
��?�{x��+_��y�rG�����O^s��+�xec`����������H���a�o��
p� ���o�F��?�c�i��o�V�÷�E�/�����ǜ��|xo����|�A��J;�_���
ʛ�ZH�Th�$�3�ҜX��ޒ���[����|����A�o�韊0�{^�
�䴓O��EÏ��ρ+PXY�M/z�r‰���A� |�Ӟ:(�~^���/�>;(39(����0��C[��p\=����(ʋ�����A�-}�Eԕ�"�AWZ{�|�������{�����$s��
��Bvԟ3(�u�%��Wb�:c�͏�VBq���'|vX��y�_�%��#����}�+Ꮖ��
J���e�=�Q�r�>x���&���}ް���P+\>?(%N��5�g���y<�1�w}�7(l6�k%L�׽�EC]��w|�7��CeT�a�^�u�({﨣��g��x�o�c/x4|�K^��q�(N?�a�����×~\�j�_?�#��88�s��o|�]����;�ĝ�8	������?�'=���5������H�_��_����_��W�G.���wHG
����}%<q8C��;����ҷ�����:�+�.���c�}��a���w~~��+�#J0��# �M/�x�3�	��I�4��?�}x��?������ˊ��|�_�{>�Qx�p�x�~�W�X�p>�~ �lƑu�n"E��A�
�I��u����N�0��>`�Nvf��Ԣ��!�y��_:�fmt��0�1�t!��������n��P=8�a�'�ąղ뜣Ѫ@k��*e��>6����s�􇭧z�i�Y0���XX�߬<�P~:�reG��Oki���荗�a�4y"�w��kϫ�4���\]#�<*d)��	�+�=��k�SլUz4ڠ�Vf=�i�܏sJ���Y�e��i�>���)"�����P���wW�K�nȳٜ^,4����֚�����tcü6-ij���sFD���)��������~�a�_Ih�C������C��ʐņ��b�Ȳ">n��嚅U�D��x��F����B���U�ޭ�G�����u�l�r/���ܿ�@(�$��0��c���h���6,��в<��P�M�����~�l���>�R�%v��x���N����i�O�C<W0�,\�̜CB-�+�'X'�BΞ�����Q�<�.%Z�&DV@"�4��Y�᧼"
Γ
�i���3eI�`JW08���26+1r��m��4���h)�I�f�,^B�� k�F���n�%�>�
i �\�Yaxi���'�@�X]�һv�~w��fT�؛��7��#)g
��㿿�r�mw��������Z�ڗ��:���,����*w|�J8�"���^Bd/!��=tkk)�m;�$!XT%Lx.	��n�Y��=�	����$٢�p �#�����&��%G�:�p'�t@�b�!U��"1)�0)�d@��t%�7Vw�@��/e���,�	�J<֢1�Ir����7��-�/�vٶd��4'%,1�[��<�$B\��z��8�!�Oò�)D����ܖ?���s�<΁�+lիʒ�ckV�8�ا.�_^ �49��3�A`97W4!��9cʰ�"�=?1���ܚ���`X
S~و#2aG}g�2�LV�Uߌ��J2�TG/^l��nc��{�|$S݃�X�Y:s�7+L��[�*R��I԰�X�`�
�08���S;
���B�T�ƴ��
rFǯW�!�����d���s�\�ݱ͐&/��7YW�(>R�lA9��>�Qp�A���W�Wʄ�<�)���������9Fx����Y���G>���g�O���[��~�7��>~�
:�O�7����A �9@x�u<�q����~jPP��������}.\v�5�l�`;ڔ�
u��Yς�2(lX8������Oz� �6g_����©�B�-�٪������7��;�������K����ɫ����x�S�y��_��ݜ�Jp0O+tN��x}���x���Ȝ�/?�L���5Y���[��nh�
���F����4�/~��?�O�g~�բ(��AY�K�@�)_���^
���Z��/Π8Gh�3����׽NB>����xh���A�t*�����1�ڰ��w
������*Q���|���`��1s������/��(R��P/�����G�;>�A��C�X��O��w��)�X9�_I�?����5/\�5�l8iP�p����$��S.����'�x���M��*
�s�8}Pz�E��w��8�����?1(%N%�?��W������w��}h�ۿ�k���7�^�/����_kᥝ-�gu���~�O�N�g���g�|����?���#����W_
�-��W}�+�C��/�:�����p�I'�/���*�DY�?��e���O|���'�Ʒ��:A�:���N=u�%g�/V��x������������O}�mPĽ��o���
{�ao���
\r�eC?�~����p�����}��A����gh�O{���7���k��o)/���p3H��_�%x�y�����fُ��_�p��ΪS������f��ǭ�O:�k���&�����8w��:3}(^*���g����Mᨃ�}���q�&����_��񓮄�yS�b��Ŧ&O�0�!�F�kJ�4��߽��{d^�֛B/�gg�`63_���ʉ���)���O��]n6�#����L��)��xtr��j�Ty٪�O(� �oČ��9N�WL{x�,P�
V0mH>�� �_�.�[e��������$M��H�`*eFBpt
G/�d�2�f��K]�=m�C�X�c��8Z拍/XA���[C���Q�
%/v]�/{�)?��!Q��-܈���@��Ƥ
=��_4�Ҽ74�J�nUT��+c�X�S�-��G�pỄ��3�J*4�d5^����+�I�a�+z�7�X
f� �95���v�<����!d�_�#wN���TXP=���p9x]�`I+bz0�r��k,B�P�*�J�~S`"A3�rxD�C=�����X�^(>a�]���5��A�?҆w��8'�sEI��a�$�8\������py��ԡa�;��.-���s�Z�ْ�����=R��#�Qn��f�b`���8Rv_�r�aR�D�BCC|{�|�	|��J� .$�@7s�v�gq��'/��e��_���zb���A�=���\,�F#�뷐��0�ܻGbq.����kH2�@m��1<ai`oXO�RV�
��ح��H��9��x�0a}T����[v3�vw�W[�B"���帢��y�:����Z�7W�y��;6Gȯ��4>7��k��Y[b�
¦c����/|���ةph��<�iOSȊBP�n!��u���2I�´&��=�W��a�����x
�z���px��R����a_�sϽp����Sl�XT��
rS�:g���M�9�`�]9lIC�G�9��\���4�tn����U��a���B��崡�}c[�Ԋ��]�^�3��AC���ywdC��kIQ�;�p���&^8(���zI��!t��^?��_��a��q���2�w�G֋�������6�u�=R�!I���]�Ca���ߏ^�)ܧ�����.�G��.l��;(hX)���s,|g�7��]��o}���b���?/���냂�q������|%a*8��M�?m�{:\~�Ճ`��b�*��I�9p��'=��٥�w�	��s�_�ԧ�k���$��w~����_�lx�;�.����KB����݃��P�0-p��b�-�K�1�+&��u��U���0��>{3�p�-��w�e>�l`���!�~�i�`�o��m?]��=N��g~F�U��w_�aIJ��A��J���69̙�k��x΍��><�\�����JH/����<�1����WH8,��a�+�3��o��
pˠ���;\�8(?.�i�o�/�I��{��?�p�1�Z�%��ۊgy�����K��<�q��G�;J�g�����������/����'?�����o�a����w��<���_]3��ۇ�r���o�'?���d�Wm�>r���'^Iw��|���06�v۝wHX�g=��𦷿>3�����?���������1���2(����WJ���9���{f��9υ������.�0��<0�y}yΗp4<��B����N?�/zc�T ��[
>ڹ�ݶ�%DS�"ٱ'2��Ut\%���8߯�ǝr�u�ኟ�_Ɲ�ܮ5�#�]�$��8�{�����F!o�`�p���#Z^
c!
<��wf(��=0-�ķ6/8��,�6��[���㎝���3���ʓO*}o��N�s�~9�Žoq��ys�u��l�y�\X+F��x�`l0�B�r�_��Q�L��#�<ilLs�;({��!J��
6&x_s�W�rv�%��S<[����
�d/���k��`O	��
���<��:v�Az&��@��*4���냶�*�_�^��=4�r�u��,�w��a�tu4���>���yN���t���*��F���$[��ED��W#$SI]��LC|u�F�L�h�@[���/�+´Ca�a0�E�#)YE�� ��H�YR��P/S�:l�%�C�i?B�o��*�.+���P�x�)�ieJU�4I�AT����*џP&h8*{W:��}Gb��Zj�c�f��k��\%�C#U��wف1�*L*x��P�H?٬�c�u��+Gʑ�.|���o ^��¢���02r����;�X�L)
K������P,3�BQ���.�
C�I x<Yn��C�e~���`��[!Q��^",��C�̔# z,i}̈yk{�@��yO��k]��Lᢱ;��L�g��ŕ�q�-0[N8��K0���B��?�_�5!�}���#��稾z�)��W����x���U�����H�
$y`66T0��C)�LBݕM*�6 ��B̆��IRu/��b����9M:e��h�����#����w��A���w���D1�	��D���APo�|��c[N��,�C�؂^}��ݩ�+<�9(!�zh�q8�֝�1��s�%�{�'�K�ؽ�̹wZg�	����M&���;�3]Z?3{�{����f����
�A��	�f��~��w�H���e�_�Lj����s��mFBw��͌�gW6��
�MY�� �'ʐ���*���0�[�hҔQ)���G���l~^x�yp�I'��$���]#s��gC�r�3��(3�,���uX�t�����W��up��@����	6t���ym�l["u�k�{v�{Y@�m�b�y�5��W^)

��a�x�R�g�	?���<(\�ş�m�aP����x������e�r�r���-������
��[cM�*���[��c���a�#Ͱʮ CV�$���f��u���s�ќQw��C�2ꌇ�*O�R����3~o�׊�F��<aONd�c�{�S�tI�9�+���Ĉ��0f
qRr��ijO?C��C�PA��g�~f]�Co�T���
��%:�q�����$j���x�=�)O�����{>r���~*��#G
��B�r�3v��t���a
���V����w�ߜ�)��Oy���;�wZ�׌���KΏ�{��y�
������5eV}�>Y�w
J/V�\|�#�^��D����皦wsB1�Y7��ȿ����T�F~���ie��Z��;��y�\ݘ��-1�.�ՄՂ�����(�Y{�A�NJ�R��}��h�6�����Ix��*YI��\.Ư�b�]gm�b4���X	o
�<`*��i21[TYg�E�#�1�)��C�6}�����_l�I�:�}��:�T��p�Cln0�=O�Z�q�Qd��Z�Eg�9���@SH9���1ɳVw�Ib�1�v�D�Nw�M�9d�m�/8g�bS�.y���I,�J
�W�Ť�}�I�ܐv��$��)�9+�X���`�b1�a2.N廒��.7����`��0���ֳ���S���n�f�!���9����P�炩�4�_d��HEŬ�?9_�b�U��|d���-Q�*rz�3ƛ�`�gq/)V<m|)-�7[m�˹h�=T�ߘ��?�!����pVe�)K�0k��KШX6��{Q��"�H$u?�
o?��(�4����:U��V�,U�
��jA�YL�
�ʘ�����2�{�C̆�J���5lhrW0%���ey�W�y������#m�i��>T��_�0є�Uas�)Gʪ��y�?��r�%v��ࠑe-{�y���m�||�c�XQ�Y,9����~��x(��?����pR��6��"Q��y�QG˵f�)�'���$��!j崵<$D�#iMP.���"f�x����K�b��Gf��0"p��s*��V�,Tc�<3�Xx�8"v��x�*��襕�qŋ���ℋu���D��9hs�
���D��B��1�3���e��z�<�qr��м�nD��0R|A����^;ƕ�%Z�s�����v��%�E��}���W��}1����K��8dHMD��Q$t����%�Gv�u,��'����y=�9�Q6|���|~�'��=�G\"����U�9e��m,ht����l'l'!b��xQu�wu�1]*r$�„��V�$a��&Z\������q�^	��Y�1��~.�?hf'�D���-�MI׭�ӳP
��:���l�@&p�}H���[w�oZ�t
���n��D銠�$��R<����'���\��� �W������;��������e�'��V|C�'�0�?�Q���2pނ��	O���H8�
��aV�φ�8o���=���Oo���og�CV=uP��v|� �����1=�iO�^z)|��_��կ��O;MrD�ٻ�
w�9�9�c:����e�y|h�k�s�+��;o�S��Z�y��v
&�����E���x,�z��ӭy�]X,�J�&�c!��_<��Q�g�Ċ���
p�lz͟�9�y�]�4��+2X�|� �^.5���2���s$Ωtܱ�st\v�U"ㄲ���߾W���hb%����[��"�X9��cd�rx-NB�ʪ+�����H���w9<{��4ߟ�؋თ]*�ƻ����o�lo{���S������K����u�y�k��w1�������^
�ֿ�sN?��_"���f��<_v��ao����?.����#��/+�X���Xys��ϖP^���ԓO��>V��x����'�eW^�
��(��
sw�P7�aP�=�	O�w~�}�py�ӟ!m��h��R�1�_��������4?(��>��I�/�2�o����a]��?�?�g%�����ώq���c[M��G��֖]�.i�4��8ۑ�V������R6�tK!���jH�)D�i^�my�0�n�:�U���x�47L��n���g�c����W�;{B�UȻe��b����a#����"҈I
��A(+Y��͒'�
0V�O�k+�{�'�����v�F�&�t���G���#�8`8�,���1��{l��p7�S��C}N��w*���`�e���[Sp���6��KN��0M���[A"0��Pޜʞé�E�ŋ��/��pS
~��xD�g
8E�Q�+d�(C67�
-�r�n<���?�'BIy�	���2�u�NT�v!
G6�_�LgrvG��w	���<
���	̬]!t6:	x=.���/�
�mGn����,����ѽ����x:#������F�<#�;rX��&�Qή'ѐI�@M�'�<9�S�����W����)L���(�� �Kyg��.�l��
@�`!�IޥvVN�<�R��`L����Ú�T�#��(�?0�ؾQ�P����Z��\S̲����t�(�7�4��T`��$Q�k�^�"�&�G ���H9R��k��׿��ph@��{�i��'Sd���o�}�ܺ�^vӿkP�<�s�
&�2#�zs������V�N� }@�n��᩸X*_���������@�\�f�*kRe��@�!���<n��/��?<�Nl�̈́�A�/��-����Z��1�i�B0�N(E)� �[������S�Ȝ}kt�z<~?#jQ���	<TKfWn��䌕�8	f�
�&��,�ui��@�D!LB���ƈ$~���/����e���$/V<��Z�l�[�_���+>���
o{k�
�Év�m_�ԧ�G�Fk�p{�‚. �&��m97��m�t��[9)H��W�v��t¬�e����W�V�l�5����ۆYy3�&�1���}�pmi
��փ%[�پ�BU"
�E��s���T�0D���(�A���d�}0!�\���N�n7���p�p�������q�G�nj�'�Փ�Ud�$C0�U U�'��ϰw�M�
Y��(,py촥�ll/}�W���vIX�y�x~���
����'�x;�� ��W�J�l3,g�:��mw��|��	�y<8�{�������1���O÷��"f�y.2�S��/,���G�~�_����[�տx�{��Oz���^����/�b���yσ���ߖ���������ՃP�= ~�۾M�:�L����A�͡�>r�'����B�H�;��۲�*'�߿��?�m����_��Ú��k~�}h���Mx�R�=U~�ۿ~��~3�)�ľM���/���i�{,���QQj�t�q��K.��~��Ϳ��_~>1��0c�~�W�_|�Ó%+�x���Y��h±��%T�O��VB�v�)�~��w�/��nx�_<����c���?w��7�����}�'?:Лw���ٻ�w�~����a�4�F�O�OJ�����?���
Ws��A!��A�+���A��8kX����?3��dž���Mo�kn���k��K?�z�7��4�6�}{ܰ��a���?�C����o��?��i'���D��
_�R��=c�Q����a?qΏ��r��?�?�L��_�C��+.��{�e_��_�9�s^��>s=��w�}��aO��a�_���鏉�a>���9�o�/�}S���t�����D���8dp������_�}�S%�ڇ�'Z��w�~��/���&+�8_��k[��$��"�ءP�u5ݸ��vh�0)������3+��X�����8��q�EL\�VU֥�I��`�9̕k�̩�Ƶ�\�=C�GA�4�ia�wa���9��Y��<8�0���umޡٻ�{X^jV��ZA7/t�]�.k����U�t�X_w���ܷW�3^vC��6C���?����D�����W�ʰj�[+doڌ��󰵭0��λ'�+D��"=6��K�������;�e���f�C���XD���N��`Z�+㫭�y"���CO�tse_��9+66t\��yOp�p���ʪP�55y1��fk�Py�xW����P[_����"�!����W.����ÕKnڛ�^=�&_"��L:��������{�<�O�
,Å)2���5�N\Ǫ��ܪFP0���J���[�P^T��/�)e��q=�r��	5BX4?���sTn���붳{߅k�wu��0Tc@�!�ҝ����K����	�zR��
����~�+�i���;�y�?"���,�^~%<����\���gHs,܃���fKJ�)��/3�lŖ_̬=X�'Aة'Q���R��K�տ�{��~%<��O���g_��o�O\v9|�}����i������f�����,�p��w����>�f��	�zP�R��Z��X�Z��ެ���/)DM$Vq�e
�%vzatH�i�b������(�Y�Ai-T�%$�!��B��B(okb�
#�n�b�C}u�N���3�lM�n�<1��n�{-�{�H�X7�4b�����v
>"�9Kh��O�g�����J��fQ�;U����+����&z]	W	_�̋�H�u݈DiJ�SPB}�u���4t��n9zR0Lߍ��n�X@�-s��;��������D?�q
h��`�b�D�?�O&x8���;��4��]$���˾�{��@CԖaB��`�a��2�O�}���z
��[ky�ջ�";��bg���us�Qp���fh<SV�����CUy�]���>�}i.�L?p��~T)�}�Ė�O�`H��H�
5I�2��}W�T`(
�ͧ�S��r�3k}��!�Т
�]!c�rd���Cj�Yh����}�'	��9bfY$�w�9��s0}�&9q�X���zDz��T����왪���zoX<k��0د���C�‘�^�h��E!p߁��ݞ��'�
���&���8v`j�*�Ï��{2���S���΀c���n�<w��~�����=�✟��K��A8���c�r���s�\Ŵ�/�럀��ڼE�T��B�es�u�Ap�І���sbp>��BbО6��0�:�C�p�Yg����`�8{b�oV0�����|N�=.��J�o՛��J���G����c;�so�~������p��x��&���^�?�p��W��~�r��g�#�z8|�S���>�[V0����su�%>?sϰ&��t��_�p��P�9D��;ŏ�n�>y��2_����3|Ǐ����$��#�9e�9+�O��p�#1�o�c����G=��OH{{��Ǜ����j's��9�ϰW�����	3L'�f/�s�:.����Y� l
����d�~b����ˡ�c�>�֛�~���[�z�Jz�c.�S%+G~|x�~�7�q�h��^�O1���N>u��e|7�z���
��K����8�;�8ӥW^1��.>��C<��?{�m�Pù�ౝs�Y/8)9�3�|Pr>.�����G�y	+{��aM{�Ep���BOz�c��ü��a��
��}���Eʧ���Z�7��a�>:(W8/����t�?��O�M�5k��'Gg��u��=q�(�x�y�{�þ?s�7{Z?�����Upǰ6���a<lX�w�"<z��n��)��w�˟�ܝ
�%0��;��ӄ�k�({�[M��yN=���G+�hR~5�M��O�������Y��~�(a�C���,n�g{��9�1�����h,�4\�pVC��ڶ�@�{_��B3T��ע
R�'�P����fY=�t��
+�o����B���
�jT*\��	U���a��uM��3ϰ�1���-r�BH��3��A1硆���NC�m,�F�:�&{�v����I�{�n/�"�U�Kz}��:#�P��?���<�{D,��wad�_����o��=�u>��C%�������E�+�0������0_h*��\����R��{�t˶��^���:�|&8	:��us��y=�3���O�$ǘ�ba���oW��g�@�pa~da|�@+�3�P��˰I���.Ge�:a������4�jCB�F�������;��is�A�l8��:1�+�V4�����2_��.c�yn[����z]c�Z:k��Zv��zƧ���E��c�ֳ��sۮ�X	���E$ͽF�8x�`(?�$�KoZ�>��]#�ƮU�<��
1="���!l$C�	�eN	�xu�&a��YoS�Fr�X��R�7������/0��4��~g}P��q�x��̱`�)ipQ=����7��F� PfC�C(&l
�0��� T�Rv�
�*n�V���O�"ʔlˠb�_C[� 1�Ͽ�c�[�`����õ�]/����x��s��ȍ�D���F]x���1����Wq�}��b�h��]X(/G���'�x�X��+�w�")��|��Y9+��BC��$�D����Ђ�ق�Β�"W�+�� '<E�%
C

!�e&(]Ⱦa=yvI�ڵ��tG|.�_�������]rV!�n�Tc�����n��G_�j�?m�A�TM��6��p*6��w)�؞�v���|-\2�3+D�,6�*�e��z�tA�a#�s*8��Q-Lj�ֽ_����x+)1�,L�_U���EE�,�����`��\x��]�u�x��B��;O�#_H������Q�8kB-�8���I!�Bn!��EI&n{�]�'w�Wl���a��Ҵ�"�и��4M�缄����V�{��e�P/*���27q�7�Px���d�P(�cXF����w�\!�$��v{r\�Ui���#&��Ja�]9�L�D�!�o���kE�l�!&D���4���	"q�5<��C�\aY�����L=9XI���u�T����@%�%�]:<߉��&6%a����E��\r��˂5�����	I�!��G�<'�~��ަa��|��+����uV�1��
x�s����?{�(?�{��c��a�����qV��u�b{��J,p�l	,y��s�C`IX�a�6C��p��ݞ�"B��Y�t`!�(���§+��N������+?yy��ㄅ��\�>�:/��*���kT�|�=����n�>��p� p�yj�Y9fP:�O���z�3�>2(���m
����?��k_��|~I�W������,��^3(����?N����qҠܒ�e�%�:*�R�J?�N�.�C�^��C[�d���o�~�0�g8_��/-���|�#�g<K�A�/�A��+�]I�չ��a:���;E����(�>,�Ġ�@������++���$�wB}�ן�������s�]>(�|zP4��7�2콛d��x5�^qyF�,�N��]��{0���w�u׊��-¯���/|�%|�H�ą�%⁶��9��	<�>g��a?^>�ΡmVp[{!)�-{}�s�k�-a<o���Z��[S��}g��p5�?����nj{\h���q�%q��WV��G�+л�cIeHq��.̭�$5����w�#f�#�"ѤB"��p�l��D�B�6�K��gڅ�A��5_�E����'2����?KRa���Т{�?ge$���_WlnY��M,u�w�
�4:F�����e�̜0L�%�!i��Q��c}�i!�ʽ�%
�f89��%8��۞�SiUZ�lS]�a{����o��h����=C�~�\��H4�I%��v�+��rߥ=9�Y�m64�:��O�|�&Ls��O-�o"
���(yt*��aT�ȓl͉�G{K�,9- �{���S��74�6��t�r��BX�}T^ij�7c%��M�
�N�
�
�)�d��F������u(��f�*R�#Pv����w��iH����HEH�°�&p�bB�
���r#�,cW&:���� Q��7�0`���N� ��y��;�y7�;�wH��2()9@l]x�L	}k8@�yA��D��B��BS9�#��s�U��-�p�t�-������SN9	Ng+S4��/[�1�H��#}�S��X�_������Xc���Oi���gn�n����}�9g�	Ss��8V��/�-���ѐ}y.XB��C�M,��)�B���X�>�~“Xbw�^�s��#,���;��!%t�����P=R�M���7�m��!��r��1�9�0�s��,��#L�V�yG�y�5�=��#�L!���hV�KpKon�hs�B2�Im�9o�=�P۷15S�F�د��n��-�Z��Dy�mw�������$�׿寴]��üp��p-V�\�{o�M�u�uL[Zo����̻2'ʰx�J�<C���Qň�9�{�C�=a�_������ꃸ�>�s���nyH%���Ok�L]*
�k����Y�	LbE��`���v)(x��J��J��:�BC
��Ѱ��*�2��)(J-,
c.�����˅�j�l���2-���Z[��†{�iLg��Z��,��)�L<���N������D��ɸUٻuH-9��,��+>�Bq��b#�hI�ܰ�{�KL�I��
�dw/��f��bQE0�B���`�x	������?g;3Q�:dk�/:
f?�d
���ep>��Q��`7�ޫh����ͽ�|�n=��u}�K��c�=F�eW��S�����,�'M�/㡻[U�D5ޏR�b��p��g�7��E�7��Ѱ7[��D��1��N]�|���K?.WǙ�wS����P��9u��9���ڙ�N;<�C���m?�n�o+�^�,{p���sNp����3宋0���
m;�-�����浲�c�l��6tmWu2�h�����J��'39Z�Y�7`o�[fL��wpڮ�Z[�q���9�i�	pʞe2�����!w�^ѐÝ��X��!XEh	�1-��
���w��u��
i3�������E��Csk瓸�8���	��̋�lp�r��a�'�������9}^�)��^[ۋ��F�~̿�՟$h�	�Â��"
���Hd:�v=�ݠ���l���X7�L�B�ggƲ�����Ksm�y�p{���y`����9����ոk,7����47$��G�5&�W:��V�n/�B!S:h��AP�8�*V����X�e�E�B�T��g
�d3+t��
����	6fWV$�Ĺ�W�`�U	�IsH�w�5��ÍTX$�iP�d�kf��k�]U@�#���1���P\�Np(Z���C��2�$���/d5�~H��^w�g�o~+|��+�O*<��O�G����7��ͷ�:(;�����F�FN:�(x�#Α��⪫�7~����}^��¾}G<A,�F��C�|���%�9�?�i�k%��k`��(L�rq���_�-u�4$�X�nt���PE��aX��9��0zn�BHT˸>╧�������ZQ��.swH�)s��Y0o�)�ge)���i@%�J!��~� �$p�H�G5+h�r�R�0vR��T*���GĻ+)�.������\�? ���h0o��iߧ%ptv�?6�Y�EhX]R��J{%���Jk�d��Ɲ�n4�~|U{���+c�䊑?}�[���㏃'ʍ'\�hQ�<�‹$��X1�ܧ?]I1̜,u=��Uť7��*j���A,˺rn�9��z0e���{;�A�x}�'"�E����<�z3����^��Uy�@�Z�g�$����!��V�d�Y��^�'�{;���1�~-<�֢���*��>p|e��]��Va��$[s�vLΨ5ۙ�c�"�
c\;��~80�q�������Ƨcf���Kh���$q$
f�6��{CC��1/61`#	����>��s�!2�"��"'봐+�{�D�2�E[&��p�P�rR�"�W��ϕ)�1\��&v��ي3����{8J�g(�1���1�; �D��M(�x�q�z��g�`���3������g	K�!��t��j��6-���=[#�Jz;�S���l%۩JU�-���汧Ы��u�9�w'`G
?�=�B�8�A��R4��2�ġ���e�Vﳶ��5O˼���%쬠uf���g��@[��9

[rg��U�fm��M����8����;��>�^���J�ʅ"\".�6�6-g'냨O������3��/yB℣��wp2���+��٧�p�~Q�n��V���5\.��2�mj�L%��k�=N���%$i�*��{��/M�ԾHJ�`������cK;�^t��]%H�c:��!V�o��0��?����9H�c���!�{��0{�谠���Պ+��'�]��/�q)��s�+1��܌�d`k�sE�8�a�g:]�c��x
�U����׏�eTT+�a���K1��4�J_U6Ѕ����>�'#!%�z	=d�3���
�ՋWS��w�t�B�.�ϊ�s4|�M���ô�֡�6�U?T�5��l�/�9��{*(@
'�VQ�C��,���\�T�c	7���5eC�;j�-V%��c��VX�p��,���k}�&|j���
&�-M;+�+d<zb̾}��e|�H*�&ϼN�%�D���S�R�|��H˔���O"����&pO�����7�g2��\X��|.��S�¯|��E/7ɹ�su˭��_����~\rL߻e�'?u��^|�WJ�?����9A�{)�2�z��K�{���K>
�|���<��+@�E��¡�h��&$�/Q(`K���j��s|��C�DsAp�
h{%�r��^Zt�VҊ�3In�La�$�&
/��«nӰ���5\0�d����j��!BvMuKj����P��Xh�N@�<,/��9l�M�b���,$J!��~9���F�CBZ�{�3�z�a��:����sU�G��1���4�D��
Fу�$��B�T��J��I+s�t��˄LXB����x�����lZA�|�=���4RP����hк���}��/U�ċ5���yE8�>+E>���K7�ZTT	�Ʃv�=��iA�9�͌�s|H�sP�m���Fo�ԯx��\jB�͑�Th?o�ע�H��&ijl�-�dԸX���^���~�QS��YյP�L�*t=T��RJOV�loQ#@�qҙ�ę�S�-f7�J8J=/��c�sR����{��W�iSd�������[�kP�0�����b����c��
"P�uA���C�D���<E��>eFً�c��D{����ۛq�̷��6�D��Ɗ.l!�1ʹO^G$�p�30�כ?�Ȼfs����w�����y�H�4����@�*개3�Jg'�F������>ʝ�m{`汇�{hu#������f�wr�q=�)`�J�K�[

hȇΔ���c��1��m�$�阡��vk)�olLr`���/�4�;�1,�6�B�_.' �Z;b�-EΒ���e8�7�{�	&�/�.��s	�/H:�Ӄ��)���a0��+�D�8��l��2)�bg̽�>�&�$��ַۓ:5�̯}[Sy`�W��.��a]�2��E�Q�
J!������-��8�V�s�_�ܹ���ڔ�p���Q��D�
sMT�f|+��ϡWT�kh�����P�0�Uu�Ϭ����.u���4��
��
��Gg���9�u��|P����߆A�'<��4�ފ|4dp���B^��L;<�i���%|b���D7A�ժD	�Bf�7>o��a��� f�n �]bl�!S�牦 ��h>��N�$������w;���T�P^�i(�,�
�9C_W�D�����cN���ݢ��d\�a#���sW<4���X�ՏX�^�ʠ��ސ>�샽�7�m��6�b�vIg���*f�H5��������׺3.*�1�К]MC�wG!	�Qnȝ6Džq>8�R�^���:'%"�ՕDd<�u�bx����>aNf�
��]ǀ�4����ƭ��	���RxVWsNTa��]�u�cC��L`�]�|�8����[g�����J�P`�)&�+L�E&�:r��jB�	h{�fT?{˭b����
��Z�����>��Kᣟ����'�s��8���I����C�o'��C�����4���;�^����B�Hyp���C��`��"8���D��u]?�b�Ɵ���?�&
���˭Y�&��bMO��زw��=�uH�3��B�[�8���`�P���:���u�[�c��}S��.L���[�&�	"'
����f�,gM�bp\ђ	7�y�P7&��ʷ{u��B��H�坩-F��cK˧B��o�}�ִ`.��t�W`%��$���V�|$�A�U˷#D��1�y6�l�3A@!���?���ñ��[�bD��'=J7\��9J�J7�A&-G�_�Lc:V���-�}�I�ɇ���;:�u��S��3l���j
,�]`���,���,X����	�{���̳��v&5ɶ�ixb;�X%�;�/�P��z���>+�s��FS�·'+��0&��`���BT��#VĀ	^�3�`%�Z�.$44�X�K�e��/ha8����l�O�Z)���)ބ{:
�?$Lj$�EI��I�	�B�����B
��KcŴ�($��2��8�����<s|�AA�"�D
�p,�ps�
�ƻ���f�K�����z��8d��ن�8�}���~x��b��@d�v���DǠ�8
�ɝ^ow�`wWe�����D:��;��D8�X�:�8d��nӎ�+;�>z���9'��>4�g�[ݧuO�he���Ϳzp;��5}��fI��u�<��㟾3��W��=�}���0�N�ڶ}��X+i��<���i[���ta�=���ie!{+8�>�.u�M�y�`�W�
�����Q���ϭ/�e��
��@��_���8�v�fIK�й�
���8Ӛ�b�G&z�0{�oM�"<=��i��
K��I��j/Vm����*0稦�Q��k �/_#�
A��̸{��"n��᱄�]f8V�fh�A��J�o��Zu���J�΢K���݇��S��/���i5VR>&|[�������EB8ߜ��?���a�����KC�Ac�SԷ"��t��z4oQ�	A$� ��F���K$}40�[�VM�`M�/Ս(����	�
b�X�HF�v�k(cQ����{�{=v����\���6��+s�~h��v�,.16uqSM��@9p��x�g��A��5/�*I\��0�����_��}p޹�7~�K����¯|.�p���}\yյp��UW_��~�y�ip�<�ʳ��4��D��Vw�z�S$��>�y�Wkr������zB��h_t�2!6?�D�*!,�;lK,vM�7(B��Q%�~���<�lQ���
1"
]AAEᡄ���Z�[8,L��7���)�c	��hK� �`���w�& �J=ʛ�D_-i�	0Gx�wiw��ѵ�;�$bX�&*/�5��g{I�����#@	-���>f2o++4Z*�d�r�kIr��SSK�"4�U���vD��v�i���%
�f��%��-�d��?�%X�P�)O�T��e��*��N0��#!�{X�+˼�(k�� ����1D�/X�v���p�� W�C�br�5��>��7���M.&��|g&�1Aʓp�X�ft�oGͷ?YGZk!H��!?�!�/���C�2��/%4�2�9rHU���KL����`�$�b�<���.؊�}<���Sʞ
�����ڬ����Y_�:�B�C
̱��C��$o�k�M8�hU`h�rfz7#���j`o�@�����/��:����AT2�ޖoaQ�H�<<��҅)��1W��D=�t�����La����LF�0@yF������]ZP:Ƥ��?}�p�'�*t�r
��^,�^iޒ��<�&�
a�2�	ۓ��/�<1'_ߴ�bH�Ic���0�dK]�
�2'rL���y������rT�|���g�2���Fp���޲�&.�u��ܪ#�6��ޤ�G�v�
�VS�1mS�q��	�V�z-�K��"�4Z!�����\�Q;

�Ӈ�`��ʳ�X7�lέ�T�+a4��h+�R|�n�len����f��hS�?D�k�FH���ۡN�.b�o��ҷ>���7&m��3?V\s�iE����'��-���>��y��e���W���7�+�v2G)�����0��*��t��MqH?7}��Z7��m�E������4g��w6h}q~��l��|��=G!�R��!�Q��?$_�F�&��y��eV��}Zr��7D> �S�r��򻞋���Q��W���~*�cSz��|&����]I��wkm�|
h�0�w�O79��GIxpU���O�y1��r%����32�Aµ�CT���0Z�`�4�t",8
D>�'[���)E40�P�Ƈ��J��m8�5�ׇgv+@I�%b��H��O�Ib(�tvw鑚�T/%�Nz{�>)�]
��m��2LW�o��pԾ}�s�^�,���go��s�}U(?�p���$<�����p<��G���_1�s�ȃ�<�q�1�
W_s�(�{�E��ڷ����.h���C�h�`��!���B�;<��pm{�B���#�4��-¹D�� �Ѿe��Y�0@GN f	�%L٫��qqa��GzB`�+?:�q/��)Dۦ
"@##r(b�k�N0��)���~��ƾ����*��j���pVA���$KN�/u�J�m!�d͖c|�n';�Vc�_�DL2��B3�g�����yu��P�y3C�a�5���d]Ű��~quRڱ���)�dU�Gi�*�u���<�5��+PlN��[s�󞳣�0D~=zZ~��-0���	T�J���,�L�U��ƴ��]��mj8��ʬ�L�5�άX���G��\���!pF)p�Zt%7@�&{^�n��%ӳ\.#�Ҭ�$Ė� �S���!�9s���H�o��{�l�\����=ḽ*�R@T�gk��ރ�s*��xe�Ί�,	�X�4��>�;v���ł/eE6n��z{����]�9!cȶ��}��-G*�g��x^��p�)s̜L	GR�Իb(˰����F�E�&��d�R���~/�U����E����3�b�m��϶_r��(�)�ţ����L6C����^�9�Ed����ΰD��[k
PZ|�󷒍�p���

��)��F�ҠM�y^��,6[I#a�� ��i����R*8�I�sGi�	��ƑO����f���J�k�MC\4[A�8\���&����˫�]��נͼ�/��v�m��m�Ç�?���ۀF�`�o�<Dxp� 5�NU�אx`Ls$�0P4���v����o3�e�s
��͵�ned�"JK(��wd/Il�!]�l��sAo�LBm�h53Z4"��˜M1:Wm���5��~���6h�
m�uM�oI�,1ac�ö!	�� �D9/A��q��9h-���uP���}Uh�w8�%/��<6�K��N�{sn
�l:��}s�\��.�Cv�8 Ǔga�gq7�e ښLɳ�Te������INW4CE�ݸ������s�ۆq�i?�2h�������P7�l`2�Ԡ�ק\��ШR
ٲ�2�Q)���T�����N[�WH��I��H%�XȽY<T���G����u�1�:���ņxuH�)���d| ��cr�M4N��D�Ac���a���^W��F���6�C�p��t����+<�!�X�1�lf�9��\aK��;F��L
;�С-8R����G�'^>}�Ւ�{��;�|q���b�T�'��-H]� H��?����%�8wn�H��X�W�����3�ll��S���ù?x�PXx�5�`KK��H�~����*{�^�9�?Zr���n�J�:�/ڙ�
�m��ʽZoӷR��Vh��(�4�Ѳ$��{H����{���x�n��?\R��L��c�_o���K30_h���0)��5M��z2z��~#G�os�5r�TF�T�ʬ�ѱ�YiY���;��A,ፌ��X�Kp��d*}�!��0DkF��$m4:gs��!�̨2X���̍j'�u���i���'�zN�:C��+�f�db"<n\*��jNi}��sA���,��Mg4}Y�Ǿ*Kz�7䱆5�v�)�n}U���'�9b���'�,リ`��dk��DŽ)���.&�>c�=�#Z�P~��M{��n�xW�Fynh�{���+W��%�&�/�h�m[�.�~��ia��DeC��p��
	3f��{�v���x#�B|oa�#�&�A!�I�7\��r�x�R���K�鄉�Ǡ��09f,�,�&t@�KË�%To9�� P�lj���
�T;'��7L�݇b.�={�V=�2�J3�J(2���+Xm�^S�ڧ�W��}	
f�����"������o���i�\V�CM����1�)����ޗZ�鰡U�R��\"�g��p�O�g�u}I�=_�Q0��N��a@moL���'�;D��JgK��V=���l�Wk׋��l+��Q�t�P��Է���1*V���
��X�	����U� ��Ũ���K���&إ�����f/{{1GX$�� �v	���5���h$;9g^/�����Y�9���/����d۹g������.�5;-OM?1���X���L��C��<;�󶥯�GM�c-La0��ņM����2����A;��uQ4(a�����#�5<o�_?RŌF��T�ws��mI"~P�Ñ-��^1�LE�h�pZ�Mib�b{�?<�m׵ca:���oH��.���(��cނkē�x����+7��A�x�����;��rڠ�0P���"���p��d�l{�	`��&�3�語@0��'M���K�ޢ�͊pU��(�	�����;Щm+����Z�%$!�GQ�Al�|˵1�VϞ#M��6�5Eb�e�ƓD�%:�
@��>4ͳ<;�����c��|����)'���Y�;�Dz�M7�&7��p��w	��?(V��:fMX�#��XA'� ��;�a��,7���eᔓN��4Z�j�3�2a�?\�a����ҭH��@G�-�B"~�Z#d\J�����%*LDqn �N80���p�-� Д��p�3D�������Xl�EuCn��
�O�%��M�|�%�]�>lD��@�f">�uZZ_��g�V3]̱�N�кa�Uw+V�0e�b£b�=�A��w81]��0����$���^?:�c�cv�T��LH��ݺ++Ws�(�pV�g�3oGa�:,tf�<�>�����f�s�uVَ�S��LY9���n�SR�)^�����g���H�Q��i�A+ޫcY%��{v]���l��Ux��P
����u�8FU�
�ܳb;o��Y1�r���ZƐ�7	mC�0�l����Ȑ[�4QF,�u�W2�(㿈_s;�L*�'�L���ZW�-�J���H�><n+��X�l=�u�Ä����!�S����a�����G,�ևF��_z ���	��Tv_��w�FY���Gs��v�ڑ2'��N6��x֦֘2�4b'��
|5��"�o�%��lO��D��8��������5s'�y�~R�^�L>Wf�GϮow������]�Hs=������ʺRؓ�غ��-��[o�x�v7�h��Z؄��U��d]��_B��y���
��t��7^Tl��ޣډ�q=��]�ZZd�cQhM}�H�p�^壬wF`r#Q��U���Z��+�vf��*��_�s�Eşc���1:�vC�Ծ�9�;����:6g�[�P5N_��u^���y���ܔ�����B�n�bmn"����DX��.�	�c���1k�^����%ձ�
�^�/Ǯ��;]���o	��y���*��ڒl�����QG�3rKph춞�~̺��3�`�a��
�v�}��;�;�4P��O��
����8�ױ��ʐ����/�BX"F�]Wh�҉�C�L��
�9�~(-��������&��-�_W#0���q�$b���X�N}f�f�sm�>I=j_�PU�`[gݚI�H~�y@�.�T�0�`Iy�"���{,�\������=4����/�FFB�v�ڌ7+Q�F�D��a�]�xS�yJpB:^�2,!��D��]��T���ɢk��h�:�ת�h�	sIe�v��^2��j��B��g�q�{�}��]
g�}VX��֝u��p҉'�;�>In~���
��\z��ছo��O:	���Z8��ଳ΀#�AR�����rx�/��$<�˞��J	{�؋
w�q����‘rx���Db�	�'Y���TYa.��LD+	w�A�����it�K(V+�����s��t�����W=8����a&�e0(�@w�g�˓�c���蜐��lfv�-�4��EeZ��oQ>�Y�q� +�glf�#���EF�V���;��ӒB����Dr0_�eW�$�额��0[
f��~U����JK�ϼ���ٹ���[
�V����,�ר/U��7.�r�I�+]Ʌ�V?���0�I�D;>&�
g����}=Wh��-it��Rk�k��9�]�a;+ov�^�.̍w�Rd�q�6wsg�4L��
�^�nֽ��<���$�n��$��+K�*J�{HF
oe��)B$O�)J<U犑��mDsR���]@n��V�h����Ŏq��^���%���E�e�4���X�Gm>�W��ՕWWȄ-}���I��{S��y����x�9�Eh�;P��a�3�,\�w`色c>i�u��OCf��$狨��
��
��~�Y>m���*�Lņz�nv{$�
��W�L}e}��Y�/v�Y�?7�= F=W��
j��pr���Z��E;<9W�u$�k��^���b��xo�^F,pᜟ�ڎ$<J+���"��<�����xF��F��>�jp��x��l���V��b�/�{��߮��B�bpj�>�זZa�0���~U�o�ۇ��(a^��P�o�N��,��,��20�����q��vK�p���a���V�c�4Zĭ����d���_v?�%�N�(-C����o���rem��þ
Xln���7<A�B�0�;�����єP�5'$���<#d]��[Lc,�Q�6��hf��1H_;�Ѳ\ikbg�u#��>���}��;q�`���q�ݳ)��9
��:�F������렅I���KX�<�g2�>"]�lD�j��̛f~�=X��б7�����ٌ>~/F���̇U�]�VwZ'�)��r��?K+�:��ȑ����8�-�~w�=N�V�"���XX�F��"0Т� x�1�d�S�"'yQٽ1б�6���@�L�RiԩF`�yX��������]ka���U�`m]5�Vj=�W2�a��/:a�Diy�b}�'��`a�G�{�r�I����G=r��z2��υ׽���7~����}���:p� \Íp��>1<s*�2(@>��W<����O�#�Q�!���{�m�x7|��O¥�}J���~�"y�S���G�(@�gQ�C,���]$���0I�If�<��<�/<	�֋&\�B�o�j���G�DYlj�w�H2�i񡂚�&\WE���2±�<�ȁ`$�!��S�:3�M�'��@� �l�"#�W�̆_ʿ����ʓF�A�s�$Q65��,�
=��s�[��`67����v�7��g��͝�Æ{��3RZE�gF���i64���P�	`�#0��V8�D����Ω�����Z
3�b�g��(/ă�K`���^[a��A�Cʉ[fd<'�f�]��F�+��5���*��j�ɞ|?%�8�T۟Y>�
�5����w�lq�����G}w��������`���w�̀yP�(�������`�7�mF}}	צ��5���O��[ۖ����rc#�}��~�P�`���*��S	/��+>�C�5צ���83J
���g^��L����B�4G'0��)�Ԑ����Y��9}4��2�VE��sK��$��i�����F֬/`�b~�����>V&`1�Eo�olO[��Rc�,��2�>��hU�G�3HZ@��zSvdh85�9>��a�yd/5�O�ԉ�
n����FS�h:�o$$5�Ž�V�A(��5�Cg��M��X�_V��}��r>ڗ�9[*Th�S���y�H-������$�m�o�1L3���,p�kĕ~g60mܣ1��0?a�NˇA��֠��T�Լ_� �W��b�5}�e,���ĝ�t퇗X��2�~�(�`��I�1)�B���F4�\�*Jf.��7�+Rp��o��6�4}(9���݋�囫|�+l,�G8����QxSx5&�,�n:���@Ϊ@+/�M���s�#�e���o�<��;ꨀ9�xWƋc�`{3�4��no���Oſ��&�v�=C>�޹a���accy)x�I1~�y.tD�����qЬ��
��v�B�B���g|�j,�8z�>�9/)+�%��+��ԈW������nF�\
��<�J�֠�Yv]�%Ӷ>��>�y!���-x�i64혷��di�:���,F!��*�H��#?j�B�L�����ƒ�k'�Y�:ɋ��(�#���کg�7�)[/e�DՓ�=Vr0�8���9�
�C(d"k���>�`�U��X��n`�d�1v� �A���W��
�!#�� 2�fC�L.�Ϲi�y#�<F���&Ã�d�q%
�<
�rʠ�x�s�
���7
�������8���;y���?�YO��~�>���?��=F�*3�`Ϗ3�8
���Z8����˟�t8RL%��'>y9\���q�y4\s��7�>w����>�9��Ar�j
�HYY���� ����	�D��|=	�(</��y� t>��} !;:'���Z���Ԙ�*Q ^�4����6VL,���1ٳg:I���B�i�̧�E�y0"��Pi��4�gL����Z� �цř6U��
�{j���nsQ��N�|9
ɢ���y�r���ÕYޖ��Ҥ��D �	8�U.�RG�������3#� ���,u㞮�ڑ8]P[�šǘ��	Qy֒.ӈ�X�@W��r�]�Q����NC�(�3z��:)+���I��L���T���y�
���8
�N|���'_�8x�S��}�3�SO�#�o�|��k���\���߃�n�5�#{%3L��Z.=���u$k_j�i���-�pߟ�Ӻ�=���B��k�!��̦KD�H���n6��֜��ၸ\�tEf�hB@�B��S����Lz��8a��x�9ܒ�]�q�]�O�(w�wB�o:��IFq"dpE-�b(������y��|w3]�%��l�4i��K���Yo�Ug~��d8n\�%��5�W�
�E�b�b��
����H�f���LȆiY�GRV�J��0��.��BP1�O�=�ms�]��hw�F
�<���0h޳�E02U,��e0G'f_�>�J��衲��v�h@�f������ęyq�8��`^�`��ӽ����a�Lߠ�1nG4�j���{��F+^�{
��pFd�>���ҽ���Yl�a����
���ҁ�I��o�ֱ�Nk�˚����T�c�d�I�~7�a�
ؓf�3N훵��c��%3
����?�i挔WN`Ή�����|�cK>.4�(ޗ�g�5u���	
X/=L��4LtQ{����;��J1�@0�س�:q��������Q�N�X;�	iyv�<OPY����ż�u�d�L�!{%�bc3�q|��cW�!�r[���B�{�YZd�Y瑘�����
s-?"g�D��6�}��G�Υ���^�GQ�PP�Q��Q١�n��6\+�A2�Q�|����R�c]^_C7�*�TBJy;X�;
���J�B�vy*���^Qg*�t`�!A�e�ۜ�l�����<`�����^�!y^1<I�M����q?"�D��f3~fm"�m��<����x�b"h5p}Qj|����n��������]x�3���8�裃��s�����?-Bo�%�@��N<�xx���{)���Q��χ�o�,��/�:(>΄�<�	p�	'�u�Nq��?4��B]U	Ԛ �h��
����	P1�ҎbT+��I�5�m�P��	F�����P���'d=����Ex�֙�Ƶ�1I�*D�ؙa%�u�8��h�kE
�� ���m��
���NoC!�VU1�C�B�x�:��OF8�G������b%�yfM�������=2��d���_�Lc?�yYU�Ǚ���l��N�C�xf���Xy��a�t�����˄�D9i�@`X��u=z�ZJd��й��"��Qt��;�T�+� X����۾�D�������8x(��<TCg�:���c���_����/�#�o�\p�y���}%���^�����{��т31
�`��ǻ��
�\�$����,�܂.Cn-�Sq�J�\ّ��V���C�a�M�?�V�[�l����^3?	���������v!���mN�ɿ|�</ZbF3�^f�&�-pͅ�JྋP1<!|MTq�V���c-���g���m
��H��jΒ�U� *:?�5��s2�]��N�J1w�+�ѕ�M�T<>��=�;.A�����ÿQ�q<lhUjϡ��)�	F�'[�����B	��`�!���V��}R����_����U��5���I�.�o}��o�Ӿ2�Q,_W=i����r�fs�$$�{z���χ����6j�v��+|�Ͼ15��>`}��ǁ�p��U��Ks^�4���(�š�����v�v�}�keD�T���v]��w&�����+g��t�r���6�Ó=O��V��?�r��s���z7Ia�1��^�nAo�%$9.�ɨ�i
�_�r�l�?�?֝H�ɕT#z��ۘ���(���9g��0.q����|��v�IV^Pۭ���LZ�%h9�a��c����f�a������?�MgS�ͬ:^�Z�-ݲ�y8Y��p�����D��o��"��$�(Dն���"�D�KJũ�;�Zi�
�����l=r~_rt��eiJ)�ˬS/�/�x!{Dy��#6��B|��Ș\$�!��x̮ao�pr�&�[��q��rB��ɣ;i;���θB��@A�z�)�IZ�
y����ֈ�~��O����Ɏ�Ӄ��`�GOJ�6�pU���D�T���(J��*���ѵ�6��/����|����ɳ��2�.�$��mb� ��B9����/{	�0(.��������"���(s��Y��k��q�p���<���g�g��)���?u��p����3��x��Å�z���\G�9g�Y\�W+�P.~�<D�b��@�-zUl��	��k�)٩@\{#�4�*'6�RE�J������islM����#�b:�m���#(mH�p�U��1�S�o��������p��%B���Ɠc���#�i�hyq	�RZ�#�*�'�r6T.��NO[��Ty��!T��x���,b���2��-f�����A%��L,�$�u2���5�1*�Ř-�4�|�-sO���ҿ�)��$
���%s�	Q۷��j��{K�)��'e/��*
���~FWM�ʧ����6��B���5��$]�BO�V��ݙ�'�)������_��O��8��/���/�:x�c?�S?��{o
�t�C����z�*�.ш�����E桷����$$?+��,��)��a�9�X=����.��+!�~�<*���)�r����4���-�Z���P6��C��oˡ]��(���aPq@)����`������V�,��ąz�`���C��J�0�d�k|�
�2,��'v�Xhj=��'�a]��{1Q+J�):��6%.���5؎���J2�o��r=�qMˬ7[��g*a�,�^�9�d��h�#I�h�5���2WƂ�v�V]i*8q����@��zW�*%�i[���e��<�x�_5�L�m��B\Uي%�c\�8j�����~C�r$�'��VT]�� hi��x<GKYz�(^��mH�k��>,�~��e,����D���c[�]�ɫe/{q��q?��1�ZQs�O�4��W����2G~K�07n�[�������\3��9ED���=�{��㎅큏��}qٰ�� )�-���9�W`�L��ʷ�r�
��ڨ�ɥ;�e_X��W:��6�w�5J�"�L�q��b�޷@���WҠ�xk��zۉs��$���U6�g�7&&
8�9g2,�iqK�>`.���*���y�b��m,$�מ�
5�ކ���lr����M�[|Mm~�.�p�R6��č0���-�N�B6ϊ��Ӭ���%3F��puAg�1�r]�{սSy
�7/�S��*¹�Om���(|:�^�{��I�j�5�:=���NU\����jj
l�rQ�!a�lϩ_	��-,��}�
����'-��m8ᦐ�l�c�L���PO���f(��g�t�%����W�(���^�^��q�����A+;�{�y=���e/~<�����\w�
p`Т�i�wY z�#΁�;.��8㴇����+~N�ˇC�\t�p��G	2y�S��<xH|V�Z��ź₁�1�҉E@�D@��=Ѭ*,�.�2
�-�-�	�`����*D�K@�+mv��B
�y�ԣc�à	�:�"�+���n��	��(A�Ɯ���N�5��Ya�9��>R����/*�5zV2�Ag�䭦�Y�T���4��)PwL�r���;��0U4�p�]��#S����K��kB4mۛ�pɆ&mvf�B�Tt2�nΈ��n���}(5�����nɨ�WQ@U�lJ�n�J�B�^J�9Mk�ڃ�)�.�!�p4�cJp7�/�����9A��ؙW���D����g,]��77�X3�`�`�\ ����p������&�|��vݑ��*��H��x%��o�j{�a8ן�i�w�K��.�Ȳ/�E�[��7!�(�IH#�x$j��&��Ex��۰(J�7��$(,�Z�閔��f;e�:R2ȥ����,�ތbbl��a�0�6��wI���{牨��n?�p��L<=�"t

�Jwl��k���Xs�ݢЀ�o
�={UQ�鸭C�悾�����Y��C��ֻaaĜ�p<-}��	5�|��u�����kKEX�}��0ߤ50.�s���¬��]:��q����l���2+� ��׹��֭xڥ�[�VN0����X~�1��r�i&�]}W�!���<�jһZZ�|����۪`*����P�xS����<u���=b���������b���V�0{�PҒi�<��Fb�*5j�!��v�������X�k'����]{k��7K~��F�X��w�Vu�99�>嬬�g4\AK�>�6Dm�
ݑ�e����;[��i7����Zzc�A~%���\�fFJh
�(��8Dn�+yv"�O��`�ns�1�1�k��_�R	W�磅_����B�m����^�0��H�e��۳���� ��cH���zz�`Ч�&++D��P�Kh�^�A];O�\]�岶�S�K�����1�VWr�A����E�� K|�hz$�P@QR�rx�`�@�1
j";�i;&��v��u���?|� �{Yy�FW��_�(Hʭ(��V&j� ��fϚ���R��4ʟ�uch&�ŎE=��*�؄�A��P=M�RC,.4Uq]�ߴW6�V`S	Wh%T|hv�� Ծ�G
��;��­��$�e��G��Gʃ�8��λ��
�]�)����f��Ţ�]�x��+W^}��h��ʐF5���i�+��
q���W)DP�9���`ဆ��X�]��Ijy�16Y*a$,�� l2+_��\q1���`b�-)p��oc�7,K]��#�- =%�[W��.���^iߤ	b̟ԾD�p���Ϣ��m�JuA?����6�E#�*a��l7|���X��'�b�1�]�"��-,���PZq+p7�~}GԊ�n!��V�eD>B:���>v�S�AikE劐J�d_R\8%�p���Ħ�B����G3V
�Y�:q������e3\
��8=C
��҈��y6�׈)��lx��g����aN��:9�4��>=R���_����>|�'�.<��v��b�f�y�O��\�K�E��<);���9��z���[��Uv�S�!���p&o� �zh8��ޓ�X�۰:��a�ǡ���pqxI�Ϥ�~�������Q��i��*�I��/n�� ���eZ�*�="%�I�G@�苆����hp�+�B��"��fL�4�9u��"a�|0_�P+Pdh����1��=��qg\��B	�w4)�c�V<B�k8W���.��wz˅7OV�Fe_6�[�����>g��qmS3U#�z4،)k�M��Iʭ[�xkJ�g�JS�I��N��r&��?�w
�h��8�B�������fZ�����Q�C4���Q��(>�+���dv�S�B���U��6�ó��d��{��f��
W�X���a�O3�CK�
�0p�7�ф�ToB�����v�ݍC~bS�#Xhyj�k��E�'����L��[G���f+�\�2��'-��<X���L6n�)���,d0�W����5(����7o۽ 4r�Xy�B�'����hX��䛇��������xۻo� �����H�B;h�
�˕)j�����r��<�d�J��PH�p�
�D�9����1�\�ա'~S`�0U7�X�!�(;4�P�����6E������)%�F�#�\�E��X�L�Ϊ�ض�2z(�9�K_ɔ,��8]F��bw����%�S�$�o�v����z&1�)��|�z�_K0G���z����B^Yh-s�'�=��"̖�^J��xG�.��kS���?�)G����r2\x��e��bmx�'?�B�<��;%W�G>~�(�B�a�ǡ�!��qv�y�W��
�̤�� �A�x���2��X\��`�,b%q(���!�T�"�`Ľ(�8�`�S��!!BD�)	�Bu�1o��2�hZ�x��	
!^Q�+qI�(.Q"�o7����$�]]{Q�
>³�4��3�-*��$�����%5��Dχ�YY����E>k.�q�(����'�
���1�0'
~��fk7�h�Jp��
������^r��yU[�ر&�6����XƆ��&$�8��������x#DBQ��w�O�Y�&��B��=6�h��İ-���@���w����ڂ�+�^?Rv_��g
���.�BSF��lv���`p.jl����

ջ@[��)B�E���˲IԮ�@�]*��q�5����AK�o��%�5�U��A�����b�ߜ���X���&[R2�J7�R����&xivD[��H��" =�Cԏ�L2by�ƮBp�*G��4�u��nl��P�ݱ����&}�MBj�+U���œ�{�0~�7��2=B&��X>&
/����V	U 
7�b�v�1��#4ܪ��4�������I��@�h��`\S��}a��۸ߏ���h�,����8�B;;<4w��[]���ICP�BPܰ�G���e�/	�`����k]f|1�9q�#;���Stp�7���|g_k��0M��gpE�Z��S�Ϥ�a�jeA5R���t�5P��+��vF��O'F�/̾�=_�4���S��̦����̀��Y��)��F��ᣴԶش4[֖�b|\374���~>���0d��	�Y��	5�m�a�z����B~ҍG	�
k?d)����QU�[��v���ۛ����PBY�f��]�FF�$���Z�\րi�{�Gp��Ay"���tλ¬�*�س���+dhc����Ix�=�8}!��P��&��ahHNkC�9�����úb�_�u��p���]
��t�)B��q(22��NQ} �F@(��:x��%��Ʋk��I�c��*�J�zv���c��t�	���qѤneS�M �
�J�
��Ŷ�����ʎZcz��Se��O���(�UP�&D��4��'7@��*�"T��gaIRbG��;�fM����$�:��;J��h�j��#�J��D��N����H9R�圳ς�����QBS�_���p���‹��+��Od�D���s�y�i�P/5޶3\���{�����M�A$�s���
D41+i���}���Z"1Y�=je�}��`KJMbK�|۽Pq�E������{{�b�@dx��>�D�+M�J,},�"���U�b8,�j#���$��J���#�G�}�D�~jw��r%�Z�R$\��{�[O:K�0���h+�y�| 8��?�<�;����z?+���1~�&��� X�???�V��%�m'i����4_o��x�D4]�J�Y?�m2i���}S���v�{c���Z
ぃ���Q}��(���_�|�.�/F�0�I1�zC�<j���x�3���W*��R���@�Q��ـ4�ͼ���'Bm���_�gl���9���ͳ��Ȫ<�%��K�<���r���|�ʁ���VK
���dе��`���Qpe8B��j>r�ӟp�����2��#��^v&�����op���sT�%[AZ e�2ߗz��[J��^�oБ��0����J�s�Ҹ=MFZa{Jnź����s�l��<<-�PiT5��F�,���:q��l������|�)����XiEcЌ��*��(
�Q�ob�M�p�:j���U�>.^Y�s��[�#A¼z��g�n��U�1AʘK8�2z�=�ފ^�1W��l3���:Q߁�z�rvh2��a�I	���?3u�o����jv�Mʮ��ԫ�rVq��F7�M��٢���L�iqu�H}��gW��=㯆�;�	��::�LQ����l�N'��JC���P��v��k1"��aL8�P@��`����5��0Ϗ�5nS^6{������v!h
��"��}<��Pʦ�XZDƑ�f{{�2i��K.1�ud���t�9����F��{߽��~��8�xؚB$�b�5s2��!oZT6X�$�챲�u@�BxL"kc��HxP	չ�gr^�?g����ik�֯�n4�U{�8�(L

��6/�y}�3�{Z�E��	�
J.
���P�U5�R�eG����Q̻�h���1��v�a�n�uό�}[}�BUV�rB#�N �&l�A6A��8n�6��ׇ��\�ۋ$[�)�0�*=���
4���lX�Q��>}�Y��s-[3Y�֠V�4O�)Gʑ���|Ĺ�z��W\	��r<�����)�+�vc$ۻekR�T��uj�u,ȵ���]��0��
�8�i����ϝֹ@��$: V�s��گ�	+��@B�����#Fxa*�plI�iq�kl�67�4�@C(��)u<~�0�LB%Ӫ�*j!�s��QzL�|.�O������~omY?�/j�~W&b�)f�(/4BQ�Ь�'h�mɌԹ��4��x����G�w��B �N|�uV��GU(R��R�$B�Nc�*m�/��H���+�.E�7����M3���Nk�ό�7v8>�rƩ�����
@:ٳ�G�r��B랠��̡I����+{[Й���s{��<c	P:/�m�����-@������Ez�`W�ۃ5W�_�n���L�3���{����8��&�O*�f$&\".��m��%�|![ۖ/��0��
fQ�`d[<ZYp��u�-q�xE�R,`�/�czË���4����|_�ML��u�:�u�H�4�e`���~�۹�T0&f�Z0�k荘���vSv�<�Ϸ�� gء2\�'Dz���V�q4I5hhzԴ��vU��m�����`EK�.��34~rfL�d%,vZ؝,���I����|U���oU�[�7X<[��V4���TK�گI/��8TMS���H�Rv�ipE�
�Yޟz{�oq�G��9Vg�/���R��sYME���I���9h
Lv�k��-�#(͕�X�k��X~����7?�.٧���@?���8 ��Q�fu}@�Mw�֠X�p���cb��t
M���?���“���g�+ϖ��Ã:��tp�}���J��2dS<j7$4U�sd�
��!��@�c,�Sh�
�!E�A1�`�����/�	6�`/
����I�a���7*kA��,D/yKjL�6�g(�W�Ř{0<A�gG�/�s�ǵDO
E�i�2{�~5�0C(9��c�pN����:�@��[of�X����KG{�r	���K$�C5
����
�mM]�����ׁ� �k�j\�u0/�0Š�:�䡱�9�)>��(q-� �z�c�&a~M�V�M7���l)Gʑ��rܱ�I'�V�G�n�Y�*@.7�H��fà]�Z�����	��G�O��y\t�x�J\��Š��"K�]���<FjW�:�2��W�'T�.�b9a}N�n�V���
D؞�YH�k�AK��?�%���lN�M뢵u�<����K�\�![�%�5v�cV�BX�>P�v�ǃ�Ѹ]\ٯ���:å�\g�`Y��B�QѦ�F���X��R�N�"E�V����~��;��0Ϋ#��]���XB�Ħ�n��ɛ{�/�%��Y;[ImmC�dL��/�Hv����e_������XU��[8SG���GO�\?���8�4j
a���`p�f0�����Z*@�ЄK��T�%�hܓ�C›�5�-�~ZX�������ؓ"�d�Q�\$�������}�*����(H�s÷�{H����x,߆;�9b/�M���K�{Ŵ�:�u�SU<,��l�a����t^y�A�QC��,,�ɦ�&;xpi �o�vN��Z����`�]�	��9�ŦyԬ�%�<�����������h�a�Ҫ=hE/Wu����k�]h�^��mu��y��1�	L��SZ*"ǔP
,b%P`���T6��)�F��/ut����
���^�����پSi|L{�!%��r�6i˺B�}]	��ْ��G
�|�>�}�	VmyV�m�X��^�vuG�4�{�yŶP���O�)d�{5'�c�\	X=ߙ��x�t�]1\�|7�#y��Ӑ���$��fc��m[;���O��j������q���ǸV�{*Sd�7����\�H�
���sU�*%V���֚�f�Q��a>�L�|�(AL�ʋΌC0�H;ZR>��g{�.��w��
���phP��7�s��*�,���4����ؙ�R�0r8m�F��9�<H]Y4ZL� &�0%>��F�,�J���g*�է���c�0ǿs}&��G�r��#&r�W���vbxTT�n�)��:.�G'� E:�8e��Q*:��,�s��7�bn�&�+A\@U Xh*V,��=�p�pB�cQ�Уk��f���*6
�L>�s^6i�lUv`A}(��H9R��/Jy�E���N<�?�88Rv_�jQ�+���g�.]�֕��z�,��,+ǵ�����P�O��mm/��w�ܰ��R�pL��*�\������vF�#K��d���U��/��)п~sd��D��'��*�'�
�smi	
����W���aYM��:J�E�����7��o�>iC�Y�.����֔:a��_�2�*�0�NE��]�`lB	�Ĵ[?�U�q��`��)���\�R��(��[*�Z+����u�u٧�#'����^;͢>���OI�W���t�%�۳=V���`�0�n�n�os����*���	E����)���!4s�M
W
���݌�B�:)k&�3Ƚ��o���GҨE���)��I>SaL'��"�
���*E4l�&e�C(��Ua��y)�(�Ϩ}bZU6a�8����?����^��	F�:GK�
E�r"*xn ��.D�6[A���:x���d�d�J_x����DH�oT!U��%�c��2Mҁ)74W�-�p�{���r����a8ީ�ICyl����c�Gr��:�z`TUa��NH�}b`}q���2_�B��߰�9�gg��χ0�(��Y��a�x*N
1Ky��J��`�����xlg �ތ��,:��^�tn�]{Zћ��f��@4M4��L4t�
-z}NT?�Rl�{�Ԍy
g��x>G�U~[�@���f��K'�n�1S�"�vy@���l{t�v��s��h�v[���u�<!��@��u��{���0Y�X�	��e�u������r:�_��`{`����H-q!��[�SQ=
�`�f���M_�4ާ��x̾�u/.a2oX��l�F>Q�����O�l���5,e��2=V�f�d�c�@
C>��^Br2-!99L	��u"�Sp,5S��{A�G^t��w�i��`Y��:p`?��ƪ��<F
�����|����5L�U�����z��>)�D�*TIxc뒇w�[F^���9e���B�kDy/��UwS`��<�^����W��G�=��V�p����=�$P�ϼ=�h�]�'��K��x����X&F��
����OBG&�y�F�<y�ivdu:w��xW�8���NEy�딦I
N�M��Y�)��v#�H�e���G�ߑrxE�C�IM9\�b�B!"�
G���C 9@�Q�Ϲ��yq�{6"���M��wTH��(9|XnF�.��s�0vlG�4G�l���˒7�E�����A�e�V��<�co�"�<�[�;���z�{��]IU۳I!�n*oC[c�Y��-e��E�(��1,����>PeWL]�:�au�T�#�u��v{��x��p�*`��̌J�i:�FwZ�	� urD�e�!�JK��X�E(�~�3sL��"礻ƙN���Ϗ
Mω�9�6[��������=���z�����9�1�L+.~I��YX�a\qmn�Ԛ���Mm~��p;�.4j�-�����.�@�����s�;�:4���K�ׅ�"��k�$�8Sh�W�����;�>���2ta޶�
��u�'�x������ϡ]V�;lS�B#��W�
6�p� .D�ݣt��F|����#Ԗ�yLo[�����
X�"ԩ���PFh�ޕ8<�`—^,5Ÿ�Lj�cw�ڮ*��.®p��m�X'x�֬hb�����9�xa$˘�`��=����$å�5����,�B��x`pU<^�J�Ή�;p/$h����k'��G;>����+N���3��\�TSi��1����h~[�6+vHJ��oh�]N.bz�ͭ)���|ǜ�Ӟ�N�g{G����h�=���g�B�2�)�L󏄢@/��1h��Z�1�]����[�)�Erߣt��艹��_(�6T5���G��:�;��e�x���<v�(ᗐ��:�(:}T�QG�=���5�c��}OU��Oh�Cbhq`�1��'9C��1a�‰���h�YRC΍�)�Q3y��Br�<�Go<[_BWoS7,�̫�q�+�t- <v���wn��ٴ]
��	�P$YZ�ޟw��`E@�J��������5
��;<ɶv5�*Z���P��F�}(5QU| 6FQ��_�[e�s�ɧ$�D0�'���6�y�2?�|"��C��f@��\S�XX+ɪ�c�ۮ��p%��x�t��˱Ģ��g������>�.��#�H9R�Fʖ$(ki4G2��D��!/D��b�PKI>�iV	L�,��K�~l���wӈM�V�ca�$�ƴB�Id�N��=���]p�����`K�J5LM$���
�b(q���G4,5�V�
��������˵��@�Wr�QЄ���م3s�7�IS�|/�N$�'���]5�U2_&�Sfh�[���j�����qt�� D4"�yf3Ě��%Q3b@��p�^�1�,UȄ��м�
�.��-,t@��ot�%�tQ�&�|���J�)�ݩ�O�XA[ZӔ��
�g�
��/c�$|��p�7%�-�th�BY	�g�m�1M�6��/A�jt�FK�FS7�{��R�<��l;���Ei>{}��y�S,�B���A���a-;~�`N��0����!6ȢKX��L��f�p�W͸���>7V�]�
|W�%�1fY<G�ۡ�$�A"�q^�8܆+,̖{�,"I	�iB�d^�zsRQ��o.�_ݦ���53WaYgʠ�<:X鰵Pk͍E���鰔΂&��uĔ](�)��LW֌Ð���&P���;��q�М�Ow��B�I�m��
�^wN���,��1���֚�����c-��ģv60q�h(�����`�*
�%�zn�~��,��
R��=uI� �(T鸏S�;��E��3���#��^����~�}9h��]P�S4u��
Xl��[��hY�iZ/̌ZApӏ��֪���y�Y���$A�D�]�폖�8L����O�X���9G���.+Km��#߬[���LK3U��J��'���2�8q���b�F�R�ʉ��[њ��fHO�wWο�CA@�[�S��
��_+ �����P��Z�dϵB`2����Ql���f�9�3����0�����Ra�g0��gC���RDH`��<��̸�C]!L�e�:�#�6_k7�嬗
\��߽��'u2��'$��&�۷O�������=bZ�k@��Ƣ�T�p`kˌXr�$d0Px�d԰��{�n��s�a޻K�r�m*��b�����^'~�^�:B�*��CC~�p�ݏn�6�	�ӓ!7�G�R�vuS��2-����s*�n��"�۰���@�C�װ,P��xuߖACN�=�cnlbɻ`�3�y>�<�iP=Kh�6��/1h��"��L��'얛�hR�J� c@��:��#�H9R���ْ�F�=:����x{tb��7X��YR�
!�fa�XDpB/g�wR�����۽*E*��/�M�ҫ��_�!pF�r��$DE�2��䘙��PN{�!�OC��b(�M!�F��:�� �(	�D�za��
#fL��ɾB��
�!�8�l��.4�{5f�+.,�bo�c��2o~�gX�F�X]��z_��Y�� ���?��+��Q�	���˹"��3ގ��{�����]@���������2�$���N-]��1?��+���yq����
�AB��	�en�ۼ���~P�t6~V���3J���s��|ɕ/�.I�����<q�j D���nJ�x��j�S#�z��ac�y�ՊiZ��'����ۣ�����e��m����'`TӮD|v��Pd��[`�����(\z����7�����.J<?�{�����Βk�@V�m0>�AY@*�[u�����ǹ�V�n�ʴ+!4�z&������}AܾE��PXKãF�
#F"��E����p��B�[�9��N�D�Fz��������c<��F,B�*�ʂ+{�!���4���G����^)�;��:��
�0����S�۹��髂k�(�`ۢ}�4��}�p-{)U�����F[����"ȇCl���r#`>�\E!��ڷm[�.��`��ׯ�nvR�w~n���%�J~~�]uÓ�������!�����d|e�V�5����]�����B�7Wv��ۚ���5�z�u�*0c�0k-X��)N�fJei��~�:	a�?��T�I�_�IE�튠��^X.�Cl/34 @䦨|Lӿ���`vA��R�&�ΪӞ�|��ojT��
��^	���($'��P��wQ��v�i��e��J��a��#���i�L�y�R�@ԫ׍�oE�0O �*��rM�8Rq1Me��6
}��(J? �0��ox�h��!�i��.�zQ��:��MF��X�+D� ;�+(�Dyr�1�k]�e�o1�y`���g��@S4@���dW$K�]�j�B_�^b��`g�a�ګ��5ׄ;ۜ����˨hR�m����sD�
ꏔ#�H9R��h	��T�� p{�-/�#����pk��ZC��R�&!�[�ž�{�^�a�D�BU"L-E`��;�`A<q���U`�|иNj��}޳�i����q�&���^�п/�t�*щ�{@yo�c�M�Ƕ��{�>��k�!"/��ta�p�ML��#AP�V��	
��=����������|+����ބ$�|�jJ� Q���mr��iN�Y��Na�IJ��ä���ޙ�L��}B�WL@��/j��x�ۅ���2��ۖ8iv-��0����#l�ĸ�ow��>;�!��=.�!K�7�4O��xbQ��3T<��i���w|p�
X��\�|)� e�����Cb�q�3}����S4s�d���{ko�#���1��)�g!f��"5�x�XX�n�E��	����C��bx8��”��z{;=LDY�!�
n3x��xr�_���\t	���L�px��o�\�P�C�BJ%qU�	M����bu�?�y���,O�� �0�w#��ݗ�lU�7k[��:����w��B��&`�sw�ɴ����8��q��:�009�7�%�)�^$q�����@�~tX�����I7f�h^p���v�4��h����vd*�,ه8}��|x���:|BX-�Ƃ�٬ �Y����2o���U�]=�M���Y��TV����jt�x���)��õj���%H��1j.�gj����G��b�lL{��9�O��7x3��:�^�z���W ���W8��h�
�E�}��;f�W
�~&��w5�#[�fT@��)X�R@JO�-��l�0�dωe��ƖwD���L]�v�K���iM���/_K��4���+�Yx�m��q�߯�����"��.�3��e4���g�?�;�d�i�h�}�v��P���>Ŕ�&
˼���b�{"N�z>����0�]!�#䕐�PrxC�g�:%��O~a"�T0��=���e��`cK�(-�.H������B��W^��J݉�k���[4^L�~Y��W"���n�s��.K�2	�Պ�'��
�=&A�� S��H�aDx�
d����,�ao���7j^)��Z��Gʑr�)[�A�Ғ[/p�V�$L��5���{�o�{I�*5|�L:<��R\q���%�Rss�e���$RO��7�T��RC�Eu5u�*��u :�=t�Xal
�nJ[�XcpQ��B`!�By���Av!�'4�sS)6��V�M�W�~p�Ca͝��P,�'�S��^���0&Ph���Tza���Q����+khJ�x҄�=
b(lc�q��[x	ZA<7�<վ���g�.�A
�����$!���!@�MDM����nf��U|I��4E��"�7��0M<�q�=᠆p�W?�;�`I������{�p�E�$T�%�[!����IeQ��-�?��6�AHwݿ���VA�h���{e�u%�6��>�}��5b;�*L+|���`,#$m<u�{I�~�z�����;�#���K?��� �:)�{�N(���gR@T'�G���Ǒ�-�
��������ʼ�e����P��D�9ī���pQ���O���0�7�*�{D5�u%�K�8�wxGE�l�<�U�ޖCa�Ę�]��U+^q��F�c���ৈ
��a�QCc��P:�Q��Y�o�B��Gg�����B�*���Uds�{a��L���KP'�ߣ�%���@��C�9p%b��)��j���ie-�2�x�-�t�'��O	�ٝ�J���%{�i�Uh����7
W�A��q���t�g�4�<��s5���ieU��i\?8����
��
3�@�I��WG�9�ueG&�)~�1�?n��;���0L��r�C��8��sn_��y*�=8Շڞ�
�'bc�S�9��ۭ���\7_ICs>��#��۪��l[�<Ǩa�Y��F��(s�Y�+��'=���z�{�5�DU�91JY҈�ʐj�%����6U�V��ň�)�1amh�
�h�L�h96�$�*�N��Id XBG�'��pWv@�3�C0M̊�z��Y��<t!C�ѯ(�?�`�b���hCB|�
P{`�P��	,Vo�&v9Yyzq����}W�K�z�C-b˨�g�и���R� I��څ��`��R�d���r���WN\�PGʑr�){�Q���(���Ya�
i��EB@�’��%+��]J���:
�
�Kw�{��6�E0�ۇ��y��\��a%T��	��B�"�'��B�p;B�'
C�i��dqY�Ș~M��i�i�B��4��y�wx=�(VF�q>��N����SJ�7;А��l�؊v��fR��Q�i��JuB.��J�ߊ�f���uS$���O<Ivg>L\l�Pז]<�*�2>)�ޫ�O�Q~�9e�H�"�یD���M�r����nC���<惃�=���'.�
c@�?`��Cc-����C�h
�҈�2.Z7=�96G��/z��o�� !����V�]�uH�$�/��$�l�5���kk��3?y,���9���6�zv -�!i�5��E{�_�p;~c�0#�K��L�c�	�,<���cX�����H0�
�H��JH�U���GS�Y[v%�U���
��/�E?b��Ȩ;�7����0���g�X=]���F����2�i�~�Ah{p
^nJK��o��jC׸�`�#+[��
��P�L0�{�^h��,ҘB��-;��ѳ;?�.*�\��2=�E��\����.���^
�V�����)UXA��)?����J3j�}Y��׶a����<�xўO����x��(���ݱ�?S�p�[���i��uߏ��.��a��F�|�����P��ǵ�SIr��i���^�6��e�����vELUb�c3쟑�3��؛����Q�@!#ݜNsC�Te5T3��V������ڦ!(�-�$*Xv�8(��(C�+dcs����긣{:��]K��I[Ey
	S*3��}���Bq���hɮ�0��V�׹���s��L0�9(P�-K�_�lˣ�Yk������X��-�V%Rb�$@D"��h����9�u�ܝ��熪z�
 �^Wս'�}v���H�;��� A&(ߚQP��"b����K����ҿ�؊�'f�#��v����vd��Ϻ2!���[G�o";PaLR�1��
n�so'%��-['���`i���bPr��ш��&Y��x29��%�����!��}�CD�hf��M�X�D)w�vdg����X?��6�i>ͧ��F��~?"D�uC�SF�[2���Zi�V8]�=f4�Oob4`�u�6������� _3Dl6����� �6Tv�
B�Mk�N�"I[��.et���ߡIp�� M�'�Q��ȑ��F��.J~Z�kH�Dk�91Q��wv���y�#�lP+�܇�oG��,B�_!���C��$dMdo��܎�1�Q~n��|K��{�+�1��a�ѳ�\7�|T�O��b<�A�B�v�)um�	�l?x��l��
��$��o�YG�=AG��k�=K�}8�-���]b �Ľ>3^T�<��AE�y�g=�
Ė!�h���c:���l��itG�J:���~^ziӜʜ}�ip���o�Tw�6�?�J���`�ĸf8�n���2���"�
h��`�y0�R	���ԃ�^�]��l��Y'R�I�b��ܘJ�)ݛ���
ݮ
`�ʆ6.zHg3
$xB�E�)ϐ�0+�)����%&p0�S��2�Zb52`��5!Q���4�:,�H��	L��xH7h	_1Δ1n��<D�G�|G�ɪa��َ��O���WI�2���SÕ)�-�z�sf�|�O5�J�n�i��ҿ�h6�q�H�C8vԙ����De�G&@�;��y���QW����V��_?Xh��+rD�޻�Ї��3�l D<�^��W��\�m��A��k�<BCh�V�1X�JsOM�*�c։m��k�F�mE02���ھT+su�צ�1�q�Fm��W�kٕ?^��bU�5$e;?.t��x��>�~g��hq�#G�kTb�P�3��|𷾲O�U6�s�js0.��qB�ktmd���;�	�Ӱ���=�x߈ﰙ#4�Jfw䴝+�>q	ߜ����U�}=P|b����(�Pa�d&���Q��0���Z�K,7�m%w�i~��n�)��ex.Exy)U���o���)0�<�`~�@���s�w;���O�/���U�0Zh�ht�\;6�Z�
P�H=-6���指�]��U�������`4��/�v˄J�@��/!"�l�Q^F��&R_(U,�+h��B�����nV.I�eUj�NX�3o��=���3	ig��*�O�i>ͧ72����PfB�����t����H(Z��"��ژ�F	\$�
N�������E<RT03y!|���i��}7b�yW�\�h!�t`�WI�EL��iz�^��] �������x�B^�M��N�o�:�v�
���l�L6�"�F����֢����C�F�&�E�E!��0-���3n*j��|��;t:���!G����Y�k�9�蒐G�e6�6��M�W\��ӱ	
n���"e��=2�D�#&& $�`��3��j&�bfb)n�غ�b��0yn%���&�H풵��A� ��,��_��0�(��4�D�ɄCIs-�R�?�-?��_�[�s�5�y�����ï��'୘�2�<��������[��>��'EP����HO](Qf�H.���K�@����l�e<� cH�z޼��0䷝��&�D����!�Sy�Ѱ�ë�������PyPx�_O	E
؎���zd0p
u�UZ|�Y�3�V��Bt�[�b��D?
ߤni��,K�d)V�(QCS�b�AO�[;q�a��\�rm^`Q�B�ab@�z5��ZXC_.>��� �h��!Z�9 �~��ScVt�ݙ��!Sn=�����3�hGl�
�єW��6�D=G���@�L#d������I���e	# P��2q~��0��#���.p�aY—}u-�7���Y`7$���f�Vg���<�n�2��nZ�S{�ϗ���ٛ�&-���$��Q��s���U�����-v���!V�i0۲�u�-��h���Wi�"^��tzҺw�?�-�٨�m����'��7�����j�7W^����|d����@V?Bv^�1v�b��s�D*Q�������$!�$,\���-�i *]��U�7�0��f���Z�����c�NK1DXe.�׭�5r�L$�à�4��a�{ ���D�	�m�Uyq�B�����9L�$9
��?ZK��Eᤍ? �f�:�hYCA���֐p}]r{�*���8s�<s��Ϫm�(�C�CwYi^�(����PH��	jG�});��D7�\��|�O�i>�4K�H# W&(�	]H0[��^Ҙ0S�d�%�6rA%n/T�W/Z��0
J8�9�Q=Ւ�N�>ęIK=������]�$�e�Ĝ!DX�Y)i�OVH�+��;��ک9G^R
k��� �۞�Ӯ�Y�@C�1=����*��9��(��t�����LU:@��1��z�ݗ�y��2�̄�d�5��C�=zq���N�+:��ed�����9<^��gج,�#�ֵ4�xn�A8�Q�٥�,��~NMM���`��~|:�.f6WC�UJ�a^�����K�RJ]��
\��X��F�h4�6
@ә8��9�Qͅ�̵�ٺu{~,^�W��qҾ�`߾�p�]��G>p3�^��ꉂ..[ч��]����@����P�ܹ� >
<
��77Z��P�>��vj�P��u}Ŵ�!d�τ��w�/Ti�uS�g�T����� ��$�N����g$N�ӳ���,;������oO��Ӎ�m4�K��3�u����[l�?Q�/V#����O�r<b�R8r�*8r�*XZ����D�E����� ��1 R��2Y��NP��L&���&��(���fH�\�ԁj��
�qd�y��vZ_e�PST0ƉfU'�l�8==ˌY�&ek�
'$+���Ux^埙�����J��@�I�D������JX����d�bγo�^a�ྚǥ˖q�}����ԴXU�(�ْeKa3��9ۿol۹6m�S�~�O1�p�K$?�12��O-`�[LJ��'��Os|o5+G��.:8|�-���Y�̨����{>T ߄��i�1�H�ϥ��Ь%?��dH-D�ֵ���MXK����2�1�;��u��klY��ZJ��m̵⚭�G�cX��/�OsW��і-���p��qlGNr��:c�\�M姼��l��mO��lٴٚA�[�lm(�{5:�1�!��fݙ������q�}���q�TO�e��KG?gh�gC=a=���Gl�$<Ƭo��8�l��� ��
��8C�8����l
I�����"���@?V�����B�O�!��l�Y�j�dץ�������E�Q�� <~��Jp���RQv�6�o��DH[N�@�9	<H�1���	M�q�`�}��I4!���#���!�5��4�4���'@��ӧ��o�w�5���|z㓙��If�fQA���*e�ռ2*Bqf��>�����6���E'���
M�3v!$��"..�F/�B�r�Vzr�"�8׭\���)�Ѝ�!���J�HH	�8�>h ]��l[޵�w8e���3G��yōr��,�?d��
���R_��h��t�R�1�d��"�$id��17�X�aˣ��N���$M: ���	�z�iv�؊�����1�bٖ���9C��k�l}W�Xw�p���i���"H\�T�_���u�=�)h�Y1ml��@��z�h\��aWX�d�1��3x�>��`�����8��P�5Y4u.��p�K�햭������p��U�J B��w��zf���y���I��"ɡ��;1Q��-�k޵�>~}�M��E��ϣ�o�D������Y��,�{z
�o��q&*1M��W=E�D���)�'+@ÊS���.���”`�Iǯ��/�
NYs|�3�}Gpɘ��0��8D�QF���+m�4yMXB�[��o$�[�������Ɠ1�Q�E̒rV�k�+��!Mgnd
��5��s�QbAZ+��P-zT�A�B@j����8X��O�v���v(�Y#��g�돢������Hx�…�����J�>�FxvQUF���n�wk�*��CO=	_�ηaӫ��Є��Ή��Y��H�>�:g��j�G��r���x��b(����>^X��>���̟��l�ul"h��k�ӱ���}���_�#�i��L�0f066��`%h��~���DKJxp]?���B�S;�RtT���c$`p�4�:�^�_+!=��<{�_�;5|�}
<���j�B���e�E˚a��:��(8��a3)K:�T��y*V:�v�ABm��ȡB<�$z	e�+h�_��
!����#
�N���eJ
��_�T<��G��
-�
V�7�Q��f�؝1[@ET�`G������,+��U�"�UL���/z*�zE�� :o��Oy�Ó����qq�S�$���}��/d�8
Lc�B��=!�=aq=��UDZl1����Bơ
���Y�Rw,�D�8.xaG
�p���?�Ff�AFg�C���D���ɽ�n8�W�^��1XtLa�G$[%��1���|�O�9�cx/��.�'vu%F�����ӈtb���,@Q�3�IU�S�s����F�^ 7Eua�<}�`���?m��j>lB�MMOG�B|��	����|Nz<
3��_�^h�-��j"`uBCJ�=�L1G������|@�`��4-T�����4-i�'LƲ�G�1,[��2#Ҭ
�4W3&Ȳ92�A�c14$���^^��{{cD%@{������ӳR-'8S�l%.ˇu�#�� ��1�\���H=���X�p��/��i!�/uT��Fk8�@̲I�	�tG�ErgE���B�i4��Q�BPC�YxF��㊸	�	����|.���ھRWo�����Q(�̳k��ǿٚ�!6����KK���K��>q,�9i!�<r��F����M�Hip��,��N��߶����)��_�ͯL�����F-��V�f��b��xX�'�0�:T�/��SO<~�=��9�X�,��c98�`����_ܥ*i$aDˎAݺCq̴��	v��yY��6�`���א+O��M.�K���@�6�"HH��$Q���nb��#},�el�g�c	:7BeS_�*�����@i����\L� ��7=3��{���I�%�JhџMT�Ǵ�'ԉ�K�q�}��E��q����޽�+a��A#��R��W�7����I�����~���_—��]�<��:hS��W��
Q6Ԧm�VSh�RO�_m9B��;��(@�E�*��Ge{	�3��#�	~Z��ˈ�Bڛ��P;d���C����R��y�0��R�k�[���D�5!�
6]U�-g��+���W���k�Qc�
C�L�r�r��N��5����z���f��G>cՖ����$���XmU�30`tQF'�J��k��cG
���TA�p��h��RCc!rnod_�Z��0�y;�3�<�e�"$�3�V��'=w�Bms�O�y!$E3/0����a����
�A������B��缅(�,Z�H�!����N=p`�[���b���/����
؀��8���O:�%��0x+�hi�7��J`hgwO�P~{}G��F�R��zւ	��g!�~(��]p���u�P�^�NH�(`V)���6�A��̭�H!M�,� qN��J����:b���Zg��G2��z.
�Kc��KQ�"��"�#4,?*͛�|�O�i>��)ZR������_��Y���>���.Q&�I@=`"��1���
r�E
���P��'"P6�C}f��`��A� D�껸�){⪇Ꙏ)c��v�*	|���ch֯��R+b�S)
�*�u����"��
�v�G�Z b�9��D��Y�x	�߿�B���@���FjP�*𒠰����M�
����	�|f�u�L��K�l�D��0bI��jm�Bzf���^rq���[(1�Pm�.ْi9HhB����aF"@��ʈ�T��.L)`�x0�������2=v;'�K��^	.Q@J�a����(X�YpƂ� �[���s�'�b���`你m0	P�0�����E�Dĩ��MK~$	>���{��^�8vٶ)m�`ԺA{��~|����|�H�����\~�b8�҅p�v����۷��+��]k`1��V�y�#�O^s"\�p�ã�>
w<p3�������(\�l�(��Ĵ��5�6k�I�`��hE;kԾ�R�	�'F����|Jç��x�^��j�����_�݅pX���Lj���U��+[�–�;�w��]v����7o�
>��oDE�xEC����ݟw5�㮭�M�1����1�u�g�]�8=n(���E���:�k�	ɶf����m�aU$��46^k�Y��lԷX�h��E�CÅ%n�#g/�������18<6�i��~%��0t��\?a�����nj�
�o�}3"�u��c<9����n�@$~���(��u#U���1�ZC^�ɯ�u�j����-9��wP$�w͋�{�ԉ��	���El^Z�O��ng;RfiP+�-����x�X���q���
ų��&e���"Y�3��n�*@��(<�!�]����ݻ�(�H���X�\���@-�	D���I��ʘ��f��y�b&��{tp*Y�%�eΔ0�ac�	�X)�ݻ�2�-?�<B��\h%����Hh��	�3����q
D'�?�ځ�Q�	���'a���5�m������+.��i��'�� ɱ��|M�I0"2�ze�[,؄'~��ia��b>ͧ�4�w2kfL+��g��w�bnN+3X`�!tYT������vC|HBVNZy)�q����b
VKW0��	b�F"�YO}a�����	i��PL &��d?"f�A�6k0��	a��P�=�Q
�)��5��C6#���Z�f���:+�(��?Z�d�Z�`�����%��F�@5���]��ÄS~�L(��=�l>�ka"������w�zU���3�װd(laJLz,�PP�T
�;S�'��x��3�����p�V1��ٮх�+y�6HX\��3��/��;8�X*� f�w�Bc��>@����?:�\�#�J�T�,�:@Z�z��͈�����SAʬ��Y��,;�M6�����:���9�9�w�t=J��hL��m�:a��Y�hQ>��c��yl�G:�.YR�����%�ǿ��=C>�1���S��q����N<��o�6��#�����D"���6���}
�

fH����&:�~aĥc����+5�LfUB�b�5�xo����eu���M�����.G<�㍽��]�MŽ[��-^�������_��k_|1ዌ+��ϔr`��~K���W�Y������qYȘ�y�k}s�lk<�q_��o�p2{�va������ޞ�qoF�b0��54GP�}[;]'+��Cł��HDȞc#����aΜ�ӽ�~�8�[mM<�>���}��WE�Z����Q^t����a��?c ^���8��T�H�8�4�F��m-3�I�V���D�F�� �#�C�3�4��~.���?�#6�=(�C,��
4hy�_���� 	I����655�N.X�!A7�)�z���K7-FV��H�J"d=&D�9�$�1�����}DlJ������[�i���W�Ն���[�\�Z�0�k�#)��t�P�3�Of4`
d�cPs�ϡH��͓�����`��U�$-�ↈK�X�DR����I/��9R�׳`�A 
Q��4���|z�0rK6a73�Y��݃��!��Z`zv��espr��Jΐ%	+�!n�=���`�1��'���Z��|H�eH%*���p�Č�N.JbJ�$�|f`3S�'AO��a03����5_pn-
!j)y���P1�mDyB"v�"����Z�=Ӄ,��Yj���\$Abi=H�13=�k1��_n�'&Dؤq�^+���c�D�̡^���.�w�d�2�;���8v��zRf�nH���F:��]rHQG���>儩 ��F�
쐟{��P�:�\)��յ㳁⒄�~�4_f�3K��Ye��{��n�@\l��l�&Y]�`ܽ�����v��d,��Z�D%f���3l�>�o����%ry��#�q×\|��	�e�i��z� V��W™�Oo�D�u�	���Q�?��s���
�C���@g���\s�����|��߀�;��^#�Ϸ��]f�D����]����/ZW��5'O�B&%e��cL��ڌ�0��ֆ�!��
��3���nk�F{��l�8�];���o������[�>���1�pc}�q��M�DF��X��\>5�j:�Tl詾~�������r��G\ �I�k����9�YL����l�m�0n:�E�.��Cw�NY9���0a�McT���w���tG�M�|����}�~�C���
q�v�C:X��� Cw�f��o:p��S+1,5�g��iR��:�{w�����>��0��	-��3=���x��|D�X�ޗ.�v„Z�B6��+���ڄ!i��[���7,�묀�
b���&��LK�M�J{<��)�ͨOR�=A�)+���6�A�`�c�\@7�МU���FƧwBi�������0���x���oB	0�2��I:Ɋ"�;� �5��y�C�>5�7��Bv�����o��e+T���}JձP$�tf�����Y�x��E�?��8�
T�\c1���+Ku_�0����2	�����`��\�ˌa'|>ͧ�4�~()�TƋ�`K�Q1�)I̎�z�k#�
/%+��.Q`��	�M4]��X�@�=�C��u�z�~���m'L)4�1���,D˅��@D�2+����D���>�I&#fG�W��^D�jU`|*��"]VM��F%����3W4��o�}���]�f+q�V��Ѓ�zIx�{&��Q�!�)C�u�`������5z�r��Tf��7b��F�m�7��ӕ%����t\"�#�N�IV&A��0!Dq�mL-q�qE�Ar)BH�xi~�C�Ie�O�g/{��}$��|x�����;���Щ–�o���?��Ϯ�g��U�+��	x#6���t+��/.XX�L���3�>��ٕ�m�VX�䁖���J�EȘ��}.|�]7Ý��N8&�T��.��ѫ�$�ΡO�֧h�AVt���k���\�l��t(�7������G	�e/��g�b=��_��s������m������f�I9E�@	n7��aH��F0|?�z*�t�ƞ�(y>?��V>c8�ay�<t¹0r߆���~�F���]w�!���2
��f�	-/۞@����y����ޢ���uq(��]��}��u�ι��KRyO{]`[�y�NF�[���ˍ��i��l-�/�r��mca��![
�~��\���ܿ����|	������9,j�,�k�:�x���w⽘����Z�9�]H��`d����7���oO���F�"�G7�F���C���Zg^7F�Z\��q߶���wNx�.�6b�(������Y���&�4.G���[�ļZ,��s�n
5jq/��Blf��C+��'���
!A�E?\nd�>+�M�oW|�󆡈&9&��
v���pU�Zx0�
;���|�Oo��.fz)6j��1�gg�2���@���e[�%�rc6^�V�yN��$�8�^�Xr�!
-$.�������ӻ*Ht�Ys�6��p��r��d���XwE!�dLBٴ�¬�Q�Z�"���u�;��'��9߻w�ܹvT���۷W�;`Ϟ�՚L�
���$���`Q��4���4D�ݺm�9�S�͜ms�jE-ם�k������-G�k�i���}㱫@��Z3��cJ�đ{P�Kl�2�M�E�H�]����EM|vR�Ⱥ;�C��m�B����(�f%�.qe��\αQin^ �F�1J���p�P���Z �ޣ���U��l�q�%���u�6ط?���[�k��ռ�c>��>��	�����X�k��^�1:)���W�����=����Ɂ��o�A͗��?�� Ԛ3Z��{��KǺVy���Hu�Bh�ݲ����
�aT�0r���q^3�C�ఙB��Ǵ"Y:�x�%�{�ɵ���?���c8b�2���o���q7��=�)� Nn�?�z(���X�fOk��0*������	mҽ��Z��cu,8���
�G�`M���x6L�[F�����6���'�m۶W�T�~���fsZ�m<���.*������*��޸^�zLH�ɯ���}�@�9ɘm7u3h��6�����
��2����m��K��Ο[���+]�Y�3輏��Y�NB08�e���8:h�����#;���wI��9��[��ch�b�Z�2G���Y�3C��L[D�L�Ҿ`���CP�#OWlrr�Ќ�_X��쎜���rP ��Jm��|PI'�ׂ��
�L�`�h���\�[
T�#�ӆ�^���n��Q�� �v?s�d㆐�]�ʺ��f��u{����,/�+�31�P�Ѽ?�xi���$�r�Y��S*�Z g���t���E�C�j[PH@Z�WvR���*1��JL7�`2��v�a>ͧ�4�o�+*�[�,M#\�f���t���‚CK��R._D��
��}���۫.�rP1�˙ؖ����b����E����d�9+���}�j>�2S����c8��-&��3e��
�k9d�{7����3�:S�P	��6��ӿ��*�7��#!��,i�	�d�02�ESd"���8E���uL��
y�~`kg$*:�x�=���jUQ��ٱ��n������Q��t�d����9&��'�!��W4�*�,k�3�dO�vbZC$pA�c�z}��"�&���Id��^_b����Ø~���lp��ӈ��i��E�������-�OX׼�
x+%:��0�u>Y�=q�Y������0} e��+O)9fM^SV'��~x�1X����~��Tm[�Q��q��wϳK��pxj'�瞲���-)t�2�4׻�ZBИo��rcȷ9+ߔ��le渕(����O�@��O>+W��w]}
|����Z��c�ue�2� 3&�>�[�!C�l�c�;f��C�ybgܷ.|��p-�5K��	�n�e�ӸH�g�u��ܮ�X;���X��=s�`������/�n_{�=R�G�~��G�39|��mȳ}� �L@�2O�%/Т���c�6b�jV��f��1v#4j�Ri�����>��6ۍ����.��G��y�8��'o�F�.k��o�u��|Ơ�5�pШ�,x�/B�b�w�� ��t���U�,6VN�P�H˃*�&^�Xq��R���yn�̲_�5�\�[c�
j�#�'	i�O01N��B���G�{1Y3P�(t�9W��?��pônZ���|�b|�h1�m�W)Ht(�M9���Xol%�he�,TB�$�Lh���m��T(�
�t���,��J�H��9{�O�[�2�uq)�=�����fM���C\m4�E!t>�!�@&'&̧�D�g�^��E�F�V"�g��=�'&���>�^���a��v��K��$�7硏f���
V�SԚBc���EOK�`V� �ʩ�9@��3Q��8#L��S2�4�L��P���JgQ.����g��'
�٫ q)��J�
C�M��r-
���G��Lk��<��
�2��Z�=E"��kP�<�k+B�hmͥU0�
\�K1<�ĎX�C����Bx[��b�=v2��J���G�ܜ�	��7'�þZ#�a��/
�!�:�.b_J�i\\��0$"��!�D@�3�/c��:PK0PwU��5�J�R露Є��}���MKu��8'%�Ac�`"MK��Aqon�aoU�%��|����C�Ñ�>#߰<d����Ο�i;,�� g�y:<3��ț%-XP���i>Y"˳K�ZO>��g�m�$�N�]�
����^�68b��J�x��	ZR��ۻ�9��
Oc! u�$t�y��`��־i`W�[ ��g�,���wJHZ1�F���Y�{��Q���7�C�0䅗_N���Y��hϛˈE�34��]���M�����������4e<��#��1}���ul
�p?
���<)����K�ZS�5��uc��b1�S:����8�b!˕���8f�K��?�W�4��Z1G*���[��9;�>{8�韤�Ӟ�yؤgk�gK�4\�ni�8�~3���sJF�q�������FLt{'x�S�2=&P
.}��؃�v̕q��F�M���&w�%�t�U]6�*�Lq��Q��oVVtZK&����3���=UBH^f�C] !�0$�G>_M�U�����ju�����D!�o'.��C�!���?�;m7ax��X��E��<)��CPﴏ��"6z�LR%-Q{1�pE/��l��Yz����8;r*�WP%wR����Մ3b�2>��%����v�S�<�v�G,��N9	�\�
%����b(���%x���>g���j�
X�t	�w�Y�|?\�7�sϯ��.��>j5���^\/oz���|>b�28�5pD�'����]����ʿ_x>\x����o�x��g�K/���L�A�Xw�u���?��ಋ.�%K�۶}�}�ؾc'��g�
+�/�u/��G{��w�����Ū݋.<.X��������G�%�*F�1٥L����L.[�$9���R�~I/[��}
�̷�s}HX�.�B]�h��ل!�@��$�a�E��bRH��h��T�3�.�p��!�vH�(�JR0c�Ƴ`r��Y�*ѥ`�^c�� R�oVSd�dtrB���Bt�YHZ���bwp\,?��c��,p"��.�����D�XY���64hp�w���<��Lʧ&�8�r
�;ؚ7d��ތ�#a�+�=#ߋ����B��	�m�b��d$zh@U�l�
Ցn��*@�:����J���O�a���RM[	F���.�H�AE�T������@� �A��U�\���i�9+�r!d$f�{�e;R��0F�a��iJ�CyJ$����p���VJ��"��i>�Tm���p����ž]�K1֔Z$�n�
"��s��p�B��]���~˞K�_��_�L�l�xwg��ך��iD:�R�f������A'̛
Uq�[�W/p
�y�nL�`Rӄ�eo�l��ݰy�6x�ۯ�?���6�n�b�s����p�dL#54��y.�rT�� J6�|o�ܽ**�n���9�J�����"�!x%#t}J���j�������c�� "�	WQ�>���Lphv6$��&ڻk�
���&�XlW�y�TG�C8�BX��nl>d}�ҳR�<�3s\L2��<0�%8�`�������_0e�d@誦�f$A�>�Z�&m)$�g{j�N����\���i������G����kԕ���;���I?�@C�>�ry77��l�즸PP���x�J��;��q|����&��8�!�o�'��AYfm.8��!Yb4bl����^s!����'����Y���"��;�C�#�'L1{W�.�r���dVk���W�bn�y����ǖ��K���&Cg!���^��,SS���Te�
63�$T�v.��RYi���id{��k�h0k~_H�N8�j{���CI���n�_��7aK��-[��/b�~�C�=(!��˛��g��믹�}��5�ܰ�F3�3,�xn�:�=�?X	&���+����N=��
7��>��z�䁇�GV�\����{vé�0���y�JϮ}��~XU�[�x��������;���+��}�W�[߻
NZs<,]����y$ ��sX�s0��߸�{�j��h��;p{�)�Xu.ֿ�27n��j�<���p�9g5 �����8��ߴç����		��)����T79T��M��"�ԫ���|���-���R�qN���I:�1
r�c�yG�rfj���7+t���T��?jW\_U�Q�"XP��=
�U4?�ͺ@�"O�DF��;��{#d=l���p3Y꘥��f3�4�"��^tq��Q����u1�[LH�C7��'Ⱦ�)�Z��s��!)"�����\{?��ϗ��f�q3L�O�k	uC0$�cQ�{�'�_h�,<�C���Ć,<�+��{�AӦ��yV�-.�2�,M�9�������Hy�-Y��W��J�R�3��7AVG}vm7�x�2,ٿ����<K��1С�,DFx#R8����2����_�G~��Y\�z%̥-�76M�+H�M��Χ7U�s���V�?�^ݴמ*o)D���Wa�ĝCO]h�w�p䊕�ݻ�L�i�>�Hg��Ѿ?�k#�7�e��ܼ]���`|G<�,Z�
���J
1�YBm)A�q�;r��}�����RG�k2���|6ۦY�w41��;���_��'���_{��`���w�ć�1FT�'�S�r�)�'�c�)ӭTQU,�},�85j���i�xxĖ5>Y�����3E�*�8��k�k��ҨC�]7�
sI�ZCh}9J�����0�ڨ-k�M�ͥI���D���rZ�-62���_4+�tW��9i�#�6���s}��:ߒ�=?6��˚�+;�uh�ӆ���ۇ��R_2��iSt
m��p'�(�C���I��r��U3�
��wӒ�/��Jt[�zWADB�kO=eX�Srw>19�\[��j�,��'=_�<�i�/��ff�]�+�C�w8��	�ٶA�5u&�P�'������Բ��s�ZH�zW�֓�&� 屝����H�`u�D��G�@홀=,*4�F"rqۣ�G�Z�B.D�
a�����R��g�^phn��?�$Dqk�"�g�	_05���/��?p�W�9s����&Ҝ��}�=
���	�*�	D�=�h��{��L��^���w��|�I'2sc��=�ʫ�VϖæW^e�Eb��ݻ��]p�}�5�d
P��;v�Pc�:�k�ˌ��;w�m;�Z`�U]K+���y_���|�u�9�Xxq�x���p�E��#z��!7L�_
�LL��=F�Z1S_ݼ�U��%Uۋ+A	1�Ȓ`�}�rշ����EuQ_ꉴ�_~y#k�]�;����P��L���/��|(�ޠ5��$�3	v���B�c�:��N����ꫛ��J�p��DZPѾ d��j�VUbvmz�5�*��>��X��J��j�i��T{p��ō��ع�~�9����/�Yg��>yIqk�WHPq��.g���
^Oj��+.ef9	Ψ��\?���Bd�+�1�~W5��˖q&�Q,�x��GYwA��6Ue���?���J+��j�Ĝ�Ll|e3�O;�h_�T����t,]����Y����*J��4�䲐`X��o$����Uh@{}aB��$`����d���zҴ�[ &�|AS|����@Bbh�y_&�J��@"�5ND�9��(������OLبs|<�V��������!���zĪQ)�x���j�V�P�#5�Ҫ���Q3����5���5�h�5�S�"�(1��8�T����_����8���f¥.�Sp5���N��Zj��xQ�N�#��AS��ž2Q������,��*�ω
1��T�`�T�k�Rb7w���!�����9H��qh�?�����M�R��Y����#��ñm��C&���+o��'�)�M�I�������Z�Cr�J
�V�>9�c>
Ot���}G£����F1�%�;�S���ë�{���zvW�KB�.4A�.�Jc'w|wO���;��s.7\�3�6�!�8�6��Ca@[ѐ�,cw�$�g"v�:��AkH5�u�֋��U�C���v��p�a�S8��l��s��W\���c�b�C�wcs|��X�4	���ɨ���������)RX^����y^B����@��9�^��c��Ϝq�F�:tr[fx
�ԴT�3���<�Ř�kk.��V_�hs�O����r��z]�m��O�m�޵h������]����ė!����	�#ad�l.U7|������Tp߱�?���Uyڶ����f����w����8}!p��|t�V���va\l�Ƴ7��x��YmNB� [���Z	��s�(.;�U�aPR���͢Z�YR�%^t}��^=���A=��.��%�wf���z��pq�E�]q�r���.�j)��{i���R$���,�������[�Dg��
V���f�{�~NB�P�\��9fo���C�\&�$�� Q�"��J�!��A0��b
�N��)�`�j)"��KF7���Z�9������W0Q��u�\kE���#���ȥ�=�}�P1zi�����$�Wnb���SO=	�s�
��a|�K_��2iG�Ƚ���㎁��^`A��Ϯ��*f�k�����w���	��L��~�N8��#�nb�\s�l��� �
1�'*��1���h��^��:�48��Sy<��l��~���"��������U�{���Ꮋ�����7T���/��!x��'P�qa�5W^��1���u/2�WWy�;�,�QJ�+��q�Ј�;$�_F~����@��_y٥ӫW1�_��+��'Y�lپ�^�U	J���k�������f�1y�u���K/WB�G�~b��{��p�Uo�8>=����/����!�J0��T�oW��@���c+���j�.<�\x饍p�]?�5�_1�h?����bWtI�FB�P��L{��h��L½�,�!៥��XiO\[��6�_��wx����[+aˉ��#_��w9v�j��\�>�����ʽ�=�m��,F~��R\�+��.�R/Q���1:�l3���ެ���5�MKsr���ja���	��!�+�.��"&+h�/�ۀ��t��Na��L\{kXNc"0��bN��
��ڠpȊ^�Z4&�1�ۘ�Bx��]v
D�1�@fe�?��MQP�d�ѰI�H�\C9�ԅH;D�sP��G�FLyi���E�;�n��H�ݏ�k�Uy�����h[:�d���	���\a"QɼR%_8vGuf�fy����W!�#�r�MD.ev�-'K�B�bJm[��2�4l*�"�dk#��&�A�Fz���a�W�wg٦�LWg^��
�G�_�K�N5����L'/�9|k�%n�w^��m�j����D�(�і~X�fW;t���:��K��g^��G�Hw楗-�SN!җ���>z.�b�)}��~QT��Â��lf����V���K��ɧ,���;n�|��._V�4�
���.p�
G��
Sp�ݻ��뎀���ϗ�g��-���D�p�p����c�U���Ý��
�O��>��#���9�w�vW��w�`��Y���{�~�X=�4;��e��m��Sp���‹���e��t5�ܵ��W-�����s�,��}��7��m[��W�Z�����+�6.�t�X9;��$8��"�XD��~�Upz���ѧ?��6f�ݿ�P%sI?����8��a�1�3���];��P��>\|�9����?9����yr�s���]w��1���=��1죴e�6x��`��p�i��s�_�׶n��U�+��7H���O����s/����: ���ל�V�&��G�~
���.1Ԃ�B�\����੊�Opz��Upޙg³/<�*���>��3y���b^�+�ڳ�5������ѧ�f�SN��:��`ᄑ��'�p"�'|����Tt�i'����/†W^�óO=N9�$��H�@�^���D끳N>V._�<�0�G�^
�u6�����#2_�� ����ɔmLm��j\~����~���E�5Oʩ�<� ���J�_("X���yN���&��C�B��f՚R����2���x@&�,�5�X%3Χxn��E�s�z��'J6���������J���#B���/�f�IX�"�L���O�e�6jr����Kg��B�A���>e{)fc�>W&��ԷnlY�=���C{}� 7xzmğ�V�7y�Z�D:r��Fo�Kp�cZ/��ߐ�@;��\Y���X=��[7�3��1x�&v��VR�*4��~�=lŤ�Ry�؜�
��"%en�?����6�����W��g�K.1�͡�O���WC�(�7��T�^�C���E��dTQn�{M���r�����
��#@��YA$�?Z�w<۬L0>G�3�n�0��Hyڄ�wA�C��l]�,��h�wX˥��Y5mﭹˋHJeH=��,I��L�a�Շ�A�ПjIbn�Ud�J!biB�%{MX	�ɭ���z�����vƺ^�D�e[�H���K�'D��դ�I�_��-,d����8��7n�.�z҉�p~�b����(���;*�����p�)'�0���	�!!
�ox��Qb�Y�B1H�)]p.k�Ӝ��?��duԙ�m�(�?�Ǣx�;o������<
�d�B��r���};U�w۝L\u�,�8r�J����C�<�<�$�s�i�*��l�t��bԟ_	<�EY�y�}p�i�0��QId��j��j�g�ck	8�p��<��A�&��꾇��.��-'���$0����ƥ����V��K*�3B�uN%��r�w1���χ�*A�5;����'�>�>����N\�B�O~�s��"��b�,�(6Y��>%weO=���u�U{��o�z�.��Bv�vg%ȡ|��i_|�}�O8>
?(Q,���ޠ��<\vɅ��d�F�DV3�<����|�۷��˻�q]U,0��q��{�������/���+a�YlQC�����y�CMA	A�0Ⱥ+�OI(K0-�B��������sFs��@��߃cbb)�p,�@Y1l�	@�,Y�ТA.~Zgg�81�I��~+��\��δ�S,�(�����j<T�7�N���b���fj'
/�Xs����@�Z(�ǬXxX\�	8z�\�V�GltX�x�:�:��`t���Ȼv�lW,��`�х\�؎s�N�g5H�|�[h��uQ��N#`c�MY���!!��<a��R���J&�w71n&z�\�cm2��?9�C ���J�珄b�����>DA��F$$߱���jVv���9�C���"��S�*�A�}��o2_�R"��i!��d��yq.�eO���>?��(�p|����TN�k����["�Cx�&~��Y���e#yd�L=6�`K������K�P���o΀��_���o�����s�]R	@��z�_�
��6��*��8��n����c��?sL��ͧ6��T����9����W��?M�i�4����E�?��i�cŅ,	7~�_��NXX1����k��ك��N��$֮�ݳ�ӿ��]��¡�Нt��ӶJ���	�=O��Tx�M+��\—��֯;�	@H���~���A\���o?�\�
���\S�O=�|�{��'��9�
������^:^�֬Y��Vcp�^���pF5�U���T�G��K���eKb�X�y�3M����0O1?�Z�MV���}�c�7_�
|��;G:���C7�^xy<��3�3���X�����,��k��#+a���^���7��*CB����{���z|5|��߄�>>���-w.���_�c�<��}3��Õd�%�7�s�
p�7��U���s�
�W_�B��O�ð������`�	�`���0|�[�`�+.��y������!�s,<������T�=����J�񎫯���g
;*��.����=�i˫pߣ�W]��������+�c�z�޻�����|��w�?�	g�<��&x��1�V�O>��/�֝;�W_r)\~��ijϲ%���~���_�Bb�:NHq�Q���Js��VD����;����j>�;��;	s�|.�)xXj/��9�i����ux�Sj��/��bMm��f-M���k���E��G�J��آ�\�
/���	�2�d�����Ua�1qB^���f�=�+G�lι��9��ZժD���z�����U?4aV,�T1���X��O(�M|p�����c�mΥ6Y����O�V�g|HeV������1�0F�ʡ#8��[k&�-ն{�H����}
�
b��ݐN��C���?�=���gP0�DXE���~�0�L���c�M���Z%�(�j*ۆ����Ah�M=Rbi�g�T�o€y�ui]�u�<-��C�����Eھ��<IB�h)"���|�B����[{&����R��;,�,-L���/���F�)�)�IlL�$��}]��/4�!��n+4I@V�-�lg���0B��Kl>U�T�-	f'fY�~k%���o�V�Zɮ��}�ax��'�ĊX�|xﻘ� D��}�4"��O=
g�y:��!�$�$ڱs'[v<��yvw�z�*x��&뤵��b��@�ױx�hiQlb֓�
-Â����|��$�!-�뮾��M�[1��9i����ł��A�MNC�@Ť!�`�����M�;j��J�^}���L��<�<�.���ǿ�P1�U�$Z'Ҷںm+��:��c*"��N�M�҆��2�k��P`uw���	�yõ�<?�n�ȒcS�7��؆�_�O��J����LZ�����"Aņ
��rZ�oN�XOp��+!YѾ Wjd�B�!�S�7o�q�@��=��S�6I��o�G�x�-Nn}�N�G?��%Iz����t�5�+.c�O���`gE����Ix���%]V�=������9͇�CK
�E=��R�!�P�%��,U���JuY!+Z�f�|S0��C$I�P�(=Q٫� ���h`Wb���rm"�Ađ`A��ف����#P&3�V-
�(^�>
�	��W��I�F��ihM q<f�p,M�$&��m��;���aw���|qd!ϟ��VWcZ[��_���eW���K
�A�����Dj�3#�Pb_�}K��:sʯ�!����`�1�t�u(Q�*��Z\�r�l�P��9;�9�q?��Բ*���P��"d����Y�7L�v�X0B��ZA����(�'��0	��BΙb�6V��>!m�H�+����b��!i�[釉�Q[�T��k�3�Z_�wJs�w��?��#����[
�h�Qf�
��r�O+�ǿ��O��f6����ͫpQ��_;��{���e��_�W��Z�P��=��ǎ�nZ	�?���l�/}~s%99�YV����qp����(a�����6�Yg/�+�-G����V8l	��N��-�;o��{����W��ɩ�-b˘}�I)j�l���;f�����/�g����˗�~֩4֓N"��k�=<��a�2�&s$�0���"�2�O�+�%n��ӌ�_1�)����~f�/_��|�~V��;m��d��S���U�~���o|
v�'������YS	:�5�~�1�U�>�X�����{�E�J�~��k�{߹�ơ~��~	>�+�����>�L$R&��׿
�n�W^t)��B\p�9p��G���K/��.8j�*���y�	'�c�`��2�e�m�|��#���ѧ��%�����|�C�7�^ڴ�اuA����d5=���'n~/<��p��e�7�i��z���sK5<�dg����'�
�Ҕ��{�zpt��&���!�<��
���6�
�{���ݔ[��F�%��٤���-3�!��q� 1�KU���ʓ򕱟r��W���gk�:+8��T7�R_j�w��j��U�	7��4d�8�pVvt�/Üp������?�+���PAW�\Ɖ������]	��t
B�g���ly���?�+��ۃӁ�;\8����ΐ�k�]�R*K_FǠg�vT��6��O��]O���jk�p%e����=�2�}��׸nj0����8.�l2���+<�X�3@�
�%G��4[�p[��!+0*CV���G��y$� zK���e�K:)��Xb�R2k>i'Ԭ�w��7����)�ZS���B<��%Tp<u3��У9E����&��
BMʇ���B4���?�IK$�+����ᨍu8��t8����J��000r8�5�t�A�bxPQ��"Xb:iC0b~�в���	\��ukF.�d�bmBm��E�<\��I�-]®z,s�ɧ��!B��Y�\I�DKt�(�!�W*��Xm�aҾ&뀥Ks�:��^|A�`>�O`	1���G;syt"��2Y�sQ%8�O��Y���$��B
�lRN�L���@� L�TBq�3`���ְ���[c�uN�K�}ノcy<�ē�J%��B	B��5�#��5]�����噹]�	�̔���aJ�J�@��<���bK�,��]v1D|���G)���RR$��g�mX"���w������h���|"���'r�Ee�u�,�!��_��gX07�b��D�oٲe��Oi��Q@#��}!H㿾đ[�_�	ވĄ�jX�@��m:ϼNվ�g����*�TL�x��\Y��e
0N�`澍m�4ă�	f�
I�|�����f�4���3ip��LH�g�x�v3Q�V�}�0�	.̩��\SA"3|&ނ�<��N�+!��1�����U�Ǭ�F�؜U����	<B'֥��j{���U�Er��=(�Ze��_��(3#@2
}�0�M��2Լ�q�.`?��K;Q�D����=�q�	G	&D�9��I�10D{��j%��1�`����F�I�ȵ�_�0d n�h���3^�����UD��~P��A�����@,��	e��F��"A	~ܗ2Q��{��_��q�<�+���۞ן�e��\�C�!�.��~d�1��|b|��[�n*�_6U���'r^J�ɣ��wƒ��>,�$�X�f�_�B�];g�<�>)��X��d�{�X��>�޷�Ç>vT�}%�~�N���>
�x�2X����߿
��O^�{~���U,"�\�n�~}�7^�{~?�V�	��"�`�:�JU�GV�i��j>Miͱ�˯��kqf�}
!�F����ȓOVB�S�%�`_o?�~�IL���ì�1�Ҁ�O�Vj�I���z���
$�K�ċ� �Oe����;vT��^}$㥫V�be��[��Y�'��ʮ<b|�{�c�\�?�q�=�?��p���R�$K5f�w��]U�[a݆����kM�P��յ���b�QL��K���c�mp�Yg���S��x��DC�*A�F�po��>xa��\�W��]��~�™�>_	@l��܅Q��7m��
�[�h1�"]u�%,��G᫷�
����5�
5�B��֥R�G��%����xS�����msj�U���u��<��^�a@�8�)<N�%��+%M����%�/L�'xl�qA�����V�\])�	�)Ic�����O笑����Fޖ05Y�Xw���K�9���8�툤xODy/���<(N^{��ܐ�$�+�8����hg��C���䋘vk��˜��zޱ�B'�2��l_�u���2����(�I߄�Jg�ާк��	� 	:���_����B�-��mIc�W
�>�Q��%�N�1"�C��UC~M�aC��|�۲YF�$!<��̨��w!�슼zg<���
<ܥ'�r�	��'��!n�d_��i���A[f7��3��Q����t=Ԇ*e���=:řA�'��UJ|��`H�H�"��vC^.
t�u�rc{܏� �0�Z�=��2�^pbnP�&2G}Ӝ�����|��
P�R)(�g�!L�
�{V�Nd�j|�l�����]�I�p}���4��;�,x�ɧa�ƍ,�xy#A��q��ρ�/�Ǹ���9v���;��+�Z��ϒ0���d9B�w���4�I�����ZˇZ�$h�%�Ï>Ζ{]��&���5�K6�u	�q��}ACRUr�D��7l`k�P���~/_��bn/e7J��r"���k�Y2�{��RB
�L��f�2?��s�+.e���t#X<�ӒJ��↗�h#�M�^�8 K�.�򮮈3�K���7]��IVB�'a	�Z�ܳ�`���VB�ֿ���hϨ��2�������s�8�;�+	�z-\x�۶���z8�zbN�>"N�-�u�*v�vy%0�K���r�w�*���w�X�%|�N>q
���l�oH��E/QZ�2Kg��e�F���|�����0��%3�+�93ӋVdX&w9T'��\�Xe#6�b���}@LY�0�p���D$���B-c~ZS��j>��q�b�b������b�Ҋ����{vMLmރ./r�V�c��5��;�:����L���li.�d�&����v�|H2�u���=<L�h��*�F�]��u�.j���.�V��s�P+�"�n(��2nn����Q�x�ol��̮-�}���Pb��f��c/3'�68�Zh
T{YkTa�#-PE�)>PRD	\o������,�ʩ)�A��М��7
ە��]�R����Q�?��#�䟿?�k''V��w���_{�
�����6Å7��Jk�޲$���ˏ���M�p8��z��=��w�+J�D�/~�_�P�I��X%���ǎZ�)�/�s�]����p�K�_}e��ҕ�&X�A�,-X�k�����}�WB�R}d/�;��P��uk��G�f��1�z$�����u�C}�Q�pϧ���|1�R��Kô���q�}?���N9�Dvu�)���=�V��!�$�6�@��SN��˿
{��g%�?�̧��W_�{�i���s���G��,���3΀5G�ψ6!�)��(����\#���v����a8L���WtO砡	��6��(�u�ip�����g��6kR@�����K/�vU��CO>7\q%E��㛷�&�B`+}��%;jˎ��Ƀ�Ł�Vnxە̠y�ŗ‹����
L���`uW-�h���NXU	Z~�;�&�[oZ�i�Jre$�=�3�w�C�o*�n<UB��`H�x���pL���H�G��|d������p2f]�����7<��;FFhȞ1}d�g�\�3#�
�w�Yu�Rj�/����%?%vaGM��{�Q��W���7r\�Z�f�e#����k�ڃZ��6�m���>��O^�j�]�}r�Vc�[[�zwֆ���4��c��,��1:�ف4���q��.�}�V���;>g�J�,���[Λ'��)�͝���8��UiI~��O�w�u�.j�6�.e �Yb7��ٮ�SP��H���0jI��~SYr>;��B�a�=Qb�jv���E|	�nJ�тǑ�z��A&M�\L�v+�������t��\�e�����v=������-R��%2�k?��Hu�7�w�l�]oS��x/&�Y&��jB�����E^.�O�R�,��)��$-���X�[{���)عv���SƬ ͽUd
A]���A���U�0��bpnC~D�8iႅ�r��>��g�Gu$�4 D���/��V�ffv<��s�e�V&P,�纄!������ W^v	�����o�/���		}��.�.
j�|��jF���
�}��gV����ӟ�"m'�KdQp��g�P䁇�����9mZjc͚c���������b�]@MV�_H[���N�'��z��1,(����{6��$Z�u�|��ﱥϦ�^��T�*A��b�S
�f�f�����ҋ.���>�V�`�\��&�iͩ���{�b͐��*!��%�� �~�z�İ�$�z��gXH;���c��{�C�}7l|�1�mB���*��l��E}��R�rrM����X�έ���Jؖn��Z��7�]��+��,�h_���n�oV�����n�h�9��1.��7�˩ 1>̅��!�b�_~��'!���
��,s�~�,�8"�+�9�����i�Q�ɞh��֘h�N�����M09*�5T��gg�9�Y@��#����4����@���)= �m�

,4b�y��~c�jH��.���	��Ր���<������,�!�����,��W�@f#�֠���F sN�D`�줧�dC
�x�`֍*7vr{���0�8��s�;���Փ�g�JN��̠����0[d�3��Г�G�9A]O��f�3;��u�о!�F����[~*�4P{oA���z�lD�꿺��8!D������7:��3^��J�o��{W�eW����EMM��~������>_�ʖ
�(�)Q,Kv�LN�R��o�_�����'��߹2�CB��(X�Z���eX����Up�=���dS�X� �6��=vI)����$y��}���:�ԅ�/l�y9��p�Bx���%�K6=�L�
<�V�Q0��A�#�KZ]}0��
Y���r\z�y���S=��yf_��_��߽�.f�OU����~@��ɍҒJ�qѹ�2C���+V�9����O�];v�fE����	wCqs�W|�z�j��n���L�q5-[����r8�(qY����_s?*V��hT��/r~rA�������K��τ�K�p�r�O�qDeu��.�h� �/��C7������?}���ֳ�,�"��,��Í�g_�쟞!;@�+�=�r�g}����UĽf�&H�ʄ�ƑK|��=��z��h%������$\���{�+Ұ���ѵz���Z�㶎�FM0�%�ɴ��j[�Z�]Q�
���ǫV��+?�����k���𦉱9����	E̟e�x�@���?s¸����5��#���1K��xލ�3��2����b��h_�م�`�|�ߝ�l���[�M�gDǂ�E�ˁZ�:Bޟ��qD������G#)�5	C�˅fP�(Lqy�լ�]Vp���@�jN����ȍ�/uȅW~,����j�Iv��JB���Ԙ�g< 7��]te�X�8kp!���Q�$�z�M��<st7��Li3��Q��m��6�ajJ�w�e��g�"�2�I�Қ�mn�>8�_�d	4�KO8����w��$�x`�
)�SV�B�*9�l�z�@��i	�N�!(bfm�=5_��t�c�uH�-x�7�H�y��xZ�0�/w��$EC��%��PC�Vj�s=Uh[�yc���(��#a@J=��:��`1���T��mi����4�K��z8�S�:'BZH�cz<����o{���;�����4�����w
BMA�IPBH͇�n��
\-���P1�)4�'��.���m�&��{j%8��
d�A�
Jd�|��@����-QL�w���,�;����&x��gY��ʊ�}���ʕG�%�ψ�D���OL���v<V1�	#>�&�Y�{,��fk�y��ob����:�cP����t��VL~	�I�xA%�9�3�u?��B��:v��c�n��A16�.Y±S(����+�	�H�D�~�,G�`��f�t��9&��\Y��2��XT�;�)�i���t9���	T�9j�S�u��k���g�Y	hv�}wC���eK8��X
6N}��K�O�}�q1@VJ�v��$���K��Cn��R��X���v9�gAE�}�7��
]@$�#����es��U�j%���X}��ן�Ж������Kq�$~{�e�;8w�EƗ����}DP\��N��%!ʃ7�ڴ�J&��"�>WE�x��f��ή|�RqY�lq`w�*ɵT��\�&��`��/L�o�,ܻw�z<g�r���Dri��Z�A	�=v��?9��/n�S[L��֣w����b���آ֒��>&R�ܒ_��Q�5z0�}FE8��#oFS`��.,�܊0��3�;�8(A�c��]*��;w&4�9��ir�1
�cF� �u�W_���2�\H��o"�&���Vg���fe)�?���?/s]�V:ܣ;XT�M��r:�
7���Y$L���
�ǯ���Xs‚�n[Gx�}p����n����f�'�X��/�;��4(80�5'����-��/��qp�y��_��u�ګ�վ�Wt��]��#�̳�fU|‰�'~�(�������5ǧ�Qpx
j��婪�X��l��={lb�RH�rB5'_��ضu~�7��OZP�>v�E�
y]�`f�bDw�)K���4�)e����W辙�d��!��f�9��.Y)l���>�\v�
V������)TPƴ^,�(nA
Cw=� f.�k�
7o�΂k
�MV!ϭ_^��]q,�#_���053-�|7��
���r?l��BA�7U�	#(/���D�!R���d�.rGEu�l��]��*��>�IX�|9���~�]��G���"��wzf��p�q`�o�~���lߵ���
�s�k�X�нA�Ud�|$��TEug�y�)��S�u?�4�����N?����G-��")Ðʟ}��<�~���J�����-�jc�ͻ
M���"I�Py�����8�Qo�p�5��@��`�ЂZ�P��yhjm�\���Co�*�-��>�-35����]�������C��W����Z�Δ*���I|T�;m<���S��Qع��>_O>W9�je���8��wsWdx����ʴ��)�d}	�Y{.@2�$���,^ۙ<�\�_�#t���F�k�H��t\ʇ~
|}��m����1�λЂB��+:&�f�#xx�W&v�;�<3LL��Y*�(̌c�\1��Qp~P���Ec+Csʇm�|�r��cl�þ�\Ź��3gs��5T�
n�r|�f����Zյ	�7ae��=�E/��Q�^��jiD�T�2VNS�=�D�V�k�L�Z�$@��+�7D&�<3�8y�5k
�f���6g&1�w�<A[��X���8b�Z6�6[,?���+��YQ�E7k�����V?��)&!��
�<7 
?��e��IG�k<]c���x`�jP��ȅ
W�
6�`�4+�S$OH;����	�f�x�$:��ܳϔ��)��˚J�~?#��0Ĉ�!�guP�r���jՊJ8�
A�e�AT��*3��#�21�)��,K,��'��x]���ȗ\x>\T	iؕ��#s�-[�1���$Y]1��yM�-^ۼ�5��5Ѷm;�����ꄬ,���Ӏ����&Nd)A]���`̴���
X�!���ҍ׽=�KsL�6�@�D17诞��G�T�j�֖ܭ�����7\�{ش�)�eRW�2�i���~bb"��m�W�N��w�+�+j~�n������'�{���~�	+IE��J v��j6ZQ0c�͹���榌�fY�[L,E-0�)�I���B��"�9v
iJ�1
!hK�N��e�BV����n
0SkK�ѐ��_�Ą�Wf�*�6(Qs��qo��[w��cv�}h`(]�1,
��U�UjWq��	C�j�HG��1��N�)�\�S��L�7�T��c:)�
�6 ��l���w�1�XC���2��F�/���=3j�A�;@ba���+�vK�Ȏh��K���)/F�O�V�yb�s7���´D�N�<�8>|~��U-`XR�����6�
���;�s�ʍ��Y�:�M��{��Sw���騣s��q7�c%�w�.��]ٻ��\瞷���p��&��/_��*A�E�e�eW,ga�����cd<p�x�i��O5N796	��O�A��%�7�xgd����{8���K.[:2�<[�޼
n�u2��O��Q������pv�]��`Ņ��o%��:�>w	[|Б���d�rt5��_<�n�^���ߵsF�8�c"xƁ�cO�z�e�VTɨ���TA�GRcyyr+�d%��+Ẋ���o}6ny�>z}�_���l���,��	�}N���8юݻ�M��ʐ�e�]<�� |��=�]�q�h\Ơ�q(�#���~
���2��?����N��mW�]��X� ���_~��p�%��+U�I�B7����Bh[�CJ�׈f��=��S\�=�<�B�'�i���_ze#��8&�V�P��g^X�v:|��{�Z4N����$�
O���k���U{�?���hL"�)����.������Q�"������G�u�Y_��ɵς���1��b�	ey\�V�W$�����k�*ʼn�}u��'�r�GҐ�y�뭁��U�]Eՙ���^�3���k�Z|D�cH.�tn$@��/�+8�og¡Q�xVcB8�k��E�B�+Y(�W�TqȻ��4�5Yw��g&�1��y\���-�Ȅj���)vu�5
�i
��6��8�W�|�=.Z��U3����Fu]�#lb������{LX�u\a�фCaF��9�vucZOM`�4n)�?��Q��m���P�٬<�1Ct/��T�kQL��e�?b%�J�>�Կ�4'�Aٶ�w��5�-��j]k��6��m�E�y�$�=���,Y�����$X �B{�Ԅ���g�o������,E "V'ҧس��7��P���J6A���*3>y��ci�9�P��I��=dђ~pQ��g�0�N!ի�F�4�� &#2���Ԫ$�FX��k�gҸ�< �s�4h_yH�_K21ﲠ�Y�v��1���J� 5�(��|{�!!�df�#�<"p�~�t:��M�L���a4�6<����o�D�ƻ9�`��ln�mu��<s��!�$�ؽ���"�i5+'!��-[����.e�8u��%1mw�|�&s0ya��mb���!�`Ne�Α��͔��c��)��o��̐T�~P��4�of:(1F���0���BK���]n�Ea�8�=�xc��CZ����!�IP&=�X.�Ӡ�z�#�V:}��9&�\������D$��Q◵׋�)1j�u3���5������~�"�7���q%�'���=��cw�����IqRb3�@Ȇ5�|����0f�x�πb	c0���]�n��ܹ��k������56�+2���I�kN�%輘��ks�s�����a
R�h!��3��muVHӘ�i���C=*q62k�cwzv��	4п��R����,��t7
�`�Y��I�ϧ�	��k_��7�kwN�on�1@(�ʯ?�G7�5���1��yPhb���d���z=�����JЏ�w�~�珁OJ��^l�6
_��V����>�#�ո���^���J಩p,c�J�w���2A�'��X�j�R�_���̀׿�w����f���+U{}���9	.�|Y��,O-**��$[�;���X�ݻ.�l�މ�?6��?2e8a�,ݪc6�o`��i'�3�>��^��6��1k.��`���[}<�nl޺��=�쯘�O0��!����?��T�)ǯ�_��ϰ��{����w������ϭeȳ�ЀYP��s����{I�0�zH�(�鿂_� ����}���󵯰�W;·n�����w��?)�ݟ~�Ӱu�N��J�ڠ@��}W%�8�}���/f3�'�{O�� c�EYz��J��2��y�y�k�Ɨy,\w�|�+�����N�����i}%@���-l޾5Z�P�{f��S>��������J�6�·oa���]R}��W���??�����^7���yA�K�g$�G��6�}-�~�����m�f��
����?<3�p�(�{_�w�ND/M]eY�mhn�0�02�N�no�3��YС��ݭh
E,��M����X^��4������w)
�A
о�����'�|w��6Q�:�f��z�ތ��멱�0���%�!$�(~יB�ɐ՜9��s�`��h$6H���)��3h�?tT�5��p�E�?%:�u��c�B�	�ZƧv&�ԏ���.9�CcK٫�jM���x{ܷ FzV�?�!�Pѩ=��zid��X�'�B�g��.֖��}����c�b���o˄���P��������Xq�[�G8�w.Svߛ����ϴy� �����!6<��!*��A�L�8�5f�����G~$�ێ
IՍT�[�E��8xc�D3Br���@�"������$���a�q����ppwEP��'�G���Ȓ������`�3)�%��D���XR���Eɤ���'�KLq1b
:\^��2B5	�:�l)ܥ��C�4�ZJ�PK�l�d�y$"<��7ٰǬ������X|��p�٧�|:�D��[�m�'���#WqplJ�;���[�D|��������1��-b�N�g���/~E功��"��(
1B�Bܫ����|5����&ReB�*�D�5{JԒ�����1�X�g>.�뢸f�ɱ���Y�d1\�S�"��"�u�ZK%��4̔�m_�;�
�#t��O�Al����VB0L`0�f��-?�	5J�O�3�����{2D��T
5�&�p����9��?�n���z]c%�z<R�4�֊,��c4s���f_�Y��w�^^�ŋ�54x̱�GLM����HR>z�*cb��DŽ{�tb��gF��ID�<1+h�%��p��D���ML�ޒ=I��\���h'��d��;jE��ۂ���҄��
j��\i�צ�hUH53��Ԋ˂�
ަB��~�9"L1�,6�v~lAןǀeb*�ǴGM����!�03c�H^����i�D3�qC��ͧ�'MNVg{q��V�~�L�buLM!�����a���9����F�=�KX���~�$���,Qތ�~m����z�>��D_�[¥���+���"�
��Ę�\0)LY�2���f���D�f8"��iR�:'&*|��%zE�QL���bA��&���o��1�2�{�iMx�J�m�wB�$Y�0�-�m�6@w�-��z���)�D+�R�:�wROEO�f���p����%)��� ߱�괧1�t�J�I�!�^�\��*0A\R��Y��>���P��wʨ�91. ,p�D%K�<�]]C-_�n����a���q�C�\h�z�۾,Z���Kem������*��Vլ���A�⦞��T�=$��V�c�;���-���ѿ�`�&8�=0/!�1���T��v�+<��kh�lΫ�F�Q�p�0@?�i��5y|0���1p wm�xW:��fyyW:?�:95Hc ��ԁ������'��9ɸVph�'L����T_h���	�Ҕ�ZhY���f�Ϙ�߷g�^�����Q����~�u!��4�+�L�t��Jt��p��s�>��{��܁
�
Ůy�2}U6#�桀2�51�y+Z���X�Wpt5���ޢE2Odu�x���EU�Jӕz:��2Y�q����F���?��R�b}�bX�|?y(�5�Ru��%"���1�sA�ka���B������{����&�3oS��L5��D�[ݮ�X24�����"��T�Ν;x.)V�oZO�)����ZR���0�z�`|�[�'T�'�}F���ô�T�)C�U;��<�{���w�>�~�*d��mJ[b�
7��=,O�͌��ar��䜅���dX�dٲj�O���š4���r�e0��ĬN�Ry�eq��ھ�8e�y>�я�K>��; 2p#�+z+�L}O�{���|~��A˦�x�v#Ch�c�܀�S�\�dI����#�%���8�;����7�F���o��2��U6'��	]Fʪ���9Lv�H�!�Q37ڷ��fiW���kY홝ݍQ�2̝I4�G�K��c��z����yͧ��㔌�K�LBZ	@�kr��@�f�!Ģ�`��G��(+�+�g������� 2ٴ_���Ei�7@��?��;#��2�P3{�obȣ!��2l��A��K�懵T�u�����߸)م�k�0�v�D�fJ$,ɪc�ͥ�d
��ݝ�~9����hЙ	����fٱ{�^��O8���ˮ�x�֐Y��u`›�q9t���
1��M#�����?)�(��
Hm_Q]�p�T��V�	~��T(Q��"�-δ�I��MS�-X�Y���q��|3,<j��Dt�/̞gym*!1�ӡ���Ri���&�G�É��#{�S[Z��gL�۬Mތ��_��~��:VBJ��u��t�bXQ1v�����Y@��
sI���Ĭ`@�x���"3�(�E�'k�[�HCH�1��t��I�� %��B-���nI��՞%���j"{��i����Ǧw^X�@����N�L8�{�R�8ó�~�:Y���6��"S"�C	 �:%$�C���C.��N`���Z
٪(�p*��	$w��i(v��{�5�ͩ�/c�̒Y�$c���q}���%��P�Ǝ?��&?����o���2e^�؃uH�8dO��}(H��+s-eY`���`/�`�WB
ī�:Ą�ED�A[�J��Q��o2^�1J���鱥/#R��Yhc��[�
C~���/1��\�L��۬d�9�2�^�x)�k�^p��0~Fed�ֺ6j��蚶�7��E��S*:	T����躍��d<)L0�B��@����{&9���?F��Z��x����Ŏ����R�߇�B�;��Ft���糧�	k2���K�T��0����8O�a���X����U��\<A��5f<��V
��C ���
#�c
_�������pQ�!o�a�H��^x�!�Ah��+��Mҭ������ُ�f��}D_�\�1�L�>��c!hcȖTu���Mɿː�!����hPu�t�	�e��L��&�Ys9��i>ͧ��H<�'��_���$���DpO����9�����v髶����V<_}"��Uf}��k��jq�*hZ5C0�1R4�Y¬UMs�#H���{�6�@�	�X�Ebb�'WRQ���s	��
CH���GȮ�?�;k?#P2�u·U��

-�Xhwh4�ZF&�%8���;�s�h�g8�[�>�!�Y��(�auuԩg@�1�s��ssofq�P��"�A�Ö8H� T�!��
����	@�_L�U�HKO�f��V��]����s?���&���"c�P��wT���0��cM0��EXQ暪��08f��G�9��y�OYK��]4��L���/���釓��ܾ���.O����de������³φ;�Oʅ��J����*	.G8gό�[Ń\�������Ǟ��
m)8P��#)F��/�"�3��}\��`e�d�'�UD�4���5hl���Qb���s�5�w�(�����;C�*��e�â]-�jA�nYM�%��������T%�1Kztc��ob���D��,p��_��=�t���{`z��A�Cq�E��+e0�.�.g�c��Y��n�!�X��*�z���OT��9P�����p�k�q.M԰Q�����+$�$�ocޟ<B
x�S�ZQ��9G� a��P�0Nwp�Zc�f�5�=kN���T�Gg�8�A3h���5�-�G߾	J�]�Ƅ��چ
��PR��и@��t����]�j��v)�u7������56�D�C��M�?2��2ˬ�Y
�%=��f��
S=Gg�Cu7]&�"��Ux�퉐}�꺳�讫�M��2�M�8Th�� �m׷$��9�(T<�>߅��Cz!�ݿU
e���D���֓�yAyaV^ ݻߊ����D�x�%�7��F�`l�`P<r�)���=D���@�	]Ju�e��t��o��N���^�1�����vdN-�Z�`�5~����,��~�x�H�!L��S�;UF��4�1ʐ��L��
b�a��V�(v2ͼN�֐���ࣅH}�`>ͧ�4���|:ꚊM�{�R�L���q�c��$�����@A4gՕ�,�A��W�R��.yz�M�ٕ]�(8��*��@Lb����R!j��.43N�bfK�*j]	}q�@�`vK4;Ȉ�L��wa�FKJkwL�\g�j��!���,4[�P�u�W%�qX�:�oȑ�M��c	�=:]��\��_�/̮�ޝa4�{)�F�.OR8}z��[$A`�����.��$py|��n�� ��̌by�Z�Ȳ����4���U�_#�K�'�0��
���TŲ,D�҆!��{|̆A4{�+|"�	�H4�{�k����!�3�6А:�Q3����̔o
����͛���>�*O��#����1N�������<��3�k��hyj�)~�2s����:�p=0���
;L��}W��F�_���F'2֜��x{��)��b=wWe&\2<+�Bȼ��>�����Ɍ��mx����
�S�U*�]��2�ɞĬ�R0L��Cs����o����&�'џ�M��O�Ō1�M��7��+�N���~?��(DC�Gg��F��Ei
��jY�=i�+�g|N�� ��j� �2jLsmd�e�U*��Xw�$�81Y�9�ԕ�DzZ?(�K\��k�[-A���k��ax,t߷
�f�>Ր��ß��)�Xyd�1[�f롥d��^7v�A�/�:bm҃|��}J80f�B����!�b|7�)k�[��x�-Ϛ�;ߚ;��K;ln�`����t�L;�.�*\�\I��)�y���Կcr�+�z*��jWp��V֓��_-i�)a��0��-ъ3��<0�!W���׾�=�qOC]Y��6�E�1��i��D��nɉޛU6q�L��ͦXS��b� �
!��Ӕ��u�$�(�wW�8�ApXZ�`���
I~��D6��N�ԭK0�k�]��6��P&�O�@�'=��uF`V1���?�q^��fIqt��1"9Wj:�\^�.C��E��*�0�U�K���Di���\hʔ+"Cv�ˀ!9p�F�O�i>ͧ�1�B/�Y�?�˪ ��M�E��.Fc�r�,|��f/���P���b�x,,���w��_�4Q&Tm�df{{��Z�iߙV��2߭4&I�7#��uo�u�F͘`���ҍ��_Oת��S{�,/�F��{.�ٱY� ִC�R�;���;�r��F^�Cn����i��}R�ZEm�F"��,?4�E=C���1q���A̅��F�I`I3:h�S�j=e^P��`���3ceD�̳��ȸbk�A���J\���x0����2�#�gt�H�1{�	5�.O�1ʎ�3�y^����ɲ��o=�Q��O����`��i�T�Ġ�D��{�L�7
���ڵp�g�=�<q������p��W�Q14�o\6p���=��&o4�r���T9+3r>��Y�-�<�̄� �y�:�6��H��GQ�:�@�J����NPS�u1���D]]Y�A����)���F��:p����`w���8-Iw׍W�>�կ����v���3�S7��W�w��a�FC��fa>j����S&�n
���:`& �}����c�c���k�ھ];s�.N%ܬ�jt��9o�:�PW0��6a�VԺm��&���G��^����r����4ul���C�z�e	5c4C�?��D��a[��Fc�����QҘ0;����~d�d�AAݺ�~��
h*
�*�W�&��ѳ��vzv0�Vೃ��,TaGȷ�@�HҍP�bغ���1�0b(�_�m��d�!�j{�&��Rz�3ls���=o�k��`u�)8?E�&%WK>W�E{�MH�tb����l�`�9�2��o}~2�)��v��e#�_�:��‡�s�<h��`4c���3&[�Fj��%J"�=!��F��]���YTR"�B}\��r���|��lz-������)�d���&����I��hP?0Hnbl$�Y�i>ͧ��F&!,�����>��!-0
�I��R-&�U�B�L���u%Z�)��Oȍ�4���$I�˪P�sK�f(�=�^`z;X`o�f��N���"#U��Mq�$X�xAE	�)@�^�=�	��5��H��&�h.�6�� 
@R��g�Wh�9�w{�
�v�K��1��6��z�5����x����g����5��
��js�块	�	��{n>��<b<1&&��-z�!n��ၳ1F[p������=���Kl�gDLA(b�y	4����{B�{J�adr� �i���(1��$�`X�B�ob���Sp�X{V~0	G7a�aI����1�=0MV?��|�O�h�oxa���Ͱ������?ث`�U�?5߽�.��~�/[{���is�a��}.?r`��Gn�Q���#kUA�y�uTE+*U�#C�d{R� \
��X(A�3�K%��Z����vXI��e�c������n���tG`f��@���XC�Ma��X�����WX�(�>��t8B���!�����#�/��]P_�OA�x�χ�Ri)G��[�-8<a�ol>��_-�I���P��ͯ������y��s�ɫL9q�2��g��O3����fϗM�
�>ŝ�P�x=*�
��YG��*��Z�4n}C�֡vnc�5<�im�5�M�1��:=d �p�q^�����){��h��}ûGt���c�\
�$eQ[h╵zk��ܳ�+�@������\�{^��j�G����N0��8�"/���Y��V0��h�EH{��qC��y���a|1�_�4y�3FlElnx�W)�7m��q�#GU� ���dt?m|>�ij���}�*�$[F���#��DQS��M�7�ht�CH��k��_����n0�G���Nxk	ϛ���f�ay\�
�=5�U���3����a����&'E'�J�NMp\�e�QT�BqH�L��9��,l�5ΰ,
P0m�eˆ�4�d�@,Jlq{[os�
@�R�8"�Y�HC!���IB��E�i>ͧ���%�<�f��R5�!� 
1��&�9�,�X�0t��=�AbZ�ưg�	��X],&G��W��lI����]�T��U�{�����-"EH9BgD�	=8x�����)�����y��AцQ�Ι�
�a��X�У�Of�.�,�1�3F�{�����^4c$�89!�&nM�YA�;CQe��B�tF�}0)ynSi.���<\]�T5MC�"��mDdn�1���l��୰��j~ґ]�Q��
����:&�h<r�U�}�O�K�ٙ"�S*O��"D�+#�z�pqPFaMP�&�e�M)A���A�\,K�}��a�w��.�G��_�?�Ã�:�j<�~���^�\�ͣ��)%����_l�G�����'����<��������:n��*���W��LƦH5DJW�DR���a�=�u����g��ȮHl��4ze�ZZ�e�2��~�QI8�~`n�ڂq2��*�K-|ե((I,����܇R𷢂"�HkAx�	���!��ݕ��$hPn�@ݴ�8��7я�c%z�x�<�*���,cJ8E�s��$�����?�W�mǎ>�xKM�r~���U��:�M����S|���;ڎ�³M�j8G�}1	OTP�D�,.d�nY��{W�1���1�RV{_�
6a�ϐ��t�ח5�$g:��Y��vd����j�0Z�H^l��G�bL�Ш	�y۾o��G>mRjB�f=йO[��&�닸26�.b�������g������s��'�Ƌ�{=D�8��?�������3K���pu�q�ͺz��3	U#+�����öy	�6m�����M�:�(�o�}it�4��o��MXWj�e:�f �{�M��i�9��`~��4$� ۟z�c�el���\�{��~�i�)���ҿZ�j��B�)D�W�ݦȂ���q�1�hG�-[��AZ��KQ�Hl�uE�	���?+�ɂ�a�Qfq��J��N��%�Eň%@܎i�c���
2Q&�1X�j��F��FD/\7��e�%��.[�{��,�G�RDW��������M�$�Lo�j�N�*	�{�>vw��T�*G�	���|�O��
M��$DW���(A��jw	�_,�!���_16g9��,�k�K�]�Q#�.cf��H�Xt��bQR1VLN2�LĮ�f�O�8���/Wv%Ŗ����B�5�{@�,�#~v �Q�o��Pː�dWE�-B9��S�|ĺӿ�	�߆)�Q.�M��k��ka�7��r����z�L�-���[�9;�)��9%�*DitMh�MQ#G���*�NI q$C�Ӻz��E��@��JΘi�BnK���O����B��Ӷ�A��o���86(�+qeB:F(���ƭ �!�'>e�Q9�^��y��8���'!���`�$l��%�f�o�4���-g�u�38 �) �|�O��p�7��w��9>�/��Z!8�O3�"����׾�u6\y�%p��
�h����!4��h��ߡm�Od(�ޖ|�^�1���>/�Jm;�XE6w���Q��e��a�e�+�	,�(B���x�g@q��Ay_X��T§(�E0� ^ih0Ks�

|�SRFf��{��Rԡ]T`�<L�1^�F��U�Du��P	��o�O�}6���oz3:���j��
ݩc[��R��m�z�Y&��Կ\O�c�#����py��φ��>�����)]����������`�'�~Cm��o����v��d.)�v3�G�I�Ւ�% ������V��0~�q�S?"K5`�Ѳ���+�an��1�
!�D��N�j`�v��w�dt���"
�y��9n�{���&�jq5�^��	��)^�kVwC���	P���-7Fo���9w�%�~~�Y�1��\R����᱆[����K����4�l�%!����oS�i������bP�/����4���x0�Uj�N��di���W�J�mᰒ��V�{Z�_,A8�&Lj[0�9B<�A�Ҷ��ub�"�@e�ۡ��>$����_��wsw���我�Ӭ���6%���_0AB2���Od�롁ҭڐ��P��qBi�ӧ��g�~��Ey'+A �������eHl�HKlW<��O�i>ͧ�+�9`�j���"a�E��㗘���`�(LUɽ�e)v�U����4
4-��6�s_6�Ԁ�h��s�õ@��@�&�I-�!��X4�ɛ:0�m/Y��?�MyͪE���S��9b��?�hZ; �]%ܘ�;��)ƹ7"B{�z���~aX�F�Qt�f�3x�ȝ����ͼ#)�Ȇz��"�G?V2	;��%b��•9��4��.v>�_�߰QE�̅xPQ��|l��&�}��-���	�$p�v'�X!�IFNAY��k�y���23�0Y!�"���y�`��f��	�N�a qEfq��^_��846.�ֽ9�����త.am�js�(4 K��v6ԇ�a��Mn�.*8�|��M��}p�;��:ػ{�䰒��k7W�*)�P�9�J��v���/���+!�Ep�CE�y~ǗТ�[ϔZl>��\҃}�1+X{S��3�~h�u�О$ p�B��6%���	���q��u��J��p�&�-�$f��B��ɬz9�9�V3��T驰�TA?�U`���FY����S�y��r I�<*���8�~�S#ϏX����bؼu����N�}W_����om�����]G�������}�YG^��pT����8���	6n���y�QH�~�J�����-���S����֟�$�j�f�~T1��%�g�U0:ʷ�-H�;��S��Ŏ��p�<�ߓ�ҫ��m$�Ѐ�mz~$f�p�4�Φ{v��IX�'J�=�/�Ld��I�շ<deq�Ⱥ��@I����\ľh�cˆ���0ͬ<��4 )U��kq;��q�����}i�x��c�3��-k�o��4�--�q���������ha��1g��J�SPeOc�[ñ�
�П�<
�5sZ�H��a���q�w�e�`pQp.R<cz��'u���C�7���_��+�}�~jq=���\r!d�ev���]�n��|	�D��r���K&ME�h;ۈ�C�X�0��\B��EB��X��bejr;��
tI}zO���ddw �$��B�7�#������e*����mxb}�j߂F5���U�0�u@�@zPwWr����R^c�@��:p�O�i>ͧ7*�z?��&L��p��,����[�`�	ٽ{��p�	I� ē���\U�mH�N����`��o(�6j��JKc���$L��1U�Jbo���K�,VMr`&���ie�0��@�&��!�	��$]��KE���uoK諪?�w8"�#��7*�!���}h��r�/o!/���������41Ȭ�y��i�:4�����Z�a
%�����_0ԧ������cW!A4���W�=CtNI(�S�b��@�����:�5BveY�b�0�r�4P_�Үtnzz����ö�@4��		S͚�߉u��%$	[K����j��}��f�g�@T�GɈ�Z���bxR�a��Mߒ���#�ϜR��f�ɴ��r 6�wVl8B.���Ҽ��7�ͭ��l�<�.cH�\��ʰ����S��;�����e3����
~�g����k+!��O�3f��Ρ�a�C~'�@p�1;�Î�+��͡�!4�#T��p��B�l1qG���*�#jt��;�R�<q�B�^�����5���+���{*��2�}#ᓄGΨIr˕?\gi�xX�<�B:�w��'	~�>R�'l�
��+�K/�^�����a���L4A���"�ֆi��>�6���e��T4�hK�����"�6fv.b��K��c1��J|V[����	⒠H�-�}^]�3����g�k���C�{��`�%�7
-О�8��������[۰��ʻ:ҏ��#a4(�m#AȞ��1vL�G��^CmY�w�<o4e��� ��t��"D��x��VKǘ����Y�DG��!\�HcJ��f"?BK���^��c�a%)�u@�DT�Z[[l�h���������b~>Q�S� ``Qb,��@�=D�%ʏ��Y;�У>�%���9Q� ;P�~L�^�����Y�l��_�;3#�PX�>�G��NA�֙n��Թ��Y�Q8�r�\��k�C����j.��Ci��(gcV�v��Z�J=Y)<�Q�A`7XI3ͮ[�qB �t�`}���c~�РȌ^�.x�;v!�-%���Liԫm�x`}��,�[�����(�6���@B�59y�w
s�eEU"cM<�3��HR�>a0'�ly��+c7X��y�]����D�@�!��t���j��-����x�d>ͧ�4�^״pႨ�b�'-��h���X#��CXC�D��_='��LL��}��/.��V����$x�rr��Jd�ʰ%�Vڤ�-P�T�0r�CA�!�!�; �wP�OK�g���7TZ(c)���+D�n�:1�b�&�u��.����H
��}��TG�z�!�5Ţ�A���ͷMwy����-؛����W
#�&ex��5��ې(��l>hmY���x�./D0�Y���%�e.X�e��-�|%�>@�)�X���<Qߥ��Y�BB���ߞ��Uz\/�gYK�B�~O�Q�%z��vrg�4�1��]?��~�y���W��g�^���R~����Y�}��f��‘M:Fk���ͻ�l�i0[	A�U�a1���,Z܃��^��;�|e3�����2�߱�N��0c
/�\�x�����8�r���^���W���ux��7����n�
�\M)1r��S`F�C$�=����aZf����Po�B�)}a0Q5qq�q�@2_�pn'
4�MQRP4��O�MH�lPFP���z�Mc<�(xtG�[Ơ�M�W�+Eq�%-4�\�Ϥ�/�B1�at��qDtE�r�I��e�w=�|���Î]��Tw�~��,�|�v�� *aMg�u"cOJA6^�?��-��[¾��i�:�€���Q�����fR�T}�o�ʻ�3�I�Nqx���HF�}��Y�
�SF'
KT�b�R�D��dMR(��|��MYF߰~�B�ts5��k1^��Rh�!˂�/�B6
�Û3a�j�`r~~[2��yۍ�'�)����6[�GЄ�O�4�x�DٍQ�Y��|�(!�v�X~�M鞅��Z�ȳ���u1#�l�ܥd�ݣ8 �,X�H��A˂WR�<*��5)=��	&3u��W��Y7E�Y��z��Y�l�������� 
c�Ϫ��g0	�.��o�:�EW��	�����~	��)������
�w
�A� j��|v.�Ӟ`p�d{��_�%�;z��$G�)0	Mj�\T�Mz�:僠�$�O'n��R+�$,���v#^e�|e����$����E�R �$�~󧱚[,t�-{��	:�I�

\���1^u!�!���yqT�]c�(z^��jS92en�ӏ_w���|��Jx��R5���_�x3��*�Ed˜���϶z-`�A�'zb�Q�[f�0ʡ�(�J	��qaqL�b
O��l1�C$#�ƜH��_(�L��0ax�@��V(�Ώ�R��'�e����=ˑS���sb;�͑^-ɫA�oMS���<�H����$t��[�	�CIF�䵏[�� ��Ղ9r�׍�ip��}_%ʾ����T���s*я���H�"5K�؏�r.DuӾ%x091	fno.*R��r.A wiANJ�L}�'1�/��-�l���'8�]�|������_���j���j��]w�_�ʷ�?�8q͚Q��d��K_�&|�����E���V�}�f�v�Ck�Ý�Z#�r��u��]�Tڷ����o_�_��'��=��Gu��]��������K�胻`�nN�Kk�è`�wAo� �/����
�L0>�q�T��^��m���߃�.�~�~	�ya<��S�ږ�p`j*2hB\o^��cu�d����l�&����!���]
aI�֪�d=ZT_Ȃ�,1����7��kނ�,���{ĕ�Xj�g���U�>��5�\�R
�u#F�@�)1fD��ecNG|�e�4Ş����4�v�Zf��Y,^���>���Bf���?�#xz�:��� ���t��&��KE|Pqެ��/V"(�Uc›E�GzQ@Bk�'y}��Y�<�җ�C�vFkO���s�zB�}	-��O(Sb�Yi���Ar
���V�T>Rr�#�Y���%�X��!��v�5���1r�`��2f���b�O��S[O?ϡe��y�Ǖ~xz�#�Wp�m���xn�CZ�v&dF�Ž5��ⴆ@�}��Ё��1���`�����΀ґ���;?
�Ikh�0kl��t���z!�g1>`�?(V&<f�
e��8�@�3��#����\ZL�B�NC�^�M����/!��`��ނ�!�ą��t�qЏ�3�n����O���@�ۘ #����W�.�5
1���^�[�-?����X����U+��}�K8�V�a�P�J�\;����P������ih�"��
*/0� Y���c�ڹZ���4
s/e��+k�!"a�nj<"�O��A�1k�;�}(
BZ��]V�RW	`�L�6Jx_0iZ�j��qig�޳�-]2/�1KSS�|!�9ڨD&���q�̧�Dp�����&cN��y(�:��	E�`����`T�,"\����m��%��A,��4♝l�doBʨOd�=M�\��%82�]!i\GC��	����L[)iN.�(��lu�*�e`n�iC-��Ы���I�΁=�
�!�V�'��7�%��y�r3b�N4�Z��Xם�#Ys��L����U��Ztkß@��P#tK��(�3!M��3�"�EW������c��!�ε�YZ	�'6�&$I���BrGJ�q#X@0���ꌅ����?�(�SB�6֒��B���\3>)�����C±Ĵ��Fq�ߝ^��$l��[mr���p�E�Wd�ZS�?�̯��'��֪�����Λ��%$��*�zpx���bh�Mhq{7ݼ#F�-Ӆ��+�W>�*<x�Nx�ǎ�/[g��&&PE��Mt�	m�<k��޻����ž]"��k�w+�	�G�=����n�em|r�1��y�E��x�d&�os
 �ݻ�>��u�^*�K7ž�{aǞ���!э֟,	�
�vL��(�'j�����r�b<�����4�cK(���BĴ�R܀��M8�(2=Rc~��Ip�>Ҫ�axn�K��pd!���*5f����'r��[���B4��d�+��5�1)�p]*@�O�`��ep�ҥ�r�p��U|�|�߄���sg�u`���6N	9�ӆ��u0�9��2��NILH��R�ܴ����
f��H9oQPwk�y�����^�i�s���Ο�-7��q�G����X�gt�`�TK)�㶿�[�0j���I�"nc�Ͷ.�6������7���@�Qqh�7�dif���X�-�a�JL�����S�̒$ND���aS�?��[@�9R$R�3T�bLnY����#���@a��v;���R�{ڃJ�ܖ	�L��|~l&8Hp��qQfJw"�`cLj�y�Z_���xjZJa�la��^ܦ�{
2w��Q�bVO���H|Gi?�;Y���
̲�j7Dwβ��.�?�y�cO5w�,c��:���"-lOe;�4������YVxwTlSM؄I�-�!s/�X�@�d�]	1g�����%�8��!z@�
�mi����M�>�4��]�������1/����B���~@ֺ3�iE�J�i�iF�ĤalV\���p�0f���J�0Hv��U��<05}��o>�%!�D�-Y�h������;w���|��Ii�p$x1�D�$&
Ҁ���W�`�P
&�WMlҌc�"Ġ�̠����B|g�oщ
�*c�d!z����k�7�@�(g�!"��h��w+(�f^蹙��ޙ��D��/\0�n�i쳃Hz�}�`ͺ$�+��p斁��A����L��D3�;�����N&ch�ۑ#N��7ߌ���@$������Zan)�������$���Y8B�=K��s��A�� J�)�ZpE���W(AŽ�_��5ض�:��X{�{o����
�x�@
�H��Ic�.)�%JJ"�T��b�O�J�⊣*����;�S�������I�dɱ,�J���$RD$�Q$� t�������c�o�1�Z{�s�o7�L���{��{��C-�#^���v������{u5�@�Oxr!�c�{���Myq�_^e�r�3�����1?yc8 CQ?�>'��vt�M��������/�G����?�1�������C��_��1�؏�#}�S?�	����;z���>~���r�	Ur��T�sI�:x��3O������"/�_�����m�?�ߥ�����я�����_��Z�����I�������_�^aQz^�=�]`�!^���'��g/���:=�
�����?�*B>�m����T!r[��K;���G�W�K��
��ϿJ��s��/��+�g�T�o8�i	�Q�[���.���=���ߞ~��8*@z�uϛ��G���s�o|}��v��{�K����E�x�)7��\w�����v���P�eq�	�1��m����>)`o_2?�ֻ��//x[��I������6�{|�d@Y\qN�Q��V��0Sr4��4�nk<�>��1��hXU���/Rے4Y�'.�K��B���+��������_���/�z	��cm&�a�]�Pi������s��� tUl9�x�(+EqT�x]�2�����5��$�ʒ� �8�K����T��a;��Y�@���b��l@Ut�����
�ׂ�uၟ�2�a����'��hKp�d���褸&U�G�f2����=㳿������(����{���͋т�����"UD��)P��d*��Olk8�E(��~���-t�Ƒ� �2[���/�w�*.�R���҅~JZ6hyB�7�ۻ�.CE�D�x�Qm���(��P�"u�:d��
\��)�D1�i9�r��U���'"O6k4	W����y��{B��I�3���5��z8�bi��,�q֙!����᥼��@���Ց�j���K��)��=r\R���ę���J�S����3�%,�,��ga�}�z�{"+E����ʞ�I�w�HJ��XWN�����4�gž.�_� �v�>a0f*����A�A��o	6d���
�v����s�ѷ����d杹@�S�q]�{�P�hSJ���]rMy�������ם���۩OG��hJ�;w.n�J��<�^}�u�<ߞ���ҀR�{��G{ט��  �䖪AR����id�is��x�R�X-�,��%&UƋJXjU��^T�f#0c�����'�tP=F�Rsn����-D��#�y��O�]�B���<����c��,T<}�4k��iK�K�%_��
W��.h���F�Zax����N�ܝh�Lg���ȁmp��o�b6��� �����4�i9����Qd�/���*c���@]��zl��+ˁ���/�,$���\<�2���|����0o+c�&��`e
�x,N����+
Egs�_cؔ�;�)��+|haTfS��4w�%jT���ơJ�S��=��7�H��h�ܟ���ȍȲ�e|�)!^}������QA�:���3��?��U�C+?䡫����u�{�۔'�?�,}�?��U?��B��������g~=�����K�}�Q�#���z��_���J�?{��QU������O�{�_�W�|N{gu7�i*�N\�Q(EF�,.�ܯ?�/��||���l|���3�"0����;b͚f�.��
FZ���ad���I��}"�s
��[���_3K�9���ȑ݀���N�	�����l?��ȽX��Ҳ����a--�%��u1��|(X�+L��R*�V��uX�.6BMt��BW���vx�pNc�?��f��ߢ��1�rǕ�}�����O�����s�<sT���HwՋv*�m���W^}����yռos�[���
��{�O�޽��PB9ϛ���!=�BS�{�ApCT����Y���j<MF��ʂ�rO�@|,�!�HQ�𻓓D���r^�+���&�k9��c�
������ύ��:X�������UmnW�%hwe�3!}���l^ ��*n�.e�1�8���k��k��^κ�`�L!��7�O'��@Q�.�B��s�沞�7���um�0�2Ʃ†v��92�R�d����Qz=�#��9�%SU�LS7��9��P^�a!7��GI�9��^ǂŋCK'	��mu�e�K*	d�����c�(���G���4w��;�T˿V%��~��lU8l�$uI�w���>I���0>.�-�L�0��%=�
�(}鴭�p�t�j,�B���%A��r��K]l/;/,u�e-�$<a��W����`�	�����+�&�(袝�$[32�9�Իzn�Z�����{O�Cu~T�a5��ʼn|�+�#[g��a{�&�P��xt��K��]y�UZ�=�&E��*=F~����}�E�r�,%���(߳TnS��Ag�gGT�("2���Z��[/�����D9���zK��8ǂ��{�G`*90|J��Ԕ �2w]J�K^�J���
��,����q�T>&���/�m�\�&��8�� �$�=�Hl��gȽRǑWm��V�qH���ƨ���bW��M�E�pL	D|v'���=b�`Ֆ'_����鯲Il�&�|#����W�0�
��r[Zy��2�%s"�{���:��	�#���6���c�Z\�~s�
��Ծ���Q���*�٩��[�,/�V�H�����q�Sim�;�4�ԅ�ZA&�".�2lJ9�a4}��oB����N�}u��8��PƠ/>�L=�R�,���|��Z��SI*EN�|#���q�-�s@2��#�V�@�opUQн�n�c
>ے��+��t���tBG�����3��1�y��%�d.�	�u��SO���=[b<�M�
#�&%?€�F<~e�\M-��U�1{�;��R\��DM�;y�y���h�	�[�!�y�l�<vCz�$+D�~=[N\�?�/�w�{����=K_|�E���'V�6�D�A��_��ɏ�,}����6�<��/��=�m�{��O��5�G+��"-����H�O�1�3�OѿyT������6=oL�n��:�‡��+XҧǑ�м=�E�r.��~����	���v�E�4,��!)����:ld	��8�3,�BX�VA1��,�����p���t�������g
~\0 ����<��M�~J�e���H6�^\;bGH<x�����5�b-n�����Vxߡ������&�	�%�%2�D�yD����f���Э��W^�W_��/�|�s�jee��^�o�W~�BO=��Qr�Vx�(�_>���J�띖��HS���5���y���`�0�w��X1J�C��"?��{'1%E0��B�A���!S0n�˼�����)��Yhc	�����la���N�]��͢Vi�c�w=|",rM)�ִb�Fv�`޼m�w4v=�Y1OF_��
��	�gQ���og��'z��9�';S���R�`~W�a���B���^'��+����5�/o�x��CX�����[)���Z�(�5L�>��T~�\���',J�-kE�0D8�H�E�o����
4q�^�:�vMLg�&L����O�{��M
'L_
@v<��G	�i�~v����+���3�^U#q�`�.l��Z=,wU`M�8]�^��kk����{�0�}i���}���f^�F��B�Pp���#l�p����>bY�蘱��ɦ�ut����3�dxhuM1�z h�)�	��0pg��ӳ��mZ�I,���".�������?j��'�j
�:{�6�~0�²�&�/[�����H�#���NXf?��R�鐅��u%��C����?K�D�K0�\?6VPX����i��ש���'Xrm�Q�����%z�9�5��&O>��BQ�z#\�p��g�+C�g�
S��b�fI"=����^vh�ܖ�r[n��.��W����ao���'��S���tG6P�� ���3���s��2�M�1�2���ޒO��,U%������&�5��A�\X���6L���L��Yހg�6�io�UK�b-�����Z��  nf��%��Є���<Z<&"FǼ���5����Лt
Ԛ��t10�kg�mo0ܾz����`�f{VCx�im%�g�ȡt�}��i1ؓu
!.��%W&,A8�U[{Mv�aܔ:aNrwl�P�F��Ҭ�/���	�aoJP��
B���1���ָ�C0Xv�8��}T����˔��OkBC��\)b��IXF�ջ�4�?*+:Ў�&���{����K�����Ϊ�~�}G��?
�S{��~��h9@���/����~~��UrX����?����_|�>�;?d5BXO�{93��W����]y�O0��gr�w�A��5U1Ξ#&b���L!	)���\��g|#����`�۔���8�X3��#9�b5gm�QHa�����ѥ�Y�v����p�;�3��=d�p�v�L����f`}t�U@�7&���va#dP$�IY�Qj٫9�*�v�C�%	i@>�f���p��2�_�P�~����~X,4Ɗ��-B�һ'��h�n��4T��ҏ	�nT��҄A�e���9��}7����1/�xܔ����a�Q+y$
��g&`kʑWR�^B�vP%�>�����i�F3_��g��;�D��`J���-,I(-�vm�<��]�P�3M4dj;Nj����\*R5�<�F'xV�Rh��&���–�]�{�U	\N�9ʿ\`L{קּ��8$��"�ԞX��%�'}�e�P��2y��.d��[Sz������>���2��+U��d�_W�N�_��/0�z[�B'.�h�y��tM�x�`@�-]2�kڪ8�%o�[���.�{_
��!������
�^�!�*���'UbL�aX�jPai�$­�$�BUQb�/.z�d����-��o�*���C2�f�Yϊ��]����dwJ��j�q���騔���gS�\�28֟�nL���z)֧�$m��k�[������B?��"��mWi�0vq���|�~�HX�{��W�k4�q�/��]�^!Ƕ�Qe�_��P��X�ǼD�^�27�)y��%��[�EJ��W�&�c��u�IQV�	PL	}�6�b\u�8��
���)1]H9&B��%k��*X
���l�|�.�H
�5�gO9Nx��%�Ѻ����WZ�q9*;�հ��㦌��Ѷ�0�=�]�5E1'̜EkR���e�^%!X쾔�ܖ�r[n�W�4f����9��J�Z͢N@L�!�f}�,����0�'e(��XX"�9�F�������ڱ�#X��l��/����,d.=��I�<��-�kBQ�M�B��T�T�aѐ_���9ON��\8d8A4t�	�q&	�)�j$�Q/oL�ܬ0u�5S��&��٘x?9�n.��X?':U�#l�=�	�/9�g	k~Cd�
ךo^��
��}���}�x�,�΍���,�ȕ�v��|�8��T���@qb��
%&K@�,d���լ���IB�����<3�5��PJR����X����`��*8��\yxd,��Q�z�`�YbI���;n{<�����%���<-$֧?�Y��ߧ�>������U�\>�w�b�>�~��^��d�L?���O��gU��#��������<���C��qo"��)ض��b(�W^7����ͻag�����S
s&�`��:��tbϹ[�3B�- %��֝���[�����n�3�k�C����O|[a��RY��c2[޿Q���'�o����
J����A���W�ﯿ~P/���=k�V�����3�^"W��J�B*MP
��e��pY֎�Ѓ��>q?�<k�X�S4\+������hĕ����x�q
<�x6C��2���ǹ��bḠxh0�)Li �)ڪ�3\<Op��At\��EC*��'���
�^,;,����F�6�Q�enc[���s%���r,^L፨�c^7���p��B��^���~V�I�҉�`5��VI���?E6DI��s�d^���~�;
!w�1�%X��8���:OI�r.g0c]�*�	��Eɮx����/���?�&��E^��}�i}T1Q�aP�f(�s!�|�|Gȕ��L�#^�fϵ_$�Q�p��u���o���e��\&�y	�s��F�s�s�f WN4o3(`!��P�)ΐFOm0�����4��&��ō�z|���+ÔTi?�?5\���8ˑ��a|`�}�g_ף�A�hE�ı�\W�:)�T
WMnh@>�I�?��0
8p<dC���ʸ��J�{�c�_�v�$:��@�>�t?h�Eov���Y��(n�ó�Վ����ܽU�@��!O,^�����v!y�[ؼ� ꚗ����bo�Sa�.-z>�0T��ʶ��R9	�C�^{@��K�����!���ȈN���	JLt��€�L�`�����\e�c�~���pߌ�l
�-F�M�Q{\D��X%��>\B�d��"�)��"�N
�H��6؅�	��ʓev�l���P�����ܖ��O�We��I��΍0����#��<s�����+���U_{>{l�^
k�e��Xk\g�G���
F��Hd�&�BL
%��%�6��m�5bYN|O��])�9l읷5Kz�@�e��+oM	f�댻�h��M-D��jE
�9
��)��)�#�&tt���q6h5�S;�c;]�r�v�t����0�-@-�uج�R)�\���9��h�BL`���0VKj��zc���*b��L�8�x����KIR.�
LM���i�R�V��P����å\-
�"&]kz��	R����+�W�*k�A����jh��^�~���'�Gd�nSvh��c�_���ʒ?�mߪ����h�DZ^�_<�i
�?�'����O����C�>r��o�ſD���IϿ˼N�1ʵ��r�K��˺�2�^���9�����p����D�TKf������A��jgr�l^�>*n�8Ž�F�ӥ\ɠP�H�B�\�S�½���\��XL�г̫N*���s*,0/�Y�.lnE=�\ФB�D�ݽ�B�d���Ǡ�U�k�`e��H?�E0�
�|�iJll�w���A�+TqN�r꩎��Ɖ��z�4�Z����"�w�`c�e�	x����CE�^�]�'.�2�4���_UB���͔;��M�a�̼�4lք6,|���B��Z�r�unCߍ���<��CJ�.U��\W2 T�?���$�':	G�^ԻJ�s�j/�c��A��!2گL)�{���+��3��(F�i��y^��w>��4pI�ֲx&*1�B��8Ϲv	�Q~d�E�zx��̚9�řܗ�>��IJ�×��{�>�.��fK��>�vK��F+�,���x���
n��.ߧ�K�\p��K�q�����=�[�7��)�W�9e�_[���~7}�ڽ$"=��GØ;�cܝ��u��qra�Dq>7n��=Y��S�E��l����U����|�d�;S��a(�y�qw����+}O���0��O�.}��Ӈ�6&O�P����߰Hw��\߳��W*"���n��	d�;�Xnjfp��
���j���
Nx���žT��r�UCE���"K�ºba�P�	d�hȆ_|+����s�D$ڏ5p9��uﲷ
�n��x�G�H�!�E�R%J�@�A28Y��ao�{?���q��À4rkP����z8��{>����%6vJ7s.��`�%$,G� 3��G�;t���ގک�r[n�m�ʔÕ��j�f��5d��-�C���k�)��Y�)���"b�o��Z��Y�jh'�K�kvAN{����f�טa�B0FK0b �[�Xh����_s�8��Q��z��2/T`{5\`\ɥta���8��qq�/ԩr
X|N3JI\\[���H�RF�������O�yb�=�����Y9:7������@��'�
�сP�Y�_��F'������z
	o��8+v��X�
��� ��#��<���(R����g.}�`bC��V�{��F�!k�rY�Ŧ��#���Mص�W�'�;�՚��N7Bpk�#4�%�l�TS<�+�3&���zt��P�C�Jo6	z+��?JOܿ���绾3>�;���W��п�鹣2�)/Z��O�I����թ�����G����o�ת�h���_�������ܻ�E���_��~�>�yEZ2�V�)B~�=k^ �<�}�N���)��@���.�Kj�0f��@Ř߯)��Maf��ގ[�B���B,�6�i�
w��Ǵ��bx:h"pg��G#�:g�e=뀦`̈:�v��q��U/�:#�*�A��p�ϼ��†)�1�XT��K.+ָ�uW���`����Y�҄A~�щ��̻�#�ۺ�/9&Y	r���8����P�
��l���l_F<���I�]8C~�����G�P
�|6F{��:�T6���y�ᢊ�0�r`��'s� l(9M�����B��>JKp�"ڻ��N(��}gM�-N�ʥ(���R-�'���r(!Y>��Ъ�L�t=������E�<�bq����Z\���sY2'Q��29l���XRaU�vg�J�8��UO\g�\������Ή���y�ޭa��NI�?���&��;�ԫ��gR��5�`�z��0j>p��E �Q%�kؾL�z��P�S������e��)��GU%�{(-�v��T���¦�/�`ƿ�P�s$\�^�+�o�y鐦�`��lwT���	��aD�|�9������gٛ���^:p�z3�2�������2��N��2�k�7&�ݠ�XF4��b
�ݽ�����%���GkN��%�C��-D���gNa$gܽ�*����w��*xp5P�<!��bҭ J@���{>�,�J�$��~j��5<Kc�J���>�:�v��–_�3�*��x (��(G�����[��Sxcfc�{����W95/
а�j�F�
p�#�Jm�1Q'ר#ԇ�2p/�`
�H����)����O�r��q��t���$���`(R���~��"��:T)�5�!����d��(]ҋ�%{̶"̘x�4>�Hز׼q[2��␲-�'ܕ��0�h�䋁p�h�K�]��d���Iӷ�ܖ��*-6���I==�\�zE���=,@���\,v�[b_=���,N�n��v"��+��#�X�$�nQ�1H�.!P�|G�U�EK/d�D3���L���XҖ�y�(���)̾k���%}!�Lh\�y%�%��k�{�Em���E���\�LER@�ޓ�	'�t��QO��rJY�����e�+�h���T�s��o�Y��7<>�D&>G�*�s؞L��g
�J�����	qOI�:�KU����d�SjX�6Lxfٚ��s�(#��qg|g�`�A����|$�P���.F�*��w��D����E{V��N�ƊSbZq��\�ؗ7y[n�?��h�[�����TG�JSN�����>���n�0���cev�{���}�3_n�0��
,�������*�9�b�ƴb����sC�攱�R��ц��,-n��Z�-��Ѕ�z=�a�����渼A0v�m���|UFV����p0T����[�O���	�>��7�v���q�<�����24S( d�@��Qo���@rW8�†X�h]?z��wW���k�3,+Th�x0���_�a��ʕ����;O�K�lR�c��D!��\U��w�M&�L�<��#WM~�ݿ�����mA��O��S��0�ʔ�����,i��Nm�)��Ǎ�lsj�%A��!�<A{[�R<�=��#�HÏ{2�Ck��I��ja[���^�����nv^I�b<
P�[Xw˫~�qd����Ý����	x��
=ꮔ�(>Ci�?�Ƴ$S�tBw�9�w
<c�qҔg	�Oݤ�U�Iam:BRBah�sv�\�.�����o�}������\h����)�v���{��I*���8X���@
S
�J{�����]ӧ�қR��ж ���b�M����P�MB�_Ɗ'�QiV��aGN⌅�k�k6��ZU�\��NKt�|4BU��	j�𨿼���0��h�IڣC[y��M֜~�}���Kσs7�:��Y^�r��w���+wH�7�����YZ;���v�Y�D��(x������6q�7���e]���0��;�b�]��k>/�W���5'���?��#4|��S�~��;��O�;m›��
l�����Ў�*&��P�;Jχ�
/T�8�I:��U"�/\0[w��_̡*d1f,�B�P�\��)s���D��چD�8$s�p�͕6{�S 4����ysP,�H���y��,p´,q�8&�YԜ"���+I]��+\Yй�!�\"�+&L����ܖ�r[�li�O�5�H"��
m�x�c�g�ۡE�T���l
KVJ��� ���2(��_����Z%�q*�b_�n!����n��T���Z~,��~w�u+FW�^i�A>��(����)������yt��"�������w��T���H�[��(
�5ۚ�cnj�4(gީ��ܴ�϶�:�lb�"̜���>fI!�a.��~�� uYf��B�s�Ӻb�
�,�}sf_�ev�
q+xR��C4�SY�(%{qz5���_y��/~��cz�TS
H�C�s=…��!魲e�@���.�=fBS�WV�t��.վ)����lT����L����y?��&g�)υ���w!���c˔9;��vpvp�5<s�7��#(?���|^E�}�_��9k��Іl�V�~OA��A*�Hΰ3�]���
��EV5Ɩ�yR��!����ʅZ#Ϩ%��n�ҍ�4N�UV����][N�f�s>�xC�\ǘ�*��Qy1aم����Y�O2����n���P4�]��*<�\0�s��9�n�rSN
Q�h�,����T�<�D�@�d�X�:�Y�r
w��v!�t/4�$H�m���"�m�ğ�ы
i
��<����]�fr�Hh�p�������Hq=>��zߖ0�h4�R)�F��͓�7+l�X�)��� �,[��&
�Ck5��@Gq�p����)I���W�V�e�%}��+m����=�p��C�ⴠgv��`��8;�k��i���T&lQ�Q4��>���q��A��w	��kW	����߲�!��b�c=γV�ns&��)��b�~�e|�;@�y\�?��o�e�c���n-'���^���}�S���ᾲ�#�:�̯�$�Ӕ!\H2�A��Y��Z2ΕN��(E�w����֙��B7�3k
|��g���n��1�<g�{��(�ҁ]Ը^|E�o}������������H.�7���$<LE
�s�t�CDƵ����%6�P�Ƶ���ë(7�7�=�z�J��H��`/dS�c�q��ڻ��QA-a�b�J����x*K�;�-"B[�BI&Z��ۣ��8�xo�r?�����ܖ��.��G�u�W�)>�0Q���9Qu�in��E�Ұ������Ҭ��%�%�Ї%.�š֔$`2�QnBY�P	C�p"
I���\��י-�Si;��C;~nJ�ݑ�{xyE���d6��2�e"�=�Ǝ�)��1駨���uN�w0oTT���=L4��[���?�f���b������R�����2�xjy���[�!׾���|m/2>�~�
-�i�8!��+9�o�����^���8k.'pJ�^�ܵ��V}Z_�M�B�U��������!�
WjW�"���u2�gp�j�Uf�-�1�V�}G���=@�Ǎ�p*�c�$.�����F�7~K���QΞf.'T�i�����hyٺ>�U�zhk�����w�8>=��g��ya�qª=r	F�ӟ����-KZ�s
�N,&���w�bl˷�BEr��*�J���SkO�~�	��m�ϓS�Q�o4�8nډ�H�����`�|	��rxeu`Kko5\��
C�z��Z���DI�p���.5E���2Q�,Z洊oE��Լz
C&�����J@xO��,s	sּ2�-�<m[�0!6?�~pi/;��a����p�
�Ͼg�[v���X��Ʉ�O�bwK�
A��eaEB����{�4����~q&��sҟ�w���+Ło.�s�Ǩ��p�{������<�v�%�KVN*
~��#ѭ���4����"�I?��΅�]�}�xJ��و��w��gI�4�p�?��	���'�����p1�p|d�ZbZT��En%��ӻAR �+�m���L\�M"3.���M]D�WN�|�z�tU��D��kgJ �z��Nl7��#�pC���_N���Us���5�[�`�*�H��k91��LK�]����gs|��<�DoT�U�[�~eOw�k	�	���"�`�"�G\ȳ��Z�����K$]�.g#�L���T2N��^���L�4�ݼ��"����#6��(<�բ
���#"�x��@��ʝ�U�ft:�DGܯ_�m�8�'���Xh'��AȦa%�»��@�4�=��~�9�8j��s�U��eJ�
�m�z�/r�bm0���C��5�C\U�s`�C�*Z�j@����$$)�hk��C�=�X4!K`Ϫ+WS����n#l�G�v,׈�h�H�Dc��w�\${�p
����r[n�m�-_�2yUN�E�Ր	
,}1��G�nګ���u��y6E�}n��/��
��}�0Wvn)uG�Ie������2Xj	���s�~b�z���#�'Tn��ƨ>��=xxyl�2��ݴ`I!�y�B��ȅ"�-�n+�=yV̛��ч^z+�?�V�x�_M�H�HfZ�����֙O
a&n���2�\�+\]VD�&���y������_�$�s<A�ofs/�f#�
�?)��~c�"ThO3�7�-��o�
!KrlI�kk
%DŽ{X�(��p���꓅�ڹ�C,,�x�"��{����+O����$궲��	Q��j�U!�G�7��*�J��ͫD���f0�~>����US�QY
���~m��&�%g�����X9�	q��Ž�p-$CN!�=7)��!X��d�L����,��u��#�(�5���?*�}$��cR���9Uy��a�Ceq�B8�n�eݶs\][>�5Rv<I�?��g@������ݔ�۝��s�cy�����P�@ķBgh�G�l
�*V���U�q0�uq���p�
~_x(�j�
EFz.g�v�L2m�{WjT����J~���_-�����i�F+6���'I�<u�_�V^<��ʞC�q��(�(�<���]3�i�.iq��*4|�!���!c�η9��B"f�Ń�s��?KB��c�垇0�s�ӕ��6��	�_�����t��`�HAIC��+�l�,t�$
%	��ɆBEjo�2��)�Մ�FK��1�f��o�)�o;�1P~3���]_J�3���?]i�j0�.:{�%}
��-��`I�#⹓\1��M�JS�˖�G��+̋�ȕ1B���L�+���9vJ:��"�w��	s둢��cw2*���2	x�)��I�[�]��������G��Sue�,p���N*u�.����������������H*�r!�W5A��#�l<����]?M�XL�����4g'�kC�3"���ͩ癳�)�F����ʩA:զ$`��JC1�e�ӽw9}��Lp��q�����c�g��nx�pF)1�l5����p(��Q��O�(Uݹ�9o9h�lc�a5#;����+��=�QAE�>θ��v�su�O趋����.�y*\���7-cN�T�X���D��L��M�BT-l0��3����_l�c��9���j+I�i3HU�Ѝ˗^z�^{�5�-__�YP=��St���ӄ�/������ܿ��y�S�1�-�$�X[�f$�lD�"�Hݽcz�08��p�% ��(��Yac@5�2���U�
�<�HP��tԛ��5	�^>�1F�B�f������[$rO�Y�~zm��¹jh���n�V��Շ �`���O�W����^r��\��xlz��9�֣���
	�����[���x�Y�`�f
��'�jU��v?d*�t��ί�.Ŭ�9i�]>�"��t(�It���Ys�Lq/���>T�k��,�J�86�Fa�� XH-�����:��h�<Q��NϢ)zT5�%zDI��u�U��En��Q����ȉ�cr]7��f�ۇ/���];-��?��2����~nZx�[�~y�?Q�[��|�3�/��˳��m�+|�a���Z
���Q魒��,�h}��/Q�Ω⤁�%}�d[r�K$4˨�J�?���֊R@��(�m걩��B
���nɅ3���M]F>�b%��5���;k�p��d��I{��6�.����ڃ�ŢF.�x�p���#�vGiOxs��k��g���A�a8~)��5���;�һPLX�w</F���AX��D�-OHS$]�w����\���nvO(t'* ��O��,�ă�e���<�} ��V�l���!�)%:���Z���l��N!��⾷ly��C ��vJ��F�mA�G<�f›��OEn�*Dnv?7 ��<�2�FX�8��%IA_K��#��PxdH5������0��jaG5o��H�T���h<���p�0��>�F1`EAD��DՅ|��Y����D�-
$�v�0�M�r�W���})��|Qr��Q�g�.���"�5ѳ�mE������h�v���ZSl���p�PB6��!y���\�ELkR���Pp~Y��q]�:N4�/X�ߊ��k���I珻�
�h��׾n�Oi���ldY�[z��F[���HZF)Q���և� ��t��EP��!ZS|$�7u�-�����r8�,��o�#�3���c8�s�<=b|P�P�.2�ܞ��t�I�GѲ�e���H�&jq�X�l��bV��P(?�-"��@��%�V�Ч&��f!���x�{tc
�my��� ��']��F�呈y�W��M� M���c{��'�|�ʋ/�@ϼ�)�V�^�$}T%�c�7A"�Ƽ��ޢ��&hZ�+eBv����D���\82Ç�Ǯ���A"�8����W+�3��{�d��D�dK-@0iY% ��.���&�'�����!E�CT�7�Pbe��*���=rh�G)I2q�E�~x��۴��6��r�8-A�����&�3��5���5SP��%w��͉�¹�n�v{b\N��x�-�l��wVIg�yn��A���w�	�u&�{��Zf���CG��naL�b�v3�Nn�������O����
z��r��حʐH�9G���S�5�z�׃�����M�Fꗂ�.[Ï�J�:�o����2Ů>�`�nPNՕU�P��3ޮ�{0�t/��Rt8+Uh�����#���77��[��B���`.,Ž
����>�bm�q�L�c�M�ô�&#��Nh���%XR*H\s<����#��O��0�c*����݁?�ڭ1�;UBY�?��@�Θ�b�/��8~o�Z��<��0�M�r�o!p�;x04x�I�5ȞL��㚆������P���Q!��R��h͚}��E�غ���{�zX�6�(���c]',n���;�R��kB?���Ri\>���L8�x�<�Z�0w�J�4F�B'��!	еt�K2<�r�'�˽gGz)�+4���s�{����h⤱��߹�ec������skT:S#� W�u���\���ʒ[�Sa�p�#A�;hU���4"i�l�
� �*��C�(�Ү��q7�K���n!U�!|�LyJ\:�D�k��͎�.s.V���_�?��>q�[B����ϵF�F�5�ՒvW�}�������"�<ڃ2�Y�!w�1�&S?j�p�����X�ZGG@���Y��f��D����fv~����ׄ[�� ǟ�b8��9���xtN7��	ı�����B޿5���\_I���;-��ƻ[tݺܨ�5u���>=�"'^ل1��"҇94��4����=1�k����.�"V��ߪ� l]�c���00.��ȫ�D��X�S[Z�f��f_:o���1�E�I�vD�~�}�����`����j,h��`Y��E�jdJu��8\�����cEy^|�fKM1�|鷁��&�/�H�{��t���@�+Y^9
a=���*M��^��^�F
�V�!�g�y�Z�ޖ�\y����駟to����=�g����@�1������m�0�Z�5h��]��b1�)��8���
�
NzLS! L�b=-c�Y<χU.ȍ֖���k�����P��`�[Ec�&��J�F��
��;d*1�g�5�_�D��[o�t
m��{�L&V6�F�oA���E�X�$P���}��+���p?ķ����Z��&�l�4�5�aI�6�<B�a���2���έ� [RHV)5�ՒĜ�F�xeB��,��Ҕ����M�/;�8i�4x�x� �NXS��9s�L��%���������Rk4�c��rC��)�w鱕7s�o��H"Ǧ����ˉ1>6x�э���J��I��4!�Jj)���}�c̶�oc�Us=ױ�����'�,���q�I"�ʄ�7٥~��'^=�1�V��)�������C	{~ט��Z�F�Y9�n��k��ꫳ崆7�[�~�cC�[���~��α�A:'N%�y�9.Q����F+��'�&U�h:�"O�%-7��8�%H$'S(�Hȫ
�]�S\Ꮌ���7Z�QWȀ�l7\ó�).L���X��9�gE���w�RU�Y��Y�w�+x�9�_�bu>"6W�K	����yH,�R��eߺ�����뽪����$�LL��	��e���M����Ę�:0Zq�f�9�U����nI�([�j�Ə��W�cx|p���/E��'�rr7�zŜ�C*����7J
��VJNJ��%��D��ˊ�r�%4Q;�~�3���j�	!�1����cC����;�ܶ���LS(�G���I"%�����\YҐ�B}��>W�?�O
�OIN�Ij\fqm��6��7:��5�͖@���r�s�8�P�(�t8i�����P�l
tk{7
�����2)���5��Qh~a�W�Ao�XYԆ����ߙ�Q���s|�4^�S�mͻ(8���Y��e���5$�*U�RGC1�V��'��w[���ʌa�(z�3��o� 
����+.�]�2p(3�?bOW�*V�u�Z��<�#��k�1�C��ډ}*���7��p�J�W�sM�AP�4 2�����M��'��V�:��B���rq��L��'�ujJQ����Ri��ߵ@i��!�����۹�\{U.^�*?���HA�B�e�^�U�rp��
pc�)14��a��8f׼�*?��K���M�`u��O�qȴ)�*�2/�]�n�
^<ji^���ؼL��cn�jɇ
�8� �̂e
��Nv���_�	�2�2b�6��6��9��V�%�ND����{�7��Mr��)�JL��b���{w�os�_��?Q�h�3/~���5�����!ג��n��N-�z����$�#�*�>�H��M�uq@H:�~=�[�G���S�t�J
�#��L��?�����~&�M�'�=�-�D�w�K�/���8�x��K#�@��
��v������%����Rs�dX���#*db�
�͚g�b�1�~>mB6(5x���Q��^�r��-�k;�o8����"g��gză���Z����������|O��o|��$ʁ��+Gꘇ��q>�f,O����@:R`zQ��a���&��-�O�9�-�\�hA���0G\�\�P��A�0�U��������w-�xK�wV��5��;Ń��{�h�7!8���0��-� �gM���x��?���\p��sLSM�\��9�,�ϝ���m8;Ocw��
�p(�Ӂ�5��<�+;�$��R������T9Θd�Fg]����3i���k�޻w7�UـMy�b�7�F�!<�}����"���͓�A.>��.�Ҍ칭������ ��J��lv�픔��!�S�aI��T�r-R0G�~�STi@��}��{4I��u��u�"��l�}�0�I��D/D��?�ʿ�B�.FD$nB9&G0�\�D���4�݈��8��5�Y��\�V�|�r>���q�8+�n�]�@)���ɽYX"�������s�{�غ[N���\<�llo�W�b&dK��-�O+W�4q.9��ʷ�Y����Բ��.���\�r��7y\��������˚a{F�J~\j�?��LC�!�Gξ��$��tx�K�|V���93U����M��T��L)�<�R��cǨ�0@��e�b��$���u
ܖ���N7{.R����4�gN����+�ܼ�}4
O�.��L�az
N/ə:�[ڦ�v�\�k{��Y�϶v�v]���^b�7��;ꉗ$GE<ރ�]4�Zݚp��p
�䴿�`�[FX
�],�~G߮\a���G@��b�]��.��>&*�ǰW�`7b9����J$ɋ��w>�=��V�+n��**Ĕ��X�s2�-6Q?T	�P���fl�Ǐ3YX"���]�nI�-�zn"W�^&����5S^��K�ҫ����=Jh���k��_�g�z�����O�7�3����ί���^�'�=�G������'o�]���/��Ї>�>����7�W�7�����}F��/��i�����V���?��O�SO���u��g�q���3�iS�5�e�iQ��=�&J'
�?���Ȩ�R����
� �h�sxh���d� ��C�#I�GN���<k�~�������]�/����m
c�qs28R4��R�U��Q@��$J�͂�J]'�k�~��:x21wLBzD��M?���	�	�[�יV��Xc�dψ�x�@�����e ?�L���A���jW�6x"��tX�=	"�)r�,~Ɨ�#����%�S3�������>
a�ݥx(NKeR
~72Y2���{�ww.��s%��݂e1��`��b�n��'�L8a���J�r��糍�
?�I�m��g
���l���.��Z��KW'��n6�՘�6`�81?C8��s���ę����t0gc\���:>#�Oy�Rp�ޝ� ��pd�6a����J�F1�1ǚO�"'��
�o�G�Γ��$C��V��ǵ�‘��+<�<_��&TXШ/;{ݙIܟ5�
��Qq��tS��uu��l�x���.������}z�A�a��)���;�驋d�0v1��n6<��3vi�>|�(���8��F���b拓�Ha��#N��9`BZ��D��^^^�6�{�A���Je|K���O��D�w���|Xb��������lH9#&�����PA��{���׷Ҁ�}�A�
a�W�
:�0��9n�����.{���_E��S�9���qڹ���;��(x�+�4�T����U�����	Q5�= S��Ty��T�рd�sq>o @�h$>g��"KF�u�s��@K���W�k�n���}n|�щW>�\m������<��)���=�{��+���B�zy��O�J�"��AJ<���kqY^�Ъ�wC�LY�P*��F鹃߅��.�����lM�k�4�E��p�άcժ �R)���WI�]X�\��c��`�O	`ƿ�}o�M�LC�V�`�|��#QӸ�a��t<��ڈ�t�A=�
l:��Ǯ�ܔߗ;�AKNS(��]Y���Í�統w]��#����oT_v���֊:)�K��4��
�]�F��CM@ޯ-B^QMD�
������	d��A^��u�<2�%��5�rx��ɀ�<;�Z��dg�xrĿe�� 8Ap���
�]P�H��ݧ��')���1Qj��wIDD�>��X�����$]��<*H"\(=��e�H௥����۠�~$�_��K�[�_5�-wKSf����44Q;�MIҀ�˯�v�.GA�;�X��oc����+���dz�Q�uO�_zY!ijψ��������T�C���y�k�B{�0y\n�R6͍9UK7c���,Q00�e����sE�y����L���9�C����U(IԷ�� l�p+]��V����&�7+$�`~'��`�D�	���,=
J�˛ �So���ue ��l�����f��§X ]��Uo=?W�*���Y���@I0��⺍#C8�i�4
'�d�Vm�	���r*\�ya���T,u�LX}�w�Ð�B3L�=�8�uU�ڬp/.��J��J��X`�|l�bw�p���w��E���;5z�w,�1���%�rO���2�؆s4��<ކ�oow�VǠ$�­�\�Pٳv�<����G�"��
u�;o#'�sf������N���؄O��V��f�d��]ӵX�J7�8�ତ7�p�܁��R
��/dŌL�}3'",�u�r6�c�K;�Q��<�
���^��T��(8m��Ȕܚ4ܭ�[��=BJ5�N�������*I�4nX�,n����6��E�c�g��C]3y��aڝ]��ӵk�r9&�;wpEE+b֕B���i�j����MfM</v��Hf�t�@��4���Ms1]�<n5\j^��6d8#�'Ζb��"-�C�*ҝ�l�ʵ��c"����?d]�U`���z,rd��;�SF��/?S�~�wL G46�J��H~�3<�B�U�,��
`gc�7���7��DgóU��+��p��+D�U>�P^F��X�2�7�ݎw	��,�'�J��y�ɑ�)2A}���yF�;����"�0F�A6�zA��a'��&<^�VY��c��^�q�J��#N��[T�q��Y��NO�4�+F�D���Ĉ������{�P�(HH�9s�Գ����x?7M�����q�8�>1����`ظxx^�"s�…���{��e*x>�-
��,�b�X�Ǜb�b�E��G�2�1B���q��z��'��T�&�#ѝQ���~����9�QbG�(��ڧ�R�kͦ�D��Cx�;s�C��$�;q(��}�)�!efy�}���\�e\Bw��~P��<l �)�����p��39���U��)�0��uo	A��.���&�t���?֦�P�I�r��]Y��<Gl�Z�^x)�U���16���җ@\:�t-�-_�Y�7�sϼ�.��W^�g�񴞝&�~����=	�o�Wo��_���zR�ؿp�ܼDvlLֳ�ss��)>��8JcJ5�2!ds��ktQG�(�Lx��
�5%^#�w-&���'���&��9��c(V���{��WՒϙ�j��a�R*3�ڟ5�'7�j�OC!��/A��Z�\`yj�b���H��ҵL�ת1����F�V{���I+�BC�����t[Q��/o���v�gR�~�3L���(8K9��M\��Y �����PY�`M9�{��P[��KG#Z�:��1���rMA�-�єz���z�����)�<�ջ#�,�"TS����LEH��'�4���DUrL��m�����K����c��i��ڛ�|��.H.m�M��n
��#��[�
�1\��9�0�^x�3�����\��l�‘5c������C1�ϛ���]TX��kS~4|��]�m���Vc
ko��Q=t=��~p�=]�1�6nVOl��-��ifZ�	"7�I��b��B�N�4E�м@�Q�g��9�R���
mzC.��p�3x	�K&�l!�~p(&�Ⰽ��u/.�d���x}�e�r��n�W�
�:D���=D�4��$�:^!58k�h����������y���S�]��D�;7J��`B�)�L{���Bi��uo�J�# ��Z�8.Ϻ�c@�#���}9P� <��=��n�tnvW�'�"4<������6��/�C/D)��0�Mv�=�|�����߇�ل�[%����ف��Ds�=F�M�p���jt�*�w�C�B}9��k��M��ȧ�3ׅ�z{�3�a�ڝ���`ju}���bx�IO�#�ʄ��ܯ+w��=��=����9(����n}��NU��8�h%�î�p�m�찥(Hx}F��R�����8�X�ʵI���5��a@J���O����b��ʌVgW�"BI���%��P���"'a����5����/��>	"����+�Z
�]"�)�ڙo�=�k���m�5�.B6b���$*��h���2��6��I X0Q��/��+�����9M��
*c]
'V�`K��Ke����.�'��	���r����3�D?���J����NPx9m�O1��@s]�.g��H�;?E��5��$9i}���%(��"^7��`��%Nױb-7r������m���&K�'R�Iq+o� _�yz���%}��K_~���^TH�����0=��;�=�={��:/-T�7��9u�ԯ}�y��1K�_��Oӽ;��}�cK��BȀ�@ݐ�΄��@�����0�V�^"-Yzk;^��f�s�Q(m���a&��x�ʧ	“$Te�	�� �g���ܹs��n2A ;��XJ�y���� 㙺���vm鉺���8���0~��>z�[��n�#tC��-D�Դ�m��l�/ΣM�k�)�C�w�$������ޯ!��E�J��'�/�C�L��MЃi�A��ݘ򬵾��)0�ݽ�
F�9r�Pk�^&l���f�<܊
��	UwSxn!�n�AM����T߹c�����9��7|cG��™�ܝ�;y����ٷ��|����O�R��g��0T�"�i�4�3�5���ɏΩ2z�~o�s+����)�PB�"2j�}ڷ8���o��Ƒ���Vx}	��CBx�&�R��\X5�G�VJ�14̛>|)P&����1���}}K�_���&H�
~��6��n�0�NS�
�������5陡���+����{�����ܘ�"��a��C6�z
/�h��P�&U2og�L�s�0�:�Y“�ᇦ�F�,�y��*�AK�B�6�Y"��z<��u��އL8��X���7��;|Gi�ʫ��M��*,���0���ȓZ�R��8*�3�(�#8	)�-u��:T� �O���
B�q OӣVg�Z᎖�*IKhF�0B��;/�2–���T�A`��6.�L���J�`���[�n��9��V/u��Z���cI��r���x����~����~P�S�X�+�/=�P����m!o<`(�n��R�%W��5���:���Y6_1Z	w���L�D�w��`N���Ν �1�v�7v�+�8
۹���횱�S�MB���p�
ݗ�?l��;��H�D���eMY�sb�3�G���1+�S��ޞ�1S�k~씕R��i�t�B��F��=
.��9ゐ�����-�V�W�ɽ��ų���9��f��X@^�݄O~p�����P����qu��S���@�hE��	d!����;�gK������#�]\��;�.�����¤�6NF^(V���Xy�D���VJ֮�a<�<��ta���c� �:E�x[���Bʀ��Y��\{�.{��"}mׂ��`�>p�).d��K�Vk�5%&3�b�
Vh|[��K ��x�
�H||��W�s_��Q�<ы/����{�����z�3��3�,�o$8�-_�%^P>xpI������;w跎
�/����zF�廞y���z��B@��ψ�&P�D있�!�+5��C�wJ,�gH("@?�J�ح�p1���ce�((�`ZD�K.���pZ��x��qFD4���n�2�'�?��a��9�,=|��C:�h��ީQl7Ûυ6���(��?qΜNY_sm�&Ҹ��&{�v�o�p!De��Q%l��_�v��U#�E�gY�*D!�w�4�I��1ּ��-��r�p
]6�h�/[��������bQ�1�E����F4�sr!�T�^X�-Ƕn�ٞ]y|�Ƽ���{�?���a�w]�%h��ﯞ����>�)
��xu�e|j,^adz�Syk
_w�y���:�B���-�s}������0����ŀ7�W��pa#sNa�e���[��R><%4;���l&ѵ�n|�3��tDQQK\v�5�`�Fo�E$�Eu^u�AgQ(?����}�E�Ti"��	�;Ұ�Z����d��yvt��;k3]����52K��]�����xL1�ʶ���/6�5W�޽N�0ɛ#��l��W�I�<[;���;�����4���a�.�J�i����FI9�1%mك>��%�QZ
��x\ʳ�&~�=xu c�������E�so��7���	��q.U芵�Pl��Px�ԱM��F��*&�XG��3��I��
�=�?��
����c	�Zhi3pQ�'���gy�pE�X�`WV����ݐD?�'��L�۽ڗ;Sy.���/�C�1{y�ʹ��`$
؍��L�[EI�߉Ն3������G=�yWr�E�(˪7�+>�b����P�9��; Dk���*�`Ӈ
ʪ�+��}�5P�)�����m?-_���a��i��Dq�bM��w�\̦<�5�C�?�z�W֬�uk��������ܠ�Uߓ�8��ET�q�R��
&�^5���-/J���=��y@� /�S?�w)��s��ǽ���*>���Xz��\+��$�2o�R_�	�dY�euE�5e���.�ffv�<��$��`*u+������W����N\,��(�#]����^�FY��tc���� k����亶P�8B�jxO<�Hk`��On�hg@8Cj�P��x�T.�0�"̏It[���bg��G������;��GM��|ZC5@��W_դ�������w?w��v*O޻K���:=s<��|���}�����z��O�S�sѐ���z'���xT|<���w��Yz�4{ܥ1JOB�̰tf•�-��3�\p�Aq@�N&81K��ߚ��Z♧	��g�������Ȁܪ��(��J�+�ʝ;�l�%(��BA��r�Sz����ÚQ�W,��Bs>�++5_����.>�ou��A�@���t���_<��I8�����&���m��A�����S���?�|CS�P�~�nx7D��3h��~�e+Q�qE����2�u��`(�eͤ��:퓞'yW�,�\��m-w�ꍐn!K*��?_Mibְ���
5x�~����u]\Bqq��w~�GU�]rn��F�O��M�u�WN��F�X�G)�������D�Y��
���wz����O4�N�qؙ%��L��͵�yd�SKH�\�=ggDN�T�ф�w��R���l�ɰ�W!GK��ӀoL�À��sa�"���n�u����ƞ�7��]����
�C�R�����ú�̌+"�{�,@�u`��X�x�A3� �MË��8�:�B�8�2+�g
�V"䅏8�N|���܏�F��hu���N[(,�w�p���䶶��O��/�bFb4������ �0��1W�p�N��õ ���5!����צ�ꍢ����n�F�g�LZ�3<l[oW*1��B�<��HϦp�^m|Oal�'���SF!t�	/��<x���q�@���&A�G��a�]�o�!
��p�f���B�T��n	b
�x}@Kf�%v�/��fs�yor���w��V���yT��Ya�c�8�������*F�M��j�r�3�!E�6#���3�<U�F.���)�MJ���إ�A.'�7��r�P|�{��P}r����)�G�>��v�w=X{?�$�^:n��2�~�6����&�X�T����u� �.�w&�j�,��Aw�*��m�ۉ��o���9��)��Fw8����l{��;�Y���֦��r��P�oE�F�o@�S�s(���=d6�	<PX�B�"�GJ�)`����.K�9V��Z����rcS9$���Yq��I�2U����2
�(f0}ġr(�MY��{��sY���=yʋ\�1v.���s;S�=畏G����}�o�-�Fty@�5��uֳ���X .S�~��A��X0��,�&�gP�qP@���3�n�y@��p�p�c�cHq�U��!���,�D{L��J'��r8	4\��M��� �M.���"FR��'-��,/	�8Nh)R8$��#�[Yþ��5Z��ԓ�^��1��H�<��}�^���oz�z{4�W?�9�◾��pKl���z�
Ͽ��>
�o�o������o|�^z�5��k��O��_��J�Ә̦����>|�����_�{�:e�y�{�M��dh�$�M�sD���
�nг� T�GԳ�y%l�sC�XD�6^()X�M��M�a(H�ak%���P����;����Jv8�mI�
�ϰl,5����4��BY)����HI_Wx�즅;*���s�m)�e|sd |�Aߠ��@I�D:1h� se�����N׊�vbm��f]�IH�*tr:E�>�\=Z�0��Nk�!��wgueW�vxova�Y��!xp!A{6!��‰BP��n�X����;o²����+Bڴ��"Ss�LkzR�ɢ��6�f\p�@~�ߥ&õq�<?Q{�'�g��O�&��?�?{�ѣ����R���=z��uP��]�w��_�����pq%9�U����x����wc*w�W!��U����:8fڀ�\:t���Q+��v�5_O�17M��͵����S����+{�1P��K�1O���kav���q����/�󺲀�k��˻g�d&���18<j�@-6U�j���Sr�=Xc�
��r���y��_v�
�8�X�R�PA��4�*sX��5Լ(tm�)\o4�Z�yX���6��^o�g�a��G���]Sj�6�`��B���<�\u������{;�9ǖ�`6o�V����p��)�$˷�
!��%w�����K��Ņ�JUĀd\�x�DF�s�x$+�,a.�:.%]i�
;W�lrN�qz�b=���$s�o�&�˹d.?�1p�����eI�]���q�cϏ�2�Ŭt��д��;Ȳt����!dM�&�G��ϸGk�Faq����mbf6�^5�	����$�
-����R+��xL��=<��m��5Co�{����G��ޞ�&vKvW���5�v��Y�w��֎*�v�GF�C������N<)���n�Aw�9�;W��P�\����Pj��o��}2�j*ר6
��P��6�`"p�ݛ��+g�S
��Uo�)�4�ۼ���_3|X�G�ȩ�)Ώ����I���$��y44�m���YKl���#�fa��O�z�IǞ&������b�'���D�oU�륚z�2Y��<�q)��\p*mM��w�)��WSD����HP0Ֆ�V�0њ`�R/&^�e}˩etCۛ�F� ���ݨP�!qMt�J��>K��D�Q�!�=�)-NI�t�%A�Z����	��	���د�1����
'
N@�MA�I
KHI�z2�B۷��~�PK�ҖMcYx��s��]���0��C߈+�ט�x�G(��t2~�Y��&�f��[�V˽{w��}}��Wt{���;�
���MX�$
�6����
������2��x���ǔ��|u
iu���Fx���&��o�={T~ܽs�0�%=�]�E���n�ޑ�{���q[�D' �؝�� &��[�c���DC�S���	Uw�X�b�^�~���щ#�y0������`�� �#�PO)i��P1�#��A <�:\�3�u�%���kK�Yi-#Lk�T3����W��)�-��]q���W���zLMܴ9�OHjK���TpdZ���$y?�`��"Wk�`�x`��O�N�3F�2n��m�<S�g���zE��˜���T�*�pe�‡bQ��<{|l{��L������G����?��J1��_e�y��wӍ6����z�[oWi�?���/�jI-o�52���ނ�x����*<,Ϯ�=���k�P�KQLp�yvs9�a�{&�r���C�D���ys�iݞB��s�Ki���L��1\S�Yf�x���Z	Ҡyߚ��a����YbJ���;|M���Jm
Px떹D2�g<�a�� �"v��hF�,�g[�ɭx�///CI�����B��\���L-��B��(��X�g�m����D�]�7ϖӮ�K
3��D~�ć.��*�݆�~@6^ޛ ��&�:�����s����7�p�1Y|�lf�=BV��h�Y~�C��BB�5[~�G��ndՉl�9$W����3���,>�fQ*��5���4(7(��6���
`��\�[C��F��N���C�̙�Y�tB����nx��qh��p�y
K��>��n���Bh�i�o�y�ؚoh��)M�#�ڢ��̠�;����2,����|�u���[CX��P���I�I�`f�d�:���>t���j�h�Q�0^*g���vh�irS#(yM��ա�ma
���j�w��69F��-W�z5��JŻwvt�:hxA��CD��Pxx��Ea&`�H�4��.��4ܔ�!�p�JC�oJ3š:�5��x
�B#��n�T�qld�&;gq��*jiP�TY�9	��x�[c��.GY<o�/B{O(O2�H�榀�Ҟv-����4I=S�Y�V�%��U?\~.�/Eۊ1C���y7�ׇ)$&N���f��E��>bk��k�AHY�36)8�����o���YN��|QQ
�w
9
e�<��ʃ���3�-踕���#:mG	HU|�	TbZB��Xݶ['Ws�ܖ����I��h����Y�ׂz�4+���W�p�=ϿkuV���z�7<��Q��V�R�E�*^e ��8ON�.)Xl�Z%�wƔ��u���ʜ�,�&�c�1����H��x,h��ưZ����p$���Atx�i7u��c��Eה�����پN��׿^[r�N��W�R��M0��W외�vN��w�������֞�d#s��v�(ᡆ��7Q���vgZ�~)�d�WX#Kg��Y�hgfy��� �;����MWk]���XL�����A-E��6�#r�� ^���D��Vv���nc�(�0z�d�۽lm���/ӟ�����O���1[Q�;�ދ��c�OT[�[xS��������饗_!P�]n��6f�� j㧷�8N������qa|���`�C��)�a���l��5'(��9'C�ŲB����ąT�@�(���΃�uK�5{�E��
�*?ِl|����i�q�L��W������e�e)B�P�oB�Yp�RK�)�t�6�LSDE"lI��'�֭V��Ln1޼#�#5h�#��ʄ�%�`���2��%Â@������m�*��������ISf4����S%�Όh,A�N�]5!�d
��4��V�{h8B=×;ͯ��G��	S(�ڊ�%�*V.h��FxYLȅ!m�D�ўa:J�;��t�A���
��9�೎�� ���X��H�@L�06�)Eh
�3��L#����<]�N�>��A�.e]��J��:�����h���љ-#���9�#R�{��L�=Kv含#dg��A��A	�$�m�*���gƅ�X��0�+ƹ,�m�͐f1e`�#���	xӳQ;6��[��9r�}oC�{�F�M�ʿ�7��nđ���+���;Sޥܥr.�
Z���'�^�5m�g�|+*P�(	K�k��S�K�4C��l+�>��҄�D'��
h����sQZxo;'!��e���S�>Wv/��A��+�!I�.x1��R$�eX���3�%`�ϼ�,ö�kZ
��S�Yx~!���
��l�T��LQ�/�N��B$\�*}�ߢH1V|C��D����T�h��vn�����j_Du�;�+.≾+}E}Eh������[~('��
!LI0*807��s]�[W����l
��J�)nm����}��J�e�r*���B쮸vi��G�.���_Z�$J-��8�Ux�9�bK;"g|�G�s�h�I�K�m��S�o��ܬ|��
/��Z[� J�����1}��xI$p��2tM���*��b�ј����ʘ���;4ݻ{$�;k
���X�h'����Z蝽�
hD�~�e�2{���s���m��j=�,ҥ�-ԡ`��m>�� �	bN�u���x�j��W��oI<��m��^����
�ǧc��������E�>�ZcY�)�xl�N����Q�B:X8	+-b�NN�z�<'Oji�;o��0<���KI�����}���p� �	�,��칅�f���L��l�(WeZ~��l<<�3�y��+M�t������/��e�?�?�����_�����?�m�>�a!Tl��d�D��7WN�鷯����3��
����i����OF�P�g8�w���,���;�tE�!��#��c�{p*Cg)ē�@�0�����C��Tt��N�[vV�2rf����d���`�;��+J�ͮ=&6�]�^_���l��]���L�����T���1��x0?�c�����C0/1�9��2Yb��%�/RR�J��!�B�V&� �3�� wx�z繲�凘w 9M��fQ-��HP(�g�O��vJ������x1в��f�bBȣV������T���Mjth-�j�;:�r
���rw�r���<]���'��$/�|�^
OR����ݡ�Փ�.����K��B��l��B�e�?�3�W��~�Q�QE����s��Yf�=г����d,ƙ�T2����$¸�y#3�]<fY�Wʕ�Fo��]r@?�bi�_
`�a�Ȟ#��v!��iz���l�u�Źm4�j����bw
I��cKz��m$�?
�Iצ�}��wEI;�����$cT�jZҘ{�Q�y�f�:ԝ���gw�<9�!}]ؙ�}�m�����:��y�vQG#�0��*�P'P9S����yK
���B{:/%ʁ�/���g����;-�,����[	��g3`�]x49&
~�l��aPE;
�u�fW�[~)�\W�s]9V�ς���&*�R�*A�)����%]�`]�C��+8���:xX�#.a�~ézM�h{��YА�~�{O�X��BxT���wB���m�ݎrWt�@�v'U�{4T��$UK� �v_t��w��7�m=b�|�"媎+���;r�>��$8�
�
@A9� ��.>7H��rG�Y*�T���,
��R�"�)R��d�f	G]�t�k���\^@X�r�+\�}�j��䓧��ܖ�r[�Ƣ�{��0`��V	�yqكyB,�-B�K
B�EW)X]�BD�Ma�
o�z}q"ˆ���暥�ա�_`���X^<v��щY;�ا���t�~�`h��I�}Q=HfIB�
���(��x��Y*}z�]>�DGq�>W%�+����Η �A���\lƌ��߄��+�B��vg�����mu��}�9K����hIa^�`���=���~�ʠ�J�HC�ZF�)�(�p�Z�`3�,B�L��=
��D��q�[���aQk��s�@���#,��1���ã6�)ApvZ�\P��`o��*Xۙ���Q����g?K���Fl�]-n�~o��M6Er]ф��-N	v�A���^�G�k�JI��Bt�}�g᥼�3�̓al%��֮*��2�[:F�x�3FOk���� ����s����L��/���WƖ|}˘������q,K(�w���,�qt�傗�yqܑNYA�sU~@8��d���8��U.ǫN�ݚ���S�7�7�AM|y�.W���~�/�
��f�-�wH�l�/�	�-�1����z�����p�-銂!l���)�U�gk�)0�b�
%7��ȷ �{C���U��X.��C��h�s��Ы
w}� �"���]eVEDS�c�w{[;$�n���	�@j*�熛�Ē
g�b�CS�`
�D�TY�;/���k�S�g�W����2�ע����7Lx�C�4��l��I��[H�Qx���^NM�zD�G9/��t>��������&r��Ꝅ�w���R�E��@B�U�8�E>Ϡ���}rO�+.�|s�9v%f���.P�L�yU���^�C$5�h�pG�^o��D$�;��x�c��o��`p]�q9�L@1���B�&��s�m�>tWm7���]�Vi�k0G\m&C1 �xEJ����y���c�U+��+[��0���)�����#oe)��
BeqE�}�r�
����r�#7���9E��)��*86π=��8V%�ki�̤r�}�4�"s���N�:ihƣ#�@y�8��</+��C���[dz�"#&q�Q���:�ˇ6b��a������CBy�r����%/����C? ��P�Y�U֞��EG�]'�IQ���}֕���~�gM���+��)럿E����
�u��.~���x]�B��N�@��K��Ix���O�NBd)6�1`�-)�
rS����嫶<|����/��Y^{�!��1�{�-o[y��ie��UXv��!DXy�6�%��[����2ᗉ���W,�`�����O*T�F�_��D�h��_�b�f�a�br�H�>)���i�8��9�w�-�݀�A���uo�V�N��o�X��hQ}���r��Ht�f�p�937�9Hx����%
o??3 ޑ��+�cgm�f�Z]�[���&:\Ξ8���>��j���wW͛J]�`λy���簠��(O�Ô3H�<�<^�\��U��T�֪+����]�L�6�e���q$YTK]w�o����N4��&w��H�
�Y���3�2����G,Nw:�?)Rb�]_��Ǒ�"���8.�Y��u���Yc.�b����͓3~0�ri�D�69V/�Ƅ0�}٘mΫ_��#
�,9
*����8m�u����)�/u��6�� �m���y�}�Fa�I�s�7kx;�{X����L����j��^�D�P�M�7���>˩]:��ҷ�8 8�u� �6����RP�B>LE6¥ڷ=��T�u�rk�Y�x�i�V"o���
Qg5�0�ɬk��;���pB}�-��.��c�z=D��OA+�.�\��TP87AK�uSj7������3���]Q1у��.�*��X�!ֆʞ.&a��V����=q�,�嬛�@��p�[hS���۹0�
l��l ph�9\�jXü:��&��8��#_��۩���( $.�����O�굍28�	�.�ub�[�}�F��SHw,����' $MxYD�h��"�4���7���楛]��I�CH��>(�a��v_%�D�^ԃ���,T�A����wB�є;TϠ�e@�4�cy��sǙ�k,�)�j8<sZ�<iu�ɨ��0��h<N�/b�(�c����VfJ^�p��\O��Dn�w��ĥ�7��1���b��o'0ЀS�Q�e���JD��Z-֦��tF�ZbGWz���O%��(�!��)2�v�$�O�y<�lLW�����<�&W��oS1�l�*�ҳdyx|ތ'�h�,Z���Գi��,�`W/�J�h�9$�Z���aI�_�_<�p���C|0V�fB���|5��3���'����p���[	Hڙ�q�2u����5��ÎQ���I�t�9��g��4e�xH*���TI��Z���=Y]1��5�ʣ$)���+�%�y���<��
#,\	��"Q��q�Ҧ}���uCdSJ�x$�|�Ib_C��Ƒ����Mp�!^Yr/�<ݖ��r��=�J����-_{��g��޾�ez��o_��f��X��j�hHyg@PPi��D)���D�d����A���&)Sp�2�J�{|���L����"�9;vS��h̼#����	&?
8�*YT\C{T$?��~��5�h�+���j��t����7��@8��Q���^���/7))�pB�O��5�S���\��m�3�����D�\��l���SW���ƛ'y�KrBP�k�A�3ݰ�S�^S�U�w9^`�7�dQρ,��)V�T��I�Mi��E�=�g:*e/��Rx�KY�V��o��ޞ��0���ߣz�`�l
W;"���O�`l*�.[�ɩs�q�y|
̓�	A��!�,Wʔ�)�d�\o-�A����Bm�asĀ.�~'آ�D.�:�R�w_C��2MoU�!�
�HQ0��:#sTF-[}��Pe딌(i�\\��z+�B#��D�V�~�&��A�#�v��9�_��Ȇ��m��A���z�#�LƟƺ���k\-���B��9�DAo��.W6���M�����2���4��/�T��=G�l�x�C�Ք�O>�d�6�I���6�<F>�#&8��\k� q��yh<\TJ%�z��Y�7���BO5��*�=~oV��^�
���u��[4jÍ�E�ɣi���v���᝽{z踛���;�<aZ!l��|�p���#�W�������z ��A9�k�\�r^9.�Ľ��`'���/s�4�w��:�"��@��XƳ���M��t��W�M��X���_\\���|����i�6��
��RBv�.��ƽ[�GB�}(+���9h�4"N� ���wf��6�Y�5�1�'��@Xl�
�Cm�Ubg��h*���N/�����5���#�i|�i)g]b~��T̘z����@�h��~�"�Lp�2�3�Q�����q6+�_�Kد��z��4*]�J�A�C����	�ޗBk�'��Qr�=]��*�;��	�#��ٻ��<U��r����"l㕇:������U�H�!���d9{fW�5E��-Ǔ�k_�\�D�\����'cA��X�����\���IL�`4
��W���mQ(����8?�s<�X�M�F�`�8�(�6Bak���aO�9��|�*�vی5���/��	��#=:�N)"]3����q\
�
Η1�2���u">%K�.��blW¯`���z#�
�wPB���(!���@�!`��V�M�#�`���*7x*+�^:�j1=-쉨\{Ԟ.\Z��k��7{G��/}�x�`��
���+
>��S�v��\�m��+��ߧ�L�Mz�"$��KX�E��")n��W�� �)-��I�� �L��D�P��yA��±Y�L�Q>x"ucZ�[ٙ���լ`�)q�9�!�؍R@ǫ�Z��[�<^��{2�d
UR<?��*�H���	��z|}�V�*�
g&�k�{#���Ë�I�~�W�ѰՓ�-��
��FR�™�1���~�1�[dS�X?c�%����&�lL5QJ���[y�l��"��K��!�,�q����[����C4����V��RS���놐�

��<d���p9,�����r!��*)���^��;H(l�|ᠢ�Y�G?�[�lI0ST�g�����e`��J�^��K��2��q���k�f��@яt�	S�+�-�R��-=�5-ʄ�rf���Bb�G+�)T��l8E�Kv�F�!<��3�=�w�~�����*2���a�P��#��\�E�tY�n!|���u��=���ì�%B�����:�	J�ѥ�|�R�f��i}7*���
�]K�6�'����"���%�
[��Ņ/B��5�*#L�@�hи�}�<��s/ԧ>�&�n�+>�rH�(4�ӄw���א��.��W%��졲t}��\�)T~�u
a�t	���&MY���_Ϝ�����9isN�o��[�y�c��-!��X�,<H�gS@h�		E[���{>#��bSX����j�3�lBH#�W9�a�
�j�x���)K�(p��
��@���0��u���5\��9��8��Gh�уu�+��z��0�ʾg�d�3Zۦ	���C���y�Ln��9pS$*,Y�r�s*�g6Vh}f���;T�����EJ��[jS�;��0�5���������M��V
ki*�lM*M��By�V���Dr\y��E
.s���P4c("�pMif�)�����)B��|�X��J��`��$=��?*;#��0c�O���״���Y�,�3��z����L��
=��*�����8���p�=�=]תR��V�R�׵�{�q���SYs���}�g�$�"C�(ɶ|�0m��
)��ު��
nj�j�/햐U�)���o�gb�p^����cH�OH�h�	恍��>��s�K���Lݡ���"#��v0���Y��K.�-��.X8�j}Lb�����e)�=��|�O�a�iZ�P�`�x`� �ܖ�r[ޮ��D�p9^���"l��]	�B	��R�����yz���3M;y��)cªQ;�	e��b���N���+����ZA��FK�lV��cXǷ�nN˼Z��
<<�b^�:d(eIy�;w
������u��V��g�b��w�)Q�����FR�X�s
Z[Sb�;���F��&�.r�7�j��ɪ�����p2hA�1G�Wԙ܃a�Pn2�
���[�—���3G��I<��G���~��6��>=�N+`��g�2#p�vY%��!U��X��{w���^]Z�"���D>X3M>��'��%е0���ݵ�ڳ1����ȕ�S(x�d�-<��,�9��ƕ�L���أ�Y����+R+�=8N��c��Z���(��:{F��[�<�]���	I�'>�;gB�&�͹�0DZϲ��](�`8WM���v�ח��k�*���s-n�{݈6���<��2
qhzx�i�9�>x�|��r�d�&yj�˪$Fytå:w��Kn�����CvS����:Iޗq��K��n�0V&%�.�P����J�C�,.�G|�nUO[w:M��P�}����U��m<*8-T���(�X�jJ�6>F9
79m�Z=��Z�z�Fޅ��zﺵ�xh�fy�즄����I�E‹D�C�`VB�֣>f�A4iθ�\sC�ؼNL�N>�3�m�BL>|� ��4�aJ8�s���S�)	Vդ����c��yU�
�ṃ9�vD>\ʹsW���oz>J�oT|�}8,�U�K��HB7U$��9���ɸ��@C��+�&W��W�1 U:J�.H���F롺����Xw�ܭ�þ�#�G��>:<<-�q�	�"���l�)0�)s��mt<P�T�.��<��e��q������:��:�.��⭳n$ى2�@����͂����፤^�Ӫi�~�����e���I~���H���G%BD�}a��"q�RI�+�#�p�SL?����FD8������a^D�a(<�Nb��k�4�����PJ�w�a�������1LoFS0�����^{�q_Wg���*g�{�P�=
!���u?x��~�uY�0�
�Ӹg�cmg�'�`��$����d�A��Gܬy^�
��G���{"�
��:�����]���p��~|3�q��$�H���l�L�h}��>�̉�"�#����2k��R�D(^�r�Sa/�׽)u�qu�v��=5l��!�������6�6��J�����Q�B��a�8�@�ʢ�]��+W��2��Dy��/�'~�詧���ݿ�n�m��_|�(���w?Gw��9Y���^;��_����_��Oܣ�����]�E��ky��2���c(���2S���na�
̈>����%HI��L�_`�P@*���zR�m�wn�y܊��Wh�͵�J��s(Z
^r�F]$
�R� r-�O��}_�d�
"7�g�)JK�B*�6�e�Z����v9����!�S�"�"�ζ{�zy���$0:%�~�w���u܊�EGxn
�I��duŇ�.����NA)���[�7fڙf���Q��rr�6'���qĄ	MK�(���);Z�O�4Y8��X.l��#��̑,�Dk�i��=�ծ�6i#�H�!,\o�ć��f16��M�r|��*6�6=���b�>R¨���8u�zFl��ƣG+�H�\������ς���K��ZUhEq��%��&s�կ�L"%���p^l�7�6�
���1�/���l>[�J2إ����q$Gs���&�Ÿ��c�k3(�!H�����Z�o]�|��k�Y��a��_�Ƴ����*���yIA�\��!����|�H��"!�U�u9P$��Mq`;�|��ƹ����p>�>�p���aSL�!��!�rrh?-��ܦ!����
���6<v�
˗�9�d�5��)`|���f�P��s1����:*؛p���˦���^z-��YhG��rUK��ӥ�߮=S	*ʙ*���wZ�f4*o�o���7��x?B��Ӓc�Mi]��Ps���%���(y�
�R����#2��{8�U-ĸd�I�d���N�q��u���Pz�{p����gS���s3�<q'��*������9���q=ǚҕ3��OaLR��'p���O>���eIs�Q�N%���� ��1RLYd��K�+�ʲɶ�coʐ�j�.��O*/S�Vڍ��$�iG3J*0�)�N����C΂�s�X����{T�;k���ۤT��+�I2/�� �#�P�1SA���xM��+�<��JK�",4/`�y�c�<��)(�sxk�*�dxN��,���w{��4
�����)p��7��Y���9�b���Iʱ��޿h�-G���fYv�]��$��bA���C�A�L<�IA�P�r�����3GjQ$��H�!�~Fz�_�Z+�boW�����-�^q��AfMO�1�8:r�W糯�J��=�IM��|�w�� |n�~aW�����y=x2}��_q���VS�IE���_P8l.D���������4-�?�Y��������w�7��ܻ���r[���'��{����<��;�[?�-�o�V����VdM��3�z��'�~���(5�Z������@X�����;�HF�;�<C
J��0�	��|A/�5!��؉-%�X�r���1�@�x�u'#�`]V4�gW-Q�Q�3�,.�	~,�-\��n 6�<D��tI���*j�DI�$��^%�O�GF*|���)>���\�����)^��FB�gW��H�oW��Q䚟o^�Ї�}c8Z��L
��}�VB`P�(���
Dh�9�F��iLf�
j�)>X=2f&,�'�D����bM)��Œ`��%�u��J1�f�k��x�zcbR5
muy�9QN�p�*����r��Po�q�۹5A�+M<��"K�L�:�6,V��c� ����s�ש;z��
X���[2\��o~���Z�NI"�Q����t�;s$`z�0̜aF�k�	̤$ƒ�S
��ݖ;�8�J��q�:A��mX!z#��M��x��&�'7 �sb�`T��m�ޕu�D��f��y�Q�
l�l1ʍ���	���w�Re��)|�qG�Yᛀ�%Z���?�L	ų�q1�	�)��K$�
+e5��ݾ/nV��u3�;��i�a�8B�PI�"n�n��v�w�
�i�
5���wױ�vT�ے�z?�Ѷ딤�xq��v�j��wA�ǂG�i��~��c���N6�F��n�;�i�?W�c�M�E�Ϳ%u�B*�<j���~Z���=
AFya�Z���qܼ|�
�d����0P�P�/��!�7���J6o��+)��e�
��O�0�Rq]��Byγ{8➢���T-I���]�l0GSdN\E��8���`�ܩ�Zr|P/�E�l�]�%r�����V�ig~Wr��9墤��~D��c`�I���AS,�h΅L��ɩ'��t��n�B|��~�Hd$h�%(gN��/gl�zVgZ�y#.��6�Od��u_�
��zu?+����g)8EaM��_�H�.�r��n�C����e���"�c�
TjNZ*�Z�q
{(��a"�5Ԙ)���\��
�9�x���;K������/�w_z.-ۯ��D�dp��1#.�$<�@}����~$�p��[����f�&
Od�����pfQ[s�:O�H��JPnĩ����D*��0%�&���M�D����k��R����D�}ԇ��T��&.��4�~�����ɢ�f�[�o�&�te:�	���JXk�2
�*���ǣ��>�԰Q%�1`�bA
R��8�L��"�P�rgU��.�K�nFt+�`(���(Xb�69�X��I�-Q���/�����������i��?���m��-/��"����'~�>�뿡��E��M���/�/|�S���}�F����-���S�L��k���X��{�C����?��g>C��'�
���
�ܵW�o��a?f#�Q���Ğw�mg���O�8�B�8�^�V)��)�E,��[�,�Yd�{�01���N�u��C�F�iL�#{%�� ��!nQU�Biq�z�w�h�9�
�UH�����{Uj3��߬R�=�#�U�?���>�6�c���P"�:���vc�c[$-�dq�J�8�)����
E!��c�!�cm(S;��+��ݞ�	\uC�%�_���|��g���.N�i2A^�YR��*o��A��K�X�����#�=�`z�@��{KB؄c��lD����Y��4t�4<SH��{x���C�ؾ|�
����,ϵ��)��0�VJ��m�H��L��:�F_ߦ����uw�
�~ަ��z��]76`�¢0�����5�ʹ��˜��kL�;B�
+��B�)2��S�u�9��h�>JT�UOe/�t�Z�7p�y��Ґ|�����J�8f/��R<��I6+�x\�C���%S���Q��*H��A��=�&�f�����I��v��QT-��[¨]���jI^3���xv�2�y�����5��ZK��B8!��o�l��6�'��C�5��G�Z)ϩD�}@,u�
K��(�
��#4�Z!�xg�0`~Gw�3!
P@�3^���!�	10[�Pa�w��F	����P�s!�qf4�d^}e���4�ɼ��Y�~0!��(0m�����=2
��������=�Ꮦ��U�)`�{��	7Қ�%>�G�(LId�"yo�G��
@�?�;�a��#��G�Y�Y�X`��v�uÝ<7��B�Qi�7��„\�Az�T��/e�}+�i�K
޳�b�{���p�6;7!V,0�����I:��tv�RG�I�o�������=yG(�v�p�����=ax{_�1q���5ڔ�K���k���<�Xkd����	�%-���{Pr7�bbP�1֗b�x����S����.�_�&�z�k%�(��h��Q��q:Ҍ�3��)ߐ���-��Q]�7q�d,�27W��R�����B7˾��
Lw!uJ��`�*�`�ߣؚ�s*?�V��JB��ǽ%����q����K�'{�Hv-[����r�&��-%��?x��lu����D����F\ʠ&9x��Kx���E?�@����c?�q�o�����y�;�|}�{��?���J���O�׏g�������^���Q������&��QA�_���_�4��/|R��;��廏���|��[��������]�n� JZ�{��ĉ���UV�ش�7I <N<�6:��|VcP�s��A�vLhjm�A��Y�w3�.���Ha�:w�����K��ޒ���z=��\ȫ�b˗�p��o��UB{xM�Js�eY����L�C��L�]�1�ȥ́�h+j>P�ȃCp?����2�5�D�WG|l��b›W��'����8�5���X���Ÿ�d�!�з�X}��R詝�N�~�
1�Y�Z^{�����l����h��o�t(K�ly�\�.��E�b�"D����D	������A���&�?��~�+��G�W�It��Z���@2�څ�-�6��JF9N(e�P�U8V��Ơ�XV��[Q��g�i��PU
�G=��5x��k����c��l+�E���h�1a���d1�VwM��$!~����n���7�Fmm��S͞X����@�s�݀��#��oX���:imkL��+�7�J�E��&
;�r`���Z�7���VȆ�@|�D"!�M�T���!�ry����MxX�݃�6m�>/�V��4��'To9��[w���y�1<x�0��EX���[�+>�A�:�s�\�e]��a7;��]���*��X��N�sM� a�ù����H#p+Q�S|�Z���5el��x���,��@����7���]�Ņ:A(ƫ^��X�2u��f=�В
��:���>���u�f�d���Kl13Ɣ��B�&Uo/���9B�A�4�8'��}��8ힷ;�r����#�M˫W����U��?ܨ��m}"���6>X��u��sG��TP����%�ܕ�
7���THI���v�]��˒�\�Fm�CaT%��Gs����.��l6WS�e�A�r+��^�#�
���#��d���3/�m�����)�=��}k�G��s�]��忶\ދP���9��u����UR�KK���rUf�H�}e#`��2eEצ�mw��B?��z9=)�n�W���q)Ӎ6y$޽Q�s.�<
�$�40����^�<eq�Ų?�S���G�J�d�s��.��
$p�0�2�q� #Wv��v1ˢ2��h2��v)�z����M/�C�1�:�~X���˗������T���?�y������Y������U��?�	��?�_iR���>J���7������w=�}�G~�"����H�a��~����~���NU|��yK�_�Ŭ|Z�ՀeC���$g���`�B=��:S��ʊD?�|�L���Zm��q�z
�,�o�Q	K�	q�m�"@PKO�����ض�]ܹKK�CPD�^�CI�t�V��Xr��ws��(ShEI�
��r�bv�>eFQG���i��˙����s:�^�ke�#q��qA��wfX?�	lԺ�(���_�ᢖ���w�Ϯ$��Z2�	�9����*@�ؼ!qO�/�1œ2n&��\�
W�f�uc�W�X�,q�ȅ2�����?NN�é�Lk�������b��k��H�|�9���q�Ƹ�M��#�q��\�w-A�8���^>?�|'y��^b����.ꆂ}K0WW��HE����E����s�-��	
�R�/L7��g�ܬ
co�uwc[7;L�>���K��:�
�r�r�=�=��W����NQ��N��g�����V�<t��5�4��c��}�[�+��__�v��-�e����
P�Z^_;WrX����!Q��K.��%��F�$�=,�=�����ɅZ�$|o� h��SM=��z����{��3�$�r�0��>n�W�Ĵ�+#��v�ǕW<�	ّ�ą����3m�B@��ЍV��?J:*t�ҐW-�:����Z�����3��Xt��8xkz+h6��P���r��
�έ`�7|��ԋ?����r�
oM�#�h-���=�F����8$�dᬎL�Z�����.R�P��0CܷK9���r\`dGbB��nmʼk�پ�$
�'���T�P��Sxi��c��4�{ښ�aCw"�B��xY$ξ����L�X<Iʻ��
x_���+��;o�SBڝ-0��	�ؕ�g�z�#Y�)jW�]+��^s9g�{��d5�J'�DFr���Ĭ���S��wT���)�7��}����
�sll��#h�\��=�BQ�f'���ߦ4ۍ�=!W�-*�Q��޼A�b�ٔ�$�݁�U�lk��a�������C8��gW���0�
Myv�J8�hM#�gl8�ڲ����E�w�� �^����G�Q�'f��p�<Ԝ�6��"�yu�E��xٯn+e�)�B��Õ,^w�O����BD���[Hs��ճ���ߕ�j����s����\���nr��<%}о�-���A0 h�P��g�0_�}�t��E�'	Ṭ#,��%I
�5��"��o�e�C���mi������O���[��G���/�%�����Ï�c�}�]���|}�v�~�'Z��?�}���㩧���GCz-�y��)�>���~��ܻ�յ��4��*��F`_+\�~�auXj�b����xGL�9M��AK��T�pMj��պY�Z�a~���R޵�@(#y����d��j�PCGJ��
��Y6蜲���-|��5��������AlA�`:U�*DJ� �6)Q��/H^�F>�����l��\�$7[���!�P�ёنx�؇��S������c�,�� ����P�	6�����O�i����\c���B����y�<��{�L���-L=8�����H�9{�a,��%U��iLk8$Ao�2Y�xNe+��t�7��g���x3��d맭��9bb�]I/�x0�G�^�P:~S�P���� {�1ZW��������:y�71 ޸�§y�Uݛ�oǁ!�g<�N�ց����Y�.%?��6l����ԅ��0Q�vy�\۫+��������;�����z��V��>b���Q_�<��[�ǽ��k�b[C.�qWC�!�$!�����ֶ�ex�Yl���.Cx&�����f�ijuj�ąCP�/sQ,�X^��
S��P{A:n��]5M��;�Lɰ�6�]��n��)T�
��owx�ۻ7���n�w�ys���¦I�p*�{16×V�	�iBk�I�dـG��Hm�Ff[/�g��`z�����)��-�����f_��Y���U8�I�k��2#�{���R�{p�?r�0b�܅�co(���\Z*��巅B��F�?�%��{�uM��,E^$�t���o�|�A��[��:'"W�-��)��L"�,����vS6��Q$��L�����&�Sv�Pw�D]�s�.�|k�G8�.O	�<b��{ԋ{����R�ȃA
��g�t~��X�=�9���Wf�G�k?��{yD9�~Ǚ�����ҭoμ;��)�,�@P����
�)ҍ��snʊ��fg�<�<�kh:��\=��\T�Jy���:0�R����c�Lj0��bm��a�O�e˲�@p��~ߋ���L��<1HPC�����ɬ�C�O��>u�?���ʬ'�2�
��(�DQ�@HBHBhB��Tf��޻�g���o
��{_D�Bywf��~|�=�5'5�4��C!c ����W���u����{B��׽��D��K���4�����Z����*��r�4s}NZ;���F��2~�7.����67x0�&��9��J�i<XL��B�1Mx�\�8h m2�l9<��u��/֬5-�i̝bsi�+�P��ðY��0pͶ�_#堜�b!����H�&�X�D�g�ZF�ў�~*�!�c2)g����k�zS���g?j�w���׾�u��?�
P��_�"}���/|�;�/|��Я�گ���=�o�2�|���_��wҏ���g?��
C�+7I�<��2���BY�0GdQ�0�i�K$W�� �&FzT�BF�-�B�X~���Hb'	�CX����:�#ɿ�3�gO}!JG�d9`���#��a�LԷ~��O�z�XWgj_w9��Ïxmg����>��;�xTH��2�g�\����v73:�)�h_��a�g��3h)��Z,��8��[32�:��Ýa��ɸӐ#C eV���	f-1�h���ϖ�Q���n]����_���+�c�?Y\�Px@ �q�Wg��}2���0(�<򭽭�	���|/;�ύٳ!05kH��=��|h�2h���Ղ� ��w�{.���W>���f�m~�>sL6��!ʌ_:�+m�m�ne��N*��w�fC�����˼"���^���\j>T_�O���`k�g{�p��Qb�l�;��!�t�d��Lȯ#���R�Z�^`򳋀�ٝ��8�fp�x�����6�+�b�7M��(�u�x�D��ü%���(�w�g�'�Vd�B?��Q.�a�U���ƛo^B9?pĊ�&�Z�#��K�(p,5X�Z�4�Bra��<u�o�zF��֪���<7X��f�ۼ���o�ŽrL�;o��q%� �'����p*��L�/@�*ԫ|"ީ���!�%S� i:�8��Ź9#_Y�l�F*-���I�J`<��_��ل'T(����P�Y^;������.�0q�4�j�O�ǰ(P(���i-$q7�s��ϝ�[8۶nk��r
��&�o��/��{8�����mآ�w��rwf�����������B`��
N�-�.��=/ෳYg�o�:����ȩ:��=��[��P�~=�&�,��T��q{1.�9{���=<*n�Ȣ��,Rs���b\��=:O�_��G��[%U�-��O�P,�p���0	�u�{()��(s�s��1PDdj�0g�$Џr�<�seIT��s8�q�Owpk/�P��zv�~%:\J�c��x�w_
!NSW+	�'�������ןAQ�}W)���Sjja�9?��ҧ�ژD��=2֙-���I�s&��<�m�Z5�.S��i��+�0�Η�D��g�}��������?����~�����П����z�-z*�r2�`�MT��T^�����_��;�#��,��
(�[9�S�e�be I�Ap�C�7&�ՄР9@��?�@L��7��`<QK(�T���B>|�3��㒡�y�%�i�GS���"�ת�[}�
�>���h�[�Lb}��
�h�]����C������*���`"HCkܧ ����Ƽ8�f:y�<�(��ºo�gŪլ��օ̽���q�P���"Y���??pW�V��}�̽+p"�)�
�
�4G����*?y�–�"��i1f�‹�<�������|F(�y<�q�5��V\�,�Ox%3������?eԾ�Fe��ʭT��]�l2$325�O'�J&fu��05�/�c+��Z:��kw0q��g��8<�q�˨�훂�x�R��}�>���l��(��d����Qe{�f�7)k9��&�d��[��~Ý���2����e�S*��iA)�Í=�k�Q6�d��!]�x��r�~������n�i�t�.ֱI�؞���{����촅�oq�{x6��4.��x(�ϡ$��W6������#!J,���]�g��s˝�3���u8���(��xg��B���!�l�K�KӲK�gH�N��c�g5��h�u�s=k>���"��^rsSx躬�s�B͆CX���>�A�wa��3�o��"��z���n�RC$�fĥ=�u[�
]C)�a�_��8kI8���h=GA�P��+�yڎZ8�+	�+yu	J���bH�2��y=!Qx�9��U6��u�`��6���Օ6��Tt&�F9v���,/1>����A�g*wj���c���Z2���\�����'U����6�χ5�;)����k����L_�\K�=I+Ճ��#m]��,�́���~Ǵ!�Bn~/o�[���{���x�+�?���Ί��[2-�^���b�]_�WsF*l�6�'��|���Zۣ+d^��k�By���G��G���AƘ̫��U�PЍz㬟Ξ�s�-|����(���x�a�+�d�"|m�n�f��X��C��øn|(y�K<�a0D�aD.I	���TI߂wyj�5��y3K)����c�S� ��	[Ȯ�lX
�A1�!��&���NAx�h^,�T�����Sߥ����Ib��J,�֏�"�km����Q��F��-��rO�@�lvx|�LF<0D�r�/���E%��#���㢰d�R_��r��M�Pޞy@��_�*}��_����Z?���~�_j����_��_�w�~�]��g?�yF������Ǻ����]�y�y*�r�$�T>H	��r�v�������U8!��"&^p�GR��N'�xC0&2Q�*eLh�N�VK~��'��׼�썁�pb��*�Y/�ߟ�w_R�7h��)�I�R��p�7J �J,WJ@zr���ܣF��F�xFn”�+L�-�Ć6޽(�w�܇pB,'x���Nt^A���uT_8�`$ �u�Ŭ�Y=,~aݺ���G,_X	�*�q�36Kٚ��R2M����x�`z,�Ձ,>;��2~V�`�N���%����~fڊ*R̲w�<!��.J(���b��N`���=U�<k����n\��c�Oj�N�v�X���&W8����T���D��w�p.�P�T�2����̸'�N���ɶ��]��B�xm�S��0W���������!�l�����Q���=�K"p����t����e����x�?���
�6��K}mDd�֭�����ε����"�"��+��{��B{���<h���M�=9+=�95PpY�d9��������
L ��[����na98`,]U�E��"a�Wn�k�5F#��B8�fԄ�*4� :�|p_Ǚ���0Z�"7��a��^����<LDǢo^���˗�ݔ<�%�	�/�ل��ymt*�	_��\r��.��Jl����'ڃ~��1n�ї��;P��qL������j}��%����m�М#�R�
�I���c�G��z=��:��*@��jb����m�A����BLfkSx$u^�GD�
NY������
�c��ftq����8��N�GG��\]\�f�'pp������Z>���!��{��Cv=g�C[[�L�ncwt��<��uX�q�=�.2��,��00N��]�
%X=�7�o������z��rR1ۗ9��n���S��Bq��U~!�����B"���<���8ɳ��
��PZ0JX$�~\W�02��Qq�a�E�?ƔC?��t��:�[N��jRe;���D��Z��BQ���r ����;��㝊v�W�\ɽ��citG�]`=c�@�R�_Pm�6mQa�\s~�.���ђ Z��#kcGx�` ��"�"���q�F�� ��E(ԉ��
�%�J&T7eDH~$��i%�P?�цO�3�����V(�TQ���(gb�@6n^��.��S���
��,|�J����aI��}X4ܕ��!���pY+���_���UIb��K�u �F3#����“���s�(S"a��7\hVY\	�㍍��)�(��_�e�/�����{_�$��د���������<��_���6~����\�:����߽(C>��c�����~�G�?�[���;>GO��P�$�\a����v�%Y*& �̔�������.핐K���P��Z��W�s��F_�� ֩�K��;�5���q9���Y9c<,B^ݟ����%K^U`
�����]�~}m�[�uB**=�Е
����(9�}kNS�ԍN$ڲ6���k�S��&��4>��/�Ly�ޖ`.�A�;�����7��+A�dF��+�9�֖�YO"��Ec;�A�6C�p�iZ1kBܟ���t ����on���j���o<��8�#I�W$A�0�e��0E�+=\��k�\B�o��-�,I��?����i��XœOk�v{z���~����s�<{�x^bPo¼3n�x�2�X�6�^e��Pa�h_4B�B#Ѝ+���`���pE�>�F�
������>$��9���xV�ײ�(�Մ��� �v�uK�J�=uJW�w�zT �>���z7e3Ύ�
/<%���%'3���O8A�=�Uo�X�.,e1fR��
����V��	�]�@^����D�"�|6B �uevX��'S]Ob��L�
�`ކC0��49��V�>�����"�!r\�`ؖǬ�/��~�ᫀ��]R��X�up���X}̚��p���.�^$x��ROFI8�~/s�~�0��*|I|���`�Z�lW�`�
ŵ؃�J�{�گ\�S���	4&%�-DOxH��]]���d�(�ē.S�c����s�^fhas� �]'Xc�^\g$.8�۪Y��k��,���<@�$,^�i�y��hh��%�H*�f�cmLIt��ȧ5�p���%�S=�q�y�.a�?����<2�h��i��е��16n���F<�U$R=P�pO�<w��+�>s_�oɏ���f3�zG+��]Z����3�
ƣ��ր��CԲx~�i
�/��i�U�:`-���,A�g��$Ơ��iy�z�.�ms����CT�w^���^=�U)S�~U�p��B�;mL�.d)�����-g_䁽%��k���Z�]�QЯ�ܜ<���V�����++?�ދ�UI�\Y� ���vE�x���&��g�ʫ�ޟ�.:���
�9`��.[A��x����/�!_��$�9ppxu4���7­Tw�*�$X��	� m��0�^@`	�\�jJ����U��)��	���j�M�0�A�oy����_�U���o�'��g��7ߤoF���-����؏>)@>����~*�+L��t��d޸(j���<ԕ@��+�l(ߓ��(�����O�Ӭ��׉'�]��֛��þ|_���9&X�._�����{O繂�fvwе,�q|z�u;ͱ=�L�O��{I�^%vn�
`��wf',��,��]]�1_-E�#��N��6�L�m�Yn*]��o�rXW㘗6<0~��<\���WN�A$Q��C0*>��i��tE��|r�I$!�x�����p��H8~"���������*h��������Z\	cc�!7���\=Y�`��4��W�{}VA�)�8�"����x�m�|ur���w����Z��-�\��M���Rv�@;B�]?��i�zU�
!I�)Hv��y�fa�l�&�%&����uJ2O9����L�-���Qa�?DRT�›w݈���m�d�"3\�2��"ל��i��s����s经���kk�ں3,SF��@�,��ڹH��߽M>Ί?�r�l�Y�U�9S{�j,S�y)��1�P~����\���Q3�*,$����[�ȧ�
B�1Z���hI��\ha�s%E����"�~^%,�C�L�a�F���3��{��7�r?�&&\;xhq��i�h�k�B����mW�{��?F.�1��yx���ދ%��A��
U�8ƪ2�&�qb����!`�lj����{	?��U��[�+��?�<��ϧ�sM��R�J�]���J���0���y�L]x'v;@[���ي���1q������g��͚&B�L�x>�\8z�*�y�E
�%�z=s�բs9�]�^RP���3�ڡ<A�|���9to?k�cm��6K�˞�t�zR��Ǫ
���H
ҳOW~H��[2����E N��1���1�3\Q���3�E4��J!T�|�	�W���
�B]	��QT��u�=���hΪD�{�8�6A��U(Fή��|�(�>�LVc�T�Xǘ�o�Tj�6�����y�VW�Y�C��
Zɉl�5dʾ1�;fd���arW�V��'���5D%�ϵ��N��I9R��!��&���ld�k� ���rI⠲��c=hb����I�R�f�Y�TG�����J����M(��5aWnp^���o�E6���aD�
\@]���\6�ͯ�����=I�'�)���![i�~,��(%ii7��+���Ȕ�\M�A �ǿ��'싿B�p[1oM��,��uA:O�>Q@��X��~��F���o�'?��Ϳ�����}�>�rY����_��˿B_����|�KR%O������8>ゾ�2'�$h+X��O`�su�8�gpĄ�0�GBe� ���@���s��'�"���S
�e�݅hzc�SDս�t�P?�Bf�=C���	��-
���7E�e���[[�������������U;9�?�n�
)�<j�x�s!�f#,w��0k���0���kk�@����}0EƝ+Xȉ\X��^�=���
ł2�g�P��#ܖ1!��R������W��-�xo�|ϟY�$CG2�1[2bȿrW�2��Ƚ1ߖ��&\�$�R�{r��iH�"䬌ܑD��u��|z�sU��*7��d�;'���2�
�������~�[Fz�*BM�i����?AYr�b6yZ�|O�Qm0,Jȼ?4�[e:`\��̬p������b�Y�	|~�
393�*@��\iR�p��h�e�ǚI}�m{+{5(q�)�ػjB�5��P@oM�*�@��?�����+��>�Un���#�5Bf�GY��*�R��y��ctW�ܴ�u���ۀ`xoXK�}E#�'yV!���ȳ��$�g��"t��O�;e������(�&�.x��Z�wbc8�WʝMi�l���W!�˗���cx�,���^��me��Nk��U+`��U���W[8n����@��Ji�Njo�am�Pd���1w���r�("�՜w���G�q�41}�s妯�y�G~��Ʌ�)Lž�z�7��v�9p���b�!�q�ynDx���%~۾y��k���LpW�na�+n4��z����Ҩ#�s��bKF�I4����m�K�m������4��|������G��0:rЉH�~�f�/<�x�޻�*=�ݑq���1D���g{��w���
�U�yn��nF��k�}��
��|��ݓ6�lv���8ȓ��:�B��謽�h� �	p��g

�sX�i�6o���T�J.��l9�?�O~�]�_�r�L����:�{�R�wFN��`�i(�Wp��N�9%`>h\�y|	Ϯ�����{'
�y?�L�V�O)���z��U�sS8d�(�Z<7��m �~D��Qsʏ8�j��~�w'>�[��x'+I�,�{���K�>�{[��pTQeG�g��
����-�x��E�!�:r�=�Z&S
���)���`�B��F���a���P_�vn��:9<=,䕲#�< �r�\���������̧�o�I_������75	�}�ҧ?�Iz��w�_�ʿ�w�{���g�}����ߣ�|�z1�g���;�K_�
}�����Y/.��>�IC��T��SyLQŸ
OV�&�j��( 5�V��􆃀�}U�Ae����р�N��������x�8�cM�x�D��H�����;�޻0��F뼷��h��U��GX��$JD����ٙJz�y�D�\*=�u6(��-��2�+2�K�Ø��k��zZ�aw�A������a��S��ɰ�I����b��a�yx�؝6�">v$/φ���Jϩq����R�)�N��D������5�1�y>ܚЬ/��a�5��[����Ä��C��
�b�3�X���M�`��C��՟}z�J����0����m����f)<	�����x��J��G���/��z'ּ�8�����6�}D�7�K}u����9�qkU�0�{���uC�"��yT��!��{����'�0uH[x)�qKm}���?f�e7�-h(iD��"i,�+����s�k19(�4PD��i�5sZ�����a	��üj8��ƫ2"�a�{~8\u���W�3h$E�y�)]�r*���8p�p9��#i9	�b�*r d�|*`{�����!#��|(�!���ka��K�
;ك�3p�ʙ�8r*Zh�xp|�A����i��B�h�_���ٯ�a�o���&�/��xxl����8�8��%�E�q7\h9^A>4���,o4��k�o�ƹ����8�:΄��ϋ�o�=����r�ZR�6�4��+��Q
2�݄�D��&�y�k����m�Ԙ�t��H�Au�;t<~��kv(Y_�_��#pT�,��P�ێ�=�����܂�;�T��a�D�е���-��?P,u���l��|���:�,�u�|}�c����\.��3u�q��+T���2���<w% p
hE
a����N�C�%�X.@�����-�96�z.)�#q��� ���'PBr��hb�):�TxQ�a��:�����s�;Z?]��d��Px�b�.�Ǜ��XsP�f���^�Y#8;A�0|5\,��a�Y�� ��XB!���TJ�lk�{:˚��B����WLXU�����Q'���a���t����៧Z�x�R���noh�74g��P��Zn���2dA�����$=J8���!�̡��BE�
���E�z�L��xhsG>�����{
Y5����a���'5����(@^h�/|�;���?I?���tQ����?��?H_����˿���_�w�w�g�O�O����/��������T��Sy����.��n���(�n��;�Y��Oe�%І��%'�#�Dj�D2�L�s����->^�(@��.�xU
�_FR�����=�Ԇ5�^�����̖�>`qF�RZs��N��Ž&�
��w?�Lʂ�C5�g_^D��7��-d9^Q�VJ�FX.�liKB!�}��&`�X�f�C~O��ta�
��%������V;���������y^��������H���L>hx$U�'`_�Gޑ�q'��<�ƙ�֢�x!v�!,9���J�OX:W�$hԯW����Ri���ĵ�lݕ>��ȟ8p�������7dO]�hb���x���w���R��.�^�k.��)�(N��wl[\lYyl�ge�8׿ �
p�����:�mm�~�̴�ɪ���ye.����V!W��<*㧓��_]IksO�U�l��$@�4��O�ީk�\����Y�5Z����#�8����)h}�N��
���c��|��^a�@T�$��4�W�6u�<�C�I�NC�'Chk��b���hV���ʆbq[O&�Z-�4�݋\	s~�JS�ؼI$�q��?^)�}p�ch��,y��
9� |��|�.��{��*���Lg��}�}�Ac}y�+�O��k���+x�>ӞO����c�#�����z��9ϭ��P$,�������<\��b} ��m�|l��9�L��)�s2tObX��.��R@�����:��Ux��4�|f���r"�4�����`pQǍ3).d^a�_GK�7�q��<t�b�=Q�
�(�3<ɼ�����)��BZn2(9�	>�畹�č꡸P�ı�;�Q��i�R���Nٸ���^8���3�Çl�(c�w�;����Ww��"0"�����=ōX=�
��{��#tU�_ϏE���M�9DϫkMw�<E�$�?M��
�V��B}�D��.Ǘ�I��`��p��#�cm�B��;:�C���js��~�$z��z�����F7c>p���m3h��5���2pU��Q� ��]2����:d��>D��q��$�~�D*����e�����Ҽ���s�]��E�P���P
9
� ��<��l�Ha�ñfBU_%G���c3.�=1�^<.
��d�z^��	l�(4l�r,����G�w*D'k�+]|�0.�����ǫ���W�J����_���"��5�O���{��/����ߡ�(=�����A����ѯ]�����]�"�A�����o_���j��o~�7���7/�	'<�|�ʷ�}��,fEN�X�G���	3'�'�b���)*y��Y�̱?=�E��q�׀Je
!�%H���A=j�K@0�Z˙z��:
G� Jm�	I_�}��td�Ƙ�8=��^�e/m�n���]�mm��H ��˼3v��J̮�*o׫�l!y_���4Z�>�LĴm�椒��3{��h^��$�����sB��)�a�g�d��
��囆�����	�5�8�YA��!L88�P�j�i���U����pX\8���lL�&�U�^�/,hr:{H���ü:���ԣC.xR&�~�H���������a�8�=�R �YRx��޶n:^�sp!�	6�eVIBD�6�74�����S`$�D�s�•�\9�sݠ���������Z���_�~���~�{�3�Ie�ؾ���X�������ZT!=Tx#��V3���\��� ��L;P���Ml��}<��?�n����1�Y_�|�$逶�ƴ$�~Z#���	R�[����F
��K�5���F�BӜ�Ǿ���
iӅ	0�y�N�����)D�w!��V $
�؛��¾�!��B����7ڒ�_��^��(o�倮��t-IlU1q���w���)A8!�y�Z���VPn �����@wD��<(퍱C�k�|K�;�˳'�}���<�
yOU��{��P.�����vd��lU����m�Bs�s��<�٩/��l����lƁv|��2�ޡ8ۦԬ�ġL��F�p@?�-�K,7;_�r�w-	��ɒ��@|��4�1
K��U�C�SN��g�;�R'>>5La?�������|�XX����k[��aJArɼ7�oK1rA� M�AG[uSĎ����;}:G�҃�!��I%%�Qr�����q�A&�����J�7%]���^���Q�6��Uݯ�@��ֻ5P���Q���߭;_A`����3q���%lpr��Q���rʐ�PZ�~(���^N�f�G9���������@�wD���]W����A�|HÓ��7S�y;�E�7�t�&��<��X���&�E�%Ő'p�@��y���mG_�R}��vʇ*v��\���<p�t<�xu�p����l�����_�P2n��N�	Th�>�� *z�8��4
��H||ve9�U����,��")y'%Y�P��fNo
A�(A����h���}U���Љ�sIѯ�:p�N|�ϑ�C�4�+!0xS\hR<	"�
tº���|�t}���2�{ң����u"=\W�7��Ǵ`�߾(-��������_��}���¿�W��}NP������K�~��~���~��]�U=/��;_���w�~��X��<�o�肙��7��qIV��y���"�2�3Q�).�0e���� �
K��,y�TUp
�'8"�RY��Zo�nAH�"E����d����"W����~��]�^�{��`buatřs�T[�3���?�k���f3����Z�nj{o����^��K�O6�h6	r�:����ꗋ6$,o��z��џ2����1p/��ň?k�X�����xY���ATz��m’��Z�!/�"�)�&h/�aIF��\ۑ�`
�w��^�5�°Aoh��C2H��ik�N3����}�"�Ùޔ�m�
���K�64��b��~6�O}��ҏ5x��9=�L���~q��k��������u~4���ez�,y�h8�>�y���ق
��'3-\߭�l޶F��}U�v٧���d�Y�˥�CtT)�^���1��O	7��fsA�'��)r��<XE�A�ƕ�G�H&�G��#��S�e�x}��7��-L!�	d5AͰ�?��	]W�A��J\�l�D
N/�:���Bm￉��v5���%"�j\A���ƨɖ=�r��q�6�Fqc�z��:lxk �‹�˘��G�
�#!hZfD Dt��m�J[�/�����ƹC€��C��Å�>��'\;�+~a��E�Ov�-Mv�"ϳ}��Z�Ni��լ�G9{�0�F�9�R��ɉ%����r�����Py��s%m��
�y=V���[����L&�m�$��Pc��*��$�0WP�(Vaxwl�/�N�0���p(+WW��~#�d
�S�l8�lHL�Q��V���{�Z8�S*ov�gO�ߣ̷���~�m�-n�U�/�O����ϒm��q
8^6SB�3�!e/��ͷ,g�zAx�BSR��w�}������%�5��w�Z�6?��7=Iܛk5�<9�I\f��J�e�8b^
�V��,�ȵ�"��"�<��_�_}��)_}�;�=�}��6Z~i[����(���i�0��c�;��>�~
CƓ�6�+;
%�,
�*c�g�������ko����YA앉i���֠���".q�d8dQv9��ϒ��g��!����7����^���mt#�}��v)6��\�j����D�Y��çH���+�D���ۍ�`�[դ/֝�Ƣ��,���q]C�mָ��4�a��V<g��B�w�}���?�ً��@���g4a�x��O}���{���|�-=@���6<>~��%��o�[���������U�	�=�oFi��1GIB�E?��puc�Hk�H�8+��I�e�3��t�����<E�BHH{כ���%�%�c*�*�߼2�Z}��ڇr��=������֌��5A��x�ºp�Q�v|�Ie����>��|�o��<�U�!Ҿx��^T�*fl�uwF��{L�ū�� �X`���>H2�� ־Ln�K%$��L��Q��P�P�X��>F.�P4�
$%�]���c�C��2���//
��N�1K�y
�e���M�����C.U��4�����s���衾���nĖ���o� c�d5
,�.y�[����yL��	�U��P;��0�m����
�J�K
����51�y-YH��K�i��r
	�����&{��|�u�	�*�/x��!�doMd��?2��7�ka���ܮYk�Je���U��n��
+�����eh����$Ƈ��D9��S���U(55wń�\r0�7��R�V*>$��QD�CA�s%��
x�Yx��šۅA�Oj�1�{�����iC�H!�>��#�5Z{?`�(g�@"jЃ&|=!�Y��z�*h;b�&��-��m�@(4�İr�둴��E���C���G;��!��+�G��&0�y,g<���	�P%)�I�vC�i	QG�:�4q��<
��^�W��]
N�n�h�l9-�`��p��$�AD��ڍ�T	I��{Q�%���Z��qq	��lw0r��9�w�z���cA"fU���A�����D���JX �q�(0��.�%��	�! Ƙ�8"w`�]6YN'[�W��p�M���%,����]���p.�"~����rx����u�5_����~�����>`.�+��jw9Jk��l�<P����B����00��������m.
�=+̻z��^���py-9ǫ���[ܕo#�hDb�qGp�.�#�u(;S��%�T�M(��������74�T�c
#<����Y�i၎|=uRa�{^!�tV��e��ˌ)���!ޑ��'|���.<n�y�͙r�i�P���V��T8P�?)��(`�b	I�J#".�ǔH�Bh���@�r�d�\���„�����s	�%EႥ`��(9I�>Rg�(J��/p��.�Ew��'G[�Xg[�<Aމ�&@Ǝ&���0�Ee8#�a2<;� 2{b�'�8���%v�Ȭ�طa��R���I?��E�/��������M�7��6������s��,}�ӟ���W�=�_�qz���~����D������'����K���w�?�����?��[�|�ʇ-�_�
��]�����HO���qf�6ds���hu�	�G���b/,<�1%�W�M�i�Df��Z!%��
�r`r��ӈ���c9��3�s]P���!M�b(��?����L������o�@XVIk����Q=�+�y�����(��
�Z��C%Sn5����Ŵ��8��D�W�ƴ��.@��*	�%������Y͹X[:���
4�`��x?�p�&���1'���<�&�Ȭ��g�4ֻ�8��֍��<S�	���˫�U�'42�	�u�1..,�Nn1}<Z~�����
	�%l�WB�x�%���Y	B�R`������NB$�J�� �&�!�R�i�l�F�&�%1��՟s*�Z�1T	�5x�?X�u���c~��;�Z����O������5��t��B=���'aw��O�"��}\��疸-ŭ~�i�>v+-4�<��y�6c/g��LZ�'lM�+��B)�$��RW�/K���E�Y�4&0'�"[��i)��v6�pI�p}+,9`ʨ�c�E���1�����`�`>��6���!rq��x�`�Gx�mU�#���j� \�A�C�;y�O(�a	;,ޡ4��su{�5.�f �݃3�������.?��Y TK5�n����~~ʿіl��X6�/x1d�(K8q�]��K�=p�p@��R
��C?�D˅?�5�IP���ډ]=�+V�*������,����M� N/��-�{�&�)�q���pI$r��\P1�/����Ϟ���GN�r2鴅HbU����u�:��WE m�<;~����z�v���<���6��wt����$(m�r�X_�J��S�������;�e�OK-�۷���L�{�;��1ל��>�Ђ�{�����\�a��\��I�y��v?�Oh�����E1l�gO1Á�F�`y���E���B6���8dJE~j�mO��Pa/b4�~쿻�gF��e��5.�7�X���2z���Џ�F8�r�&�[�G���׻Y�s�X��j;�h���,��3_7((����E�j0̨q�T�Efn�;L�E�`�!Lq���BC�R����$�2��c"K�\����F\9�\I>�O��᧲��;�w��q8�`�91<R�]�8�TF�3���l�ڳ�{�B+V�ۋL��.�d.H�
�@
�+e-��<S�ԯT��o�2�O�{��z�M��_�e��7��_��o��.����_�������G�җ�L_�3�~�W-�}��{�0���S�#?��v�����*L��Ǩp�Я�P�
���w�U�Fv��_�*����������z�>��O�SIfp��5�.��E���q�
r6e��BV�ę��	S�oB-1mƃ�<b0)t��2o"�Y.�DQ�&ކT���R���T��� ��ʛ�oo�����=q��u]�U����t�ZE�����5E"���wv��ӕǽ��2�����C��{v+�6�+�j��yUc�{�f�x�U�����	F�^�A�o���C�q�v|o�]�����)�S/XŘ�ֿY
3�zy��`0���7X����L�0��j��1j�?�qjՒ˘�HF:�{>G�+0ۃ�������2��eU�/�j�T�D>F��z���mAh�S�^��p��~SӽiK�jKܯC��.�\���$��Ӹ�6�-�N���o�!u>�#�<n��ճEլ��l�Ev�w(�rW���4�bb���\6}L�0=�`�*��w��r��o�s���X�u�C2�x���2���D��5��eFH
Wjε7c�K��g￲�6�9��u�-�'^�Q������D/ԣ�s_���[8ȁ�q��!=]q��
#������$�d��}��*7�%�G-eal\x��:ߔg��9�	�ֵ,������=*��H��KҢ�{D)�������E}�r����0�NCCH���@H/	
�u2�&^`�ˋR�C
|r_�D�5�GI�<ؙ���%���^^�ZiP�%U��t˝��O0A�7��w\�@(�0�Q~Ơ���Wǵ�=��J���#�%T���Ll™�qFK]���[��6�Y$�db�l�_��lyǐ����s�J x}���t�k-��#s��ه��}ּ'�th'���>��8��_!�
<9������Tɡ����g��4�)�w��>^)~�P���dV�ℬt�x��G�R��at�*UP.j�o��R�6�[Q&&*"���G�Z����ϔ���T9�x�r��\й.�w�(9�x��@���|\�
ĝ�.��x����L�0¯}Ba�7��
]�gG;Ja���rt�D�A5�O�LIxZ�s��ZJ\(8����kG��XM	t�}(�k�)��,��*)��>;�P�z���.q~��y����C��8O��K�D	gK�cx�T|���9�q�	�A�p{^F��[^I3�R�6Y~�� ��}R�e)����ur����P>��[���)S�g��t��oM��m������>�4^�Ѹ]�M��Ԯ`a���p���*��/=�z��=BD+"��\�R<��2
<ClR���~��H
���2�;��s�J�Q>��O�v������ɷ>�?��������ވ�|Y�7�xC��;�CCd
����/+�	�E���O�[�T,v��~�7��ß����������?��/~�~����?�G����W�J��7��?�O.��ߡ�?B���?��&x{*D�A6�		{�T
�3����388ƅ(%� �6̓��ȳ	ў2��@�(A��Ve�$��:ʭ�3��B&�k�ȴ�N�\�w�ڔ됎�|��Q6cq)��,���=�[�)���s���MA_����×`�6s�qƒ���_dSe���pdۈ�t�;M&b�L���� DS!Թ��}���D:E�s���?�qa�.J�ϐ	�3|0���J��c��	6��ԡ���?$�L&�^$g}oq��1���i�
�&�]�s�C�5�1�ZSvw|���X��\<�����o*c5����-5��gD'í�m�^��q�q��y�=ŨX�|���p��	Ln06^7�#eg,޴d�J`p��yޕ�ބ�(�Ǻr^�w<���ʠ�r-�}��Db\��7��m��#)p�����0��)��C�O�l�|I��	�Y�b:|� d)†ڬcs�z[�u���6�4�H���]ګ�Tjd�
�n�}�</)��ޝ��U��Ɨ��Rڍ>fYF�1�G��Uf���"aJ�B�>#$���H���ovan�R�����s�����b�B��fQ�Y�99�?Y[k�7�N����	�k"k�'�J5I���ń�0.J޴^B�J}���R{)ފ��=�G��&��l��Lnr?���������N%�.���P-�n��{��<����`wL���0����M���0T�����8�v�e�%�1c,��6�[�t�=�)!oe�5<�X�����4΍�#'G":�9�v1O�hS�A;�*,�Y%���LLH�Vo�1�A}M��w�ec�)�K(1���ōO"�������ǣ��[O��|XP�>"^����y�ď{�ؑI�,F�j���5�}�u}-&�GP�'(1���n0~��˻�'��ǁ�%J��g��y��]��0d�
������}Rb��X�>c�3F�a�4B��޻t/��$W�|O�(.*tF�5�4�͔5΋[H�\���$<���z�\�����߶�Z�pR��$�M�=gV���NH���-xiǖ�����y��=��c�Y��Yn�V�.��-�Ny�5x|W�l;΢m�8}�e*�H��ķ4"1�'
'�-�	߽.�c��Ћy�8�Q��_g�uڬ>�R��G[@7̭�)�U5ű��9]F~�'B0TkSSg�,E
�#'�0��mg6>��H����YAbc:Si�@����	NEX�UΪ�@�p���Q"1�b}};�q��}�=Ub���@y�ʘ�O}��(��ԧ�Z>��O�
�3�� ������|�ߔqn~�W��˿�����������G��?��>}�w�~�����U���g>M_��7��_�*�g���G�Ծ绿��/��~�����T�v�)�v.u]R�Aᨃp.؆x+�b4����)$�&�g�l	
`B^���j��0�����<��N`��J1�[�P�b���k�F����>�|�3���c�խzv۬1�[[�f>������QNE�l���y��ʜG2Ð��	��kIfK�\{$�Uk���B�d�b
�2!O��-k�aq�#W�$�-�OD�|�+�A�*<yA�����dy�sg�Ϟ`�.�f��L��p�����ј	U�Y‘���t�{��R���?�%�o��\U�
֙��ɽ�L9���F7���ȏ~X��x"��J��l������֐@�Gn6ץ�k��vcE�=co�}��5&f;���Ώ�Q`j\���hʅۛͷ�b�����,K�`Z���CU]�/	>B`��E��߬1U �9��B�I�t�����_\���ۊ'R�8�S
�7��$�=d���s!�H?�"R��~���JJx��"�:Z�w,ѺN	�)��^є)��RK�\�X4�x��pܒ;;��H�3>_��/]0D>�S�n��eH�}�0U޾��o~~�(�Ra��J�3OPх0u��3D(-�e3���� �Àw�62σu�> �!�F{�FV׽}?����	�
��FCQ�I��$r����\O��5�J�5�n�sp��5r'J�̠�?��޿z����y'�9�O�N�?r8��<o���PڍJ\���^�LȸÐ���BK�Fp­�*��z�.�X:�0�ht��Ò	��u�1,Y��q�I�<�>a�|��eϤ}kČ�a�P��ArȘ2�ΘKV��N�x�rW��3/�˝��x^ScP�-N���:@"���Ǣ�;�9���a3��@��_����a쌞��
i#��m١�d��zx�go�zE����JP�Ӗ4�P��B��@k���n�]�T9+�����2���F}���6#�~�k=*�^](5�*A��<!��=֣�m����X���K�+b�K�0�+s�2a-
�f�.��ñrZ�y���O�Ir���\�w7Y}�ə,�ܘ�ǘ���\&�:��[��-C#���~�~�-�����=�&�_x��w����w�S��/�mqx�/?����/j�������I?�߯�DC@�_�q��W��a��/����.}ꓟPe�_��N�4o̰^~R|lK`�W&ϩ ��R%��F�G�Á�*bU˜�2#T�z��s\љt��e���zҵh�yo�g/
���F��{0\v�K$@��
L�0�D�M���a�kk��[Ah����Nx�V��P��aV��m�T���#)2��p���HJ��P,��zu���`>W����\����cX�I�ȯ�����vo�j��#����1�p���N�]h1~��,(�^�gdU!�ϙ͂x0d�lz>⹟ר�I�/��7��bٲ�7o2K���	�X���o^���eb���7.�P汎"�B�0��FK�`�SS$W����.B]��2��**r�=D0>4S��G��0e�E
g ��H7;_�\�)|���r�6.!�v%F��f�HL�>'S�z�jyW�A�|�n�
}�e.>�4l�6D��:���*��d������_���!��r��?H�m�%���X@�g�Z��z�a�
`}D&�h�Nn�jQcL�t��`�Ƈ���Y�V�^�;;ч0U2�:p�["iY��>6�8�P�#/B��
ENx*~:��ȝ��������钃��
c�a�5�k�q��c#Ӿ�F��=M�Ѕ�������q�Mc���̷w�Y(	��!���*B�龯�ʦΏ�K(\h9����H�/+����5�����b,b<A�9�_�:���j��;d^K����cJ�E},��-RC���"e�礕0_��s�8������Xז����Z�{qGxN0G��H���:�~�0�i�@�e��c�8����{Z� 5���I�n���eͻ�hk�M���dž���u���k��M%9����k$�!O\�s�B�a���y_���wWq�߁.w�F-�FI�},�x�Cf~�&=_�����1i:�6��{p���<�q�������.\J�iX�A�gw��l�r��D�EQ�4�ǓBdQ��H����i!��k1���'���<���*Lj(�$I����%e(\�
��f�����&"e�|+�b᳘k��Q&<�z'�m���w��K�	�J�����?O���&���Nj�
�p�+�,�BJ�E'S��}y>�S��'�W����,?�>u��R�Θ=�` E���k�o7!�����1���߶� Z�ڥ�����ϟ������O�[�����6�O��?�/^џ��?B?�߫���<��szF�x�-Uv���/}���ƣ�o�U������F��~�*��@�y���-Q�;Rel���"�3|���7
d�0!���[��uR��Z2�
V0Nl:�QD{U��+ud�������</��H?p�tj��u��������^!��G�L�J~_JR90�T�kU`eB��mF;��IW'r|��B����1X�Q��	�%�� u�%��9������)"�9�"����e\��z�����	�v{^���݂7��ΰw��ln�#����Uzx����+E=��m�8�W�b�������@��N��%��uEX�&���u��:C6
�)�e��>К�����R�ΩAH��?�����4 �P��d����#*V�u��ߋ����,/4���`1�����A?�����J��N.�$��#�o>�z���^�RBW��S��
_�<�DUN�@��j����!O����3��I���[,L��=�Љ%Ԋv�ƣ��q�t8�>����Ÿ5���R���^�W��mJ|�^}�8~_"\)<3"���]�<�]䛞��h.�B,�##�X$�&�7�����C����r-m+�<�޽���{g#�-;?6�s�l2��}��]�hIJe�-��^���:L��f��8�N�Ѣɉ�	���5��/��c��V�Z���l �3���!*J���ٽƅ����Z��g��F'H]�5e!�I���kxvX���יִɞ��Z<���'�{��ဇ����?~�0��އa;���g�G�HqZ����+�ߞ�"���Εtl�W*����iy}8οJ
׳o&���ga|O9�;|��dS�1��,Y���Ef��s���V�6���l��Q͔�6��&�
|(�m��?'a�<�$��-��lO��+��Z,�`A
Ak�;(`'�{K�n�O%����h]Q���ѳ�fE�C]s��̖����Fa��3�������yg��o?����<�v,�|O:ta}���]øA��k�
���@a�ȿ8ET���·��)I�A��=0T���P�c����y�,��0o��_���}��e"�,WD'�,l�E�!�Xv��Wo�hR�P�ە!O� R�1��<4t�x�2�\�H�{�Ɔhr>h���+�ȶ�,9H8�P���X$�- >�E�v*H|�w}���_�ɋ �U���g$W�xO��Q~�����+���'?Vks{?!��CO@�S�1-H!��J�'��{�X� Ib��u�ϔ~�"�-N�� ;n��8Y�	%��K��YG�]^"�����?�m3�€9�Y>|���V�)}���=z�NA4ƥJa��;
r���1��{�����/����X�N%�1�/� Α���Q�C�{`��U;�こ��t���8���Zw={��j;#/E�EƸ��U��� 
��Ӭo��^��_���^Uy���x��d��������ߏw�3žϏ����L�pQ���6J0q�r^]��ݍ���Vv—[��g�}��J{&�rC��37W/���?�z;���u�(��>�P��Ï�7�/�7{Х$��
�n
�{h`D{�&�O���S�T��\E��-�[w�s�˝���.~��ݕ�������<��i/+�·_�
 �M0?���L�co���]���
�k0����}`0��������k|�+���S۵�T��uQO���sRL�	SMЄ.����l�T0�T���z>G�k���:ϟ]ٳ���Yϛ�)?-����<*���
c���]�-��,N��K�@���a�.4��B�Qw���R���>���P)����B]
۶����x�R������{�M5^2���\B �Jz�`�F�f;�ŷ8.���&�gI8��"gS�@(��>���N
������	�%�g���xW�3�P
�Ճ�Ԋv}\ϟ=W�J
|�"�4�RŖ*m�3�ݯ�֋�O\_c�y��oJ��"u��l3:N�UBR�B��ܷ	��<��yNvO�D�f�5`��U�oݟN~w�P҈������l�q�6
��)��s{�{�7B91����I�~�^�X/Lc]��@�T�!Bq���^��o#˶�hY2q}*9`�)}��9i�27v��^����
�P�p�K����W,z;N��[��$\�̳DthP(a�~Y��J��$ޱ�9�D�����<)�eM�#���t:�?8�Pn�+�L��H+�x��o1�ˀ�*����c\p�~(�R��n��K�I�a�ٲ����E�e�Ju>1����1S�#��L�UQA��%ILy�� �r	��{(yT��U�@'�_��-֘Y�-���e��w/jC��Ȏ��ʸP���[��Sy*�-���O�S�
�Ғ�N�&��
c���W�C֕(�wj��Bq�/x.�A�FE����OdP���:#c��|�NIv����(�uX.<N�h�b����4!�T���iR��n��M-3��P�! ��N�^ݴ$N@.riӿ�c+4�4���
�;«
�N���BӞ\럯�I�r����3���0�G��.i~�y�n�G}�8�����Щ]���1��:I�!h>�@�
Ccu=~��N�5O��.ֆ&d���b���?�S�y|�z�	��� �������r�F��>g��������1����]��#�hP������W9��g!���z�)�j]��{ĕ�j֮���+p�t%��e,��S��C�g��_R`o��g�@��?�ª"LZ���+�T�ZQg���P/2(;0"��R]��8�9Q���yƳ�K����9�&Q���g]
�Zs"�Nq��ZC
b���9_�|Srb�ros�P���]l�;�*�}���c)��(J��'C>d�n��3?�z�-fV+�i�,=ɷ��x;�`����d-c�p&H<nc��50�`��0��B���d�)�B]C���x�g�C:Q��ϧX/�M@�%V�ԅ���CV�����40�U	�����>�)ۻW~�TK�n�[����	�M4��,�����FN��;_�f�x�vN��>ȡ��^�ߥ�^��N͇|�>�L�N���X���dQ�
�Յ��=��!������L�d�%h�n��PJ o��v��2���5E�_�=5�s�A0Kq@�>��%�F4��r�j���Da�gBw
!�2�\�7BT�,lٸg���X|=ͫw�s9���N=�XF;�L������+t'= Eg���E�RyEǜ��T���Wnp=�yاx.4�P"9,�g��^):����Ÿj�>�M�/.�Gȱgw��=B^<�3%���d�y��$�5��$qX(V�����ze"r����9��I8�Y#��t��ܳ����auM�s
oo�{.a^S�oC]
?o�C�6����繴���;D�\�ͫb�5���s�IRh�
o_�����-}�+�LD�4$�ʋ�S����K�Ǟ�Č��ū�)xy��x\.�«�f�ٞ9w7�+?�>�l����d�AB��9N(�K������@ahC�����w-P�I�.�D
>����	�F��@�R'GQ�Y%�*��Ѯ0��Y��r�P�8b��H^V;_D{�
��5��f�5�\\�l�=\�Sy*O�|�gA���d�~{\{��P�#���;�d J"��pV *ޘ����R�{��{1��� ��(CH��"׫�p��g���+�K�g�ݰ�5X	�a�u
X"�Oi�h���5c���~�]�p����؃C�tf{N��=In�L�e�	�1印b����������zv�pŬ��|���1�}/��x}0����!y��7�{���m���| �t�/�͊N�)��Q� �X�rduA�(#n1���*\+STⷉ��vm���[���f�=�48�w�χg�Ǚ�0��|���c�R���wS~^�<f�ӵw��P�<���I�<�`����*M)ufa��|�֗��/���?!:(�u�n^i��jS�7���4G�Y��Q�3�.C�^=��:�w��M�q���W?��9�{�0X2�R�l�@�P>��8-Q�C�%�>��5=�r�!j�:$�0���@L8��i���q8���.�6%2�%5�ËO3�5�Ma쨣���Ѓ�av	#Lb�+�g	��Z��R	�ғ@�{�,,���B��r�����vTA���q�ѭ'��L��3�7���:d�}�[̱o�b�gisWo�)�i0�{�����l���`��H����o�(�[b��X#��#�qz�p�S(	V(7L���Y��%BcUEA|��(�q"a9����_�lW��{�C��!����${gs�c�=�"!� �0YFS�w�{q ��*�%
7�ő:��ǔQ,t�Y�[��x������3z�"D?#��J�:z�.XЧ���tzS]��<�&hb���0]"a�Fރ�E�2��!�;����=d2�*_m��n�&�(�Az��{���-�����
x���)���P$����mC�v�dr���79��I�s+!}G1C��2��+��j�š�e����Q�b��	�]��Q���Z����t�%��:~V��yx�Q;�B{��+�枠xz���
���D����N�\Ze��S��b)�}�}rB%�<U��Pec��bVBB�+1m77����%�ޑT6��DؽCj���tz��n�d��}��qY�v��O�s�v|�mȮ�����|-Y�*��xvۤ5&�d2j�Kx�p��x��/h��|w�II��&����P�1�ٔ$+˃��<���T~?JE����1�7����}(-�gY���ܥ)?�W��1��h��k���7��e>Np�`�
�83ĝ8aGފT�Ѕ�>=�ȭ����;��]�'*Rlj��+���	�C�}3ʖ���?�>�7�!N*�8�o]SNkհ�T��3$��׃�ڃa�8�'#�vtv�3��X,y�!
5"���+��m�2�q�jXT!!�Pp(?.
����u�{GNj`�٥��Ǜ63d,���4�3� (����h�\�p�X���U�C�n���,{y�4�#��}+R�rM*��R~�BTg����oT�����.�t��7=�k#�˗/��|Qb��s�2g�v�5)F�y��9G�r�2�͙�VWh��GoY�׃�;�\g\�>~�V^��I�~?��X�82�sJen��sb.�
������X�ŗ���$��Z��ȭ�wVO�V���|
O����aa
q�ȕ
y�|.�m�΀�!l�si�{(��f�h�[ߓ+;��̰f�Y��<�k��_��T0Ğ"�����"�t�M��՗ސt߸���0Fʛ����C�=B�=	�߅��!�J�
5���e�R�z�����M��6��#������J�!�cp�jVmb�����Q"��$�Fs�m*��e�K����R�̡�5�aqtGs�;���p[Ƴ�~�F�r[�8��|o�U�����Ð�)�h�rJ߆�n������}(��n�P�y�$`/Q�2�^u7oGg�ye.L%oC��x���6�93��3�
O?��8��4eoL�+���Rc̀�~A{������.�\�&һ$�Pp'|�}>;�2��[]o�T���|>��>��d<���):��PʽOp7*�w�Z)����'�z��Ѥ��$���^�<���E��}Nrv���Y��0Ʌ,�<;w��g�3r@R;�2D(�����)���Q�U%�}�$����M�t�3����vu�����|)�pi_�Ѿ�'<PJ�Q���ca�ܻ����[CO�J�C.�[\pr6" 3ܛ�9�h�r�~1I�#4r�x��Ʀ8�c�:��a��686�Z���T��S�Kb#�<�ه1=[�A��LBa�T"���tP�f�u�1	L�P���Iv5�L��Mc�%��Q����u�p���'�Uˎ��v0��}��?x����y�M����ǧ^w��$ђ(�޷|��?P�0�r��F?��{3���B��J�1��1�4_����G7u��m�^b95�e��s�?$�U!�=��(\�	�/�@�G�!0���e1R�bW�t��pd�0A�
增%�H�$!������a��.�GLH��y��/��B��myO��9�\��Z���^�d�3�z���<C�qP�^���;~��kޘi�2m[!��`r��s��oл�=�4I��m���!�5�T8૫.4���{��6��P�Z�i��eڄ8���Rwo����:���V|?`l'����ou��D�;��A��C>��vpԏR2�y��v	z��<UOU��������{B(L%��XB�":o�]�|o����u<Ͽ4\��������A1�v_C���J�aK�lV��U�p~x�̛'	�Q5����R��[s��{�Ӷ�/���6�^z}����Ҧz��b��Ns.���w��$	n��n<��C<��˳�m����E����Es���wĕd�.<�[�C���a�}X"L];�u�B[a��3v1o$�0S��{���d�0��j
�r��"��~����M���/�1�Ht�e�||���oM�I���ؕ��yW��<�W���Ç�r�C��À��o\ڰ���k�p���%؞��m�V�i�����-ֹ��<�����4x�;Ar��_�$��������(8߫�~"-���B���S㜕���d��1/{��k�I��+#�2/(���ˇ�
a�6w��+Ӏ�FQ����t|b��x�Cxr��툰�:g��,���	/���C�yLa�L�Ӽ�������_\�K3���f���fx��z}x8�%�x=�mK�S$XK��o�Ԏ#R� L���E#^̋/
v��p&��,��C��অ�"��H���U}�5,6�3�j!����D��9f�;h`�D�� v�\u!6�Q� �X.
q�Sq�߶�m���baŽ.�Y>&�i���`l�����FlY�k�a�2��Q?@O�<����>`)Η�c�����r��Z�4a�J�Rԯո���R��Ƶ�l���P�sE,R��'��K�kԡ��7���oP/�2=��g&��*���у��RL<��:��<ܛ��h���@"�5�ǔ�A�a�T����S������e��4=�U�{������3X.��ά.�dXƏ��ܵޔPB�<����������I�gC��eܧ���Q:4�&

�|���UZ<0AŽ�2ӳ��5,V$:�0K���`n�؍�_�?۵e�͡���pZ��A�m�E�z�w�����~᫯P4������&c�SW���"h@�oj�e;�ݓ�*ġ�6��AԀu_J�=�o��*�N��}L!�
�ߥ	^$���H;`�vQ�W�.�V�
c憯�}�ȶ����^ix5�;��kP�*�'� ��#_-`��ǩU�Ӄ7�HR(���^V��������7��[RqMn��7J�	�BP#�}�y`�[�\�1)"�Ax��R���6F[LX�ۑ]#���sv�v
!����Zݺr�����a�{��}=zx1.�Ȟ��Q=
C��%9}.x�겔3�~��O�BB;�<�~[��;�˜#Yt�w���/�D3R���~Dv!	�;�37mH=�[xR=i3w��ڃnHN��:���<��.��X��=�\~M1�s�}Μa��(S���7@�p]��~>8=��v�8iX��@V4DU9�A3Q�Q��È���`�B�5O%
QU�bP~�/�5��75/����Q�'^�0�׫��}y�ⅎ�>�B�.�Ļ>����z�X?s��[e�^��Y�n&J��S{��b0�w�Ҡb{d�67�_�W1i�S=��e�ٴ$"��gN���*E1`k�|Lgj�(�M���{��ΩX"l��W(,�C����K	�srO헯^�9P1!D�0�T�n��M��,�?��:H./��?�30���[w\��XS6쁎�A��8�?�P�P�ѹ̍i"���q���$B��%�� �8��/q���@
ɡu%���.B\��mq�3�@;Wtl֏3<���p�a�P/��T€̴���n��QB	_���6U�w5J%ю����Gh�GcϮ&o�@q�����sp�E���~Ͻw�
6/.ޞ�b������g�=���T��GY��m�Z������mKm��ł���R��IF����r
%�{��.��ʧ��~�c�$$��,��H�\�2����P�m�7u����5��������+�<���:Je����tL��-���y�`�T�Z+/O�eN7��
�x�mf �D`�m1�{�J�Vc�� ��cʉ`6�3�ĸ1�Ϟ�iޏ�p[,pqF�И�*�y53Y���p���7��/��B��p�S����%��L�2���k��j��mT�[�^y�N��z��{�	ۯ��\y:�Lj�9n=x��y{����džcx�j������;�+�w�V�3m.	1��*���>�H�݀��x�‰�N��
��^mwy�`$)��n�Z<(���(�\^��J��s���^�<`)Xu�ѵa7�L}��OߙI.�XkxX@/;g�
�Q4~�P(P��E.������u��7W ��
�sSBl57���pkhxdU�w�$Ϗ�oJ���C)rtF$<�1K�*��E����ń����*i����2%�a󎚑�[֋�Ss:�m�{�ew&�%2�mNtϲ�̯��ձ��
%y����K*�;x���i��3$-���Av%���5��D�5��"�|P�yv�xk���2�Fq߉*/�tN��*��R��ʛh���!�Bv�A��_��n��"���nRZ��<�j8ѓ���s�~ʣ�{��5J��-�_��_�q4�~⚂h^A���<7>�m�����#J���-�um(�יl�&�G�Z���2�Yލ�8nY����w�j���h�N�Z,���ne�_~O����aߐ�C��qy���x��W|)7��Ž��#$��l��k����*9��L;��;GG��j!}5�Wn�])h�p�}Թ.<Yք�l��Ro��0[��+�pw.0��Y�	��g�*�;��U�e��p�������2_[;%�PIljҤ_��#���>w�PT!�g����u��ֱI�-��00�ے����Ƞu�/������vü<.WOr��b�W�ܮ�	���)ǵ�<��W�^
w��ͪ�`���<���T>��3�h0
���l]a	�\]�
�wv�7W�%�J5r�+����"aa'��8�_"<�D�r%�|6�����jF�Ѿ<���*������	������y�:i�����*���F�qc��<߄����G��'®���g:o�V}a��y�ocǧ5b���B�@�uR�9�x(3pZ}O�T�o'�*� c�L��$�M&���渳�K�����Z)��'c��<H���wW��i����	��2�t��t?��K�w��6��A~d�
[L�t��ޫ�B�Y6?:��s+���c$T�89���)+��m_
��>$�7��=۬��/!�ʑ��b��ʟCA�ƛo�{����$�O��C�B��<�ϩf<�
̱�ҘJL��^��\=�&�>�pS�!��@m��n��|tv��0n_x�x���_�Z�GՖk?������I�����l�~F{vf�L��E��<ӄ�D!�@�
�㻸U���'��`�	��ђ
h��c��P�@`�!���� �8�������(=���k��&4?�$�Y�M�4n!��R�d����!d��=�t��x�M��{�f�\��;�c���A﮴�6�چw`�*
?q�9�{~w�U�f4�	�S�XG
s&t��q!��k�/1U/�0�Zs`��c�s��'=S������ꘛ+���I
x[v�r�LQ��%�f���x���9�:
�}��
7*?w	��=��muwwy�bQ��3�!���5s9䏏5���϶�w���

E[��)غ��S��ji�_����>��\��q�^V���S�{�k�t��|��5v��%ę�p�v��s���L��YC��P��`ܽ+�>��ym��8�U���^�Ys,���s���d�"���G$����_}��(��2(�gϞk�G5�:��0�~����Z�-�IU8��Q�w�}6ʀ	C��8G�.�0�� �#���2��"Ⓡƒ$}r7
�x���T�ן�Z�R:� Q9ǜ�;)	ǧ�Z���or���5�h���f��%��DE�9/v1L��7�G_(��Z|�E�,lKP&>�Z���մ� ��$�<#0���.r~$��A$(�<�H�VaP��	�L�r�<���T���3[��r��3%�U'6���@D�%U���/�N
VZ+AxVN�5�l����N��[��6BsxxP2�����so�G'-cHi�e]��&]�#����r�{�q�>�,��m1�{��G�1�V6�{�S	�k
K�D>����1q�`&dbNՂjxf�/��L����8@������|�1g�sm��>e(;���[�z#A��`���1,���"R<�Y�6����L��9�&cOܾ��_�?E&;_ea�L9Z��Wv4�^r��]b�Pw��J���R�pv;|�s�3��\��`���R��֥���-�P�.)�ɰ9������^C:�bVᭋ����л�v:,-�!��SggBsgO��9W���������K{e�<n��������.��L5�������/�r�������<��H��j�e�Yu�#T�!h����Y���R=ږCX����ξ�E��y��<��2b���u�
�g	!B�X�pQ�����6��d��yp�O���:�B�qU�0�WJ�bp�K~;�����5P�����3���Xi�'�r��+'R��DJ?#R�`G�YC2�|I5�E�J�i��ϯgP�{(��2~����7�����4��>��0G[zvT(��!��`�.�-�p����B��,��"���)���,7�'Mԑ�]��#O�P<�r&�h(Mf%�*�g���R�y�ቋ;dw��9T{H��o㢨Y#��q�"t����O"�F�
^�X3,�O��@�N��.P�XWd��aew�j3��}L�B�b��$�U�C�j`��w/�ߙ-MT�<�y>1�XSG��ލ}�2����B�1!�8;^IE�-a]p�ŕ��P�/��m��,�\'�S8�p\C�.��H�z�Y�����j<8�
	E.����[ ��}�b�7x
�j46x�Ò������ܡ��E�c�o�5x� �pd���&=�WO�~A^�4�g����U�cpwI���[����B�;E����٘�$�(�w��q�E/݉�!��޸x�x�F?A��]w�f��^UIå�\o<�FR�x㵳��M�+�z֒If:�#�����e�e�@lN��[��ϱ�Ub�eT�'c%�8$
���G1���w�^8�P&SHmc¹kO�<���P�.��
�SaL�$r*N%s�Ϝ�H�d��كi��1q^�4�#��K�\��,�%�?O�$ 8��=��[�l�<XR�0�_?5@�mqŶ�E��lUyU�7���p>h��d�Z�u���L.(�� �&���~?ǽd���k/_�п�4��)N��T�U$ӓl|�P�Y[T�s����S�),�}����12^;�je0F'���˒�G�+�^:�ݲ�`a��S��8�؅~�J#|��=�'e]%��*|��Q�`�X:�$≸��p�Ƹ��W�p�F�`���BxT�m^�|�w}#ڷ5UjQ�5ގH0t���-��zΐW���Ea�:'Y�#Ǿ�׷s��k�5��m�(<.�4R��Kt������R�Rz�l���K���4���(H+�3���,�F�p�� >�©g��ȵ��Þ&PɇoU"�60=1z�5�)��P`�:�ld�v�`�nV���Xd�x���W��>G�&���1y��%go�b�
���_�Rx�
�!�ʺ!�){˥c�Z���e[A���~*�W�4V�"1g
	��e�bs{琱7�1ѕ!���~�oCPt{���#��ݍm�9#g~ߟt�C���������fL
�='�yg`�\nJ˽�GCF�p�*��S�2%���]m``n��|*���
����#���k{��J�k�q:+�^qϪ�;<�Dž������'�1��حR��뤗�)�F]8�~�SI�� l��q�.�ƭ��1����G��?_܃e�=8'�9��H�{�Z�k�0�˪�
�x�<�E���k��t�,�P�<�C7�$B��	(��x�d,<��K����=�B��Ad�u�T�����y�J �^/�	�VV�eᜉ��c�]���2dTv��Z!{�`�ܵ�q����9ds%H=�Ͼ����5���[\4�1\!�=[��#=��3�;B	�V������c.�M�&�04�"�)Ō<�=���/��	;&�����f�q�c���36],߈p
�<z�d?X��o�.O�<�����Q���$�ci���r�9l�R�0�e��00��֗P��c�B@'m0�0E�F�,��.�$J*R8Pk��ᒫ.��9_L�C�!�g��v �>1s���=�MΌoI0�&4S8+I*d
�υ�+��v�J�u�):��z=���-���)r���:�]Tʫ�������/r�
���ky����_��C 4�S����J�˹���=xt��eP��\��J��^Ñw�6>�L��X��yuj�d�Y��GO辰Q��2͒"~�%?���:�Rlĸ��ɼ���Ʌ�[j[37I*~�؂���* �R1��3�J�<+�ls��K�,��u['���Β��7S��E�-[08�7C���$T�s(y��Q��o��֛Z��˗����pkxl:ի�N�9ۘ�X�u�OlM����V�Ą��H��<\��"���wO�?�ٞ.���:�.��BQ��'��W��$#�k�_�׬.�'���ʩ-7�v�z[[bAx���+o�x�]	ۥ=�M���\�X88T����"A'�0�3|��8D�B�>]��$݄晧a��U����90A��K?װ�@�:o�#�����-��Y����K?�&l.���!}h������Քi�l�3Hp�2� Q��6�ԍ�u͎��Kd�1��:|�^���}.�+������Ù���
ah �ޙ���	xz�x9��DV�!�|��S�S��q��[���#��u�Zi���U�AIl�KbƵ>���)�Ɗ5���o� ��K� �C���`���C��7�'�H�3�����`g�l)H�:��m���K���Cac��9����6�6Q�B���Z��GP��\SxZ��i>���-�^[�ҪD-G���e����&�k�}�9�RGW
FS�\4����][Ϻ���!w�~p5$�Oৰ��^�[�����<�ֆ{��`QP��;a�$���t������P��(adU��&��*�I�@q4�7p�p%���K`F��
i��_׻�"wJ9UqIm]JvQy(|\/	5C�fh�25z���3_���"�M�m�*P�!����]�Pc�ۦʈ�U�`z][#�`�9@�!5��qP��E+M4?rn���B�8�6�q�%r��� O�M���/�����}�ž�����T��Sy*q�D
����Z`����O�^T�����eY6u	�W��hb
k}����*n
h1;�/�V�->�U
�� �m
�<�+W��%kãN��L��t��wdޢ����Tyx��B B�N�l��>4?�=����c���lZ�k�۟Fiʵq�^S���n���A�jѩ��lg�'S	�����0�È,�`H�{�+V��ginO�k�G]�ϖ�VV��GML����
ɖ��Q�#��}⭷4�.{2_�s���9C���F]�����h��ǖ�-kmCvR�N�WV��m���[�9�B��L�<��v'd�M���Q��)SqKP�d=}�����:�,�8�/���l(��e�/r��<��q�}��kg_v���&;��2�:>R��������vJ�����|��rcw��7�|V����Uʇ��^��ϒ$*��O4�Ԅ�T�O7P�z_���J��蟭{ۀP(tԂr2�S�."����u*�l!iM����U=7B�0�d�R��K��e�c�7うB����J�Q�w�z/&*�3���+L�,g�#ϼ�!vF.��i��)#C'�3X~�q_O*�
t�Z[�X�Im�)L`�9u�v,�މ+m����x�D�'�.=�X��z��5�FӸ��L��*M��T���ݐ[t�Զ��Z�o���b�f�0��u�%5������
�˩x|��KWP��I��g�)���)��[�v�x���G�����<�)X�!�+a*���J�0o5��'N'���5��@#a���'<ב���f�^���L%>ݬӦ�Tx{�1�|e��u��;u;�Z�o��;?�|��G���Fz�6��m��婗�6*�T@.�aRk�C��^!��M[�k/��*�7L��%��F��klg\qr���@1`@��W��qK��%��@.�z8q�\�,�넋��u��7�K]r�voBl=p/��}�=}~w�L�L�n�:�|#�ّ�A����QY�f.�*�!�����:�i��Z���cp� _(Bfi
&W.0�=�.s��9��9WloC�����Rƒ��Q�*G���8�@.�m�iW��j������DC`
3�s̡��ߥ���`�7g�ۖu�X-�7u:�ܓ#�E�ڠ�Bcp�=ftɫkx��z��+�$��B��2�k��<���T~�Ke��J��(��g��՗ �� 	؍��A��_P�+����d[I�qU	��ۖ���vK�_�o��L��Q�d����J�L��`�@�i���E��4��)T�:2�͕޶=<	�����ͱg_�.�ؾ�v#=C�>����(����NJ^�5�c@ᱸ����Q�xL�[�ՉO��P��PR�%1�̋�'��َ�
0D��j��mݹ@M-���"�֘Ӌ)d,9'�����B��6~��!��՛o����5|��¥�z,j�d��	!�&�ٕ�����@q�kU㻤��\��\�[Q�<K�=�ퟐZ�"��|G��?�!�~v�j�n�5�ӞgL�&��H�U�CY�4�bOh��<k�[�
+�N��L�+��|^�$�{i t�P�c��ݛ��M�cϵ�K����qkD�Af�����ܯċ��$/әzF#�[�
�Zl��F�^�8oCW���b{}~̋7K݇��t_W��}(�L��_��p�	%�/�w�vs��8�P[�5r� ���y:.*`�}(���d43`3��`vt�.D��J;\�jI�G[H���S�p��ʜ�<�Q�I��Ê���;hx� �,����
��C�#��8G�L��f�t��N��m(d3GnЎ��^��)���=͜�4�ȁ��C�R"m�&`?k����$mȥ�
�,�@e�6
�u�E�V�YV�ۚQ��,�Ϥ�€p.�2�
���D���m�TvV�(�z]�$&m�5��>o_�jx�
�_�XN�=қ�59�'*��|9Ɓ5��U7�:x�T���z�����V��.���\���Ԯ�W��
z��k��9B�O�7�]�MiU�����
o_I|^��^��z4��0��C�nU�n��yq�>w�F�,���$�Zp�ό��I�)�F�����G�׆S]����+3��8�nk���(��i8�Y�[��$�V�nj/�:T�����+%�<�\�@��8L���ٍum�����:$8�^�����<�p��q�X�a(jTjH��ײ�hUA,;G
�aJ��ɕ2~΁a������.8�����%��Zy&ُ��
N{+o&q���px�sB������J�
�Vo�C�P ��“d�1�,>�5�Aq���)A��ȸ:R֔U9�>�����VL���G����Op|_ٵ*޷c���W]IԎ�Ѱ�<���T��e�m����iW�����v�Xq0eLI'��6
!gcY�� (i�6�*�S���a�,XcZp4��C'n�Ѐ��[B6h��r����\��:�:F��Nc�$�l�v�e�ɺ�����p�ei
}�P����y�������rXjX��^�Z/L&�
�}|
��´��^�x\��J�E �E���w1!L3����������}���1�nM�p�}uAq��օq�?T��eP�����*@�X�l.krey�?s0��6�ש6H�l��*@��R�5�C�w'�(<�j[�Sj��Q-�a�=��A2w�p>��8� ��9��,��Ӵ{@��>�����S�;��~m�����po�&�o���P�͙%�c"��& J~���ݔ�т��s,�}� {3��4�e+,�l�#�5(J��y����*�9@i���V�
�20��W�mpVC�)��(K����(Ni���^�CŔ�ǣ)�!��
�!B�Q�/���_�0E�\9F��./C�&�d������ծ�4�zh+��#w�3_��+���ڧ^8�/�R���#ɵz���T�Y�wX)g���ϭ�/Y��m)8g����IAYL�L����$�3%���}Y2��y�-D�4((ښ�ʻ0��e��¼.WU���%ؐ�.��9�RB�`=�,���yF��2x�0rr�rc�e�-k-h�Ӄ	�7�ќX�/1o����((T�ID]q �n���^����v��)sK���
L|{�y�\Ν�?^�V������cZ|ɛW���j�Uٰ�l��.�^=ۀ�U���q�U.V�6\(-W\�\��m
�C
�8�v�|�8)��rTy�p�U�Q������S&g�`���\r������xR?<�Ж~�0�g�=1��
�I��!��҆��!\���q���T`��W��K��%���6�+D"r����B�
hK֏�(�ܕ��H�9� �'���9x(�9��-�hg~�C��Oi�Œ�K��b�q���F}IS���ce��b�I<����˶����^@:���7b�!�e���x��{����� 0��@�<���T>��Cn�I�̔Q�
DO�.>G���\��m#��B����sn
)Ļ����Ѕ9����CySF�D{&�U*�Mӄ��ҐB�Z~�ݧr�פ6��<��}%��^[s��ʾ�ɾ��2�}��`��������k=~t���,�%��sޡ�[N��j
��)��v��M|=C���r�����վ�1�!H;���P|�U�{�"���g�]���=I!���t�;x�^W��¤
/�p���Eח�o���)��U	E�ϑ�P!��4c�w2:�PM
��}pR�s�\������|��]\`�t�����G�Yr�.Rb|�F�O��uw�3�_C�J<���
x_����v���2��<M�R�KW�׾��,�f�
��s�{ek���$'O�a-�I�_�-�oބ�6�5�˷m�CUd���
��25�7ޱm�x�+[
M���o+�d�r"��hث��^(,��u/p�|r8|J��x��wZ�T����8.K�Ct�����؍al!}�j��<
Ž`�ᱥ��-ԺZ�+��" ��V����"?��†i���MA�7���(��x9~���y9�nF��,�)�b�2��S���^�����C���d�У�Ί�(��zB�!㙪w��\[��O�;�"2��$� 8��G�	��E
��6
��
!��)+&��T��5
~�ro��שmw�0H�*o�(V�t\<L(���½kf���OZ� �s
�q�־~��v�`���m�\�tl#;dw�ts\��Ǽ���C���z3����#��x�);��5H����y�6H����i`
�<9=�<�L�v<u^S����
e��tD����I2��*@4ܖ����6�
MmVږ_�GBD������,��(�>9,�ڇ\[�^�5SO��oR�9���#�L�W*��y_~�&~�(;*��l��BAi�k�lC� PD�ָ�)EP��H�sō��mp�y�Ǽ5�T�g�q��9��
��4.�ӄ=ࡄ��th`;��	0�qk�#�B�~Y6�C�̔�a:P:m+ns�)��XbI��->mbxr����7{�¹�Jt��N�\��*Q<�����`�<���T�i���`�D�H�����]�$ ̠
���ӛO&UjA��6❢n02y��gjH?��n�}�hq��-��XwnI~:�8��J4Ϭ�MJ3k�\���&�j#࢝�yn�:��a]��}�w�Mk���B���m�K'j�H��~��О�4�Z��
�T�~@�0���L�k��B�J����߹Plk�f��� WM�0��C�tw��*&N'[r�� ��Ẏ��2��d�����6!�ZRili�E�V[��y�
�5rv�%�==I�[k��aլc2fh(?Օ]3�M&@�y�E�k%��8��"�`Y	����]�j3�<s�An���O_���`�
ܬ+��	\��\�y�'�$.0�h��(ci}2/k��1��HXrp�$�BU���!{�f�!k��V���a,������n��1�3kc���y<����(me�ڛ�O{���8d���D|��n��@lu!�z��+���:�h]��4�>g�_*��ׁϱ�M�_r_�Y�q����9\��=#W�M���U�$^�@b���=d��(�]n��P,�aV��oD�i�m����H��=/�.�7�21���%�8�p)~�-ɹY��=�"��J�i��{��Cs>���$A����h���Dcp����v��m�w{{Q��$�e�\Չcp&n�����D�Q�ɓ^�6��9+�9�݂7.�g���^W���č�w�l�=F�
G��ǢC+�%��,��e�~���&����EC����Va���*�xr�!�*���2c�b��s5ϋ��0����Hq]#	��p�0YWl�YD�K3�.� ��^-V���ik�z��2-��i�R��u�X{'"	��WY��q��1@i�K�~@!�(5don��h�?���Pg�R��rUK=�+�<�\��+�3���wv���3l�O|X-��Z�)K��Z�x�!����ӰjaW~<?������J���զ'���JO����7��ؔ��Z=9l�W���d�
T�O=Fr%�~UX݋H�/�?�(�۾a.�(��-�Q~�;�˝���Ƣ�P�EL�D�����
�.V�&:q��O�k�/N��rYw�E	d�mĊbq��
�;dD�z$��D$�q�]Y�����|����f+!�:�<�s~�eN�t���9�EfB�ٕ]$6�̞�c#�r
�s�!�D?�V^�p!�|(B$N��c��J�yZ�}R�p�y*O�<�?(%�� n��p�pe��zw�]���!��/)7'���5��V	��1V_�1Zt>3*�e1ç
"-��]���	��=?��{,�^m)%����g�KՋY�$�J�drd�	����`B6�3>���zvY�u'����8���"���m�F�1�/�"����{��F;���l�p��?N�&e'�΀��aĐ�<����EUX��f0�C����"�Pv���)R4�HH��^�xO-��?����d�C�PXj����K�v������S�x�����&T�����)�K_W���oK��x��e��{���H�),�+#�Ԅ1�o.
���$�5�% !s����L��y|!�'[�&��wfI9�ʏ��fH�g^���7E|'��T���[�n��"H�xDZ��)�,�M��-��H�dk���u��&|!δ�7AR��g��
/�v/�>�W�'w^S�}f�vi��wY�U�	.��8$h��`#�}U�e�*��$��Z����b��˲$~�xu�]"���Z߅��I�U����\F�+S�kPB
{F��g�;�I�v��%�
�sý��9�VC��;��T�*�[l5��ع�Sj
i7�Q�% �=��Nl�QK��X!,� �K]	���+�v�n��k�6.�+䢨�V6�0�swM��-y0\<���E�uN!��M3�`�̥�GE�����Q���+g)��,؟��v��Gu5��6�<s"��r��%,��޻ �Bף�<�y��g\}s��u"��*����)^�T�љ�3<�w�߮�Y�d�����o�(x%iwѱ0e�1.X�zNx�k](�v.�6a>��7Lh.�-���²
�����V��_�M�k�@�4�5��>�f�ӊ—�\�����TS~��^/B�aܴ���馈��,�/�C|ֽ/9q�R�yБ�y��V�Y|�ޖ��:�k��g���L��6��c�V�Y16%��� 
�k����}/gt���٢FYz���"Z�l�� E��<�V�k?)��_؍w8���O�-�̵')�)X����@��Y�R�a�sH8(	C��ZR����Fu�
�>pe�P�]�w���Q�q��p�e&
O��H�^~��0p���,�̟�B���n�1��P�^$�����]�b�}&����e'�#�1��/��
��Sy*O�#+A+A�PA^���V"�,�)�T�-���
#��p�7Ž�ԛ�
�������$�>�*hB�P�0��{���ג�W"E{vW��H%�?�r�ګ*��y_����*�#����w0T����.Q��AǙ�P�m�O;ϔ��ug\��'a
��*lr���VV��͂q̱y� T�(j-u<x8��3+�<���WqN��bOغ.�Ը�E/_�Ը�#߇��宿|uo1�/_�rdM5̕X������VK�����H��a��	t��-� �,�����8��wϞ�ǃY�ݏ8��0%&
�������E��8hj�Y#Nﵨ)�7��n퀊Rx��n.I��`�8��9�/	S�7^�S��n�
���SrQEf����7�
l���(�EH��q)�9ٌi����d�TD4�����;h�&�{Y8�`iKp��A�V�D�3��߮~�G�����We�����	 5�V~>�@���n�y����bN#���Y{CPf����e_2tՀ�6Q��Q}�vt|�TC(�aE<��Pf�q����| w�,�E��RFc(мL���G���V�+�4�a�$�ڇ+fF��1���=ra�˱f���i�c���*��	������_-qw�i,�4�!=F�{0c���b���;��W��+�*k";�e�R��L�:��&��<�%a��[gg��6TV���X��N�)�9��=�㰌'BnV\�o�ڠ;�"��x�I��f0,E�Pk��A�Z2d)�}�0XP�X��%Q�J���[�v�,�i9�d,nX����Z'��J*��(���ԠS�7���.�6�CL�s����}M���B(�2G���^XF'}Yi�LtӖ����R��n����,D�t�wY�����q�|/��?�uh`aYR�Έi�{�d@����5�P�ƥ��e�.�߳'�Vc'm~UA��˒��[��u4<�8�6���ǽ��mR~'NX�*�\��{�d����^��z�/_���`��5��zw�5���B����T>��_IҧXc�#��8����ӱ/��������������x���rh���y�}M��d� h�;N�aՅ���IBL����3�֖�>������w�p�j®:�1H\�%�zls�\P�}U#UL��dX;vճ�L�{e��Y�L��l}����YB_�XXt�b.+�tu�\ic9E�IV��Sy*O��+U94�Q� V�y[%1�8�aJ��AS�R)JZ�RG�)��Q�ѧ��_�P
�`�$��Ԑ�ρ"`̣.?A�	U��}��M,Nu�u�����V�*e�7
��t>�>ƺ6i{�)��3n��~�<�@��q�̽�,���{�\�uǤ�INpS*�/7����E�y~5�v����k��fuu�!�Fr��K����Y���7�_~��U6��xw��
m"e�PY��j|�D�qAb^
���>�P&�m���]���Y��}��N���{X�Dr�Djۛ˴��[�I��Y�vѲ��R*E�]v���'�o������]������6�#�U���]r8RF��U~D"�=O%pܮ%u۳6��L�s�P��-t� ��¢k�Y�?x�vdw��PR�.4a�!,�y���&>'��T�Hܕ�*L[M�fJ̵�������]꽼�e��T9&���Lk��8A�+Ux�O/l�_�@knz��v�B�"\�`��G��X@Ex��:J�I��18��&��E,;��3���N��R���/�P6X�+��x���y�l8ǝS���(��w�<�!���W#�0j��i�*k��"��\2�>A��B3>P�8�b���PJbk�Jݫa��o���p�����1��/�k%��8���?����Ǒ��]i�v�?�����1��eH�$�D1��uE����_V$B^�w�0_���/�)���\*�$o����]�����h"X�N��t���Y"�h��KY��N��X�ā)'!���Erd�4����'����Dϩ�h�)��؟Ò����[�
�l��;x�>u�n�Q僸���c,��^P����t�7��mݟ�h#��=���U������=jlc��4+��ܺ� 2���=C;
!V��=���sQ�ʎ�$��F݃��GV�n:,r���{��0�����OR�ߎ��
��j��+����`�5�)*mC�G�+޸���a��
�'�/�86(�+�[y�Bv�F�EhK�����,G�)�H=H|Đ-P���d�$��.�8����0-�O!��
$B�һ��D�1�C�#[��'����i|�������q�5��9��ϟ?/��Iǹ?�6KD�D�&��%���߁�	�y�o�+!���bà��\�0�ВӞ���{|,k��"E��Xn�K
�6(��Ƒ,��2�+��C��b�����p��̛'R1�!�$�:��G	�cO���*@`2'AW�A��/��
�(:��]���T��k���~G��gϞ5
�Sy|r���38
_@<�?��w:#�$�&�2�"��B��B�$��;�1���Z4�R2��ei\����I���ыiҵ�l�hh���W����J���y�5j����ֳ���=7��6���lë5P��l<�-�(����5�9I'^�mo�qke����C1����C�>�=�����Q��an�<�o0���[)���w�}��{�=
��`.��)qm�)s''�5/���h1g/u�]�!,;�R�����`2��	S�Z��Q��w��PZC	�Vɗ�����j̷���8��t3�q�`�ŭN�#
�n��/�X�%<
21��Ya��0�uͱoh�����S�v��'��E�Y�8A���>���M0���Z���h�7��vw:�[g91�Jx)6��јf@�[^���"�N���@���P����3,ڟ�Y���F�s��.�-����$��[q^��x�E��$�ƣ�! �ce]��k!�^Z��O�|q�f/�v1���uS�j<�-����D�rv7�lΛ��e��\P�?����a�
����*.T�g+�I�/�E�zN�B^�bVf]����WK~<x,rr��J��� ָ�����U�%L��0x6�����?�P�r1qI��P�ɒ�>{��Eawr�5kD���_���J���s4�>�{w�q���U�>q4ݍ������I�&-Q6u
wdy=�5k�zf�?��Y�h���ٱG#q��F�D]�d��H��C�C�A�Iw���ޫ���#�	��
��W�*+3++32��غ};��I��<�g�P�x_�G$�\�8p4fV��*��]ꙏo���-˯���z���.4=:/�8�,�=��.zu��[�6U�yV��V�_P
�z����n���a\�~�2�6i���8�Mk��i����3���2��ֈ���:Ut�(�ji�׺hL4��Z����G�Y58cͷ�b�ɣk�!I^���v�cD�É�u�ޢ��d���CѰ�X�J��ts֚D������4��5Pyգ�I��D�l�5_9G��ɼF��2�pJ>��X��(�~���k��o#4&8�X�ަxKsc���\:�~� ��lݟE,#G�4ʱ���� �EO�1�����pF�\�a���
�ҹ��rh8�p��Y��7`��-�!2�2@5���k���%�1h����|X_.�9���<]��y�(�r
^P�,�(lO������+׻�^���v"�������W���y���S��h�yM�Dt��A����M��)a�pl�@W��9	��m�>��w؁�3l�����<�*!j�;jョ
b��qdc���J����P��Yh�=]9��{r�}���46/���Z�U��4Oc�q���M��9,`�Sq��[n���e�1����|b%�2�l�E�$��9P|:�i���f)�$)���`cD�����\��ꏶ<(���Do�7/��
*�M�W�r��J;D;nUM�`����mJ� ��A	3��U���-t�g/�'G�5�uɪP��Ҧ��FCF��K��\�:,�}O���~�ax�>�ߩ=;w�K.z6\|�����#G��^��+�g�O��F�n����7���~|�=��_}�kp��{N�
�|��6-W_{=|�����ðo�^�����={�X��W~���>�Lx�K^̆�ǒ/}���O|
�ƛ^?�7�|�K_����g��o{+�w�Y�,@E�����z�d �݄/���m���f��X��G�D��+V;]70�g3x`�25`E힆�3<l.��/�~�x�<���s,s�C%��뛠�ܻ�tE�D�*bu>j�FŚ�X\]cՍFF-�<�.�û���A�SX�K��4~]mq
=�TG�OQ���+N��XU��v���� U�W�7��v�n�U7��_2��;����@d�℃��8t���9!���n0i(l���]�>���[��E6�=d;�`��l��]$*�Y?sŞ���cp���NnP��ۀI�K����V<������Ͼ6�Goc5�.�@��q��h�T���l<ģ,=����� �]~�ܨ�o�j�nx�R�HUpԻ+�	�{X�渹�y�t�is:*w�2��x�X�e_u�k�6B���Tp�B�!ZVx
��^��AN9$�U���
���Yʫ#�r��#Ƽ3Ԛ�
j�H=#޵`vå�"-R�F�^)�c1�A�O�j���2��V�
%���4#�7n�����sP+�̠X�z�S���n�<P0B�[#0��J����1��Ei+�2�xG�h�i�L�I߇qQ�c�Q�(z�%�l�|��]��U�?l�i׼��B"��8U����G�Ux�o%"��JQ�Q�����t4����5z�����Ί�-�ǽ"��/��hsR5+���W޻�c�<s��J����H��/>^|=���z_+\DŽ�˻�]��|b=4�8g��Tr���l)}����aE�垸T��>�xw�^Dw#˹�EQ���Qp������6����4j&}-<�K=/��[�<5B]�u,��ƚ������߯���Q���'��j�L$��C������K��
��)��EcO�a�!���Vz�r��5�q�
�u�M)��Pg3�ɞ��n��@ʑiLC4B�e�u�cʜ`,��r����k�r4���E��륿z]?�|���(	��8��M�<cc:r?��7�b爕�9�����\�m�p�
���?�HQúR��2�'&�"�)	L
��}?<��T�=�F�0hl�m��(��g�#4k\WfBsHm�g+�?B
�PD��>�1hkN#��U��R�E�=�]�k?�E�Qţ�l�J��@o�ޠ�lu]���4.��K��9ޗEͩ���EZ�ȣ:��nY��n���϶�h��\����
��	����c�}����𲹽S���B��C�yc�B-RT�Fh����P�"O��:���3����R�0��:��
~	�n�^!��
��\Wt䨃�dy�L�HIbm6-!�LI��=x&K>�m�\j�.i` �>	�ѡD��j������&��\1)�妽v~��d��>��[/�&s@��J\��DB�'M�
>�C�����'��w�	�߇o^s-|7B�M�O�x@���V��A��g��?�L�z�>���{��`��{a붭�կ_��?�����~ȭ��	��+�"߹�v�����s_�2<���~�6���S��>�$1%ҧ�R�
Q(y�SJE���u~�1�k�\Q�ayc��Y��'Ur(�onDS�]�܍{aX�O��Nl����j��m%Ӷ(rE����}L��K�|��E�K9�l������a�s
�J?��u�T�"���9��I��j߉P*]a��.���h��V;�aUǭ:���]�4��,��£��$�#�����6UU����4D"P�n��<.0��������6�(�$���J1�)�VlT�c�~;|�0mr	hi��y)ۦ��3�{�},T+�ޝ�+(�Ԝ��ޫ܁���ĩ��"�Q�=j�DL�Uxk�}`,<�ӆ<o��ճ8�3��F.(nLx�k�A0�\����GF2�A��$�i��!B�F�:��}��-0�bSB2�Vˆ�~���l��t�%�I��Q���<eg��7�h�:���k�=��H��O[k��˃��!��x.<�"V##/�{$�lz�:�W=c�w�o�2�AՍ�q�W�G�$�lلK�h�!c~�=lm]�y��a!�էǔq;a�l�s�)dLg#=o}#F��2��
h�h���h�
�B��{Aq�S@A��:��mҼ�׈�G�ɺG+E=�a�J����g$����qTgٷJ�H�ˉ����>~ �[��|I��`��ƻ޼�{����lo���k_��t����N�v�v��G8�}���t����|�y���S���si�}M��`E��QɀOQ}���N%�=����q�+0�,&%>���_
�J�l���-1���<����|���⣼��j�������Dg�.����o�8���:R�ڻ���zj��}A)�\�B��
���١͚��0�-x_���{I�Rݿ��(��5�� ���7�Ze�0xT�Z�u�]�+����Q7LU���:-�%F�lk����sg
���_�G�ѧ� Qe\g6�_C
O:��)�Z��.�K��a/?؃�L"
2P��{����F��m�/�{��<宒�h�y�
�>�0��@Z�h��yX[oac�:S��Q��@nؐOs5�E�N�8�����5>��X�� �w��&=�����c�I�a�;ɵ'�D����w^{[�(���g|o��i^e�xM��"�Օ#g�P�p���ۖ
�2�9�C�K�s��CM��S�7�l�w�-�-�CTf܏�'Dk6�Kk"}��$����u'מ�e����wX���@(��t��ZG���w(��e�&(�ZɕAs��}��E3}�m	������ګm]/4M��X���EDzC��Þ�L�(b�K���\��j��P�351�Cݙ��4�ɬX��-I���|� �G���X%�E9���k���N����
�+V���<���r�j�����>��S����l���)��U�V/�?��=��8
SI0..�L�Եg��M�j��TQIvb}��%�pd�U
-a�Lc]ӱd(Li��6��
��|k�fJ�Ҍ"c�A��"��%/����~�7~w0X_
^p>|���ݧ������_����ܳφSw�/}�k�߃p�Yg�e�\ē̎�8���k�u=��u�`���
��{)�x�	|��`(�jXl.����=�_�{��~�ռ����}��C��ׯ�zm�3�8��T6��S{�k�$Z�$��8x��|�!�����s晧���>���s�!x�%r$�m����g���x�!uܳ{7�~���7��w�
{N=��8a���λ�������oz���o���y-|�3��[o��#5��*��ݧ�g_p.��C��o�4�}����"�iP���F�:,�;w�w��]��
7���|3l�i�{�%p҉'V�����W�v�|������
g�Q�|��k0�~G.��B�2��k������Ï�y�3�ym6��Sl%�EX�������̥�����Nפ�t����Z4��wܡ�A�M�0ob�0/[�l��14T�3Ý.ҽ�+��1�~@�t	 #�XQ4zI�h���?�6�tx<r�g�+�E��*D<�lы�K9ZY�K�~������W�h�9Бq�&EV�s��#	W��*����G+���.���ue���ϼZ �JB9f:��d$��FK����kheRXu/	x�:J���r��o���O)!9���k՛�6�t%;����#��������y)��&L�IZ}��2��n^�3,��z��4lއ�i�DA����-�;}D��3�E:<��S7=S;�~�����0S?�OPm^�cLjo�1�'�MV���jc��r���Pn�A#~����/��sҟ��(^?i���F�#Ýۯ̳JZ�R�G���˨�&����d�ے11�"8ʌ���F��ѕ��V�	�
�P��^�+�R_��ǿ�
`k�3�gk�-	}Q��T��7�ݓƨQ0�ul��\����u�i�X�f�S'��ƌ��z���F���
�1N}d�(|#iD�G~Q_dd|�1���l�ɳ��G�g%���=*�M2dҵ�~� �z�Z�d�]�9eJ�s;Z��vm�k-�XȻlpA�5d�h̺ѰO����e�U�@���}���-M�՟��|�B"Hh���n۶U�]���>�DWh�F;�FH4�����o
�tʩ�I�`ԿdH}O�~�9��#Fb�;O���Q��d�D�]����A��%�&c;{8�J^<�}˜�*��(����Q+cN�㋝�e�^�Z����Q�sD�����_~��%��h
'�:d>o��ͪ�y�W����$��b/i}[�ݱ��i��R*c����0Ӈ�}��e�u͓��m�6G��5p��T��`�CA��6�)�8 ��n��u�[DD��-9=Թ��U�;����}+2�u
��1����C�G�P�j�K���V�,z��#�K����S�u:��b��-@�N%X�M��jX��� ��H��jB�`Z�F����~DH�-�QO���g9'�I�ug���hu����L��5W���/-|�oDg}Z#>��������l(W��^��=�ϭ�Q�2�Zo�I�`�%��y�A[�t-3�U�C��[�w����8^M���Nl[M�Kv,���R�H�?S�OZ��k���?���g��s�Jq�ɹ9�@8P.�j��M�V֚:��΋�G����:�9ʯk�! ��84uI�N'c��i�\)(O����w��V󨠂2�P:G�}GXR�-+�����A!�(�l�l1/�$�.M]����)m�r�$����6�B��m���<�^�;��b��$!RU��C�Ŵ����4�Ș��@L�%U,^#[+��(�W�5�H�EqL:x&�\(�=�VT�a�&��h�����(Օ+�b���^�AK��;jm��XP�.�Jj��Փ왁mZ�ů:15�d��O��BM^�<� ���$6D�ٟ^����M��>���~�-�c�6x��n�?����ӟ�<��5��+^�B�ħ?��m���6p�:�w�y\7����F����L�E���/���7��'������v���>�%x�^�`̇��cp�7�i{Ne�"��zǏ��cj�Q��6ܩ
wO��/|e(gR^��W—��
n; �t���-��+?���0��<�u�
��/~	N۷����P�����
��d�h2_|�q��_���yp��y��=<��ӟ���g��)'���d����׾�A����F��'?�xɋ^�}��@�Nx�?��	��t�������������8�~����l�Ye9���p�wn��o�6�s�֭����:����ۿ�����A?*�u��)�>�����n�uh�i��L�'�G�qyAڸ/"������7�8؀iǂ杭�g���|3�ۮ�w
yC�6I�i7�m�M���nC	��f����H["1(����G
�Cü �z��o`����biu�d���)G?OQ����2>˞p���.+D�k�{��� |Wr�5�rՑQ�V
\]�c�� �9Q\�7���N�J~�t�
�EG��!�BgC�/1�R}�І�ƌ���d,,�(d�{�3��z&m�}3�u�`�,��D�_[��E��Z3�i�aހ6b\�:�o|�J�m��1_��xEM��
�m��������|�4Wr�
�s����������w7�Bw�ǖ��>j�e����h���͡K��v��?��=���Eĕ��Ks��G�a�>+�ʪ�|Ê�ןӪ��MK���]���F_�z�e��T7X!l�+陥�+ע��(�F4�&_߯v�5�Њg
����WF��x��g�'}D]x,Q{��N����a��t0�p�r��k�]�T�ܵ�{�"j����{4�y��Kr�Q���-��u٫и�0�uJK�Fg:��)
&P0��Ԧ.(2�#_|G:v|k�8�ި����Q�絁�S�XG��֨e�����=S�-�yP�9�~K�
�]lm*��.����z�^��l���h6t���'���Du�Ce��h�k�"l�h�'��m�qz0���+$�>��9�g�h��F-����:A���.)�q2P�[dtX��F�L�3��n�����7���ml\_F��1|ܦ��.,�;eV����Vgע��ڱ���q��Gn���(`��:�A�q�WL��X��S5y��Pf�tj]#%)�n#���g�q�ּe�?��G��]Sh�1�b�-g�T�@��z�Q�|�����ܝS,a8;�4��5J�D������Ay]��+f��(�у�m0�a`��̀��ML��u}~S�W�D�-��ޒY�8�d�����Z�S�f��8gɂ�m��B{����
5l�<��mc���"0��&���N�?X��ƹ���t���������h�ž�8����"��G�/�jwEuF��{tJ�E's����<����t�:`�ܬ6;f�-;�Xru3�s{(�$�8�q���Rm$'ǂ6�E�S�(2D��hv������KkC��c�Kߠ���J2x�%��
p�Өթh����{
�F�g�+�Z��{aT�5Ju���ѫ�&�3�	�}J���T7z1[�W!�98�u�X���E�ޖ�ܦ�J)���-ob8/jdW�I:^~��"cKp���������9�e���el*̱�,�w���\]���C�nbBh�5���b���<,�0%c��]�>������x�&Þ*%��ǹ��-zDBl��!Ϧ��Ȝ-��Ǿ�=rh0��#�f�{���/�<��X$4�P�)��8߼�[�c���{�i��s�
Z�l��x�K_4
_��}�6&S���=?�w��~��O��^�r����0�Mp޹g�5�!��.(���3O�7���p�M7s]:�^p��ƛ�?�/�'?t��!�M�\|g(�o��a��|�_�vP���zhh�Ai�p.E��B�=��v�O���9_���a���[�`�}�r���B�H��m۶�Bq�P���w�᪫�/��
���߼�8�M7��m�2˿ј!P��L�ħ?�^bozݫ��dx�/���*�+,���gᜳ�/��Lo�{�~O��%�����w
<���p�ͷ�����b�x��1W\�|8mL��}������F@� �O�g?
'�t�ʻ��q��΀��r|ILж��B���f��������C,�`S��% �8^���3�f���<��W�\���\9n|V�ƿb^a�����V�n46��O�S�z��,;E�ѻ��M/K�-9��
.��(n�*�,�$�"Vo�,���#x���iH�>q�4+�6��D�4��=jwB]ߣ������Դ�<�N���OG���"-�l�ȳ"$Wj�lI�%E��ok�m�Mԕ�l
�y�mٲ��T47�?���1���l[١b��b8G@6���G�F�w`F��͋���i�3ԙg(����C�6�a
5ɳR-5�1*��67垯�v:� �/�>���%�*��w9[�˸P��@�r{����[b��'+�����Ym{��R�^��-5��yH}�F�\��a���;'�YSEU�x^Q6��im�se��VN��h��٩�9N�3����)qc�;��Ku�͇���>�;�L��N�$=<�D!�ה�K?�<_��_0QL��:��zx��18��K�/輤C��n[��l��r�*�]���Ҥ�Z��.����,G�W��y��M�c/d!�o�?1��+|n'>��QCPa�&��70g:m�k��2t��R��;�BDrX=�RP�#GQ�/1
�������N	j97P��5�K��\��f^��^)l����0��֕�j���f(+�K��E�C�Q.}I��2��#��:��BiaN�(������'g�� D��l�T�-���g>�V��8d�8P�lR�>t���slt͔Ƌ��F�e^���>k����b�}�m�:L�2��9_�1~l�N�ilӞ�����zb���x�6�~3��4J�����[2��V��Ԋ��۫���1���l�S���,�C�+�|	l�$L�;��D,�S�3Kx�c���֯�^�g%��eT7o.��?��Q�uںh���+:=*�[�~���4Q��S�E��q��<��(uK�{	�3}B)mitj�6�N�܋au�*�O��zz�ԡ��A�O"'�9������Yg�q@���d���X�	��7�F{u:��Zz�4�.��6�rΉ���Fa�`0�qg�\���s����AG4��]�^�.��5@u����}��<q�;�X�Y^����5��ALy�X'�9�h�8�Fi��V�����Y��NmF}
����G�J=(��0���
ٿ�:9�6�w�
Ǚ:.���6�3��Kđ��Ο�,���;�}�,��7<����{��u�"���r[��,�7�n�/�P)6��K�W��Fh�j5"�W�*�m�3�\g�Y���"ɝ�͊���^r�Gr�تsFL&%M+�”l4�uQ�y�3�_&�j&C��>��[��h*k�%��s}�rt�Đ�h\EWLeC��b��rz�=�XVl���KS�45ո�#:#�]���\�P#@�|��*�ڕ���.B����,Zzp���̀G)�!IH�޶�h��(�1E(�3'��xPrG��\��
�c�{2T��?�(|�S�e0�hB�������O~�����s�㊥�ț��Ͽ�u��pǝws��*d�h���?ӎ��8i�u��g�r0$�	]t><����'*���˃��!����qR󦩻����]'����~�[o����3p��a��u�I��]���C{)���?�8D�p��"j���=>��ϱq����ڱc��"���	$%��뮇o|�Z��x�^�s�=C_m����J�41y�t �"���|�κ���8o�s�s1Ӣ�p�	�D8�,Q����!`�h�h�F��>�PN-���O|�����y�E��X�ĎD�Fc�/>�i�
��;�����h��@���h�q���<\��3t��|��P��;_$���+V�R<�<�n5��h�-̢���/LƇl��
EA6��
j�M��Ǹ_�`�i��;��:��c�N6�RA�h�?���}A�����	h��.��/�U�΋�'!-AU��Q���Q6c�LBm�K�'X��KZ�mο�+l��R��Ʃ����2S�QN~�(gW,�cqXY���Z�u�ej�$eښ�\��fQ��AtEܔ�8�
���+��))8~�K�
Vи�M2$ʜJ��L/5̥۶�l& ��q]�Wo,K2NZ7ȁ��G\��"H�C�aZ�~���)�qR

l�*��6����ƖE��C�r����Ծa#���1�A3���}I���%�z<v��ɼl�|��;�kX�@��㘽DmS�#�yR�s=rt\�����a)�-[�R�>��#L�Ac��n�rM�f�R�.aړ�M{L��W��ɘi>��V�ɋG�����E��R�6���}���A�_��ѿy��s����e�������	��&��M�6�ڦcL��;x�O���)��c�p��{�j�K��f��~�l��ζ��*j!�Vg���N򖑌z\��V����<�!Ve�a��}��礮MPZ5:f���H�<w}�y�X�"f�K�a#N˞�L)ӡDش%*o&IM�y�a�yA�5¸2������F�#����G6��5�xrf1'j�s��@
��9ָl��X��/���a}؄GtP��(��Q�R�7Yъ7��2@�����kܢ�8��)���Iؠ�g*F�0���bD�K�Ss�#a��}��l8�����V���6o4�i��5�҆<��g��_���rZ~Jk+��.�o�x˓���o[,0Zo
:�Ç]ǰ�E�x0�.H�j�v�j���AX�6u�j|:�q����B��z��%��'�V��N�
솝���-���`Dp�!{�4Ez���I����k��WvJ1�٩�}O2�e[��e<��\�%�]�C5����9���j��9I��F�R�m��GlPn�^TT&[��{�w���	Ǜ��}�^b�y���H�I�D����Y�Q�c���9����`��a�[dM�I�J<Kxz~���)P�Qʝ�Y��><d�����p}D�;��o�>�wQ�f�;쭴<)�#y�8�������b�#�3*���r=��҄��`�ЧA�O
�
<�w��Q����sn�Ȩ?�K}[�9RA�E}`c\�y�O{H���3���c\��6��Y�������K�k_�;6���G�4Ш~��(OO���.���z��<-4]��h�s]���\%yL���*�gb�"��E#G0���<JU�1J[@y\�h�R�G������4�����m�H��=�7���‶�(�5���}YB
ZOj_�Jc��S�l��NR�D��	��\�hS�\��G쾡�F�
T˞��_6g��-DV�&�ҩA�*l<����@C���|�T�����S��sx1v^1_���|�AKC/�/
V�b��5�'X(GÅ�ǴUN|��+_��y�da�6}��-[�}5��E����GRеo{뛪��޾m+��!��]|ʮ]�x��8�h�`h�������|��ӟ�<p~�ͯ����������]u��p���g��?�	��	'l���ox�����&���Z��I���4�<p�A�ݻO����9�I�o�
/��g�q�u�=���/?��=��T=��,�b@�-�/��:�tx�?̔i��0׼j���0�=�f/�+�֞�[(�wH�[����a�^p�9��B����O�/��p�������hr�w��?�E�p�.��|��_|£YHH�qůi�
��=nA7�i�ӵ�kF="������P2	�d=E��z�%A���
�UM/�3K�n�/�͑m�-��
�kRY��̺H��Y�G�qO��͖�X	����2��;�@���<�RVq���;�%���P�[P?�q	c�+Jlp��-գ@}#����A�T�c�P�V����U�~�il��Ւ^�c�a9zI�`|̂p��(��b|0O9()����\���D��	�Q7@ݰ�< �*J��6�{��<�ᣧY��I���\Z ���r�w{x��;�xǛk����]�F�B��l�3OlFRw�W���e�1�{�p8�������c�Oּ��{���D���1_6b6f��{��PR�1͙�&�_�)�6��ii,P$1�=�;�_{�$6�駾�@_�r�s��d��ga����0�0�7��y��ue�F�Y5�a;ֽ�퉮
�Y�$����q-��JCf�F=�{[�%ה5J=`uT��B�	��ˊ6��ϬMI�ߝTΨ��OF�t�����[9�i�����_i�B���K�.�6ר�Ћ�D�!�:��X�!��iFS��QC=��m[�Z���3�A�#���Yl���ՈF��]�H��i6��~�7H���I�4�X�7�	�~f������gm2�K��4�6ַ�9�ЩdDj�jK�|�37���WJ�Fi�$\��S�(궜X�U�/68j�P]i�2�$����eB���l�Z(U�(�X�oo��ӛ`^B|��]��5v��ml�d�z�5߫�w���l��4'��/�LqKM�ȼMs5-m��uw�=�+_J?M(rh4,�x�Ok��L(/�3�h,�":l?�FL�\���#�`x��M쳃3�uiɝ�ݢc�@d}�`��I-�mM,i����؋X�����B����E˓ÏY�.P]�(�,gP�w����OQ�*�Fc%A��F<��N*L���Q
�sL��G�|�Y��d6Mq�!ˁ��gq�Q
E;'"dP#,:�!+�,AɄ�SF4�P���!4^gi��u
8���\�h���z��
QzI�i�x�_�k�sa#ǡ��ݶ.�8@�~�@��ڧ<W)��b@���C�����(�h��,�g�LԄ��ʚ����i� �LkE��5V�N#fl2�'S��8�@��g/}�k��!�QW,B0A/���Ѐ�)�B�E��F+�?ѯ�~���ӌ�J�p�T_[�9�0�\c�gp�\�#�#���yK�q�5q̶�Y�	�#�2�g�lU����������������� LFB���s�OQ51�	cA��
 �|u�sT�IJ~a�"ꥋ������_�r�h9\.���dW!��v}�@�˙p�q��ч���N>n��UA�A;���'���@T,xÿ��7Ͱ�#�C��h�m��V�&��6W�
2Ԅ<�ȣ��{��Ԕ���B�n��;�my�
7�������w���?���ފh����%$6!��u��Oɧ)�����x|��O���7s�;)o�
B5��!x��ë_�2��7���y�l[}�!����	q��P�	Jh���}.��B�Қo.�s�az������~Sn�Rcx˓��I�,��C�N����r���o|s���A�;�l��!��ݻw1hEޜ���gCti7���fɽ�aO��O:���跳@�_����ν�[���Ͽ��?�П:<��z�� ���s�9��:*CB_G���:���˟���
c�^����3y`��k^�R8}��� Bew�淜����+� 'z?�g���q)f,�#ύ��B�����W�fMω�%6g6G�F��L�Ւᴢ��36T��Q�X�\
z�m4�K�aEq.tAB��&~V%�s]/ Ii���W%��kh.�F)� �.E<�|�RE\6�� }�a<.�-��6�R2���
��c�6��$gY�i+�ڢ����,oĚ�4 ���Vv���.���@���!����R[�KDz�7ի6٦��F��[��~鷲ꞡ0�y��%�н��
�Z�?)�O�+q4��Q<�\$��I-�Ecx��?..�Q�ˉC�A��;�N1��R��;oV�������^��&�T�}�t�O�P��K�k^q��ӽv�����n�� C�ZWЛI���ZC8ZcY=�ls���*����N�.���b�I�%T�zsJ����/�M�N/�5b7�d�Ҥs5�yuD�ԁ��hc����sL��[��`��P\7���<s�&"���|A�
���^�����6Xa����� �U�M��Z��/!�J���{j2^p��;:��G��3��)�����<�u���}���B���<��P€g�P&���1�	Ge�8�]�������Ft}K��Jlc�5�"�{z��M�2"����X�NE�A8X���\Ƣ�}GqoR:�i�t?Ҩ��`qC�=Q�l(���G�r~3�P���U�8�ͻXgy���8��@���{�q!tC�,�)�����ݜ�b�H���yb����yѹAV|en�[5��l�W.GX��
��B�o�C��{�|m�FhC�'���9��by��`H��W��-ѱ���;M>O��>:�$�!~a�,�.B�?��*@l`���1y��D�m#���pStl���$�1�ك�=�ay�4�
�����o]b�4f�G4*?���4I�c�E�?�<W*9~���ب��埱kl� ̈r4غ$�L��Nm��F�&:F�Q��_��7Z�ޣ-�
��|X�%�i�-֣�m��Sw{�:�@�UObZ�����y[��a���N@<�-�\��Ju]����ݞ�6�#zz��!�1�/�h��w���T���cc�<�?�s��=�1\�������f�v
�����4������T��$�F���s�ѹ>�D$�8�������U�	�Z��d���i�p�e��3�Wћ�WB��Z(�GF��_�]��t� �P���18go^J�9�����G�����u��5C��C��[��SFs��R�3�!z��a3�(��O�t��l��6���)
P/4Z����U����GU*��E�X��}8�sR{䈍�i�tm�gK��}���]�O��T;��6紳�)W�w�|�=ਛ�r�u���\U\_���э�iɑP?�n�Y\��KR!B��)]	�LD6�0���{Z�{��Yl����5>�mGHk�j�Bpv����AV�,a�P%$O��Vj3:���%�[��^����0B�~�$j*9�Z���w�܈Ґ��BA�‡ �G�P�T�+~ �1=%V�~Re�^#��I��N���~�_:
�=唓��o{�_���|����:����{���~q<�ȈE�n�
��;|=)k�P�ͯ��&�w�ʻ�`�7��ܱ�����G�m�4����-��M�*�D�=�|�����Ly/|���x%\t�yd|����K�|�!�Y��@CI���O:	>����g>�Wp��Ax�s.���I(g�����+?�Y������Hp��'r���s*GQ|�K_�+?�Y��rŋ^8�����u�o���9�}�׾~�����~���[o�N۷׽�I�x�[��ӏ���˿�o��=���{N��03���{.��ǯ��\r'i��EEQ��>�g��i�h���	��������H�Q�y�ˏ�<0��aLA0�_^�CLJ�-(�J��y�4%SY�+�.�F>l�CWz��ތ��A=8�WYi��i%��#r*F
���U*���U[ʁ@vPtP�zI��jCY���ڢF�������ğ�R��Nϫ��������U	D�h��7C6+�]��i ̑�D4��+K�0!�{���4E����M�eڈ���wj�č&�m��([���]i\IÆz|=�xXՅ�^�"1��[�(�r .�{��?F�]�څX�!�3��������Iq�Tͨ{C�J劗HI�
����u�Vb��i�C2���1|�
����bTu�]/i��)�̜���d4,�<��}��G�@����t�v����}�jӺ
�:�B;�>�u�dcb��!�@ΰ4�\	OϬ���H��a�z�z�HC��I~��Y��Q�m�P�S�k#5�Wg,<^�|���_���0�z��{Q�A7�6�T�V���5��66��d�Q���~��o�	z�Pjx ��m%"�S
3r��ߤ��1��Az>ռEc�-P�y ���cx-�>T�lc���|���d<��E��\�0�`x��ۛg23KCz�Q����ձ�y�sno.�p�,$y�}=�b�����n@]ߛw}x���J��v#�W��.b7-�K���:w6���ڥ��z2h�3��a
��
��+a���x�|��w�sՃ��G�0�M:	��s��G��P��:�z@/��'�'��Gi�Š�Fw�8��J���#�[-�ͭD�h�Ռ�pP]S���gz�^i��A�sJ��n.�2L���4�G�"���7S[d��E�G\����@��:O	�=gQ郚��ìj4�E?�h^3���qN���{�d�����i ,K�y�c/��F��зDtKH��y���d�΃敝U?ywz�%� �����1��2K�m`{�}����:���`N�6�H��L�{�h�B�t?�O*7&'�FO�쐵D���eFU1�j������k2j����~]ч��FAq`���iR�ns�ٓ��O��Ѡ&'z�gh�xN$�0e-��(���(
(Y�r�	��������F�4�l��y<�3:ot���ac���6�٬e'��%WpB�ѾGp�Ü���Nǃ�S���;M�Q0����uZP}'45֍��m�\����YS�C\���MƹEf8��NG�[�8j�`�~�c��| ,�m������k���X�u^�hE���/�\�ܿ�2��^'�&(�U�+��������g�~�|򎪿����"pt��(����6G,:>���K��LKAKJQm
�k��I��%E�&��i���@z߃@�q�խ?N5�\��ny��[�&rW+3���5�\���/C*�j@{u������6]�����f���_onc��WƼ�{���)�"E|�u�VçrmcCI��YK[�YQ������G{�z)2��.h/�:d�*J;U���E�$���M� 꾒�Z$G߫=�%��mp��(@�
�]7����_ۄ��7��.��|�~MD���<)�3M��{߽�K��m<�PN�� |J�N�_�����7�{�e/zI�����"r/���rrP�-BD�u"����p�?�ƒm[�z���`�Ƞ�;�
��^�����Þݻ��T'����<��Fى֊�N��kzxB6am}kN<��̎���A�f�򡌇d^[���%'E<���y>���==��)�	X{��G8R��-�n���yA�3|�;��Nρ�1Z��72`S�R���#sRD�� ϰ_|ׯ��`����#Ł�4~��B9����E�d}="3������M݋�ՏJtO)�G����g���s4�Ptҿ�v�:��琱�r���~���#�g��i�K~���j	%X��⋠/���n9���7��=/(�Q�0h���S�U�8�
z�(��!6g���M�*Mɑ�_�p!%Lc��N
R����*�gy��x`���˳;��EKpj@�Md�f��T�Ȋ.@��B�1cl���m�z��F�=PSD���<`�pl�t.��%��Uh��,cD��ؐ-�ʳ1���n3�����?�Z����/Ak
�K�r�Z4�b`��Əǂ��Œ)��֥�f�P���6o���TynR�O�N��;���'�HV��9�ڹ�e� @�gnuȔv�X�q�<t��il-dġ��)��6χy���G�d\��mu��h$�,H�i(9��Oa��a�xh����)�0Ս�y�¢M%�Ǟ�Q�:�G��J)j�C]��Z��u^��pԑ�N�!��~��8�N屲�p�R�
�����h���9�+m2��b�s
T�(�Ư���#���^yd���Q�*sH�_S]mw�����múJk��Io#�1p+/�٥{��e��ohWw��9|�
l��}x���'s��1�;��F0��Hn�a��|6)T�"��PG,�aj�֭�!�E��^�t	]'^{=&�Wyi�!��Q�I����/��٩�SQ�#
���D1j�d�&!^���1��,�6IߦW�:|H@(]o����v��8[���>ٚh���A\[kT!<��)�)�ٞ7��BAT�G�g���\��6K}�>��\.����u���e�5^��X[�ZJ��m<����	�Ĥ	�@�{�P'㚞��?�{�a��󜟀�w��\�g��`
�v3�a+�*goS�`^�V��2�Z5��o�͛�,9�_��'���i�l	bx��ʥ>ܯ'��9DZ~�B[%:�\�]��鎴O�wN�6�
�Q
���	�SP��`����}I��6�7G+g-��Ҙ��F咞oF�V
�l���V�32fZ��.9?d��B��V��Ҟ�v�cŨ����\B�m�v^+����Y�t�"�-�ȸ�:{I�}���Pu[��
%㗀�
b���8�ѝrɇ�ʻ��<�=����QƼ�!��cs\�],�z�h���#��D��ec�u#���E��I�AB�[�]K�ޔJo�0B[m���[�S]�U�[Rg}/9_�Y�o��#��{�z��1z)1z��E�4>�پ�i����BH��������AD{>fL�a�=�/{�d\� �< IW5G���zq0��Y�s�*:���j�3���F�l���sv�:	�M�q,j�����l?Q\W]�^	֭u>������F�X��.b'�ȕ�>y4����@��B�<0B���0�f�;Bfj'�N�Y��M��c�ӧ�Rj6ڳ�s�2,q��`��(io��t�CD�DzNZDo���mo��(�|�3��O]��6�����E�a�E
��u�t ����	4����5�E�ʻ)T�2n�dc��O�=�7�Ȓ������gU�aV�}�sY�oe9���|/�R�^��8B�D�Q�T�uk��ۑη���rE�d�ً�w(2bu�K��J�0��C�a�!��l�SuT
0���K�{#m�b5Bg6�{)�a��o�d���{MH�ܷo�+�Y�XL�ƿe�\��^�`����?Z�\��{F��Zh3N�ƒ�sش��&�Y��nc�%�+��ϴF4��d�Θ<�F栗�s�g��(}D���Ʈ�
���FTY�ӏc���"��"J�o��
��e�X��۷�4j'$,�*9C�{�e�8��^��1���	o��"y[��yW$eq���zٮLP�&��hM�e�!ݲO��zC	O+>��ą�$�D�����T�JZPs�X�W�s�nlC�
��|(�6Mf�6�5Y<*C�Z��y�js�z>�sh�ob��
E<X̽�n��o^8V����
b.o+YҴ=��.���z�n��|d�|��mc�1�����"+.���e\ZԡlT��_]YVܤ����gq
��<t����}u����z�T�\˕Ľ
���g�^�1e�V����y��㒔�ؐ��+�5�JH8�&t��h��qrYJ����esi��m��-i�vH7:I���9-㗌�����/��=���UO��_0�On���4��]��XM���s@Ϳ�/;8�PJ��s%=?��?a>m(�0�E6�dC��ͅ%�t�l��h/?�T�(��SF���l;uR���n*B�7j`0CX�S?��;�Y��e|�"��l�H6Ԧ�M�E����M6�`�m�,m�ad�bD�ɣY7s�>��d���8���d,�y+�r�yB���=��֯�6��n�y��]�ѐ��q���E=�B=��Fb�5�ǒ��j4�p\൏i�2<�ku+���,�Ԓ�[e��E�fH?XZz_Xψ���pes��|��t3:�W,@
�a���%O�r)XbW��ze���F@n����6��F̻�e+�A}DRH�'�WŸ�jUkIv�(m�4�ֶ��)��Յ���h�@t8�f��@J�������<ݧ�+1h��"}��Q��ļS�+1��a:����dm�y���׀Q|�)G=jd$�
�k|�F�Ф�r-�j7�K�{���伖�ļ�{5��X������`��jO+:�u��d��=��H���73&q��9��i��)��9��I���?�����L3q6����FU��C'�H�-#���h�w����N�c�c��䬢�a����M�G�L�ΗJ1��t��L�W���\��h��Lͩ��gX$P���ǜnu�$��eZ��5k�Fudg}��sn0�Q�P��}Wh��i��bQ�
���}[���������(@��@�������z2�P)�P�!�f�HU��/9=��J�����(ﱭ=U��w��h.�WZ_#<��(?Y?h�AZ�ez�r�O��S���	h�=+��S��
��ꕮ,��X�NTp�k����m*1�*�F�;!su�E�
*S~?���V�|�z���A���:�.��Ewixm|
�6ZĠ�ԱM}nQ~�'z��z}�[���y��s��A���ύ�y�A���uO���~�y1�3���ɧ�cC#�c���zp9�ā��:4����~��U	�`Jj���p�bǒ�ߪ�}���}��X$��RQ��7�<�F]��UQ���R���
�5E8'?�P�C&�>�VK&�D擨Ra��{\79��%��Ƨ����c��S��=�x�h���2&�����~����p&vr��B����w�R�<����*�5�z�t��8[?��m�ol�/�苤�d�5/��g�W����&`h��:����yI��6]*-֪4�e%ێ�'�x*6.{WN��H
F�����X��%��)*�	�ʒ�c�=
$�7���+�Ѥ��Ƒ�j
r>�AdL�DЍ�oάΪ���^p��>���^��t���ʓ`bP@ZC�*`Jx41��CB�x�ׅ���)c���#\�jqG�y�
C�S#���ռA�٫1j�������dF�VLQHb@�L��9CW�Iyog[�{�h�f
o$1��g sJz�l#�ܶQ�1��t�QC�P����uB�Xm|s����FEl��{I���W*}�F13ր�ѥ�g�&=6ŕcK�����:�� �Fi�CQ�E<���3��iN�yӼ�G����m@%�dkN��\�?��;�T��)�n˦xS��T�|O�F��ft��ѳ��d�1�)�k-aZz��}���>�Z��0;�.,�H��j�]�l�5=�u���kR���4I�n��(kF��|_�v��`����\�X��\\��
y�P�9�'xo��n�`�$'�W�yK�;7��Q�����7���KI�/����.K�ރ&޶�R<:�O�֑���2��k�}��{ �'���(�UǑ�����k��!ѝ�z�#��1K��T=���h%�"���è�Uv#�W�f��Ō����7��|�?�s(������0�fi�'�Cg�H���)�r�ȼAQ�6z���C�=�b�X���-�lmv���+J�r�&FI���<��i��{�Ң,$ڡZ�� �[K@�"1�4�zf�
��W٤��.��ڢ��Y�4*�+<�������&Q?�w���wHQ�%�!�"�$��F�rtn�󲼓b(&z ����UU�������q�l�1��$�1_2�����w�0}\�W��=����8t�R<�Q�i��d򮃾�=?S�)|tply��e�s].�<A;��nF���p�N-����=����}&����Aэ�:���/A�$�\bGl�/歟�8w(��r��<P��ػ3��X�7���fh��(���W�����k����?�^�=�;��^��?"V}�{p�߬��-OS���@��@�T�T�w��.P�I�w�1ky3c=+^/~�8G��9'Mҧ��u=G�7�ӻNږ���L��)}P�{���^S�^W��$'��۠��	����N����X8Gb�G�YDZ�}ն���G��������n	�=�	�%+���n*;�x"�HR;;��u(6��F��&@2�@4N��Y��\/�/��.\����*a�k|�
�:���*?jU-��`�qc�9>�ӂ��%dž"��6��J�RZ�v�h�Pt]�5|���X'`S��.�P����j�����:#�v�I&9V!e�9�^^p.�8HY�%z�'Z�a����r4〢��&��_�L?������;P��AK��VV�u���&��Jˆy=ݸ�m�ou
�Jl��#���'[�p0�U�h�ɟ�G�m�,��($CQ�y�D�M���qǸ����5��L�e�F���������qL�R	%��6�˲Mg>_�^j�[c��_06�h����J�@�皳��y�O�q�-���k-���O�J�*��ݮ�;<�6.�c9�����0��(��1��/d#Bt%�z�=�3C�q��2�*Ud���A@�ѱqrs�tQ
f)"C6S��*��,���qe��v�T7269tH7�f��>ʓ�����@����^zY_�0A(�n�`0is���f��_��F.��3����h��
xL�L��w���6޴Չmؤ�:g�\�Z���[6�%��'*��6�P=c�ԌY�F_1�Y�Q��!����2Κ�6�3����#�)�^�v�Zr]~Zo��||<d�t�w�&`m<��=܈�
�zb_l���%����j���=�z>;�Z���(}p��(mW��F",O�㾶S��E�
�׏����
"Oy�"4�U�T��ϱ��3H���7e�?�ש�Z~��@���Sp1���=ݸڣ�π
~��9�o���&w)�W
5q6c/GV�g��#9ݗ)��5��*��h	]@z�)A�9��QT���r��QKڳ�,`�Q�g��]�k:��R�0U"̜�R(��x��`̹4�3�s!FX=«<�c
H�|��6�25O�>D����~_h5��׈
���w��1ct����9�BЇ�рqB�V̗�1�9��ř�eB_�-X�2�k�5ʣ�n'����S�w�~�Hι䔃�j���t��
��πaX7�=O�u�W}۸�Y�H`���R2�L�f����6��)��F��:��lOs30��4��qc�Y�t� �j�R�<��t�`s���s;6����tb���JO�z��i{��M�8�CY�]��g�-�G4����h���-�M粳J�U�.�6�;���t�%sI�룬ki��w���C�b�G�eo�uBg׫��DmN��ty}a@��Gs:@��<W:#��y	�pz9K�� �:w
�i��ڻ�+4P������諵����F�0*;q�3}Y�R_����gtVhz��b�߷�_P����:.m���>a���^�ӽ����]��+�wHݢ���yAL�ѽp���^#��È��D��<���X��刺"sG����?9ӂ���߉($�5�@@�h��Ⱦ�
���@,���t�QXN��U�1a��a�?G�̅���Y�1/!9�#���Ǝ(��o�p`@�e�GK����#M�@Ӎ5��\�G� E����x��h1�[OB��h�}'�E�a��2�N�W+
����{�	A�Tv�w��\���f ��
W*굶t{��!@��mpM)>�xB���i����Xx�)�&��x����H2��j�R���$[S*@��;��7Mr��ߢ,�b���
�)Q�>b�D�,�p�'F/�4�1���q���J^����é�ƚ
M�'ct�-f���Q�Q��C
pDj�+�%�����2mT�A�E���w岄�d�UY�q�c�V���s�%�}.<�‹��3΄SN>�g5�\]�����і�kM����^�`m=�
�y/�`���k�
�>����^���;���u�mx��P2m�z���jGq�'c Ui��߹�
t�Z�\D%u��R�f�rVJt�؆�x���.���i���0>{tA���(�x�D�W���M�廗�}]�a:�l��s��l�ht5�}�K�|�t#��C��揣�cTֱ^�%�ͱB���6��u}��4�az���u�c�%��д�&�c��f|T�Q�9v�yۀG�"ͻ�x���{uH���
z�:�椣���\��a<�0cV����B�Q�	 �<�|�>/���P���4Ea��O7��⾠:�遹>�}�<�g�4V�ўm�g��i�=�VI�%q!�O��ꊇ�m�璌˹�qu���?��Q4Z�Z�)E�fF�g���u���>��|�I|�%�㶯x����,��Q�������]�9`�n���W�G�G��oG�c��NJ������o�6?��8�}lox����u�v΋��X��ޏ�<2�?��Cp��U�_���W�7��<p��y���u�Tr�i_�4�6@�ȼ�Ӝ �\�y��t.N��E:�`ҕD������p;7,�VZ��y�@u�ޣ4!��b�?��<:�����&������Gگ܍�D.�#��U�$F)G��aA�f�N��T&��b�*��-�h*jQ@6T
��t�I0GE�>�H��
�r>,�s����m�TJ��Yz_���9;�SHYą�c c���(Ǣ9�~up��s�W�~D}��X�Sݠ��K���?3�a}�*�%����.�	M@aT���ܧ�@w��L���9E!�~4��1�R��:@�P����Ni2���I&�d�'_�(�X�?�=�J�W��ъk�͓��ئW�J�p�ɾ��f᯦�T�/��iX)��V��H
p�B�!�&e���) 4�'ױx= �aV@�L9�uT���${x�
Қ�
�#Ժ�Rj���d'��W�<_���]
{1^t��W����‹/}�+ϓL2�$�L2�$�L2�$�|o䅗\
?�7��n�>��+�#��|nD��Aཚӿ�泣�R���E꽬�/��_<�}�_��U��tc|/<:�neu��5G�(�Yh�qL4ӽEsY4�[�QZ8�{t��	�y�r��ڶ�aP�>S���q��5��}��%]�VԜl}D6�NY�����J�	�g����8_A/N܎�LJ�h���#��噛sLD�wE&�L�G@}�ҧ��>�(G1�-6R��l�R���b�:K/*���;�b<k�#C�^��#j��ђ��ZF� �X�Y��g�PZ�C��c�k���Rv<�"@�,�L��C��^D�E�	6P�Eb ^3�	��}�賊%B�J�H1��pC��b5r,%SGc�G b��x�6B@&�d���؂�=Im���NR�j���(��H1�Eo	3��_hq�.T^dS#dҵ�V�E�Ĵ���/�T�F|��7�ڙ"H�
(r�£{�o&�S@���NPD�+*})�J��~~gK>/>
��� ����K�q����~��eU[����5��=�N��������5��>&�d�I&�d�I&�d�I&���g���O��������_��w�57ސ��m�)��F�t��t]�w�ִ)M8Ɂ��ru/i�L��G�CE/K{��̽[�}o��G��ѽ;Q��~�2�d��w�ӂUNNz����0��	�S�N��7�:b���WmP96�#������cmTZR���Q��4O�ܷ�{
���%8Q#�v��F�]E�SC�<��sxHԎS&F��3^���@�+A[Iv�N󇁀+�����B�{�n݁4�}k�%��|!Ed��IbcH4YbY3���bBH�	(ǔ� Z�ְ-�F2.ɽJ܇n�N�9:R9��x���̈6!�~L6"�M�h��bhԝcPHH��_*a<��.�8�җ���<���K��US��+�Y���
�T��;	`BA&�d�'_����J�z���{�ڣ�t�_�4+��̒8�ݳ^=
,qg��_�N�3�yO���ވ�v�U��JΩ
%�@�8��'�S0���PI|��S��tV��kx�qG3?�0Z�n�%�<OT��Lq5�H���*�t�j��'�H�W�m�
o~�+����#8���a�I&�d�I&�d�I&�d�'^�س~�-o�׾��˿�{���nx�+'D�@�qۼ�Yz���s�7;h�e�3]KNA��>���p.���a�Z
T�1@����rR���)�A63{�wDq̓dn����+����6G+�OZ�d�t%}�|S�N}�������\0 !&|����7����.�������pbr:2㜶��)�rᜃZ�v���ʵH��|<%hi͔/u
�C�Ԩe)��Ev0�YK�o4�9h��^��p>-.�8ѡ}��[Q?,��>n�:*�,1�kCy�
�_�#yl��D�n�Gb��|��Q$Jj��WA���R�$�I#,I��t\,Z
�X��Rf`���`V��nJ�B
��诳]���5�<�^���[�;Ix�5��T��9�	U��Q�@�J�&��L��#;�L2�$O���)I��:d0DQ }Z |��Q�~=�������*D��9&��_���\��5�\��GNf�ѩM����K�
X��)��u@���"��	�3nU���8�<��|��D�ܜ3$�2N�>ʳd�}���(�w�����v�tL2�$�L2�$�L2�$�L����O��~Nر��w�:ܾ�nԨo���P�|5��ll#�6��:h2��aN=Hn
5�z⢑�;��H�J��{�L�u�,a�6��F�00 ���*9E�5c8��i��pdF�8��o�Ց0Sk���Bu�7�Q�`	�ٕ�)I"O�(H��zv����xi �G�P����-�pV�NX,�@d1ׄ�fC)}��H]{�4i�f�������k��Ce��8��
��gj06�KPB�/P=?�g�
U�a�L��`��#�-�A�Lu�jZ�
�ǐ���
N(��K�:�A6U�u���73����9�JA,LE*��;d�%	��A989ClX3�a�ܺ��A�Ʃ]8�w�zt��H=J��I��$�L2ɓ$%�D�;�T�&�Ȃ+Vv�M�:�Z�A�0�K����Z�*�-��ZiE���lxAG�d�.-ܔ;�X�zt}	� ����F�2��o����;to��P85T�룑9������
��H��{4Z/>��y_S�$�2T9�p[Q�€�%���c?��{p�	'�$�L2�$�L2�$�L2�$O��?��ec��;	�޴������=,� _#gfa�{�@6�Cm�4�����j
-�v`�r��j]O��`�u��m�"8쾕��M����CD��)��"Y���-�NSr�P���w;8@���K��TC����~�v?c�`.-�":��V�7PʮePg��Sp�6�s�(ƙ�K"Dz���"67�h�֣H���q��<*j��v2�t�-j?.�����ZFc��978��v����Q�V�\b�����h��B6�'R��_�H��P*a��W2!^-�%x���]�%O�:�a\<F���9t��BF�P3��!�?�%�#&,N8L8:�DRt�@�^pÙ?K����) �Iryا�L;�����˄*�@���&�d�I�d�y3��c�"�7�ܔS��Ěf�|$����@��T�K�/'E���
��,�g�K(`�b��)5�8�}�A<�{��v�dl؅�G)���4m8+2ܮ4GH/�x)��"�J
�D��7�Ú�.ꉢ���(��2b�Ԏ�����뺄��7E@����ݷ������7�d�I&�d�I&�d�I&��'[��gd��-���>��z4<a6�)�*���H�M���0���΃�`h{y�Xp�D��}��'G��S��IwF�uߛA�;��vW��fg>���zuʘ���G@f�ˏsf6�����8(�zo�'�7tNt�w@�7��h�m��d��ye�EB
����2?2���u��h� T�QSѿ��56Yov�~׭����,!���
�w���H%b��z��*\_��>�f�R�8TÿEA8"�EBUȐ���!a�X_��'4S�H��6�R��O�t(ak2���R�5�dT]�`F9�n�#�p6�~��@�@e��pZ[�'�PE�4ۻ�Ϊ..g2��E��AG(/���_p�3yD���.9��$�L2ɓ+��T�u��϶�c䘰��F�j�ƬP�Ż�"�p(QvG�K��
�����0�KӗzU"H�ꃏ�����T���Q��п�G�ro�/�)�5�S���l6s�c1��yA����ߦ�W�+�#o�F=>,JŻ�M�W��r���g`�I&�d�I&�d�I&�d������0�؛�Ÿ�@��
�du4#������E�lu�+�{@�s="��M�\9��aul��h@���ǵ�C$�p�#���m�
�~Y�2ܖ������T��^%������Y�%SRwg���[DEn����-���SDH�kċ�=�UB�#�!�������>r�tj����9߄��&�A�I67��\>�o�~�<��(�CuZ[[c��T��"v��<bt`��LCKl"M)j0��^�,������	�m�f�@�{��ȳ�D�;Ř(h��O�2�'X,ٻ~�aV0zA�H�XБ�c�X��S��1����J,d��N�C� ����@�c��V�r-�&��eE�Ԡ�f@�\���m(�OWP�xz�d�I&y⥝5�= Q�)�g=t�����b+�	�\gљG��|��>��|̴M}� �y�lzL����1�<0 � HHh�W5���)AJ��E�yD�7�?(Zk�Xn��)h�+����o ����'��(u�X[���O��ܻ&�d�I&�d�I&�d�I&y���'�6\����(�[cEJX���)ǥ����R*G{u(�ݜ�����`K,����(�]�aNz�XQ)��1��Z��>}٪v��1��)�/&4����c�}��dx�"��G�Pꈐ�<ٹDtH�7664���~�k�m�G֬����lƑ"�P���#G`1��p4Ȭ�:�)�2ߜ3��k�����d��Jϭ"��0k>�0s��p
uIf�/f��12Q�{�=ul��&���i
M�_W�/}Z�5a�*�A
m�J^�kex�_=U��bv�R0�)}�yţm���&�*�G�o\�=�	�
Bt�E~m�V9��O\����xu5\�z9���(�%�,#P�L2�$O�P�����@N	�("�a`�',P��J�{v(�T�(pP#�V ���o��bgy4,�֓�C����Ʈ�`�5�E_����`��X�ѹ>/ȥ4�ϕ��*�^Q�G��zQj���I3:z>O<;Li4�-}R^!)�c�7����oy̔
l�I&�d�I&�d�I&�d���\~ɥ�_�ퟂw��(��X �b��y���n��1Q+��T�}�n"���8JX���=�8?��!�~Z��a#0g�^ۇ#<���D�JqJ]J�Ti�w(�_���$�u�4�F��a�ƈי�ڶ�ϧ=5�Pha*Ò�S$EQ�h�ݕ�y=�8}ҵ�G6(�H��6G͙�,�ݎѫ-9�ˌ�t�+�s9O	%��$b�lF�fϑ���ث§�-
�.�)�)�aUI�����-(Q�*���V^��&�!,��}y$I��t��
J���tE�:�&?��&�	�R%����0��������d��M��.B���cA�(�����pb��"<кoI��u
�r�9@Jn�$�$���c�@��4^���y�yBky�/���-[6`cc}��[��e�*�fX]=:�DB���y]�Ӻ����
d�Rp�C����h���\@�(�h�R�:���i sw�*P��Ka�9$׼,��A������#�<;,Y<B�k�RW�wP�W�@��&�d�I&�d�I&�d�I&9��M�x%\z��@�� o�Ѩ���0�'��!�}������~�1c�
���p��9M��
�L��'*�Z�Ai
�b�B3�["p�G؉u�M���j�5Z9�<?�`���F)z,@#K�_���E��
�m�7��� �WB�T]�]��$vo<r��:Ndnu3��-�LuE�P��![�q@$9�z��є�/�+T!�'�ύcar(�G~��
kђ�E#%“6c%F��8�@ѣ�`q��ٹ�-��L�e�K����@ڎR�/ٷ�o��ɒ��90�$�F�����`7!EZ
V}��aA����)�=�L�|7))E�ŊV��(�PG�!�z��F���ӣ��w�s�d�~�	=�1*���qL��yt>]7��g���y���+������t�"YI����>b>ʩ�#3<�4!�jȼ_u������
����˘�%��*y�)�9�c@Ex��xx����$,�	Qx:� )&�DM�e�uμZ2����9#��G�jF�����=[П0���e��Ͻ&�d�I&�d�I&�d�I&9�䌽{�G��f�?�s`��TI�>��7��ר��L�~p�B�T��IRs52Fl���ҽFT�bT]y��;0.�vm8�@5����P'����M#�i����o,:e���l�2Ԏ�$�ز��
ZH�P&r%`d�ֲ��h�l/�
�#}�<�Y1��e�Pd Ҷ�I����	j�i=�ē�7��(���u�����o�Ŝ�xd�����id	pNz}�e����96>�-'l��.)"4j�soԣ�`T[��0|��:����(l#��
: B��p�)�����'�bv.t��-��RË��ED�̜��17�9�]З��ǢR���;�Q6|��>���Ƚ����������󃡦����u:�c�}{v�����<����]'���D�"r�=�=w�uL��z�4_<^!E�@�M��{?�R�jhhgt,~�sÏ�BfQ
����jV��������
�n�s�x��|ְ�C�/�詘�Zl�Ӿ��8Z� ��y8J�:�&+��%G�^#S�va0�������\�LQ�z��<����'M�.=���#o|�ܾ&�d�I&�d�I&�d�I&9���?��ݿ���s>�wT�ޱ&�sE��΋���=	f1[j6a��Ѽ��Փ����h>�_%4ō%����Hm�=���w-�aʯ�ЀbI�ŀ��*5��h�	���z�]�Q&9<�5SW��6�BʅD%f`Y���y^�D̾n}(	�3�Wa�ŞSa��-[���s�aZ.�̒�\ɹK0������#������A�O���ܯ:�(�{#�-�SI`��(�A��*�ee=*#�Q����b���2�B��9��1�)��(��n���_�T��rg����{# �vJ����=�k��귮�@ר�J,���1�;{��|60#Z���~�pDJ��3��� �o��]�{�I0�3K�o�l��vl�۶n<�6��E�O�Z(�{��iİ�.4I-̚"=�:'7I!))7�a���̼ٸֱ�����Ƌx	/.}mE(�bЅ��B$�<+)��0��z�D"jd�Fk�WI�)ګ/����j���m�-���C�5�|Z~D�W'uu����[
�$_Oݵ.=��)��$�L2�$�L2�$�L2�q*{O9^p�%p�wn�{�J����d1���I1� `��g�;[Y���3���
��^�:�%Jg�;*�=l_<� Bx�dM�}L9��QC`	�Ŗ�}�α�$��oL [ߣ�=���^X2�&�C�[��F�C��(E�@G,_'�g�0<��}�������ƶ�^mT_�v
j�)�A�1���-z�- "7�6[��1
���Aߙ�7��y�l
sQ����t�����Oe�1أ8�`�E�YҘUz�t��p����~<�(�$?�TC�@�ǥ@Xi��6��_�#
�qĒP
GA+Ph6�DW�?b��EΉ��*ɯ�A P��K~!�cHA
O��g�����k�eP4��5#�+AK�4鴢5?6��
�:}���I�Y"�o3�d�c)Юy���۲��)���:�X"�T�[�G� �X���Z��@��������L��"����So����� y:�`u�@�Yb��)-)A\1�K�޼?<��	�����F�t�6���>�p�3���1
� g��g���L2�$�L2�$�L2�$��r���ͷ�*_JOM��%�y,��̷�Sus|��۠�:�o�@���o���z����B�#�����48gi�ʽ�~1�~�0!p΍��P�c��X̄R��p��a:i*��C0k$�cve�b�b���};�r��h�{0�� L�1������6;@rƄ�ː)�W@��@�ܣ�j�C�/�N|^�s��da+i<��G��N�P�#�� �����>�@cxzј�_���j0���$b�� '؆�tPC8r�-��
���>��&��xNp>�kd���ľ���E+J����6���m60��[tDh�,}ꇆc��?��HAC�)D�!TSs��<���؋�zm�I&��I���ׂs[�x`pz��B!��_�7tnM9��C�5�n�)#��w]5�;�[!a�Jh$���UT�)�(�̭#��rR,�3F�)S�,�3-:��%<�X�rItf^ �X4	@�K��W8���\�.5c�C����>�dؽkL2�$�L2�$�L2�$�Lr���NK�������s�^�����ȋ���%��Yl��O�j.��^��NU���Gՠ��[㡇��#��PN�&�#�8�w�@ta�Ӄ�Q��(��z����*�H,��L(�;ٟo0в&�Hf3�`�4vq]#΋s�.[I�	���%�F�P��ƚD��J�)�f[��s=��P�:o��s_�h�5��i� ���
�u��p�6�n6��׳������"ؕz�6��H�a�'X��%�QȅE�8���T}� 5ט�lQ}5���v�(�f�[n�P�#Eh2p�8)��1-��H�r=������va�B�e"��8��4ȹߠQ�C�[��>
8x臂0�s��P1��4��q=z):G��T$���AhO5HZ'�-��U�?�I&�d�'G��;M2N��MSrؠ�	���6������T)?�̀�:1���"�*5��J&p�$����4���x9{���y�Y��}o�\��ca�v���,���o9�0�W9��(���>�VmS���ӻ;y^К��O�N����9ZJ$MS���;��a�I&�d�I&�d�I&�d��WN>�ڡ�@�LJ�f�k�c|��t].q�=��95���6L���K��]sm�PX5lܧ��R�
Q[���!;s�]j��7�T0*0�%G�d�kJM�(� 'T��g�|�ښPhY��V)����J1z�����#�l-��+%��Ά�d�M�������`�}�)�>i[�6�F�,�j�ug8��KZ7�
UP��Gg8a���H�/ �*�U�]@v{\��a	t�"Rґ�u�L�7E��
4��}���hf�T���E	�/��>��K����E@�@Mf���J93���8)E����F*T>��@��v��͠%�L�1R$�h�I^��m�(9߈F�f�p"��M2�$�<ib��-I�D�@�X����ТBx���5AwL�)�k��gg$
e��Uݮ���]@���dJg�p���� u�0T���U��j2t��-J�)V;T���r8F)q~�#]��jI�>l��BK�Œ��F�(��O�<�f��Ṯ��6�$�L2�$�L2�$�L2��*D�����鴨��~)��;��r���t�}����DYґ�VLsnLL
|.��:sd�^rj�x��a�s�wG?JT��Pd�؜/x�n{b3�}�ӡP(�1�/M�!9A��5��N��	9�¨�K���!��N�us}Q'������#��7v_�EoY�@���,賃�QW)5��\�v��y����m2���̉��zJ.�FA+{�L��6"�tǓ�����X�v�2�:�(�d�B�NLiDI��{���a�J2��N(��Ƞ��0~��U����[���CK�b���sgP�N�HC�0X3�â�z��2O�	a)�.ɥ���a�60�hVP���K*���@��<�.H$�CzE����$�L2ɓ&��60#��%	�峂6E��B��O��`Z�2 ��gɀ)\���2�dY�3I�`�(�a�*�-��3,��	
�������u)j��B��/O��de0{V@ꑒ�l���(R�y�Ce��`F����&�d�I&�d�I&�d�I&9�d�9�x0�6�gG�d["G�v�&��@I*?��9�������ϕU|��ګ����ՙd�M��)�9n�@��F��ɡ�}3�M��s�,	F?E���&Gp̽rL}e6t�����Kv,;��`�c(��Gք��-p�W���
����qt{�D�tC�g�]�P(�d]��JdG�����P�y�^���d��+�O(�c�Y��^AX�9�(&�+�G��, œi�-=��vr����D~�%�����H��H�ag-� �6KJ�Ls� ����s"�h9�$'yi��C�mW�H�B|��`#����F��]a�*��I�D��eЩ� A������/��-y&��F��O��&	�~4�n֭2a �L2�S@(zcM���X�ɂ��a�a����4؋@�AK���DXԁ�#*\9�s��i*67��́Rl�|XBY��nh��C�yMx~Ve��C��R�1���vo�D�\=zY�X��(��cP9����{p�j��"� $�S^�a����HI��$���'��f�I&�d�I&�d�I&���!�/N��K�uK�`\<ާgɠJ�²S���9GF+�1 oA�P:����*�d�F}KdN������H�a�{��D�X�D���7+7��FI�=���>���iT�N�'��0E��ֈ��|�)�u!:j����T�H�����@�Hv��D���6�~:q��+�U�l/]�P��Q��(��6$�&l�Iv�6�{>Æ�m������o���]�f��T��ݡ]�Q
�9j�����RC�|��^П<⤠����-�:�/~3����-�*?����j�����tOv'��.!�'��Q�Y��̤1u=CJFn�F���h��_%�,z�a���`��^��l9R����2�$�Ƹ��k8�(��5"R�~�9��$�L2ɓ'��V�V��ֶ�l!"�Ff_\����殤E�ȑMO(�	��.	/�=�H[RrH�7�b,讯gʒ�x�0Qf�����%e��80>7�������v�^�AP�P/��X�/�p���S8��'P%s�����A涊Zr=�<&�+�I&�d�I&�d�I&�d�I�?��|q�!��El�aB1$�d���~�^��Ā���J���M.+Y��}K &�P�
:�ζ����gM��E)������Q=jn�V�˨߉š���h��გk��5�xAe�e�td��r1Z,�9t�t}��a�F��XpKQ��hsny��|S��"�� ��)�췾�>.
+�o�R|�2W��b�OZPC�w�+��<�����EW��ݻa���.����ؘ�Y�EPh������m���|$�{E+%�{��R��W	rBs����*����L��^ku��ā����cy¹Qo���%X%s=33���^0	;)�r9�WEi������Rg�"��[���$�̊����10XrF{ǛdB���+J͕��r�L2�$�<yB4y:��DpY��H �/�z>���d������� )ZW�~dI��ͩ�09�A~����N��݀�\��%=/�gI�3)�Gᢰ���B0�B�j��*��t}^Mh�������Q�W����6=a��:�$�L2�$�L2�$�L2��-��t;�?���?q�Q���%Fet��0�lA��0��֯Y`C�F�5�K�Aͳ��}3�{�l�	���"��Y;S�E3o'
ʤ�~}}��ˑjo���0��d�k�cS�tf� ��)��c��l�X��j8G����TV�Ay?ٝ6��kh�P�"=�	��BQ@���	 �< m+�
c�}��
�+�L�p��<1eƿ]~����.9�|x�+_
�O:y��k�+�,�& (�̊�LO��BJ�
�s�s`%G�%%27�EA�Na��>[ �8�)UY�ġ�LJN�AvO�p�$ ��e	E�A=��-�ΥO3���^�#��}�����J�� �{D�'�IY����
MV��'5<i[��
1l,�G-J�A>�L2�$O���J+d��E'��KBJ8r��D�BBW�4y(rΉ�Tt�,#P��u��D˅���a!��R[�RGc4h������|��L�'�A��a��Vk���!��[��P�XDJ'�E�P�)���)�SZ,:�D�F�#P�*��k�D�?�i�L2�$�L2�$�L2�$���J��wy�,fk���˅��KYq�z�6Xs�,�I��e�Glli�/�:rX9��£H� ��H�X[�٫sBs�Ç��P&g2�g0e��V͕�v�$ ���,�&���(s��\#j
��=}˶�͡^v>h��<W��#������G��p}����9f8ccM����4�TWJ{M��7U�1����<�ޭ:Fx�HR�dC��uc�������p�y��{��Z���!l�͡�	�0�UR �[��x�X����(ZbY>�r��Un�Q�7�0>UQ%v_DG���
L��"�2,�"]5���A�E�䘤�	q-�T،��h���˫��Hz.M�KFoR .�rk$����Rj���[mT��8c4�Gyz+��{�~d2d=Ä��]'�۷m=�k<�� >�	�<�d�NNܹ����Wl5q

T��r.��#���ż��ƨ���ZN��z�)��>�^���J��=�S�A><1{�R���H���)�k@�J��
|�toxc����c����iu���smV���Jt!=U.3hD�zrHQ:.�1��d�I&�d�I&�d�I&��8�ep��"�g;	*��x,?��j{��9���(�$�%9�gG��FS����|����_��ς"ֻu)`��@J�~XbtY|����h�\��d�ߔ��0���({r'8��@��a0A#A(ʢ�	�6�/ H��>&��oٺ!�Z��J��h	H���l� �A��ru���j��R�"TZD�5��v����1��2�����~�,����?2?�b
��>C�Ar��Ń�;[��O=�>�tx�^/{��E�<�s�<���^�ξ���R�>�@� Q �;!xy��	��m&E���rl���QJ�4X�O�&(*Jx��=���p�h�  �y?4y``j��s=�E�@�I�-	:��̒�[@W�Q
pX�EM�GuxLd?QТ8�e��s�-y�z��^��S����1MS~P���g�2J�;�'�����]�����s0��G�cA�;wl��{N�2Y>�4��;a�)�=��[hN��x��n@Οa�28�A�ˁ!!��]2��2z�*tӟ��"uGp�^u)C�%RC��"���F
�����Z7,[�<JU�$����$e��r]l-�Ⰴcҷ�/��v�bE�e@�#�k��U(��V"�5�{���(�N�d�I&�d�I&�d�I&���#Lc4�d�rP�����|�~t ���]ˣ��\I%˿R�0Q$'����
@�6gk3��DV�of7Ʀ�9J�3�&%p���N�{�F#8��Ј��|�����p>1ZX�tIt�GT�e������?�0�=���=��K7fJp�� �&<'�
_(�C�
� ;��Ç`۶-�}����s�>�ᔁ��M������$BdccÝ'9���;��Ϲ�=�Yp�y��K��<8}�ط�T��D�����?��ϗ����j�p����H��eD	"�9��{�)G@��s"wj-��:`%�#=��������
�EbYq��\����y�Z��T�=���x0D�ԓ��i��5�F�ќV(��#�)S�cd'kJ$��@�{*�v�UG�:F�}<�s��PM�d	!��'�'Hf;�a�
�˱ t��v|�'MhN���D ${v���|��@�`����N
PP�����Ay�1����u����I5%�4v��"��#W����� �P|�����Ah�i�����_�CPfE2,YZ{M��zd��'�v�7���C}HX�B
�MQ"�9"<z%�
s����a
!d�?��y�� ߼�F��׿_����w�C�K�z�֭�����N�]z)�����SN�I&�d�UB���~�k�	W��]���<�s����`Ϯ]p�y��]/}�sa�:L2�$�Mn��V�ė���|3�r�]���������|2�'����χ��ϓL2�$�[��Z
�r(h��A�����K��Y.��V]P���̟��nc�*4��X?g*���Z
��ðQ���T#4:fvh��O��̈́��D�EQ!�Q��m5��cʧn��b�����<õT������F�mx��u��"g�nީ�b/��Oa8~�j�@�'B������ua�y���$�#B�8��)��v43���+�.A�$�0�WJ��F���n�*PCm?i=(��˞�Bx��_ȀǮO�m[��_W�.b�rZ���^�6h @D@g)L��cg�ĸ�!8U⌑���Ø<�B��/f*��k���(��E�$@G�z�t��[�J "pMp��L�c�S%���Ɛ��0Tp�h��z�v>'"o���Pg��mS����Ϩ��F�p�wq����
J��I����y����t(,mf��(�N���QjR��a Ho[�&]2o���ݠ��<ues��g5��)��������e��fK�'��7���E'y?
ăAf�[[�[��#G�:6��D��t�A�#xl�QR��a��9�T	� 7p���O���G�l\��w#�녢�JK��ݔU ��|}��X���Yla���Q�C���|�V��@黖#s�\mJC[W�Yz��cZf��B���o\=�և?����aa�Jh���/���e��'��Qs;L2�$�LY��]����ʗ�?�Q�Ч>:�kOܹ~𕯄}���·��|�œL2�3W:xn@���?���G��n��`�&��\2���x��/�3�'�N8a��M2�$�)����Yn�N
��wl�%7�Gq�lDPGB�*�
��Л���|����hN�"�����j��*hOOz��|vn��nۄ:�i��&�Ne�I���E�57츑�S$%�Ϝ;�A�.�˥��dA�����*Dm��l$���}�ښ��vs�*�6�zK4I�2�FCQ!da�J�hT�:k��7�-���tJT�k(n���<C�N�y�ݽ�=�,����K/{\~��}6��>�վ]�T�KR$gH8�J���j3	Gа��Qi�B@qc[@���w-F�0ت������k��b���jXd�ԣOXR5t� ��-t��g!:)ͳ��#��0�ф%�'G���'d��N`�N��
G�P!��p�i���3�,�t�,0�=m��{���w6�>���p�=��i{v�Ƀ2�������:.��<��o�[�Nؾ��ǎ��}�‰;v�$Oo����	�w�x���ڛnaO���� ڗ��<|� ��������_��[�(2�ﴽ��Y��aUQ�Q�Ԑ߀lƚa�%�CB�r
'��%X����#�R%�x
�﫩�S��P�����G��92pr�2�n�"‚CY�b&��"a��4���\��5��G��E!� -�)�R��Q���aP^����<r��`����_|>��/���<򸮧q��|�_��:��W��}���sϛ��L��o��.�����}�|�����ʃ?�?a����#�{�����g��x��d�I����c_�<���Рc|n���JW{�����]W]=��{����
������K&�d�I&yTY[��Ν��I������i����4G��H0嫴�'�3��z���`�ָQs���X�ܛ�F�P��'���u��ATOE�z��(�^�u�6wb$���A������i��v+f�·V�&gꬹ m[t�/��]��5�c��ښz/=�zz�݃ȃz-}���Mt�'��	ԏ��Jr���E�P�qBJ-��{��p����v�.�d>΄�u֠�'F,oEJ��݀�2�p_:����R-�t��LIū76��
�!����p��5��„�)F��`JcQ�3�O�����h�1��8B���J�yµ�fbR�1K_8� ��)�����/�E��H�U>��F*����P�y�r�w2"���k�=�V�$�W��]I��-��X��N��k{x��4���#B!da|�Dwꮓ41�Y;)��9t�x#1 #L����8t�=)���$/��b�B��߻���~�;��n���o�=����[G49W�X_�itF;L̅�LP
@��]i��?,b��Ņ��Py8d�:'�Ȇ�GS�� #p$�	_߫��'-}#�08��-,4�	��r�4��hi\Eo�$'eOno I��Z�"�i���k�G|�ON��`�>R����7n���o��ɧ?������X�����3���y�������&��I&y��'�ĕ��=𥫯f��#�f��_��
��_���h�7�?�[�'4�L2�S_���W��8����#��}gg��20�cox#�?�Ãq�Y0�$�L�J��Fqh��d�� �m!�86�<���S�\v�B��2%�q>L�]f���j��s7�fJ?S)f�o�9G�2�1��X[gE�r'{�a��)H��9anٲ���S.�UО�@�E��JY��{F����3�^F��iD�o����}}m�6�G�/՟̹����^%8��@�!2���nI	pb��Gv�p";S���T8��3�U/|�;�T@��j��:���9K�H�)%�.Ǵ�P"
�?�7$D��#�F�PI�|j�$3�N�[u�=H���	�"p�;䛛_m��Kt�E���:fG�h���	,�fc�]8緈Ze'Kn�5R�	x��7CR��$0��[`�$vB�Xf�����˺��{�!����/0A�(9x�0O���O!k����}2#�+�4Gu�$$w�oX�N�rb�ȡ�[6x��9��)�����I.��n�n��.�}�w��½<�6����¿Ia���+0�>(.�����4�CĀ�ꤰ\Z�gû@�}'��(M�c Boa4w*����;$��������j��,������R����ҍfsR"G�1�O?��G�e��B�[f��(z0��eK�3��&d?���O>��?��a<��K!��_}����g^|���;�$OS���[�~�w����/��ٿ����_�
|��o�?����}�_�I&��C��J��/�/p�
�k����_�����/�W~���^SޡI&�dI‘��m��(UR�g��D�`v�H�o������nA�:©O�[O0�Tܥ�^^r�2%|�q����!�<��k��\�9̡t��[N�҉��9Ӂ7�A�	Sr�!�@��:):�Q�l��j%��w�����y�tWA=.v
�EeV�ۂ�N$��[��0q
{��	gH�S�6�Z�[���	��w�.x
�3��˞g�v:�>ʈڶ�0��do_���5Ցȅ*_��Q�Z),I
@�[���%�:�P�&���Gm��:H��G;,�_D^���R�#G��Z�l�Q��! B�P��W�Ž�� ,V�p�ab�֠�kA<
{)�9A���?��՗̇�
�x8A8�j�L�t��@�#p�Yg��a�}�1B�߷o�k�@`c,$g��w2�=����󇱲u�����
�b7 ݰ�5U�xޥ�3�qSjH�x�Y�g���I�����=�������m�o]��t#�y�ah`m4h}��u:�o���tS(���!
�ښ(!]gQS���a���39K$S�T� �ЈM&f�-�\'��#F��r�H)%Ҏ��aʻ�Jj�o_�.�c�l���͂���Q�0@
�jjHoFEdmĔ<
�� �?�0��o�6��~�{�!�~�G?�9��{�?�s���&�d���ܾ�n��w�|`0&~���,���{/�����r
L2�$O/!]���~����p˝w�S�~�u�������?�x�[؁n�I&���}�#G%&���h�/�E!���O��~��$XnR�u�΍�v{��&V�#��ީ��1%�}|/�D�E�B%S��(k�A��G�Wz��PEY�S�'�'G(��ݝ1h#Q%R�or��k����\)�{ȀEt}�{t���@O���4YDӥN�$B�NaE���>5������p���U���s>��wGz��k��<��gV�|�ݼt��
o0{�|����R&&��!�!vN�	�~p���8�]��q�(�=�.x�Jb�2�#����R��<�,��%��a���J�'I�wYu
&Á�2)aYţ�,"�ߍ��7��F��@�O(Q���2�4�ް����و7�q.:j{��Nc�Pf�r���~����C<ٞ9��w�{�Oc�!�
��ɀ[�D<w��ҡ�p�{��a8m�:'M�����*�[
�����a�>�3��Ku�'�<�)�����kߺf���p��(r�M����1��`�?r�0Л!
��#X�6��%��X^y�؏+��G
eԆ8� ���y��Q���V�E^8U�>'�V�R(|W­j�0��!W|FMl&��,�r�\�)0���K�Ԯ�Q*�UQOi�m�~�7����|�~���M6?�O�	��;�	���@O2��@h���������{����>�I�/�ſ����x�D_3�$O!�7>����=<O�\�-��_�\h?�c?>�'�L2�Gt}2<���N�\��<"�I��,@��(�
~О�
��@@�{��j��t�Yt�Rp����K�K��Ag�}<�j�jc�[�g���]�O�g󆘀���Av�b�Ң>N��er>d��z�3�	9qR���S�H��UV���V�(0T(e(w��e��s�.8k;�=�x�%ρ}�O���`}}vn�.�H��9���	��	��4{<F�U��[�B>{��&)�=�������?hQ�\���Q��(��;ʏ��AZ'����1��Hf5q���~ĥ����M��7�EO$Εk􊔓#��<-i�Ft@x�Ӎ��=��54�R�$%RJ��]�$��A�O�:�R�L��

�{����q��i��iB<<,�w6�ݽ�[�uϽ�0�'�a��B!��񌒓vn�z�����q����9g���q'�}�>8��}<6�m݀;��ùbh�lٲ����b��*)��ΔV�8?I=���.9�|?����߸��a���n�����y��~do��F��F���@!�2��,Hț��J��=T�.��6��*�ƇZ7�����[��4Z�~�C��H�x�P}Yi��<��$K���5B�.��̛��"�!+�=��
K6О�+`��:�t��_y�{���0��%�w�s�������?�\tL2�$Ƿ�z���߿�]���|�	?Lh>��Ovl{����>�D�d�I���?��/��_;�㕻���_�E����
/y)L2�$���LJ��6L��r�p�˞Srq4�W��	�����W��b�\,���%G���M�x�
��b�
����;3�j+f+U����	eԼ��74�FQP�(�B�E ��}�
���K�:(�)I�4�}�@p�5n�������'�p�j�
g�v���غ�ػ^����{��9��~�U�Lq�K�!fsǠC��#�þo��n���ṙ�K���j,�ӻ	������m��#�Rq��5�#7�U����k_2�,�Y�}RR�cB�|�#E����k��=���&�ɿaH�c���o��(��s�2ݕ�q Ȁ�@{�0�J�Z��!�\���'4�@��� '�t�`�=�E4p	Ը��3Ѧ�9�A��^�ާн{|�Q��}+|�λxl��c�p͙���d���-��|�kW÷o���3����6�����^'c���E�
��8���0���ܗ8$��Y��K/8�|�� ���,�G��rN�_RN;u��y�����xp�����}��������Dg~P���Dg,$�z��	���.E�eD[xSj�Y���[Xb�Xd	'�+��P���ͮP}��H~�(u�F?�"c���;�e�UZ��!�m�.��m�-C�?`�4������~�w��Y�����o�/���LF�I&9������+�ҩ�H!���}��ÿ���L2�$Ƿ|�[߂����~������;�	��ߝ/��B�d�I&!!����b�Ơ�]t�(g��9������O*N�Qd��YB�E��wB�r�s�޸mS^�$EgP�9,���d�1G�$��QSQY�Fy��:>*�T�W������1�K��Rn��C���"g���n�۽{8�«_tlʥ�_{(�c�^8����Nx�
ZX�����]�I��JY�l-+H�ע&���)����P,4.�'���Ș�+@mK�6ٵ	|��5�KDSy�f�7�1.ś�QUS�IP`�]���|�N�#��>r�K5�#UZ�$0�'"%ab(
z�jiR��P=$��5pF#���
��B�9g�ƞ�l�Lb:fB��g��H^pɳa�g�P�k^�V.�_��-�yYu-�v�G��D�*ک��[u-�%e��˟����u��1�C
�|P�:����w�/^}�}�=phssP�$I��AZ">(K�񹘋��t������h	���r5��E��R23[��?X5�/���;:X�z-�����s��2�gF#Tqˁ
��:Fg)���@şC�,�x*�+�}���B{u4!��~�#p־���5LQy�Lr�	�'����-^[�,�{���Mx�K_�}ы��d�I�S�����~�x�U�d���S=�����]��m�I&yfG%(ۀ��h$�1(j�s�j�h��(,����a86���”`�&����\.�u}}
f��B��Ev�3j+>&Q }/`�3H�9rщc�D4|�QY	����yԞV�s�о�m4{4�~[��h������grD]_�`V���9��s����$��u� ��j�6qR%j�g�(��KN#%Qk��`v��#�sc�Ee�
��V��Y���� ��"#`F������g�ƐLm�H;b���gXG�D�M1���Tn*��J�:L#@ ��p�Y�EI��ї�!�ە��ʌt�!@��Q#<cU"��Q=��[�vc���Qp�O�+'��B�&y:#��Fw�c��Jh�Q`�����r��k�L���N9�$8�����K/u������|3�z��9߄��:�sE�^��(��wn�
�G�ք�Ey={��{��IJ�4\1�I����ur-��*�6�Ⓖ�;Ipy#p(<���%ϔ�8$��u~�J\�P{7`��TJz�k���k��'[(I��~~�o�.��I&���#��y<|�|7����-<�m‹���'4�
�{����3��I&���~��T=�$D������_?��?�L2�3]���H����n�WD���s,�#�����\����J�PD;�a�`���p��84 T1U0�A	�	��D,r���Z���h���I�M��D�P�X��2-�B�%���
8B�(�����"�֛�d&�L��]$ Hpw�e�ua��[wv��w
	 A$������$�sK��罙�@&I�<뮮�>�νC8tuR��"G~n.5oؘ
��v�ZT��O��գ�
P�6m�vQ���"sj$�� �o�~�+ԩȋ	�Ga�3�6�A�0B&����E7GH( h�E`7IdE�;�����F�3�T��b�3�Ɉ.��`� ,/C6���L�E�Wz��b<'�B	���b{	u@X����J�yC�"�*;���I�r�إ��؝�
�(;�W���uj�
o[<��I<S���q�Q��W��M(,�푪�xx-Wq�q��Qչuk��:a0/�q�&��rBȲU�8��B)��ٸ�fK�d�Ν�}�e]�7��7�d��m��:���iE���?W̽3�bO�T%�s�{���M,t�L+ϫ)8dR��*���7���p@�Ŕ3�w�9(�jR�&���ct��n�P��f�eٗL�1��CϮM��-��g�‚�x�F���L��
�鶋/9lbA{x)�x��O<~�BsƁz�U�O�8�4�)�<�#B�� 3����gO��z�bi�D�>��7�E�KjHBE4�!����Hd�D�k�� /� 	/��@�ճ�+�ƞR����9=�A�,j"�Y�r���Q����r��P��Kh'�Z����eԩ#E�v�un݆�ծM횷�)�4�׀�

���	�=*�����qDEÆXҿi�A�ìhQ(hՎ��VƘ E�x�ΊP���E�1�rP���a����L�,���Y4�#\���N��u������b�Ub8�P�Qed��3U6������޹�溴��I��\"D*\�VE#�����2�)3<X*1��"0�xGtre�q�T��r�/*����G�A:A¸8�7���teT�]*�r��*(���Zv}5�*�]%%��JR�|8ܺc-\����\Ek֯�%+WҒ+��VZ�a#���)�_�i'L�H
"
~5!*u��v�A���h�ǔ�Uͽս��-���%�QԌw�J�::��w��-�<4�Z%Ŭ�fm�o�E���ԪU�|y	�Y]B7��n��q�h̤It����qh`�ҥ��;��u����}�
�M�ԩKM�ˋ
={��iCk�7_o���XI��V^�Žu:��AԢQ#���8t����4{�b�JX,ǴO���t����q�C8����8��i�CmT, �Nt�d+p�Ix	��J��N����BCR�*�A9�9r�]T"�=I�c�TM��2�˩�*1���W���0b��Uϒˆ��!���ȵ�]=[��TM
�5jR�f�8$U39��ز�-*�b�s�A�Ax+�}���
��D-X����˭B�+<�d?�!��12(k��%bgr�pm(S�ΏеAd��GwȆ�J
���6��m��@�l��(Bi��84�2U�rM���"l=D���
S8�ٰachGIZ,�A��8<��^�D	"�m6�ZJ�?K�P�
�aN�@�VY�MJm/S�Q��m�6��.Q";�B����IJe��PG<�U*a� ]�V��~*�$�_&�f�e�kѢ̲ۤ02g�"v�lٶ��,ZH��l�ɵ��߸u-[���m���G�h�B,L�9{�U�3��7w)UBB�]ҔaĐ�	�iV$�nW�	U3@v0K)�DL��b�/��t�,���⁷���j4��"��;��5ϑdf����;�o�K���	��/��4�?����ٓj�䐇�G�DŽ����3g�ޢ_�|��j����$IS&o��R@ͪ.�H�/m�0��)��҇c7�M�\���N����!�������"�{4]:d�\ G.'������������T*o9�L�&���n�e�\h��<u^J�LY*�����R�*`�BCI�..�����Ta����d'�ޣ&��.�-�*���I�̨&�Ƞ�u�9�F��9�xQA!5�W�_[6iB��w|�W�&y|{��N�LE-e&���F�I)AHh�[!���]LJJU��Q�p#N��v@D�D����i�-��bMd�Q4�y�RdVL$�r��H�o��u�$���ju>
�7	�=���0�Itb��߻�C���Ha�*����jP�$G1�V�
B�CM�wI�~b�����k����h���F��>k�+*%�����"E�2R��j���o��s�u�uF���;8k���5���۶o�[�o����r)�,_�����-��
�b�f�f��|�HX?F�}�®S�Ec�n�G��jV��p�o�#����R�{|�k�e�NeйK.�tk#ʍ��Ω�A��PUK��u�vӲ������[w�"�ԨIu��Zz�-)tm�x�6lןN���	�\ �F��a���Wn��1�G���s��-ֲu
�?o-]��r�3�4�Ʋ�V�nݲ�&K���@�FH"��3� �C�Ó4���1�B�c�<i3M����ٷ�͂�4�[w���82�x^�?��\��yR=7qx(��0Ϡ�Hdr�+��� ��pB|22�B�7�v����p�E�:<�@�c���IM
,)��e4�|I���Բi�ա#լQ�իG���c'7���9ի�pU	n^k�7����A��iaI
aD�׊:9B��Po�����o��:6r��Lq.��L��D��p�6�9	۵@�TE�ޞʈ�E����T��l�
)��&s'՚��G�
)!��;��$Y��Z"�N47G|��i��"�UHsQE��ȪLMyxx)�;9�w�Wd���>����Iw�S"�@�N��q�H��Q0s�V�Yt�Xf�7l�L�.�Ki��U�@���o۱����I{JwK1��vJAe�v����s�N���~+�o4��������R��	��[S9MLҷD�f��l䇕w>��:u��Y�.vlOҸ�7���`b�\"H\�S#A��Q���/���	5k�Mܻ��l)�p{Sg͢�K�x���B"t�ޠM���_7e�tŊ]��?-�+�j@G���������ͨm���{
��%�|y�����'\�\�(���d���h�u�ϐ�.L¸��ze~Z���&|VyWj����o�.�����H�
E�d�f^B��;�Ӧ�g@��r�
�	K���&���I ���[!^?#QM/p���d��~�u@�#%[�y5sٝQ\�o�Fv6ul՚jJ1�Q��ԻSg)hds���:��GUFJNH�2�o�	y
�0��ŧfj�)s6>�W�� ��H�;[8�X�!�Dtu"<Sԕ!H�����Y)��pTd'�F4g3�U�<���(t���)w�֐��C2#�N�AH���e�-ih}I���*IR�Pd���6O�ᩈ���M١�����LVF���nʷ�A�僀���\�*�9����h�$�;2��Kt���ݺ���M�ֵ#u�؁j��d�J H%l��.\���K%��'��ˋ_Q�(q!$��D,by�4��^;�ĜG�k�Pɞ=�n�Z�e^�A����ʵkx�8k�B��z�-�ױ��x����{���[�?���;B�TE�v�[��ˆak��[�k6AM%a١c
:�ꭑkY��QT;��}�X�=��r�4q3���5�A�kѧ�l�O�`RJ���N�y@<<�<&|���鴷@ث��l��d�? ���O���YӷQ�&թ�0���"`�$�x�QG���G�r��\�@Ÿ��@��̜I�9�2����qD�9�D�
W�����:�a\��0�_4��4<
i�~�4��Q�<[�� ���dS~^.n,E���5)�Z5λ�|��쑟�G-7�ի���Y�8t:6��#t6[G���O��
2��CQ�1B�� %����I����>>(�6H%i�ƒuf8��ݗ2{+�@B��;�N��[m�+�h��׍^<�m#ٰ^d��VE&�$X��c��=G�< �^�BBn���Qr���N�a�2+fY�'0_rFS� ,�4����{�UpR��G��{c?�����5k�c6��Q�?�.:w(թ]L!�
�.��`� ��#]����/����q�J*'���~NW�8
rs��xY^k�N�&�0Eg�J��P���)��}w��z�)
�`7I�-��U�Q׍�3����{#�$��"Q�n6k6��+�Ţ�;���cR��Mi��=�?N:��.����c��@_~��gr�m��1���������U�5��L����ã�cڜٴ�h� ��7ˡ��K�믶�7G�V"�ޣR@=�:Ե{.���}T��g2Y��:Ν��C�,^���:(D��i�1g�b���yx�@���5Ȇ����G;��~�pl�b8A=䆑<�u�&�w���K׭GM�7��5�z�,^�0/�r��SVf5��M���B:jYS��.qa���+�Q�F��2�_$�I�T�=���U�~�.�{"�"M��l �1�Z�U�s`(�@��n�*����S����o�2��r��\�V�]�B�ʍ��Ы�r"]D`�$6Q�ʹ�#p�Ѳx�L�n\xu��3.<k�\I�Y�n�{xx���
�1��-�_CmZ5����䃙������;�}6�s�ֹ��QV֑S�
0�,�p��T!��C\ ��t�J�"�*��9�k#.h�姪Wp(�G�WG׼Qc��IG�+��g��U+i�…�k�n)����W�\���m�ڹ����W���,�!�p�:Ǖ�c��

 ��umB�U��L��#�p}>����R�8�Zt�
�rW�9���L��}ъ����uԦm
j�0�:t�I3�W�m�����1�^-�'��A'qH�u뒴ek)dr���N�N�J%��S7K>��
�!�XH�|�U�'��!��C��n��r̵��d��Z����O��?IvH�5;G�aWD�&��]���m2o��J�P���8���;8�G�8��#�t%�����M R �U�,��{��ʭQ��ԭK5k�PqA-vp�lܘ�Ԫ����CAA�����u�A�۸)�¯��`)��q!š��Mn%MQ�F�R��������p%�z��n�پ�(D2�
P���>c���XA��vK��šTW3Y���x�����P.-:X-B��JU����#�X%��f�l�[;��;������Pa������������K�-�$�N:�g�޵�
��c���e+h���ug�#^��������E*1������"7I�r�!Un���r���`Z���L�-�eZ�~=�ߴ��m�D�R���-R�Cw�'+֮���7n��m��������yx��1�b:��B��!����<^�_aXw䈵�fU	�j��BHe�U6���G��*V���p�t�iE����9vI���'V��_�ތ�kg�u�9���=��}���G��&�n��E�������b�.z}�zvjبz���b�+�7X#�wU5D����w�ȚG�Zyy�WI�k��Q]ɗ��$�99���>�ϛ�4Q�&�yTX�]e��9@s�!Oڨ@��R�8�3C�XxK�kC{\CB�"$BZޡ��z���[�Nbw].o�x=�^i��1R��(d�hW�
�Evߵ0��E�Co'���t,1�} \7E�r)��0�L��S��ᶋ)E�Q�w��),�B5'��@�"�0�Ix�<TS�/���>��'aI���K��g�P����Y��Ly�>���=���Z-�ZJ~_��:qyPjw�*�Ty��Bg���]%�+x��9�s���F���)UA��z��?Sg�.�-۶��m$f�;��3��*@�<�4���a���_mܰ�����Ygά���˨S��rݺ<㲰V-Z����ͧ�����H���Q��u���ZB��%;YD���A:Ԡ�R�h޼:�tJ-j�:�IK8��"��T��,���*���[������P’�ܵ����?����p��k�G�<�_��.���v�^��8bѶYs�ɕWr�����Y-�?W�<G�B��W��@��r���\>Y�[O�W9<(H[krz�O�zE+B�z��!���u\9%:�S�֢��\��	�$�0]Zw��;��J̽���{r�l"z�*�H+�C��h��8��*��$�m!B��nX'Z1�)|oY�m�T/K�S���[I�9:�u��#���Ht�.���I_(�����Y�.I��g̦�f��iނ��i�Vj߶5�31�~�8�M� �ׯ�@��~�&O������ݱ}�ҩ���3$��c�$;^x�5�:�k�ֹ#�}��]���e���Q<�S*qA�d��G\�0�S	���[&���.��=��3f���u�(��`3����U��,.����ޮ�(�㊫�J�ȔHVuz"#S���2��C�p�.Z�S� ����3:wɥ�]B?�IS&O
"�3�=p�2:�b��R
 ���U��!��8t�LG�5oN-6,31��I����B!�H�la�t:EX�%Ѽ"&���(2�7�1��P��17\�k~ph#*�_d�)��r�f��q��y���P�e�g��ºG����3��c�/�b��],���� �"�]�MKt�����4)�I��V��uoX}%�m��e���P�$C*z��;B�ʞ%��#k׭�W^{��~��.�s�<��zj��㸔��ͳ��hi�zY��o��w�Т%K�J�ԓN��J�'>�}6qmݺ��}��
��G��[��x�\_ ��<�]��9,��+�۪��ᆳJ���
^~����232T�r�P3H>lЬy��w�y6v������̬�"���%��̦�=͙S���5k���G�Ǿ\�+d���؍Զm
j�.��5˦����N?�6�o�Ţ�b)~�xe
�9*�z����#��!{���5��ã�c��ybێ�s�m�^J�
_S�5kv��-���i�̲�7�do�������C�pT��	ʒ$��!t���&�/l���h�儻��'a\Ƨ`�	��G��ӡBc��	'���"!�"�K�~#�;�o�.�	RSH�L�ڬ�U��
trra�v}�uP|V`�c���ټ��PiJ�2�;�*=A�K=�
�#��pG%Mhs|��M�
cv)���sv� ES��#�����'����CN���O��ujW������<AE�
�+.�PFYղ�a�t��Q��u���mL�>=�Q��M��0�s��ܱ�åըQ��n�&	��{���7�Jd1���V���8ᆼr�I���#��[��D��\0ƚ]��:\�JAh�Νkҿ���~��M,�
�J��&C.�Y��5�W�<<<�>��õ����u�t�ɵ��q^���n���v٧խ�EW\]_�5��0�ч�s~��MX4���=<<��BQAA��
���J��n���T3W9Q��>�p#e�WNz^PQ��=��[Ne�zEE��L������6!D�X'P�V�\�2���/���,��:M�_@�
"�' ���p_�{�d�1"�De��\�y_�<ma�YVE�
���p�w���đp2URq��dL�
ŭ��"�U�lۉY���p�ls>�,XS)[9�JoC%�$m����D��e^�B1t����֯�@��5Y�ȩ�u�T{����GH�
����	eϝ��V�^����ӏfΙK_L��ڴjA�:u��5���}E*Q &*��6�3$]�%W\I'l�s~�9A�2S�#.h����]|��5LVUAQa�Ajp���bЉ���p���Y�>������Z�ET��s�����ȵt�-M�e��2i����5kFUm��Z����s��m�HB�S��n�%�|��FSb� �[� ��$
nX�-Y���e�_[�ߠlb��]5�NRD]RV���%�|�.��?[��
���:�*B�F�(;+�<<<<<<�M�l���C1�A,׶�*����F!B�����|=9N�2�!*�͠X�oS���|d�T�����'.�F	�᫴{"���C��F�=w_��h�	a"�K&D� '�J�'t�
�7�pb$C��^؄�"�#�H�֚ Lw�B��P�V�"�C��w�D��;��dϪY�K=�}6m�L�׮��-�G���-[Н�?v������Ò�.1JT��{K�ǡ��Z����L;w��ճ(#�rI�=R�2a����֫���}M�W$]���I�=w}�_�Őte�*����A��u�07���YS�uz�G͛�a�4ȢK��/Ʉ��!j�w��3���x��u4y�:mhm:�>��~�ޥ��^�6m��ã�>^�m�ՠ�r�	�eK)���z�[�)�^�[�%ŴR�ᄑ��]}��qH�0O�5�7�	_}U���
E�����J�m�f6�������Ƿ��"Lv.��!"lP�	�N���šV��;d�.^���]�B/#b�S�����c�{ ܪ�#��$�,S8��h~��/F[v?}?O�4ֱ"lx.�s�6�2Y(�!�;�4���V�6D���~�P�a��]F�hTڥa��4�m�r�D��A:��I��I�hb���ޑ��!��9�m�zqu�C����g�#O=/E�-4h`?���sln��5j�+��8�P�\�8�H.*Ux��+�ux�!�҉	����m#]}��ŷ�W�� ���c��ٕ-7���Wz����q�*��w�A�)`!��'W��,�;,�����g�[���V̡��}z}�U�'����ލ<<<�>��ڕj������ߦm
����8Ȗ�{8��"=rr��gҼy;i��E��dҔɛ��/���U%��գ�t!�����ڶ
���{����p׮���(�iKS����(C�~�X�F�H��YY�W�'����������RB�u�D�W���˻2�č�a�T�#ܾ8lD��:N��l�&*���"B1"�e�c�".ca炮c\Ѣ�*��M�n7X���Z��T;Qt�p��v`KR�< ��b�)w���C� ��2I2H���t�)���
$A©d���q��f����PhZ�ҡ�œ-Ja�nUBR�O	�H�3��l�	���Ͼ�	�ڴlA��֬[O�]y	��U�iثoТ%K��s�dGH@���0�:4�BA*a"]-�
w�*]X�ʈ�"LeBcy|�@Ʊ��\�u�����H���5���KKIH3��Q�n5��Q��1};=���Ⱥ�G�vԸ����q(��iа�ޫ��H{�γn��������P�~��/�Pyr\sC�c:uɥ>}�i�uTZZ�{ɩ�n>\��ǡ��;R���r]�����j)��
��u��|�fڰ�l�3$B������cG��ն���������Ä��v�P�v��a�	_��;LGa�p��k�P�N"�P�0�	�����4���C�h�W�ʚUB��lӖ����C�Uh��,B�5�PW6ۺi�0b�k
�N~v|��%hS����C�JV��fbBa�{JT���I̅�1bT%%x��^hy1ۏXs�ƥPw2/@��R�c▭[i�{c�e)n4o�X
�R��E�G���o��s/��Փ>��3)���ٹ>�4���;��A	�8<���R{�V�Y[�r,�J�Zf&�+�q*��H���⿥{U��qQ��U�C�HRm�"�?�~|睴cW�	?Saά���?.��'��C��Y�l�[���p�NZ,��xt�A*�k!�t�F���!�C�x"���T�{w��B)�9��/�E
u��Jhт0G�7��aټ�L*����� Ss�	'���ǡ�>�:Q�&M�@�9|�괿/^��&H$������W�����������F�����!R���r*�&��
�d�?�~� �Ef;��'�P]���jAn�%��"p�PZ��ul�@oǺ9�s\#��mG���e">	
u�0F
�g���BX-')⡤���w��6L�ʩ|�z�
��"r]�/D�D-�ivk�
i�.�y&{��
(�N�X��Ք��<R�����B]�5�Z�~��ґ��J�=�!�Q�����/���F͚4�_��F�_�=��+4��1LVխSl��1���!�� ?7�ԫ+��7�K��&����k�@�֩M��2ɣ|�łx��T�
�w UX��S҉��"�I'���]�oue?ɐS��^�}B�<��
z덵,� A1�R�[��Rɮ��lٳWe�l؈�<�8^���±�{б=z�{'T�,��?��J����ˠ���)u�\ �iݺP@�)��{���~��,v��y�q�nڱ=�}K�¯�N�:t �C����.���L�����8ÏO<<<<<�3�I�E�#�š"!��PP�T�6��	�>����R&�6a�~#"hn^�yI��#�'����d�V��tA��a���zg-�� r�!�+���r���MB�zZ�g�?�p�n�Ra�)"��M%믈$
(<:��#c?Qe$ա�1�B���Ĥ�P�(�H�u���Ga� �f"p�O�=9�deeQqq�ܹ��/\L�Z6��w��I�&tL?����)''�m�8�G��IM7��s�Q���8r���SC)��>�]�����i���T-��*, ��];w�?��t�EE����]��]�2���s�TVp)OTI%�ė-O4�vp�Yg�{���+i�n�n�;8��ԧSg���8tP�vmv�|>�ڴ���7��?�A�{zM�bk���=>xoթ�ši�*�����r��֫O��{uiݚ��;��
��i#����������]�A���@�)?D��Æe�!L�Z,�n%X�hN"��&!�J!K*td._�ܼ$JEQ�GH��
j�����ʆy��ovMC!��a�&N]��n��*�����!�62�
I`R7��$¦ћ��7����u���HQ$H�J��U����	�á��"��fN���7�Ǝ$`~�ƍ�m��������1ўݥ����}��+.��d�YDi���EQa!�v�M�c?��y�9*M&i떭Կojۺ%yxxTq1H���>�C$]�+��bnyq���=��Q�0X�F|(���۵��O9����s�{��0�HV�˫���ժ���ǡ�Lyo8�`1�zg��J�����}�1�2�^Zm����ܙ�����ǡ���t������ڶcl���k��zyxxxxx|�&	�/PʄUc�0�˻k�E(.�Q�2�6-F;0Z
)���N\E1r���2ضU�	��]2��J��u�N:�\%A�
	��#�y.\=�8CB��iF�!���`���j�A�I'n�N�n8+%b�k9эEd�8��	�_$m�j1��dʹ�m'J	��H�0uI&�Q�LE7��.�#�l�_�.�h޴	}3cm�bŮ�]4������oR^n�&)ӗ�Z����V�ZC�O����W���\*(ȧ�]:Ѡc����'M���K�6l���%���@}�ݳ�}���c/*2*ri��H'���B�A$�S$.������Z?�x|w���
�O��Ϡ>�Hy5k�o������=<E�.,���zM�9��n�X��<������&N�ߏ�:�1�v�I���z�گ?yxxxxx|��$;]6\�p�VS����zc����"�DB�U6�x�̶��C�
ke7g,:b�M[��X�E�'�h(.'r�cb�����u�(c�6����(bZ�1�!lX.|��<T*�:.t��YJ;8���e\�S�&"P<F�:<��b�=|L��7��#l��\*/�M� ��{\�^�Y��V!]p�P�۳g}3s6=������%�w��եs{����8y���{������4Y��H���!P�9�H��1
R��*o����qLJ7LV:G�m�ŔT��j{���vѢQ#����Z#E̓�K.2�.9eyxx��پ=�~͵�G��m���|)������ǡ�¼|���KhƂ���€�ݹ����������]��:V�sjk��&�h�'+l�1��E)׭����v%�B��H3B�Z8P%�}p�Җ� ��6�T�@`�-e���(�T�J�D�3�Ze( ��(^��$��B;�.J��:iH(F^��	���F�L!IaW(gIB%Ld��С�\R�cb���PԊ�R� �e��5���ֹ#��Ͽ��[�˿�Lh'��U|n$Tb�����[�<c�� pN���{��>#�n�C��		$*rI�҉!�ʊ��N�H���]&]9{#j��<<�u�J���j��<(�&�t�D?��r*.�<<u I���7��C�eɱ�'��u���8�ѶY3��M7�i��J�l��͉��9D��0>�4�M���2��
e]V�H(nOh�B�;HD�w[�::��*����HR1�E�$"�����}G5*�k� �점�Tb�Uw9Ann��$A&ԗn���h8	>Jª0	�i�FV��}px���ý��ɶN��J:�7L9DGv!ZG9�j$M�u
�ѭ�uB�n��H�"a����K
֧�v�SϽL[�m��l����ϩa�z�z�:z~ث���G���������A�:0��r�p�AT�U	%FQ�2���r��fy�q�*�n���&�s|��v;�n����
7P�Z���=�:t�g��gj�ԓ��~�[隡C��w��ۺ��3y��>��aL�x����E���&���M��v�}�����r B_�*�(C�q7h�[�0��\�9��H/��j��-o�y��D­�I�Co���G���BV�ª7!���'V��+���(��a/���A�٢����	��v�>�1)(�(U�kC��wSP�2t���f��x��V۰�D�0�8��P�t���_6Z`b�%l|0Ϯ�@qQ-:ḁ�H�!y�5�^ݨ{�N�hڸ!ջ'���Ǒ�����! �V�^C�v�Ё��5�,)�e��(��I����J,H�=U���f*G�*R�4�u҉4��ʙ�qp�| ןs.�N� u���=z���55���~xxN@�?�|;1j~I��]u��'�M������Ð����o��Z5�nB.#�ޝ?�1���~xxxxxd��̕M"�|��WDH�SH��4Va9�/�?�h�C(����p�FGLL�'�2egQ�ZK�C���)f&,9�Եc�!"{�5B����U�t.�@��f*r+�4VI�崡F��T��AC�
a�����D	��2a��k2�Ck��#��}��|R�����2ǦB^!�z��Oœ&A�'�R9B���m?�o�ƾ�[�6�y9hݪ9��?�֬}��խó,�1�Bh�}	B�͚3�r�jR���(W�le�t.���7�]<�GE�B��*��<�n|���T�^*�ŋ$�-����3ϢzE�t�����E���©�}��5�[�<<<?@���-�R�:u�_�>C[��� YrL�K/��\v�w~xx���ʢ�&���O��o�<c}[�ߵ=��߲؂	�ŠB��+-��UE�τ����I�X��2+p��^��A�B���϶[%a��hOf7XK�4��A"��
5NJ�T�	��_i$a�
�4�
(�)3����]�f��AW�1LX*+QD4�V��K\^"�(+:��J`�+��f��u��E\�J�,���(DE��\�6tV�=@���+�~����j��4o�"�_�nٌ.9�j�仙�u( ��҅�r�q�Tۉ��!R	%�D������K��A�[ !��'�@};w��?��6v,-^���e������J�t2U�Ă��a
���hp߾t�/ҨO�Ѧ�[�@� 7�N�?�n��"ٯt'���׫�u�=��;o�㯽F_̞M
�۵��.��.8q�Ox�����Q`��_�20��}�,�^2��@PD����993T&q�����)
o���2҂	u�.���M����a�Dz_�Z�a��F���3�G�+e��&�z�Id���D�:�;ƅ�6(L�)�����\�����b���6��8����L#+�D#��cEk�3�Z�
�ɠ�#o��p]��t�E���]�(Y��kѐ��23�f͚��C_Y�d�)�ʍᖕN)OL(�E6*7lV*�#ղ���Ƿ830{����1c�ޥ
�7ӾBG�֭��g����
�c��q��(ڷhNo�=?z4�;a�*ٷ�� AO���%��B�H���G��-^�N�����%K(��1iӤ	�y��t��'s^2?>�����"��� p��[/��B����~�Tɾ����Kk3AR'�	��N=Xv`:>��$���T����*T��g�X1[���.�
#d�k]�)-����ҜW`�mE��j|/Z�0���'��N
�$g�HSZ�I �7�F��5ĚnX���%D�+0�N��$0���0��V���=���#��:"F�Q!Є#���>O�z~t�������Ĥ��\�ʭ(�d<��ޔG:�ǻ;�>p��|��tlϞ�K/�W?��F���._F[w�ds��=6/�+��իU����y�A�z�y�S��v�Z��%0���:@O_\PH�|
�6@V���;R�H�׬��vѮݻ���T>W$�I�,x�OiX�.;I.:�$NNH�'G$p��ؑ:�lI?��Jzc���iƂ��u��#�&%�S�j�8�ٟT�E�)y5jP�6m��A������5��|E{�@�q�Ȑ�����c�;������ȼ�߭�A#L��t�9�V����
$��� �2��	�'��6r�����0�B0I��h��-�W(�WbE�Q����[2CYQ�l��ua,�7b��jrqX����}�y%�������]q����t�-��Ҝ��;�=��BD�w���*��=R	�r���ϩ$��!��Ny�O�l��S�ɣ�$H��-ZЯ�w��4{�B�6g.-X����]C[�mg�2[�E�yԠvm�تum��'$���@R+?��t��{���ŬY4c��'E�u�6Ѷ;yٚ9�T��O-7��Ik�Ѯez������O�wݙg�߲իi��4o�RZ�n�߼�'jdffP��<j\�.�m֜��z��������Qua#+��a�*��4�쎨		�o�J��0���Z��Ue��-:����9�������/�E��%��b�p["\8p։�a�DD�p%��&l�÷	��p�9S��R�<lk��˛�&&�{@�CbBciE��������ʗb�T.�NܨJ	21��P'!�]��Ϻ@Bb�LX-�*�T�	i�����xy��T���u���T�l/~Zy�?��
��Ɵ�����;�������q�����,��& 7q��:="n���B�u���Q6lV� �vQ��Z�)a�r^2��&�:�
�e��@{b��u=����"rr�$U�
J�jg�^�,'LU�F�0�1n;������B��jI��Lx�@�QX!�(V����TJ(˸FȸI„�	U����I�.�}�޶^�9GD��³lU��r�	W��8҅�*�b#L��w��5U�鶑��Q�C������������������E`t�H���Đ0[�E��1��"4�?��Ȑ�A�a�$De�"�K��<�cd^���@�"��i�۶��O�'�o�<p~R��z7�|��%���ԏ&��4BF�I&6b�i�AՌ��$'PQ��#�Si}0� �p���uv����H�&�W`�[ۍv��	�U	�%�sz�������*�G|�n+B�z��w�ķ����������������qD�Fr�;a�	@[
Lp����R9B�<�T�7A�tT&��C�"��_�
a�,�~T]�?�:'L�-
+p��4w�TRC��Z�����bڀ\�%��qs����%�:�ĈD����+b����V���#l8��X`BViG�0�s(��>aV�$�J®%�zj5��ϰ�u�xxxxT5�s]�?����/7^FyyF�!�ҭ/#��K�<'>����������������� Lr�$aFs�&q�L������F��۰�P���Z&�	'*�Sw���!LX)
�A$S�#Bo_+.���Dq2�;�S��Y/Ή9-��:�P��p�
W�С�T�!L7L���B�d��vGE����e�ڸz�
y��MD�چ@}�*�(Q9L�3l�\1"��'ҭ�>⪼2R��*�q_׼/�D/�xxxxxxxxxxxxxxx�*R����X���ߝ|�Q�[(��N�0b���)\���j;�G2�OXgC�kDo��QWV�@��S���p=��#Z�ڧPPI(�_����ۖz�ɤI$n����6�([�i/�da���}�[ҵ��nT
�6�*��=(�q�.!N~������b���iyxxx|�Ye~�;%��T�����%n>���^҅�J�le����������������8\�#Qh�B߉�dC^ٔ�6����)��9 �t����)K����X�z"
sV�Ѡ�O†�r�Z�
*!Co�Y�t���4���jl3��	l}�)Ӭ/[52zh�%0J�m	��$�	b|(�4>�A��!���hNH�	m���	c���I�d��$�?'����PӍ��1����8�H��������ʍ���7��T�����׊�;����������������8a���'�/օAn�+��uI�>p�� �{"�+t���FL���u�Jڙ�H'�貔`c�7�s�
�n�t��5b�&B�iqźiܲ�wĸ9���q�(�2�s~�P\&�	�[��`#�90,t[y%�7	��ac�I��Nb+��hF�(f7M�2������]#��<.v��V��_?^~*q#��"�EE!�R%8/OP)o{����������������q�"p�D���`�@�� �ND%�rH1/պ ��p;֑aއ˪�"��b$�x9�3D8bGD�Pq���&1"�>�Է쎨�M�03mJĶo�K�PUpR��&������(�$P��m�#`���DS�F��ܤ9P�3�UYaL5A�p�3���I�H��qyDf ���U�N�C�9���	��BhU䮈�Ҫ��$�]���^����������������8�����E"�t�s���'ĬM��c\�H�2Ad[��6�T`>��N����"R�mr����#E9'L=�h�8������h�$� ��A�5bt	��Io������P��C�u"�z�"��:J	l.RIKt�,�Q�,�01(�D8'��!;�Z=��>\���˒���GU�+`��J��+Bą�tC��X��!�^����HU���.[��G"t�+@�����Z�(��DI"�J��� 5�!0��HM��7�ݔ"��"�
;�B�7�M�1n
�\Q~�\��+��z�]�cF��W��e�
�%	U��LC(�#TU�0㼶�؊("�A��ň\�0������p��ԕ4IQ�4�f��I��ٱ i!$錣���ã
�R94�a��R�5R-cwi���jBp��=^Fy���Hyu�H��8�����6o�ʯ�Jeߵq�攓v����mۨd���}�Nڶ};yxxT}�wm��m����q��tM�B_����`V����ˆ��WA�#�(�'��3!��:�]ᆯ�z8b���	��/��D�`���0Z��������j
 ���c�l�/�v�*��L[i�B�(S&]��[Ҭ!�T��kw��Mٍ��I#ޘ�tF`�%e����{ģ��L�{���r�–e7��������QP�������%O���̸�� ����Ύ��ݒ��:k�Z��^֩C�7���5i1o�RZ�vm����ɡv͚�k���&L�A}��e��FU ���7����
P�z��o[%��`�rZ�jU�V�Z6jD����23S��v�F�6gm�BhvV�j҄Z7n\&<dyu��p!�X�����S�V����
��O�I1�.>e
�ۗ2d�w��E�?��>��oں�:�hAgs��W�zV5��%�r=���9����@��-6$���v�)3g�:�7T�}Bsyn�_�JӇ�m�X��^OMe���o��Χ�:w漣
�゙;�~����'�q���d	�@{���᠎���1俟y��u��gW�mV�_O�-c����/�+*"�(���$"9�
��|�ypM��� (�'�f�� �;�qBWM�.��[���%	,�������N�
Q�D�n���q�WUO���&F�aq�̲¸[��]�~¤�(3T��B/k2c+Q
���P�Jj`%)��cwG:��z9�mT�/�Cz�F��r�
�XCHX�иµLx2��ãj���O�룢pX��r�IN�"�I���Cq�#Fˋ&�.�Ɠ�O����>��IT���S��5oF���{ԷK�<��[��oT������|�F�&͘��Cs�,���G�.��_v�r�E�=��<p?�\���l��d^qa!��ڍ~y��Ըn][�/��=��HZ�l9��]"Ń�S��N�ߟ~vŕT[�[�?��~�y��hm��@"#����e?��K/�nm�0�r��͒�[�~ H�%a�N~w��a�������ԉr�ώE��,��).(�{^|����:ҹ'�H��������x�J���3��}�<<e�	���辗^�}�|%�$�_+/�zw�D���k��G�
�:���MKW��+�t�С��nP�6uiݚvJG �6��oN�괯�'��+��3�{�;�`ݿw'��??���O�s���?�VP�c�ڵ�A�S��.�b��8r�l�ڲ��ڦ
��ήp=�Iz���u��������Gan�x���`� �ذPF	BAD�6�(��X�S%r�1������"LH^�,�}�e6*hF�P�z_�
�Wsz�/N��v�4��0	��I�V\�(F��h�����6��*�j�:���ӆ��*)Ⱦ��CI��,���6�xB����w8T�<<<<>҉�ty6����)o��,�e��K'��B\�)o�S%Y���p��/�o|��m���d��bʔ�Ă�˘�x�T�����:{:##A�5����WI�p������5�s����c����zzm�X�9���qh`�>��A�^�'��>��&��*�+d�$�/X@������)��ͳ�1����
;�]�ժE�_̞��Jq������mWf�%�w�?�~J�g�R���W,�Y�ҨO���
�ݛ�9�~s�}TC�����4��c��h~v�L�^~�锟�ˢNj�ͯZ���}6�����^~���Ӈ��v�����i���8���t�~�=t��/��
�B#هl���WRX�K�]y�=��GC��XY�Xe�K�)A��i��
��k��A'p�r�$����TW��ﻟzH�u_Ac�ҥ�3�㏦L� k7l��>����������l�)�>��+�~۸O+%TT�͏��m*+mٶ����q�����H
G����fuD1�FD�5(�k��hB���bH������a��8��CWF�
��+$�]���|e�� t��
ۥ���L�᭴	"l-��4�d���5��PJX��9� aT�k��PbCP�Ro�[-�	
2V����IoKn�Ѧ�8=�� I+��&J	Lh/%���<<<<L��T� ��_?.NT�=Q^���D�8*
�徦۶�w�v��㏱��
��V�֦
>yu?����g�s�VԯKW�.	��=�\̫Q�IG�0(*(H�}��3����{���陷ޢܜ��
7R���7<07�]���*�~����sd�$>@D t��m.[���
yƵD�@
, "R!(g�$rs��V~��<<�E���ȫ���Ѵ~}��O�a���ߣ>��x� 
�^���=;t`a�m����G�s�F1�y��/����2N8�1��@�w�ES��o�J�?��?�W����D:���o�j��G��
%���,�)f��Y�j%�>"��OK�&W�Q�
�"D����1o�2.΅9�,�%d?���/�����Y�v��g�u��]l��>���p�۟~J{��8.�x�M<^ؼm+�>�CzN�p�[�QZ7iBm�6ev����5Uӹ�PƎ�G�p���C�U����`����\�6!���`�����0V1ߣL\��VQ�R�|�\.[�C��WO��*y��"��re7�į�R�ȱ�=���]�n�Y�yy�
��Чl�}�G��z $*\-֑"�����^!�=�w�9�.�N�9�1�B?!�m��[��+�a��??f���8"��Bi�F���&vE"fͰ3�sBD�x��vB�֏� �u� a�pn�BC��,\��G����C}Ah1D�P�Cd�@�:���)�l?���$鶾��mS'2mӄ�"JAZY�(�5��ޣ-�RxH�x)�.(L�-���XR���q�j�(���v
B�E� ���:�<<<<��R^H)#�I�T"BeCG�*�u��+��QR��J%��B*��m��$'�ˇi<����/�.�cz�[>��_����|��j܄�O���ƍ�ݻ3A�����6�{�q��怒Q=�A��"D}�`T�˵�dF�v��ܧ�r3͘?�:J���������{�Ґ��O����h�
9��~���'i����H�3��8�O��۽/�H�7n�DF�CW ����ُQ@�X�~��Ԫ۳�- x��رsՖ�=H���� ���G?�A�z���D��^C�O�@��?�Au��b�-�(q��~�U�Z���ѝ;�~`��Ӝ�h꬙��,	L�8}�5Z�a=eʾ�m�ft��>����{����p�/I���!L���}:m�z	I�����/�@�������sO8��I�f�|�\��۲��zхt��m5���T ��o��&��,��:v,��KV���X�}�n�Q��=��B;A���c�҇�'��ͤ,�'?���0�Β]�4�Iq}�ɋO9Ŏ��j�\!6�KA`�7_3Y�_�L����8�<��?r1�?�=K��2��B�ÿ�
�iҔ]h�z�)��7�alpt�.��i������}�p���$�K�k�в�����u�;�t��>����e��7�D�trJA�׮��1�yO�u�9i�tS��A0��*��{_x�>�:��K��^r_0�"�u�=M�>ݮ��+h���'���Xy� ڢ�7h(��|�g���d[Bl�V
��|�>�W�~:���c)�����X�G�\�"��ޣG_}��C��ӕg���ęT���?�>+��/Y���Ȥ.�Z�/����ʾ<{?ŒyxxxrP�����l��R�vK�TV�Ъ�p�?#J�D��0/��L��0
��/�0�9<NDI��F�
�t����y�$��\��K�IF"g������3E�\�E	����2�����I+��ʆ{���I�B��Vg�w�lo�"ZaU#�~�4�ގ>xѤ ��$�::ۊ.����
���v����Cii�g�x|�H&*��J�����t��[��2)/��K����������ٟ~5�߃�z�q�W8&�8��K��`�$O�Y�x��:s&����8�0f�!��ߟxB>�D����6���鈳��H����9Rp�6A^��wџ}��~�M�	�T.���	tß�̳3?��WG���'ڬ%E�'��_���G#$����ޟ|��� *A"Lԯ���	�S���W��e��(Iع�'�0�	<�_ΞŤ�Bnj��9�UW.<�d+~ Mo��B�u�³�1���^��ʾa��,B@���4D��o~�	�Џ`��r�����j�@RޯP7��;���ZP3�/���f�W��a�F���{�Ke���j�����Yt�/~A
�(���>o�
Ͼ�u��ad<�\���&\+
wP])v\u�Pvl�z����0�I��Z�")[Ü�ӟ��o�M%�B���������~��?�,9���	�چ+�8I�4Yʮ��͛q�B߽�b�GS��#
�Aˆ�Һ!����	Ϗ�R�G�}w������CX*�B���9�ȝ���#п@P�����˻�/d��+\n��_�!2���뙧��D��]
HKV�v���cr�SOѭ��'�_���f��w�E�w��)�{��\����>��5¤fgU�w�
��9����8��&=ɟ��SA�O�����T@'2Iˍ�bŔ��*�|���K0�ݰn<)eQ	�$�wB�_U��
!�ߦY^8Q�"��)C�c��K��"G�q��o��6	����d��9�$D�@8�A��b�H���?SF���G1
E|i�*s��-��V~�
a�����II� b^k�*�8@�c%�u��)�r��h3�v�m��r��-��O���'6n�@�M���M6_>�y|���������ݶm;���ڍ�6S�vm"��tؽ{m�	�<$��d�K��we�sD�$���;>*rcT���h�G��:��=, ��|H.Hq���$��V�椙{4� �Ān����B�㯿��Űwߥk���3640��{g��D����p�`vcv�,����C�,�z�<��x1��&����tr��y�����H@<�?1���q�S�^r	��<�I3$ꍑ�$�֮-�}��ԣ];lآ3�����K��B|������O`��B�u���ߊD鹃N��G�)'K�h�sΡ�N>�IC$njp��׵�]3�Ad��翠Fu�rH��^����Y�A��;���ۯ����_@���n+3�Wo)�\��O��y����C��N��\~9��03�AP"�I޾��X&7/8�dv�lؼ�����4G� U��Cplm7cy��� ��I��c�=��-��-[�n3����+���_>�d�-�__c�L�����]�6\){�E���F�ߥ+�/*�S�>��(�-b���}���߰�ٲq#�Ժu��A�թ������'�knV�	�Է/͒e�X�|9���kS9�������QЗ��;W
�Ӥ���D�O�` 
\_�!��{�?���GF�ʓH�"��K��ۂ���_o��Z5mB5%'���
 *��s˖4�{�r��90�n���8��o�Aw��'e�{�ܿo���ɑ�N¿<�U��#${xxx1���rsfg�嵍�`\��!t<(^ܸF���n] :ϷaI/��'���m�VX�E��F�0�~`��[�J�yr�j�"L��L`6��ɇ��:m�S�8� J�Й�M�r�9Y*0��&!z�I���ҡ�t�#	��2���Rl�p�-�� ��y��E����E7��X5s�@��h�xZ-J�_xUl߾�-YJc?O�$V�Fu�҉�؟I�tX�v==7�Uj߶�lތF�7�zu�B��?�<>�|�})f�P��}(?/7�rc>���|�����˩]�VMK�����z�v�P3�`��ܡ=
8�7լY��r����W�Ϯ�Q� _7U�Tb��l\$��W��z�\,������v�vtJ�.'�ѲH�0ă�+�`f�ϯ���5kF�{t�0Xä(�v�&N8�=�h�k֜�9�l�$�1�z�_�e˸�IaIܑ4�K)�lپ��������J� �c�p�I,� o7{���㤣�ҫ��7��f-X�!� L�3a<=��t����8&@���,�c�T2��*�k�&Ǥ.�GǶ@�eT��\�����
ȳ�q����h��_s߀>Į#��x��tb�>�~�u�L�V�9����#�A�Y@ԩM}��&VRk�$"1[��㏷�nw_͝C����!^������$�87I����00Qa���E�0�U�Q�,N��1���䈚9�F7�3��`�0��
 �k۶ԶiS��1T_)~t�IЏ�Bga����i,�`�1Q^���J����2]��g���"�q={�w.N�bA���Y$F_
�Yj��`�
�F%�b€B\����t�Q����Ͼ�&-]��&��
y?� AH>p��^
B�w�X�Ř�H����0��)(��ռ�4�G����y�5|�+�#
AH�+_�Es�6��\ȥ��	D��I�NV�0$>��N"�X�O�\$z�V�L���
"���aCW�!�4��e�B��`�̲�n�v����Zqa�*�$H��*V�@%��_�QT�
c�a5��cv���Aa�8��U�s�u�����E�P�|Q
g�	(T{���XU��,��,��K�`@�B��!�6@,���ʪf�ar�؝�=��]�g���AϘ������H�z_-���G��B�����Qݺ�iб�i��U��oӖ���NW9xܽg��$���f�����q�h��}�PY�L������Y�L��ˤH�'�8��y�+�I��\�C��iөU��t��C�a�z�<�I�����1Ń�I:Γ���}zQ}y�,\���~qeVˠ����c
�o�<op,Q�N|��
!�`�5T���p@*��J��/���H"ה!m�"I*WH*wH�e�pU��+���j�p-7���¸/,� Baee�}.�_�8� ���l�N�y���ZZ��W�&�Ә��@��Zv�@�L�1���[�����G�-��sP߹��P������'H<���|ܗ_��j��5	a�y�����f9n@�ޯ v��}�yw�YM�!�!����˸爵�~��f�c&6fg_��_X�3���_��v۳G�n�Ƽ_͙��	R憿���Ɉ=h�Y��
@;��hR���+�xx��=>K_�+֪1J�Y���;�>!���]��w��j�g�~0C��i�<c�#��_�gӾba��0!�v��\��9S>�t�؎C}A��r�l�h�d�
�B�����ϰ?#�h2{�B��v%��x�x��s�n��~�;V�1�D��ͳ�#� &���ǁ�@�E>#@�I
����G���"B
><|8=%�r��pÜү?�q�1>���Ǒ'�0��p3Խ!�`b�2…���GN�*L���a(}����a��r�d䏨�ˆv;F.1������7a�rS52*�v}��0A���l4
�0���XZ��.�H�k�0TB��0��r(K�$v��F�[�[1�-� �Lat�
�r��a~c���g$U�,-z���Rۮ��}��tZ�j�׮�ƍP��-h��X�hݢ9� �-^J�N��!��4n@����a����73fӜ��9U��u�k��ޕ��ߌ�sh����|pؿիS�̶l�B_M����먦|E��
�of�(��x$��7�%)��:�oG�zvK�_x8]�t�$ֿ�͛�P�V-�O���������D[�m�i�F�d�r�;!�mݒ�5iL�'Na���ZI"��������`�dŪ�Դq#yԐ��i��`��g��ݓZ4oZ�L���ڱ=u�Жv��Hd���(ڙ�%˘N.�A9E��Mp���ۛ
����&�Hӳ[��VI�E:����?�"�[F:wH�s���Kܞ�=����������EE�~���f�~�v�ي[�j5Q-��p���k�[�^nB�#2�)��!��9)Z_�)���8p�!Zp
"10f@��'O��︃�o���c��2$F>�ƨ�ķ�b���<&���x�n�|�"�SV�]ϳ��5o�\k��Y��9a���PV�	^�"l_QA4�~��o7������a};u�f�>hݴ)��|�q^&�d�� �1���x	�=�5S�w�"��G(+7���;��������^�;�~���Ԫ�x�Q<���g9G��O!Ȝܯ �Y�����Q!�V�β^�&Iq��iI�gJ|}L|~�(�S�V>�C�߭�+*�gG��⎚�f��a�q��_NvYw
g����L�Ll樂���n�QJQ�޽y\��'��2R��Ѐ�kv����9;z!tᾀ|#��yxxx90"�Q*a�m�P!��PP�gw�DF���<��i;����%���W�����E�u��HNV QVG�0ud�TE�i�]7���	g6��U���a�HH,����>�aI�����W�.�?���,~$���BۍI|��ԡ�Xv�8��"H�*Z�Ra\#Š�}&���Q�:+ ����$F�ZP��O�J}2��Зr��S/��q�1�))��燽JE�
�@Иz��1ӡmk���j�:���h��i4|�(&��o�H#�-E�>��nFc>��>�lu�֙&M������z��Q3�0�f��ԯW�j�T�P@|?�?
>�X^��Ͼġ�	z���G֭�k�"�9���dO��[��^9��ڳ{�p�g,�t�ܑ�ԩ�D;r�ԯ_�fΚK'O��-��ǁ�ԯ��b���[
Q 3}�y*.*��<��(X��(���^��7Q�-X��u�uW�K�lϋ��\w޼��U
g
�g��7G�_~M-[4��o�{��(]��,�M��%;��ԭMc>GC��9dW�rb�ߧZָ>�wq$]�����J�0���OUnܕE�G*���$�E��‰%��{�W�y��q�����"��b(ȸ�C�U#'����.�i�{�Qm)���ꫩY}�a���n��>��z� "<<<��7۝������F������AӼa#��y��HR��O,Y�R���P����|?�b<U�/��6��]۴����G�\aF�i2�8s������]Guj)�9F��%z��79��;�Z4V�@T�v�%�]��� �l�F�$oO��
�!�7c�$]Z�f�+����e�p�+��>�b�$'ɶ��yCfQ犇ǡ�fR�<�Oo�m���3O�_�P��yr^;�ǙK!׫7�)f�a�Թukv�-Z�–���IQ��9����v5��;�D=& ���1rLd���3�O?,��4z�8����z*U���<�8�7��Oi�|�jZ�۳�u���E�s'H1�_����۟}ʂDȁ��zU�ޝ:��R ���M^D]u~G��p�E�4Y;E*ry���6���8�ě��r��B���K��{�9'J��Cp��@<<<�0ĝ���ĿЂ�EZM "7��Z�)FgضA��-��
.��¨P&e��8�
a���),7t\�B2$w��By)�ɖn��Z�qrn�������wJ0�dDA��-��M&��BXI�u LB�dM��׿��$#d����L�CH�D�gT>sߎ�u�rL5Y`!�+S�,	<��Cb����ݥTP�O7~�j)D����O��k�`1cђ%4o�bvE�p�@jټ�ddqH�9�p�i_Ϡ^]���^N3g�a�c��\�g�'�q�f�H�vm��2�f̚M���䏘�2�����|��5�>�$�..��zu��gLݻv�en�mr�8g��Hɮ�	n�K�?����)�xZ�x	���v�H�\-m�ǻ��d�rZ�d-Y���JQN��];х�I�����C��l��ƨ���F���N�������k�R��,��O��H��pX�҃�����n�b�U�K�������{	����i_���1���6��r�C�և}�tW(pseT>�"��+��8*B:�H�z��J��[�t���o�t2�������ĉtꭷ0��8����3HH����\L�CO�<�o?����H$|��L�>7z�'ş>�:���ںa<<<0��Y�=�}=w�끈��&�4q��n�0,En��3�sN��DBf!�
�� .@�����MM��N���fR�ΝY4�|�7����g���S��ǂ��{_z�.2��^$6�l�D��
7���Ȟ26歏?�1{�rW�c$���3d����<�a:��q��Q�c��O�݇�9R��膿��.�b�:�<��k�r�����;a�����\~���3�}s��a�Ȼ�	�<0N���IA���1J�ѿ���wqH�ً�xI�����#��F).�����$���U�	�ѣ�а��p� �7��z�~n�xѳ}�0�X��G��:�]�n�8V��rAxb�;p۽ �ąF�фL�㮻�ŗ�_׮�̮�AΒ?H���Χٿ���xz��7�]���N�,J�
�A	��|y�^|��L*�yن��o�����܅�~մ�ӪI����8�`se(����7G 	H�>r��q��	��1�$	����a�'r�sf�C���3X!���%�Ћ+X��
-'�d�V>	�6��'?�a]a�0!�ȸZ(��	��
%�;S�^H���(�PVfO�>B$L�x#���C‘�����{v�xy�e[[��"�1���s���$)Eo���EU��Đ�f
�G�fM�C����Fy̹7�a�&��[�� k����@�,��ܱ�.#���U�`�j�������?��H��� ��ζ���BX��p�\���]:�g���F��.�غ��z"�Q*l߹C
*���q��O�P:��V>�n۾���29>=P i-���9��	���M��������H
V�yr�Y���G26�i�
��Ayy*�~aA!'5߰i�ܹ+"��Ir���f�֬�{|��M�H=��}׮�_����
��ڵ�x��Q}z�؏?�5kײ��p�+T$��R��"���-�86�9G*r���q�q��F�H��C��|��@@�����=����3	1��PCGy_�z���3�ޢw���!r�`6"fN�d���ǁ��/����2�.Ƹb��b�1T��t/ߧSg���3��JnĘ1���Ǘ^FW=��q`f�~�3��׷s�-������a��c��]z)��H����^K?��.���r�/xQ�DH���ĥ�2����$��_?�)�+��7�L?��i��ɼ����X�q�z��^q��p�|(š�3g��ԾYs�9��;\��I���ߟ��~.��isf�p�?p|��sX��u~��S�w���e���M�&tb�>�F��94H~���p|�~%_?�����1C֮y3
��;�2�ޖc���#࢓O�Q���5�BA�ྱ�h.��>;q�$��x�r�tk�N��d|����8�t�����؁v�p�<L����o��忹�>z�v� ��\��c��¼\�,�����G�ck���H�;�"��у�8�}y�1*�͓��6Z-������8�.�nԆ��6v�rA��Ru�)r�P99��p\#f�x$#�Aa=
*�p�W��2	�Q)�="��;J����I���eb	]'V�Pm֊ߩ]Aq�*��9
��
8x��4�S(�6H��Z.��jic�!��ЉA����]7�SfK)0���b��ˋd:O:R�:N�0p��žJ_"~�0�� ?�5TN
�f���D��3C�oH��^�ᬆ�Is�.`�$S�mٲ���d�‚�p���;Q��[�e1a���j:;;�7k��>�0���!猀#N��r�7v�s/���. �T�
�M�t���1��� �Y�9�su)���T�8�y�u���'N����}�}�]�Q>8�u~~?`��<4 4�&�YV�2Eת���m;�)&�<ذa#ǭŬ%��5uR���H�dw3gϓB^)��Б��rfT��H'��1҅�*�Nq�J���K�O�m���f��L<1�u��{)o�6��"q��KA��^��d��Ry=�,�����_����&���p]`�aHH��^�A?�X�X�w�TC�Ĭ�n��r8��-Z�u׫K���!�34p�,t����h��?�s ?�;�lԻ��=<p݃�ڹ��g>�_?�sg��#���/�dI�#<��6M����3�;Ά��uy��opMBL@��%�X��EQ�_�KB�����O�so�f����~c��\:�Tv�7)��?8�<jP���}k��"nI5~|��<�h׼�?�Хuz��;ح�z�zέ�д��w�>��컰=�G�16�O��G�pQ#���c������_�9r\�v���)��}����VY^]����1�
@'HR3�!�t��&�C'}4���~z���ޥ����	��+׮��+��?�z��x�M��g�Q}饿����e˨H>��ߧ�K�q���r\�p���OI�C A�ݥx�Sy���h��/W^��p�ACj-�w�k�'ݏ�"�C���n5��r�L����%7�*��ji�^M_Ӣ��s���G�]�֑��K���wl�Ҏ����7�D���'r��T
7_x!���4s�Bj+�o�$���o=9�
Z�i#;� �^}�P�+�7�Z�z�ѻI!"�y'��.�f�9ۄ[+?̛�m#�n�˂�A�
��?���g�����Ja�!ש/�_�B��b�u���?ٞ����+ᄹ��8񺇇��kY:�m�z
B�H�:����ɓ�
 6�660/t�u�V4Wo�W�A�P8�0��u��]Qʁ6;�I�Eu�h1E��j �����:W��Z�p���7(.�J`��(�Dph*���݉���ґ�(���$�s,��D�Rz��[U)�'��X�mIm���O��l3����%��gͣ��Z�w�I@^��K���t#� �#Tկ�����<�'$����9��]�?̹7���Iw���TP�'�?H�Z4����9�]N�~�e��`t�#OrR�.��y�Y`]v�9�������4x�1TG'��hw�x�ڷiMCO;Y޻��O'��EK��]A�|6��>����RW����sȤ��=����o߶�lތF�7Vn�3�����?�7�@�AZ�e�`,կ[�.��H���;�Ӌ��N���O7_�wJ��Y��_�Ԯ8D��,[p���r��3�1}���R�*�3��Ģٟ�q�z�	tt���ǿ��������އ�z�A�fϙK�&L��Jݺv�s��z����S�y�|�jzs��]>L�p�z���a�'�<0��n�'�}��׫��Ʉ�S�ϡ>=�D����������L�+7!y�2���9B��Z6��#�v��őn����q��y*a'�f��ռDZ�J�|��}�ƭJ(G��-�
��
[�09��ډ�tnyx��D��"�B��nڶ���j����6�jL𕷽ݺo�XR(����0�!t�i��@�g�H֩�J�	?y�� �d������}���_}Ew>���nt�$���D��NpM �.BB�7�A���R,(����څ�b�?!��s%u�v��{�	���dE�o�O�?�8�Z9��:��[S��}'�Rb?Ƃ�۴��]��o5c6�rr�W'���K�s��g��]���G:\�e�%筈�A��@���''$��Y�5����=)B�AD�׮a��U�I���];G?p\&6׈�2��&I'�Br�'Edi�Ϥ�|�`�r\�:�Q�?��%�p�R�8
E}8��b�gE�T����Tj��n���a��hQ���Ӫ�u��ҒJ��uWN����[���
�}͚���5
��Py<SޠVa"�B�b�ӣ�4�u�4i�@��@������R���$�Kv�p�!�*���sϤg$���;��+=�w���pV�j޴1'�F���n9��_���~2���۫'M�1��{�#���D��eY��Q��Y�)[�G��.�:ЦM�iԻ����맞4�j��Q�8��������o]G����hc_33��lwC�B$9���h��Q,����Ss��!��x9@ޖǴ:u�Оs~բ��J/�IK.)��E��w�/�p��3��8֦usڰi#}�7,��jg���47����_�l7���uy�E��tێ�[���ֿ[����^����8(�����$g����ڕ�^5�7�O vS;��Կ2u�ĠǑ��p� ��]?��/��� ڑC�"@�8��S��̟G�}�9~����u���>���N����8�?�8��^�.�������]+ܚ/�k�F�5(ׇZ�fPw4�Hh*ŭ[�MWaM�'�`¤�0�K�<~�
	���&�S$$�M�حF�
$�i<Tnw3�F`F��L$�	�Y�2-cqy��*'׋�M�ɫ��5�"����ф=L�6�4�C���[Is�̆�����PV�
w��Nj�&9��=�
:@��/�kV���"<Ѻ�iͺ�,$�Y��^�.��gJ���ݻ�pۛ�R�aF��{05�a�R��"��@��Z�Pv�q�����+.�zu+;�@�pv��p�!�����}!���uu�$9���-�x�W���*Z�]����ߥ�=.��ߙk:]�����)���}�~�N���VL�ꌡ�������w�x|W���㌠��'"�P����ѡCR���”��,on�c�u���y�d2J�um�0�E}"��
��&���pLt'�Ot�n�>k��]>ܾ���@�i�$���+:��
����_Bo%�J�.\		��+��8d	��7I��^��[��$0|���,0�X�����!|��3fϡ����fMq��L�ݫ�]�e��mV�o�P�a�F��8�:�k�٭�w.~x�ε����ɔ�̆��HG�W��p2�$^�+��������Ky�F�d�{��\,U	���"��F�Y#�:�hI}�t!��E&���x��Ο�pT�ea�x%Xh�<��AdrmWa��r��Gp�CU$pֲIЅ���Q��i�U+�W��0��S"̒b˶ͦ#E9"
9�d�-����<aI-�] ��Ě7l�f?���D��J���:��V���B�^L#�,�"09D�Xb��)"DpD0k%���CM7�9s�s|�m[R�>ZR�KdJ��a�ԴI#�ޥyx	���JW�(O|(�e�]��w[�m��ke�����������8Ԁ�uGu�����>b�0nA6��p5AV��nͅkn=�ƘhI��Æ�r,"fͻ�� N+]"��V�N!��m�>0YOt���Qb��º
��`�CF��}��nD�@q-"I#<Y'���&��������P��FDW��CF�0�9T#P`�A9,v�_��s�k�<#6Y�=2�R"�yX���Y�2�U�w(�M}yx)H�0߹�WV��H|H�\�!_&�$]�S�U9�������������������kdb��D�"jj��dʋ�\ׅV'�.D�I��!�H� �P1��T�#�;���$�>	�A�
��p� ��JWNF����u� �t��yD�K��l�D@�m�@�8�/�2���AXa��:�jH_K/��e�Yq<7ash+MB�e$u�D4���ԣ#����qh���(��.ay:�ü�+�ݖ+v���2�����ʾ������������������8�h;p>G��(2�?���Iu
���+�D�(��@��vG�Q��:�@��8JB[�CUƵC�BX-�켻����
f[��(��&(�39��6S�81"�]Y��F�&e�C��7+�����?�c���#Tn�SD'8�N���6s�:MtiUFDH���>R��~\���PZ.⡷R�@R%�v���s\8�L�+����������������8��s��*
��Hd��x1B�=��
���w��?�{m>0a����-��~ZK�'���Do
�^��&W���u�W	E����,R�J&���l�예��t�+���ˆ\X"p�:���Q��0hI��!�PZٯ��T6l��w�&d;N6>L��Hh20~n���G�Ce\�0Tqa!���2S9J�uS��J�~�ser������������������8����,���A�J"S�-��%�RP�r#p7��~��B���.[����XN&�ez����
Q�E�U9��I6n�u��)B|��e�bY��I�'EXA�-�g�1����㰭��S�c�^����:$I�ޢx��6 �X��|��A�I��<<<<*ܻZ������"�Y&�Ta�*
��.4U*Q#UX�T.�x�=<<<<<<<<<<<<<<<<R#�^�F8b�!�ЭJa���#Z��e�A�	��2t��o�B�"��1ᛌ�C/.�N�{#"���~�OgQr�������Ԅ�N�?�J��1aAJ-aoG��%�U�)�8<�و�NYA��ƈ:�ŚŊ�uAT��,8���^��K�Eō-�u�
�:��N�����q��*�TyBA<�G*%^�yo�g�k��tbF�m�\&ڟ�r�xxxxxxxxxxxxxxxxyp��x�*Wp\�;�Q��ovy��$(�ɻ�+�w7TUl��}��"��N僠l1e�"S�hA%D8�Sd`��d���W�E�$=w#��v��ܵh�d2p�%�vΨ$Z��ڂ�f3�۝
X��6�E�MJ��;�t�jR`2�R�*0��x3���?
��]� ����Q�
�W�uT�b�4�%2w�/����=w�x�S�w��j?���E�#�v,h�E3��%��pUƉ�	̣�͡mVz]���O.��$W'�3��n7����^F �	�՞E�I��cT���hFyr�É%)��~����Ȟ��l�`b.к�K�4,��l#:��)��qƺEt(0mJ�@{c�A��{RG�>X&z�!��LjK�
���#�C��~�䚇�GUA�$�qᢲ�B�bq׈�*�}���BH�d�����^�1�j<<<<<<<<<<<<<<<<?p����� �w�v�]d�*�
a�D(�h� �8\���S��#a��p���HRD$"A���1b
Q�2�>�]F`�b�e+��އ����P'2A�B��h��>���*���
[6j��ykff�?�D�ju(>�x2�B�텝"I}q%J�o�&�"{B�a�-���T�C�R���3L�q���^����S�:��R9W��+�N*x����������������㈃'�:T���
�I`nLje�nD�0k�Bj��"�2�B]�I��jL䭈+��!�R��
�H=�^	G���=P����Å��u���N��@�Q���>a�i(��8/l�g�Хa�H��ƈ�7����?'�[D+7V�����t�z$�N1mkO� ��<<<�&ҹ0��*�sr��ӹ3⡲��qq&��Y���������������������8"`���B���Dd"49�"��Cׅ�%S'�����D��"\���2\��fX^t�NNw� .�8�a(,���Zk����U�d�0��� b��Z?�Z ����W1��,���?�Vo�{,f�S�XYZ���:�I"���@������ )�D�/n;
�s�x��coP��şW��TN�tn���.��⎌T���tu��	�m�]�"!�;@�=lش�.Y�n�h�֭��4YJ��.�5�ד�cѲ��l�J:عk}9�*--�|�{�������,6��|"����t�Q�{7}1�k����������[6�Gj|=k��?�8�gҌ9���۶�̹shWI	y����A������F�<~�f}�p�p������u�b�*z��'hͺ�t ��
��˫�Ċ^�׈GY�^�P�?V�Ym�۱s�����w���?ٶc;y��G!G�'�>��O��3g�:<�����|H��3����L:lڲ�}�Y��`>�/L���V��x�񽾮7�c6�)|��}��v�:�����[�v
==�%ں}yxxh�B�0d���5����#l&�128n��CG�]7$j��ND&Oy�<$��SY�4�m��s�p�"�~�;�a��]W7�҈"%�u��l�T�HY%AK7�5�X�"8��d����JF���d�\�
;6������%aTtv�qrP
(֍�tQe�Y-C��ۑ�={J���O�X�c=�#�'�_�⡪�=Mt�~:wF���N`H��o'��#�*r�x|���p�OM�/�'�=O_J�ظi3=����l#�x�Qv_�k���_O�i3����
�h��(ڶ}�<�/���0X�t����֮�5k,Y	��u��O��n�6�gA�#=�~�%I�L�8���z�����}�_�������>
����(y­��~8�SI���>�q�Ф/���6Klޢ8c��*{�6W4@*N�6����XU��.�j`��������>�|�"�z"��~>�$�:���xޛ<�Kٷ}H���z��M��VIByo����-��u��tX�n
oﻼ�V����U+徦�sv���\)���iS�k���/Z�W�J)������) �H��v��I� P
��-,^,����]�����<<<�&��\�C�'�Y�#�%�
��SLX�A�AH�S�9"���\N���֐���)��)Z{U�����R`E �HXI���q�E���<Ea*G��A�J�(U1ǒ�I���P�)��ҡ�s��� ��0�IW����P���y�m�%t�X^��������c�?k�'0bD�R��	r]3����߰���sUL0�#8;0�gx���J���l�γM��W�g���<c6o��ž U2qWh���=R9,�rn��T���Q�Z���]>�����.�o���������994�iT=�:;�%Ki˶-���틇�ٯ5n�P�o�>q݆
���u232�q��T�����s�F��O�m�����D����G�w��
�Y�0[���֫O�����I�7�M���c�袥Ky�Y�F�(�f.-�e����ԳsWjP�խ]�������˩�����r���|�
*�/���<�Dž��99ٲ��\�r���2����2@�A<hX��
��AX��f; 0�I��O?�>�zȶh@Gu�i�۬&��(I̝�v�i��9fO�ѼqS>&�ΥL�o޸1�f���ש��i�f�F��~w�ߗ�\N5�k�>��N?�$�ϟ%	ˏ�N=�t��@V.X����i�F��uRs��-T]��W�}ͧf���9�p���]�|)���o�m�n�:�Y���m�֨AM�ddd��5k(K��٦[�1lٴ�<r�u>a��ߚ�]��7m���Z�b���D��L8�qX�jկ[�v����"y/Ή�
��e��<j(��v-u^/]����}{׍ԺE>7�9����Ν�݌�C��y�s��y���c��C;���oҰ1eU��Y�8p�6��h�ڵ#e�xa]\k֭��:�P���&q�q�{"��,�acy]�.*�:,��ժ��/��6-Z�mW���~��y�u����sxŚU�Z�jud9��ԕ}��2׳��J�}(�`�����s����I��m�r�y�+C��u�ks=Q�"y�%2,*�F�}�l7�w�O+.,���D�O��\\;e=��s�Q��TK�C����͛�~e�\������
6����{��$�����n�u�~�N:�x�[\,���4n�y����c��o��]�Z�k:##:1��W,����<�o3@��~}]�
�]&��Zr_V�3�]��|Lpn�?�y�\�	y��^
Q5y�v�%�ರLA~>�������^����֭��>׏L>	��Y����B?�����L�?��q6��р�v/��=ҁ��5���o�3��/������k$�A�8�#��YY�Ƶ�L���Ֆ�k��9�>����Zj���� �1��e���G�]/��y���`�
�<�=9_^3�佭y��|�)�{��j��{#�K����<�/靏�r�P_��0��~�l�\�չ�1��/�ݣ��̕��\��u���G+�ҦeK)�&i��&p
4�Il�,�i8�q��h��g�g��"�������0>ˑ�@ӆ��5YF��M\?M�1G[l��Ɣyr��F�d�`���c�[�zVZ���-�\̙���x�}�{�Fyݢ�E��m��6��y9mܸ��!�+�6-Sy��^��'��ٰ��O���mx�yr;�%�y���m��r��C�d?����RyLpB��1���qq�z
��ǹ��Yfϛ��i�2��1�9X�~L�?�=��8?v��:���}��s��m!�jzl�b��]��^�&�� ��E�LW|�DB�EE"���d����uŵiDGVR?�<}�F\
�f{����(g���X&[�r@�z����A�&x���G��2���

3�k��g�-$��r�pr��iR���6��X �T�Ԏ�^.!���w��E;�^L+���B%^�v�a���u���(���9��$8�rz)�gFu9�.��Cb��Yn�$� �TRc�8 �o�$���b_���O'L���*��Tn�x�����K� w��!�*8����H�G���7ȣ�fΠ���Y |��V-�~@�`v���^"	�v-[ѹ��!�?�r*�/��=��XYM8L6ȇ+Lh$�.:�l~�z�g������ˮ���z���B�SN�u����<��ЧB����W1Q����'?c���~&;-@~�`�ܮ�%-0�-�|ۖ��i�$�0���3���_y�C�ǃ ���矦���%RHh���K���	2s��C�vje�$1@�~:i"
t"�
��O9�F��1x��$ۧP��5�$fVoڼ�:�mOW^p1���*"�o�|0��n��+���]�ݵ;,S��Ƴ�������^��gr���Hd0�€��ז͚q9M���|���A��x�5,�@�yi�k����$�ë.��zi��k�}�Q%.IB$�Eg����c/<��"
fN�3�4���(n̮�y�<�f�T�#�V�۾�����^b���%g�'���4G�
.���������}�6�^ F�;��͘�"�歛��߻Q���^8@z D��+Ͻ�rj�а�Fr�6�[��/Y(۴&y�G�֭h”),pb62��1ȱ�m�1�6�O_^�Cy�����@ ���ui�����m�қ�C���Y(�^|�$������1�>��a�<o6Э�}�
�8�<@����K�v�ҳ�c!���	�B���<�@2}�ly��,I�&Ɔw�7���\��e0��w�7�Ƅ�gS'�9���?� ���>��9a�ly
��1�-:樣��B?��y�&�_��u��(n��D�]��9�����~!����Vdq��mՊ	B�X�n�_�����BNnNM4p}B\2X#��ѣ�{�\&��,Y��o�>t�P���Kw�гy�g�2�>�6��K�x�W{HR
��Ӈ�{���u��9E���R0q���W�Z�1��v���"ˠ���dΑ���_�p�B�3�_�$�y/��s�ls�w?�0���'���������2���ȾB��+��K�9�	��^}�fΛ��{!���/�Ғ�7�gq�Z�<Y�i�$���<}�,>�8�X8���W��!���{	�{�@h��H������-��XJ���D
��2�rg�3#��`�0|87�����{}Hu����xN.��'S��8t�d܇1Q��uE��7�g�z���M�$�!��)�k���y�K��աu[��
{�u�����ˇ�y�'��܆�z���y�K?��9Ֆ���X
H)�_y�E,Ҽ!��q�OB?X�=�qӬy�/_�n�>	ב	!����@#�M�e;C\Ƙc�f���cǰ���y�Z���o�k�2ĩ��>����6�z�A�?��!�\|ֹL�@�x��������ϻ��PhGp>�p�>q�q<�A��0{��sΏk�>7|�Q��Y���o8ί�;J��n��;���	�n��W�+��G������C�G�μ��i_��i�+�-�q��o���{�z�Wv�q3��'7�<��Oh�W_QMٷ`���۵j�]0f�r�����1w���{>���q\&~1U����NY�O=��+����ۏ��N�1ۉ��q�ԯ��^w=���pnB0�ئ�W]���l�:�{��c�}� ��q�#�\J�Sˆ���N��	5�{���%�!DL�P����B�$����w�M%�>`���q">f=�����EW���� L�
�}��C;AB�C��b���I�&F�P;��q���U�%��:B�XB��HF��!��"����(IݰZ%2�;EJ!]FR���z'�
M	7v?*����G0��`��
�\�����B*.�9A*rh�+/���[��;@�=�A��$���
!��I��N��3�Ζ"��e?|�Ld^z��|�
���ǨO�R		K<�͚;�^|�~�����t��?��{���4fd�ȻU�Ԙ���f5P����G]$!��j/Ⱥ�}���&H���T"	Ϳ�s}<a�PD�����p��r�?m(?��ԕ:�x�Ƭ�)_I}{�����	��yIza6�5]������Oy�j8=�}�$n�H���3.I9��:I������\y�E��L^,��zu�я��$H�[~�+�B.w�Q�����d��|�7�������d"��m�K��>���p�`�y�s��ْ�ժy�A����ካy�<���r�u��?���,OW���E˖У��/{~���r���#��O:�8IR�g�����u�~#&�?��M�I�a�|�����HN��؝w�&��w��o�<�ä���A��oמzϰ}��$�;��(3]�+�/��<�H���h�͒��ō��,ӻ{�Ih#�����~�B�/��Z(듑Ȑ$�>� eF��6���d�uD�i�&�'�H�n3�+����n;�g��ù
���O����gȃ�z��Q�������B$ȥ3$!x�$)!*�����?dR�;��!ǟ ŏ��2�7u�ؑ	<�����X��躋/����۟X��y���߿�E��,��8����:��w����Cw��2׳A[I@myu�$�d�ҳ7�#������OD}��'���߿�r�l��"����0��vz�M�Y��X�ۧ�Lnj^�C���H���?���y�������Dޭw��I�6R�pq˵�c2�m�w�5�=~�Ϥ���J2�f
�'�g1�)`@h$��E�6�VȾv˖-|�X��e��k��l�7��&HQ�8���I�wWKRe���T)�Bx6��d�h����n)L��ч8��!�
p�X
�X�W�#�w�Z��~u�9<�������c��q�\����"�ԓ�M���~�K���s'��Al6�e�BpM�3G�?�Q��=X��1���1��?���ϣ�E�8�Q/Y�%�
����3?�����3g2�{<�,L@ظq#�G�
�V������K��FG���m�|�Ԭ����u΂y,d���'����-L:Hu�@�@�t���Xnga}�e�,�?�����} _;r��=��|n��X{��7��Y���KA����b�0�Ƽ/���_+�6��a��G�g�t���K��FZ*�[
?��eVˤ'$q?m��쬄�נ~=y�^®���w;��'M�2���߰s����)����}���7�� pe��֓�ȓM �@tD_�� Jtn۞F}��?��#�=���O����~Zfч���,I��R8�0U	��QL�1��zp��������~�櫯eW�H)6���'W@<���Eg�m�E�}w�N]X@xe�H�o1�4��
��w��;�C����L�YQn���~����l�
�e�1��5k؍�r�u<�����X�HL,���¡gq���N��N?�$���_+��p/�U
��
�~W������b-�9�A)�z�����F��0n��O��������Ǿ!ʛ�99��ο���(e"p(�?P9A�Q�2c�-��٬�xyA�eT9!�D�U�FZ��P��}�g�	YY	f{aTY��."���d�#
E�.59W
 �SB:�|��hrq2�9Z����;���4G�R;����#��$���2�Ɍ��r��Ჴ
���˪=*c}B������Q�!R��r�K�]�2S	(	q���f<'N�ᑪ~�#�։���fe4�3v�l�#_�@������r��~��HK�-�  0k�i �@���Ax
<lCt)�+�d�,�,�� �l8��2���4b*cf.��3�%��6��1`�1~Kw����>�d'H���%��Η3O:��� �U�_J���'�m?��,\�2���UX��1��1����7���_U�6m��䃋.�ڳ������^S+��֛��ԩоU+a�+	��5r��p��A�~��߫�|�α�]�7�gKBL�PRdf�c �!�#f���2@V��1�>CqQ �7a��aּ9|^!\�i�Q�aJ�
Rz�$�vȲq��?@�fi�=[��\�b1� �Q'�'fP�&�
8�@@��
�L`���AX��
�y����K!
A�"�$�
����
�Kqn,������c
��	�RGI��)�
�� *��l�(���:�
2�����dbaE�:��a������r��%;�d��3��A$Ai��㸎7Vp-֐��ìT ��*����c��|����C�߼m_�p�����R��`��Y�pR,\���IQ�#C� �+fC���c^"�r��2�; ��X�HA��{#�X��%.qM��0��@d�Ʌ0z5����@�w��d�B'�I<�B
ֵb��r�'~1��>{T?v�@0C��4$7�J�p,�V�
gB��=O��y�%�y�Q�[5k���8Gp�ં��EE�/��	Qb���x�8�Z�Y��;��q��%�N�=��% �S]/۶m�H:�f:4�c��6��D=8�p�BsᎥ���9k�\��]*�G��s�•ҭCg���T�۱}���n��]���a��E��U�����V����YټHy8�u�%�
&MS���d�x��pM�w���38J��S��}�,�T���8r�:zy�
�k�ʼ�YP0cM�? ��@80c�7�>c��_/���9��2���~�x��$���}�tힶM��뤰2��i,�ݴi3��\�
�Y��0^�=N`zU�M��L��6�=�>����]���խ#ű^��g��kc��X�ukq.cl�����
��VA~�<G�zʱ���xV���ٹ�y�p��?;|�p�������s�)�R��k�: �� tN8..SG�Dn�+�����ו� �^oZ��Z�m9.���$�L��e�(���$HQ��Ǩ�ŔoD��#�6��w
�qڔ_3��4��P�M$��D)0rd���\v�i0� F�!��Bˊ�Ir$-�,ݬ���
!�saC;���l;x�����"�W#*
��.ҹ6���Q����_��:�'�T�]R����(��^�h=�t�(�"A8		�:�C���UB9�sxv$�E'I��@n�&N|c�� ��:g�T��L���`p||��x���W�2x�B|��'<Ă�B�(S��N�͚qB`��2�nb � A�aV.�׀�	�s,���P){R$N:��gf��
�`��P��89ي�zd��l�7B����+�zu���e_��C��7��]���o��� �S�HE�	"c\R��d�hy���$kb�r��E�}�i`c@��c��G@����V8u�g���F"Q���$� �u���H�R�i�c�ۺ�@�"_@�i?��O�I\� ���Hpt �p~2�-G����Z��PF�=ȣ`���B��A�`�8��>�T\fΝM=��.�Ъ�*#3<~�Sp΂,C�ԩ����,W+՗pƵ�$^E�'I?�~V!Ȣ<��7��0v��u�R @+w�F�U=K>{�z'�uP�ɩb25b��O {�~%�2י�vi-�V���=u(;x
$)B�T�qV�������B�Xlj[N<����N�'Q����n��9�̜e�3tF�? ��Z
�G�3�Z������a�5\8�/]f�,}{��J
W�L���w�!�����Ϗ����1��D�=c������dVp���L�+/��CA$���Z.�'�SA�� �A�ù�� W]x1�Y>������N9n�� �qM��k�{T�jY�=�L��Ƅ��d�����a
۵��R��u&�
���R�9�3��X�&��X�2R b!��[��[��pF��
!�&oA�p���R�ู�Q��f<�I�gg��$Ε�4�P�M�#8���b�B�a�L��=wN؎�~��x�u��d�a j4�	1�O�,;z�N18�!�@��^���uӘnl�
>�G�.ԫm[ݖH��I-8~��M<�M|�^w4�X��]�Kf��b.0��T�,X ����a]��񪇇Ǿ@D摒1hC����Q>�(F 0|�Y^�,	hW�uT���D�"��9���b�I�n*ΛP<�0{�W]oKoE������F�7��������:W�{���|o� �+�B&g�vh��8���mB�"P7�Ux� "V� ܴY�9ܚ:�gL���OR���f�'T+A'<����q�a��s��R�[�P`�mT	�r�>�z��P*S����c�P�n=&�1��m��� ��2��鎭�����ݺ��={���e]�C��>GIRb';)0a��eY(y8�8g�[{�����\��0�Y�H��Ę��y�a�0��N�:<������iޢ<�n�{�9f4��wx�.��G��Qc?�q��	�fҴ��@��S��F�$YQ� �`f�@;;�7�L����	��P�>�A@�y�
m��F��U�WM
��h�m��lV̒�ҿw�2催@���KV����fݣ}�?�Տ�-@|�Ahg�,��P�>B�\i�a�,�
����Ł����]���D�-�F�Ef���Z��$�3e��7o�P�e�g�9}�b��>��g�"��$�F^������ �0��*p^f9$]8�q����1�7l(��BNZq�yR��֡}<~�]�p���L� A,���`�2DQ�f!��'}1��}��Nʻ�[4i�����M��z��ݛ>�� HJ��F&��ɓ���d#f�b[8�̃Py�B�>
��5�A���@�"�B�DsE�h���#:�o���F��d�a��6p�`�veѬQ�E���-\��'��J��b���0C9cR�2m5U�����L�O&NL��LI�"�/fh�|_�fe�x��d.\Pȷ���8A��J��$�U�Y��r�k�3v�8j!�S�^�Xn҂�<v� ��(/з`r�R�Sq���k�aېK�O���'�=�bDY��m�ݶs;� K6H͎	�_%�E-h�Lv�_��r,t:ϾG�3\���=
.Gw,5@�W����<%��d�S�}Q�=
BÆ�8<�A���B��0��y�, �I��B B����p�����:����Y���l�N��cQ�H+/���)�ٱ][�{���W�O)��B_�����3}�l;6����"N`8V��3L��}ď��벃k��$Ǩ�iC96�@At`ߣ�K�,ں��1r��<:��ӹ�E�����gT�x��k����(ǯ�|�ۣ��Y�乤�c�qWMn����;ɾ�X
�9�qN�a�Pt8�p��z�?��`�سK�!�1��<<<����J;ash+�D���̜�~rD*��^)t>��Q��C5�I�N���5�\<����&�Ov{di ��	#�	�n����_$���W�13pV��8�Q�p۔�#�X�ZzY��>c
W��hr�	+�󝚥�
����:L�*$��($� ܣ�0�BB�G�4��]؛�q���i*O�yxx|����ʈX6��"�(���n�2ΐ��彏/�>��x< ��.�6	�G�����u��8q�]�<�ix�oݼy���7���{�a~��x�gp���?�ߣ1C"ǖ��y�2H�O��-��:�&<�=G>d#<�R�>Q�	�y��g���~��Sxf�B|�٧<C�X^�����&�0���Q.3�͑����%ԲEs:Z
7 ��+����9�r:�/�\ž!���'
����r�A,���y���;ĕ�&��� } L��!$��|\s�W^��]zU 
����a��)gQSu�c8L"Aq-I*�����:�8�S9�?���}*�]��O>�$Ĝ-[�������+/���ٝh;�k���z�+H4�6�R*�$�
g��v�c��a/p��=�T��Q޽3_����3rAx�:���aR��"���WsΩ��z�#r�@��Ԯ��(�7^S3����9�S9A>�|�vxT?����3>��>}��7vv�1}���p��p�c�>W^3 ��;$�J�H�Ok�CL�
0�y��㝏��~A�nתud9��!�D-�u�k͝y
��s��2����aNП�e�>�} �9���d�G�C�gm�D�&IH~��	��B_�m�֔	�{u��1�d�$�	'r��C�5i��'�s���g��m��y��l����^��g8O �C0C�s	nUL�F���Y���d�s��/<����������b'�uMv�ɧ��^p�����I��k��!���Ly[�����
	�A[���3�[ܻA���6���I��b�3Ί����U��eMNގ�
���g;ʻGA��G�~'�	�)�L[)T��Q&�/��/�qo��J����s;�K������I<����i9�8� ,EB:I��}'�ǃ�R���m�iݦ
)����b8��	�=�g� �1o��.;���~�sܣ �c�p�O۳�lq��<H_=3�]"8O����6�Xv��"I<�p�ƅ���~2z���|^`܁�	ց�mo���D�Y���s"Qm��kѸ)��}("C��I�1f��h��뛵��e�D^�G�q)BQ�?���o��(�Ko}�.����x�a=<<�<��#-"��P��/D�r5!/��F[P��@�#����,��<��.	-���!qJ��J�Β������]RΒ�pR	�#����E��Y�/�A��7���{Š'����<��Ó�qX���pa�f%�ʰ��λY�]���d(ک��>�fU9NmT�+�u��O�\���	gԙ��1~+t�ZDɛ�}�������Nq������u<W�w��ߌ����N��2����#�H_.���7b�B��]�彺b�UE��ч�fF,f�a�	��,�)�R-��'������H����\x`D[���&��/.��3�fI��W^�ŘB	q��u��m۷�i�
��6��8?L~����	�=f�a��b�~�����M[6if�D��
�����@� G���8&6~�~`f��E��m��A"Hxx�0�K���<�]���}�,��r_ur|^��ZKx�E�ʄ��P�-�#!�㇜��lm��{��^����v���:K��ㆵ�d�x~�E�Q�bьك IP?�̰>fC"d�C��0�����^ ���GSS�:q�\4uF�8�p>�c���8gQ��QR���㒠����2�a��p��}�5�Cp�y[*�8���I�����j��S�J!pl0�"�{Ḻa���)�U�� 9]'�K���hƹ�Y�8����g\�8N�#@V#L�6y�q�_�ڋ.��#se�=��"�m�����0>��s��k��q����BHҵ�.��:Y0#�nR�_ ��=
3g����ѧ��,-E��^������p�bYN�-1א��n������l{-mټ�j�mb�qQe�bf���Xqk>c��O\�����dgqߜ�ZuH䌙�H�nf#�h����+bأ�|������ՌcP]�o�\A���XD.����:�oG�A4c�p��|�2�pl��ȱI�/���.�<&�Gp/*��B_��硻}s,p���E�� q�����/DD�)8&�o@8M�ǘ�ɺ��T�)7��� �k\�|����Ke�8�Q"���<�HT�z���~	u�x�m�Z4�:Ω�W3q��E�
���s}W��VAA>�a�~%�nq��o�R���2p���al�1I�{� �QO����B��b��7odQ��}�"�8�y-�>�v�:8Vf��~��#s��u�e��%//��!7E_�k��� ˎ#A��.JW��5@($@lPt�M�%��{�zD�������ڬ���������������n6%H @BkU�U@P(������/2��gefee�Y���Bxx(�pw��?ŀ��GMU�����^nF���A�n¿��J��@�+ZyP��v�3Ү���� MT�!^{�}�<���A :9�%t�J1P��~��~�x���&Ot�q�x#]'O¸PS�2^��k
/a9h%�}�
\�p�ḕ9�k��g�q���qC~i�s��x6��t�����6��� �}?���\��>��M�
@��+��C,4��4��R��s�WM����2�5�g� {7�`�!"����0џTU�!�r�'`C��?�V���"�8�&UŎ�1n���(��i��
���
&|�*����5-TV�bwa���2��
������>�V2��<i��T��
�û4�����.
�
�4� 9%���J�:F�I��S�h�� ��"C+X�"F�K��� E2~]��������8
�aݪ<��#t����蟔G�
����
�W�����}�NB�?����*�
�@+*@��w�E��'Cw}x#-ܮ��2(�P�7�?��a4����Xh�@t%�����
(P�BQ�)��+~�xA�������O�z�*9��T���8"Z����e��D�(���i��GH
Q�a��`�aT�1���)��mD-��>�JE�
�+0�F�	6*n���!�9*����z��VLn�\���bU#�(�m�h=D���@�-�W˶8h��H+�P���Q�*�*P�@��Z��c��
/�l�y���U��B+G�\Wi|R똸��������d�B�č7������}��)y���+c�K�x��r+�F��K�v�۶R�k/��ܨ.@c?w�0wNwA�'�"u�֭��[o��'�t��G�
�O�t�����e�­1
(P�@�gĬØ�E�N.v>v���!*H�w�VV�2�y��\^�����Fbax�XF��YI��T���fD�`����&hg�� !2,(S�uCp�E��,TK>F���E���(��/Ԟ߽�{>�I����%c��"���y�S_Li�JC�mIa�
o�2�5���7l�1hwZ��]��|����*P�������l���EH��%M����g9+�.�J�AH))������R������5���P�:�^ɹ!(�r���F# nx[�?�s�8w�^b59����$\�����}�C�4��
��)P�@�R( F
��b��@d�Lp���3�` �i��J,W[R�8=���g@������ۓ�0;�5�Y�"�o"��ĪDdF"��J����
�ŋ�xT�b}&�&z�<} :Tj�e@��2%��"S.D'�l�a8^�p�`��iU�L����A[ЇA��	�*�*B0��K@�槻TX`���/�	��з&
���]`|
)o�Ћ�)�F[s�L�i+��yZ���Sz��R��\���U`|�H�'�G�0�J�3�ю_���;$P�p�3��[�0��h��}e�(P�@�
�}ʄ`���vo]A
Q@�M���`�����ň����7��^Ѡ"���������!�Ț���У�)غ�p���QX���J�c8 zĄ����b�B��V)}�	n��++��!��Y���- 19��GψՇ(~��J�u��#��T�(o��Atڙ�9@���()t���0
n�֘�vppTv�A�ǡ�G(~/����W<d��`����fJ	�A+�97Xu
��G��4�r�4����@q�U�@�
(P�@�
o �
���ֵ�C�� +o�at��`E�!+ě���V�!8��/��l������:��+,�����XE�*�yx	>�.$���U��2��}1��5UEE��J��sz�mV�*��.�\��*Qz�4-����h�+��(��z$4���V�;��]{`���p���0�,��Ç���`�)8z�8t���fϜ�1��G���0�l�6m�|��[�n�ŋ���\_���O�Ŋ�@�P��H��rn�������)[t��\��r%�Iҍ¤�6(P�@�
(P�@�
�y`C������+�I!��lQ� I��)X#D����x�'�y�N�X��Q7`7K!йWD�ޕ(���>�
V 
�h�m1,����$�%��1�EK�23���@�6\�hk��-�H�]���xeJ4�
�����n�E�Xk��e��KCc�Ȗ)��J>|�̟;��F1�����ňV�y?��ۜG���J��	-���
`:L_���ب���g�~�����\���)��\R����)7r��:�t�\zmO]�
(P�@�
(P�@���9���:82��D����ɍHm�$��\�D	���.�?�qE��HN"�7*��(�v�R�ڤj�m�X�5�Lj����ˈ)�嶙@��z��}��&hmD!���%>��AO�Mll@����b�iW�6DS���tĽ��&4[����k�hxM��2�Lr�]P��N�:G��9�f�۞S�O����)�a�Ip��)����;{&�9x�9r4XLr�ӧO���V[����fL����D��h���fڔ)�y��a7�Nü��B�{�R��[��S�P��h�:ņ~ִF5YY������ �6M��z����
(P�@�
(P�@�����B��ɂnN�,,�u�ӆ(���&��@���D�AӃ�Xy��5]�s��í�fD��h��vVhA*���)O�Q�e�!��n��B���Ѝa�L�:yXQ��z��X/k��Z��^�X�`BT�S��I0�`�#4��;�}���"\+�k�~x�Ï���~�}�);�|��	����{��s��	�?�n��u;���c����<H��c^y�]8z�X��ظe+�!�
r/���}�
R�I�g^�l�Ic�9��p�Vz��M��E�}j��?���K���I-B�Q�(P�@�
(0����Y��@�
0�\YŇ�i�v	�b r�J[X�‚E��DP �L�\h�=��5�˾��+�e�z�(���V�(<%�:�c5�(
D= �5�ju+�h(}Ex2��$B�iX	lnE;�8�bHt�� �Z`�ݍ�5!��ҡX��ؠ���l6	J)`��רH�AVnBaOx�4�
�cP)r�	��L�}�?q���&�`ɢp��pمka݊e0c�4(0�LJ[�(�ϱ�'�B�t��ZpɺUn����r���E�;X�YQ�˟X�4)0r���[
\˫J�n��AQ��-ع{7����"��S>��vl���=���}?����m����GTy}��qغ}��?
�	�m�!���5x��h�ٱk'��*P`��	����������m��Z?��3��{�(��b�Oz�֯�\O��@������P�#�<p�[��±����ۊ`��Y��ȇ����_{�x�������/>��o�[߅���?���߇7�}}�	x{�F����˱G���(�޳�hV�n�:���˚Q�@�]���f;[��$��)d�wH$�FtƆxQ�a�ze�&Qf��B\TI%J?��^�o��;A���Ʉ�>Yf 2����4�Բ64��moޒ�ԅ�{(��A�TQӣ57�.���i���6�����CH{���E�U��au��F1m�^V��W�R�pβ�>i��8�9v��X�&O�����9�t��g�ػ���*�n�	�̃UK�¶�{�U��&�Y8^��i�S2�VM���\ں�� �M�C�~7�O�Ԕ�L�Fv�A�C��{
^~�5��?j��SNi��KϓТ	���� ?�ι�n�G�|��.#[�b��~�=�4����6x��C��|@�Q�g�7C2���P��K����C��ol�F+�p
�_��	
�<���:~m_c�W�x������S���ϒ$�cǏ��nn92�
���A���Ҽ>z|�:�t{���y����^x��rȏ����M[އ���ky��	_~���Nyz���;h=8y���/��
���;�o�h+��Y�f��9�a0�7�o�O�������/��������"E�X�#ǎ���صo�n��W���ܚ����Q��oár�@�A]_��qmeSoP���S;"�*�%�1��9�1Q�!���İ�F�r�5��
$ֆx����:(C�PP�kLE�o,��Nj>�-@�nM �1�a�Ю��U�!���/�d3��C:&6��;y/������7��к��h<�=��m�j�!zz�����8$
�H�6ӳ�?���Kx��'�F%Ȣ�s`��p�l�_��;�s��ϟS�L�7��]�����m���^	�'O����˝�〠a�G�a��ɔV���X֝��!�4il�,MS�[��6�N�~�v�Y�4�[`x�
ΦM����5a̟3�h�����7�O9�����;�<t�n�͚93�,-4p[>�
�^~%\|����
�p�3{���l���η����e]Lco8x�b3�q��ф�B�}����
�1?�~���К��?���9��G�Œ�a�To�Gmve:|���&:�1�gv��f�9�����m�5�ǓB�y�m�Y3gM�;\�&�T��ˏ��њ�oB,Y�fL��
����%�n�,�5+W����?�vbۏ��1��Ç`��I��$l@|�O���Y����i�i5e�T����&a���gؿ��ӎ�s��i�7t9oΜ�h����T�)S����#��:���3g9�jJcݘ=�ӧ��8v��I}��@q����(ñ(��\7���~�� ��i��z��T7~�~P�^�
~��/Ѽƹy���I���W�w�Sp�ZL�rk���8��V�!�:�����uz�ys�ud�5h��s��sm�ϽN��	�y�_�f�s�/↖�3����k3�ۦe\�Yn}k�K������G��6-�I\��KN����+�-�n������짴����n]F�P@���\��`;������’���>�#��]�D��͞ۀ1��L�&Y�������晾m�7�>���1̚�I�i,���ɧ�w��.Yw!�^����ϼ��S��o��& ��Ǥ������se���}n��o�4�|�lxݍ��pͥ�����s���/���EքɎG:�Θ�.�?��M�~������/�[�et=?�wR6�s�2����t���;������9���s�ę�4�k�n=���xIX�����~��p���R��O~�[T>�Lk��y���a=D�	�;����3����(P�@��	���C�_���#ј�R�?<��l�!`���Cz�z�
�D�:|v�� |���%	�>�BE)���%��K��&�(�2X��E�e�Z�J�J����}��J���[� j�JZ�+A0�F��C��B36E�
�i�E��B^*϶�
m�����zY�l��Xe�c�o�O1��+Z��-��x[ߝ�萆���1���нm�ǜ%f�c���l�B'lZ]��H��H���:u���,;r��c����O{���S&;a����e*54Y^Թ��18���)`z��k�)K�bx�qF:�+,^�P���.,v��w�˗Ϲ��W\��b�{���	�g��%��'�]ޘ�5vղ�pק>��}��SO“/<G��c�^�շ� 7���_#����3�����5k��q5<��/���=k�o�������Y_p� qJl�(�2�?w���/��i�^��;�민>v����D�whta��h~���,_��a�����9:�`��U�<��_����]t^�hs�5ב��e����S���ٗ^�g^~�
�p��d��o�K0\�Xƶ�ص�	f^p�M�K�_7_�� ���c���6� �'PD���NY����M�_=JB�={�R�+.�6o��(D����"!�V���;��ӷ�F�@����ka�����~�ܳ�L�����?��c�ƻo�~���gn�$	9�|�_��±�
��{�	شy3Lv�%Z���K��<�����ȍ$
ɾ����غoj��I7�?��;ܺ�>ڱ~���P]��|�6|�	����_w¼���s���nܿQ��O~*XO���Ek�����'h-�:p��O���	�_}>�	�/=��/Tڃ8>���ڇg�}�_!A�* ���8�I�wn�؍pӵב����9��l�RW�]��3O�-����h1��8�q��K��.����?�+��w�r+)E�&�>nݾ�=7�j�
Zp��u��wQ�[~���\y���_�>��̟?�(,��n��&�?�毨-(�D�*W�.'�D�
b��w:��ED��8|�`se�4ib�֏����I���\�ڵ{7)Y~��_���Z��h;�,Y�.Z{Y��Z�Vw���o��t�(0~�����}�
���ͻ�n�
�?�0���G�|�{�S/>G�8�.x�b�y�}އ���?����];i������n���v/l߹�.$lt�-�~~\Sv�
�M?ts�O����lTV����o�r�
���0e�Z���O�j/Z�`y���P����.��x�ǟ}ƥ���ڊ�|���x�y���˯$�+�݃�:����n.OW�_T�<��KĻ�"������~~��@�����
�::!m�l�R�Q��ͺU�ú�
̳��9;v� ��K.�#����Gp�?�zp���~�k_'
�{o�Z�V�>|���9��Gh1���wk��}�7kLJ\�)P�@�1^�n�]Yg��ے��bBo�5��@�8�2�͹�(A.�ۨ��PPLXcoĀU��4!(l�[��|�[JIb��(����D�*�F��A�
���A���[\�1dyѲJ�b$�fo�Rih���1��좫�A�ڶ�VP���D�(�e&��DԽ�G+8&N�@4S�X�8�o���{����M�D���'�O����`�r'ZI7���=�]`9j�?x��<=�>��X4w��CN�z�1���8�qBt�f�R'8^.u�f��C�r���<��,�4�x����{��A�oRdheGZ�@���._+l�tM8@!�kN0��|����;e���w����g����h��¼��z~��S��oq��[H���mN`���?��O��(�C���x�)OPw�-���/�Hˆ[���n,�A-"�v�T~|�sʆ+�
���:�p���^�~��U}?uB< �S�u��˜��:��x��p~�����˯ ��6�
6p�ظ�}x�ቇ�E��5
���DJb�(�|g�&r����-�憫�v�U��p�{��W������]�p�	����?$�*.^����Ҡ�A��k�K/���;�=��`W��@�"
<Qсr\~�%���%wxC�?vBt	��;?�ֵY�}'$����?�B7^q����儤_p�_u���*��m�FtQ��?���p��
*���P9�ʛ�J�Y`��>"�Ǯ��)�n�w�`���!e�ۛ�!K����c��
o��X^�l���G�{�2�
w�sp���P��om�H�q8�Qy��"��/�y.u
�K��'�:u��I0��S\u�e4~��8FB�~v�s�6��S��ָ_{��T���[q�ù���A\S4�剗�z�JȻ]׺u��]�=��|��ƛ��NA�ʚ/~�N��@y���q5��7�����up�k�N��k�v�~ܭ��p@7����㴮�Z��z�^~�O���s�p�c0}�t�^}��H����"�^a~�����ч(�O�~L�
�g�yڭ�;�Z�BTT��Z�
e�-�a?��}$��k*�QɄ
�/����[J�Jl��
�`��͸��u��i������rQ��n���8�C�׻}vݪUp�S��B��k_��]n^-#��O<�4����tY��J�f��}{������|����Ή�]y5)	7m~���\G^�+��BWm�5�?�	)���*:/X�������5�s����	�{L�S�����5��G�u�us��O���GU���wn�u���5��t�� ����Y�be�����{���om �T�p�{��R8e�����8����u���^+�.'����(z���oH\WPق�̛�Kk��Ox��ʟ��f���J��u�@���`,@ro#~��N^��?���6��
�haT�Q^D��xv�/�,��~�pE�!ChՉ/Ŋ�VO���˿!��7R��¿{D���c�l�	�Lזݲ�xmef��6�6F�[E�$�h��d	�tlq�)�^EF�֏x��wue�
�.�(R�z'��ۑ��o�N趕n�,]���y���d�<�6e�;x�&A�qB-t-p�Ixw�V���;��t���j=�z�R������\����]Ƞ@s����6��U�/A�t�1}�Xl���;���[+��	sqBR�J�ܻ��*]�V^��o�V)���Ia��"PF�{2	P����������%��y�������*�7�	���^z�5�Qq��%N0p5�q�~�K٪w<�^�v�SF__��W�˔E�ȭ*���4	���K
F�Ǐ4Н�:F\?��(پcG��_=�,^���z�'M�#Ǐ��#��_w�S$\J$7]{=���E�. �(��m�S�0ެ~{S~�7$њd�[&O�BBZt�̋Ϲ���$ �������Z���yN�ZL���/^��n�k��A!��NA�� -�.Y�_y�ʬ��N��{�r��S^� ��#\��O�`��x��=�����9�1
����g��IN�������?"�lQX�o����~�W�H��k��W���/���4nPaw���$�D�X;�<ś�8�n��Mn|�����F�
��xe�X���\vYJ�U*9�
���N@�MӧN��۟�X蔙�v섖�@�[�|��&�@E	*�T���[�P��(�ެ^��y��љT�b�p-�[�8Њ��'�?�3XץN�ֵ��N9��WI)�Z�:A+��G��eZΡ`��Z��R�[��
Z����}���I�U*�pMAW<K��51q[��[�z��
\�o��Z.u
_����Iׁ&źUkH�v�J�\YN
a��-n=Ǿ�k����=�B��N����?R��=�y���7�Gc�����7���*�찏�rs�<�픑�q���H���=�s��;�m�g_y���h��ZY��]�Q���Y���|���w}����;�#�ŧ_z�����w��9�*C��b�{�)��ʷ�p3�Y��𿺵�b�A�����'���|��7����ʴ)SI�����(�;�ޣ6y�m|�׾HVfo��&8���.R���7�bi�
a|��;��Ͳn�5�MW_�ڽ�R��y����h��U�n�x��$�٭��9<��e\��q\����/��%
�<♌�
8��;�`� :oL��j N�!8�E+�`����Q�}M�kiB3X����Q0��A��3T= �P�`K���Ơ�a_]��!��
HZ�]B���x�G!��0�vV���2����@CԜ�����Z����F[0]�wVF⋴����0Vy��Dmq^�"������������U�"Asc+�)p�
d�.^���ԩ�w>�/��X׭\�����Kև�7^uY%��g���	Hcz�3��S^�,-�;r�]��SZo�[.o��&�d)0�`!z�D�~�8x�O��#��+��;���>P8��p1P��-��sp�)��[�U}�/WUT��?���d�r�;袰�ԩ|�R�
��|̣DB�-[�R|'t���S@���;t�x�y�o'N�k����vlt�p-�|�J9r��q�P�
g;��y떐e������s��}�`�ECt0|�C������oo�H.t>�/����1p��%�$�d�	�J�TA�ˤI��_��
/;�=J>�1����@��x�Ҁ�_�Qc(�ø:�:��<C+\#p�ʼ�1?Q	�p/:y�	���CE*���1%����KR\�p|�� 9P!���}�+�q�CK��0N�5�{�\ ��w�2�1m:)�7�3x�B���N�u��bܡ�N�z��Azv�������#H\�m;���n�2�<A��E���k���\(:�:�xAA]�#��m����>tQ�.tpm�1��bT֠[�\�֒o~�+P`��	��[��uJ�{�8�����H�����S>n*p�!��$��FMWq����:����&��<�n@q��9c&tx!�DT����͚�+�/'wO+��3+��z���������
ݖ��o�.����»��8:�*p-�X>���N�[<�q=��Ǐ���3p�Q� ������7��Cv�W�b�S��녭�%!�Z�����(P��X�хS�xa���]d�OC�B���0܆��v��18ָ��p�h���1���8S�
�*�:��6H�!�L���/T���#
POS�c��X�
�h�*�*�Ҳ�%���m�
���EZ6}�����jK4Fi]�� ښ6[�s�As㟷��H�t����mܶ�V�,�E�6� �a(�F�
Ü�B+>�wuyS%I�R�tr��Ӥ�)��u
�#r��9�r�ս���a'��۽oC�n�->N�<����d�d���M�+%<�������E��7o!�T��W�>M��Qـ��	�pxy�kd}���f���U��`�{�m�'O���|�
B���5���?C�B�����vn'!#2�>'<ś�'N��[��f��$����7�4}D���\�ԭ���fT�5�&'�E���;w��g)�����*(,L�
��х`oD� ���.������9EU��X���]���2\��o�?����i'��ٵ�/���(@�E��A��}��j8�ѥ	ZI��Vvn-\�b��p8��?M�5ۍ���ě�8>J��p�5ZS�x�1c:���+$@��[7�b��8����C����}���+�I!�'�k�$P�6q�D�]�������ۊVW�����
c�����ުƵe��x������[�'����th5��}PI��O<�\�~=++�k�t?E|�"�)ޓH�YPY��*���󨌺�`.X�&�+t���~�˿���&����O��n!}����ʛ����-�{��_�<���|�
c\a�w7m��N�^���y���n�9��n�j�t�t�WQ9�PD>�	��@������N��k�`�A�5
-�.u

�o��-9�|�9�{����n��:����K�S��[�:��	���JFܟх��|���S�h��$�8�Zz"��.���1��Dk��n�¸`x��󖐵^�u]��JܓR�/���ߠ��7�1������aRQ7>�u Z�!�T�
�z��1���E�cUH}�Q�`���v�d�2���T�%b��ܪ��6��[e�\O�\�2\��W�,k]@�d�G)�W�,
?wT�6�P
�g����%��[�XQ�௖��8�IpW�-�����QWo�
�&�Se3���rC[b�ae�A�Y��Ɔ���׀�o��a
(pN�PS�V)�)OrV#M�se��
.7I�99|R�
 y��������K�]H.^T�`PH�����10:�hF�:׮XEA���?�O��)I��v�p��{߾�8qJ�
]M�P]F���_�ur���O���G�=�X�感he2s��}�Տ��
��_u	�?ض-��/~	�}�8p� 	��"䫟���vjx��G�O�5ti��/�����9�1'�2AP�˘M[�D����hG�����[ኋ.q̛���?���Vt#�=L��G~Ͻ��
�$~��蹗^$W��YNȈ1
|����(�E!�}�w�W�����g��b��P'|�����'9��عg�S�̢zn��FR*��g��-N��.~
�30^(�Wn��u��nM��_��d�B�+����c
V��L��K_�/�9�hL�:y��b����n����s�<����O�A��:
���������	�g:!�������^~���7�n��W^I7���_�R�`�J�9��(?�+����x[{ɢ%t�\�C�P(����;��J��r�VN��ȝNA�W��²��0(��g>�h����hy�
\�Q郮n��Ћ,"�?s�
K������\y�%=��xa����tŕam���-��m�_��;�����ݙ=���|��������x���(�Z�w���[��9n>�<B!�c�<IR���)$���W��/c� ���b�}�O�����_��᯾�t�׌�S�/�v
t��{B��
�f7�Otp7��厗������RZ� ~��w~��^�-׆�����/��m7g�I����m�i
l�u�&pMD���r�����W����*����O�J�O�IrKx��1���ø>har��(`zȺ��9p�#�D'�JaT� �CV.���p�����m��Ę߸�+n���Jտ���*�
(P���l�P���Jr1�e"�
�[/~�yh2�ZX^oc�q`Ł��Q�`$Ą	q4t�
S�4�p{�M6˛@Ya�7�P��Ц��Ѿ��2\��[�F8�cB�	�7�\����%GU�@��rZ��Ӷ$^����6#�'�<
���������x'a >�|�Ѭ'���B�ΗFN�w
=��Zصg,\0
�]@�����Ao�����G�cDt��|s�����C?
oѼ}$�W�v������Ի�I]W�� ���r!M�?��u�6�[�^��y]]��u0� ؆^o�7�;�_<�8��W�J����g��sӦN�@�(�D�1P:
ٽ%\(hD���F��T��k��[�xp�(�����8q�YK` KT���(�`�N��h��q������oE#~�H@W���o��1��9�)`����4�H����~��*oB"�(�@a�NIq�;��o����6����xx�
�����)ތƛ�r�T�``�I�\d�.p��q�m���۞x���
�	�≷��\�+�l�R
�y�{1���t�J�n:�,^?X&��G�_H[,oA���>�Qфʫ�i�}�e��`��`P�
���L�Q�"�
�\��B�o~	�R��(ؽ���Mt�*�ʍ���b֌t�����1:�
罌1T$�-j�]q�ב�_��q��4�x��=��s���|�[�?�5|��h�E�3���Y� �x�z��ݟ���&���ˮt�t��k�(X�R7�q��Z��
QA�u�m֠���h�\he���O8��$�ǵ�n}ö���(
�pb�t��k
d/\���؇�%�	��r�…$H�u���u��HCt�����7�Jn��O���*۬]����Lp��0���
����n�F�=�P9o�b�xXLk�q�Spczt7��e��L�����9t��-s�v���u��6�#��)�p�Y���k�`l�ᣇ�����v�?�.B����6��&
�х*�0�U�\Fk�*7��n��e�n����9���p����<��Z`�Un�vr�w|�V{��	�w\{P��q��bI�q\��|F�y��8���uq��]
8�̛���v���������a\�p>�Z��K�,��y ����k�b�"ZC�\䗐��qF�2̓"^��\�u���_�u��< �~�:��S�c�z�ϐ�H;�F��c���s�m<�!���C1�5�����c���O�t3�LX*]����؆9���47>�O�t���ѿ@��k(c���?��M�
@��|3
��7)�����bK����
�#jq[e�D@t�Ϡ�P�Q�
��R��4!� �]y	v��h�hD����kL(Sy��hk7�ꅕF��
Z��߻��V�����Mڤܰ�-<(�F���bk�6�T�^�Ҥ�D7)Xv�]������>���nm��E�Nôe
�FX��� Z�xt�����I��
om�K.�.�Y����,>�G��8E�W7B�]���oQ��}عsgc��Ⴝ�t�^���û[0Ou̔H.���Q
��2��4O�EX.o���5J�5V'��l1�u����M���8i���e˿���O���L�qϵ4�Z�u�b,u��,�穵B�5ԙփ����cr}��&	�Z]�/]'*�|�9���?��s9fH�9|dmʥo�M�3���L��Q���0�*~�_��݌��9cz����^�:�5��U7��M�����_��JBǦz*��q�P�1	����k_���x�ʫ{���	54��`(�{>C�f[�['�+�1�����ס�瀬%)t;_�����w�i��7�>H�-�u���/�H��o]qO��D�xz�*��>ET&x��P��00P��F�a���n�FR!b��'��y�XQ�xZ1��hdҸ'�p�����W�j����z��}l��]Y��Ami��$�|>x�m�"�EJ�6�kXH�Mc�gX>�ud���~l�…����٨��r9:
P�v+�(�����<���i]�@j�F�s-:;�����\`�#�2�9eC�֑cʚʭ�/�~K����	
38|�7�Вέ.��rԼ�&���y��L�
�s��tC����n���:o-Bx��ijck��P)&���e�Xu�r
R�����e�t�.]��B�^�'�����x��� s���a�K�a7x�=�д��Z0����L-��ܸ�f���l���~��q��s&k�`��
�g��uSf�K
(0� �X�
��12�ޠ�-)�w���	����n�8?��}���kP�Q��@!!�H���� s*.���hٜŗ�W�:U�5��p�uMQ��ņW�|��>��>Op��ˍXS(���%��,���h�R†삐Wp��(M��x%�(R�L�M����8[��M����X/�)P�@����DN!�$�����Пu��wi9�I^a�){��Ъk�h��V�)X5�
t��f	��˖�?��?$ˏ�@���x���I���\G�N��Stu����~.�(P�@�
� r~k�ݰY?�����
�@!�r���A��m�w
J�X�W*�2D#�8��*N,<�C�D���V(��%Xu�`�\sQ}��#��[�F�Tl^!M�c�T@��+j)JY��,>���L3!*�XbB0�1��/�]*����(Zt#�wa4�+?�=DSN��2���qhr�����UyN>�W,���~��m�	��P�4�<X�t	{���1��'Yi+��:����ܸZA��}��,YL9q�-=oq�Ϡ�\�^�lsJ�ܳ\Zm�!��Ŗv��*N�]W4)B����
�po�������3,�@���c����%X/@��@�
(P�@�2�/�u�2Xwx��RC�,PxG��U�a�X9�(�a#o]"��C��P��X�/wW6�뉺L<��+vvFbs�Q�����0�=�
ZlD#���"�m2R�������p��+����`��bSJi�%&a
�׀�Ĉ���ep��ӫe��s��p-��|����[�d�p�	�_{�M����`Ҥ�l~ժ��~��)@��g^x^z�u� ������W\������޽~�Գ��P,�!��K�B���I9�{�8�F��lz~��5+W�0P���*9�4Z�P�,�{��*��+R���pH�4�y�o;C+U��$E�Q�@�
(P�@�
o �k'nu
#~�XLb�
'��m�#��ED닖���D�NbM�U(�D�v��
�z���#'�-�8!��T@ԒX
���E�M6h6LP~�����\�6�$�KQ������rw����TA�
��n!-���6�&()�s/�4��K:1�1��,P�q�eYa�q4Q��,(�k�Y�^[���/h�N;|�(9z.�`̚5��2o�xk�����o�w������ݷ
�=x����O<
˖-��˗�D���Uݨ���͙3K��p���������`�U�)�9%����u�N��'gq�*-:��Ju�(P�@�
(P�@�
�g��*B�]%��Y��nW�4*2w	��7�1�)��愭���j�(�o��������z���J=�X�Or�d�{�J����a9���}U_�M���q��Ţ��<�W�J`s}ޢ߶�	DG��
ړ�WL8�1� 	��
l#q?�����
�]YQYJkþ�D���O8q{�^�|ޅW�6����f͜	�����U�0u���k���[��;����K/�����$��`n�?q,�O���;s��
��-�^*熪[�B�T�s��{�+�.Mj!ҭJ]\��V��
�Zg������ـB�z(���Nk�x�B�ޠЦ
m�����@�M�
�KAx�������VGE����XVn�L (b
�Ƚ�D�?�C,o�dI���E��n�(/� �A�#��|?(]��
0:�S+X��hhB�b3��񆅪�	BE�c|�MӖְ�?��
��y'B����Դ��0�U�撃]W�`B�f��S9���z���y�䅦	�l�-;�7t�"C���I���Ny�1b0�gn�`�ӧOW��Y�\�y8p�lz3�^����R��fعs���G#�����;��дN��f�Kӥ�!i}i�/���K'9�ul��������mك��~�nb�tz��3��l�f$��e��t��ڤ���`�<�-��h�D���Cч��P�&��\�M��[�x�M'8is6����p��NeF3m��Z�@�A��=��!H�[,o��r���
1,T�2��|�Q�(,����U0!�#&ᡒ�3����h��e&CR��+������0���m��-����E1�e�R�ab�xvx�D����l۶Y��]_�Y�
v6m��؈��1�LTV�6�r��"�!��
�Fz�͐J��!�ÂGlFk��Tr��A8v��8�6u
̙3;���o�D�К�xE#Z&2f��-l߹6o�>B
Y�D�>i�Xz���XIq?���*X�l)L�6^�m�,0rV�=uQWg������N�����t~
9�z��Vz4��UR�m���4�<i�smlR��ꯣM�_;)�r��6�pѦ��\�����.mS�gZ�X�M'��֓�Ц�iZ]F�M=m��|&�A����M��wS�٤M�x��XhSO�n�?S�tZ���6��mt}u�{]Z��r�t��`p�K��!�M�zЉiyuisx����hS�@��Z[�u���v!��>�{pF��	 j=��%�?��w�
Ê�*X}@��!n��BiEM�?[�h��f���#�����֪��@���[���n�w,N�g��,TLDb���'�����Ò�C6�6�����Q��4��(C��-Ý���cڶ��+c,�{��2^��a�����=ka�����S�`�ݰ僭��	�?ڶ������aB_̚9V�X+�_
睷/Z��t�.�x�hO�cӚ̘�[>�G����;p��i^�xm�>ߑ�Ga�S������뮅��q�=z��X���+.�z9�tz�+O����p�;��<u��&ͧ�˥M�ͽ��a�y�P�t�Ը��;p6�������$ȕ�M�).CA�\[��M�mt��M���I��T�HЦ�B�B��F�:܇�6�A�^�ԩ_���&Wv��i�{/��4>���A�|�h��%�MZ�h�MӘ)���εr8iS��`hS��X�2���0�A`OO�� ��#�	��im�œU��z�W$5�+��syg��'0�=���b�� q7d��
���lx�д��׷5$�z%����P���J����������j����Z�yT��c�Sƫ����"sL��JDU�`���]e�*�n����m)�Ĭ�`]M��;� W\~1�Z���c��?x�z{#���x��w(F�C�����5m�Txw�{{��e���n�/XC!�g�tB�O�0p����#�=����.�u�WR\����4��rh��OÏ�{�,\��xAA���{���3��
���R�8�
D�;�t�h��]n���0s2}����g�&M���ơ�������!'��՛++�g7mi�;}V�{7��3#A�\C>:M7�s�6��h�M]{ru���TV�̡�M
�6��6u�{�M��^i�>m���m���ﺲF�6u��J��{�MJ�\�i��.WWmr�9�I˩++G�N85m�]�6mt�s�tK��Z9��I�i��Mn=�ç�6����&����<��F�\(P`8�/��	I6D7��A*�*���lܯ�$|���rpo,�F���CP
��߾ޠd����Äl��KR�A2J+(���>zzl�N����g%�����lС��>n�o��6��&ѨX��q�D��j��J��2y��B )��G�~�n]gY��f�*[���+��.�C��/�;��������3Ͻ�=���<>
l�̛3g΄C����cG����3`���|��t���k�t
�Y0w�l(0��@X7�Rh����k��}�S�hт�l����������4~PQr��ؾ}�?p��OT�{QR�1���C@��2r���t^}`��칃��<�th�+��{����zuY��c�:ris�=���s���̺Cl��:�u_w۶��&G󴌺�umJ�Ε��
��Ц�6����;��+{�Ҧ��:|ҲG�6u{B/��Ѹ�tK�&���[�>G����N����m�u釚6��Є�p�&�v0㲩�<�_`4Ѧ�v
'm���^iS��[�t۶�M7�H'ڜ�>�����I���
��Jv+U� ��mu=K�O.�'����RDك��i	�� xkⲭ|�e�Ʒ���`$��g��p��l�p��0f��|�ʌU1-?EH��4��Hq�Tk1Fl��,.�F�^��V��Qtts�#ƣv�yLu���x��I���fgY('�
`�1#�]e��N �
�����O�y8x���ҫ��"WEw}���5W��={`���~�_�o~�K�n�jx��-�n�*���)P~�Hq�������f�J��A�P�{�t����Ϝ5����S'�_��́>H�8����!=�;��rDש�k�r��ߒ�и�\{��0��r�kKӡ,�2sy:�se�gue��B��?W~7�I���������u.Ц���M�X,�9��i�߉6��N����|M���;��+mr�r�i:�ʹ�0X�4��~׍�n�u0��87�?Xڤe�i������&�=-��f�hS7�G�6��ZY�.W~�\��ܴ�i�
��ۛ
���|��̝ĖH��7=åR��eX�I[C�y���L(Oʪn"��°RD�2A�acJ�e ��6
�Y���$`t=\6�P[���b�R�W����?0Cm�F���5S\^Q�*�(+M���yL4o]�3چ�o�-&����iF�܋�kZ<i�-(���2�6�]��p��i��x�O���7�t��`-����0q�D��}�b6\�~�x�5�̜1�y�EX�#�����၇����X����7�f��6�/�x
��/i|��H��Mh�R���o��
��@�O顩�p�S����4��X��q�;x5�I�N�����n���uy�p�Az��;P��N��3TP��iӉNu��z�h��M��<��$-�i#��p��5�i����s�6�pO��ו?Դ��oZ�rx�7�4����M�{m�B���^i�+/�v�M>�A�N���j�4�.�7AZv����6m�x�^hs&�G�h���9��{W�C�����ݤ+P`(�n�t�S�̹���Bt��ȷ�S[���5p��D�V�G�:=�A|��t}��T�i�ot9>q�҉u�W,�[ɭ�K����¿$�=�jX�QQ��6���ؤ��O���}R?����N0#4��C��"�D�h�\�q�yO11��>Ǽ�IM��F��-+��}ٱ����Z��~ʸ���F��+Zm���=ط?|�[a��U��)D>ܺ
-\�^�>�E�������W_w�=�j�2�����_�S�>�]}_p��)x�ש��~��)=����S�~�Z7���/�"o�֢�̂��b=��f��A�I��t��)�C�~����sڅ�.O����r��A����}������9�УS]顰�%m'��ʪ��.w��Wi�
�?���٤M.M�����F�3Ž�$m��v�mz�w���kJ�M���Ц�K�i*c<Ҧ���m�ك4��T�٦M�zД>�͙�f���-�]W^S���ҭ`y0c�@�&�f��]�9�J��J��L�Q)��Fe�(.�8���?�8��<lmp{*��!�"���ڽUH%����0�b�[-�bE
�7�YU�[/�m��L�]b�w+�G�+�S*
cZj5\D�[��-� `bC[M��!�E�)����"&��W�;������ڪ�#m��6d��V�xL����@7�'���Q@��=aBL��h���0{��
��>M��1�Z��<u
N�8	ӦMs�ZP`C���+���}�]�O����[����^}�
��{���\�W���'O
,���npMX)#����r�:eE�a��P��_S��"�᪮�^�M���V��my���n8�@/i��W7�r��\[�O{�+)�����5Դ��w��i�Σ�6���P��W�6õ���P�f����x0�X7p.Ѧ�L�n����h��P�є��m���:�
�ԕw&�7=kt£�(0X�5�@�d�
����x��εr@A�@�Z�����c���v�r�P�X8�3c$�����X��Q������TQF��ش�^/P1ň��#�xe�
DV��.~Ʒ*�����tؐ�-Jk;$���WF��^8���{��� ̧m��⏨�.�-F(.��
Ҭ!�W�h��l@S�N����.����x��M0u�T'�^|�
6��6�:���O��-[����s�Œ��z�g���.ύ�_�0�������?��7}���_�������.��7�?��~صgO��, A+1:A�(�L�t�! w�c�l�������S�Ѥ�H��u��.mJ�nr9AU��V��Þ�n�O��D˺�Q�F���H�w�g�RN���\�S�8����P��`h�+;�|4Ѧ[���6u�ù)m'�t+X�f~��u�:H�u��ʕϡ���l�&M[��.mSٹ���f`9����.{$h�ӧ��mzُ�g�3����������p�u�m�t:}�� �֣�5)?��4��T`�����y5���ֲr!�JlH����KZ����D��O�m@(ďs,�Q�TV�g5�\�V�H�R�U��N���[��@��P�ս���Π�D�h�Ga1����>I�j��
X+���LS�[*�&2�`�N˒��B�se$
?�Ray��
H7WV�Pc��$��m�q
8,�[�~�����#���>�u�Ⴕ����߄�|�ǰ��7��9�����+����p�%�;�P���޳>}��N�}	?����s���p�>�^t!L�4���w�*mͪ���C���ڵ���9W��P�Dп�)�0�Z� ����|uu�ʒ��:��\I��E�p��g�B�i�B&�o]��������VM��ΛB�u}�mr�:ܺ��Lh���x��~v��ɕ]Ww�wg�6��N�&�z�M���m:��-mzY+��6i���B��'-8iS��ڤp&��'M;��h�M7�%OZ�P�&-�.�p�&Ww7iu�Mx��Jڤ�qɽϥo��8�v��)P�W��{�*0�`�(�E~Ê/_���+@҉LX�a�4���1T����){Ԥ����K����8s�WVރr��.��Gd9�U���l�s�F"�u���c��4��x:��I�� ����*~ȡ��—���Dj9�$z�ZNMo{z������?������e���`���PoJ u��i��{�K�t���INh}��C��O���?$a6Z�<�����m�5k=z��Z�X�>�?�����n��n�!8��X�8�̛ӧO��s��ab����L�W8��G�v�����s]�>��{�<@��@�א��=T�'�}��/w�@�y�Z��Y�Lg��n��Y��T>>�8��s���{�݄�`h��l8p/���+8~�J�T(r�iSW�P�>i�M}�.��U�tzWhS�n<Ѧ�|Me�ԗ5h�]��7�u����3�^�]��}�y���"�.0h�og(0,�)/�OV��(�A�e)����$V�x�F��!
+z�;h]$.�Un�b�s��@����Ĉ�D)W(�X�h]�~��J�J�e
.Vh�&�€R��6��!��{A�
�GE��VPR|�R�m���z�HV
1��ɨ4!�1�9��/���R�‰�&������h��;.w=\����O���N�1e�d���+a��y��Ï��ރ#N�7�:�w� ��#��1V._W_y\y����ر�{�^*k�P`,��&�v,^����Jx��'��ukV���}�Z�<x�}�%8o�bX�b)E�y��֒V�
}��c��3���A"�A,7�)nu��3
���+'�7=О�Kvz��G��,7�љ�^W~���z����Wh�\�`�����^�ojGZ��L�t�춬����m
m$oS�i���6u����*��S}�)�Ц9o���*�W�a4Ҧ����R_J�\����Y�ԥ�T~�n�S��@7
�t�(p&��'��p^�(���CT���k/k>����� 6z_�m�.�LP6PҪG'��qA�҂q�ъ���#4�������a����<�0���}�V�G^b=��m�V�Z;�U~[��y���T�H����hsX��aE�8�"�Z�h�B�h����w��F$����}<�����u�3{6�'B�W˖�G��~g#l߱�)B��"�J�iӦ8�����a��50iR�����x�_:%�\����B���o�)���[np
�~x��W��
o�����U��.��o��ƖX
٢��9�I�CR��B��V[R����3����H�=���$����t��ؚ�&��W��ZZN�w빈yN�>ͮ�֕��
�u��M��:�ԕ�TO7�����M�o0����F�^�n��Mi�%ڤ�w[v�z5Xڤe
��F���B�z�G�6�|<۴i��F��y�m��h��Z�T�٢M�N�6�{��&W�h�MZv��{��-��O�֥�fʽO�*x����_�@
x^��#
M㨌��f[�b@2,˶9�8�1���1��UWWA��Kp^*N�����4��,N�1�Xܪ^�����6hkL�W� �#6"�%���id��B����_�+�F_lh�aK�Z�ݑ��쓫��V0�!�~�
�"�D���2&���X!�M��X�a������K+t��nǮ����mp��aR�����^L��ȑ��ZZ0s��s���8q6��>=~
�-�E!�.Z����;�/�NYv��)>Qr�`ZNi6��C/Z@���u�5@�.ߛ�֕E�g�J����a@[_h<r�胄~���J����0Rw��p���i�Mƺ�ـà�\�<�|u�7��eK�[I�:;ᓎ���u�n��Ny�ҧ���S��9Vi�p&�,6��`i�M�����{7�4m�w��Wܻ)�Li�	����
�:M7����B�δ��Ni�Y+[v�\�3��P���\��p�f��N�ε�S���u�ȥ�+���zŧ@�&@��9�2�
��0��+�+�G����s����CTbI�bMte�8�a`oS�Jo0��T��kD��X����L���F�@���	J�Dq���`�?���^�}Z��σ(���ĂQ<�J��=b��X�"�9	��4aÖ�fK�[h�
\b��O�[���r��j<�b
XϞ=�,N���O�1�sn�S����o��e���p�S��_/жmUTa�!Ub�Ҧ������b#w�+O�Z4��I�N��Z�����]7��:s��Ϋ�ȕ��Kd�ĉ��D�:�r������)�z�M����n˯ÿ[ڤt��׉6i[F+mre���I�Xh�_C�n�d/�A7��h3�m�m��m��?��|�6�u>WF��`i�
݆�6�]_n���i�h��ó�3���h�>+P�q���e�����q0�
+�e��^��MT*H��8����8>��J���*b��{%^��r�[-��‚ f ~�u����݂�Joi�ַAŽ0%��/�D8=CTyم��>�;o$6Tb|��L��P�!�&��`�Bx���!^�e���[�	���Jc�s:B˭m6�j��o�cx�e��#G(NB��>�6uJWe Ss��I8}�4�FK���ӵG�sZ-�g̈́={��;)6.�EĀZ�2`��yʍ��6@I�M�:@�_�
��'�
��c��N�?�w]FZ�./͟�ѿs��p�r0�(3r�?��tڴ�\�ܻ�3�>-?��.��.mD�:��n���kk���.�;z;��D�^q��ׄG�n*{�iS��Ц>�Ҧ��N�7�K��ҍf�t*�S�uyry���9X��{���M��X��|?Wh3ص���B�z��B�N���k£��}����gk�tI�iϭ�(L��h*�@��N�ʾ+�pB������F+>@���|�+IH����+BD��I�rz���7Z�^+?B�s~��8��c����	b�͇+�1�M����s[������BF�b4B�BpZ��+��L`��瞦߃�nL�%�m	�C�\��hF�\Yو��)��17�y�*��/�!%QJ�'�;p{�)�=ǻ�Z�d�z�
$�������6����߇á�G�����W]q������-rc�O\�Ҳ�0��W��8q�|�]X�l),Y�&N�U�.Re�f�s1;r�+y��П��.�~����[?��X�N%w�J�͚v�}Z~�sݳ��߹�rτ���\�v󙫫S?t:�B�^pO�0����&�B�B��<�m�������t�M��&:���:�w����`�iө�\�c�6���+?�I�Mg�u�����,��u ��N�m�9�����֮p<�6�1����C
A�]� X�ʆ�{�j�O�eE�K�u}��l`���_�%b=k�_�s�mP�$��=��P�\I<Ͱs)]TE�t;M����CE�0V�PBވK�V��j�	��
lya�n�P��&'m�]'�ĂC��R-�����$��^�(+G+���
��z��@�V�a���m����p�!���R����;w��
o�����؃�]{;v6��6lzoK��
�v(���LQ�r�2����;eʒ�$(��4��9
��Dʜ��K99����7��]���9OӦ߻=ԥ��:Y��Ϥ�\:m�"�����-"t����뗲�����h��2�Ý��)�4��B�&�4H�^h#��po:��B���i���ӑ���u��&���wڤ�t[����>ڤ{A�Ny6�iS�&��p�f0�A���@���C�����:�m��1��f=��ٙ��m��j��'-?]ss����~Jq�çS�ݔS`��<��������,P�l�)Be���Y��ɍM�s�J�����*S))*����'��+V"�!�Э��2!��:��
����
�/Y��	K�d�i����������&Zy��dyAqB�^��XbD*�sW�mtkX�U�BJ��+�]�I��E���͙�B�\�8��蒋�Â��b�4e�䮔3�M�[o�\q�E�[���iӡ�؃�3f�]��n��:8x�߂�7:�z��Z`�n��W)h�A�!J�ty�+�y4�s<mU����4}OC���MG�Cݡ2������S)m��i]�9���塚�u���Y��m��)�.�@���ow�3���1��٩�^ʮK'0Zi��>�iz_hsf��Tv.c�6��+�S�^h��M�ԕ5�h��,��Ц�y�}����t���H�n���B�3�G���A/sQ�K��gK0�&W�<��W�HN˪K�� �7ȅ�T��?ꞧ���ر�7�w$.2�ߨ�#Jս�=�&8[
�x��1,��LA�O��	�����uUb�����^1F�^�J�!���W���J�F�:N���X�o4>�>�S��s_���O�g������-|jY�C.�D�r��F�D凘�AT�x"\-w���.�}�#���⊜"ČOd8�͝C��-^���
��q3g�Z���|O�o�=
2�*K�i]:]�����\ZRܚ����w�"sx�h�t�KIu��q�=*A��F���0Xמ\ߤ��:��}���MMx���[�Fm�
%m��p��[[�ʮ{6�1q��w�c�6MPh��Vv��	�B��pn��)͹N�n�Цw|��%mre
'��
�����RWn�t��<9��6�U7�+0�/{��+��e\�
lP!�;nx�"A�*Aɣ��f������jx끊R�3�i������A9E6d��!���1��xV|o�.�'�iwlN���|b�LI*�!Шb!� �BQo��fz�q�4bȚ#(�8�;���[{BJvn��E�l;�a��C��N�ͩE9�%]1Uˑh�}�(P��ن�-��g��7�Mߧ�Jt���RwH�᛾���;
|����
� wp�;�h�廾ٓ�@I��ٜ�?�o�2]b�ʩ�!M���$0Kۖ���}7�ɵ;���=������mz7��Mn#I���;��I�O�͙Ӧ�^i�T�HѦ��Ц�� M;ܻ�MnM��L��R~������M���P�&��6�#A���r�i�i�L�ϕ1��f�6�u`�x�4o]�M��Gח�/#�N�H��i�t�MZ��#ũ��m�!��w:V�Ϧ�
�z�#��Q(7o�I�<���K�Y�Pu5X�₊5�o)C��谺t)�[���W�*�����Z% ��?��&J�#i@�D�Q�aL���2a=��R��H#i��*/Q䙸^�!�Cn�L$�F,�#���Z!N�'Xh��(O�\^T���-Rb�l|�Iǧ��
�n�0r̽�|�N���_W_���޺�tyu����������~w*�)]�k.}ږ\ٹw� ����?���@Z�>����w�#WF��fZwS��I���s�6i�Nc���Ž���=\�џ�}]�7�ݩ�nq/��6i�M醋6�&���p��wu��w�I�^�ν�~͕��;[���7-�S݃�}$�X��mr4��s麭��s�X��3�M]�� �_��	�O��Oۙ*AM��]F:�S�;����
z��9L+��,P`؁��	_(B{Y�X�o���0X�-:X�a�&e�r���⳾�&�s���y���2�:{tG� �ʬ����1�-~iy%A$�
��h���0����Dۗ�f#�ڍ�
_H_ؘ��]�llT���[���eU�[P! d|Dsc|�s�xĒ�zG0�	�V݆n�@ҵ�r�Ӈ㐐ۭh�\���
Z�	;4�;ؤ��Շ��� -G�Щ����!��u���3r8�T!����{Z���K� �Ҧ鰍'O����DúC^Sں|�:�.M�8�]/�K�3��W|������nq	ڜɸiJ������̸J�Kك��L�^��Tn/i��6���k��w����f�6Mp6h3�͙��f0c�S�s�6�}�3���&>���\޺�iڦtݖ#���X����=��/}���}vz�~��P�@7��>��^(o$�8�(��Xn��B�FP���Vx��
���^l�j%���
�v�E��<V(��"���2���Z�[5p�^��sI2X��
�۴%�uW�����-m
�ёf[�&�U��צ���&ǷY��&+�!),���Bti%Z���[���xELЗ_�/��mn|P�@����s}@���TN
�j$�>P��i:]F�c�������2�)�':}�{Z^�(����\W��No�{�&�吞
��^��z����Ƥ@���=;Wh��w&x4��D����`@�2m:	�t�g�6ucx8��X�M�����e�L���B����h�M/k��L���׳I�^��4�ո(�x�<\s�Ӽi�:������5��7��n|���g.}7�@�AC�:D{�uR�<$>���^�nE�o%f�vE%�a
r�'����ӕ	�-5*J�X@T^�\����0�­G�Մ�C<B��A�fb�X��a8	����kS5����iy��p\
[��x��Y�
�إ�<�̘�E�N�7�YD)"�S,X��I�YP��ƐFT(!���(P��(a��9D���0T�'�r�]i]����"��'*
�y�՝~�|)Nu��vBC�t�9ː:��>Ҏ�d�[�N�4U$mW.��.gDۘ.G���ݔ�4v�/7s�\?��D�T0Q�O.Mn�ҦN�w[�P�&�]�αB���N��e��pi�ԭ�Ҧӻs�6���Ҧ	:Ѧ׵���ܥM/4�v�����n��ڝ{7X�4�#��w�Ҧ��ni����/�<��
Ե�S9u��|~'�f뺻mK/m.02ЩO�u
�&�`�Y�y��)Z%�@���ʕTH��@�Q�0�cgW�����͆U�(]�dM��V(0":Fw�6��Y��j��
��@���[e$%Dk
�mcڰy����$����ˆ����D�B8�����Dۄ����@�W�0��ê
��m�W�FTCR��[,vu�%�?�T-M,�!m��'8�p�l(B0�
8����ޔ'=	䞧i���u������o�C���ſn@w*W?���wy'17�S�va>�u���s�W��≤�j�{;l�e�Z�~�&T3w�M��I�ˍ�4]����u�������69܇�6u��G]��B�3�M�~)���[+r8��F�hSWf/�I��h���3�M'�:ѦS��$mR���Ѹ'm��i���M�;Դ���6u��6u��P�&���%-8h�D���2W_J��6�ߝփni��՗�"u}���L}��jR��'�SGS
i[��ԥojc�����S�7}�&m�C	&�+xm�
ڝ��c��ɰ)/K'�	g��l����a@�K*��8`u" Kcg#��򿥊4&�1-&޵�,��N��ž)�+`Ko�(?�BB��44:f�����R�L�7wOC�����wXۈ�t����1�$��%�����r��O�߹q�.��
��|���a1�n$$'|=�` �U�@�#
��0՚����Ңtb̚���O-;������r��z��w�6=����ڑ��f~辝uxյ��ƽ�:��çS�Ny�ť�t���h�M��΄6���NM�:�=S�t�{S��6�ѦӼ�S����vS~7�zš��n�7��o$h��n�(�)��^h�-ݻ�����EݴG��p&��/�I�9M�N�i��sS]�i��\�ï�膺s�P����y�u KcT�(�����Ԗ������?D�	��)��C�h{m�!e���	!�EF�@�.�e��Cx�W�����L.��(F�n����g�I3�A�a"1P�zG�
Y�[�w[��
��p�u�-0�O�:�]ʵ�C�UY��mq?q!��Iw}‰�0�}���-[��
��Lu�<�߳��!��|����>I�֛�?��Dѡ���=MS�[��4N�{I��3�7W�c�ʔ\��w[��Rf��ԟ��^��CsS�@][z-�qo*���gRg/�馽�
m��I�p.�f��|��Ц�]][�)o�Ӧ����)���s.��Lpi�t¡�����\y�Ҟ���̕����gP�����Qw+�W�r�Y+���i��r}�;c7)0����@���ʵ}���k
�|�<�@�%Bwp���!��hD����Z,�1ob=X��V��R������cc+�l�\��DĻ�g����&�ְrǫZ��� h$�Dk�@�
�	Fb!RL��{�����������V���d�L 1�������ie����AY�
(pV����{&�q�����w�=���J�B��M�L�*�R��e�L����+M��ʯ{��a���s�t�:�����ϵ5���u���4m]]M�i4���M���M�\�g�6i�Me�J��]m�:��v��u�ׄ3�M��i�7�]hS_v]�Fm�ܻ���`h�k�٠M]t��m�4��#A���s�6���h��.4H˖�u��mr�u���˓�=M{&�����*}>�Ե��]kP֖em��p�i��\��Z�sV&�!}����4O/�-0<��ӴM������y�u���`m4�0�*�6��a���_�3$�6��l,���-��I>�L,�ƪ��P��zʡC]���I��`�ˆ�$L;����C�D
�|�F��D��QdE���q6B�>�I�J|�����w*����6ګ�XsX��6PY�Vy�Xa�1R�ڨ�\ŴM����p��2�[%VI�o�
H�F	h���A�1]M�W����Ñ�;(�s��..���Y,��M�\���k:���r�+?=��,�}O��+m��:�y�鳩�\�^��	��y7����N���o�ϝpl��
�)mz3��)���\�M/�@�e�g�h��z0�i��]7y
m�_:A��U��K'<z��`hө
�!G'-�N���Iy�s��Y�,��	�;	�u�)~��Ft��h�U~(0��Aв��W���t�
�����n�������`NC#�G*��z�`�G%�xp�,�'s=�B:P��%���5���	�.�X���Z16�M�/}p��P����#���e#��WB���&����-+�/H_��P]�]o�n�_�lp���&�6�8^�e����\�PA�@�F	�9��`����#w`��$��ց�)�e�Ɨ|O�;ʧ��ʹ��|�4)�|��A�S�V��r.��/u���s���;����I�:��/��{���ו7�����T�ȏ��N���{�M�6��D�4]S��A��6uet�{��\���>R�I�>�ié���T~��np���Gm�z�m:���~
����ܣM]��6ʹ�.p�+o c�69HyX��2rtj�_~�3Cg|t��ܓ{.����*T
���ҿ\�N����MϺyW�@��忘�Oe�rt�H>D.Oq�Ur�~����Vt#� ���O�$�W�q�o��B@O����e��+�*y�04f༴Q�c���r����@E�!��
9��תv���FK�FD�6��²k��?V�cm@��^�
���4вy7����J��nY�A�"��&�5>��2�:&k��,�/P�@��
�vi�N7O�0�7��3�L����R��Hj��t�w�TI�<�a��FC�;<�~�n8H�s�ƺl�6�.�GM��<��	!u��S ��a2����)>9w^�y]�j��o�nq.<Ѧ���{�M�m����ҏ4m�����WM����J�n�q�i�7���y��6M�WߝmzMۄc]Y�6�e
7m����5g�6��uS�X�M�{l�W��n�n��w��m�1S1]��}ڞ�,B��6�LպD���3^��ו��R��AS�Fz�n�~(0���l�=[��LA���"CˤełW-p/Kk��Ғ��P�b�a��ϯ�-/��P���6y>��Y��W��4b�!�mt(�2�
8θ��,8��R映d���C��F�e���[�+�	��T��0RYt��.k�j��79�ܰ+YQB�R�1������
�v$b|om�2	�I�
V�@��u��z����Mi�i���$�����Ax��i���]��9�T��ݘ�Ch�l��⳶���.*S�ζ.�s�����Ҷ\Me��n�M�N�M���]7��)�[�s}�)M�M}��F�^�.��Z~7ЄC��أM�|�y?��e
�z�p���L��^�����H���o�o���M����z:}�K/��sM�>�o������3uϺI��R�����?��k@�k��3�bAU ���(�p��N�!j�<x��益�����GwTtL�k������J1j�DT��`��V�g����N���
`��Q�ѐO��( Xubm �e
�0�3�H)+kzZ�)���X$T���j�������Q�
�8��:EH��Oߧi�����ܡg0�D9PI��������(=$���N��Ӳ�8���B��W���������e�����i�)>�m�����tpm*W�)��T~������M��
��6)�gD�pO�O�u�i0�~J���g�6zu9ڤe��K��O��ɭ)m�]ڌ~�t��tC��zPh3fhSIi��}�hS�G�a.� �Fuk\�h�� �׵U�)ɧ�c��ѿ��*p.@7�V�&���g��/P ��z��:r�t��R���xψ�	@ūRH�=M�5.?�>Gs�O�(�D�&B��7v�������RFh�k���֥�Q��w?����}��bv�j�vm��w��`��6v�k�n?4$��?��?C{,7��P1ʻ��d��z_u�x���RE)AT�
��c�������� =0I�\ t�Sן�Q�G����_+Ct��5��I!���N�.�Fw�^�C�ѐs1Qw�턣�dM"��Ͳ��o}�>m�|�N��i��y�����
m��J�:R5�>:h�|��A�
����i���mF�6�Z3�6��
CA)�mҺsnIF�6
Δ6��@i�� �z���?\�I�p�F�>���p�҆�CF�4߹J���cτ6)�5��zP�o m����`���M
����XO�eT��I�ύ����{��m�w�.���4��u�i��ڜ��re8��m�ԥ�y����Qx�����/�Û��g��yL�B������yk��(Ƚ��Q�X3`��{Hn��uN�A�����j~]��]T
*�fDt��C6���rg�X*����3�S�+�"��7e���@��xhB)3�`	��0�y�șв+��0�9=S1���T��-�qEL<-U�-1@
(0
�z�����F�mR@���W�of�p��lr6.�>o����D-}`��S�܃�.h�myƸ���2�6M��y�A"hۍj�mY��1l"&�U��
��N�| ���U�M�x���S[)��%�W� æ9�·����<6�Y�p���IQ͒���.Ы�o�����P������TK�5M��]]=��>��v�V��Eԣϸ�9ndd��l�Oz7�Qe�ړ�
jQ�3�ũI�Pf���j�e����㾭�V7P��T��Ҷ6̅�P#��R1G��4��2�:p-��2��/��2���e����+��?R�?�%�j�oC=�/��s�n-�L�Pg��`����8o�M3V����ؓ�&��V�՟��q���$�ߙ��_��摷�rs!
qwFy�^`��n2-�\(�j����^&ht�eC������m���샄�0�CK46��
8��{.~Х2Y�D��6^a�dk���fXAlC^w��|�,�~�lG��V7"V�����<��U)�‰n�����G���|���h�V��+580|�<�c�V�
wF>��i�V��	���y:h~E�g���n��s�~�1����AUd2[41�w���>V�pO_N�kC�CZ�\���陬�"2
\�
w�ﰄy����XP�>]?5�+�JoU�iF*sB�����~��Ǧ�J×�o#�i��B�!�)��`����Hc��Fϕx�)�uu|S�6�C�F���QL�L�� M:e0	���L���8l�_���D�˖6�mb�K�V�q��+e���k+��2�u9e���_���e���_iG��e��e�w��-M���:1?��&��'�Fo:2��� ���Lg/,�j&��Б�L�l�a΃��HC���@�����p����~R8~�8�<y
�E�@/�������sB��
���
ZҢS�sL�ʆ�x�<�/ ��bl$t��h����)^�q��U>n�^#Jje}ⱈ{
o�m�+�w�(� ��r�	���8ohx��+������ݲ����F��qs�������.I�̈K�y`.��M�ifeT`�gH`*�,ë��NW���7l�7�z"C�k0��0&��`W�����U5Q�"S��I�
Z-�O�@E����q6�x��&�f���K���p�0vPe�<A�Aږ "����$�6��k�j��I�0�5��c�׳"hs��a���ޒ��o��_���e�C��e�s}e���A��5����2��/�_���?p��its�:A�1�I���S����0�G�+�rů(>���,���EV���c���Y�Hx9��Y�Sy�6�
D�ȑ#�܋��ol���a�Űd�%�ؑ�G���̙�aŲ��L�;v�]��•�_���|��6x}�[�z�
X�f%�M��m��#���[�~�X�jE��������JX0^m�_��)X�p\|�:�2e
=���W^<D�'�M��s���`��iP` XZ�Z��R�,�|I�Ӣ���Co6qQ�f�����0k��q�ywS~e��6�nw�/�[���^ƒW\�6��;��)Y����~l�L���›�hB)e��E���[���6E1<�l�����D�V˶�Y��b�DS�O�cJbQ�e�b>צ�9��-�)��͝�����ǂMh�̦�x3/n��0��V��z!iA~�@է����}]�=����/���N�0E?�BBH���/���2�4�
]��*���V�@���+��)P����@84�i�_c�TJ�o�T�Zk#N��f����	�0�i|÷��/ E�/�l"{��T����(P����ne���e���_�?��_�?��_���e�� ��"�.�۲�,2j�il[��~�|G��4�j_�W�ys�!�Q��xi�J�Z5�sP���J�|�5B��F'8Z��w������W_����O=�<|��æ�77d��{�^��}���O�[��n��8S8y�4���&x���!�!-p�`�{��ޟ=�=�4�w�F�SD<��������=�ۖ�R�6�{���m7.N�<��<u
�ů�����~^s
��|x�1ط�~E�.�huMש
3�`� .w�Z�o����?*�Oj��˻GXb���3.m�{v(�vd��P�{���R�#k�g2��[�0�&�[|%k�	�?���m��ʯU�b^u���}[�u���߅��zLRf�DC43�}���
����
}��	��R�êݞo�}ڂ�-2����,H?S�dl�s3�j\h��X]<@�Q-eB�	��1_�%�DŽ�U�P�;��
�*��T搌�o��+7}�	�aU�Bm�0�ˠC�AF��f�P깱�
��m�9V飀4�h��y(O���n�����+�XB$�?sr�� e���e���_��}��e���P-�?�Q�?�+��e��������-Z1���[
X4��m
3EF<	�D�'�:��d8o���?oQJ�f*u�s��2hH��g
�eS���>��m9����/�-Z;v=�x�'`ͪ�d����Q�<w�,�]�7��9�(�������fϚ	ӧO%���ݻa„	���߆eKσy��P}G�u�m��'NЍ|G�vЪ���#�w�>���ؽgL�4�=����۶퀃�Ây���}X&
�Ѫe�ܹ�t�"���a9{��m;v”ɓaʔ�d�p�����~���;v삩S���-q�(�9@���W7l�뮾,�;]�|�]Rb���}�.عk�뻉�G3g̠�8�n�Nn����m��\�|�v��<�en\�q��LJ���~����+.�g�nx~��3p��U4&�1����n�����x�7o.�������1��|ʵ	���9��r�<7�׬Z'����i<��q�=Nt��s�΁Ǿ�>8@���d9�kk�ҍ�G�YA�N����mD�U�y����(q�o�u�w,�-:d����R�-Z�eS��U4��+��{h�BV�lmGK�Q�w��ʐ��ߐ���6�Ch����3���z��b@��{��鞥6V3�	�Fra1���A�8��$̊0��a�bvH��G�P��*r��爗&N��\I���Lo�m
���}e�?�_׊��D�L�b+�ȸ{��r`�6r\yce�z�P��2���j��͠�~�8[��$l�f�OU�
c��޷Y��g����?��$����G��qe�� 눅�����i�Q���/!���E5�N=��Nu<�
e���j)��2���2��/��2��/�����}�.Yx���Ao�D��|+Z��g�y���0�	Q���������KƔrV
��޷�Jkc�i��K�Q(�]�r9�X~�S
,��_}�	���I'�}�����_�iN9p�)7�q���o��6�d@��iNa�yˇ$�9s�{�C�ȇ���$_��p��	��h�vRL`��x��p��f���o���ՓN��;F坷x1;q�	�O� >s�m��%�܋/�kN�n�Wt��忷�W����c0m�T'�>�V��/~a���Fx���H��}�z�r���`���P` �Ra������´iS����tc�xP�z����^&*�P�p�M�YN	��'�v�f)�Pr��QʇVG�=�4�?�Y�]��;:�c[�h�s
t�5ˍ��ܘ=|�(l۾~��*�dqHMhM�O�z��N���{~��+*3�̚_��Sd�t�O���s�̂-[��C��%|�Ӎ�wi�Mws�S�u��O��_z1L<� ��Ҟ-�/X!b�&K<B+nq3�XI��_%Þ�vr1%
�o��0�ǭ����V�M��m�<,D\�ʣ_�2�w��-R�0�C娝G�z�_���s�M�)c&�7F�J@1�Fm�&n(Ƙxc!�P%� ��Rt�������0��	�6�v�Z�i�
3[�]d2~~��)�03B��
3�f��
nF1 վu�k��6a؅�ȄiF���!h�/#�˜�vGVڤ�4�0̺/4-4��Po��!)��ol�/C�I]�1r0��ll<�f���5Y*4� ���g6iK�"L6�n��dh�9�������z�����%Gk��Q���6�P���!g���|��e����2���2��/�_���(���K!MtB+���f�>����"
�|�s`U����+C��e2�>�m}:��̒�� k��pt
�_x�Ux��W���)�p���ud�q��~sfφ����)�½>S����`⤉�i����ܽ:L.��]�e_����_��Nh~�1سw/Y�\v�z�����O�⅖����~+�-u8��}���SϽk����k`�Ν$�F�9Z��Ǖ�_J���z�Eعk7���k��[>��ȇ[��6n��{��k%t�u�e���3�E�����A�<�ƈ��V��8|���q,\0�,\Hi��s�z��q��)0f�˯m�!o��<��Kk��.�����Zh�'��^�����+����N��u�6
�_O<�<��in�>��snnt��ep�e��X��S��Ƹ#k^8N_y}���ۿ� ��;N�]m���|�N�v����a�c�^y9Y���#Nr����!��,r��5�bB��R:�����.�*��LJ#J������lX[M�ƶs��zg��y��5��1-6`aN<ּ����[�y��[����C�/4�|&n
I�{��<U���b�2͜Q����TsB�W7�3����p`L%Q���x�RgZ3z�폸Ⱦ>p�7�Js!�8�!�z�ǤָU�J˭>2C��f.�*&S��e�#�M�\UF4ŭzPI�nle��3F��F���ЪʼB%�:HU�����P��&�ݶ3	�y m����E<�
��<ΪsL�'����F�:��F�͌�X��e�������y�/��2��/�ZG��P����-�i\濌�>C
�vxm��A�ݬ�Y��뒡�A#I�.��0��ƻX�Gu���1O��@��1�t7�v�P�
q�Y���t�ho��Yq��d�B���9�.
n��	�Q����NɁ��8�O�9�wJ	t�%@7���z�SP�|��&-�9�2�F+T��wB�C��8���<W���8��Gw\h)p�m�P�tTl��c���p�y�	_ta��"�"	-P	�v�*��fʃ�l�s�m$4G+t״ϕ�o�~r�%.�
T�Υ�w4��8��^G/��ׯ%�e8�A���G7�p����7�!Y}캫H!��S�6���ٵ{7Yn�;q�$�-T�4�KN�r��1���7�����8\7�Z�3g6�?x�ꓠ��8���>��ϙ3�����x�p�5�h�r����.YB��\���d�Tq�Ox#0~��58��qA�/�O���NU�|�F0���]Y�D�Ga�Se|�Uc��ǸAp��wR7|��w��������@3b�5�}= �o��-n�as�7̵YS���'� ж�P�:�.�U��o13,w�
�
�)m��������
�@����ʘ�z��ROddm�PdB|=V�ı��PG`,�m��Ф�V3g<��͎t>	���{��_
�6�C�x�O�<���?�X_ք!8�ȭ��b[#~���V����T���C�U��q�m�/�:8����f�ni�OBK��<�+��iA�SxBl�@,��2��/�_C��e���_���e���_�?DZA��g6��@���	a@S.T��=�t��/KJ:XV��H��6)=�dš��'�4�o�
�Е�jSK.X�ܨ�L�6H(2
a��IN|9)���}}(V–�y��v����Ӧç�"bҤ��+���3�&L kt5�፷�U�7��3~�#N3�����&�M�0�oB���x�_\dMp��M
��]g`>�K2iRL�:�	菐�%�;}�4�O�6�vt@%M�<X7т�ðq�{�9{�LX�t	��g�PC�c�
�'����BHo|����T��/��B�X�ϣ1������A�q8�	c���85�
�ø4��c�8�?��Ώ�ɤ�IW�={�Q\��G�%���YX^��������[��_F����2a��7ljEG�����/1V������g`����Ӓ��,�M���|�p��>`B5ASm���
<@��[��v�B������^�2���;ƍ�3GRFLS)���a���05��	eXU�oO��ɬf���VV7�kV0�`@�n�(�&��P�;�/���L�0"F1�P��s~F1�B3i�x����1���K35���%��>�?3յɚ�>��00�?u�R��_a
9��md�93=��z�H�\h��?���:I�J�Q�����3�Q��F&42ڠڬ�+��2�4�I5z�ʴ��q��xf�����2�A)��2�����/��ݷ��e���_���e����;�>4Z%�oX;<���� ����N�Ⰶ�%<B�\�n�2�����w��1?|{�HhT��E��q�-ϧ�+FL�<	���*
�������7�v
��$��`�jR�
�͛?�8��q:���s( z5�8
�w����!���~���{�O�C/�J�	}<����+w}�����>B�!�Ԙ���!K���vZ#,X��\{a����Q�	�T@�����@��1��E��`�h5�/�I�2̟��,90 ��(������)�ᥗ_#���Nqq�!����BWeh}u�m�������[
��3�X� 8E��-P���xw�N	2��.�l��]}%��B���ڌ��J-�Pa��!��r�:IGe*Q��s�`l�sڲhaHd��V����
�;�od���_�MX4mKm���4g��O
,��qA_��~�6-s4�&l��]
��{���qy����pc�H3^�]1/�C�=pE���2E�V��+}`����[�:ctyUf3*�}�э�i섈?������i_a$=]����/�F3U�4�S$��E���|	���T��mc^�Z5X}u�}1�(F�0��;�
�73m!	��J3�����|g&��I�#���bbC�iTy~X�i@s�����`@����
�?��Z
	 ���܆Fj��C����*\�:@�̴��T�zl�=���2��/�_Ӽ�2��|e���e�������_���*������b��ҁz~�Z�q>;Wc�[��(�������a�I�yA^ln�QK�-O**�i��l�S�.�;`�ĉp�E��]�=��$��Ѷp�	���>�5B�	���w�W.�X6
Lg8a1
�{�)z����yYa��%&�`߿��x��WHɂq<�LT���G�·�w��]V���cT`܏����t��K��`�?��.��~�E��Y�"m��|�~�8f�S:p�2��N�J�͛?�ǟ~��(3���ob��������ڻw?��:�ߛ�L����|�AR���y��y��
��O�r�S&�Z�,u
���;�s
4���ͤ��16s�L�~��"]��t�A�2ځ���EKm��D��t��t��!L��ae4-��Ζ�����Ic(�"~�h�^�7JVl�Pd�5�(�#L@˶�ڀ�P�&��-�0�$�
��0�0T~��
��
P3�!0��x�"n�a�7�@�@�2Cɾn�#y�5�S�=Q1&ܰ�7]���F-M�$_H�P35a!�������16��񼢍����hP��h�%�����#r���"F�*�D��&R�W�K�d,��88�&��5�Q!���Lw���O������ �h~60�6�ٜJ[m�ha<Cz�˄wz�J-2C�H�0e|�
�lM�C&pޓKP7��KPs�@0;J��8�u��2����P�?��2�è(�? Y���e���_���e�������^��4�
﹞H,�d��Z"X��.H)3ǐ��Hnj�B��]��U�#��lb��	j��etJ%L|޷�*z����k�>X�`�4 �S�L����.�.�}&�E�#WV��b]���+.��,^D�+*��_J��W._F�(^�"sYЌ�֬�E�S�j-ea�t9%n�&����%�8�����ߑШt�@�X]+aPnt�4o�\8y�$Lu�X��c��Մ�l�1d��t{��yp�^ϛ7��:o���V��<�I@��XʴC
�v�&m��/ts���)5֭]Ec]^a��;�&�����0{�,��c��kVS�Y�f@��O��S���/=��D���1���b�nL��˖����X�j���4,p�,�DB7h��\����JR^<��d�2ߥ�1y�{��t�������
*�.�p=Y,�Uևsq���o�<�I�e�����S�^�}��$�bJ{/m�h���Zl@ֻ�F�uQv;rAy2��f`��-ŸA+Eݧ�%�oZ�eL�}e���M�3-ϭ�
�޷l�7�*�&a9����C��3z�Ĵ�A��p&���̒	�0V�%EwcB���:�dr�!�a�4����Bu6�Ua� �0�&0; ��"�cU�
��Ij%7@���
C��z�U�-c���c����H�@"�6-��{&&���2�=O
U#�h6@�9s���b���ٔn6�;�CE��K��0�"�,T�_��o�Ul����
��C}���z�Ag�i��l�hSa"}��:�n6N��z�Gc�
?���\
���2�=S��e"��/��2��/��2��/��2���2��s��?��'h[���wȅ	h�U��<L~���u������m������ۆ�zM��iU�2�(E���n�ui�;ߢ��$�†�6:!�Z�����Bf����'9e�1���$��~J���O��#Ʀ@+���n'8F˓k��>��;(
��ͱ&�"f$��#t#��%��T6�ZHQ��8f�1�}�(�K�d�ay2N�տ����믁[o��I���4)�4~��}da����&3(�{/�~(����|�8~�_x>���V�QR�6a��Z�ؓԴ�[�EI9a?iUˀV�,���{T��[*�t�dO
������9#��s��fP�����(~���`m�St��B������3��\�f���%����E�"SS��YB�:�~'�`���P����Xu&��D"x
Y��d�ޗm��l4a��;M5:�X�!)C��\��g���0fV:�Έ�|=VnIB'��*�m�%�)A�������#�A����v���j����V�5�$��e��[- �s`h
-CF�s�������Q�V-_ʴ�0.m�[�{�zn����^�b�P�e��2��/��2��/��O�2��/��(���:��v��m1��͊.��(�5U��0!���1_o,��|>	�y�\&!����р*_���l*9R�4��<i�*F��p(?�l�S��@kh���p�%�k/ğ-��X�}��@���)`_Lt�J�� �M�ӵkV����j%}�����E�`���d1��z���	j�F����W^ڄ���o:XMg$�
[&��E�&R�F��G:Z�ǵ�W��#�"1�ȿ�w-����0�����L��`�·Q*~[1Q����S��R��4�p#���D�
��c5C#
5��]��ٳs��/�<�q��˾묲>�y����a����,�U��������L�') ��T�C��Sޚd�R��p3dDU���`\A�����N�D��}<0�]��
�=-���f9���lK���p` �s��Ab�3� F�s<Sœ�{�J[�큗s��y�����H*F�����V�4�}?L�<
M|οm��b�[<� �?:��8q[i��ϵ��_���e���e���e�$�/��2�����l���&�
DV|�
O���0hX��5�w x{\����V�H��+c��km,�G�	� ΋#(H_�z%�:ڽg/	�ѽ�=*0~��n&WX�zpuv���Wl��R̊%F��0���^��*Z}^6
�)a1��)7�7X~��0.Fož�}L��K��W�8NT���/oH���X�+���b2AnFH�-�Т�7*3!o�>*;FM��U�
!X�0�⶙�EEj�^dt-|;ERʾ\��';�	̦ޠ
Wo5��z��0N�5�wCm 7U��2xϴ����&B��N�AI��:��y"������^3���	78��R�5��z�<�k �>�Ad_��Vio�0K�/���'�����1e�yڎ�``f��Ы`m��qq��ɭ1?Om\DL�(�Y/>�1�)�>nO`*�`�k+��U�f�����2��/��2��e��_濮��2�A�y��P������-�4j��8�~��7����%m�h^<Q�y�R���Ae+����XD01������`�ʀƷ�YT�`��3�����*��0=X��Zv�y����n�j-���Jb(�� K��[��g�b�F>�������dӦ%6T�-F�ρ*�6aS�1�U?�b���c�I߽Ո��6q7�"�f%�蚄�qDll��P1w�W��D�ƽ�{����̥�@R�*��]n�p��0!���$k�V���m	7FT-Ldp�l���-�:�"�e���?����_��U�8hB_ǒ|=ž(�B�x^�TZ)���+�x�^,�l�í"&�o�:H�z��.5�W\^>|0�L����V��H~拌��jY�'��O�X�"P�z��;(V�U=&�q �*�E]�_g
���
�Ǔg��|���xFbZ�2',��k|�/��2��/��,��_���e��/�c�����`�`���q�z�F������M\#�	gB�Z��m�<Vx����z絔�c���դ@�F
��x+
v������q�wk����m����
[x&����<��=�
i�}�j��fZ@�
Lo(Ɠ^g��#lu�\-��6#8c��7�Bn�P\�M`^,�6�c���8nm��
�H`byo����m�K)�a*i�2x3T�0z_
��t2��LLȃ ���Y����`� @�b@]$�K0�I���i'c�͌��)��D��DM�X�	)�M+��Q�VHk��U<o`i�C�0����Y���F3�6�D O��.nTn��9�\z�V@�y�'�)�\����OS��s��6N/�(��Ic¼�C����YY��<���Z3�)Փ=�1�%�M�DxU�����Z(�_���2��/��2��/��2�%w��e�C��C9�[����9q^g�N⟍�x:�����L1^�	�b+[6>�x#-��w���Bێ��v(P��ق�r�q��1I:Û�n�Qp@q��ժf�6lFV]*��-QP��)��w�h�Guc��/q]��M%�W_��彯\nք�[�C�i���	u�MfW�3u�Vm��d�+P�+!n���U��tK��Tԅj�J�e���J�)]W`���LD�S0�Q��3�r�F�Q�e���
�R�TZ�Ǥ��y�B��	�3my�J�XaHU�i�2yČ��L����ƶUb��¬9"3
�)B�<6�B���xNV�5V��!f2�0�jH�I�:�R�����jq�A�J�A�Y�Z��o�v��z�0/nC�+�g,��̨)��2��/�ߔ�e���e���_���L�2���?$�EJڬ�D��S�����26�y*؀��~�@Q��-J2#�>ߖ6w>oI�`����.ċ�*�X�
�=�<�(���Yo6��n�le���-���6�7f�O��G ��glh��[^+�0&ɗ�
S@�d����.�p��pg֯�~��6��VU"�Ul��<����a�yK#\���Y��)R��
V�5���?m�e���9VT�ɛ����XpdG���LO��|A�FQ�q*!���o�^�����\�&	C�.	�x�ʆܺ�m�S�L�@B�7�_�
L^�Wf�������Y�*;2���(��	�囘�V�(�	rHQ*E(���]�M���<�'m�e!<W3(�WY��(�\O�hl�ƱZ��g2��$�"yܘ�i�Q�_�"k��e���_�?�_�?��_���2������p*��n���aT��ľӹ!Xk[&�3��C!�������Ј����jY��C�p�6�4�e�2t�C���、�
8`"���;���������h�5W
~
������3bn�.����k/ļ�U~�4v���w�V0�e�.A��mޜ��R��~��_�e�:��Ba\�ot�UlN�x�lhH$���B�mSi����2��Y�e���?�!�3��1���
����`@, n��61��
Qs$&)�hF�?��<�z�
4�)T�1D����߳60PR@l�Q�*�J�U%��-�y>_[3!4�ZV1��#��I��fF�����h� �~1�	�¾s�7�b����'��g��4���	=�#.+rГwz�[�
nnoH���x#ƪ�@���
 �?�*X�Z���Rs����2���2�!���2��/��2�AѳZB�����b5\hL����\1�3�Z����q�Y�f�ChٱֶM�~��1�Z��ʤM�����+�F�
��^i,�x��5�0�����̨��h�o�d�.-߄r8ʴB�F��~	Ŵ�=b��f⭃��J�Ѵ�+N��GS�#ň;C���a��
��E۔!`f*��ۖl���9}�l�i�"�B�l� �;����m��DSqH�������
]h*��E]���!��m��˂"Ӏ��J=��L�� tg䉬���d��Fڗk�P�<�	<@���7, �&�X1MM�Nz )�(�3V�	�P�!�
�g"�[̈�"A��6���Y�b�ujV+����K��q��O#�o��e�ڄa�ߙV~�0��=s�ˈǀ��{r��f�/e���_���e���_���\E��e���(��2�}���-�'��^	�9N<R]BѾ���V^
�B��?��D�ɬ�At��_
��M����7K�5�v�9�st � �aG8ܵ8\��=ؒ{��p�mn�:R�n�c���v�4��hA�@  ��;+�9j���������=k�U�*�Ff��YUD���s��n�JAPA�~����������K�S,\��P��_<K��8�Dž���B�Ҫ�\m�O1�8]91�h	?k�4��H��]��G��1J��e�+�k�;'�5ϝ)n�$3�%�<��A�1M� Mr�û�?o���O�6����|�;�7o=UgA{mYlm�ࡃI�r�`�H�-_Pn��Z�0��l�w�8S[smT'qaŲɜ��3�bd�W��]qO��3�{!K�q�Ig��s�rċ��o��F�.=㢤����İ��Γ	v�e���kd]C>Y&�6����FSw6�^;��e~U��@V�*����f�5d0o����r5�������t��?
��?��������������]�Κ�����k�͑�����j�@SḺ��E�^y��’<��ͭ8vR���߇��y��y��_�PX`�a�r���M�.f�������}2�*��$�5~�g_,��G^���n�6O��W��L\fpR��0��*�Ӷ4�2�=��V�Wކ����^W��"*kk7y��D�k��"��ķY��V����z:hxd���갊	���)7D�-7��,�W��ٸ�(����< ��Wxz��;t��H(dB=��L,-I��@���y"��nއT
]��!�>�(P�&�R��&Lh��	2-�PZ��:Տ��~�Ub(�T|k��פG��i�!,�lRlx�D^�$�������������߿�5�����va����A�u�h0���/N�QNoM
�u�dN����K�&�t/�$y���º�T1�}�T���7��^jv^�u^����Zu1Q�.9;��r�c������i7��.�����X=q�D��*���F6�.?>OLݒ�nc<�U�Q��-��-���?�7j�2�I�DN
&!�H���[}��&��uԘ-���)���S$�7�!
�F6_�LJ�+���@N�1R.i	�=�l,���]�Y�&}�'�}|��7
�E���`��Do�.\פ??��U��z2f0�%��{��=����M���e�x|�*[�`�t@�ЦhsI
���WYYf�J���.��F.=���
3ؚ:�\2���|>�?����p���-������?�<����������_�k��)z�ju���L�%&��R�$Aq5`�XId�뭷r,4��/J��~��A��7G[*i?�'�u^�u^��%
g��+�ŧ/V<�}+�����rV[���E*�p�#�.���C	���'�E�eC���ar;��s<�Pz��v���\w��!�(K�VLȘ�c��[�b,�D���)c���v�����*a�B,9�
mh&�ܻ�	bi�g"v{��1^2�<�Y��q�quƘ��<a̘����(�/��b�`0��z-Ý�[	�[�$.���f�K�#a�qj3Wݩ</���3�ړ��z�I�sO��%H��<��x� ���;”D�(a	��V䂞����$�d_?��a�a����l6q�4j�i�D�7mJ�wM�}����?-������8�?�?�?�?�?���s�_M�T]tx�s+5�B�iI�Xt*�f�4*����[�vT!e;q��H��2�m6�w��WU�y��~]c���y�w����Ɍ�9�T.�Q&pv�Gǿj�Ӂ�e1vE�Ǥ \���L�_��c��|�Q��SNu?m�:[)�Ce�Է'9��T�.%kkU ާEK6���Dc)�!��gs�I)狊m��bY� bޥDʷ��w;ȝ�g�-K(�o������:#�3)g{%Z����8�	׌�IB�ޣ�!!-Wn�N�5b�\B?.���g�i��{R6z��~oeSL�N�.�K(�����Qr���{�}��o���J�̏��9u��(�1�_-z%�cT޼�?��K���fG��f�@x
�a��en?�����?�������r��Ob������:�?�?��o����e`4��0M.r�x�-Y�e¡���ld~U��:)���� 4x����L�ӎ�e��g�W������G�8N��_��$~��?��_����i��w^\��?<~���W&���?�*
�r�n�2�������5��6���e���`B��o�0���B%�J{lf�I�ov<�����+��"������ص�����;�JR՘P>�]��l�eQ-j�'${̑�'����)P��{r��#_ـb�t{���B���j�E-A�q͕���JC�ΊlE{�fA�Az�&j~HؽPVM�;q����6���q������4 9JA�緔TJ
x����Nڷ\t���#&�NJ�M9�T�̳ID2����[�eJ�ʇ��=��i!�Pa?ͮ�,3L?��#������ۃ�8�?�w���?���#��{��ɽVLd�X\cc�%��x�,�DY��C_'�P):����y���s���o�&��mFC\\>������x���_[��ՏI��cz=Ō?�Q�k���Z�v�/w����?�����y=���_�����[]:.&�$I�D��9;��֣'X��U�H=�Q����!�]`�q��ʽ}aθ?����ȯ�_���V�X֮#��>��l?�H��BҡΚ���/��RTD`$�1���nq!BOѐ���#����F��˲ �$c,X<�D>�vĸ�N�S,1Gm[�8�
%��+[�������
~�YT�$Y_�_��	+ɒ�>U��:	2�߶%���&~_H�ڴD��;߼0;b�F�UZBm�޶����SOL�f?�-DYf��f�yK"ʊ���GR��	��l�d��N�����Sp!��7 ��p��w�T0^�ey������q��������?fpY���\W[7�&���{�n�����2�B���B�T9auK��*f��dZA�k��O�Ѻ�?���O_��_���ko�w^�]�����_Y��+�O�[�vO��8��G�z�ã��_�:����g�@1~��� ����|�+�Q�=����sҮ�ѷ���4���X]�� `;��H[��I�|sF�B"��0�|q3���_&�"�+Q�*��J�b���~�!�.�I&���ј��O�$9��2�LB����-��2��	�K�~�LZqA�>�|��	]O$�
�{NQ�$�M��8��!���]䐐c����nk�e�	ۥĸ_���٧V���t!��Bysn�L������P�J-/!廪�C*^6c�OSQ}��G�Y%x��W��1�J>�a�rJ$L��Ԗx�R�ao�g��:��2&�y��Sb�����������q����Oz����q���'wL\����C���yr8�FGu�2鏰���C�q�xx|O�=�#�P�^�y z�9(A-��F�ӿ��ߍ����㧯.��z���z� �n��x_*���?ƕ�3�N�x&X)���������g��_�}�nZ[
&"B�{D�-˷7)r�k�օe8��cBL���p�/,���!�	N�2�/���s�
���O�t��U�J�"H3�梔E�ׂ���Ty�F��^�ܳi�}U1�U����T��-a
�+��1�ڒ�M�d���C*��L((�ףL��N}��(5	R1{R���p~����C|����_�qץ�9��-o$yI��}2q�P5Im�K�2a��=W�Q��h�'��(��UI�O�53��8HAi�?��aR���κxQ�nG2�b*�t�({��I����@R�׽lj1���	�#���~���u�?����u�����������7��7mC��3D�$8R��� �%��E	�W�3}����
]a�rD�gm���Z�T�����p����8��:��������ߏ���֎q
���Z�D��V+3:H��k\�$d��-�3�cS��F�Yŗ��8d,�T(4��p�D�c Hm��W)�����f�K��L�"�ڥC�����.*z8��Z����d�B2B�I��*hb⦒�w����b��D�˲�&�&m��W%*Qa>n؋}�hJ��L�yGB��O'j�	2��n(��e<dl֨D*sr|��/�|�'�#�5x!Ⱥ�v��-^�J/��+I��(�,]���K���މ6t_&7�֓i�ViD�`�S�WZ��i�i�nlO��ر��!�4?~�E�#yYl�12L$�������������q���{�%Pm$h��0V	TT�'�&�t�/A�Z
w:d�E�ꛄ�T�;�;\����T�߻��bK��/�~�����O��'����~�㿃m��������	��O�����W^�h���
������kb�ڸ�}*4a�L�v_�	^z6���S��S�W؁���.1�H����/&f�J�X����m����L��D+�V	�����A�e�W~�n�ѹ�һ�_��&�%�BM>^�O��NZ�%���FRH�F>���i���`��`_����cR�L�	���-Aj��@2!<�0���������c2a)%Vc�a	7ƾ�W�S,���_���A%����+b�7��(M��O��mY/���^�]Ӈ�MB�`Rل�sI4|L�,�D�M�b�o��_��-��.|'�����^���_-����M�q������E0w�{t����y��Q�*v`_y<�K\e�6cɒ�wf��4�[����O�S�eo��mY��(C�1	��O�7�/����o϶4�u^�u^����c���v���o�?�/��U@li���@��})�Foo����d���X�������"T%_[VN&ø�r#V��h�#���<�@ՙzʼnJEv#������U�O*���{j���_͖��p�݉���ߤ��X�Эo�i��'���)d�닫ؓ���x��NK~��$PMs�����r	J�/�w&4��I>˩ʊ-b�(��:#Ӷ�O�^حF{��GU\E��zg����#3-yE~�ɤ�*��P�C�ʓ���wQRm��t2M�I(gY�4�d-��}�
%������Z,���M�fk̂I���N�����v�?负/5��p��߃�����������?����������>�����&������g�P!(�{���-Sf^��0�mT��WͤVI�4��=����%w<!��hE��Iz�����
�����~������� �u^�y=+?�_���~������E�{y���k=��@�Y��1]YEi���(V��^+��&�=��	�B���@��^�խu���?��
�
C�Q�U(������Ԗ�5�����a@�,���9����Ey�R.�.��,+坓ص�,Q��>ӪH�A1:���v�������I�"�D���$��u�f�!�Iz���-c��|��h�2��ܨx$t	q�2���3��R�r�e ?�W1+���DcN��o�aY�f�e�ɠ �Z��%�'M�����(�p�IT�ڴ*ә�I�Rc�I0��I���[����q
�i�H�����p:�h�4t�ӕ��ˆ��ǃ5	�b_�C�6	F�0�L�p����4���������C@���_������ſ��c
x��@�=��J6�+������r1�a��g��ٓ�-m~�0
Ḽ��tr��(�8j��O�'�������?����o"����ߌ�:��:�������_�9C�V{��W�_����k��=��_���.��\�O�I�d�<\����cT�mL���M���„�B��N/T����Ő�v݊~�L%���m\�f&2�
s�9��C�w)B�$+a��%d�+Z-���	�˗����
ڟ�g92����=��@�)�����ز&�zZ���)�v�5f�d�Ʈ����3�S���f�t��µmL˖͎_�c�D����ǠF�̧�wݷѸ�`�c�8&?����d�Fg�����x
���M|d"~�z��ϵ�̳2ޑ��RW%76��������s���������8�?�?�?�?��-������(�!��ĕ�;P�V���Up��mpk�gR��4��6Uk	�*S#�%�翫p�c!&h-l&@�ء�θ/�{�^��_��oF�ӿ�u^�u^���O�������=�rL99���7��G��*?7�]��I�+�i��ʿ^y[��-hX��"
�B|���M.ݟΊ��|z�k��.Z�z�gA���<~~}�%�L;?`̰�b���5'��_$\Z��I����>ty���-u��@�S�@3�=�ړ�I�&i�MN�L4Ur��?E���-q��o����^�D^a͝��{"^I�����%=z��J�b��K_E?�8vC�0�Y��8�m���a7>�~���cE�ʃ���>^"i��v��Rۏ��~B������>��8�?�ǘ����n��������?
 Q=9u���U7�g~1�QT���9d�D�$0V��Vx�Mcr�r<O���nc~���{����q��~�?��տ�u^�u^�ɫ��E��?����Gq�+���柾�z��L�-��P��e$�Kc��yK��{�>E��R��k$�?"Dn�%r����O�l�����G(�zǟ��ܱ[v�y�I0�Ʌ���n�tߖTL�F��$HJl<љT๡�$�A5	�O�9}*Ҟ��8�'=Aa�&�a*N?K�>�w�y�)�MN�yZ(����z���d���:��!{h}m��>>�B½%G񭼣<6�y�9�!���v`�m�ψ��I�#����	�K�=���v�t�z��4�Y���%߉i�D�w�Uo[9�?�?�?�?�?�?�?�?�?�?�?�?�?���~{�k,����
�n����P�����n��/�B��a��<�z�l�Ki�6*����}[�<�eU��F�l������cY8,�j?{���
�4h1|�Z�r�S-�-l;��]r,���;w_�����u�#�;'����/=��r]#�a�[��~�w��B:˜�a=�&mI�<�o�H�>�|_���P�	�jK�!ϒ[��ǣ����R΂���2�[tlz��Ƞ^�,Z"$�}�j�nO���v�t�m��x�*j�;.D����/��
�UƞW���|�^�t�j��O&��W@u-�\=��Ƅ�=�a��.=������ՄW?�Y�l Z:�~������j�X�����6O��ߓ���c�z���xnN�v��h/���;dK�4A L7�d��|*�_��e?�_�7�K����E�ʸ��}WX2X[~hY_�����3�fO[�� �}=2�nH�5�*t�NBߤ8�үHl��6���
�ʧh�E��w����Cf����Χ�)�O�z�֩��l�Ԟ&{'��{Ի�?�b˷�&9���f��1�v�[�oR���o�������������������������_��t]�=&����ʒ��%'��C���0�6rXW�B�- 2Ә��4�L��\S�81���Џ��e]���G����c|&��q� �t�Jqb|
,y��l��R��r��	Oɐ,���y}g����~�,g����*X�aĕ�륛�/3���z�G��0OR��s��|w����D��ɭ��<�``�W3�<}�_�E���M�eO���,Z�{����Xk��'c�Rךߌ�P��_�0�S6���}��ՇYG?�O}�n�C�kr���O�	�Ek��-K2�*1��w_���G6m�q�(��V��s�lG���
�g�A\E�_��&ԁ#��4�L
3�qF.�r�����%oP��_� �7���T��F�dm]���^���i�`���'ot_��]ԃ�N�@�%y��X�s������O�^?��w&�+�p8
f��.��x�Q\��r������\�w9�k�Jb�u��'4�vH��{�X���H;�mlѝ��7�5�e�{��/7@� �h�%I��m��c�\4f����)(!���n�f]��g|Vl�0zp�[�K|a.�����9X�1���ܖ�~�����ӧ�H	�xe̪
���|
�zj�Ԏv|q�
s$���F��;J��K\M�_�d��W6H�~��;%4��L���|�����������������0B\~R�:�IVM�;�	���[�U1  6�KN��~"kǜ�'4Ѭ��1x�'0�<�KD�kƗ�B�|�6�=I��$|'{�51J��0NOB���-����L�0��H��lY�� !����5T�P�������59?��'Ǧ^���<�"2�£���uWOJ�#��w�W9nW��6'K��H��_�~���>��M��<�i_<%�9�q�V�E�
�{�j�6���i��&Ϫ�d�dKL^�lc&�C4]�hF�pch˘���,uo��%����c�����U��?j��~ꖑ#����ep>v�,�C�g��"�'��7��A���$k�Q�p������+�.����/Q��ޅٵ*�
b9<�Ho�+�����"��)�((��/��	
D�cu\�4�/i���텱r#�%!W38m��'�/�0�`�0�0��'k ��(������Q��"*KRS�
���lѾ�3vq�����W��P��-~�}��W��a�}&�F�v��_�v�Cib��⩤�d�H�(_�H%�c�6�����F����m{eIx�G��J����$m#��j�
]�g���)�12���X�/��%��E�d���HI3��J�;��L��8@3�B��:}�D���摮��#�K�_ss�n�|�������I����]����������/����Ng��q�0�I/�HL��E�m�ddPq41��m�'
K�;Hx�mC�Bw`�:�S��	q�'��q�t�����Ag|�Zz#O�pZtr\|���K`��H+E����f�&���NQ�`�ͳ�Ҵ�k��)�~$�=q��}������uqb���k���P���d:؄uj����L�pC�DF\�N9����m��ᤴ�B��y���4�L�E��}�m5�E#2��5N$QTxޢ�Y�d �b��t.(�~���Ғ�=a��08��`I ����l��*�U#����&ɯ�^�r�6Dv�Pe��[qm�j��ߺ-��{,՟�6��m�0���^���*���U���Q�
��E��6��?xZ�WG��P��t�G��%4ӊ����I��ȼ�g� ӺfR2��vVˏsEV��Ѝ�\vs�{O8h���PE�UE�js���!���
Ӡq�t���7*37���U"(�(�jb9q���{��.,�D�mU���@*ڞIg�$�aq�����B�}CN��,���C�.�5��=�{�]a��J��s�D��o�jr�����D�I�$yZ|��k)��y�v�ْ;M�#jlnܹ�����	��7H�����w��:����p_�p��h�ͫ_l����$�p }�\c����3.�C+5�+�	����/MF�����=�?�g�q��������"!����X���ԙ%�e��b	���֮�����[I5�a��쉹��s��d�Ƶ��?#A�c�`T����ݎ4��*|�#uIY��X<���O0�1�J)TX
��2�K �R�Tv?��E���,z�(YH�i�%��k�
�anx���5���,]]8������4
�4@��f�K���a���f��t\�"P��j�'ՕV���v��y?)�Ѫ��Bug ۸>H��bD2n$l��׶j�t�}]�-��i�e�|���M1�$�pt��	r�=�%�3�׽���bu"pL��ę�Z������^3�Հ'��#��3wb{��/�,r[M��ϭ��Ǎ=����^Ι��g�v�o{�ߴ,�W��wɇ3xV/ÉޮJ�O:
#�ΚB��)�
����>��O!��4R�x��XR��{F8���$L�YMRZB@P.�@-e�ژ�E����W��Xޤ%!���Y�N�ZDI�d�Q�$��ې�\d��"y��"s� ���A�r��H�ݎ�}��v*%l�e�x��(�1q¨%[|%�����e���a�iN&A���	U���~j�vOh��
�(Ym�C�W���}�I��|e���s�K^d��7d�7�`2�a80F��uDs���a�6�����[�����O�������mȃ�8�?�?�?����U����}��'��t��V��T�k�-d�R~��g��U��$'��ն'�j�SE�2���'��d��AQ+�&��G��3�R���>9L���� n���ÇC�PES��=XV�}�*:�f�t�ѝ<h�-�Z/Oa�W�P����"ɥ����a��8{r���57�hN�v1�I߶��J��7_�m�����-�zuF��/Ȉ[��=m�n<�^܆���
��`=����{k��U�Kߚj<{�#�vP���.q0E�������B�����?�N�F�*Lq�xN�[���Ԗ�,w�)��^��6�5�/���>O!�3@taE	��/'N��X����&��·�R`�d�͎c{	�49n��ǰ=	�/��-O���@�c�C�~�W����Z�w�K�����-�y�qA�UL�( <��DMnV�� ��ӏ)[���� �����Zm�t	�al%���%Srk�D�^EF؏x`�8g�P�h�?�� �ަ�s��q�q�=�iG����-Qdq:��I#1�<���s�6����s�G���h�ĕm'��p$�MD����'R���)~�H�<��bS1Taj���m���(��1{���U쾚:w!��;��lq�l�t�{��ď���֍R��u�!�M�~�M����du�/����G�#�{���������������?��g'��E-�e�u/�|��p����d�-�EX��5y��V��P%�Kr��o�Ð���O��T
�}�
ϳ���C뵙�ۓ��$�>.�erkH➯�=�"$"ސ
_X�Azh夸d�Q-

�[��4<ŀ��b[��,s�W
�˸8��\�j,���,���j�D�	��2j��'�}b;��W�ꘖ+��,��'\S!_LU��c	4�}�ܓ8T�Fc1���lQe�/���|y��W=I
W�Ƣ�����g5�<y[_O�($]*�rg_eE
��{ѓTI���v<���^�8ۉn�яv���9�31������5�gҾ�u�btS)����w1l}�V��ͬ^��[lS͗.!{4�;�bU���8& ��,Bi�L搱��Dz����^��g�V��Kv��{�]?�O6�c��4Qn3Why���@��IqW7�m	��EQ�-�>�T$d��rd:I-�g1z���n(����F�_��8mOa�c��/_c%�rSM�Y�{h�����z�R�@�3� 1>�'�w5��
-P���uk��4f�p�����S�y��Vz'���\��s���-���1��~���\�ۏ&���;-gs{��R�n-�A[�]&�I�vo�?mD㌃���8�?��u��/�������������f��Z��7���0�E�a��׬�2�~b�
+I�Rf�yNR�Ȧ��I���/I��i]�R�u��I�q<��٘���y\���La�”����`��w�Mca�3	Mj�?*�"��E��e�0���j�ӱ� ��-kO�ֲB/bV<f=�m}�c����W��`�S�Z����e������X�-#�3���w�CCc;7/g7�X��SH��<�H��){Ջ������t#�͓E� :�K:��1�G
�/��T����!P���-�B-/�Ʃ_��gF@/���i�*6������H����m�5>��`�xD��X`C�K��u/1, �6RĢ�w�)n��bF�O۾�e�5F�%�!�^lE�0\����a���j���q�a��y��^�:���4؆��\1cL�~��5,o��o���GְT��)��M�d(����3��
�g���ȕ��r��W(���+��GO��d���a~,�������Y�JB��*v��r����maB5�V��t�o���qS<q�49�$>�C��L�-�b1�	/�ӷ��}<%k9�
x+c����%�
|.'Op{���賶�#�]�j���\��f��a�-�Uud6I>HK�WLz�
�z/���t�VXH�=}����_oE�����������������{�˽�"r�L��&痬*ّ��Ե����I,�z1�l	3ۼ<E��ɽ������љ�/7CR����n�JS�T������va`��$QP袉��y��
��{n� ��n�����}��<d9c&�/ȃ[,��(ǿ�n�ҶPZc��k+1j���v�e����ߨ��롼d#9����-�)�I���M�ԧF�|��F=xd����m���e��pG�n��K�pnʛ�KT��o����f�3��Y3[����w�!� ͜���X���^(��ʹ͝���a�>��R�E;�"؎�v!�9L5���UQP&/���ח������k�Z�v1�0N�_�ϗ�?�6�^,Z�5���d�aT��\�']�!��f�G+��dɳE��L ����I*-�eǁz��l�%m��!?+�
R�7&�u3;륶�]���L�j.���&����F�
*&��$L�L��'J2�EȰ%e�;�4V��-�VCg�H|&��}%��p������ޟ�i5���DQ1��ų0Y���2��?���O2���"���t���h6��%-�͗����5?~6��2dl�
J�P`�Uq���[(�1�J��_��(*&i��560c�$+�m�n��������r�J�1޲�$c�'����:�?�?�?�?�?�?����8��������o��+���q-��(ŧڃ��>�w�5N������=�w�
:�<Y�~N��G�nK��,�����{ �%��'[Q1O��۔�iPM���?n���}�dj���[hi�1KV�k~r�rK/ʝ:��l�>.��ꡥ�0B;� ��m����1��V
h"5�W��B/!���O�Bx���oPf5�f�)����v��ê�66YPm
�saj�Y��o*�tA
+i��M=|�X��/���J|�<��Hsz#{�Y���Ȩ���[��w!����$w�U�u�s����X�@���jQ'����X���/pF?<кm/Ε�Hݸ"���$'e�6G6������Z�m�����6S%��g`T�1'
�+� oy�ȶ�fPA>	�2��d&3��U)��w�}�Ay�`D�Hy�U���V���UU;֢���
ވ����`�NM���j�U(���g��'K�~G������S�������]�;�E�	۪�_��A�h�A�x�#��Z#����V����.]lΦ&��ݗ���3�3�b0h/�=�Ƨ[�^���#�g2���(�)��R�'5�ȸ&skFr��ϔ�V:�I,nمA�9����c��D"m���IjD��N�2O��X��}���@˃�𘢾"��!�C�xuYƨz�b~D���������������?�������������6r���� 53M&��z�:�L���������05�߂���H��u�'�۰fR��Aݺ�k���h6���
��(��}��P�Y
��Nn���	���X�c��X��HȔm���[8o�?&?ö��20U<:��\��>{�')���r�8���}�8Mr:�ɤO��Z�E�JQ4�H�B������n�.lS�-|$�g+1
F�1gpDjr�V�GN��r���H����������3�-���s�� ��.S�g�
@U-&�x�D>��Q�W5���bV`9�l$�b<�j�"kX����vA;�۵�|�WW�ہ6���Jy:]�77C�J�4_��{�U��a����M�`!��{Z�7t����M����Q���:�`@)��2��]���L�ȯ���M�a�� bn�xy�r)lצ�����a��V�GVX~fO[�%D�D��$��D{��0�vQ�&�q��Tq;��XP��|r���ʒ�B�BRTP��^9Y��/C���C���u|��͹._��tsJѵ�v&��
�n�|K����1T������E>��4sA�"�|�B=�IӒM���_�5v��`aK�	�K��O]�ۖ4P�Kʹg�l��i2M����O�ɯ�m\��G7K���d�-��<F�1YvL�����@�r�`�e8������������?��������������{��#N��Ї�'\4�R��S��7g�a(��*N$+Pغ�ł�z&=�Nz$�/���n͟��&��\	)�?�>� N�j%���MR_����C/d�A���ϦK�sB�8z��[�a^������0��o6�V�ئ�=pW���U6���>Ա$Ͽؖ+vY���K�5���[�u���x�-�۫����[�C[�R���8�=�XL����XU��H�g�$����.#T6;N�|צ�$fk�
�L��!�j�ք�P`
��-ش䈳#��2�t؊)���B%"a9v~����3<'b��	��`0tRG���&/dڕ�	�+`L��%ƯJk9~`b���Yƞqǯ�� �L�d���ь�˛��~����o/����@a'�o�ub�Sy�*�2h��6�(tyU�/��<J��B0�@c>-$
��%��M��t�v�zz�:L�n1*Ԩ"Z�m�duJ��(V��΀�J�`@mjKEjd4I)h�量ZҞ�N,
&mL
�	hX�װAm��2���H��dՉ!uŸ��~�zJ�"`Դ��fp�NI�����Csm��B"�LA��)m�F6f��i���C��Դ��q��o[ߖ##��]�1�W�ذ�9'x���Ds��I򊱿	&�H3��`}��܅IM���:�'M������$����?FFq������������ly���q�=L_���M����u4��`�r,-�
�x[��<�/���ާ���0V1*�%'���މ��c��yR�(�P�R�����kp�6�ͲP�,��_��E��Ƥ丮1����S��2�a^��<���6�$j�e|%�����2���O�KW�ř���B�b���j	���-��慴��Va��	���t�E�xË��mS���Q8�L�.W�0�t|
�+�u3�h�t����T���3����;|�ͱ��}��=��%S]p��^��M�̛�?A���`�Y%:Ѿ��Y�l��q.�.W�ˢ�+Y�;C�p$��*��+�5v�ߥ�Mʅ�U��_����b�m���f��ʬ/T,��(��X�:J�7���kejГ�D�&n�2�a�<�SB�ƥʭ_i��v�!�fŠQCvM?����[zP��}����`PD|�-.w�H^gdrBK+��r�w1���Z������)Ta�-������	�
~���LX���8���k�%��h$�1V�bc���dz�>����u��=<��S��8����>���ăΫJ��;�e�/#���X�\%%#)��6>fi��c6Z,c�������q�����������
^��ί��5�o�%��է��	dlo��D��d��q�qq�w�<�ՀS��(����=F��le9Hk��Z=�>�-��&����rB�JM��M�|�U�ܥ�β���-bU�l{r�rh�}�UR�k�x��*���^�Yͥ��#>Y�����x��C��Z!��;-���-�^z���1�m��[���l��4�K�s��j�����n�^Ԧ\���a#�:��1��P���u�S>�**��
;"��.���b�W���`�W��pO�z�@�s<�̘BD�\4���f�W%]~!Z�+��\���cv@��CC0�������k+�z\�rX�@`��b���ѯ�ot��j����)8�t�r]�,A�p����{Y0��!`�YݨO��^��_��]��1�t�sP�Nsdw��U#��E���Gc���n�`��nj�^&4͔���W�X@��[2�4���L��ؒ�v���5��>Ĥ!���N�ܸ�M��X3��V��{��\�<���67��ms��&mY���NL����3}ab����������j��i�e�=6�9��~�k�_�S)���T��5���19iߵ#E�DWb�衑q�`N?�c~�0+6�{2M�4����,���hi��cV6���������p�������.����Ͽ������%�����\����򬇫{��o���v�ER<���PiL�Pe�
4�F�'�Z��Fk�g+�5Xʞ[/9#�
��3��Χ�P��*纇���}�@9C Zw�tӀ�z��2E[�I\���fc����t	��-�s+ZJ��&D��q��аuMi�xc�{��%̒sCv�I�Kc����W:
���:����j}x��B|���KF>�^��m��Ϛq?^~���3iP{�^6x>ň;�y�p��z�}(7=�t����u��1���ѣ����:��sx��"���#��}fJ5o�d���s���~�6a���ȱ�����bo��t��<�p�D���}�&�&]g��	�W0��@���y"��*ۛ�~�0�N��ˍ�@.=�#�l�שdǠ����u����T
f�㵰R)��P��=3bw�6֎?�fYᲅm�}��72�{l]��8"Vs�M�Л��O���S�/q��/ �����C�Y�u�?����9�*��Ԅ�୓��=h�(�쩲��V����wV�0��/7��;[�n|Bv�,�#����l�CwC#�
�HY��Êb<�?�?��}����w����~S���������m�\��h�mk}S�O��`�!B�fg|ds��/+Td�dt^AYWϸ�)h��B��$�OT�zK='j�y�Քr��Y�6A-��%�����t�,�w���'?y��V׬�U ���mt����\:�=$�}1�ó3®w� �-�E�0��c�=|���2��k"zȶ��:�6�b�'m��jS�e�sl��d�q�r�2�2�O�#��[�}A��R
2�蝓�G�O���y���J��}&�C;�s1|\�7��n�ʱ#���C�W���M������IS�6��)�G�D���7��XL�y����?��^~&I�}-��H0��ok�7�,���s�?8�WQ�6p]ĒU���O;�؇G�4�r�O�%x�OL㗾��_]���ừ�@I�L�z/&��
�٧ݍ ��Q��wbb��[#���B֗��*�[�,C�?y��C~�4����� ��Q	b�h*�L=�A:���0WsO��B��9�f(j�?��5-*S��>O~��4��:2�C�a��V�� �˛�T?=�{�^HP:1��r�vrF�d5OI���vբ��pڼ깉0\��e7Ns��e��c�DYH�r�t��-��m���%��ea�ijƤm�	n�'
����xB�-�C�;��[�%[�D'�#�G�`E6D��񻯒�
v�J�m�����������o�=�?�?�?����?�֟�E��c

44�l�+�ɰ9mzM��ɳ��Y�-�;_(����-N�Sj,�W��FI(�	�,��ay�Nڂ��}K	No�ŧ�C=tlç�]�t��*=
�H{�B�I�Vn.��s|kц?�4�5v�K��1�;���ͪr5��gGTe'߭X��(z�݉q,9�Z�f�c�-@����,FA��l��	�9��A�1A�L�6f�-�����������3l�!��x	�]N�O�h��G���|��l"Y4x�v:6�6
��sM;ɣj��?{ap��Mh�&�وr�l�V7.��d�M:��w�'�MR$���J.,�Vl�W&ħ!>��;@��P��U�Y:��%|���.�1 V��������ޯ��w`Gbh>O���T6v`l�-0'��;Q�5��4���"��g��My��̱>�V��l&��NfZ�ee�c���߮���;�'U���0œ&���,>d��͹}#3ź���Fʄ��J# ����i���!z�㍺���Ť173����O�Az�am��Mtl�p���)z_�x�M��
;.�0]��2_6d�Pz!�G�\�-��u_�~�����A���M���������-��r�z_4�m{�gLi�S��S�m��Fl����	�W>A�‚���6����*��j_)#
��~I Z�Ԝ�V���l���t��)r�=b��۶���5�҇
�l�:��~����W0��$�{B}�~�����'�#F5־��+����e��D��c���Y�r�����u���K}�<���'vNIS,��m-\�g���yu�
��4�멾�Ѫa:-,ٓg~����[�漖[���YZ�$���֍W�w>�-��/%G�V����njb�~d�P��{���Ε2�m\�Ft?��#/�P���� X���?�O��tҩ1�'�J1�'����A�/���h�2�9')�s������/�~�$��y��p��t�K����>��B�*������'m?��x�2�/ȼ��rw�Ō�w�^��8J,�v�R������:Ay��0��{d��>YE��`��3gB�L�'7����g��f"+wSu�\/R����c��U*ɜr_�]^�6;��j֝G��Ҙ� h�5�9"��3Y*Y.���x8��WY�ʱA��t�!?h0��M�Ҳ�1���;��?"�����$���c|Ц�"��<hA�h��h��Fۃ�����������������?����8�ef�B's�XLK��1{��g�G��ۨD�S�-i[�!b��?�7��F��;���b[R3aگ[_R��P�vp~KPϡ�V�Ѷ1���|]Y���|���y?��֥-iҷ�1$�s��	_�/�_?�}�mܞ��ќV�S���	\���2ŚsL&9���7��4�26YBNb��C�ē+pD�q�+�Y��́��:�n,��u]x<���r�����:�f����f+y]�|r����̔�u�ɋ�٫.�hw��k�f��ֲsN`W2��7��x�dZR2Km7V���� H�g��jzR:jE3Is�b�54�k�f�"�m�b�-Kz�
��_F*��Ut�8?��]n�~٬�	�}\�(�
�����F���B03��*�?<�?B5S�*&⑼b%��h�� �.V�IF4"�����s�ǒ?ap��k�m�6���=q�ETZ^�NJ�"��+YCb��Y]aCZ>���vݢ������+��<��[�Xc�p�%;�(L$�����0=�5��U�IL^�n;e�ӗ2[�[�D�����_&�\�� ʪ��B��/�L���|���=���Ɗ$��t�A�²�9z���{6�ؓ�vd�����	r&ԯ�t����G#Q�)����;=�?�?�?�?�?�?�?�_�=�gg�����?���w���
�Nn<.�(Uњ�o�$],�qf���T���N��}wY�*Ǟ�RD]�e���W5��&c��Y�V}r��PQ��[V�.�IJ��l���=I�F8��Q�z�y��L��=��Pl~=gV�����pv�Ӷ-�+�M�C�E�5���Y����'�J#>|=I�CB^O僭ܩ�n \u������a�&SVAL��4�$�C��O��]9��E	�6~����;��k�=T5��B/�Yp�Y=����TE������U���=�/k���c��w6D>���6R���Xd�A�E,���d���ÿ�n��k�9�pZ��#V��J�v�	��R�~��W�����O^E�+�@����OZ�d��OW�)RBZ)��PS.�bD�`�@ż��܂��!��ۋ��O�?1�Lޛ�af#�w�_Z�9qr����z:N�($=��BZ!�4�p�2�B٪giR�C�#h�o+���{�+v�W�ae)���b���-�6ڹʜ!$H�3�j{�"�O=u�_��*6�o$�VG�
��P����bA���a|��?�:?�?�PyU���]A�?
��nK��"J�	�4�S�e�~��1���5R'[�!�}9r k���q�1�Ȋ����q0�v��������������?�c����/W�e��$8ə@�q���fQN���Ŋ1��ƻh�����^Ր��>��;�n*ɬ?��nOu��YF��
�Ԅ�����v��q�fT�DP���KQPLQ�7@��9I�>\U�h0��3XF�Y��V��Z����j<t9���;���[+Zp�^��˂��A���L�A�.~v��J����Ę����rZ6�I�K��+�9���8!���)�3�rɮ��3�k9U�UP{�'Z�����r�,WL�}V ������M�S���!�D�+7�)�������x�����5B1��<d/v��(_�H��D�h�/�sO���6�7�o\��N�XY'�
�KoM�8b�%���*��V'(t�n�$9D|I��'D��ݎ��gL�b?K�%���n��')"���������>7�SL����|Y.
���^AE��DD�B����_�*�&Mؽ܌�O������`߸������d�'!�_Oݎ �DK��nn�$��}ӡ�e�oɖ����a�Y�.�ᱯ����q�J�BE*+
�j&Dx�E�=nW�ה�1��yڻx<	/�Q�l���J�0�S��2�@�
���B�GR�1��0�-�T۹:�v��g�l?�����M�}}�O��9��������������������rP0yh���@L�d�.����a���|뭥4��(��{r2z��/��X�l�]�Qb,��_�'oȫ��E���B^�4�s�Y�	�
�&��� ۂBVn|�*v/����t��C�l��)�P;���CN�(���&�G�y�N4B�傰Qe&4��^V��Y4V���6���&w�:V�dȕ:���NA��M�1n��sK�h0�r�/~%��g�5��o�{�xwUt���ѝ�q:t�w�OW�C[��v��p�	b�����u�}�Ɓ�E���b�p�OOuw�V�r�������F��؍�ݲO���K}M�����䷟ׅ�ـ`��`�+��T�Ρ�-�4�~�?��W"`��a���!ʣ��{�o|�������GX%�\F�P�a=rK4�����Oljq(2�xkM�
�}tlt~`r�4�D@�T��?����Y��4}�y��=�g������4�P���K/���6�M�w��l'U�Y�������lw}7���K�;y�n�l)�]QNJ����C��V�v;�1$���T�e��oR��8"��z1�~���?�?�?�?�?����������w��~���������/1�L�r	��-(���(��l4��Ca���]��^Z��)��je9 �e�[�Hڸ�4-AT��Ҹ;Ͳg��(�Qq!���鯟�/y��.`Y~�)�'
e�ZU�T�y�k%$;2���O�Ş#1i��1N?ք����_CO���S�%V������+V�������<|_$k�3[�$��p���?a2�->��5��-��cd��E]霐�����,��Q�owtο�N��p@u�@�t��<Y ����L��ס�-m$2u�0gXZ�۞���
��9Ì����g���%&W|��˔O�WIϏ�F��_�g���%eF{i���q��m�
.vs������LZR4<>Mg���6iѴӳ,��y�\M����|�ԓ������_�ęO1X��X04��M��?���U��M��@u�q�?�3�����)i_f�
�z�$�ę��G��TE�_HG|�(V�и�^bޥ��zlM>��%��R��� _ɥ�l�ryL8���U���������L��b>m�ƞ���;3����w��_�&y�7p���n�f�DQ?`��߱��l�C�T��d�d]�%��YT���v��:7y�c��t3�V4����v�&M�?O�w[������������������?�����������"a
�)�g�Jz�����+
GM�3�?I�O��!�`>|�ؗ�ny��}@���[����/���0����^��eO(��	;p8�}���яq~|��Sm��3��x���(���C����׊�Y4���A�+�Y
��-~[��e��P�Pf�X^?���b����Ԝ���,�:_��qB��wY���iMp���]�����쪱���U�;���l�_������D�p�+N���‘3H����R�践�b��ѧ�t�=��{Dn%5L*��{�0�l[v���n����Ef�iaFƣ�&�m����BL;:m���^�
��.4�/{"����0�	:,�VF+Z.>����ɭٚ��������L�4=ȣ�@�B�,K��2̜�q����O�j�5�	l!�:5�/���j}d�>���V0M g���	β6ǐ��&�vs�'�i����'����6��j:LሬtP;.2�{�Y�W�=���Дx9]-�A��01����_�Sμ��Π��Nj��_�>f�w���jd�[I�a]U��-���8��r�AR�'n�!Op����Ѓ���n�h���O�ʗK�Fa��I���2*�
��?�V�����Uԍ�/�6E�M�2��M�Oa�ev��Pc��f�/�����,}�M������::������������@��-��6
<]���5�a�ׁ��N�u۪����j'���z�1��x1��r��P_��/Ȼ/sk��<�Tl��;w:|+nA�H���f���U�zIT���l�p	r� m�M���-�}�+l��/i��s�߼F��-�n��0!�\~/���1�6n��c�x�`7�8��5g\�!�p�0㳿�q���z�>��
@�u�_:�]^p���h�f�]t�Y��+�������闄k����8�ܽ�)�o�4�������熇l{�Q���/�84�Jlw���>�ʺ�E���9<��?�߾�X�
�����׮�Q/_�o�%�)��{�]1<����V�?�����F}���9� �Ÿ�
��t��v�	?
|>�	�ǎ�1j��E�N�8�nC0�y!����A��D`����Rh�9���`[�݀z���f�9��l!C`I����S��}��J�ad���R��{���m�o��?�����K�M��H��{>^�T�Lf������l�V�g�@glq��0�kDO�/��f#ҹ�0b|��'��`634�2�e��s��3��]�~.�"�7Q4�R=��t������[�:�
��������?��������Sf��چ�y�`i�낽�p���Dbqp5J'1�ߊZ��5{75��״s)h��](��ܭ._�@
n���	|��RZ��n�h�1'Fs���#O�_�'��w�A��GV�9$!��')�R�?C�=���׽�_��v�I�j�o�H�>�s��ಌdճ�WQ՗�V�A�6�j��V�Ԙd[�����>�!�ns��J�v���K��q�e��� �J�|��v�U�k;����}��q���
t�%y�
��|@έ/ɺ�|\�������{��.]]�[3�;{c�)ه�S�R��G�U�0@����ώ���v�ˢ�eo���X��w��i9ݶ�+(
�s2�6�&=��۶_�vK�mǗ�
s�����[�-޵U�����q�tE���$�T�V�3��ՑAH�l�5O����
�i��m�yZ�P8-x��b
��IW�8�<`�C���֮0J�&�Z�k���
�b��Ť���9s��%� �i��>��$V�
��*S��bp/8V��t�u��	������4�2�D��aP��ݛ��A��P�I�#�I�J�W�o����|�$J[ss|�e�x�*]�j[m�(b��I��=�U���W�K��f�Ƙ�L��ҠlG �
0#U ������!��<�}��Ģ�?T��=b���|����������������W��3�ְ	�VVB`+�>��%�=�[z��tu�O^����djm��%O!fr,�	6��M��	��;�1}�ٖ���+�1`]E��iY�������V���H�P/�2G?5��ǹ
V|�|�څ��=��S�Վ�AK7�v�}�21V����E��$����@�@��9VN��<p����
�f��WLs��.�5�J���Bk�)̐�ǸѮ��/�[e�O�7Q��1���-�&���cB�q9QȬ%I��YMx`�H������gv@�%��b4͹��K��i��V�9�F[I������|K�Qɏ@j:GAjl'=pԡsP�5�^����,�H|��+���3}�`��`�1�b+7�6�舓|S�(���;�l�38b���mnWh	\����M�=}|*���?6�g5ղ�D�A�Q����u���"B.X����I���鯤�=��`�aA	*ЦB�N`$���+",b[3�K-�#��c�	.�k���AK�$x��A�+�*Mi�-��e���"C��p�B�7Ҩ�;k�bV�F��y��)�Q���*��;Ʃ��|$��%0��][?󃤱��B�uӻ�>ڌ�.o�_�Kג��k	N����]�mkU��Ъ*D�r%�,]�[��%mxʱ0.���qHpl-��]1�C���������������������������� �������1�Mכ��:m�<|K�u
<�������~���o��L܅���v@�'�C>An�۹�x[�S��j�zq\&�jO�vU��E�öԩ�A�Wn��V:�����f�mSߑ�$Kܢ�ԴԺ�
Y�{N̲O���z�S��ѩ�n4�_���y^���<E���=�.��r�Iw��]�K��؋nA�3��Q���s�x���Icw1F���^ ��]g������˽vh�-6���n���"�ZK)o�!U8A��#\��v��������F�-�J�^�?�zl+F}��5^^ã�t�l�� ��T��<V�s�?F[�s�Q���0��A[
����ն����ƛQٞ|V��a�ai{�wNo��N7CV���N���w[د���5�*
8��0=o?i��G񯌷��_�Ug��T����[��X�{"v��'�Y���bB�Ɖ2���fcߔ����|e�ƈ���+�c�܀�c�%��EZk�"w\�I�ёp10&����H�D���l�2�	��\�LA�r�$����&�2M������܂�ϵTo��p�B[��kvL��=�[�_�i���_1?h�������G!�C�v���������w���%��0~pB,h��bt�JH%Iv�
3}ݯ�k`��[=e�b��C�3��	n|����&%5��Z8)gP�Ԅ�n
�%6���C�è��"0���?������*r��(�L�rU����Ơ���I�j<��5�(���æ�W����.j*�T����c�T��Uk2�򬌸��k�����?��c|߃�\��K��.�U3U���O��>�M�Z�0�]����'2��$�Ѫ��*��/�u�Ti[^�Vj���.!'nFz$O�
l)��`w��?(���{��^�s�=�BnM�
�RĿ˹�4B�[)�X��n?^�S�mW����K��69@�,8�j+�����/��� |��Y��݂��
e����ŨP.���Hn$x����#Y8��G�V~�Im�i�`�/�[ܵ|S����nF�2^�B�X�t�[& �%������W�E�{U�o�m��M���	}\����ž�q�L�M�6|�+6�:�i�������/zN���'Lfd<Gn��:��7����$JB�#F�*r��|�d��k���A��UÁ0	;�������d�#E.��-y@�}��=���
�S��M/fɱq??3�C�j�T��ﴽ��
�����&E)�+.�o�6�M�������?���y���������������_�e����glN>�	8�$M�?�G�&���Ae�d:����v໤ׁ�5�`U�Ћ�-[ͰBH'�*q����.�4� W�Qm[�JR�ӥ���o�K�D:�k�x�i�6c��_�^c�������#[����v'�{����v^9
�P����j���䮃_[+�Xݚ��@]���5��,1d�Xs��0�f9�<��	
��@#/��ϭ�ig��}㔚r�>P�Yߙ|�X��CW�_-�_�fg�$�W��\���$>��U7��6�I���
E*�-Hw�P�g�;Ȼ��Zw��:+U�5����_>�k��d���R�Ū�v�hPV/G]K�����E-:��$�_j��D[�!��<���a$c�����ϳJ�5g�F+�1�+݃�M9�M	~��Z� �I:d;�);^ 1�vb��EXX��%	"��-��Vˤ�W�y�$��O셮z%G9�Ǔ�*�	�`,'��~�f(H���$wg��O�PiU1����r;%���i�~U#l�]�0MRғ�b����ct?2	�*C�T!�z%��I�G�#�mf�XbR~��/W�;i�w��B�Qډ+{B�[f �n'���m��?�o�mc@�K�ew�<P����!�+�%��Q� �����C�2ɘ�/�B3�Bmmkb�����������������������I���>�?���~��Ͽ�o���XE86��z��S+?4�Gr��PS�l*�cɃ�E�S��$t
��
3d��o�n��d�"ǻط��}��Y�D�43i{HI�-ʱ>����Y�ẑ,[�ѫ[��j�n[�6�ޮ���t'ߗ͈��ZLd��-�iO o��|��c���
l������k�ˏϭ<��$B�ٮ���n�{��Aˤ�m�{�������e�퟼Kg��yB��n���^��<��<S��_N��~�Q6?.��?騗z�]�*�-����sy��_��������-e#Nosj�o����p;�"9�1�`�}�B�'�؍�w^�36�i��z
�e���?^��^��ւ�=#@q�w}�.�:�~�sN�}��q�Xc�$���f�
긻6=Z�d���o�_�]	�G�CW���"5��7�@WX����`�<�(��xIc��l�b��d����E��»ڿ�2N6=����扂Y��Rnwӗ�SN�+ܮ���\ƻ��X]�V�g��ߐWo��^�>�
��O���=>=ܢbO`A2�<0�K��{	G�#��%�w���K�������������_#������A01����[�o�C���J:�VTw��C3�؃���x����ҁ�@Y˽��ض�O�N?��&.��dxoE�e�_sWKi]�{Ȍ��*�O��&�n��sJ`"]����2(�{��>������;3X�HGx�4'n�},�ox܈1��<5h�P���j���[t��8�@s4˳�-�;��J@q�D�u�O�K�&≰|�ɭ�p�����M6��vL<}�!���sOou�1Pl�d%g�%��Dz��%�'�c�vi�%�=��ϒ͜UӖ�MV�K=�A`��FO��R�J�ʑþ̳��5�'f�p��xɑ6!iF
���I��"����C���z�#%S�V����r��\a�sz���|E��O��K��
�G��V����10읮����<���D,�ËF\� F������G�3�Jz*��DQj
k�$bK&�Y&
}ސl ���k�Q$��V�,�l�O=��YYH�-�D/
j��ӯI�2ůۘ.�F9H�E3�)��rلe�1|�ód�"F
�gw�I�y�:q5�����	/�ˌ�+�� gR�{�YԬ�Ė�#�_+}�&�	v�ȭ�)�n�3�F/HVx��hhc\n��1#6�>
��EcW�*CAI/�2�y�
������<��������/��������z����!�<2	Zn��'���@T��N�P`M\�!�s#/�$�D1�(�El�P&(��
����C�dX���[Z:$�eQ�tg��ç���l��<o�3nx��Э�$c��*.���
)=:d����ҙ�st�e_Ze�aΕ@r�`�e��E�f�-��ᦫWClN �ZD<����V7[
��|h�?�x�u�u���L�U�_�rr#���^�9�t�'�{%�d���2�$�8߲� q��e|�`�:��C��j�Φ|����8��\�2��`��k�UwӶ?���G�9��G�vPa�w�A�&l[8�s���X��⎭t�ݓyS`Ɍ��߬p�U#�?���5	����
������h�a���p����� �6��o^P�n骶�k��P��K����Β\�$|�������)�%=�{�����̡^c�~������ [�c���v^���Ue�~B�pnj|%+M�m��6�c6�;��>��_���4��ѓ��m�g�-�M��6����JT�{��N�c�����:v;+�������tK9d��	��[ۏ-�DU�7�G���|���N��Z�sЇR�
m��z��z�5�d���:0A�����?���������΃�8�?�?�?��=�Œ�'�+�4|���a.�H��pf�Q�h< ����a�ЎeIiOv'	E!&Q m�D5&�
�)sp��tdq_�ҝ]l�yK������vLՅ���3Q�1b�3x^C��t�6	��+D$[$���w�\�3JR�uXw�=��m��5}�'��`Ԍd�	�~]<� M��
4��
��Kշ��e@&ѩ�����<yK�ڡ�3�B�~"��Vo8�K�d&)y��h��G���rԘ��*�����ދ̓-޲��Nb�(��0H[��ɇoF�V!��zρ�/�>�t�ɹf>�*}�_�<��p���c	�EBX�f�Qw��O[��yn�SLS�]4c@�4�@E9p��L�b�-_�������ρ�i\l u$�F��پ�lu^��[�
�IJv�����5Ν��[Vl��)��õ�&c�j�����%�{��^�F°V�J��/������ �=;嬰x�J����Α��=i�0�
e����o���}�%��o��|���܁T{����mH{�EI}Hvh7y����)��o��w��4�%whZt4��9hF|$p�r��	���1�&zYW�J��u����(���7�dQ���T�s�'��Z2s��9RuY�R��̤�=�%�U�M�٘M��y�o���>��=�?����������������o�����w5f�l�L"񕽧Վv�&,o��)�t�&���zz�&qq`����Ìukj��O��hvճ�w^�ZdP��i;�Ŭ�Bx�,��왓��{�8��|&������������M��6��JZ곳׍�Վw����<G����g�yc�ƇTL��R���C��舞�U�I3�e��c��Ǣ���53�Ș�}����e'Sϔ����m���θ��1��9��a��Vε�L��K�Y�V\(�IK�_H�_3r����zv�n���wpt���gL��2^��Ô�IV�<e;�}>CR�sfK*J%��J,�[��
��6E����\|]�gT7Cv���eD^.Ǜ��7{5��D��R�W�E�;4������û\�jsǝި��o��‰�Хԋ��NĥF��%ӣ�Yi~��&��|��kS����m\�/Z?��I��UKs���xIG�>��q��4kP��~����1S�,���*O|+朰M��
�1�K6앢�o+�ث�W��8�^+�~n\}Kۜ�ӿL�`F{1�dL���cl�h���_1|ưM�Z����e�9M)�`7�x��'��8��;�m�9�?�
|��o��wG��or��;>������������n�M��Y�c-�i6�����Ŋ��k�eD��[��\���JNjr��4~��a�^`��G�iM>j�ҵ��~���H�ZO�ךX]v薂���	{�,4��Uj�G�A��Y�qɁ™���-�d���YS�O�,	�*.�k��M&4�ۊ�W��c=�|�X�
ɫ�_��v���
!�b�P�}\�B�a�§⟶�3���ߑ�����w����dl���Gm���&3�%߅>���v�O4?
�)�>�ؘ��ј�K݋:�ȍv?tC&e}-[p�����+`b����H�K�]5�4F��Kg�^ٷ��7\nA�s�^I��~�|��\ʺ�&���<h������諴R-�̺�R�-�r�%�r��D�X>���H�9d�$4wA���>N�=�"36�*Yݩ���	+tm��n�߮f�M�N�R��N��.�&�]'���R&"Aw흗{��,���kDs3	�p�g�5bWO�0W�d-�h��J���KC�[�H���1sn���%�����-[�1�.d�x�9�r'i���Xnb�qW���8��!�c��y�a�f��l4��Y�lv�?:���#Q��+�K�؝���v�(��7���I�M�#� ��Y���K�P�������9�?���u��9�����Xb��:�?��Ń����g�'�c�,شqτ!�rB?%䦁�ڲʆ���=�{W�������!ӤÂ�e��~���s�	mI��\�I}&�[���>�*l�Ҹ4z��/�4���]ޡ��hz^�Q6��}�A��BߤG3�nMFӹ�f*2-��C�X<�.��C��(����h��\���1@M�ʐ�n/c;16��x!�l��m_.�Ȕ�rZ׿z��yWe.�D�$����6@/�$�I��=�lb�����=�..9�R?���<�$�kW��c��ř���,s�jJ�z˺�8�2�3�����������홅s(^щ��K��
���}?��a�W㑢�ۣ̒�)d�}ο�4U��\+�*H��EW�%���v��xsYW�>1�-嶂��ޔ�����=گ��#��'c�3h���hB�e6�TLF%��ӊw�P�\�.{��i�v;��mc���m��(K_���T<�_�d\t<N�{y����o|p2���/�bu�qڊ�s����o�$�yn�L}AUf(��P�ҏ�ɶ�����7?(Er�G��b�O�����a�p�0��MLn��ȟ����o~���G�:yJ���}�d����Fs�g",�O;ƴ�!�6���Z9�+bS��>�����������-������G�&���g��P��ZTf%���J����ۣ'Eo��X�Z�\�=I�&z�:C�]�Hl1gA�Cֽ����k��F>y͉r�<P�l�-(�T腂KƸ����*�T=�/�~g�"\������BN�j�C���\\�w��'a�����I��k&���c䢭�(�6����L��r���	����Ѓ���d�O�/�Vm��ͻ<{�<�6�C��x�.��r,+hL��5��g7Zd��"U9@�8�X�M���؝��s��']ɗw���8RϫS���K��8]�����bh����^��Ͷ�̗�
���M_߯�V�`q�B��B���"N�K5��MU��_T�ҍ=��
��l<��!��j����d#~�}V���3�	�A|�aL.ܮRH_��Id G�#&�0��Z��Nd�z��UƠrl.�(��L��/&���n����Id*y���p-�@��x��)���+�O^2�����>�����#�݈y�K>�l]���n��w����K��G�z�K4��$i�٥�����A���|��g����](k��5���ʶ]�^���ƙ`~~'Q��۰*��<�7��enNS��E̝���Kd���������u������@��㾃��%��D@�ᖶ���M���/�Pܵl}�"��-8�V�L�W�l̊^_s�I���Z�������۠��2*<���3��˒֠EyG���B���yj�[�$x?G�I�D����=���ǀ�<^����o@Cr��>R����j�w&�e��邪[�p05��vP���_��t�B�;&6^V!�6+1b�	ǟ1�$��ev�4Ֆo!6n�^c���`,HE���
�w�8�jW`b��|S�RVMh�*�I�Ң'l���i�����>F��O��(dt�`6�A˞n-�\KT&E��
�����jRCƌ�E�*'���4C��A��	,�7m�í~��f�0>�O}R/
��p��@��#�I�9���$�
�b�la��[�����!OސJ�k]�'E��_�׊3�G���,��F�;G�x���2z����_�;�3�g��M3�^OZj
�S�_�6�s,�<iw�n1"�cO*9���-Ky�%�MO�*6\:y՞����?��~��>uH��0��O��}L}{�b����@���z���
�?ߥ��Ӓ��b���j�IӸ4Z�F'1����=�#���i��I}�[q���I�i0��8�|�T�~��˘�:�?���������7
�����ߚ�����������a�	_�9��\�q�O@f���:^m@���/������م XJ��a=	G\g`"7���&���ʤW�(����Eⅾ��e��GD�$��r\,�B���z��1���5�,�l�(_N����e�jlj�j��PW�6L�����UX��zr�U�U���3E�-��
bh�6ˤhM!���R�z�`��hd�t�3��^W���>����4�j�6�6\�I��-�.�W�V�9�v�-�%��8���Mf�{�((�K-+��]2����D4�M���.�@�}s���~���2�|��B@�k�$�;�	1å`�mnY�^&ͻmGV\j9Y�Ҷ`(l�Ʌq������;阳@���A0�fC>�9�J�7���7�\���q�3�����ӟ�f��D�_��Fܮ�$�-!]�"�xi�7it榿���4�������)ľD��`��a�OK(n����Jx�:ߗ%�����.��7�̕F��ҷ���������.ϝQ��t�?��;~l���?$�{b�%�=Q�%�J�������=���L*S!r����j��b�*�^>r��<w�*�~���>��q{�Ln��j=i�=�~�_����!�g8�R,v���'X=�?��^�����������x������_��@Ϡ�?}
���Q&;��][[�p˩��i��ڬ�_rYVir�s�(m+�c��'��?_���ϧ�o�)��CL�$-�'[q��ơ�;���q�,`�
��BJDp���)9�ۅ�K��b�m����\��p�N��Z�u�+�/�
�G��C�\�)������o���6��ϫm��y>_;=��m�?O�sR��t�u��|*-��*�%�+�A���q�zB���/�:�}�,*m�!m�E�.�~�c(0AVI+Ǐ�:���".�]_[�U�j�����W��$�)>�M��[Y��9��B���'i'��Vܨ��Knέ�>��4}F|�C'�P�1�_��+{�N��BP���_ ���w��`�����vRPmo!�d����<�����T
�3�CWkL���`����0���b�T��{}vw�]޽y\�ԭ�2ل9�3>�E|.�*�33�R�������[[{�=>�|.�5�6��fJ����zM���}��x���<��-sV�Ƈ�-E���/ۉ29
S�߻�d�5%9Nl��(�K*J��(��J�4�5D�q$����p�O���X.�4����gƠh0���^�)䨢���cO��ع�-�]��W��H�?|E|������������I���������9��������ҮH�T��e��Q4�J�e����o��� ��\/���0Q�&�b*R|8�����9`@���KlBf��ʮ�_;���7�{L�LG�1�P�4AR\��g
L��'�۸{~Y�h�{J�	n&�9}�	�~/'i:��g�.8�,�MV�G�rF|�?�r� �x��h�#Z"�yN��x�a�^���Cw�U+,51$x�ӒC%�+O�[Л3��&�� �q� �q�Qds(7A�I�r�l_+0�^�h!1�@���v���^��"��6�=���_�lA��(�x�T2�ƱU=;��A9o���<88�,���1�5�]�L�GV_�Q����5���}�ה[dY�CF��m��K�m�
����,	�y���S�*���y�d+;�3�Z�f���At%�����w�o!d�?�[���*�]��#�[\��;��Ǭ�g��8��@D���١��	�k4�&�~���U��%���qiCo�/䑯���Nf�5Kh@N�ui}�X�+�����IB����-2M�a���ԧ�|�d>�}���X��s�v�pe���؅K�'Hs������~�(������6���P`<����u�[��8��_�%����?��������������������q���?�w���_�[�����d�%q�&��_rɗ$Eo�2[�7�
$�Eq��n�uK75̓FP��_*�^΍�WP����j?Y��I����}����y&2�MbU
d��Ց����9o�=<������gc�����f����ɕ>��W�R^C�d�j�'�\�1�`i�oS(���Gi�E�3Ώ7?ƫ��u�,?a����ɟ�%t�3懐9��ث��A+�r&i�C�������6^��M2�k�w�4��ۺ�#f˵�y.�F��ic���ާM�k@`$�ֳB��-N�N�'�����m�%a���;���\>�|:��	/ao�*��.�<g#Y����
'3�V�P.���M�����E�W��:���l5�hY��:ͧK��*�yz�p���W��wu�2J��0�z��Y�������96۝{�,�����	X<�6�����W�V�����<|7���x=�Ъ?蠝�=S_f�/
�y��=�J?�S*w��t���wcG����~'���a����ˡ1`z����7xlg�!�=������9���y������8�?���^��~�?��7�|��xa	@�V��ËUJnA��>Q���/v���D��Ǥ�U}�[h��XOw��\�ކ��lÍ�u+�ˮ�q�6ݯ�\f_���B��=����	��|�>�/ü2}rU���7��i��#X�`��{�G3��i��<&z���o���(��=tU��G�8Ւ^z�vJ�
�&aq�t�VzPoWM��}�D?Z[����t�^���E&K��
5��������竦b�-�LX���%�&�+ି�Y	��,��ݮ�/8���n��/b�V��v쒇}$ڲ���d�3��ԤS�\z�<<�N�%�zt8]��͚4�Ar
꟟�~�r�
���[Έ����T��b��]���5�m��3�aW�_��p��@]L�M���Y��d��P�}����,Z�_�{�m��L��1S�p
��&1c�u���k}DLBԪ*���tY��8[V}oɘ���?貭Ϫ~���"�]�^?|����/?{ǒa��q���֛>�q-�?��x<��x�w�m�])e����/&|���t�X�~���cdD�b'}��o��=�@�K��A#27�br�#H_�n'��
=�A�$�a�_��d=}F���m��\����Zt���7#\��+�1>��������?e<c����������p��=K����&]׿.Dd|��4��^҄‰8��bh�Xw,&���E| �_p�3�ٺ,��BK(�(B���'�D��I����{��G��^�j���lj������'�UEsM�DO�6M�Ny�R�����C�5YIzW]��9r0���iuA���K�6��>�_9������n5�
�����
e�k��A�(�<�°5t����b��W$6��a��Qcmss���:�;Yı-���,Š?�2�����-� ����i7������9'ڿ�@�-����T�a�=��sK�/,��U\3^~b������o�ߦ �<?fx
�.a�~�Uyh�/{,��K�\�|�?�Kl�(맕S�<�?�_DN�lT��N�.��|׌C����Z�X�ݾW=�8
ș.��Е1EVhxO�1��1�<�auI�8-�'}-�x%K�8�t(F���.��G��uG+�[G������6�mKu�}�����ɓ�8�v?�	��I�g(��-��'��bd�eI_��:��w�e|�����g�W
z���I���8&9�,�p�9�%rI{�K	~@^�wf�~M��xx�<,�꿲���n]����f���^���
y
�6���6`������_��q��������lm���g��~;�_<8���P�~����#E����9��ss"��u�2ڠ��^@p��dRn�򧦀���,����h��ĜRA���(��~��]BQW�X���3�S9e��+%�Z}�db�nsF!�d`Ft�B�9�i���O��y}���}?�{MZ��+��Yz���6��s�V]$?7__r-0�Ľ����mI`_/�v&�u��?�
���*��!��.%?\ޖػD.�h��P��?�l�s:���LX1%�=Na�^Ua텕�qY��±d�B�n�f�dk�_gQ�P��o�Ek��t��u��`���j�C�;zҾ?�\�g�]��)����w�k���,�R0d�������A͒���\	ǃ�i��,����H�\t�?0��ݣ̏+a�Աh�M&�u3��mѲA��?���/Lx��<I@>=�L�‡:�8�����m���>^L�{Zι�;2��DAe�u<"q-�2݅Bu9X�XU[��'���AY2J7=�y|�ۄ�lx�]9	��������<���{,�yZH	*J`"�s�g����Y�q��S1~È�#x��2�dz�����$f��t�5=$@�0&�ќL�����=�o��6\e}<iZ(T	����ۘۏtq���?l����8�?�?��������a�q�����ՠM��I�]jM�
mđYE�	��+<��pn�N�N,�������J��<4	��L%@��/}��AЇ*�D'��B��*/�D�}i>��8���w阫8�'E&W���>o��r� 0d~�^����59��8+K2�
g��ï�O;a��I��/.�U���Y��ho�=t}�g�훠5L��Nc��̾(�P`��_ho���Rc|-�VNԠs'�`�1��NA�:�|5����;0����_5���-c]�4/�]��A(4p���ס܏�[�]+�<򕓊�?�UE\�Wံ���+�d�/̤{%`�d��=us�+�C��Z�+�c���>�v�EOЈ�-�q���|y�����w�6[��\����M��d��uo_� ��,������f���6�q!�]XD�>
8Az��|�?�_��[Ŧ�l:-́\�J-����o	����eTGّ�=I��B̲hs��Rjϱ)��[9dN��J"c�_5_J<�����L��n#��=��'�y����g"��K��30B�#Y/���n������u�H�L_���޶��
��F*�Ǎ��slr�L�*e��\�I�����$��IΧ�$>�����Izc�jtz$˴�a��3N�z���<��������������������������?�t*7@�]�XC
�M�+��%��L��`�5�����0�uGd��ϘI���-�K�s��l}J6Ok�H-�J���.LP�@���X��MiRP
6�z�߭k�*M�4ꇵS
��j� Kᚓ���8����R�:Hs~�L�%ǻ���"Hb���g"t��M�-y���I�$�f�k���tX�|_aK�J:4d���v�[o�<��sR��qK�5l�{���}��hJ��L���C��+	��ǝ'�l�4������}U�?�L���4���^�,G��[k���<L�&���F���x �g�����[党Ҁ�c�/p�+#�Ø�?d�+��~j��I��6�d�it�
�ڗ-����>��d4�Q�^���D	�g�6H��m��?�@ ܆ /~�dP���f�5�k�M�^���x�t �ƞ�"]S�ڷEgK�Oؕ�x���m[6;����bp��T���6W�,%I�S�#�Y�ɕ�mM3��='�'�!��N)��_�b�k�?�/UXi��$5LW�&t����_�Tu�1�����(�?���Y����3ȫ-���R>5�	z�p|DN_0��o�\$B?��Ʃp>ASΏ�L�q!�Ϗ/\���2�\���%������������������������/�	�	�7UaĞ+�v�5ZN5���!�T�[zҌ��q��K�"���I�~�r�BD ͇���
! n)�
����Op����S���.s8O�>�#�H�A�IѪ�
��%�%��\�Y!}0��<���]�/�{M�ך���Њ
8#le6⁂F��Jl~�hE��4��
�ǖ����h�E�����b�/��;�
���E�}��Ix��餝E��3��f�^���
�T�{k0�-$ڮ��9��<�K�`S�;=Tο䋟.�Ұ�Ʌ����>���]a����W���f,���Ʊ��na�؊�\4�_
���OHzڒ��?�M��?��0*�z���;� �n\|=}^WG"b}u�ܼ�����B��e�����§n�t�	�=f����$3A����Ӡ�I �tPۓ.�!��"�A�7���pi=�|�������暺�{��+N/;!.HcɎ&�vɠ�&����n@V!1>�r��d:̶�^`gi���ġ$?]�����ǒ��1��@Y�I�o(<E�N�_��!a��W��I�ml��I�	O�$��J���e�O�W8���0ޱ��ͥ���.���4����85~XJ�N�O��Mʻ��1}����8�w>��wY�������������j�kd:L��7��ֽsP4��*l���K}�0����3��K?u{E��O�X��4�2
e��œ�EPk�6����\
�ǖYM��A�Ӎ(dgύs�yoWTŅA{[E����҅�S}t@����d䝹YHi�y��@Q��*��XUr�Rpr����ø����]�ަ+h�t�E�ܙ�d�29Ε��W��H(5��L@�t�c��X��~��u�.؊x_|�A���gbf�q0��VIu{���aRZ'��dT�߳=Q���.���ᒱ�C)��H���B<v��&lcĿT��dܾ�W~D�����5���^^��5�����v��S��Ҭ@�0�p�.�#8¿�&�Z�2��?�
���/��;j����a�}[��W��{���?�$k�C���wc�M[V��̤�'F7((�H������C�x6�${�:�!�3c2���+bcvVa��W�'�uN�Eʳ`[(a��_扄EIِq���e�k�U�$�Ȣ`CL��\����ZcDJ� �*����j�٢���|'����d��X��<x�#iJ�;�R�?��&�h7ѓ\��N+�������m��S�&��*��<hı�N,&����r"��,W���/R4�J�7bd�6�����#����������|��O:�?�?�?�?�?�?�?��C�N1^���kM��7��4Io�'jv���=ݟ�N���<���HJ�Bv�W��x�����t��l2�{;����KL�l�DE�5}�&��e��Y�=m�q�0��b��AԐ���n|�0L}�"]�����Q�:�
pW3Ŋ,=���C�py�?��ઉ��/$��0|�3E��(tf���Ӌi�8?-Ԅr����?{�Yz��R#>�Ss��U�H�pR�� y�_
����)��1��A�$ƌ}5���b�k�&�
\�����Ń���]��-�g�"�p�q���`Ev?�|�`���E8���l/L�B���y�� ��aO3�gv��UV��}�@<&5��S�S�N��?�����6b0�ȯIQ
�GC>9�	<2�X�AO0��1Eh���0�t��Ӻۼ���?4���E�9�gB�?�0�������l;�sU�h�㑞`��'���q��Y2��s�kM*��s���2eid '�ņ��i1L�(t�`a�Ki��+4�*�H�	�㌟�bk�W���"�{5.<�]}�R��p�qɻ���C,T��v���@���0���偓��E�<c��M�/���~�gt	`/IY�N�����?0��;i��"NE�r�Ɣ�&b�{�4c�J�QeP�P�{��;�́{����$W�@+����k���_�/�����_�/�c���_�/����?���N�%~��K�&�A�!Mr���B(>[�Y�{Q�)�s����@��}5@0�I��HF_	@��
����c���XX���D�1���$�܂F��>���rA G�"�y��x�mWx,������-?ͧ&ZaGz��`�F������T����?g�s�WVOT�b��,���ɏ�ށ�\��C�Cx�8�GЯ�8^��b�*nX<)���r0X�����I{$s�G�u�CL1���m҅N�.���8���s��$\�+�������cq��a�ǣ	��1�y�0�V��P���/���n��8�:e��4\�Eh�]���j�����|��T�8n�5t�8p�4�Q��(�m���f�z���4=������;n��_L]�̫�ap�؛8i�Il2��¸$M� (˽_Y�ʈ!@���X�~s0��l�P�*ĀE��/{Ł�*��3��7qH�W��.�@|u�Ś�{��5Μ$l�V�聰��Н�̓���a��pĤ�ca��+�;�r�`�9�1�� �� �2�[]��V���+3��.
�k�c~.�+9��qBH3U�#��YN�M�=DĜ�C���$<�!�`�F�W��C�Ib�Y�	������_�/������qP����������9e8c@��L-x���3��d������?8hA'��FQh,��#~H�Js:�3����	De��
��D��)(}1�a�b��:j�ͯ�&o��PK;EE_�:���C�n��pp���%n��j	���j`(������&�+�V��{�9kL��p;(�Rǫ
�ctdP�W�D����$:�W!�U2�n��}9Q���7�8��<#��MJ�j>Ȼ
��Rr���F��s��x�p�����5��*�E-�::I�?n=g�>q���),��E�Eؕ~���ͯ��O]<��������ދ�]i�[����i��.0��D�z�6�Pܿ�?7^G0��
��u��
=l�/pq�E׃E�����)��L��c,ddtZ����'�[�>���nih�g,��'�8�M�BUwhd!O�3�j͆�FZ�U��K婘��(D��@���'�}
�#
r�?��p_�A�sReL�Z���ywSt������#-
6�V�x��g�t���\�f�W�`��(��d������?7&�/�7�+�o�g����=�’��C���g#MO���G �%aK�X���?� �9��a(��o���4\�ܖ�Q@�'��M�����_�/�������������_����������?�	�M"�a������g�ҏ�yn�R�B�IE;�qm�-����KN�q;�Or��g�w���z_b�^gW�<a�pw��J�׫ ��|�D���l��#^s��#K�rvq`���Oe��K9�kI��1e���w�}V�dQ/���W�ϟW�j��	GrV�>�n
�e*��P�7V0���TH&��z/B�f����m슿�k�e���g�]�6G�Ϝ�o;mz.�i�o�!tX�)/�g��}}>9���3��-�"��e��c �w\�/�^���
8��g��1ȋ��+�����r�����]y�_��K��]�bq�mtp�s����W�e�bt�5p���e3jVj�T�8���q����a$.?��"8Dž�)k�w]����7�%O��X��5�=r�u�z:+��>U1b��o���]���}1��?�Ã��!��_emwwH+���Y��Mޱokڇ��@k%!�6M�b}v�[��`l�^�����o���w}�����G�88�*�
�g��m����H1<ʟ\���sw�?���������_����X�/��������'���Y�H&^\Lw;:ߎ*�bڣ���\��B��E�?��8�&9���W�X7�N�x�����. ���.��\A�>ϙ�e.�~8Zڶ$œ
E�0Y\�+Np�B��άB��B��:{�;9o��5H�_�K.%��
j���j�����͈Q�m�fE���
���I{����Rv��G��v�9���>x��*�b�����}E�x��G�
�2�
�|���-�S)�S�}^5�~�������b-��*-�SM�U��C�DN�na�༣�Ҫ�{^
�G)o�;�ۜ�������1B�����N�e�<��|�����N�>��	Ʀy����UB�iN,��S��|T�~w/
3��!ޢ-k��Q��&Aά�%5�Ł�pɹi����h˧c\��Xloΰ	���,�Jw���!���*f�����;GVb$C:>��8}
�bM:�>�1W�F57���OI5����9r�5۪��ZVi�����	"P���~����}��
8]�I�<o=7����`"{{M_ʷ�0�mp<�b'��a�����T(�Obmp�1vx-$��=U#�Խ��)�������E�̿pJ�k�l9�OFir��G���$�B����v:�xm�����1����_>,���������_�/����~������!O�_��YH~�k0�1~�w�y��W�#��a����?�a��>l��>�+x��	�9�������D���H���@KM��U._U�g�� Hmb�6_�8��v��:�I�[G5Yu_����ف�AY������­w �t�lR`H�>�'�S�pOv#Μ�oL	��t�R퀳�J����-�.,�<���&z�?I�<�P<��<o���S�U"�moCĔ0�W�.�x�{��y=C�$�-ڡv���-
;2 P"�1ߡP����ͤ7DB~��_?���
	X
j�`�s�D>�?Wh�N�gpLL�����W�#�J�?Ġc-��_��VK�}
�X��hӑ�/$�|��Y���{Q���
�X��n����>DŽ�?Z�VkH���@�7���F�Z�+H�6-!S�9)�4(!:��&|@�5�:��l�@#����h#����#��{��q]����J��3=0�`dю9���b{�הe�W�gȭ�B�b&��\�8䒾1�+�&�-EG�|
��}Ĵ�C�l��i��d �=pZ#�(B6��'#��3�����K�)"� �X+�8��:����o�
�R"y����Y������y�k
�Dv�������_�/������_�/���0`��w�����OO��Lf�� ��Ȟ &0�݇��D'�8��I,e�AB͙�J�$v�'0!P�̻��YZj�Wi�v?"\d��0�N��BN�j�j&��7S#�r$����U�[4��c�U=\�<�kbu&ċ��u|g��@�}�BOg=�i������p��U"-ڕ�`�7���&h�TO�au&��J��!��(Y�(���bJ�p�z.�s]�T�����s}��>Vg�g4�a��O�И�6f�x���'����2!\j��?��>"r%<����� lḬ�R�+#��l��
�՟/��.��h#X�?�#��9����>/��k�}4^GM�9�D�C�~�	��}����:h+��Bu�甐��?���BA�JZ�l �-��5O#�9[��H�B�h�w�Y�]n�!�)�������XS;1Fo�Dž�"��3d�q:�^;�\R�x��2#&;��ɾ��w!��j>f2¿��Q	]�	6��������a)��2v~�-��qZr�!��7$.�kbn��Ï�M��pbKi��'<.����y�L(���q`���H1�_u¯
��Gڠ�cD+=�'���_�/�i�򟠱�������lY�/�����t�?�	g`.��B����4�0����A+$�s#��f
�v�8�(�arp�i�s��u�y��hJs|�,\�=NЃ��A٘���.';H4'�yeE��WftE�9S9��&��僅�^00�L��a�����>�!�BD!8X{z�uH?Bp�D�,B%w;W���}���q3ק���1�t:����R�$��n0�a*2?C�/�X���{\RJ�r��ivCl����<t~��zta��_ON?x�{���/��n��
`�TUrQ%=O�x��q��9�Ob����0�\%sQ��x�hqѩ�f��ѳ4a�X�g���劼���xχ�a�%���fWͅ�1R��Qnj�e}�P<5��������`ae��_b�w��c��la@5y!��up�5m�b�u��p ����D���)��]�����#�%k}���>@��=A������Q�;�K2�J��Ԁ0�c݃@�X!7�0�	wf{��ل<E�8�a�1�d�+xf�JO�B%���qJg^�**
��UM�O[�#��F��Ռ��8ᏗV����y��9��K����M��B�Qc���m{xÈ���r�H�a	���Ġ/8�H�d؃?D&~�xY��n���\������w[�������X�/������������й�wx`y�A˲�܆�x�}���*�e����M��{g0�u��L ?�-O����?�~x�����\���r,Rpĝ�����m�WL��L�4��
N�F\��~K�b&�C8�df��A҄5꺺����z*�p����������Y�1�t1K��k����Q�D�J������RL�C�����Aӧ��wܚ�
��T�P��Z�`�i�~�l��
�����kuU���8���/ǜ��o�14�͸߷��CC���o�����+J�/�?H�^������Q�N����`�"&
��瓺mX�
�����e+F�?��
�
�߷����?�+��?�3f��]P�ɋH�*۠`�
�2B�?�wg�s�K�&�c��E\�ϰ����c*/p�r�Ϛ�JÆ	��Tm'�]Z2�����f��v�j���_Z,�%���7\B�=i[�5���A�(NGFp�����l��Sh�@-�7J�6��WKX栣<���@µ�f�:ے"�&$���P�j6!��c����P8f��ر�_�&J����`�c�Z=���I[��!��v3�"�2�pYq���t(�\��U�3��P��߂����<N�����4q���o��������,�#���X�����Lʱ��$ �Ž���4h�i)81x��>�V��3�w���M�"�xEȉ��n\�ujݨn��U��&�
?�ʟ�?��I�����(y��I�	o2���ܢ�o'$*t(
����Ο�<j�(�3}����@ͪ1j� �1�V�N�"��?X�W�{�tU<J�C�jʜ�}��D{�� K����i����R'�W\�������H6G��U;��������4*�*3���7f�6�T����U�D��Bo��΢��\�8�ՔdNzg�^L(���cۙM���r��
�]�+Va[L{�����_�lI������

�C�5��̖��#��l�<���|~�?�*K6�XV�.șœ'$��܋��\��\7g�[]��X$����[��)��3S�I�¤
�렴��H��æ��Wws�*u`���Ȥ|�/��s�/�Lgw��O�Wq��1 �"��kn
�M�a_�{�X����"��f��}.�Π�tFH�s��|�GL����V�R��{#��Azd�sПTt���k��ؕ\����oY'm5�j�9%��� M��+��k�?�W;�4�C�c0�Tx�z�g��(���b�}�C����kטs�fb��_�/���������_�/�c���_��C�?QO�vՉi.[fLfb�o�Ҷ����ؖ��7p~{�r�+���BS���I�_E����%i����s&}H�;+���<@�C�sR��HN;e6�j��OLP����L���%���	q�pҗ
dw��x��Y2��p{2�o�uzxNLy��C%���1�=f��*�6�-�셕nN�齨f��m�'����i��O0+��ٖ),?HB�I������y��:c�M�?��b!�I[P������Z��Zͽ*��$._"��Vj���|G,��7�ogn���#pf��`���
^r.ig��_����H����<���-\�m���n'g�3�7��޼���$⛷����!��/������!9<G���9�0X��ٱI�1x%���]�A��i���NK��ペr�|�����s��Je�T��ўݱmP:a���1�y����+R^̀�0���:{�|���~@K�Idu]t�Y��'+,�l����@`��_��L�D]��Q��7�)�!�S�N���5�A1�V��:W0��)�CD�#�w �I[$�z���tI@���}��~N��@����B:���b�AV)P�2�-+��H`�?d�\o�U���p�P(���ȃ��}™�h/����������>�{-�i�����_�/��S���e�~��T̄��<����Uv�����o�_g>�Y�5��\B������w�19���@pV�3��,�ꝗ(�X�ן5鯸i�,���{Y��0܏��Tk&?q1N�/��������7Cm1W~̊q^�����|����^F�3�3��>�W��<��_hx�n�˅.�O��Dߡ�ѭ��E��\/����4�P;bz�j�S6�ă�����J�`�H�a|eo<������w'����_.�i�(�n��RQ��lx�<�q�����p�mK���UV����/�ӵ*]4���Sy�OfF���� _Нl��o��n���?^�'���c��pZa_$���j��Yp���V�X2��J����W���m�Z[t�ϺPmM�X��؛$@9��D,:������ˉ5.K�����"���Y!�R�>��5���b�3�.;k�ƶ�H?�gD��rr��J�BC�2�6����������'��a
m�t����Y1y�w��9H��3�d����vjƵ�ύ)�R<�.�'=�L �a�3�ߜq3�pZC$�ޤ�a�+Ah�E�^��;J1��y����<��X7��A�4�Aw�!Ɓg����������x,���������,����s��{.��6��CZ��<K�w���P�#��}y%��c�6r�u��4�ܯ.g8�zFj���}�,�_WtD1��G�{��OYĢ�<�"��E6I�^��8�~��0�Bv��|A钱��x��6���<�<�?icH�x"��Ï�$uv��3��c#r��(�t]�����;�+p����r��^��v\ϐ0[f2�xi���4'�{�����@%��	��<􌅑�
ĭ'�S��zt�*�?�}�4.�/ڗ�O~i_���!�g1)}QAᮐ0���_e��*o*��)ރ1�+XF�"�j�v��,�H%#D��$���]�������|
�rPX����5�o���y�|ϳK:GWkڐ$gJhSϺ!�=g������\�=2���[M!GQ-�����^�Ԁј��h�L�	�l���jش�X��E}�E�F1|���;I3�Jp�
y�|����\F�XѶt�Tg�˽lt�\Iܤ%��m��Y��V�C�F��0�՗�.
y�zӚ�YSi�+un<��
�E�B;cbZ/�²#�۱8�I}��!?��~��9��4_����8���!fy[|
n���:㐺҆�ŋ �F�-�&/�]ݳ���R�8�C����Z�/����X�/����f�?YY�/�������������8h~2�	�Ԁ���Q��G@+&"I��_Ep���쩪��>q�:$G;����;[ �w÷s�'x#�~v
�	f2N �w��i�0�TNN�]�j����P�ʄ�%���{��Ioâ91�	�^��m�0ghZrO���G9D3��<���V��FU���|���v�>��䡘Ѐ`���G���+�)/�'�{�����Wp4��t=V�T��z��(m�Gf%���g��WS5�}���)��*x[��\�c.�W�����E�nL���������c:攫�A6�� /:Ӣ(x�+�4���sv�?����;��o�o6�W�
�	�T{�.�@���X�.���������}PM��[/��j.���2���<+j�=�p9d
;`�*�捸�a�B��@��{�B��=�"o�`�ٜ	N�4�����N��9P�������I�r��?��i�P%���\�U��S�����4��_򃃒`����)�
���?�\�\��s����W�a�u�@�{Ǽ@i�dp���Wθ|�j2��
��L� I��4K�ZcK�_��h�U�5�i�l%v��-�۶�Kv��"��������%������_������_��s�?��뿷���)��4�?P�2�ѧ����6���{�C-��R���۟�Y�r��4�}xeF�H^|2<�V�B���wS�[��Hj�D� ��W�f�����8����|�׎}wq�C��.�pA��C���t��+]zh����>{�j�9Q5�H�'�Z�$b���c�]���<b{�@�Vc��P�#'��>��-�<d������w��Q��jl:gږ�`8�'��}^�&���ut��}��t��Χf�I��Q�?�u
,��q�Q1U�}�U��_���>/�(����~����ߺy�H >�|�]k�@-+���f�o��ȷ"]X�+���?�_�Ͱ�U���ȶ�Z�]?>��R=��O�������t͎)�e�"!�?���L�_v�?���j�k�|�Xَ���Z��ʳ�[×��m#r�1[��<�x\q�^��0�����d�w�}�cZ�5�%���'�#��i�.^p�d����5����J>�jӹ�q 1S�	���b�8�e��W5y�f>�e{\1}e�/���?�_�����?����,�����5�����7��b����Q�LcA]xx��E��m\0�W�_O��r	�D#�Ԯ����kb�{�S�1Y`�B@2�xf�w��@�$��7�n�$��}kD��<s刅�YD�[�H�����3�����4$P��IoO~֓=I�$��~�Pr�^V��Zi��]�|w?ef��g{�
�Ό�\a������Pa5a$����I�`wq_Ƒ�Ϝ�&�Q��ퟂi�?��aug�u?�a^��_��*��[��^=��7��rY4k���H��t�+F��ɮ������L���8"Y���k&t�;�y����f2����i
��?�gL���?nm�?sP~���D��^,�!��5WH�
���ɬp[�H� �K;K��"�ϑ�4[�K�����*oV���H�b��ب�����5n��W��Ө��똚�w
�a1͍F�6B|R?�i�̠ʹ���爓$$C�.���ӓ�
ֆ���=,L�f�V���Q�.!�4�W9���3\|\�e��ޤ������ߵh��8	Ԅ���g��~o]���H�
RyLR�2������>�YיK	r�U�&�7,��-����ď�y�4��t(�`/�#��������_����?�.�c���_�����u��&}���E\�䈫�f� qa��W�T�q��n�	$�ꀬ�d��κC�7^4�s2��6[0q����y%��-Lf�Zџ+�	�B��B�2��1���`H`a��Z��l2�
-��x��{�b�
9�f��
��Sʩ{�E�p�-O'38#�x:�~��{`6��8|xiM���*ѥ:d����e�9�sI���EIZ_E��M�_c|��E��Ss���1�.Жț ��vg��y����)�1�9���Y&b$؜tqa��b@�3���=b,�:�8�����ϋ�e���AH��<�����ʊh�8_z�p!�9/����u[G����ko/枘�L59�+�R�[i�_�Bk�8Y|���S�_a�g�K�����\/bQh��s[�F��k��S����S�O�_���**9E��*LU��U�k�� �
* �A_t�Map��r��/�*Ud�u�xZ_i�`aj�����s�hF����A��?�s��a�ɞn'1��ı�V�X�4�~Y�F�'������6}�TK��A�����Q#�q�L��X;3��Ĺ�P�xK+����	�@ƫ�&��z�;r�G�������?_�/���(���_�/���ڶ�_�/�����_�����&��u&�+_�,�dOfbc�]�!	���Wa�2Q��#`��%
9)H��JOM����B�}l��n%�IL<��A�1��^+f2��|��Mٚ�$����I^R��V26ߍ��Uts���4-b<�D�H�S{B9`�1q������5&ׅ���rg"F����}J�>��7��ɮ~ɇ�Æޡ2>v�	]�ۣ�'�F�iH	�Ո2W�4���V]��B��4�Mb�<M6J<C�{��.PM0�1�n\+e�:�ϵ��a���ϟsD�`�۔ȗ�?o������q��m4�fqQ"f!O�z_=�
�)���\	C
9�mt���K\���O㼫�o��8�dدG�3��q-��c	��`�0lJ�?�O�ܦ=}�ae1���\�O���f�fiv=�٘�����09*�s����(��,��nl0���/�"��@��)�>�sՅ��[���-A�P�>��rX���An+~Y��6����FJ�d�w�ĝ/�;0�HC�
Z��9\��� �k9�W��N�,�MD)Wm�9�Xn�C�Um
�$�c�˅�*�v�z�r����i5;��a��u�	B4����>�V���]�OS��,�_�[�/�c�o���u�Ϡ��������;�!a��#8
g`ם��#*oۋ�� ;,�҉�[ȴS�p�E�QChF����'�D��u�.�Ҥ8��Q
!���zOy�zO|��q��!�nkVO'���=��Z����!�4}�5�8���롅ؠz���g�1�j�2s��:��Ok�ܔ� �������Pv��W�.o#�3����I�u��-|d�7��m�D���<�|���Ą�T=��V�!����n��
I1�|��&��}c��O�
����x����$�L����n�,J��H¡���,�D^���G���u�\��v�:�p`�+�Oc,M�Ƕ&f��DJxk��)҄svW��J&��P����%sA[��Ǝq���i��Ph�q�)#�]��
��+�Q3�kP�}VH���W 2��!"�AB_�Ș�-E��q$���2��}�0WŜ)�:T6XL:��즮6���M�
��_̀%������k0�=D� ���M���__���D�*�����l�}��#dq�M�'���=$#����TAO0s\C��ѭ��Y��T�+������X�X:��Z�M6���
Ǯ,(��w�0��ܨ�Y).�vp[�i��#�ܶ�W[������_�����aQ\�/����X��n���o�gɠ�QO6�~p�'9��P[8��A�g�.T'�
v'5���i��E��" %�˸꣧#�66P�v�'ٱ-��n�y4iL�Z|���I�C��I�\1W��<�x�3S*gB���5��?^�+�B
W� a�0暼��b�Iw����:H�>��jc����;&�g�7@�p�r"�U#)�al~,.	d>,5P��+Z*B�������	����
A¦BЋ��=�H~��!�έ�����y�
�X�Z1�+ƨb��?t5¢������<�^}Acς퀁~nz��@L���P��bz�'�������?�b琱b\rڂM��{)��ND��+�o�O���ɢuu��M�63��ؕ!�7fF���/�"�z�?~�?�k:�pqE*�^CF�I�\q�^�1�&���x��Y����ި[%V���5PM�j�B�� l��ܗ�=b,�J����]Ƶ\Z�s����V
���69h����X���/�
�$��#c�f���oV�����?�QF��n��K��QAWr�\oc������0M����s^�0�!��7��=�3*wG�?�8�֫��Y.�����_���=����^�/�����,�����۞�f��=*�ڣ���9;fp"8q�:e�~pq�?<��{�y`1�T;�f�	�&�_Cn��>>x�mFp����*�}p�?��}�|'����tLN>'�!dq&�?��>^���y�5��j���Ǹ�l��c�'s�a.`�՜>:��dJN~��X
/۶���x�yO��FE)5�\�"S����CL�ͫ����]Fp��hnU�>�O�2��,�P鞨n9᳷Ѯ����$Q$6�c1��
����D��}pt�ϯ��P?(���:Iq���)�����]��Z|�
"���rl�؉`��y��-t�*�<�Q�\"p�9�+|����@8� �j�1a����%��qˤ9G*���ߺ���V�T���#?S�D+W/�[��@��{��
L���\�<�0�ʌ_�8��{�q�7�����z�x�>�Sq��)}*r,��|��#Bם
�X���fE�G
ϊy������'��;����'c
[�-��l��"T��8q?J�L�ס�Ԡ-ƪ��ލ�U>�Q��2�1���W�i՛�+}8!����Ї�w("~��0�a�W��tO��r.�׀�{�f�6��������_�/�m��?��q�o������_��|X�/�����c���0��g�I�Ag��l}��Jg�W?;|R?+��^��	�^�L8�
�R �7"�\-��s+M����ާO&?=<qlO�M�����T������ᶯX�>�:�_��R���^��+�ַ�.�|�τ�L
Ě��o��+���g�	V܄��O
�_���ϲ+T�.���V�sl?�|�L��\,'���l7ٟ���mĎm���l�]�"m����?˜ۂ	��g�<���dj
ԕ���5VgA���Gq�l���׭�U��IZ�T>�����yp1
m��럇?O�{Tٜ����sQ/�Ӯ&�A�#�����Q��A���Y1h��T#&�0�R�����{�<�"��4�S*�f/��gG��l��g}>�2in`T0�+��a�ۤ�V�hWٷ1b�5�������$��w�8!$|��c�
�^��ާS-��cb]d���d+�M��Ȫ�D�s[�Uo$@=@�Ǹ��_E�3�שo5#Բjڿ�@S���T�Cc�������F��K�����ekK0|Ͱ�0^� ?"�5h�XΙ2U��`,�����-��I8���)>��{f;��ܚH�Ns`ya�2A�\�%��O�W��������X�/�ݴX�O,���c�^�/����������prQ_��7H�oZ?}�z">�,+�����>���$0��L���#F(��=g:�;��'m.\�ռ����
D�;�C0���Dp1���1��Ύ�V9
���9��6�d�$Q
�Ɂ�����V� p�D
L�E���H(�tlʱ�Z�`����ξڅaoa����3$��ĢR�"Dؾ)-8g�s�(�x`.پK��m|��M�bq(v��rl� �
�J�\���й���np���z��g�G�C�W�Q��s��7��h�O̱��3�x:ʓ<n�-´�i���g��w�Es�Xܐ͸J&�@�HϺ>��۱�:껠�$sdJ�5���X��L�@��+���������| �����'�0��U�c*���m�:�sEF���NQ+ye�ǀ����� ,�bI���)��Oj0U�b[a~I����}r��_�1��99M��^��
(Y�U7S~%�cG85�=#�"G����*�eQJՃ2��"X��̗/�w=�~��C
��6��v��`/�G�
����a���q�^�����
���W��4�e�����������=�`����J��!�Im�}RⳞn1��s�wV�n�b�>�V�x=�9�N_7���Х���������X�#��Z�ӆ�������X�/������0��܉��$v#��ȷ�<�4& r���Yv�9�����V�A� 7����g26>>���~H��W֚$)=Tz0�,�%լH�M��
a����n��wy#8��x��
�ʹ"''fo�n/�(�9/,J`_>/���I�-�T�2����u�pۡ �*�`2y��t��y�ƨ�ć��W�t�HF��C���U�u��И�9�7�8��;���VL��}���y�B����%9-��5F�؆�I���n�į�ŕ�Ka}�^Đ�s�v�&�7��I��>�>���p~~����"�Xh�mt\b�O�1LX�(!?���\T�$=� X3��ƷH��M�M��.},�a|������S���O���\2t��Ji���d��W��t����0聐61��%Z���Ư�
s�,
2��%���D�H�2;���3�V���5ř�‡f�*ᄱ��]���������FJ�����ڸ>����sv�]K��8肦�-�n�[����>�?�����˔Ra*߱`Oٚ&U�UH�����X)�<�H�+��Cn�ů�Gϗ��u6��#_y��X�������N���?����_�W,����f�?�=��X�zC
|%�W�o�u:~��T��Q?��>��?��� w�j��I�$c	�1s������6��
�`��i��R��4����窂?��>�ط:q�Y݉�O�?�E�|���_�H��dtH�=��I�-Z��7�/v��e��>OÈ��T�C�8���sB�}I���7�l��(~F�n��9I��+`*1�����^ƐX�(����ke�����Гn~w�C܅&�ᅖ��Uغy.K�O���K\F��N}�^��׾��k|�CF0�����?k��D�qL�1<�^�#����FZ���w�9�,�^,��~�jbv:�������C��V]!ݱD~��� M�RMH��(�9�%�F �h 5�0YQJbr�R�L�$T��
�Qx�
er��Wy�����n��5x��^�ڱ���·s`�u�E��g]<�P�?Z*4`��@3�L��]��R ݗ��9����\��g���<�)��G�� v�ۯ�`"�ڹ�Mim� �c�#���*"�vl�z���5�wz�G�ߎa�{΁]�9
'=�l4���P�V��Q�%}A������_�/���s�����_����ոv]�/��-��?�������%qz"o.����IÀ��OǬ|�����j!��������;�c�Dl���w�}�_�kN����g�K����wA4T�����G`FԒ�3�R���9��Eb.��g�rGv���\�j�S�s�%���[OU�`��}�,��x9.���G�$1�ރ�cK��`�X��#
Þύ���������տ�m�\i��`(���*�Fxl���YQ��j���q�kW}T�b�
�v�P(G��6<&d,+����8(s%��_�E�t�0R����x��?�����t)|(���(z�D�Q�dn��M<�?��қ}R��+Ì����6�'����6X��?r
W���Dw:��'���S8�M�IW&H��0���g4�4h�ѷ�nq("�`3�65kpŁ��b��ZW[���<�1��V�F� d����O��5�X���vM~��1���]��?���c�K�~D�l3^�syҁ��Sh�T��_��)ݹ�xS����'�&�c�/�������z�T��1��ӟ>�K1Y�_�/�����,���������,��?���bnoTr�M�
�`�>y_�֬TE��;9��{��e���L��.o*����ٗ����n�;9��[�I��w�vu�Y���[7yW���΀�R#E�U���K�}��"c|��Eer[ǧ�ZnyD���M9���	��Y��
�D�Cy�X2?�
=5��]�ʶ��Ғ/F⪁T�t��7&|R�wA���\L���s�h�&jbw��qeW�!�b<P���Q�)B)�q?aߞeW�bV�O1y|<��F�B�c���FL6�gqI��5�NJ��L�'�Kİ1����.Ԍy�6�V���,b��/����4.�����4+��<���,���'����O�V[]��ڈے�CS�o�XGAӈ���4�/h���S�|ymwQ?��Hc$��@��|���6~��|�S�J�e�m�$��f��O��O�~�@���߼0rk���/_��]��!{=N�������&Κ8gJ<�{Q��,%�5]q(�&����Gӳ��_�Y�Ʒ�8�A�A���ͼ�0o�.����ϰؕQf~�LwR&��y�G��CO��R60�NLs���LU�4��8�jn�/�������_�/������������G_D�Z�k��F`vX�������V��HQ�1�NE͙����RM��Lx���:�J+��#�tR�&�9.EzD�V�Ar�ԋ����Nv���h[���Y����cl"����r�.E?�#�m'D/(%���Q:�c9&�R}%I�p��)!�gD��\�ӁǢ�����"�,�=^-�G
V�
��n����H�֟���N��99��@�&�z>?��cX�`&b���(��-�6{q��d�����E*�T�Е
�,5��8\��|L޾��"΃�k�'�]�@���^.���w��o,L�Zr��͇�7Iy����PI�̫�2�
���Hac�Gj���g�hB_�6�켽߷O�X�鶯����O�O^r��B:|���,��;s��?��s���5}�H��9��h&����a��o��0|y�M�D:w�"�$�鹤���A!��H\1}�m~~�flDMh�l0wf����n��o��@��d�E֌&��[r'J ��Z�c�Ў6v�_��<u>kΊήX���%��^5��������1�~FIOfz���,����X��ih���;߯���?;.����}����V�����C��g���}�;��2~���M1{�����3�?���p�[<�`g�sB���P�n}�0�[��gڕ3�- T��I�X��B�Vs{�^�~���\��bz&dq6:1ș�D���߾+g�m�n�T�/f�9�fԍ-��ݟ�!��:�砸rqfc��5i�DN���e�)��2�3��s6s��k��*Q�;�!��E���"�/�W�h��kO�d�3@�RRP8+�����q�[Ʊ�q/�~�u�J����r^*RvzQ��iV�t���6h��(N�K�i�gK��U��ڣ����B#B+���!�,:{�=��g(H�U��O
��/�W!�$����/�������x�����+���Z��&=~�N�b����~��.V�u�.�C1-�d��]��(%�w�R,�x�=p�>���gp�����Ϥ�vz!�m�"W\����ڌ/ènj�Y��+��u�u�m�?�b�?���l�Z2��]�0@.7(8���Sc�I��c��C����[[J��ur:���OB�g��j��_��?0^��z�j@:�>0����6wN~bRf�IxV^g���x�R�v��,������/��
c���_����,�c���_�/��������Ep"�W���9X��4�"_�Q,��ѓ�a�o�EU-bboh�����r�Lb�+ 	��9��d�"{�;��_LJ�a��C�K<m�:v���Ņ��y2�l+>��kz���)E�0!�l���
=' -WZm�����Ꝋ�(Q�܁„~Y�g�Nn/�(��E=iC>i<O�e@}� \���`��
EO\;>��!��v�92���D���E�	�G�����W��Ņ�&���b���ر� j�Y�{���M�n�������d'0-�@�c�{��z�<�]R\�S\�{�#�s���:��6�������f7�v� 1���U�:�ܟ�~���d�{l>���Y4��b�E���T��3����wVG�����AU�Vm/c���k>�JD)5����+���շ�7����Έ#�?$��քȠ6��!�K�]��T���ϲ�����Q��S���i|�<���ƫ.��

���꿹��Ƴ�j��;1��%�[<x�S��=�'�6�*߈1��������.�҃t�8����Fy�]�/����������?��������_�/������R���'���/Kj�,u/F4���	XO��p]������?������	"�z���;�K?0�)jل�@�S%c{B���d�xa�-g%��'�;}U=��]QA-�������BQ��Rw�T�D���t��Cg�����P."<f��� S�����ꗹj@,�;k����>��‡����ivD/p$'����\�c�fl�[��锯�-�2���
���#��1�iׯ�� 9�}���V�I^@��{E�����\��e�wJdM����G��$�ŷ����@�����g�M�M��ϧ8��Ї|z!�;��,�����j4������N��U���E���CW�Q׺��ց��"�(��E��"��=bv�\�@��׽=�m��b���Zx\N$�d����",D�+�ʒ�NC�,��6��6|!J��Ʊ�6g���0݆��պjP��l'�X���ښ���#<0~͕3�F[�
��+�����}�n��vd�̶��V�A^��VhS��W]}Ӏi�6Bk�U������]�V�g�X�q)�7v�i{^������_�{;���{���_�/�#�������	I[��q3��L�x�7���(k_m�@��$5�W�l�#�8<#8�IFfϷ@�������!�1���T���O
xw�(��9f������3��50��k���ψ�/<@`=�) �|�ْsq/ok�>Z!TF��X���Š��3����z�
�@���3���[���/�o1''�¤�����ed�D�����9�~�n9�P[�M6�v7*��m����n)'��F��"^6F:���U9���«n�=b�p5ag�1�"0�A�G�Kl�vG�0	���mh|�]@\X�;��a�(��OP�����c��#�������~����_����?/�WL{|�	zî3�t�&�F[s�M�يe�/S����%���t֑�g�}����#@Q>��aI�2��?J��V({�N20*����:���u�eAU�����T���I��j������Q�K��Q�6��uX�$�`�?����5v�����|�WL��n�n��Wa�9�0?4���=�h�w	kCt<��y�O���5Ȗ���*�-�s�����_�w���e�?�������������P�?=):�i��œG!"��1��t����t�IX���vz���L������׬��O^=b�$���KD��}�Ȥh��/����}'�T���Q��g�]�P�C���U;ă��"�.{b�:>1|��u�w�y�t�2~�WH�,�v�p
��R:��hp���a�%_��{��R�ٗ`�����$���䤊��oX��ņ�a-t ������*��V0>���<���o��Y�UA�WOa�9��E�M�����|L���m�p�im��Ʒ7�f�&�~� ��,�qp�-F�*a�ϯ�"��78P�������v;9��^��v�1j‡�0~i�κhH��~6�Q�؃܂MCb:�Fu��U��Eճ�����b̬��bA�q@2Ů5�9�d�;8���5x]`���&m�9��t�Ҁ��ΚA�|3��Id��m��D�e��Vkk�w��?�2*��_�����hm�ɹ}9�}g���
Y�d�/G.��+�O�
��k�� kϿN�İ�_�/�����?�\�/�����m�o_.����,�#��WmFGg�>BUnmC��h�4��7@s�����\Z}�H�XQ ��|>���U�i�H� wM��Dr�!��y��S�y���_�s��L�S<��3t=΄;.Œ�1�(z��ޮ��~�["��G�SІ6�4RG�kxV8<�]�˚�6>��돒���C��&p�H�,]��$DNC�hI���U]�i��C'<�G���K<�F��F� 's֝�d{�0Ҿ�1ձ�7�
������a"��ke�)����d�8a;W8$���d�L�ʝ���oT�g�Pn:���gH+�ūWfA$��)�
���i�&Ah��?�s���3Z�*��l�'X���Xa�&�HF�X$,
r���{j���)S��UP�ȋ����ݸ��f	�a�,��9Q��(g1�t�������98���'�"f�I	���~��4!�`,�-�2��ܠ{��\�w��3���aSܥ'�ߣ���?r����x�1���Sd<UsV��ƕ�kc���s͹|�������^�/�����?�_��������_�/����9�'��
��◳J�7��/���PF[�p�.s�=�z�+[��� �-i��M�sJ$?GA�R�M�Ξ��G7������m^1�+r���������Q���
R�N��9���sK���Oɏ"�T��C�h\j0���=�p�����X:"��KN�����w�@_��&��H�S'x���E!�ag�[������X�y����d��SJl�֓��^�f}��~0�E��^pr(t^W6���S�(�շ0�ʘb�[$E:��>�kl�l���X��Ǵ|����N|s:QFVFv�hpa?-�S�Xp���\Uc���p�	�s�W�ǿ�`�?��JEsʼ�"���Š/žc&��uAօmrd(4}��fSy1`�	UƮ�H���Ja���g"}�������_�x���15�@�!lc^lw8C?����������?�8W�wv����d��}4f����:��%j{��L5S��������/��,���X�����3G��4���{UC��;'���*��}a���#/��Ԡ R�s�2�����������X-�ǿ��?���忽��������_��O�?LrU8X$����u��&ca�g �% c� (�.��!7s�_f�A�T�L�Ɛ�]���u�\r��ǓCt%��8j�jLW��ZU���	M�����y@���G���<0�L��4�Z��t��'��������V��M�^g/$A����G~������w)��菘ާ���OC+�0m��3�;z.����:�jp�`�&�N/	n�v�(ߛ��F��D/���Ⱦ���'��R|�t�@t��vH�	�^�Nj���_�:Կ��u��]�\���D�]���XDA�/����!!,�
�qY���Y� ��2����`�����*K������W��!����]��X�8����t�x/�u2m8��G�%���Z\P'1Ş{�𬊏��bR;�Lm��
A��D�W��A}��IU?��W�#n�H|�ԟ�/�޿��hj��~�z,B_�c�I��8��$�r8\�i8�"2F#�n� ��I�g��;HIׇ|�n��Nf|RF�
�_�
0?W;�æO2(�5��1�Q�Β"�Ƶ��?�	Em���Y\�������忾Y�/��?n]����ψ-�����7�!P��=?[0v"7�H�Q
q����,!ʨ��7ro��}R��vʼnBeHb��� ���Ȉ>3�jҬ����վQF�ux�%����+1�D,ҍ	_{�^f|�.��&��/�$��OU^.c*,I���L��M�(������?�ņ��N�([��x��@a�O�������y6���5~���U�Η���"�[Ȥ[A�ݹb]]	h�h�$�9����� L�$��{û�/�U-č؁g��RE-a"B���R�^ɠ��sC����Q�T��j�lq�1���T�k! R2?�h�!����tl��p9f��]��BE��\�������"OA�O%��]U�yN�K�g*�]�8n=�	$����O��X�߿Pe�#��D��dן����L��VhP���
��~��!�xK��y��ЕE� ���C��ᷩ�x�;��Qa
U\*�!Ի@a3�(�p��#��>d\٨����$t6NX�+���e�?i�G3!���*��y�].�G/E�
��T�T���G�xv����g_�X�/���������_���X�/�����3��9nGtFv���w�̃1�W�y\�7c�Nk�M׏pDһ�pk>Q������N�.�N��g���4��K=x�H?b����l~�oL�G	�a]�?��)��~����`Uzܟ���X���6I�)���F{88��d+�* r5T��?�w�.'�")�&&�������π�I�Cznb�/a+C�
96�ȄW�u`\��n,y{$=��t����h\�tW�?�X��+	臮�ĴsL��\q��!��"чA�{QmV~f��7���8�����L� �7�%ǩ]�n}�WN��,kK���fӪ�?�dl���?���RC��V|�s.���b�T�)iwg'�Lj2�"&�e�N�2�<�d���	Vz�+�i�n�*���a���2��m<?���G�2�jϔ (S�/��� �z�20�X���dj�r_y�&�,�2�Fb�L%-a��3�jL��r<2�c@��8��%�1��F�Jy�?����j���>�-������Z�/������7,����������B�����GM�Ā�ػ
&�P�`<^�l�S���C� ]�1�@D�Y�g7�Y��-��n����5��6V`r�X�d?�i��"�K�4L ��m���|���^	��(�i4�F�,~��~�OȦH�}�3ُ�>���~P�`@�oǃ� �ݹ����1�X�Ģ�|)yQ�1Dž�\s�H�#T��(aq�ӱ͇g���"�1�r�A*�j�Ԫ-�9E%B6�1�'��Wꊌ�~���g>'en�5W����N���b���O��Ehb^Vx�;a��Al[u`r�V��YYg�����m�c����4_`S�-��o�)+Z����� �x��p�+
i>PD*�뇷�e��"&</ڌ�f���r0���W�I�n�%�Ť̩O���}�H�x���y&�K�'e����5�z��?��0���z�3azܩ��#H(�b��E�t5/�����h����S�8 a�B�\a�D�C\j���!3��R�E��h?�)�J��b�O	6}o��p\��}��V��,�����i���_�/����X�/��������[���y��`2�;X.̃����R�dW�'�W��j��L�O�HoC8S>X"��s۾jf�>�f)5q��X��$h�y褐70!CJ����w��������,'�H���,	v�('�'	�❰!�n�<2�7�߮TAR;szn��^���h���F�Z�BFL&�<�3�����Y.T_�?��1�\�.�]����r�x��p[`�L�Yj��9��B j>��`T�*��͑$2�~�C�
�����^\�Qkq���=����n$�������t�*�翗�g�L�G@r
�؂@����uh�H���P��4@��;#�i�JTX�S����~L�ė�{P��N�`��A�(�5�gP	{��m�g%4��$��[q�2��t�T�Jq�����q0UB;�` Ck�9}�jXX�hh���V���B�a(�=�[������R�f����������o�\�/�c���c�?^�������I�3��y��8Wl���f̙�d�V��vJ��"
�$�+� ��9u�z�$��0«�Y=kD����}fB�}ž#���:�,����n����V�L��M�׃������_��F��1`�kb+f��ca��v��((D�-"�i���@�ZP�R�1_��$��`��CԪ��)&p��Yn�q�����3N)?J�'���t}��n��s��Xf6��GX�f᧏O��/O9M2�Wr��^��XK`e���n�$)ah�$���}*���ѷ�Gx�~�Y>L�/�tɫ{~�&�F�s�G/�'�C3,;�n]�;��n���'�'\14�+�m�G�>�p~�*dz����@��bJ`�'�P�*��5и�e�,DO=�**|�#�p(pV�P-uR�

_�"��8�]bt!v,�~ƒ{�c0�A����#���m�_�/��������_�/���������_����#�$����.��r& ���.!���+!F�S��$x�E'V*o��k��}M�:�HF(!��"�Q$m�����	�$mE�)�Re��Nv�����>{��8�g��*,ZH��T��'�����֏��!f=�/��<�۰���pe0g)�m��TXj�u��Ő`�A�o>!{?�;��j����Ӗ6�+i�5#@x��C�a��优��O)Z;� (��`h"NA|.��ڨ>���U���g���O�Kxk�w?���m�z����W��g[d����@Aa,�-��#��v�cq
!	�a_m�3�I�WQD�Fj��3W�c_�O�LڬM֏^v0�[��_g�ߠ�P?��d�я�A���?�C����c(��Y�;�o*5vI��eg7L	D���@��mw�=�I�7�+n����)�{x�Y�������_�/������]�/�����D,�c���_�G��d�a��f�����ۊ�&c�2ԽvWr˽��;��m6���	���ג�Z�ѕ't~K ���ؿ�O��D�B,�
,ͷޓ��	,�{�+SšD�rW�[�f��J3�T����N"lU��oYl5�7�eb���-V��5o$<��+��B\��z����)jW3_�	�����]X�2{�+᚛�H�u��]AQϘX��{�_�/�������.�������_���,�-��a����e���_�/���X��>���`��=p���+7ص��/�D�>�>}�S�1#��L �R�V��?���D���Rv�E�GZ�E�'<�S��$�KS��gu�N���=˷U����
���J`�_Jp`o8d	��5o��H+#�FFk�;����D��)��s�y���V��=Ґᘠp�>E�*�M�c5`���W_�cT�D�����M�q⃪�=xOÜ�㺭���G���٩�M~�����Ƕ�����_�/�c���_�[_�c���������_�/�c��O��U���i�!��}�C�|jl6�
�2�t�Q
�8��~+<Ye��Kd��4�$.E��W�J
`w��RFr&8�O� ���OS��
�d 9�l���+;�K�r� N�\-BaBZ��u�#"?�3�5x�V��_BD\)� ISW�Y�M�~�,����ė6+��8�+���	wVC����h����M��F�p ��W�O�H����-�Z�����	�����.�����,�c���?}Z�/���?�b��{���_�/����~��_��>��'�������M�,�߿_� ���}�#rp�y�O����B�GR$@`(�A��;웘5\ ��}g^ΏM<�/��_�}}7dh�a���,,#f�]��t����J���F w^j�QQ?cH�K�_d|�8 `EeX_�3Nh��n��2~�z��v�7�;).s?����/���ڗ�O�$�Hㅡ�؟�&Կaz����m���_��-���������_�/����念����,������gb%���y��R#P�W��	�L�;�S	�%c_N���P7K�kL8 �1�)-rN�4�8�^D�ey��z��AJ��t����d,{]�y�Q��*�dl~�B�<������=e���@4������"��J��G�����a�
`�q�}U��tꂬ�|�WPM0#o�x�2��i;��1H�g��~��:k�ơ�u�xa��k
o��/85�����_�/�c���s���_�������,���ht�?}/����}/?������[�����2���.ZAa�:b�
��%L\Nø�_���~��bs��9ڎ`�T,0��A����ã	�� �O�uA���PM�KBRc-׫w/Q�0����cre���L��;6��4v�E宮<t�KA��1 ��@�w�x�y�>���mą�Gu5���,8f�W�F0��2���x����![���
�h���ӆ�[/�m"�ؖơ�Kv������2o!*
�������_�/�������?�/�����X/���]�/�c���_����i�e�Ȗ��h�A�F<j�"v�:�
I2�ZV��4h�5F'�M���D"M_�g&m&�̔d���3t�NH7_�p�pW^,�|%HTY/�"�U	cj�6,�CĬ2���Ǥ_г�Dn� �������B��|��`7B��sbn����R���Rz����T��,R����UX��V7��‵�R�;=٬[a�J'���Z�^�(e����D���
�h���X�/���q����������X�/���L��?������o-/���+@�b0p1�Сg.�by�����nM���.�K������0�c[�I\JF��Ml��L&�� �g	��qr�"!}��&��0�<�[���@5�6�X�Z���0�_��q�d�}�G��]�u�-.����W���u�@e9qn�p����-�'L�����<	v�[�gFR�SR4A�(�f9騽.��S'	8�����|gt��g�4�(�p�?�-����˘�򿏸�[�/������·;��_�/�����?�_�/��n��j2 鋮7	��Å���e�ј�	�Ht�4�9�)��-�%�N�/>u��Fpo�$��5���Ы}f��#�}��^i|``F�9�L��ģLh-`��e���G�1�>�n�6��0���쟳RD�)�ÿ>�"��%��1mE��j��ǩ�Y�c�%@�S
�h^���|���>'��U���\"Wa9�?yH�r�9�*�c���̏q&�-�>O��V�+Sb!}�	ø�_���X�/�cb��_������_�/�����^�/�Ǩ��?����}���_��=������N�E���tG�����v��?In�9�Ò^ʺ�'`��GنD��jS����\
Ԕ��u�_�!'g��m݁����}�����@��C��6|'�yo����O�N���J�r�"~c��Jm���A�v�
w����[�R�:\�)� ��`�S]�Q.}�]�=���g~M����{^�[m�oo���7\b<������s��m�������_�/���������_�/����|���OP҇�a'���}Z���/BX\=��ˉ��/{�G�P����$��L��m%v�hDǒq���Z�|w�C����Ah�#@i��bb��^���'~2Y��=@Dkj��K%�Ã,(\t�(#$z�X?'����c�J�)C�Wo�Grք���3��̄�ߥ�v��T�p�?����b�p�WIO`��  LF��~�Ʃ3,�ɶ�yb���{p�W�g;m���o���81_},�����������}���_�/�����,�#��������gܗ���ߝ�O@�h@:�VHz�ҟ�X�0�	�S�	�J�U�5b5 �_R
��]�e����ځB�!�]F����|,�o�	&&$�C&m�@a� U4���D$�F�6����"Xr�aH*)�����O5V `^��� ��C�O���,I��WE��M\�o֍.�w(���+�]��#��O<�R�W��4�V��tz�p9�r�����&F�F��������_�/���������_�/���������j�&b#��d��3̀����1%h�􃣒�iJ�-S%�B�@�I6��f�T3�� �wg��6���\[*�4~��}A0��`b����n���})qH���'u��ka���AY�a��F�@I>2�Զ���mC����\=eǎ�Dt�4?��2Hz9�K'�DI�N�����yM���*�m�aAku�K6����:=�E�F��N�
�[VPXd)���?�[������_�/������_�/���������_���������<Y*&��5�"�%��?
���f�d���ӷ�t�8�i��U}h�@�,���'��!�֮�����=#<X1�&���=�;g�Z�X��E%")i%?J�ɣ�4�*f�P�1�[���v�a���E�D*W���)e}������x䐾��Q�|���&�Ⱦ]|����+a"�\U)���Q[*  q]ɹ^ �<PvPg����&#�fH����Pl?(z%���2�k1���#>�_�/���������_�/�������߻/�����_������@ۆv��9y�RȘP@JI�"�F��A<�p�(�f�4?#RD�
ժ�je�.�{ϡ�7�-��������\��c�<6_�f�pT��	۪�=(� �+�)\���BSB����,���_��O\"f�.K������\`��W�˄�v�	��TaHy�x���PTƫ��i��<β+ln.���ԟ��L�}���='s�&J�{�����Q��8�!_�/������Dr���_�/�������¶������-��y��D�
h�%+t����FS�@k����%���C�6
�ɰ�^<$~p�L�Q��Pb�[�K�b��2���tL��)����[�|v�OQ��`^/�c�5�%��)X#��5��oG�ö��P�p�,��!}3:����N��N#��#���U�ZL:s��:!vT�*��ң���YfPe(բ
�K���D��$tx�� ���`���RZCұ���������_�/������#��_��u�u����,�����,�����$:�<��:�e
O��t���D����8��*��K��B����	�ZC �HɄ68����?EJ&��q�|E:a5I��`��B�u�;j�+v�`��S��B���K��Ҿ{'�O�>R�b��'�t�ǀ^%����2Q?�FΓ�
B�H���!7۲��ߟ!�M��%�
~��9���\Ρ�Ux�=O�K܈���
'8��"�!��/ۈ�a�h�,D������ڹ�_�/���������_�/�c���_�/�c���_�/������?���񪲥�N���Y�������"�gr���t,:}Lp�}%������t���RbR�E/��~�9�
��^�"\��X�؎�G0n�0!�v�׶`F�p^1�f�"`_���q��
�D���>?��ĤNĩ�^�v>�o~�!?�b�Ne�7(8�i�/5�	�}g��)l�w��۸�_^��rV�R�R�Q�\�s�<�/���W(b�ct2- Ŧ�[����1�-�c���_�/�������������,����O�.�_�-�ǭ忻�����aP��՗�4A&I��!&��Fg`�"�C�s�tPH�O���<�c�"�J��F���۰����;��U����*k�q.;��J��������q�
)�Nd�~�U�M2%��
��-1TQ�
n6[]�ܮ!�ą�I�&VX\	䉭�Q*W,E!�����rIH�T�o��Y�\�%cd!clK���R�aev��K�-M�PO�+ђ�v_�	-���<td���!Q]�/���������_�{|��������]��;��GTb���_��ߘ����o�?��[����}��x�.f�-{�&}���~g�N~��/{����/��6���s���,i,���܏�W�
�o�1ɍ�m�;��}$�5�n�;�X%���Ǐ0��6�1�\��`�I
=�l��l>�Bp0��}����g0|���:}�푷x�~X?w�Ӊa\/ƽq������W�N�Y?�������jv���_�/�����[��_�/��o[�/���������_�/�����̆p�&q�ku��h�A��w���#���c��<8��f�+n�;+*�n�+}���T���HNJ�l�����z_�����=6���G�3��Ak.��)��}�__
�Ko�#'�k�d�CZX��Zi�U7{����Ԫ9�Uᘰ\��h_����W�S�vZ>�R>������������W�!/��q@�*&!�H+�F	��-�Q/�­�>���u��������b��_��^�/�i���o�.��������_�/�����,�?��z�Hxtg�e4�ĭK5�f��u9��ʳ���gvɎ�2d�eƫ��wn����W�"��CN�ȅ*�崝)@�������RrH��R �e�gVB/\��7����C0�E�µ�x4C�6��ƺ�Y!���MXV�Vl�y�ޯs�z��uLYǯ��7&j�����}���P�>i)������6�V��CQ�>o��&c�nz�i6���Ǫ:��y�\�ź��_��������������g���_�����z-�y-������_�_��e�̣��q��[`���L�
M�/{���%S�Pz�U#�6.��Do�?���y9&�����O���}��1��މ*#}8�3#�7��.	������?1�K�F�_��Oq�h?���d����5���gr<�ь�W&pS ��������F'�Ϝ����� ��?�\������%�˸D��o6�������}�����Z��E��_�/�g���_�/�����>������׼���,���Y�i���}@>�
<�[?E��e�X�����}�U��^�0�}�пl�;!Cԟ���O�Y��ERz��%���c�`�Ş?����z����1.����3���Qŕ�`H%Z�v~��W�m2���_���1�ˤ��(�v��T��_���7?n��+^?q�M�-����/��okc���_�/����.�����Z�/����0�������_��G�	4�s,�f��83`��D9N��ljU�%;j����&8ΛyDZ�7��~U���yR�����7��Ng=�	_ڴ��.��=K��]�m��}+F�.���7?ۏL!(���0�����Y���ۏ�� ���fȾ�"}zL���wu7�Ҟ�̸^�3M �j�W�!�u�	rF���q#��ו���7_B���.h����8��������k����M����_�{g�{���_���l[�Ӗ������Y��/�g��x��!/Q�dƝ���|Kv�H�TN�w���I�^`H$�@��.���G��C���|���ǀ�X	�_e7�+ocl+�ڕ���~��o�rp��@�+�:W�_>�(Ѹ�<���_�A�M8�>Ps.!�E4���tpb��}���?�E�����vN1�a�>��e�8^���v~����3��-wr���_�������_^���.����ٽ���_�Y�/���������w�X��/�����=��IEND�B`�PK���\j��W'W'(assets/images/settings/sure-triggers.svgnu�[���<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g clip-path="url(#clip0_216_4673)">
<rect width="20" height="20" fill="url(#pattern0_216_4673)"/>
</g>
<defs>
<pattern id="pattern0_216_4673" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_216_4673" transform="scale(0.00390625)"/>
</pattern>
<clipPath id="clip0_216_4673">
<rect width="20" height="20" fill="white"/>
</clipPath>
<image id="image0_216_4673" width="256" height="256" xlink:href="data:image/png;base64,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"/>
</defs>
</svg>
PK���\����,assets/images/settings/tracking_selected.svgnu�[���<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.334 24.3332H21.0007C21.4427 24.3332 21.8666 24.1576 22.1792 23.845C22.4917 23.5325 22.6673 23.1085 22.6673 22.6665V12.2498L18.084 7.6665H11.0007C10.5586 7.6665 10.1347 7.8421 9.82214 8.15466C9.50958 8.46722 9.33398 8.89114 9.33398 9.33317V11.8332" stroke="#6005FF" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.666 7.6665V12.6665H22.666" stroke="#6005FF" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.36734 15.7583C8.86985 16.1963 8.4671 16.7314 8.18377 17.3307C7.90044 17.9299 7.74252 18.5807 7.71969 19.2432C7.69685 19.9057 7.80959 20.5658 8.05098 21.1831C8.29237 21.8005 8.65734 22.362 9.12348 22.8333C9.58963 23.3045 10.1471 23.6756 10.7618 23.9237C11.3765 24.1718 12.0353 24.2918 12.698 24.2762C13.3607 24.2606 14.0132 24.1097 14.6155 23.833C15.2178 23.5562 15.7572 23.1593 16.2007 22.6666" stroke="#6005FF" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5243 19.3334C17.5243 18.0449 17.0125 16.8092 16.1014 15.8981C15.1903 14.987 13.9545 14.4751 12.666 14.4751V19.3334H17.5243Z" stroke="#6005FF" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\�a���+assets/images/settings/sureforms_extend.svgnu�[���<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="24" height="24" fill="#D54407"/>
<path d="M6.85718 5.14258H17.1429V8.57115H8.57146L6.85718 10.2854V8.57115V5.14258Z" fill="white"/>
<path d="M6.85718 5.14258H17.1429V8.57115H8.57146L6.85718 10.2854V8.57115V5.14258Z" fill="white"/>
<path d="M6.85718 10.2856H15.4286V13.7142H8.57146L6.85718 15.4285V13.7142V10.2856Z" fill="white"/>
<path d="M6.85718 10.2856H15.4286V13.7142H8.57146L6.85718 15.4285V13.7142V10.2856Z" fill="white"/>
<path d="M6.85718 15.4282H12V18.8568H6.85718V15.4282Z" fill="white"/>
<path d="M6.85718 15.4282H12V18.8568H6.85718V15.4282Z" fill="white"/>
</svg>
PK���\���"assets/images/settings/ottokit.svgnu�[���<svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_15325_11588" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="21" height="20">
<path d="M14.6901 0H5.41213C2.42309 0 0 2.41078 0 5.38462V14.6154C0 17.5892 2.42309 20 5.41213 20H14.6901C17.6791 20 20.1022 17.5892 20.1022 14.6154V5.38462C20.1022 2.41078 17.6791 0 14.6901 0Z" fill="white"/>
</mask>
<g mask="url(#mask0_15325_11588)">
<path d="M14.6901 0H5.41213C2.42309 0 0 2.41078 0 5.38462V14.6154C0 17.5892 2.42309 20 5.41213 20H14.6901C17.6791 20 20.1022 17.5892 20.1022 14.6154V5.38462C20.1022 2.41078 17.6791 0 14.6901 0Z" fill="#D2F059"/>
<g filter="url(#filter0_diii_15325_11588)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.0495 14.0326C12.288 14.0326 14.1022 12.2273 14.1022 10.0004C14.1022 7.77347 12.288 5.96821 10.0495 5.96821C7.81109 5.96821 5.99684 7.77347 5.99684 10.0004C5.99684 12.2273 7.81109 14.0326 10.0495 14.0326ZM10.0495 17.116C13.4685 17.116 16.3271 14.7291 17.0338 11.5387H18.9405V8.46178H17.0338C16.3269 5.27157 13.4684 2.88477 10.0495 2.88477C6.63068 2.88477 3.7721 5.27157 3.06532 8.46178H1.1582V11.5387H3.06526C3.77193 14.7291 6.63056 17.116 10.0495 17.116Z" fill="url(#paint0_linear_15325_11588)"/>
</g>
</g>
<defs>
<filter id="filter0_diii_15325_11588" x="-2.56382" y="2.88477" width="25.2263" height="29.1195" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="3.72202"/>
<feGaussianBlur stdDeviation="1.86101"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_15325_11588"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_15325_11588" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="14.8881"/>
<feGaussianBlur stdDeviation="11.1661"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_15325_11588"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dx="-3.34982" dy="11.1661"/>
<feGaussianBlur stdDeviation="6.51353"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
<feBlend mode="normal" in2="effect2_innerShadow_15325_11588" result="effect3_innerShadow_15325_11588"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="3.72202"/>
<feGaussianBlur stdDeviation="3.72202"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"/>
<feBlend mode="normal" in2="effect3_innerShadow_15325_11588" result="effect4_innerShadow_15325_11588"/>
</filter>
<linearGradient id="paint0_linear_15325_11588" x1="10.0494" y1="17.116" x2="10.0494" y2="2.88477" gradientUnits="userSpaceOnUse">
<stop stop-color="#072F50" stop-opacity="0.95"/>
<stop offset="1" stop-color="#172A39" stop-opacity="0.75"/>
</linearGradient>
</defs>
</svg>
PK���\hIZvv$assets/images/settings/sureforms.pngnu�[����PNG


IHDR00W��	pHYs��sRGB���gAMA���aIDATxՙ]RAǻg�����G��pc�|O��8�	��'ެ$��U@	'0V	Ɛ��{7�$�1�𫂤6���;�3��A�%Ǚ�:�'��
�! ��@�B���F�]O[��Z�A0D���gX�NJ`;�W�8�ځ�p�����B���T5�#�8*�a؆�@�'ۭj�։�/�9��kF�J��IFC�58|����>��x� ��27�4ҁ�r~��n6d�����	��� �K<�D08/�: C'����?�i~�~�ǁ a%��6QP��Vs��'r�N��:����.���&��A9W�z�"�:s�1d��^V5@��λs�F<�H(ݝ	����S��d�F~Ǭ���ۭ��kM0!zDǶ�X
���oqַ��45跳[�.d$��}9
~X�+�!b<Z�bt�O
G:�0 4�ї�>��i>�m0
�q�j�y`���z �q��G��!3D0�R��Be�2y�#낇l��y��RX)d�I��mMK��”~V�db��$|�G�i�����i�Q�ޥȂ5e�8�4�����:@@��0^�w�7q�T ���}1����x�<]gA�0�mx�6QQn"��*�1�����\n��[
c+C!� &�Ɂ:�R���ڠ��^Jt8��@�M����Š�����\�@F_MyA2ڇ+g�l
8�j����˰+ӻ;�^�;'�x������;����s�D/XV5�F���`�/�&�ά�s�����v��;67^���?�ەl�r� ���pP�W�2L4�/�g�cy=ڳ������k�ҳ���M�У�"�_�q@b�P-�������!f��k<`��n�>�9��K���zMƞ��3`�x
Nk�����X����W���$R�?_���.���W&�$[ٔ�7R��“�f%��d4<OWX����bM��@�D#p�k6�Ѱ��5�=����H���Tdg��i�
�k<�j�:�.�ކ��W��W�۞٫�IEND�B`�PK���\[�h�����%assets/images/settings/success_bg.pngnu�[����PNG


IHDRe��2	pHYs��sRGB���gAMA���a�KIDATx��o�U�����%K��-ɱbd)�
�6���`XP�ܖ��DmRVC�t5M��mJH��x�k%�����n���ŋ��eb���6 cI�%K�d�����{��̙���g��g��7��}�sf��g��3g��o�1�1�����'�1��r�ͣ�i����C����#�<����Y�4��Vo�Xz/�!:->4������O�xq��M������N�>:�;�-�����������Y�E��������h�>X�/�<X���K������~\><��4�����h�UKTtjIGIz��iǿ_:���t��t�>݉�
�
�O)J�U������Iu����,�xkzI;h F_��5NKOy���%�,�-� �i�Œ���_kr�� ��.A��2�·%&S�g�](�:�;������%�������b\K��Z�B�h�V�{	
���ю5Z�zH^���s)����h�-�4y�έ	�k$�k>�>��G��,��c�V�Ilzv�Jmb���[�t��<�������ʺ����C�����x��u������L���<y�y��k:Q`S]d?�Z�Z��?�Aʢ�ђA�j�Tޞޔ��R�޸��#�z CE�X��S:��j�uѠ����J�j}�ziS�OP5�i<:��zٟ���_�u����H�_y�}8���Ae���|�j@�Li���Z�in1(t��z�4J-�� ��j�䷀Yַ�bT�)�PxG'K��>��?mҪM@��~ڄU���I�%�kz�5��?;�)��z���<;�;�������?�Gy��v$��4����
KKhl�C�+�4�k�n��76�@����x`�];��JJ��6�z�Ѐ�%}����u�8�&,I*������ג��V{4�t�<���:�;�]ǿ_N�K���W����V��@	Z-�0ё����A[:x	�V�p�dZw���~5��a!��&�ޛ�4:m��69ZzQ9Z_mbK���!���+2�d==������-����_ǿ����w�������=Q�>(kN����vl�V4�hI��k�	V_���"�ǡ���x�����Oڭ֯Uǚl˞^�����KM����G�NK Y��?�_9�4p�i�7�.C��g���:����_�H�h�,O"�Q���_筝_U��t���6�O@� s]��r%��~V�kീ�ZZ��a�hD	>�-],���P-��Z�Jz�+����K�����Ŋ�P��Z�Yㄢkl���{m�>����j� ��O���b���7��s�E��^`���h;�u}Z�\ɿ��U��{F���$J=m����*�s�P�F+<-y����O�K?�SZB�2=���?��j����P�qL�Z���
-=�|&�?���(-��d�d��E���'��,:z��i��w����sx�{�R���h
K��t����?<;�o��K�;��o_j�{N���0A�K�it��@��T�����˛��c�O��<��D��d��n�b������i�@p�R��3�叶Y�-���c�؛�-�go��-��������3�����2�퟇�?�����ey�����cǿ����q0�[N�޲/�\^���4�nqFk��xG��n���]���~�=kv�t��E���$��z�.�L�v�P;j��|
��EOyjq��;����~���=�&�g�?ׯ�_o�ʳ��ŮW�C��?<��Rǿ/��yl�_�
O�fp+[�e�o�f�ڤ����zhrkA���&�[�v(u�x��_�@��-_X�5P�{�dr�t��yn���8��u5{P^^B��ْ<�A��C�O����Y�G��;<�xv�w�K>��/�ʛq���[����������w};�;�w��q��~�R3BhP�S,*��c=�{h5*򃐛>-@D�(�RZ�ā2@Z�y�$�/i[82=�kEʍ(����^^��&J/��b�Jph,~Zlx�y�,�p��<�_�2���/�#��ܶj�":��>�� �O�����.ng���ƿ�H�������{w}J���c���)TJ��~V@iN�`�`�b�&�����2��W�	X"�v|�� �֒Q͎��ڸ[�k1$���O��V��Yv	�����
�$P_l��:���_����ٲ�`\�
��.<�iL�Ðr4�t�w�_��?�ҿ��%;���p��o�_���7�7Ek������+'N�}N��&χZ9�����r�Ҋ�2�F���d������o&�K?�S��K��+�����~q�b� ��{r"t�@��M�k4^�ɱZ�JT�Y���&a��:M/+����޵X��Jd�x�V9��gmgΆ�Y�dCcîY�/}6�_�w�g^�e�g���f��&�c&u���)dž��-�p8,�]7�j�Shi��s�/}+�W���"*�p�[s�fZW3<�����E�ta�(�����
�`�7�6��� ��R���HiO�����2��ID���y��b�����P0Y��q[��έR�&'6�<5>�5�a$G��_&w/64v��u�� �O�s_v���͎�t+�X����������ؠ��\�_9Ji�Z��K~��n���W�W�7~[��W�eiaV=k��m�NÂl�E��ٯ�&�>�F��\���e�`�@ik~���Ǜ~J�{�P)�'S�	�NKƌF�k�����?�D��Z�{�M��g�?�����%8,|��Sǁx2+�<=C6���}߉�?��KK�gL-`�?y�ċ:�X�k.�����Y��~uG�e܅d� ],�I����%:��#Ow-aaA�UB��pͧR�Zi�^�9�qc��| }
��P]��o�g-6[���Y�W��9���w̆[���,���`'�od�2�CV+����cw	/�b��G���N]MW���&ea�Ւ;��W��������Nڦ��ni{�-����&/	�d>^�~���ؒR�,�b���M�����o�J�N���镎�R�Շ���g���e|N�e���e~�8���^�A�F��X�3�6=׀�%bOWZg�1�X���
��a�Ԛ#�!�����:n�O���>�c82�/%
T�ϒ7��.V�%:z�V��%�8����&�pp�EG�e��e��n�/��$�����Z�g
��3fya����E���oY��+��&�b���l+�d�Z��k����X�O��/����~/μ�k6_+m1�=�����[�z疥���y�S=$oK�&G�����V?�C�v)�W������t�c�`���O��#�l�Ο����?�g�Ǩ�&��/���ح>���㿭�x����nW�z>��7���2����M�f��[����8�e���4�.��"��P5�Z�bc]���Y��ְ(g-	tۖd���5�� �H�yc1�
��V���.	���~V��bךM����&�����_�U\~�	�pX�=���︃��|<����?�������e[�)K������>�|�_���pG��[H{,�?����=fdavU�}��lAv]�_~��S:8uZ�z
D�7��Z y2���?I�[��N����ꯕx���ei�Q9T~mP����ĭ���PON�NQ�yŒe�K} �C#mT�h�h���
Ͷ<�K�4/Ȇ���{�k����pß��X�>�]�}�~k��ߊ[K���w�x��^�o��o�e�K} ���������~��n��N⡍��7�9����}��I?��2&'�r�(Ђ��Ppڭ�ZO78�-�R��[%Ƌ�񜙧��OE�QM�%���]�	
?+�i���6�ƭ�h�O��[[0,��'�����f�5��mv�nz��X�� m��`����Gc�aK;�?ZY[���D��%eCy�[7�y.]����?��\����	����8��۵����&��5F�N?Jk��
�p�Z���l.bA&m�@��p�KxIPk���@��T����K��ʼnlK��,Mg�G2y�&Y��66>�lOn���aAV�a�uy�_�=�5;��g�P���'d�t��t���Z�n����𶏽��V���qU��{7P�ij�����#�o�������:�Y�ch`k	A��z4�Ξ�H9֪�j�mIR��E�Β��6K��e�]�RV�x�#ei��ޖ�=9=�m��ϋ��q���Ηy$�~�s������Lǿ.��?��?"������?~�c���sð@��O�߼}Ƭ�;S�������9���R���50�$hs�fH9@Y'yFE�� �
����8e"�M>����V����u�-@k�{���ϋ��l+.5�[+L��2"��[�Wmr��S����U��kr�a����ܗ���a����0�叞��6�mh^rË�o���gnl�Q�	���P�+�,���Ѓ9}F�\�7%��'�7x0��m�s��X���3~��^\~׿��|�!�՝��o����+�Z)�f�t������5;i|�Ģ�E+r?ѫ�2,>Z�aeXp�pi�c6}���}����~�]2�Nϥ�J_���+zu���_�'i-<]���O?��sE����5?�^�pM���Ob��Re���9w4aC۲�o�	x��Q�\�Y�����ժ�c��~�?}�f�tA碝�=��Ѷ���p�^�.��K����-��K/qy����B-z�8��E��d/�1�2|�rx�l��qsL�G6�|��-��e2ޗ$$/�O<���-A#���k�����2,�zwv�
���,����{�s�����M��G��#��=߁�^��aQ�2�2�;��~��Y��?}�r���R����KV-�_b�&��.ؑ��,4�Z��&�?ɳ���i�����D`ѵ�Yڧ
��[�������
��[�̟��Bm(>���fA�^&;�*c�B�q��X|:�;�5:���`�?����+�]1�;d��ߢ�\s�û��.І��_��p�]o�bG��tE������_>S�1��,2�X���~��A���O��y�o/��`��]Og��Ŧ�?���]�6IX�l?k�Գ�峥�7�0�vx��>�0�ۚ����,Ȭ��W�m���:�yH�3bWz�fg��B���E�
2�I����_Ң�+_�%�]�u����Wb�`F#3�����e8-ID��կ�TK?--�DE�=)O�-�hYb��O'ݴ��\��|��d,j�`'`�ZbG�-�H���f|��}]�?��d��lx�����W����
�?|�q�W�?����PV�}pB��z�ྗ�1�×k���]s���ĨM�4���,o���V��8j�%��3h�����y�o��ş�q����
_�:�Z_!?:}�1j�]+�6���}Zy[u-�Zq��i�}j�A�|��͂lX�m_�1�]�|�7��37�73/ay�
�����������<�v)��YM�<�������+^���5Y-��?A��?H�w ��_*����i	X�~�Ӹ����?���Z:l�
����?��#��O,����H��v��UW��KEKy�+j��m)���j�]��jߥ�[uoI��-���@}2lY x������<�~��X?�,)��7��@���q�2ŒJ����n]+���wx�τh-�C}c�w�,�Om�%?����^�d�J��,�x@��k	�DX����"^��s�r_!k��?��/xŖG�?���7���K?��O|z�c�ܖ:Oo�Ϭ�A�t-��YK�A�^�O�^򃡫�����
T�j���?:|<�H���^��D��q]�&����x�w��W^��p��:�˲��B���7Gn'�E�U������]]�쟿�/쟕��߾��fi�[�5�K�y{>,���a���w�WX�����_��p��ޅ���`u�-��c�Y̭?��fQ�5raVK\-�ok��V"��勥q�M�V��]����ki��b�Fo�K�~�ba��?�	E����2N�����f½����v�ٕ�,�Zdu�W�X�ߜ�0�͆�j�D��5�uj���Ջ�ϷEaT�Dȷ����Ӕ'Dz���D�|�Z���5_�}�fAV���W�cv���^\��
��x�"�~�7YzF��l�mY�g��E/�zI��Ӛ�!���k2�	�c\����A]��d���$��_�1���Oӥ�j߻�>`��r��wo��α��:�w+[^�~6��H�b���7��,���
'��ۗ� V��-���UK ��E
����Cv�Y�0��PW��o��
� p�'ds�̬���_+��_��������0藌;<h��Ѩ��H��DDۃACW)��E��"Jv��i��O�F��.{�߻�s-�Ð2i[�)��_�e��uW�+���"
F�~��� �>5�K�c�Z�,��#�e	Cϱc��s�u9,�?���-�2�±��AC�[���e�ք�$�4]j F�V����Ǔm�Y|4~Vp�TN:��#���u����{^l_��d�_�8���(��^�t������ұv�JG��8+ j�%�K'����\���Âl��K��hc��fg�����ϚM;f�~T
hV��`���-j>��ti)rܒ�������B���~�ޒ��k�
4^�X����5��OV5���'����ma�
?�����h[����_/�'�+���@�(#��X,:�g�6
|-�CE��sX��g��r*���p�������_B8��x�B0�iA�b_��SY�(���T'e�>^]���5)�5IX�5[y��KޖO?	����FcŖ'��ſBw���n����W~N���a�E�ܾ��Z4��0���3�N�,�R��a�*�[x�����Sw�����@�E��au!��mܻ�a�ٵ%h-�jI(�j6��Ni< [|��r��@�KƳ��gI,��E�uI��䅊\���Gm��n�}����&��q:o)��O�s�9�+�2N���h�,Y:�y�k�����}t����y��WE��(M�_��!�~Z�h���aq�k�16���f�k�%�<:�z�?Tx�Y��L|Q�q�Rv�!*k��%��l,K��.�����%�a'�]������_c�o��*�_?�p�_v8������{Ԇw�����v]��e��J��5�,~T.u�l�J{K����%�m����h���Px[A�CK��q4�X�dђq`=^V�l�:�59^�j�)e���(�%N��$K�t���q�X������`����?~��c1�����b����/|W�~��ÿ���ҥN
(
f�B�mm0h4���?�4�1ӷ/�.2����y��O4�o-�a�k�GOM/�G^⠺��J��~^�[�di�)�-��DX�o�>-��	������u�:�O��E����ػg�}�3����xmv�.��w
�3�;���KY	z+������t�h�jEsZh���4'[�N��w?�/5�S�Z0j�-E��kO��w�b�P�%W��J"n;)��GGK�u��8����i[J�n��?~�#q�!K�������
�7�8���@��������Fg�]�/�
Ŵ�
J���=�p�<Q�G�j��d����/��8����[Z���@�FolZR���Kjԧ�������gm�������A�#���h��hk���k6���B����M���ey��obA�hL�>��۝5�SOj�mw̾�z��p0�����O�O�?k�o��v𒂥�'/i�ZP�d!�(�,@�1ɱ-.�[6��h2���e'ĭ�X��[���l�\<�y�ʠ�K}�M@Z�&ϛLZ&?�V�6�x��:��J@����_�;Q��oY�.d����p��8U6�?��o�]���������쀠��b��#yz��|Z��M�A�C�7��D�Y�M���L��,`j:Ԃ�%y�O
��1��'ײm�U+�^|����j���#6�-с�[�Ă��.�������qA��qA�łLӁ��k�"˖ϙW~�70��a������0O�W��,AE�����hJG�GM����"S������A�Iz�����A��?ޚ�=��&�\�wP�-���7F
����E�Zi��5����������\���!������\����Mۗ
_y�ݸ��c��p�5����,E�A�5���J82�X��L����`�C/
Q�M��:�~�8��"����{8��m�q>�����	�[Hh iIV-_Iy0��؇���uK[�O�e=����z����/yzu����?<��}�l��8�Fi^�-ſV׌���O��{�[���ٴ��ʠ�Ҕ��m �OQ�P�
���*���~@��
��6�Q?���3�'1��^��h['+@�⁢�Z{�Ak�N_���ѐ�ǟ���O���=��dX������x%���ȣ�_�g�O��[�/��S�[����D�U!�#t%S9�h ��$���9]3���J��,-r-�k���巠�[6��V4 H�i�@���%�F{K�Z2�Z�j��xG���)Y�:ˮ^]�?�����o�=�~�hx%���8�0��!DGv3�W�U��9P\���n�J�k��3e���9�+|!��l��l�A��^r�����x�����G/i�9��ٚ��@���&����J��
4���:�uR���1�k��K�~��}:�K=�v���?]�mw�Ɵ<:����^��}������]��_>1�_9,�`A=+�y4-��%���PxX�g%7-)zEKZ�@��_&�ޖ5j�Z�Gp��&����o�ii�hdR����P���E;�h�u�g�I���t����?�!�ϐ��j�W���s_�w�%��$���G�V�)>-�Zo#:�Z�́o�Y�8��(��,z�vRo�גg��K ����R�K��ɷ|���v9�h�u��oK'4K?�^ʐ�=��Oy��d�w�w��Ï�od�n�ϐ%������~H�Z����':I��@i4Y��'r[����^�������YK4�sC�ޭ@֊�T'�g�[`�]UK�bC�f��[b��]K�dv�}$����t��zh}:��A��:�ڿN������?Th�:��<�BZ�AX���ѷ�h��"�h��Œ�����ق�%����X��?ɤ(��F��$��K����{�$�es��F�%K|�b����p��i���_�I^@�?}=�^����֯��������ql*B��sYw��_{��ev�
Mthk4o(��&;�F���� �-g.��.2�v�},��[����Ƨ�@�A��S�YKi��@
3��̊gK��L�O-)$�:�;�;�m����ߣՎk���rM�_� �Tk�RP:Z����s+�HZ�a���>�����G�����T-84]k��%Hj���v.�Oc��ZW��Z�ZiM��d����k6Z�_���h:�}���:�a�:�g���i��S��*3*��S���Q'Y�H�ZN���$�h_yn�_K|?�O;���k	�B�D?�R7����9��NuZl��꠵�ַe����tn%Eɯ��_�w�ۥ�������Pk����J?���Gq���<4cC����c�}�s@���G�R
�d`�6��z��yT�m��UϯQ�-�C�ϒAi4��v
�Zr��~��a�Qy���	��/eP��������|�?5�`�5�,����B:��!�G�3:}���\m�V�	��#y���[KX(��CT��0���nM0���[��|�ꎫx���t�m�:�u��-t����;e��#dP�cK9-x�Ax���[yѾ^ђ>�5~r<�C[�M�0P&d��U,p�I�J�Pd{:!�K��"��zj�K���>�	b�ɡ�Vw��/�z�������Ѧ�:���
��C@�
�(i�b-� V�Ѐ��Ʒ��R��d/��D�ck<^���k	�d�.�K:��Z�z��J.h����bg/F4~�l���X�$	��%Ϣ�/yɺ��t�w�7�u��q�{�������7�+J	Ё/������-� t��k�yz�������/���xy�e-Z���c��ӥ�~5}k~��oſ֯���גsܥ�_�핎�6>0�t�w�_�e��,--|�&�]��Jy��d��1����I�Kߚ̣���]�S-	��diB��J��.i4������?j�/������R^;�k�c�Pe�����@��z�mMGπT� tЎa���%:�R/����*�Ć~�>*ǀ�]o�O���78:@�J����V��
�40k�z�]���V{����R}ǿϧ��+P�}i)SB�}	��a?M��S�/yHz(|v�C;F#��v<��x�'F�! ����n��f<��ϭ�	���K}[��{����Zj2=�Zlx2�#�נk�m��?A�7������Z��h���iQV�]�G*�
�ֺ�(ږ�Ҡ��	C��8kNߖ��?���x������ϋ��r�R0z�u�ychI-������5۷N$��j��Ƴ�:�?��ۂ7����?j�Z����JT�k�}P�i[D���:�9hj�� C3X�Pd�N;�:@�%���>�X����P64A�%�h����Y����6�|x�&�W�e{���Oꃆ6�c�W�ͽvOv�5�G�e������/�i[�#�WC�nHk�4@�8^Rbc;�C�^�ր��SK-@xh}�2�j򃣣��Yޕ+W��qpp��W���
��B�k`�' ���ʦ���v���Wƞ���ؖ2:�u'�N�v��u��~����7��%�,yI#yNj�ka��,	<+ax�ԂTK�V�|��"��K-�i2jŲ��2�F�����Xe2�J��h�
]�h%}+�K~0�w������B��w�w�
�_���08�/I?J��P��e���Z��ɯ٭ƣ��;����'#��4�����~���`�{�k�����@��V�%�`ȵ�c�ߢ�|nٰ㟷_���ZÐ%��?���K���E���/- B��´%�h|�����F�b(�V��h5��eA,���jE���Y2��K�Sg�ڳA-I@���[dE�O����y����G��bW�S�)eH�,��%��4�F�k���2N$-��k��m����/i���ۗVPz��XS�Ҷ�`��k��h��a�sK��Ck�}[&:��Z�$O/�z�QS^�X��.:�A�I�t>�n#>�����?�O��%�k1�M6�Ψ�o)�O:��_�k���u����?=�*��3i�P��tV�k���x+�O|g��ocu�vI��o-�����w�m��9P���
/���������ܹs�…��
7ܠ��ʹe+�x�@U�5,�~k��Q<�Ʊ�ݛ/��	7����Aȋ_{V|yt-��^�;��3��:��j<����>��N����;�;�����5�^qWp�{��/��o|�Ht��~�_�ޝ_�#+�e��G֧�_��&ã��[�y,���x8<<T�?w�q��-k-��Ph]Kl�k���J��Ϳ�l_��Ϳa�,�.�n��/��ٖ��O[�Q��@=f�&���%��},��w)��+2-:����^*���$�/I���>��^?�_<x
����~��y����8���_�M�N� ����Iқ��-�]w݅�/bxo-C���hIV��S��d#�"��%Y�����j�:;e�����3&���'V�ﲏ�39F��8��-_���9��ǔU:�u]5zo�"�:?�����6��u����Y�h84n��w��G�_��[p��7mw��۵X<,Ƿ��D�Bߚdj�hA,��D�
�}\2&��g���hl�[��>�O�Ϳ/��;e_��7-�j|��i�wh����]��ɻ*�?b�/yw�kc|���c��o�._�ܢ9~K8���-���m/�8s�5�e{ǿM�Ҷk9q�o�'�9�2L@	��yc9|Jez�ѷ��/~�v������ǫ�㠫[K�FG��$C��:O^K�`�������qI?���Z�lRc�[�7n�
�Ϳ_�{�/�]���:C�-��|-�k�Q��o���v������/Kǿ,������o�]���5��'�>��ۿp�ǀ+�pdt��2:�y���e"��9�st��(������6��nzY���z
�%ؗ&(������ͳy4xDG'��&���Z���9�#::{ɠ%V-J�<27<0�ʭ����!�󅗈�N�^��<_i�V�jr����P�W�*:v�w�k�P���/|����h*����O��8��F��v�_����`�Ԍ)i��ۖ�����*������O�R�>����gG-1�ضD��U�����nϨ�2j�k�׀����9��n�
�Ƹ�oZ��8B�������䧍C+Qmq��92��6��@�2�k���r+p����+WƝ�a-�
�C�?���GhУ��X��=�ʣA�%@�x��NYA?<Cv��_���_�խ���Ԉ-A
��'�E+YJ�^r��"�t�"��E�0�z�,])���g}j�Ը}=^7��:�n����Y��4��ԡ���^ӿV���&*O�G�jr��,�X��������λ"^xG9��y�[_0.�>q��:��͆��=;�;��
����Ck?u0����sc�[�îؙ{޴�UYy���L��q^�V[kд$+���Y���Z�>�|@O��x;j�j�k[M\%�V�=�Xi)����������0�|0���.�;�<��l(w�x�MptXZ:�;�]ڴ([�]��
'�,�b5y-pu�`�x2=�%Z����Ԣ�R�yv��R��0���M�s,K�-45_=�߱t�w��t��Mˡ�`��0t�e������vذ@�����_�gt��T2J�R����ĂL�%�A��)[):X����CE���+��V�Zc�EMg��E��(zA��|�$_������-��Q����4�A�˛�Z�U��(�:���V���P��B�S�/�3�>�0�����w��r=9���/1�~�5�j�zPJY�I�1*2�@�4�iIF��Ь�j�¿F#i�D&��n���<�dR�X��:I]"�>�xۓ�_h�H,�V2��(��xz}4�k2;�;��Y�?�YN=�~l������77;�u��G�J֊�X�FM�Z�.�j�I�-�YAZ�$^P.m�Nl-��H���ӂ�%��	�vL?�	@�]�1�)=M����:Y'cD��t���'S�o���m�\�L�
�ɸ�g59>�O�	�����A���w�W�VD� �ʢ���&+�5�K�%z*S3���j�<gkm4�,�R�Z`h������hK>��Z���,k\/Y����W�y��9��Ly�J�~:�;�iݵ��S{�lW�'����Z[�#�W���PQ�
��k���2�(�LV_�F���6VK�� -�izh<�M�To%-��-�5�V�{�I�T<�ZmY�gm��"��cŗ��%X�h�i�?���-���p�q�9k���f��w��u�Lj�UE9���%�iu���3$�g0T�S}[���4pXέɓ�y��B+σ������A�}�	^��1`%���6��Rw�
�-1
zٖ>�X���[P��ث����?씝%o������O�o�}$�����c�J��e%��Ԛ1���ѷYK�D�>:}��坧:io`^�t��#��#2��J(t2�X�@*y�/��j�����j8��
?ڟ~�c���㿥\�^��ʰ�*��~�~�����^�/i:���T��`0��/Zy�Ȩ�U�%+ɿ��di
�Ԧ�������_�A.������ε���?ʧ��`��v�D�)'BO^�����O?-���w�w��ȥ4�����~��l�p���۟[��~^)�a�m\�u�w����7���X�I��5`����'У"_�Z���	�t���Cӷ�\�+I{���FKroi�l�K<Ӣ�B�J�]b���Q�_�=���g��ófw�Iw��>âm�����|s�W�ۗ�LZ:���;��âl�����)
���%)�h��$�H^���&��`l�E�k�z:�xj��jz,)5�Y���R0k��$Z�GKǿ��k�/��9�L�_�l�P�6;h�3�˗�bl(���Ewv��yv�3��N��0S�>H+<'B�H߱�$�G��&?/q�b�j6*u->^Z�l^�ǵO�W���v,�L�-���-�.�����.�ف������{�U��K^����\5�˝��-J�O����:�O2j����[��2�h[�%W�V�K>-:X���v��]��$�-�'c):�����g#���ņ]�'?���X����Y��=,(�%m�y�у�L��T����@Rp�ӎ˹�g�c�Lگfx�-�X�c�$A�m,^B8
Hk�P�.�2�	aW{{1�2yY1Ӓ0���~�����g/���ti�����*�~�%����H��=S��TY@W(.��;薕�䵴_��&���j��5_��LK�ݒ�k�
�1
Q�6��Ug�OK��q�&��x����eǧ�_����<��)�u�a����c*����[�X�i}=~^ri�s��I��?i�҉����:���՚�����OƲ6^�����ָ�/i��o�����=��^��,���h�pGY2�ȿf�gSi	�o��AM���I��p�v���oKX-��IZ�.ɶ�_K{���t�w��\��7��>�I`����
uzt���� y��
-I�Q�G����V��%�;�y���N��v)��mɸ�Q�D�NK,�~�J�D��Պ���h�E?5^K���-{P{���h_8���%���滤t������?,�.<<�p��G�z��
n��P�V�ZF����G&��AN�ޒc�QZ�[��K�:�gtڭ�ݒ�w��?�kY~m�ӊ7�֒�.1-c���>�˩�w�������"l� ������B=,�e`�>r,~]j�|,+x,�ICK[yA���غX�&O��^�� (�EG7m��o�1�|���[�ߵ�����t.���l={C�������i9���~Nx����;���8K�"| Y��ؒ'�
:�<yZ�{�h��,�QдQ�'�<�$_�x��4:���_�n�$�H==Z�����`�d��0U�Y�y��_/�ˎO��ݱ'Ax��cY�ݲ�7�gM�����y�o_��e�E�B��>�/*�J=Y�Jk��> 2Z�m�.a�z/&�Da%���w�O/a���j�Rml^���ë5�:�;�;�}�����f���vA�-�on��g�:
�=�x+���Jqe��^�Iz9�X�	A+yk���OKG=i��_�I�D�P>��'��֦ɍ�Q��c�|A�Y6�(�+yi6
Ʊ��_��O�
���U4d���Uth����o��v��o�}:�;��y��yA6��N�)���9��u�7��Z�-)�9גFK�[@��ɷ�d%e�xA�-Aj�^�����4[րZ��L��/�i�zk�%�W�M���6�I[Yɢ�4z�/>���QK�ɻ��D�w���ٱ�7�`�Xi����
�_)L�sK	�\V�W��dE����&��ˤ�+�sl%��A���_ʌBVhd{mr��ʉ��/��M4��[�Ț������x�&782�m���}d���_ǿ^:��3��qp�\�<|�rxv����|pj���8f����:P<%d�NM�]�yF
Jݒ���_����xHpGQ��ҩ%��_k���C��H�����FcMnVlCN-f��Y��ؐ���Mǿ]:��K�u��S�����Ke��yx�3�
�/������屖B��"(�px�j�-���6�Q�i�%X(�ѨOmZ��1^R���-[k��Uʴt��[c�J�?-q�a��[Ë6�T��$��㿤�u�o�q"�f� {�+r�[����oaJ!g��%ώ����+��XI������x�},���^��,q����O�؁��#�	��,O�٢��޸j���vL�E����[�#y��	���zk����F��t�s�����{�y�aA�ɏ�=\zz\�m�\Q�w�;r��	�tH���{ǚ�ٖMG<�x�J��q[24`jv��Z�С�6,佤]�7.�X؞N��āv]=�X2,9�X��+�������_�,������<���?��(÷,/�ğ��[?���
(�VBM��xk��3�q%�fLZ�c�Ӓ�)�%���xPz�W����z�#�R��S����m4x�E����84��L�d���rl�$A�-]5Z��.2;��q�ǿԥ�*��EY�t�7�_>SQNK�@�D5vt��S��+0�~�vii��=�Y�����~Q�i%��K�m���Tt�xua��O��'���b��⍏~j����ێ�R?I��t���t��,����/�b�/��
y��]�#JԂ�k���!�o����W�K=k:j6���@��[�'�,]C���,��m�ڃ���7*����hd���^+�ZbW���)���~���©��C�ŀfOV��d{��v�"�;�}�����n�,����Ǜ[�q�	���7~^�����������R3\�O�m�1Ԁ*2�6�j	-,��+^��v��1j:/ѷŇ�ݬD�ʖ�2�-͕Gއ+�W��vA6�3_���w��cK�]k4�����,���|��u��_�_�U��dt�/����ҹ%��2�]��̞<���j6ҎC�L�}l%R�%~�зV��+��R�YK��K�-q
��ϰ�:��O�+���;V0y�!�˳y
�n���z��	�i:�O(��(f��u��EKRڧ�HMǚ�Zےq�
/I[K꒶6����ѡ������^ӻ6�x��;�{�Lf<x2\y��8��;Յ-�n~ytt�WM���Rǚ�Z[�ǿUߺ��t��:���9�e����o	�5ݬ]��M����U.-5�[|������xQ�z��0,�[���Ð���J�Q�N�ۓask2�(���j9w[ƀ�D\��������r�F4�u��@��T�y�bx	o
�^��䭒kA'��6����xzYc�ڵ�����B��.-vj��Җbٰ%�6	P���ޞ��O�Ï��}!F�ꦗ���H{�:����t�k��]���6(ώ���=�
�@{�&Z͈�Z�k2�>Z��,�A~͡xZG��G���`���R�0j`��5���H'������l�t���_��������.e� C����b�Y:����#��s���ب���5���`"�@f�%0�#C�/��>}�^����k�����XL�觬��x�䚬�v�Λ4�@�J+Q�@/�xC��|�܀]K8w��IeZ��⫎�����.�;�_�NJ�+���Z�F��e(�u�tT�A-ah��ku���8�`-xd��@md^��Oy���t��-��g��[�h��6�h<%�V{i24MT���;�y� ��
��Se�Ғ<Q����K�?�ۢSK���.���<����㿽<��ĵզ�@�}[�>^ia��h�weC�[46{�I"6��"�$���ɶ�h��K$�j����-�O���Y�����x�{���E�7�%��o���ώ�:_9�k��98}����F���B W�l)�$BqT�x@��_-�x%�WT�rW�(�)�j9�~�i��-�X�]�K�e�]����;=�l�@��p��p�K�^<}������S�G�wϗ�v{ǿ�����ǒ����ű��������J�HEj��*�RIO�����k���C:���c���*ߢ�b�h �)�B��%Cl�D�Sk��:	"M�/�x���pzs;��lr雗4�����ٲ�_�!���*c1�E���H��u'��3e4�-E��_�A�H�r@���Հ�ZZ�W��h5z��E��C�o�o���-�oK�Y	��c
�~���jI�V���~6�3�C�f	��Z2N|%�7��h�������4���e٬���4j����c�`���O��DY�9�P/XP�����O��xh	�J\V<���nPd���xjI�5v�L��5�����v�}�g��}��0��'��C}*:�&���������i�����f񿂭��t/�]-Pk�Q+5'&���r^0�~���c�[��$�Y~��-ǖ�T/�T� ����[�.Y�WKRG*��������:��L~�
m���/�i�;����c�m��>Y��ÿ����8*Jjt�&�Rq�N�͔���.@�d-���'�ˤ�@��[�:�>V�4�`�Mꢁ�䔇V�`ȋ:
��$�%�δ��} ��r�5�jv�}e]�ǿN������6�lM���k�+�J�ΠF��l)+�j��|[��l����8=��
dT�Y)i[�Ki[}eM����X����&�V"j�����������=�E�r�ҳ�ŋL��e?�_ǿ�Ϫ�yD�S����?��Ѝ�vh�Y�GsP/hZ���%+:�bK��ɸZ��j�CC���D�L��gg�b�e�����]��O|$|�'��{�w��R����K�t��:w�w�_5�C�=���'�-��]K������t������Gޜ_���������%I�5Q,�i��%/�%����50Y��ŎG�c��J������
�km�s2�_�ʺT:�}���������EYbn)G�5���_�`����{����1��ds{�+�
��&(�z�C�Z��ĴK��)�Z`��<*�.ɧ�5��d(p�$�v�-<�����>@ݏ������A��:�����a����vg�z`Y�Y<����c��;�>��r�,�M�>��Π�͒c�h�hk��|Y`�䶴X�����$�VZ�4�{��N�W������mK���[4��K��+?��?-�$sR�]��q�Q����dg7�W�z�M9�]�,�����8_�%�@��-t�}	�jrwMN�&�]���qM��w�$�b`w�b��]���N���R�Z�t������E~�	�?]��"pi�.�Ұ-+S��{%���5�b�5_�Y��S9����|��9,ھ�/&z�g	0[�kp��Gʫ��t�1�%��M��6N8��d��Gkߖ~�&ߥ����w����<ڎ����'��Q�QDK��*V0j|���
�?�|�\�
ϊ�V��ݯw�Ry��94]� �6JPGAO�Z���*�a�{�A[1QӉ��^RN��OT�Ԋ��|ϖ��k�,�c/�N���V"N"�m\@i�t��������uV���鳂���N[�q������[�ÎװC��o�&櫿<����R�(}�r,K9�Rv�|/(�@��(?-�Hz�[I�KK^�^�6�l^��l��h�[��!I'�hra�o)�.�뺵��/�:����㟗-?��-�$�-�^�GP>-�F!�m���+���C�✈/zM>vˆ?ݐZ�ӃӶ�i���i�%�N���<�86��V���Y�l�	D��؟��O4��v�W-��DP�'ij���T�k�z�6������v�������Bi���Ci�RZ
T4�jE�(�{�R����
�R��!��������&!��uK��xI�z�`�JɿZ�AE&�J��R�K�~Պ5!ɤ�ɀ!7��W����8�
���K�M�ۉ_�%�������w�w�_U�k;e �BSh9/8kơ���3�>���۬>��0��&Y��i=�c=�h�<��R'��y�ȱ���ߊo����	J��8�c�r-iy2��%D��C��{�⿬[��ܦM$����ԯ��u��R���%	h�>��CC�(�c����V���i2,k2,��Dl���	DM��j�	�'r�_+)C�,����t��?T�dX�O}$.�Ky5X�N
���h�-�:�;���������2:�� �Q,���XG��K���qwl,���}�"������z�A�]KK�Ւ&�E����^җrk�Ji�D ��ү4����j�k�A�h�F�g�E�Mt�V�H<�M�sZ�Vǿ^:�K>�F?I���t��u�%�W���RPAS�G����?�/�-�C�2�}��?�������eh�^�N��-�K�2�d�h�'�k`���6�F�Ki�^�>���V�I[��%���x�F�B����p�����w�y����/�u��<;����O�WF��m�Ԃki"�A��>�N���LDR�7,��͆w��ݯH��dk�[����HK��ƓYKV-4Qѥ%6Pѩ6~��E#AN�XI�E�<ג�5��l{��_&�6�gyC�����nu�~�wl��tƧd�
��{mV�Y�S��E�/��|��~f�
ط*%��w2��
����7�$|<c�h����V,?�
����Ǔ�MR��Boś�3�󚮩(m��fK⓼a�װ��k�N
�w�;�F��
�}��&�_�NH��V�N�
7�������������,�F��,O�9��jZ�~����?¿�9,��~���w����;Q,�^��~Qȍ��辋��vDV��R���%�,)�}%0�N���%����h<[�n)mK�lſ�CD��D��t��t�Q��?��Oc�^c�B�
7݄S{{K�v�w�[z�m�/��o�b�%ɦ5@���ϣ�폒�+���g��^�������TZ������l���d�شE��,�w�^�4��e��&�]m��ر����Z���8	��-��:.,���g)�7�c�O>������8w�
�7��/�Zm�:��Ar����x�_x���O�8��ʗ����XII:�ӥv��XA���N'�YF��[�Ć��q������4NN��r}�@�?�<�o���U�����SO�(e���a��㿍�(��?�)�€:,�i�B`q�#l�ߪ��gî��/��+�]���K�˂��_jeIRtߴ$�[l��Z�h�$�$�E�.�)ۀz"B�X>)����7��J�5��K�Eم�Y�����������}ߚ��6��+���`�@;|`x�������`�i򏣴$C*�f`y���Oͷ��w|���[�Knx�֯�<vѫ��6)-��.��yk,x�N6��>�B~�{9v�ǩ_��¢����k�"�)���'Y�s����Yzá�x�>T�/�`貤x�p\���k�j�?z���w|-��_�_���%}vI
VR�m��K�ʨ�X��xn�i�n��t�����/��*�y����.n��)����I���#��Z@XF���E�mR_�YTN�-��"+(:Y�Z�J���
�.�U�b�_|�7��O�&?xR�{	/s�h�t�dQ?��2�����dZ��F9t��m���s��cO���_s�����Y�����_��r���Jy���"7*�k|Q�E�ˤ#�I:�%�Pѐo�Yr5�{\X ��V9V�F�L������#��2yy�o)��^T&]�7��Y�	!��D ����_�u�����(u<N��R:��n�;��/^��)�b)�RF_Io/4�O��	�a4�i���C���L.oLr,���fs��
x+�k�
F?�OR�˟	�����u��g��Y���=����%F/��&���x��e���s+fj>��H��vߎ������[8_���*�v_I��_���~��p�H�c`�B@x��_�T'[�y�^ܠ�Y�R��xi�[t���W�m��>�m�$SK�"���;���6����?S0���~o������5o�7��1(����Rj�M�z���瀶Dl�%���u�n�\α�_�a�G���_ө㟟k�:���$_����b��Fm
0�����+y��
u5����-�j�Q��c[�m��Z���f�ph�g��|�qH_�dfŻ%+m�,(zi��5lEt���S�:��������q������U�/3��2�TΧ�I�4�Z�J�N3P͡��~5 Y�KL-�&�ѪC�]�z͗�A�j"~�=߱�{��ë0~d�+���g��m���v�6&��
Z���M��
p�g0�h���K&u)/V�H��^��_�;v������8�t��r��Z�2ݾ��Q~֔���
��H-�jGYc�d,)�`����X���4Z���PZ������7�,�o^�����}/}cm�Vb�M-I������B�~��|Q�A������z���J��\�-6ܵt��K���N�A��$�PV�Ŋ ��E�
f�S���-�(���'B�Ю;�����k���@u�F�e#�;Vt�ɢ�[;������8����m��Z��]�D�%�;N�\���rh]��?����u�qC��.��B�r��)���E�����/��&�uT�@�S�9NS�r��PKz�Hi��^	�z*3@��jk��
BK��.2��ğ�{	W��m�X���CK�Ά޸�v���i_
���%C�m�Ӳ}���4Nd��G.;�;�%_K�l��X�nM�?}��f����VN�9c�h)�e݉���;6��w
K�=E	��J�E:Q�X�I��
�E/�[���y�W0�e��`�l5�[����Cu���o��z�=@;�4�ڹ,V��v��Ƌ�Z�0C�e��X�׏�����v���~��:�
۷���k,-�����~���o��
Ï6��eg^���6W}�4H�a�����U�
ebc�G[㭁��]�o�
��(�k����/^e�[���?�֒�!xg>��'���'�qlR�:v��/���ү�/:�Ⱥr�fl���W�^��۸��\��U�����?4������<ϲ2fAt�û�kh.����������ֆ]N����b��-�N���=/,�Y��ۋ!�g�:�jy�8�D�Uj�ѩ�z�N��9����Yv̆�3��������J	�eR�H@�ayL�H��G��>����@������7��v��h	S��!�*�GSn��dG���L�z�/m\�E�W�"�3(����.�/�y$�5�p%.4x�Q?-�p��c�%�4~�<���>v����[�m��3��a-vt9o������+颒?Z��S���Q�׋���x�M"��+���{�zL�K��8)ʼ��0�A�	�\d����b��*<����s�Q��(M�-u��G�?�H<�͐��~ژ�rȂK��6cң�� t�k)ה|5>%�Ay�n4@=�s�޿����,^�v�l0ذcF�碊��+&�2�G�C������bq3��U��OpC�Z�u|ցN�T�m۶)�*�g��Z��M'r��F:�P٥�8��L�Jc)w�8o��,Z2Ȳ$u��6�q^��I��y�m<��$:�;[��'�'2�8�>�7�/�zև/4��@"���@̮I�\��$�e���~Z��<����[�a�P��MmIcC�+�1J��멎��=���q�x�:��W�O'�'�w�mZ`H�A�-��E���WN�\��@�	�����H��e>�#�A��e��#�<��%/�k���|{� �㢶Mc�1
�Ϙ�p�?�Q�,�ޱ��d[�?��y~���a ���_���F����d� �Tn����Sy4�X�/뤮\O!��]���-f��<�Y�
��c=���B��W�!7ةQ�\�qǡ�`��r�*�
��Ӏ,u�u���_s\4bL_��|ib���iu;S��|��_9��I�ҋb�ٗ���I�tJ9���.�.V�W�_	l-�<;X���YVL-��.34�?c(�j�l)?9�t��u,��E�㟎��l�����9�-��z.���l�I��#�Oc�&�"����)h�AZ�y�λX��\]_;�%x�x�ql-1��-с�ek8.�J��g�G�؋���y���]�_�?��c-s�T.�ԏ���yov˶�R���x�"™�,��m�[�;MD ���Z$�x$�����hK}���i�2FA�IWB��L�����AC�P�UTzE3�k�����^�%�ҥs�\�I�ұ���[ z�;���v�B-�
S<Ef���s�']s�X7ɵ@GcG�e��3Mi�-6֠�����_|L��/B9�s9<�"�	������U���my�K���r��q���!�)����P�s̤���N%-ug�����+�Y~.wF�,J��4�0Ұ"c%c������y�(m cM��Ӊ�.J�Mb���J��?��x���6��?ι��1X�u.m�w��#>��X���ص�`�6�N���|N�MJ&;��_�c�q��s��_D�/����zH�������\>�M�Q�g��7}�P�ne��}���{��<��fA��6;e���}�+@�)*��z+S>`QB'��G91�%'�hɫ�5�aL D��g�T���+F�v�.����J�W#)�EW��>/�v��gc6؉r���BZ��1�kMi�`$�S�a\�:�@�W&i;��K�nV�8g�0�?�-�#�*��lI/h4�[��V�q-��&cd4޺��p�H�3��򘪙&|�^�v
�\��$��GM���$�����-E�E��	o���o�i#7�)Cڨ�Q]�z~��Mͥw�T�ŋ�ۚߺ.��S����fQv�
��*�j�|FS*nU9Q�2��it�$^�����m9�xr)oq��M0:�m7��i���m�M(��t�ȝ>ky�l޵�G���gdܚO�$#w`Е	�^\�~�� ;aP=-\���Ʀ�u��q�d6�TZ�_�ob��X�\�^�t���h_����;��W�zr��Q��Y���N����e]�O����c�S���gF��1�&�r�����~ڦ��O�{~��R�?ʜ���>���z�Yo�2f�hbL���qk�I���Q�d�s���Zl�X���g�B.�d h�S-�?�UE��?)�2�`'%�m2Y�&��o-�zi}d[�����6)�_��$��e��Ѕ��L~ʘ�ҕ����`[�O�����BC�z\�On��i��1l��8����.�K-���oM�vrɳz���&󉞋dΐ�vi�3�Ͼ:f�eG��8"q=�c
=����X�͍��_�K��:�-d��^�I%�:3�ȶ��\DZPl�tCm�u~<~b�1�>E�m���>r<�|�q&��Ӛ']��_��m%�b�!^�r c�\���'<q����R�d{��4Zp��7�4^0&��>�V�=�I۔���ǥ٦e!PO*����L�p>~�^��Ɯi�D�Q�2��m�?��L�?ljé�6t�m���m��򵫲rA�:�^��C�c�&�v)�����*�ӞW����)x��W�r�$����t�Z0�����c�ƖqH\����y�0����(�n���,xs�fC���7�9�e�p�/7=�W����0�O�ޥ�y�5.�^�_1����t.+�m����
<N,��m5ƿx��������ˈԖ�a�?��h�RzE�ڲ��Ù�蘎��x���A[h���K�1�z�T}��@̚�''��^%�$or�����ɾT>�8�!�s�� �Z܏|4�三1�vS$��|<ɷ��rl��Fg�n��O�|�m����ٕ�/��x��~j���:0^4^K��)�w�=��N|,�@`8�*^B�s�y\x�D�Hq�u��iLOc���-gY"N@�8��e_X �
�!�+���M�&ɓ�O��
�a�B��=
KءcHvn��1�8d��ߢ��Y�oα6cq��I�<�3��9�iW��f�E*;����,N8n���m��cѦ��3'���E�͖���?Կ)N�+q�?����)���/��m)c���~顴�V✄J��.�̘���`��jWy��ʣ��_�=W
�h �U~jO�n2`�`�*5�O$��H<��I�;(�ܡ��P�H���sY�4�M��i���L>����@�y�j��!��W`����"��}�?��|��^�o��/$;R{q��]9�g=��;fńF'q��'�ds_aYȓ���R�S5O�i��
��I|��ǚeg�f~����x���_��X�ߜ�;��m%�YN
��!�³���֊��7$o���⦌k���[�C�/�J1_�b,���j��c���yH��B}��H�CK��xQ��[>>�[�u�Q�W��؈�b���%e�q�qw	��GS(q�m=�Ilj.��Ζv�e�W!@,��;-��q���G��ȣϚE�e�w�n[�)�[���|+󾤁�!�t��iL>d����o�;�����GT��7���EԇW�܂�F�TRb���8O�tq����9ɍ�Ģ��z�P#o��B�T�PZ	`����
T�|a���� �� ��?�H	4yd�Xe������8Qf�ѱj�z��%�ӤVNTԟ2!���g��1u`u��4��Y+�&�
�m�Hh��rŸ����g�����KY=j�(6��<�l@�g�ZB�8�I+����8�r���D�� '��;��UF?kd&�<��c~K9q�F�b�|{'��t��_��F~�q :r_I�O���Ǟ}B�
���x��k�~Y'��d��3N'7�����:k7�J`c����.��%�� _�!�/eGv�����؊�u��i���
�g��+�\�_׉V怤/���Y�@�-�?�Y�S�ܯĿ�nI��-��,P�k��������z�1!��K�a�\<u���)���:�٣��fr̂�8�K@�S]�X��e�21O�Ůf�qQ��@�W��I>��؟~���!A7��1�R^`�cJ��Bo�D�o�����w����-��-m]�d&��m�<�1������H�I'�sӘE��;[Q@d:��u�	���ݖA���@g
L2�->9�	AGQ�(��Oؒ?�pQNt��^.�Z2^i,h��;��v��õ�e,pYdF'��Y[]٭���V|q�u�6S|�V�Yt䓪N�/�ynʴ�]�e��Lv�Aȴ|��^�K�s�t.��k��r݌O�WS�kw*���"�\�p�<���?)m��}�R�l�d�C,�
G��:�J��W�����s
m��8	*��_:�Y,�K�SY۲����S���
�z!��6�K,%���П� yI̔�t��"#�c+���lҤɍ�	�q
�e�ggS�AMr�E!zq�J�sYY?)3@�4�Ү��>� ʹ"�	����D��^�
1^����b��TDˆ"$&�~���\~ViG/=�G.�&f�)�S�_Z��e-��^�����N�1Qş�E"C���*x���\��:Y��'9!X~���^�6O�}���H&w�F>�Žŋ�
%�V�d�2�N,7ȅ�\��>%�#J��Q.�Ѽh��d��l?6��V��]��CP���4�f�h�
N��vL�g/��CY-�_��3�%�;����o��繳�ؾvm��[���P;��^�W�m�HS�l��4^�蜯����2=$H�R�Ï�I�ׅ�°�&4v�K�m ��3-ȃ쪼�z(�d�m�%�ʇ�:r��1ȃ�Ζ�r'�K:>^��Җ��V	����ʇ᧘
�N������ԕ����h�SZ��|�>:�6�����ǿ%S�M�l�|m�r��}	K�v�;�Z����B��?��̄A�u�u�;�Ou��H�d>4W�2�3}�_d1+�-�@cG�Gꍠa&��?�A/�n?�&q���A�/K=�P�9[�E�Y��|l�
�'�¥�3��ZVg�z�ő:����>Ŗk���&L�OӢPӭ���}Z`ЇJ�V����x?*p�v�}߿w�ӿ}��W�ˋ�N>�3ߏ�H�:Py����?�b=O��׹Z8Ų�t�<7^=1�=�[��A�%��Of���|=�;���*4��XQ=��lK��-�����bʺ�_!��v�	鮮�!��\<���c����g�t:�?�}�D��X�c���	��b.�Rv���h=�/�N%�J)�䄫?���`��_<<��9�z���(ۊ����1�	J�V�(usn���c�cI�o��gA�m�$#?�E�j���+�%��W8�9�x���x;}�~��/�`ƺ7���j4��a�E�Z_[l�w�4p���C��WHL*����~��VJ��O��p��\�����O���լPR������Ƈ�rz�i����Ӈ�{{�?8T��>�ϐ��WH���+�t�gQ�҈�ETƋ���̒o	�9i2�NP_�v��_��&@$�BWKG2�@^����&״��r�G^r��+���d�o����y�O���;�$;
e��ݲ���X�6wx�.�����b����Mx�g��(ǡɰ|��bC��X�c���T���g:��E߉0�l�AZ�r,�]9�+W�(1�Ǟw'���f?=vb�x�6HqR��;'G�s-c:�q-w_h~(��Y�J�i������#����_�4��r2�R��)���&�<��#m�?e��h}�5�����j��
��s|�Q�7�;cB��:�1���fQ��'����3��I}E�d���<��j�~��0�&��SЃy+<�w�L�6�3��x������tYvVɯ@������]`��@�@���P�x��T+;��ʾ2��Q.f�>A@��}�㸈Z����.�M�34�q��Đv�4?��Mm��כ��2h!@7���t��$��C�7�q41��?H�+�������ߙ>c]���0��ム�1��RL%:� i��΃ę��{腀�plR�h�1.���x���?�_�IW�cま+�#�U���Ɨ�!u���Eq%l ��ؤ�4N�x��Oo��|�(}K�O�,r�Ki�7�P�:r=��5��M?�.\�r���u�q>��6F>n�~1pl�~���L\P:I�8�K��yE~�§wH��dqd��~|�,*���.�^9w��>�O����qv�ӿx��=<�~��#d�ݴ�����\\]z��؏
j2�J����|7�,����Ǹ �KnA���I���y|�������qKy�����d�O&~�$%�7�F��m
�@�	1�Ҧ]$�"iW� �!0y4��o^ј����4�Jaz�4�Ƽ���ę�ۅ��?��s�6���~Jm�Z��J4y����J��$'*8�:�v�>L��	��H�l��m<>"���r)�y[�̧���`��*�δ�P��(8�������\���>�|sQ�/*�b�3�Ο�ď�!��Ec��r��m�v
"ӑ���HqE�l��uNc��rQC}�m'm;�N��t���2
|q�ه�Ǽ؎T�#[�S����Ѯr��Xf�:�L;r�s)c� q.q@�C��Q�$��-j��U�L���3�V�ʛ�#[c.��/�����=�c?8.���z1��5�����w~�ԥ��3�F�[��U��p���=�z C�g�M�g�$c����.�6�,O�w^>s�_�\-+�l���c)�ۤ��Ir�sЭYH~t! ��<ХΛ&�L����X�N�c�}$x���E
g(�(�L`��DD����I&w��9_ŬO^kJK�8���#�S�mүy�J�LC��gʤm��u�cc$�g���9�P��L�8���Z>���"ǧ�'�3�[�y�r��
��do�+�
��8/t��1�.�
��@r\�����B����D�+��r�C��5A$��?��#v�f�`�6�%�Cn39�/�(�xEf�����\,c,�E������XqBv��N��C_d�����3�|��7�<�"G��̃� R_�����vB˙䖝2�q_�������ګ3�
��Fd����u�+d��@�#�x]�d����]�e>�L�������>���k�{.^x�>�9*N	{7rg��ǥ�}��t����/��Q���&�/A�i@�(�¿��iQ$�)�$+;@`�#I�&�R��p5}�3E�Z��0``�\�9�r,�d��<�ÜX�_"+�m������a����Wd�9F��,�Q���1��q+���tK�
d\,>�$�l-I���5M��&�6�#���9�eǒ$%��<�˜�X��ۊ<~K{R�����W�=�������$M7y�E��E�_J��@c��������H��d��\����Ǡ_��sͮ\��)���_I���/��ʿ����b^����ȯ�ۜ�[[�j�J���q(���2h��o����Q,�%�\ΉQ�,�N�(�ߢ�1ɂ��J�Aǥa~:����q�)c�𿼐.��vÂ��fA��������E"�{����)���������/�������x1��}��λQ��+��Ł�4鰕��}��uZ���Ki%�7d�~�OJC��VI� ҏ'ó����ቒ�ROKf�`�o�e>�2��uDl��5=(�v,!d�⛴"Hg�P��ڎ.L���ߢ
YN,�l�7�&����};�9�鷰��(�$�|uLv��1�|S��C�8�7���X�~��'�r2H�����@�K����2�|)-{1g(q�a��;���`�ɕ��9F4�gY# b<�$&��'�H��Ȉ�&S7��2����J,��Hg:�q�c�Ľ6�$c�1��ȥ�c���%f4�gZ��GurN�ƂԾ[�-���#d'r�iI�ŘC��V�"�f��͊[ZH\�1���rlJ7FȜ�w�|��8́����?�s��ؠcɾL
�O��|����W�������eg91j~��
�ϴ8]?����
��͂l����@�R��a���6,�Ҏ��_���8|
T�6�Oov���x$x���?��qA����V�4A�o��b��J�^b�wn!Wc�*dC��HP��
&����cUo�O�k�9��_!3�뢮�Z�.��v�cy��V�o#�oڎ���9I元~5+�y|�Ez�����j���e怼�A�Up��ց�б��b8��>֮|�?���7Ձ�*��?����tYo��0�1�W�ku�@�U��/��X_�%���#��G�/�����ɷ%�@�C�X.L
;����P���i��f�� �����m���N��v�J\ͱʋS��$��ǡF�V�+��빞�L��Y��RO~a��r��u�>/.Ȋ72�÷�gw-.4[3��`o� ;���,o�%
}����`��^Zsnf����x���x��ͭ��3;��(]�
���sj\���K�%_�EЕm>�_��v[(-�|���*߭����9��p9���J��B6�5�#�3?:QS}�w�P���w�"j��Ф�=WE�g\vc9k��6���'�[�ޤY��G�!4�s~[a/(W�YW��D����d����f����w�h��/�¬�$+_�f{�
�2��om@�HY�^�g�=O�ŸG��������A^0Gv��tLz�;."�̋;K0,�vR�\Ќ��sIa�Pچ��L[/j7���ܸ,�(�q��H�A��(�(:���>�V��tk*��~�� ��t�x�v��<�:�\U�C�fvG3���̡4�I?ay�F;������
�Qn���}]�2M��L�#Ǫ��r��tҶT^�
i�Y���t���~��ꦛכ�������G�>96�=䠊{���`��_&�.
D����{
pT�0�BfM�	d�*�O�9 hP�d@e��H��o^�@��d�V_����bzΉ'�V޴����#�xBQ��O�d�3
I"SFK�OA��Ou���W�{���p2@��$;�8ɉ�V�(?j�ɺ�I-F�C�4i��Z�u����c��"�'�4	�Y6���d���a]�Ǵ�����.�BW��o��fȓ'��Lb�b씞,"�yA��4��P�-=߱%�e�.J}������B�IXK~K��e�z'�ʫj-@��YC�bw�@.n)$n�"v��C�"��颗�~��B1�ƫ��vGY����,]@d}9��_��+�e������r��L�S���|D ʹp^i���
�<0y�^!]�P[́��,���\O1��O��yR��9J���_���e�D��bس_�
O�����Z�yn��#$,�M��L��3/��2p��x��D'5�tܘ�g9���+<8�v�4f��߸,�N�S�@�d�*�@�P��'���� �.,��h2!I+M,,�&y2��2��+��rb��$¯l�,��f�r�G&��@�F$:eb�s���Z8QDs���5N�"�0&���ض�ɋ�mI��6�A�1I�d�@w/y2kE�s��"���ɖ�>��0��8/f�$�v�&�K�N�(��yW`���K�1�B_�磤_��@�'�	ԆAk�80�ʺ�c��򥮈"�V#>q���
�q�y\)Fx��:�q�pz��&-������P�����/�5(_��6~"�C�W��%������y¶UYby��b6}���.��K/��'�3cyƐ�k�bn
�@1�m���>)1��U#-_DŹ^���q��7�CŸO��/ͺR����a�.d]�=ߣ` L��؂��4�r�d�s}%>Fg$z#	�`�����<)�����X:�bPoe�ı�/Ha�ʎ[^�eyy�&_9��Hܜ�{K�s6$�J���	1_��v
�?�x�c�4䢊��_�仐�t��R?�ěZ��g�j��&~̲�&k2��|*����	�4��k6>�Q��لL�(>B�)_�h���ʓ��J��*��:z5I�N7皘'� v�J{���';#��D6i�n���_�k����h�J�?ù/�A`�L6!��/v��Q���?����.<�b���V	���$V.hf�q'��|��T0r�9�?�*Kd��&�J)��*�hH"�F��@�32�o�Q\�\_��/K��A��?�>��]��ǵ�W�/C~�P(���}�[��VY_Hrv�W3����S�]f;Ǭ;���6G�%݃\�\F�/���|R����G���<�r�%����	,Ys.�8f=�� 긼��Hd�E����#ʱ�$��Q��<{�^N��&�"�ɸ�P����c(}J;k��LT��3�?�(ʅ�o6F�O�~^���c���߬�b�X�K���@�@t�3�$W��t�'��Ň��v��]:�3Մ����h�I�C�/B�۹��SZK�y�jB��ЉT�B�	,��Hs�O�{!�4Ri�m|���O�K�i<t�#;�o7���7��O���D��	�N��E.9�t���o��t��:��_�A���ؒ�J���il��OZ�ũUD��"_�d�Q��O2�"fӁx̆�#�v
���'@�U�9�ŰL��]�w��YL|O��^ę�`�+L�G|�'�q�Դ��c�/���߶�{�7\��c�((?W:�Z�yLzG�`pdL�2�f��=����|�$�¯�y?8�W\�G	��&�t5�m
����-ΫVB1�+�HWY$���D>�E'�$c��lz•6W�=阷44m
{0]�t�$�Ǒ��6�t���M�ki7�t+�,y�7�
�jO:�K��q^�J;#y��
�[*�����}��Q�<��~�G�R��<_:ڑ,>�]e_�1�}�w=
�R76&��.������G-lC޹�v:fS��z󅸎�2wY��y*c��"��F��>�a|�C��wy����.0 qC��w4��b�C1���M�r_]�.�����aҝ&8�o�w���\jY���S������C��$0�|�#�>��Ρ��ﺲY�]u�e�gG�C�tr�������� *���@�.�Y,�U3����0�O�f`*n�Q�ȶp�mi7�@N����gY3b72U�~��vɸ�m�Ϙo��Ž��
y��#f���H��}��|�|G�e��1�ڣ��؞1i%��h�6o[�ߨη��l�Kۄ�u5OH#=ĭ9!d��cEC�_XY<����/�����.
�Xa�
���Z8�|@�J�C�L���e�/e<��eϯ��X�sׅ���W��n2n�ɶ��g9�ѣ�E+s��=a4��-
��b�ˑ������(c/*�BPƒ��@�R�I�[�1�2����i[�I~�܏�
e�Z{����r�#eq��U1�
�O�
;s]�3����\:u�]�Y��v���QE�]�5I���ݡ⺊�k���vaH�keTOW�]���u^}�|�̓_`�_M�\U>G�vh)|1�v��=�H��/<�VHZ},��
f����z4�J=>��m$��I��6��q+����J߄V[ѷ���.��:�Z��nwa��bdi��azNS�Y2/d+~:֒�b�3�4����?9'��Q��s���
��ڬ�^�!�/�yc�I��(c����O�E�0
�d�b1FZ��<�!�M���ܶ�e��r�����5�x���+����&���Q�{gy���qm�qȿ�5�ѕy�{^x��P�|�㼙��E�)���'{6H�B�{��~=�9$ۧ+cP�����d\ؑ\�'���C�MKjia�tN��<Fи��
�NMo�Z��0b��7���c��T7>�|�b�ʢ��� 6�).�>�/e?�ON\�����rc����(���H��	��I����X�vg~���	?9�Lw��G鸈����/��2�8����9Ǯeܧ�be�7Ջ�+ʱpy�#����L�J|��Ϙ}��49\
�O=�$�r������H�AQ�ͼ"�H{G���$?��^
��j���/����z�1��9O��n2������1�Wf�,o�c	��R�~t�)�ILlw��o��qE��X�>��6�j���ɱȗ�3[�IϘ�0c��tg����>r�/�Lv	�˗U��Rl����C�z�DM�H�*1���������A���OM�6:�����Ɛ��D�Y���b<D��(���E�:(ډN��YI�;�g���B�Xa�b���A�0�+�������_^�O�ױR'NCu�f�49~5��,�E�G�A���_~���q�66��T�R����t_�q[��,����?Rޅ޹0�$g⛠Q�D֕6��9��+nٟ�gƊ���'�w<��ϻ@�01��q+�!v�1�m/�r}`�s�#�J��1%��;�܆�?4�Kh1Ku&�2����D6��~S��t���u���6���Ø�ɼ1��f�">�,s�����#��#۳�j[�?V|1���R�lj�<#{�[���L��x��#��ғ�x����w���z����۳�>�w�����
���l0�^(~���Y�e���|yT.Tf)�Μ����4�F嗉��M���U0��%��~�����]\ڏ�U�!��>)��+H�|�9�
�!�k�+u���m�kG$�dTE�P،^XɅ��/��%�E��m�U�5�K~�g)y�a6 �8V@]@�1R��D$m(t�6�qE'�>Ѱ1�E�e��4��� /"�:AM] 'G�n>�S&�ڑ�]�q_Ħ�o�B����,��&ۃ�:�Wk:&<
H=z�J/�#W��7�lN����?��x��
Ř�L��y�FZ���؈�� ;�,_�Km�ڜOe�:�Kc�#5S��,~��P�?,�>�N�g8u���ͫs/����oyB�N;��O�_��ް��g_�?>��hSS)��@fr/z�'6���uW0E��L�x,����&��$�I�bG5)����Np���-�<��Ƀ�$����%��s��/�ʺ©U�8n�Ӑ]�C�z��Kqra�B�{����I ۶
mv+�n��8�z��a�&tߌ�=D��<������ĉ3�@[��?�+r?l�"��4v,r(�Kx�Ο�І\ƪҏA�7nA!X-��Ί�ⷚ�I�;	�6���u
%�e�3� �6���T;��.�ˋ<��X�\�J=C��8��~â���`���.��ߺW>��W�ڻ�?�H��O�p�T�o�B�}��z�G����������Ƿ�q$��r�!̄t��^�VI����xTڷ_^����M�����c�O�i1���wX��M��S�*e6ۄ&H2����/4W�q�Z��'t�-�%�����	}�7j���)�;��wħ�G/r�!�IwH]�܉���b};e0�H�L�\LA��Gn#�*5�zF�/ J���L��)o9�&>1o��\����ʕ-��qyc�}��'����W'��O�s5�~
Gq,6���K�;Q7V���8�@^@�z��m���X��줿�c��?��~��(�O?�����f>μ��8u�݇A�{o���ÿzv�
?�i2���G��7;f��3_��>�:�hˁ�O��ћ�2�#%�� ��!����.�@�1l���4�a!��d1��l0��VŸ�5�öUQ.j��j�Q[�}˄�2��!�m�noY�q��0�'ա�[2<:~��<��|�뢶��8�x�zj��
'Y�@I�g?!���;Z��x�<+}Y~��JbIa%&���1Q.~�o>i��
�Ȩ��S�Kq�/�As
_�Q}�-�C.���"z_�WQ"�mk�,�-��Sd�(�fjs��%�j�Mt'N�`��*�ŀ6���w�؃9��.�\����Ę��JY�lۮ\�̍����iM��8`^��8��o}z��?�X<x:\���uӆ'Ut�/�0.��y3�d���pu3o�9Ȝ�n���/�dq�K[�
��d�� ����9�[rb�����A�d�Y�_���mb��9K�����gl|������z��<i�- �m��P�0�s�1�7��/j鯹Ͱw6�d�݉����~T�z
!
=�NǏS,�IL�I�Q;��C�<�r��z��/Q�*@��2f�g���c��\F�F9)Ns�r_�]i���J=��w�Š��<h�c$�F�w$�A|�k8Ϲ��M�m�gq��i첟�-z�>�2�L'�@����2��>��UrͥkjÐy��1�9��	�9��W3��>VvL�,����3�E�cұXK��b.-��u�c��>t��ȵL��]���ʘ����_nW����E�����8�x{2/��~�?xlu���I2uwj�r 	m>^������O'�W���An�'�u!���$Y���\L��v���S���P�����m�ФE�=��R����}�q���)O��<�M�؎��?�MH�ńV��*{�Mg�3됋�jm�IW	��ji-�"������]�	��T��8岡��vGu�)����
D��2n���Xw�˾C"6Or�w��&�cc�oag�!O�q�i�~ʼC�K��V�g-�1�Ӆ4�%	'��^C��:���6"Լ%}1Nm�\��'Q��'�.K�P欂��Mϧ�z���-Z1cV�����|�9��Wf�tC��P�#��v��*��c��k����بLn�s֏���r����)���D�$�
 c�Ƭ�#��2h������\�

���ȅ�j� ��͂�_p(w��7���]R����^9���Xػa}�W�������\�˖O�4�)ٱA�7���Ծ�Ă'9%���]OȆ'%�$;ZH�Ӥ$�qG��leEPi��!Mr��<�<ѧD�b���A�a��M"H��|^.4(8@������c��J:%��6�;�F�]��q3�䐘�i��~x��o�D;�k^x0�M��"-�Z�cT�;�*�I7�W��}��=�k�Q��h���G��q��Hy����9�ˤKǵ��1-覅"�Lʓ�s�z�8��n��`"���a�s¿�#�3����$6�㐉|��#�O���!��iOd�讪�?ò�U��v{�~%$�e?�r�$k��I���� �?�-�|L��	D֬h��4.#�9�(b���	�=r^M���Nb"����l�Ѡ��M�AY|�1���;��@�oc���4��)��{ë�x�r�{S��J{�x��N�3�I䖐�)��>7�ͼ�����.�~"������s�P�16�d�S��?�W}u�$~�����<zy��ޏ>�����i�6?k5�mNO?w�wۿ��C�ٿ�ϝ����-�2['�2�E�>�9j:���}�ll߾�%�1������������G�p�ǿ�8�w�$}�}�w�;����j��5��{Oc�o�L�E4%7��l�y�t�r,��4�>�t��Xye����L'�u���Vb,y�O�ĝ>_�lCَ�'�K2�+��^�L�%хҦ#���;�s̐1�"��q+$�8�(�:�g[)��1�s����.x�=��8��L=��7y|<y�h1!���r�
�$/�	�bLq��3}��O��L2��W���e����"c*�*"�ǽZ���$-_��{z���wyy,�>	[3�9�S�|���;��K�)6G��*��a��m	������u �������"Q�H���O���@a;�*�"�ÿXN��5�9��)We�e���Ɩ�j�]��"}ypQi'�o�m�O�i�\Sz�{���˜r�g�Ӥ����B-m�c���H��bzn�~�6Iq>�x��!��6��l���O��Zw�̉%az��+���\���)^��
D$0�q�L��2!҅
ur
�M��,T6�A��+�[��H��Huf�{BLBj2�E`�1��hH�.�N4��%��,)�����]Yl���tټ���u��s���6漈�~J�4���y������hĹO��5H�����%�D�Ж@����JǙK��
�
Q�ax��yr��W���$�S_Pݶ��;�JLG��,;��щ$;��0�865���fcv�1�2�$^&�/b�O,rA��Ә���\��NZ�eۑ1Π�w8:��Fb'�v��s�cN����2AE�Т����!������)a�_c�a0[�X�������#�=]��_���Y���%>�T�K�K�]�B�m���4/���$=�3�Gb�@t`�c�d��BZ�%�
��x��_��u���0�6P�������+2��4�zJ^����7�3���Y�H9��F�ɀe�(�L�?@/��8@#�DL-�-�H�'WՔ('�Hu%6��ĂQ
2�Q;�U�v�2( �0]� �E	�$�}i"&c'��,�Nb\�Y�b�&�s������S�	)�]I2�� AG�x��CV�A��ż�	oL�:�&^�"Iz�9���AD�vK�S} r8v�rB�B�8��N�[d|��)�h0_Y��;*�NF����&mږ�M��@���V\�X$uB	���ؓq�	�o�����I|h|S�]!no���s�;]$�3f��ĢJ�v�m��K�0��x���$+�����Bl��I��3�K�m��,�‡�¼�9m�O�Z�3��ؔ�.�nH�	��1�劼:OZ���
I����X��Ƚ��O0��l/�0�$���.	
x��y#$�1Y`��W�$i� ��Ü�x�K:��SG�mt���K��~a>��mυ���A�f���n�n#��o����r1�'�(l>��&0
/�l"7$�yN��$΀ŸL)�OІ6��Q�}&L����cWDŸ3���f��#=�-"�}M���&��qq^4Y
^BN�3^�͓L�/O���'d�J[@&�91M�"�f����+�9
�0���Gdjg$��b���T�r7�����s��<�SZ���2~�d���ٙ���2�,*//R0�+���I��{kڂ�1,ͷn�<�aT��Ae2=�儴��Q���9�s���r�G��|����J՟���Ȼ�e.�����I[�΋CJK���nK?�c�5�Y�.1O1��$�5�#d;Q?f���V���'�#�;��X��Y�g{�@��^	1�3U&h��r�J��`�Tn��筿�	����&P��@���	��yB���y�%(��X��:�� '=#O���cyk
�F��y���֎�2.td #��',��Wac(�ɫl����Y�X�]�H���hT�t{]���|JBD~Q��S�H��|9i�l�,Z�Vb����gL$ͼ��mm<�~3�_���+�PH|�G��K�
x�:�8`9B�eŸԎ/̤mxnA�W���
j^�]�'��ӛ�ci�h�MQ
��G�b�%wn,?��<(�K(�Z9.�K��=��(��l��T�3�In��+�_YG1��߀y.Ot1���8Rx����Ja8��o
�ߘ�風��dȻ+0�����H��x�EkA�j�?�ұr��n����}�ÝrL�}�w��x�dw��Y�	�?�o��RGp"���
5ƴ�
-�f>A�|�6�X�2�h߬�f���,��7�HH��f1��M�����DlCω�H�
��dv"���=��T�^�Y-��8����k� >J��U����=`*_���g,F=�Bi_x��\T��L=���=QCa��0�9A�I�g�*Xam�cN'`���i�1�Ɨ&�>�<B�#F�D�YS��6�g�(�:������R&��с��v,�e�Tݤ=��X�mԞ�0͊5�#��6ɁjInܮ��X�I)�	)����t�SI�〹��X0��������c�:�~�v��m�Q��/��_�7���O1��:�"=�Oi�-�\�.��d�W�?�cc�A&|f�y��.��8Ӯ
��P�����k�/�yR,���(Я˱���2Vf;��'�I�5�}և�d�v��Y?}�3�L�}&ɦ�.�Y�1ۆbX�h�)��|0��"�o�e�2���
!�t\��C����c�#s*ɣl�Hf�M;$��X�ƺ5ә�y,�^�+�s��G��c��2o�Z���l��M��	}h�g�2�<��BX�(�T�;�l��2��~�tL�1�O�I�:p�gcEO����&x��F��|r^Y+r؆�(Y���$���s�_r�"�	����.�J\$�
4d#d;d�	"'y5�N'�=�C��6�ґ���Ij���L<(����
�a��{�_p�&�\V��u�Y���G8&A D:n�NU�1�Ohe �<�+�["dhl"���Y��4T�WOm��=���==g��sYD��*t�R.�W<(:�����~1�o�����郙IG�[�K�{$�k�6{)��x�'̼C���[���F��Mb�G�x�1�m�A�-�{���X��4��K�I��0C��}���$g�j�{�x������;6��9���	�,'yA�,[y�Z�_��̋��m�}�BſK��|��
A�]$��wI^����\L�c=X9��!i+�0>�"r�\:�B��#y4h~Kc&z�I>(�9�B��cbs��(� �b|	
y�W�N@����y1(c�a��imK�S[�I�_�5�o�3fl�5��W[{Z���?��v�c)�=����F��mJ��mz�…�OKyyeY&Xi����8�!i��.TK)�>�t,A�d:�K����S�}+�l���M���YK�6R�����<N*���h�q�	#x�!��{7�|!�Mb�[�S��Q��Д-�-d��dQ�d��<�D��$錱����2F�v�I�\\P9FS�t�Ix<���87
��~a��鹈����/��H�Dnc���l����9��z����w0�P�h.�g��DG:N��޳A�~��"��Em�'�dc��	aw�����D.� ��,��>q����2�jz�����E�9֧�cH)p�O��dr�1�:J�/|8N'J�2T�fN(t����h�U��-�`bˊ�
��U�E���ʹpܠQRA�t:@Y)��!?N��	�d�(��Ω^&em�n������q�L�v�4]��3�%Q�����
|M�2��:L��oa��+��6э�oL$��J[j���)m��ʿ����8�+yȶ$��w��_�����ӄ�b�b[!MIN�b,O:���䈅����l�@Tu�5�'�lb���H�*��8$����fK����|e2*bU�-s��Pu.K�h��2�	2���fI.ĘO踀��]ћ�C12��|9)a����H��6��s!��-����cv�t�\Vp��^^�i���!�Ӓ6�����S���9P�j(��O{�m�2�a7d�8)_ _0��OZDmw���3�؂��J)���/
��vbx�J�|"l9�T���deZ��X�P�b�N�)h0_��^��3ۅ��H��6Wh�2���LR!i5���*u�2��
>�B��I�6-�<��B�S�qkAN ��j-�Oz���E�2��8� ����L�[4�y�f�
{϶��e�h>�_JF��Q�ԉ�@�=I��u��K1�䱨������Ǒ�2�ȸ��V��eI\�,;j�*��	(唱�/Rv�=i��<�����"���c�:�>
���
�Z�:k��"�I�f=b9��P^s�K�����x�����v��Q����x���n\���N�3���P}�����G�2���`�R��Wib�<���o:�ǻY��1%���jS��q�h���W::�^����`�Jz�`,ldڊOlt��|��ڛ�CF4��"����	C֕�2�IEI���v��G�o�,򕱤�j�Hg��"���؋)?�pf�hmK�"��%њ�-4owԏ��\�71tr�e�,Z|�qN��]��ї��y\���	�����+�5��s��sG��.1�G�C��<���(��	!_�EE/�h��%ߒӊ
������Ċok1O�F]�E�W�ngq�5,�zp�@er�������o�Zs��q `�����b_����ƶ(�%ٝd�E|��-�,>�h�z�y��l0k�j }m�]0/,���<�<8��5@��!ч:"�ȯ7�UNk9L�������W�m�dYM��J��
�t��6�I��<�1��э�q��O� �KFZ���G"�]�7���?_�`J���/t)}e1��!>_��&��o�l��[}L�s�y�k����v������턳�^MPt��q1uS�ź��I>�~��J.�#���[�:�t]ꎻ���"��*���)+�J].���KM�Z�q�e^�W�����ynm��՗���g�np/��hc�<G3l�A�3I�ji��ί:�rhA���O�M;)�����.�HJ��)��`��s��k�5Џ�|ߚ	���j�.��fm���3��}����^eH�o��:�i��~t��:-�!%�:�v���A}Ya`��~@��	O�h��eh[��
q]t)�I��f�<���I�A��Wq�ƥ3G�-���|��t�G^�����v�_�/�7����h'Z��HQ�g�.&KŹW8}�&����A�d+_�1������L�΂������L;�W���U9�ı�n؈]k�Nj�8S�����H��t��
�fe��ŧ�B�ս��|&)��=�C���t�����u�y���ra>�㟩pi����0��r���9�W��I�ZY_��K,��s��?����O�sn��6=1ؘ�
�B{��]�緒�#~@[�[�zE���̶�>g>K�F��q߆�yꓺ����	'�Q:�6�m����+���{d��񌉒���>.����7v�I��s��DG�
N���t+\�[G2���y��Qň�R�7z�uA�����������׹�&���|7�q����4�������/!��n��C��o��_|J�#�~r�������,���󚓿S���OX�=ƥ;��w>�ڱ�rƕ���3�1���k8Q��-�6��(܎�fb�m�p7�m�JgRufm�/
���g�pa�틿Y��A�:'k��2��spr�N�������NzEV�)��8e��|��ͦ����z�1�	�>�{�5��bE�y��-��&��ߢ�e,x@��O�Bz�rحδ(B{E�[����z�g��x�2�g���,?���%�Z9<�!��߲M
��f)&��rU�m:�[��w���<<����^�6�Oz�>7�8
�j+~��h%U����6�c���ec~��V�׷���|��@��f�7���:�~�����L?�D�#���f�s�q�,��Õ͌�.a�X�~��U��μ���Q�ۄ�fޝ��e��K�����õ]��2�ϝ������YLw���;`�v�>��"��D8����&0Xɫ�< u���ѳj��k��/-~�tN�Z���Y�tT4�L#�y�u`�F�>*�4��@_�%�hS�Ͷ����HV��T�fM��3����|m�ܲV���=�L�c��hO�c��l\�~�s��.�6 �%>��(4)4���Al�L7��mv�Wtb@��@���X-�A3���� 6�h��ѳ����Ijx}�j�ſ@	�&f�<:(��_�H���+4�����f����i��j���8_����c����J=;��S��������R����^Jܬ>���Y�������P����sJ�6��#��9:�F:�̧y�sN�U@i�)���h�����$#%���B_�?�9��J �a�%Τ|�5��_�ƲpDI��U��.8�#�r���3Ы,�c���L}���(c���C��fB���J'�o�H�y�*Iv��s�4�t��jY慬���=�7+���դ@�*�
�*�%+>��_�.��eB<C�f���$5K����&a����:h�A�)]?�����$��R%��&�zp�6��u��񏴉_ˋ�(ޠǤ�Z�(�]�'gf�|,�G��!�a��%G܂L���Xv��ېG�����<v���d����
ul5X0����������>����{��_��PS�RP�x��6�3���B���ei�����T0�L�<��A��TDTF��]��zp�_^7qNW�N �m�8ݚ�~d�h���l�z�d��̞T�/u2Z���O3�fܖ���I�Ѧ���)O(F2KI�e�E�*1�R�h�gW�_����HNjj_&��v���=a���X6�ʃ,�"W&,%_�d;р��uI9vN�"#˽�wz���Ο{U�����Y�g<�U���n�A�O��
H�Ƌ�A�(兌�5E=[>�
O�}�m�@�F�8�c?9x���W�y���f���&�uA.�e��2�������j��9��JS
w�P�k��3��20`�|l����|���a��K�:�b}$j~�'|kUN�.��@[��N�	�W�)���d5�t`�ʫ��I]�	�Y�<���{�Gj��.����*?pA;��iB7y�ۯ���4�(�:&��NU�}�".�Lg̀�j�@�G� L�8?�x�ɽo�a�n�Ӧl�i�n�I����c�ƍe��4H6:����iI=.��r�N]���}p��{0����y��Q,�	�S��%��}�o*�a"x�F���,H�6f"�XR�8H]�&^����!^��n���/hS�?/F��l�e79̱�������?	�$R��137ᬹ�Z�۫d�	��Q~����!�x���o���L�[�o��	e��~ڃ���[�S�,GN��i��='��I�Ү����+�᫠� :]�-;)0�m4����3M�A����|F	��;��	h��*�&�3�$��4�0�<�����)����e��
�G��̕(+��ɷ+���[�c�m��Y��F��1M�M��o:9��s��5�ϳ>�(��^G=%_�]؛C��6���M�P������ض����|�
��Ʌ�)ҍO�?�.y��}
”�K}I�,S��kH�w��E~2�v�pl�_�ޤ��t_��Cq����ƭح@���y�<p(�[M�^���V�d;��m�o#��h�ʠD�m�cy�cM�iWh�^�[�S�	<�y�.W�~�����IS�A=���2|V���;vVw�4�������(�iR����(l�=�_��<�c��{��ow��G���V
�j_<K��c�h\�4o'D�<��Q���ݘ�/Z�`_��e/�-}*�ܯ�1��W�va�nG�;i2m�D�)�z�f�8�?������{Њ+�m�?�Ģc�'�����3y�x0�_ao`�2�$9�#ْ^��i���)�pc)�7��5�7v}&��[` ����f�~fdk�/e�v�-����\6ms�,���d<ukY/�����ӵ�;-ȰO�ݢ�N�)�6:c�E�\��v˾s���6-r�C���O�_�O|9O[�͡—~wwp���Xa����0���"c����.��X����o<�f�F_�24�_%��|������;m�~E>�^��o|�Ǧ�pw��/bK�"���E�z�W�2Π�%Y�O�M�s��}�o���CJ�j5�|��[��0��������_���ݑ��9*v*%�F��϶��=���ڵ���}L�-�q�q����0�kEXqV���v��<�e���^�s;�ܢ}��vr8׉�� /b�l��Փ���8O۷y{�>��h�N��4ds֕�$���6xE$d>�m��M�u�u~��湘�mq����3�u=y��$S�e��3�g<�{a�,*aq)���}�>����C�w�	��,_�	aKz�=��c�����al�=0N����s�9H�m���3�xA;�o�;�s��M���h^e�e���x�^ �G�p�`\F��t�pT�b��n��4v������L�E`C5���~�c�:��Z���x�80�a��~Z>��ĸf+>>wؽϓ��=�����Q�VQ9w��5~<+��R�'67���>�O�V����U��q��Ns�����9 ���k��7��r�bڊ>��D�����@ܶ�Z�AZJf�gU��-ѻx(�G�
�����뻡�[�M���ܲ�x_Ӿ�����U�	��������o�$㽮o}ː��!-��:��X[��~��ڞ/޴����P�H;�2�l#���x6�G�� �m���y攩��*Ë�msc<7��1��W��2���\V�=��(����l;�a,��:�w20_�(���&l?�dc�ȑ�Kc��o�e��I�6�G�-�/��!��/�!1�9������`ۧ���G�8�e�t��oT�նץ>���u~+9�h8�~-�u�>0��&���>�������,-~2j�c�kvǺF��unݏz�L>�r}W����m�#�~�?�
���2M�϶E9�m�%{���kH�t��kݽ���:�a�1�Jϙϵ�k�>�J}����9���/(k��\a`�g�W{�:C�G�(G�/F>i�G�%�E��ȿ=����W��<���$pZ�!�7�+�$��F1�	��Qo��v���W�˶p�v2"�	��|�u%��O$}����y��c
��.�I�P�'��x0ۀ��~3���� ږx�|�A26�m��縫>��|��u���Ώ̱�XgF�q��:�}�,J������S��G��-���7�U~�_�W�U~�_�������~s���_���,=�WC̠���IEND�B`�PK���\<��:OO assets/images/settings/astra.svgnu�[���<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 20C15.5229 20 20 15.5228 20 10C20 4.47715 15.5229 0 10 0C4.47716 0 0 4.47715 0 10C0 15.5228 4.47716 20 10 20ZM9.87902 4.43553C9.03231 6.22172 8.18559 8.00991 7.33888 9.79805C6.49206 11.5865 5.64519 13.3749 4.79838 15.1613H6.97578C7.6613 13.7783 8.34678 12.3932 9.03225 11.0081C9.71773 9.62302 10.4032 8.23794 11.0887 6.85487L9.87902 4.43553ZM11.0887 11.0483C11.4374 10.3225 11.7862 9.59679 12.137 8.87103C12.649 9.91933 13.1591 10.9677 13.6691 12.016C14.1793 13.0644 14.6894 14.1129 15.2015 15.1613H12.8628C12.7298 14.8509 12.5946 14.5424 12.4596 14.2339C12.3245 13.9255 12.1894 13.617 12.0563 13.3065H10.0402H9.99989L10.0402 13.2258C10.3911 12.5 10.7399 11.7742 11.0887 11.0483Z" fill="url(#paint0_linear_539_926)"/>
<defs>
<linearGradient id="paint0_linear_539_926" x1="20" y1="-5.96046e-07" x2="-1.78814e-06" y2="20" gradientUnits="userSpaceOnUse">
<stop stop-color="#B147E1"/>
<stop offset="1" stop-color="#5236DD"/>
</linearGradient>
</defs>
</svg>
PK���\B�
�J+J+$assets/images/settings/uael-icon.svgnu�[���<svg width="160" height="160" viewBox="0 0 160 160" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="160" height="160" fill="white"/>
<mask id="mask0_163_9048" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="160" height="160">
<rect width="160" height="160" fill="url(#pattern0_163_9048)"/>
</mask>
<g mask="url(#mask0_163_9048)">
<path d="M0 0H160V160H0V0Z" fill="url(#paint0_linear_163_9048)"/>
</g>
<defs>
<pattern id="pattern0_163_9048" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_163_9048" transform="scale(0.002)"/>
</pattern>
<linearGradient id="paint0_linear_163_9048" x1="80" y1="0" x2="80" y2="160" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
<image id="image0_163_9048" width="500" height="500" xlink:href="data:image/png;base64,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"/>
</defs>
</svg>
PK���\>�AU��"assets/images/settings/pplayer.pngnu�[����PNG


IHDR��
	pHYs��sRGB���gAMA���aOIDATx��MOQ��33mc!�@��	)(�d�¥�[ؚ��]����� ~$�,�&��?V�J�BŤ	���R�����ک�L�b�{�Ϝs�}/�ICICU�'(�<�@7*qf|e�'u-��@�~+�܁�E�p[fz�?1�E�B�cfG�+�z +Gт$��|���J53�9�*��ј�7�k�Ҝ@rD=�D�`�%�y]����_dx	��r��v�R���HoI�ֺ̫qDS�ޠ�AX�j��Kq̨�W��M��Ց��)D!�
WϺ���w�����0[j��Λ_�k���є6�����\%M>���wP���^;��Y��3x��R	��� ˞<ѧ�����w+�ڐJ�@2.h���	�<�0�a��m}\�į��)��n�<PvH�ӷ"��7�L���o�I�vP�Cyn�ɣδ��"7��/��UZ��{ʰ�o�%LFd1���,~mr#LN87g��.1�,�$�b��S�AnN�H�!v)�nʪ<cU_I`�4�ET�#��U���h��]�ժ��ec���⎫O���4Cr
���x�MbN�[�ق����
5��9��aؙ �IEND�B`�PK���\�Z#��1assets/images/settings/OttoKit-Symbol-Primary.svgnu�[���<svg width="81" height="20" viewBox="0 0 81 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_15325_11587)">
<mask id="mask0_15325_11587" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="21" height="20">
<path d="M14.6901 0H5.41213C2.42309 0 0 2.41078 0 5.38462V14.6154C0 17.5892 2.42309 20 5.41213 20H14.6901C17.6791 20 20.1022 17.5892 20.1022 14.6154V5.38462C20.1022 2.41078 17.6791 0 14.6901 0Z" fill="white"/>
</mask>
<g mask="url(#mask0_15325_11587)">
<path d="M14.6901 0H5.41213C2.42309 0 0 2.41078 0 5.38462V14.6154C0 17.5892 2.42309 20 5.41213 20H14.6901C17.6791 20 20.1022 17.5892 20.1022 14.6154V5.38462C20.1022 2.41078 17.6791 0 14.6901 0Z" fill="#D2F059"/>
<g filter="url(#filter0_diii_15325_11587)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.0495 14.0326C12.288 14.0326 14.1022 12.2273 14.1022 10.0004C14.1022 7.77347 12.288 5.96821 10.0495 5.96821C7.81109 5.96821 5.99684 7.77347 5.99684 10.0004C5.99684 12.2273 7.81109 14.0326 10.0495 14.0326ZM10.0495 17.116C13.4685 17.116 16.3271 14.7291 17.0338 11.5387H18.9405V8.46178H17.0338C16.3269 5.27157 13.4684 2.88477 10.0495 2.88477C6.63068 2.88477 3.7721 5.27157 3.06532 8.46178H1.1582V11.5387H3.06526C3.77193 14.7291 6.63056 17.116 10.0495 17.116Z" fill="url(#paint0_linear_15325_11587)"/>
</g>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.0388 13.425C30.787 13.425 32.2043 12.015 32.2043 10.2756C32.2043 8.5362 30.787 7.12616 29.0388 7.12616C27.2905 7.12616 25.8732 8.5362 25.8732 10.2756C25.8732 12.015 27.2905 13.425 29.0388 13.425ZM29.0388 15.8334C32.1239 15.8334 34.625 13.3451 34.625 10.2756C34.625 7.2061 32.1239 4.71777 29.0388 4.71777C25.9536 4.71777 23.4526 7.2061 23.4526 10.2756C23.4526 13.3451 25.9536 15.8334 29.0388 15.8334Z" fill="#172A39"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M35.9294 11.833C35.9294 11.8444 35.9297 11.8559 35.9297 11.8673V11.1663V11.7695C35.9297 14.0107 37.7535 15.8282 40.0051 15.8329C40.0059 15.8329 40.0069 15.8329 40.0076 15.8329C40.0097 15.8329 40.0119 15.8329 40.014 15.8329C40.0161 15.8329 40.0181 15.8329 40.0202 15.8329C40.0211 15.8329 40.0221 15.8329 40.0229 15.8329C40.8383 15.8311 41.5978 15.5916 42.235 15.1803L41.1023 13.327C40.7938 13.5409 40.4186 13.6663 40.014 13.6663C38.9612 13.6663 38.1075 12.8171 38.1075 11.7695V8.83296H41.6253V6.66632H38.1075V6.49966H38.1072V3.33301H35.929V6.66632H34.7568V8.83296H35.929L35.9294 11.833Z" fill="#172A39"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M43.3034 11.833C43.3034 11.8444 43.3034 11.8559 43.3034 11.8673V11.1663H43.3037V11.7695C43.3037 14.011 45.128 15.8286 47.3799 15.8329C47.3809 15.8329 47.3817 15.8329 47.3827 15.8329C47.3845 15.8329 47.3861 15.8329 47.388 15.8329C47.3895 15.8329 47.3914 15.8329 47.3929 15.8329C47.3939 15.8329 47.395 15.8329 47.3959 15.8329C48.2118 15.8314 48.9715 15.5917 49.6087 15.1803L48.4764 13.327C48.1677 13.5409 47.7926 13.6663 47.388 13.6663C46.3349 13.6663 45.4813 12.8171 45.4813 11.7695V8.83298H48.9989V6.66632H45.4813V6.49967V3.33301H43.3027V6.66632H42.1309V8.83298H43.3027L43.3034 11.833Z" fill="#172A39"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M55.0367 13.425C56.7852 13.425 58.2022 12.015 58.2022 10.2756C58.2022 8.5362 56.7852 7.12616 55.0367 7.12616C53.2884 7.12616 51.8714 8.5362 51.8714 10.2756C51.8714 12.015 53.2884 13.425 55.0367 13.425ZM55.0367 15.8334C58.1218 15.8334 60.6229 13.3451 60.6229 10.2756C60.6229 7.2061 58.1218 4.71777 55.0367 4.71777C51.9516 4.71777 49.4507 7.2061 49.4507 10.2756C49.4507 13.3451 51.9516 15.8334 55.0367 15.8334Z" fill="#172A39"/>
<path d="M61.4009 15.8217V3.34668H63.6674V10.2585C64.2031 10.1461 64.7121 9.92694 65.1944 9.60102C65.6767 9.26386 66.0946 8.83115 66.4482 8.30293C66.8017 7.77471 66.9624 7.36555 67.1016 6.67999H69.5129C69.3412 7.39927 69.1486 7.87024 68.7629 8.48839C68.3879 9.10652 67.9484 9.64596 67.4447 10.1067C66.941 10.5675 66.4159 10.9103 65.8696 11.1351C66.2875 11.2587 66.7053 11.4722 67.1234 11.7757C67.5412 12.0679 67.9322 12.4275 68.2965 12.8546C68.661 13.2704 68.9717 13.7312 69.2289 14.237C69.4861 14.7427 69.6576 15.2709 69.7434 15.8217H67.3322C67.2252 15.3046 67.0483 14.8383 66.8017 14.4224C66.5552 13.9953 66.2661 13.6244 65.9336 13.3098C65.6123 12.9838 65.2533 12.7197 64.8568 12.5174C64.471 12.3151 64.0746 12.1915 63.6674 12.1466V15.8217H61.4009Z" fill="#172A39"/>
<path d="M70.3965 3.33301H72.7415V3.49967C72.7415 4.78833 71.6916 5.83298 70.3965 5.83298V3.33301Z" fill="#172A39"/>
<path d="M72.7418 6.66699H70.3965V15.8336H72.7418V6.66699Z" fill="#172A39"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M74.5632 11.833C74.5632 11.8444 74.5632 11.8559 74.5632 11.8673V11.1663V11.7695C74.5632 14.0107 76.3872 15.8282 78.6385 15.8329C78.6395 15.8329 78.6404 15.8329 78.6411 15.8329C78.6432 15.8329 78.6453 15.8329 78.6475 15.8329C78.6496 15.8329 78.6516 15.8329 78.6537 15.8329C78.6547 15.8329 78.6555 15.8329 78.6564 15.8329C79.472 15.8311 80.2314 15.5916 80.8683 15.1803L79.7358 13.327C79.4273 13.5409 79.0521 13.6663 78.6475 13.6663C77.5946 13.6663 76.741 12.8171 76.741 11.7695V8.83296H80.2586V6.66632H76.741V6.49966H76.7407V3.33301H74.5625V6.66632H73.3906V8.83296H74.5625L74.5632 11.833Z" fill="#172A39"/>
</g>
<defs>
<filter id="filter0_diii_15325_11587" x="-2.56382" y="2.88477" width="25.2263" height="29.1195" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="3.72202"/>
<feGaussianBlur stdDeviation="1.86101"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_15325_11587"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_15325_11587" result="shape"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="14.8881"/>
<feGaussianBlur stdDeviation="11.1661"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_15325_11587"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dx="-3.34982" dy="11.1661"/>
<feGaussianBlur stdDeviation="6.51353"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
<feBlend mode="normal" in2="effect2_innerShadow_15325_11587" result="effect3_innerShadow_15325_11587"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="3.72202"/>
<feGaussianBlur stdDeviation="3.72202"/>
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"/>
<feBlend mode="normal" in2="effect3_innerShadow_15325_11587" result="effect4_innerShadow_15325_11587"/>
</filter>
<linearGradient id="paint0_linear_15325_11587" x1="10.0494" y1="17.116" x2="10.0494" y2="2.88477" gradientUnits="userSpaceOnUse">
<stop stop-color="#072F50" stop-opacity="0.95"/>
<stop offset="1" stop-color="#172A39" stop-opacity="0.75"/>
</linearGradient>
<clipPath id="clip0_15325_11587">
<rect width="81" height="20" fill="white"/>
</clipPath>
</defs>
</svg>
PK���\�^~R��#assets/images/settings/tracking.svgnu�[���<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.334 24.3332H21.0007C21.4427 24.3332 21.8666 24.1576 22.1792 23.845C22.4917 23.5325 22.6673 23.1085 22.6673 22.6665V12.2498L18.084 7.6665H11.0007C10.5586 7.6665 10.1347 7.8421 9.82214 8.15466C9.50958 8.46722 9.33398 8.89114 9.33398 9.33317V11.8332" stroke="#6B7280" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.666 7.6665V12.6665H22.666" stroke="#6B7280" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.36734 15.7583C8.86985 16.1963 8.4671 16.7314 8.18377 17.3307C7.90044 17.9299 7.74252 18.5807 7.71969 19.2432C7.69685 19.9057 7.80959 20.5658 8.05098 21.1831C8.29237 21.8005 8.65734 22.362 9.12348 22.8333C9.58963 23.3045 10.1471 23.6756 10.7618 23.9237C11.3765 24.1718 12.0353 24.2918 12.698 24.2762C13.3607 24.2606 14.0132 24.1097 14.6155 23.833C15.2178 23.5562 15.7572 23.1593 16.2007 22.6666" stroke="#6B7280" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5243 19.3334C17.5243 18.0449 17.0125 16.8092 16.1014 15.8981C15.1903 14.987 13.9545 14.4751 12.666 14.4751V19.3334H17.5243Z" stroke="#6B7280" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK���\��n��%assets/images/settings/logo-white.svgnu�[���<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="30" height="30" rx="15" fill="url(#paint0_linear_14962_4990)"/>
<path d="M14.7039 17.1973C14.516 17.8496 14.2356 18.4261 13.8501 18.9208C13.4748 19.4094 12.9843 19.7983 12.3965 20.0791C11.8033 20.3581 11.1056 20.4978 10.289 20.4978C9.44418 20.4978 8.72787 20.3473 8.13045 20.0498C7.53542 19.7583 7.05508 19.3604 6.67561 18.8622C6.30875 18.3676 6.03316 17.7923 5.86204 17.1364C5.68611 16.4763 5.60205 15.7911 5.60205 15.0724V9.5H8.04218V15.073C8.04218 15.4965 8.08181 15.898 8.15927 16.2737C8.23912 16.6579 8.36341 16.9924 8.54714 17.2911C8.72787 17.5874 8.95243 17.8246 9.24123 17.9972C9.51983 18.171 9.86868 18.2589 10.2884 18.2589C10.7081 18.2589 11.0545 18.1716 11.3433 17.9918C11.6321 17.812 11.8699 17.5754 12.041 17.2815C12.2217 16.9852 12.349 16.6423 12.4247 16.2534C12.4979 15.8717 12.537 15.4822 12.537 15.0748V9.50657H14.9771V15.0748H14.9783C14.9777 15.8371 14.8852 16.5414 14.7039 17.1973Z" fill="white"/>
<path d="M24.3981 18.2222H17.0068V20.5H24.3981V18.2222Z" fill="white"/>
<path d="M24.3981 13.8614H17.0068V16.1392H24.3981V13.8614Z" fill="white"/>
<path d="M24.3981 9.50293H17.0068V11.7808H24.3981V9.50293Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_14962_4990" x1="15" y1="0" x2="15" y2="30" gradientUnits="userSpaceOnUse">
<stop stop-color="#681DDD"/>
<stop offset="1" stop-color="#3A1B95"/>
</linearGradient>
</defs>
</svg>
PK���\<�	=��.assets/images/header-footer-elementor-icon.svgnu�[���<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 width="256px" height="256px" viewBox="0 0 256 256" enable-background="new 0 0 256 256" xml:space="preserve">
<title>Header, Footer &amp; Blocks for Elementor</title>
<g>
	
		<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="624.0195" y1="319" x2="815.9805" y2="319" gradientTransform="matrix(1 0 0 1 -592 -191)">
		<stop  offset="0" style="stop-color:#1488CC"/>
		<stop  offset="1" style="stop-color:#2B32B2"/>
	</linearGradient>
	<path fill="url(#SVGID_1_)" d="M206.656,44.953c3.242,0,5.871,2.628,5.871,5.87v154.354c0,3.243-2.629,5.871-5.871,5.871H49.34
		c-3.241,0-5.868-2.628-5.868-5.871V50.823c0-3.242,2.627-5.87,5.868-5.87H206.656 M206.656,33.5H49.34
		c-9.552,0-17.321,7.771-17.321,17.323v154.354c0,9.554,7.771,17.323,17.321,17.323h157.316c9.553,0,17.324-7.771,17.324-17.323
		V50.823C223.98,41.271,216.209,33.5,206.656,33.5L206.656,33.5z"/>
</g>
<g>
	
		<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="651.7793" y1="376.8877" x2="788.2207" y2="376.8877" gradientTransform="matrix(1 0 0 1 -592 -191)">
		<stop  offset="0" style="stop-color:#1488CC"/>
		<stop  offset="1" style="stop-color:#2B32B2"/>
	</linearGradient>
	<path fill="url(#SVGID_2_)" d="M196.221,193.779c0,3.648-2.959,6.607-6.605,6.607H66.386c-3.648,0-6.607-2.959-6.607-6.607v-15.784
		c0-3.647,2.959-6.606,6.607-6.606h123.229c3.646,0,6.605,2.959,6.605,6.606V193.779z"/>
</g>
<g>
	
		<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="651.7793" y1="263.0508" x2="788.2207" y2="263.0508" gradientTransform="matrix(1 0 0 1 -592 -191)">
		<stop  offset="0" style="stop-color:#1488CC"/>
		<stop  offset="1" style="stop-color:#2B32B2"/>
	</linearGradient>
	<path fill="url(#SVGID_3_)" d="M196.221,79.943c0,3.649-2.959,6.607-6.605,6.607H66.386c-3.648,0-6.607-2.958-6.607-6.607V64.159
		c0-3.647,2.959-6.607,6.607-6.607h123.229c3.646,0,6.605,2.958,6.605,6.607V79.943z"/>
</g>
</svg>
PK���\�R	Hp�p�assets/fonts/hfe.eotnu�[���p�ܒ�LP;hfeRegularVersion 1.0hfe�0OS/2_�`cmapV��Tgasppglyf@�\dx��head.��<6hhea'n�t$hmtx���loca������maxpRp�D named�I�dVpost�� ��������3	@�B���@�@ 8
 �B���� ������������79���79���79����%F��:367>767<5&'.'.!"1! &/&546545>71>32'&7>7>7>7>54&'.'.546312654&'.'.33267>5<'./#"32'.67467>7>56&'.'1.'.'&67>54&'.'1.'1&"32676&/#"�	
 hh�hh(J���|�B���@���c��
	

	)	�
5s{-�Ea�		$		
	�-y�&	�p8B
����L%jj�jj	8�a
GC<=[G	

	


		
	
"	c	

	�
(
	

		c#
��V�Xk~�#0&'.'&6?27>76&'.#&11"'.'&#>716&'&6?7>'.'.#"&'&676#"&'&6761#"&'&6�s0D' <�@6,$49A

*!"P""&Jp	I"&(4	�f�%+	"3CE=&C(% 4
�7U-!>y/'+B	M&$;"�#�A$	1|����>d�130631>764=332671>='.'0"#"1#5/.1232$367>76454&'#.!"#"#"!7>7<54&'1/&#��
	
�	��

 vv
kl	~��pKL]��e�	
`A|+
)@B6%��2BDD	�%�
	

	����8Mj���5:113)7>71>5/.'#.+'.'.#"#3&"#*767>76101"*#"#!'.546?!31267>54&'1.'.167>5?2654&'.'#.#"7>32+21+31#/.5<7>731>327>7>#"&/&'.74671>7"'.'1.5467>7>#53�%%G��	
	
�'�

O8�=@	<1
R*=C%&gRRt�S]�!!
8#!8	$�	
-3
-,�#
		"'4
	�
"*	

!+�		

�33EKL�0��

0��	~�)�r�"!P !?+�0�dY4��1O%

'"EO	A-


J+0+60 
G#7+60"E980						3����9j�����37>7>?267>7>'5'./%"#'.'.'"&'.'1'7>76362209267>54&'.#"1327>'4&'.327>5.'.!7>54&'.#"!7>54&'.#"�,
E= #"#
S;#			&��u_

>E.-$;<	
\[�[\�

e	
g
	��9��T1+m[=7'��D

 "!";��%	8
0��
	
.-$	�	
l	
		
	
�


�

	
����-Pl�33267>7>7>54&'.'.'*#*31#"&'.'.5467>3:17>58514'.'&#"&'.'5&47>71>`*&'@
%9J*A�qQ	0O $	fB3�'<y&B
J41��>
<YWG:�wG58Z'}<5C9'&*9/6-*	'�0!!(K�7'("D)"@`;%;$'5R	
R9HsG5 "<3!_<*%$5
>R1%
1
(
#
��c�i��3533267>?676&'&'.'#'7>7>54&'3.'&1.'./5?>540514&'1.#*5#"&'&'.'&'.546767>767>36?3267>54&'1.#"&5.'*#*#1�


&0+,IF,-4,5a)*B)		ALMM�3X#&+ X/%&'#$8		8"#'B4
SE:4E	9:'&./
610NI,478l22(	
9�.%(i<3]&':
8##('##8
�	
	
	����I���7>71>5.'.'"17>?27>'&'.'&'.'1.%1#*#1.'.'.167>7>7>36'4'.'&'.#"&54610'#?41�	
� #
c	$6 		D

0
%
��	I
	���S
��AkW<b1	"		,,g++Y<<X




 	--k-.	�O:&)���Pez���20#13267>?67>'.'&'&'.'&'.'#/#"&147>762%7>54&'1.#*333:7>7<54&'1.;7>5.'1/"7267>54&'.#'�	K?'e#

#*�"		
*"\	�(I,RA&7"�c
!P,!	m�(s�	�s)RF33F		O55;��	
ey\&G


�UP(<65Q�� ))b()L5b
	&	

�
�
	
	
����Pi|�'2&/&10&'.1"7>?3>?327>767>?'.'.#"#16"5<5457>10&/46#"&/7>7>12,:%\s0,  M!!

'#>]t0E  M!!
	C" VD��\8']^�W$6B"1G-&	'A��/'
'	 ?;^���
"Q56=',"
7��=66Q
*�U���,
!P65=����+^r����23!7>747<5&5&'.'&'.#"+1!'.'1'7>762;#"&'.'1&'<5432%27>'.27>'.27>'.3!7>54&'.#"�/
T�2)54~561~jHDi%5);7��
	��	
\>��q[L

C/�n	
	
	
{	0*md47/t��T		/87�7656~54l6		&		��
		W	
5gr	DC//
	
�
	�
	

	
����&Idz�%!7>76454&'./%"!'.'1'57>763:323!85326'.'.#"3!7>54&'.#"&7>1y.
i�(	&�~��
	�hEENw	�t
'(	�	�4��A�	j.,:D 

	/52H	&;A^		
		�
@$C#)

			����L����!267>757'&"#%'.'.5467>7>3263>50490414&'1'#"567>327>'./7>'."'.'*#"5267>7>54&'.'.'#/"1"&'.'&1"67>763622#"&'.'.'&67>7>�*	@�{*
			P��
	j}vp	�]A
	



	




	��&8
4#
!KT4,
&
xG4�!0!!6,
 $"!P""�;&]
"WL$)$	
=(Z�G
&�
�#
	|��Z
			�	5&(SY!
$3
'$c\$*89 /	�
&� 4

	"����&J`���7!7>7>54&'.'5'%"1!'.'1'57>7127:323!!7>54&'.#"23!7>7>54&'.'1'!"1!'.'1'57>712326323!7>54&'.#"�/
T�2&	&��uk	
	��	

R66=%	��	�9��H_/
T�2&	&��uk	
	��	

R66=%	��	�9��H7/%,5	%!=8%	;2I		
		�	U

��/%,5	$
!=8&	;	3H
		�
T
	
		��&�#Gk123:363267>'.'&#&""123:723>7>'.'&#&""12326323>7>'.'"'*##�	923M
WW�WV	923M
WW�WV	923M
WW�WV
�

�


����+?O[s���3267>7>5&'.'&'&"!5467>767:3#"&'.'1.5!%1!';7>54&'.#";7>54&'.#*;7>54&'.#*;7>54&'.#&� }��])
	(cc�cct�C
^_�__�Κp,
^_
	�%�		;QA/"		;QA/"		;QA/"		;QA/"W
]�}(
)[�I 8!


�`��
F�����
	6���

{
	{
	{
	����(Ps���
-3>7>7>'4&'.'#.'"!7267>764='.'1.'"##"&'.'1'57>76232!1#"&'.'1'7>7623223267>7>'5'.'#.#"##"&'.'5'7>726323267>7>54&'.'1.#*1#"&'.'5'57>72632�/
::%		%90$�/
9;(	&:/%��97	
,3�	
	87	
-3��/
::)	%90$�97	
,3/
9;&	&:/%�	
	87	
-3�/$,5	$!=8%	/Aas/
	/QT�%	:2I		
	�	
.o�		
		8	
�x.Aar0	

/QS�&	;	-p�
	8
i/%,5	
$
!=8&	;	3H
	�	����(Qt���/7267>7>'4&'.'#.'"!7267>7>54&'.'1.'"##"&'.'1'57>76232!1#"&'.'1'57>7623223267>7>'4&'.'#.#"!23267>7>54&'.'1.#"##"&'.'1'57>72632!1#"&'.'1'57>72632�/
::%		%90$�/
9;&	&:/%��97	
,3�	
	87	
-3��/
::%		%90$�/
9;&	&:/%��97	
,3�	
	87	
-37/%,5	$!=8%	/%,5	$!=8%	;2I		
		�	
2I		
		�	
�x.%,5	$
!=8&	.%,5	$
!=8&	;	3H
		�
	3H
		�
	�����������
!:7>7>5.'&"3267>7>7>7>7>54&'1.'.'.'.'.#"#1+5332671>'.'&'*"?>7>;#531'.'1'7>?#533#53367>7>7>54&'.'.'.#"1"&'.'&472633#546526;�'
&
3��(				�	
		�%dc�cc��"5T㫫�	
	
�7��㫫�	

	

�zN'+=+g�2#TBE����&	
	
�	
	
	
	�

$�d�	dd�er		
	�]�]]��


	




�e�eed*;e����&Lg��! 67>7>54&'.'.#"#*"#"#!'.'5'467>76726289!7>514&'1'#*09!7>514&'1'#&09!7>71.'1/"#�"5
$
2?
		
=�=87T\

����	
^]�^^��	��W~	g�Ij	�5NL3 ����$

E��E
:\[�[\
+�T
�

�	


�	
��z� B\l���7>7>'.'.#"3.'&'.&'&67>'7>764'.'.#"&7>76#"&'.50637>736211!7>54&'.*!7>50654&'#'#"�+&'=	
M?(b-4V?7 L*B/	&)*T)*&	%$?#S,:.
H*/.."
	
=0,
"9�i�C��ڊ�n	�{;-8%%+:Fl

?."L)Cp%:
N&/		E�02,
	(*+"$<@0�
�


		g	
����9n����37>7>?267>764='.'5'%"1#'.'.'"&'.'1'7>7127:323!37>76&'.#"3317>76&'.#"1&'.54671>31'.51467>321�/ES
"!""R<(	&��uk	
	>E..E<	

R66=%	�_!	$!	

'4!� 	$"		'4	"
�

�	7/^��D	
"!!"	0w��%	;C��
	
..
	�	�!#@		Z.!#@		Z.;
&
	��������1#"&'.'.'.#&27>?6?5733263>7>54&'.'#.#&27>7>54&'./.'"54&5.#"3#"&'.'1.7>7>3#"&'.'1.5467>7>3#"&'.'5.5467>7263�"	
*0 "	
	p	-	D	
D.#"
	

)",EE	,	p	"
	

)",E	B-&	

/�
-' 0�-&	
!/6��#W&
�z6HH 	
!$
%a'!#%D,
�7


�
7

		�
7

	

����)_����%!7>='&!32676&'&'&"1316?32654&/7>54&#"'.'1&"17267>7>50414&'1.'.'"154603:27 67>54&/%"32323%7>7>5./! x	?Q
#���DPP�PPh
	





��	+"-.5J��		
cII`#b�|�cIJa��y��}xx�t�H0s�$	


	

		
	

�A'3	
[

"
	��

	j		
��a�e|��17267>?46167>763267>7>765<'&'.'.#"#15467>767>76?6&'.5467>7>73&'.'.5467>;�=Ii3F:

$C#
==�=>� 
	
%$(# 
#		+
�q	#"O##%	'	 /6�8		+	8@6	!Fx�	


"�Ge
!1Q% 
HI�FG,2;/=&P/9.�(

	
1]*


 2����q���3267>7>54&'&6323267>716&'.'.#/.5146?3267>7>'.'1'%'.'.#"#*10&'.546321#"&'#.54671>72%'.5467562�	"*
	-#

	FF%
#	$G��*��+1 @��$�%>�Gf
g�k��'�9	
		!
	
gF�+/)*
$	$%#	*_A�'�J3}I33J�+

	

����Ru���7>7>'.#0"#3#04=7>?7>='.'.'.#*#1#"'.'&507>767>3121"'.'&/509?67>54&'1./7>'4&'.'.#"3'.'1&67>32�
21t10..m//C
	o^*
	
,tt'�S6	&&X%$*+f*+('a*+G0��))c))P7f-;P',	:
+"

1H&��)
D(

L5�F:		?.=T HI�3$8@=+�R�5L>��2"Q
F/0		,
=

	"-	��f�Ii}�10+7>307>7>7546=#"&7>5&'.'&'.#*#31#"'.'&167>767>#"'.'&'.'461"457%�
00q./

_>��KU

01t11**b((+*f++*+f**''_))	��))c)*��))`((
1F�q1	<'_b/7
VI�G;=@@;��S�5L>$^M3U�<L6��y1M����Jag~��1#3367>?>7>7645'.'1.+'4&'.&'.'&!!!%654&'.#"3#"&'1.7>3210"+7>1067>?25���5

Tc���=a]�	B(

*N���a��#
+l

*


	�U:�%
2�'5
T??U��	6%&6��O	6&
��nv1G


:&[!"n��e���&
(/;

<	�<P /	7$ZO8
)����8�13323267>?'.'1.'#'.'.'1.'"#30232671757!!533267>764'.'.'&"+!���`�<&e�8�kq��
��t�i"$
	tQ�jC5��Y+	10J5m6Q'>
XW���i"$
	�7����8��6767>7>?>76&'.'1.'#.#"'.'&'.'"1"&'.#"#"&'&47>767>761##"&'3.'.'.706767>767>12326?�@n3'	M9$\.122`.-)4&*3�J1
8-))IG//6

V>N
 ('\325pD\	-yE	
-R#$C$$G
	

,}%"7"*%,H�0/4!M+);a3":2A	:,#"V+?/F008
	Z:C6?+V"-""-
	��GY%0>D%	
  C	


-����,Zu�2767>767>54&'&'.'&'.'1'&'.'&'.5467>7>7>367>76&'.'.'1&67>�Dz466.j<@721T""	O0059=/T$

*7�B*'(CU6;#
<K

<)-
16<2
71*�*&;55;"(8&%.
.)(?
;() 2 %2TT

%&&6	*6j9		?����G����3267>?767>76?>5<54&'&'.'&'.1'&'&#7>7>76&'.'54&5467>?>7>013831267>132671>7>7>7>764'.'.530292654&35320312654&3127>54&'1.#"3�410S"!

	"


2	5C=76Y! 

S228B8Q�,6.&/.e341(@"
E,G"")

"
	
+"�{{		88&&..22c10*
	< 
J1195 >5--F	9QE@#F|.&$"
!M*)M"/I�
	
,�

����+Rk��!7>7>767<5&'.'.'"'*##"&'.'.'.5467>7>32123267>54&/#";7>50414&/!2:363>/#")D
E1)=6 LK�KL�-
.��<


	&?ĝ\�*	�U�*�W~-���RJ+,e++�c-_, 
��1D
6%
LL�LL4;$9̪M	1

		

;ѯI+
�	
	�
		�'
����+Jl89897>?'.'.#"3%17>?'.'.#"#117>?'.'.#"3e

8&^^&81Fts;<H	K]]K1Ftt:<E	.0\\0.
&F.qq.G	x9']^&:/Fts;:

L]^K
/Fts;:
00\]0/F.qq.E��v�,f����"654&'.'./<54671>54&'.%132671>7>75>'.'.'.#"#172676&'.5<51>7>54&'.#"1!3367>54&'.'.#"117>75>54&'.'.#*#1'"&74632�,8	'


1+		

0*
	+'
�i
		!		 	�,
	�.zAC4X)-7Dw.	
		)!L(Cu-5E&C7c*
!u ,
4
8
="	1
C&4
	 Q-(G!f
	


<

����Cu�����
#03267>?>7>7>54&'.'./.'&"#'.'.#"3"'.'.#"15<7>7>3227>504514&'.'"&'.'1.=7>7>;%1#3&76227>7>10#"&'.'1'767>76128132671>'.#*#138132671>'.#*#1327>76&��
& !$	7��7	$ &&�c/ ,.P3 P
F��Uk
'� 	

�

�
�*#9X��G
@'c		{	|�	 nH+	*
	

	
	"]N&%
;
~&
'A+Dy>@
-
��
	So��oS	
-
�!/

	7 �
"

"
)
	����'Qe��7267>7>54&'./&'*##/.'.5467>71>716362232670454&'1.57>7#>54&'.'.#"&#3.'.5467>76232#<Im	M3<�>FbmI
99�99	m:VG29��5I	8 55|55

�E\
A+<
'/		(H#B 46$	
';@'
	7
cHM��25O
_BC~{FHc
8I:
1�`[4QN5
DoT`3W	
>kG*A
T2(.
;3 
($9
4&
'8��]�"Eiz��167>7>'.'.&'.5467>7>7>32#33267>7>54&'.'.'.'1.7>3267>7>54&'./.'*#*#3'.'.5467>7>321�'?	/%&,(@4#?=!
1/M				�'6		

	 /
0'/
5+7!�*2+
*87&1K:'
&(=2%#J&$<
	;"E7/

@7&(
2 
 0	:
(G
!!#	�: .G
?*
	'9=6^
!
����m1'.'&"1#&'.'&'&/.'.'1&0&/#"0326?0'.3017>7>?07>7>527>761032631>7>3067>=654&'./54610367>514&'./2326'.'.1067>7>5894&'&'.'46?32676&'.'.'&67>76&'&5"67>'.#"170&=7>764'.'1."54&'.� 
+59	
$>

$1,FM .sG3
	$ %':3
	  1:		;% 
2HO +.!NF,0"2"&	2$


*$#4!	�� 
	,5[@
 +$	
-	B

,*!5&[3!		*=3G !0[&5!*,



"'


-	.
	!
"!% (	5&Z4!!J7	��R�g}��100093>7>7>'./7>7>51.'1./.1067>7>'.'.'&'.'"7>76323232631267>320'.1>?7267>36#"'.'&'06?�34z33
*'%;(%%(eE|,=kDd4==(((*K]Ed
��N2w�IO!4))b**O7�*(w('_))�7M#;C-*r)*c))))c)*!9i8E	!	
4$@7#4" 



-4'8�L)>E$)9,�	C1E*!
#�A33 6
��^�)O����� ?3267>7>7>&'.'.#*1#%'.'5'7>73>!5&'.#"13267>71>7>'.'"&#1"&76367>'.'.'.#"1167>5.'.;7>76&/#"##"&546'2764'.7267>54&'.#"##"&'&6767:7>7<54&51./!�0
	

J��J
	
)P�k�	

:���l��
#	

	
"	



	�

)
		�	Rol,Bf		6v	pS[4<c
�{.
	���&�q��T

UG"k
*	=

�}kKJ]		2			-!		
	��
	


	


	t	
				
�
����
!Ef����27>=?#%32671>=#767>?>'.'.'.'.'.'.5467>73621"7>7>75>54&'./2'.'5&47>7>3211?#54&'.!1#5.'.c		��e�	��9]):P+ &%O))(Ak#	 *g@S /& *%B%	�&A G(

	( 
G'0/%	)�_��	����f7I9fIH9
52e�' I"V
	L5 0+5
B
=)C
*3&
&,**
%	

#4)&k
	%'(��Pf9I<0IhM����Zfr53:71>?2767>767>54&'./7>76454&'.#"'.'.#"7'7>?0'7>?0�??�>>+-VR78RW-,>?�>>+-VR7@PW-,WG����*S)+�H����*S)+a>>�?>,-WR87RV-+>>�??,-WR8

?PV-+�H����*S(*�H����*S)*����Jc#&/.'.#131267>123:7>'.'./7>'.+&'.'&#&6;U*= 6;"D[N55KO77P
%e6M4$mf73aCBbqX�4./F4E�2,,B!7�P#d2F(GL)jGHg^AB_'y?ZE1�'}UU|�h'	�pC;;YED;;Z����w�*Q��1389267>5<14&'3.'#.#"3'.'.'3.'5.5467>761"1332671>?26764'.#/.'.#*17>7>7>7362'265.'./.D3N!G(BkD(			I
/


9&
1
R7&	7	
7'

'7	�a)%%=


8 >($
	

W5<A
@-'+JP>7!-;*-6

#


&5	�&7
7.7		7.��3"!'


+
!
(
4/A	����Kj}������70#"3;7>7173267>75>54&'.'./.'&'*##&'./5&67>762;'"&'.'5/57>3%+546526213029267>7>'.'.5326716&3326716&732676&'*#"5�	&#
	
%(
!b��

!	&
(
#MM�MM�
			�@�`�	��
	�
	
�	
,6(;
6.O�!99!�	

{	
|	�	
m_)	
		%]P$
)		;	��	�w,Ŗon	��k^	�>X	Ge	
 ({s��#	#		
����8Tt�3:327>7>747<5&5.'.'5.'"'*##!"#*#"5467>7636222#"&'.'.5'!2:323265814&'1.�
#	XX�XX	#

UU�UV	 5��F=>]OP�NOL	[��[	RF>>\��
�.&
76�77	$&
65|65

9E-./	�A!!'	*Glm
����Q{��#:'3263>7>7>7>7>?5#'.'.#"11"+7>54&'.#"10"&'.'.'.'.514632:32#32012675>='.3138126?>='.=\~# 
!3f:M$,!"
	
~-	
 �c�&	�  +Rf9	
 '��>66Q�j

�
�8

Gsqj)`#($#jDnp-V
8Z%7?.M4�iBCghC�;YO;;P
O;;P
	����#1>{�����5)7>?'./!&&'063:3#"&/3:32671>7>232671>?1"&'./7>?3267>/#&3;7>54&'1.#"32676&'.#"389011;7>5<'14&/!12;7>5<51./#"�		F=&'���v--a;**<�d
2f)<��"+2Z
���SX%6�	-'
;&�TW�&�u8�--
,*�
TW�	���	0,Z^Cf	

����G	'�&	8"GJ
&�
%C	��		zC(s
 	%
u		

�	


��o�.]�75327>76?<5/&'.'&'"2'.'/<5<5?67>763217267>71>54&5.#"#!5&67>7>?267>58514&'.#*dx}3Wkh(56a#"#"a66(hn#34`$#>*�,,W!!X%i&[[ek,IY[%.-R6%�&!sr�C		�r
�w:$�GiWAI0?�9"D"i>88>g+�9�A7!=2&&f45f4=448='4g66h6/�I,3

	)!
!-&
	����1W|���3267>?>54&'.'5.#"#"#"##"&'.'1.5467>762361:32671>764'.#"#3&54623>7>54&'.#*1;7>54&/"#�!
-a��a-	-`�@:9Xy		Q��Q
T��Q�	

	
			$
5
�Y�00�Z�	\_��Yb_!Q;:L�_,		-a��a-C	Q��Q	
Q��Q	h
	
	

	%B�

�



����?�232"13267>?>54&'.'5.'"#0"93127>7>7>54&'1.'.'.x:%A	FA"<(B#-!P(<�1!QޗH		H��Q!1D.9669.C_2	Q��R		-a��a'	�	2!Q
Q!2C-:88:-B����7z�5326767>767>54&'.'.'#.#*#353##"&'.'./.'5.7>7>7>73>25767>76&'.#"1"##"&'3.'.5467>7>32'3832654&'1.'.�PHHr''
@()/1a88a15,+B2#3�I
X3[&&
'&
%
K)$""$+J 
+	-#
&&Z2 
Z0 
##Q,+'	$


	
&D�dDCN)*711T"!%&]66;8a1(B /<E	*
%
K)$""$+J &
'&%[3D<i+
%
*	�	5!*)
		
22


 

��u� Ab23:323 67>54&'.!"#"#"#23:323 67>54&'.!"#"#"#23:323 67>54&'.!"#"#"#�
`??GHI��G@@`
`??GHI��G@@`
`??GHI��G@@`�
	
�
	
�
	
��u�hr�302310232671>7>7>73>;3#1232323267>75>54&'&'.'&'.#&#5<10302926?3127>7364'./533:12671>54&'.#"#�!

	.t�]uO��bU99@�_-	&&[&'7�Mu�S�1"��	
	?
	a	

>o8R�!9(GPF	t_��B
-W��P''[&&�SS"11"�+	�		�
	����%+F\q�#)7>?'.'#'%"#"#"!!%32727>54&'&#&"%1!7>54&/#*37>54&/"!7>71>54&'.'1'#"#4
|R��7bTT|#$���x��'(]''(']'(d

(�<X

�o.D

l�Jl�B��E
�
�����&�%%��%


�



����"D23233!5!5!5"#*"#'33267>'.'1."�
lSSs���R�LcQRt! Y�{�A


A�j�p
**d**H�Hj
F����Fj���	3267>5>7>7>32127>71>5.'.'5.#"#"#"#3267#67>76764'.'.'.'.5467>7>32'123267#>764'.#81"&54671623267>?>74&'.'1&"11#"&'.'1.'4&'.�!

R��R	-`�@:9X->n2 *c86""!?1wA15*J& $$K'&'(N"'\0%

4
	
				+	�q
'a��a-
R��R	_!Y		-&&#	"#-�63(&&?W
0  &%%I_C,%''(

<*%
9Ni	
			$B
�")!	-#"	#&		&+��e�'[�:367>75>54&'./.#"#!'.'5.'&'<567>7>732362323227>7>7267>54&'1&'.'&'&(IfjJ``�``Ac		L2Q���� 
2H���'0V99?�~�M/F4)%60"J#"T&%C/�dIe��eJd
S<O��P3L	H"���H2
%
[[�[[
&�y9X
?2.A;)[!++i..Q:����D~1327>7>7665041<'1.'.7>7>764'.'.#"#317##"&'.'1.'.5467>71>7>3�Ey-*7	
C4'^5B0X#	$2-*(-1#%
C41{EZ.P!+	%;!

/Q !+

, $V4
_9.)k=BEz+ ,%#1-(*-2$	#X0BEy+)/E
,!P/
#=$	, !P0
0Q $,����M���1#9113302310232671>757267>54&'.'#5.'.#*13267>?>54&'.'5&"'.'&"#"&'.'1.5467>7>7267>5<90454&'#.#"###3267>7>'.1&5467>32#+7>7>32#"4++4

5))5��!
-a��a-,$
.
4��
,wm6		3k@c�
			

	@$#
A
@-B	A��w7

�	 0

4++45)*!Q;:L�_,		-5pBb	,$0��
Q��R�		

				BC

#�.AT<	�w4����1Ng�706?62;#?'./7>?!1!7>54&/%"#"#"#1!7>54&/"#!1!7>54&/"#�
�
%!��	>��:44O	i�Ik	�7R-��)]<[-�6	�		����1w��3267>?>54&'.'5.#"#"#"#"3#"&'.'1.=7267>54&'.#'5467>76236167>5<90414&'#.3167>5<90414&'1.�!
-a��a-	-`�@:9Xy	 

 	Q��Q
 
 T��Q�:
+	
6�

+		6_!Q;:L�_,		-a��a-C	4Jʕ7	
7��
J4	�
	


����1Wx���3267>?>54&'.'1.#"#*#"#"&'.'5.5467>7>3223267#>764'.#*1#81"&5467162:3267>54&'.#"#13267>589814&'1&'*#�!
-a��a-	-`�@:9Xy		Q��Q
T��Q��
		
			$	�

�X�01�[�c		8778		##S##x!Q::L�_-	-a��a-	B	R��R

R��R	i		 
	
	%A
�
�	


	���(7Ebp���4&#"32653#"'.'&547>76322+"&546;62"'&475+"&546;2654632#"&572+"&5463%46?>54&+"'.7>;232+"&=%54&#"&54632+"&'&676;265'4&+"'.7>;2+"&546;265KoONooNOo%>)*//))>>))//*)>���T��!w�h1	.1%2h��� 

'77'20
2 %
/%$33$TNooNOooO/*)==)*//))>>))�T�r�	
!��/1$6&.1*!!7''7#!�
$3$$4����*&'.'&#"327>7672#"&5463�#,+c77:j]^�((((�^]j:77c+,#��@))))
)!!/
((�^]jj]^�((
/!!)M�))));_<��@�K�@�K��e����feG����f
��:�$���


���2���<����$LHFtF L!" "�$l%N%�':(�)�*�,�-�/�0�1�2@3Z4�5t6n7�8�9�:n;�<$= =�>R?�@�AJB�CjD^EjF�F�Gn
�<*Q	3
Z		C	-	T		6	
4thfehfeVersion 1.0Version 1.0hfehfehfehfeRegularRegularhfehfeFont generated by IcoMoon.Font generated by IcoMoon.PK���\�aV�(�(�assets/fonts/hfe.woffnu�[���wOFF�(��OS/2``_cmaphTTV��gasp�glyf�����@�\dhead��66.�hhea��$$'nhmtx���loca������maxp��  Rpname��VVd�Ipost�  ��������3	@�B���@�@ 8
 �B���� ������������79���79���79����%F��:367>767<5&'.'.!"1! &/&546545>71>32'&7>7>7>7>54&'.'.546312654&'.'.33267>5<'./#"32'.67467>7>56&'.'1.'.'&67>54&'.'1.'1&"32676&/#"�	
 hh�hh(J���|�B���@���c��
	

	)	�
5s{-�Ea�		$		
	�-y�&	�p8B
����L%jj�jj	8�a
GC<=[G	

	


		
	
"	c	

	�
(
	

		c#
��V�Xk~�#0&'.'&6?27>76&'.#&11"'.'&#>716&'&6?7>'.'.#"&'&676#"&'&6761#"&'&6�s0D' <�@6,$49A

*!"P""&Jp	I"&(4	�f�%+	"3CE=&C(% 4
�7U-!>y/'+B	M&$;"�#�A$	1|����>d�130631>764=332671>='.'0"#"1#5/.1232$367>76454&'#.!"#"#"!7>7<54&'1/&#��
	
�	��

 vv
kl	~��pKL]��e�	
`A|+
)@B6%��2BDD	�%�
	

	����8Mj���5:113)7>71>5/.'#.+'.'.#"#3&"#*767>76101"*#"#!'.546?!31267>54&'1.'.167>5?2654&'.'#.#"7>32+21+31#/.5<7>731>327>7>#"&/&'.74671>7"'.'1.5467>7>#53�%%G��	
	
�'�

O8�=@	<1
R*=C%&gRRt�S]�!!
8#!8	$�	
-3
-,�#
		"'4
	�
"*	

!+�		

�33EKL�0��

0��	~�)�r�"!P !?+�0�dY4��1O%

'"EO	A-


J+0+60 
G#7+60"E980						3����9j�����37>7>?267>7>'5'./%"#'.'.'"&'.'1'7>76362209267>54&'.#"1327>'4&'.327>5.'.!7>54&'.#"!7>54&'.#"�,
E= #"#
S;#			&��u_

>E.-$;<	
\[�[\�

e	
g
	��9��T1+m[=7'��D

 "!";��%	8
0��
	
.-$	�	
l	
		
	
�


�

	
����-Pl�33267>7>7>54&'.'.'*#*31#"&'.'.5467>3:17>58514'.'&#"&'.'5&47>71>`*&'@
%9J*A�qQ	0O $	fB3�'<y&B
J41��>
<YWG:�wG58Z'}<5C9'&*9/6-*	'�0!!(K�7'("D)"@`;%;$'5R	
R9HsG5 "<3!_<*%$5
>R1%
1
(
#
��c�i��3533267>?676&'&'.'#'7>7>54&'3.'&1.'./5?>540514&'1.#*5#"&'&'.'&'.546767>767>36?3267>54&'1.#"&5.'*#*#1�


&0+,IF,-4,5a)*B)		ALMM�3X#&+ X/%&'#$8		8"#'B4
SE:4E	9:'&./
610NI,478l22(	
9�.%(i<3]&':
8##('##8
�	
	
	����I���7>71>5.'.'"17>?27>'&'.'&'.'1.%1#*#1.'.'.167>7>7>36'4'.'&'.#"&54610'#?41�	
� #
c	$6 		D

0
%
��	I
	���S
��AkW<b1	"		,,g++Y<<X




 	--k-.	�O:&)���Pez���20#13267>?67>'.'&'&'.'&'.'#/#"&147>762%7>54&'1.#*333:7>7<54&'1.;7>5.'1/"7267>54&'.#'�	K?'e#

#*�"		
*"\	�(I,RA&7"�c
!P,!	m�(s�	�s)RF33F		O55;��	
ey\&G


�UP(<65Q�� ))b()L5b
	&	

�
�
	
	
����Pi|�'2&/&10&'.1"7>?3>?327>767>?'.'.#"#16"5<5457>10&/46#"&/7>7>12,:%\s0,  M!!

'#>]t0E  M!!
	C" VD��\8']^�W$6B"1G-&	'A��/'
'	 ?;^���
"Q56=',"
7��=66Q
*�U���,
!P65=����+^r����23!7>747<5&5&'.'&'.#"+1!'.'1'7>762;#"&'.'1&'<5432%27>'.27>'.27>'.3!7>54&'.#"�/
T�2)54~561~jHDi%5);7��
	��	
\>��q[L

C/�n	
	
	
{	0*md47/t��T		/87�7656~54l6		&		��
		W	
5gr	DC//
	
�
	�
	

	
����&Idz�%!7>76454&'./%"!'.'1'57>763:323!85326'.'.#"3!7>54&'.#"&7>1y.
i�(	&�~��
	�hEENw	�t
'(	�	�4��A�	j.,:D 

	/52H	&;A^		
		�
@$C#)

			����L����!267>757'&"#%'.'.5467>7>3263>50490414&'1'#"567>327>'./7>'."'.'*#"5267>7>54&'.'.'#/"1"&'.'&1"67>763622#"&'.'.'&67>7>�*	@�{*
			P��
	j}vp	�]A
	



	




	��&8
4#
!KT4,
&
xG4�!0!!6,
 $"!P""�;&]
"WL$)$	
=(Z�G
&�
�#
	|��Z
			�	5&(SY!
$3
'$c\$*89 /	�
&� 4

	"����&J`���7!7>7>54&'.'5'%"1!'.'1'57>7127:323!!7>54&'.#"23!7>7>54&'.'1'!"1!'.'1'57>712326323!7>54&'.#"�/
T�2&	&��uk	
	��	

R66=%	��	�9��H_/
T�2&	&��uk	
	��	

R66=%	��	�9��H7/%,5	%!=8%	;2I		
		�	U

��/%,5	$
!=8&	;	3H
		�
T
	
		��&�#Gk123:363267>'.'&#&""123:723>7>'.'&#&""12326323>7>'.'"'*##�	923M
WW�WV	923M
WW�WV	923M
WW�WV
�

�


����+?O[s���3267>7>5&'.'&'&"!5467>767:3#"&'.'1.5!%1!';7>54&'.#";7>54&'.#*;7>54&'.#*;7>54&'.#&� }��])
	(cc�cct�C
^_�__�Κp,
^_
	�%�		;QA/"		;QA/"		;QA/"		;QA/"W
]�}(
)[�I 8!


�`��
F�����
	6���

{
	{
	{
	����(Ps���
-3>7>7>'4&'.'#.'"!7267>764='.'1.'"##"&'.'1'57>76232!1#"&'.'1'7>7623223267>7>'5'.'#.#"##"&'.'5'7>726323267>7>54&'.'1.#*1#"&'.'5'57>72632�/
::%		%90$�/
9;(	&:/%��97	
,3�	
	87	
-3��/
::)	%90$�97	
,3/
9;&	&:/%�	
	87	
-3�/$,5	$!=8%	/Aas/
	/QT�%	:2I		
	�	
.o�		
		8	
�x.Aar0	

/QS�&	;	-p�
	8
i/%,5	
$
!=8&	;	3H
	�	����(Qt���/7267>7>'4&'.'#.'"!7267>7>54&'.'1.'"##"&'.'1'57>76232!1#"&'.'1'57>7623223267>7>'4&'.'#.#"!23267>7>54&'.'1.#"##"&'.'1'57>72632!1#"&'.'1'57>72632�/
::%		%90$�/
9;&	&:/%��97	
,3�	
	87	
-3��/
::%		%90$�/
9;&	&:/%��97	
,3�	
	87	
-37/%,5	$!=8%	/%,5	$!=8%	;2I		
		�	
2I		
		�	
�x.%,5	$
!=8&	.%,5	$
!=8&	;	3H
		�
	3H
		�
	�����������
!:7>7>5.'&"3267>7>7>7>7>54&'1.'.'.'.'.#"#1+5332671>'.'&'*"?>7>;#531'.'1'7>?#533#53367>7>7>54&'.'.'.#"1"&'.'&472633#546526;�'
&
3��(				�	
		�%dc�cc��"5T㫫�	
	
�7��㫫�	

	

�zN'+=+g�2#TBE����&	
	
�	
	
	
	�

$�d�	dd�er		
	�]�]]��


	




�e�eed*;e����&Lg��! 67>7>54&'.'.#"#*"#"#!'.'5'467>76726289!7>514&'1'#*09!7>514&'1'#&09!7>71.'1/"#�"5
$
2?
		
=�=87T\

����	
^]�^^��	��W~	g�Ij	�5NL3 ����$

E��E
:\[�[\
+�T
�

�	


�	
��z� B\l���7>7>'.'.#"3.'&'.&'&67>'7>764'.'.#"&7>76#"&'.50637>736211!7>54&'.*!7>50654&'#'#"�+&'=	
M?(b-4V?7 L*B/	&)*T)*&	%$?#S,:.
H*/.."
	
=0,
"9�i�C��ڊ�n	�{;-8%%+:Fl

?."L)Cp%:
N&/		E�02,
	(*+"$<@0�
�


		g	
����9n����37>7>?267>764='.'5'%"1#'.'.'"&'.'1'7>7127:323!37>76&'.#"3317>76&'.#"1&'.54671>31'.51467>321�/ES
"!""R<(	&��uk	
	>E..E<	

R66=%	�_!	$!	

'4!� 	$"		'4	"
�

�	7/^��D	
"!!"	0w��%	;C��
	
..
	�	�!#@		Z.!#@		Z.;
&
	��������1#"&'.'.'.#&27>?6?5733263>7>54&'.'#.#&27>7>54&'./.'"54&5.#"3#"&'.'1.7>7>3#"&'.'1.5467>7>3#"&'.'5.5467>7263�"	
*0 "	
	p	-	D	
D.#"
	

)",EE	,	p	"
	

)",E	B-&	

/�
-' 0�-&	
!/6��#W&
�z6HH 	
!$
%a'!#%D,
�7


�
7

		�
7

	

����)_����%!7>='&!32676&'&'&"1316?32654&/7>54&#"'.'1&"17267>7>50414&'1.'.'"154603:27 67>54&/%"32323%7>7>5./! x	?Q
#���DPP�PPh
	





��	+"-.5J��		
cII`#b�|�cIJa��y��}xx�t�H0s�$	


	

		
	

�A'3	
[

"
	��

	j		
��a�e|��17267>?46167>763267>7>765<'&'.'.#"#15467>767>76?6&'.5467>7>73&'.'.5467>;�=Ii3F:

$C#
==�=>� 
	
%$(# 
#		+
�q	#"O##%	'	 /6�8		+	8@6	!Fx�	


"�Ge
!1Q% 
HI�FG,2;/=&P/9.�(

	
1]*


 2����q���3267>7>54&'&6323267>716&'.'.#/.5146?3267>7>'.'1'%'.'.#"#*10&'.546321#"&'#.54671>72%'.5467562�	"*
	-#

	FF%
#	$G��*��+1 @��$�%>�Gf
g�k��'�9	
		!
	
gF�+/)*
$	$%#	*_A�'�J3}I33J�+

	

����Ru���7>7>'.#0"#3#04=7>?7>='.'.'.#*#1#"'.'&507>767>3121"'.'&/509?67>54&'1./7>'4&'.'.#"3'.'1&67>32�
21t10..m//C
	o^*
	
,tt'�S6	&&X%$*+f*+('a*+G0��))c))P7f-;P',	:
+"

1H&��)
D(

L5�F:		?.=T HI�3$8@=+�R�5L>��2"Q
F/0		,
=

	"-	��f�Ii}�10+7>307>7>7546=#"&7>5&'.'&'.#*#31#"'.'&167>767>#"'.'&'.'461"457%�
00q./

_>��KU

01t11**b((+*f++*+f**''_))	��))c)*��))`((
1F�q1	<'_b/7
VI�G;=@@;��S�5L>$^M3U�<L6��y1M����Jag~��1#3367>?>7>7645'.'1.+'4&'.&'.'&!!!%654&'.#"3#"&'1.7>3210"+7>1067>?25���5

Tc���=a]�	B(

*N���a��#
+l

*


	�U:�%
2�'5
T??U��	6%&6��O	6&
��nv1G


:&[!"n��e���&
(/;

<	�<P /	7$ZO8
)����8�13323267>?'.'1.'#'.'.'1.'"#30232671757!!533267>764'.'.'&"+!���`�<&e�8�kq��
��t�i"$
	tQ�jC5��Y+	10J5m6Q'>
XW���i"$
	�7����8��6767>7>?>76&'.'1.'#.#"'.'&'.'"1"&'.#"#"&'&47>767>761##"&'3.'.'.706767>767>12326?�@n3'	M9$\.122`.-)4&*3�J1
8-))IG//6

V>N
 ('\325pD\	-yE	
-R#$C$$G
	

,}%"7"*%,H�0/4!M+);a3":2A	:,#"V+?/F008
	Z:C6?+V"-""-
	��GY%0>D%	
  C	


-����,Zu�2767>767>54&'&'.'&'.'1'&'.'&'.5467>7>7>367>76&'.'.'1&67>�Dz466.j<@721T""	O0059=/T$

*7�B*'(CU6;#
<K

<)-
16<2
71*�*&;55;"(8&%.
.)(?
;() 2 %2TT

%&&6	*6j9		?����G����3267>?767>76?>5<54&'&'.'&'.1'&'&#7>7>76&'.'54&5467>?>7>013831267>132671>7>7>7>764'.'.530292654&35320312654&3127>54&'1.#"3�410S"!

	"


2	5C=76Y! 

S228B8Q�,6.&/.e341(@"
E,G"")

"
	
+"�{{		88&&..22c10*
	< 
J1195 >5--F	9QE@#F|.&$"
!M*)M"/I�
	
,�

����+Rk��!7>7>767<5&'.'.'"'*##"&'.'.'.5467>7>32123267>54&/#";7>50414&/!2:363>/#")D
E1)=6 LK�KL�-
.��<


	&?ĝ\�*	�U�*�W~-���RJ+,e++�c-_, 
��1D
6%
LL�LL4;$9̪M	1

		

;ѯI+
�	
	�
		�'
����+Jl89897>?'.'.#"3%17>?'.'.#"#117>?'.'.#"3e

8&^^&81Fts;<H	K]]K1Ftt:<E	.0\\0.
&F.qq.G	x9']^&:/Fts;:

L]^K
/Fts;:
00\]0/F.qq.E��v�,f����"654&'.'./<54671>54&'.%132671>7>75>'.'.'.#"#172676&'.5<51>7>54&'.#"1!3367>54&'.'.#"117>75>54&'.'.#*#1'"&74632�,8	'


1+		

0*
	+'
�i
		!		 	�,
	�.zAC4X)-7Dw.	
		)!L(Cu-5E&C7c*
!u ,
4
8
="	1
C&4
	 Q-(G!f
	


<

����Cu�����
#03267>?>7>7>54&'.'./.'&"#'.'.#"3"'.'.#"15<7>7>3227>504514&'.'"&'.'1.=7>7>;%1#3&76227>7>10#"&'.'1'767>76128132671>'.#*#138132671>'.#*#1327>76&��
& !$	7��7	$ &&�c/ ,.P3 P
F��Uk
'� 	

�

�
�*#9X��G
@'c		{	|�	 nH+	*
	

	
	"]N&%
;
~&
'A+Dy>@
-
��
	So��oS	
-
�!/

	7 �
"

"
)
	����'Qe��7267>7>54&'./&'*##/.'.5467>71>716362232670454&'1.57>7#>54&'.'.#"&#3.'.5467>76232#<Im	M3<�>FbmI
99�99	m:VG29��5I	8 55|55

�E\
A+<
'/		(H#B 46$	
';@'
	7
cHM��25O
_BC~{FHc
8I:
1�`[4QN5
DoT`3W	
>kG*A
T2(.
;3 
($9
4&
'8��]�"Eiz��167>7>'.'.&'.5467>7>7>32#33267>7>54&'.'.'.'1.7>3267>7>54&'./.'*#*#3'.'.5467>7>321�'?	/%&,(@4#?=!
1/M				�'6		

	 /
0'/
5+7!�*2+
*87&1K:'
&(=2%#J&$<
	;"E7/

@7&(
2 
 0	:
(G
!!#	�: .G
?*
	'9=6^
!
����m1'.'&"1#&'.'&'&/.'.'1&0&/#"0326?0'.3017>7>?07>7>527>761032631>7>3067>=654&'./54610367>514&'./2326'.'.1067>7>5894&'&'.'46?32676&'.'.'&67>76&'&5"67>'.#"170&=7>764'.'1."54&'.� 
+59	
$>

$1,FM .sG3
	$ %':3
	  1:		;% 
2HO +.!NF,0"2"&	2$


*$#4!	�� 
	,5[@
 +$	
-	B

,*!5&[3!		*=3G !0[&5!*,



"'


-	.
	!
"!% (	5&Z4!!J7	��R�g}��100093>7>7>'./7>7>51.'1./.1067>7>'.'.'&'.'"7>76323232631267>320'.1>?7267>36#"'.'&'06?�34z33
*'%;(%%(eE|,=kDd4==(((*K]Ed
��N2w�IO!4))b**O7�*(w('_))�7M#;C-*r)*c))))c)*!9i8E	!	
4$@7#4" 



-4'8�L)>E$)9,�	C1E*!
#�A33 6
��^�)O����� ?3267>7>7>&'.'.#*1#%'.'5'7>73>!5&'.#"13267>71>7>'.'"&#1"&76367>'.'.'.#"1167>5.'.;7>76&/#"##"&546'2764'.7267>54&'.#"##"&'&6767:7>7<54&51./!�0
	

J��J
	
)P�k�	

:���l��
#	

	
"	



	�

)
		�	Rol,Bf		6v	pS[4<c
�{.
	���&�q��T

UG"k
*	=

�}kKJ]		2			-!		
	��
	


	


	t	
				
�
����
!Ef����27>=?#%32671>=#767>?>'.'.'.'.'.'.5467>73621"7>7>75>54&'./2'.'5&47>7>3211?#54&'.!1#5.'.c		��e�	��9]):P+ &%O))(Ak#	 *g@S /& *%B%	�&A G(

	( 
G'0/%	)�_��	����f7I9fIH9
52e�' I"V
	L5 0+5
B
=)C
*3&
&,**
%	

#4)&k
	%'(��Pf9I<0IhM����Zfr53:71>?2767>767>54&'./7>76454&'.#"'.'.#"7'7>?0'7>?0�??�>>+-VR78RW-,>?�>>+-VR7@PW-,WG����*S)+�H����*S)+a>>�?>,-WR87RV-+>>�??,-WR8

?PV-+�H����*S(*�H����*S)*����Jc#&/.'.#131267>123:7>'.'./7>'.+&'.'&#&6;U*= 6;"D[N55KO77P
%e6M4$mf73aCBbqX�4./F4E�2,,B!7�P#d2F(GL)jGHg^AB_'y?ZE1�'}UU|�h'	�pC;;YED;;Z����w�*Q��1389267>5<14&'3.'#.#"3'.'.'3.'5.5467>761"1332671>?26764'.#/.'.#*17>7>7>7362'265.'./.D3N!G(BkD(			I
/


9&
1
R7&	7	
7'

'7	�a)%%=


8 >($
	

W5<A
@-'+JP>7!-;*-6

#


&5	�&7
7.7		7.��3"!'


+
!
(
4/A	����Kj}������70#"3;7>7173267>75>54&'.'./.'&'*##&'./5&67>762;'"&'.'5/57>3%+546526213029267>7>'.'.5326716&3326716&732676&'*#"5�	&#
	
%(
!b��

!	&
(
#MM�MM�
			�@�`�	��
	�
	
�	
,6(;
6.O�!99!�	

{	
|	�	
m_)	
		%]P$
)		;	��	�w,Ŗon	��k^	�>X	Ge	
 ({s��#	#		
����8Tt�3:327>7>747<5&5.'.'5.'"'*##!"#*#"5467>7636222#"&'.'.5'!2:323265814&'1.�
#	XX�XX	#

UU�UV	 5��F=>]OP�NOL	[��[	RF>>\��
�.&
76�77	$&
65|65

9E-./	�A!!'	*Glm
����Q{��#:'3263>7>7>7>7>?5#'.'.#"11"+7>54&'.#"10"&'.'.'.'.514632:32#32012675>='.3138126?>='.=\~# 
!3f:M$,!"
	
~-	
 �c�&	�  +Rf9	
 '��>66Q�j

�
�8

Gsqj)`#($#jDnp-V
8Z%7?.M4�iBCghC�;YO;;P
O;;P
	����#1>{�����5)7>?'./!&&'063:3#"&/3:32671>7>232671>?1"&'./7>?3267>/#&3;7>54&'1.#"32676&'.#"389011;7>5<'14&/!12;7>5<51./#"�		F=&'���v--a;**<�d
2f)<��"+2Z
���SX%6�	-'
;&�TW�&�u8�--
,*�
TW�	���	0,Z^Cf	

����G	'�&	8"GJ
&�
%C	��		zC(s
 	%
u		

�	


��o�.]�75327>76?<5/&'.'&'"2'.'/<5<5?67>763217267>71>54&5.#"#!5&67>7>?267>58514&'.#*dx}3Wkh(56a#"#"a66(hn#34`$#>*�,,W!!X%i&[[ek,IY[%.-R6%�&!sr�C		�r
�w:$�GiWAI0?�9"D"i>88>g+�9�A7!=2&&f45f4=448='4g66h6/�I,3

	)!
!-&
	����1W|���3267>?>54&'.'5.#"#"#"##"&'.'1.5467>762361:32671>764'.#"#3&54623>7>54&'.#*1;7>54&/"#�!
-a��a-	-`�@:9Xy		Q��Q
T��Q�	

	
			$
5
�Y�00�Z�	\_��Yb_!Q;:L�_,		-a��a-C	Q��Q	
Q��Q	h
	
	

	%B�

�



����?�232"13267>?>54&'.'5.'"#0"93127>7>7>54&'1.'.'.x:%A	FA"<(B#-!P(<�1!QޗH		H��Q!1D.9669.C_2	Q��R		-a��a'	�	2!Q
Q!2C-:88:-B����7z�5326767>767>54&'.'.'#.#*#353##"&'.'./.'5.7>7>7>73>25767>76&'.#"1"##"&'3.'.5467>7>32'3832654&'1.'.�PHHr''
@()/1a88a15,+B2#3�I
X3[&&
'&
%
K)$""$+J 
+	-#
&&Z2 
Z0 
##Q,+'	$


	
&D�dDCN)*711T"!%&]66;8a1(B /<E	*
%
K)$""$+J &
'&%[3D<i+
%
*	�	5!*)
		
22


 

��u� Ab23:323 67>54&'.!"#"#"#23:323 67>54&'.!"#"#"#23:323 67>54&'.!"#"#"#�
`??GHI��G@@`
`??GHI��G@@`
`??GHI��G@@`�
	
�
	
�
	
��u�hr�302310232671>7>7>73>;3#1232323267>75>54&'&'.'&'.#&#5<10302926?3127>7364'./533:12671>54&'.#"#�!

	.t�]uO��bU99@�_-	&&[&'7�Mu�S�1"��	
	?
	a	

>o8R�!9(GPF	t_��B
-W��P''[&&�SS"11"�+	�		�
	����%+F\q�#)7>?'.'#'%"#"#"!!%32727>54&'&#&"%1!7>54&/#*37>54&/"!7>71>54&'.'1'#"#4
|R��7bTT|#$���x��'(]''(']'(d

(�<X

�o.D

l�Jl�B��E
�
�����&�%%��%


�



����"D23233!5!5!5"#*"#'33267>'.'1."�
lSSs���R�LcQRt! Y�{�A


A�j�p
**d**H�Hj
F����Fj���	3267>5>7>7>32127>71>5.'.'5.#"#"#"#3267#67>76764'.'.'.'.5467>7>32'123267#>764'.#81"&54671623267>?>74&'.'1&"11#"&'.'1.'4&'.�!

R��R	-`�@:9X->n2 *c86""!?1wA15*J& $$K'&'(N"'\0%

4
	
				+	�q
'a��a-
R��R	_!Y		-&&#	"#-�63(&&?W
0  &%%I_C,%''(

<*%
9Ni	
			$B
�")!	-#"	#&		&+��e�'[�:367>75>54&'./.#"#!'.'5.'&'<567>7>732362323227>7>7267>54&'1&'.'&'&(IfjJ``�``Ac		L2Q���� 
2H���'0V99?�~�M/F4)%60"J#"T&%C/�dIe��eJd
S<O��P3L	H"���H2
%
[[�[[
&�y9X
?2.A;)[!++i..Q:����D~1327>7>7665041<'1.'.7>7>764'.'.#"#317##"&'.'1.'.5467>71>7>3�Ey-*7	
C4'^5B0X#	$2-*(-1#%
C41{EZ.P!+	%;!

/Q !+

, $V4
_9.)k=BEz+ ,%#1-(*-2$	#X0BEy+)/E
,!P/
#=$	, !P0
0Q $,����M���1#9113302310232671>757267>54&'.'#5.'.#*13267>?>54&'.'5&"'.'&"#"&'.'1.5467>7>7267>5<90454&'#.#"###3267>7>'.1&5467>32#+7>7>32#"4++4

5))5��!
-a��a-,$
.
4��
,wm6		3k@c�
			

	@$#
A
@-B	A��w7

�	 0

4++45)*!Q;:L�_,		-5pBb	,$0��
Q��R�		

				BC

#�.AT<	�w4����1Ng�706?62;#?'./7>?!1!7>54&/%"#"#"#1!7>54&/"#!1!7>54&/"#�
�
%!��	>��:44O	i�Ik	�7R-��)]<[-�6	�		����1w��3267>?>54&'.'5.#"#"#"#"3#"&'.'1.=7267>54&'.#'5467>76236167>5<90414&'#.3167>5<90414&'1.�!
-a��a-	-`�@:9Xy	 

 	Q��Q
 
 T��Q�:
+	
6�

+		6_!Q;:L�_,		-a��a-C	4Jʕ7	
7��
J4	�
	


����1Wx���3267>?>54&'.'1.#"#*#"#"&'.'5.5467>7>3223267#>764'.#*1#81"&5467162:3267>54&'.#"#13267>589814&'1&'*#�!
-a��a-	-`�@:9Xy		Q��Q
T��Q��
		
			$	�

�X�01�[�c		8778		##S##x!Q::L�_-	-a��a-	B	R��R

R��R	i		 
	
	%A
�
�	


	���(7Ebp���4&#"32653#"'.'&547>76322+"&546;62"'&475+"&546;2654632#"&572+"&5463%46?>54&+"'.7>;232+"&=%54&#"&54632+"&'&676;265'4&+"'.7>;2+"&546;265KoONooNOo%>)*//))>>))//*)>���T��!w�h1	.1%2h��� 

'77'20
2 %
/%$33$TNooNOooO/*)==)*//))>>))�T�r�	
!��/1$6&.1*!!7''7#!�
$3$$4����*&'.'&#"327>7672#"&5463�#,+c77:j]^�((((�^]j:77c+,#��@))))
)!!/
((�^]jj]^�((
/!!)M�))));_<��@�K�@�K��e����feG����f
��:�$���


���2���<����$LHFtF L!" "�$l%N%�':(�)�*�,�-�/�0�1�2@3Z4�5t6n7�8�9�:n;�<$= =�>R?�@�AJB�CjD^EjF�F�Gn
�<*Q	3
Z		C	-	T		6	
4thfehfeVersion 1.0Version 1.0hfehfehfehfeRegularRegularhfehfeFont generated by IcoMoon.Font generated by IcoMoon.PK���\IR�?ܒܒassets/fonts/hfe.ttfnu�[����0OS/2_�`cmapV��Tgasppglyf@�\dx��head.��<6hhea'n�t$hmtx���loca������maxpRp�D named�I�dVpost�� ��������3	@�B���@�@ 8
 �B���� ������������79���79���79����%F��:367>767<5&'.'.!"1! &/&546545>71>32'&7>7>7>7>54&'.'.546312654&'.'.33267>5<'./#"32'.67467>7>56&'.'1.'.'&67>54&'.'1.'1&"32676&/#"�	
 hh�hh(J���|�B���@���c��
	

	)	�
5s{-�Ea�		$		
	�-y�&	�p8B
����L%jj�jj	8�a
GC<=[G	

	


		
	
"	c	

	�
(
	

		c#
��V�Xk~�#0&'.'&6?27>76&'.#&11"'.'&#>716&'&6?7>'.'.#"&'&676#"&'&6761#"&'&6�s0D' <�@6,$49A

*!"P""&Jp	I"&(4	�f�%+	"3CE=&C(% 4
�7U-!>y/'+B	M&$;"�#�A$	1|����>d�130631>764=332671>='.'0"#"1#5/.1232$367>76454&'#.!"#"#"!7>7<54&'1/&#��
	
�	��

 vv
kl	~��pKL]��e�	
`A|+
)@B6%��2BDD	�%�
	

	����8Mj���5:113)7>71>5/.'#.+'.'.#"#3&"#*767>76101"*#"#!'.546?!31267>54&'1.'.167>5?2654&'.'#.#"7>32+21+31#/.5<7>731>327>7>#"&/&'.74671>7"'.'1.5467>7>#53�%%G��	
	
�'�

O8�=@	<1
R*=C%&gRRt�S]�!!
8#!8	$�	
-3
-,�#
		"'4
	�
"*	

!+�		

�33EKL�0��

0��	~�)�r�"!P !?+�0�dY4��1O%

'"EO	A-


J+0+60 
G#7+60"E980						3����9j�����37>7>?267>7>'5'./%"#'.'.'"&'.'1'7>76362209267>54&'.#"1327>'4&'.327>5.'.!7>54&'.#"!7>54&'.#"�,
E= #"#
S;#			&��u_

>E.-$;<	
\[�[\�

e	
g
	��9��T1+m[=7'��D

 "!";��%	8
0��
	
.-$	�	
l	
		
	
�


�

	
����-Pl�33267>7>7>54&'.'.'*#*31#"&'.'.5467>3:17>58514'.'&#"&'.'5&47>71>`*&'@
%9J*A�qQ	0O $	fB3�'<y&B
J41��>
<YWG:�wG58Z'}<5C9'&*9/6-*	'�0!!(K�7'("D)"@`;%;$'5R	
R9HsG5 "<3!_<*%$5
>R1%
1
(
#
��c�i��3533267>?676&'&'.'#'7>7>54&'3.'&1.'./5?>540514&'1.#*5#"&'&'.'&'.546767>767>36?3267>54&'1.#"&5.'*#*#1�


&0+,IF,-4,5a)*B)		ALMM�3X#&+ X/%&'#$8		8"#'B4
SE:4E	9:'&./
610NI,478l22(	
9�.%(i<3]&':
8##('##8
�	
	
	����I���7>71>5.'.'"17>?27>'&'.'&'.'1.%1#*#1.'.'.167>7>7>36'4'.'&'.#"&54610'#?41�	
� #
c	$6 		D

0
%
��	I
	���S
��AkW<b1	"		,,g++Y<<X




 	--k-.	�O:&)���Pez���20#13267>?67>'.'&'&'.'&'.'#/#"&147>762%7>54&'1.#*333:7>7<54&'1.;7>5.'1/"7267>54&'.#'�	K?'e#

#*�"		
*"\	�(I,RA&7"�c
!P,!	m�(s�	�s)RF33F		O55;��	
ey\&G


�UP(<65Q�� ))b()L5b
	&	

�
�
	
	
����Pi|�'2&/&10&'.1"7>?3>?327>767>?'.'.#"#16"5<5457>10&/46#"&/7>7>12,:%\s0,  M!!

'#>]t0E  M!!
	C" VD��\8']^�W$6B"1G-&	'A��/'
'	 ?;^���
"Q56=',"
7��=66Q
*�U���,
!P65=����+^r����23!7>747<5&5&'.'&'.#"+1!'.'1'7>762;#"&'.'1&'<5432%27>'.27>'.27>'.3!7>54&'.#"�/
T�2)54~561~jHDi%5);7��
	��	
\>��q[L

C/�n	
	
	
{	0*md47/t��T		/87�7656~54l6		&		��
		W	
5gr	DC//
	
�
	�
	

	
����&Idz�%!7>76454&'./%"!'.'1'57>763:323!85326'.'.#"3!7>54&'.#"&7>1y.
i�(	&�~��
	�hEENw	�t
'(	�	�4��A�	j.,:D 

	/52H	&;A^		
		�
@$C#)

			����L����!267>757'&"#%'.'.5467>7>3263>50490414&'1'#"567>327>'./7>'."'.'*#"5267>7>54&'.'.'#/"1"&'.'&1"67>763622#"&'.'.'&67>7>�*	@�{*
			P��
	j}vp	�]A
	



	




	��&8
4#
!KT4,
&
xG4�!0!!6,
 $"!P""�;&]
"WL$)$	
=(Z�G
&�
�#
	|��Z
			�	5&(SY!
$3
'$c\$*89 /	�
&� 4

	"����&J`���7!7>7>54&'.'5'%"1!'.'1'57>7127:323!!7>54&'.#"23!7>7>54&'.'1'!"1!'.'1'57>712326323!7>54&'.#"�/
T�2&	&��uk	
	��	

R66=%	��	�9��H_/
T�2&	&��uk	
	��	

R66=%	��	�9��H7/%,5	%!=8%	;2I		
		�	U

��/%,5	$
!=8&	;	3H
		�
T
	
		��&�#Gk123:363267>'.'&#&""123:723>7>'.'&#&""12326323>7>'.'"'*##�	923M
WW�WV	923M
WW�WV	923M
WW�WV
�

�


����+?O[s���3267>7>5&'.'&'&"!5467>767:3#"&'.'1.5!%1!';7>54&'.#";7>54&'.#*;7>54&'.#*;7>54&'.#&� }��])
	(cc�cct�C
^_�__�Κp,
^_
	�%�		;QA/"		;QA/"		;QA/"		;QA/"W
]�}(
)[�I 8!


�`��
F�����
	6���

{
	{
	{
	����(Ps���
-3>7>7>'4&'.'#.'"!7267>764='.'1.'"##"&'.'1'57>76232!1#"&'.'1'7>7623223267>7>'5'.'#.#"##"&'.'5'7>726323267>7>54&'.'1.#*1#"&'.'5'57>72632�/
::%		%90$�/
9;(	&:/%��97	
,3�	
	87	
-3��/
::)	%90$�97	
,3/
9;&	&:/%�	
	87	
-3�/$,5	$!=8%	/Aas/
	/QT�%	:2I		
	�	
.o�		
		8	
�x.Aar0	

/QS�&	;	-p�
	8
i/%,5	
$
!=8&	;	3H
	�	����(Qt���/7267>7>'4&'.'#.'"!7267>7>54&'.'1.'"##"&'.'1'57>76232!1#"&'.'1'57>7623223267>7>'4&'.'#.#"!23267>7>54&'.'1.#"##"&'.'1'57>72632!1#"&'.'1'57>72632�/
::%		%90$�/
9;&	&:/%��97	
,3�	
	87	
-3��/
::%		%90$�/
9;&	&:/%��97	
,3�	
	87	
-37/%,5	$!=8%	/%,5	$!=8%	;2I		
		�	
2I		
		�	
�x.%,5	$
!=8&	.%,5	$
!=8&	;	3H
		�
	3H
		�
	�����������
!:7>7>5.'&"3267>7>7>7>7>54&'1.'.'.'.'.#"#1+5332671>'.'&'*"?>7>;#531'.'1'7>?#533#53367>7>7>54&'.'.'.#"1"&'.'&472633#546526;�'
&
3��(				�	
		�%dc�cc��"5T㫫�	
	
�7��㫫�	

	

�zN'+=+g�2#TBE����&	
	
�	
	
	
	�

$�d�	dd�er		
	�]�]]��


	




�e�eed*;e����&Lg��! 67>7>54&'.'.#"#*"#"#!'.'5'467>76726289!7>514&'1'#*09!7>514&'1'#&09!7>71.'1/"#�"5
$
2?
		
=�=87T\

����	
^]�^^��	��W~	g�Ij	�5NL3 ����$

E��E
:\[�[\
+�T
�

�	


�	
��z� B\l���7>7>'.'.#"3.'&'.&'&67>'7>764'.'.#"&7>76#"&'.50637>736211!7>54&'.*!7>50654&'#'#"�+&'=	
M?(b-4V?7 L*B/	&)*T)*&	%$?#S,:.
H*/.."
	
=0,
"9�i�C��ڊ�n	�{;-8%%+:Fl

?."L)Cp%:
N&/		E�02,
	(*+"$<@0�
�


		g	
����9n����37>7>?267>764='.'5'%"1#'.'.'"&'.'1'7>7127:323!37>76&'.#"3317>76&'.#"1&'.54671>31'.51467>321�/ES
"!""R<(	&��uk	
	>E..E<	

R66=%	�_!	$!	

'4!� 	$"		'4	"
�

�	7/^��D	
"!!"	0w��%	;C��
	
..
	�	�!#@		Z.!#@		Z.;
&
	��������1#"&'.'.'.#&27>?6?5733263>7>54&'.'#.#&27>7>54&'./.'"54&5.#"3#"&'.'1.7>7>3#"&'.'1.5467>7>3#"&'.'5.5467>7263�"	
*0 "	
	p	-	D	
D.#"
	

)",EE	,	p	"
	

)",E	B-&	

/�
-' 0�-&	
!/6��#W&
�z6HH 	
!$
%a'!#%D,
�7


�
7

		�
7

	

����)_����%!7>='&!32676&'&'&"1316?32654&/7>54&#"'.'1&"17267>7>50414&'1.'.'"154603:27 67>54&/%"32323%7>7>5./! x	?Q
#���DPP�PPh
	





��	+"-.5J��		
cII`#b�|�cIJa��y��}xx�t�H0s�$	


	

		
	

�A'3	
[

"
	��

	j		
��a�e|��17267>?46167>763267>7>765<'&'.'.#"#15467>767>76?6&'.5467>7>73&'.'.5467>;�=Ii3F:

$C#
==�=>� 
	
%$(# 
#		+
�q	#"O##%	'	 /6�8		+	8@6	!Fx�	


"�Ge
!1Q% 
HI�FG,2;/=&P/9.�(

	
1]*


 2����q���3267>7>54&'&6323267>716&'.'.#/.5146?3267>7>'.'1'%'.'.#"#*10&'.546321#"&'#.54671>72%'.5467562�	"*
	-#

	FF%
#	$G��*��+1 @��$�%>�Gf
g�k��'�9	
		!
	
gF�+/)*
$	$%#	*_A�'�J3}I33J�+

	

����Ru���7>7>'.#0"#3#04=7>?7>='.'.'.#*#1#"'.'&507>767>3121"'.'&/509?67>54&'1./7>'4&'.'.#"3'.'1&67>32�
21t10..m//C
	o^*
	
,tt'�S6	&&X%$*+f*+('a*+G0��))c))P7f-;P',	:
+"

1H&��)
D(

L5�F:		?.=T HI�3$8@=+�R�5L>��2"Q
F/0		,
=

	"-	��f�Ii}�10+7>307>7>7546=#"&7>5&'.'&'.#*#31#"'.'&167>767>#"'.'&'.'461"457%�
00q./

_>��KU

01t11**b((+*f++*+f**''_))	��))c)*��))`((
1F�q1	<'_b/7
VI�G;=@@;��S�5L>$^M3U�<L6��y1M����Jag~��1#3367>?>7>7645'.'1.+'4&'.&'.'&!!!%654&'.#"3#"&'1.7>3210"+7>1067>?25���5

Tc���=a]�	B(

*N���a��#
+l

*


	�U:�%
2�'5
T??U��	6%&6��O	6&
��nv1G


:&[!"n��e���&
(/;

<	�<P /	7$ZO8
)����8�13323267>?'.'1.'#'.'.'1.'"#30232671757!!533267>764'.'.'&"+!���`�<&e�8�kq��
��t�i"$
	tQ�jC5��Y+	10J5m6Q'>
XW���i"$
	�7����8��6767>7>?>76&'.'1.'#.#"'.'&'.'"1"&'.#"#"&'&47>767>761##"&'3.'.'.706767>767>12326?�@n3'	M9$\.122`.-)4&*3�J1
8-))IG//6

V>N
 ('\325pD\	-yE	
-R#$C$$G
	

,}%"7"*%,H�0/4!M+);a3":2A	:,#"V+?/F008
	Z:C6?+V"-""-
	��GY%0>D%	
  C	


-����,Zu�2767>767>54&'&'.'&'.'1'&'.'&'.5467>7>7>367>76&'.'.'1&67>�Dz466.j<@721T""	O0059=/T$

*7�B*'(CU6;#
<K

<)-
16<2
71*�*&;55;"(8&%.
.)(?
;() 2 %2TT

%&&6	*6j9		?����G����3267>?767>76?>5<54&'&'.'&'.1'&'&#7>7>76&'.'54&5467>?>7>013831267>132671>7>7>7>764'.'.530292654&35320312654&3127>54&'1.#"3�410S"!

	"


2	5C=76Y! 

S228B8Q�,6.&/.e341(@"
E,G"")

"
	
+"�{{		88&&..22c10*
	< 
J1195 >5--F	9QE@#F|.&$"
!M*)M"/I�
	
,�

����+Rk��!7>7>767<5&'.'.'"'*##"&'.'.'.5467>7>32123267>54&/#";7>50414&/!2:363>/#")D
E1)=6 LK�KL�-
.��<


	&?ĝ\�*	�U�*�W~-���RJ+,e++�c-_, 
��1D
6%
LL�LL4;$9̪M	1

		

;ѯI+
�	
	�
		�'
����+Jl89897>?'.'.#"3%17>?'.'.#"#117>?'.'.#"3e

8&^^&81Fts;<H	K]]K1Ftt:<E	.0\\0.
&F.qq.G	x9']^&:/Fts;:

L]^K
/Fts;:
00\]0/F.qq.E��v�,f����"654&'.'./<54671>54&'.%132671>7>75>'.'.'.#"#172676&'.5<51>7>54&'.#"1!3367>54&'.'.#"117>75>54&'.'.#*#1'"&74632�,8	'


1+		

0*
	+'
�i
		!		 	�,
	�.zAC4X)-7Dw.	
		)!L(Cu-5E&C7c*
!u ,
4
8
="	1
C&4
	 Q-(G!f
	


<

����Cu�����
#03267>?>7>7>54&'.'./.'&"#'.'.#"3"'.'.#"15<7>7>3227>504514&'.'"&'.'1.=7>7>;%1#3&76227>7>10#"&'.'1'767>76128132671>'.#*#138132671>'.#*#1327>76&��
& !$	7��7	$ &&�c/ ,.P3 P
F��Uk
'� 	

�

�
�*#9X��G
@'c		{	|�	 nH+	*
	

	
	"]N&%
;
~&
'A+Dy>@
-
��
	So��oS	
-
�!/

	7 �
"

"
)
	����'Qe��7267>7>54&'./&'*##/.'.5467>71>716362232670454&'1.57>7#>54&'.'.#"&#3.'.5467>76232#<Im	M3<�>FbmI
99�99	m:VG29��5I	8 55|55

�E\
A+<
'/		(H#B 46$	
';@'
	7
cHM��25O
_BC~{FHc
8I:
1�`[4QN5
DoT`3W	
>kG*A
T2(.
;3 
($9
4&
'8��]�"Eiz��167>7>'.'.&'.5467>7>7>32#33267>7>54&'.'.'.'1.7>3267>7>54&'./.'*#*#3'.'.5467>7>321�'?	/%&,(@4#?=!
1/M				�'6		

	 /
0'/
5+7!�*2+
*87&1K:'
&(=2%#J&$<
	;"E7/

@7&(
2 
 0	:
(G
!!#	�: .G
?*
	'9=6^
!
����m1'.'&"1#&'.'&'&/.'.'1&0&/#"0326?0'.3017>7>?07>7>527>761032631>7>3067>=654&'./54610367>514&'./2326'.'.1067>7>5894&'&'.'46?32676&'.'.'&67>76&'&5"67>'.#"170&=7>764'.'1."54&'.� 
+59	
$>

$1,FM .sG3
	$ %':3
	  1:		;% 
2HO +.!NF,0"2"&	2$


*$#4!	�� 
	,5[@
 +$	
-	B

,*!5&[3!		*=3G !0[&5!*,



"'


-	.
	!
"!% (	5&Z4!!J7	��R�g}��100093>7>7>'./7>7>51.'1./.1067>7>'.'.'&'.'"7>76323232631267>320'.1>?7267>36#"'.'&'06?�34z33
*'%;(%%(eE|,=kDd4==(((*K]Ed
��N2w�IO!4))b**O7�*(w('_))�7M#;C-*r)*c))))c)*!9i8E	!	
4$@7#4" 



-4'8�L)>E$)9,�	C1E*!
#�A33 6
��^�)O����� ?3267>7>7>&'.'.#*1#%'.'5'7>73>!5&'.#"13267>71>7>'.'"&#1"&76367>'.'.'.#"1167>5.'.;7>76&/#"##"&546'2764'.7267>54&'.#"##"&'&6767:7>7<54&51./!�0
	

J��J
	
)P�k�	

:���l��
#	

	
"	



	�

)
		�	Rol,Bf		6v	pS[4<c
�{.
	���&�q��T

UG"k
*	=

�}kKJ]		2			-!		
	��
	


	


	t	
				
�
����
!Ef����27>=?#%32671>=#767>?>'.'.'.'.'.'.5467>73621"7>7>75>54&'./2'.'5&47>7>3211?#54&'.!1#5.'.c		��e�	��9]):P+ &%O))(Ak#	 *g@S /& *%B%	�&A G(

	( 
G'0/%	)�_��	����f7I9fIH9
52e�' I"V
	L5 0+5
B
=)C
*3&
&,**
%	

#4)&k
	%'(��Pf9I<0IhM����Zfr53:71>?2767>767>54&'./7>76454&'.#"'.'.#"7'7>?0'7>?0�??�>>+-VR78RW-,>?�>>+-VR7@PW-,WG����*S)+�H����*S)+a>>�?>,-WR87RV-+>>�??,-WR8

?PV-+�H����*S(*�H����*S)*����Jc#&/.'.#131267>123:7>'.'./7>'.+&'.'&#&6;U*= 6;"D[N55KO77P
%e6M4$mf73aCBbqX�4./F4E�2,,B!7�P#d2F(GL)jGHg^AB_'y?ZE1�'}UU|�h'	�pC;;YED;;Z����w�*Q��1389267>5<14&'3.'#.#"3'.'.'3.'5.5467>761"1332671>?26764'.#/.'.#*17>7>7>7362'265.'./.D3N!G(BkD(			I
/


9&
1
R7&	7	
7'

'7	�a)%%=


8 >($
	

W5<A
@-'+JP>7!-;*-6

#


&5	�&7
7.7		7.��3"!'


+
!
(
4/A	����Kj}������70#"3;7>7173267>75>54&'.'./.'&'*##&'./5&67>762;'"&'.'5/57>3%+546526213029267>7>'.'.5326716&3326716&732676&'*#"5�	&#
	
%(
!b��

!	&
(
#MM�MM�
			�@�`�	��
	�
	
�	
,6(;
6.O�!99!�	

{	
|	�	
m_)	
		%]P$
)		;	��	�w,Ŗon	��k^	�>X	Ge	
 ({s��#	#		
����8Tt�3:327>7>747<5&5.'.'5.'"'*##!"#*#"5467>7636222#"&'.'.5'!2:323265814&'1.�
#	XX�XX	#

UU�UV	 5��F=>]OP�NOL	[��[	RF>>\��
�.&
76�77	$&
65|65

9E-./	�A!!'	*Glm
����Q{��#:'3263>7>7>7>7>?5#'.'.#"11"+7>54&'.#"10"&'.'.'.'.514632:32#32012675>='.3138126?>='.=\~# 
!3f:M$,!"
	
~-	
 �c�&	�  +Rf9	
 '��>66Q�j

�
�8

Gsqj)`#($#jDnp-V
8Z%7?.M4�iBCghC�;YO;;P
O;;P
	����#1>{�����5)7>?'./!&&'063:3#"&/3:32671>7>232671>?1"&'./7>?3267>/#&3;7>54&'1.#"32676&'.#"389011;7>5<'14&/!12;7>5<51./#"�		F=&'���v--a;**<�d
2f)<��"+2Z
���SX%6�	-'
;&�TW�&�u8�--
,*�
TW�	���	0,Z^Cf	

����G	'�&	8"GJ
&�
%C	��		zC(s
 	%
u		

�	


��o�.]�75327>76?<5/&'.'&'"2'.'/<5<5?67>763217267>71>54&5.#"#!5&67>7>?267>58514&'.#*dx}3Wkh(56a#"#"a66(hn#34`$#>*�,,W!!X%i&[[ek,IY[%.-R6%�&!sr�C		�r
�w:$�GiWAI0?�9"D"i>88>g+�9�A7!=2&&f45f4=448='4g66h6/�I,3

	)!
!-&
	����1W|���3267>?>54&'.'5.#"#"#"##"&'.'1.5467>762361:32671>764'.#"#3&54623>7>54&'.#*1;7>54&/"#�!
-a��a-	-`�@:9Xy		Q��Q
T��Q�	

	
			$
5
�Y�00�Z�	\_��Yb_!Q;:L�_,		-a��a-C	Q��Q	
Q��Q	h
	
	

	%B�

�



����?�232"13267>?>54&'.'5.'"#0"93127>7>7>54&'1.'.'.x:%A	FA"<(B#-!P(<�1!QޗH		H��Q!1D.9669.C_2	Q��R		-a��a'	�	2!Q
Q!2C-:88:-B����7z�5326767>767>54&'.'.'#.#*#353##"&'.'./.'5.7>7>7>73>25767>76&'.#"1"##"&'3.'.5467>7>32'3832654&'1.'.�PHHr''
@()/1a88a15,+B2#3�I
X3[&&
'&
%
K)$""$+J 
+	-#
&&Z2 
Z0 
##Q,+'	$


	
&D�dDCN)*711T"!%&]66;8a1(B /<E	*
%
K)$""$+J &
'&%[3D<i+
%
*	�	5!*)
		
22


 

��u� Ab23:323 67>54&'.!"#"#"#23:323 67>54&'.!"#"#"#23:323 67>54&'.!"#"#"#�
`??GHI��G@@`
`??GHI��G@@`
`??GHI��G@@`�
	
�
	
�
	
��u�hr�302310232671>7>7>73>;3#1232323267>75>54&'&'.'&'.#&#5<10302926?3127>7364'./533:12671>54&'.#"#�!

	.t�]uO��bU99@�_-	&&[&'7�Mu�S�1"��	
	?
	a	

>o8R�!9(GPF	t_��B
-W��P''[&&�SS"11"�+	�		�
	����%+F\q�#)7>?'.'#'%"#"#"!!%32727>54&'&#&"%1!7>54&/#*37>54&/"!7>71>54&'.'1'#"#4
|R��7bTT|#$���x��'(]''(']'(d

(�<X

�o.D

l�Jl�B��E
�
�����&�%%��%


�



����"D23233!5!5!5"#*"#'33267>'.'1."�
lSSs���R�LcQRt! Y�{�A


A�j�p
**d**H�Hj
F����Fj���	3267>5>7>7>32127>71>5.'.'5.#"#"#"#3267#67>76764'.'.'.'.5467>7>32'123267#>764'.#81"&54671623267>?>74&'.'1&"11#"&'.'1.'4&'.�!

R��R	-`�@:9X->n2 *c86""!?1wA15*J& $$K'&'(N"'\0%

4
	
				+	�q
'a��a-
R��R	_!Y		-&&#	"#-�63(&&?W
0  &%%I_C,%''(

<*%
9Ni	
			$B
�")!	-#"	#&		&+��e�'[�:367>75>54&'./.#"#!'.'5.'&'<567>7>732362323227>7>7267>54&'1&'.'&'&(IfjJ``�``Ac		L2Q���� 
2H���'0V99?�~�M/F4)%60"J#"T&%C/�dIe��eJd
S<O��P3L	H"���H2
%
[[�[[
&�y9X
?2.A;)[!++i..Q:����D~1327>7>7665041<'1.'.7>7>764'.'.#"#317##"&'.'1.'.5467>71>7>3�Ey-*7	
C4'^5B0X#	$2-*(-1#%
C41{EZ.P!+	%;!

/Q !+

, $V4
_9.)k=BEz+ ,%#1-(*-2$	#X0BEy+)/E
,!P/
#=$	, !P0
0Q $,����M���1#9113302310232671>757267>54&'.'#5.'.#*13267>?>54&'.'5&"'.'&"#"&'.'1.5467>7>7267>5<90454&'#.#"###3267>7>'.1&5467>32#+7>7>32#"4++4

5))5��!
-a��a-,$
.
4��
,wm6		3k@c�
			

	@$#
A
@-B	A��w7

�	 0

4++45)*!Q;:L�_,		-5pBb	,$0��
Q��R�		

				BC

#�.AT<	�w4����1Ng�706?62;#?'./7>?!1!7>54&/%"#"#"#1!7>54&/"#!1!7>54&/"#�
�
%!��	>��:44O	i�Ik	�7R-��)]<[-�6	�		����1w��3267>?>54&'.'5.#"#"#"#"3#"&'.'1.=7267>54&'.#'5467>76236167>5<90414&'#.3167>5<90414&'1.�!
-a��a-	-`�@:9Xy	 

 	Q��Q
 
 T��Q�:
+	
6�

+		6_!Q;:L�_,		-a��a-C	4Jʕ7	
7��
J4	�
	


����1Wx���3267>?>54&'.'1.#"#*#"#"&'.'5.5467>7>3223267#>764'.#*1#81"&5467162:3267>54&'.#"#13267>589814&'1&'*#�!
-a��a-	-`�@:9Xy		Q��Q
T��Q��
		
			$	�

�X�01�[�c		8778		##S##x!Q::L�_-	-a��a-	B	R��R

R��R	i		 
	
	%A
�
�	


	���(7Ebp���4&#"32653#"'.'&547>76322+"&546;62"'&475+"&546;2654632#"&572+"&5463%46?>54&+"'.7>;232+"&=%54&#"&54632+"&'&676;265'4&+"'.7>;2+"&546;265KoONooNOo%>)*//))>>))//*)>���T��!w�h1	.1%2h��� 

'77'20
2 %
/%$33$TNooNOooO/*)==)*//))>>))�T�r�	
!��/1$6&.1*!!7''7#!�
$3$$4����*&'.'&#"327>7672#"&5463�#,+c77:j]^�((((�^]j:77c+,#��@))))
)!!/
((�^]jj]^�((
/!!)M�))));_<��@�K�@�K��e����feG����f
��:�$���


���2���<����$LHFtF L!" "�$l%N%�':(�)�*�,�-�/�0�1�2@3Z4�5t6n7�8�9�:n;�<$= =�>R?�@�AJB�CjD^EjF�F�Gn
�<*Q	3
Z		C	-	T		6	
4thfehfeVersion 1.0Version 1.0hfehfehfehfeRegularRegularhfehfeFont generated by IcoMoon.Font generated by IcoMoon.PK���\����r�rassets/fonts/hfe.svgnu�[���<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="hfe" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="price-list" d="M153.723 834.417c-24.945-6.717-44.36-24.74-54.886-51.077l-4.096-10.24-0.492-339.599c-0.532-377.283-1.229-353.649 10.813-373.965 12.616-21.381 35.799-36.659 60.498-39.854 17.285-2.253 658.514-2.253 675.799 0 34.734 4.506 63.693 31.662 69.878 65.536 2.458 13.558 2.58 672.276 0.123 685.548-4.014 21.709-20.521 44.892-39.69 55.869-19.538 11.182 5.161 10.486-369.009 10.363-291.799-0.082-340.992-0.451-348.938-2.58zM841.359 777.81c3.917-2.242 7.183-5.181 9.728-8.677l0.061-0.088 3.891-5.816v-671.662l-4.465-5.325c-9.38-11.141 18.596-10.281-347.177-10.281-370.934 0-340.582-1.024-348.488 11.674l-3.85 6.226-0.532 326.82c-0.287 179.773-0.041 330.875 0.573 335.831 0.772 9.713 6.709 17.876 15.036 21.805l0.161 0.068c4.301 1.884 65.044 2.294 337.183 2.335 312.689 0.082 332.268-0.082 337.879-2.908zM279.020 706.826c-5.038-2.294-16.179-13.517-16.179-16.302 0-0.778-4.956-3.85-10.977-6.799-16.22-7.987-27.075-18.596-34.57-33.792-5.816-11.715-6.349-14.008-6.267-26.747 0.123-17.613 4.751-30.147 15.401-42.066 15.524-17.244 30.679-24.576 57.303-27.689 24.535-2.867 33.874-9.994 25.19-19.21-7.619-8.11-27.771-9.052-35.881-1.72-3.072 2.785-4.178 2.089-25.6-15.606l-22.405-18.555 8.233-7.332c4.506-4.055 12.861-9.585 18.555-12.288 6.226-2.99 11.305-6.758 12.78-9.503 6.021-11.223 20.316-17.654 32.276-14.418 8.069 2.171 15.933 8.438 18.76 14.909 1.475 3.359 5.53 6.39 13.926 10.404 14.459 6.963 26.788 18.842 33.341 32.236 4.424 8.97 4.874 11.551 4.874 27.812-0.041 21.176-2.867 28.59-16.671 43.704-14.377 15.729-27.402 21.668-55.788 25.436-20.398 2.744-26.501 5.898-26.501 13.804 0 10.609 24.044 16.261 35.963 8.438 1.594-1.177 3.47-2.081 5.5-2.597l0.111-0.024c2.376 0 42.885 33.833 42.885 35.799 0 2.785-17.408 15.647-26.829 19.866-5.857 2.621-9.748 5.693-11.51 9.052-6.308 12.206-23.88 18.678-35.922 13.189zM440.934 608.276c-7.086-2.048-17.203-13.476-18.637-21.094-0.343-1.671-0.54-3.592-0.54-5.559 0-11.168 6.34-20.855 15.616-25.659l0.161-0.076c4.956-2.703 17.818-2.949 171.745-2.949 163.348 0 166.502 0.082 172.196 3.441 8.696 4.962 14.464 14.176 14.464 24.737 0 2.223-0.255 4.386-0.739 6.462l0.038-0.192c-1.966 8.765-6.554 14.418-15.319 18.924l-7.537 3.809-163.021-0.123c-92.078-0.123-165.396-0.86-168.428-1.72zM277.34 399.217c-7.045-3.645-10.445-6.963-12.698-12.37-1.352-3.195-5.366-6.185-13.476-9.994-28.344-13.312-45.015-43.377-39.526-71.229 5.489-27.976 26.255-48.497 57.098-56.402 5.571-1.434 13.885-2.621 18.391-2.621 15.155 0 27.443-8.192 23.921-15.933-4.178-9.134-23.142-12.493-35.348-6.267-5.325 2.703-7.168 2.949-9.339 1.311-12.411-9.503-39.363-32.563-39.363-33.71 0-2.949 16.343-15.647 25.559-19.907 7.045-3.195 10.486-6.021 12.902-10.527 10.445-19.374 41.656-17.818 50.217 2.499 0.86 2.048 6.144 5.775 12.288 8.684 14.418 6.758 26.87 18.35 33.915 31.498 5.038 9.462 5.816 12.657 6.431 26.132 0.532 12.575 0 17.080-2.908 24.781-5.606 13.997-15.010 25.485-26.939 33.505l-0.258 0.164c-12.902 8.684-23.552 12.124-43.295 14.090-16.302 1.597-24.822 5.325-26.378 11.551-2.867 11.51 20.644 18.514 35.963 10.732l6.595-3.359 21.094 17.326c11.592 9.544 21.094 17.9 21.094 18.555 0 2.744-16.671 15.688-25.559 19.866-5.833 2.334-10.592 6.327-13.816 11.393l-0.070 0.117c-2.668 4.129-6.192 7.483-10.34 9.876l-0.146 0.077c-7.578 3.604-19.292 3.686-26.010 0.164zM437.248 300.093c-20.070-9.912-20.357-39.854-0.492-50.012 6.758-3.4 9.134-3.482 171.663-3.482 180.183 0 171.622-0.451 180.511 10.117 11.878 14.049 8.602 33.669-7.086 42.476l-6.636 3.727-166.175-0.041c-149.75 0-166.707-0.287-171.786-2.785z" />
<glyph unicode="&#xe901;" glyph-name="social-share" d="M643.604 828.6c-18.637-5.038-33.137-13.844-48.865-29.696-23.306-23.593-32.399-47.596-31.252-82.78l0.573-17.736-115.139-67.174c-63.324-36.946-115.712-67.174-116.449-67.174-0.696 0-6.021 3.113-11.878 6.881-15.196 9.789-29.368 13.885-51.896 14.868-34.816 1.556-59.064-7.905-83.558-32.645-21.873-22.159-31.498-45.629-31.498-77.005 0-42.639 22.774-79.585 60.539-98.263 35.922-17.736 78.766-15.155 110.551 6.717l7.373 5.079 231.997-135.332-0.614-17.203c-2.744-73.482 43.827-135.291 115.753-153.641 19.087-4.874 54.108-4.506 72.54 0.737 48.292 13.722 83.804 44.646 102.113 89.006 34.12 82.616-10.609 176.046-96.993 202.465-13.926 4.26-17.859 4.71-42.639 4.751-25.313 0.082-28.467-0.246-42.68-4.71-33.429-10.318-61.231-30.641-80.668-57.428l-0.31-0.449c-3.195-4.465-6.308-8.11-6.963-8.11-0.942 0-213.975 123.617-216.392 125.542 0.393 3.537 1.187 6.767 2.344 9.818l-0.091-0.274c5.734 18.678 5.038 47.432-1.679 68.895-0.942 2.99 12.042 11.059 110.879 68.731l111.985 65.331 9.708-8.724c34.161-30.515 88.146-35.717 128.328-12.37 46.244 26.911 66.601 84.992 47.432 135.332-10.977 28.795-39.158 55.869-67.748 65.085-16.589 5.325-47.841 6.062-64.799 1.475zM695.828 770.191c18.76-9.38 30.065-27.484 30.065-48.21 0-15.114-4.547-26.010-15.401-37.069-10.568-10.772-21.75-15.401-37.233-15.524-26.87-0.164-48.988 19.415-52.961 46.94-3.4 23.634 14.582 50.381 38.461 57.139 10.568 3.031 27.484 1.516 37.069-3.277zM286.228 524.431c18.76-9.38 30.065-27.484 30.065-48.21 0-15.114-4.547-26.010-15.401-37.069-10.568-10.772-21.75-15.401-37.233-15.524-26.87-0.164-48.988 19.415-52.961 46.94-3.4 23.634 14.582 50.381 38.461 57.139 10.568 3.031 27.484 1.516 37.069-3.277zM733.88 322.703c49.439-10.486 82.862-60.539 72.868-109.117-3.254-17.722-11.303-33.18-22.74-45.436l0.049 0.053c-19.907-21.586-41.984-31.539-69.796-31.498-26.788 0.082-45.752 7.864-65.372 26.87-67.666 65.577-7.25 178.668 84.992 159.13z" />
<glyph unicode="&#xe902;" glyph-name="advanced-heading" d="M395.1 774.984c-7.857-3.822-13.75-10.651-16.246-18.951l-0.056-0.219c-0.86-3.645-1.516-76.964-1.516-163.594 0.041-166.175-0.041-164.741 7.823-173.588 5.75-5.702 13.667-9.225 22.408-9.225 1.168 0 2.321 0.063 3.456 0.185l-0.141-0.012c9.421 1.393 21.463 12.411 23.224 21.258 0.655 3.113 1.147 34.365 1.147 69.427v63.775h158.72v-65.741c0-72.581 0.041-72.786 10.65-82.084 4.897-4.216 11.317-6.783 18.338-6.783 6.75 0 12.946 2.373 17.799 6.331l-0.051-0.040c10.076 7.946 9.585-1.393 9.585 177.848v164.536l-3.85 5.652c-5.734 8.397-12.001 12.329-21.176 13.148-0.816 0.085-1.763 0.134-2.721 0.134-10.656 0-19.911-6.002-24.567-14.81l-0.073-0.151c-3.891-7.373-3.932-7.782-3.932-73.728v-66.273h-158.556l-0.532 67.953-0.492 67.994-4.26 6.267c-7.578 11.223-23.142 15.974-34.98 10.691zM118.088 300.093c-12.861-4.424-20.234-16.63-18.637-30.843 0.794-8.731 5.936-16.105 13.218-20.004l0.135-0.066c5.243-3.072 10.322-3.523 52.756-4.71 64.225-1.802 736.42 0.287 744.325 2.294 7.823 2.007 17.94 12.902 19.456 20.931 0.272 1.513 0.427 3.256 0.427 5.034 0 11.182-6.138 20.93-15.228 26.059l-0.149 0.078c-4.833 2.499-40.55 2.744-397.885 2.99-296.059 0.164-394.035-0.287-398.418-1.761zM267.96 135.926c-18.76-0.901-24.166-1.761-29.041-4.588-8.561-4.956-12.247-13.025-11.51-25.108 0.737-10.936 4.096-16.835 13.23-23.020l5.612-3.85h536.617l5.612 3.85c8.847 5.98 12.452 12.042 13.148 22.118 0.091 0.828 0.143 1.789 0.143 2.761 0 10.177-5.684 19.027-14.050 23.547l-0.142 0.070-6.758 3.686-244.941 0.819c-134.676 0.451-255.263 0.287-267.919-0.287z" />
<glyph unicode="&#xe903;" glyph-name="business-hours" d="M505.61 836.997c-4.268-1.691-7.909-4.123-10.935-7.166l-0.002-0.002c-3.686-3.809-27.525-51.814-76.472-154.010l-71.107-148.48-272.835-1.679-9.421-3.891c-12.735-5.253-23.361-13.405-31.414-23.673l-0.125-0.166c-11.837-16.015-11.223-3.236-10.732-230.113l0.492-204.677 3.932-7.414c9.357-16.578 24.344-29.051 42.311-34.951l0.533-0.151c8.397-2.458 51.978-2.703 444.989-2.703h435.732l10.854 3.564c13.88 4.839 25.446 13.379 33.869 24.441l0.128 0.176c12.288 16.138 11.633 2.908 11.141 229.663l-0.451 203.817-4.874 9.216c-10.28 18.654-28.188 32.025-49.409 35.977l-0.44 0.068c-5.939 0.942-64.184 1.679-139.837 1.72l-129.72 0.082-60.498 126.648c-86.262 180.593-83.517 175.104-90.563 179.732-4.863 3.125-10.799 4.982-17.168 4.982-2.836 0-5.586-0.368-8.205-1.059l0.224 0.050zM565.74 636.58c-65.464 152.050-48.217 116.613-31.034 81.139l82.603-189.068c0.696-1.72-20.521-2.13-102.728-2.13-89.047 0-103.506 0.328-102.687 2.417 1.925 5.12 102.441 214.221 102.769 213.852 0.205-0.205 23.142-48.005 51.077-106.209zM948.797 463.974c3.523-4.465 3.523-4.874 3.523-191.037 0-133.12-0.532-187.802-1.884-190.751-1.385-2.601-3.461-4.677-5.985-6.024l-0.078-0.038c-2.99-1.352-121.897-1.761-432.579-1.434l-428.483 0.41-3.236 4.014c-3.195 3.932-3.277 9.462-3.277 192.184 0 187.802 0 188.211 3.523 192.676l3.564 4.506h861.348l3.564-4.506zM214.18 384.635c-27.443-2.499-48.005-12.534-69.14-33.792-23.060-23.183-33.055-47.227-32.973-79.503 0.041-18.391 1.597-26.255 8.602-43.5 17.361-41.226 57.261-69.723 103.865-70.123h0.051c45.22-0.164 84.419 24.044 103.956 64.184 7.050 14.585 11.171 31.718 11.171 49.814 0 19.715-4.891 38.287-13.525 54.57l0.306-0.633c-12.37 23.675-38.953 45.752-66.068 54.845-10.977 3.645-31.293 5.489-46.244 4.137zM379.904 380.989c-3.981-2.346-7.366-5.222-10.191-8.583l-0.049-0.059c-3.523-4.71-3.604-6.431-4.055-98.632-0.532-105.062-0.86-101.868 11.592-110.1 13.148-8.684 29.655-6.226 38.83 5.775 4.424 5.816 4.71 7.209 5.243 27.935l0.532 21.832 45.548 0.492c66.97 0.737 63.324-4.014 63.365 82.575 0.041 59.269 0 59.965-3.891 67.338-2.526 4.916-6.43 8.82-11.202 11.278l-0.144 0.068c-7.373 3.891-8.028 3.932-68.157 3.932-59.72-0.041-60.867-0.123-67.42-3.85zM572.498 382.464c3.932 1.72 17.654 2.253 56.033 2.335 47.391 0.041 51.323-0.164 57.467-3.318 10.363-5.284 14.582-12.534 14.582-25.108 0-11.223-2.662-16.671-11.305-23.142-6.881-5.12-15.77-6.308-47.145-6.349l-29.45-0.041v-27.034l20.070-0.573c17.94-0.492 20.644-0.983 25.805-4.669l0.057-0.045c6.739-5.565 11.264-13.715 12.067-23.056 0.082-8.561-6.39-19.333-14.336-24.003-6.513-3.809-9.134-4.26-25.436-4.26h-18.227v-26.993l34.57-0.573c33.546-0.573 34.734-0.737 40.96-4.874l0.108-0.067c7.754-5.086 12.876-13.856 12.876-23.822 0-10.835-6.053-20.256-15.114-25.141-7.66-4.014-7.741-4.055-59.884-3.523l-52.183 0.492-6.267 4.792c-12.698 9.708-12.165 5.407-12.698 104.038-0.328 58.45 0.123 90.644 1.311 95.068 2.212 8.274 9.175 16.835 16.138 19.866zM743.26 382.177l-0.183-0.076c3.583 1.664 7.553 2.634 11.775 2.739 13.558 0.041 17.039-3.4 62.054-60.662l42.394-53.944 0.86 47.514c0.778 43.663 1.147 47.964 4.301 53.453 7.823 13.517 28.262 17.449 40.837 7.864 12.411-9.462 11.96-5.898 12.575-100.024 0.287-46.449 0.041-88.474-0.532-93.348l-0.024-0.211c-0.714-5.21-2.417-10.105-4.81-14.289-4.301-6.513-16.63-13.312-24.003-13.312-12.82 0-16.916 4.055-61.686 60.948l-42.598 54.149-0.86-47.718c-0.737-40.96-1.27-48.538-3.809-53.166-3.523-6.431-12.534-12.329-20.89-13.681-7.946-1.311-20.070 3.359-25.477 9.789-7.496 8.888-8.069 17.449-7.496 109.404 0.451 75.94 0.819 86.508 3.318 91.054l0.081 0.164c3.134 5.769 8.039 10.436 14.173 13.353zM241.705 326.021c34.079-10.117 50.381-48.005 34.693-80.445-4.424-9.175-18.227-22.077-28.549-26.747-12.206-5.53-32.195-5.161-45.015 0.778-12.546 6.048-22.443 15.932-28.352 28.109l-0.157 0.358c-3.809 8.11-4.506 11.919-4.424 24.125 0.082 12.288 0.778 15.892 4.588 23.224 6.144 11.878 12.165 18.678 21.176 23.962 15.442 9.052 30.515 11.223 46.039 6.636zM472.76 301.24v-25.6h-51.2v51.2h51.2v-25.6z" />
<glyph unicode="&#xe904;" glyph-name="business-reviews" d="M196.28 822.538c-35.062-7.578-67.174-36.209-79.995-71.311l-4.506-12.247-0.451-244.859c-0.451-239.985-0.369-245.105 2.949-258.335 1.884-7.414 6.267-18.596 9.708-24.781 8.11-14.623 28.877-35.389 43.254-43.336 22.241-12.247 20.767-12.042 112.64-13.107 81.756-0.942 82.903-1.024 91.341-4.874 6.636-3.072 20.521-15.892 63.119-58.245 30.065-29.901 57.098-55.583 60.088-57.098 6.308-3.195 19.497-3.645 24.945-0.86 2.048 1.024 28.303 26.337 58.368 56.238 46.612 46.326 56.115 55.009 64.84 59.105l10.24 4.751 82.739 0.942c79.79 0.901 83.19 1.065 94.249 4.751 25.19 8.397 50.749 31.007 62.956 55.747 12.493 25.395 11.878 10.568 11.387 280.412l-0.451 241.828-3.809 11.1c-12.075 33.881-38.291 60.096-71.351 71.916l-0.82 0.256-11.059 3.768-304.66 0.328c-256 0.246-306.422-0.082-315.72-2.089zM803.062 766.996c13.476-2.499 20.685-6.431 29.983-16.384 15.565-16.671 14.336 6.431 14.336-261.652v-236.38l-4.547-9.626c-5.325-11.428-15.565-21.914-26.706-27.402-7.946-3.891-8.684-3.932-90.808-4.874-91.791-1.065-89.293-0.737-113.459-13.189-10.24-5.284-18.555-12.698-58.040-51.814l-46.080-45.67-45.22 44.892c-48.005 47.596-55.419 53.371-79.094 61.317-9.912 3.359-15.319 3.604-93.307 4.506-80.323 0.901-82.985 1.024-90.767 4.628-11.806 6.295-21.23 15.719-27.353 27.173l-0.172 0.352-3.727 7.987v476.16l4.465 9.421c7.782 16.343 22.405 27.894 38.912 30.679 12.861 2.171 579.789 2.048 591.585-0.123zM291.84 659.436c-10.288-4.506-17.344-14.599-17.344-26.339 0-0.359 0.007-0.717 0.020-1.073l-0.002 0.051c0.123-15.811 9.994-25.682 26.706-26.747 8.561-0.492 11.182 0.041 16.056 3.359 10.035 6.922 12.984 12.329 12.984 24.166 0 8.315-0.86 11.756-4.014 16.138-5.661 7.394-14.491 12.114-24.424 12.114-3.575 0-7.007-0.611-10.197-1.735l0.215 0.066zM393.38 659.026c-14.95-6.922-21.176-27.361-12.329-40.509 12.452-18.432 36.127-18.35 48.701 0.205 3.4 4.956 3.932 7.537 3.359 15.77-0.737 10.363-3.891 16.261-12.042 22.323-5.693 4.26-20.644 5.448-27.689 2.212zM495.78 659.026c-14.95-6.922-21.176-27.361-12.329-40.509 12.452-18.432 36.127-18.35 48.701 0.205 3.4 4.956 3.932 7.537 3.359 15.77-0.737 10.363-3.891 16.261-12.042 22.323-5.693 4.26-20.644 5.448-27.689 2.212zM290.98 515.584c-10.404-4.628-16.22-14.459-16.22-27.32 0-8.643 4.997-16.957 13.517-22.733l5.775-3.891h427.377l5.612 3.85c9.871 6.717 12.82 12.247 12.82 24.003 0 12.575-4.219 19.825-14.623 25.108-6.472 3.318-10.691 3.359-217.866 3.318-172.237-0.082-212.214-0.492-216.392-2.335zM290.98 372.224c-10.404-4.628-16.22-14.459-16.22-27.32 0-8.643 4.997-16.957 13.517-22.733l5.775-3.891h304.497l5.612 3.85c9.871 6.717 12.82 12.247 12.82 24.003 0 12.575-4.219 19.825-14.623 25.108-6.431 3.277-10.486 3.359-156.426 3.318-121.037-0.082-150.815-0.532-154.952-2.335z" />
<glyph unicode="&#xe905;" glyph-name="content-toggle" d="M352.42 723.374c-112.394-6.226-209.51-79.421-245.391-184.934-34.243-100.557-7.619-212.050 68.157-285.164 39.283-38.083 89.899-64.686 146.309-74.276l1.639-0.23c15.852-2.703 33.792-2.99 205.947-2.99 150.241 0 191.529 0.492 203.080 2.335 64.061 10.199 115.548 36.618 158.72 81.51 36.823 38.257 60.129 82.698 71.967 137.175 3.359 15.442 3.891 22.733 3.85 52.92-0.041 39.076-2.458 55.009-13.517 88.146-28.59 85.852-101.704 154.010-189.358 176.579-35.021 9.052-28.14 8.765-221.102 9.134-22.99 0.116-50.191 0.182-77.407 0.182-39.691 0-79.349-0.14-118.974-0.42l6.080 0.034zM728.76 663.818c51.414-8.699 95.699-34.389 127.872-70.986l0.21-0.243c31.539-36.413 48.128-74.875 53.002-122.839 2.335-23.020 0.246-51.2-5.366-72.95-18.309-70.984-70.943-128.532-139.018-151.962-33.915-11.674-20.398-11.018-234.701-11.018-180.961 0-194.642 0.205-208.118 3.113-78.93 16.998-142.664 75.817-164.659 151.921-6.513 22.569-8.233 35.308-8.192 61.686 0.041 97.157 63.611 180.838 158.147 208.282 24.617 7.127 28.549 7.291 220.283 7.455 158.351 0.123 186.614-0.205 200.54-2.458zM675.553 640.758c-73.933-6.513-140.042-58.614-163.348-128.778-6.514-18.557-10.277-39.954-10.277-62.229 0-44.524 15.035-85.537 40.305-118.238l-0.332 0.447c52.265-67.584 144.343-92.283 224.379-60.17 70.657 29.146 119.481 97.491 119.481 177.24 0 0.17 0 0.341-0.001 0.511v-0.026c-0.041 113.582-96.379 201.236-210.207 191.242zM733.020 579.359c63.201-19.907 103.219-81.347 95.068-145.9-4.096-32.276-15.974-56.156-39.485-79.34-27.812-27.361-56.361-39.199-94.822-39.199-19.21 0-34.939 2.867-50.299 9.052-40.177 17.094-70.194 51.335-81.172 93.278l-0.216 0.971c-4.178 17.039-3.768 48.66 0.901 66.109 8.275 28.587 24.539 52.675 46.2 70.418l0.249 0.197c28.467 22.569 51.446 29.942 89.457 28.836 16.712-0.492 25.108-1.556 34.12-4.424z" />
<glyph unicode="&#xe906;" glyph-name="countdown" d="M404.972 836.997c-16.998-10.936-16.957-35.758 0.041-48.374 4.506-3.318 7.373-3.604 43.090-4.055l38.298-0.532v-57.139l-21.012-2.867c-127.795-17.408-235.561-102.851-283.607-224.829-8.315-21.012-17.244-56.566-20.48-81.265-1.585-14.020-2.488-30.272-2.488-46.735s0.904-32.714 2.665-48.708l-0.176 1.973c19.983-145.855 125.69-262.456 263.926-298.258l2.478-0.545c25.939-6.715 55.718-10.569 86.397-10.569 70.173 0 135.636 20.167 190.909 55.023l-1.481-0.872c56.255 35.94 100.975 85.389 130.289 143.895l0.947 2.086c67.011 137.626 38.093 304.21-71.311 410.337-7.32 7.211-14.925 14.258-22.741 21.069l-0.606 0.517-6.513 5.243 22.241 20.111c12.247 11.059 23.47 22.569 24.904 25.641 1.588 3.742 2.51 8.093 2.51 12.66 0 4.752-0.999 9.271-2.799 13.358l0.084-0.213c-3.154 6.636-12.247 13.271-20.48 14.991-11.387 2.335-17.367-1.229-47.35-28.099-15.688-14.090-28.754-25.6-29.041-25.6-7.671 3.412-12.97 6.002-18.196 8.712l2.058-0.971c-29.409 14.623-79.585 29.041-112.435 32.317l-12.37 1.229v57.467l76.227 1.065 6.267 4.792c6.926 4.682 11.418 12.505 11.418 21.379 0 0.447-0.011 0.892-0.034 1.334l0.003-0.062c-0.12 9.603-4.611 18.134-11.572 23.71l-0.061 0.047c-4.465 3.318-7.619 3.441-109.568 3.85-103.629 0.41-105.021 0.369-110.428-3.113zM557.67 667.218c69.059-11.018 127.59-41.574 174.162-90.89 50.517-53.444 81.573-125.745 81.573-205.3 0-68.347-22.922-131.34-61.497-181.711l0.527 0.717c-39.363-51.814-101.622-92.979-164.536-108.831-21.979-5.576-47.212-8.775-73.191-8.775-26.101 0-51.448 3.23-75.663 9.312l2.136-0.454c-105.513 26.501-190.341 111.206-216.637 216.31-6.717 26.87-8.479 42.107-8.479 73.605s1.761 46.735 8.479 73.605c26.051 104.12 110.715 189.44 214.057 215.818 36.7 9.38 84.951 12.042 119.071 6.595zM506.429 411.955c-11.51-1.72-22.979-10.445-29.123-22.077-4.342-8.274-4.792-10.568-4.096-20.849 1.556-22.815 16.466-37.356 39.485-38.502 10.854-0.532 13.148-0.041 22.077 4.669l9.994 5.284h82.78c92.938 0 90.767-0.287 99.164 12.411 2.961 4.353 4.727 9.726 4.727 15.511 0 10.924-6.298 20.377-15.461 24.926l-0.162 0.073c-6.595 3.236-10.609 3.4-88.105 3.4-68.649 0-81.347 0.369-82.125 2.417-1.475 3.768-15.114 11.1-23.511 12.575-2.529 0.397-5.446 0.624-8.415 0.624-2.549 0-5.060-0.167-7.521-0.491l0.289 0.031z" />
<glyph unicode="&#xe907;" glyph-name="dual-color-heading" d="M435.241 700.273c-3.277-2.212-7.66-6.636-9.83-9.789l-3.85-5.775v-255.918c0-232.571 0.246-256.451 2.744-261.734 5.243-10.977 19.169-17.244 31.99-14.377 9.276 2.902 16.544 9.781 19.917 18.588l0.072 0.213c1.147 4.014 1.556 91.341 1.229 260.628-0.492 254.075-0.492 254.566-4.014 259.277-6.226 8.356-12.042 11.51-22.487 12.247-8.233 0.573-10.813 0-15.77-3.359zM197.14 593.285c-3.11-1.961-5.808-4.138-8.228-6.59l-0.005-0.005c-1.679-1.925-26.132-68.649-54.313-148.316-46.49-131.359-51.2-145.654-50.545-153.518 1.679-21.463 24.535-32.727 43.008-21.217 7.496 4.669 8.847 7.455 22.282 45.261l12.124 34.12 98.099 0.942 2.294-5.571c1.229-3.072 7.004-19.046 12.82-35.471 8.602-24.453 11.551-30.843 16.261-35.267 11.96-11.346 28.058-11.305 39.485 0.123 7.496 7.537 9.83 16.753 6.922 27.607-3.604 13.435-96.502 275.456-101.048 284.959-2.176 5.277-5.923 9.54-10.653 12.306l-0.119 0.064c-8.438 4.751-21.217 5.038-28.385 0.573zM763.249 593.654c-3.48-1.853-6.408-4.284-8.765-7.197l-0.041-0.053c-1.72-2.458-26.378-70.083-54.723-150.282-28.344-80.159-52.634-147.497-54.026-149.586-3.928-5.176-10.084-8.484-17.013-8.484-1.327 0-2.625 0.121-3.885 0.353l0.131-0.020c-8.561 2.171-12.042 7.946-13.271 21.955-1.106 12.943-3.236 18.432-9.462 24.248-8.643 8.028-20.029 9.421-31.58 3.809-9.708-4.669-14.418-12.657-15.483-26.010-0.086-1.395-0.135-3.025-0.135-4.667 0-20.544 7.677-39.294 20.319-53.539l-0.073 0.083c29.368-32.154 82.412-30.638 112.189 3.195 8.765 9.953 13.312 19.907 26.911 58.9 6.349 18.309 12.329 34.243 13.23 35.43 1.27 1.679 12.616 2.048 50.217 1.72l48.62-0.492 11.469-32.399c13.763-38.83 15.401-42.148 22.856-46.776 20.070-12.411 45.015 1.761 43.295 24.576-0.696 8.806-97.28 284.836-103.301 295.117-7.004 12.042-24.166 16.671-37.478 10.117zM225.28 442.757c7.496-21.053 13.64-39.24 13.64-40.428 0-1.597-6.758-2.13-28.14-2.13-15.483 0-28.18 0.573-28.18 1.311 0 2.089 27.935 80.568 28.467 80.036 0.287-0.287 6.676-17.736 14.213-38.789zM805.028 400.855c-0.369-0.41-13.394-0.532-28.918-0.246l-28.18 0.451 13.476 38.42 14.459 40.96c0.532 1.393 7.455-15.77 15.442-38.175 7.946-22.405 14.131-41.042 13.722-41.411z" />
<glyph unicode="&#xe908;" glyph-name="fancy-heading" d="M392.561 794.071c-10.772-5.448-15.401-13.025-15.401-25.231 0-11.428 4.301-19.128 13.681-24.658 5.816-3.4 8.602-3.482 108.913-3.973 84.869-0.41 102.851-0.901 102.4-2.785-0.328-1.229-45.834-132.465-101.13-291.635l-100.598-289.341-35.103-0.573c-38.502-0.655-41.492-1.352-50.176-11.633-3.794-4.733-6.088-10.81-6.088-17.423 0-2.040 0.218-4.029 0.633-5.944l-0.033 0.184c1.516-8.028 11.592-18.964 19.456-21.176 3.441-0.942 24.781-1.72 47.432-1.72 34.243-0.041 42.721 0.451 50.217 2.908 17.326 5.571 14.991 0.451 61.563 134.513l42.107 121.119 220.119 0.86 34.243-91.75c18.842-50.463 38.912-105.103 44.564-121.487 11.182-32.358 14.336-37.396 27.156-43.172 11.428-5.161 21.258-3.072 30.351 6.39 7.905 8.192 10.486 17.121 7.741 26.706-5.721 17.317-9.874 28.54-14.254 39.65l2.007-5.776c55.006-188.715 16.977-82.599-20.64 23.712l-91.386 296.267c-55.788 160.522-102.769 293.765-104.448 296.1-3.201 3.48-7.001 6.351-11.245 8.46l-0.224 0.101-8.438 4.26-245.76 0.942-7.66-3.891zM689.152 547.82c97.254-308.136 112.749-351.575 128.321-394.978l-82.692 264.029c1.106-2.826-3.932-2.99-91.177-2.99-50.79 0-92.365 0.573-92.365 1.27-0.041 3.891 91.218 263.168 92.242 262.062 0.696-0.778 21.217-58.982 45.67-129.393zM275.62 646.124c-16.384-4.055-25.436-18.924-21.217-34.693 5.652-21.094 33.055-28.672 49.562-13.722 5.893 5.049 9.604 12.499 9.604 20.816 0 6.354-2.166 12.201-5.799 16.845l0.045-0.060c-5.933 7.157-14.826 11.682-24.775 11.682-2.632 0-5.191-0.317-7.639-0.914l0.22 0.045zM355.656 646.083c-23.47-5.612-28.59-38.748-7.987-51.569 6.431-3.973 6.963-4.014 64.84-4.506 37.356-0.328 60.826 0.123 65.126 1.27 8.356 2.253 18.391 12.984 19.948 21.299 0.297 1.564 0.467 3.362 0.467 5.201 0 13.223-8.8 24.391-20.864 27.966l-0.206 0.052c-7.66 2.13-112.558 2.376-121.324 0.287zM145.080 514.396c-9.298-5.448-12.616-11.182-13.353-22.815-0.492-8.643 0.041-11.223 3.359-16.138 2.212-3.195 6.185-7.414 8.806-9.38 4.833-3.523 5.612-3.564 159.416-4.014l154.542-0.451 7.291 4.26c8.028 4.71 14.459 15.483 14.377 24.084-0.795 9.331-5.323 17.47-12.066 23.014l-0.058 0.046-5.734 4.096-155.32 0.41c-154.092 0.41-155.361 0.369-161.26-3.113zM226.918 382.751c-18.473-12.452-18.473-36.25 0-48.701l5.857-3.932 70.369 0.492c68.035 0.451 70.533 0.614 75.080 4.014 9.175 6.84 11.756 12.042 11.756 23.757 0 11.756-2.58 16.957-11.756 23.798-4.547 3.4-7.045 3.564-75.080 4.014l-70.369 0.492-5.857-3.932z" />
<glyph unicode="&#xe909;" glyph-name="google-map" d="M812.36 838.636c-3.277-0.86-47.268-22.077-97.731-47.186l-91.791-45.588-114.606 38.175c4.611 0.354-34.316 13.425-73.413 26.115l-43.692 12.264c-1.597 0.123-3.891-3.973-6.472-11.592-1.585-5.039-3.211-9.19-5.073-13.209l0.281 0.675c-0.41-0.41-3.523 4.669-6.881 11.346s-6.472 12.124-6.922 12.124c-2.867 0-201.81-100.762-211.108-106.947-15.658-10.678-28.234-24.761-36.855-41.24l-0.296-0.621c-12.902-25.764-12.124-4.669-11.592-322.273l0.451-284.18 5.448-11.1c13.599-27.607 41.533-42.639 72.54-39.035 9.503 1.106 21.586 6.636 103.916 47.718l93.102 46.49 116.531-38.83c64.061-21.381 117.105-38.175 117.842-37.356 0.737 0.778 3.113 6.799 5.243 13.353l3.891 11.878 6.062-12.329c3.359-6.758 6.717-12.288 7.455-12.288 2.417 0 203.284 100.925 212.050 106.578 18.76 12.001 36.618 36.086 43.868 59.146l3.973 12.616v575.119l-5.325 11.182c-9.175 19.415-23.921 32.399-43.295 38.175-6.202 1.579-13.321 2.484-20.653 2.484-5.997 0-11.853-0.606-17.509-1.761l0.561 0.096zM839.639 779.858c2.294-2.294 2.621-34.734 2.621-281.149v-278.569l-3.727-7.946c-8.397-17.94-9.83-18.842-99.901-63.898 4.040 0.596-23.553-13.297-51.275-26.968l-32.857-14.647c-0.451 0-0.86 132.833-0.86 295.24v295.24l86.63 43.5c90.808 45.629 92.365 46.203 99.369 39.199zM505.16 724.767l91.341-30.433 0.41-297.247c0.246-163.471-0.123-297.247-0.819-297.247s-43.336 14.008-94.74 31.13l-93.471 31.13v297.533c0 282.583 0.164 297.452 2.99 296.55l94.29-31.416zM351.56 454.84v-295.281l-87.040-43.5c-47.841-23.962-88.596-43.54-90.522-43.54s-5.366 1.925-7.7 4.219l-4.219 4.219 0.451 277.832 0.451 277.791 4.219 8.52c8.602 17.408 12.083 19.579 100.147 63.816 44.933 22.528 82.248 41.042 82.944 41.083s1.27-132.792 1.27-295.158z" />
<glyph unicode="&#xe90a;" glyph-name="how-to-schema" d="M203.080 822.538c-39.526-8.52-74.588-43.377-82.862-82.412-2.007-9.544-2.417-59.761-2.417-312.771-0.041-295.69 0.041-301.629 3.359-314.696 4.751-18.555 13.599-33.546 28.877-48.824 15.36-15.319 30.351-24.166 49.029-28.918 13.271-3.318 18.514-3.4 319.816-2.949l306.299 0.451 11.223 3.809c35.963 12.247 65.577 46.162 73.155 83.763 2.499 12.452 2.499 353.157 0 359.916-2.376 6.349-333.292 337.633-341.606 341.975-6.144 3.195-11.551 3.277-180.060 3.154-141.844-0.123-175.759-0.573-184.812-2.499zM526.95 714.732l0.451-53.248-105.267-1.024-6.431-4.915c-15.647-11.878-14.991-34.038 1.27-46.121 4.588-3.359 7.455-3.604 57.18-4.424l52.347-0.86 0.942-38.38c0.942-39.444 1.802-44.646 10.895-65.208 1.188-2.744-2.744-2.949-57.467-3.441l-58.737-0.492-6.431-4.915c-15.647-11.878-14.991-34.038 1.27-46.121 4.833-3.564 4.997-3.564 221.020-4.424l216.187-0.86v-310.6l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159-7.987-3.932h-600.76l-8.028 3.727c-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v599.040l4.465 9.421c7.741 16.343 22.405 27.894 38.912 30.679 4.301 0.737 75.407 1.229 158.024 1.106l150.159-0.246 0.451-53.248zM699.72 612.25l112.927-113.91-90.931-0.451c-101.089-0.492-101.786-0.41-116.163 10.527-9.472 7.557-16.496 17.817-19.926 29.608l-0.103 0.415c-2.212 9.748-2.499 187.761-0.287 187.761 0.86 0 52.388-51.282 114.483-113.951zM297.82 658.739c-11.428-6.185-16.22-14.131-16.22-26.952 0-8.806 4.874-17.080 13.517-22.897 8.274-5.571 23.634-5.448 33.464 0.328 17.162 10.076 17.367 35.021 0.369 47.596-6.39 4.71-23.962 5.816-31.13 1.925zM297.82 494.899c-11.428-6.185-16.22-14.131-16.22-26.952 0-8.806 4.874-17.080 13.517-22.897 8.274-5.571 23.634-5.448 33.464 0.328 17.162 10.076 17.367 35.021 0.369 47.596-6.39 4.71-23.962 5.816-31.13 1.925zM297.82 331.059c-11.428-6.185-16.22-14.131-16.22-26.952 0-8.806 4.874-17.080 13.517-22.897 8.274-5.571 23.634-5.448 33.464 0.328 17.162 10.076 17.367 35.021 0.369 47.596-6.39 4.71-23.962 5.816-31.13 1.925zM420.7 330.977c-11.346-5.939-16.22-14.008-16.22-26.87 0-8.806 4.874-17.080 13.517-22.897l5.775-3.891h304.456l5.652 3.85c9.83 6.717 12.78 12.247 12.78 24.003 0 12.575-4.219 19.825-14.582 25.108-6.431 3.277-10.527 3.359-156.426 3.359-132.547 0-150.446-0.328-154.952-2.662z" />
<glyph unicode="&#xe90b;" glyph-name="marketing-button" d="M121.16 617.738c-39.567-8.561-74.588-43.377-82.862-82.412-1.884-9.011-2.417-31.375-2.417-107.971-0.041-91.013 0.164-97.321 3.359-109.896 4.751-18.555 13.599-33.546 28.877-48.824 15.36-15.319 30.351-24.166 49.029-28.877 13.271-3.359 18.719-3.4 401.695-2.99l388.26 0.451 11.223 3.809c36.495 12.411 66.232 46.899 73.277 84.951 1.311 6.963 1.72 41.492 1.352 108.38-0.573 95.928-0.655 98.386-4.342 109.199-12.045 33.886-38.254 60.107-71.311 71.916l-0.819 0.255-11.1 3.768-386.54 0.328c-326.083 0.246-388.301-0.082-397.681-2.089zM904.028 559.165c11.223-5.038 24.494-18.924 28.795-30.106 3.113-8.028 3.277-13.804 3.277-101.54v-93.020l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159-7.987-3.932h-764.6l-8.028 3.727c-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v189.44l4.465 9.421c7.741 16.343 22.364 27.894 38.912 30.72 4.301 0.696 176.783 1.229 383.304 1.065l375.439-0.246 8.888-4.014zM251.74 495.104c-30.127-7.642-52.060-34.519-52.060-66.518 0-0.029 0-0.058 0-0.087v0.004c0.041-19.743 5.407-33.505 18.473-47.473 13.926-14.909 29.86-21.75 50.668-21.75 52.511 0 85.074 54.477 60.826 101.868-4.874 9.544-19.046 23.511-28.959 28.467-9.298 4.762-20.284 7.553-31.922 7.553-6.045 0-11.914-0.753-17.518-2.17l0.492 0.105zM420.7 453.857c-11.346-5.939-16.22-14.008-16.22-26.87 0-8.806 4.874-17.080 13.517-22.897l5.775-3.891h386.376l5.652 3.85c9.83 6.717 12.78 12.247 12.78 24.003 0 12.575-4.219 19.825-14.582 25.108-6.472 3.318-10.691 3.359-197.386 3.359-169.697 0-191.365-0.287-195.912-2.662zM278.897 433.746c3.195-4.26 3.195-4.792 0.532-10.445-6.922-14.5-27.935-5.652-21.791 9.175 2.335 5.612 9.175 8.929 14.541 7.004 2.714-1.389 4.966-3.327 6.68-5.681l0.037-0.053z" />
<glyph unicode="&#xe90c;" glyph-name="modal-popup" d="M191.16 829.338c-35.267-7.66-64.963-35.635-79.626-74.998-3.031-8.192-3.195-21.217-3.604-320.389-0.532-346.644-1.188-325.018 11.059-349.471 8.643-17.244 30.515-39.485 47.432-48.169 26.173-13.476-3.85-12.411 347.3-12.411 257.393 0 314.819 0.41 322.56 2.294 37.204 9.934 66.522 36.985 79.409 71.984l0.259 0.802 4.792 13.64v486.687l-4.915 6.431c-11.919 15.647-34.038 14.991-46.121-1.27l-3.564-4.833-1.72-476.774-4.588-9.748c-5.98-12.78-17.695-24.044-29.696-28.549-9.421-3.523-9.626-3.523-317.932-3.072l-308.511 0.41-9.994 5.161c-11.715 5.98-23.47 19.251-26.788 30.228-1.761 5.857-2.212 67.789-2.212 311.951 0 289.423 0.164 304.947 3.072 311.46 7.66 17.080 21.217 29.041 37.356 33.014 5.857 1.434 69.632 1.966 235.848 1.966 157.204 0 229.294 0.573 232.612 1.802 10.564 4.252 17.886 14.415 17.886 26.289 0 0.435-0.010 0.868-0.029 1.298l0.002-0.061c0.010 0.262 0.015 0.571 0.015 0.88 0 9.685-5.484 18.090-13.516 22.278l-0.139 0.066-6.717 3.768-234.414-0.123c-194.765-0.123-236.298-0.573-245.514-2.54zM768.082 826.511c-9.096-4.885-15.176-14.332-15.176-25.199 0-3.881 0.775-7.581 2.18-10.953l-0.070 0.189c1.311-2.99 11.305-14.295 22.159-25.068l19.784-19.538-20.357-20.603c-11.182-11.305-21.176-22.733-22.159-25.354-6.103-16.056 4.628-35.43 21.135-38.093 13.353-2.171 17.531 0.123 39.444 21.791 11.305 11.182 21.258 20.316 22.118 20.316 0.819 0 10.772-9.134 22.077-20.316 21.914-21.668 26.092-23.962 39.444-21.791 16.507 2.662 27.238 22.036 21.135 38.093-0.983 2.621-10.977 14.049-22.159 25.354l-20.357 20.603 19.784 19.538c25.6 25.354 28.795 32.768 21.012 48.865-5.53 11.387-16.916 17.121-30.228 15.114-7.168-1.065-9.708-2.99-29.368-22.323l-21.504-21.135-17.859 18.022c-22.159 22.323-25.108 24.494-35.267 25.641-1.14 0.206-2.452 0.324-3.792 0.324-4.444 0-8.585-1.296-12.066-3.531l0.089 0.053zM386.58 658.862c-50.012-11.182-90.112-49.603-104.407-100.024-2.908-10.158-3.113-19.907-3.113-130.458 0-118.989 0-119.521 3.85-132.792 14.045-47.349 50.923-83.753 97.553-96.876l0.997-0.24c13.148-3.564 17.326-3.727 117.309-4.342 111.78-0.737 130.335 0.123 152.535 7.168 33.382 10.527 64.758 38.257 80.773 71.434 13.189 27.279 12.902 23.388 12.902 154.788 0 123.126 0 122.798-7.946 145.080-10.527 29.368-38.912 60.498-68.854 75.53-5.455 2.695-12.226 5.493-19.184 7.886l-1.296 0.388-11.96 4.014-119.48 0.369c-94.659 0.287-121.569-0.123-129.679-1.925zM623.124 603.279c27.648-5.243 51.2-25.846 61.563-53.862 3.564-9.748 3.727-13.025 4.424-89.047 0.369-43.418 0.164-78.93-0.41-78.93-0.614 0-37.356 20.152-81.633 44.769-44.524 24.781-85.893 46.653-92.488 48.906-24.207 8.274-56.689 6.349-80.364-4.751-13.476-6.308-20.931-11.837-62.956-46.858-18.719-15.647-34.652-28.426-35.389-28.426-2.048 0-1.638 128.737 0.41 141.681 5.079 31.744 32.276 60.334 63.283 66.396 10.895 2.171 212.296 2.253 223.56 0.123zM493.691 421.745c4.301-1.311 49.684-25.6 100.762-53.985l92.938-51.61-1.679-6.185c-4.751-17.572-24.003-41.247-40.223-49.521-17.121-8.724-17.203-8.724-133.652-8.724-101.745 0-109.445 0.205-119.071 3.236-14.541 4.506-23.429 10.158-34.857 22.118-9.667 10.158-18.514 25.969-20.767 37.151-1.065 5.243-0.205 6.062 54.6 51.773 30.638 25.559 58.45 48.087 61.809 50.053 12.698 7.496 27.279 9.585 40.141 5.693z" />
<glyph unicode="&#xe90d;" glyph-name="multi-button" d="M203.080 822.538c-39.567-8.561-74.588-43.377-82.862-82.412-1.843-8.806-2.417-28.508-2.417-87.491-0.041-70.533 0.205-77.046 3.359-89.416 4.751-18.555 13.599-33.546 28.877-48.824 15.36-15.319 30.351-24.166 49.029-28.918 13.271-3.318 18.514-3.4 319.816-2.949l306.299 0.451 11.223 3.809c29.082 9.912 56.689 36.536 67.789 65.331 6.881 17.981 7.414 26.296 6.799 107.52-0.573 74.588-0.737 78.070-4.342 88.719-12.026 33.885-38.223 60.108-71.271 71.916l-0.819 0.255-11.1 3.768-304.62 0.328c-256 0.246-306.422-0.082-315.761-2.089zM822.108 763.965c11.223-5.038 24.494-18.924 28.795-30.106 3.072-7.946 3.277-13.517 3.277-81.060v-72.54l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159-7.987-3.932h-600.76l-8.028 3.727c-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v148.48l4.465 9.421c7.277 15.753 21.465 27.242 38.567 30.662l0.345 0.058c4.301 0.737 139.919 1.229 301.384 1.065l293.519-0.246 8.888-4.014zM297.82 679.137c-11.346-5.939-16.22-14.008-16.22-26.87 0-8.806 4.874-17.080 13.517-22.897l5.775-3.891h427.336l5.652 3.85c9.83 6.717 12.78 12.247 12.78 24.003 0 12.575-4.219 19.825-14.582 25.108-6.472 3.318-10.772 3.359-217.866 3.359-188.252 0-211.845-0.287-216.392-2.662zM203.080 371.978c-39.567-8.561-74.588-43.377-82.862-82.412-1.843-8.806-2.417-28.508-2.417-87.491-0.041-70.533 0.205-77.046 3.359-89.416 4.751-18.555 13.599-33.546 28.877-48.824 15.36-15.319 30.351-24.166 49.029-28.918 13.271-3.318 18.514-3.4 319.816-2.949l306.299 0.451 11.223 3.809c29.082 9.912 56.689 36.536 67.789 65.331 6.881 17.981 7.414 26.296 6.799 107.52-0.573 74.588-0.737 78.070-4.342 88.719-12.026 33.885-38.223 60.108-71.271 71.916l-0.819 0.255-11.1 3.768-304.62 0.328c-256 0.246-306.422-0.082-315.761-2.089zM822.108 313.405c11.223-5.038 24.494-18.924 28.795-30.106 3.072-7.946 3.277-13.517 3.277-81.060v-72.54l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159-7.987-3.932h-600.76l-8.028 3.727c-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v148.48l4.465 9.421c7.277 15.753 21.465 27.242 38.567 30.662l0.345 0.058c4.301 0.737 139.919 1.229 301.384 1.065l293.519-0.246 8.888-4.014zM297.82 228.577c-11.346-5.939-16.22-14.008-16.22-26.87 0-8.806 4.874-17.080 13.517-22.897l5.775-3.891h427.336l5.652 3.85c9.83 6.717 12.78 12.247 12.78 24.003 0 12.575-4.219 19.825-14.582 25.108-6.472 3.318-10.772 3.359-217.866 3.359-188.252 0-211.845-0.287-216.392-2.662z" />
<glyph unicode="&#xe90e;" glyph-name="nav-menu" d="M225.116 639.242c-11.798-3.701-20.207-14.535-20.207-27.334 0-5.142 1.357-9.967 3.733-14.136l-0.074 0.141c2.089-3.686 6.513-8.397 9.83-10.486l6.021-3.768 273.94-0.492c150.651-0.287 278.118 0 283.279 0.614 7.987 0.942 10.363 2.13 16.466 8.233 7.823 7.823 10.322 15.565 8.356 25.969-1.597 8.602-11.878 19.21-20.521 21.217-8.356 1.925-554.435 1.966-560.824 0.041zM225.116 475.402c-11.798-3.701-20.207-14.535-20.207-27.334 0-5.142 1.357-9.967 3.733-14.136l-0.074 0.141c2.089-3.686 6.513-8.397 9.83-10.486l6.021-3.768 273.94-0.492c150.651-0.287 278.118 0 283.279 0.614 7.987 0.942 10.363 2.13 16.466 8.233 7.823 7.823 10.322 15.565 8.356 25.969-1.597 8.602-11.878 19.21-20.521 21.217-8.356 1.925-554.435 1.966-560.824 0.041zM225.116 311.562c-11.798-3.701-20.207-14.535-20.207-27.334 0-5.142 1.357-9.967 3.733-14.136l-0.074 0.141c2.089-3.686 6.513-8.397 9.83-10.486l6.021-3.768 273.94-0.492c150.651-0.287 278.118 0 283.279 0.614 7.987 0.942 10.363 2.13 16.466 8.233 7.823 7.823 10.322 15.565 8.356 25.969-1.597 8.602-11.878 19.21-20.521 21.217-8.356 1.925-554.435 1.966-560.824 0.041z" />
<glyph unicode="&#xe90f;" glyph-name="off-canvas" d="M192.307 854.979c-19.497-3.891-35.758-13.107-52.47-29.778-15.974-15.892-24.535-30.024-30.024-49.521-2.99-10.568-3.154-25.682-3.154-325.14 0-257.229 0.41-315.72 2.294-323.379 7.455-30.433 30.72-59.515 58.286-72.868 7.987-3.891 18.76-8.069 23.921-9.339 7.66-1.884 66.15-2.294 323.42-2.294 299.418 0 314.532 0.164 325.1 3.154 35.84 10.117 65.454 39.076 77.906 76.227 3.031 8.97 3.195 23.265 3.645 321.7 0.532 347.013 1.147 327.229-10.813 351.56-14.746 30.065-43.786 53.166-74.998 59.72-17.162 3.604-625.009 3.564-643.113-0.041zM820.183 799.437c29.204-5.284 45.056-28.18 45.097-65.126v-9.83h-701.44v15.77c0 8.684 0.819 18.637 1.761 22.077 4.628 16.589 22.036 32.973 39.076 36.618 12.902 2.785 600.31 3.236 615.506 0.492zM513.72 383.16v-283.32h-153.559c-150.077 0-153.723 0.082-162.775 3.482-13.582 5.874-24.19 16.483-29.923 29.697l-0.142 0.367c-3.441 9.134-3.482 12.165-3.482 271.155v261.898h349.88v-283.279zM864.911 404.050l-0.492-262.39-4.506-9.626c-5.727-11.652-14.556-21.033-25.416-27.28l-0.307-0.163-7.291-3.891-255.181-0.942v566.682h293.642l-0.451-262.39zM634.348 594.022c-12.657-4.547-18.227-12.861-18.227-27.075 0-10.854 4.424-18.719 13.64-24.125 5.816-3.4 8.356-3.523 87.040-3.523h81.060l5.489 3.932c9.503 6.758 13.23 13.64 13.23 24.371 0 7.864-0.86 10.732-4.751 15.811-9.585 12.575-6.636 12.165-93.307 12.616-62.546 0.287-78.93-0.082-84.173-2.007zM634.348 471.142c-12.657-4.547-18.227-12.861-18.227-27.075 0-10.854 4.424-18.719 13.64-24.125 5.816-3.4 8.356-3.523 87.040-3.523h81.060l5.489 3.932c9.503 6.758 13.23 13.64 13.23 24.371 0 7.864-0.86 10.732-4.751 15.811-9.585 12.575-6.636 12.165-93.307 12.616-62.546 0.287-78.93-0.082-84.173-2.007zM634.348 348.262c-12.657-4.547-18.227-12.861-18.227-27.075 0-10.854 4.424-18.719 13.64-24.125 5.816-3.4 8.356-3.523 87.040-3.523h81.060l5.489 3.932c9.503 6.758 13.23 13.64 13.23 24.371 0 7.864-0.86 10.732-4.751 15.811-9.585 12.575-6.636 12.165-93.307 12.616-62.546 0.287-78.93-0.082-84.173-2.007zM634.348 225.382c-12.657-4.547-18.227-12.861-18.227-27.075 0-10.854 4.424-18.719 13.64-24.125 5.816-3.4 8.356-3.523 87.040-3.523h81.060l5.489 3.932c9.503 6.758 13.23 13.64 13.23 24.371 0 7.864-0.86 10.732-4.751 15.811-9.585 12.575-6.636 12.165-93.307 12.616-62.546 0.287-78.93-0.082-84.173-2.007z" />
<glyph unicode="&#xe910;" glyph-name="posts" d="M203.080 904.499c-39.69-8.724-74.588-43.418-82.862-82.452-1.843-8.806-2.417-28.508-2.417-87.491-0.041-70.533 0.205-77.046 3.359-89.416 4.751-18.555 13.599-33.546 28.877-48.824 15.401-15.36 30.351-24.166 49.275-28.959 12.943-3.277 17.94-3.441 94.495-2.908 78.193 0.492 81.183 0.655 92.037 4.301 29 9.789 56.689 36.454 67.789 65.29 6.881 17.981 7.414 26.296 6.799 107.52-0.573 74.588-0.737 78.070-4.342 88.719-12.005 33.887-38.211 60.107-71.272 71.877l-0.817 0.254c-10.732 3.604-13.763 3.768-90.44 4.137-63.447 0.287-81.592-0.123-90.481-2.048zM653.64 904.499c-39.69-8.724-74.588-43.418-82.862-82.452-1.966-9.339-2.417-39.854-2.417-169.411-0.041-152.412 0.082-158.474 3.359-171.336 4.751-18.555 13.599-33.546 28.877-48.824 15.401-15.36 30.351-24.166 49.275-28.959 12.943-3.277 17.94-3.441 94.495-2.908 78.193 0.492 81.183 0.655 92.037 4.301 36.413 12.288 66.314 46.899 73.277 84.91 1.311 7.127 1.72 58.9 1.352 169.82l-0.532 159.539-3.768 11.1c-12.075 33.87-38.292 60.074-71.352 71.875l-0.82 0.255c-10.732 3.604-13.763 3.768-90.44 4.137-63.447 0.287-81.592-0.123-90.481-2.048zM371.548 845.885c11.223-5.038 24.494-18.924 28.795-30.106 3.072-7.946 3.277-13.517 3.277-81.060v-72.54l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159c-7.987-3.932-8.069-3.932-83.067-3.932-73.482 0-75.284 0.082-83.149 3.727-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v148.48l4.465 9.421c7.741 16.302 22.282 27.812 38.912 30.761 4.301 0.737 38.543 1.229 76.104 1.065 67.707-0.246 68.321-0.287 77.128-4.301zM822.108 845.885c11.223-5.038 24.494-18.924 28.795-30.106 3.154-8.192 3.277-14.582 3.277-162.98v-154.46l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159c-7.987-3.932-8.069-3.932-83.067-3.932-73.482 0-75.284 0.082-83.149 3.727-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v312.32l4.465 9.421c7.741 16.302 22.282 27.812 38.912 30.761 4.301 0.737 38.543 1.229 76.104 1.065 67.707-0.246 68.321-0.287 77.128-4.301zM203.080 453.939c-39.69-8.724-74.588-43.418-82.862-82.452-1.966-9.339-2.417-39.854-2.417-169.411-0.041-152.412 0.082-158.474 3.359-171.336 4.751-18.555 13.599-33.546 28.877-48.824 15.401-15.36 30.351-24.166 49.275-28.959 12.943-3.277 17.94-3.441 94.495-2.908 78.193 0.492 81.183 0.655 92.037 4.301 36.413 12.288 66.314 46.899 73.277 84.91 1.311 7.127 1.72 58.9 1.352 169.82l-0.532 159.539-3.768 11.1c-12.075 33.87-38.292 60.074-71.352 71.875l-0.82 0.255c-10.732 3.604-13.763 3.768-90.44 4.137-63.447 0.287-81.592-0.123-90.481-2.048zM371.548 395.325c11.223-5.038 24.494-18.924 28.795-30.106 3.154-8.192 3.277-14.582 3.277-162.98v-154.46l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159c-7.987-3.932-8.069-3.932-83.067-3.932-73.482 0-75.284 0.082-83.149 3.727-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v312.32l4.465 9.421c7.741 16.302 22.282 27.812 38.912 30.761 4.301 0.737 38.543 1.229 76.104 1.065 67.707-0.246 68.321-0.287 77.128-4.301zM653.64 290.099c-39.69-8.724-74.588-43.418-82.862-82.452-1.843-8.806-2.417-28.508-2.417-87.491-0.041-70.533 0.205-77.046 3.359-89.416 4.751-18.555 13.599-33.546 28.877-48.824 15.401-15.36 30.351-24.166 49.275-28.959 12.943-3.277 17.94-3.441 94.495-2.908 78.193 0.492 81.183 0.655 92.037 4.301 29 9.789 56.689 36.454 67.789 65.29 6.881 17.981 7.414 26.296 6.799 107.52-0.573 74.588-0.737 78.070-4.342 88.719-12.005 33.887-38.211 60.107-71.272 71.877l-0.817 0.254c-10.732 3.604-13.763 3.768-90.44 4.137-63.447 0.287-81.592-0.123-90.481-2.048zM822.108 231.485c11.223-5.038 24.494-18.924 28.795-30.106 3.072-7.946 3.277-13.517 3.277-81.060v-72.54l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159c-7.987-3.932-8.069-3.932-83.067-3.932-73.482 0-75.284 0.082-83.149 3.727-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v148.48l4.465 9.421c7.741 16.302 22.282 27.812 38.912 30.761 4.301 0.737 38.543 1.229 76.104 1.065 67.707-0.246 68.321-0.287 77.128-4.301z" />
<glyph unicode="&#xe911;" glyph-name="posts-grid" d="M203.080 822.579c-39.69-8.724-74.588-43.418-82.862-82.452-1.843-8.806-2.417-28.508-2.417-87.491-0.041-70.533 0.205-77.046 3.359-89.416 4.751-18.555 13.599-33.546 28.877-48.824 15.401-15.36 30.351-24.166 49.275-28.959 12.943-3.277 17.94-3.441 94.495-2.908 78.193 0.492 81.183 0.655 92.037 4.301 29 9.789 56.689 36.454 67.789 65.29 6.881 17.981 7.414 26.296 6.799 107.52-0.573 74.588-0.737 78.070-4.342 88.719-12.005 33.887-38.211 60.107-71.272 71.877l-0.817 0.254c-10.732 3.604-13.763 3.768-90.44 4.137-63.447 0.287-81.592-0.123-90.481-2.048zM653.64 822.579c-39.69-8.724-74.588-43.418-82.862-82.452-1.843-8.806-2.417-28.508-2.417-87.491-0.041-70.533 0.205-77.046 3.359-89.416 4.751-18.555 13.599-33.546 28.877-48.824 15.401-15.36 30.351-24.166 49.275-28.959 12.943-3.277 17.94-3.441 94.495-2.908 78.193 0.492 81.183 0.655 92.037 4.301 29 9.789 56.689 36.454 67.789 65.29 6.881 17.981 7.414 26.296 6.799 107.52-0.573 74.588-0.737 78.070-4.342 88.719-12.005 33.887-38.211 60.107-71.272 71.877l-0.817 0.254c-10.732 3.604-13.763 3.768-90.44 4.137-63.447 0.287-81.592-0.123-90.481-2.048zM371.548 763.965c11.223-5.038 24.494-18.924 28.795-30.106 3.072-7.946 3.277-13.517 3.277-81.060v-72.54l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159c-7.987-3.932-8.069-3.932-83.067-3.932-73.482 0-75.284 0.082-83.149 3.727-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v148.48l4.465 9.421c7.741 16.302 22.282 27.812 38.912 30.761 4.301 0.737 38.543 1.229 76.104 1.065 67.707-0.246 68.321-0.287 77.128-4.301zM822.108 763.965c11.223-5.038 24.494-18.924 28.795-30.106 3.072-7.946 3.277-13.517 3.277-81.060v-72.54l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159c-7.987-3.932-8.069-3.932-83.067-3.932-73.482 0-75.284 0.082-83.149 3.727-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v148.48l4.465 9.421c7.741 16.302 22.282 27.812 38.912 30.761 4.301 0.737 38.543 1.229 76.104 1.065 67.707-0.246 68.321-0.287 77.128-4.301zM203.080 372.019c-39.69-8.724-74.588-43.418-82.862-82.452-1.843-8.806-2.417-28.508-2.417-87.491-0.041-70.533 0.205-77.046 3.359-89.416 4.751-18.555 13.599-33.546 28.877-48.824 15.401-15.36 30.351-24.166 49.275-28.959 12.943-3.277 17.94-3.441 94.495-2.908 78.193 0.492 81.183 0.655 92.037 4.301 29 9.789 56.689 36.454 67.789 65.29 6.881 17.981 7.414 26.296 6.799 107.52-0.573 74.588-0.737 78.070-4.342 88.719-12.005 33.887-38.211 60.107-71.272 71.877l-0.817 0.254c-10.732 3.604-13.763 3.768-90.44 4.137-63.447 0.287-81.592-0.123-90.481-2.048zM653.64 372.019c-39.69-8.724-74.588-43.418-82.862-82.452-1.843-8.806-2.417-28.508-2.417-87.491-0.041-70.533 0.205-77.046 3.359-89.416 4.751-18.555 13.599-33.546 28.877-48.824 15.401-15.36 30.351-24.166 49.275-28.959 12.943-3.277 17.94-3.441 94.495-2.908 78.193 0.492 81.183 0.655 92.037 4.301 29 9.789 56.689 36.454 67.789 65.29 6.881 17.981 7.414 26.296 6.799 107.52-0.573 74.588-0.737 78.070-4.342 88.719-12.005 33.887-38.211 60.107-71.272 71.877l-0.817 0.254c-10.732 3.604-13.763 3.768-90.44 4.137-63.447 0.287-81.592-0.123-90.481-2.048zM371.548 313.405c11.223-5.038 24.494-18.924 28.795-30.106 3.072-7.946 3.277-13.517 3.277-81.060v-72.54l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159c-7.987-3.932-8.069-3.932-83.067-3.932-73.482 0-75.284 0.082-83.149 3.727-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v148.48l4.465 9.421c7.741 16.302 22.282 27.812 38.912 30.761 4.301 0.737 38.543 1.229 76.104 1.065 67.707-0.246 68.321-0.287 77.128-4.301zM822.108 313.405c11.223-5.038 24.494-18.924 28.795-30.106 3.072-7.946 3.277-13.517 3.277-81.060v-72.54l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159c-7.987-3.932-8.069-3.932-83.067-3.932-73.482 0-75.284 0.082-83.149 3.727-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v148.48l4.465 9.421c7.741 16.302 22.282 27.812 38.912 30.761 4.301 0.737 38.543 1.229 76.104 1.065 67.707-0.246 68.321-0.287 77.128-4.301z" />
<glyph unicode="&#xe912;" glyph-name="table" d="M175.227 834.335c-32.741-7.199-59.501-28.261-74.259-56.574l-0.288-0.606c-12.861-24.74-12.042 1.106-11.51-353.403l0.451-317.932 3.809-11.305c10.363-30.433 37.765-58.081 68.895-69.427l12.616-4.628 307.2-0.532c225.567-0.369 310.354 0 319.16 1.434 26.706 4.383 55.869 23.757 71.27 47.391 15.114 23.142 18.842 38.789 18.022 75.121-0.492 21.176-0.983 24.576-4.137 28.795-12.575 16.957-34.898 16.957-47.473 0.041-3.072-4.219-3.686-8.069-4.506-29.901-0.86-22.077-1.516-26.173-5.325-34.447-5.53-11.878-15.032-21.381-27.034-27.116l-9.38-4.465-152.74-0.983v445.604h10.65c7.7 0 19.005-2.376 40.264-8.479 34.12-9.748 42.516-13.394 49.684-21.545 7.987-9.134 11.223-16.753 19.866-46.981 8.888-31.212 10.281-34.529 17.203-41.083 11.592-11.018 30.106-10.117 41.656 1.966 5.325 5.571 7.086 9.912 14.254 35.226 9.585 33.915 12.247 40.509 19.743 49.029 8.561 9.789 17.039 13.64 50.381 23.183 16.876 4.792 32.604 10.158 34.98 11.837 7.821 5.513 12.868 14.508 12.868 24.682 0 8.513-3.533 16.2-9.213 21.676l-0.009 0.009c-5.53 5.489-9.38 7.045-35.226 14.336-34.857 9.789-40.96 12.329-50.258 20.726-9.667 8.724-12.247 14.377-21.545 47.022-4.424 15.36-9.421 30.761-11.141 34.202-4.791 9.738-14.642 16.321-26.030 16.321-2.629 0-5.175-0.351-7.596-1.008l0.203 0.047c-16.138-4.301-19.374-9.421-30.31-47.841-9.093-32.031-13.517-41.779-22.487-49.644-8.274-7.291-12.861-9.134-47.596-19.046-20.808-5.98-32.031-8.315-39.69-8.315h-10.65v201.359h171.213l7.25-4.219c9.503-5.571 13.967-13.148 15.933-27.034 1.925-13.64 6.554-20.849 16.22-25.231 3.505-1.899 7.674-3.015 12.104-3.015s8.598 1.116 12.241 3.082l-0.137-0.068c14.664 6.676 19.128 21.996 13.681 46.572-7.086 31.703-34.734 58.573-67.379 65.495-17.244 3.645-628.777 3.359-645.898-0.328zM354.591 678.81l-0.451-100.27-209.183-0.86 0.983 161.3 4.055 9.011c4.915 10.895 19.292 24.617 29.614 28.262 6.103 2.171 20.972 2.58 91.341 2.703l84.050 0.123-0.41-100.27zM581.96 678.4v-100.68h-170.639v201.359h170.639v-100.68zM812.278 563.958c4.26-4.26 9.912-9.257 12.534-11.1l4.751-3.359-8.684-6.472c-5.906-4.724-11.105-9.897-15.702-15.579l-0.149-0.191-7.168-9.298-5.98 7.25c-5.627 7.276-11.959 13.596-19.009 19.030l-0.243 0.18-6.472 5.12 8.684 6.84c4.792 3.768 11.878 10.936 15.77 15.933l7.045 9.134 3.441-4.874c1.884-2.662 6.922-8.356 11.182-12.616zM354.591 427.93l0.41-92.57h-209.92v186.040l209.060-0.86 0.451-92.611zM581.96 428.38v-93.020h-170.639v186.040h170.639v-93.020zM744.407 358.093c-8.52-4.219-13.558-12.165-18.391-28.918-2.376-8.315-5.284-16.138-6.472-17.326-1.147-1.188-7.823-3.768-14.787-5.734-17.49-4.956-24.781-8.97-29.614-16.425-7.823-12.124-7.168-25.559 1.761-36.209 5.693-6.717 8.192-7.987 25.969-13.148 8.151-2.335 15.647-4.956 16.671-5.816s3.686-8.192 5.857-16.261c4.178-15.524 8.233-23.020 15.442-28.344 9.83-7.291 26.173-6.799 36.618 1.147 5.857 4.506 9.216 11.346 14.418 29.532 4.096 14.131 5.693 15.606 22.2 19.988 22.323 5.898 32.44 16.097 32.44 32.563 0 16.425-9.871 26.214-32.44 32.276-16.384 4.342-18.104 5.939-22.118 20.111-5.284 18.555-9.789 26.46-17.981 31.252-4.649 2.606-10.202 4.141-16.113 4.141-4.871 0-9.498-1.042-13.671-2.915l0.211 0.085zM354.14 177.5v-100.721l-77.66-0.492c-53.002-0.328-80.896 0.123-87.859 1.434-19.251 3.686-37.642 20.931-41.738 39.199-1.925 8.52-2.54 159.13-0.655 161.014 0.614 0.614 47.677 0.942 104.53 0.696l103.383-0.451v-100.68zM581.96 177.5v-101.54h-170.639v100.393c0 55.214 0.492 100.925 1.106 101.54 0.655 0.655 39.035 1.147 85.361 1.147h84.173v-101.54z" />
<glyph unicode="&#xe913;" glyph-name="table-of-content" d="M223.519 844.001c-44.278-5.816-84.705-44.073-92.078-87.163-1.311-7.823-1.72-99.369-1.352-315.679l0.492-304.62 4.465-11.51c12.984-33.464 38.175-58.122 70.615-69.181l13.64-4.669h305.521c342.508 0 313.426-1.024 339.599 12.452 17.162 8.847 38.912 31.007 47.473 48.374 12.042 24.535 11.346 4.014 11.346 335.995s0.696 311.46-11.346 335.995c-8.602 17.449-30.269 39.526-47.636 48.497-25.846 13.353 3.318 12.247-331.776 12.493-164.741 0.164-303.759-0.287-308.961-0.983zM828.047 785.879c17.654-4.915 33.833-23.060 37.069-41.533 2.621-15.155 2.621-577.536 0-592.691-3.236-18.596-19.579-36.782-37.356-41.574-4.301-1.147-105.677-1.597-304.906-1.311l-298.435 0.451-7.66 3.973c-11.212 6.076-20.113 15.188-25.766 26.236l-0.161 0.347-3.932 8.684v298.68c0 289.669 0.082 298.926 3.236 307.118 5.243 13.599 17.285 25.108 32.604 31.089 6.758 2.662 595.763 3.154 605.307 0.532zM313.672 639.201c-11.719-3.496-20.117-14.176-20.117-26.818 0-0.191 0.002-0.381 0.006-0.571v0.028c0-9.912 4.383-18.268 12.493-23.634l6.881-4.547h427.172l6.267 4.301c7.459 5.533 12.424 14.065 13.102 23.778l0.006 0.102c-0.683 9.815-5.648 18.347-13.020 23.818l-0.087 0.062-6.267 4.26-210.903 0.328c-115.999 0.164-212.992-0.369-215.532-1.106zM313.672 475.361c-11.717-3.481-20.117-14.153-20.117-26.788 0-0.202 0.002-0.403 0.006-0.603l-0.001 0.030c0-9.912 4.383-18.268 12.493-23.634l6.881-4.547h358.892l6.308 4.301c7.443 5.54 12.393 14.071 13.061 23.779l0.006 0.101c-0.673 9.809-5.623 18.34-12.98 23.818l-0.086 0.061-6.308 4.26-176.783 0.328c-97.198 0.164-178.831-0.328-181.371-1.106zM313.672 311.521c-11.719-3.496-20.117-14.176-20.117-26.818 0-0.191 0.002-0.381 0.006-0.571v0.028c0-9.912 4.383-18.268 12.493-23.634l6.881-4.547h263.332l6.267 4.301c7.459 5.533 12.424 14.065 13.102 23.778l0.006 0.102c-0.683 9.815-5.648 18.347-13.020 23.818l-0.087 0.062-6.267 4.26-128.983 0.328c-70.943 0.164-131.072-0.328-133.612-1.106z" />
<glyph unicode="&#xe914;" glyph-name="team-member" d="M483 813.076c-114.688-12.82-209.224-99.328-233.882-214.057-4.669-21.832-6.472-68.321-3.441-89.457 13.271-92.57 67.011-167.485 149.832-208.937 54.108-27.034 123.331-34.447 183.91-19.62 68.977 16.916 127.713 60.129 166.38 122.47 27.771 44.728 40.878 95.805 38.748 150.774-3.441 88.801-47.186 166.912-120.668 215.409-42.106 28.327-93.96 45.213-149.757 45.213-10.967 0-21.781-0.652-32.406-1.92l1.284 0.125zM548.946 755.036c26.501-3.932 60.498-17.367 84.787-33.464 15.852-10.486 40.018-33.71 52.347-50.217 31.13-41.738 46.449-96.788 41.042-147.497-3.686-34.693-14.254-66.601-30.515-91.996l-4.628-7.332c-4.731 1.538-8.714 3.202-12.534 5.142l0.492-0.227c-100.762 45.752-224.338 46.612-325.632 2.171-19.62-8.602-16.916-9.789-28.959 12.984-49.275 93.143-23.020 207.708 62.136 271.237 45.588 33.997 102.973 47.923 161.464 39.199zM491.069 704.901c-38.748-8.069-72.54-40.591-82.534-79.421-1.846-8.062-2.904-17.32-2.904-26.825 0-12.061 1.704-23.725 4.884-34.763l-0.218 0.885c16.998-53.33 70.083-84.337 126.566-73.974 37.519 6.922 72.131 39.035 82.534 76.636 4.301 15.524 4.71 41.738 0.901 57.876-5.571 23.757-24.945 50.299-47.514 65.085-21.463 14.090-55.132 20.070-81.715 14.5zM537.108 644.854c3.564-1.679 9.994-6.554 14.336-10.895 32.399-32.276 9.134-87.532-36.864-87.613-38.134-0.041-63.365 39.076-47.227 73.155 4.915 10.363 14.582 20.685 24.003 25.518 11.796 6.103 32.604 6.021 45.752-0.164zM560.988 404.419c29.573-3.85 81.92-18.391 87.982-24.412 3.85-3.85-38.748-29-63.816-37.724-25.395-8.765-40.509-11.182-70.574-11.182-39.649 0-64.881 6.021-99 23.716-16.507 8.52-36.7 22.241-36.7 24.904 0 0.737 1.352 1.761 2.99 2.253l22.774 7.741c19.332 6.772 42.111 12.208 65.622 15.329l1.798 0.195c20.644 2.376 67.584 1.966 88.924-0.819zM154.378 198.144c-7.584-3.865-13.201-10.673-15.395-18.88l-0.047-0.208c-0.486-1.974-0.765-4.241-0.765-6.572 0-10.293 5.432-19.318 13.585-24.364l0.123-0.071 5.652-3.85h714.056l5.652 3.85c9.871 6.717 12.78 12.206 12.78 24.166 0 8.929-0.737 11.633-4.588 16.671-9.667 12.698 23.962 11.674-371.139 11.592-291.062-0.082-355.656-0.492-359.916-2.335zM327.967 95.252c-14.131-6.963-20.275-27.402-11.919-39.731 2.212-3.277 6.636-7.7 9.789-9.83l5.775-3.891h365.896l5.652 3.85c8.806 6.021 12.411 12.083 13.148 22.118 0.125 0.954 0.197 2.056 0.197 3.176 0 10.32-6.087 19.218-14.866 23.3l-0.158 0.066-7.578 3.809-180.142-0.041c-163.267 0-180.634-0.287-185.795-2.826z" />
<glyph unicode="&#xe915;" glyph-name="testimonial" d="M203.080 822.538c-39.567-8.561-74.588-43.377-82.862-82.412-2.007-9.503-2.417-51.241-2.417-251.331-0.041-234.291 0.041-240.23 3.359-253.256 1.884-7.332 6.226-18.391 9.667-24.576 8.11-14.582 28.877-35.348 43.254-43.295 22.241-12.247 20.767-12.042 112.64-13.107l82.78-0.983 10.24-4.751c8.806-4.096 17.49-12.042 62.3-57.016 28.631-28.754 54.641-54.067 57.836-56.279 6.39-4.383 19.702-5.448 26.296-2.048 2.089 1.024 28.344 26.337 58.368 56.238 46.612 46.326 56.156 55.009 64.881 59.105l10.199 4.751 82.78 0.942c79.299 0.901 83.231 1.106 94.003 4.669 36.291 12.124 66.314 46.899 73.277 84.869 1.311 7.209 1.679 81.961 1.352 251.74l-0.532 241.459-3.768 11.1c-12.086 33.874-38.297 60.086-71.351 71.915l-0.821 0.256-11.1 3.768-304.62 0.328c-256 0.246-306.422-0.082-315.761-2.089zM822.108 763.965c11.223-5.038 24.494-18.924 28.795-30.106 3.195-8.274 3.277-15.606 3.277-244.9v-236.38l-4.506-9.626c-5.841-11.857-15.069-21.295-26.414-27.243l-0.333-0.159c-7.946-3.891-8.643-3.932-90.767-4.874-91.791-1.065-89.293-0.737-113.5-13.189-10.24-5.284-18.514-12.698-57.999-51.814l-46.080-45.67-46.080 45.67c-39.485 39.117-47.8 46.531-58.040 51.814-24.207 12.452-21.668 12.124-113.5 13.189-80.282 0.901-83.026 1.065-90.808 4.669-11.621 6.147-20.886 15.413-26.866 26.688l-0.167 0.346-4.178 8.479v476.16l4.465 9.421c7.277 15.753 21.465 27.242 38.567 30.662l0.345 0.058c4.301 0.737 139.919 1.229 301.384 1.065l293.519-0.246 8.888-4.014zM404.644 617.656c-28.017-7.537-51.282-31.703-58.982-61.358-12.165-46.735 16.097-96.952 60.375-107.274 5.898-1.393 11.1-2.867 11.51-3.277 1.352-1.352-18.637-21.873-30.72-31.498-12.82-10.24-16.466-16.507-16.466-28.221 0-21.422 25.723-34.365 43.991-22.077 52.019 34.939 89.989 100.598 93.594 161.71 1.556 26.255-3.441 43.5-18.268 63.078-15.037 19.29-38.277 31.579-64.386 31.579-7.339 0-14.452-0.971-21.216-2.792l0.57 0.13zM582.164 617.656c-28.017-7.537-51.282-31.703-59.023-61.358-12.165-46.735 16.097-96.952 60.416-107.274 5.898-1.393 11.059-2.867 11.469-3.277 1.352-1.352-18.637-21.873-30.72-31.498-12.82-10.24-16.466-16.507-16.466-28.221 0-21.422 25.764-34.365 44.032-22.077 51.978 34.939 89.989 100.598 93.594 161.71 1.516 26.255-3.441 43.5-18.268 63.078-15.053 19.285-38.301 31.568-64.418 31.568-7.328 0-14.43-0.967-21.185-2.78l0.57 0.13zM438.6 559.084c19.743-13.926 16.261-46.244-5.734-53.74-12.534-4.301-23.921 1.434-30.269 15.196-1.899 3.731-3.011 8.135-3.011 12.8s1.112 9.069 3.086 12.964l-0.075-0.164c7.455 16.138 23.347 21.873 36.004 12.943zM616.12 559.084c7.951-5.93 13.044-15.31 13.044-25.879 0-2.945-0.395-5.797-1.136-8.507l0.053 0.226c-5.12-19.087-27.279-27.402-40.509-15.196-6.021 6.143-9.954 14.352-10.642 23.467l-0.008 0.126c0 7.414 4.915 18.35 10.568 23.552 4.061 3.893 9.583 6.29 15.665 6.29 4.854 0 9.351-1.527 13.038-4.126l-0.072 0.048z" />
<glyph unicode="&#xe916;" glyph-name="timeline" d="M490.66 821.76c-4.43-2.459-8.131-5.702-11.036-9.577l-0.064-0.089-4.26-6.308-0.451-174.612-0.451-174.653h-34.284c-34.079 0-34.243 0.041-35.267 3.85-2.744 10.568-14.95 30.884-25.231 41.984-13.926 15.032-28.303 24.576-45.957 30.515-13.517 4.547-14.213 4.588-69.468 5.202-64.266 0.737-75.366-0.532-96.297-10.854-14.705-7.291-33.628-23.962-43.172-38.093-31.908-47.227-21.135-113.254 24.125-148.070 11.674-9.011 30.925-18.186 43.663-20.849 12.165-2.58 118.211-2.58 130.376 0 33.874 7.086 66.519 35.471 78.971 68.608l3.973 10.527 68.567 0.942 0.451-174.531c0.41-161.915 0.655-174.94 3.4-179.978 4.465-8.11 12.452-12.984 22.692-13.844 11.51-0.942 20.111 3.072 26.132 12.165l4.547 6.84 0.532 72.294 0.492 72.253 68.485-0.942 3.891-10.691c9.462-26.132 30.638-48.538 57.631-60.908 19.21-8.806 25.149-9.462 86.589-9.462 34.652 0 59.597 0.737 65.167 1.925 21.791 4.547 47.473 20.808 61.809 39.035 16.794 21.381 23.716 41.615 23.634 69.14-0.082 29.942-8.929 52.593-28.918 74.22-12.131 13.599-27.542 24.019-45.001 30.044l-0.751 0.225c-13.517 4.547-14.213 4.588-69.468 5.202-45.056 0.492-58.532 0.123-69.714-2.007-34.816-6.554-67.052-33.587-80.609-67.584l-4.424-11.1-68.485-0.901v353.403l68.649-0.942 3.891-10.691c11.837-32.809 44.728-61.235 79.012-68.444 12.165-2.58 118.211-2.58 130.376 0 21.791 4.547 47.473 20.808 61.809 39.035 16.794 21.381 23.716 41.615 23.634 69.14-0.082 29.942-8.929 52.593-28.918 74.22-12.131 13.599-27.542 24.019-45.001 30.044l-0.751 0.225c-13.517 4.547-14.213 4.588-69.468 5.202-45.056 0.492-58.532 0.123-69.714-2.007-34.816-6.554-67.052-33.587-80.609-67.584l-4.424-11.1-68.485-0.901-0.041 67.871c-0.041 37.315-0.737 70.82-1.556 74.465-2.744 11.796-15.319 21.545-27.771 21.545-4.593-0.355-8.826-1.571-12.647-3.489l0.195 0.089zM812.933 680.407c34.12-16.835 40.591-61.030 12.739-86.712-13.967-12.861-17.203-13.435-77.292-13.435-51.61 0-53.125 0.123-61.604 3.932-11.391 5.803-20.494 14.708-26.382 25.604l-0.16 0.324c-4.628 9.011-6.185 26.337-3.318 37.028 4.628 17.203 21.832 33.628 39.281 37.519 6.554 1.475 24.289 2.007 57.344 1.761l47.841-0.369 11.551-5.652zM321.413 475.607c34.12-16.835 40.591-61.030 12.739-86.712-13.967-12.861-17.203-13.435-77.292-13.435-51.61 0-53.125 0.123-61.604 3.932-11.388 5.826-20.496 14.723-26.422 25.604l-0.161 0.323c-3.318 6.39-3.973 10.281-3.973 23.060 0 13.844 0.492 16.261 5.079 24.494 7.987 14.459 21.176 24.207 37.192 27.525 3.973 0.819 28.754 1.352 55.050 1.188l47.841-0.328 11.551-5.652zM812.933 270.807c34.12-16.835 40.591-61.030 12.739-86.712-13.967-12.861-17.203-13.435-77.292-13.435-51.61 0-53.125 0.123-61.604 3.932-11.388 5.826-20.496 14.723-26.422 25.604l-0.161 0.323c-3.318 6.39-3.973 10.281-3.973 23.060 0 13.844 0.492 16.261 5.079 24.494 7.987 14.459 21.176 24.207 37.192 27.525 3.973 0.819 28.754 1.352 55.050 1.188l47.841-0.328 11.551-5.652z" />
<glyph unicode="&#xe917;" glyph-name="video" d="M120.218 792.064c-6.922-3.031-13.885-11.592-16.097-19.743-1.188-4.465-1.638-83.026-1.311-243.671l0.451-237.076 4.547-6.84c9.093-13.722-24.166-12.616 353.28-12.124l336.773 0.451 5.571 3.973c12.206 8.724 11.51-0.819 11.51 154.051v139.223l-4.792 6.267c-15.36 20.111-45.138 14.213-50.749-10.076-0.86-3.686-1.556-58.737-1.597-122.348l-0.041-115.63h-597.32v409.6h236.831c227.205 0 237.036 0.123 242.688 3.154 20.234 10.854 18.514 41.943-2.826 50.831-8.151 3.441-509.051 3.359-516.915-0.041zM736.42 787.722c-6.265-3.603-11.277-8.759-14.606-14.954l-0.099-0.201c-2.089-5.489-1.884-18.555 0.41-23.020 1.024-2.048 6.922-8.888 13.107-15.196l11.264-11.469-12.206-12.575c-13.107-13.558-14.909-17.449-13.722-30.024 0.695-12.809 10.907-23.021 23.652-23.713l0.064-0.003c12.575-1.188 16.466 0.614 30.024 13.722l12.575 12.206 11.469-11.264c13.722-13.435 16.548-15.032 26.87-15.032 16.957 0 28.099 10.732 28.099 26.993 0 11.551-1.311 14.008-15.073 28.058l-11.264 11.51 11.264 11.551c13.763 14.008 15.073 16.507 15.073 28.058 0 16.261-11.141 26.952-28.099 26.952-10.322 0-13.148-1.556-26.911-15.073l-11.551-11.264-11.51 11.264c-4.611 4.74-9.589 9.068-14.907 12.959l-0.33 0.23c-4.301 2.171-18.514 2.335-23.593 0.287zM395.96 640.553c-4.042-3.113-7.343-6.977-9.737-11.403l-0.094-0.189c-3.85-7.578-3.85-7.741-3.809-94.7 0-52.101 0.655-89.539 1.679-93.184 3.318-11.878 18.637-21.586 30.843-19.497 4.055 0.655 34.939 17.449 80.445 43.704 40.632 23.47 75.612 43.745 77.701 45.138 5.448 3.564 10.691 14.787 10.691 22.938 0.001 0.102 0.002 0.222 0.002 0.343 0 7.856-3.461 14.904-8.942 19.702l-0.030 0.026c-2.294 2.171-37.519 23.224-78.234 46.776-70.697 40.919-74.547 42.926-84.296 43.622-8.684 0.614-11.182 0.123-16.22-3.277zM469.934 549.54c14.664-8.438 26.46-15.974 26.255-16.712-0.246-0.737-12.902-8.561-28.18-17.408l-27.689-16.015v33.3c0 18.35 0.655 33.096 1.475 32.768 0.778-0.328 13.435-7.496 28.14-15.933zM122.348 182.702c-12.288-4.383-18.637-13.435-18.637-26.542 0-13.681 7.741-23.757 20.89-27.32 4.26-1.147 136.397-1.556 393.626-1.27 387.072 0.41 387.154 0.451 393.134 3.932 9.38 5.53 13.64 13.23 13.64 24.658s-4.26 19.128-13.64 24.658l-5.98 3.482-388.26 0.369c-324.485 0.328-389.325 0-394.772-1.966zM118.129 76.534c-10.772-5.325-16.916-19.251-14.049-31.949 1.843-8.192 10.732-17.654 18.76-19.948 4.014-1.188 135.086-1.597 395.428-1.229l389.448 0.492 4.792 3.564c2.662 1.966 6.636 6.185 8.806 9.38 3.359 4.874 3.891 7.496 3.359 16.097-0.737 11.796-4.096 17.531-13.558 22.897l-6.185 3.523-390.595-0.041c-356.311-0.041-391.086-0.287-396.206-2.785z" />
<glyph unicode="&#xe918;" glyph-name="welcome-music" d="M733.266 821.678c-23.593-2.621-54.395-8.233-151.306-27.484-139.633-27.73-150.241-30.31-174.080-42.598-29.082-15.032-44.278-35.963-52.47-72.335-2.335-10.322-2.826-37.192-3.686-197.14l-0.983-185.18-70.001-0.942c-77.619-1.024-77.701-1.024-99.983-12.943-16.777-9.817-30.596-22.942-40.922-38.578l-0.284-0.457c-3.897-6.747-7.571-14.638-10.558-22.859l-0.337-1.062c-4.628-13.353-4.71-14.295-4.71-55.419-0.041-35.021 0.451-43.581 2.99-52.879 6.17-23.376 19.407-43.061 37.254-57.173l0.224-0.171c23.060-18.145 46.367-25.723 73.687-23.921 17.94 1.147 75.858 12.575 95.56 18.801 31.007 9.83 55.337 33.628 67.994 66.396l5.407 13.967 0.451 170.639c0.287 93.88 1.106 171.254 1.843 171.991 1.188 1.188 390.922 79.79 395.756 79.79 1.679 0 2.13-17.080 2.13-81.797v-81.756l-137.38-1.311-14.459-4.956c-27.3-9.28-49.262-28.183-62.299-52.575l-0.288-0.591c-11.223-20.521-13.025-32.645-12.165-81.674 0.778-43.786 1.434-47.514 11.592-67.502 12.452-24.453 40.509-47.473 66.56-54.559 22.856-6.185 40.182-5.079 93.389 5.939 46.612 9.667 62.382 16.794 81.428 36.946 20.521 21.709 27.566 38.912 30.188 74.015 2.499 33.587 0.942 451.338-1.761 474.030-7.004 58.245-29.778 90.726-71.475 101.745-11.82 2.885-25.39 4.54-39.347 4.54-6.325 0-12.57-0.34-18.719-1.002l0.763 0.067zM776.028 762.86c24.289-7.209 31.171-32.44 31.212-114.319v-37.56l-399.36-79.749 0.082 46.694c0.082 76.677 2.744 100.106 12.943 113.623 5.734 7.619 21.504 14.623 46.817 20.808 25.518 6.267 208.404 42.803 238.838 47.759l25.6 4.178c10.895 1.761 35.84 0.983 43.868-1.434zM807.24 283.382c0-54.108-0.901-59.515-12.124-73.155-10.895-13.189-19.538-16.384-72.335-26.788-40.591-7.987-55.501-5.448-71.926 12.329-12.083 13.148-13.394 19.128-13.394 60.211 0 34.243 0.164 36.209 4.014 43.95 4.874 9.83 15.565 20.808 24.863 25.559 9.585 4.915 24.207 5.939 86.712 6.226l54.19 0.246v-48.579zM351.191 189.87c-0.737-55.46-1.229-58.122-13.353-71.926-11.182-12.78-23.060-16.794-80.937-27.443-25.272-4.669-35.43-4.26-47.514 1.966-9.052 4.628-18.76 15.073-23.634 25.272-4.833 10.199-4.833 10.404-4.833 44.524 0 42.312 1.065 46.49 16.056 61.399 16.056 15.974 15.647 15.892 91.177 16.015l63.734 0.123-0.696-49.93z" />
<glyph unicode="&#xe919;" glyph-name="woo-add-to-cart" d="M168.673 801.239c-10.076-5.325-14.213-12.616-14.213-25.027 0-11.756 2.949-17.285 12.78-24.003 5.325-3.645 7.291-3.85 36.946-3.85 31.007 0 31.293 0 32.195-3.809 0.492-2.13 16.261-80.609 34.98-174.408l34.12-170.557-42.394-42.803c-36.536-36.864-43.131-44.36-48.005-54.313-14.459-29.45-5.202-64.553 22.2-84.214l8.397-6.021-4.055-8.069c-10.609-20.89-13.517-51.692-7.127-75.325 9.871-36.618 43.459-67.871 80.814-75.162 15.155-2.949 42.844-1.229 56.279 3.482 21.258 7.455 40.141 22.364 53.371 42.189 12.698 18.924 16.22 32.031 16.097 59.351-0.082 22.036-0.737 25.354-8.397 43.95-1.188 2.826 4.137 2.99 97.28 2.99s98.427-0.164 97.239-2.99c-6.881-16.425-8.274-24.084-8.315-45.629-0.041-18.842 0.573-23.88 3.891-33.3 11.059-31.375 37.437-57.549 67.502-67.052 9.912-3.072 15.974-3.768 34.243-3.727 19.456 0.041 23.634 0.573 34.284 4.424 31.32 12.014 55.331 36.977 65.801 68.157l0.227 0.779c5.734 18.227 5.243 46.326-1.147 64.799-11.346 32.809-36.413 57.016-71.025 68.567-8.888 2.949-21.75 3.154-245.76 3.564l-236.38 0.492-2.99 3.564c-1.506 1.719-2.566 3.864-2.979 6.231l-0.011 0.077c0 1.516 19.005 21.791 42.189 45.056l42.23 42.312h189.932c208.241 0 196.731-0.573 205.906 10.363 2.662 3.113 40.059 76.186 83.149 162.406 85.606 171.254 82.493 163.881 74.957 178.708-2.482 4.293-5.785 7.844-9.721 10.538l-0.109 0.071-6.431 3.973-588.636 1.72-5.366 26.46c-6.554 32.645-6.922 33.833-12.493 39.895-8.356 9.093-11.51 9.585-60.334 9.503-41.001-0.041-45.384-0.328-51.118-3.359zM831.037 668.57c-0.041-0.696-28.262-57.344-62.71-125.87l-62.628-124.559-172.81-0.451c-95.027-0.246-172.769-0.205-172.769 0.041s-11.141 56.115-24.74 124.15c-13.64 67.994-24.781 124.641-24.781 125.829 0 1.72 51.077 2.171 260.301 2.171 143.114 0 260.219-0.573 260.137-1.311zM358.154 200.397c16.261-8.151 27.566-25.928 27.566-43.377 0-19.415-16.138-40.755-34.857-46.162-4.195-1.313-9.019-2.069-14.019-2.069-15.581 0-29.447 7.341-38.328 18.753l-0.082 0.109c-6.418 8.089-10.297 18.446-10.297 29.708 0 13.033 5.194 24.853 13.625 33.503l-0.010-0.010c10.363 10.772 19.21 14.418 35.471 14.664 8.397 0.123 12.411-0.901 20.931-5.12zM743.26 201.585c17.654-8.356 28.385-25.231 28.385-44.564 0-41.779-49.029-63.775-80.036-35.922-10.185 8.88-16.585 21.877-16.585 36.369 0 19.607 11.715 36.478 28.527 43.995l0.306 0.122c11.96 5.571 27.648 5.571 39.404 0z" />
<glyph unicode="&#xe91a;" glyph-name="woo-categories" d="M502.047 816.599c-4.055-0.819-11.51-3.441-16.63-5.775-10.363-4.751-311.624-192.348-317.891-197.96-9.216-8.233-8.806-0.246-8.806-174.694 0-178.299-0.41-171.295 10.568-188.539 2.826-4.465 8.765-11.141 13.189-14.868 10.445-8.724 289.341-183.214 303.8-190.054 15.155-7.168 32.645-8.274 48.497-2.99 11.551 3.85 72.827 40.714 81.715 49.152 6.021 5.693 8.765 14.254 7.7 23.88-1.61 13.58-13.055 24.012-26.937 24.012-0.943 0-1.874-0.048-2.792-0.142l0.115 0.010c-7.373-0.532-11.878-2.621-29.532-13.722-11.428-7.209-21.135-13.107-21.545-13.107-0.451 0-0.778 58.286-0.778 129.597v129.556l111.37 69.55c124.846 77.988 132.301 82.78 148.48 95.724l11.51 9.216v-62.996c0-62.464 0.041-62.996 3.85-68.608 12.534-18.432 34.734-18.924 48.087-1.024 3.441 4.628 3.523 6.554 3.523 88.637v83.927l-4.096 10.24c-8.274 20.644-12.124 23.388-166.543 119.644-154.993 96.625-152.535 95.109-162.611 98.673-6.834 2.232-14.697 3.519-22.862 3.519-4.016 0-7.96-0.311-11.808-0.912l0.428 0.055zM635.453 687.206c109.978-68.813 135.578-85.77 140.001-92.815 2.294-3.604-3.523-10.199-18.555-20.972-10.65-7.619-239.411-151.020-241.828-151.552-1.761-0.41-272.548 168.264-272.671 169.82-0.041 0.901 251.535 158.925 265.339 166.625 2.057 1.088 4.471 1.796 7.033 1.963l0.053 0.003c2.007 0 56.279-32.85 120.627-73.073zM354.55 453.161l131.85-82.371v-129.516c0-71.229-0.369-129.475-0.86-129.475-2.048 0-261.571 162.898-265.38 166.584l-4.26 4.137-0.492 129.065-0.492 129.024 3.891-2.54c2.171-1.393 63.242-39.608 135.741-84.91zM712.622 371.814c-59.403-12.695-103.302-64.738-103.302-127.035 0-0.195 0-0.39 0.001-0.585v0.030c0.041-37.601 13.926-70.042 40.755-95.355 40.837-38.543 97.853-46.653 149.832-21.299l10.936 5.325 28.508-28.303c15.647-15.565 30.269-29.204 32.481-30.31 5.53-2.826 17.695-2.54 23.552 0.492 9.553 4.899 15.976 14.68 15.976 25.961 0 4.163-0.875 8.122-2.451 11.703l0.073-0.186c-1.311 3.031-15.032 18.063-30.474 33.382l-28.058 27.853 5.571 10.527c10.732 20.316 13.558 33.178 13.394 60.908-0.082 22.323-0.573 26.051-4.792 38.38-14.172 41.37-44.319 71.516-84.992 85.115-12.072 3.794-25.953 5.979-40.345 5.979-9.434 0-18.648-0.939-27.555-2.729l0.89 0.149zM770.58 310.579c13.312-6.431 29.45-22.487 35.922-35.799 4.71-9.585 5.038-11.551 5.038-30.761 0-19.784-0.205-20.931-5.693-32.072-14.377-29.164-46.408-46.039-77.373-40.714-31.786 5.137-56.499 30.058-61.266 61.525l-0.051 0.407c-5.489 33.874 15.155 67.83 48.742 80.282 6.84 2.58 12.165 3.072 26.501 2.621 15.565-0.492 19.251-1.229 28.18-5.489z" />
<glyph unicode="&#xe91b;" glyph-name="woo-products" d="M501.76 816.599c-7.844-2.236-14.64-5.026-21.036-8.465l0.556 0.273c-11.141-5.816-304.005-187.965-307.773-191.447-0.778-0.737 1.72-6.308 5.53-12.37 3.85-6.062 7.004-11.551 7.004-12.124 0-0.614-6.185-1.106-13.722-1.106h-13.681l0.451-159.99c0.451-151.265 0.655-160.481 3.645-168.55 4.383-11.756 13.271-23.347 23.757-31.048 4.833-3.564 77.21-49.234 160.768-101.499l151.921-94.986 7.004 11.1c3.85 6.144 7.7 10.977 8.52 10.772 0.86-0.205 4.628-5.161 8.397-11.059l6.84-10.691 155.894 97.526c100.884 63.078 158.802 100.352 164.086 105.513 9.358 9.329 16.012 21.365 18.688 34.834l0.072 0.433c1.065 5.816 1.72 66.355 1.72 163.43v154.214h-13.844c-15.77 0-15.524-0.614-5.734 14.705 3.4 5.325 5.53 10.199 4.751 10.854-6.103 5.407-308.47 192.43-316.047 195.502-7.897 3.183-17.053 5.030-26.641 5.030-3.926 0-7.78-0.31-11.539-0.906l0.415 0.054zM521.052 758.395c9.953-5.202 265.708-165.683 265.667-166.707-0.123-2.007-271.196-170.189-273.367-169.574-2.621 0.696-272.957 169.574-272.343 170.107 1.475 1.27 249.856 156.18 259.031 161.587 11.756 6.922 15.114 7.66 21.012 4.588zM352.87 454.39l133.53-83.395v-129.597c0-71.311-0.492-129.597-1.065-129.597-2.294 0-263.045 163.963-266.117 167.363-3.236 3.523-3.359 7.619-3.768 132.424-0.369 103.711-0.041 128.573 1.679 127.508l135.741-84.705zM813.179 289.608c-0.983-8.151-1.761-9.544-8.192-14.213-8.192-5.939-260.096-163.594-261.407-163.594-0.492 0-0.696 58.491-0.451 129.966l0.451 129.966 269.64 168.55 0.492-120.832c0.287-66.437 0.041-124.846-0.532-129.843z" />
<glyph unicode="&#xe91c;" glyph-name="ba-slider" d="M499.917 940.749c-3.728-2.717-6.909-5.897-9.541-9.504l-0.085-0.122c-3.85-5.693-3.891-6.472-3.891-58.368v-52.593l-182.19-0.492c-174.326-0.451-182.477-0.614-188.621-3.686-9.9-5.293-17.17-14.411-19.89-25.328l-0.057-0.272c-1.27-6.021-1.679-111.534-1.393-339.845l0.492-331.080 3.727-7.045c4.284-8.172 11.303-14.42 19.816-17.611l0.254-0.084c4.383-1.434 54.804-2.048 186.532-2.253l180.47-0.328 0.86-53.821c0.778-49.357 1.106-54.272 4.137-58.86 4.342-6.717 8.724-9.789 17.080-12.042 11.756-3.113 22.651 1.106 30.72 11.919 3.359 4.465 3.564 7.537 4.383 58.778l0.86 54.026 191.98 0.86c176.497 0.778 192.43 1.106 197.304 3.768 7.496 4.096 15.565 13.844 17.736 21.381 1.352 4.588 1.72 103.424 1.352 341.811l-0.492 335.34-4.465 6.513c-5.442 8.298-13.864 14.258-23.713 16.38l-0.249 0.045c-5.652 1.229-70.042 1.802-194.314 1.802h-185.876l-0.492 53.658c-0.451 51.323-0.655 53.821-4.055 58.45-9.462 12.739-26.542 16.589-38.38 8.602zM486.4 652.022v-110.019l-65.987-118.252c-36.25-65.044-66.888-119.316-68.076-120.545-1.679-1.884-6.758 4.26-27.279 33.26-29.041 41.083-30.228 42.516-38.707 46.858-14.131 7.25-37.888 1.352-45.752-11.305-1.966-3.195-22.733-47.104-46.121-97.608l-42.557-91.791v289.71l-0.041 289.71h334.52v-110.019zM896 455.66v-306.34h-353.28v612.721h353.28v-306.381zM286.925 662.057c-31.334-8.438-57.672-35.84-64.266-66.806-3.359-15.892-3.113-28.303 0.901-43.868 4.301-16.957 12.698-30.679 26.419-43.213 57.958-53.125 151.101-12.37 151.101 66.109 0 25.641-8.397 45.957-26.46 64.020-18.719 18.719-37.601 26.501-64.020 26.296-8.406-0.039-16.574-0.962-24.445-2.681l0.77 0.141zM329.155 602.419c8.11-5.407 15.606-18.883 15.565-28.017-0.082-12.042-9.994-26.583-20.972-30.72-3.56-1.201-7.66-1.894-11.922-1.894-9.113 0-17.485 3.169-24.075 8.465l0.075-0.058c-9.175 8.028-12.984 28.099-7.373 38.83 5.714 11.207 17.169 18.749 30.386 18.749 6.801 0 13.135-1.997 18.449-5.436l-0.133 0.081zM485.827 149.893c-0.328-0.328-64.758-0.369-143.196-0.123l-142.623 0.41 36.7 79.38c20.152 43.622 36.823 79.503 37.028 79.708 0.205 0.246 11.837-15.811 25.805-35.594 14.008-19.784 28.14-38.134 31.375-40.837 14.418-11.878 39.158-9.093 50.217 5.652 2.294 3.072 26.255 45.097 53.248 93.471l50.094 89.58c0.614 0.942 1.27-59.638 1.516-134.676 0.142-17.554 0.222-38.31 0.222-59.085 0-27.382-0.14-54.731-0.419-82.046l0.033 4.161z" />
<glyph unicode="&#xe91d;" glyph-name="cdcp" d="M148.48 835.195c-3.174-1.463-5.903-3.288-8.299-5.471l0.026 0.023c-9.298-8.684-8.806 6.554-8.806-258.54v-245.596l3.891-5.734c2.13-3.195 6.472-7.496 9.626-9.667l5.775-3.85h236.626l0.492-130.13c0.41-119.153 0.696-130.621 3.4-135.496 3.973-7.332 12.247-13.967 18.883-15.114 2.99-0.573 110.060-0.778 237.896-0.492 231.67 0.451 232.407 0.492 237.117 3.973 2.58 1.966 6.308 5.652 8.233 8.233l3.523 4.71 0.451 304.701 0.41 304.701-3.523 6.226c-2.232 3.724-4.926 6.901-8.058 9.582l-0.052 0.044c-4.465 3.318-7.946 3.441-141.967 4.26l-137.38 0.86-0.86 73.687c-0.819 71.066-0.983 73.851-4.383 78.397-2.43 3.098-5.135 5.803-8.13 8.155l-0.102 0.078c-4.71 3.523-5.448 3.523-222.618 3.85-142.459 0.205-219.382-0.246-222.167-1.393zM549.56 726.2v-54.641h-142.582l-6.349-4.301c-12.861-8.724-12.288-4.014-12.902-110.879-0.287-52.552-0.041-100.352 0.532-106.168 1.884-18.022 11.715-27.935 27.853-28.058 0.452-0.027 0.981-0.043 1.514-0.043 9.162 0 17.253 4.585 22.103 11.586l0.058 0.089 4.792 6.267 0.492 87.613 0.492 87.572h395.837v-534.159h-395.96v225.28h149.217l-29.164-29.45c-16.056-16.179-30.515-32.072-32.154-35.267-4.014-7.905-2.826-21.586 2.499-29.082 4.506-6.308 15.401-11.96 23.101-11.96 2.826 0 8.192 1.434 11.96 3.195 8.356 3.932 110.674 106.209 113.377 113.336 2.54 6.799 2.253 19.292-0.614 24.699-1.352 2.54-26.87 28.959-56.771 58.655-47.309 47.104-55.132 54.231-60.785 55.255-19.538 3.604-35.348-9.011-35.348-28.262 0-3.809 1.106-9.011 2.458-11.551s12.861-14.991 25.6-27.648c12.739-12.657 23.142-23.593 23.142-24.33 0-0.696-88.678-1.27-197.1-1.27h-197.14v418.12h361.841v-54.6z" />
<glyph unicode="&#xe91e;" glyph-name="cf7-styler" horiz-adv-x="983" d="M470.221 893.481c-85.975-5.571-157.532-29.614-225.28-75.694-26.173-17.818-39.854-29.286-64.758-54.272-34.939-35.103-59.31-69.509-81.879-115.63-12.917-24.776-23.832-53.567-31.264-83.729l-0.562-2.696c-8.602-35.185-10.936-53.74-11.919-94.618-0.942-39.731 1.106-65.864 7.782-98.755 19.415-95.887 72.827-185.139 149.012-248.955 47.636-39.936 112.968-73.032 173.67-88.105 131.645-32.604 268.206-3.604 376.832 79.995 20.726 15.974 62.71 58.819 79.053 80.691 33.81 44.203 59.658 96.477 74.262 153.263l0.654 2.999c8.806 34.693 11.796 57.18 12.739 95.519 1.925 77.373-11.264 138.199-44.646 206.029-22.109 45.348-50.313 84.089-84.131 117.106l-0.082 0.080c-67.323 67.252-156.615 112.523-256.185 124.122l-2.026 0.192c-17.121 1.884-58.163 3.318-71.27 2.458zM525.926 835.4c119.625-11.591 222.010-76.581 284.153-170.522l0.888-1.428c30.106-45.916 51.896-106.086 59.105-163.021 2.703-21.217 2.335-73.523-0.696-94.29-4.383-30.351-14.254-70.369-17.326-70.369-7.25 0-121.283 112.927-264.643 262.144-31.252 32.522-34.447 34.898-47.841 35.758-8.724 0.573-11.796 0-19.251-3.686-7.864-3.85-10.281-6.39-20.562-21.504-6.431-9.421-12.247-17.121-12.943-17.121s-2.99 3.645-5.079 8.151c-7.7 16.343-19.988 24.535-36.905 24.535-10.527 0-20.275-3.523-26.583-9.585-4.313-5.032-8.453-10.579-12.21-16.396l-0.365-0.603c-23.388-35.389-82.371-97.444-165.642-174.203-37.151-34.243-105.062-92.406-107.93-92.406s-14.295 46.612-18.432 75.284c-3.031 20.767-3.4 73.073-0.696 94.29 7.209 56.934 29.041 117.187 59.105 163.021 77.824 118.62 213.852 184.73 353.853 171.95zM637.583 463.565c91.423-94.044 153.805-154.214 180.388-174.080 6.103-4.506 11.059-8.97 11.059-9.871 0-3.154-20.316-35.676-32.072-51.405-6.554-8.724-19.046-23.511-27.73-32.809-60.728-64.252-143.037-107.545-235.284-118.246l-1.792-0.169c-12.169-1.056-26.33-1.659-40.632-1.659s-28.463 0.602-42.46 1.783l1.828-0.124c-60.193 7.253-114.595 26.897-162.324 56.324l1.72-0.987c-48.579 30.147-96.051 78.356-125.379 127.345-7.823 13.066-9.134 16.261-7.332 17.9 1.188 1.106 9.912 8.151 19.374 15.647 81.838 65.044 203.612 181.166 252.109 240.394 6.799 8.315 12.82 15.155 13.312 15.155 0.532 0 2.908-3.973 5.284-8.847 5.243-10.65 13.066-19.866 19.948-23.511 3.236-1.679 9.298-2.703 16.835-2.744 16.425-0.164 21.832 3.932 40.387 30.638l14.5 20.849 24.822-25.805c13.681-14.172 46.735-48.292 73.441-75.776z" />
<glyph unicode="&#xe91f;" glyph-name="display-conditions" d="M483 721.654c-90.685-4.26-172.646-32.645-242.36-83.927-38.298-28.18-76.964-69.919-100.721-108.708-16.302-26.624-35.799-70.779-35.799-81.019 0-10.199 19.497-54.354 35.635-80.732 23.675-38.666 62.874-81.019 100.884-108.995 61.768-45.466 131.85-72.417 212.5-81.756 21.996-2.54 75.366-2.54 97.28 0 145.613 17.080 267.264 98.304 327.885 219.013 11.305 22.528 19.415 44.401 19.415 52.47 0 3.809-2.58 13.64-5.775 21.832-47.964 124.232-165.274 217.702-306.545 244.285-30.72 5.734-73.523 8.929-102.4 7.537zM544.072 662.958c62.399-6.477 118.826-27.531 167.256-59.672l-1.368 0.854c23.552-15.196 39.649-28.754 62.751-52.838 22.671-23.217 41.684-50.138 56.022-79.745l0.789-1.807 10.486-21.75-10.486-21.75c-15.127-31.414-34.14-58.335-56.87-81.611l0.058 0.060c-29.778-31.048-56.115-51.118-92.488-70.533-73.073-39.076-163.185-52.306-251.003-36.782-112.681 19.907-213.197 94.577-257.516 191.283-4.342 9.421-7.864 18.104-7.864 19.292 0 1.229 3.359 9.667 7.496 18.76 30.065 66.519 90.112 125.993 162.161 160.604 39.977 19.251 76.841 29.86 123.044 35.512 17.367 2.13 68.321 2.212 87.532 0.123zM469.32 578.621c-22.901-4.633-43.036-14.223-60.018-27.629l0.298 0.227c-23.409-17.91-40.639-42.845-48.6-71.63l-0.224-0.951c-4.137-15.032-4.137-46.244 0-61.276 14.090-51.487 56.73-89.989 111.043-100.311 18.801-3.564 54.968-2.13 72.335 2.867 40.714 11.674 75.53 41.902 91.177 79.094 30.31 72.172-11.796 153.969-91.177 177.152-16.179 4.71-57.917 6.062-74.834 2.458zM523.756 522.179c25.395-5.98 48.046-23.88 58.696-46.367 4.997-10.527 5.489-13.107 5.489-27.812s-0.492-17.285-5.489-27.812c-15.237-32.154-50.749-51.446-89.211-48.415-22.897 1.319-43.242 11.279-58.013 26.637l-0.027 0.028c-31.826 32.44-27.075 80.814 10.65 108.585 21.381 15.77 50.954 21.504 77.906 15.155z" />
<glyph unicode="&#xe920;" glyph-name="faq" d="M483 824.136c-139.674-12.739-260.874-94.413-322.642-217.58-61.235-122.020-55.501-270.049 14.828-384.041l6.185-9.953-3.604-8.397c-2.007-4.588-8.724-17.449-14.991-28.59-44.687-79.421-47.596-86.016-47.514-107.315 0.041-17.367 6.39-28.14 21.258-36.045 4.956-2.662 9.585-3.195 26.46-3.072 24.084 0.164 30.065 1.597 97.403 23.634 10.957 4.122 30.645 10.283 50.543 15.948l8.521 2.074 14.582 3.441 14.295-6.636c31.334-14.582 67.994-25.764 103.956-31.826 22.282-3.727 78.070-5.202 102.482-2.662 163.528 17.036 296.462 131.020 341.223 282.803l0.711 2.811c10.158 35.062 14.664 68.895 14.664 109.937 0.020 1.445 0.032 3.15 0.032 4.859 0 43.058-7.301 84.411-20.733 122.889l0.795-2.615c-46.94 141.394-169.452 244.285-318.013 267.1-17.244 2.662-74.383 4.669-90.44 3.236zM539.32 767.078c107.725-8.192 202.424-64.43 261.775-155.607 20.48-31.416 39.526-78.029 46.981-114.852 4.429-20.542 6.966-44.142 6.966-68.334 0-93.953-38.259-178.97-100.048-240.322l-0.020-0.019c-101.827-101.827-253.42-128.532-384.328-67.666-32.932 15.278-43.54 14.172-128.492-13.353-28.672-9.339-54.641-17.49-57.672-18.145l-5.53-1.229 2.744 5.366c1.516 2.949 9.953 17.777 18.678 33.014 27.361 47.555 35.471 65.495 37.724 83.517 1.597 12.984-1.188 21.463-14.131 42.885-27.026 43.702-44.414 95.982-47.956 152.021l-0.049 0.964c-0.571 7.296-0.896 15.799-0.896 24.378 0 54.941 13.338 106.767 36.952 152.416l-0.872-1.853c31.2 61.733 78.766 111.313 137.037 144.121l1.695 0.877c41.492 23.060 91.136 38.257 136.274 41.697 26.419 2.048 27.894 2.048 53.166 0.123zM573.194 576.942c-34.043-7.435-62.278-28.037-79.648-56.076l-0.306-0.531c-4.833-7.987-5.98-11.633-5.898-18.596-0.002-0.135-0.004-0.295-0.004-0.455 0-15.292 12.397-27.689 27.689-27.689 0.174 0 0.348 0.002 0.521 0.005h-0.026c10.404 0 18.514 5.407 27.034 18.022 15.401 22.897 38.953 33.874 63.324 29.45 11.264-2.007 18.555-6.144 29.573-16.589 13.926-13.271 17.367-23.921 12.902-40.264-2.703-9.994-19.948-26.296-32.236-30.556-29.286-10.117-44.319-26.337-47.063-50.749-0.296-1.382-0.465-2.97-0.465-4.597 0-4.539 1.318-8.769 3.592-12.33l-0.055 0.092c4.8-9.161 14.241-15.304 25.117-15.304 3.512 0 6.874 0.64 9.976 1.811l-0.195-0.064c7.25 2.744 15.729 11.796 16.916 18.063 0.86 4.547 2.171 5.939 7.291 7.537 10.568 3.359 31.375 15.196 40.796 23.265 14.828 12.657 28.058 34.079 32.891 53.166 2.499 9.912 2.417 33.219-0.164 43.786-7.66 31.457-40.059 64.348-74.998 76.022-14.131 4.71-40.55 5.939-56.566 2.58zM337.838 329.83c-8.957-4.763-14.953-14.036-14.953-24.71 0-6.259 2.062-12.037 5.543-16.691l-0.052 0.073c4.67-6.807 12.408-11.214 21.175-11.214 0.447 0 0.891 0.011 1.333 0.034l-0.062-0.003c16.63 0 28.18 10.977 28.303 26.911 0.205 22.856-20.808 35.881-41.288 25.6zM460.718 329.83c-8.957-4.763-14.953-14.036-14.953-24.71 0-6.259 2.062-12.037 5.543-16.691l-0.052 0.073c4.67-6.807 12.408-11.214 21.175-11.214 0.447 0 0.891 0.011 1.333 0.034l-0.062-0.003c16.63 0 28.18 10.977 28.303 26.911 0.205 22.856-20.808 35.881-41.288 25.6zM583.598 329.708c-8.397-4.424-15.319-15.36-15.237-24.044 0.718-9.451 5.261-17.717 12.068-23.343l0.056-0.045c8.151-5.816 25.436-5.857 33.505-0.123 7.046 5.218 11.563 13.503 11.563 22.843 0 10.981-6.245 20.504-15.377 25.211l-0.159 0.074c-3.675 2.010-8.050 3.192-12.702 3.192-5.062 0-9.796-1.4-13.838-3.833l0.121 0.068z" />
<glyph unicode="&#xe921;" glyph-name="fluent-form-styler" d="M273.080 862.556c-55.072-6.726-101.887-37.237-130.484-80.782l-0.424-0.688c-8.862-14.121-16.405-30.394-21.797-47.618l-0.403-1.493-4.751-15.196v-518.799l3.768-13.804c17.981-65.741 65.126-112.886 130.908-130.908l13.804-3.768h518.799l15.36 4.71c54.395 16.712 96.502 53.903 117.391 103.67 7.332 17.408 10.691 30.106 13.107 49.439 2.54 20.521 2.417 476.733-0.123 497.541-5.161 41.984-21.668 75.817-51.773 105.882-30.556 30.556-66.109 47.555-108.585 51.896-20.849 2.171-475.423 2.089-494.797-0.082zM777.339 803.82c33.997-7.209 66.847-33.464 82.944-66.273 13.476-27.566 12.698-9.748 12.698-281.887 0-226.632-0.205-243.18-3.072-255.304-9.708-41.37-42.476-76.677-83.968-90.563l-11.96-3.973-245.76-0.492c-277.873-0.532-260.547-1.311-289.3 12.739-13.681 6.717-18.596 10.322-31.703 23.429s-16.753 18.022-23.429 31.744c-14.049 28.754-13.271 11.387-12.739 289.26 0.451 233.841 0.655 246.211 3.645 255.14 12.206 36.332 39.649 66.847 71.885 80.036 21.176 8.602 13.189 8.356 273.94 8.52 209.879 0.123 246.62-0.205 256.819-2.376zM307.036 617.042c-11.571-3.94-19.836-14.503-20.314-27.060l-0.002-0.055c0-14.295 11.305-26.665 25.928-28.385 4.997-0.573 102.359-0.86 216.433-0.573 232.161 0.573 213.565-0.492 222.659 12.902 3.359 4.915 4.301 8.479 4.301 15.933 0 12.042-4.628 19.661-15.278 25.027l-7.619 3.85-210.821-0.164c-115.958-0.082-212.828-0.737-215.286-1.475zM300.36 479.99c-9.871-6.717-12.78-12.206-12.78-24.125 0-8.97 0.737-11.674 4.588-16.712 9.585-12.575-8.11-11.715 231.547-11.223l215.040 0.451 4.792 3.564c8.356 6.185 12.493 13.967 12.493 23.347 0.009 0.265 0.014 0.577 0.014 0.89 0 10.171-5.42 19.076-13.529 23.985l-6.556 3.674h-429.957l-5.652-3.85zM373.883 347.73c-4.248-2.511-7.852-5.606-10.84-9.229l-0.055-0.069c-4.137-5.161-5.079-8.028-5.202-15.442-0.205-15.155 8.397-25.887 23.060-28.713 9.708-1.884 271.401-1.884 281.108 0 26.911 5.202 32.768 39.854 8.847 52.511l-7.455 3.932h-141.804c-131.645 0-142.213-0.205-147.661-2.99z" />
<glyph unicode="&#xe922;" glyph-name="Breadcrumb" d="M100.557 632.371c-12.901-4.17-22.068-16.075-22.068-30.121 0-0.085 0-0.169 0.001-0.253v0.013c0-4.813 0.819-10.906 1.792-13.517 0.973-2.662 43.571-46.643 95.13-98.253l93.389-93.44-93.389-93.44c-51.558-51.61-94.157-95.59-95.13-98.253-1.139-3.939-1.793-8.464-1.793-13.142 0-0.132 0.001-0.263 0.002-0.395v0.020c0-22.221 22.374-37.632 43.11-29.696 5.837 2.202 30.106 25.6 123.29 118.835l116.070 116.070-115.2 115.354c-78.285 78.438-117.402 116.429-122.010 118.579-4.041 1.903-8.776 3.013-13.771 3.013-3.36 0-6.602-0.503-9.656-1.436l0.234 0.061zM429.21 632.576c-12.195-3.859-21.151-14.413-22.617-27.243l-0.014-0.149c-1.638-16.947-4.096-14.029 96.614-114.944l93.235-93.44-93.235-93.44c-100.71-100.915-98.253-97.997-96.614-114.944 1.997-20.48 23.552-33.843 42.701-26.522 5.837 2.202 30.106 25.6 123.29 118.835l116.070 116.070-115.2 115.354c-78.285 78.438-117.402 116.429-122.010 118.579-3.994 1.898-8.678 3.007-13.622 3.007-3.060 0-6.021-0.425-8.827-1.219l0.228 0.055zM753.51 630.886c-11.575-5.256-19.479-16.715-19.479-30.019 0-4.519 0.912-8.825 2.562-12.744l-0.081 0.216c1.792-4.403 31.283-35.072 95.13-98.97l92.467-92.57-92.467-92.57c-63.846-63.898-93.338-94.566-95.13-98.97-12.544-30.208 22.17-57.856 49.050-39.014 3.942 2.765 57.856 55.757 119.808 117.811l112.64 112.742-112.64 112.742c-61.952 62.054-115.917 115.098-119.962 117.914-5.248 3.837-11.829 6.139-18.947 6.139-4.685 0-9.137-0.997-13.155-2.791l0.205 0.082z" />
<glyph unicode="&#xe923;" glyph-name="hotspot" horiz-adv-x="983" d="M221.225 743.444c-3.686-1.065-9.667-5.775-16.998-13.353-59.31-61.727-98.386-146.391-107.684-233.39-2.826-26.583-1.188-80.937 3.195-105.636 12.247-68.895 37.806-126.894 79.667-180.634 14.909-19.169 32.727-37.724 39.117-40.755 18.473-8.765 40.387 4.915 40.264 25.19-0.082 10.486-2.13 13.967-19.579 33.587-27.443 30.802-45.548 59.105-60.908 95.355-13.908 31.95-23.156 69.009-25.79 107.882l-0.056 1.030c-0.515 7.002-0.809 15.17-0.809 23.405 0 90.188 35.225 172.15 92.667 232.876l-0.149-0.159c11.51 12.206 14.705 18.227 14.705 27.853 0 8.643-2.621 14.459-9.38 20.931-7.537 7.168-16.876 9.093-28.262 5.816zM743.178 743.772c-5.571-1.802-13.435-8.888-16.712-15.114-3.072-5.898-2.908-18.309 0.328-24.576 1.434-2.785 7.168-9.953 12.739-15.892 22.761-23.909 41.956-51.497 56.55-81.723l0.835-1.917c21.818-43.469 34.592-94.721 34.592-148.956 0-88.355-33.901-168.791-89.406-229.012l0.214 0.235c-7.414-8.11-14.582-17.285-15.974-20.439-3.441-7.782-2.212-20.931 2.58-27.689 5.523-7.043 14.033-11.527 23.589-11.527 4.343 0 8.47 0.926 12.195 2.592l-0.19-0.076c12.001 5.693 47.677 48.988 67.338 81.715 24.363 39.847 42.289 86.472 50.941 136.278l0.341 2.372c4.506 25.764 6.226 79.626 3.359 106.66-8.332 74.11-35.453 140.622-76.441 196.296l0.788-1.121c-12.943 17.695-37.151 44.81-43.377 48.66-4.768 2.595-10.441 4.121-16.471 4.121-2.772 0-5.469-0.322-8.055-0.932l0.237 0.047zM335.872 627.2c-9.052-3.564-30.269-28.385-44.769-52.388-15.016-25.352-25.814-55.044-30.554-86.717l-0.166-1.347c-2.499-17.49-1.024-60.703 2.58-77.251 8.888-40.673 28.221-79.38 53.903-108.012 13.926-15.483 19.128-18.432 31.375-17.777 12.083 0.696 19.415 5.325 23.839 15.032 6.103 13.435 3.523 22.733-10.65 38.625-28.405 31.205-45.799 72.87-45.799 118.597 0 5.849 0.285 11.632 0.841 17.335l-0.057-0.724c3.441 37.601 17.531 69.837 43.868 100.434 10.936 12.698 14.909 20.234 14.909 28.18 0 10.486-8.356 22.282-18.555 26.092-3.064 1.018-6.592 1.605-10.257 1.605-3.758 0-7.372-0.617-10.746-1.756l0.237 0.069zM625.050 626.708c-6.853-3.545-12.218-9.161-15.356-16.010l-0.086-0.21c-4.383-11.592-1.147-20.849 13.148-37.478 33.71-39.158 48.374-84.009 43.786-133.816-3.779-39.555-20.173-74.7-45.056-101.964l0.123 0.137c-14.172-15.892-16.753-25.19-10.65-38.625 4.26-9.38 11.756-14.254 23.142-15.073 11.715-0.86 17.039 1.761 28.59 14.131 39.649 42.271 61.481 98.509 61.481 158.392 0 53.371-16.056 100.147-49.193 143.319-11.551 15.073-22.2 25.477-28.344 27.812-2.968 1.011-6.387 1.595-9.942 1.595-4.191 0-8.193-0.811-11.857-2.285l0.214 0.076zM484.147 524.759c-24.613-2.945-45.088-18.225-55.277-39.392l-0.183-0.421c-6.513-13.885-8.028-35.594-3.482-49.48 11.059-33.505 43.663-53.453 77.865-47.596 22.379 3.55 40.797 17.796 50.085 37.24l0.173 0.403c6.021 12.165 6.185 12.984 6.185 30.597 0 16.876-0.369 18.842-5.079 28.836-8.438 17.777-25.846 32.727-43.295 37.192-6.476 1.774-13.912 2.794-21.587 2.794-1.902 0-3.789-0.063-5.66-0.186l0.254 0.013zM498.483 465.244c5.243-4.137 6.267-8.151 3.564-14.5-2.335-5.571-7.823-7.864-14.746-6.144-4.628 1.188-8.97 9.257-7.66 14.336 1.024 3.85 8.11 9.544 11.878 9.544 1.556 0 4.669-1.475 6.963-3.236z" />
<glyph unicode="&#xe924;" glyph-name="image-gallery" d="M503.48 729.6l-239.78-0.86-11.305-4.383c-20.808-8.11-36.413-19.21-49.275-35.062l-7.045-8.684-37.888-1.024c-42.68-1.147-50.668-2.621-71.27-13.312-25.068-13.025-43.377-34.488-53.494-62.751l-5.243-14.746-0.532-109.978c-0.451-95.273-0.123-111.862 2.212-123.74 7.066-35.339 29.943-64.202 60.779-79.333l0.661-0.293c18.514-8.684 27.935-10.24 67.215-11.305l36.454-0.942 15.606-15.606c12.083-12.124 18.432-17.039 28.344-21.873 27.075-13.23 7.905-12.37 277.34-12.37 269.476 0 250.266-0.86 277.34 12.37 9.912 4.833 16.302 9.748 28.385 21.873l15.565 15.606 36.495 0.942c40.387 1.065 49.275 2.662 68.895 12.288 22.651 11.141 40.428 29.491 51.241 52.961 10.363 22.487 10.199 20.275 10.199 143.36 0 104.161-0.246 113.459-3.154 123.699-9.011 31.785-29.082 56.566-57.303 70.779-19.374 9.789-27.771 11.264-69.591 12.37l-37.847 1.024-6.513 7.946c-19.538 23.839-45.507 38.093-74.342 40.755-6.799 0.614-120.3 0.737-252.15 0.287zM758.866 670.74c10.076-2.99 20.644-10.24 26.87-18.432l4.465-5.816-0.41-126.812-0.451-126.771-47.145 38.38c-25.928 21.094-50.34 39.649-54.231 41.206-3.906 1.709-8.458 2.703-13.242 2.703-3.942 0-7.726-0.675-11.243-1.915l0.237 0.073c-3.195-1.106-25.313-16.015-49.152-33.219l-43.377-31.252-7.864 6.595c-61.686 51.61-125.051 103.096-129.802 105.39-4.42 1.833-9.552 2.897-14.934 2.897-6.037 0-11.761-1.34-16.891-3.738l0.245 0.103c-3.768-2.007-42.557-34.406-86.221-72.008l-79.34-68.403-0.451 121.61c-0.328 82.248 0.164 124.518 1.393 130.54 3.482 16.876 17.367 32.317 34.406 38.175 8.561 2.949 20.849 3.113 243.794 3.195 203.162 0.041 235.93-0.287 243.343-2.499zM651.837 625.562c-18.104-5.489-32.317-24.166-32.317-42.476 0-9.585 4.506-21.135 11.387-29.123 17.531-20.48 47.636-20.521 65.987-0.082 7.025 7.203 11.358 17.060 11.358 27.929 0 0.722-0.019 1.44-0.057 2.153l0.004-0.1c-0.164 17.285-8.397 30.228-24.248 38.175-10.65 5.284-22.118 6.554-32.113 3.523zM172.36 471.716v-150.323l-23.47 0.573c-21.545 0.532-24.248 0.983-33.096 5.325-11.411 5.837-20.4 15.037-25.82 26.282l-0.149 0.342c-3.604 7.823-3.645 9.134-3.645 118.825v110.92l4.014 7.7c7.537 14.336 21.258 25.682 35.267 29.123 2.785 0.696 14.5 1.311 26.010 1.434l20.89 0.164v-150.364zM917.34 616.591c10.199-5.325 19.497-14.705 24.986-25.231l4.014-7.7v-110.92c0-109.691-0.041-111.002-3.645-118.825-5.567-11.576-14.539-20.773-25.606-26.474l-0.321-0.15c-9.052-4.424-11.305-4.751-35.717-5.325l-26.010-0.573v301.056l26.87-0.696c25.027-0.614 27.484-0.983 35.43-5.161zM673.3 591.319c4.055-4.465 3.973-12.943-0.164-16.998-11.305-11.018-27.648 3.645-18.514 16.671 3.523 5.038 14.213 5.243 18.678 0.328zM484.639 406.18c35.758-29.532 67.502-55.009 70.533-56.566 7.946-4.137 22.651-3.809 31.089 0.655 3.727 1.966 24.863 16.712 46.899 32.686 22.077 16.015 40.509 29.123 40.96 29.123 0.492 0 26.583-20.89 58.040-46.49l57.18-46.49 0.492-9.994c0.451-8.356-0.164-11.059-3.768-16.507-4.547-6.881-14.991-14.746-24.904-18.801-5.079-2.089-41.615-2.458-244.9-2.458-227.123 0-239.288 0.164-246.497 3.113-10.831 4.538-19.658 12.072-25.671 21.565l-0.134 0.226-5.53 8.643 4.096 4.055c7.619 7.537 174.735 150.938 175.923 150.979 0.655 0 30.433-24.166 66.191-53.74zM386.335 181.76c-12.475-3.169-21.556-14.3-21.556-27.552 0-0.279 0.004-0.557 0.012-0.833l-0.001 0.041c0.324-15.313 12.814-27.603 28.175-27.603 3.873 0 7.564 0.781 10.923 2.195l-0.185-0.069c20.972 8.028 24.207 37.478 5.407 49.684-4.707 2.984-10.438 4.755-16.583 4.755-2.191 0-4.329-0.225-6.393-0.654l0.203 0.035zM509.215 181.76c-12.475-3.169-21.556-14.3-21.556-27.552 0-0.279 0.004-0.557 0.012-0.833l-0.001 0.041c0.324-15.313 12.814-27.603 28.175-27.603 3.873 0 7.564 0.781 10.923 2.195l-0.185-0.069c20.972 8.028 24.207 37.478 5.407 49.684-4.707 2.984-10.438 4.755-16.583 4.755-2.191 0-4.329-0.225-6.393-0.654l0.203 0.035zM633.078 181.801c-25.805-4.751-30.065-42.189-6.062-53.125 9.298-4.178 15.811-4.055 24.904 0.614 10.076 5.161 14.090 11.059 14.991 22.282 1.679 20.152-13.763 33.956-33.833 30.228z" />
<glyph unicode="&#xe925;" glyph-name="instagram-feed" d="M315.72 822.62c-96.911-13.271-175.391-84.582-198.943-180.92-7.086-28.918-7.823-53.944-7.127-231.26 0.737-182.395 0.492-177.971 12.165-213.647 23.375-70.793 76.905-125.934 144.977-151.017l1.659-0.535c39.772-14.131 37.437-14.008 247.808-13.312 169.083 0.614 185.385 0.901 197.14 3.686 92.938 21.955 162.038 88.883 183.501 177.725 7.004 29.041 7.619 46.285 7.619 214.18 0 164.372-0.778 187.351-6.922 213.279-23.188 95.817-101.875 168.173-199.371 181.679l-1.251 0.142c-25.682 3.441-356.188 3.4-381.256 0zM681.288 767.119c76.923-7.291 138.322-59.392 160.44-136.233 3.768-13.066 3.768-13.312 4.383-193.987 0.41-128.287 0.041-184.812-1.352-194.355-9.748-68.157-61.645-127.468-128.41-146.801-27.443-7.946-30.925-8.069-217.989-7.496l-176.66 0.532-16.794 4.628c-71.107 19.497-122.798 75.284-135.086 145.695-2.171 12.534-2.58 41.329-2.54 189.071 0 111.411 0.614 178.258 1.761 185.385 6.532 39.504 24.833 73.909 51.127 100.361l-0.009-0.009c28.312 28.798 66.155 48.146 108.414 52.926l0.826 0.076c20.972 2.13 329.605 2.335 351.887 0.205zM700.498 679.506c-11.51-5.202-19.005-20.070-16.261-32.113 3.318-14.5 13.558-21.914 30.433-21.914 16.384 0 27.525 9.708 29 25.231 0.14 1.038 0.219 2.237 0.219 3.456 0 9.078-4.428 17.122-11.242 22.090l-0.078 0.054c-7.127 5.407-23.511 7.045-32.072 3.195zM476.16 617.82c-91.986-15.745-161.115-94.888-161.115-190.178 0-21.394 3.485-41.974 9.917-61.203l-0.395 1.361c18.104-55.828 64.348-102.318 121.037-121.774 32.317-11.1 75.981-12.657 109.527-3.932 22.021 6.311 41.256 15.045 58.846 26.147l-0.928-0.547c52.064 35.203 85.838 94.025 85.838 160.736 0 28.393-6.118 55.357-17.108 79.646l0.493-1.217c-12.902 29-42.721 64.512-67.871 80.855-41.37 26.911-92.16 38.011-138.24 30.106zM542.351 558.756c42.598-10.732 80.445-47.35 94.249-91.136 5.325-16.876 6.554-48.046 2.662-67.502-9.503-47.882-49.48-90.153-97.444-103.055-10.784-2.513-23.168-3.953-35.887-3.953-6.782 0-13.468 0.409-20.035 1.205l0.79-0.078c-51.61 8.069-93.839 44.933-109.773 95.764-3.4 10.936-3.973 16.302-3.973 37.519 0.041 18.555 0.819 27.525 3.113 35.84 14.418 52.019 61.809 93.266 113.582 98.918 4.732 0.494 10.224 0.776 15.782 0.776 13.103 0 25.839-1.567 38.033-4.524l-1.099 0.225z" />
<glyph unicode="&#xe926;" glyph-name="particles" d="M647.578 781.537c-50.806-8.573-94.033-35.916-123.14-74.507l-0.355-0.491c-12.165-16.138-26.46-45.793-32.031-66.56-4.178-15.524-4.588-19.784-4.588-47.759 0-27.689 0.451-32.358 4.424-47.063 14.541-53.944 45.629-94.003 94.822-122.143 15.401-8.806 43.991-18.35 63.652-21.217 20.931-3.072 55.091-1.229 75.244 4.055 54.313 14.213 97.853 48.824 122.88 97.649 24.207 47.227 28.385 97.034 12.329 147.866-14.991 47.677-51.61 90.071-97.526 113.091-33.341 16.671-78.52 23.347-115.712 17.080zM709.468 723.497c25.518-5.693 47.677-18.76 67.338-39.731 15.114-16.138 23.962-30.638 29.737-48.906 14.541-45.793 5.489-94.167-24.125-128.819-25.928-30.392-58.532-46.776-97.198-48.865-63.611-3.441-119.931 37.274-137.748 99.533-3.031 10.732-3.768 17.613-3.768 35.512 0.041 26.46 2.54 37.192 13.926 60.58 6.881 14.090 10.158 18.432 25.108 33.26 19.292 19.21 32.604 27.853 52.92 34.284 12.773 4.191 27.473 6.607 42.737 6.607 11.015 0 21.736-1.258 32.027-3.639l-0.954 0.186zM221.635 658.862c-50.981-11.103-90.416-50.607-101.26-100.755l-0.157-0.867c-2.212-10.895-2.703-19.251-2.007-34.12 1.679-34.775 12.739-59.597 37.806-84.664 14.038-14.518 31.38-25.75 50.821-32.493l0.912-0.275c12.083-4.055 15.729-4.465 40.591-4.506 25.477-0.041 28.18 0.287 40.96 4.71 42.271 14.746 75.489 50.586 86.344 93.307 1.475 5.775 2.376 18.227 2.376 32.44-0.041 19.21-0.696 25.149-3.973 35.84-13.066 42.312-47.841 77.005-89.047 88.76-16.425 4.71-47.309 5.98-63.365 2.621zM268.82 601.272c17.121-4.219 38.298-22.282 46.080-39.363 24.371-53.494-20.931-113.664-78.316-103.956-15.923 2.522-29.757 10.055-40.158 20.906l-0.024 0.025c-17.080 17.162-24.822 40.591-20.89 63.037 7.782 44.155 48.906 70.328 93.307 59.351zM453.96 373.576c-37.642-6.922-64.225-20.275-87.9-44.073-30.065-30.228-44.933-69.14-43.049-112.64 2.621-60.662 38.298-111.124 94.659-133.98 19.866-8.069 28.385-9.503 56.771-9.462 24.166 0.041 27.812 0.451 41.82 4.833 55.951 17.49 95.15 61.153 105.882 118.047 1.334 7.981 2.096 17.176 2.096 26.549 0 13.581-1.6 26.788-4.622 39.443l0.232-1.152c-13.962 52.132-53.671 92.56-104.318 107.294l-1.072 0.267c-11.796 3.441-19.907 4.628-35.717 5.079-3.15 0.159-6.84 0.25-10.551 0.25-5.007 0-9.975-0.165-14.899-0.49l0.669 0.035zM502.743 312.996c21.381-6.554 44.892-27.034 55.214-48.005 35.226-71.516-30.024-152.494-107.151-132.997-18.268 4.628-30.802 11.919-44.646 25.928-16.705 16.775-27.033 39.912-27.033 65.461 0 15.997 4.049 31.049 11.178 44.186l-0.243-0.489c10.527 20.029 33.178 39.199 54.354 46.080 8.649 2.648 18.591 4.173 28.889 4.173 10.499 0 20.629-1.585 30.161-4.53l-0.723 0.192z" />
<glyph unicode="&#xe927;" glyph-name="party-propz" d="M479.437 903.229c-3.728-2.73-6.909-5.924-9.54-9.543l-0.086-0.124-3.891-5.734v-147.087l-31.99 31.785c-17.613 17.49-33.669 32.645-35.758 33.71-5.775 2.908-19.497 2.253-26.092-1.27-7.078-3.636-12.185-10.253-13.696-18.148l-0.026-0.161c-3.359-14.705-2.54-15.77 54.804-73.318l52.756-52.92v-91.054c0-85.975-0.164-90.931-2.99-89.866-2.089 0.819-150.651 85.811-155.361 88.883-0.044-3.781-6.697 19.951-13.128 43.774l-6.246 27.169c-11.059 41.288-20.316 72.622-22.282 75.366-2.844 3.395-6.286 6.183-10.179 8.227l-0.184 0.088c-18.227 9.298-40.591-3.932-40.468-23.962 0.041-4.301 4.915-25.887 10.854-47.964 5.98-22.036 10.65-40.346 10.404-40.632s-27.976 15.483-61.645 34.98l-61.194 35.512h-10.568c-8.028 0-11.674-0.819-15.36-3.564-15.319-11.346-17.039-32.276-3.686-44.401 2.212-2.007 30.515-18.842 62.874-37.437 65.905-37.806 60.58-34.652 59.556-35.676-0.451-0.41-19.374-5.775-42.066-11.878-22.733-6.103-43.213-12.37-45.588-13.926-5.202-3.4-10.363-11.633-11.919-18.924-3.277-15.524 11.387-33.055 27.607-32.973 2.621 0 36.127 8.438 74.465 18.719l69.714 18.678 77.865-45.015c42.803-24.74 78.029-45.67 78.275-46.449 0.205-0.778-18.596-12.288-41.779-25.559l-114.524-65.823-71.352 19.128c-68.239 18.268-71.721 19.005-78.93 17.080-14.991-4.014-24.863-20.48-20.685-34.447 2.58-8.643 9.011-15.892 16.753-18.883 3.523-1.352 23.511-7.004 44.36-12.575 20.89-5.53 37.97-10.445 38.011-10.936 0-0.532-27.361-16.63-60.785-35.84-42.844-24.658-62.054-36.618-65.167-40.632-3.048-4.12-4.941-9.257-5.119-14.827l-0.001-0.042c-1.884-22.733 20.931-37.356 41.656-26.706 3.645 1.884 31.949 18.022 62.915 35.922 7.486 4.93 25.989 15.598 44.649 26.020l11.958 6.134c0.164-0.205-4.588-18.391-10.568-40.468-5.98-22.036-10.895-43.459-10.936-47.555-0.246-27.156 35.267-37.929 51.323-15.565 1.679 2.335 11.428 35.594 21.668 73.892 10.24 38.339 19.292 70.328 20.152 71.107 1.843 1.72 155.648 90.522 156.836 90.522 0.451 0 0.819-40.919 0.819-90.89v-90.89l-51.323-51.2c-28.221-28.14-52.511-53.453-53.944-56.197-3.359-6.349-3.4-19.374-0.082-25.846 4.976-9.304 14.626-15.527 25.73-15.527 1.544 0 3.061 0.12 4.54 0.352l-0.164-0.021c7.332 1.065 9.748 3.072 40.346 33.423 17.9 17.736 33.055 32.236 33.71 32.236s1.188-32.317 1.188-71.844c0-80.773-0.123-79.913 12.411-88.228 14.049-9.298 33.178-4.137 40.509 10.854 3.236 6.595 3.4 10.609 3.4 78.397v71.434l32.113-31.744c27.156-26.829 33.26-31.99 39.526-33.71 19.374-5.202 35.881 7.414 35.881 27.484 0 7.864-0.86 10.732-4.956 16.22-2.703 3.645-26.911 28.508-53.74 55.255l-48.824 48.66v90.89c0 49.971 0.328 90.89 0.696 90.89 0.983 0 155.116-88.883 156.795-90.399 0.737-0.655 9.748-32.604 20.070-71.025s20.152-71.762 21.873-74.097c12.288-16.835 35.676-16.056 47.555 1.556 2.422 3.593 3.872 8.015 3.891 12.775v0.005c0 3.85-4.997 25.395-11.059 47.841-2.274 6.916-5.928 20.76-9.279 34.722l-1.33 6.566c0.205 0.246 20.357-11.141 44.728-25.231 77.824-45.056 79.872-46.121 88.556-46.121 27.976 0 38.912 35.594 15.729 51.282-3.85 2.621-32.195 19.251-62.915 36.946-30.761 17.695-55.91 32.645-55.91 33.219 0 0.532 18.555 5.898 41.206 11.919s43.54 12.534 46.408 14.459c7.164 4.9 11.804 13.032 11.804 22.249 0 0.228-0.003 0.455-0.008 0.681l0.001-0.034c0 14.131-7.66 24.003-21.504 27.73-6.513 1.761-12.165 0.492-78.725-17.203l-71.68-19.128-79.012 45.629c-42.835 23.994-68.469 39.246-93.89 54.812l15.411-8.773c0.246 0.205 35.881 20.808 79.135 45.752l78.684 45.343 69.796-18.678c38.38-10.281 71.926-18.678 74.547-18.719 11.346 0 23.347 9.585 26.583 21.217 2.99 10.854-1.966 24.863-10.936 30.72-2.253 1.516-22.733 7.7-45.507 13.844-63.968 15.509-78.335 19.492-92.683 23.518l49.756-11.926c-0.86 0.246 24.863 15.647 57.139 34.243s61.276 35.758 64.43 38.134c16.097 12.165 12.411 39.895-6.349 47.759-12.984 5.407-16.835 3.809-82.862-34.284-33.669-19.415-61.44-35.062-61.727-34.816-0.287 0.287 4.506 18.924 10.568 41.452 12.411 45.834 12.984 52.675 5.284 62.792-5.195 6.885-13.362 11.289-22.557 11.289-8.996 0-17.007-4.215-22.166-10.778l-0.046-0.061c-2.99-3.932-8.929-23.429-22.077-72.745-10.742-42.921-17.435-66.592-24.437-90.131l4.94 19.352c-0.901-2.171-31.334-20.685-79.053-48.251-8.678-5.89-34.409-20.728-60.335-35.259l-18.39-9.469c-0.614 0-1.147 40.919-1.147 90.89v90.89l51.323 51.2c28.221 28.14 52.388 53.248 53.74 55.788 3.277 6.144 3.113 19.087-0.328 26.296-1.98 3.775-4.622 6.941-7.803 9.456l-0.061 0.047c-5.571 3.973-18.678 5.98-26.378 4.055-3.072-0.778-16.589-12.943-37.601-33.792l-32.768-32.645-0.492 74.424c-0.492 72.499-0.573 74.588-4.055 79.258-9.462 12.78-26.542 16.589-38.38 8.643z" />
<glyph unicode="&#xe928;" glyph-name="presets" d="M482.099 823.685c-10.363-4.71-326.779-184.32-333.373-189.235-13.844-10.322-14.172-32.031-0.655-43.295 2.662-2.253 34.57-19.415 70.902-38.134 36.332-18.76 66.028-34.488 65.987-34.98 0-0.532-28.549-17.039-63.447-36.782-77.865-43.991-76.882-43.377-80.404-50.79-5.693-12.001-2.335-28.467 7.209-35.267 2.499-1.761 33.096-17.981 68.035-36.045 34.939-18.022 63.529-33.26 63.529-33.833-0.041-0.573-28.59-17.203-63.447-36.905-34.898-19.702-65.618-37.642-68.321-39.895-6.051-4.767-9.9-12.094-9.9-20.321 0-0.431 0.011-0.859 0.031-1.284l-0.002 0.060c0-9.585 3.318-16.384 10.65-21.873 3.072-2.294 80.282-42.721 171.663-89.907 165.888-85.647 166.093-85.729 174.899-84.992 7.66 0.655 31.375 12.37 173.548 85.811 90.604 46.735 167.076 86.794 170.025 88.924 11.059 8.192 14.254 27.156 6.308 37.97-4.465 6.103-8.765 8.724-78.766 48.415l-60.334 34.161 61.194 31.539c33.628 17.326 64.348 33.341 68.239 35.594 8.527 5.5 14.124 14.903 14.254 25.622v0.019c-0.617 8.241-4.35 15.506-10.012 20.705l-0.023 0.021c-5.174 3.859-27.967 17.168-50.908 30.247l-18.847 9.894c-36.823 20.89-66.97 38.42-66.97 38.953s30.147 16.548 66.97 35.594c36.864 19.005 69.1 36.577 71.639 38.994 9.421 8.888 10.65 26.173 2.58 36.659-3.154 4.137-46.776 29.655-170.435 99.738-91.382 51.814-168.346 95.027-170.967 96.010-6.922 2.58-12.984 2.171-20.849-1.393zM627.712 689.664l133.571-75.776-14.131-7.619c-7.782-4.219-67.953-35.389-133.693-69.304l-119.521-61.645-132.055 68.198c-97.279 48.142-140.944 71.304-184.407 94.789l51.082-25.239c-0.983 1.024 260.506 151.347 264.684 152.207 0.492 0.082 60.989-33.956 134.472-75.612zM440.156 438.702c22.897-11.878 44.401-22.159 47.759-22.897 1.789-0.339 3.847-0.533 5.951-0.533 2.183 0 4.317 0.209 6.384 0.607l-0.21-0.034c3.318 0.737 35.922 16.835 72.54 35.758 36.618 18.964 67.338 34.488 68.28 34.447 1.925 0 120.709-67.297 119.931-67.953-0.696-0.655-250.266-129.638-259.359-134.021l-7.864-3.85-133.284 68.854c-73.318 37.888-132.71 69.427-132.014 70.083s27.73 16.179 60.088 34.529l58.86 33.341 25.641-13.394 67.297-34.939zM447.16 239.923c37.806-19.579 42.435-21.381 50.668-20.029 3.277 0.532 37.192 17.080 75.325 36.741 38.175 19.702 70.287 36.045 71.393 36.372 2.621 0.737 116.859-63.98 115.302-65.331-2.335-2.048-264.069-136.888-265.748-136.888-1.761-0.041-263.537 134.799-265.83 136.888-0.696 0.655 24.658 15.852 56.32 33.833l57.59 32.645 104.98-54.231z" />
<glyph unicode="&#xe929;" glyph-name="price-table" d="M241.5 917.361c-41.943-5.161-74.998-31.703-91.177-73.196l-4.383-11.305-0.492-398.5c-0.532-443.679-1.393-410.542 11.141-435.651 4.547-9.134 9.994-16.179 20.808-26.911 16.63-16.548 29.123-23.962 48.906-29 12.861-3.318 19.866-3.4 277.176-3.4 258.253 0 264.274 0.082 277.299 3.441 19.128 4.874 33.546 13.517 49.521 29.696 9.83 9.912 15.483 17.408 20.111 26.624 12.206 24.371 11.387-6.021 11.428 430.203 0.041 386.376-0.041 393.789-3.359 406.733-9.462 37.069-39.322 67.379-77.66 78.889-9.667 2.908-25.313 3.072-269.681 3.359-142.664 0.164-264.028-0.287-269.64-0.983zM774.472 856.248c11.305-6.021 20.275-15.073 25.477-25.682l4.751-9.667 0.532-386.54c0.369-287.13 0-388.997-1.475-395.96-3.032-12.941-10.177-23.883-19.955-31.655l-0.116-0.089c-15.319-11.674 2.212-11.018-283.73-10.527l-258.458 0.451-8.028 3.727c-11.788 6.32-21.205 15.737-27.352 27.173l-0.173 0.352-3.686 7.987v785.080l3.645 7.905c6.92 14.518 19.254 25.518 34.323 30.52l0.411 0.118c2.335 0.696 121.774 1.188 265.38 1.024l261.12-0.328 7.332-3.891zM489.103 805.949c-4.587-2.804-8.252-6.706-10.696-11.351l-0.076-0.159c-2.458-4.71-5.816-8.315-8.643-9.38-17.94-6.676-36.905-23.552-44.114-39.281-4.314-8.659-6.838-18.861-6.838-29.652 0-11.83 3.034-22.952 8.367-32.629l-0.177 0.35c13.107-25.108 36.905-39.485 71.066-43.049 8.724-0.901 18.104-2.785 20.849-4.219 12.861-6.676 15.524-16.589 6.676-24.863-12.452-11.674-32.727-10.895-46.531 1.72-9.626 8.765-13.148 10.363-22.938 10.363-9.547-0.034-17.965-4.838-22.999-12.153l-0.061-0.095c-4.751-6.431-5.775-19.825-2.048-27.648 4.26-9.011 19.907-22.528 33.219-28.713 9.421-4.383 11.878-6.39 13.599-11.059 1.106-3.113 4.792-7.782 8.192-10.363 5.284-4.055 7.741-4.71 17.531-4.71 9.748 0 12.206 0.655 17.49 4.71 3.489 2.739 6.277 6.209 8.16 10.191l0.073 0.171c1.679 4.71 4.137 6.676 14.131 11.305 30.802 14.377 49.644 47.636 43.786 77.414-5.939 30.228-29.86 54.19-61.645 61.686-5.064 1.284-11.015 2.217-17.115 2.606l-0.293 0.015c-25.19 0.082-40.346 16.343-26.952 28.877 13.476 12.575 32.809 10.895 49.644-4.301 6.39-5.775 8.356-6.595 17.695-7.168 8.847-0.532 11.387 0 16.302 3.359 11.141 7.66 15.565 18.063 13.107 31.007-2.048 10.977-22.446 29.491-38.994 35.389-4.874 1.761-7.291 4.055-9.994 9.667-4.836 9.401-14.47 15.719-25.58 15.719-5.22 0-10.115-1.395-14.331-3.833l0.138 0.074zM330.22 467.087c-13.391-5.999-22.847-18.624-24.236-33.59l-0.012-0.161c-1.475-14.172 2.048-23.88 12.37-34.243 20.808-20.849 53.862-15.524 66.683 10.732 4.014 8.151 4.424 10.732 3.727 21.75-0.942 14.909-6.308 24.412-18.309 32.481-9.871 6.636-29.45 8.11-40.223 3.031zM459.94 451.891c-5.898-1.434-14.746-9.216-17.244-15.155-5.652-13.558-0.696-29.573 11.305-36.332 6.349-3.564 7.496-3.604 117.268-3.604h110.879l5.652 3.85c8.806 5.98 12.411 12.042 13.148 22.118 0.86 12.042-4.219 21.176-14.828 26.501l-7.578 3.85-107.602-0.205c-59.187-0.082-109.117-0.573-111.002-1.024zM357.622 438.702c9.093-9.134 2.703-24.822-10.076-24.822-7.127 0-14.746 7.864-14.746 15.237 0 12.083 16.097 18.309 24.822 9.585zM339.436 328.602c-19.4-4.096-33.752-21.074-33.752-41.403 0-6.359 1.404-12.389 3.919-17.799l-0.109 0.261c15.155-32.563 61.563-32.522 76.431 0 3.768 8.233 4.219 25.846 0.86 33.874-7.373 17.654-28.262 28.713-47.35 25.068zM457.4 309.555c-10.568-4.219-17.080-14.418-17.080-26.747 0-9.748 4.547-17.736 13.558-23.798l5.816-3.932 112.23 0.451c110.305 0.451 112.271 0.532 116.9 3.973 9.134 6.84 11.756 12.083 11.756 23.634 0 8.97-0.737 11.633-4.588 16.712-9.257 12.124-4.055 11.633-125.379 11.51-68.157-0.082-110.551-0.737-113.213-1.802zM357.99 297.267c3.809-3.441 5.079-11.305 2.744-17.285-1.27-3.4-9.38-7.782-14.336-7.782-2.007 0-5.857 2.253-8.602 4.997-7.987 7.987-6.144 18.842 3.932 23.101 6.185 2.621 11.018 1.72 16.261-3.031zM328.54 138.424c-10.158-4.792-18.432-13.066-22.2-22.159-3.441-8.192-3.604-26.010-0.328-33.833 3.809-9.093 13.107-18.555 22.528-22.938l8.52-4.014 166.42 0.041c163.799 0 166.502 0.082 174.080 3.523 15.974 7.25 24.084 19.005 25.231 36.7 0.138 1.536 0.217 3.323 0.217 5.128 0 4.598-0.512 9.076-1.482 13.381l0.077-0.405c-2.949 8.97-13.394 20.070-23.101 24.617l-8.643 4.014h-332.8l-8.52-4.055z" />
<glyph unicode="&#xe92a;" glyph-name="retina-image" d="M99 729.846v-102.154l3.809-5.612c12.861-18.883 35.799-18.883 48.66 0 3.85 5.612 3.85 5.734 3.85 78.725v73.114l139.1 0.901 0.901 57.18h-196.321v-102.154zM712.049 803.41l0.492-28.59 137.175-0.901 0.532-72.090c0.573-76.308 0.451-75.325 8.847-84.623 5.178-5.581 12.552-9.063 20.74-9.063 11.867 0 22.026 7.314 26.214 17.68l0.068 0.19c1.229 3.236 1.843 38.298 1.843 105.39v100.598h-196.362l0.451-28.59zM450.56 641.823c-74.793-9.503-136.315-34.816-190.341-78.316-38.011-30.597-83.927-88.474-92.16-116.122-3.359-11.346-3.113-28.959 0.573-39.608 15.483-44.769 77.169-111.288 134.554-145.121 85.893-50.627 202.179-65.044 307.364-38.093 87.544 22.683 160.196 75.623 207.8 146.745l0.809 1.284c21.668 32.399 26.378 50.872 19.087 74.916-6.472 21.258-30.269 55.542-59.965 86.385-55.91 57.999-124.15 92.692-209.101 106.25-23.47 3.727-94.536 4.751-118.62 1.679zM425.82 575.508c-23.716-12.82-46.531-33.137-60.498-53.903-21.873-32.44-32.481-76.227-27.525-113.5 7.373-55.337 39.404-101.253 89.743-128.573 9.011-4.915 9.503-5.448 4.26-4.506-24.79 5.483-46.145 12.189-66.683 20.492l2.786-0.995c-38.134 16.343-64.020 33.792-93.307 62.956-27.156 26.952-51.036 60.17-51.036 70.984 0 9.667 31.457 53.002 53.985 74.342 36.206 34.158 81.001 59.605 130.792 72.76l2.124 0.477c24.453 6.431 28.017 6.308 15.36-0.532zM603.464 574.157c50.488-14.579 93.803-40.524 128.685-74.986l-0.030 0.029c25.641-25.477 51.241-60.989 51.241-71.066 0-8.643-23.552-42.557-45.67-65.741-37.438-38.996-85.313-67.702-139.135-81.633l-2.054-0.451c-28.14-7.168-28.344-7.168-14.213 0.983 18.76 10.772 28.262 18.145 41.656 32.276 19.509 20.099 33.88 45.29 40.927 73.387l0.238 1.119c2.971 12.103 4.675 25.997 4.675 40.29 0 14.229-1.689 28.064-4.877 41.315l0.244-1.2c-12.206 46.408-38.625 80.732-80.855 105.144l-13.394 7.782 7.66-1.229c4.219-0.655 15.442-3.359 24.904-6.021zM531.62 533.32c18.555-4.71 33.505-13.599 48.824-28.836 51.446-51.446 39.322-135.987-24.74-172.401-24.412-13.844-58.45-17.039-85.893-8.028-33.758 11.61-59.766 37.927-70.716 71.092l-0.227 0.793c-4.915 15.524-5.243 47.8-0.696 62.3 11.715 37.315 40.591 65.618 76.636 75.039 8.558 2.131 18.382 3.353 28.492 3.353 10.048 0 19.813-1.208 29.16-3.485l-0.84 0.173zM115.22 245.74c-3.173-1.731-5.908-3.604-8.436-5.718l0.080 0.065c-7.782-6.922-7.864-8.028-7.864-115.466v-101.622l195.42 0.901 0.901 57.18h-140.001v72.581c0 80.568 0 80.323-11.059 88.76-7.823 5.98-21.299 7.496-29.041 3.318zM868.68 246.395c-6.476-3.101-11.658-8.032-14.987-14.122l-0.087-0.173c-2.499-4.506-2.908-14.049-3.359-78.070l-0.532-72.95h-138.117l0.451-28.59 0.492-28.59 195.502-0.901-0.492 103.997c-0.451 102.523-0.492 104.079-4.014 108.831-7.741 10.404-23.347 15.155-34.857 10.568z" />
<glyph unicode="&#xe92b;" glyph-name="section-divider" d="M497.51 864.563c-9.728-4.557-399.104-394.445-402.739-403.302-1.581-3.931-2.497-8.489-2.497-13.261s0.917-9.33 2.584-13.507l-0.087 0.246c1.792-4.403 29.44-33.178 89.139-92.979l86.528-86.579-82.176-82.381c-74.342-74.496-82.33-83.098-84.173-90.010-0.963-3.011-1.518-6.475-1.518-10.068 0-18.861 15.29-34.15 34.15-34.15 3.593 0 7.057 0.555 10.31 1.584l-0.242-0.066c6.912 1.843 15.514 9.83 90.010 84.173l82.381 82.176 86.579-86.528c59.802-59.699 88.576-87.347 92.979-89.139 8.090-3.328 18.432-3.328 26.522 0 8.858 3.635 398.746 393.011 403.302 402.739 1.964 4.318 3.109 9.364 3.109 14.677 0 4.703-0.897 9.196-2.529 13.319l0.086-0.245c-1.792 4.403-29.44 33.178-89.139 92.979l-86.528 86.579 82.176 82.381c74.24 74.445 82.33 83.098 84.173 90.010 0.818 2.914 1.289 6.261 1.289 9.717 0 7.201-2.042 13.926-5.579 19.626l0.092-0.159c-4.915 7.424-19.354 15.206-28.16 15.155-13.978-0.051-17.971-3.482-102.093-87.501l-80.64-80.538-86.579 86.528c-59.802 59.75-88.576 87.398-92.979 89.19-3.877 1.546-8.371 2.443-13.074 2.443-5.313 0-10.359-1.145-14.905-3.201l0.228 0.092zM584.55 712.55l71.629-71.68-337.050-337.101-144.179 144.23 168.090 168.090c55.728 55.993 110.777 110.782 166.083 165.311l2.877 2.83c0.461 0 33.126-32.256 72.55-71.68zM777.37 519.68l71.68-71.68-337.050-337.050-144.23 144.179 168.141 168.141c55.733 56.028 110.782 110.801 166.111 165.291l2.849 2.799c0.461 0 33.126-32.256 72.499-71.68z" />
<glyph unicode="&#xe92c;" glyph-name="twitter" d="M770.58 847.565c-7.455-4.669-7.987-5.284-120.34-138.117-56.566-66.929-103.465-121.078-104.12-120.3 22.12-30.163-7.968 7.84-37.974 45.909l-53.858 70.868c-79.34 101.13-91.505 115.876-98.14 119.112-7.455 3.604-8.561 3.645-98.918 3.154l-91.382-0.451-7.332-5.161c-13.804-9.708-19.784-31.252-12.534-45.384 1.638-3.154 60.867-83.886 131.604-179.323 70.738-95.478 128.614-174.285 128.614-175.186s-60.375-72.95-134.185-160.113c-73.81-87.163-134.922-160.399-135.823-162.734-2.662-6.881-0.778-20.972 3.686-27.238 5.607-6.706 13.706-11.167 22.854-11.952l0.125-0.009c13.148-0.123 12.78-0.532 148.603 160.236 71.352 84.419 130.253 153.354 130.949 153.19s40.509-53.289 88.515-118.088c145.859-196.854 137.503-185.917 145.408-190.423l7.209-4.137 102.4-0.492c73.032-0.369 104.407 0.082 109.445 1.475 20.849 5.734 32.195 30.556 22.938 50.217-1.761 3.768-75.94 99.41-164.864 212.5-88.883 113.091-163.512 208.118-165.847 211.149l-4.26 5.489 112.722 133.079c117.678 138.977 118.088 139.51 115.671 152.289-3.564 18.801-26.010 29.942-41.165 20.439zM584.54 447.959c139.837-178.258 255.345-325.673 256.614-327.598 2.335-3.441 2.335-3.441-66.847-3.441h-69.222l-241.254 325.55c-132.71 179.036-241.869 326.492-242.565 327.68-1.024 1.679 10.158 2.089 53.821 2.007l55.173-0.082 254.28-324.116z" />
<glyph unicode="&#xe92d;" glyph-name="user-registeration-form" horiz-adv-x="983" d="M323.584 832.778c-67.655-12.87-122.463-58.214-148.31-118.864l-0.497-1.313c-9.514-22.482-15.043-48.625-15.043-76.059 0-56.736 23.648-107.948 61.624-144.319l0.072-0.069c35.691-33.932 84.075-54.804 137.334-54.804 0.016 0 0.032 0 0.048 0h-0.002c87.982 0 166.707 58.491 190.833 141.763 6.185 21.381 8.069 35.226 7.946 58.941 0.007 0.61 0.011 1.331 0.011 2.053 0 39.843-12.287 76.816-33.278 107.337l0.417-0.641c-30.214 44.621-76.888 76.141-131.119 85.915l-1.223 0.183c-10.204 1.477-21.986 2.32-33.965 2.32-12.293 0-24.378-0.888-36.195-2.603l1.347 0.16zM397.312 774.124c15.36-4.219 38.175-16.343 51.241-27.197 23.101-19.169 42.148-48.865 48.988-76.186 3.891-15.688 3.891-52.92 0-68.567-10.486-42.107-44.564-81.428-84.787-97.812-19.005-7.741-34.898-10.199-60.334-9.298-19.579 0.655-24.166 1.393-37.806 6.021-17.382 5.519-32.407 14.035-45.226 25.046l0.17-0.143c-22.267 18.106-38.928 42.315-47.486 70.078l-0.273 1.029c-4.014 13.23-4.465 17.244-4.465 39.322s0.451 26.092 4.465 39.322c15.319 50.381 55.869 88.596 106.045 99.983 14.008 3.154 55.624 2.171 69.468-1.597zM734.822 578.13c-6.362-2.185-11.53-6.464-14.799-11.997l-0.069-0.127c-2.908-4.424-3.236-9.093-3.973-59.761l-0.819-54.968-54.968-0.819c-50.668-0.737-55.337-1.065-59.761-3.973-8.143-5.037-13.486-13.917-13.486-24.046 0-1.795 0.168-3.55 0.488-5.252l-0.027 0.175c1.147-6.595 8.11-16.138 14.5-19.825 2.458-1.393 19.743-2.212 58.368-2.785l54.886-0.819 0.819-54.886c0.942-61.768 0.901-61.768 13.517-68.854 4.095-2.29 8.985-3.638 14.19-3.638 10.688 0 20.049 5.686 25.221 14.198l0.074 0.131c1.27 2.212 2.13 20.972 2.703 58.163l0.819 54.886 55.173 0.819c52.511 0.778 55.419 0.983 59.72 4.178 16.957 12.698 16.957 34.652 0 47.35-4.301 3.195-7.209 3.4-59.72 4.178l-55.173 0.819-0.819 54.968c-0.901 60.662-0.655 59.187-11.837 67.666-4.877 3.244-10.869 5.177-17.313 5.177-2.74 0-5.398-0.349-7.933-1.006l0.219 0.048zM319.611 320.082c-109.281-15.933-199.844-92.324-231.875-195.666-5.489-17.613-5.612-18.678-3.891-26.788 2.908-13.599 17.818-23.839 31.048-21.299 14.705 2.785 19.374 8.274 27.73 32.563 13.476 39.076 30.147 65.495 58.532 92.774 29.881 29.28 67.912 50.349 110.375 59.492l1.487 0.268c19.743 4.342 71.844 4.342 91.587 0 29.785-6.13 56.142-17.494 79.335-33.18l-0.774 0.494c19.087-12.534 46.121-37.888 59.433-55.706 11.878-16.015 27.73-47.391 33.423-66.273 6.676-22.118 14.5-29.983 30.024-30.392 16.261-0.41 28.836 11.592 28.59 27.361-0.246 15.565-16.425 56.279-33.3 83.763-38.643 61.733-98.679 107.018-169.509 125.75l-1.99 0.447c-33.587 8.724-76.923 11.223-110.223 6.39z" />
<glyph unicode="&#xe92e;" glyph-name="video-gallery" d="M255.14 711.7c-15.016-3.121-28.267-9.097-39.751-17.372l0.306 0.21c-10.035-7.168-29.655-27.075-29.655-30.065 0-0.778-15.933-1.434-35.43-1.475-50.217-0.041-66.724-4.342-90.849-23.675-17.059-13.217-29.948-31.066-36.846-51.661l-0.223-0.768-4.751-13.476-0.532-109.609c-0.614-126.075-0.328-129.475 11.796-154.010 12.902-26.051 39.24-48.169 68.076-57.303 7.25-2.253 18.391-3.195 48.865-3.973l39.444-1.065 7.086-8.97c13.681-17.285 37.97-32.768 59.924-38.216 7.66-1.884 53.617-2.294 254.28-2.294h244.9l12.82 3.973c22.015 6.999 40.517 19.837 54.274 36.7l0.162 0.205 7.496 9.462h33.096c38.339 0 53.043 2.294 71.352 11.141 22.647 11.017 40.602 28.721 51.643 50.519l0.294 0.64c10.281 20.849 10.322 21.504 10.322 145.203 0.041 107.192-0.123 113.459-3.359 126.116-8.724 34.079-36.25 63.324-70.902 75.366-12.902 4.465-15.647 4.751-53.043 5.652l-39.485 0.942-7.086 8.97c-14.459 18.268-39.813 34.038-62.464 38.789-16.835 3.564-485.704 3.604-501.76 0.041zM753.828 653.046c5.161-2.335 12.493-7.823 17.49-13.107l8.643-9.134v-349.676l-7.496-8.315c-4.096-4.588-11.223-10.24-15.77-12.575l-8.315-4.26-240.108-0.41c-237.527-0.451-240.189-0.41-249.364 2.99-11.059 4.137-23.142 15.442-28.795 26.911l-3.973 8.069-0.451 159.867c-0.451 158.228-0.41 159.99 3.072 169.329 6.226 16.589 23.060 30.433 40.755 33.464 4.301 0.737 113.050 1.229 241.623 1.106l233.841-0.246 8.847-4.014zM161.71 455.946l0.451-149.914-25.19 0.614c-22.2 0.532-26.051 1.065-32.522 4.506-10.294 5.959-18.617 14.282-24.406 24.259l-0.17 0.317-3.932 7.291-0.451 110.715-0.492 110.674 4.055 8.847c11.387 24.822 28.385 33.546 64.307 32.932l17.94-0.328 0.41-149.914zM904.806 601.231c11.346-5.202 21.832-15.401 27.361-26.624l3.932-7.987 0.492-106.66c0.614-125.501 1.27-120.095-16.548-138.691-11.919-12.534-20.234-14.909-51.405-14.909h-25.559v149.053c0 81.961 0.573 149.627 1.311 150.364 0.696 0.696 12.411 0.983 26.010 0.614 22.2-0.614 25.764-1.147 34.406-5.161zM405.34 574.484c-8.162-3.681-14.717-9.721-18.941-17.245l-0.105-0.204c-2.949-5.448-3.154-11.796-3.154-106.496v-100.68l4.137-7.209c7.074-11.616 19.669-19.255 34.048-19.255 0.184 0 0.367 0.001 0.55 0.004h-0.028c4.833 0 28.508 11.1 101.581 47.596 52.429 26.132 97.894 49.725 101.048 52.388 15.073 12.698 16.138 37.765 2.212 52.552-2.908 3.031-40.755 22.938-101.499 53.33-106.168 53.043-104.325 52.388-119.849 45.22zM552.96 450.54c0-0.451-25.354-13.517-56.32-29l-56.32-28.18v114.401l56.32-28.18c30.966-15.483 56.32-28.549 56.32-29.041zM371.098 163.983c-6.144-2.662-13.967-11.51-15.483-17.449-1.72-6.922 0.287-20.275 3.809-24.986 5.408-6.953 13.775-11.383 23.177-11.383 9.2 0 17.409 4.242 22.778 10.877l0.043 0.055c17.367 22.815-7.905 54.395-34.324 42.885zM493.978 163.983c-6.144-2.662-13.967-11.51-15.483-17.449-1.72-6.922 0.287-20.275 3.809-24.986 5.408-6.953 13.775-11.383 23.177-11.383 9.2 0 17.409 4.242 22.778 10.877l0.043 0.055c17.367 22.815-7.905 54.395-34.324 42.885zM617.8 164.557c-10.65-4.465-17.039-14.541-17.039-26.829 0-15.565 12.329-27.648 28.14-27.648 15.032 0 26.296 10.24 27.73 25.231 1.597 16.507-9.38 29.532-25.723 30.515-0.907 0.079-1.962 0.124-3.028 0.124-3.589 0-7.059-0.509-10.341-1.458l0.262 0.065z" />
<glyph unicode="&#xe92f;" glyph-name="woo-checkout" d="M232.817 700.559c-24.084-1.679-41.82-5.939-58.737-14.008-33.505-16.015-50.135-45.261-54.641-95.969-2.212-25.19-2.171-340.664 0.082-365.896 3.359-38.134 11.96-60.375 30.515-78.93 18.063-18.063 40.509-27.034 76.308-30.515 22.487-2.212 553.943-2.212 576.43 0 35.676 3.441 57.999 12.452 76.186 30.638 19.046 19.087 27.607 42.148 30.679 82.657 2.171 28.467 2.212 330.957 0.041 358.851-2.048 26.092-5.448 40.264-13.967 58.245-8.357 18.305-22.706 32.668-40.492 40.833l-0.509 0.209c-17.449 8.315-33.055 11.919-60.989 13.967-24.863 1.802-535.142 1.761-560.906-0.082zM776.52 644.239c70.697-3.604 75.448-9.871 77.906-102.318l1.147-44.442h-336.896c-185.303-0.041-338.657-0.492-340.746-1.065l-3.85-1.024 0.041 30.474c0.123 61.153 4.383 90.931 14.5 101.745 10.281 11.059 24.166 14.909 59.72 16.589 38.912 1.843 492.216 1.884 528.179 0.041zM852.91 440.381c2.621-0.983 2.99-150.323 0.451-196.321-2.785-51.528-9.544-63.078-41.247-70.451-11.592-2.703-34.079-2.949-297.533-2.949-263.496 0-285.983 0.246-297.574 2.949-24.412 5.693-33.26 14.541-38.748 38.871-2.499 11.059-2.99 27.566-3.686 121.16l-0.819 108.38 338.493-0.41c186.204-0.246 339.476-0.778 340.664-1.229zM297.82 331.059c-7.537-4.096-11.305-7.864-13.885-14.008-8.069-18.964 5.202-39.731 25.436-39.731 16.794 0 28.549 11.756 28.549 28.59 0 0.006 0 0.013 0 0.020 0 9.595-4.83 18.062-12.192 23.101l-0.096 0.062c-6.267 4.628-20.972 5.652-27.812 1.966z" />
<glyph unicode="&#xe930;" glyph-name="woo-mini-cart" d="M317.44 787.313l-7.66-3.973-92.16-183.46h-125.46v-56.32l7.25-0.082c3.973-0.041 15.319-0.696 25.19-1.475 25.846-1.966 38.789-9.257 47.35-26.583 5.448-11.018 14.868-41.247 60.908-194.806 41.707-150.404 58.713-205.008 76.056-259.462l-26.289 95.622c15.483-46.203 36.454-71.803 67.502-82.412 23.757-8.069 34.529-8.643 170.435-8.643 78.234 0 132.792 0.655 141.681 1.761 47.923 5.939 75.694 28.303 93.88 75.653 2.949 7.619 27.853 88.76 55.378 180.265 40.903 146.156 59.822 206.495 79.199 266.628l-23.821-85.543c5.98 16.302 13.926 26.255 26.214 32.522 5.816 3.031 12.083 4.014 33.219 5.407l26.010 1.679v55.788h-126.28l-45.056 90.030c-24.781 49.521-46.858 91.709-49.070 93.757-4.946 4.522-11.56 7.292-18.821 7.292-10.794 0-20.158-6.122-24.81-15.083l-0.073-0.155c-7.086-14.008-7.209-13.64 34.57-97.28 21.094-42.312 38.38-77.251 38.38-77.742 0-0.451-107.889-0.819-239.739-0.819h-239.78l38.38 76.882c34.693 69.509 38.38 77.701 38.38 85.402 0 10.404-3.195 16.998-11.182 23.060-4.53 3.452-10.269 5.53-16.494 5.53-4.877 0-9.456-1.276-13.421-3.512l0.137 0.071zM819.2 542.29c0-0.696-2.744-8.888-6.062-18.186-3.318-9.339-27.853-89.62-54.477-178.422-26.665-88.801-50.831-167.936-53.74-175.923-10.445-28.877-18.473-38.38-36.823-43.704-9.134-2.662-22.692-3.031-132.178-3.604-135.578-0.737-155.443 0.123-170.189 7.373-11.018 5.366-16.507 12.902-24.904 33.997-3.359 8.479-27.976 88.351-54.764 177.521-51.487 171.622-55.951 185.999-59.965 193.741-1.114 1.937-1.991 4.182-2.511 6.561l-0.029 0.157c0 1.229 91.013 1.761 297.82 1.761 163.799 0 297.82-0.573 297.82-1.27zM413 452.792c-5.124-2.434-9.151-6.487-11.489-11.487l-0.061-0.146-3.891-7.66 0.492-79.667c0.451-77.783 0.532-79.79 4.014-84.5 6.185-8.315 13.967-12.493 23.347-12.493 0.285-0.010 0.621-0.016 0.957-0.016 10.162 0 19.053 5.442 23.917 13.57l0.070 0.127c3.523 6.308 3.604 8.11 3.604 86.589v80.159l-3.809 5.612c-9.011 13.23-23.306 17.039-37.151 9.912zM604.16 452.792c-5.133-2.422-9.163-6.479-11.49-11.487l-0.061-0.146-3.891-7.66 0.451-79.667c0.492-77.783 0.573-79.79 4.055-84.5 6.185-8.315 13.967-12.493 23.347-12.493 0.265-0.009 0.576-0.014 0.889-0.014 10.181 0 19.092 5.438 23.986 13.569l0.070 0.126c3.523 6.308 3.604 8.11 3.604 86.589v80.159l-3.85 5.612c-8.97 13.23-23.265 17.039-37.11 9.912z" />
<glyph unicode="&#xe931;" glyph-name="wp-forms-styler" d="M205.66 870.257c-19.382-4.896-36.237-13.799-50.349-25.826l0.173 0.144c-13.117-12.474-23.639-27.541-30.763-44.394l-0.325-0.867-4.055-10.854-0.451-324.116c-0.492-356.311-1.147-332.841 9.789-355.123 10.732-21.873 29.573-40.346 52.101-51.077 23.020-11.018 0.532-10.363 348.16-10.363h317.44l13.64 4.669c33.382 11.387 60.867 39.199 71.311 72.131l3.768 11.96v646.799l-3.768 11.96c-10.691 33.71-38.339 61.276-73.032 72.827l-11.919 3.973-314.9 0.328c-268.861 0.246-316.621-0.082-326.82-2.171zM506.757 814.346c-18.472-14.808-50.867-39.569-83.514-64.013l-16.019-11.477c-1.434-0.532-97.116 69.181-102.892 74.998-0.614 0.573 44.851 1.065 101.007 1.065s101.786-0.246 101.417-0.573zM749.24 814.223c0-1.352-99.492-74.834-101.622-75.039-1.188-0.123-16.22 10.568-33.382 23.675l-49.848 38.011-18.555 14.049h101.704c55.91 0 101.704-0.287 101.704-0.696zM392.274 678.113c4.228-1.724 9.134-2.725 14.273-2.725 3.354 0 6.608 0.426 9.711 1.227l-0.269-0.059c5.12 1.393 21.996 13.271 58.696 41.37 45.138 34.57 51.937 39.199 54.723 37.437 1.761-1.065 24.822-18.555 51.282-38.789 26.46-20.275 50.012-37.601 52.429-38.543 4.147-1.665 8.955-2.631 13.988-2.631 3.443 0 6.78 0.452 9.955 1.299l-0.269-0.061c5.407 1.434 31.048 19.743 97.116 69.304l89.743 67.338 6.963-3.604c10.117-5.161 20.726-16.179 25.231-26.132l3.932-8.724v-629.76l-3.932-8.684c-5.826-11.388-14.723-20.496-25.604-26.422l-0.323-0.161-7.66-3.973-311.828-0.451c-308.797-0.451-311.869-0.41-320.963 2.99-10.854 4.055-23.388 15.811-29 27.197l-3.809 7.782v633.201l3.932 7.987c4.628 9.38 15.524 20.849 24.003 25.19l5.939 3.031 88.596-66.437c48.742-36.536 90.644-67.215 93.143-68.198zM259.768 562.975c-15.606-7.823-19.702-30.966-7.741-43.704 9.011-9.585 10.813-9.83 70.779-9.83 52.142 0 55.378 0.164 62.3 3.523 18.555 9.011 20.685 35.799 3.809 47.841l-5.775 4.096-58.86 0.41c-51.692 0.41-59.597 0.082-64.512-2.335zM440.566 562.852c-20.644-10.158-18.268-43.254 3.686-51.61 3.318-1.229 58.286-1.802 174.080-1.761h169.288l6.84 3.85c8.485 5.043 14.083 14.162 14.083 24.589 0 6.344-2.072 12.204-5.577 16.94l0.055-0.077c-8.847 11.592 1.556 10.977-186.45 10.936-154.788-0.041-170.803-0.287-176.005-2.867zM258.212 446.362c-14.664-8.929-17.531-29.286-6.103-42.885 8.233-9.789 10.404-10.076 70.451-10.076 60.621 0 61.891 0.164 71.148 10.772 10.895 12.37 7.946 32.358-6.103 41.697-5.734 3.809-6.472 3.85-64.881 3.85-55.501-0.041-59.351-0.205-64.512-3.359zM438.518 445.87c-7.423-4.89-12.254-13.188-12.254-22.614 0-0.215 0.003-0.429 0.007-0.642l-0.001 0.032c-0.008-0.248-0.012-0.541-0.012-0.834 0-11.988 7.357-22.257 17.802-26.54l0.191-0.069c3.318-1.229 58.122-1.802 173.384-1.802h168.591l7.455 3.932c8.937 4.703 14.926 13.926 14.926 24.547 0 0.977-0.051 1.942-0.149 2.892l0.010-0.119c-0.819 9.175-4.751 15.483-13.148 21.217l-5.652 3.85h-345.416l-5.734-3.85zM589.455 282.604c-11.1-6.758-16.671-21.135-12.78-32.932 3.549-8.129 9.783-14.535 17.56-18.217l0.217-0.092c3.154-1.188 35.512-1.802 94.863-1.802h90.112l7.414 3.932c8.957 4.719 14.96 13.966 14.96 24.615 0 0.953-0.048 1.895-0.142 2.823l0.010-0.117c-0.86 9.175-4.751 15.483-13.189 21.217l-5.612 3.85h-94.044c-89.334-0.041-94.331-0.205-99.369-3.277z" />
<glyph unicode="&#xe932;" glyph-name="gravity-forms" horiz-adv-x="922" d="M355.584 855.45c-159.099-87.857-227.396-127.893-295.416-168.347l86.366 47.566-106.086-62.413-0.768-136.806c-0.203-33.422-0.319-72.966-0.319-112.537 0-45.475 0.153-90.913 0.459-136.316l-0.037 6.984 0.922-105.011 104.038-61.235c106.138-62.413 311.296-179.558 314.522-179.558s207.974 116.89 314.266 179.456l104.294 61.338 0.922 103.475c0.512 56.934 0.614 165.734 0.154 241.869l-0.819 138.394-109.926 64.614c-92.723 54.477-300.851 173.722-307.61 176.23-1.126 0.41-48.384-25.549-104.96-57.702zM550.963 793.6c64.512-36.557 261.274-150.886 267.162-155.238 1.229-0.87 2.253-233.677 1.331-313.088l-1.126-102.502-88.525-52.070c-48.691-28.621-129.485-75.315-179.507-103.68l-90.982-51.61-91.034 51.61c-134.737 74.363-193.406 108.735-251.83 143.475l72.272-39.795-88.474 52.070-1.178 103.526c-0.294 30.866-0.461 67.343-0.461 103.859s0.167 72.993 0.501 109.43l-0.040-5.571 1.178 104.243 90.778 53.35c97.382 57.242 264.704 152.883 267.776 153.088 1.024 0.051 42.496-22.938 92.16-51.098zM346.368 576.461c-27.75-3.942-51.866-17.51-78.387-44.134-38.81-38.963-60.928-87.398-66.97-146.534-2.816-27.494 1.28-67.942 8.294-81.51 4.961-8.702 12.823-15.269 22.244-18.451l0.284-0.083c3.994-1.075 79.565-1.485 232.243-1.229 214.272 0.41 226.662 0.563 231.885 3.174 7.998 4.236 14.349 10.67 18.37 18.497l0.113 0.242c2.56 5.632 2.816 11.366 2.816 66.355 0.051 38.861-0.512 61.696-1.587 64.512-4.096 10.854-15.053 17.869-27.955 17.869-7.373 0-9.984-0.768-15.36-4.557-3.941-2.913-7.244-6.428-9.839-10.443l-0.094-0.155c-3.328-5.939-3.43-7.322-3.482-50.995v-44.954h-397.466l-0.922 3.43c-1.69 6.4-0.973 30.976 1.331 45.21 4.25 26.112 13.824 51.456 27.648 72.96 10.598 16.435 34.202 39.168 47.616 45.875l10.752 5.325 175.104 0.768c158.822 0.717 175.514 1.024 179.712 3.277 8.777 4.949 14.607 14.211 14.607 24.835 0 0.323-0.005 0.645-0.016 0.965l0.001-0.047c0 9.37-1.997 14.95-7.373 20.634-9.626 10.189 4.454 9.472-186.163 9.626-95.027 0.102-174.899-0.102-177.408-0.461z" />
<glyph unicode="&#xe933;" glyph-name="info-box" d="M196.966 862.618c-24.934-2.97-46.848-14.029-66.202-33.382-20.582-20.582-30.464-41.318-33.587-70.349-1.178-10.906-1.587-120.32-1.229-322.816 0.512-285.85 0.717-307.046 3.533-316.621 12.032-41.267 44.032-72.96 84.838-84.019 10.394-2.816 30.822-3.021 327.68-3.021s317.286 0.205 327.68 3.021c41.395 11.553 73.337 43.494 84.686 84.038l0.204 0.852c2.816 10.394 3.021 30.822 3.021 327.68s-0.205 317.286-3.021 327.68c-11.553 41.105-43.072 72.896-83.159 84.623l-0.861 0.216c-9.574 2.816-30.464 3.021-320.87 3.277-170.854 0.102-316.058-0.41-322.714-1.178zM830.054 796.109c12.339-4.608 25.446-17.715 30.054-30.054 3.43-9.216 3.482-11.981 3.482-318.054s-0.051-308.838-3.482-318.054c-4.608-12.339-17.715-25.446-30.054-30.054-9.216-3.43-11.981-3.482-318.054-3.482s-308.838 0.051-318.054 3.482c-13.557 5.903-24.151 16.497-29.911 29.686l-0.143 0.368c-3.43 9.216-3.482 11.981-3.482 318.054s0.051 308.838 3.482 318.054c4.506 12.032 17.715 25.395 29.594 29.952 8.602 3.328 14.285 3.379 318.003 3.482 306.739 0.102 309.35 0.051 318.566-3.379zM328.602 691.866c-14.234-2.099-27.341-9.114-39.322-21.146-13.671-12.962-22.177-31.254-22.177-51.534 0-4.26 0.375-8.432 1.095-12.485l-0.063 0.428c2.15-15.462 8.755-28.211 21.146-40.55 12.339-12.339 25.037-18.944 40.55-21.146 3.354-0.499 7.225-0.784 11.163-0.784 11.871 0 23.137 2.59 33.264 7.235l-0.498-0.205c12.032 5.939 28.621 22.528 34.56 34.56 9.267 18.739 9.267 46.285-0.051 64.717-12.488 25.040-37.917 41.937-67.292 41.937-4.371 0-8.655-0.374-12.821-1.092l0.446 0.064zM348.467 626.074c3.891-3.533 3.994-10.394 0.307-14.541-5.888-6.451-17.664-1.894-17.664 6.861 0 9.114 10.598 13.824 17.357 7.68zM290.355 436.070c-16.282-3.891-26.368-21.094-22.477-38.298 3.021-13.21 13.568-22.272 27.904-24.013 4.864-0.563 105.626-0.819 223.898-0.512 230.195 0.563 217.907 0.051 227.584 8.806 6.4 5.837 9.318 13.158 9.318 23.296 0 10.086-2.918 17.459-9.318 23.245-9.677 8.755 3.021 8.294-231.834 8.602-120.627 0.102-221.901-0.358-225.075-1.126zM286.72 285.645c-11.437-5.187-19.248-16.503-19.251-29.644v0c0-13.056 8.141-25.344 19.814-29.747 3.277-1.229 63.078-1.843 189.286-1.843h184.525l7.475 3.635c11.11 5.376 16.64 14.694 16.64 27.955s-5.53 22.579-16.64 27.955l-7.475 3.635-185.037-0.102c-118.374-0.102-186.624-0.768-189.338-1.843z" />
<glyph unicode="&#xe934;" glyph-name="log-in" d="M631.654 862.771c-31.283-7.731-30.669-54.272 0.819-61.542 3.635-0.87 47.565-1.587 97.485-1.638 87.040 0 91.187-0.154 100.096-3.482 12.339-4.608 25.446-17.715 30.054-30.054 3.43-9.216 3.482-11.981 3.482-318.054 0-305.459-0.051-308.89-3.482-317.952-4.096-11.059-16.282-24.115-27.238-29.184-7.424-3.482-10.854-3.635-104.96-4.454-86.323-0.717-97.894-1.178-102.4-3.635-6.203-3.62-11.17-8.752-14.492-14.902l-0.1-0.202c-3.072-5.99-2.765-21.965 0.563-28.416 3.43-6.502 11.827-13.824 17.971-15.565 2.509-0.666 48.333-1.28 101.837-1.28 87.552 0 98.406 0.307 108.39 3.021 41.395 11.553 73.337 43.494 84.686 84.038l0.204 0.852c2.816 10.394 3.021 30.822 3.021 327.68s-0.205 317.286-3.021 327.68c-9.321 33.405-31.714 60.412-61.175 75.663l-0.674 0.318c-24.013 11.827-22.016 11.622-128.87 12.134-53.043 0.205-99.021-0.256-102.195-1.024zM422.4 692.941c-0.922-0.307-3.738-1.024-6.246-1.587-5.99-1.331-14.49-8.55-17.971-15.309-3.584-6.861-3.635-22.528-0.051-29.235 1.485-2.816 38.861-41.216 83.046-85.299l80.333-80.23-221.44-0.87c-201.882-0.768-221.901-1.075-226.56-3.635-10.060-5.115-16.832-15.388-16.832-27.244 0-0.538 0.014-1.073 0.042-1.605l-0.003 0.074c0-13.107 5.478-22.528 16.794-28.774 4.659-2.56 24.678-2.867 226.56-3.635l221.44-0.87-80.333-80.23c-44.186-44.083-81.562-82.483-83.046-85.299-3.328-6.195-3.635-22.272-0.563-28.16 3.35-6.356 8.338-11.46 14.41-14.857l0.182-0.094c6.656-3.482 22.426-3.482 29.030 0.051 2.816 1.485 54.784 52.48 115.558 113.357 76.954 77.056 111.258 112.538 113.050 116.941 1.577 3.399 2.497 7.378 2.497 11.571s-0.92 8.172-2.569 11.745l0.072-0.174c-1.792 4.403-36.096 39.885-113.050 116.941-60.774 60.877-112.384 111.667-114.739 112.896-4.506 2.355-16.691 4.557-19.61 3.533z" />
<glyph unicode="&#xe935;" glyph-name="Copyright" d="M490.65 905.984c-212.838-10.035-392.448-167.168-429.824-376.064-4.373-24.628-6.873-52.982-6.873-81.92s2.5-57.291 7.296-84.857l-0.423 2.937c27.364-145.553 120.288-264.935 246.284-328.064l2.651-1.203c65.792-32.307 127.744-46.592 202.24-46.592s136.448 14.285 202.24 46.592c140.646 69.018 235.213 203.571 253.542 360.858 1.075 9.37 1.997 32.051 1.997 50.33 0 74.496-14.285 136.448-46.592 202.24-26.010 53.043-58.163 95.693-103.731 137.523-68.513 62.383-156.657 104.304-254.145 115.515l-2.111 0.197c-17.402 1.704-37.619 2.675-58.062 2.675-5.095 0-10.175-0.060-15.241-0.18l0.752 0.014zM578.56 837.12c69.085-12.577 129.988-41.093 180.892-81.63l-0.822 0.632c16.282-13.056 46.592-43.213 60.006-59.802 34.089-42.328 60.172-92.673 75.019-147.63l0.655-2.846c9.37-37.069 11.059-52.224 11.059-97.843s-1.69-60.774-11.059-97.843c-15.37-57.080-40.92-106.827-74.84-149.639l0.652 0.852c-13.056-16.282-43.213-46.592-59.802-60.006-42.328-34.089-92.673-60.172-147.63-75.019l-2.846-0.655c-37.069-9.37-52.224-11.059-97.843-11.059s-60.774 1.69-97.843 11.059c-57.076 15.392-106.82 40.939-149.644 74.843l0.857-0.654c-21.805 18.557-41.443 38.114-59.466 59.097l-0.591 0.705c-40.745 50.412-69.794 111.93-82.061 179.302l-0.371 2.458c-4.762 26.675-6.502 81.306-3.533 107.674 9.133 79.397 40.060 150.23 86.571 207.984l-0.606-0.778c13.312 16.486 43.674 46.746 60.058 59.853 50.044 39.939 110.98 68.394 177.635 80.379l2.436 0.363c30.208 4.966 30.822 5.018 73.37 4.454 30.413-0.358 42.854-1.229 59.75-4.25zM489.318 649.318c-35.543-4.884-67.399-17.568-94.815-36.279l0.761 0.49c-15.565-10.752-40.192-35.994-50.842-52.019-24.115-36.506-34.253-70.042-34.253-113.51 0-36.198 5.99-61.44 21.965-92.314 56.73-109.824 194.611-143.514 297.574-72.653 10.24 7.014 35.635 31.488 38.349 36.915 7.885 15.718 2.048 35.174-12.749 42.752-4.852 2.115-10.504 3.346-16.444 3.346-4.099 0-8.062-0.586-11.808-1.679l0.297 0.074c-2.406-0.922-11.162-8.038-19.507-15.821-7.485-7.047-15.625-13.61-24.246-19.522l-0.689-0.446c-20.248-11.806-44.571-18.776-70.522-18.776-15.848 0-31.089 2.599-45.32 7.395l1-0.292c-22.272 7.629-33.741 14.49-50.33 30.157-29.44 27.853-43.981 61.235-43.981 100.864s14.541 73.011 43.981 100.864c16.538 15.616 28.006 22.528 50.381 30.259 13.153 4.584 28.314 7.232 44.094 7.232 17.185 0 33.636-3.14 48.811-8.878l-0.95 0.315c18.227-6.4 30.106-14.029 47.77-30.413 16.845-15.718 20.070-17.459 32.307-17.459 0.136-0.002 0.296-0.003 0.457-0.003 17.249 0 31.232 13.983 31.232 31.232 0 5.462-1.402 10.597-3.866 15.064l0.081-0.161c-5.325 10.598-36.762 37.222-58.778 49.766-31.488 17.869-81.766 27.75-119.962 23.501z" />
<glyph unicode="&#xe936;" glyph-name="Navigation-menu" d="M162.355 734.72c-16.282-3.84-26.368-21.094-22.477-38.246 3.021-13.261 13.568-22.323 27.904-24.013 4.864-0.563 163.226-0.819 351.898-0.563 367.974 0.563 345.805 0 355.584 8.858 6.4 5.786 9.318 13.158 9.318 23.245s-2.918 17.459-9.318 23.245c-9.779 8.858 12.8 8.294-359.834 8.602-191.027 0.154-349.901-0.358-353.075-1.126zM162.355 478.72c-16.282-3.84-26.368-21.094-22.477-38.246 3.021-13.261 13.568-22.323 27.904-24.013 4.864-0.563 163.226-0.819 351.898-0.563 367.974 0.563 345.805 0 355.584 8.858 6.4 5.786 9.318 13.158 9.318 23.245s-2.918 17.459-9.318 23.245c-9.779 8.858 12.8 8.294-359.834 8.602-191.027 0.154-349.901-0.358-353.075-1.126zM162.355 222.72c-16.282-3.84-26.368-21.094-22.477-38.246 3.021-13.261 13.568-22.323 27.904-24.013 4.864-0.563 163.226-0.819 351.898-0.563 367.974 0.563 345.805 0 355.584 8.858 6.4 5.786 9.318 13.158 9.318 23.245s-2.918 17.459-9.318 23.245c-9.779 8.858 12.8 8.294-359.834 8.602-191.027 0.154-349.901-0.358-353.075-1.126z" />
<glyph unicode="&#xe937;" glyph-name="Page-Title" d="M239.616 905.267c-24.883-2.97-46.848-14.029-66.202-33.382-20.582-20.531-30.464-41.267-33.587-70.298-1.075-9.984-1.587-51.354-1.229-104.397 0.563-95.488 0.256-92.826 10.138-101.786 5.083-5.019 12.071-8.119 19.783-8.119 0.75 0 1.493 0.029 2.228 0.087l-0.097-0.006c0.652-0.054 1.412-0.084 2.179-0.084 7.714 0 14.703 3.102 19.789 8.126l-0.003-0.003c9.882 9.011 9.574 5.478 10.496 111.155 0.819 94.106 0.973 97.536 4.403 104.96 6.443 12.143 16.537 21.626 28.802 27.136l0.382 0.153c8.96 3.328 12.954 3.43 168.653 3.43h159.437l0.512-116.48c0.512-126.925 0.051-121.242 10.086-130.355 9.523-8.602 4.915-8.294 129.024-8.806l116.48-0.461v-244.787c0-241.306-0.051-244.941-3.43-254.003-4.147-11.059-16.333-24.064-27.29-29.184-7.68-3.533-7.782-3.533-318.259-4.403-284.877-0.768-311.040-1.075-315.75-3.686-6.215-3.605-11.186-8.741-14.493-14.903l-0.099-0.201c-3.072-5.939-2.765-21.914 0.614-28.365 3.379-6.554 11.827-13.824 17.971-15.565 2.509-0.717 144.333-1.28 315.136-1.28 291.174 0 311.347 0.205 321.741 3.021 41.395 11.553 73.337 43.494 84.686 84.038l0.204 0.852c2.816 10.342 2.97 29.133 2.97 290.97 0 269.056-0.102 280.115-3.123 285.85-4.147 7.834-240.794 244.48-248.576 248.576-5.734 3.021-14.592 3.174-193.741 3.379-103.219 0.154-193.178-0.41-199.834-1.178zM713.37 733.85l82.79-82.739h-166.4v82.739c0 45.568 0.205 82.79 0.41 82.79 0.256 0 37.683-37.222 83.2-82.79zM77.005 478.72c-12.544-2.97-21.555-13.926-23.347-28.262-1.997-16.026-0.102-53.811 3.021-59.648 5.026-10.027 15.223-16.789 27-16.789 0.588 0 1.172 0.017 1.752 0.050l-0.080-0.004c18.842 0 29.645 10.598 31.846 31.232l1.024 10.291h62.669v-190.669l-10.291-1.075c-14.643-1.536-22.886-6.554-28.518-17.357-3.533-6.707-3.43-22.374 0.102-29.235 4.078-7.049 10.285-12.478 17.73-15.479l0.241-0.086c5.939-1.638 100.454-1.638 106.394 0 7.68 3.098 13.884 8.524 17.879 15.393l0.092 0.172c3.533 6.861 3.584 22.528 0.102 29.235-5.632 10.803-13.875 15.821-28.518 17.357l-10.342 1.075v190.669h62.669l1.075-10.291c2.15-20.634 13.005-31.283 31.846-31.232 0.558-0.038 1.209-0.060 1.865-0.060 9.147 0 17.304 4.238 22.616 10.858l0.044 0.057c6.4 7.629 7.014 11.315 7.014 41.728 0 30.464-0.614 34.15-7.014 41.779-9.984 11.827-0.666 11.11-149.146 11.418-73.677 0.154-136.55-0.358-139.725-1.126z" />
<glyph unicode="&#xe938;" glyph-name="Post-Info" d="M52.48 753.357c-23.208-6.009-41.416-23.117-48.855-45.18l-0.143-0.49c-3.533-10.547-3.533-11.162-3.072-262.707 0.41-246.784 0.512-252.314 3.84-260.301 7.27-17.613 23.296-33.331 40.55-39.731 8.806-3.226 17.613-3.277 468.070-3.277h459.059l11.418 5.376c15.872 7.526 25.754 17.203 33.434 32.717l6.349 12.902v510.669l-6.349 12.902c-6.896 14.663-18.587 26.123-33.015 32.55l-0.419 0.167-11.418 5.376-456.499 0.256c-261.632 0.154-459.264-0.358-462.95-1.229zM955.75 448v-238.95h-887.501v477.901h887.501v-238.95zM145.254 616.294c-8.909-4.966-8.602 1.075-8.653-167.936-0.051-171.11-0.41-164.557 9.267-169.011 6.451-2.918 247.962-2.918 254.413 0 9.677 4.454 9.318-2.048 9.318 168.653s0.358 164.198-9.318 168.653c-6.861 3.072-249.344 2.765-255.027-0.358zM501.197 616.96c-13.005-3.994-23.347-18.432-23.347-32.717 0.488-11.512 6.335-21.563 15.095-27.778l0.111-0.075 7.27-5.12h296.090l6.912 4.557c10.65 7.066 15.002 15.411 15.002 28.723s-4.352 21.658-15.002 28.672l-6.912 4.608-145.203 0.307c-79.872 0.154-147.354-0.358-150.016-1.178zM501.197 480.41c-13.005-3.942-23.347-18.432-23.347-32.666 0-10.342 6.093-21.453 15.206-27.904l7.27-5.12h227.84l6.912 4.557c10.65 7.066 15.002 15.411 15.002 28.723s-4.352 21.658-15.002 28.723l-6.912 4.557-111.104 0.307c-61.082 0.154-113.203-0.358-115.866-1.178zM501.197 343.859c-13.005-3.942-23.347-18.381-23.347-32.666 0-10.291 6.093-21.453 15.206-27.904l7.27-5.12h364.083l6.554 4.045c4.354 3.020 8.022 6.672 10.967 10.869l0.092 0.139c3.84 5.734 4.608 8.806 4.608 18.227 0 9.472-0.768 12.493-4.608 18.278-3.037 4.319-6.705 7.954-10.915 10.862l-0.144 0.094-6.554 4.045-179.2 0.307c-98.56 0.154-181.35-0.358-184.013-1.178z" />
<glyph unicode="&#xe939;" glyph-name="Progress-Bar" d="M142.694 623.514c-17.203-3.277-34.611-20.122-38.451-37.274-2.406-10.445-2.406-266.035 0-276.48 4.045-17.971 21.094-33.894 39.936-37.376 7.066-1.331 138.138-1.894 444.928-1.894h434.893v71.68h-849.92v211.661h849.92v71.68l-436.48-0.205c-263.526-0.102-439.808-0.819-444.826-1.792zM232.397 517.837c-25.498-5.778-45.672-24.171-53.862-48.121l-0.154-0.519c-1.561-6.367-2.457-13.678-2.457-21.197s0.896-14.829 2.586-21.829l-0.129 0.633c8.355-24.943 29.184-43.578 54.885-48.666l0.462-0.076c5.837-1.126 99.635-1.741 263.578-1.69 276.838 0 268.646-0.256 285.286 9.472 40.141 23.501 47.974 78.848 15.872 111.565-4.706 4.687-9.901 8.889-15.5 12.522l-0.372 0.226c-16.64 9.728-8.192 9.472-286.822 9.318-140.8-0.102-259.328-0.819-263.373-1.638z" />
<glyph unicode="&#xe93a;" glyph-name="Retina-Logo" d="M196.966 862.618c-24.934-2.97-46.848-14.029-66.202-33.382-20.582-20.582-30.464-41.267-33.638-70.502-2.611-24.013-1.382-105.523 1.638-111.053 6.605-12.032 15.872-17.613 29.235-17.613 9.83 0 15.258 1.946 21.914 7.987 9.421 8.55 9.574 9.728 10.496 68.506 0.819 50.79 1.126 55.142 4.454 62.31 5.069 10.957 18.125 23.142 29.184 27.238 9.062 3.43 12.493 3.482 317.952 3.482s308.89-0.051 317.952-3.482c11.059-4.096 24.115-16.282 29.184-27.238 3.328-7.168 3.635-11.52 4.454-62.31 0.717-46.541 1.229-55.347 3.635-59.75 3.62-6.187 8.752-11.139 14.902-14.442l0.202-0.099c5.99-3.123 21.965-2.765 28.416 0.563 7.049 4.078 12.478 10.285 15.479 17.73l0.086 0.241c0.666 2.509 1.229 29.133 1.229 59.187-0.051 46.182-0.512 56.32-3.021 65.69-11.516 41.109-43.027 72.908-83.108 84.623l-0.86 0.215c-9.574 2.816-30.464 3.021-320.87 3.277-170.854 0.102-316.058-0.41-322.714-1.178zM497.51 692.685c-81.51-5.325-154.061-40.96-221.901-108.954-25.19-25.242-45.466-50.278-67.43-83.251-34.611-51.968-34.611-52.992 0-104.96 55.398-83.2 122.675-141.875 197.018-171.827 31.704-12.933 68.49-20.439 107.029-20.439 20.434 0 40.376 2.11 59.619 6.124l-1.887-0.329c91.648 18.688 179.661 85.965 247.859 189.389 31.949 48.435 31.949 50.688 0 99.123-64.666 98.15-146.33 163.226-233.267 185.907-26.624 6.963-62.874 10.803-87.040 9.216zM550.656 625.613c56.013-10.65 104.346-38.554 154.214-88.883 8.96-9.011 22.579-24.218 30.31-33.843 14.95-18.534 37.939-51.866 37.939-54.886s-22.989-36.301-37.99-54.938c-86.426-107.571-192.205-148.48-294.861-114.074-53.146 17.766-106.957 58.47-152.115 114.944-15.872 19.866-37.274 50.893-37.274 54.118 0 1.075 4.71 8.96 10.496 17.613 50.944 75.981 114.586 129.843 178.995 151.398 21.423 7.535 46.125 11.888 71.843 11.888 13.584 0 26.884-1.214 39.798-3.54l-1.356 0.203zM499.251 521.216c-14.234-2.099-27.29-9.114-39.322-21.146-13.663-12.994-22.162-31.308-22.162-51.607 0-4.233 0.37-8.381 1.078-12.411l-0.062 0.427c2.15-15.462 8.806-28.211 21.146-40.55s25.088-18.995 40.55-21.146c3.377-0.509 7.274-0.8 11.238-0.8 11.847 0 23.087 2.596 33.184 7.25l-0.493-0.204c12.032 5.939 28.621 22.528 34.56 34.56 9.267 18.739 9.267 46.285 0 64.717-15.104 30.003-45.926 45.824-79.718 40.909zM519.117 455.424c6.502-5.888 1.946-17.664-6.81-17.664-0.039-0.001-0.085-0.001-0.132-0.001-5.712 0-10.342 4.63-10.342 10.342 0 2.711 1.043 5.178 2.749 7.022l-0.006-0.007c3.533 3.891 10.445 4.045 14.541 0.307zM119.654 265.421c-12.544-3.021-21.504-13.926-23.296-28.314-0.666-5.171-0.819-31.437-0.358-58.368 0.973-54.17 1.894-60.211 12.339-81.459 15.569-30.136 42.576-52.529 75.129-61.646l0.851-0.204c10.394-2.816 30.822-3.021 327.68-3.021s317.286 0.205 327.68 3.021c41.39 11.54 73.323 43.49 84.636 84.040l0.202 0.85c2.509 9.37 2.97 19.507 3.021 65.69 0 30.054-0.563 56.678-1.229 59.187-3.087 7.687-8.516 13.893-15.393 17.879l-0.172 0.092c-6.451 3.328-22.426 3.686-28.416 0.563-6.352-3.402-11.484-8.354-15.007-14.362l-0.097-0.178c-2.406-4.403-2.918-13.21-3.635-59.75-0.819-50.79-1.126-55.142-4.454-62.31-6.428-12.14-16.528-21.612-28.802-27.086l-0.382-0.152c-9.062-3.43-12.493-3.482-317.952-3.482s-308.89 0.051-317.952 3.482c-12.656 5.627-22.756 15.098-29.026 26.913l-0.158 0.325c-3.328 7.168-3.635 11.52-4.454 62.31-0.87 57.395-0.973 58.112-9.165 67.174-7.117 7.834-20.275 11.52-31.59 8.806z" />
<glyph unicode="&#xe93b;" glyph-name="Scroll-to-Top" horiz-adv-x="1126" d="M295.68 955.392c-96.307-15.309-169.933-87.245-188.262-184.013-2.97-15.565-3.226-42.138-3.226-322.97 0-280.781 0.256-307.405 3.226-322.918 18.739-98.765 94.515-171.059 193.894-184.883 19.149-2.662 605.696-2.509 626.278 0.154 87.207 11.584 157.951 71.476 185.080 151.496l0.469 1.592c11.776 35.174 11.366 22.477 11.366 354.56 0 331.725 0.41 319.437-11.264 354.253-22.958 68.558-76.036 121.485-143.099 143.772l-1.592 0.459c-35.379 11.571-24.883 11.264-356.045 11.059-233.984-0.154-305.203-0.717-316.826-2.56zM935.834 883.354c33.741-10.957 52.378-22.067 73.421-43.827 21.197-21.862 33.024-42.803 40.55-71.936 1.946-7.526 2.458-71.834 2.458-319.181 0-332.186 0.512-314.266-9.626-341.094-13.414-35.635-50.944-73.216-86.374-86.579-27.187-10.24-8.704-9.728-342.374-9.728h-310.682l-14.95 4.301c-31.804 9.622-58.569 27.924-78.366 52.143l-0.226 0.286c-20.326 25.19-29.747 48.333-33.126 81.408-2.662 26.010-2.662 572.518 0 598.579 3.379 33.024 12.8 56.218 33.126 81.408 23.158 28.662 55.855 48.807 93.206 55.613l0.951 0.144c4.813 0.819 147.302 1.331 316.621 1.178 246.374-0.205 309.402-0.768 315.392-2.714zM501.043 492.39c-62.362-76.595-116.531-143.872-120.422-149.555-6.042-8.806-7.014-11.674-7.014-20.685 0-12.902 6.144-24.422 16.384-30.771 9.318-5.786 26.675-6.042 35.891-0.614 3.891 2.253 41.421 46.848 96.41 114.483 49.562 60.928 90.778 111.002 91.648 111.36 0.819 0.307 38.042-44.493 82.739-99.533 98.56-121.498 100.045-123.187 109.568-127.488 18.278-8.346 38.912 0.205 46.899 19.405 1.733 3.716 2.743 8.068 2.743 12.656 0 5.613-1.513 10.872-4.153 15.393l0.078-0.145c-3.021 5.786-217.139 271.872-236.032 293.274-0.768 0.819-52.378-61.133-114.739-137.779z" />
<glyph unicode="&#xe93c;" glyph-name="Search" d="M441.19 862.72c-92.587-7.087-174.653-47.171-235.502-108.373l-0.018-0.018c-55.652-55.362-93.861-128.208-105.694-209.604l-0.239-2.006c-3.789-25.344-3.789-78.746 0-104.090 13.67-92.109 60.211-176.128 129.229-233.37 51.576-43.345 115.725-73.353 186.234-83.917l2.080-0.256c25.498-3.789 78.848-3.738 104.090 0 63.283 9.523 124.058 34.56 171.059 70.554 7.014 5.376 13.824 10.496 15.104 11.418 1.894 1.331 21.504-17.306 87.347-83.098 60.109-60.006 86.426-85.146 90.010-86.118 22.426-5.837 41.83 7.117 42.394 28.262 0.010 0.406 0.016 0.884 0.016 1.364 0 4.119-0.416 8.141-1.208 12.026l0.066-0.385c-0.973 3.584-26.112 29.901-86.118 90.010-65.792 65.843-84.429 85.453-83.098 87.347 0.922 1.28 6.042 8.090 11.418 15.104 35.994 47.002 61.030 107.776 70.554 171.059 3.789 25.395 3.789 78.694 0 104.090-13.875 92.518-60.109 176.026-129.229 233.318-64.687 54.544-148.968 87.691-240.991 87.691-9.678 0-19.27-0.367-28.764-1.087l1.263 0.077zM531.046 793.907c61.782-13.086 115.15-43.080 156.654-84.872l0.018-0.018c44.134-44.134 72.653-97.536 85.606-160.307 3.584-17.408 4.045-24.064 3.994-58.88-0.051-33.946-0.563-41.677-3.84-57.19-9.945-46.068-28.131-86.71-53.086-122.255l0.708 1.065c-21.334-28.207-45.804-52.481-73.281-72.943l-0.959-0.683c-33.977-23.879-74.089-41.669-117.397-50.779l-2.104-0.37c-17.254-3.584-24.269-4.045-58.010-4.045-33.792 0-40.806 0.461-58.061 4.045-63.253 12.66-117.986 43.044-160.396 85.695l-0.014 0.014c-44.134 44.134-72.55 97.382-85.555 160.256-3.533 17.254-4.045 24.269-4.045 58.010 0 33.331 0.512 41.011 3.942 57.754 12.689 63.32 43.086 118.116 85.749 160.604l0.011 0.010c47.514 47.565 105.472 76.954 173.619 88.013 10.547 1.69 25.242 2.253 50.688 1.792 30.464-0.512 38.861-1.28 55.757-4.915z" />
<glyph unicode="&#xe93d;" glyph-name="Site-Logo" d="M802.355 905.421c-11.224-3.004-19.822-11.841-22.435-22.983l-0.042-0.211c-0.87-3.686-1.587-28.365-1.587-54.784l-0.051-48.128-52.48-0.512c-56.576-0.614-57.805-0.819-66.355-10.189-5.021-5.083-8.123-12.072-8.123-19.786 0-0.767 0.031-1.526 0.091-2.278l-0.006 0.099c-0.051-0.638-0.081-1.381-0.081-2.131 0-7.712 3.1-14.7 8.122-19.785l-0.003 0.003c8.55-9.421 9.779-9.626 66.253-10.189l52.378-0.512 0.512-52.378c0.563-56.474 0.768-57.702 10.189-66.253 5.083-5.019 12.071-8.119 19.783-8.119 0.75 0 1.493 0.029 2.228 0.087l-0.097-0.006c0.652-0.054 1.412-0.084 2.179-0.084 7.714 0 14.703 3.102 19.789 8.126l-0.003-0.003c9.37 8.55 9.574 9.779 10.138 66.253l0.563 52.378 52.378 0.512c55.142 0.563 55.859 0.666 64.922 8.858 6.349 5.786 9.318 13.158 9.318 23.245 0 10.138-2.97 17.459-9.318 23.296-9.062 8.192-9.779 8.243-64.922 8.806l-52.378 0.563-0.563 52.378c-0.563 55.142-0.614 55.859-8.806 64.922-6.12 6.009-14.515 9.718-23.777 9.718-2.772 0-5.467-0.332-8.046-0.959l0.232 0.048zM196.966 862.618c-24.934-2.97-46.848-14.029-66.202-33.382-20.582-20.582-30.464-41.318-33.587-70.349-1.178-10.906-1.587-120.32-1.229-322.816 0.512-285.85 0.717-307.046 3.533-316.621 12.032-41.267 44.032-72.96 84.838-84.019 10.394-2.816 30.822-3.021 327.68-3.021s317.286 0.205 327.68 3.021c41.395 11.553 73.337 43.494 84.686 84.038l0.204 0.852c2.765 10.24 3.021 23.757 3.021 172.39 0 88.678-0.614 163.328-1.28 165.837-3.098 7.68-8.524 13.884-15.393 17.879l-0.172 0.092c-6.451 3.328-22.426 3.635-28.416 0.563-6.346-3.408-11.465-8.38-14.956-14.411l-0.097-0.181c-2.15-3.994-2.918-11.52-3.379-34.714l-0.666-29.594-44.646 44.134c-47.821 47.258-55.962 53.555-78.746 60.774-17.306 5.478-54.374 5.478-71.68 0-26.522-8.397-19.098-1.587-229.581-211.61l-195.43-195.072h-19.968c-15.872 0-21.862 0.717-29.235 3.482-13.557 5.903-24.151 16.497-29.911 29.686l-0.143 0.368c-3.43 9.216-3.482 11.981-3.482 318.054 0 305.459 0.051 308.89 3.482 317.952 4.096 11.059 16.282 24.115 27.238 29.184 7.578 3.533 9.933 3.584 168.96 4.454 145.869 0.768 161.792 1.126 166.4 3.635 10.060 5.115 16.832 15.388 16.832 27.244 0 0.538-0.014 1.073-0.042 1.605l0.003-0.074c0.025 0.457 0.038 0.992 0.038 1.531 0 11.856-6.772 22.129-16.659 27.164l-0.173 0.080c-4.608 2.56-19.405 2.816-161.28 3.021-85.862 0.154-161.587-0.41-168.243-1.178zM367.616 691.917c-14.438-1.69-31.232-7.526-44.39-15.411-15.721-10.813-28.918-24.010-39.4-39.223l-0.331-0.508c-10.257-17.429-16.316-38.394-16.316-60.774s6.059-43.346 16.626-61.345l-0.31 0.571c7.424-12.39 27.341-32.307 39.731-39.731 17.429-10.257 38.394-16.316 60.774-16.316s43.346 6.059 61.345 16.626l-0.571-0.31c12.39 7.424 32.307 27.341 39.731 39.731 21.094 35.277 21.709 84.531 1.485 119.091-24.32 41.421-69.53 63.437-118.374 57.6zM403.354 625.459c12.39-4.659 25.446-17.715 30.106-30.106 2.27-5.668 3.586-12.238 3.586-19.116 0-14.699-6.014-27.993-15.715-37.557l-0.006-0.006c-33.331-33.331-90.214-9.779-90.214 37.325 0 14.592 5.12 26.829 15.616 37.325 9.554 9.708 22.836 15.724 37.523 15.724 6.874 0 13.44-1.318 19.46-3.714l-0.356 0.125zM723.149 440.934c9.165-3.379 14.541-8.294 75.162-68.608l65.28-64.973v-84.070c0-80.282-0.154-84.48-3.482-93.338-4.608-12.339-17.715-25.446-30.054-30.054-9.165-3.43-12.288-3.482-252.826-3.482l-243.558 0.051 170.65 170.445c158.771 158.566 171.315 170.701 180.070 173.978 5.779 2.215 12.464 3.498 19.448 3.498 6.933 0 13.57-1.264 19.694-3.574l-0.384 0.127z" />
<glyph unicode="&#xe93e;" glyph-name="Site-Tagline" d="M174.080 781.824v-45.056l7.578-2.611c5.734-1.946 7.987-2.099 9.114-0.563 0.87 1.075 8.346 14.746 16.64 30.31l15.104 28.314 25.549 1.126c14.080 0.614 34.253 1.126 44.902 1.126h19.354v-172.442c0-187.75 0.41-180.224-9.626-187.136-6.74-3.84-14.813-7.709-23.158-11.039l-1.366-0.481c-10.752-4.454-20.224-8.704-21.043-9.472-0.768-0.717-0.461-4.506 0.717-8.397l2.099-7.014 160.358 0.87 2.15 7.168 2.099 7.168-12.186 5.069c-6.656 2.765-19.251 7.885-27.955 11.366l-15.77 6.298v348.979l4.198 4.506c4.813 5.222 8.806 5.427 57.702 3.43l26.88-1.126 32.461-60.518 7.219 2.099 7.219 2.15 0.922 90.931h-331.162v-45.056zM145.715 323.533c-7.554-2.211-13.761-7.004-17.742-13.337l-0.076-0.129c-2.97-4.25-3.891-7.987-3.891-15.667 0-11.571 3.994-18.944 13.978-25.754l5.99-4.096h573.952l5.99 4.096c9.933 6.81 13.926 14.182 13.926 25.754s-3.994 18.944-13.926 25.754l-5.99 4.096-283.443 0.256c-155.904 0.154-285.85-0.307-288.768-0.973zM145.715 67.533c-7.554-2.211-13.761-7.004-17.742-13.337l-0.076-0.129c-2.97-4.25-3.891-7.987-3.891-15.667 0-11.571 3.994-18.944 13.978-25.754l5.99-4.096h360.602l5.99 4.096c9.933 6.81 13.926 14.182 13.926 25.754s-3.994 18.944-13.926 25.754l-5.99 4.096-176.794 0.307c-97.178 0.154-179.149-0.307-182.067-1.024zM657.715 67.533c-7.554-2.211-13.761-7.004-17.742-13.337l-0.076-0.129c-2.97-4.25-3.891-7.987-3.891-15.667 0-11.571 3.994-18.944 13.978-25.754l5.99-4.096h275.251l5.99 4.096c9.984 6.81 13.978 14.182 13.978 25.754s-3.994 18.944-13.978 25.754l-5.99 4.096-134.093 0.307c-73.728 0.154-136.499-0.307-139.418-1.024z" />
<glyph unicode="&#xe93f;" glyph-name="Site-Title" d="M196.966 862.618c-24.934-2.97-46.848-14.029-66.202-33.382-20.582-20.582-30.464-41.318-33.587-70.349-1.178-10.906-1.587-120.32-1.229-322.816 0.512-285.85 0.717-307.046 3.533-316.621 12.032-41.267 44.032-72.96 84.838-84.019 10.394-2.816 30.822-3.021 327.68-3.021s317.286 0.205 327.68 3.021c41.395 11.553 73.337 43.494 84.686 84.038l0.204 0.852c2.816 10.394 3.021 30.822 3.021 327.68s-0.205 317.286-3.021 327.68c-11.553 41.105-43.072 72.896-83.159 84.623l-0.861 0.216c-9.574 2.816-30.464 3.021-320.87 3.277-170.854 0.102-316.058-0.41-322.714-1.178zM830.054 796.109c12.339-4.608 25.446-17.715 30.054-30.054 3.277-8.806 3.482-13.107 3.482-83.302v-73.984l-31.181-0.614c-32.307-0.666-35.226-1.229-43.674-8.909-6.4-5.786-9.318-13.158-9.318-23.245s2.918-17.459 9.318-23.245c8.448-7.68 11.366-8.243 43.674-8.909l31.181-0.614v-201.984c0-198.81-0.051-202.189-3.482-211.302-4.608-12.339-17.715-25.446-30.054-30.054-9.216-3.43-11.981-3.482-318.054-3.482s-308.838 0.051-318.054 3.482c-13.557 5.903-24.151 16.497-29.911 29.686l-0.143 0.368c-3.43 9.114-3.482 12.493-3.482 211.302v201.984l31.181 0.614c32.307 0.666 35.226 1.229 43.674 8.909 6.4 5.786 9.318 13.158 9.37 23.245 0 9.83-1.997 15.258-8.038 21.914-7.834 8.653-11.827 9.523-45.005 10.189l-31.181 0.666v73.984c0 70.195 0.205 74.496 3.482 83.302 4.506 12.032 17.715 25.395 29.594 29.952 8.602 3.328 14.285 3.379 318.003 3.482 306.739 0.102 309.35 0.051 318.566-3.379zM375.654 606.822c-13.575-3.866-23.349-16.157-23.349-30.731 0-2.705 0.337-5.331 0.97-7.838l-0.047 0.22c3.072-13.363 13.517-22.272 28.314-24.115 16.026-1.997 53.811-0.102 59.648 2.97 10.026 5.012 16.791 15.201 16.791 26.969 0 0.599-0.018 1.194-0.052 1.784l0.004-0.082c0.020 0.414 0.031 0.898 0.031 1.386 0 12.217-7.132 22.769-17.459 27.718l-0.185 0.080c-5.018 2.714-55.347 3.942-64.666 1.638zM589.005 606.822c-13.578-3.844-23.359-16.127-23.359-30.695 0-2.718 0.34-5.356 0.981-7.874l-0.047 0.22c3.021-13.363 13.517-22.272 28.262-24.115 16.026-1.997 53.862-0.102 59.648 2.97 10.055 5.045 16.835 15.274 16.835 27.087 0 0.558-0.015 1.112-0.045 1.662l0.003-0.077c0.020 0.414 0.031 0.898 0.031 1.386 0 12.217-7.132 22.769-17.459 27.718l-0.185 0.080c-5.018 2.714-55.347 3.942-64.666 1.638z" />
<glyph unicode="&#xe940;" glyph-name="infocard" d="M196.966 888.218c-24.934-2.97-46.848-14.029-66.202-33.382-20.582-20.582-30.464-41.318-33.587-70.349-1.178-10.906-1.587-120.32-1.229-322.816 0.512-285.85 0.717-307.046 3.533-316.621 12.032-41.267 44.032-72.96 84.838-84.019 10.394-2.816 30.822-3.021 327.68-3.021s317.286 0.205 327.68 3.021c41.395 11.553 73.337 43.494 84.686 84.038l0.204 0.852c2.816 10.394 3.021 30.822 3.021 327.68s-0.205 317.286-3.021 327.68c-11.553 41.105-43.072 72.896-83.159 84.623l-0.861 0.216c-9.574 2.816-30.464 3.021-320.87 3.277-170.854 0.102-316.058-0.41-322.714-1.178zM830.054 821.709c12.339-4.608 25.446-17.715 30.054-30.054 3.43-9.216 3.482-11.981 3.482-318.054s-0.051-308.838-3.482-318.054c-4.608-12.339-17.715-25.446-30.054-30.054-9.216-3.43-11.981-3.482-318.054-3.482s-308.838 0.051-318.054 3.482c-13.557 5.903-24.151 16.497-29.911 29.686l-0.143 0.368c-3.43 9.216-3.482 11.981-3.482 318.054s0.051 308.838 3.482 318.054c4.506 12.032 17.715 25.395 29.594 29.952 8.602 3.328 14.285 3.379 318.003 3.482 306.739 0.102 309.35 0.051 318.566-3.379zM482.202 717.466c-14.234-2.099-27.341-9.114-39.322-21.146-12.39-12.339-18.995-25.037-21.146-40.55-3.533-24.934 3.482-45.926 21.146-63.59 12.339-12.339 25.037-18.944 40.55-21.146 3.354-0.499 7.225-0.784 11.163-0.784 11.871 0 23.137 2.59 33.264 7.235l-0.498-0.205c12.032 5.939 28.621 22.528 34.56 34.56 9.267 18.739 9.267 46.285-0.051 64.717-12.488 25.040-37.917 41.937-67.292 41.937-4.371 0-8.655-0.374-12.821-1.092l0.446 0.064zM502.067 651.674c6.451-5.837 1.894-17.664-6.861-17.664-0.024 0-0.052 0-0.080 0-5.712 0-10.342 4.63-10.342 10.342 0 2.71 1.043 5.177 2.749 7.022l-0.006-0.007c3.533 3.891 10.394 4.045 14.541 0.307zM298.854 461.67c-16.23-3.891-26.317-21.094-22.426-38.298 3.021-13.21 13.568-22.272 27.853-24.013 4.915-0.563 105.677-0.819 223.949-0.512 230.144 0.563 217.907 0.051 227.584 8.806 6.349 5.837 9.318 13.158 9.318 23.296 0 10.086-2.97 17.459-9.318 23.245-9.728 8.755 3.021 8.294-231.885 8.602-120.627 0.102-221.901-0.358-225.075-1.126zM397.67 311.245c-11.449-5.183-19.276-16.496-19.302-29.641v-0.003c0-13.056 8.192-25.344 19.814-29.747 3.226-1.229 40.96-1.843 113.818-1.843s110.592 0.614 113.818 1.843c11.733 4.969 19.814 16.386 19.814 29.692 0 0.020 0 0.039 0 0.059v-0.003c0 0.016 0 0.036 0 0.055 0 13.305-8.082 24.723-19.604 29.612l-0.211 0.079c-6.4 2.406-222.106 2.304-228.147-0.102z" />
<glyph unicode="&#xe941;" glyph-name="counter" horiz-adv-x="799" d="M586.848 595.768c0 104.6-84.791 189.4-189.391 189.403-104.602 0-189.403-84.801-189.403-189.403 0.002-104.6 84.802-189.39 189.403-189.39 104.599 0.002 189.389 84.791 189.391 189.39zM624.312 595.768c-0.002-125.29-101.565-226.851-226.855-226.853-125.29 0-226.863 101.562-226.866 226.853 0 125.293 101.575 226.866 226.866 226.866 125.291-0.002 226.855-101.575 226.855-226.866zM475.499 926.707c10.346 0 18.732-8.386 18.732-18.732s-8.386-18.732-18.732-18.732h-156.098c-10.345 0-18.732 8.387-18.732 18.732s8.387 18.732 18.732 18.732h156.098zM468.499 693.318c7.315 7.315 19.173 7.315 26.488 0s7.315-19.173 0-26.487l-84.293-84.293c-7.315-7.315-19.173-7.315-26.488 0-7.315 7.314-7.315 19.173 0 26.487l84.293 84.293zM99.89-45.232v224.757c-15.651-11.757-35.101-18.732-56.183-18.732h-24.976c-10.345 0-18.732 8.386-18.732 18.732s8.387 18.732 18.732 18.732h24.976c31.028 0.001 56.183 25.154 56.183 56.183 0 10.345 8.387 18.732 18.732 18.732s18.731-8.387 18.731-18.732v-299.671c-0.002-10.341-8.389-18.73-18.731-18.732-10.343 0-18.728 8.389-18.732 18.732zM218.512-26.537c10.344-0.002 18.732-8.388 18.732-18.732s-8.388-18.729-18.732-18.732h-199.78c-10.345 0-18.732 8.387-18.732 18.732s8.386 18.732 18.732 18.732h199.78zM287.195-2.695c0 36.534 20.289 70.401 52.903 85.621l104.232 48.635c17.855 8.333 30.181 27.662 30.182 49.89 0 31.118-23.372 54.256-49.694 54.256h-48.647c-21.63 0-41.071-14.807-48.463-37.11-3.253-9.819-13.851-15.141-23.671-11.89-9.82 3.253-15.144 13.85-11.891 23.671 11.896 35.899 44.487 62.792 84.024 62.792h48.647c49.253 0 87.157-42.224 87.157-91.719-0.001-35.76-19.858-68.919-51.804-83.829l-104.232-48.646c-18.521-8.644-31.281-28.668-31.281-51.671v-23.842h168.585c10.346 0 18.732-8.387 18.732-18.732s-8.386-18.732-18.732-18.732h-187.317c-10.345 0-18.732 8.387-18.732 18.732v42.573zM757.442 29.671v12.488c0 31.046-25.164 56.206-56.184 56.208-10.345 0-18.732 8.386-18.732 18.732s8.387 18.732 18.732 18.732c51.722-0.001 93.647-41.945 93.647-93.671v-12.488c0-51.726-41.925-93.67-93.647-93.671h-49.951c-40.808 0.001-75.463 26.097-88.305 62.452-3.444 9.753 1.663 20.455 11.415 23.902 9.754 3.447 20.456-1.672 23.903-11.426 7.72-21.855 28.557-37.462 52.987-37.463h49.951c31.020 0.001 56.184 25.16 56.184 56.208zM744.949 185.744c0 27.598-22.361 49.962-49.939 49.964h-37.465c-22.828 0-42.126-15.345-48.061-36.33-2.817-9.952-13.168-15.741-23.121-12.926s-15.74 13.168-12.927 23.121c10.372 36.68 44.069 63.597 84.109 63.598h37.465c48.278-0.001 87.402-39.149 87.402-87.427s-39.126-87.425-87.402-87.427h-6.244c-10.346 0.001-18.733 8.399-18.733 18.744 0.005 10.342 8.389 18.72 18.733 18.719h6.244c27.577 0.002 49.937 22.368 49.939 49.964z" />
<glyph unicode="&#xe942;" glyph-name="pacman" d="M964.73 781.196c-93.902 109.45-233.21 178.804-388.73 178.804-282.77 0-512-229.23-512-512s229.23-512 512-512c155.52 0 294.828 69.356 388.728 178.804l-324.728 333.196 324.73 333.196zM704 839.398c39.432 0 71.398-31.964 71.398-71.398 0-39.432-31.966-71.398-71.398-71.398s-71.398 31.966-71.398 71.398c0 39.432 31.966 71.398 71.398 71.398z" />
</font></defs></svg>PK���\�Y�``assets/css/hfe-promo-notice.cssnu�[���@keyframes slideInFromBottom {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideOutToBottom {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(100%);
		opacity: 0;
	}
}

.hfe-promo-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000;
	color: #ffffff;
	padding: 10px 20px;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
	font-size: 14px;
	font-weight: 500;
	animation: slideInFromBottom 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	display: none;
}

.hfe-promo-notice.show {
	display: block;
}

.hfe-promo-notice.hide {
	animation: slideOutToBottom 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19)
		forwards;
}

.hfe-promo-notice-container {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.hfe-promo-notice-content {
	display: flex;
	align-items: center;
}

.hfe-promo-notice-icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
	margin-right: 12px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}

.hfe-promo-notice-text {
	flex: 1;
	line-height: 1.4;
}

.hfe-promo-notice-title {
	font-weight: 600;
	margin-bottom: 2px;
	font-size: 15px;
}

.hfe-promo-notice-description {
	opacity: 0.9;
	font-size: 14px;
}

.hfe-promo-notice-cta {
	margin-left: 8px;
	padding: 5px 16px;
	background: rgb(96, 5, 255);
	border: 1px solid rgb(96, 5, 255);
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.hfe-promo-notice-cta:hover {
	background: rgb(96, 5, 255);
	color: #ffffff;
	text-decoration: none;
}

.hfe-promo-notice-close {
	margin-left: 16px;
	position: absolute;
	right: 5px;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.8);
	font-size: 20px;
	cursor: pointer;
	padding: 4px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.hfe-promo-notice-close:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

@media (max-width: 768px) {
	.hfe-promo-notice {
		padding: 12px 16px;
		font-size: 13px;
	}

	.hfe-promo-notice-container {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.hfe-promo-notice-content {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.hfe-promo-notice-icon {
		margin-right: 8px;
		width: 20px;
		height: 20px;
		font-size: 12px;
	}

	.hfe-promo-notice-cta {
		margin-left: 0;
		margin-top: 8px;
		align-self: flex-start;
	}

	.hfe-promo-notice-close {
		position: absolute;
		top: 8px;
		right: 8px;
		margin-left: 0;
	}
}

@media (max-width: 480px) {
	.hfe-promo-notice-container {
		padding-right: 40px;
	}

	.hfe-promo-notice-title {
		font-size: 14px;
	}

	.hfe-promo-notice-description {
		font-size: 12px;
	}
}
PK���\}��$assets/css/admin-post-duplicator.cssnu�[���/**
 * Admin styles for Post Duplicator.
 *
 * @package header-footer-elementor
 */

.hfe-post-duplicator-notice {
    padding: 10px 15px;
    background-color: #fff;
    border-left: 4px solid #00a0d2;
    margin: 5px 0 15px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.hfe-post-duplicator-notice p {
    margin: 0.5em 0;
    padding: 2px;
}

/* Style for the UA Duplicate link in row actions */
.row-actions .hfe_duplicate a {
    color: #0073aa;
}

.row-actions .hfe_duplicate a:hover {
    color: #00a0d2;
}
PK���\,����assets/css/style.cssnu�[���@font-face {
    font-family: 'hfe';
    src:  url('../fonts/hfe.eot?1yt2tv');
    src:  url('../fonts/hfe.eot?1yt2tv#iefix') format('embedded-opentype'),
        url('../fonts/hfe.ttf?1yt2tv') format('truetype'),
        url('../fonts/hfe.woff?1yt2tv') format('woff'),
        url('../fonts/hfe.svg?1yt2tv#hfe') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="hfe-icon-"], [class*=" hfe-icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'hfe' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.elementor-element [class*="hfe-icon-"]:after {
  content: "UAE";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  color: #a4afb7;
  background: transparent;
  font-size: 10px;
  font-family: Roboto,Arial,Helvetica,Verdana,sans-serif;
  padding: 0.2em 0.5em;
  border-width: 0 1px 1px 0;
  border-color: #e0e0e0;
  border-style: solid;
}
.hfe-icon-counter:before {
  content: "\e941";
}
.hfe-icon-infocard:before {
  content: "\e940";
}
.hfe-icon-search:before {
  content: "\e93c";
}
.hfe-icon-site-logo:before {
  content: "\e93d";
}
.hfe-icon-site-title:before {
  content: "\e93f";
}
.hfe-icon-site-tagline:before {
  content: "\e93e";
}
.hfe-icon-page-title:before {
  content: "\e937";
}
.hfe-icon-navigation-menu:before {
  content: "\e936";
}
.hfe-icon-menu-cart:before {
  content: "\e930";
}
.hfe-icon-copyright-widget:before {
  content: "\e935";
}
.hfe-icon-retina-logo:before {
  content: "\e93a";
}
.hfe-icon-post-info:before {
  content: "\e938";
}
.hfe-icon-progress-bar:before {
  content: "\e939";
}
.hfe-icon-scroll-to-top:before {
  content: "\e93b";
}
.hfe-icon-breadcrumbs:before {
  content: "\e922";
}

.hfe-icon-woo-checkout-1:before {
  content: "\e92f";
}
.hfe-icon-woo-mini-cart:before {
  content: "\e930";
}
.hfe-icon-registration-form:before {
  content: "\e92d";
}
.hfe-icon-retina-image:before {
  content: "\e92a";
}
.hfe-icon-table-of-content:before {
  content: "\e913";
}
.hfe-icon-login-form:before {
  content: "\e934";
}
.hfe-icon-navigation-menu:before {
  content: "\e90e";
}
.hfe-icon-social-share:before {
  content: "\e901";
}
.hfe-icon-gravity-form-styler:before {
  content: "\e932";
}
.hfe-icon-woo-category:before {
  content: "\e91a";
}
.hfe-icon-fancy-heading:before {
  content: "\e908";
}
.hfe-icon-info-box:before {
  content: "\e933";
}
.hfe-icon-caldera-form-styler:before {
  content: "\e91d";
}
.hfe-icon-contact-form-7:before {
  content: "\e91e";
}
.hfe-icon-before-after-slider:before {
  content: "\e91c";
}
.hfe-icon-wp-form-styler:before {
  content: "\e931";
}
.hfe-icon-woo-add-to-cart:before {
  content: "\e919";
}
.hfe-icon-woo-product:before {
  content: "\e91b";
}
.hfe-icon-advanced-heading:before {
  content: "\e902";
}
.hfe-icon-image-gallery:before {
  content: "\e924";
}
.hfe-icon-posts:before {
  content: "\e911";
}
.hfe-icon-price-box:before {
  content: "\e929";
}
.hfe-icon-price-list:before {
  content: "\e900";
}
.hfe-icon-table:before {
  content: "\e912";
}
.hfe-icon-hotspot:before {
  content: "\e923";
}
.hfe-icon-timeline:before {
  content: "\e916";
}
.hfe-icon-multi-button:before {
  content: "\e90d";
}
.hfe-icon-business-hour:before {
  content: "\e903";
}
.hfe-icon-content-toggle:before {
  content: "\e905";
}
.hfe-icon-video-gallery:before {
  content: "\e92e";
}
.hfe-icon-video:before {
  content: "\e917";
}
.hfe-icon-team-member:before {
  content: "\e914";
}
.hfe-icon-off-canvas:before {
  content: "\e90f";
}
.hfe-icon-marketing-button:before {
  content: "\e90b";
}
.hfe-icon-business-review:before {
  content: "\e904";
}
.hfe-icon-countdown-timer:before {
  content: "\e906";
}
.hfe-icon-modal-popup:before {
  content: "\e90c";
}
.hfe-icon-google-map:before {
  content: "\e909";
}
.hfe-icon-dual-color-heading:before {
  content: "\e907";
}
.hfe-icon-faq-schema:before {
  content: "\e920";
}
.hfe-icon-uae:before {
  content: "\e939";
}
.hfe-icon-how-to-schema:before {
  content: "\e90a";
}
.hfe-icon-fluent-form-styler:before {
  content: "\e921";
}
.hfe-icon-welcome-music:before {
  content: "\e918";
}
.hfe-icon-instagram-feed:before {
  content: "\e925";
}
.hfe-icon-twitter-feed-icon:before {
  content: "\e92c";
}
.hfe-icon-party-propz:before {
  content: "\e927";
}
.hfe-icon-display-conditions:before {
  content: "\e91f";
}
.hfe-icon-particles:before {
  content: "\e926";
}
.hfe-icon-presets:before {
  content: "\e928";
}
.hfe-icon-cdcp:before {
  content: "\e91d";
}
.hfe-icon-shape-divider:before {
  content: "\e92b";
}
.elementor-control-uae_pro_promotion_notice a {
  color: #2463eb;
}

.elementor-control-uae_pro_promotion_notice a:hover {
  color: #2463eb;
}

/* CSS for lock icon in Extension promotion notice */
.hfe-lock.eicon-lock:hover{
  color: #93003f;
}
.hfe-lock.eicon-lock{
  margin-left: 15px;
}PK���\��&assets/css/header-footer-elementor.cssnu�[���.footer-width-fixer {
    width: 100%;
}

/* Container fix for genesis themes */

.ehf-template-genesis.ehf-header .site-header .wrap,
.ehf-template-genesis.ehf-footer .site-footer .wrap,
.ehf-template-generatepress.ehf-header .site-header .inside-header {
    width: 100%;
    padding: 0;
    max-width: 100%;
}

/* Container fix for generatepress theme */

.ehf-template-generatepress.ehf-header .site-header,
.ehf-template-generatepress.ehf-footer .site-footer {
    width: 100%;
    padding: 0;
    max-width: 100%;
    background-color: transparent !important; /* override generatepress default white color for header */
}

.bhf-hidden {
    display: none
}

/* Fix: Header hidden below the page content */
.ehf-header #masthead {
	z-index: 99;
    position: relative;
}
PK���\�����	�	2admin/bsf-analytics/class-bsf-analytics-loader.phpnu�[���<?php
/**
 * BSF analytics loader file.
 *
 * @version 1.0.0
 *
 * @package bsf-analytics
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit();
}

/**
 * Class BSF_Analytics_Loader.
 */
class BSF_Analytics_Loader {

	/**
	 * Analytics Entities.
	 *
	 * @access private
	 * @var array Entities array.
	 */
	private $entities = array();

	/**
	 * Analytics Version.
	 *
	 * @access private
	 * @var float analytics version.
	 */
	private $analytics_version = '';

	/**
	 * Analytics path.
	 *
	 * @access private
	 * @var string path array.
	 */
	private $analytics_path = '';

	/**
	 * Instance
	 *
	 * @access private
	 * @var object Class object.
	 */
	private static $instance = null;

	/**
	 * Get instace of class.
	 *
	 * @return object
	 */
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}

		return self::$instance;
	}

	/**
	 * Constructor
	 */
	public function __construct() {
		add_action( 'init', array( $this, 'load_analytics' ) );
	}

	/**
	 * Set entity for analytics.
	 *
	 * @param string $data Entity attributes data.
	 * @return void
	 */
	public function set_entity( $data ) {
		array_push( $this->entities, $data );
	}

	/**
	 * Load Analytics library.
	 *
	 * @return void
	 */
	public function load_analytics() {
		$unique_entities = array();

		if ( ! empty( $this->entities ) ) {
			foreach ( $this->entities as $entity ) {
				foreach ( $entity as $key => $data ) {

					if ( isset( $data['path'] ) ) {
						if ( file_exists( $data['path'] . '/version.json' ) ) {
							$file_contents     = file_get_contents( $data['path'] . '/version.json' ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents
							$analytics_version = json_decode( $file_contents, 1 );
							$analytics_version = $analytics_version['bsf-analytics-ver'];

							if ( version_compare( $analytics_version, $this->analytics_version, '>' ) ) {
								$this->analytics_version = $analytics_version;
								$this->analytics_path    = $data['path'];
							}
						}
					}

					if ( ! isset( $unique_entities[ $key ] ) ) {
						$unique_entities[ $key ] = $data;
					}
				}
			}

			if ( file_exists( $this->analytics_path ) && ! class_exists( 'BSF_Analytics' ) ) {
				require_once $this->analytics_path . '/class-bsf-analytics.php';
				new BSF_Analytics( $unique_entities, $this->analytics_path, $this->analytics_version );
			}
		}
	}
}
PK���\����o
o
!admin/bsf-analytics/changelog.txtnu�[���v1.1.25 - 13-April-2026
- New: Added optional `$force` parameter (4th arg) to `track()` — when true, bypasses the post-send dedup and overwrites any pending entry with the latest value. Default behavior (skip on duplicate) is unchanged. Useful for recurring events like `plugin_updated`.

v1.1.24 - 8-April-2026
- Improvement: Updated admin notice copy — concise heading, description, and button labels.

v1.1.23 - 7-April-2026
- Improvement: Improved consent notice copy — leads with benefit, clearer CTAs.
- Improvement: Standardized usage doc link with dynamic product-specific UTM parameters.
- Fix: Clear tracking transient immediately on opt-out for instant effect.
- New: Added `bsf_usage_tracking_enabled` global filter as a kill switch for hosting providers and compliance plugins.
- New: Include admin email in tracking payload.

v1.1.22 - 1-April-2026
- Improvement: Added `surecontact`, `surecookie`, `suredash`, `power-coupons` and `sigmize` slugs to UTM analytics.

v1.1.21 - 27-March-2026
- New: Introduced BSF_Analytics_Events class for reusable one-time milestone event tracking with dedup.
- New: Support for custom option resolver callbacks (get/update) or default plugin-slug-prefixed WordPress options.

v1.1.20 - 4-March-2026
- New: Added PHPUnit test suite with 73 tests covering all 6 classes using WP_Mock.
- New: Added GitHub Actions CI workflow for PHPUnit tests across PHP 7.4, 8.0, 8.1, and 8.2.

v1.1.19 - 1-March-2026
- Fix: Resolved dead-code form ID fallback and reduced AJAX timeout from 90s to 15s in deactivation survey.
- Fix: Moved nonce verification before $_GET access in handle_optin_optout() to comply with WordPress.org coding standards.

v1.1.18 - 19-February-2026
- Improvement: Added `modern-cart` slug to UTM analytics.

v1.1.17 - 29-January-2026
- Improvement: Renamed options from `*_analytics_*` to `*_usage_*`.

v1.1.16 - 15-July-2025
- Improvement: Added `SureRank` slug to UTM analytics.

v1.1.15 - 1-July-2025
- Improvement: Added `Ultimate_VC_Addons` slug to UTM analytics.

v1.1.14 - 6-May-2025
- New: Introduced a key 'hide_optin_checkbox' to hide checkbox from Settings > General.
- Improvement: Single optin notice for all bsf products.
- Improvement: Introduced delay of 7 days for next optin message if user has reqested request from product.

v1.1.13 - 17-April-2025
- Improvement: Ensured unique id for label's `for` attribute in deactivation survey fields by prefixing them with product slugs.
- Improvement: Prevented deactivation survey from triggering when switching from a child theme to its parent.

v1.1.12 - 24-March-2025
- Improvement: Added `suremails` and `latepoint` slugs to UTM analytics.PK���\@�"i�*�*^admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.phpnu�[���<?php
/**
 * Deactivation Survey Feedback.
 *
 * @package bsf-analytics
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'Deactivation_Survey_Feedback' ) ) {

	/**
	 * Class Deactivation_Survey_Feedback.
	 */
	class Deactivation_Survey_Feedback {

		/**
		 * Feedback URL.
		 *
		 * @var string
		 */
		private static $feedback_api_endpoint = 'api/plugin-deactivate';

		/**
		 * Instance
		 *
		 * @access private
		 * @var object Class object.
		 * @since 1.1.6
		 */
		private static $instance;

		/**
		 * Initiator
		 *
		 * @since 1.1.6
		 * @return object initialized object of class.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			add_action( 'admin_enqueue_scripts', array( $this, 'load_form_styles' ) );
			add_action( 'wp_ajax_uds_plugin_deactivate_feedback', array( $this, 'send_plugin_deactivate_feedback' ) );
		}

		/**
		 * Render feedback HTML on plugins.php admin page only.
		 *
		 * This function renders the feedback form HTML on the plugins.php admin page.
		 * It takes an optional string parameter $id for the form wrapper ID and an optional array parameter $args for customizing the form.
		 *
		 * @since 1.1.6
		 * @param array $args Optional. Custom arguments for the form. Defaults to an empty array.
		 * @return void
		 */
		public static function show_feedback_form( array $args = array() ) {

			// Return if not in admin.
			if ( ! is_admin() ) {
				return;
			}

			// Set default arguments for the feedback form.
			$defaults = array(
				'source'            => 'User Deactivation Survey',
				'popup_logo'        => '',
				'plugin_slug'       => 'user-deactivation-survey',
				'plugin_version'    => '',
				'popup_title'       => __( 'Quick Feedback' ),
				'support_url'       => 'https://brainstormforce.com/contact/',
				'popup_reasons'     => self::get_default_reasons(),
				'popup_description' => __( 'If you have a moment, please share why you are deactivating the plugin.' ),
				'show_on_screens'   => array( 'plugins' ),
			);

			// Parse the arguments with defaults.
			$args = wp_parse_args( $args, $defaults );
			$id = ! empty( $args['id'] ) ? sanitize_text_field( $args['id'] ) : 'uds-feedback-form--wrapper';

			// Return if not on the allowed screen.
			if ( ! BSF_Analytics_Helper::is_allowed_screen() ) {
				return;
			}

			// Product slug used for input fields and labels in each plugin's deactivation survey.
			$product_slug = isset( $args['plugin_slug'] ) ? sanitize_text_field( $args['plugin_slug'] ) : 'bsf';

			?>
			<div id="<?php echo esc_attr( $id ); ?>" class="uds-feedback-form--wrapper" style="display: none">
				<div class="uds-feedback-form--container">
					<div class="uds-form-header--wrapper">
						<div class="uds-form-title--icon-wrapper">
							<?php if ( ! empty( $args['popup_logo'] ) ) { ?>
								<img class="uds-icon" src="<?php echo esc_url( $args['popup_logo'] ); ?>" title="<?php echo esc_attr( $args['plugin_slug'] ); ?> <?php echo esc_attr( __( 'Icon' ) ); ?>" />
							<?php } ?>
							<h2 class="uds-title"><?php echo esc_html( $args['popup_title'] ); ?></h2>
						</div>
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="uds-close">
							<path stroke-linecap="round" stroke-linejoin="round" d="M6 18 18 6M6 6l12 12" />
						</svg>
					</div>
					<div class="uds-form-body--content">

						<?php if ( ! empty( $args['popup_description'] ) ) { ?>
							<p class="uds-form-description"><?php echo esc_html( $args['popup_description'] ); ?></p>
						<?php } ?>

						<form class="uds-feedback-form" id="uds-feedback-form" method="post">
						<?php foreach ( $args['popup_reasons'] as $key => $value ) {
								$input_id = $product_slug . '_uds_reason_input_' . $key;
								?>
								<fieldset>
									<div class="reason">
										<input type="radio" class="uds-reason-input" name="uds_reason_input" id="<?php echo esc_attr( $input_id ); ?>" value="<?php echo esc_attr( $key ); ?>" data-placeholder="<?php echo esc_attr( $value['placeholder'] ); ?>" data-show_cta="<?php echo esc_attr( $value['show_cta'] ); ?>" data-accept_feedback="<?php echo esc_attr( $value['accept_feedback'] ); ?>">
										<label class="uds-reason-label" for="<?php echo esc_attr( $input_id ); ?>"><?php echo esc_html( $value['label'] ); ?></label>
									</div>
								</fieldset>
							<?php } ?>

							<fieldset>
								<textarea class="uds-options-feedback hide" id="uds-options-feedback" rows="3" name="uds_options_feedback" placeholder="<?php echo esc_attr( __( 'Please tell us more details.' ) ); ?>"></textarea>
								<?php
								if ( ! empty( $args['support_url'] ) ) {
									?>
										<p class="uds-option-feedback-cta hide">
											<?php
											echo wp_kses_post(
												sprintf(
												/* translators: %1$s: link html start, %2$s: link html end*/
													__( 'Need help from our experts? %1$sClick here to contact us.%2$s' ),
													'<a href="' . esc_url( $args['support_url'] ) . '" target="_blank">',
													'</a>'
												)
											);
											?>
										</p>
								<?php } ?>
							</fieldset>

							<div class="uds-feedback-form-sumbit--actions">
								<button class="button button-primary uds-feedback-submit" data-action="submit"><?php esc_html_e( 'Submit & Deactivate' ); ?></button>
								<button class="button button-secondary uds-feedback-skip" data-action="skip"><?php esc_html_e( 'Skip & Deactivate' ); ?></button>
								<input type="hidden" name="referer" value="<?php echo esc_url( get_site_url() ); ?>">
								<input type="hidden" name="version" value="<?php echo esc_attr( $args['plugin_version'] ); ?>">
								<input type="hidden" name="source" value="<?php echo esc_attr( $args['plugin_slug'] ); ?>">
							</div>
						</form>
					</div>

				</div>
			</div>
			<?php
		}

		/**
		 * Load form styles.
		 *
		 * This function loads the necessary styles for the feedback form.
		 *
		 * @since 1.1.6
		 * @return void
		 */
		public static function load_form_styles() {

			if ( ! BSF_Analytics_Helper::is_allowed_screen() ) {
				return;
			}

			$dir_path = BSF_ANALYTICS_URI . '/modules/deactivation-survey/';
			$file_ext = ! SCRIPT_DEBUG ? '.min' : '';

			wp_enqueue_script(
				'uds-feedback-script',
				$dir_path . 'assets/js/feedback' . $file_ext . '.js',
				array( 'jquery' ),
				BSF_ANALYTICS_VERSION,
				true
			);

			$data = apply_filters(
				'uds_survey_vars',
				array(
					'ajaxurl'        => esc_url( admin_url( 'admin-ajax.php' ) ),
					'_ajax_nonce'    => wp_create_nonce( 'uds_plugin_deactivate_feedback' ),
					'_current_theme' => function_exists( 'wp_get_theme' ) ? wp_get_theme()->get_template() : '',
					'_plugin_slug'   => array(),
				)
			);

			// Add localize JS.
			wp_localize_script(
				'uds-feedback-script',
				'udsVars',
				$data
			);

			wp_enqueue_style( 'uds-feedback-style', $dir_path . 'assets/css/feedback' . $file_ext . '.css', array(), BSF_ANALYTICS_VERSION );
			wp_style_add_data( 'uds-feedback-style', 'rtl', 'replace' );
		}

		/**
		 * Sends plugin deactivation feedback to the server.
		 *
		 * This function checks the user's permission and verifies the nonce for the request.
		 * If the checks pass, it sends the feedback data to the server for processing.
		 *
		 * @return void
		 */
		public function send_plugin_deactivate_feedback() {

			$response_data = array( 'message' => __( 'Sorry, you are not allowed to do this operation.' ) );

			/**
			 * Check permission
			 */
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( $response_data );
			}

			/**
			 * Nonce verification
			 */
			if ( ! check_ajax_referer( 'uds_plugin_deactivate_feedback', 'security', false ) ) {
				$response_data = array( 'message' => __( 'Nonce validation failed' ) );
				wp_send_json_error( $response_data );
			}

			$feedback_data = array(
				'reason'      => isset( $_POST['reason'] ) ? sanitize_text_field( wp_unslash( $_POST['reason'] ) ) : '',
				'feedback'    => isset( $_POST['feedback'] ) ? sanitize_text_field( wp_unslash( $_POST['feedback'] ) ) : '',
				'domain_name' => isset( $_POST['referer'] ) ? sanitize_text_field( wp_unslash( $_POST['referer'] ) ) : '',
				'version'     => isset( $_POST['version'] ) ? sanitize_text_field( wp_unslash( $_POST['version'] ) ) : '',
				'plugin'      => isset( $_POST['source'] ) ? sanitize_text_field( wp_unslash( $_POST['source'] ) ) : '',
			);

			$api_args = array(
				'body'    => wp_json_encode( $feedback_data ),
				'headers' => BSF_Analytics_Helper::get_api_headers(),
				'timeout' => 15, //phpcs:ignore WordPressVIPMinimum.Performance.RemoteRequestTimeout.timeout_timeout
			);

			$target_url = BSF_Analytics_Helper::get_api_url() . self::$feedback_api_endpoint;

			$response = wp_safe_remote_post( $target_url, $api_args );

			$has_errors = BSF_Analytics_Helper::is_api_error( $response );

			if ( $has_errors['error'] ) {
				wp_send_json_error(
					array(
						'success' => false,
						'message' => $has_errors['error_message'],
					)
				);
			}

			wp_send_json_success();
		}

		/**
		 * Get the array of default reasons.
		 *
		 * @return array Default reasons.
		 */
		public static function get_default_reasons() {

			return apply_filters(
				'uds_default_deactivation_reasons',
				array(
					'temporary_deactivation' => array(
						'label'           => esc_html__( 'This is a temporary deactivation for testing.' ),
						'placeholder'     => esc_html__( 'How can we assist you?' ),
						'show_cta'        => 'false',
						'accept_feedback' => 'false',
					),
					'plugin_not_working'     => array(
						'label'           => esc_html__( 'The plugin isn\'t working properly.' ),
						'placeholder'     => esc_html__( 'Please tell us more about what went wrong?' ),
						'show_cta'        => 'true',
						'accept_feedback' => 'true',
					),
					'found_better_plugin'    => array(
						'label'           => esc_html__( 'I found a better alternative plugin.' ),
						'placeholder'     => esc_html__( 'Could you please specify which plugin?' ),
						'show_cta'        => 'false',
						'accept_feedback' => 'true',
					),
					'missing_a_feature'      => array(
						'label'           => esc_html__( 'It\'s missing a specific feature.' ),
						'placeholder'     => esc_html__( 'Please tell us more about the feature.' ),
						'show_cta'        => 'false',
						'accept_feedback' => 'true',
					),
					'other'                  => array(
						'label'           => esc_html__( 'Other' ),
						'placeholder'     => esc_html__( 'Please tell us more details.' ),
						'show_cta'        => 'false',
						'accept_feedback' => 'true',
					),
				)
			);
		}
	}

	Deactivation_Survey_Feedback::get_instance();
}
PK���\¨��Iadmin/bsf-analytics/modules/deactivation-survey/assets/js/feedback.min.jsnu�[���(i=>{let t={slug:"",skipButton:"",formWrapper:"",radioButton:"",closeButton:"",buttonAction:"",feedbackForm:"",feedbackInput:"",deactivateUrl:"",buttonTrigger:"",deactivateButton:"",submitDeactivate:"",_cacheElements(){this.slug=udsVars?._plugin_slug||"",this.skipButton=i(".uds-feedback-skip"),this.submitDeactivate=i(".uds-feedback-submit"),this.deactivateButton=i("#the-list").find(".row-actions span.deactivate a"),this.feedbackForm=i(".uds-feedback-form"),this.feedbackInput=i(".uds-options-feedback"),this.formWrapper=i(".uds-feedback-form--wrapper"),this.closeButton=i(".uds-feedback-form--wrapper .uds-close"),this.radioButton=i(".uds-reason-input")},_showPopup(t){i("#deactivation-survey-"+t).addClass("show_popup")},_hidePopup(){this.formWrapper.removeClass("show_popup")},_redirectOrReload(){this.deactivateUrl?window.location.href=this.deactivateUrl:location.reload()},_hideShowFeedbackAndCTA(t){var e="true"===i(t.target).attr("data-accept_feedback"),a="true"===i(t.target).attr("data-show_cta");i(t.target).closest(this.formWrapper).find(".uds-options-feedback").removeClass("hide").addClass(e?"show":"hide"),i(t.target).closest(this.formWrapper).find(".uds-option-feedback-cta").removeClass("hide").addClass(a?"show":"hide")},_changePlaceholderText(t){var e=t.target.getAttribute("data-placeholder");i(t.target).closest(this.formWrapper).find(this.feedbackInput).attr("placeholder",e||""),this._hideShowFeedbackAndCTA(t)},_submitFeedback(t,s){t.preventDefault();var t=i(t.target),e=t.closest(this.feedbackForm),e={action:"uds_plugin_deactivate_feedback",security:udsVars?._ajax_nonce||"",reason:e.find(this.radioButton.filter(":checked")).val()||"",source:e.find('input[name="source"]').val()||"",referer:e.find('input[name="referer"]').val()||"",version:e.find('input[name="version"]').val()||"",feedback:e.find(this.feedbackInput).val()||""};t.find(".uds-feedback-"+this.buttonAction).text("Deactivating.").addClass("processing"),i.ajax({url:udsVars?.ajaxurl,type:"POST",data:e,success(t){t.success&&s._redirectOrReload(),s._hidePopup()},error(t,e,a){s._redirectOrReload()}})},_handleClick(t){t.target.classList.contains("show_popup")&&t.target.closest(".uds-feedback-form--wrapper")?this._hidePopup():t.target.classList.contains("activate")&&(this.deactivateUrl=t.target.href,-1===this.deactivateUrl.indexOf(`stylesheet=${udsVars?._current_theme}-child`))&&-1===this.deactivateUrl.indexOf(`stylesheet=${udsVars?._current_theme}&`)&&(t.preventDefault(),this._showPopup(udsVars?._current_theme))},_init(){this._cacheElements(),this._bind()},_bind(){let a=this;this.deactivateButton.on("click",function(t){var e=i(t.target).closest("tr").data("slug");a.slug.includes(e)&&(t.preventDefault(),a.deactivateUrl=i(t.target).attr("href"),a._showPopup(e))}),this.closeButton.on("click",function(t){t.preventDefault(),a._hidePopup()}),this.radioButton.on("click",function(t){a._changePlaceholderText(t)}),this.submitDeactivate.add(this.skipButton).on("click",function(t){t.preventDefault(),a.buttonAction=i(t.target).attr("data-action"),i(t.target).closest(a.feedbackForm).submit()}),this.feedbackForm.on("submit",function(t){a._submitFeedback(t,a)}),document.addEventListener("click",function(t){a._handleClick(t)})}};i(function(){t._init()})})(jQuery);PK���\�::Eadmin/bsf-analytics/modules/deactivation-survey/assets/js/feedback.jsnu�[���( function ( $ ) {
	const UserDeactivationPopup = {
		slug: '',
		skipButton: '',
		formWrapper: '',
		radioButton: '',
		closeButton: '',
		buttonAction: '',
		feedbackForm: '',
		feedbackInput: '',
		deactivateUrl: '',
		buttonTrigger: '',
		deactivateButton: '',
		submitDeactivate: '',

		/**
		 * Caches elements for later use.
		 */
		_cacheElements() {
			this.slug = udsVars?._plugin_slug || '';
			this.skipButton = $( '.uds-feedback-skip' );
			this.submitDeactivate = $( '.uds-feedback-submit' );
			this.deactivateButton = $( '#the-list' ).find(
				`.row-actions span.deactivate a`
			);
			this.feedbackForm = $( '.uds-feedback-form' ); // Feedback Form.
			this.feedbackInput = $( '.uds-options-feedback' ); // Feedback Textarea.
			this.formWrapper = $( '.uds-feedback-form--wrapper' );
			this.closeButton = $( '.uds-feedback-form--wrapper .uds-close' );
			this.radioButton = $( '.uds-reason-input' );
		},

		/**
		 * Shows the feedback popup by adding the 'show' class to the form wrapper.
		 *
		 * @param {string} slug - The slug of the plugin.
		 */
		_showPopup( slug ) {
			$( `#deactivation-survey-${ slug }` ).addClass( 'show_popup' );
		},

		/**
		 * Hides the feedback popup by removing the 'show' class from the form wrapper.
		 */
		_hidePopup() {
			this.formWrapper.removeClass( 'show_popup' );
		},

		/**
		 * Redirects to the deactivate URL if it exists, otherwise reloads the current page.
		 */
		_redirectOrReload() {
			if ( this.deactivateUrl ) {
				window.location.href = this.deactivateUrl;
			} else {
				location.reload();
			}
		},

		/**
		 * Toggles the visibility of the feedback form and CTA based on the event target's attributes.
		 *
		 * @param {Event} event - The event that triggered this function.
		 */
		_hideShowFeedbackAndCTA( event ) {
			const acceptFeedback =
				$( event.target ).attr( 'data-accept_feedback' ) === 'true';
			const showCta =
				$( event.target ).attr( 'data-show_cta' ) === 'true';

			$( event.target )
				.closest( this.formWrapper )
				.find( '.uds-options-feedback' )
				.removeClass( 'hide' )
				.addClass( acceptFeedback ? 'show' : 'hide' );
			$( event.target )
				.closest( this.formWrapper )
				.find( '.uds-option-feedback-cta' )
				.removeClass( 'hide' )
				.addClass( showCta ? 'show' : 'hide' );
		},

		/**
		 * Changes the placeholder text of the feedback input based on the event target's attribute.
		 *
		 * @param {Event} event - The event that triggered this function.
		 */
		_changePlaceholderText( event ) {
			const radioButtonPlaceholder =
				event.target.getAttribute( 'data-placeholder' );

			$( event.target )
				.closest( this.formWrapper )
				.find( this.feedbackInput )
				.attr( 'placeholder', radioButtonPlaceholder || '' );

			this._hideShowFeedbackAndCTA( event );
		},

		/**
		 * Submits the feedback form and handles the response.
		 *
		 * @param {Event}  event - The event that triggered this function.
		 * @param {Object} self  - A reference to the current object.
		 */
		_submitFeedback( event, self ) {
			event.preventDefault();

			const currentForm = $( event.target );
			const closestForm = currentForm.closest( this.feedbackForm ); // Cache the closest form

			// Gather form data.
			const formData = {
				action: 'uds_plugin_deactivate_feedback',
				security: udsVars?._ajax_nonce || '',
				reason:
					closestForm
						.find( this.radioButton.filter( ':checked' ) )
						.val() || '', // Get the selected radio button value from the current form.
				source: closestForm.find( 'input[name="source"]' ).val() || '',
				referer:
					closestForm.find( 'input[name="referer"]' ).val() || '',
				version:
					closestForm.find( 'input[name="version"]' ).val() || '',
				feedback: closestForm.find( this.feedbackInput ).val() || '', // Get the feedback input value from the current form.
			};

			currentForm
				.find( '.uds-feedback-' + this.buttonAction )
				.text( 'Deactivating.' )
				.addClass( 'processing' );

			// Prepare AJAX call.
			$.ajax( {
				url: udsVars?.ajaxurl, // URL to send the request to.
				type: 'POST', // HTTP method.
				data: formData, // Data to be sent.
				success( response ) {
					if ( response.success ) {
						self._redirectOrReload();
					}
					self._hidePopup();
				},
				/* eslint-disable */
				error( xhr, status, error ) {
					/* eslint-disable */
					self._redirectOrReload();
				},
			} );
		},

		_handleClick( e ) {
			// Close feedback form or show/hide popup if clicked outside and add a click on a Activate button of Theme.
			if (
				e.target.classList.contains( 'show_popup' ) &&
				e.target.closest( '.uds-feedback-form--wrapper' )
			) {
				this._hidePopup();
			} else if ( e.target.classList.contains( 'activate' ) ) {
				this.deactivateUrl = e.target.href;

				// Don't show for Child Themes if parent theme is active & Parent Theme if child theme is active.
				if (
					-1 !==
					this.deactivateUrl.indexOf(
						`stylesheet=${ udsVars?._current_theme }-child`
					) ||
					-1 !==
					this.deactivateUrl.indexOf(`stylesheet=${udsVars?._current_theme}&`)
				) {
					return;
				}

				e.preventDefault();
				this._showPopup( udsVars?._current_theme );
			}
		},

		/**
		 * Initializes the feedback popup by caching elements and binding events.
		 */
		_init() {
			this._cacheElements();
			this._bind();
		},

		/**
		 * Binds event listeners to various elements to handle user interactions.
		 */
		_bind() {
			const self = this; // Store reference to the current object.

			// Open the popup when clicked on the deactivate button.
			this.deactivateButton.on( 'click', function ( event ) {
				let closestTr = $( event.target ).closest( 'tr' );
				let slug = closestTr.data( 'slug' );

				if ( self.slug.includes( slug ) ) {
					event.preventDefault();
					// Set the deactivation URL.
					self.deactivateUrl = $( event.target ).attr( 'href' );
					self._showPopup( slug );
				}
			} );

			// Close the popup on a click of Close button.
			this.closeButton.on( 'click', function ( event ) {
				event.preventDefault();
				self._hidePopup(); // Use self to refer to the UserDeactivationPopup instance.
			} );

			// Click event on radio button to change the placeholder of textarea.
			this.radioButton.on( 'click', function ( event ) {
				self._changePlaceholderText( event );
			} );

			// Combined submit and skip button actions.
			this.submitDeactivate
				.add( this.skipButton )
				.on( 'click', function ( event ) {
					event.preventDefault(); // Prevent default button action.
					self.buttonAction = $( event.target ).attr( 'data-action' );
					$( event.target ).closest( self.feedbackForm ).submit();
				} );

			this.feedbackForm.on( 'submit', function ( event ) {
				self._submitFeedback( event, self );
			} );

			document.addEventListener( 'click', function ( e ) {
				self._handleClick( e );
			} );
		},
	};

	$( function () {
		UserDeactivationPopup._init();
	} );
} )( jQuery );
PK���\��`0��Kadmin/bsf-analytics/modules/deactivation-survey/assets/css/feedback.min.cssnu�[���.uds-feedback-form--wrapper h2,.uds-feedback-form--wrapper input[type=radio],.uds-feedback-form--wrapper p{margin:0;padding:0}.uds-feedback-form--wrapper .show{display:block}.uds-feedback-form--wrapper .hide{display:none}.uds-feedback-form--wrapper{align-items:center;background-color:rgba(0,0,0,.75);bottom:0;display:none;justify-content:center;left:0;position:fixed;right:0;top:0;user-select:none;z-index:-9999}.uds-feedback-form--wrapper.show_popup{display:flex!important;z-index:99999}.uds-feedback-form--wrapper .uds-feedback-form--container{background-color:#fff;border-radius:8px;box-shadow:4px 4px 24px rgba(0,0,0,.25);max-width:90%;width:540px}.uds-feedback-form--container .uds-form-header--wrapper{align-items:center;display:flex;justify-content:space-between;padding:16px 20px 0}.uds-feedback-form--container .uds-form-title--icon-wrapper{display:flex;align-items:center;gap:12px}.uds-feedback-form--container .uds-form-header--wrapper .uds-close,.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon{width:20px;height:20px}.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title{color:#1f2937;font-size:16px;font-weight:600;line-height:24px;text-align:left}.uds-feedback-form--container .uds-form-header--wrapper .uds-close{color:#9ca3af;cursor:pointer}.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover{color:#4b5563}.uds-feedback-form--container .uds-form-body--content{padding:20px 20px 0 20px;display:flex;flex-direction:column;gap:20px}.uds-feedback-form--container .uds-form-body--content .uds-form-description{color:#1f2937;font-size:16px;font-weight:500;line-height:24px;text-align:left}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason{display:flex;align-items:center;gap:12px;margin-bottom:12px}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback{color:#6b7280;font-size:14px;font-weight:400;line-height:20px;text-align:left;width:100%;padding:9px 13px;border-radius:6px;border-width:1px;border-style:solid;border-color:#e5e7eb;box-shadow:0 1px 2px 0 #0000000d;background:#fff}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover{border-color:#d1d5db}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta{color:#4b5563;margin-top:10px;font-size:13px;font-weight:400;line-height:20px;text-align:left}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a{text-decoration:none;color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder{font-size:14px;font-weight:400;line-height:20px;text-align:left;color:#6b7280;opacity:1}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background-color:#f6f7f7;border-top:1px solid #e1e1e1;margin:40px -20px 0;border-bottom-left-radius:8px;border-bottom-right-radius:8px}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button{padding:7px 13px;border-radius:3px;border-width:1px;font-size:14px;font-weight:400;line-height:20px;text-align:left;border-style:solid;display:flex;gap:8px;align-items:center}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus{outline:0;box-shadow:none}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing{pointer-events:none;opacity:.8}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before{content:"\f463";animation:spin 2s linear infinite;font-family:dashicons,sans-serif;font-weight:400;font-size:18px;cursor:pointer}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label{font-size:14px;font-weight:400;line-height:20px;text-align:left}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]{display:flex;justify-content:center;height:18px;width:18px;cursor:pointer;margin:0;border:1px solid #d1d5db;border-radius:50%;line-height:0;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:50ms border-color ease-in-out;-webkit-appearance:none;padding:0}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked{vertical-align:middle;background-color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked::before{background-color:#fff!important;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:13px;margin:5px;text-indent:-9999px;width:6px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}PK���\ԃ�}y'y'Oadmin/bsf-analytics/modules/deactivation-survey/assets/css/feedback-rtl.min.cssnu�[���.uds-feedback-form--wrapper h2,.uds-feedback-form--wrapper input[type=radio],.uds-feedback-form--wrapper p{margin:0;padding:0}.uds-feedback-form--wrapper .show{display:block}.uds-feedback-form--wrapper .hide{display:none}.uds-feedback-form--wrapper{align-items:center;background-color:rgba(0,0,0,.75);bottom:0;display:none;justify-content:center;right:0;position:fixed;left:0;top:0;user-select:none;z-index:-9999}.uds-feedback-form--wrapper.show_popup{display:flex!important;z-index:99999}.uds-feedback-form--wrapper .uds-feedback-form--container{background-color:#fff;border-radius:8px;box-shadow:-4px 4px 24px rgba(0,0,0,.25);max-width:90%;width:540px}.uds-feedback-form--container .uds-form-header--wrapper{align-items:center;display:flex;justify-content:space-between;padding:16px 20px 0}.uds-feedback-form--container .uds-form-title--icon-wrapper{display:flex;align-items:center;gap:12px}.uds-feedback-form--container .uds-form-header--wrapper .uds-close,.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon{width:20px;height:20px}.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title{color:#1f2937;font-size:16px;font-weight:600;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-header--wrapper .uds-close{color:#9ca3af;cursor:pointer}.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover{color:#4b5563}.uds-feedback-form--container .uds-form-body--content{padding:20px 20px 0 20px;display:flex;flex-direction:column;gap:20px}.uds-feedback-form--container .uds-form-body--content .uds-form-description{color:#1f2937;font-size:16px;font-weight:500;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason{display:flex;align-items:center;gap:12px;margin-bottom:12px}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback{color:#6b7280;font-size:14px;font-weight:400;line-height:20px;text-align:right;width:100%;padding:9px 13px;border-radius:6px;border-width:1px;border-style:solid;border-color:#e5e7eb;box-shadow:0 1px 2px 0 #0000000d;background:#fff}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover{border-color:#d1d5db}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta{color:#4b5563;margin-top:10px;font-size:13px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a{text-decoration:none;color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder{font-size:14px;font-weight:400;line-height:20px;text-align:right;color:#6b7280;opacity:1}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background-color:#f6f7f7;border-top:1px solid #e1e1e1;margin:40px -20px 0;border-bottom-right-radius:8px;border-bottom-left-radius:8px}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button{padding:7px 13px;border-radius:3px;border-width:1px;font-size:14px;font-weight:400;line-height:20px;text-align:right;border-style:solid;display:flex;gap:8px;align-items:center}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus{outline:0;box-shadow:none}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing{pointer-events:none;opacity:.8}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before{content:"\f463";animation:spin 2s linear infinite;font-family:dashicons,sans-serif;font-weight:400;font-size:18px;cursor:pointer}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label{font-size:14px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]{display:flex;justify-content:center;height:18px;width:18px;cursor:pointer;margin:0;border:1px solid #d1d5db;border-radius:50%;line-height:0;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:50ms border-color ease-in-out;-webkit-appearance:none;padding:0}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked{vertical-align:middle;background-color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked::before{background-color:#fff!important;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:13px;margin:5px;text-indent:-9999px;width:6px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-360deg)}},.uds-feedback-form--wrapper h2,.uds-feedback-form--wrapper input[type=radio],.uds-feedback-form--wrapper p{margin:0;padding:0}.uds-feedback-form--wrapper .show{display:block}.uds-feedback-form--wrapper .hide{display:none}.uds-feedback-form--wrapper{align-items:center;background-color:rgba(0,0,0,.75);bottom:0;display:none;justify-content:center;right:0;position:fixed;left:0;top:0;user-select:none;z-index:-9999}.uds-feedback-form--wrapper.show_popup{display:flex!important;z-index:99999}.uds-feedback-form--wrapper .uds-feedback-form--container{background-color:#fff;border-radius:8px;box-shadow:-4px 4px 24px rgba(0,0,0,.25);max-width:90%;width:540px}.uds-feedback-form--container .uds-form-header--wrapper{align-items:center;display:flex;justify-content:space-between;padding:16px 20px 0}.uds-feedback-form--container .uds-form-title--icon-wrapper{display:flex;align-items:center;gap:12px}.uds-feedback-form--container .uds-form-header--wrapper .uds-close,.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon{width:20px;height:20px}.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title{color:#1f2937;font-size:16px;font-weight:600;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-header--wrapper .uds-close{color:#9ca3af;cursor:pointer}.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover{color:#4b5563}.uds-feedback-form--container .uds-form-body--content{padding:20px 20px 0 20px;display:flex;flex-direction:column;gap:20px}.uds-feedback-form--container .uds-form-body--content .uds-form-description{color:#1f2937;font-size:16px;font-weight:500;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason{display:flex;align-items:center;gap:12px;margin-bottom:12px}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback{color:#6b7280;font-size:14px;font-weight:400;line-height:20px;text-align:right;width:100%;padding:9px 13px;border-radius:6px;border-width:1px;border-style:solid;border-color:#e5e7eb;box-shadow:0 1px 2px 0 #0000000d;background:#fff}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover{border-color:#d1d5db}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta{color:#4b5563;margin-top:10px;font-size:13px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a{text-decoration:none;color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder{font-size:14px;font-weight:400;line-height:20px;text-align:right;color:#6b7280;opacity:1}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background-color:#f6f7f7;border-top:1px solid #e1e1e1;margin:40px -20px 0;border-bottom-right-radius:8px;border-bottom-left-radius:8px}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button{padding:7px 13px;border-radius:3px;border-width:1px;font-size:14px;font-weight:400;line-height:20px;text-align:right;border-style:solid;display:flex;gap:8px;align-items:center}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus{outline:0;box-shadow:none}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing{pointer-events:none;opacity:.8}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before{content:"\f463";animation:spin 2s linear infinite;font-family:dashicons,sans-serif;font-weight:400;font-size:18px;cursor:pointer}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label{font-size:14px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]{display:flex;justify-content:center;height:18px;width:18px;cursor:pointer;margin:0;border:1px solid #d1d5db;border-radius:50%;line-height:0;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:50ms border-color ease-in-out;-webkit-appearance:none;padding:0}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked{vertical-align:middle;background-color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked::before{background-color:#fff!important;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:13px;margin:5px;text-indent:-9999px;width:6px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-360deg)}}PK���\dw^**Kadmin/bsf-analytics/modules/deactivation-survey/assets/css/feedback-rtl.cssnu�[���/* Base CSS to normalize the default. */
.uds-feedback-form--wrapper h2,
.uds-feedback-form--wrapper p,
.uds-feedback-form--wrapper input[type="radio"] {
	margin: 0;
	padding: 0;
}

.uds-feedback-form--wrapper .show {
	display: block;
}
.uds-feedback-form--wrapper .hide {
	display: none;
}

.uds-feedback-form--wrapper {
	align-items: center;
	background-color: rgba( 0, 0, 0, 0.75 );
	bottom: 0;
	display: none;
	justify-content: center;
	right: 0;
	position: fixed;
	left: 0;
	top: 0;
	user-select: none;
	z-index: -9999;
}

.uds-feedback-form--wrapper.show_popup {
	display: flex !important;
	z-index: 99999;
}

.uds-feedback-form--wrapper .uds-feedback-form--container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: -4px 4px 24px rgba( 0, 0, 0, 0.25 );
	max-width: 90%;
	width: 540px;
}

.uds-feedback-form--container .uds-form-header--wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 16px 20px 0;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon,
.uds-feedback-form--container .uds-form-header--wrapper .uds-close {
	width: 20px;
	height: 20px;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title {
	color: #1f2937;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: right;
}

.uds-feedback-form--container .uds-form-header--wrapper .uds-close {
	color: #9ca3af;
	cursor: pointer;
}

.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover {
	color: #4b5563;
}

.uds-feedback-form--container .uds-form-body--content {
	padding: 20px 20px 0 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.uds-feedback-form--container .uds-form-body--content .uds-form-description {
	color: #1f2937;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-align: right;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback {
	color: #6b7280;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
	width: 100%;
	padding: 9px 13px;
	border-radius: 6px;
	border-width: 1px;
	border-style: solid;
	border-color: #e5e7eb;
	box-shadow: 0 1px 2px 0 #0000000d;
	background: #fff;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover,
.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,
.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active {
	border-color: #d1d5db;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta {
	color: #4b5563;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a {
	text-decoration: none;
	color: #006ba1;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
	color: #6b7280;
	opacity: 1;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background-color: #f6f7f7;
	border-top: 1px solid #e1e1e1;
	margin: 40px -20px 0;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button {
	padding: 7px 13px;
	border-radius: 3px;
	border-width: 1px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
	border-style: solid;
	display: flex;
	gap: 8px;
	align-items: center;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus {
	outline: none;
	box-shadow: none;
}
.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing {
	pointer-events: none;
	opacity: 0.8;
}
.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before {
	content: "\f463";
	animation: spin 2s linear infinite;
	font-family: dashicons, sans-serif;
	font-weight: 400;
	font-size: 18px;
	cursor: pointer;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"] {
	display: flex;
	justify-content: center;
	height: 18px;
	width: 18px;
	cursor: pointer;
	margin: 0;
	border: 1px solid #d1d5db;
	border-radius: 50%;
	line-height: 0;
	box-shadow: inset 0 1px 2px rgb( 0 0 0 / 10% );
	transition: 0.05s border-color ease-in-out;
	-webkit-appearance: none;
	padding: 0;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked {
	vertical-align: middle;
	background-color: #006ba1;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked::before {
	background-color: #fff !important;
	border-radius: 50px;
	content: "\2022";
	font-size: 24px;
	height: 6px;
	line-height: 13px;
	margin: 5px;
	text-indent: -9999px;
	width: 6px;
}

@keyframes spin {
	0% {
		transform: rotate( 0deg );
	}
	100% {
		transform: rotate( -360deg );
	}
}
,.uds-feedback-form--wrapper h2,.uds-feedback-form--wrapper input[type=radio],.uds-feedback-form--wrapper p{margin:0;padding:0}.uds-feedback-form--wrapper .show{display:block}.uds-feedback-form--wrapper .hide{display:none}.uds-feedback-form--wrapper{align-items:center;background-color:rgba(0,0,0,.75);bottom:0;display:none;justify-content:center;right:0;position:fixed;left:0;top:0;user-select:none;z-index:-9999}.uds-feedback-form--wrapper.show_popup{display:flex!important;z-index:99999}.uds-feedback-form--wrapper .uds-feedback-form--container{background-color:#fff;border-radius:8px;box-shadow:-4px 4px 24px rgba(0,0,0,.25);max-width:90%;width:540px}.uds-feedback-form--container .uds-form-header--wrapper{align-items:center;display:flex;justify-content:space-between;padding:16px 20px 0}.uds-feedback-form--container .uds-form-title--icon-wrapper{display:flex;align-items:center;gap:12px}.uds-feedback-form--container .uds-form-header--wrapper .uds-close,.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon{width:20px;height:20px}.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title{color:#1f2937;font-size:16px;font-weight:600;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-header--wrapper .uds-close{color:#9ca3af;cursor:pointer}.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover{color:#4b5563}.uds-feedback-form--container .uds-form-body--content{padding:20px 20px 0 20px;display:flex;flex-direction:column;gap:20px}.uds-feedback-form--container .uds-form-body--content .uds-form-description{color:#1f2937;font-size:16px;font-weight:500;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason{display:flex;align-items:center;gap:12px;margin-bottom:12px}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback{color:#6b7280;font-size:14px;font-weight:400;line-height:20px;text-align:right;width:100%;padding:9px 13px;border-radius:6px;border-width:1px;border-style:solid;border-color:#e5e7eb;box-shadow:0 1px 2px 0 #0000000d;background:#fff}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover{border-color:#d1d5db}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta{color:#4b5563;margin-top:10px;font-size:13px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a{text-decoration:none;color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder{font-size:14px;font-weight:400;line-height:20px;text-align:right;color:#6b7280;opacity:1}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background-color:#f6f7f7;border-top:1px solid #e1e1e1;margin:40px -20px 0;border-bottom-right-radius:8px;border-bottom-left-radius:8px}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button{padding:7px 13px;border-radius:3px;border-width:1px;font-size:14px;font-weight:400;line-height:20px;text-align:right;border-style:solid;display:flex;gap:8px;align-items:center}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus{outline:0;box-shadow:none}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing{pointer-events:none;opacity:.8}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before{content:"\f463";animation:spin 2s linear infinite;font-family:dashicons,sans-serif;font-weight:400;font-size:18px;cursor:pointer}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label{font-size:14px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]{display:flex;justify-content:center;height:18px;width:18px;cursor:pointer;margin:0;border:1px solid #d1d5db;border-radius:50%;line-height:0;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:50ms border-color ease-in-out;-webkit-appearance:none;padding:0}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked{vertical-align:middle;background-color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked::before{background-color:#fff!important;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:13px;margin:5px;text-indent:-9999px;width:6px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-360deg)}}PK���\��xIIGadmin/bsf-analytics/modules/deactivation-survey/assets/css/feedback.cssnu�[���/* Base CSS to normalize the default. */
.uds-feedback-form--wrapper h2,
.uds-feedback-form--wrapper p,
.uds-feedback-form--wrapper input[type="radio"] {
	margin: 0;
	padding: 0;
}

.uds-feedback-form--wrapper .show {
	display: block;
}
.uds-feedback-form--wrapper .hide {
	display: none;
}

.uds-feedback-form--wrapper {
	align-items: center;
	background-color: rgba( 0, 0, 0, 0.75 );
	bottom: 0;
	display: none;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	user-select: none;
	z-index: -9999;
}

.uds-feedback-form--wrapper.show_popup {
	display: flex !important;
	z-index: 99999;
}

.uds-feedback-form--wrapper .uds-feedback-form--container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 4px 4px 24px rgba( 0, 0, 0, 0.25 );
	max-width: 90%;
	width: 540px;
}

.uds-feedback-form--container .uds-form-header--wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 16px 20px 0;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon,
.uds-feedback-form--container .uds-form-header--wrapper .uds-close {
	width: 20px;
	height: 20px;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title {
	color: #1f2937;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: left;
}

.uds-feedback-form--container .uds-form-header--wrapper .uds-close {
	color: #9ca3af;
	cursor: pointer;
}

.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover {
	color: #4b5563;
}

.uds-feedback-form--container .uds-form-body--content {
	padding: 20px 20px 0 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.uds-feedback-form--container .uds-form-body--content .uds-form-description {
	color: #1f2937;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-align: left;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback {
	color: #6b7280;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	width: 100%;
	padding: 9px 13px;
	border-radius: 6px;
	border-width: 1px;
	border-style: solid;
	border-color: #e5e7eb;
	box-shadow: 0 1px 2px 0 #0000000d;
	background: #fff;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover,
.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,
.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active {
	border-color: #d1d5db;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta {
	color: #4b5563;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a {
	text-decoration: none;
	color: #006ba1;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	color: #6b7280;
	opacity: 1;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background-color: #f6f7f7;
	border-top: 1px solid #e1e1e1;
	margin: 40px -20px 0;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button {
	padding: 7px 13px;
	border-radius: 3px;
	border-width: 1px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	border-style: solid;
	display: flex;
	gap: 8px;
	align-items: center;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus {
	outline: none;
	box-shadow: none;
}
.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing {
	pointer-events: none;
	opacity: 0.8;
}
.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before {
	content: "\f463";
	animation: spin 2s linear infinite;
	font-family: dashicons, sans-serif;
	font-weight: 400;
	font-size: 18px;
	cursor: pointer;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"] {
	display: flex;
	justify-content: center;
	height: 18px;
	width: 18px;
	cursor: pointer;
	margin: 0;
	border: 1px solid #d1d5db;
	border-radius: 50%;
	line-height: 0;
	box-shadow: inset 0 1px 2px rgb( 0 0 0 / 10% );
	transition: 0.05s border-color ease-in-out;
	-webkit-appearance: none;
	padding: 0;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked {
	vertical-align: middle;
	background-color: #006ba1;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked::before {
	background-color: #fff !important;
	border-radius: 50px;
	content: "\2022";
	font-size: 24px;
	height: 6px;
	line-height: 13px;
	margin: 5px;
	text-indent: -9999px;
	width: 6px;
}

@keyframes spin {
	0% {
		transform: rotate( 0deg );
	}
	100% {
		transform: rotate( 360deg );
	}
}
PK���\5�L��-admin/bsf-analytics/modules/utm-analytics.phpnu�[���<?php
/**
 * UTM Analytics class
 *
 * @package bsf-analytics
 */


if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'BSF_UTM_Analytics' ) ) {
	
	if ( ! defined( 'BSF_UTM_ANALYTICS_REFERER' ) ) {
		define( 'BSF_UTM_ANALYTICS_REFERER', 'bsf_product_referers' );
	}

	/**
	 * UTM Analytics class
	 *
	 * @since 1.1.10
	 */
	class BSF_UTM_Analytics {
	
		/**
		 * List of slugs of all the bsf products that will be referer, referring another product.
		 *
		 * @var array<string>
		 * @since 1.1.10
		 */
		private static $bsf_product_slugs = [
			'all-in-one-schemaorg-rich-snippets',
			'astra',
			'astra-portfolio',
			'astra-sites',
			'bb-ultimate-addon',
			'cartflows',
			'checkout-paypal-woo',
			'checkout-plugins-stripe-woo',
			'convertpro',
			'header-footer-elementor',
			'latepoint',
			'modern-cart',
			'power-coupons',
			'presto-player',
			'sigmize',
			'surecart',
			'surecontact',
			'surecookie',
			'suredash',
			'sureforms',
			'suremails',
			'surerank',
			'suretriggers',
			'ultimate-addons-for-beaver-builder-lite',
			'ultimate-addons-for-gutenberg',
			'ultimate-elementor',
			'Ultimate_VC_Addons',
			'variation-swatches-woo',
			'woo-cart-abandonment-recovery',
			'wp-schema-pro',
			'zipwp'
		];

		/**
		 * This function will help to determine if provided slug is a valid bsf product or not,
		 * This way we will maintain consistency through out all our products.
		 *
		 * @param string $slug unique slug of the product which can be used for referer, product.
		 * @since 1.1.10
		 * @return boolean
		 */
		public static function is_valid_bsf_product_slug( $slug ) {
			if ( empty( $slug ) || ! is_string( $slug ) ) {
				return false;
			}

			return in_array( $slug, self::$bsf_product_slugs, true );
		}

		/**
		 * This function updates value of referer and product in option
		 * bsf_product_referer in form of key value pair as 'product' => 'referer'
		 *
		 * @param string $referer slug of the product which is refering another product.
		 * @param string $product slug of the product which is refered.
		 * @since 1.1.10
		 * @return void
		 */
		public static function update_referer( $referer, $product ) {

			$slugs       = [
				'referer' => $referer,
				'product' => $product,
			];
			$error_count = 0;

			foreach ( $slugs as $type => $slug ) {
				if ( ! self::is_valid_bsf_product_slug( $slug ) ) {
					error_log( sprintf( 'Invalid %1$s slug provided "%2$s", does not match bsf_product_slugs', $type, $slug ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log -- adding logs in case of failure will help in debugging.
					$error_count++;
				}
			}

			if ( $error_count > 0 ) {
				return;
			}

			$slugs = array_map( 'sanitize_text_field', $slugs );

			$bsf_product_referers = get_option( BSF_UTM_ANALYTICS_REFERER, [] );
			if ( ! is_array( $bsf_product_referers ) ) {
				$bsf_product_referers = [];
			}

			$bsf_product_referers[ $slugs['product'] ] = $slugs['referer'];

			update_option( BSF_UTM_ANALYTICS_REFERER, $bsf_product_referers );
		}

		/**
		 * This function will  add utm_args to pro link or purchase link
		 * added utm_source by default additional utm_args such as utm_medium etc can be provided to generate location specific links
		 *
		 * @param string $link Ideally this should be product site link where utm_params can be tracked.
		 * @param string $product Product slug whose utm_link need to be created.
		 * @param mixed  $utm_args additional args to be passed ex: [ 'utm_medium' => 'dashboard'].
		 * @since 1.1.10
		 * @return string
		 */
		public static function get_utm_ready_link( $link, $product, $utm_args = [] ) {

			if ( false === wp_http_validate_url( $link ) ) {
				error_log( 'Invalid url passed to get_utm_ready_link function' ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log -- adding logs in case of failure will help in debugging.
				return $link;
			}

			if ( empty( $product ) || ! is_string( $product ) || ! self::is_valid_bsf_product_slug( $product ) ) {
				error_log( sprintf( 'Invalid product slug provided "%1$s", does not match bsf_product_slugs', $product ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log -- adding logs in case of failure will help in debugging.
				return $link;
			}

			$bsf_product_referers = get_option( BSF_UTM_ANALYTICS_REFERER, [] );

			if ( ! is_array( $bsf_product_referers ) || empty( $bsf_product_referers[ $product ] ) ) {
				return $link;
			}

			if ( ! self::is_valid_bsf_product_slug( $bsf_product_referers[ $product ] ) ) {
				return $link;
			}

			if ( ! is_array( $utm_args ) ) {
				$utm_args = [];
			}

			$utm_args['utm_source'] = $bsf_product_referers[ $product ];

			$link = add_query_arg(
				$utm_args,
				$link
			);

			return $link;
		}
	}
}
PK���\�>��$$ admin/bsf-analytics/version.jsonnu�[���{
  "bsf-analytics-ver": "1.1.25"
}
PK���\�V}W��2admin/bsf-analytics/class-bsf-analytics-events.phpnu�[���<?php
/**
 * BSF Analytics Events — reusable one-time milestone tracking.
 *
 * Tracks events temporarily, sends them once via BSF Analytics,
 * then cleans up. Only a minimal dedup flag remains.
 *
 * @package bsf-analytics
 * @since 1.1.21
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'BSF_Analytics_Events' ) ) {

	/**
	 * BSF Analytics Events Class.
	 *
	 * @since 1.1.21
	 */
	class BSF_Analytics_Events {

		/**
		 * Plugin slug used as option key prefix in default storage.
		 *
		 * @var string
		 */
		private $slug;

		/**
		 * Option resolver callbacks.
		 *
		 * @var array{get: callable|null, update: callable|null}
		 */
		private $option_resolver;

		/**
		 * Constructor.
		 *
		 * @param string $slug            Plugin slug (e.g. 'sureforms', 'astra').
		 * @param array  $option_resolver Optional. Custom callbacks for option storage.
		 *                                 'get'    => callable( $key, $default ) — retrieve an option.
		 *                                 'update' => callable( $key, $value )   — persist an option.
		 *                                 When omitted, uses get_option( '{slug}_{key}' ) / update_option( '{slug}_{key}' ).
		 * @since 1.1.21
		 */
		public function __construct( $slug, $option_resolver = array() ) {
			$this->slug            = sanitize_key( $slug );
			$this->option_resolver = wp_parse_args(
				$option_resolver,
				array(
					'get'    => null,
					'update' => null,
				)
			);
		}

		/**
		 * Track an event. By default, skips if already tracked or pending (one-time semantics).
		 * When $force is true, the event is treated as retrackable — bypasses the post-send
		 * dedup check and overwrites any pending entry with the same name. Useful for
		 * recurring events like `plugin_updated` where the latest value should always win.
		 * Only stores temporary data — cleaned up after analytics send.
		 *
		 * @param string               $event_name  Event identifier.
		 * @param string               $event_value Primary value (version, form ID, mode, etc.).
		 * @param array<string, mixed> $properties  Additional context as key-value pairs. Values are stored as-is — sanitization is the caller's responsibility.
		 * @param bool                 $force       When true, bypass pushed dedup and overwrite pending entry. Default false.
		 * @since 1.1.21
		 * @since 1.1.25 Added the $force parameter.
		 * @return void
		 */
		public function track( $event_name, $event_value = '', $properties = array(), $force = false ) {
			// Sanitize inputs once upfront — ensures dedup comparisons match stored values.
			$event_name  = sanitize_text_field( $event_name );
			$event_value = sanitize_text_field( (string) $event_value );
			$properties  = is_array( $properties ) ? $properties : array();
			$force       = (bool) $force;

			// Check dedup flag — already sent in a previous cycle.
			// Force bypasses this check; pushed list will be refreshed on next flush_pending().
			if ( ! $force ) {
				$pushed = $this->get_option( 'usage_events_pushed', array() );
				$pushed = is_array( $pushed ) ? $pushed : array();
				if ( in_array( $event_name, $pushed, true ) ) {
					return;
				}
			}

			// Check if already queued in current cycle.
			$pending = $this->get_option( 'usage_events_pending', array() );
			$pending = is_array( $pending ) ? $pending : array();

			$new_event = array(
				'event_name'  => $event_name,
				'event_value' => $event_value,
				'properties'  => $properties,
				'date'        => current_time( 'mysql' ),
			);

			if ( ! $force ) {
				// Default path: cheap membership check — no need to locate the key.
				if ( in_array( $event_name, array_column( $pending, 'event_name' ), true ) ) {
					return;
				}
				$pending[] = $new_event;
			} else {
				// Force path: locate any existing entry by actual key to overwrite safely.
				$existing_key = null;
				foreach ( $pending as $key => $entry ) {
					if ( isset( $entry['event_name'] ) && $entry['event_name'] === $event_name ) {
						$existing_key = $key;
						break;
					}
				}

				if ( null !== $existing_key ) {
					// Skip the write when nothing material changed (only `date` would differ).
					$existing = $pending[ $existing_key ];
					if ( array_key_exists( 'event_value', $existing )
						&& array_key_exists( 'properties', $existing )
						&& $existing['event_value'] === $new_event['event_value']
						&& $existing['properties'] === $new_event['properties'] ) {
						return;
					}
					$pending[ $existing_key ] = $new_event;
				} else {
					$pending[] = $new_event;
				}
			}

			$this->update_option( 'usage_events_pending', $pending );
		}

		/**
		 * Flush pending events: returns them for the payload, then cleans up.
		 *
		 * After this call:
		 * - usage_events_pending is EMPTY (full event data deleted).
		 * - usage_events_pushed has event_name strings added (minimal dedup).
		 *
		 * @since 1.1.21
		 * @return array Pending events to include in payload. Empty if none.
		 */
		public function flush_pending() {
			$pending = $this->get_option( 'usage_events_pending', array() );
			if ( empty( $pending ) || ! is_array( $pending ) ) {
				return array();
			}

			// Add event names to dedup flag (minimal — just strings).
			$pushed = $this->get_option( 'usage_events_pushed', array() );
			$pushed = is_array( $pushed ) ? $pushed : array();
			$pushed = array_unique(
				array_merge( $pushed, array_column( $pending, 'event_name' ) )
			);
			$this->update_option( 'usage_events_pushed', $pushed );

			// DELETE all temporary event data.
			$this->update_option( 'usage_events_pending', array() );

			return $pending;
		}

		/**
		 * Remove specific event names from the pushed dedup flag, allowing them to be re-tracked.
		 *
		 * Pass an array of event names to remove only those entries.
		 * Pass an empty array (or omit) to clear all pushed events.
		 *
		 * @param array<string> $event_names Event names to remove. Empty = clear all.
		 * @since 1.1.21
		 * @return void
		 */
		public function flush_pushed( $event_names = array() ) {
			$pushed = $this->get_option( 'usage_events_pushed', array() );
			$pushed = is_array( $pushed ) ? $pushed : array();

			if ( empty( $event_names ) ) {
				$this->update_option( 'usage_events_pushed', array() );
				return;
			}

			$pushed = array_values( array_diff( $pushed, $event_names ) );
			$this->update_option( 'usage_events_pushed', $pushed );
		}

		/**
		 * Check if an event has already been tracked (sent or pending).
		 *
		 * @param string $event_name Event identifier.
		 * @since 1.1.21
		 * @return bool
		 */
		public function is_tracked( $event_name ) {
			$pushed = $this->get_option( 'usage_events_pushed', array() );
			$pushed = is_array( $pushed ) ? $pushed : array();
			if ( in_array( $event_name, $pushed, true ) ) {
				return true;
			}

			$pending = $this->get_option( 'usage_events_pending', array() );
			$pending = is_array( $pending ) ? $pending : array();
			return in_array( $event_name, array_column( $pending, 'event_name' ), true );
		}

		/**
		 * Get an option value using custom resolver or default WordPress option.
		 *
		 * @param string $key     Option key (e.g. 'usage_events_pending').
		 * @param mixed  $default Default value.
		 * @return mixed
		 */
		private function get_option( $key, $default = null ) {
			if ( is_callable( $this->option_resolver['get'] ) ) {
				return call_user_func( $this->option_resolver['get'], $key, $default );
			}
			return get_option( $this->slug . '_' . $key, $default );
		}

		/**
		 * Update an option value using custom resolver or default WordPress option.
		 *
		 * @param string $key   Option key (e.g. 'usage_events_pending').
		 * @param mixed  $value Value to store.
		 * @return void
		 */
		private function update_option( $key, $value ) {
			if ( is_callable( $this->option_resolver['update'] ) ) {
				call_user_func( $this->option_resolver['update'], $key, $value );
				return;
			}
			update_option( $this->slug . '_' . $key, $value );
		}
	}
}
PK���\�51admin/bsf-analytics/class-bsf-analytics-stats.phpnu�[���<?php
/**
 * BSF analytics stat class file.
 *
 * @package bsf-analytics
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'BSF_Analytics_Stats' ) ) {
	/**
	 * BSF analytics stat class.
	 */
	class BSF_Analytics_Stats {

		/**
		 * Active plugins.
		 *
		 * Holds the sites active plugins list.
		 *
		 * @var array
		 */
		private $plugins;

		/**
		 * Instance of BSF_Analytics_Stats.
		 *
		 * Holds only the first object of class.
		 *
		 * @var object
		 */
		private static $instance = null;

		/**
		 * Create only once instance of a class.
		 *
		 * @return object
		 * @since 1.0.0
		 */
		public static function instance() {
			if ( null === self::$instance ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Get stats.
		 *
		 * @return array stats data.
		 * @since 1.0.0
		 */
		public function get_stats() {
			return apply_filters( 'bsf_core_stats', $this->get_default_stats() );
		}

		/**
		 * Retrieve stats for site.
		 *
		 * @return array stats data.
		 * @since 1.0.0
		 */
		private function get_default_stats() {
			return array(
				'graupi_version'         => defined( 'BSF_UPDATER_VERSION' ) ? BSF_UPDATER_VERSION : false,
				'domain_name'            => get_site_url(),
				'php_os'                 => PHP_OS,
				'server_software'        => isset( $_SERVER['SERVER_SOFTWARE'] ) ? wp_kses( wp_unslash( $_SERVER['SERVER_SOFTWARE'] ), [] ) : '',
				'mysql_version'          => $this->get_mysql_version(),
				'php_version'            => $this->get_php_version(),
				'php_max_input_vars'     => ini_get( 'max_input_vars' ), // phpcs:ignore:PHPCompatibility.IniDirectives.NewIniDirectives.max_input_varsFound
				'php_post_max_size'      => ini_get( 'post_max_size' ),
				'php_max_execution_time' => ini_get( 'max_execution_time' ),
				'php_memory_limit'       => ini_get( 'memory_limit' ),
				'zip_installed'          => extension_loaded( 'zip' ),
				'imagick_availabile'     => extension_loaded( 'imagick' ),
				'xmlreader_exists'       => class_exists( 'XMLReader' ),
				'gd_available'           => extension_loaded( 'gd' ),
				'curl_version'           => $this->get_curl_version(),
				'curl_ssl_version'       => $this->get_curl_ssl_version(),
				'is_writable'            => $this->is_content_writable(),

				'wp_version'             => get_bloginfo( 'version' ),
				'user_count'             => $this->get_user_count(),
				'posts_count'            => wp_count_posts()->publish,
				'page_count'             => wp_count_posts( 'page' )->publish,
				'site_language'          => get_locale(),
				'timezone'               => wp_timezone_string(),
				'is_ssl'                 => is_ssl(),
				'is_multisite'           => is_multisite(),
				'network_url'            => network_site_url(),
				'external_object_cache'  => (bool) wp_using_ext_object_cache(),
				'wp_debug'               => WP_DEBUG,
				'wp_debug_display'       => WP_DEBUG_DISPLAY,
				'script_debug'           => SCRIPT_DEBUG,

				'active_plugins'         => $this->get_active_plugins(),

				'active_theme'           => get_template(),
				'active_stylesheet'      => get_stylesheet(),

				'admin_email'            => get_option( 'admin_email' ),
			);
		}

		/**
		 * Get installed PHP version.
		 *
		 * @return float PHP version.
		 * @since 1.0.0
		 */
		private function get_php_version() {
			if ( defined( 'PHP_MAJOR_VERSION' ) && defined( 'PHP_MINOR_VERSION' ) && defined( 'PHP_RELEASE_VERSION' ) ) { // phpcs:ignore
				return PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION . '.' . PHP_RELEASE_VERSION;
			}

			return phpversion();
		}

		/**
		 * User count on site.
		 *
		 * @return int User count.
		 * @since 1.0.0
		 */
		private function get_user_count() {
			if ( is_multisite() ) {
				$user_count = get_user_count();
			} else {
				$count      = count_users();
				$user_count = $count['total_users'];
			}

			return $user_count;
		}

		/**
		 * Get active plugin's data.
		 *
		 * @return array active plugin's list.
		 * @since 1.0.0
		 */
		private function get_active_plugins() {
			if ( ! $this->plugins ) {
				// Ensure get_plugin_data function is loaded.
				if ( ! function_exists( 'get_plugin_data' ) ) {
					require_once ABSPATH . 'wp-admin/includes/plugin.php';
				}

				$plugins       = wp_get_active_and_valid_plugins();
				$plugins       = array_map( 'get_plugin_data', $plugins );
				$this->plugins = array_map( array( $this, 'format_plugin' ), $plugins );
			}

			return $this->plugins;
		}

		/**
		 * Format plugin data.
		 *
		 * @param string $plugin plugin.
		 * @return array formatted plugin data.
		 * @since 1.0.0
		 */
		public function format_plugin( $plugin ) {
			return array(
				'name'        => html_entity_decode( $plugin['Name'], ENT_COMPAT, 'UTF-8' ),
				'url'         => $plugin['PluginURI'],
				'version'     => $plugin['Version'],
				'slug'        => $plugin['TextDomain'],
				'author_name' => html_entity_decode( wp_strip_all_tags( $plugin['Author'] ), ENT_COMPAT, 'UTF-8' ),
				'author_url'  => $plugin['AuthorURI'],
			);
		}

		/**
		 * Curl SSL version.
		 *
		 * @return float SSL version.
		 * @since 1.0.0
		 */
		private function get_curl_ssl_version() {
			$curl = array();
			if ( function_exists( 'curl_version' ) ) {
				$curl = curl_version(); // phpcs:ignore WordPress.WP.AlternativeFunctions.curl_curl_version
			}

			return isset( $curl['ssl_version'] ) ? $curl['ssl_version'] : false;
		}

		/**
		 * Get cURL version.
		 *
		 * @return float cURL version.
		 * @since 1.0.0
		 */
		private function get_curl_version() {
			if ( function_exists( 'curl_version' ) ) {
				$curl = curl_version(); // phpcs:ignore WordPress.WP.AlternativeFunctions.curl_curl_version
			}

			return isset( $curl['version'] ) ? $curl['version'] : false;
		}

		/**
		 * Get MySQL version.
		 *
		 * @return float MySQL version.
		 * @since 1.0.0
		 */
		private function get_mysql_version() {
			global $wpdb;
			return $wpdb->db_version();
		}

		/**
		 * Check if content directory is writable.
		 *
		 * @return bool
		 * @since 1.0.0
		 */
		private function is_content_writable() {
			$upload_dir = wp_upload_dir();
			return wp_is_writable( $upload_dir['basedir'] );
		}
	}
}

/**
 * Polyfill for sites using WP version less than 5.3
 */
if ( ! function_exists( 'wp_timezone_string' ) ) {
	/**
	 * Get timezone string.
	 *
	 * @return string timezone string.
	 * @since 1.0.0
	 */
	function wp_timezone_string() {
		$timezone_string = get_option( 'timezone_string' );

		if ( $timezone_string ) {
			return $timezone_string;
		}

		$offset  = (float) get_option( 'gmt_offset' );
		$hours   = (int) $offset;
		$minutes = ( $offset - $hours );

		$sign      = ( $offset < 0 ) ? '-' : '+';
		$abs_hour  = abs( $hours );
		$abs_mins  = abs( $minutes * 60 );
		$tz_offset = sprintf( '%s%02d:%02d', $sign, $abs_hour, $abs_mins );

		return $tz_offset;
	}
}
PK���\`�
�mNmN+admin/bsf-analytics/class-bsf-analytics.phpnu�[���<?php
/**
 * BSF analytics class file.
 *
 * @version 1.0.0
 *
 * @package bsf-analytics
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'BSF_Analytics' ) ) {

	/**
	 * BSF analytics
	 */
	class BSF_Analytics {

		/**
		 * Member Variable
		 *
		 * @var array Entities data.
		 */
		private $entities;

		/**
		 * Member Variable
		 *
		 * @var string Usage tracking document URL
		 */
		public $usage_doc_link = 'https://store.brainstormforce.com/usage-tracking/';

		/**
		 * Setup actions, load files.
		 *
		 * @param array  $args entity data for analytics.
		 * @param string $analytics_path directory path to analytics library.
		 * @param float  $analytics_version analytics library version.
		 * @since 1.0.0
		 */
		public function __construct( $args, $analytics_path, $analytics_version ) {

			// Bail when no analytics entities are registered.
			if ( empty( $args ) ) {
				return;
			}

			$this->entities = $args;

			// Run migration from old "analytics" option names to new "usage" names.
			$this->maybe_migrate_options();

			define( 'BSF_ANALYTICS_VERSION', $analytics_version );
			define( 'BSF_ANALYTICS_URI', $this->get_analytics_url( $analytics_path ) );

			add_action( 'admin_init', array( $this, 'handle_optin_optout' ) );
			add_action( 'admin_init', array( $this, 'option_notice' ) );
			add_action( 'init', array( $this, 'maybe_track_analytics' ), 99 );

			$this->set_actions();

			add_action( 'admin_init', array( $this, 'register_usage_tracking_setting' ) );

			$this->includes();

			$this->load_deactivation_survey_actions();
		}

		/**
		 * Function to load the deactivation survey form actions.
		 *
		 * @since 1.1.6
		 * @return void
		 */
		public function load_deactivation_survey_actions() {

			// If not in a admin area then return it.
			if ( ! is_admin() ) {
				return;
			}

			add_filter( 'uds_survey_vars', array( $this, 'add_slugs_to_uds_vars' ) );
			add_action( 'admin_footer', array( $this, 'load_deactivation_survey_form' ) );
		}

		/**
		 * Setup actions for admin notice style and analytics cron event.
		 *
		 * @since 1.0.4
		 */
		public function set_actions() {

			foreach ( $this->entities as $key => $data ) {
				add_action( 'astra_notice_before_markup_' . $key . '-optin-notice', array( $this, 'enqueue_assets' ) );
				add_action( 'update_option_' . $key . '_usage_optin', array( $this, 'update_analytics_option_callback' ), 10, 3 );
				add_action( 'add_option_' . $key . '_usage_optin', array( $this, 'add_analytics_option_callback' ), 10, 2 );
			}
		}

		/**
		 * BSF Analytics URL
		 *
		 * @param string $analytics_path directory path to analytics library.
		 * @return String URL of bsf-analytics directory.
		 * @since 1.0.0
		 */
		public function get_analytics_url( $analytics_path ) {

			$content_dir_path = wp_normalize_path( WP_CONTENT_DIR );

			$analytics_path = wp_normalize_path( $analytics_path );

			return str_replace( $content_dir_path, content_url(), $analytics_path );
		}

		/**
		 * Enqueue Scripts.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function enqueue_assets() {

			/**
			 * Load unminified if SCRIPT_DEBUG is true.
			 *
			 * Directory and Extensions.
			 */
			$dir_name = ( SCRIPT_DEBUG ) ? 'unminified' : 'minified';
			$file_rtl = ( is_rtl() ) ? '-rtl' : '';
			$css_ext  = ( SCRIPT_DEBUG ) ? '.css' : '.min.css';

			$css_uri = BSF_ANALYTICS_URI . '/assets/css/' . $dir_name . '/style' . $file_rtl . $css_ext;

			wp_enqueue_style( 'bsf-analytics-admin-style', $css_uri, false, BSF_ANALYTICS_VERSION, 'all' );
		}

		/**
		 * Send analytics API call.
		 *
		 * @since 1.0.0
		 */
		public function send() {

			$api_url = BSF_Analytics_Helper::get_api_url();

			wp_remote_post(
				$api_url . 'api/analytics/',
				array(
					'body'     => BSF_Analytics_Stats::instance()->get_stats(),
					'timeout'  => 5,
					'blocking' => false,
				)
			);
		}

		/**
		 * Check if usage tracking is enabled.
		 *
		 * @return bool
		 * @since 1.0.0
		 */
		public function is_tracking_enabled() {

			// Global kill switch — allows hosting providers, compliance plugins,
			// or agency developers to disable all BSF tracking with one filter.
			if ( ! apply_filters( 'bsf_usage_tracking_enabled', true ) ) {
				return false;
			}

			foreach ( $this->entities as $key => $data ) {

				$is_enabled = get_site_option( $key . '_usage_optin', false ) === 'yes' ? true : false;
				$is_enabled = $this->is_white_label_enabled( $key ) ? false : $is_enabled;

				if ( apply_filters( $key . '_tracking_enabled', $is_enabled ) ) {
					return true;
				}
			}

			return false;
		}

		/**
		 * Check if WHITE label is enabled for BSF products.
		 *
		 * @param string $source source of analytics.
		 * @return bool
		 * @since 1.0.0
		 */
		public function is_white_label_enabled( $source ) {

			$options    = apply_filters( $source . '_white_label_options', array() );
			$is_enabled = false;

			if ( is_array( $options ) ) {
				foreach ( $options as $option ) {
					if ( true === $option ) {
						$is_enabled = true;
						break;
					}
				}
			}

			return $is_enabled;
		}

		/**
		 * Get usage doc link with UTM parameters.
		 *
		 * Appends product-specific UTM params to the default usage tracking URL
		 * so we can attribute which plugin's link was clicked.
		 *
		 * @param string $product_key Product key (e.g., 'spectra', 'surerank').
		 * @param string $context     Where the link appears ('notice' or 'settings').
		 * @return string Full URL with UTM parameters.
		 * @since 1.1.23
		 */
		public function get_usage_doc_link( $product_key, $context = 'notice' ) {
			return add_query_arg(
				array(
					'utm_source'   => $product_key,
					'utm_medium'   => $context,
					'utm_campaign' => 'usage_tracking',
				),
				$this->usage_doc_link
			);
		}

		/**
		 * Display admin notice for usage tracking.
		 *
		 * @since 1.0.0
		 */
		public function option_notice() {

			if ( ! current_user_can( 'manage_options' ) ) {
				return;
			}

			if( $this->is_tracking_enabled() ) {
				return; // Don't need to display notice if any of our plugin already have the permission.
			}

			// If the user has opted out of tracking, don't show the notice till 7 days.
			$last_displayed_time = get_site_option( 'bsf_usage_last_displayed_time', false );
			if ( $last_displayed_time && $last_displayed_time > time() - ( 7 * DAY_IN_SECONDS ) ) {
				return; // Don't display the notice if it was displayed recently.
			}

			foreach ( $this->entities as $key => $data ) {

				$time_to_display = isset( $data['time_to_display'] ) ? $data['time_to_display'] : '+24 hours';
				$usage_doc_link  = isset( $data['usage_doc_link'] ) ? $data['usage_doc_link'] : $this->get_usage_doc_link( $key, 'notice' );

				// Don't display the notice if tracking is disabled or White Label is enabled for any of our plugins.
				if ( false !== get_site_option( $key . '_usage_optin', false ) || $this->is_white_label_enabled( $key ) ) {
					continue;
				}

				// Show tracker consent notice after 24 hours from installed time.
				if ( strtotime( $time_to_display, $this->get_analytics_install_time( $key ) ) > time() ) {
					continue;
				}

				/* translators: %s product name */
				$notice_string = sprintf(
					__(
						'<strong>Help shape the future of %1$s.</strong><br><br>Share how you use the plugin so we can build features that matter, fix issues faster, and make smarter decisions.'
					),
					esc_html( $data['product_name'] )
				);
				
				if ( is_multisite() ) {
					$notice_string .= __( 'This will be applicable for all sites from the network.' );
				}

				$language_dir = is_rtl() ? 'rtl' : 'ltr';

				Astra_Notices::add_notice(
					array(
						'id'                         => $key . '-optin-notice',
						'type'                       => '',
						'message'                    => sprintf(
							'<div class="notice-content">
									<div class="notice-heading">
										%1$s
									</div>
									<div class="astra-notices-container">
										<a href="%2$s" class="astra-notices button-primary">
										%3$s
										</a>
										<a href="%4$s" data-repeat-notice-after="%5$s" class="astra-notices button-secondary">
										%6$s
										</a>
									</div>
								</div>',
							/* translators: %s usage doc link */
							sprintf( $notice_string . '<span dir="%1s"> <a href="%2s" target="_blank" rel="noreferrer noopener">%3s</a><span><br><br>', $language_dir, esc_url( $usage_doc_link ), __( 'Learn more.' ) ),
							esc_url(
								add_query_arg(
									array(
										$key . '_analytics_optin' => 'yes',
										$key . '_analytics_nonce' => wp_create_nonce( $key . '_analytics_optin' ),
										'bsf_analytics_source' => $key,
									)
								)
							),
							__( 'Happy to help!' ),
							esc_url(
								add_query_arg(
									array(
										$key . '_analytics_optin' => 'no',
										$key . '_analytics_nonce' => wp_create_nonce( $key . '_analytics_optin' ),
										'bsf_analytics_source' => $key,
									)
								)
							),
							MONTH_IN_SECONDS,
							__( 'Skip' )
						),
						'show_if'                    => true,
						'repeat-notice-after'        => false,
						'priority'                   => 18,
						'display-with-other-notices' => true,
					)
				);

				return;
			}
		}

		/**
		 * Process usage tracking opt out.
		 *
		 * @since 1.0.0
		 */
		public function handle_optin_optout() {

			if ( ! current_user_can( 'manage_options' ) ) {
				return;
			}

			// Verify nonce before accessing any $_GET data.
			// The nonce key is dynamic per entity, so iterate to find a valid one.
			$source = '';
			foreach ( $this->entities as $key => $data ) {
				$nonce_key = $key . '_analytics_nonce';
				if ( isset( $_GET[ $nonce_key ] ) && wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET[ $nonce_key ] ) ), $key . '_analytics_optin' ) ) {
					$source = $key;
					break;
				}
			}

			if ( empty( $source ) ) {
				return;
			}

			$optin_status = isset( $_GET[ $source . '_analytics_optin' ] ) ? sanitize_text_field( wp_unslash( $_GET[ $source . '_analytics_optin' ] ) ) : '';

			if ( 'yes' === $optin_status ) {
				$this->optin( $source );
			} elseif ( 'no' === $optin_status ) {
				$this->optout( $source );
			}

			wp_safe_redirect(
				esc_url_raw(
					remove_query_arg(
						array(
							$source . '_analytics_optin',
							$source . '_analytics_nonce',
							'bsf_analytics_source',
						)
					)
				)
			);
			exit;
		}

		/**
		 * Opt in to usage tracking.
		 *
		 * @param string $source source of analytics.
		 * @since 1.0.0
		 */
		private function optin( $source ) {
			update_site_option( $source . '_usage_optin', 'yes' );
		}

		/**
		 * Opt out of usage tracking.
		 *
		 * @param string $source source of analytics.
		 * @since 1.0.0
		 */
		private function optout( $source ) {
			update_site_option( $source . '_usage_optin', 'no' );
			update_site_option( 'bsf_usage_last_displayed_time', time() );

			// Clear tracking transient immediately so opt-out takes effect right away.
			delete_site_transient( 'bsf_usage_track' );
		}

		/**
		 * Load analytics stat class.
		 *
		 * @since 1.0.0
		 */
		private function includes() {
			require_once __DIR__ . '/classes/class-bsf-analytics-helper.php';
			require_once __DIR__ . '/class-bsf-analytics-stats.php';
			require_once __DIR__ . '/class-bsf-analytics-events.php';

			// Loads all the modules.
			require_once __DIR__ . '/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php';
			require_once __DIR__ . '/modules/utm-analytics.php';
		}

		/**
		 * Migrate old "analytics" options to new "usage" naming.
		 * Copies values to new options and deletes old options.
		 *
		 * @since 1.1.17
		 */
		private function maybe_migrate_options() {
			if ( get_site_option( 'bsf_usage_migrated' ) ) {
				return;
			}

			// Migrate global options.
			$old_last_displayed = get_site_option( 'bsf_analytics_last_displayed_time' );
			if ( false !== $old_last_displayed ) {
				update_site_option( 'bsf_usage_last_displayed_time', $old_last_displayed );
				delete_site_option( 'bsf_analytics_last_displayed_time' );
			}

			// Migrate per-product options.
			foreach ( $this->entities as $key => $data ) {
				$old_optin = get_site_option( $key . '_analytics_optin' );
				if ( false !== $old_optin ) {
					update_site_option( $key . '_usage_optin', $old_optin );
					delete_site_option( $key . '_analytics_optin' );
				}

				$old_install_time = get_site_option( $key . '_analytics_installed_time' );
				if ( false !== $old_install_time ) {
					update_site_option( $key . '_usage_installed_time', $old_install_time );
					delete_site_option( $key . '_analytics_installed_time' );
				}
			}

			// Migrate transient.
			$old_track = get_site_transient( 'bsf_analytics_track' );
			if ( false !== $old_track ) {
				set_site_transient( 'bsf_usage_track', $old_track, 2 * DAY_IN_SECONDS );
				delete_site_transient( 'bsf_analytics_track' );
			}

			update_site_option( 'bsf_usage_migrated', true );
		}

		/**
		 * Register usage tracking option in General settings page.
		 *
		 * @since 1.0.0
		 */
		public function register_usage_tracking_setting() {

			foreach ( $this->entities as $key => $data ) {

				if ( ! apply_filters( $key . '_tracking_enabled', true ) || $this->is_white_label_enabled( $key ) ) {
					return;
				}

				/**
				 * Introducing a new key 'hide_optin_checkbox, which allows individual plugin  to hide optin checkbox
				 * If they are providing providing in-plugin option to manage this option.
				 * from General > Settings page.
				 * 
				 * @since 1.1.14
				 */
				if( ! empty( $data['hide_optin_checkbox'] ) && true === $data['hide_optin_checkbox'] ) {
					continue;
				}

				$usage_doc_link = isset( $data['usage_doc_link'] ) ? $data['usage_doc_link'] : $this->get_usage_doc_link( $key, 'settings' );
				$author         = isset( $data['author'] ) ? $data['author'] : 'Brainstorm Force';

				register_setting(
					'general',             // Options group.
					$key . '_usage_optin',      // Option name/database.
					array( 'sanitize_callback' => array( $this, 'sanitize_option' ) ) // sanitize callback function.
				);

				add_settings_field(
					$key . '-usage-optin',       // Field ID.
					__( 'Usage Tracking' ),       // Field title.
					array( $this, 'render_settings_field_html' ), // Field callback function.
					'general',
					'default',                   // Settings page slug.
					array(
						'type'           => 'checkbox',
						'title'          => $author,
						'name'           => $key . '_usage_optin',
						'label_for'      => $key . '-usage-optin',
						'id'             => $key . '-usage-optin',
						'usage_doc_link' => $usage_doc_link,
					)
				);
			}
		}

		/**
		 * Sanitize Callback Function
		 *
		 * @param bool $input Option value.
		 * @since 1.0.0
		 */
		public function sanitize_option( $input ) {

			if ( ! $input || 'no' === $input ) {
				return 'no';
			}

			return 'yes';
		}

		/**
		 * Print settings field HTML.
		 *
		 * @param array $args arguments to field.
		 * @since 1.0.0
		 */
		public function render_settings_field_html( $args ) {
			$is_checked = ( 'yes' === get_site_option( $args['name'], false ) );
			?>
			<fieldset>
			<label for="<?php echo esc_attr( $args['label_for'] ); ?>">
				<input id="<?php echo esc_attr( $args['id'] ); ?>" type="checkbox" value="1" name="<?php echo esc_attr( $args['name'] ); ?>" <?php checked( $is_checked ); ?>>
				<?php
				/* translators: %s Product title */
				echo esc_html( sprintf( __( 'Help improve %s by sharing non-sensitive usage data — like PHP version and features used.' ), $args['title'] ) );// phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText

				if ( is_multisite() ) {
					esc_html_e( ' This will be applicable for all sites from the network.' );
				}
				?>
			</label>
			<?php
			echo wp_kses_post( sprintf( '<a href="%1s" target="_blank" rel="noreferrer noopener">%2s</a>', esc_url( $args['usage_doc_link'] ), __( 'Learn More.' ) ) );
			?>
			</fieldset>
			<?php
		}

		/**
		 * Get analytics installed time from option.
		 *
		 * @param string $source source of analytics.
		 * @return string $time analytics installed time.
		 * @since 1.0.0
		 */
		private function get_analytics_install_time( $source ) {

			$time = get_site_option( $source . '_usage_installed_time' );

			if ( ! $time ) {
				$time = time();
				update_site_option( $source . '_usage_installed_time', $time );
			}

			return $time;
		}

		/**
		 * Schedule/unschedule cron event on updation of option.
		 *
		 * @param string $old_value old value of option.
		 * @param string $value value of option.
		 * @param string $option Option name.
		 * @since 1.0.0
		 */
		public function update_analytics_option_callback( $old_value, $value, $option ) {
			if ( is_multisite() ) {
				$this->add_option_to_network( $option, $value );
			}
		}

		/**
		 * Analytics option add callback.
		 *
		 * @param string $option Option name.
		 * @param string $value value of option.
		 * @since 1.0.0
		 */
		public function add_analytics_option_callback( $option, $value ) {
			if ( is_multisite() ) {
				$this->add_option_to_network( $option, $value );
			}
		}

		/**
		 * Send analytics track event if tracking is enabled.
		 *
		 * @since 1.0.0
		 */
		public function maybe_track_analytics() {

			if ( ! $this->is_tracking_enabled() ) {
				return;
			}

			$analytics_track = get_site_transient( 'bsf_usage_track' );

			// If the last data sent is 2 days old i.e. transient is expired.
			if ( ! $analytics_track ) {
				$this->send();
				set_site_transient( 'bsf_usage_track', true, 2 * DAY_IN_SECONDS );
			}
		}

		/**
		 * Save analytics option to network.
		 *
		 * @param string $option name of option.
		 * @param string $value value of option.
		 * @since 1.0.0
		 */
		public function add_option_to_network( $option, $value ) {

			// If action coming from general settings page.
			if ( isset( $_POST['option_page'] ) && 'general' === sanitize_text_field( wp_unslash( $_POST['option_page'] ) ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing

				if ( get_site_option( $option ) ) {
					update_site_option( $option, $value );
				} else {
					add_site_option( $option, $value );
				}
			}
		}

		/**
		 * Function to load the deactivation survey form on the admin footer.
		 *
		 * This function checks if the Deactivation_Survey_Feedback class exists and if so, it loads the deactivation survey form.
		 * The form is configured with specific settings for plugin. Example: For CartFlows, including the source, logo, plugin slug, title, support URL, description, and the screen on which to show the form.
		 *
		 * @since 1.1.6
		 * @return void
		 */
		public function load_deactivation_survey_form() {

			if ( class_exists( 'Deactivation_Survey_Feedback' ) ) {
				foreach ( $this->entities as $key => $data ) {
					// If the deactivation_survey info in available then only add the form.
					if ( ! empty( $data['deactivation_survey'] ) && is_array( $data['deactivation_survey'] ) ) {
						foreach ( $data['deactivation_survey'] as $key => $survey_args ) {
							Deactivation_Survey_Feedback::show_feedback_form(
								$survey_args
							);
						}
					}
				}
			}
		}

		/**
		 * Function to add plugin slugs to Deactivation Survey vars for JS operations.
		 *
		 * @param array $vars UDS vars array.
		 * @return array Modified UDS vars array with plugin slugs.
		 * @since 1.1.6
		 */
		public function add_slugs_to_uds_vars( $vars ) {
			foreach ( $this->entities as $key => $data ) {
				if ( ! empty( $data['deactivation_survey'] ) && is_array( $data['deactivation_survey'] ) ) {
					foreach ( $data['deactivation_survey'] as $key => $survey_args ) {
						$vars['_plugin_slug'] = isset( $vars['_plugin_slug'] ) ? array_merge( $vars['_plugin_slug'], array( $survey_args['plugin_slug'] ) ) : array( $survey_args['plugin_slug'] );
					}
				}
			}

			return $vars;
		}
	}
}
PK���\'O4�##:admin/bsf-analytics/classes/class-bsf-analytics-helper.phpnu�[���<?php
/**
 * BSF analytics Helper Class File.
 *
 * @package bsf-analytics
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'BSF_Analytics_Helper' ) ) {
	/**
	 * BSF analytics stat class.
	 */
	class BSF_Analytics_Helper {

		/**
		 * Check is error in the received response.
		 *
		 * @param object $response Received API Response.
		 * @return array $result Error result.
		 */
		public static function is_api_error( $response ) {

			$result = array(
				'error'         => false,
				'error_message' => __( 'Oops! Something went wrong. Please refresh the page and try again.' ),
				'error_code'    => 0,
			);

			if ( is_wp_error( $response ) ) {
				$result['error']         = true;
				$result['error_message'] = $response->get_error_message();
				$result['error_code']    = $response->get_error_code();
			} elseif ( ! empty( wp_remote_retrieve_response_code( $response ) ) && ! in_array( wp_remote_retrieve_response_code( $response ), array( 200, 201, 204 ), true ) ) {
				$result['error']         = true;
				$result['error_message'] = wp_remote_retrieve_response_message( $response );
				$result['error_code']    = wp_remote_retrieve_response_code( $response );
			}

			return $result;
		}

		/**
		 * Get API headers
		 *
		 * @since 1.1.6
		 * @return array<string, string>
		 */
		public static function get_api_headers() {
			return array(
				'Content-Type' => 'application/json',
				'Accept'       => 'application/json',
			);
		}

        /**
		 * Get API URL for sending analytics.
		 *
		 * @return string API URL.
		 * @since 1.0.0
		 */
		public static function get_api_url() {
			return defined( 'BSF_ANALYTICS_API_BASE_URL' ) ? BSF_ANALYTICS_API_BASE_URL : 'https://analytics.brainstormforce.com/';
		}
        
        /**
		 * Check if the current screen is allowed for the survey.
		 *
		 * This function checks if the current screen is one of the allowed screens for displaying the survey.
		 * It uses the `get_current_screen` function to get the current screen information and compares it with the list of allowed screens.
		 *
		 * @since 1.1.6
		 * @return bool True if the current screen is allowed, false otherwise.
		 */
		public static function is_allowed_screen() {

			// This filter allows to dynamically modify the list of allowed screens for the survey.
			$allowed_screens = apply_filters( 'uds_survey_allowed_screens', array( 'plugins' ) );

			$current_screen = get_current_screen();

			// Check if $current_screen is a valid object before accessing its properties.
			if ( ! is_object( $current_screen ) ) {
				return false; // Return false if current screen is not valid.
			}

			$screen_id = $current_screen->id;

			if ( ! empty( $screen_id ) && in_array( $screen_id, $allowed_screens, true ) ) {
				return true;
			}

			return false;
		}
	}
}PK���\���qq7admin/bsf-analytics/assets/css/unminified/style-rtl.cssnu�[���[ID*="-optin-notice"] {
    padding: 1px 12px;
    border-right-color: #007cba;
}

[ID*="-optin-notice"] .notice-container {
    padding-top: 10px;
    padding-bottom: 12px;
}

[ID*="-optin-notice"] .notice-content {
    margin: 0;
}

[ID*="-optin-notice"] .notice-heading {
    padding: 0 0 12px 20px;
}

[ID*="-optin-notice"] .button-primary {
    margin-left: 5px;
}PK���\���qq3admin/bsf-analytics/assets/css/unminified/style.cssnu�[���[ID*="-optin-notice"] {
    padding: 1px 12px;
    border-left-color: #007cba;
}

[ID*="-optin-notice"] .notice-container {
    padding-top: 10px;
    padding-bottom: 12px;
}

[ID*="-optin-notice"] .notice-content {
    margin: 0;
}

[ID*="-optin-notice"] .notice-heading {
    padding: 0 20px 12px 0;
}

[ID*="-optin-notice"] .button-primary {
    margin-right: 5px;
}PK���\�m�009admin/bsf-analytics/assets/css/minified/style-rtl.min.cssnu�[���[ID*="-optin-notice"]{padding:1px 12px;border-right-color:#007cba}[ID*="-optin-notice"] .notice-container{padding-top:10px;padding-bottom:12px}[ID*="-optin-notice"] .notice-content{margin:0}[ID*="-optin-notice"] .notice-heading{padding:0 0 12px 20px}[ID*="-optin-notice"] .button-primary{margin-left:5px}PK���\���[005admin/bsf-analytics/assets/css/minified/style.min.cssnu�[���[ID*="-optin-notice"]{padding:1px 12px;border-left-color:#007cba}[ID*="-optin-notice"] .notice-container{padding-top:10px;padding-bottom:12px}[ID*="-optin-notice"] .notice-content{margin:0}[ID*="-optin-notice"] .notice-heading{padding:0 20px 12px 0}[ID*="-optin-notice"] .button-primary{margin-right:5px}PK���\䉌�zzadmin/class-hfe-admin.phpnu�[���<?php
/**
 * Entry point for the plugin. Checks if Elementor is installed and activated and loads it's own files and actions.
 *
 * @package  header-footer-elementor
 */

use HFE\Lib\Astra_Target_Rules_Fields;
use HFE\WidgetsManager\Base\HFE_Helper;

defined( 'ABSPATH' ) || exit;

/**
 * HFE_Admin setup
 *
 * @since 1.0
 */
class HFE_Admin {

	/**
	 * Instance of HFE_Admin
	 *
	 * @var HFE_Admin
	 */
	private static $_instance = null;

	/**
	 * Instance of Elemenntor Frontend class.
	 *
	 * @var object \Elementor\Frontend()
	 */
	private static $elementor_instance;

	/**
	 * Instance of HFE_Admin
	 *
	 * @return HFE_Admin Instance of HFE_Admin
	 */
	public static function instance() {
		if ( ! isset( self::$_instance ) ) {
			self::$_instance = new self();
		}

		add_action( 'elementor/init', __CLASS__ . '::load_admin', 0 );

		return self::$_instance;
	}

	/**
	 * Load the icons style in editor.
	 *
	 * @since 1.3.0
	 * @access public
	 * @return void
	 */
	public static function load_admin() {
		add_action( 'elementor/editor/after_enqueue_styles', __CLASS__ . '::hfe_admin_enqueue_scripts' );
		add_action( 'admin_head', __CLASS__ . '::hfe_admin_enqueue_scripts' );      
		add_action( 'elementor/editor/before_enqueue_scripts', __CLASS__ . '::hfe_enqueue_editor_bar_script' );      
	}

	/**
	 * Enqueue admin scripts
	 *
	 * @since 1.3.0
	 * @param string $hook Current page hook.
	 * @access public
	 * @return void
	 */
	public static function hfe_admin_enqueue_scripts( $hook ) {

		// Register the icons styles.
		wp_register_style(
			'hfe-style',
			HFE_URL . 'assets/css/style.css',
			[],
			HFE_VER
		);

		wp_enqueue_style( 'hfe-style' );

	}

	/**
	 * Enqueue editor bar script for Elementor editor only
	 *
	 * @since 2.6.1
	 * @access public
	 * @return void
	 */
	public static function hfe_enqueue_editor_bar_script() {
		wp_register_script( 
			'hfe-elementor', 
			HFE_URL . 'assets/js/hfe-elementor-editor-bar-simple.js', 
			[ 'jquery', 'wp-data', 'wp-i18n' ], 
			HFE_VER, 
			false 
		);
		
		// Pass UAE Pro status and icon URL to JavaScript
		$plugin_file = 'ultimate-elementor/ultimate-elementor.php';
		$is_uae_pro_active =  ! file_exists( WP_PLUGIN_DIR . '/' . $plugin_file ) && ! HFE_Helper::is_pro_active() ;
		wp_localize_script( 'hfe-elementor', 'hfeEditorConfig', array(
			'isUAEPro' => ! $is_uae_pro_active,
			'iconUrl'  => HFE_URL . 'assets/images/settings/logo-white.svg',
			'adminUrl' => admin_url( 'admin.php?page=hfe#dashboard' ),
			'strings'  => array(
				'headerFooterBuilder' => __( 'Header Footer Builder', 'header-footer-elementor' ),
			),
		));
		
		wp_enqueue_script( 'hfe-elementor' );
	}

	/**
	 * Constructor
	 *
	 * @return void
	 */
	private function __construct() {
		add_action( 'init', [ $this, 'header_footer_posttype' ] );
		if ( is_admin() && current_user_can( 'manage_options' ) ) {
			add_action( 'admin_menu', [ $this, 'register_admin_menu' ], 50 );
		}

		$is_elementor_callable = ( defined( 'ELEMENTOR_VERSION' ) && is_callable( 'Elementor\Plugin::instance' ) ) ? true : false;
		if ( $is_elementor_callable ) {
			self::$elementor_instance = Elementor\Plugin::instance();
		}

		add_action( 'add_meta_boxes', [ $this, 'ehf_register_metabox' ] );
		add_action( 'save_post', [ $this, 'ehf_save_meta' ] );
		add_action( 'admin_notices', [ $this, 'location_notice' ] );
		add_action( 'template_redirect', [ $this, 'block_template_frontend' ] );
		add_filter( 'single_template', [ $this, 'load_canvas_template' ] );
		add_filter( 'manage_elementor-hf_posts_columns', [ $this, 'set_shortcode_columns' ] );
		add_action( 'manage_elementor-hf_posts_custom_column', [ $this, 'render_shortcode_column' ], 10, 2 );
		if ( defined( 'ELEMENTOR_PRO_VERSION' ) && ELEMENTOR_PRO_VERSION > 2.8 ) {
			add_action( 'elementor/editor/footer', [ $this, 'register_hfe_epro_script' ], 99 );
		}

		add_action( 'admin_notices', [ $this, 'hide_admin_notices' ], 1 );
		add_action( 'all_admin_notices', [ $this, 'hide_admin_notices' ], 1 );

		if ( is_admin() ) {
			add_action( 'manage_elementor-hf_posts_custom_column', [ $this, 'column_content' ], 10, 2 );
			add_filter( 'manage_elementor-hf_posts_columns', [ $this, 'column_headings' ] );
			require_once HFE_DIR . 'admin/class-hfe-addons-actions.php';
		}
		add_action( 'elementor/editor/footer', [ $this, 'print_permalink_clear_notice' ] );
		add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'enqueue_permalink_clear_notice_js' ] );
		add_action( 'elementor/editor/before_enqueue_styles', [ $this, 'enqueue_permalink_clear_notice_css' ] );
		// Hook into Elementor's editor styles
		add_action('elementor/editor/before_enqueue_scripts', [$this, 'enqueue_editor_scripts']);
		if ( 'yes' === get_option( 'uae_usage_optin', false ) ) {
			add_action( 'init', array( $this, 'hfe_schedule_usage_cron' ) );
			add_action( 'hfe_widgets_usage_cron', array( $this, 'hfe_check_widgets_data_usage' ) );
		}
	}

	/**
	 * Enqueuing Promotion widget scripts.
	 */
	public function enqueue_editor_scripts() {
        wp_enqueue_script(
            'uae-pro-promotion',
	    	HFE_URL . 'build/promotion-widget.js',
           [ 'jquery', 'wp-element', 'wp-dom-ready' ],
            HFE_VER,
           true
	   );
    }
	
	/**
	 * Schedule the daily cron event for widget usage data collection.
	 *
	 * @since 2.8.5
	 * @return void
	 */
	public function hfe_schedule_usage_cron() {
		if ( ! wp_next_scheduled( 'hfe_widgets_usage_cron' ) ) {
			wp_schedule_event( time(), 'daily', 'hfe_widgets_usage_cron' );
		}
	}

	/**
	 * Collect widgets usage data via WP-Cron.
	 *
	 * Runs in a background cron context instead of on every page load,
	 * preventing timeouts on content-heavy sites.
	 *
	 * @since 2.8.5
	 */
	public function hfe_check_widgets_data_usage() {
		$transient_key = 'uae_widgets_usage_data';
		$widgets_usage = get_transient( $transient_key );

		$needs_widget_refresh = false === $widgets_usage || false === get_option( 'uae_widgets_usage_data_option' );
		$needs_kpi_init       = false === get_option( 'hfe_kpi_daily_snapshots', false );

		if ( $needs_widget_refresh || $needs_kpi_init ) {
			$filtered_widgets_usage = HFE_Helper::get_used_widget();
			set_transient( $transient_key, $filtered_widgets_usage, DAY_IN_SECONDS );
			update_option( 'uae_widgets_usage_data_option', $filtered_widgets_usage );
			$this->save_kpi_snapshot( $filtered_widgets_usage );
		}
	}

	/**
	 * Save a daily KPI snapshot alongside widget usage refresh.
	 *
	 * Computes aggregated metrics from widget usage and template data,
	 * stores them keyed by today's date, and keeps only the last 3 days.
	 *
	 * @since 2.8.4
	 * @param array $widgets_usage Filtered widget usage data.
	 * @return void
	 */
	private function save_kpi_snapshot( $widgets_usage ) {
		$today = current_time( 'Y-m-d' );

		// Total published templates.
		$total_templates = $this->get_total_template_count();

		// Widget metrics.
		$total_hfe_widget_instances = 0;

		if ( is_array( $widgets_usage ) ) {
			foreach ( $widgets_usage as $slug => $count ) {
				$total_hfe_widget_instances += (int) $count;
			}
		}

		$unique_widgets_used = is_array( $widgets_usage ) ? count( array_filter( $widgets_usage ) ) : 0;

		$snapshot = [
			'numeric_values' => [
				'total_templates'            => $total_templates,
				'total_hfe_widget_instances' => $total_hfe_widget_instances,
				'unique_widgets_used'        => $unique_widgets_used,
			],
		];

		// Read existing snapshots, add today's, keep last 3 days.
		$snapshots = get_option( 'hfe_kpi_daily_snapshots', [] );
		if ( ! is_array( $snapshots ) ) {
			$snapshots = [];
		}

		$snapshots[ $today ] = $snapshot;
		krsort( $snapshots );
		$snapshots = array_slice( $snapshots, 0, 3, true );

		update_option( 'hfe_kpi_daily_snapshots', $snapshots, false );
	}

	/**
	 * Get count of published HFE templates.
	 *
	 * @since 2.8.4
	 * @return int Total published template count.
	 */
	private function get_total_template_count() {
		$posts = get_posts(
			[
				'post_type'   => 'elementor-hf',
				'post_status' => 'publish',
				'numberposts' => -1,
				'fields'      => 'ids',
			]
		);

		return count( $posts );
	}

	/**
	 * Enqueue notice style based on option and posttype.
	 *
	 * @since 2.2.1
	 */
	public function enqueue_permalink_clear_notice_css() {

		if ( get_user_meta( get_current_user_id(), 'hfe_permalink_notice_option', true ) === 'notice-dismissed' ) {
			return;
		}
	
		if(isset(self::$elementor_instance)){
			$current_post_type = get_post_type( self::$elementor_instance->editor->get_post_id() );
			
			if ( $current_post_type !== 'elementor-hf' ) {
				return;
			}
		}
	
		wp_enqueue_style(
			'hfe-permalink-clear-notice',
			HFE_URL . 'inc/widgets-css/permalink-clear-notice.css',
			[],
			HFE_VER
		);
	}

	/**
	 * Enqueue and localize notice script based on option and posttype.
	 *
	 * @since 2.2.1
	 */
	public function enqueue_permalink_clear_notice_js() {

		if ( get_user_meta( get_current_user_id(), 'hfe_permalink_notice_option', true ) === 'notice-dismissed' ) {
			return;
		}
		
		if(isset(self::$elementor_instance)){
			$current_post_type = get_post_type( self::$elementor_instance->editor->get_post_id() );

			if ( $current_post_type !== 'elementor-hf' ) {
				return;
			}
		}

		wp_enqueue_script(
			'hfe-permalink-clear-notice',
			HFE_URL . 'inc/js/permalink-clear-notice.js',
			[ 'jquery' ],
			HFE_VER
		);
	
		wp_localize_script(
			'hfe-permalink-clear-notice',
			'hfePermalinkClearNotice',
			[
				'ajaxurl' => admin_url( 'admin-ajax.php' ),
				'nonce'   => wp_create_nonce( 'hfe_permalink_clear_notice_nonce' ),
			]
		);
	}

	/**
	 * Creating notice for permaliink reset in Elementor Editor.
	 * 
	 * @since 2.2.1
	 */
	public function print_permalink_clear_notice() {
		if ( is_admin() ) {
			if ( get_user_meta( get_current_user_id(), 'hfe_permalink_notice_option', true ) === 'notice-dismissed' ) {
				return;
			}

			if(isset(self::$elementor_instance)){
				$current_post_type = get_post_type( self::$elementor_instance->editor->get_post_id() );
				
				if ( $current_post_type !== 'elementor-hf' ) {
					return;
				}
			}
?>
			<div class="uae-permalink-clear-notice" id="uae-permalink-clear-notice">
				<header>
					<i class="eicon-warning"></i>
					<h2><?php echo esc_html__( 'Important Notice:', 'header-footer-elementor' ); ?></h2>
					<button class="uae-permalink-notice-close"><i class="eicon-close"></i></button>
				</header>
				<div class="uae-permalink-notice-content">
					<b><?php echo esc_html__( 'Can\'t edit your header or footer?', 'header-footer-elementor' ); ?></b><br/>
					<?php echo esc_html__( 'Try clearing your cache or resetting permalinks (Settings > Permalinks > Save Changes).', 'header-footer-elementor' ); ?>
					<a href="<?php echo esc_url( 'https://ultimateelementor.com/docs/elementor-header-footer-template-not-loading-or-stuck-on-loading/' ); ?>" target="_blank"><?php echo esc_html_e( 'Learn More', 'header-footer-elementor' ); ?></a>
					<br>
					<?php if(!is_multisite()){ ?>
						<button class="uae-permalink-flush-btn" type="button">
							<span class="uae-btn-main-text"><?php echo esc_html__( 'Flush Permalink', 'header-footer-elementor' ); ?></span>
							<span class="uae-notice-loader"></span>
						</button>
					<?php } ?>
				</div>
			</div>
<?php 
		} 
	}


	/**
	 * Hide admin notices on the custom settings page.
	 *
	 * @since 2.2.1
	 * @return void
	 */
	public static function hide_admin_notices() {
		$screen                = get_current_screen();
		$pages_to_hide_notices = [
			'edit-elementor-hf',     // Edit screen for elementor-hf post type.
			'elementor-hf',          // New post screen for elementor-hf post type.
		];

		if ( in_array( $screen->id, $pages_to_hide_notices ) || 'toplevel_page_hfe' === $screen->id ) {
			remove_all_actions( 'admin_notices' );
			remove_all_actions( 'all_admin_notices' );
		}
	}
	
	/**
	 * Script for Elementor Pro full site editing support.
	 *
	 * @since 1.4.0
	 *
	 * @return void
	 */
	public function register_hfe_epro_script() {
		$ids_array = [
			[
				'id'    => get_hfe_header_id(),
				'value' => 'Header',
			],
			[
				'id'    => get_hfe_footer_id(),
				'value' => 'Footer',
			],
			[
				'id'    => hfe_get_before_footer_id(),
				'value' => 'Before Footer',
			],
		];

		wp_enqueue_script( 'hfe-elementor-pro-compatibility', HFE_URL . 'inc/js/hfe-elementor-pro-compatibility.js', [ 'jquery' ], HFE_VER, true );

		wp_localize_script(
			'hfe-elementor-pro-compatibility',
			'hfe_admin',
			[
				'ids_array' => wp_json_encode( $ids_array ),
			]
		);
	}

	/**
	 * Adds or removes list table column headings.
	 *
	 * @param array $columns Array of columns.
	 * @return array
	 */
	public function column_headings( $columns ) {
		unset( $columns['date'] );

		$columns['elementor_hf_display_rules'] = __( 'Display Rules', 'header-footer-elementor' );
		$columns['date']                       = __( 'Date', 'header-footer-elementor' );

		return $columns;
	}

	/**
	 * Adds the custom list table column content.
	 *
	 * @since 1.2.0
	 * @param array $column Name of column.
	 * @param int   $post_id Post id.
	 * @return void
	 */
	public function column_content( $column, $post_id ) {

		if ( 'elementor_hf_display_rules' === $column ) {

			$locations = get_post_meta( $post_id, 'ehf_target_include_locations', true );
			if ( ! empty( $locations ) ) {
				echo '<div class="ast-advanced-headers-location-wrap" style="margin-bottom: 5px;">';
				echo '<strong>Display: </strong>';
				$this->column_display_location_rules( $locations );
				echo '</div>';
			}

			$locations = get_post_meta( $post_id, 'ehf_target_exclude_locations', true );
			if ( ! empty( $locations ) ) {
				echo '<div class="ast-advanced-headers-exclusion-wrap" style="margin-bottom: 5px;">';
				echo '<strong>Exclusion: </strong>';
				$this->column_display_location_rules( $locations );
				echo '</div>';
			}

			$users = get_post_meta( $post_id, 'ehf_target_user_roles', true );
			if ( isset( $users ) && is_array( $users ) ) {
				if ( isset( $users[0] ) && ! empty( $users[0] ) ) {
					$user_label = [];
					foreach ( $users as $user ) {
						$user_label[] = Astra_Target_Rules_Fields::get_user_by_key( $user );
					}
					echo '<div class="ast-advanced-headers-users-wrap">';
					echo '<strong>Users: </strong>';
					echo esc_html( join( ', ', $user_label ) );
					echo '</div>';
				}
			}
		}
	}

	/**
	 * Get Markup of Location rules for Display rule column.
	 *
	 * @param array $locations Array of locations.
	 * @return void
	 */
	public function column_display_location_rules( $locations ) {

		$location_label = [];
		if ( is_array( $locations ) && is_array( $locations['rule'] ) && isset( $locations['rule'] ) ) {
			$index = array_search( 'specifics', $locations['rule'] );
			if ( false !== $index && ! empty( $index ) ) {
				unset( $locations['rule'][ $index ] );
			}
		}

		if ( isset( $locations['rule'] ) && is_array( $locations['rule'] ) ) {
			foreach ( $locations['rule'] as $location ) {
				$location_label[] = Astra_Target_Rules_Fields::get_location_by_key( $location );
			}
		}
		if ( isset( $locations['specific'] ) && is_array( $locations['specific'] ) ) {
			foreach ( $locations['specific'] as $location ) {
				$location_label[] = Astra_Target_Rules_Fields::get_location_by_key( $location );
			}
		}

		echo esc_html( join( ', ', $location_label ) );
	}


	/**
	 * Register Post type for Elementor Header & Footer Builder templates
	 *
	 * @return void
	 */
	public function header_footer_posttype() {

		$setting_location = $this->is_pro_active() ? 'uaepro' : 'hfe';
		
		$labels = [
			'name'               => esc_html__( 'Elementor Header & Footer Builder', 'header-footer-elementor' ),
			'singular_name'      => esc_html__( 'Elementor Header & Footer Builder', 'header-footer-elementor' ),
			'menu_name'          => esc_html__( 'Elementor Header & Footer Builder', 'header-footer-elementor' ),
			'name_admin_bar'     => esc_html__( 'Elementor Header & Footer Builder', 'header-footer-elementor' ),
			'add_new'            => esc_html__( 'Add New', 'header-footer-elementor' ),
			'add_new_item'       => esc_html__( 'Add New', 'header-footer-elementor' ),
			'new_item'           => esc_html__( 'New Template', 'header-footer-elementor' ),
			'edit_item'          => esc_html__( 'Edit Template', 'header-footer-elementor' ),
			'view_item'          => esc_html__( 'View Template', 'header-footer-elementor' ),
			'all_items'          => esc_html__( 'View All', 'header-footer-elementor' ),
			'search_items'       => esc_html__( 'Search Templates', 'header-footer-elementor' ),
			'parent_item_colon'  => esc_html__( 'Parent Templates:', 'header-footer-elementor' ),
			'not_found'          => esc_html__( 'No Templates found.', 'header-footer-elementor' ),
			'not_found_in_trash' => esc_html__( 'No Templates found in Trash.', 'header-footer-elementor' ),
		];

		$args = [
			'labels'              => $labels,
			'public'              => true,
			'show_ui'             => true,
			'show_in_menu'        => false,
			'show_in_nav_menus'   => false,
			'exclude_from_search' => true,
			'capability_type'     => 'post',
			'hierarchical'        => false,
			'menu_icon'           => 'dashicons-editor-kitchensink',
			'supports'            => [ 'title', 'thumbnail', 'elementor' ],
			'menu_position'       => 5,
			'capabilities'        => [
				'edit_post'              => 'manage_options',
				'read_post'              => 'read',
				'delete_post'            => 'manage_options',
				'edit_posts'             => 'manage_options',
				'edit_others_posts'      => 'manage_options',
				'publish_posts'          => 'manage_options',
				'read_private_posts'     => 'manage_options',
				'delete_posts'           => 'manage_options',
				'delete_others_posts'    => 'manage_options',
				'delete_private_posts'   => 'manage_options',
				'delete_published_posts' => 'manage_options',
				'create_posts'           => 'manage_options',
			],
		];

		register_post_type( 'elementor-hf', $args );
	}

	/**
	 * Register the admin menu for Elementor Header & Footer Builder.
	 *
	 * @since  1.0.0
	 * @since  1.0.1
	 *         Moved the menu under Appearance -> Elementor Header & Footer Builder
	 * @return void
	 */
	public function register_admin_menu() {

		$setting_location = $this->is_pro_active() ? 'uaepro' : 'hfe';

		add_submenu_page(
			$setting_location,
			__( 'Create New', 'header-footer-elementor' ),
			__( 'Create New', 'header-footer-elementor' ),
			'edit_pages',
			'post-new.php?post_type=elementor-hf',
			'',
			1
		);

		add_submenu_page(
			$setting_location,
			__( 'Header/Footer Builder', 'header-footer-elementor' ),
			__( 'Header & Footer', 'header-footer-elementor' ),
			'edit_pages',
			'edit.php?post_type=elementor-hf',
			'',
			2
		);
	}


	/**
	 * Check if UAE Pro is active.
	 *
	 * @return bool True if UAE Pro is active, false otherwise.
	 */
	public function is_pro_active() {
		if ( is_plugin_active( 'ultimate-elementor/ultimate-elementor.php' ) && defined( 'UAEL_PRO' ) && UAEL_PRO ) {
			return true;
		}
		return false;
	}

	/**
	 * Register meta box(es).
	 *
	 * @return void
	 */
	public function ehf_register_metabox() {
		add_meta_box(
			'ehf-meta-box',
			__( 'Elementor Header & Footer Builder Options', 'header-footer-elementor' ),
			[
				$this,
				'efh_metabox_render',
			],
			'elementor-hf',
			'normal',
			'high'
		);
	}

	/**
	 * Render Meta field.
	 *
	 * @param array $post Currennt post object which is being displayed.
	 * @return void
	 */
	public function efh_metabox_render( $post ) {
		$values            = get_post_custom( $post->ID );
		$template_type     = isset( $values['ehf_template_type'] ) ? esc_attr( sanitize_text_field( $values['ehf_template_type'][0] ) ) : '';
		$display_on_canvas = isset( $values['display-on-canvas-template'] ) ? true : false;

		// We'll use this nonce field later on when saving.
		wp_nonce_field( 'ehf_meta_nounce', 'ehf_meta_nounce' );
		?>
		<table class="hfe-options-table widefat">
			<tbody>
				<tr class="hfe-options-row type-of-template">
					<td class="hfe-options-row-heading">
						<label for="ehf_template_type"><?php esc_html_e( 'Type of Template', 'header-footer-elementor' ); ?></label>
					</td>
					<td class="hfe-options-row-content">
						<select name="ehf_template_type" id="ehf_template_type">
							<option value="" <?php selected( $template_type, '' ); ?>><?php esc_html_e( 'Select Option', 'header-footer-elementor' ); ?></option>
							<option value="type_header" <?php selected( $template_type, 'type_header' ); ?>><?php esc_html_e( 'Header', 'header-footer-elementor' ); ?></option>
							<option value="type_before_footer" <?php selected( $template_type, 'type_before_footer' ); ?>><?php esc_html_e( 'Before Footer', 'header-footer-elementor' ); ?></option>
							<option value="type_footer" <?php selected( $template_type, 'type_footer' ); ?>><?php esc_html_e( 'Footer', 'header-footer-elementor' ); ?></option>
							<option value="custom" <?php selected( $template_type, 'custom' ); ?>><?php esc_html_e( 'Custom Block', 'header-footer-elementor' ); ?></option>
						</select>
					</td>
				</tr>

				<?php $this->display_rules_tab(); ?>
				<tr class="hfe-options-row hfe-shortcode">
					<td class="hfe-options-row-heading">
						<label for="ehf_template_type"><?php esc_html_e( 'Shortcode', 'header-footer-elementor' ); ?></label>
						<i class="hfe-options-row-heading-help dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Copy this shortcode and paste it into your post, page, or text widget content.', 'header-footer-elementor' ); ?>">
						</i>
					</td>
					<td class="hfe-options-row-content">
						<span class="hfe-shortcode-col-wrap">
							<input type="text" onfocus="this.select();" readonly="readonly" value="[hfe_template id='<?php echo esc_attr( $post->ID ); ?>']" class="hfe-large-text code">
						</span>
					</td>
				</tr>
				<tr class="hfe-options-row enable-for-canvas">
					<td class="hfe-options-row-heading">
						<label for="display-on-canvas-template">
							<?php esc_html_e( 'Enable Layout for Elementor Canvas Template?', 'header-footer-elementor' ); ?>
						</label>
						<i class="hfe-options-row-heading-help dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Enabling this option will display this layout on pages using Elementor Canvas Template.', 'header-footer-elementor' ); ?>"></i>
					</td>
					<td class="hfe-options-row-content">
						<input type="checkbox" id="display-on-canvas-template" name="display-on-canvas-template" value="1" <?php checked( $display_on_canvas, true ); ?> />
					</td>
				</tr>
			</tbody>
		</table>
		<?php
	}

	/**
	 * Markup for Display Rules Tabs.
	 *
	 * @since  1.0.0
	 * @return void
	 */
	public function display_rules_tab() {
		// Load Target Rule assets.
		Astra_Target_Rules_Fields::get_instance()->admin_styles();

		$include_locations = get_post_meta( get_the_id(), 'ehf_target_include_locations', true );
		$exclude_locations = get_post_meta( get_the_id(), 'ehf_target_exclude_locations', true );
		$users             = get_post_meta( get_the_id(), 'ehf_target_user_roles', true );
		?>
		<tr class="bsf-target-rules-row hfe-options-row">
			<td class="bsf-target-rules-row-heading hfe-options-row-heading">
				<label><?php esc_html_e( 'Display On', 'header-footer-elementor' ); ?></label>
				<i class="bsf-target-rules-heading-help dashicons dashicons-editor-help"
					title="<?php echo esc_attr__( 'Add locations for where this template should appear.', 'header-footer-elementor' ); ?>"></i>
			</td>
			<td class="bsf-target-rules-row-content hfe-options-row-content">
				<?php
				Astra_Target_Rules_Fields::target_rule_settings_field(
					'bsf-target-rules-location',
					[
						'title'          => __( 'Display Rules', 'header-footer-elementor' ),
						'value'          => '[{"type":"basic-global","specific":null}]',
						'tags'           => 'site,enable,target,pages',
						'rule_type'      => 'display',
						'add_rule_label' => __( 'Add Display Rule', 'header-footer-elementor' ),
					],
					$include_locations
				);
				?>
			</td>
		</tr>
		<tr class="bsf-target-rules-row hfe-options-row">
			<td class="bsf-target-rules-row-heading hfe-options-row-heading">
				<label><?php esc_html_e( 'Do Not Display On', 'header-footer-elementor' ); ?></label>
				<i class="bsf-target-rules-heading-help dashicons dashicons-editor-help"
					title="<?php echo esc_attr__( 'Add locations for where this template should not appear.', 'header-footer-elementor' ); ?>"></i>
			</td>
			<td class="bsf-target-rules-row-content hfe-options-row-content">
				<?php
				Astra_Target_Rules_Fields::target_rule_settings_field(
					'bsf-target-rules-exclusion',
					[
						'title'          => __( 'Exclude On', 'header-footer-elementor' ),
						'value'          => '[]',
						'tags'           => 'site,enable,target,pages',
						'add_rule_label' => __( 'Add Exclusion Rule', 'header-footer-elementor' ),
						'rule_type'      => 'exclude',
					],
					$exclude_locations
				);
				?>
			</td>
		</tr>
		<tr class="bsf-target-rules-row hfe-options-row">
			<td class="bsf-target-rules-row-heading hfe-options-row-heading">
				<label><?php esc_html_e( 'User Roles', 'header-footer-elementor' ); ?></label>
				<i class="bsf-target-rules-heading-help dashicons dashicons-editor-help" title="<?php echo esc_attr__( 'Display custom template based on user role.', 'header-footer-elementor' ); ?>"></i>
			</td>
			<td class="bsf-target-rules-row-content hfe-options-row-content">
				<?php
				Astra_Target_Rules_Fields::target_user_role_settings_field(
					'bsf-target-rules-users',
					[
						'title'          => __( 'Users', 'header-footer-elementor' ),
						'value'          => '[]',
						'tags'           => 'site,enable,target,pages',
						'add_rule_label' => __( 'Add User Rule', 'header-footer-elementor' ),
					],
					$users
				);
				?>
			</td>
		</tr>
		<?php
	}

	/**
	 * Save meta field.
	 *
	 * @param  POST $post_id Currennt post object which is being displayed.
	 *
	 * @return Void
	 */
	public function ehf_save_meta( $post_id ) {

		// Bail if we're doing an auto save.
		if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
			return;
		}

		// if our nonce isn't there, or we can't verify it, bail.
		if ( ! isset( $_POST['ehf_meta_nounce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['ehf_meta_nounce'] ) ), 'ehf_meta_nounce' ) ) {
			return;
		}

		// if our current user can't edit this post, bail.
		if ( ! current_user_can( 'edit_posts' ) ) {
			return;
		}

		$target_locations = Astra_Target_Rules_Fields::get_format_rule_value( $_POST, 'bsf-target-rules-location' );
		$target_exclusion = Astra_Target_Rules_Fields::get_format_rule_value( $_POST, 'bsf-target-rules-exclusion' );
		$target_users     = [];

		if ( isset( $_POST['bsf-target-rules-users'] ) ) {
			$target_users = array_map( 'sanitize_text_field', wp_unslash( $_POST['bsf-target-rules-users'] ) );
		}

		update_post_meta( $post_id, 'ehf_target_include_locations', $target_locations );
		update_post_meta( $post_id, 'ehf_target_exclude_locations', $target_exclusion );
		update_post_meta( $post_id, 'ehf_target_user_roles', $target_users );

		if ( isset( $_POST['ehf_template_type'] ) ) {
			update_post_meta( $post_id, 'ehf_template_type', sanitize_text_field( wp_unslash( $_POST['ehf_template_type'] ) ) );
		}

		if ( isset( $_POST['display-on-canvas-template'] ) ) {
			update_post_meta( $post_id, 'display-on-canvas-template', sanitize_text_field( wp_unslash( $_POST['display-on-canvas-template'] ) ) );
		} else {
			delete_post_meta( $post_id, 'display-on-canvas-template' );
		}
	}

	/**
	 * Display notice when editing the header or footer when there is one more of similar layout is active on the site.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function location_notice() {
		global $pagenow;
		global $post;

		if ( 'post.php' != $pagenow || ! is_object( $post ) || 'elementor-hf' != $post->post_type ) {
			return;
		}

		$template_type = get_post_meta( $post->ID, 'ehf_template_type', true );

		if ( '' !== $template_type ) {
			$templates = Header_Footer_Elementor::get_template_id( $template_type );

			// Check if more than one template is selected for current template type.
			if ( is_array( $templates ) && isset( $templates[1] ) && $post->ID != $templates[0] ) {
				$post_title        = '<strong>' . esc_html( get_the_title( $templates[0] ) ) . '</strong>';
				$template_location = '<strong>' . esc_html( $this->template_location( $template_type ) ) . '</strong>';
				/* Translators: Post title, Template Location */
				$message = sprintf( __( 'Template %1$s is already assigned to the location %2$s', 'header-footer-elementor' ), $post_title, $template_location );

				echo '<div class="error"><p>';
				echo esc_html( $message );
				echo '</p></div>';
			}
		}
	}

	/**
	 * Convert the Template name to be added in the notice.
	 *
	 * @since  1.0.0
	 *
	 * @param  string $template_type Template type name.
	 *
	 * @return string $template_type Template type name.
	 */
	public function template_location( $template_type ) {
		$template_type = ucfirst( str_replace( 'type_', '', $template_type ) );

		return $template_type;
	}

	/**
	 * Don't display the elementor Elementor Header & Footer Builder templates on the frontend for non edit_posts capable users.
	 *
	 * @since  1.0.0
	 * @return void
	 */
	public function block_template_frontend() {
		if ( is_singular( 'elementor-hf' ) && ! current_user_can( 'edit_posts' ) ) {
			wp_safe_redirect( site_url(), 301 );
			die;
		}
	}

	/**
	 * Single template function which will choose our template
	 *
	 * @since  1.0.1
	 *
	 * @param  string $single_template Single template.
	 * @return string
	 */
	public function load_canvas_template( $single_template ) {
		global $post;

		if ( 'elementor-hf' == $post->post_type ) {
			$elementor_2_0_canvas = ELEMENTOR_PATH . '/modules/page-templates/templates/canvas.php';

			if ( file_exists( $elementor_2_0_canvas ) ) {
				return $elementor_2_0_canvas;
			} else {
				return ELEMENTOR_PATH . '/includes/page-templates/canvas.php';
			}
		}

		return $single_template;
	}

	/**
	 * Set shortcode column for template list.
	 *
	 * @param array $columns template list columns.
	 * @return array
	 */
	public function set_shortcode_columns( $columns ) {
		$date_column = $columns['date'];

		unset( $columns['date'] );

		$columns['shortcode'] = __( 'Shortcode', 'header-footer-elementor' );
		$columns['date']      = $date_column;

		return $columns;
	}

	/**
	 * Display shortcode in template list column.
	 *
	 * @param array $column template list column.
	 * @param int   $post_id post id.
	 * @return void
	 */
	public function render_shortcode_column( $column, $post_id ) {
		switch ( $column ) {
			case 'shortcode':
				ob_start();
				?>
				<span class="hfe-shortcode-col-wrap">
					<input type="text" onfocus="this.select();" readonly="readonly" value="[hfe_template id='<?php echo esc_attr( $post_id ); ?>']" class="hfe-large-text code">
				</span>

				<?php

				ob_get_contents();
				break;
		}
	}
}

HFE_Admin::instance();
PK���\і�w+\+\"admin/class-hfe-addons-actions.phpnu�[���<?php
/**
 * Plugin AJAX functions.
 *
 * @package  header-footer-elementor
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use HFE\WidgetsManager\Base\HFE_Helper;

if ( ! class_exists( 'HFE_Addons_Actions' ) ) {

	/**
	 * Initialization
	 *
	 * @since 1.6.0
	 */
	class HFE_Addons_Actions {

		/**
		 * Member Variable
		 *
		 * @var HFE_Addons_Actions
		 */
		private static $instance;

		/**
		 * Widget list variable
		 * 
		 * @var HFE_Addons_Actions
		 */
		private static $widget_list;

		/**
		 *  Initiator
		 *
		 * @return HFE_Addons_Actions
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 *  Constructor
		 */
		public function __construct() {
			add_action( 'wp_ajax_hfe_recommended_plugin_activate', [ $this, 'hfe_activate_addon' ] );
			add_action( 'wp_ajax_hfe_recommended_plugin_install', [ $this, 'hfe_plugin_install' ] );
			add_action( 'wp_ajax_hfe_recommended_theme_install', [ $this, 'hfe_theme_install' ] );
			add_action( 'wp_ajax_hfe_admin_modal', [ $this, 'hfe_admin_modal' ] );
			add_action( 'wp_ajax_hfe-update-subscription', [ $this, 'update_subscription' ] );

			add_action( 'wp_ajax_hfe_activate_widget', [ $this, 'activate_widget' ] );
			add_action( 'wp_ajax_hfe_deactivate_widget', [ $this, 'deactivate_widget' ] );

			add_action( 'wp_ajax_hfe_bulk_activate_widgets', [ $this, 'bulk_activate_widgets' ] );
			add_action( 'wp_ajax_hfe_bulk_deactivate_widgets', [ $this, 'bulk_deactivate_widgets' ] );
			add_action( 'wp_ajax_hfe_bulk_deactivate_unused_widgets', [ $this, 'bulk_deactivate_unused_widgets' ] );

			add_action( 'wp_ajax_save_theme_compatibility_option', [ $this, 'save_hfe_compatibility_option_callback' ] );
			add_action( 'wp_ajax_save_analytics_option', [ $this, 'save_analytics_option' ] );

			add_action( 'wp_ajax_update_permalink_notice_option', [ $this, 'update_permalink_notice_option' ] );
			add_action( 'wp_ajax_hfe_flush_permalink_notice', [ $this, 'hfe_flush_permalink_notice' ] );

			add_action( 'wp_ajax_hfe_dismiss_upgrade_notice', [ $this, 'dismiss_upgrade_notice' ] );

			add_action( 'wp_ajax_hfe_save_onboarding_analytics', [ $this, 'save_onboarding_analytics' ] );

		}

		/**
		 * Updated the permalink notice option.
		 *
		 * @since 2.2.1
		 */
		public function update_permalink_notice_option() {
			// Verify the nonce.
			if ( ! isset( $_POST['nonce'] ) || ! check_ajax_referer( 'hfe_permalink_clear_notice_nonce', 'nonce', false ) ) {
				wp_send_json_error( 'Invalid nonce' );
			}
			
			// Check if the current user has the capability to manage options.
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( 'Unauthorized user' );
			}

			// Update the option to true.
			update_user_meta( get_current_user_id(), 'hfe_permalink_notice_option', 'notice-dismissed' );
		
			// Send a success response.
			wp_send_json_success( 'Option updated successfully' );
		}

		/**
		 * Updated the permalink notice option.
		 *
		 * @since 2.2.1
		 */
		public function hfe_flush_permalink_notice() {
			// Verify the nonce.
			if ( ! isset( $_POST['nonce'] ) || ! check_ajax_referer( 'hfe_permalink_clear_notice_nonce', 'nonce', false ) ) {
				wp_send_json_error( 'Invalid nonce' );
			}
			
			// Check if the current user has the capability to manage options.
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( 'Unauthorized user' );
			}

			$permalink_structure = get_option('permalink_structure');
			// Check if the permalink structure is not empty.
			if ( '' !== $permalink_structure )
			{ 
				update_option('permalink_structure', $permalink_structure);
				flush_rewrite_rules(); 
				// Update the option to true.
				update_user_meta( get_current_user_id(), 'hfe_permalink_notice_option', 'notice-dismissed' );
		
			} 

			// Send a success response.
			wp_send_json_success( 'Permalink Flushed successfully' );
		}
		
		/**
		 * Handles the installation and saving of required plugins.
		 *
		 * This function is responsible for installing and saving required plugins.
		 * It checks for the plugin slug in the AJAX request, verifies the nonce, and initiates the plugin installation process.
		 * If the plugin is successfully installed, it schedules a database update to map the plugin slug to a custom key for analytics tracking.
		 *
		 * @since 2.2.0
		 */
		public function hfe_plugin_install() {

			check_ajax_referer( 'updates', '_ajax_nonce' );

			// Check if user has permission to install plugin.
			if ( ! current_user_can( 'install_plugins' ) ) {
				wp_send_json_error( esc_html__( 'Plugin installation is disabled for you on this site.', 'header-footer-elementor' ) );
			}
			// Fetching the plugin slug from the AJAX request.
			// @psalm-suppress PossiblyInvalidArgument.
			$plugin_slug = isset( $_POST['slug'] ) && is_string( $_POST['slug'] ) ? sanitize_text_field( wp_unslash( $_POST['slug'] ) ) : '';

			if ( empty( $plugin_slug ) ) {
				wp_send_json_error( [ 'message' => __( 'Plugin slug is missing.', 'header-footer-elementor' ) ] );
			}

			// Schedule the database update if the plugin is installed successfully.
			add_action(
				'shutdown',
				function () use ( $plugin_slug ) {
					// Iterate through all plugins to check if the installed plugin matches the current plugin slug.
					$all_plugins = get_plugins();
					foreach ( $all_plugins as $plugin_file => $_ ) {
						if ( class_exists( 'BSF_UTM_Analytics' ) && is_callable( 'BSF_UTM_Analytics::update_referer' ) && strpos( $plugin_file, $plugin_slug . '/' ) === 0 ) {
							// If the plugin is found and the update_referer function is callable, update the referer with the corresponding product slug.
							BSF_UTM_Analytics::update_referer( 'header-footer-elementor', $plugin_slug );
							return;
						}
					}
				}
			);

			if ( function_exists( 'wp_ajax_install_plugin' ) ) {
				// @psalm-suppress NoValue
				wp_ajax_install_plugin();
			} else {
				wp_send_json_error( [ 'message' => __( 'Plugin installation function not found.', 'header-footer-elementor' ) ] );
			}
		}

		
		/**
		 * Handles the installation and saving of required theme.
		 *
		 * This function is responsible for installing and saving required plugins.
		 * It checks for the plugin slug in the AJAX request, verifies the nonce, and initiates the plugin installation process.
		 * If the theme is successfully installed, it schedules a database update to map the plugin slug to a custom key for analytics tracking.
		 *
		 * @since 2.2.0
		 */
		public function hfe_theme_install() {

			check_ajax_referer( 'updates', '_ajax_nonce' );

			// Check if user has permission to install theme.
			if ( ! current_user_can( 'install_themes' ) ) {
				wp_send_json_error( esc_html__( 'Theme installation is disabled for you on this site.', 'header-footer-elementor' ) );
			}
			// Fetching the plugin slug from the AJAX request.
			// @psalm-suppress PossiblyInvalidArgument.
			$theme_slug = isset( $_POST['slug'] ) && is_string( $_POST['slug'] ) ? sanitize_text_field( wp_unslash( $_POST['slug'] ) ) : '';

			if ( empty( $theme_slug ) ) {
				wp_send_json_error( [ 'message' => __( 'Theme slug is missing.', 'header-footer-elementor' ) ] );
			}

			// Schedule the database update if the theme is installed successfully.
			add_action(
				'shutdown',
				function () use ( $theme_slug ) {
					// Iterate through all themes to check if the installed theme matches the current theme slug.
					$all_themes = wp_get_themes();
					foreach ( $all_themes as $theme_file => $_ ) {
						if ( class_exists( 'BSF_UTM_Analytics' ) && is_callable( 'BSF_UTM_Analytics::update_referer' ) && strpos( $theme_file, $theme_slug . '/' ) === 0 ) {
							// If the theme is found and the update_referer function is callable, update the referer with the corresponding product slug.
							BSF_UTM_Analytics::update_referer( 'header-footer-elementor', $theme_slug );
							return;
						}
					}
				}
			);

			if ( function_exists( 'wp_ajax_install_theme' ) ) {
				// @psalm-suppress NoValue
				wp_ajax_install_theme();
			} else {
				wp_send_json_error( [ 'message' => __( 'Theme installation function not found.', 'header-footer-elementor' ) ] );
			}
		}

		/**
		 * Activate all module
		 */
		public static function bulk_activate_widgets() {

			check_ajax_referer( 'hfe-admin-nonce', 'nonce' );

			// Check if user has permission to manage options.
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( __( 'You do not have permission to perform this action.', 'header-footer-elementor' ) );
			}

			if ( ! isset( self::$widget_list ) ) {
				self::$widget_list = HFE_Helper::get_widget_list();
			}

			$new_widgets = [];

			// Set all extension to enabled.
			foreach ( self::$widget_list  as $slug => $value ) {
				$new_widgets[ $slug ] = $slug;
			}

			// Escape attrs.
			$new_widgets = array_map( 'esc_attr', $new_widgets );

			// Update new_extensions.
			HFE_Helper::update_admin_settings_option( '_hfe_widgets', $new_widgets );

			// Send a JSON response.
			wp_send_json_success( 'Widgets activated successfully.' );
		}

		/**
		 * Deactivate all module
		 */
		public static function bulk_deactivate_widgets() {

			check_ajax_referer( 'hfe-admin-nonce', 'nonce' );

			// Check if user has permission to manage options.
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( __( 'You do not have permission to perform this action.', 'header-footer-elementor' ) );
			}

			if ( ! isset( self::$widget_list ) ) {
				self::$widget_list = HFE_Helper::get_widget_list();
			}

			$new_widgets = [];

			// Set all extension to enabled.
			foreach ( self::$widget_list as $slug => $value ) {
				$new_widgets[ $slug ] = 'disabled';
			}

			// Escape attrs.
			$new_widgets = array_map( 'esc_attr', $new_widgets );

			// Update new_extensions.
			HFE_Helper::update_admin_settings_option( '_hfe_widgets', $new_widgets );

			// Send a JSON response.
			wp_send_json_success( 'Widgets deactivated successfully.' );
		}

		/**
		 * Deactivate all unused module
		 */
		public static function bulk_deactivate_unused_widgets() {

			check_ajax_referer( 'hfe-admin-nonce', 'nonce' );

			// Check if user has permission to manage options.
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( __( 'You do not have permission to perform this action.', 'header-footer-elementor' ) );
			}
		
			if ( ! isset( self::$widget_list ) ) {
				self::$widget_list = HFE_Helper::get_widget_list();
			}
			$used_widgets = HFE_Helper::get_used_widget();
			// var_dump($used_widgets);
			$unused_widgets = [];
		
			// Compare slugs from widget_list to keys in $used_widgets
			foreach ( self::$widget_list as $slug => $value ) {
				if ( ! isset( $used_widgets[ $value['slug'] ] ) ) {
					if( $slug === 'Scroll_To_Top' || $slug === 'Reading_Progress_Bar' ){
						continue;
					}
					$unused_widgets[] = $slug;
				}
			}
		
			$deactivated = [];
			$widgets     = [];

			// Set unused widgets to disabled.
			foreach ( self::$widget_list as $slug => $value ) {
				if ( in_array( $slug, $unused_widgets, true ) ) {
					$widgets[ $slug ] = 'disabled';
					$deactivated[] = $slug;
				}
			}
		
			$widgets = array_map( 'esc_attr', $widgets );
		
			HFE_Helper::update_admin_settings_option( '_hfe_widgets', $widgets );
		
			wp_send_json_success( [ 'deactivated' => $deactivated ] );
		}
		

		/**
		 * Deactivate module
		 */
		public static function deactivate_widget() {

			check_ajax_referer( 'hfe-admin-nonce', 'nonce' );

			// Check if user has permission to manage options.
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( __( 'You do not have permission to perform this action.', 'header-footer-elementor' ) );
			}

			$module_id = isset( $_POST['module_id'] ) ? sanitize_text_field( wp_unslash( $_POST['module_id'] ) ) : '';

			// Validate module_id against known widget list.
			if ( ! isset( self::$widget_list ) ) {
				self::$widget_list = HFE_Helper::get_widget_list();
			}

			if ( empty( $module_id ) || ! array_key_exists( $module_id, self::$widget_list ) ) {
				wp_send_json_error( __( 'Invalid widget identifier.', 'header-footer-elementor' ) );
			}

			$widgets               = HFE_Helper::get_admin_settings_option( '_hfe_widgets', [] );
			$widgets[ $module_id ] = 'disabled';
			$widgets               = array_map( 'esc_attr', $widgets );

			// Update widgets.
			HFE_Helper::update_admin_settings_option( '_hfe_widgets', $widgets );

			wp_send_json( $module_id );
		}

		/**
		 * Activate module
		 */
		public static function activate_widget() {

			check_ajax_referer( 'hfe-admin-nonce', 'nonce' );

			// Check if user has permission to manage options.
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( __( 'You do not have permission to perform this action.', 'header-footer-elementor' ) );
			}

			$module_id = isset( $_POST['module_id'] ) ? sanitize_text_field( wp_unslash( $_POST['module_id'] ) ) : '';

			// Validate module_id against known widget list.
			if ( ! isset( self::$widget_list ) ) {
				self::$widget_list = HFE_Helper::get_widget_list();
			}

			if ( empty( $module_id ) || ! array_key_exists( $module_id, self::$widget_list ) ) {
				wp_send_json_error( __( 'Invalid widget identifier.', 'header-footer-elementor' ) );
			}

			$widgets               = HFE_Helper::get_admin_settings_option( '_hfe_widgets', [] );
			$widgets[ $module_id ] = $module_id;
			$widgets               = array_map( 'esc_attr', $widgets );

			// Update widgets.
			HFE_Helper::update_admin_settings_option( '_hfe_widgets', $widgets );

			wp_send_json( $module_id );
		}

		/**
		 * Open modal popup.
		 *
		 * @since 1.6.0
		 * @return void
		 */
		public function hfe_admin_modal() {

			// Run a security check.
			check_ajax_referer( 'hfe-admin-nonce', 'nonce' );

			// Check if user has permission to manage options.
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( __( 'You do not have permission to perform this action.', 'header-footer-elementor' ) );
			}

			update_user_meta( get_current_user_id(), 'hfe-popup', 'dismissed' );
		}

		/**
		 * Update Subscription
		 *
		 * @since 1.6.0
		 * @return void
		 */
		public function update_subscription() {

			check_ajax_referer( 'hfe-admin-nonce', 'nonce' );

			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( 'You can\'t perform this action.' );
			}

			$api_domain = trailingslashit( $this->get_api_domain() );
			// PHPCS:Ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- This code is deprecated and will be removed in future versions.
			$arguments = isset( $_POST['data'] ) ? array_map( 'sanitize_text_field', json_decode( stripslashes( wp_unslash( $_POST['data'] ) ), true ) ) : [];

			$url = add_query_arg( $arguments, $api_domain . 'wp-json/starter-templates/v1/subscribe/' ); // add URL of your site or mail API.

			$response = wp_remote_post( $url, [ 'timeout' => 60 ] );

			if ( ! is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) === 200 ) {
				$response = json_decode( wp_remote_retrieve_body( $response ), true );

				// Successfully subscribed.
				if ( isset( $response['success'] ) && $response['success'] ) {
					update_user_meta( get_current_user_ID(), 'hfe-subscribed', 'yes' );
					wp_send_json_success( $response );
				}
			} else {
				wp_send_json_error( $response );
			}
		}

		/**
		 * Get the API URL.
		 *
		 * @since 1.6.0
		 * @return string
		 */
		public function get_api_domain() {
			return apply_filters( 'hfe_api_domain', 'https://websitedemos.net/' );
		}

		/**
		 * Activate addon.
		 *
		 * @since 1.6.0
		 * @return void
		 */
		public function hfe_activate_addon() {

			// Run a security check.
			check_ajax_referer( 'hfe-admin-nonce', 'nonce' );

			if ( isset( $_POST['plugin'] ) ) {

				$type = '';
				if ( ! empty( $_POST['type'] ) ) {
					$type = sanitize_key( wp_unslash( $_POST['type'] ) );
				}

				$plugin = sanitize_text_field( wp_unslash( $_POST['plugin'] ) );

				if ( 'plugin' === $type ) {

					// Check for permissions.
					if ( ! current_user_can( 'activate_plugins' ) ) {
						wp_send_json_error( esc_html__( 'Plugin activation is disabled for you on this site.', 'header-footer-elementor' ) );
					}

					$activate = activate_plugins( $plugin );

					if ( ! is_wp_error( $activate ) ) {

						do_action( 'hfe_plugin_activated', $plugin );

						wp_send_json_success( esc_html__( 'Plugin Activated.', 'header-footer-elementor' ) );
					}
				}

				if ( 'theme' === $type ) {

					if ( isset( $_POST['slug'] ) ) {
						$slug = sanitize_key( wp_unslash( $_POST['slug'] ) );

						// Check for permissions.
						if ( ! ( current_user_can( 'switch_themes' ) ) ) {
							wp_send_json_error( esc_html__( 'Theme activation is disabled for you on this site.', 'header-footer-elementor' ) );
						}

						$activate = switch_theme( $slug );

						if ( ! is_wp_error( $activate ) ) {

							do_action( 'hfe_theme_activated', $plugin );

							wp_send_json_success( esc_html__( 'Theme Activated.', 'header-footer-elementor' ) );
						}
					}
				}
			}

			if ( 'plugin' === $type ) {
				wp_send_json_error( esc_html__( 'Could not activate plugin. Please activate from the Plugins page.', 'header-footer-elementor' ) );
			} elseif ( 'theme' === $type ) {
				wp_send_json_error( esc_html__( 'Could not activate theme. Please activate from the Themes page.', 'header-footer-elementor' ) );
			}
		}

		/**
		 * Save HFE compatibility option via AJAX.
		 *
		 * @since 2.2.0
		 * @return void
		 */
		public function save_hfe_compatibility_option_callback() {
			// Check nonce for security.
			check_ajax_referer( 'hfe-admin-nonce', 'nonce' );

			// Check if user has permission to manage options.
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( esc_html__( 'You do not have permission to perform this action.', 'header-footer-elementor' ) );
			}

			if ( isset( $_POST['hfe_compatibility_option'] ) ) {
				// Sanitize and validate option against allowed values.
				$option        = sanitize_text_field( wp_unslash( $_POST['hfe_compatibility_option'] ) );
				$allowed_values = [ '1', '2' ];

				if ( ! in_array( $option, $allowed_values, true ) ) {
					wp_send_json_error( esc_html__( 'Invalid compatibility option value.', 'header-footer-elementor' ) );
				}

				update_option( 'hfe_compatibility_option', $option );

				// Track theme compatibility change event.
				if ( class_exists( 'HFE_Analytics_Events' ) ) {
					HFE_Analytics_Events::track( 'theme_compat_changed', $option, [ 'active_theme' => get_template() ] );
				}

				// Return a success response.
				wp_send_json_success( esc_html__( 'Settings saved successfully!', 'header-footer-elementor' ) );
			} else {
				// Return an error response if the option is not set.
				wp_send_json_error( esc_html__( 'Unable to save settings.', 'header-footer-elementor' ) );
			}
		}

		/**
		 * Save HFE analytics compatibility option via AJAX.
		 *
		 * @since 2.2.1
		 * @return void
		 */
		public function save_analytics_option() {
			// Check nonce for security.
			check_ajax_referer( 'hfe-admin-nonce', 'nonce' );

			// Check if user has permission to manage options.
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( __( 'You do not have permission to perform this action.', 'header-footer-elementor' ) );
			}

			if ( isset( $_POST['uae_usage_optin'] ) ) {
				// Sanitize and validate option against allowed values.
				$option        = sanitize_text_field( wp_unslash( $_POST['uae_usage_optin'] ) );
				$allowed_values = [ 'yes', 'no' ];

				if ( ! in_array( $option, $allowed_values, true ) ) {
					wp_send_json_error( __( 'Invalid analytics option value.', 'header-footer-elementor' ) );
				}

				update_option( 'uae_usage_optin', $option );

				// Return a success response.
				wp_send_json_success( __( 'Settings saved successfully!', 'header-footer-elementor' ) );
			} else {
				// Return an error response if the option is not set.
				wp_send_json_error( __( 'Unable to save settings.', 'header-footer-elementor' ) );
			}
		}

		/**
		 * Dismiss upgrade notice
		 *
		 * @return void
		 */
		public function dismiss_upgrade_notice() {

			// Verify nonce for security.
			if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['nonce'] ) ), 'hfe-admin-nonce' ) ) {
				wp_send_json_error( __( 'Security check failed.', 'header-footer-elementor' ) );
				return;
			}

			// Check if user has permission to manage options.
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( __( 'You do not have permission to perform this action.', 'header-footer-elementor' ) );
				return;
			}

			// Update option to remember the dismissal
			update_user_meta( get_current_user_id(), 'hfe_upgrade_notice_dismissed', 'true' );
			wp_send_json_success( __( 'Upgrade notice dismissed.', 'header-footer-elementor' ) );
		}

		/**
		 * Save onboarding analytics blob from frontend.
		 *
		 * Receives the full onboarding journey summary (completed steps,
		 * skipped steps, early exit flag) and stores it as a single option.
		 * The data is included in the BSF Analytics periodic payload via
		 * add_uae_analytics_data(), and the onboarding_completed event is
		 * fired via detect_state_events() reading this option.
		 *
		 * @since 2.8.7
		 * @return void
		 */
		public function save_onboarding_analytics() {
			check_ajax_referer( 'hfe-admin-nonce', 'nonce' );

			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( __( 'You do not have permission to perform this action.', 'header-footer-elementor' ) );
			}

			$allowed_steps = [ 'welcome', 'configure', 'features', 'success' ];

			// Sanitize completed_steps array.
			$completed_steps = [];
			if ( isset( $_POST['completed_steps'] ) && is_array( $_POST['completed_steps'] ) ) {
				$raw_completed = array_map( 'sanitize_text_field', wp_unslash( $_POST['completed_steps'] ) );
				foreach ( $raw_completed as $step ) {
					if ( in_array( $step, $allowed_steps, true ) ) {
						$completed_steps[] = $step;
					}
				}
			}

			// Sanitize skipped_steps array.
			$skipped_steps = [];
			if ( isset( $_POST['skipped_steps'] ) && is_array( $_POST['skipped_steps'] ) ) {
				$raw_skipped = array_map( 'sanitize_text_field', wp_unslash( $_POST['skipped_steps'] ) );
				foreach ( $raw_skipped as $step ) {
					if ( in_array( $step, $allowed_steps, true ) ) {
						$skipped_steps[] = $step;
					}
				}
			}

			$exited_early = isset( $_POST['exited_early'] ) && 'true' === sanitize_text_field( wp_unslash( $_POST['exited_early'] ) );
			$exit_at_step = isset( $_POST['exit_at_step'] ) ? sanitize_text_field( wp_unslash( $_POST['exit_at_step'] ) ) : '';

			if ( ! empty( $exit_at_step ) && ! in_array( $exit_at_step, $allowed_steps, true ) ) {
				$exit_at_step = '';
			}

			$analytics_data = [
				'completed'       => ! $exited_early,
				'exited_early'    => $exited_early,
				'exit_at_step'    => $exit_at_step,
				'skipped_steps'   => $skipped_steps,
				'completed_steps' => $completed_steps,
			];

			update_option( 'hfe_onboarding_analytics', $analytics_data, false );

			wp_send_json_success( __( 'Onboarding analytics saved.', 'header-footer-elementor' ) );
		}

	}

	/**
	 *  Kicking this off by calling 'get_instance()' method
	 */
	HFE_Addons_Actions::get_instance();

}
PK���\x.ʚ;;admin/assets/js/ehf-admin.jsnu�[���;( function( $ ) {

	'use strict';

	// Global settings access.
	var settings = {
		iconActivate: '<i class="fa fa-toggle-on fa-flip-horizontal" aria-hidden="true"></i>',
		iconDeactivate: '<i class="fa fa-toggle-on" aria-hidden="true"></i>',
		iconInstall: '<i class="fa fa-cloud-download" aria-hidden="true"></i>'
	};

	var HFEAdmin = {

		/**
		 * Start the engine.
		 *
		 * @since 1.3.9
		 */
		_init: function() {

			var ehf_hide_shortcode_field = function() {
				var selected = $('#ehf_template_type').val() || 'none';
				$( '.hfe-options-table' ).removeClass().addClass( 'hfe-options-table widefat hfe-selected-template-type-' + selected );
			}

			var $document = $( document );
		
			$document.on( 'change', '#ehf_template_type', function( e ) {
				ehf_hide_shortcode_field();
			});
		
			ehf_hide_shortcode_field();
		
			// Templates page modal popup.
			HFEAdmin._display_modal();

			$( '.hfe-subscribe-field' ).on( 'keyup', function( e ) {
				$( '.hfe-subscribe-message' ).remove();
			});

			$document.on( 'focusout change', '.hfe-subscribe-field', HFEAdmin._validate_single_field );
			$document.on( 'click input', '.hfe-subscribe-field', HFEAdmin._animate_fields );

			$document.on( 'click', '.hfe-guide-content .submit-1', HFEAdmin._step_one_subscribe );
			$document.on( 'click', '.hfe-guide-content .submit-2', HFEAdmin._step_two_subscribe );

			$document.on('click', '.hfe-guide-content .button-subscription-skip', HFEAdmin._close_modal );

			// About us - addons functionality.
			if ( $( '.hfe-admin-addons' ).length ) {
	
				$document.on( 'click', '.hfe-admin-addons .addon-item button', function( event ) {
					event.preventDefault();
		
					if ( $( this ).hasClass( 'disabled' ) ) {
						return false;
					}
		
					HFEAdmin._addons( $( this ) );

				} );
		
			}

			if( "yes" === hfe_admin_data.show_all_hfe ) {
				// Add the "View All" button next to the "Add New" button.
				const addNewButton = document.querySelector('.page-title-action');
				if ( addNewButton ) {
					// Create the new button.
					const customButton = document.createElement('a');
					customButton.href = hfe_admin_data.hfe_edit_url;
					customButton.textContent = hfe_admin_data.view_all_text;
					customButton.className = 'page-title-action';
					customButton.style.marginLeft = '10px';
					addNewButton.insertAdjacentElement('afterend', customButton);
				}
			}
			
		},

		_animate_fields: function ( event ) {
			event.preventDefault();
			event.stopPropagation();
			var parentWrapper = $( this ).parents( '.hfe-input-container' );
			parentWrapper.addClass( 'subscription-anim' );
		},

		_validate_single_field: function ( event ) {
			event.preventDefault();
			event.stopPropagation();
			HFEAdmin._validate_field( event.target );
		},

		_validate_field: function ( target ) {

			var field = $( target );
			var fieldValue = field.val() || '';
			var parentWrapper = field.parents( '.hfe-input-container' );
			var fieldStatus = fieldValue.length ? true : false;

			if ( ( field.hasClass( 'hfe-subscribe-email' ) && false === HFEAdmin._is_valid_email( fieldValue ) )) {
				fieldStatus = false;
			}

			if ( fieldStatus ) {
				parentWrapper.removeClass( 'subscription-error' ).addClass( 'subscription-success' );
			} else {
				parentWrapper.removeClass( 'subscription-success subscription-anim' ).addClass( 'subscription-error' );

				if ( field.hasClass( 'hfe-subscribe-email' ) && fieldValue.length ) {
					parentWrapper.addClass( 'subscription-anim' );
				}
			}

		},

		/**
		 * Subscribe Form Step One
		 *
		 */
		_step_one_subscribe: function( event ) {
			event.preventDefault();
			event.stopPropagation();

			var form_one_wrapper = $( '.hfe-subscription-step-1' );

			var first_name_field = form_one_wrapper.find( '.hfe-subscribe-field[name="hfe_subscribe_name"]' );
			var email_field = form_one_wrapper.find( '.hfe-subscribe-field[name="hfe_subscribe_email"]' );

			HFEAdmin._validate_field( first_name_field );
			HFEAdmin._validate_field( email_field );

			if ( form_one_wrapper.find( '.hfe-input-container' ).hasClass( 'subscription-error' )) {
				return;
			}

			$( '.hfe-guide-content' ).addClass( 'hfe-subscription-step-2-active' ).removeClass( 'hfe-subscription-step-1-active' );

		},

		/**
		 * Subscribe Form
		 *
		 */
		 _step_two_subscribe: function( event ) {

			event.preventDefault();
			event.stopPropagation();

			var submit_button = $(this);

			var is_modal = $( '.hfe-guide-modal-popup.hfe-show' );

			var first_name_field = $('.hfe-subscribe-field[name="hfe_subscribe_name"]');
			var email_field = $('.hfe-subscribe-field[name="hfe_subscribe_email"]');
			var user_type_field = $('.hfe-subscribe-field[name="wp_user_type"]');
			var build_for_field = $('.hfe-subscribe-field[name="build_website_for"]');
			var accept_field = $('.hfe_subscribe_accept[name="hfe_subscribe_accept"]');

			var subscription_first_name = first_name_field.val() || '';
			var subscription_email = email_field.val() || '';
			var subscription_user_type = user_type_field.val() || '';
			var subscription_build_for = build_for_field.val() || '';
			var button_text = submit_button.find( '.hfe-submit-button-text' );
			var subscription_accept = accept_field.is( ':checked' ) ? '1' : '0';

			HFEAdmin._validate_field( first_name_field );
			HFEAdmin._validate_field( email_field );
			HFEAdmin._validate_field( user_type_field );
			HFEAdmin._validate_field( build_for_field );

			$( '.hfe-subscribe-message' ).remove();

			if ( $( '.hfe-input-container' ).hasClass( 'subscription-error' )) {
				return;
			}

			submit_button.removeClass( 'submitted' );

			if( ! submit_button.hasClass( 'submitting' ) ) {
				submit_button.addClass( 'submitting' );
			} else {
				return;
			}

			var subscription_fields = {
				EMAIL: subscription_email,
				FIRSTNAME: subscription_first_name,
				PAGE_BUILDER: "1",
				WP_USER_TYPE: subscription_user_type,
				BUILD_WEBSITE_FOR: subscription_build_for,
				OPT_IN: subscription_accept,
				SOURCE: hfe_admin_data.data_source
			};

			$.ajax({
				url  : hfe_admin_data.ajax_url,
				type : 'POST',
				data : {
					action : 'hfe-update-subscription',
					nonce : hfe_admin_data.nonce,
					data: JSON.stringify( subscription_fields ),
				},
				beforeSend: function() {
					console.groupCollapsed( 'Email Subscription' );

					button_text.append( '<span class="dashicons dashicons-update hfe-loader"></span>' );

				},
			})
			.done( function ( response ) {

				$( '.hfe-loader.dashicons-update' ).remove();

				submit_button.removeClass( 'submitting' ).addClass('submitted');

				if( response.success === true ) {
					$('.hfe-admin-about-section form').trigger( "reset" );
					$( '.hfe-input-container' ).removeClass( 'subscription-success subscription-anim' );

					submit_button.after( '<span class="hfe-subscribe-message success">' + hfe_admin_data.subscribe_success + '</span>' );
				} else {
					submit_button.after( '<span class="hfe-subscribe-message error">' + hfe_admin_data.subscribe_error + '</span>' );
				}
				
				if( is_modal.length ) {
					window.setTimeout( function () {
						window.location = $( '.hfe-guide-modal-popup' ).data( 'new-page' );
					}, 3000 );
				}

			});

		},

		/**
		 * email Validation
		 *
		 */
		_is_valid_email: function(eMail) {
			if (/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/.test( eMail ) ) {
				return true;
			}
			
			return false;
		},

		/**
		 * Display the Modal Popup
		 *
		 */
		_display_modal: function() {
			var hf_new_post = $( '.post-type-elementor-hf' ).find( '.page-title-action' );

			var modal_wrapper = $( '.hfe-guide-modal-popup' );
			var display_allow = hfe_admin_data.popup_dismiss;

			if( 'dismissed' !== display_allow[0] ) {
				// Display Modal Popup on click of Add new button.
				hf_new_post.on( 'click', function(e) {
					if( modal_wrapper.length && ! modal_wrapper.hasClass( 'hfe-show' ) ) {
						e.preventDefault();
						e.stopPropagation();
						modal_wrapper.addClass( 'hfe-show' );
					}
				});
			}
		},

		/**
		 * Close the Modal Popup
		 *
		 */
		 _close_modal: function() {
			var modal_wrapper = $( '.hfe-guide-modal-popup' );
			var new_page_link = modal_wrapper.data( 'new-page' );
				
			$.ajax({
				url: hfe_admin_data.ajax_url,
				type: 'POST',
				data: {
					action  : 'hfe_admin_modal',
					nonce   : hfe_admin_data.nonce,
				},
			});
		
			if( modal_wrapper.hasClass( 'hfe-show' ) ) {
				modal_wrapper.removeClass( 'hfe-show' );
			}

			window.location = new_page_link;
		},

		/**
		 * Toggle addon state.
		 */
		 _addons: function( $button ) {

			var $addon = $button.closest( '.addon-item' ),
				plugin = $button.attr( 'data-plugin' ),
				addonType = $button.attr( 'data-type' ),
				addonSlug = $button.attr( 'data-slug' ),
				addonFile = $button.attr( 'data-file' ),
				state,
				cssClass,
				stateText,
				buttonText,
				errorText,
				successText;
	
			if ( $button.hasClass( 'status-go-to-url' ) ) {
	
				// Open url in new tab.
				window.open( $button.attr( 'data-site' ), '_blank' );
				return;
			}
	
			$button.prop( 'disabled', true ).addClass( 'loading' );
			$button.html( '<span class="dashicons dashicons-update hfe-loader"></span>' );
	
			if ( $button.hasClass( 'status-active' ) ) {
	
				// Deactivate.
				state = 'deactivate';
				cssClass = 'status-inactive';
				cssClass += ' button button-secondary';
				stateText = hfe_admin_data.addon_inactive;
				buttonText = hfe_admin_data.addon_activate;
				errorText  = hfe_admin_data.addon_deactivate;
	
			} else if ( $button.hasClass( 'status-inactive' ) ) {
	
				// Activate.
				state = 'activate';
				cssClass = 'status-active';
				cssClass += ' button button-secondary disabled';
				stateText = hfe_admin_data.addon_active;
				buttonText = hfe_admin_data.addon_deactivate;
				buttonText = hfe_admin_data.addon_activated;
				errorText  = hfe_admin_data.addon_activate;
	
			} else if ( $button.hasClass( 'status-download' ) ) {
	
				// Install & Activate.
				state = 'install';
				cssClass = 'status-active';
				cssClass += ' button disabled';
				stateText = hfe_admin_data.addon_active;
				buttonText = hfe_admin_data.addon_activated;
				errorText  = settings.iconInstall;
	
			} else {
				return;
			}
	
			HFEAdmin._set_addon_state( plugin, state, addonType, addonSlug, function( res ) {
	
				if ( res.success ) {
					if ( 'install' === state ) {
						successText = res.msg;
						$button.attr( 'data-plugin', addonFile );
						
						stateText  = hfe_admin_data.addon_inactive;
						buttonText = ( addonType === 'theme' || addonType === 'plugin' ) ? hfe_admin_data.addon_activate : settings.iconActivate + hfe_admin_data.addon_activate;
						cssClass   = ( addonType === 'theme' || addonType === 'plugin' ) ? 'status-inactive button button-secondary' : 'status-inactive';
					} else {
						successText = res.data;
					}
					$addon.find( '.actions' ).append( '<div class="msg success">' + successText + '</div>' );
					$addon.find( 'span.status-label' )
						.removeClass( 'status-active status-inactive status-download' )
						.addClass( cssClass )
						.removeClass( 'button button-primary button-secondary disabled' )
						.text( stateText );
					$button
						.removeClass( 'status-active status-inactive status-download' )
						.removeClass( 'button button-primary button-secondary disabled' )
						.addClass( cssClass ).html( buttonText );
				} else {
					
					if ( 'install' === state && ( addonType === 'theme' || addonType === 'plugin' ) ) {
						$addon.find( '.actions' ).append( '<div class="msg error">' + res.msg + '</div>' );
						$button.addClass( 'status-go-to-url' ).removeClass( 'status-download' );
					} else {
						var error_msg = ( 'object' === typeof res.data ) ? hfe_admin_data.plugin_error : res.data;
						$addon.find( '.actions' ).append( '<div class="msg error">' + error_msg + '</div>' );
					}

					if( 'ultimate-elementor' === addonSlug ) {
						$button.addClass( 'status-go-to-url' );
						$button.html( hfe_admin_data.visit_site );
					} else {
						$button.html( hfe_admin_data.addon_download );
					}
				}
	
				$button.prop( 'disabled', false ).removeClass( 'loading' );
	
				// Automatically clear the messages after 3 seconds.
				setTimeout( function() {	
					$( '.addon-item .msg' ).remove();
				}, 3000 );
	
			} );
		},

		/**
		 * Change plugin/addon state.
		 *
		 * @since 1.6.0
		 *
		 * @param {string}   plugin     Plugin/Theme URL for download.
		 * @param {string}   state      State status activate|deactivate|install.
		 * @param {string}   addonType Plugin/Theme type addon or plugin.
		 * @param {string}   addonSlug Plugin/Theme slug addon or plugin.
		 * @param {Function} callback   Callback for get result from AJAX.
		 */
		 _set_addon_state: function( plugin, state, addonType, addonSlug, callback ) {

			var actions = {
					'activate': 'hfe_activate_addon',
					'install': '',
				},
				action = actions[ state ];

			if ( ! action && 'install' !== state ) {
				return;
			}

			var data_result = {
				success : false,
				msg : hfe_admin_data.subscribe_error,
			};

			if( 'install' === state ) {

				if ( wp.updates.shouldRequestFilesystemCredentials && ! wp.updates.ajaxLocked ) {
					wp.updates.requestFilesystemCredentials();
				}

				if( 'theme' === addonType ) {

					wp.updates.installTheme ( {
						slug: addonSlug,
						success: function() {
							data_result.success = true;
							data_result.msg = hfe_admin_data.theme_installed;
							
						},
						error: function( xhr ) {
							console.log( xhr.errorCode );							
							if ( 'folder_exists' === xhr.errorCode ) {
								data_result.success = true;
								data_result.msg = hfe_admin_data.addon_exists;
							} else {
								data_result.success = false;
								data_result.msg = hfe_admin_data.plugin_error;
							}
						},
					}).always( function () {
						callback( data_result );
					});

				} else if( 'plugin' === addonType ) {
					
					wp.updates.installPlugin ( {
						slug: addonSlug,
						success: function() {
							data_result.success = true;
							data_result.msg = hfe_admin_data.plugin_installed;
						},
						error: function( xhr ) {
							console.log( xhr.errorCode );							
							if ( 'folder_exists' === xhr.errorCode ) {
								data_result.success = true;
								data_result.msg = hfe_admin_data.addon_exists;
							} else {
								data_result.success = false;
								data_result.msg = hfe_admin_data.plugin_error;
							}
						},
					}).always( function () {
						callback( data_result );
					});
				}

			} else if( 'activate' === state )  {

				var data = {
					action: action,
					nonce: hfe_admin_data.nonce,
					plugin: plugin,
					type: addonType,
					slug: addonSlug
				};
		
				$.post( hfe_admin_data.ajax_url, data, function( res ) {
					callback( res );
				} ).fail( function( xhr ) {
					console.log( xhr.responseText );
				} );
			}
		}
	};

	$( document ).ready( function( e ) {
		HFEAdmin._init();
	});

	window.HFEAdmin = HFEAdmin;

} )( jQuery );
PK���\���_Z_Zadmin/assets/css/ehf-admin.cssnu�[���span.hfe-shortcode-col-wrap > input {
    background: inherit;
    color: inherit;
    font-size: 12px;
    border: none;
    box-shadow: none;
    padding: 4px 8px;
    margin: 0;
}
input.hfe-large-text{
    width: 99%;
}
.hfe-options-row-heading {
    border-right: 1px solid #E1E1E1;
    padding: 15px;
    width: 45%;
    vertical-align: middle;
}
.hfe-options-row td {
    padding-left: 12px;
    padding-right: 12px;
    border-bottom: 1px solid #f0f0f0;
    zoom: 1;
    vertical-align: middle;
}
.hfe-options-table .hfe-options-row-content {
    padding: 15px 10px;
    position: relative;
    width: 55%;
}
.hfe-options-table.widefat {
	border-width: 0;
}
.hfe-options-row-heading label {
    display: inline-block;
    font-size: 13px;
    line-height: 1.4em;
    font-weight: bold;
    padding: 0;
    margin: 0 0 3px;
    color: #333;
}
.hfe-options-row-content select {
    width: 95%;
}
.hfe_radio_options {
    display: inline-block;
}
li#toplevel_page_Settings-page,
.wp-admin #adminmenu .wp-submenu a[href="themes.php?page=hfe-settings"],
.wp-admin #adminmenu .wp-submenu a[href="themes.php?page=hfe-guide"],
.wp-admin #adminmenu .wp-submenu a[href="themes.php?page=hfe-about"] {
    display: none;
}
.post-type-elementor-hf .wp-submenu a[href ="edit.php?post_type=elementor-hf" ] {
    color: #ffffff !important;
    font-weight: 600;
}
.toplevel_page_hfe .wp-submenu a[href ="post-new.php?post_type=elementor-hf" ],
.toplevel_page_hfe .wp-submenu a[href ="admin.php?page=hfe#onboarding" ],
.toplevel_page_hfe .wp-submenu a[href ="admin.php?page=hfe#onboardingsuccess" ],
.toplevel_page_uaepro .wp-submenu a[href ="post-new.php?post_type=elementor-hf" ] {
    display: none !important;
}
.hfe-heading-inline {
    font-size: 23px;
    font-weight: 400;
    margin: 0;
    padding: 9px 0 4px 0;
    line-height: 1.3;
}
.hfe-selected-template-type-custom .hfe-shortcode {
    display: table-row;
}
.hfe-selected-template-type-custom .bsf-target-rules-row,
.hfe-selected-template-type-custom .enable-for-canvas,
.hfe-shortcode,
.hfe-selected-template-type-none .bsf-target-rules-row,
.hfe-selected-template-type-none .hfe-shortcode,
.hfe-selected-template-type-none .enable-for-canvas,
.hfe-guide-content .form-table th {
    display: none;
}
/* Notice */
#header-footer-install-notice img.custom-logo {
    height: 30px;
    margin-right: 6px;
}
#header-footer-install-notice .notice-container {
    display: flex;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}
#header-footer-install-notice .notice-content {
    margin-left: 0px;
}
#header-footer-install-notice .notice-dismiss {
    height: 100%;
}
/* EHF Settings - Step by Step guide */
#ehf-meta-box .inside,
.hfe-admin-guide-section.hfe-admin-about-section {
    padding: 0px;
}
.appearance_page_hfe-guide .nav-tab-wrapper,
.appearance_page_hfe-about .nav-tab-wrapper,
.appearance_page_hfe-settings .nav-tab-wrapper {
    margin-right: 18px;
    margin-bottom: 30px;
    margin-top: 10px;
}
.post-type-elementor-hf .nav-tab-wrapper {
    margin-bottom: 18px;
    margin-top: 10px;
}
.post-type-elementor-hf .wrap h1.wp-heading-inline,
.hfe-heading-inline {
    margin-top: 10px
}
.hfe-admin-about-section,
.hfe-subscription-row {
    display: flex;
    justify-content: center;
}
.hfe-subscription-row .hfe-input-container {
    width: 50%;
    text-align: left;
    position: relative;    
    width: 100%;
}
.hfe-guide-modal-content .hfe-checkbox-container {
    display: flex;
    align-items: flex-start;
}
.hfe-guide-modal-content .hfe-admin-column-50:not(.hfe-admin-column-last) {
    display: flex;
    align-items: center;
}
/* Form CSS */
.hfe-subscription-row {
    margin-bottom: 10px;
}
.hfe-subscription-row .hfe-subscribe-field:focus {
    outline: none;
    box-shadow: none;
}
.hfe-subscription-row .hfe-subscribe-field {
    width: 100%;
    max-width: 100%;
    border-radius: 3px;
    border: 1px solid #585F66;
    padding: 10px 15px;
    box-shadow: none;
    min-height: 44px;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    background-color: transparent;
    background-position: right 10px top 55%;
    margin: 0;
}
.hfe-subscription-row .subscription-label {
    color: #585F66;
    margin: 12px 10px;
    position: absolute;
    top: 0;
    font-weight: 400;
    padding: 0 5px;
    font-size: 14px;
    left: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    pointer-events: none;
}

.hfe-subscription-row input#hfe_subscribe_accept {
	border: 1px solid #585F66;
	border-radius: 3px;
	margin: 0 4px 0 0;
}

.hfe-guide-modal-popup .hfe-guide-modal-popup-wrapper .hfe-subscription-row .hfe-input-container:nth-of-type(3) {
	margin-bottom: 16px;
}

.hfe-subscription-row .hfe-input-container:not(.subscription-success, .subscription-error) .hfe-subscribe-field:hover {
    border-color: #2271b1;
}
.hfe-subscription-row .hfe-subscribe-field:hover,
.hfe-subscription-row .hfe-subscribe-field:focus {
    color: #2c3338;
}
.hfe-subscription-row .subscription-anim .subscription-label {
    background-color: #fff;
    font-size: 12px;
    line-height: 12px;
    margin-top: 0;
    padding: 0 4px;
    top: -5px;
    transition: all 0.125s ease;
    -webkit-transition: all 0.125s ease;
    color: #2271b1;
}
.hfe-subscription-row .subscription-error .hfe-subscribe-field,
.hfe-subscription-row .subscription-error .hfe-subscribe-field:focus {
    border-color: #ff0000;
}
.hfe-subscription-row .subscription-error .subscription-desc,
.hfe-subscription-row .subscription-anim.subscription-error .subscription-label {
    color: #ff0000;
}
.hfe-subscription-row .subscription-success .hfe-subscribe-field,
.hfe-subscription-row .subscription-success .hfe-subscribe-field:focus {
    border-color: #66a700;
}
.hfe-subscription-row .subscription-anim.subscription-success .subscription-label {
    color: #66a700;
}
.hfe-input-container .subscription-desc {
    padding-left: 2px;
    opacity: 0;
    visibility: hidden;
}
.hfe-input-container.subscription-error .subscription-desc {
    opacity: 1;
    visibility: visible;
}
input[type="text"].hfe-subscribe-field,
select.hfe-subscribe-field {
    text-align: left;
    width: 100%;
    padding: 10px 15px;
    outline: none;
    margin-left: 0px;
}
.hfe-guide-content p.submit {
    text-align: center;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.hfe-privacy-policy-container {
    margin-top: 0;
    text-align: center;
    display: none;
}
.hfe-subscription-step-2-active ~ .hfe-privacy-policy-container {
    display: block;
}
.hfe-privacy-policy-container .hfe-subscription-policy {
    margin: 0;
    padding-top: 15px;
    font-size: 12px;
}
.button-subscription-skip:focus {
    box-shadow: none;
}
.button-subscription-skip {
    width: 100%;
    text-align: center;
    margin-top: .8em;
    display: inline-block;    
    font-size: 14px;
}
.hfe-guide-content .button {
    text-transform: uppercase;
    padding: 10px 20px;
    width: 100%;
    font-size: 13px;
}
.hfe-guide-content .button.submitting {
    margin-right: 3px;
}
/* EHF Settings - About Us */
.hfe-admin-about-section {
    margin: 0px 19px 23px 0px;
    padding: 40px;
    line-height: 2;
}
.hfe-admin-about-section p,
.hfe-admin-addons .addon-item,
.hfe-admin-addons .addon-item p,
.hfe-admin-about-section ul {
    font-size: 15px;
}
.hfe-admin-about-us {
    background: #fff;
    border: 1px solid #ddd;
}
.hfe-admin-about-section h1, 
.hfe-admin-about-section h2, 
.hfe-admin-about-section h3, 
.hfe-admin-about-section h4, 
.hfe-admin-about-section h5 {
    margin-top: 0;
    line-height: 1.3;
}
.hfe-clear:before {
    content: " ";
    display: table;
}
.hfe-clear:after,
.hfe-admin-columns:after {
    clear: both;
    content: " ";
    display: table;
}
.hfe-admin-columns .hfe-admin-column-40 {
    width: 40%;
}
.hfe-admin-columns .hfe-admin-column-50 {
    width: 50%;
    background: #fff;
    border: 1px solid #ddd;
}
.hfe-admin-columns .hfe-admin-column-60 {
    width: 60%;
}
.hfe-admin-columns .hfe-admin-column-last .hfe-guide-content {
    width: 100%;
}
.hfe-admin-about-section figure {
    margin: 0;
    padding-top: 0px;
}
.hfe-admin-about-section figure img {
    width: 100%;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
}
.hfe-admin-about-section figure figcaption {
    font-size: 15px;
    color: #686868;
    margin-top: 5px;
    text-align: center;
    line-height: initial;
}
.hfe-admin-about-section .hfe-admin-column-40 {
    padding-left: 15px;
}
.hfe-admin-about-section .hfe-admin-column-60 {
    padding-right: 15px;
}
.hfe-admin-about-section *, 
.hfe-admin-about-section *::before, 
.hfe-admin-about-section *::after,
.hfe-admin-addons *,
.hfe-admin-addons *::before,
.hfe-admin-addons *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* About Us - Plugins section */
.hfe-admin-addons .addon-container:last-child {
    padding-right: 10px;
}
.hfe-admin-addons .addon-container:first-child,
.hfe-admin-addons .addon-container {
    padding-left: 10px;
}
.hfe-admin-addons {
    padding: 0 27px 0px 10px;
}
.hfe-admin-addons .addon-item .details {
    padding: 20px;
}
.hfe-admin-addons .addon-item img {
    padding: 13px;
    padding-top: 0px;
}
.hfe-admin-addons .addons-container{
  margin-left: -20px;
  margin-right: -20px;
}
.hfe-admin-addons .addon-container {
  padding-right: 10px;
  float: left;
  width: 33.333333%;
  margin-bottom: 20px;
}
.hfe-admin-addons h4 {
  font-size: 17px;
  font-weight: 700;
}
.hfe-admin-addons .addon-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin: 0;
}
.hfe-admin-addons .addon-item img {
  float: left;
  max-width: 80px;
}
.hfe-admin-addons .addon-item h5 {
  margin: 0 0 15px 90px;
  font-size: 17px;
  line-height: 1.4em;
}
.hfe-admin-addons .addon-item p {
  margin: 0 0 0 90px;
}
.hfe-admin-addons .website-link {
    color: inherit;
    text-decoration: none;
}
.hfe-admin-addons .addon-item .details {
  padding: 30px 20px;
}

.hfe-admin-addons .addon-item .action-button .button {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    line-height: 26px;
    height: 28px;
    margin: 0;
    padding: 0 10px 1px;
    box-shadow: 0 1px 0 #cccccc;
    cursor: pointer;
    -webkit-appearance: none;
    border-radius: 3px;
    border: 1px solid #cccccc;
    background: #f7f7f7;
    font-weight: normal;
}

.hfe-admin-addons .addon-item .action-button .button:hover, 
.hfe-admin-addons .addon-item .action-button .button:focus {
    background: #fafafa;
    border-color: #999;
    color: #23282d;
}

.hfe-admin-addons .addon-item .action-button .button.button-primary {
    background: #0085ba;
    border-color: #0073aa #006799 #006799;
    box-shadow: 0 1px 0 #006799;
    color: #fff;
    text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
}

.hfe-admin-addons .addon-item .action-button .button.button-primary:hover, 
.hfe-admin-addons .addon-item .action-button .button.button-primary:focus {
    background: #008ec2;
    border-color: #006799;
    color: #fff;
}

.hfe-admin-addons .addon-item .action-button .button.button-secondary {
    color: #555;
    border-color: #cccccc;
    background: #f7f7f7;
    box-shadow: 0 1px 0 #cccccc;
}

.hfe-admin-addons .addon-item .action-button .button.button-secondary:hover, 
.hfe-admin-addons .addon-item .action-button .button.button-secondary:focus {
    background: #fafafa;
    border-color: #999;
    color: #23282d;
}

.hfe-admin-addons .addon-item .action-button .button.disabled {
    cursor: default;
}

.hfe-admin-addons .addon-item .actions {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    border-top: 1px solid #ddd;
    padding: 20px;
    min-height: 75px;
    position: relative;
}
  
.hfe-admin-addons .addon-item .actions .msg {
    background-color: #f7f7f7;
    border: none;
    position: absolute;
    text-align: center;
    font-weight: 600;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    z-index: 99;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.hfe-admin-addons .addon-item .actions .msg.success,
.hfe-admin-addons .addon-item .status .status-active,
.hfe-admin-addons .addon-item .action-button button.status-active .fa {
    color: #2a9b39;
}
  
.hfe-admin-addons .addon-item .actions .msg.error,
.hfe-admin-addons .addon-item .status .status-inactive,
.hfe-admin-addons .addon-item .action-button button.status-inactive .fa {
    color: red;
}
  
.hfe-admin-addons .addon-item .status {
    flex-grow: 1;
}
  
.hfe-admin-addons .addon-item .status .status-download {
    color: #666;
}
  
.hfe-admin-addons .addon-item .upgrade-button {
    text-align: center;
}
  
.hfe-admin-addons .addon-item .upgrade-button a {
    font-weight: 600;
    width: 110px;
    text-align: center;
    padding: 8px 5px;
}
.hfe-admin-addons .addon-item .action-button a.button {
    width: 110px;
    text-align: center;
}
.hfe-admin-addons .addon-item .action-button button {
    background: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: none;
    cursor: pointer;
    font-weight: 600;
    width: 110px;
    text-align: center;
    padding: 8px 5px;
}
  
.hfe-admin-addons .addon-item .action-button button:hover, .hfe-admin-addons .addon-item .action-button button.loading {
    background-color: #e9e9e9;
}
  
.hfe-admin-addons .addon-item .action-button button .fa {
    margin-right: 8px;
}
  
.hfe-admin-addons .addon-item .action-button button .fa.fa-spinner {
    margin-right: 0;
}
  
.hfe-admin-addons .addon-item .action-button button.status-download .fa {
    color: #999;
}
  
.hfe-admin-addons .addon-item .action-button button.disabled {
    cursor: default;
    pointer-events: none;
}
  
.hfe-admin-addons .addon-item .action-button button.loading .fa {
    color: #666;
}
  
.hfe-admin-addons .addon-item .action-button a {
    text-decoration: none;
}

/* Modal Popup */
.hfe-guide-modal-header {
    padding: 10px;
    text-align: center;
}
.hfe-guide-modal-popup-wrapper .heading {
    background: #ffffff;
    padding: 5px 20px;
    margin-top: 0;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    display: flex;
    justify-content: space-between;
}
.hfe-guide-modal-popup-wrapper .hfe-admin-guide-section.hfe-admin-about-section,
.hfe-guide-modal-popup-wrapper .hfe-admin-column-50:not(.hfe-admin-column-last) {
    margin: 0px;
}
.hfe-guide-modal-popup-wrapper .hfe-admin-column-50:not(.hfe-admin-column-last),
.hfe-admin-column-last .hfe-guide-content form {
    padding: 50px;
}
.hfe-guide-modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    opacity: 0;
    background: rgba(0,0,0,0.75);
    -webkit-transition: all .5s;
    transition: all .5s;
}
.hfe-guide-modal-content {
    width: 70%;
    background-color: #ffffff;
    opacity: 0;
    position: relative;
    margin: 0 auto;
    transition: all .5s;
}
.hfe-guide-modal-popup-wrapper {
    z-index: 99999;
    top: 51%;
    transform: translateY(-50%);
    margin-bottom: 20px;
    visibility: hidden;
    position: fixed;
    left: 0;
    width: 100%;
    max-width: 100%;
    bottom: auto;
}
.hfe-guide-modal-popup-wrapper .subscription-anim .subscription-label {
    background-color: #ffffff;
}
.hfe-guide-modal-popup-wrapper .hfe-admin-about-section {
    background-color: #f1f3f5;
}
.hfe-admin-about-section h3 {
    font-size: 20px;
}
.hfe-guide-modal-popup-wrapper .hfe-guide-content form {
    padding: 0px;
}
.hfe-guide-modal-popup-wrapper .hfe-guide-content {
    background-color: #ffffff;
    box-shadow: 0 2px 30px 0 rgb(0 0 0 / 8%);
    border: 0px;
    padding: 50px 50px 25px 50px;
}
.hfe-guide-modal-popup-wrapper .hfe-admin-columns .hfe-admin-column-50.hfe-admin-column-last {
    width: 50%;
    margin: 0;
    padding: 50px;
}
.hfe-guide-modal-popup-wrapper .hfe-admin-columns .hfe-admin-column-50 {
    width: 50%;
    background: unset;
    border: 0px;
}
.hfe-guide-modal-popup-wrapper .heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}
.hfe-guide-modal-popup-wrapper .hfe-logo {
    height: 35px;
} 
.hfe-guide-modal-popup-wrapper h3 {
    width: 100%;
    margin-left: 15px;
}
.hfe-guide-modal-popup-wrapper .hfe-admin-about-section.hfe-admin-columns.hfe-admin-guide-section {
    max-height: 75vh;
    overflow: auto;
}
.hfe-guide-modal-popup-wrapper .hfe-admin-about-section-column {
    padding-bottom: 20px;
}
.hfe-guide-modal-popup-wrapper .hfe-subscription-step-1-active .hfe-subscription-step-2,
.hfe-guide-modal-popup-wrapper .hfe-subscription-step-2-active .hfe-subscription-step-1 {
    display: none;
}
/* Limited this only for modal Popup */
.hfe-guide-modal-popup-wrapper .hfe-subscription-row .hfe-input-container,
.hfe-guide-modal-popup-wrapper .button {
    width: 100%;
    margin-bottom: 5px;
}
.hfe-guide-modal-popup-wrapper .hfe-subscription-row {
    display: block;
    margin-bottom: 0px;
}
.hfe-guide-modal-popup-wrapper .hfe-admin-about-section-column h2 {
    font-size: 28px;
    margin-bottom: 15px;
}
.hfe-admin-about-section-column h3 {
    margin-bottom: 0;
    padding: 15px 30px;
    border-bottom: 1px solid #c3c4c7;
}
.hfe-admin-about-section-column h3 {
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
}
.hfe-show {
    z-index: 9999;
} 
.hfe-show .hfe-modal-close, 
.hfe-show .hfe-modal-close.action-button,
.hfe-show .hfe-guide-modal-content {
    visibility: visible;
}
.hfe-show .hfe-guide-modal-overlay {
    opacity: 1;
    visibility: visible;
}
.hfe-show .hfe-guide-modal-content {
    opacity: 1;
}
.hfe-input-container.hfe-error .hfe-subscribe-field {
    border-color: #d11212;
}
span.hfe-subscribe-message {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
}
span.hfe-subscribe-message.success {
    color: #3c763d;
    background-color: #dff0d8;
    border-left: 4px solid #93d776;
}
span.hfe-subscribe-message.error {
    color: #d11212;
    background-color: #f2dede96;
    border-left: 4px solid #c01a1a66;
}
span.dashicons.dashicons-update.hfe-loader {
    animation: rotation 2s infinite linear;
    vertical-align: text-top;
    margin-left: 7px;
}

@media (max-width: 1249px) {
    .hfe-admin-addons .addon-container {
      width: 50%;
    }
}

@media (max-width: 767px) {
    .hfe-admin-addons .addon-container {
        width: 100%;
        margin-bottom: 20px;
    }
    .hfe-admin-about-section .hfe-admin-column-40 {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .hfe-admin-about-section .hfe-admin-column-60 {
        width: 100%;
        padding-right: 0;
    }
    .hfe-admin-addons .addon-item {
        margin: 0 0;
    }
}

@media screen and ( max-width: 782px ) {
    .hfe-subscription-row,
    .hfe-admin-about-section {
        display: block;
    }
    .hfe-guide-modal-popup-wrapper p.button,
    .hfe-admin-about-section figure {
        padding-bottom: 0px;
    }
    .hfe-admin-guide-section.hfe-admin-columns .hfe-admin-column-50,
    .hfe-guide-modal-popup-wrapper .hfe-admin-columns .hfe-admin-column-50.hfe-admin-column-last,
    .hfe-subscription-row .hfe-input-container {
        width: 100%;
    }
    .hfe-guide-modal-popup-wrapper .hfe-admin-columns .hfe-admin-column-50.hfe-admin-column-last,
    .hfe-guide-modal-popup-wrapper .hfe-guide-content,
    .hfe-admin-guide-section .hfe-admin-column-50:not(.hfe-admin-column-last) {
        padding: 15px;
    }
    .hfe-subscribe-email span.dashicons.dashicons-email {
        font-size: 15px;
        height: 15px;
        line-height: 1;
        width: 15px;
    }
    .hfe-subscribe-email input.hfe-subscribe-field {
        min-height: unset;
        font-size: 10px;
    }
    .hfe-subscribe-field {
        padding: 5px;
    }
    .hfe-admin-guide-section.hfe-admin-about-section {
        display: block;
    }
    .hfe-guide-content .button {
        font-size: 10px;
    }
    .hfe-checkbox-container {
        display: flex;
    }
    .hfe-admin-columns .hfe-admin-column-last {
        padding-top: 0px;
    }
    .hfe-subscription-row select.hfe-subscribe-field {
        padding: 10px 15px;
    }
    .hfe-admin-about-section-column h3 {
        border-bottom: 0px;
    }
    .hfe-admin-about-us {
        margin-right: 10px;
    }
    .hfe-admin-addons .addon-container,
    .hfe-admin-addons .addon-container:last-child {
        padding-right: 0px;
    }
}

#toplevel_page_hfe .wp-submenu li a[href*="https://ultimateelementor.com/pricing/?utm_source=wp-admin&utm_medium=menu&utm_campaign=uae-upgrade"]{
background-color:#04a382;
color:#fff;
font-size:13px;
font-weight:500;
line-height:20px;
padding-right:12px!important;
padding-left:12px!important
}

#toplevel_page_hfe .wp-submenu li a[href*="https://ultimateelementor.com/pricing/?utm_source=wp-admin&utm_medium=menu&utm_campaign=uae-upgrade"]:hover
{
background-color:#018d71;
color:#fff;
font-size:13px;
font-weight:500;
line-height:20px;
padding-right:12px!important;
padding-left:12px!important
}

.uae-plugins-go-pro{
    color: #93003C;
    font-weight: 700;
}

.uae-plugins-go-pro:active,
.uae-plugins-go-pro:focus,
.uae-plugins-go-pro:hover
{
    color:#93003C;
    opacity:.8;
}

/* Rating Stars in Plugin List - Remove all borders and outlines */
tr[data-plugin*="header-footer-elementor"] a[href*="reviews"],
tr[data-plugin*="header-footer-elementor"] a[href*="reviews"]:focus,
tr[data-plugin*="header-footer-elementor"] a[href*="reviews"]:active,
tr[data-plugin*="header-footer-elementor"] a[href*="reviews"]:hover,
tr[data-plugin*="header-footer-elementor"] .plugin-description-actions a[href*="reviews"],
tr[data-plugin*="header-footer-elementor"] .plugin-description-actions a[href*="reviews"]:focus,
tr[data-plugin*="header-footer-elementor"] .plugin-description-actions a[href*="reviews"]:active,
tr[data-plugin*="header-footer-elementor"] .plugin-description-actions a[href*="reviews"]:hover {
    text-decoration: none !important;
    outline: 0 !important;
    outline: none !important;
    border: 0 !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    background: transparent !important;
    display: inline-block;
    margin-left: 5px;
}

tr[data-plugin*="header-footer-elementor"] a[href*="reviews"]:hover,
tr[data-plugin*="header-footer-elementor"] .plugin-description-actions a[href*="reviews"]:hover {
    opacity: 0.8;
}

tr[data-plugin*="header-footer-elementor/header-footer-elementor.php"] .plugin-description-actions a[href*="reviews"] .dashicons {
    vertical-align: top;
    margin: 0 1px;
}

/* Rating star styles for plugin meta links */
.hfe-rating-star {
    color: #ffb900;
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1.2;
}
PK���\/�JYYheader-footer-elementor.phpnu�[���<?php
/**
 * Plugin Name: Ultimate Addons for Elementor (UAE)
 * Plugin URI:  https://wordpress.org/plugins/header-footer-elementor/
 * Description: Ultimate Addons is a powerful plugin allows you to create custom headers and footers with Elementor and display them in selected locations. You can also create custom Elementor blocks and place them anywhere on your website using a shortcode.
 * Author:      Brainstorm Force
 * Author URI:  https://www.brainstormforce.com/
 * Text Domain: header-footer-elementor
 * Domain Path: /languages
 * Version: 2.8.7
 * Elementor tested up to: 4.0
 * Elementor Pro tested up to: 4.0
 *
 * @package         header-footer-elementor
 */

define( 'HFE_VER', '2.8.7' );
define( 'HFE_FILE', __FILE__ );
define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
define( 'HFE_URL', plugins_url( '/', __FILE__ ) );
define( 'HFE_PATH', plugin_basename( __FILE__ ) );
define( 'HFE_DOMAIN', trailingslashit( 'https://ultimateelementor.com' ) );
define( 'UAE_LITE', true );

/**
 * Load the class loader.
 */
require_once HFE_DIR . '/inc/class-header-footer-elementor.php';

/**
 * Load the Plugin Class.
 *
 * @return void
 */
function hfe_plugin_activation() {
	update_option( 'uae_lite_is_activated', 'yes' );
	update_option( 'hfe_start_onboarding', true );

	// Track plugin activation event.
	require_once HFE_DIR . 'inc/class-hfe-analytics-events.php';
	$bsf_referrers = get_option( 'bsf_product_referers', [] );
	$source        = ! empty( $bsf_referrers['header-footer-elementor'] ) ? $bsf_referrers['header-footer-elementor'] : 'self';
	HFE_Analytics_Events::track( 'plugin_activated', HFE_VER, [ 'source' => $source ] );
}

register_activation_hook( HFE_FILE, 'hfe_plugin_activation' );

/**
 * Remove the Data not required.
 *
 * @return void
 */
function hfe_plugin_deactivation() {
	$timestamp = wp_next_scheduled( 'hfe_widgets_usage_cron' );
	if ( $timestamp ) {
		wp_unschedule_event( $timestamp, 'hfe_widgets_usage_cron' );
	}
}

// deActivation hook.
register_deactivation_hook( HFE_FILE, 'hfe_plugin_deactivation' );

/**
 * Load the Plugin Class.
 *
 * @return void
 */
function hfe_init() {
	Header_Footer_Elementor::instance();
}

add_action( 'plugins_loaded', 'hfe_init' );

/** Function for FA5, Social Icons, Icon List */
function hfe_enqueue_font_awesome() {

	if ( class_exists( 'Elementor\Plugin' ) ) {

		// Ensure Elementor Icons CSS is loaded.
		wp_enqueue_style(
			'hfe-elementor-icons',
			plugins_url( '/elementor/assets/lib/eicons/css/elementor-icons.min.css', 'elementor' ),
			[],
			'5.34.0'
		);
		wp_enqueue_style(
			'hfe-icons-list',
			plugins_url( '/elementor/assets/css/widget-icon-list.min.css', 'elementor' ),
			[],
			'3.24.3'
		);
		wp_enqueue_style(
			'hfe-social-icons',
			plugins_url( '/elementor/assets/css/widget-social-icons.min.css', 'elementor' ),
			[],
			'3.24.0'
		);
		wp_enqueue_style(
			'hfe-social-share-icons-brands',
			plugins_url( '/elementor/assets/lib/font-awesome/css/brands.css', 'elementor' ),
			[],
			'5.15.3'
		);

		wp_enqueue_style(
			'hfe-social-share-icons-fontawesome',
			plugins_url( '/elementor/assets/lib/font-awesome/css/fontawesome.css', 'elementor' ),
			[],
			'5.15.3'
		);
		wp_enqueue_style(
			'hfe-nav-menu-icons',
			plugins_url( '/elementor/assets/lib/font-awesome/css/solid.css', 'elementor' ),
			[],
			'5.15.3'
		);
	}
	if ( class_exists( '\ElementorPro\Plugin' ) ) {
		wp_enqueue_style(
			'hfe-widget-blockquote',
			plugins_url( '/elementor-pro/assets/css/widget-blockquote.min.css', 'elementor' ),
			[],
			'3.25.0'
		);
		wp_enqueue_style(
			'hfe-mega-menu',
			plugins_url( '/elementor-pro/assets/css/widget-mega-menu.min.css', 'elementor' ),
			[],
			'3.26.2'
		);
		wp_enqueue_style(
			'hfe-nav-menu-widget',
			plugins_url( '/elementor-pro/assets/css/widget-nav-menu.min.css', 'elementor' ),
			[],
			'3.26.0'
		);
	}
}
add_action( 'wp_enqueue_scripts', 'hfe_enqueue_font_awesome', 20 );
PK���\}{^=��inc/js/counter.jsnu�[���PK���\�L�ss�inc/js/woo-products.jsnu�[���PK���\]�3�C{C{�inc/js/frontend.jsnu�[���PK���\�d���)5�inc/js/hfe-elementor-pro-compatibility.jsnu�[���PK���\^��gg |�inc/js/permalink-clear-notice.jsnu�[���PK���\dD(��8�83�inc/class-hfe-analytics.phpnu�[���PK���\�A̸y(y(e�inc/class-hfe-promotion.phpnu�[���PK���\;̕#(�(�)inc/class-hfe-learn-api.phpnu�[���PK���\i�������inc/settings/settings-app.phpnu�[���PK���\dd��R R !²inc/settings/hfe-settings-api.phpnu�[���PK���\�L�_{{e�inc/settings/admin-base.phpnu�[���PK���\�pM��2+�inc/compatibility/class-hfe-wpml-compatibility.phpnu�[���PK���\��$$"#�inc/class-hfe-analytics-events.phpnu�[���PK���\E�*�>e>e%��inc/class-header-footer-elementor.phpnu�[���PK���\�Ѧ9��,Rinc/class-hfe-rollback.phpnu�[���PK���\!��GDGD;ainc/widgets-css/frontend.cssnu�[���PK���\D�p�xx Υinc/widgets-css/woo-products.cssnu�[���PK���\.Kp�

*��inc/widgets-css/permalink-clear-notice.cssnu�[���PK���\qF�uuF�inc/widgets-manager/extensions/class-reading-progress-bar-settings.phpnu�[���PK���\�6��/�/6��inc/widgets-manager/extensions/class-scroll-to-top.phpnu�[���PK���\@��YGYG?8inc/widgets-manager/extensions/class-scroll-to-top-settings.phpnu�[���PK���\�Ψr��=Tinc/widgets-manager/extensions/class-reading-progress-bar.phpnu�[���PK���\�=
>LL'0minc/widgets-manager/modules-manager.phpnu�[���PK���\[Q^�U7U7,�uinc/widgets-manager/class-widgets-loader.phpnu�[���PK���\�DVܻ�/��inc/widgets-manager/class-extensions-loader.phpnu�[���PK���\.�$+ZZ+��inc/widgets-manager/base/widgets-config.phpnu�[���PK���\���(B	B	*S�inc/widgets-manager/base/common-widget.phpnu�[���PK���\Ka�
]](��inc/widgets-manager/base/module-base.phpnu�[���PK���\	�w"�2�2'��inc/widgets-manager/base/hfe-helper.phpnu�[���PK���\ό����.�inc/widgets-manager/widgets/counter/module.phpnu�[���PK���\mr�_Z_Z/�inc/widgets-manager/widgets/counter/counter.phpnu�[���PK���\��3�]inc/widgets-manager/widgets/site-tagline/module.phpnu�[���PK���\.��V�"�"9�ainc/widgets-manager/widgets/site-tagline/site-tagline.phpnu�[���PK���\Z%��!!;Ȅinc/widgets-manager/widgets/navigation-menu/menu-walker.phpnu�[���PK���\p]���6T�inc/widgets-manager/widgets/navigation-menu/module.phpnu�[���PK���\�6':�:�?��inc/widgets-manager/widgets/navigation-menu/navigation-menu.phpnu�[���PK���\
�(�KK%7�inc/widgets-manager/widgets/index.phpnu�[���PK���\3�W���7גinc/widgets-manager/widgets/woo-product-grid/module.phpnu�[���PK���\��]$|$|A�inc/widgets-manager/widgets/woo-product-grid/woo-product-grid.phpnu�[���PK���\���4�inc/widgets-manager/widgets/search-button/module.phpnu�[���PK���\w&��o�o;�inc/widgets-manager/widgets/search-button/search-button.phpnu�[���PK���\m�����0чinc/widgets-manager/widgets/copyright/module.phpnu�[���PK���\�M���3�inc/widgets-manager/widgets/copyright/copyright.phpnu�[���PK���\w<޻��=�inc/widgets-manager/widgets/copyright/copyright-shortcode.phpnu�[���PK���\����/�inc/widgets-manager/widgets/infocard/module.phpnu�[���PK���\�]�B�B�1�inc/widgets-manager/widgets/infocard/infocard.phpnu�[���PK���\��4����3�G	inc/widgets-manager/widgets/post-info/post-info.phpnu�[���PK���\Q6C4��0�	inc/widgets-manager/widgets/post-info/module.phpnu�[���PK���\y4�B�V�V-:�	inc/widgets-manager/widgets/retina/retina.phpnu�[���PK���\ϾZK��-1
inc/widgets-manager/widgets/retina/module.phpnu�[���PK���\1',B��1,5
inc/widgets-manager/widgets/site-title/module.phpnu�[���PK���\󲆘;;5V9
inc/widgets-manager/widgets/site-title/site-title.phpnu�[���PK���\ԭ��NINI)�t
inc/widgets-manager/widgets/cart/cart.phpnu�[���PK���\��	��+��
inc/widgets-manager/widgets/cart/module.phpnu�[���PK���\�P�b?_?_7��
inc/widgets-manager/widgets/basic-posts/basic-posts.phpnu�[���PK���\�rm&&4R"inc/widgets-manager/widgets/basic-posts/template.phpnu�[���PK���\$�@։�2�1inc/widgets-manager/widgets/basic-posts/module.phpnu�[���PK���\����0�5inc/widgets-manager/widgets/site-logo/module.phpnu�[���PK���\x���\�\3�9inc/widgets-manager/widgets/site-logo/site-logo.phpnu�[���PK���\d�W���9�inc/widgets-manager/widgets/breadcrumbs-widget/module.phpnu�[���PK���\�xl��[�[E0�inc/widgets-manager/widgets/breadcrumbs-widget/breadcrumbs-widget.phpnu�[���PK���\���|?|?5t�inc/widgets-manager/widgets/page-title/page-title.phpnu�[���PK���\iX�}��1U7inc/widgets-manager/widgets/page-title/module.phpnu�[���PK���\M����{;inc/class-hfe-update.phpnu�[���PK���\�6���0�0!�Minc/class-hfe-post-duplicator.phpnu�[���PK���\��ee)�~inc/class-hfe-elementor-canvas-compat.phpnu�[���PK���\�L��~~N�inc/hfe-functions.phpnu�[���PK���\�k�� �inc/lib/class-uae-nps-survey.phpnu�[���PK���\���
��!�inc/lib/astra-notices/notices.cssnu�[���PK���\��@d�-�--�inc/lib/astra-notices/class-astra-notices.phpnu�[���PK���\��d� [�inc/lib/astra-notices/notices.jsnu�[���PK���\�|9�		"��inc/lib/target-rule/target-rule.jsnu�[���PK���\^AF����7�inc/lib/target-rule/class-astra-target-rules-fields.phpnu�[���PK���\:ٹ�/0/0�
inc/lib/target-rule/select2.jsnu�[���PK���\iybx\;\;��inc/lib/target-rule/select2.cssnu�[���PK���\��
�	�	 4+inc/lib/target-rule/user-role.jsnu�[���PK���\g��	�	#$5inc/lib/target-rule/target-rule.cssnu�[���PK���\����>inc/lib/target-rule/i18n/dsb.jsnu�[���PK���\k��C!=Cinc/lib/target-rule/i18n/zh-CN.jsnu�[���PK���\+:�R[[�Finc/lib/target-rule/i18n/pt.jsnu�[���PK���\�4c��!8Jinc/lib/target-rule/i18n/zh-TW.jsnu�[���PK���\�Z�jUU!MMinc/lib/target-rule/i18n/pt-BR.jsnu�[���PK���\��*NN�Pinc/lib/target-rule/i18n/af.jsnu�[���PK���\Ώ����Tinc/lib/target-rule/i18n/bs.jsnu�[���PK���\]�~5���Xinc/lib/target-rule/i18n/hy.jsnu�[���PK���\~��B�\inc/lib/target-rule/i18n/ms.jsnu�[���PK���\gg<��)`inc/lib/target-rule/i18n/nl.jsnu�[���PK���\Qj���cinc/lib/target-rule/i18n/tr.jsnu�[���PK���\<�cUUJginc/lib/target-rule/i18n/de.jsnu�[���PK���\��~�dd�jinc/lib/target-rule/i18n/ar.jsnu�[���PK���\
Y&�((�ninc/lib/target-rule/i18n/da.jsnu�[���PK���\#�����rinc/lib/target-rule/i18n/ro.jsnu�[���PK���\r�H�uinc/lib/target-rule/i18n/nb.jsnu�[���PK���\U=�llFyinc/lib/target-rule/i18n/el.jsnu�[���PK���\U��v��~inc/lib/target-rule/i18n/cs.jsnu�[���PK���\��2hh2�inc/lib/target-rule/i18n/lv.jsnu�[���PK���\�)3b���inc/lib/target-rule/i18n/ps.jsnu�[���PK���\�x��1�inc/lib/target-rule/i18n/is.jsnu�[���PK���\o�B�ee��inc/lib/target-rule/i18n/hi.jsnu�[���PK���\$g*�""7�inc/lib/target-rule/i18n/hu.jsnu�[���PK���\A�����inc/lib/target-rule/i18n/hsb.jsnu�[���PK���\�F{LL�inc/lib/target-rule/i18n/eu.jsnu�[���PK���\�6 �ll��inc/lib/target-rule/i18n/ca.jsnu�[���PK���\�F5�||B�inc/lib/target-rule/i18n/es.jsnu�[���PK���\pz�zz�inc/lib/target-rule/i18n/sl.jsnu�[���PK���\���Է�ԩinc/lib/target-rule/i18n/he.jsnu�[���PK���\����  ٭inc/lib/target-rule/i18n/vi.jsnu�[���PK���\���HVVG�inc/lib/target-rule/i18n/ko.jsnu�[���PK���\h�u+���inc/lib/target-rule/i18n/pl.jsnu�[���PK���\���R��ָinc/lib/target-rule/i18n/az.jsnu�[���PK���\�����inc/lib/target-rule/i18n/mk.jsnu�[���PK���\)C�dgg�inc/lib/target-rule/i18n/ru.jsnu�[���PK���\;���))��inc/lib/target-rule/i18n/km.jsnu�[���PK���\�b3���.�inc/lib/target-rule/i18n/fa.jsnu�[���PK���\~��K;;h�inc/lib/target-rule/i18n/en.jsnu�[���PK���\Ʌ�]]��inc/lib/target-rule/i18n/uk.jsnu�[���PK���\����PP��inc/lib/target-rule/i18n/ja.jsnu�[���PK���\W�}:�inc/lib/target-rule/i18n/sv.jsnu�[���PK���\Y�����inc/lib/target-rule/i18n/fi.jsnu�[���PK���\q_*�ss��inc/lib/target-rule/i18n/fr.jsnu�[���PK���\y&���inc/lib/target-rule/i18n/th.jsnu�[���PK���\ZBͪ��inc/lib/target-rule/i18n/sr.jsnu�[���PK���\5DG����inc/lib/target-rule/i18n/sk.jsnu�[���PK���\M�&�++#U�inc/lib/target-rule/i18n/sr-Cyrl.jsnu�[���PK���\4t_�GG�inc/lib/target-rule/i18n/hr.jsnu�[���PK���\�U
Qvvh�inc/lib/target-rule/i18n/gl.jsnu�[���PK���\^�Yll,�inc/lib/target-rule/i18n/it.jsnu�[���PK���\jl�Ċ��inc/lib/target-rule/i18n/bg.jsnu�[���PK���\����inc/lib/target-rule/i18n/et.jsnu�[���PK���\��T��inc/lib/target-rule/i18n/lt.jsnu�[���PK���\>������inc/lib/target-rule/i18n/id.jsnu�[���PK���\Qz��!0inc/lib/nps-survey/nps-survey.phpnu�[���PK���\H���� inc/lib/nps-survey/changelog.txtnu�[���PK���\,�ơ�"inc/lib/nps-survey/version.jsonnu�[���PK���\�J=�(�(*[#inc/lib/nps-survey/dist/style-main-rtl.cssnu�[���PK���\�Z���&QLinc/lib/nps-survey/dist/main.asset.phpnu�[���PK���\�cZ��TMinc/lib/nps-survey/dist/main.jsnu�[���PK���\
�� �(�(&��inc/lib/nps-survey/dist/style-main.cssnu�[���PK���\(^��F�F0�inc/lib/nps-survey/classes/nps-survey-script.phpnu�[���PK���\ܾ�q��/Pinc/lib/nps-survey/nps-survey-plugin-loader.phpnu�[���PK���\��Z����Xinc/class-hfe-settings-page.phpnu�[���PK���\3I�V���gettext.potnu�[���PK���\��;���Fy.gitattributesnu�[���PK���\{}f:��zztailwind.config.jsnu�[���PK���\�,��e�postcss.config.jsnu�[���PK���\�Y9�����=�build/main-rtl.cssnu�[���PK���\*����	build/main.asset.phpnu�[���PK���\��䡇��
build/main.cssnu�[���PK���\SI�X��
�build/main.jsnu�[���PK���\@�L;L;�build/7d00956da27af3e30b78.woffnu�[���PK���\���P99��build/main.js.LICENSE.txtnu�[���PK���\�J'y/a/a)�build/promotion-widget.js.mapnu�[���PK���\?��ha�a��4 build/main.css.mapnu�[���PK���\� ��-- H� build/8fbf595b398521a13438.woff2nu�[���PK���\l�Mqxx �	!build/410fbc8e227942f4d606.woff2nu�[���PK���\j�e�\\h"!build/promotion-widget.jsnu�[���PK���\��v � � 
<!build/f5a809ac576251495a72.woffnu�[���PK���\�	�uP!P!�\!build/815fd49f3f94a120685f.woffnu�[���PK���\̉�PP.P. �~!build/0c658d1bd687fc3b8ae1.woff2nu�[���PK���\mҬ�pp '�!build/promotion-widget.asset.phpnu�[���PK���\-7�I�=�=�!build/f2b6d272f68d05e1513a.woffnu�[���PK���\��B��!build/main.js.mapnu�[���PK���\�	���� ??build/022beb5767ebf3d54c2c.woff2nu�[���PK���\�dw���#S?.claude/analytics-data-reference.mdnu�[���PK���\���j���,?wpml-config.xmlnu�[���PK���\�@��Z�Z�
�<?readme.txtnu�[���PK���\q�9:��M�?languages/header-footer-elementor-es_ES-0ad70406b828ddfa033be3f6573550fd.jsonnu�[���PK���\H�u��MR�?languages/header-footer-elementor-es_ES-4f3059777e77e324d30b247958f5533e.jsonnu�[���PK���\�wǗ�M|@languages/header-footer-elementor-de_DE-0ad70406b828ddfa033be3f6573550fd.jsonnu�[���PK���\��G���M�@languages/header-footer-elementor-es_ES-a0443e4d0c367013223edcde51b7c42f.jsonnu�[���PK���\��x��'�'M�@languages/header-footer-elementor-de_DE-1860d6c85cf93751e0a08d732e8147f8.jsonnu�[���PK���\5�b��M/@languages/header-footer-elementor-es_ES-f0dcbc1e143607d955c20c36badd8c74.jsonnu�[���PK���\cR;�__M
1@languages/header-footer-elementor-de_DE-f0dcbc1e143607d955c20c36badd8c74.jsonnu�[���PK���\�'�DDM�2@languages/header-footer-elementor-fr_FR-90e183a01507bd4371ac0db2e0c87b99.jsonnu�[���PK���\L~��iiM�6@languages/header-footer-elementor-nl_NL-4f3059777e77e324d30b247958f5533e.jsonnu�[���PK���\ajDddM�:@languages/header-footer-elementor-fr_FR-f0dcbc1e143607d955c20c36badd8c74.jsonnu�[���PK���\���]]*q<@languages/header-footer-elementor-fr_FR.ponu�[���PK���\!؞e��M(HBlanguages/header-footer-elementor-de_DE-4f3059777e77e324d30b247958f5533e.jsonnu�[���PK���\��ؕ��MBLBlanguages/header-footer-elementor-fr_FR-0ad70406b828ddfa033be3f6573550fd.jsonnu�[���PK���\���""M�OBlanguages/header-footer-elementor-de_DE-90e183a01507bd4371ac0db2e0c87b99.jsonnu�[���PK���\zd4M"SBlanguages/header-footer-elementor-es_ES-90e183a01507bd4371ac0db2e0c87b99.jsonnu�[���PK���\
o����M�VBlanguages/header-footer-elementor-de_DE-a0443e4d0c367013223edcde51b7c42f.jsonnu�[���PK���\�`o�))M�XBlanguages/header-footer-elementor-es_ES-661e5decf2faf3ca4a04ac4ce62faa07.jsonnu�[���PK���\
9@�,�,M�]Blanguages/header-footer-elementor-fr_FR-1860d6c85cf93751e0a08d732e8147f8.jsonnu�[���PK���\�s�!��M�Blanguages/header-footer-elementor-fr_FR-4f3059777e77e324d30b247958f5533e.jsonnu�[���PK���\n��]��M(�Blanguages/header-footer-elementor-fr_FR-a0443e4d0c367013223edcde51b7c42f.jsonnu�[���PK���\�p'�==*S�Blanguages/header-footer-elementor-de_DE.ponu�[���PK���\��HX��M�Dlanguages/header-footer-elementor-nl_NL-a0443e4d0c367013223edcde51b7c42f.jsonnu�[���PK���\�|!/

M�Dlanguages/header-footer-elementor-nl_NL-90e183a01507bd4371ac0db2e0c87b99.jsonnu�[���PK���\��S`����*��Dlanguages/header-footer-elementor-nl_NL.monu�[���PK���\K@�@�@�*�fElanguages/header-footer-elementor-nl_NL.ponu�[���PK���\�����*reGlanguages/header-footer-elementor-fr_FR.monu�[���PK���\�^N'N'M�=Hlanguages/header-footer-elementor-nl_NL-1860d6c85cf93751e0a08d732e8147f8.jsonnu�[���PK���\��+�``M�eHlanguages/header-footer-elementor-nl_NL-f0dcbc1e143607d955c20c36badd8c74.jsonnu�[���PK���\G)�R��MugHlanguages/header-footer-elementor-nl_NL-661e5decf2faf3ca4a04ac4ce62faa07.jsonnu�[���PK���\yQ�NPPM�kHlanguages/header-footer-elementor-fr_FR-661e5decf2faf3ca4a04ac4ce62faa07.jsonnu�[���PK���\M-ڟ+�+M�pHlanguages/header-footer-elementor-es_ES-1860d6c85cf93751e0a08d732e8147f8.jsonnu�[���PK���\e�ssM��Hlanguages/header-footer-elementor-nl_NL-0ad70406b828ddfa033be3f6573550fd.jsonnu�[���PK���\�y�02�2�*��Hlanguages/header-footer-elementor-es_ES.monu�[���PK���\)���*XIlanguages/header-footer-elementor-es_ES.ponu�[���PK���\�S8����%yUKlanguages/header-footer-elementor.potnu�[���PK���\C�������*�QMlanguages/header-footer-elementor-de_DE.monu�[���PK���\��p���M�Nlanguages/header-footer-elementor-de_DE-661e5decf2faf3ca4a04ac4ce62faa07.jsonnu�[���PK���\�蠿.	.	1G#Nthemes/storefront/class-hfe-storefront-compat.phpnu�[���PK���\E"�m��+�,Nthemes/oceanwp/class-hfe-oceanwp-compat.phpnu�[���PK���\�4m��+3Nthemes/kadence/class-hfe-kadence-compat.phpnu�[���PK���\dlF'��+?Nthemes/genesis/class-hfe-genesis-compat.phpnu�[���PK���\X��''7cKNthemes/generatepress/class-hfe-generatepress-compat.phpnu�[���PK���\���	HH+�RNthemes/blocksy/class-hfe-blocksy-compat.phpnu�[���PK���\�����'�[Nthemes/astra/class-hfe-astra-compat.phpnu�[���PK���\'��t'	'	-�cNthemes/bb-theme/class-hfe-bb-theme-compat.phpnu�[���PK���\Q�˩�%mNthemes/neve/class-hfe-neve-compat.phpnu�[���PK���\�H�SStNthemes/default/hfe-header.phpnu�[���PK���\=����+�vNthemes/default/class-hfe-default-compat.phpnu�[���PK���\�vkL�~Nthemes/default/hfe-footer.phpnu�[���PK���\6L}oVV3C�Nthemes/default/class-global-theme-compatibility.phpnu�[���PK���\��d���;��Nthemes/hello-elementor/class-hfe-hello-elementor-compat.phpnu�[���PK���\���55,X�Nassets/js/hfe-elementor-editor-bar-simple.jsnu�[���PK���\��I����Nassets/js/hfe-promo-notice.jsnu�[���PK���\��֟
'
'ԥNassets/images/upgrade-pro.pngnu�[���PK���\AL����%+�Qassets/images/settings/stemplates.svgnu�[���PK���\W�)'�Qassets/images/settings/integrations.svgnu�[���PK���\L�z�'�',e�Qassets/images/settings/augmented_reality.pngnu�[���PK���\h����%HSassets/images/settings/plugin-uae.pngnu�[���PK���\�`��>G>G#_Sassets/images/settings/build_bg.pngnu�[���PK���\=j%�M*M*)�`Vassets/images/settings/dashboard-logo.svgnu�[���PK���\��S�]],��Vassets/images/settings/starter-templates.svgnu�[���PK���\��-����$O�Vassets/images/settings/our-team.jpegnu�[���PK���\L/�))$��[assets/images/settings/sureforms.svgnu�[���PK���\���z��"�[assets/images/settings/version.svgnu�[���PK���\�=E*E*%5�[assets/images/settings/white-logo.svgnu�[���PK���\<=�ii#��[assets/images/settings/surecart.pngnu�[���PK���\��m��k�k!��[assets/images/settings/column.pngnu�[���PK���\-k4p��#�H\assets/images/settings/suremail.svgnu�[���PK���\'�����`\assets/images/settings/user.svgnu�[���PK���\�����#�c\assets/images/settings/surerank.svgnu�[���PK���\x�c]wNwN)�x\assets/images/settings/welcome-banner.pngnu�[���PK���\ ���&��`assets/images/settings/git-compare.svgnu�[���PK���\w�����#��`assets/images/settings/branding.svgnu�[���PK���\�D$N�`assets/images/settings/plugin-st.pngnu�[���PK���\\ʹ�� ��`assets/images/settings/theme.svgnu�[���PK���\菼l7R7R!�`assets/images/settings/icon_2.svgnu�[���PK���\����=�='�4aassets/images/settings/build_banner.pngnu�[���PK���\��c�:�:,�raassets/images/settings/create_new_banner.pngnu�[���PK���\�=ό�'��aassets/images/settings/plugin-astra.pngnu�[���PK���\O�ޥ3�3'��aassets/images/settings/uae-logo-svg.svgnu�[���PK���\�0�+��*��aassets/images/settings/surerank_extend.svgnu�[���PK���\�Ӭ�
�
(|�aassets/images/settings/success_badge.svgnu�[���PK���\���(B!B!"��aassets/images/settings/pplayer.svgnu�[���PK���\WC����!^bassets/images/settings/rocket.svgnu�[���PK���\����(Wbassets/images/settings/user-selected.svgnu�[���PK���\�0_�,ubassets/images/settings/branding-selected.svgnu�[���PK���\��Ie��*�"bassets/images/settings/layout-template.svgnu�[���PK���\�9u���,/%bassets/images/settings/starter-templates.pngnu�[���PK���\�s�D��%e"wassets/images/settings/stemplates.pngnu�[���PK���\��=�*�*T&wassets/images/settings/logo.svgnu�[���PK���\��@�U�U!&Qwassets/images/settings/aiosrs.svgnu�[���PK���\���ct
t
#d�wassets/images/settings/template.pngnu�[���PK���\�� ��#+�|assets/images/settings/surecart.svgnu�[���PK���\��S��u�u5r�|assets/images/settings/augemented_reality_widgets.pngnu�[���PK���\j��W'W'(�<�assets/images/settings/sure-triggers.svgnu�[���PK���\����,^d�assets/images/settings/tracking_selected.svgnu�[���PK���\�a���+�i�assets/images/settings/sureforms_extend.svgnu�[���PK���\���"�l�assets/images/settings/ottokit.svgnu�[���PK���\hIZvv$
{�assets/images/settings/sureforms.pngnu�[���PK���\[�h�����%��assets/images/settings/success_bg.pngnu�[���PK���\<��:OO �A�assets/images/settings/astra.svgnu�[���PK���\B�
�J+J+$�F�assets/images/settings/uael-icon.svgnu�[���PK���\>�AU��"r�assets/images/settings/pplayer.pngnu�[���PK���\�Z#��1+u�assets/images/settings/OttoKit-Symbol-Primary.svgnu�[���PK���\�^~R��#=��assets/images/settings/tracking.svgnu�[���PK���\��n��%}��assets/images/settings/logo-white.svgnu�[���PK���\<�	=��.���assets/images/header-footer-elementor-icon.svgnu�[���PK���\�R	Hp�p�ۧ�assets/fonts/hfe.eotnu�[���PK���\�aV�(�(��;�assets/fonts/hfe.woffnu�[���PK���\IR�?ܒܒ�Ίassets/fonts/hfe.ttfnu�[���PK���\����r�rb�assets/fonts/hfe.svgnu�[���PK���\�Y�``-Սassets/css/hfe-promo-notice.cssnu�[���PK���\}��$��assets/css/admin-post-duplicator.cssnu�[���PK���\,����7�assets/css/style.cssnu�[���PK���\��&B��assets/css/header-footer-elementor.cssnu�[���PK���\�����	�	2���admin/bsf-analytics/class-bsf-analytics-loader.phpnu�[���PK���\����o
o
!��admin/bsf-analytics/changelog.txtnu�[���PK���\@�"i�*�*^C�admin/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.phpnu�[���PK���\¨��I�;�admin/bsf-analytics/modules/deactivation-survey/assets/js/feedback.min.jsnu�[���PK���\�::EI�admin/bsf-analytics/modules/deactivation-survey/assets/js/feedback.jsnu�[���PK���\��`0��K�d�admin/bsf-analytics/modules/deactivation-survey/assets/css/feedback.min.cssnu�[���PK���\ԃ�}y'y'O�x�admin/bsf-analytics/modules/deactivation-survey/assets/css/feedback-rtl.min.cssnu�[���PK���\dw^**Kؠ�admin/bsf-analytics/modules/deactivation-survey/assets/css/feedback-rtl.cssnu�[���PK���\��xIIGbˎadmin/bsf-analytics/modules/deactivation-survey/assets/css/feedback.cssnu�[���PK���\5�L��-"�admin/bsf-analytics/modules/utm-analytics.phpnu�[���PK���\�>��$$ j��admin/bsf-analytics/version.jsonnu�[���PK���\�V}W��2��admin/bsf-analytics/class-bsf-analytics-events.phpnu�[���PK���\�51��admin/bsf-analytics/class-bsf-analytics-stats.phpnu�[���PK���\`�
�mNmN+61�admin/bsf-analytics/class-bsf-analytics.phpnu�[���PK���\'O4�##:��admin/bsf-analytics/classes/class-bsf-analytics-helper.phpnu�[���PK���\���qq7���admin/bsf-analytics/assets/css/unminified/style-rtl.cssnu�[���PK���\���qq3c��admin/bsf-analytics/assets/css/unminified/style.cssnu�[���PK���\�m�0097��admin/bsf-analytics/assets/css/minified/style-rtl.min.cssnu�[���PK���\���[005А�admin/bsf-analytics/assets/css/minified/style.min.cssnu�[���PK���\䉌�zze��admin/class-hfe-admin.phpnu�[���PK���\і�w+\+\"��admin/class-hfe-addons-actions.phpnu�[���PK���\x.ʚ;;?i�admin/assets/js/ehf-admin.jsnu�[���PK���\���_Z_Z���admin/assets/css/ehf-admin.cssnu�[���PK���\/�JYY9��header-footer-elementor.phpnu�[���PK11�}��